Caso Integrador: “Gastos Médicos”

Contexto

Una empresa con sede en Carolina del Norte que se especializa en la gestión de reclamaciones de compensación laboral busca orientación sobre cómo utilizar análisis de datos para identificar los principales factores de costo y agilizar los tiempos de procesamiento de reclamaciones. Con el fin de mejorar la eficiencia y capacidad de respuesta a los reclamantes, se realizó una base de datos donde detalles de cada reclamo están documentados. Estos detalles se actualizan continuamente a medida que se desembolsan los pagos para resolver el reclamo, cubriendo diversas actividades como visitas al médico y gastos de farmacia.

1. Importar base de datos e Instalar Librerías

# Importar y juntar bases
transactions <- read.csv("C:\\Users\\diego\\Downloads\\TransactionsSummary2018.csv")
claims <- read.csv("C:\\Users\\diego\\Downloads\\ClaimsData2018.csv")
bd <- merge(transactions, claims, by = "ClaimID", all = TRUE)

# Filtrar por "Claim Status: Closed"
db <- subset(bd, ClaimStatus == "C")

# Instalar Librerías

# install.packages("dyplr")
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
# install.packages("rpart")
library(rpart)

# install.packages("rpart.plot")
library(rpart.plot)

# install.packages("ggplot2")
library(ggplot2)

# install.packages("factoextra")
library(factoextra)
## Welcome! Want to learn more? See two factoextra-related books at https://goo.gl/ve3WBa
# install.packages("cluster")
library(cluster)

# install.packages("data.table")
library(data.table)
## 
## Attaching package: 'data.table'
## The following objects are masked from 'package:dplyr':
## 
##     between, first, last

2. Entender base de datos

summary(db)
##     ClaimID         BillReviewALE         Hospital         PhysicianOutpatient
##  Min.   :  650915   Min.   : -456.00   Min.   : -12570.4   Min.   :   -549.5  
##  1st Qu.:  810172   1st Qu.:    8.25   1st Qu.:    203.3   1st Qu.:    107.5  
##  Median :  843096   Median :   24.00   Median :    582.2   Median :    223.2  
##  Mean   : 9305101   Mean   :  189.62   Mean   :   4787.0   Mean   :   1768.7  
##  3rd Qu.:22714408   3rd Qu.:   65.30   3rd Qu.:   2306.3   3rd Qu.:    691.0  
##  Max.   :62203889   Max.   :56475.30   Max.   :2759604.0   Max.   :1481468.5  
##                     NA's   :105335     NA's   :108592      NA's   :77786      
##        Rx             TotalPaid         TotalReserves TotalRecovery     
##  Min.   :  -469.5   Min.   :   -270.3   Min.   :0     Min.   :     0.0  
##  1st Qu.:    22.7   1st Qu.:     57.0   1st Qu.:0     1st Qu.:     0.0  
##  Median :    60.0   Median :    224.9   Median :0     Median :     0.0  
##  Mean   :  1455.1   Mean   :   4139.0   Mean   :0     Mean   :    59.5  
##  3rd Qu.:   179.2   3rd Qu.:    822.8   3rd Qu.:0     3rd Qu.:     0.0  
##  Max.   :631635.5   Max.   :1758919.5   Max.   :0     Max.   :130335.8  
##  NA's   :109749                                                         
##  IndemnityPaid      OtherPaid         ClaimStatus        IncidentDate      
##  Min.   :  -475   Min.   :  -7820.5   Length:129318      Length:129318     
##  1st Qu.:     0   1st Qu.:     54.6   Class :character   Class :character  
##  Median :     0   Median :    220.6   Mode  :character   Mode  :character  
##  Mean   :  1915   Mean   :   2224.0                                        
##  3rd Qu.:     0   3rd Qu.:    757.0                                        
##  Max.   :640732   Max.   :1602337.1                                        
##                                                                            
##  IncidentDescription ReturnToWorkDate   AverageWeeklyWage  ClaimantOpenedDate
##  Length:129318       Length:129318      Length:129318      Length:129318     
##  Class :character    Class :character   Class :character   Class :character  
##  Mode  :character    Mode  :character   Mode  :character   Mode  :character  
##                                                                              
##                                                                              
##                                                                              
##                                                                              
##  ClaimantClosedDate EmployerNotificationDate ReceivedDate      
##  Length:129318      Length:129318            Length:129318     
##  Class :character   Class :character         Class :character  
##  Mode  :character   Mode  :character         Mode  :character  
##                                                                
##                                                                
##                                                                
##                                                                
##     IsDenied       ClaimantAge_at_DOI    Gender          ClaimantType      
##  Min.   :0.00000   Length:129318      Length:129318      Length:129318     
##  1st Qu.:0.00000   Class :character   Class :character   Class :character  
##  Median :0.00000   Mode  :character   Mode  :character   Mode  :character  
##  Mean   :0.04495                                                           
##  3rd Qu.:0.00000                                                           
##  Max.   :1.00000                                                           
##                                                                            
##  InjuryNature       BodyPartRegion       BodyPart            X          
##  Length:129318      Length:129318      Length:129318      Mode:logical  
##  Class :character   Class :character   Class :character   NA's:129318   
##  Mode  :character   Mode  :character   Mode  :character                 
##                                                                         
##                                                                         
##                                                                         
##                                                                         
##    X.1            X.2            X.3            X.4            X.5         
##  Mode:logical   Mode:logical   Mode:logical   Mode:logical   Mode:logical  
##  NA's:129318    NA's:129318    NA's:129318    NA's:129318    NA's:129318   
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##    X.6            X.7            X.8            X.9            X.10        
##  Mode:logical   Mode:logical   Mode:logical   Mode:logical   Mode:logical  
##  NA's:129318    NA's:129318    NA's:129318    NA's:129318    NA's:129318   
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##    X.11           X.12           X.13           X.14           X.15        
##  Mode:logical   Mode:logical   Mode:logical   Mode:logical   Mode:logical  
##  NA's:129318    NA's:129318    NA's:129318    NA's:129318    NA's:129318   
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##    X.16           X.17           X.18           X.19           X.20        
##  Mode:logical   Mode:logical   Mode:logical   Mode:logical   Mode:logical  
##  NA's:129318    NA's:129318    NA's:129318    NA's:129318    NA's:129318   
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##                                                                            
##    X.21           X.22        
##  Mode:logical   Mode:logical  
##  NA's:129318    NA's:129318   
##                               
##                               
##                               
##                               
## 
count(db, ClaimID, sort=TRUE)
##       ClaimID n
## 1      650915 1
## 2      650916 1
## 3      650917 1
## 4      650918 1
## 5      650919 1
## 6      650920 1
## 7      650928 1
## 8      650929 1
## 9      777624 1
## 10     777625 1
## 11     777626 1
## 12     777627 1
## 13     777628 1
## 14     777629 1
## 15     777630 1
## 16     777631 1
## 17     777632 1
## 18     777633 1
## 19     777634 1
## 20     777635 1
## 21     777636 1
## 22     777637 1
## 23     777638 1
## 24     777639 1
## 25     777640 1
## 26     777641 1
## 27     777642 1
## 28     777643 1
## 29     777644 1
## 30     777645 1
## 31     777646 1
## 32     777647 1
## 33     777648 1
## 34     777649 1
## 35     777650 1
## 36     777651 1
## 37     777652 1
## 38     777653 1
## 39     777654 1
## 40     777655 1
## 41     777656 1
## 42     777657 1
## 43     777658 1
## 44     777659 1
## 45     777660 1
## 46     777661 1
## 47     777662 1
## 48     777663 1
## 49     777664 1
## 50     777665 1
## 51     777666 1
## 52     777667 1
## 53     777668 1
## 54     777669 1
## 55     777670 1
## 56     777671 1
## 57     777672 1
## 58     777673 1
## 59     777674 1
## 60     777675 1
## 61     777676 1
## 62     777677 1
## 63     777678 1
## 64     777679 1
## 65     777680 1
## 66     777681 1
## 67     777682 1
## 68     777683 1
## 69     777684 1
## 70     777685 1
## 71     777686 1
## 72     777687 1
## 73     777688 1
## 74     777689 1
## 75     777690 1
## 76     777691 1
## 77     777692 1
## 78     777693 1
## 79     777694 1
## 80     777695 1
## 81     777696 1
## 82     777697 1
## 83     777698 1
## 84     777699 1
## 85     777700 1
## 86     777701 1
## 87     777702 1
## 88     777703 1
## 89     777704 1
## 90     777705 1
## 91     777706 1
## 92     777707 1
## 93     777708 1
## 94     777709 1
## 95     777710 1
## 96     777711 1
## 97     777712 1
## 98     777713 1
## 99     777714 1
## 100    777715 1
## 101    777716 1
## 102    777717 1
## 103    777718 1
## 104    777719 1
## 105    777720 1
## 106    777721 1
## 107    777722 1
## 108    777723 1
## 109    777724 1
## 110    777725 1
## 111    777726 1
## 112    777727 1
## 113    777728 1
## 114    777729 1
## 115    777730 1
## 116    777731 1
## 117    777732 1
## 118    777733 1
## 119    777734 1
## 120    777735 1
## 121    777736 1
## 122    777737 1
## 123    777738 1
## 124    777739 1
## 125    777740 1
## 126    777741 1
## 127    777742 1
## 128    777743 1
## 129    777744 1
## 130    777745 1
## 131    777746 1
## 132    777747 1
## 133    777748 1
## 134    777749 1
## 135    777750 1
## 136    777751 1
## 137    777752 1
## 138    777753 1
## 139    777754 1
## 140    777755 1
## 141    777756 1
## 142    777757 1
## 143    777758 1
## 144    777759 1
## 145    777760 1
## 146    777761 1
## 147    777762 1
## 148    777763 1
## 149    777764 1
## 150    777765 1
## 151    777766 1
## 152    777767 1
## 153    777768 1
## 154    777769 1
## 155    777770 1
## 156    777771 1
## 157    777772 1
## 158    777773 1
## 159    777774 1
## 160    777775 1
## 161    777776 1
## 162    777777 1
## 163    777778 1
## 164    777779 1
## 165    777780 1
## 166    777781 1
## 167    777782 1
## 168    777783 1
## 169    777784 1
## 170    777785 1
## 171    777786 1
## 172    777787 1
## 173    777788 1
## 174    777789 1
## 175    777790 1
## 176    777791 1
## 177    777792 1
## 178    777793 1
## 179    777794 1
## 180    777795 1
## 181    777796 1
## 182    777797 1
## 183    777798 1
## 184    777799 1
## 185    777800 1
## 186    777801 1
## 187    777802 1
## 188    777803 1
## 189    777804 1
## 190    777805 1
## 191    777806 1
## 192    777807 1
## 193    777808 1
## 194    777809 1
## 195    777810 1
## 196    777811 1
## 197    777812 1
## 198    777813 1
## 199    777814 1
## 200    777815 1
## 201    777816 1
## 202    777817 1
## 203    777818 1
## 204    777819 1
## 205    777820 1
## 206    777821 1
## 207    777822 1
## 208    777823 1
## 209    777824 1
## 210    777825 1
## 211    777826 1
## 212    777827 1
## 213    777828 1
## 214    777829 1
## 215    777830 1
## 216    777831 1
## 217    777832 1
## 218    777833 1
## 219    777834 1
## 220    777835 1
## 221    777836 1
## 222    777837 1
## 223    777838 1
## 224    777839 1
## 225    777840 1
## 226    777841 1
## 227    777842 1
## 228    777843 1
## 229    777844 1
## 230    777845 1
## 231    777846 1
## 232    777847 1
## 233    777848 1
## 234    777849 1
## 235    777850 1
## 236    777851 1
## 237    777852 1
## 238    777853 1
## 239    777862 1
## 240    777863 1
## 241    777864 1
## 242    777865 1
## 243    777866 1
## 244    777867 1
## 245    777868 1
## 246    777869 1
## 247    777870 1
## 248    777871 1
## 249    777872 1
## 250    777873 1
## 251    777874 1
## 252    777875 1
## 253    777876 1
## 254    777877 1
## 255    777878 1
## 256    777879 1
## 257    777880 1
## 258    777881 1
## 259    777882 1
## 260    777883 1
## 261    777884 1
## 262    777885 1
## 263    777886 1
## 264    777887 1
## 265    777888 1
## 266    777889 1
## 267    777890 1
## 268    777891 1
## 269    777892 1
## 270    777893 1
## 271    777894 1
## 272    777895 1
## 273    777896 1
## 274    777897 1
## 275    777898 1
## 276    777899 1
## 277    777900 1
## 278    777901 1
## 279    777902 1
## 280    777903 1
## 281    777904 1
## 282    777905 1
## 283    777906 1
## 284    777907 1
## 285    777908 1
## 286    777909 1
## 287    777910 1
## 288    777911 1
## 289    777912 1
## 290    777913 1
## 291    777914 1
## 292    777915 1
## 293    777916 1
## 294    777917 1
## 295    777918 1
## 296    777919 1
## 297    777920 1
## 298    777921 1
## 299    777922 1
## 300    777923 1
## 301    777924 1
## 302    777925 1
## 303    777926 1
## 304    777927 1
## 305    777928 1
## 306    777929 1
## 307    777930 1
## 308    777931 1
## 309    777932 1
## 310    777933 1
## 311    777934 1
## 312    777935 1
## 313    777936 1
## 314    777937 1
## 315    777938 1
## 316    777939 1
## 317    777940 1
## 318    777941 1
## 319    777942 1
## 320    777943 1
## 321    777944 1
## 322    777945 1
## 323    777946 1
## 324    777947 1
## 325    777948 1
## 326    777949 1
## 327    777950 1
## 328    777951 1
## 329    777952 1
## 330    777953 1
## 331    777954 1
## 332    777955 1
## 333    777956 1
## 334    777957 1
## 335    777958 1
## 336    777959 1
## 337    777960 1
## 338    777961 1
## 339    777962 1
## 340    777963 1
## 341    777964 1
## 342    777965 1
## 343    777966 1
## 344    777967 1
## 345    777968 1
## 346    777969 1
## 347    777970 1
## 348    777971 1
## 349    777972 1
## 350    777973 1
## 351    777974 1
## 352    777975 1
## 353    777976 1
## 354    777977 1
## 355    777978 1
## 356    777979 1
## 357    777980 1
## 358    777981 1
## 359    777982 1
## 360    777983 1
## 361    777984 1
## 362    777985 1
## 363    777986 1
## 364    777988 1
## 365    777989 1
## 366    777990 1
## 367    777991 1
## 368    777992 1
## 369    777993 1
## 370    777994 1
## 371    777995 1
## 372    777996 1
## 373    777997 1
## 374    777998 1
## 375    777999 1
## 376    778000 1
## 377    778001 1
## 378    778002 1
## 379    778003 1
## 380    778004 1
## 381    778005 1
## 382    778006 1
## 383    778007 1
## 384    778008 1
## 385    778009 1
## 386    778010 1
## 387    778011 1
## 388    778012 1
## 389    778013 1
## 390    778014 1
## 391    778015 1
## 392    778016 1
## 393    778017 1
## 394    778018 1
## 395    778019 1
## 396    778020 1
## 397    778021 1
## 398    778022 1
## 399    778023 1
## 400    778024 1
## 401    778025 1
## 402    778026 1
## 403    778027 1
## 404    778028 1
## 405    778029 1
## 406    778030 1
## 407    778031 1
## 408    778032 1
## 409    778033 1
## 410    778034 1
## 411    778035 1
## 412    778036 1
## 413    778037 1
## 414    778038 1
## 415    778039 1
## 416    778040 1
## 417    778041 1
## 418    778042 1
## 419    778043 1
## 420    778044 1
## 421    778045 1
## 422    778046 1
## 423    778047 1
## 424    778048 1
## 425    778049 1
## 426    778050 1
## 427    778051 1
## 428    778052 1
## 429    778053 1
## 430    778054 1
## 431    778055 1
## 432    778056 1
## 433    778057 1
## 434    778058 1
## 435    778059 1
## 436    778060 1
## 437    778061 1
## 438    778062 1
## 439    778063 1
## 440    778064 1
## 441    778065 1
## 442    778066 1
## 443    778067 1
## 444    778068 1
## 445    778069 1
## 446    778070 1
## 447    778071 1
## 448    778072 1
## 449    778073 1
## 450    778074 1
## 451    778075 1
## 452    778076 1
## 453    778077 1
## 454    778078 1
## 455    778079 1
## 456    778080 1
## 457    778081 1
## 458    778082 1
## 459    778083 1
## 460    778084 1
## 461    778085 1
## 462    778086 1
## 463    778087 1
## 464    778088 1
## 465    778089 1
## 466    778090 1
## 467    778091 1
## 468    778092 1
## 469    778093 1
## 470    778094 1
## 471    778095 1
## 472    778096 1
## 473    778097 1
## 474    778098 1
## 475    778099 1
## 476    778100 1
## 477    778101 1
## 478    778102 1
## 479    778103 1
## 480    778104 1
## 481    778105 1
## 482    778106 1
## 483    778107 1
## 484    778108 1
## 485    778109 1
## 486    778110 1
## 487    778111 1
## 488    778112 1
## 489    778113 1
## 490    778114 1
## 491    778115 1
## 492    778116 1
## 493    778117 1
## 494    778118 1
## 495    778119 1
## 496    778120 1
## 497    778121 1
## 498    778122 1
## 499    778123 1
## 500    778124 1
## 501    778125 1
## 502    778126 1
## 503    778127 1
## 504    778128 1
## 505    778129 1
## 506    778130 1
## 507    778131 1
## 508    778132 1
## 509    778133 1
## 510    778134 1
## 511    778135 1
## 512    778136 1
## 513    778137 1
## 514    778138 1
## 515    778139 1
## 516    778140 1
## 517    778141 1
## 518    778142 1
## 519    778143 1
## 520    778144 1
## 521    778145 1
## 522    778146 1
## 523    778147 1
## 524    778148 1
## 525    778149 1
## 526    778150 1
## 527    778151 1
## 528    778152 1
## 529    778153 1
## 530    778154 1
## 531    778155 1
## 532    778156 1
## 533    778157 1
## 534    778158 1
## 535    778159 1
## 536    778160 1
## 537    778161 1
## 538    778162 1
## 539    778163 1
## 540    778164 1
## 541    778165 1
## 542    778166 1
## 543    778167 1
## 544    778168 1
## 545    778169 1
## 546    778170 1
## 547    778171 1
## 548    778172 1
## 549    778173 1
## 550    778174 1
## 551    778175 1
## 552    778176 1
## 553    778177 1
## 554    778178 1
## 555    778179 1
## 556    778180 1
## 557    778181 1
## 558    778182 1
## 559    778183 1
## 560    778184 1
## 561    778185 1
## 562    778186 1
## 563    778187 1
## 564    778188 1
## 565    778189 1
## 566    778190 1
## 567    778191 1
## 568    778192 1
## 569    778193 1
## 570    778194 1
## 571    778195 1
## 572    778196 1
## 573    778197 1
## 574    778198 1
## 575    778199 1
## 576    778200 1
## 577    778201 1
## 578    778202 1
## 579    778203 1
## 580    778204 1
## 581    778205 1
## 582    778206 1
## 583    778207 1
## 584    778208 1
## 585    778209 1
## 586    778210 1
## 587    778211 1
## 588    778212 1
## 589    778213 1
## 590    778214 1
## 591    778215 1
## 592    778216 1
## 593    778217 1
## 594    778218 1
## 595    778219 1
## 596    778220 1
## 597    778221 1
## 598    778222 1
## 599    778223 1
## 600    778224 1
## 601    778225 1
## 602    778226 1
## 603    778227 1
## 604    778228 1
## 605    778229 1
## 606    778230 1
## 607    778231 1
## 608    778232 1
## 609    778233 1
## 610    778234 1
## 611    778235 1
## 612    778236 1
## 613    778237 1
## 614    778238 1
## 615    778239 1
## 616    778240 1
## 617    778241 1
## 618    778242 1
## 619    778243 1
## 620    778244 1
## 621    778245 1
## 622    778246 1
## 623    778247 1
## 624    778248 1
## 625    778249 1
## 626    778250 1
## 627    778251 1
## 628    778252 1
## 629    778253 1
## 630    778254 1
## 631    778255 1
## 632    778256 1
## 633    778257 1
## 634    778258 1
## 635    778259 1
## 636    778260 1
## 637    778261 1
## 638    778262 1
## 639    778263 1
## 640    778264 1
## 641    778265 1
## 642    778266 1
## 643    778267 1
## 644    778268 1
## 645    778269 1
## 646    778270 1
## 647    778271 1
## 648    778272 1
## 649    778273 1
## 650    778274 1
## 651    778275 1
## 652    778276 1
## 653    778277 1
## 654    778278 1
## 655    778279 1
## 656    778280 1
## 657    778281 1
## 658    778282 1
## 659    778283 1
## 660    778284 1
## 661    778285 1
## 662    778286 1
## 663    778287 1
## 664    778288 1
## 665    778289 1
## 666    778290 1
## 667    778291 1
## 668    778292 1
## 669    778293 1
## 670    778294 1
## 671    778295 1
## 672    778296 1
## 673    778297 1
## 674    778298 1
## 675    778299 1
## 676    778300 1
## 677    778301 1
## 678    778302 1
## 679    778303 1
## 680    778304 1
## 681    778305 1
## 682    778306 1
## 683    778307 1
## 684    778308 1
## 685    778309 1
## 686    778310 1
## 687    778311 1
## 688    778312 1
## 689    778313 1
## 690    778314 1
## 691    778315 1
## 692    778316 1
## 693    778317 1
## 694    778318 1
## 695    778319 1
## 696    778320 1
## 697    778321 1
## 698    778322 1
## 699    778323 1
## 700    778324 1
## 701    778325 1
## 702    778326 1
## 703    778327 1
## 704    778328 1
## 705    778329 1
## 706    778330 1
## 707    778331 1
## 708    778332 1
## 709    778333 1
## 710    778334 1
## 711    778335 1
## 712    778336 1
## 713    778337 1
## 714    778338 1
## 715    778339 1
## 716    778340 1
## 717    778341 1
## 718    778342 1
## 719    778343 1
## 720    778344 1
## 721    778345 1
## 722    778346 1
## 723    778347 1
## 724    778348 1
## 725    778349 1
## 726    778350 1
## 727    778351 1
## 728    778352 1
## 729    778353 1
## 730    778354 1
## 731    778355 1
## 732    778356 1
## 733    778357 1
## 734    778358 1
## 735    778359 1
## 736    778360 1
## 737    778361 1
## 738    778362 1
## 739    778363 1
## 740    778364 1
## 741    778365 1
## 742    778366 1
## 743    778367 1
## 744    778368 1
## 745    778369 1
## 746    778370 1
## 747    778371 1
## 748    778372 1
## 749    778373 1
## 750    778374 1
## 751    778375 1
## 752    778376 1
## 753    778377 1
## 754    778378 1
## 755    778379 1
## 756    778380 1
## 757    778381 1
## 758    778382 1
## 759    778383 1
## 760    778384 1
## 761    778385 1
## 762    778386 1
## 763    778387 1
## 764    778388 1
## 765    778389 1
## 766    778390 1
## 767    778391 1
## 768    778392 1
## 769    778393 1
## 770    778394 1
## 771    778395 1
## 772    778396 1
## 773    778397 1
## 774    778398 1
## 775    778399 1
## 776    778400 1
## 777    778401 1
## 778    778402 1
## 779    778403 1
## 780    778404 1
## 781    778405 1
## 782    778406 1
## 783    778407 1
## 784    778408 1
## 785    778409 1
## 786    778410 1
## 787    778411 1
## 788    778412 1
## 789    778413 1
## 790    778414 1
## 791    778415 1
## 792    778416 1
## 793    778417 1
## 794    778418 1
## 795    778419 1
## 796    778420 1
## 797    778421 1
## 798    778422 1
## 799    778423 1
## 800    778424 1
## 801    778425 1
## 802    778426 1
## 803    778427 1
## 804    778428 1
## 805    778429 1
## 806    778430 1
## 807    778431 1
## 808    778432 1
## 809    778433 1
## 810    778434 1
## 811    778435 1
## 812    778436 1
## 813    778437 1
## 814    778438 1
## 815    778439 1
## 816    778440 1
## 817    778441 1
## 818    778442 1
## 819    778443 1
## 820    778444 1
## 821    778445 1
## 822    778446 1
## 823    778447 1
## 824    778448 1
## 825    778449 1
## 826    778450 1
## 827    778451 1
## 828    778452 1
## 829    778453 1
## 830    778454 1
## 831    778455 1
## 832    778456 1
## 833    778457 1
## 834    778458 1
## 835    778459 1
## 836    778460 1
## 837    778461 1
## 838    778462 1
## 839    778463 1
## 840    778464 1
## 841    778465 1
## 842    778466 1
## 843    778467 1
## 844    778468 1
## 845    778469 1
## 846    778470 1
## 847    778471 1
## 848    778472 1
## 849    778473 1
## 850    778474 1
## 851    778475 1
## 852    778476 1
## 853    778477 1
## 854    778478 1
## 855    778479 1
## 856    778480 1
## 857    778481 1
## 858    778482 1
## 859    778483 1
## 860    778484 1
## 861    778485 1
## 862    778486 1
## 863    778487 1
## 864    778488 1
## 865    778489 1
## 866    778490 1
## 867    778491 1
## 868    778492 1
## 869    778493 1
## 870    778494 1
## 871    778495 1
## 872    778496 1
## 873    778497 1
## 874    778498 1
## 875    778499 1
## 876    778500 1
## 877    778501 1
## 878    778502 1
## 879    778503 1
## 880    778504 1
## 881    778505 1
## 882    778506 1
## 883    778507 1
## 884    778508 1
## 885    778509 1
## 886    778510 1
## 887    778511 1
## 888    778512 1
## 889    778513 1
## 890    778514 1
## 891    778515 1
## 892    778516 1
## 893    778517 1
## 894    778518 1
## 895    778519 1
## 896    778520 1
## 897    778521 1
## 898    778522 1
## 899    778523 1
## 900    778524 1
## 901    778525 1
## 902    778526 1
## 903    778527 1
## 904    778528 1
## 905    778529 1
## 906    778530 1
## 907    778531 1
## 908    778532 1
## 909    778533 1
## 910    778534 1
## 911    778535 1
## 912    778536 1
## 913    778537 1
## 914    778538 1
## 915    778539 1
## 916    778540 1
## 917    778541 1
## 918    778542 1
## 919    778543 1
## 920    778544 1
## 921    778545 1
## 922    778546 1
## 923    778547 1
## 924    778548 1
## 925    778549 1
## 926    778550 1
## 927    778551 1
## 928    778552 1
## 929    778553 1
## 930    778554 1
## 931    778555 1
## 932    778556 1
## 933    778557 1
## 934    778558 1
## 935    778559 1
## 936    778560 1
## 937    778561 1
## 938    778562 1
## 939    778563 1
## 940    778564 1
## 941    778565 1
## 942    778566 1
## 943    778567 1
## 944    778568 1
## 945    778569 1
## 946    778570 1
## 947    778571 1
## 948    778572 1
## 949    778573 1
## 950    778574 1
## 951    778575 1
## 952    778576 1
## 953    778577 1
## 954    778578 1
## 955    778579 1
## 956    778580 1
## 957    778581 1
## 958    778582 1
## 959    778583 1
## 960    778584 1
## 961    778585 1
## 962    778586 1
## 963    778587 1
## 964    778588 1
## 965    778589 1
## 966    778590 1
## 967    778591 1
## 968    778592 1
## 969    778593 1
## 970    778594 1
## 971    778595 1
## 972    778596 1
## 973    778597 1
## 974    778598 1
## 975    778599 1
## 976    778600 1
## 977    778601 1
## 978    778602 1
## 979    778603 1
## 980    778604 1
## 981    778605 1
## 982    778606 1
## 983    778607 1
## 984    778608 1
## 985    778609 1
## 986    778610 1
## 987    778611 1
## 988    778612 1
## 989    778613 1
## 990    778614 1
## 991    778615 1
## 992    778616 1
## 993    778617 1
## 994    778618 1
## 995    778619 1
## 996    778620 1
## 997    778621 1
## 998    778622 1
## 999    778623 1
## 1000   778624 1
## 1001   778625 1
## 1002   778626 1
## 1003   778627 1
## 1004   778628 1
## 1005   778629 1
## 1006   778630 1
## 1007   778631 1
## 1008   778632 1
## 1009   778633 1
## 1010   778634 1
## 1011   778635 1
## 1012   778636 1
## 1013   778637 1
## 1014   778638 1
## 1015   778639 1
## 1016   778640 1
## 1017   778641 1
## 1018   778642 1
## 1019   778643 1
## 1020   778644 1
## 1021   778645 1
## 1022   778646 1
## 1023   778647 1
## 1024   778648 1
## 1025   778649 1
## 1026   778650 1
## 1027   778651 1
## 1028   778652 1
## 1029   778653 1
## 1030   778654 1
## 1031   778655 1
## 1032   778656 1
## 1033   778657 1
## 1034   778658 1
## 1035   778659 1
## 1036   778660 1
## 1037   778661 1
## 1038   778662 1
## 1039   778663 1
## 1040   778664 1
## 1041   778665 1
## 1042   778666 1
## 1043   778667 1
## 1044   778668 1
## 1045   778669 1
## 1046   778670 1
## 1047   778671 1
## 1048   778672 1
## 1049   778673 1
## 1050   778674 1
## 1051   778675 1
## 1052   778676 1
## 1053   778677 1
## 1054   778678 1
## 1055   778679 1
## 1056   778680 1
## 1057   778681 1
## 1058   778682 1
## 1059   778683 1
## 1060   778684 1
## 1061   778685 1
## 1062   778686 1
## 1063   778687 1
## 1064   778688 1
## 1065   778689 1
## 1066   778690 1
## 1067   778691 1
## 1068   778692 1
## 1069   778693 1
## 1070   778694 1
## 1071   778695 1
## 1072   778696 1
## 1073   778697 1
## 1074   778698 1
## 1075   778699 1
## 1076   778700 1
## 1077   778701 1
## 1078   778702 1
## 1079   778703 1
## 1080   778704 1
## 1081   778705 1
## 1082   778706 1
## 1083   778707 1
## 1084   778708 1
## 1085   778709 1
## 1086   778710 1
## 1087   778711 1
## 1088   778712 1
## 1089   778713 1
## 1090   778714 1
## 1091   778715 1
## 1092   778716 1
## 1093   778717 1
## 1094   778718 1
## 1095   778719 1
## 1096   778720 1
## 1097   778721 1
## 1098   778722 1
## 1099   778723 1
## 1100   778724 1
## 1101   778725 1
## 1102   778726 1
## 1103   778727 1
## 1104   778728 1
## 1105   778729 1
## 1106   778730 1
## 1107   778731 1
## 1108   778732 1
## 1109   778733 1
## 1110   778734 1
## 1111   778735 1
## 1112   778736 1
## 1113   778737 1
## 1114   778738 1
## 1115   778739 1
## 1116   778740 1
## 1117   778741 1
## 1118   778742 1
## 1119   778743 1
## 1120   778744 1
## 1121   778745 1
## 1122   778746 1
## 1123   778747 1
## 1124   778748 1
## 1125   778749 1
## 1126   778750 1
## 1127   778751 1
## 1128   778752 1
## 1129   778753 1
## 1130   778754 1
## 1131   778755 1
## 1132   778756 1
## 1133   778757 1
## 1134   778758 1
## 1135   778759 1
## 1136   778760 1
## 1137   778761 1
## 1138   778762 1
## 1139   778763 1
## 1140   778764 1
## 1141   778765 1
## 1142   778766 1
## 1143   778767 1
## 1144   778768 1
## 1145   778769 1
## 1146   778770 1
## 1147   778771 1
## 1148   778772 1
## 1149   778773 1
## 1150   778774 1
## 1151   778775 1
## 1152   778776 1
## 1153   778777 1
## 1154   778778 1
## 1155   778779 1
## 1156   778780 1
## 1157   778781 1
## 1158   778782 1
## 1159   778783 1
## 1160   778784 1
## 1161   778785 1
## 1162   778786 1
## 1163   778787 1
## 1164   778788 1
## 1165   778789 1
## 1166   778790 1
## 1167   778791 1
## 1168   778792 1
## 1169   778793 1
## 1170   778794 1
## 1171   778795 1
## 1172   778796 1
## 1173   778797 1
## 1174   778798 1
## 1175   778799 1
## 1176   778800 1
## 1177   778801 1
## 1178   778802 1
## 1179   778803 1
## 1180   778804 1
## 1181   778805 1
## 1182   778806 1
## 1183   778807 1
## 1184   778808 1
## 1185   778809 1
## 1186   778810 1
## 1187   778811 1
## 1188   778812 1
## 1189   778813 1
## 1190   778814 1
## 1191   778815 1
## 1192   778816 1
## 1193   778817 1
## 1194   778818 1
## 1195   778819 1
## 1196   778820 1
## 1197   778821 1
## 1198   778822 1
## 1199   778823 1
## 1200   778824 1
## 1201   778825 1
## 1202   778826 1
## 1203   778827 1
## 1204   778828 1
## 1205   778829 1
## 1206   778830 1
## 1207   778831 1
## 1208   778832 1
## 1209   778833 1
## 1210   778834 1
## 1211   778835 1
## 1212   778836 1
## 1213   778837 1
## 1214   778838 1
## 1215   778839 1
## 1216   778840 1
## 1217   778841 1
## 1218   778842 1
## 1219   778843 1
## 1220   778844 1
## 1221   778845 1
## 1222   778846 1
## 1223   778847 1
## 1224   778848 1
## 1225   778849 1
## 1226   778850 1
## 1227   778851 1
## 1228   778852 1
## 1229   778853 1
## 1230   778854 1
## 1231   778855 1
## 1232   778856 1
## 1233   778858 1
## 1234   778859 1
## 1235   778860 1
## 1236   778861 1
## 1237   778862 1
## 1238   778863 1
## 1239   778864 1
## 1240   778865 1
## 1241   778866 1
## 1242   778867 1
## 1243   778868 1
## 1244   778869 1
## 1245   778870 1
## 1246   778871 1
## 1247   778872 1
## 1248   778873 1
## 1249   778874 1
## 1250   778875 1
## 1251   778876 1
## 1252   778877 1
## 1253   778878 1
## 1254   778879 1
## 1255   778880 1
## 1256   778881 1
## 1257   778882 1
## 1258   778883 1
## 1259   778884 1
## 1260   778885 1
## 1261   778886 1
## 1262   778887 1
## 1263   778888 1
## 1264   778889 1
## 1265   778890 1
## 1266   778891 1
## 1267   778892 1
## 1268   778893 1
## 1269   778894 1
## 1270   778895 1
## 1271   778896 1
## 1272   778897 1
## 1273   778898 1
## 1274   778899 1
## 1275   778900 1
## 1276   778901 1
## 1277   778902 1
## 1278   778903 1
## 1279   778904 1
## 1280   778905 1
## 1281   778906 1
## 1282   778907 1
## 1283   778908 1
## 1284   778909 1
## 1285   778910 1
## 1286   778911 1
## 1287   778912 1
## 1288   778913 1
## 1289   778914 1
## 1290   778915 1
## 1291   778916 1
## 1292   778917 1
## 1293   778918 1
## 1294   778919 1
## 1295   778920 1
## 1296   778921 1
## 1297   778922 1
## 1298   778923 1
## 1299   778924 1
## 1300   778925 1
## 1301   778926 1
## 1302   778927 1
## 1303   778928 1
## 1304   778929 1
## 1305   778930 1
## 1306   778931 1
## 1307   778932 1
## 1308   778933 1
## 1309   778934 1
## 1310   778935 1
## 1311   778936 1
## 1312   778937 1
## 1313   778938 1
## 1314   778939 1
## 1315   778940 1
## 1316   778941 1
## 1317   778942 1
## 1318   778943 1
## 1319   778944 1
## 1320   778945 1
## 1321   778946 1
## 1322   778947 1
## 1323   778948 1
## 1324   778949 1
## 1325   778950 1
## 1326   778951 1
## 1327   778952 1
## 1328   778953 1
## 1329   778954 1
## 1330   778955 1
## 1331   778956 1
## 1332   778957 1
## 1333   778958 1
## 1334   778959 1
## 1335   778960 1
## 1336   778961 1
## 1337   778962 1
## 1338   778963 1
## 1339   778964 1
## 1340   778965 1
## 1341   778966 1
## 1342   778967 1
## 1343   778968 1
## 1344   778969 1
## 1345   778970 1
## 1346   778971 1
## 1347   778972 1
## 1348   778973 1
## 1349   778974 1
## 1350   778975 1
## 1351   778976 1
## 1352   778977 1
## 1353   778978 1
## 1354   778979 1
## 1355   778980 1
## 1356   778981 1
## 1357   778982 1
## 1358   778983 1
## 1359   778984 1
## 1360   778985 1
## 1361   778986 1
## 1362   778987 1
## 1363   778988 1
## 1364   778989 1
## 1365   778990 1
## 1366   778991 1
## 1367   778992 1
## 1368   778993 1
## 1369   778994 1
## 1370   778995 1
## 1371   778996 1
## 1372   778997 1
## 1373   778998 1
## 1374   778999 1
## 1375   779000 1
## 1376   779001 1
## 1377   779002 1
## 1378   779003 1
## 1379   779004 1
## 1380   779005 1
## 1381   779006 1
## 1382   779007 1
## 1383   779008 1
## 1384   779009 1
## 1385   779010 1
## 1386   779011 1
## 1387   779012 1
## 1388   779013 1
## 1389   779014 1
## 1390   779015 1
## 1391   779016 1
## 1392   779017 1
## 1393   779018 1
## 1394   779019 1
## 1395   779020 1
## 1396   779021 1
## 1397   779022 1
## 1398   779023 1
## 1399   779024 1
## 1400   779025 1
## 1401   779026 1
## 1402   779027 1
## 1403   779028 1
## 1404   779029 1
## 1405   779030 1
## 1406   779031 1
## 1407   779032 1
## 1408   779033 1
## 1409   779034 1
## 1410   779035 1
## 1411   779036 1
## 1412   779037 1
## 1413   779038 1
## 1414   779039 1
## 1415   779040 1
## 1416   779041 1
## 1417   779042 1
## 1418   779043 1
## 1419   779044 1
## 1420   779045 1
## 1421   779046 1
## 1422   779047 1
## 1423   779048 1
## 1424   779049 1
## 1425   779052 1
## 1426   779053 1
## 1427   779054 1
## 1428   779055 1
## 1429   779056 1
## 1430   779057 1
## 1431   779058 1
## 1432   779059 1
## 1433   779060 1
## 1434   779061 1
## 1435   779062 1
## 1436   779063 1
## 1437   779064 1
## 1438   779065 1
## 1439   779066 1
## 1440   779067 1
## 1441   779068 1
## 1442   779069 1
## 1443   779070 1
## 1444   779071 1
## 1445   779072 1
## 1446   779073 1
## 1447   779074 1
## 1448   779075 1
## 1449   779076 1
## 1450   779077 1
## 1451   779078 1
## 1452   779079 1
## 1453   779080 1
## 1454   779081 1
## 1455   779082 1
## 1456   779083 1
## 1457   779084 1
## 1458   779085 1
## 1459   779086 1
## 1460   779087 1
## 1461   779088 1
## 1462   779089 1
## 1463   779090 1
## 1464   779091 1
## 1465   779092 1
## 1466   779093 1
## 1467   779094 1
## 1468   779095 1
## 1469   779096 1
## 1470   779097 1
## 1471   779098 1
## 1472   779099 1
## 1473   779100 1
## 1474   779101 1
## 1475   779103 1
## 1476   779104 1
## 1477   779105 1
## 1478   779106 1
## 1479   779107 1
## 1480   779108 1
## 1481   779109 1
## 1482   779110 1
## 1483   779111 1
## 1484   779112 1
## 1485   779113 1
## 1486   779114 1
## 1487   779115 1
## 1488   779116 1
## 1489   779117 1
## 1490   779118 1
## 1491   779119 1
## 1492   779120 1
## 1493   779121 1
## 1494   779122 1
## 1495   779123 1
## 1496   779124 1
## 1497   779125 1
## 1498   779126 1
## 1499   779127 1
## 1500   779128 1
## 1501   779129 1
## 1502   779130 1
## 1503   779131 1
## 1504   779132 1
## 1505   779133 1
## 1506   779134 1
## 1507   779135 1
## 1508   779136 1
## 1509   779137 1
## 1510   779138 1
## 1511   779139 1
## 1512   779140 1
## 1513   779141 1
## 1514   779142 1
## 1515   779143 1
## 1516   779144 1
## 1517   779145 1
## 1518   779146 1
## 1519   779147 1
## 1520   779148 1
## 1521   779149 1
## 1522   779151 1
## 1523   779152 1
## 1524   779153 1
## 1525   779154 1
## 1526   779155 1
## 1527   779156 1
## 1528   779157 1
## 1529   779158 1
## 1530   779159 1
## 1531   779160 1
## 1532   779161 1
## 1533   779162 1
## 1534   779163 1
## 1535   779164 1
## 1536   779165 1
## 1537   779166 1
## 1538   779167 1
## 1539   779168 1
## 1540   779169 1
## 1541   779170 1
## 1542   779171 1
## 1543   779172 1
## 1544   779173 1
## 1545   779174 1
## 1546   779175 1
## 1547   779176 1
## 1548   779177 1
## 1549   779178 1
## 1550   779179 1
## 1551   779180 1
## 1552   779181 1
## 1553   779182 1
## 1554   779183 1
## 1555   779184 1
## 1556   779185 1
## 1557   779186 1
## 1558   779187 1
## 1559   779188 1
## 1560   779189 1
## 1561   779190 1
## 1562   779191 1
## 1563   779192 1
## 1564   779193 1
## 1565   779194 1
## 1566   779195 1
## 1567   779196 1
## 1568   779197 1
## 1569   779198 1
## 1570   779199 1
## 1571   779200 1
## 1572   779201 1
## 1573   779202 1
## 1574   779203 1
## 1575   779204 1
## 1576   779205 1
## 1577   779206 1
## 1578   779207 1
## 1579   779208 1
## 1580   779209 1
## 1581   779210 1
## 1582   779211 1
## 1583   779212 1
## 1584   779213 1
## 1585   779214 1
## 1586   779215 1
## 1587   779216 1
## 1588   779217 1
## 1589   779218 1
## 1590   779219 1
## 1591   779220 1
## 1592   779221 1
## 1593   779222 1
## 1594   779223 1
## 1595   779224 1
## 1596   779225 1
## 1597   779226 1
## 1598   779227 1
## 1599   779228 1
## 1600   779229 1
## 1601   779230 1
## 1602   779231 1
## 1603   779232 1
## 1604   779233 1
## 1605   779234 1
## 1606   779235 1
## 1607   779236 1
## 1608   779237 1
## 1609   779238 1
## 1610   779239 1
## 1611   779240 1
## 1612   779241 1
## 1613   779242 1
## 1614   779243 1
## 1615   779244 1
## 1616   779245 1
## 1617   779246 1
## 1618   779247 1
## 1619   779248 1
## 1620   779249 1
## 1621   779250 1
## 1622   779251 1
## 1623   779252 1
## 1624   779253 1
## 1625   779254 1
## 1626   779255 1
## 1627   779256 1
## 1628   779257 1
## 1629   779258 1
## 1630   779259 1
## 1631   779260 1
## 1632   779261 1
## 1633   779262 1
## 1634   779263 1
## 1635   779264 1
## 1636   779265 1
## 1637   779266 1
## 1638   779267 1
## 1639   779268 1
## 1640   779269 1
## 1641   779270 1
## 1642   779271 1
## 1643   779272 1
## 1644   779273 1
## 1645   779274 1
## 1646   779275 1
## 1647   779276 1
## 1648   779277 1
## 1649   779278 1
## 1650   779279 1
## 1651   779280 1
## 1652   779281 1
## 1653   779282 1
## 1654   779283 1
## 1655   779284 1
## 1656   779285 1
## 1657   779286 1
## 1658   779287 1
## 1659   779288 1
## 1660   779289 1
## 1661   779290 1
## 1662   779291 1
## 1663   779292 1
## 1664   779293 1
## 1665   779294 1
## 1666   779295 1
## 1667   779296 1
## 1668   779297 1
## 1669   779298 1
## 1670   779299 1
## 1671   779300 1
## 1672   779301 1
## 1673   779302 1
## 1674   779303 1
## 1675   779304 1
## 1676   779305 1
## 1677   779306 1
## 1678   779307 1
## 1679   779308 1
## 1680   779309 1
## 1681   779310 1
## 1682   779311 1
## 1683   779312 1
## 1684   779313 1
## 1685   779314 1
## 1686   779315 1
## 1687   779316 1
## 1688   779317 1
## 1689   779318 1
## 1690   779319 1
## 1691   779320 1
## 1692   779321 1
## 1693   779322 1
## 1694   779323 1
## 1695   779324 1
## 1696   779325 1
## 1697   779326 1
## 1698   779327 1
## 1699   779328 1
## 1700   779329 1
## 1701   779330 1
## 1702   779331 1
## 1703   779332 1
## 1704   779333 1
## 1705   779334 1
## 1706   779335 1
## 1707   779336 1
## 1708   779337 1
## 1709   779338 1
## 1710   779339 1
## 1711   779340 1
## 1712   779341 1
## 1713   779342 1
## 1714   779343 1
## 1715   779344 1
## 1716   779345 1
## 1717   779346 1
## 1718   779347 1
## 1719   779348 1
## 1720   779349 1
## 1721   779350 1
## 1722   779351 1
## 1723   779352 1
## 1724   779353 1
## 1725   779354 1
## 1726   779355 1
## 1727   779356 1
## 1728   779357 1
## 1729   779358 1
## 1730   779359 1
## 1731   779360 1
## 1732   779361 1
## 1733   779362 1
## 1734   779363 1
## 1735   779364 1
## 1736   779365 1
## 1737   779366 1
## 1738   779367 1
## 1739   779368 1
## 1740   779369 1
## 1741   779370 1
## 1742   779371 1
## 1743   779372 1
## 1744   779373 1
## 1745   779374 1
## 1746   779375 1
## 1747   779376 1
## 1748   779377 1
## 1749   779378 1
## 1750   779379 1
## 1751   779380 1
## 1752   779381 1
## 1753   779382 1
## 1754   779383 1
## 1755   779384 1
## 1756   779385 1
## 1757   779386 1
## 1758   779387 1
## 1759   779388 1
## 1760   779389 1
## 1761   779390 1
## 1762   779391 1
## 1763   779392 1
## 1764   779393 1
## 1765   779394 1
## 1766   779395 1
## 1767   779396 1
## 1768   779397 1
## 1769   779398 1
## 1770   779399 1
## 1771   779400 1
## 1772   779401 1
## 1773   779402 1
## 1774   779403 1
## 1775   779404 1
## 1776   779405 1
## 1777   779406 1
## 1778   779407 1
## 1779   779408 1
## 1780   779409 1
## 1781   779410 1
## 1782   779411 1
## 1783   779412 1
## 1784   779413 1
## 1785   779414 1
## 1786   779415 1
## 1787   779416 1
## 1788   779417 1
## 1789   779418 1
## 1790   779419 1
## 1791   779420 1
## 1792   779421 1
## 1793   779422 1
## 1794   779423 1
## 1795   779424 1
## 1796   779425 1
## 1797   779426 1
## 1798   779427 1
## 1799   779428 1
## 1800   779429 1
## 1801   779430 1
## 1802   779431 1
## 1803   779432 1
## 1804   779433 1
## 1805   779434 1
## 1806   779435 1
## 1807   779436 1
## 1808   779437 1
## 1809   779438 1
## 1810   779439 1
## 1811   779440 1
## 1812   779441 1
## 1813   779442 1
## 1814   779443 1
## 1815   779444 1
## 1816   779445 1
## 1817   779446 1
## 1818   779447 1
## 1819   779448 1
## 1820   779449 1
## 1821   779450 1
## 1822   779451 1
## 1823   779452 1
## 1824   779453 1
## 1825   779454 1
## 1826   779455 1
## 1827   779456 1
## 1828   779457 1
## 1829   779458 1
## 1830   779459 1
## 1831   779460 1
## 1832   779461 1
## 1833   779462 1
## 1834   779463 1
## 1835   779464 1
## 1836   779465 1
## 1837   779466 1
## 1838   779467 1
## 1839   779468 1
## 1840   779469 1
## 1841   779470 1
## 1842   779471 1
## 1843   779472 1
## 1844   779473 1
## 1845   779474 1
## 1846   779475 1
## 1847   779476 1
## 1848   779477 1
## 1849   779478 1
## 1850   779479 1
## 1851   779480 1
## 1852   779481 1
## 1853   779482 1
## 1854   779483 1
## 1855   779484 1
## 1856   779485 1
## 1857   779486 1
## 1858   779487 1
## 1859   779488 1
## 1860   779489 1
## 1861   779490 1
## 1862   779491 1
## 1863   779492 1
## 1864   779493 1
## 1865   779494 1
## 1866   779495 1
## 1867   779496 1
## 1868   779497 1
## 1869   779498 1
## 1870   779499 1
## 1871   779500 1
## 1872   779501 1
## 1873   779502 1
## 1874   779503 1
## 1875   779504 1
## 1876   779505 1
## 1877   779506 1
## 1878   779507 1
## 1879   779508 1
## 1880   779509 1
## 1881   779510 1
## 1882   779511 1
## 1883   779512 1
## 1884   779513 1
## 1885   779514 1
## 1886   779515 1
## 1887   779516 1
## 1888   779517 1
## 1889   779518 1
## 1890   779519 1
## 1891   779520 1
## 1892   779521 1
## 1893   779522 1
## 1894   779523 1
## 1895   779524 1
## 1896   779525 1
## 1897   779526 1
## 1898   779527 1
## 1899   779528 1
## 1900   779529 1
## 1901   779530 1
## 1902   779531 1
## 1903   779532 1
## 1904   779533 1
## 1905   779534 1
## 1906   779535 1
## 1907   779536 1
## 1908   779537 1
## 1909   779538 1
## 1910   779539 1
## 1911   779540 1
## 1912   779541 1
## 1913   779542 1
## 1914   779543 1
## 1915   779544 1
## 1916   779545 1
## 1917   779546 1
## 1918   779547 1
## 1919   779548 1
## 1920   779549 1
## 1921   779550 1
## 1922   779551 1
## 1923   779552 1
## 1924   779553 1
## 1925   779554 1
## 1926   779555 1
## 1927   779556 1
## 1928   779557 1
## 1929   779558 1
## 1930   779559 1
## 1931   779560 1
## 1932   779561 1
## 1933   779562 1
## 1934   779563 1
## 1935   779564 1
## 1936   779565 1
## 1937   779566 1
## 1938   779567 1
## 1939   779568 1
## 1940   779569 1
## 1941   779570 1
## 1942   779571 1
## 1943   779572 1
## 1944   779573 1
## 1945   779574 1
## 1946   779575 1
## 1947   779576 1
## 1948   779577 1
## 1949   779578 1
## 1950   779579 1
## 1951   779580 1
## 1952   779581 1
## 1953   779582 1
## 1954   779583 1
## 1955   779584 1
## 1956   779585 1
## 1957   779586 1
## 1958   779587 1
## 1959   779588 1
## 1960   779590 1
## 1961   779591 1
## 1962   779592 1
## 1963   779593 1
## 1964   779594 1
## 1965   779595 1
## 1966   779596 1
## 1967   779597 1
## 1968   779598 1
## 1969   779599 1
## 1970   779600 1
## 1971   779601 1
## 1972   779602 1
## 1973   779603 1
## 1974   779604 1
## 1975   779605 1
## 1976   779606 1
## 1977   779607 1
## 1978   779608 1
## 1979   779609 1
## 1980   779610 1
## 1981   779611 1
## 1982   779612 1
## 1983   779613 1
## 1984   779614 1
## 1985   779615 1
## 1986   779616 1
## 1987   779617 1
## 1988   779618 1
## 1989   779619 1
## 1990   779620 1
## 1991   779621 1
## 1992   779622 1
## 1993   779623 1
## 1994   779624 1
## 1995   779625 1
## 1996   779626 1
## 1997   779627 1
## 1998   779628 1
## 1999   779629 1
## 2000   779630 1
## 2001   779631 1
## 2002   779632 1
## 2003   779633 1
## 2004   779634 1
## 2005   779635 1
## 2006   779636 1
## 2007   779637 1
## 2008   779638 1
## 2009   779639 1
## 2010   779640 1
## 2011   779641 1
## 2012   779642 1
## 2013   779643 1
## 2014   779644 1
## 2015   779645 1
## 2016   779646 1
## 2017   779647 1
## 2018   779648 1
## 2019   779649 1
## 2020   779650 1
## 2021   779651 1
## 2022   779652 1
## 2023   779653 1
## 2024   779654 1
## 2025   779655 1
## 2026   779656 1
## 2027   779657 1
## 2028   779658 1
## 2029   779659 1
## 2030   779660 1
## 2031   779661 1
## 2032   779662 1
## 2033   779663 1
## 2034   779664 1
## 2035   779665 1
## 2036   779666 1
## 2037   779667 1
## 2038   779668 1
## 2039   779669 1
## 2040   779670 1
## 2041   779671 1
## 2042   779672 1
## 2043   779673 1
## 2044   779674 1
## 2045   779675 1
## 2046   779676 1
## 2047   779677 1
## 2048   779678 1
## 2049   779679 1
## 2050   779680 1
## 2051   779681 1
## 2052   779682 1
## 2053   779683 1
## 2054   779684 1
## 2055   779685 1
## 2056   779686 1
## 2057   779687 1
## 2058   779688 1
## 2059   779689 1
## 2060   779690 1
## 2061   779691 1
## 2062   779692 1
## 2063   779693 1
## 2064   779694 1
## 2065   779695 1
## 2066   779696 1
## 2067   779697 1
## 2068   779698 1
## 2069   779699 1
## 2070   779700 1
## 2071   779701 1
## 2072   779702 1
## 2073   779703 1
## 2074   779704 1
## 2075   779705 1
## 2076   779706 1
## 2077   779707 1
## 2078   779708 1
## 2079   779709 1
## 2080   779710 1
## 2081   779711 1
## 2082   779712 1
## 2083   779713 1
## 2084   779714 1
## 2085   779715 1
## 2086   779716 1
## 2087   779717 1
## 2088   779718 1
## 2089   779719 1
## 2090   779720 1
## 2091   779721 1
## 2092   779722 1
## 2093   779723 1
## 2094   779724 1
## 2095   779725 1
## 2096   779726 1
## 2097   779727 1
## 2098   779728 1
## 2099   779729 1
## 2100   779730 1
## 2101   779731 1
## 2102   779732 1
## 2103   779733 1
## 2104   779734 1
## 2105   779735 1
## 2106   779736 1
## 2107   779737 1
## 2108   779738 1
## 2109   779739 1
## 2110   779740 1
## 2111   779741 1
## 2112   779742 1
## 2113   779743 1
## 2114   779744 1
## 2115   779745 1
## 2116   779746 1
## 2117   779747 1
## 2118   779748 1
## 2119   779749 1
## 2120   779750 1
## 2121   779751 1
## 2122   779752 1
## 2123   779753 1
## 2124   779754 1
## 2125   779755 1
## 2126   779756 1
## 2127   779757 1
## 2128   779758 1
## 2129   779759 1
## 2130   779760 1
## 2131   779761 1
## 2132   779762 1
## 2133   779763 1
## 2134   779764 1
## 2135   779765 1
## 2136   779766 1
## 2137   779767 1
## 2138   779768 1
## 2139   779769 1
## 2140   779770 1
## 2141   779771 1
## 2142   779772 1
## 2143   779773 1
## 2144   779774 1
## 2145   779775 1
## 2146   779776 1
## 2147   779777 1
## 2148   779778 1
## 2149   779779 1
## 2150   779780 1
## 2151   779781 1
## 2152   779782 1
## 2153   779783 1
## 2154   779784 1
## 2155   779785 1
## 2156   779786 1
## 2157   779787 1
## 2158   779788 1
## 2159   779789 1
## 2160   779790 1
## 2161   779791 1
## 2162   779792 1
## 2163   779793 1
## 2164   779794 1
## 2165   779795 1
## 2166   779796 1
## 2167   779797 1
## 2168   779798 1
## 2169   779799 1
## 2170   779800 1
## 2171   779801 1
## 2172   779802 1
## 2173   779803 1
## 2174   779804 1
## 2175   779805 1
## 2176   779806 1
## 2177   779807 1
## 2178   779808 1
## 2179   779809 1
## 2180   779810 1
## 2181   779811 1
## 2182   779812 1
## 2183   779813 1
## 2184   779814 1
## 2185   779815 1
## 2186   779816 1
## 2187   779817 1
## 2188   779818 1
## 2189   779819 1
## 2190   779820 1
## 2191   779821 1
## 2192   779822 1
## 2193   779823 1
## 2194   779824 1
## 2195   779825 1
## 2196   779826 1
## 2197   779827 1
## 2198   779828 1
## 2199   779829 1
## 2200   779830 1
## 2201   779831 1
## 2202   779832 1
## 2203   779833 1
## 2204   779834 1
## 2205   779835 1
## 2206   779836 1
## 2207   779837 1
## 2208   779838 1
## 2209   779839 1
## 2210   779840 1
## 2211   779841 1
## 2212   779842 1
## 2213   779843 1
## 2214   779844 1
## 2215   779845 1
## 2216   779846 1
## 2217   779847 1
## 2218   779848 1
## 2219   779849 1
## 2220   779850 1
## 2221   779851 1
## 2222   779852 1
## 2223   779853 1
## 2224   779854 1
## 2225   779855 1
## 2226   779856 1
## 2227   779857 1
## 2228   779858 1
## 2229   779859 1
## 2230   779860 1
## 2231   779861 1
## 2232   779862 1
## 2233   779863 1
## 2234   779864 1
## 2235   779865 1
## 2236   779866 1
## 2237   779867 1
## 2238   779868 1
## 2239   779869 1
## 2240   779870 1
## 2241   779871 1
## 2242   779872 1
## 2243   779873 1
## 2244   779874 1
## 2245   779875 1
## 2246   779876 1
## 2247   779877 1
## 2248   779878 1
## 2249   779879 1
## 2250   779880 1
## 2251   779881 1
## 2252   779882 1
## 2253   779883 1
## 2254   779884 1
## 2255   779885 1
## 2256   779886 1
## 2257   779887 1
## 2258   779888 1
## 2259   779889 1
## 2260   779890 1
## 2261   779891 1
## 2262   779892 1
## 2263   779893 1
## 2264   779894 1
## 2265   779895 1
## 2266   779896 1
## 2267   779897 1
## 2268   779898 1
## 2269   779899 1
## 2270   779900 1
## 2271   779901 1
## 2272   779902 1
## 2273   779903 1
## 2274   779904 1
## 2275   779905 1
## 2276   779906 1
## 2277   779907 1
## 2278   779908 1
## 2279   779909 1
## 2280   779910 1
## 2281   779911 1
## 2282   779912 1
## 2283   779913 1
## 2284   779914 1
## 2285   779915 1
## 2286   779916 1
## 2287   779917 1
## 2288   779918 1
## 2289   779919 1
## 2290   779920 1
## 2291   779921 1
## 2292   779922 1
## 2293   779923 1
## 2294   779924 1
## 2295   779925 1
## 2296   779926 1
## 2297   779927 1
## 2298   779928 1
## 2299   779929 1
## 2300   779930 1
## 2301   779931 1
## 2302   779932 1
## 2303   779933 1
## 2304   779934 1
## 2305   779935 1
## 2306   779936 1
## 2307   779937 1
## 2308   779938 1
## 2309   779939 1
## 2310   779940 1
## 2311   779941 1
## 2312   779942 1
## 2313   779943 1
## 2314   779944 1
## 2315   779945 1
## 2316   779946 1
## 2317   779947 1
## 2318   779948 1
## 2319   779949 1
## 2320   779950 1
## 2321   779951 1
## 2322   779952 1
## 2323   779953 1
## 2324   779954 1
## 2325   779955 1
## 2326   779956 1
## 2327   779957 1
## 2328   779958 1
## 2329   779959 1
## 2330   779960 1
## 2331   779961 1
## 2332   779962 1
## 2333   779963 1
## 2334   779964 1
## 2335   779965 1
## 2336   779966 1
## 2337   779967 1
## 2338   779968 1
## 2339   779969 1
## 2340   779970 1
## 2341   779971 1
## 2342   779972 1
## 2343   779973 1
## 2344   779974 1
## 2345   779975 1
## 2346   779976 1
## 2347   779977 1
## 2348   779978 1
## 2349   779979 1
## 2350   779980 1
## 2351   779981 1
## 2352   779982 1
## 2353   779983 1
## 2354   779984 1
## 2355   779985 1
## 2356   779986 1
## 2357   779987 1
## 2358   779988 1
## 2359   779989 1
## 2360   779990 1
## 2361   779991 1
## 2362   779992 1
## 2363   779993 1
## 2364   779994 1
## 2365   779995 1
## 2366   779996 1
## 2367   779997 1
## 2368   779998 1
## 2369   779999 1
## 2370   780000 1
## 2371   780001 1
## 2372   780002 1
## 2373   780003 1
## 2374   780004 1
## 2375   780005 1
## 2376   780006 1
## 2377   780007 1
## 2378   780008 1
## 2379   780009 1
## 2380   780010 1
## 2381   780011 1
## 2382   780012 1
## 2383   780013 1
## 2384   780014 1
## 2385   780015 1
## 2386   780016 1
## 2387   780017 1
## 2388   780018 1
## 2389   780019 1
## 2390   780020 1
## 2391   780021 1
## 2392   780022 1
## 2393   780023 1
## 2394   780024 1
## 2395   780025 1
## 2396   780026 1
## 2397   780027 1
## 2398   780028 1
## 2399   780029 1
## 2400   780030 1
## 2401   780031 1
## 2402   780032 1
## 2403   780033 1
## 2404   780034 1
## 2405   780035 1
## 2406   780036 1
## 2407   780037 1
## 2408   780038 1
## 2409   780039 1
## 2410   780040 1
## 2411   780041 1
## 2412   780042 1
## 2413   780043 1
## 2414   780044 1
## 2415   780045 1
## 2416   780046 1
## 2417   780047 1
## 2418   780048 1
## 2419   780049 1
## 2420   780050 1
## 2421   780051 1
## 2422   780052 1
## 2423   780053 1
## 2424   780054 1
## 2425   780055 1
## 2426   780056 1
## 2427   780057 1
## 2428   780058 1
## 2429   780059 1
## 2430   780060 1
## 2431   780061 1
## 2432   780062 1
## 2433   780063 1
## 2434   780064 1
## 2435   780065 1
## 2436   780066 1
## 2437   780067 1
## 2438   780068 1
## 2439   780069 1
## 2440   780070 1
## 2441   780071 1
## 2442   780072 1
## 2443   780073 1
## 2444   780074 1
## 2445   780075 1
## 2446   780076 1
## 2447   780077 1
## 2448   780078 1
## 2449   780079 1
## 2450   780080 1
## 2451   780081 1
## 2452   780082 1
## 2453   780083 1
## 2454   780084 1
## 2455   780085 1
## 2456   780086 1
## 2457   780088 1
## 2458   780089 1
## 2459   780090 1
## 2460   780091 1
## 2461   780092 1
## 2462   780093 1
## 2463   780094 1
## 2464   780095 1
## 2465   780096 1
## 2466   780097 1
## 2467   780098 1
## 2468   780099 1
## 2469   780100 1
## 2470   780101 1
## 2471   780102 1
## 2472   780103 1
## 2473   780104 1
## 2474   780105 1
## 2475   780106 1
## 2476   780107 1
## 2477   780108 1
## 2478   780109 1
## 2479   780110 1
## 2480   780111 1
## 2481   780112 1
## 2482   780113 1
## 2483   780114 1
## 2484   780115 1
## 2485   780116 1
## 2486   780117 1
## 2487   780118 1
## 2488   780119 1
## 2489   780120 1
## 2490   780121 1
## 2491   780122 1
## 2492   780123 1
## 2493   780124 1
## 2494   780125 1
## 2495   780126 1
## 2496   780127 1
## 2497   780128 1
## 2498   780129 1
## 2499   780130 1
## 2500   780131 1
## 2501   780132 1
## 2502   780133 1
## 2503   780134 1
## 2504   780135 1
## 2505   780136 1
## 2506   780137 1
## 2507   780138 1
## 2508   780139 1
## 2509   780140 1
## 2510   780141 1
## 2511   780142 1
## 2512   780143 1
## 2513   780144 1
## 2514   780146 1
## 2515   780147 1
## 2516   780148 1
## 2517   780149 1
## 2518   780150 1
## 2519   780151 1
## 2520   780152 1
## 2521   780153 1
## 2522   780154 1
## 2523   780155 1
## 2524   780156 1
## 2525   780157 1
## 2526   780158 1
## 2527   780159 1
## 2528   780160 1
## 2529   780161 1
## 2530   780162 1
## 2531   780163 1
## 2532   780164 1
## 2533   780165 1
## 2534   780166 1
## 2535   780167 1
## 2536   780168 1
## 2537   780169 1
## 2538   780170 1
## 2539   780171 1
## 2540   780172 1
## 2541   780173 1
## 2542   780174 1
## 2543   780175 1
## 2544   780176 1
## 2545   780177 1
## 2546   780178 1
## 2547   780179 1
## 2548   780180 1
## 2549   780181 1
## 2550   780182 1
## 2551   780183 1
## 2552   780184 1
## 2553   780185 1
## 2554   780186 1
## 2555   780187 1
## 2556   780188 1
## 2557   780189 1
## 2558   780190 1
## 2559   780191 1
## 2560   780192 1
## 2561   780193 1
## 2562   780194 1
## 2563   780195 1
## 2564   780196 1
## 2565   780197 1
## 2566   780198 1
## 2567   780199 1
## 2568   780200 1
## 2569   780201 1
## 2570   780202 1
## 2571   780203 1
## 2572   780204 1
## 2573   780205 1
## 2574   780206 1
## 2575   780207 1
## 2576   780208 1
## 2577   780209 1
## 2578   780210 1
## 2579   780211 1
## 2580   780212 1
## 2581   780213 1
## 2582   780214 1
## 2583   780215 1
## 2584   780216 1
## 2585   780217 1
## 2586   780218 1
## 2587   780219 1
## 2588   780220 1
## 2589   780221 1
## 2590   780222 1
## 2591   780223 1
## 2592   780224 1
## 2593   780225 1
## 2594   780226 1
## 2595   780227 1
## 2596   780228 1
## 2597   780229 1
## 2598   780230 1
## 2599   780231 1
## 2600   780232 1
## 2601   780233 1
## 2602   780234 1
## 2603   780235 1
## 2604   780236 1
## 2605   780237 1
## 2606   780238 1
## 2607   780239 1
## 2608   780240 1
## 2609   780241 1
## 2610   780242 1
## 2611   780243 1
## 2612   780244 1
## 2613   780245 1
## 2614   780246 1
## 2615   780247 1
## 2616   780248 1
## 2617   780249 1
## 2618   780250 1
## 2619   780251 1
## 2620   780252 1
## 2621   780253 1
## 2622   780254 1
## 2623   780255 1
## 2624   780256 1
## 2625   780257 1
## 2626   780258 1
## 2627   780259 1
## 2628   780260 1
## 2629   780261 1
## 2630   780262 1
## 2631   780263 1
## 2632   780264 1
## 2633   780265 1
## 2634   780266 1
## 2635   780267 1
## 2636   780268 1
## 2637   780269 1
## 2638   780270 1
## 2639   780271 1
## 2640   780272 1
## 2641   780273 1
## 2642   780274 1
## 2643   780275 1
## 2644   780276 1
## 2645   780277 1
## 2646   780278 1
## 2647   780279 1
## 2648   780280 1
## 2649   780281 1
## 2650   780282 1
## 2651   780283 1
## 2652   780284 1
## 2653   780285 1
## 2654   780286 1
## 2655   780287 1
## 2656   780288 1
## 2657   780289 1
## 2658   780290 1
## 2659   780291 1
## 2660   780292 1
## 2661   780293 1
## 2662   780294 1
## 2663   780295 1
## 2664   780296 1
## 2665   780297 1
## 2666   780298 1
## 2667   780299 1
## 2668   780300 1
## 2669   780301 1
## 2670   780302 1
## 2671   780303 1
## 2672   780304 1
## 2673   780305 1
## 2674   780306 1
## 2675   780307 1
## 2676   780308 1
## 2677   780309 1
## 2678   780310 1
## 2679   780311 1
## 2680   780312 1
## 2681   780313 1
## 2682   780314 1
## 2683   780315 1
## 2684   780316 1
## 2685   780317 1
## 2686   780318 1
## 2687   780319 1
## 2688   780320 1
## 2689   780321 1
## 2690   780322 1
## 2691   780323 1
## 2692   780324 1
## 2693   780325 1
## 2694   780326 1
## 2695   780327 1
## 2696   780328 1
## 2697   780329 1
## 2698   780330 1
## 2699   780331 1
## 2700   780332 1
## 2701   780333 1
## 2702   780334 1
## 2703   780335 1
## 2704   780336 1
## 2705   780337 1
## 2706   780338 1
## 2707   780339 1
## 2708   780340 1
## 2709   780341 1
## 2710   780342 1
## 2711   780343 1
## 2712   780344 1
## 2713   780345 1
## 2714   780346 1
## 2715   780347 1
## 2716   780348 1
## 2717   780349 1
## 2718   780350 1
## 2719   780351 1
## 2720   780352 1
## 2721   780353 1
## 2722   780354 1
## 2723   780355 1
## 2724   780356 1
## 2725   780357 1
## 2726   780358 1
## 2727   780359 1
## 2728   780360 1
## 2729   780361 1
## 2730   780362 1
## 2731   780363 1
## 2732   780364 1
## 2733   780365 1
## 2734   780366 1
## 2735   780367 1
## 2736   780368 1
## 2737   780369 1
## 2738   780370 1
## 2739   780371 1
## 2740   780372 1
## 2741   780373 1
## 2742   780374 1
## 2743   780375 1
## 2744   780376 1
## 2745   780377 1
## 2746   780378 1
## 2747   780379 1
## 2748   780380 1
## 2749   780381 1
## 2750   780382 1
## 2751   780383 1
## 2752   780384 1
## 2753   780385 1
## 2754   780386 1
## 2755   780387 1
## 2756   780388 1
## 2757   780389 1
## 2758   780390 1
## 2759   780391 1
## 2760   780392 1
## 2761   780393 1
## 2762   780394 1
## 2763   780395 1
## 2764   780396 1
## 2765   780397 1
## 2766   780398 1
## 2767   780399 1
## 2768   780400 1
## 2769   780401 1
## 2770   780402 1
## 2771   780403 1
## 2772   780404 1
## 2773   780405 1
## 2774   780406 1
## 2775   780407 1
## 2776   780408 1
## 2777   780409 1
## 2778   780410 1
## 2779   780411 1
## 2780   780412 1
## 2781   780413 1
## 2782   780414 1
## 2783   780415 1
## 2784   780416 1
## 2785   780417 1
## 2786   780418 1
## 2787   780419 1
## 2788   780420 1
## 2789   780421 1
## 2790   780422 1
## 2791   780423 1
## 2792   780424 1
## 2793   780425 1
## 2794   780426 1
## 2795   780427 1
## 2796   780428 1
## 2797   780429 1
## 2798   780430 1
## 2799   780431 1
## 2800   780432 1
## 2801   780433 1
## 2802   780435 1
## 2803   780436 1
## 2804   780437 1
## 2805   780438 1
## 2806   780439 1
## 2807   780440 1
## 2808   780441 1
## 2809   780442 1
## 2810   780443 1
## 2811   780444 1
## 2812   780445 1
## 2813   780446 1
## 2814   780447 1
## 2815   780448 1
## 2816   780449 1
## 2817   780450 1
## 2818   780451 1
## 2819   780452 1
## 2820   780453 1
## 2821   780454 1
## 2822   780455 1
## 2823   780456 1
## 2824   780457 1
## 2825   780458 1
## 2826   780459 1
## 2827   780460 1
## 2828   780461 1
## 2829   780462 1
## 2830   780463 1
## 2831   780464 1
## 2832   780465 1
## 2833   780466 1
## 2834   780467 1
## 2835   780468 1
## 2836   780469 1
## 2837   780470 1
## 2838   780471 1
## 2839   780472 1
## 2840   780473 1
## 2841   780474 1
## 2842   780475 1
## 2843   780476 1
## 2844   780477 1
## 2845   780478 1
## 2846   780479 1
## 2847   780480 1
## 2848   780481 1
## 2849   780482 1
## 2850   780483 1
## 2851   780484 1
## 2852   780485 1
## 2853   780486 1
## 2854   780487 1
## 2855   780488 1
## 2856   780489 1
## 2857   780490 1
## 2858   780491 1
## 2859   780492 1
## 2860   780493 1
## 2861   780494 1
## 2862   780495 1
## 2863   780496 1
## 2864   780497 1
## 2865   780498 1
## 2866   780499 1
## 2867   780500 1
## 2868   780501 1
## 2869   780502 1
## 2870   780503 1
## 2871   780504 1
## 2872   780505 1
## 2873   780506 1
## 2874   780507 1
## 2875   780508 1
## 2876   780509 1
## 2877   780510 1
## 2878   780511 1
## 2879   780512 1
## 2880   780513 1
## 2881   780514 1
## 2882   780515 1
## 2883   780516 1
## 2884   780517 1
## 2885   780518 1
## 2886   780519 1
## 2887   780520 1
## 2888   780521 1
## 2889   780522 1
## 2890   780523 1
## 2891   780524 1
## 2892   780525 1
## 2893   780526 1
## 2894   780527 1
## 2895   780528 1
## 2896   780529 1
## 2897   780530 1
## 2898   780531 1
## 2899   780532 1
## 2900   780533 1
## 2901   780534 1
## 2902   780535 1
## 2903   780536 1
## 2904   780537 1
## 2905   780538 1
## 2906   780539 1
## 2907   780540 1
## 2908   780541 1
## 2909   780542 1
## 2910   780543 1
## 2911   780544 1
## 2912   780545 1
## 2913   780546 1
## 2914   780547 1
## 2915   780548 1
## 2916   780549 1
## 2917   780550 1
## 2918   780551 1
## 2919   780552 1
## 2920   780553 1
## 2921   780554 1
## 2922   780555 1
## 2923   780556 1
## 2924   780557 1
## 2925   780558 1
## 2926   780559 1
## 2927   780560 1
## 2928   780561 1
## 2929   780562 1
## 2930   780563 1
## 2931   780564 1
## 2932   780565 1
## 2933   780566 1
## 2934   780567 1
## 2935   780568 1
## 2936   780569 1
## 2937   780570 1
## 2938   780571 1
## 2939   780572 1
## 2940   780573 1
## 2941   780574 1
## 2942   780575 1
## 2943   780576 1
## 2944   780577 1
## 2945   780578 1
## 2946   780579 1
## 2947   780580 1
## 2948   780581 1
## 2949   780582 1
## 2950   780583 1
## 2951   780584 1
## 2952   780585 1
## 2953   780586 1
## 2954   780587 1
## 2955   780588 1
## 2956   780589 1
## 2957   780590 1
## 2958   780591 1
## 2959   780592 1
## 2960   780593 1
## 2961   780594 1
## 2962   780595 1
## 2963   780596 1
## 2964   780597 1
## 2965   780598 1
## 2966   780599 1
## 2967   780600 1
## 2968   780601 1
## 2969   780602 1
## 2970   780603 1
## 2971   780604 1
## 2972   780605 1
## 2973   780606 1
## 2974   780607 1
## 2975   780608 1
## 2976   780609 1
## 2977   780610 1
## 2978   780611 1
## 2979   780612 1
## 2980   780613 1
## 2981   780614 1
## 2982   780615 1
## 2983   780616 1
## 2984   780617 1
## 2985   780618 1
## 2986   780619 1
## 2987   780620 1
## 2988   780621 1
## 2989   780622 1
## 2990   780623 1
## 2991   780624 1
## 2992   780625 1
## 2993   780626 1
## 2994   780627 1
## 2995   780628 1
## 2996   780629 1
## 2997   780630 1
## 2998   780631 1
## 2999   780632 1
## 3000   780633 1
## 3001   780634 1
## 3002   780635 1
## 3003   780636 1
## 3004   780637 1
## 3005   780638 1
## 3006   780639 1
## 3007   780640 1
## 3008   780641 1
## 3009   780642 1
## 3010   780643 1
## 3011   780644 1
## 3012   780645 1
## 3013   780646 1
## 3014   780647 1
## 3015   780648 1
## 3016   780649 1
## 3017   780650 1
## 3018   780651 1
## 3019   780652 1
## 3020   780653 1
## 3021   780654 1
## 3022   780655 1
## 3023   780656 1
## 3024   780657 1
## 3025   780658 1
## 3026   780659 1
## 3027   780660 1
## 3028   780661 1
## 3029   780662 1
## 3030   780663 1
## 3031   780664 1
## 3032   780665 1
## 3033   780666 1
## 3034   780667 1
## 3035   780668 1
## 3036   780669 1
## 3037   780670 1
## 3038   780671 1
## 3039   780672 1
## 3040   780673 1
## 3041   780674 1
## 3042   780675 1
## 3043   780676 1
## 3044   780677 1
## 3045   780678 1
## 3046   780679 1
## 3047   780680 1
## 3048   780681 1
## 3049   780682 1
## 3050   780683 1
## 3051   780684 1
## 3052   780685 1
## 3053   780686 1
## 3054   780687 1
## 3055   780688 1
## 3056   780689 1
## 3057   780690 1
## 3058   780691 1
## 3059   780692 1
## 3060   780693 1
## 3061   780694 1
## 3062   780695 1
## 3063   780696 1
## 3064   780697 1
## 3065   780698 1
## 3066   780699 1
## 3067   780700 1
## 3068   780701 1
## 3069   780702 1
## 3070   780703 1
## 3071   780704 1
## 3072   780705 1
## 3073   780706 1
## 3074   780707 1
## 3075   780708 1
## 3076   780709 1
## 3077   780710 1
## 3078   780711 1
## 3079   780712 1
## 3080   780713 1
## 3081   780714 1
## 3082   780715 1
## 3083   780716 1
## 3084   780717 1
## 3085   780718 1
## 3086   780719 1
## 3087   780720 1
## 3088   780721 1
## 3089   780722 1
## 3090   780723 1
## 3091   780724 1
## 3092   780725 1
## 3093   780726 1
## 3094   780727 1
## 3095   780728 1
## 3096   780729 1
## 3097   780730 1
## 3098   780731 1
## 3099   780732 1
## 3100   780733 1
## 3101   780734 1
## 3102   780735 1
## 3103   780736 1
## 3104   780737 1
## 3105   780738 1
## 3106   780739 1
## 3107   780740 1
## 3108   780741 1
## 3109   780742 1
## 3110   780743 1
## 3111   780744 1
## 3112   780745 1
## 3113   780746 1
## 3114   780747 1
## 3115   780748 1
## 3116   780749 1
## 3117   780750 1
## 3118   780751 1
## 3119   780752 1
## 3120   780753 1
## 3121   780754 1
## 3122   780755 1
## 3123   780756 1
## 3124   780757 1
## 3125   780758 1
## 3126   780759 1
## 3127   780760 1
## 3128   780761 1
## 3129   780762 1
## 3130   780763 1
## 3131   780764 1
## 3132   780765 1
## 3133   780766 1
## 3134   780767 1
## 3135   780768 1
## 3136   780769 1
## 3137   780770 1
## 3138   780771 1
## 3139   780772 1
## 3140   780773 1
## 3141   780774 1
## 3142   780775 1
## 3143   780776 1
## 3144   780777 1
## 3145   780778 1
## 3146   780779 1
## 3147   780780 1
## 3148   780781 1
## 3149   780782 1
## 3150   780783 1
## 3151   780784 1
## 3152   780785 1
## 3153   780786 1
## 3154   780787 1
## 3155   780788 1
## 3156   780789 1
## 3157   780790 1
## 3158   780791 1
## 3159   780792 1
## 3160   780793 1
## 3161   780794 1
## 3162   780795 1
## 3163   780796 1
## 3164   780797 1
## 3165   780798 1
## 3166   780799 1
## 3167   780800 1
## 3168   780801 1
## 3169   780802 1
## 3170   780803 1
## 3171   780804 1
## 3172   780805 1
## 3173   780806 1
## 3174   780807 1
## 3175   780808 1
## 3176   780809 1
## 3177   780810 1
## 3178   780811 1
## 3179   780812 1
## 3180   780813 1
## 3181   780814 1
## 3182   780815 1
## 3183   780816 1
## 3184   780817 1
## 3185   780818 1
## 3186   780819 1
## 3187   780820 1
## 3188   780821 1
## 3189   780822 1
## 3190   780823 1
## 3191   780824 1
## 3192   780825 1
## 3193   780826 1
## 3194   780827 1
## 3195   780828 1
## 3196   780829 1
## 3197   780830 1
## 3198   780831 1
## 3199   780832 1
## 3200   780833 1
## 3201   780834 1
## 3202   780835 1
## 3203   780836 1
## 3204   780837 1
## 3205   780838 1
## 3206   780839 1
## 3207   780840 1
## 3208   780841 1
## 3209   780842 1
## 3210   780843 1
## 3211   780844 1
## 3212   780845 1
## 3213   780846 1
## 3214   780847 1
## 3215   780848 1
## 3216   780849 1
## 3217   780850 1
## 3218   780851 1
## 3219   780852 1
## 3220   780853 1
## 3221   780854 1
## 3222   780855 1
## 3223   780856 1
## 3224   780857 1
## 3225   780858 1
## 3226   780859 1
## 3227   780860 1
## 3228   780861 1
## 3229   780862 1
## 3230   780863 1
## 3231   780864 1
## 3232   780865 1
## 3233   780866 1
## 3234   780867 1
## 3235   780868 1
## 3236   780869 1
## 3237   780870 1
## 3238   780871 1
## 3239   780872 1
## 3240   780873 1
## 3241   780874 1
## 3242   780875 1
## 3243   780876 1
## 3244   780877 1
## 3245   780878 1
## 3246   780879 1
## 3247   780880 1
## 3248   780881 1
## 3249   780882 1
## 3250   780883 1
## 3251   780884 1
## 3252   780885 1
## 3253   780886 1
## 3254   780887 1
## 3255   780888 1
## 3256   780889 1
## 3257   780890 1
## 3258   780891 1
## 3259   780892 1
## 3260   780893 1
## 3261   780894 1
## 3262   780895 1
## 3263   780896 1
## 3264   780897 1
## 3265   780898 1
## 3266   780899 1
## 3267   780900 1
## 3268   780901 1
## 3269   780902 1
## 3270   780903 1
## 3271   780904 1
## 3272   780905 1
## 3273   780906 1
## 3274   780907 1
## 3275   780908 1
## 3276   780909 1
## 3277   780910 1
## 3278   780911 1
## 3279   780912 1
## 3280   780913 1
## 3281   780914 1
## 3282   780915 1
## 3283   780916 1
## 3284   780917 1
## 3285   780918 1
## 3286   780919 1
## 3287   780920 1
## 3288   780921 1
## 3289   780922 1
## 3290   780923 1
## 3291   780924 1
## 3292   780925 1
## 3293   780926 1
## 3294   780927 1
## 3295   780928 1
## 3296   780929 1
## 3297   780930 1
## 3298   780931 1
## 3299   780932 1
## 3300   780933 1
## 3301   780934 1
## 3302   780935 1
## 3303   780936 1
## 3304   780937 1
## 3305   780938 1
## 3306   780939 1
## 3307   780940 1
## 3308   780941 1
## 3309   780942 1
## 3310   780943 1
## 3311   780944 1
## 3312   780945 1
## 3313   780946 1
## 3314   780947 1
## 3315   780948 1
## 3316   780949 1
## 3317   780950 1
## 3318   780951 1
## 3319   780952 1
## 3320   780953 1
## 3321   780954 1
## 3322   780955 1
## 3323   780956 1
## 3324   780957 1
## 3325   780958 1
## 3326   780959 1
## 3327   780960 1
## 3328   780961 1
## 3329   780962 1
## 3330   780963 1
## 3331   780964 1
## 3332   780965 1
## 3333   780966 1
## 3334   780967 1
## 3335   780968 1
## 3336   780969 1
## 3337   780970 1
## 3338   780971 1
## 3339   780972 1
## 3340   780973 1
## 3341   780974 1
## 3342   780975 1
## 3343   780976 1
## 3344   780977 1
## 3345   780978 1
## 3346   780979 1
## 3347   780980 1
## 3348   780981 1
## 3349   780982 1
## 3350   780983 1
## 3351   780984 1
## 3352   780985 1
## 3353   780986 1
## 3354   780987 1
## 3355   780988 1
## 3356   780989 1
## 3357   780990 1
## 3358   780991 1
## 3359   780992 1
## 3360   780993 1
## 3361   780994 1
## 3362   780995 1
## 3363   780996 1
## 3364   780997 1
## 3365   780998 1
## 3366   780999 1
## 3367   781000 1
## 3368   781001 1
## 3369   781002 1
## 3370   781003 1
## 3371   781004 1
## 3372   781005 1
## 3373   781006 1
## 3374   781007 1
## 3375   781008 1
## 3376   781009 1
## 3377   781010 1
## 3378   781011 1
## 3379   781012 1
## 3380   781013 1
## 3381   781014 1
## 3382   781015 1
## 3383   781016 1
## 3384   781017 1
## 3385   781018 1
## 3386   781019 1
## 3387   781020 1
## 3388   781021 1
## 3389   781022 1
## 3390   781023 1
## 3391   781024 1
## 3392   781025 1
## 3393   781026 1
## 3394   781027 1
## 3395   781028 1
## 3396   781029 1
## 3397   781030 1
## 3398   781031 1
## 3399   781032 1
## 3400   781033 1
## 3401   781034 1
## 3402   781035 1
## 3403   781036 1
## 3404   781037 1
## 3405   781038 1
## 3406   781039 1
## 3407   781040 1
## 3408   781041 1
## 3409   781042 1
## 3410   781043 1
## 3411   781044 1
## 3412   781045 1
## 3413   781046 1
## 3414   781047 1
## 3415   781048 1
## 3416   781049 1
## 3417   781050 1
## 3418   781051 1
## 3419   781052 1
## 3420   781053 1
## 3421   781054 1
## 3422   781055 1
## 3423   781056 1
## 3424   781057 1
## 3425   781059 1
## 3426   781060 1
## 3427   781061 1
## 3428   781062 1
## 3429   781063 1
## 3430   781064 1
## 3431   781065 1
## 3432   781066 1
## 3433   781067 1
## 3434   781068 1
## 3435   781069 1
## 3436   781070 1
## 3437   781071 1
## 3438   781072 1
## 3439   781073 1
## 3440   781074 1
## 3441   781075 1
## 3442   781076 1
## 3443   781077 1
## 3444   781078 1
## 3445   781079 1
## 3446   781080 1
## 3447   781081 1
## 3448   781082 1
## 3449   781083 1
## 3450   781084 1
## 3451   781085 1
## 3452   781086 1
## 3453   781087 1
## 3454   781088 1
## 3455   781089 1
## 3456   781090 1
## 3457   781091 1
## 3458   781092 1
## 3459   781093 1
## 3460   781094 1
## 3461   781095 1
## 3462   781096 1
## 3463   781097 1
## 3464   781098 1
## 3465   781099 1
## 3466   781100 1
## 3467   781101 1
## 3468   781102 1
## 3469   781103 1
## 3470   781104 1
## 3471   781105 1
## 3472   781106 1
## 3473   781107 1
## 3474   781108 1
## 3475   781109 1
## 3476   781110 1
## 3477   781111 1
## 3478   781112 1
## 3479   781113 1
## 3480   781114 1
## 3481   781115 1
## 3482   781116 1
## 3483   781117 1
## 3484   781118 1
## 3485   781119 1
## 3486   781120 1
## 3487   781121 1
## 3488   781122 1
## 3489   781123 1
## 3490   781124 1
## 3491   781125 1
## 3492   781126 1
## 3493   781127 1
## 3494   781128 1
## 3495   781129 1
## 3496   781130 1
## 3497   781131 1
## 3498   781132 1
## 3499   781133 1
## 3500   781134 1
## 3501   781135 1
## 3502   781136 1
## 3503   781137 1
## 3504   781138 1
## 3505   781139 1
## 3506   781140 1
## 3507   781141 1
## 3508   781142 1
## 3509   781143 1
## 3510   781144 1
## 3511   781145 1
## 3512   781146 1
## 3513   781147 1
## 3514   781148 1
## 3515   781149 1
## 3516   781150 1
## 3517   781151 1
## 3518   781152 1
## 3519   781153 1
## 3520   781154 1
## 3521   781155 1
## 3522   781156 1
## 3523   781157 1
## 3524   781158 1
## 3525   781159 1
## 3526   781160 1
## 3527   781161 1
## 3528   781162 1
## 3529   781163 1
## 3530   781164 1
## 3531   781165 1
## 3532   781166 1
## 3533   781167 1
## 3534   781168 1
## 3535   781169 1
## 3536   781170 1
## 3537   781171 1
## 3538   781172 1
## 3539   781173 1
## 3540   781174 1
## 3541   781175 1
## 3542   781176 1
## 3543   781177 1
## 3544   781178 1
## 3545   781179 1
## 3546   781180 1
## 3547   781181 1
## 3548   781182 1
## 3549   781183 1
## 3550   781184 1
## 3551   781185 1
## 3552   781186 1
## 3553   781187 1
## 3554   781188 1
## 3555   781189 1
## 3556   781190 1
## 3557   781191 1
## 3558   781192 1
## 3559   781193 1
## 3560   781194 1
## 3561   781195 1
## 3562   781196 1
## 3563   781197 1
## 3564   781198 1
## 3565   781199 1
## 3566   781200 1
## 3567   781201 1
## 3568   781202 1
## 3569   781203 1
## 3570   781204 1
## 3571   781205 1
## 3572   781206 1
## 3573   781207 1
## 3574   781208 1
## 3575   781209 1
## 3576   781210 1
## 3577   781211 1
## 3578   781212 1
## 3579   781213 1
## 3580   781214 1
## 3581   781215 1
## 3582   781216 1
## 3583   781217 1
## 3584   781218 1
## 3585   781219 1
## 3586   781220 1
## 3587   781221 1
## 3588   781222 1
## 3589   781223 1
## 3590   781224 1
## 3591   781225 1
## 3592   781226 1
## 3593   781227 1
## 3594   781228 1
## 3595   781229 1
## 3596   781230 1
## 3597   781231 1
## 3598   781232 1
## 3599   781233 1
## 3600   781234 1
## 3601   781235 1
## 3602   781236 1
## 3603   781237 1
## 3604   781238 1
## 3605   781239 1
## 3606   781240 1
## 3607   781241 1
## 3608   781242 1
## 3609   781243 1
## 3610   781244 1
## 3611   781245 1
## 3612   781246 1
## 3613   781247 1
## 3614   781248 1
## 3615   781249 1
## 3616   781250 1
## 3617   781251 1
## 3618   781252 1
## 3619   781253 1
## 3620   781254 1
## 3621   781255 1
## 3622   781256 1
## 3623   781257 1
## 3624   781258 1
## 3625   781259 1
## 3626   781260 1
## 3627   781261 1
## 3628   781262 1
## 3629   781263 1
## 3630   781264 1
## 3631   781265 1
## 3632   781266 1
## 3633   781267 1
## 3634   781268 1
## 3635   781269 1
## 3636   781270 1
## 3637   781271 1
## 3638   781272 1
## 3639   781273 1
## 3640   781275 1
## 3641   781276 1
## 3642   781277 1
## 3643   781278 1
## 3644   781279 1
## 3645   781280 1
## 3646   781281 1
## 3647   781282 1
## 3648   781283 1
## 3649   781284 1
## 3650   781285 1
## 3651   781286 1
## 3652   781287 1
## 3653   781288 1
## 3654   781289 1
## 3655   781290 1
## 3656   781291 1
## 3657   781292 1
## 3658   781293 1
## 3659   781294 1
## 3660   781295 1
## 3661   781296 1
## 3662   781297 1
## 3663   781298 1
## 3664   781299 1
## 3665   781300 1
## 3666   781301 1
## 3667   781302 1
## 3668   781303 1
## 3669   781304 1
## 3670   781305 1
## 3671   781306 1
## 3672   781307 1
## 3673   781308 1
## 3674   781309 1
## 3675   781310 1
## 3676   781311 1
## 3677   781312 1
## 3678   781313 1
## 3679   781314 1
## 3680   781315 1
## 3681   781316 1
## 3682   781317 1
## 3683   781318 1
## 3684   781319 1
## 3685   781320 1
## 3686   781321 1
## 3687   781322 1
## 3688   781323 1
## 3689   781324 1
## 3690   781325 1
## 3691   781326 1
## 3692   781327 1
## 3693   781328 1
## 3694   781329 1
## 3695   781330 1
## 3696   781331 1
## 3697   781332 1
## 3698   781333 1
## 3699   781334 1
## 3700   781335 1
## 3701   781336 1
## 3702   781337 1
## 3703   781338 1
## 3704   781339 1
## 3705   781340 1
## 3706   781341 1
## 3707   781342 1
## 3708   781343 1
## 3709   781344 1
## 3710   781345 1
## 3711   781346 1
## 3712   781347 1
## 3713   781348 1
## 3714   781349 1
## 3715   781350 1
## 3716   781351 1
## 3717   781352 1
## 3718   781353 1
## 3719   781354 1
## 3720   781355 1
## 3721   781356 1
## 3722   781357 1
## 3723   781358 1
## 3724   781359 1
## 3725   781360 1
## 3726   781361 1
## 3727   781362 1
## 3728   781363 1
## 3729   781364 1
## 3730   781365 1
## 3731   781366 1
## 3732   781367 1
## 3733   781368 1
## 3734   781369 1
## 3735   781370 1
## 3736   781371 1
## 3737   781372 1
## 3738   781373 1
## 3739   781374 1
## 3740   781375 1
## 3741   781376 1
## 3742   781377 1
## 3743   781378 1
## 3744   781379 1
## 3745   781380 1
## 3746   781381 1
## 3747   781382 1
## 3748   781383 1
## 3749   781384 1
## 3750   781385 1
## 3751   781386 1
## 3752   781387 1
## 3753   781388 1
## 3754   781389 1
## 3755   781390 1
## 3756   781391 1
## 3757   781392 1
## 3758   781393 1
## 3759   781394 1
## 3760   781395 1
## 3761   781396 1
## 3762   781397 1
## 3763   781398 1
## 3764   781399 1
## 3765   781400 1
## 3766   781401 1
## 3767   781402 1
## 3768   781403 1
## 3769   781404 1
## 3770   781405 1
## 3771   781406 1
## 3772   781407 1
## 3773   781408 1
## 3774   781409 1
## 3775   781410 1
## 3776   781411 1
## 3777   781412 1
## 3778   781413 1
## 3779   781414 1
## 3780   781415 1
## 3781   781416 1
## 3782   781417 1
## 3783   781418 1
## 3784   781419 1
## 3785   781420 1
## 3786   781421 1
## 3787   781422 1
## 3788   781423 1
## 3789   781424 1
## 3790   781425 1
## 3791   781426 1
## 3792   781427 1
## 3793   781428 1
## 3794   781429 1
## 3795   781430 1
## 3796   781431 1
## 3797   781432 1
## 3798   781433 1
## 3799   781434 1
## 3800   781435 1
## 3801   781436 1
## 3802   781437 1
## 3803   781438 1
## 3804   781439 1
## 3805   781440 1
## 3806   781441 1
## 3807   781442 1
## 3808   781443 1
## 3809   781444 1
## 3810   781445 1
## 3811   781446 1
## 3812   781447 1
## 3813   781448 1
## 3814   781449 1
## 3815   781450 1
## 3816   781451 1
## 3817   781452 1
## 3818   781453 1
## 3819   781454 1
## 3820   781455 1
## 3821   781456 1
## 3822   781457 1
## 3823   781458 1
## 3824   781459 1
## 3825   781460 1
## 3826   781461 1
## 3827   781462 1
## 3828   781463 1
## 3829   781464 1
## 3830   781465 1
## 3831   781466 1
## 3832   781467 1
## 3833   781468 1
## 3834   781469 1
## 3835   781470 1
## 3836   781471 1
## 3837   781472 1
## 3838   781473 1
## 3839   781474 1
## 3840   781475 1
## 3841   781476 1
## 3842   781477 1
## 3843   781478 1
## 3844   781479 1
## 3845   781480 1
## 3846   781481 1
## 3847   781482 1
## 3848   781483 1
## 3849   781484 1
## 3850   781485 1
## 3851   781486 1
## 3852   781487 1
## 3853   781488 1
## 3854   781489 1
## 3855   781490 1
## 3856   781491 1
## 3857   781492 1
## 3858   781493 1
## 3859   781494 1
## 3860   781495 1
## 3861   781496 1
## 3862   781497 1
## 3863   781498 1
## 3864   781499 1
## 3865   781500 1
## 3866   781501 1
## 3867   781502 1
## 3868   781503 1
## 3869   781504 1
## 3870   781505 1
## 3871   781506 1
## 3872   781507 1
## 3873   781508 1
## 3874   781509 1
## 3875   781510 1
## 3876   781511 1
## 3877   781512 1
## 3878   781513 1
## 3879   781514 1
## 3880   781515 1
## 3881   781516 1
## 3882   781517 1
## 3883   781518 1
## 3884   781519 1
## 3885   781520 1
## 3886   781521 1
## 3887   781522 1
## 3888   781523 1
## 3889   781524 1
## 3890   781525 1
## 3891   781526 1
## 3892   781527 1
## 3893   781528 1
## 3894   781529 1
## 3895   781530 1
## 3896   781531 1
## 3897   781532 1
## 3898   781533 1
## 3899   781534 1
## 3900   781535 1
## 3901   781536 1
## 3902   781537 1
## 3903   781538 1
## 3904   781539 1
## 3905   781540 1
## 3906   781541 1
## 3907   781542 1
## 3908   781543 1
## 3909   781544 1
## 3910   781545 1
## 3911   781546 1
## 3912   781547 1
## 3913   781548 1
## 3914   781549 1
## 3915   781550 1
## 3916   781551 1
## 3917   781552 1
## 3918   781553 1
## 3919   781554 1
## 3920   781555 1
## 3921   781556 1
## 3922   781557 1
## 3923   781558 1
## 3924   781559 1
## 3925   781560 1
## 3926   781561 1
## 3927   781562 1
## 3928   781563 1
## 3929   781564 1
## 3930   781565 1
## 3931   781566 1
## 3932   781567 1
## 3933   781568 1
## 3934   781569 1
## 3935   781570 1
## 3936   781571 1
## 3937   781572 1
## 3938   781573 1
## 3939   781574 1
## 3940   781575 1
## 3941   781576 1
## 3942   781577 1
## 3943   781578 1
## 3944   781579 1
## 3945   781580 1
## 3946   781581 1
## 3947   781582 1
## 3948   781583 1
## 3949   781584 1
## 3950   781585 1
## 3951   781586 1
## 3952   781587 1
## 3953   781588 1
## 3954   781589 1
## 3955   781590 1
## 3956   781591 1
## 3957   781592 1
## 3958   781593 1
## 3959   781594 1
## 3960   781595 1
## 3961   781596 1
## 3962   781597 1
## 3963   781598 1
## 3964   781599 1
## 3965   781600 1
## 3966   781601 1
## 3967   781602 1
## 3968   781603 1
## 3969   781604 1
## 3970   781605 1
## 3971   781606 1
## 3972   781607 1
## 3973   781608 1
## 3974   781609 1
## 3975   781610 1
## 3976   781611 1
## 3977   781612 1
## 3978   781613 1
## 3979   781614 1
## 3980   781615 1
## 3981   781616 1
## 3982   781617 1
## 3983   781618 1
## 3984   781619 1
## 3985   781620 1
## 3986   781621 1
## 3987   781622 1
## 3988   781623 1
## 3989   781624 1
## 3990   781625 1
## 3991   781626 1
## 3992   781627 1
## 3993   781628 1
## 3994   781629 1
## 3995   781630 1
## 3996   781631 1
## 3997   781632 1
## 3998   781633 1
## 3999   781634 1
## 4000   781635 1
## 4001   781636 1
## 4002   781637 1
## 4003   781638 1
## 4004   781639 1
## 4005   781640 1
## 4006   781641 1
## 4007   781642 1
## 4008   781643 1
## 4009   781644 1
## 4010   781645 1
## 4011   781646 1
## 4012   781647 1
## 4013   781648 1
## 4014   781649 1
## 4015   781650 1
## 4016   781651 1
## 4017   781652 1
## 4018   781653 1
## 4019   781654 1
## 4020   781655 1
## 4021   781656 1
## 4022   781657 1
## 4023   781658 1
## 4024   781659 1
## 4025   781660 1
## 4026   781661 1
## 4027   781662 1
## 4028   781663 1
## 4029   781664 1
## 4030   781665 1
## 4031   781666 1
## 4032   781667 1
## 4033   781668 1
## 4034   781669 1
## 4035   781670 1
## 4036   781671 1
## 4037   781672 1
## 4038   781673 1
## 4039   781674 1
## 4040   781675 1
## 4041   781676 1
## 4042   781677 1
## 4043   781678 1
## 4044   781679 1
## 4045   781680 1
## 4046   781681 1
## 4047   781682 1
## 4048   781683 1
## 4049   781684 1
## 4050   781685 1
## 4051   781686 1
## 4052   781687 1
## 4053   781688 1
## 4054   781689 1
## 4055   781690 1
## 4056   781691 1
## 4057   781692 1
## 4058   781693 1
## 4059   781694 1
## 4060   781695 1
## 4061   781696 1
## 4062   781697 1
## 4063   781698 1
## 4064   781699 1
## 4065   781700 1
## 4066   781701 1
## 4067   781702 1
## 4068   781703 1
## 4069   781704 1
## 4070   781705 1
## 4071   781706 1
## 4072   781707 1
## 4073   781708 1
## 4074   781709 1
## 4075   781710 1
## 4076   781711 1
## 4077   781712 1
## 4078   781713 1
## 4079   781714 1
## 4080   781715 1
## 4081   781716 1
## 4082   781717 1
## 4083   781718 1
## 4084   781719 1
## 4085   781720 1
## 4086   781721 1
## 4087   781722 1
## 4088   781723 1
## 4089   781724 1
## 4090   781725 1
## 4091   781726 1
## 4092   781727 1
## 4093   781728 1
## 4094   781729 1
## 4095   781730 1
## 4096   781731 1
## 4097   781732 1
## 4098   781733 1
## 4099   781734 1
## 4100   781735 1
## 4101   781736 1
## 4102   781737 1
## 4103   781738 1
## 4104   781739 1
## 4105   781740 1
## 4106   781741 1
## 4107   781742 1
## 4108   781743 1
## 4109   781744 1
## 4110   781745 1
## 4111   781746 1
## 4112   781747 1
## 4113   781748 1
## 4114   781749 1
## 4115   781750 1
## 4116   781751 1
## 4117   781752 1
## 4118   781753 1
## 4119   781754 1
## 4120   781755 1
## 4121   781756 1
## 4122   781757 1
## 4123   781758 1
## 4124   781759 1
## 4125   781760 1
## 4126   781761 1
## 4127   781762 1
## 4128   781763 1
## 4129   781764 1
## 4130   781765 1
## 4131   781766 1
## 4132   781767 1
## 4133   781768 1
## 4134   781769 1
## 4135   781770 1
## 4136   781771 1
## 4137   781772 1
## 4138   781773 1
## 4139   781774 1
## 4140   781775 1
## 4141   781776 1
## 4142   781777 1
## 4143   781778 1
## 4144   781779 1
## 4145   781780 1
## 4146   781781 1
## 4147   781782 1
## 4148   781783 1
## 4149   781784 1
## 4150   781785 1
## 4151   781786 1
## 4152   781787 1
## 4153   781788 1
## 4154   781789 1
## 4155   781790 1
## 4156   781791 1
## 4157   781792 1
## 4158   781793 1
## 4159   781794 1
## 4160   781795 1
## 4161   781796 1
## 4162   781797 1
## 4163   781798 1
## 4164   781799 1
## 4165   781800 1
## 4166   781801 1
## 4167   781802 1
## 4168   781803 1
## 4169   781804 1
## 4170   781805 1
## 4171   781806 1
## 4172   781807 1
## 4173   781808 1
## 4174   781809 1
## 4175   781810 1
## 4176   781811 1
## 4177   781812 1
## 4178   781813 1
## 4179   781814 1
## 4180   781815 1
## 4181   781816 1
## 4182   781817 1
## 4183   781818 1
## 4184   781819 1
## 4185   781820 1
## 4186   781821 1
## 4187   781822 1
## 4188   781823 1
## 4189   781824 1
## 4190   781825 1
## 4191   781826 1
## 4192   781827 1
## 4193   781828 1
## 4194   781829 1
## 4195   781830 1
## 4196   781831 1
## 4197   781832 1
## 4198   781833 1
## 4199   781834 1
## 4200   781835 1
## 4201   781836 1
## 4202   781837 1
## 4203   781838 1
## 4204   781839 1
## 4205   781840 1
## 4206   781841 1
## 4207   781842 1
## 4208   781843 1
## 4209   781844 1
## 4210   781845 1
## 4211   781846 1
## 4212   781847 1
## 4213   781848 1
## 4214   781849 1
## 4215   781850 1
## 4216   781851 1
## 4217   781852 1
## 4218   781853 1
## 4219   781854 1
## 4220   781855 1
## 4221   781856 1
## 4222   781857 1
## 4223   781858 1
## 4224   781859 1
## 4225   781860 1
## 4226   781861 1
## 4227   781862 1
## 4228   781863 1
## 4229   781864 1
## 4230   781865 1
## 4231   781866 1
## 4232   781867 1
## 4233   781868 1
## 4234   781869 1
## 4235   781870 1
## 4236   781871 1
## 4237   781872 1
## 4238   781873 1
## 4239   781874 1
## 4240   781875 1
## 4241   781876 1
## 4242   781877 1
## 4243   781878 1
## 4244   781879 1
## 4245   781880 1
## 4246   781881 1
## 4247   781882 1
## 4248   781883 1
## 4249   781884 1
## 4250   781885 1
## 4251   781886 1
## 4252   781887 1
## 4253   781888 1
## 4254   781889 1
## 4255   781890 1
## 4256   781891 1
## 4257   781892 1
## 4258   781893 1
## 4259   781894 1
## 4260   781895 1
## 4261   781896 1
## 4262   781897 1
## 4263   781898 1
## 4264   781899 1
## 4265   781900 1
## 4266   781901 1
## 4267   781902 1
## 4268   781903 1
## 4269   781904 1
## 4270   781905 1
## 4271   781906 1
## 4272   781907 1
## 4273   781908 1
## 4274   781909 1
## 4275   781910 1
## 4276   781911 1
## 4277   781912 1
## 4278   781913 1
## 4279   781914 1
## 4280   781915 1
## 4281   781916 1
## 4282   781917 1
## 4283   781918 1
## 4284   781919 1
## 4285   781920 1
## 4286   781921 1
## 4287   781922 1
## 4288   781923 1
## 4289   781924 1
## 4290   781925 1
## 4291   781926 1
## 4292   781927 1
## 4293   781928 1
## 4294   781929 1
## 4295   781930 1
## 4296   781931 1
## 4297   781932 1
## 4298   781933 1
## 4299   781934 1
## 4300   781935 1
## 4301   781936 1
## 4302   781937 1
## 4303   781938 1
## 4304   781939 1
## 4305   781940 1
## 4306   781941 1
## 4307   781942 1
## 4308   781943 1
## 4309   781944 1
## 4310   781945 1
## 4311   781946 1
## 4312   781947 1
## 4313   781948 1
## 4314   781949 1
## 4315   781950 1
## 4316   781951 1
## 4317   781952 1
## 4318   781953 1
## 4319   781954 1
## 4320   781955 1
## 4321   781956 1
## 4322   781957 1
## 4323   781958 1
## 4324   781959 1
## 4325   781960 1
## 4326   781961 1
## 4327   781962 1
## 4328   781963 1
## 4329   781964 1
## 4330   781965 1
## 4331   781966 1
## 4332   781967 1
## 4333   781968 1
## 4334   781969 1
## 4335   781970 1
## 4336   781971 1
## 4337   781972 1
## 4338   781973 1
## 4339   781974 1
## 4340   781975 1
## 4341   781976 1
## 4342   781977 1
## 4343   781978 1
## 4344   781979 1
## 4345   781980 1
## 4346   781981 1
## 4347   781982 1
## 4348   781983 1
## 4349   781984 1
## 4350   781985 1
## 4351   781986 1
## 4352   781987 1
## 4353   781988 1
## 4354   781989 1
## 4355   781990 1
## 4356   781991 1
## 4357   781992 1
## 4358   781993 1
## 4359   781994 1
## 4360   781995 1
## 4361   781996 1
## 4362   781997 1
## 4363   781998 1
## 4364   781999 1
## 4365   782000 1
## 4366   782001 1
## 4367   782002 1
## 4368   782003 1
## 4369   782004 1
## 4370   782005 1
## 4371   782006 1
## 4372   782007 1
## 4373   782008 1
## 4374   782009 1
## 4375   782010 1
## 4376   782011 1
## 4377   782012 1
## 4378   782013 1
## 4379   782014 1
## 4380   782015 1
## 4381   782016 1
## 4382   782017 1
## 4383   782018 1
## 4384   782019 1
## 4385   782020 1
## 4386   782021 1
## 4387   782022 1
## 4388   782023 1
## 4389   782024 1
## 4390   782025 1
## 4391   782026 1
## 4392   782027 1
## 4393   782028 1
## 4394   782029 1
## 4395   782030 1
## 4396   782031 1
## 4397   782032 1
## 4398   782033 1
## 4399   782034 1
## 4400   782035 1
## 4401   782036 1
## 4402   782037 1
## 4403   782038 1
## 4404   782039 1
## 4405   782040 1
## 4406   782041 1
## 4407   782042 1
## 4408   782043 1
## 4409   782044 1
## 4410   782045 1
## 4411   782046 1
## 4412   782047 1
## 4413   782048 1
## 4414   782049 1
## 4415   782050 1
## 4416   782051 1
## 4417   782052 1
## 4418   782053 1
## 4419   782054 1
## 4420   782055 1
## 4421   782056 1
## 4422   782057 1
## 4423   782058 1
## 4424   782059 1
## 4425   782060 1
## 4426   782061 1
## 4427   782062 1
## 4428   782063 1
## 4429   782064 1
## 4430   782065 1
## 4431   782066 1
## 4432   782067 1
## 4433   782068 1
## 4434   782069 1
## 4435   782070 1
## 4436   782071 1
## 4437   782072 1
## 4438   782073 1
## 4439   782074 1
## 4440   782075 1
## 4441   782076 1
## 4442   782077 1
## 4443   782078 1
## 4444   782079 1
## 4445   782080 1
## 4446   782081 1
## 4447   782082 1
## 4448   782083 1
## 4449   782084 1
## 4450   782085 1
## 4451   782086 1
## 4452   782087 1
## 4453   782088 1
## 4454   782089 1
## 4455   782090 1
## 4456   782091 1
## 4457   782092 1
## 4458   782093 1
## 4459   782094 1
## 4460   782095 1
## 4461   782096 1
## 4462   782097 1
## 4463   782098 1
## 4464   782099 1
## 4465   782100 1
## 4466   782101 1
## 4467   782102 1
## 4468   782103 1
## 4469   782104 1
## 4470   782105 1
## 4471   782106 1
## 4472   782107 1
## 4473   782108 1
## 4474   782109 1
## 4475   782110 1
## 4476   782111 1
## 4477   782112 1
## 4478   782113 1
## 4479   782114 1
## 4480   782115 1
## 4481   782116 1
## 4482   782117 1
## 4483   782118 1
## 4484   782119 1
## 4485   782120 1
## 4486   782121 1
## 4487   782122 1
## 4488   782123 1
## 4489   782124 1
## 4490   782125 1
## 4491   782126 1
## 4492   782127 1
## 4493   782128 1
## 4494   782129 1
## 4495   782130 1
## 4496   782131 1
## 4497   782132 1
## 4498   782133 1
## 4499   782134 1
## 4500   782135 1
## 4501   782136 1
## 4502   782137 1
## 4503   782138 1
## 4504   782139 1
## 4505   782140 1
## 4506   782141 1
## 4507   782142 1
## 4508   782143 1
## 4509   782144 1
## 4510   782145 1
## 4511   782146 1
## 4512   782147 1
## 4513   782148 1
## 4514   782149 1
## 4515   782150 1
## 4516   782151 1
## 4517   782152 1
## 4518   782153 1
## 4519   782154 1
## 4520   782155 1
## 4521   782156 1
## 4522   782157 1
## 4523   782158 1
## 4524   782159 1
## 4525   782160 1
## 4526   782161 1
## 4527   782162 1
## 4528   782163 1
## 4529   782164 1
## 4530   782165 1
## 4531   782166 1
## 4532   782167 1
## 4533   782169 1
## 4534   782170 1
## 4535   782171 1
## 4536   782172 1
## 4537   782173 1
## 4538   782174 1
## 4539   782175 1
## 4540   782176 1
## 4541   782177 1
## 4542   782178 1
## 4543   782179 1
## 4544   782180 1
## 4545   782181 1
## 4546   782182 1
## 4547   782183 1
## 4548   782184 1
## 4549   782185 1
## 4550   782186 1
## 4551   782187 1
## 4552   782188 1
## 4553   782189 1
## 4554   782190 1
## 4555   782191 1
## 4556   782192 1
## 4557   782193 1
## 4558   782194 1
## 4559   782195 1
## 4560   782196 1
## 4561   782197 1
## 4562   782198 1
## 4563   782199 1
## 4564   782200 1
## 4565   782201 1
## 4566   782202 1
## 4567   782203 1
## 4568   782204 1
## 4569   782205 1
## 4570   782206 1
## 4571   782207 1
## 4572   782208 1
## 4573   782209 1
## 4574   782210 1
## 4575   782211 1
## 4576   782212 1
## 4577   782213 1
## 4578   782214 1
## 4579   782215 1
## 4580   782216 1
## 4581   782217 1
## 4582   782218 1
## 4583   782219 1
## 4584   782220 1
## 4585   782221 1
## 4586   782222 1
## 4587   782223 1
## 4588   782224 1
## 4589   782225 1
## 4590   782226 1
## 4591   782227 1
## 4592   782228 1
## 4593   782229 1
## 4594   782230 1
## 4595   782231 1
## 4596   782232 1
## 4597   782233 1
## 4598   782234 1
## 4599   782235 1
## 4600   782236 1
## 4601   782237 1
## 4602   782238 1
## 4603   782239 1
## 4604   782240 1
## 4605   782241 1
## 4606   782242 1
## 4607   782243 1
## 4608   782244 1
## 4609   782245 1
## 4610   782246 1
## 4611   782247 1
## 4612   782248 1
## 4613   782249 1
## 4614   782250 1
## 4615   782251 1
## 4616   782252 1
## 4617   782253 1
## 4618   782254 1
## 4619   782255 1
## 4620   782256 1
## 4621   782257 1
## 4622   782258 1
## 4623   782259 1
## 4624   782260 1
## 4625   782261 1
## 4626   782262 1
## 4627   782263 1
## 4628   782264 1
## 4629   782265 1
## 4630   782266 1
## 4631   782267 1
## 4632   782268 1
## 4633   782269 1
## 4634   782270 1
## 4635   782271 1
## 4636   782272 1
## 4637   782273 1
## 4638   782274 1
## 4639   782275 1
## 4640   782276 1
## 4641   782277 1
## 4642   782278 1
## 4643   782279 1
## 4644   782280 1
## 4645   782281 1
## 4646   782282 1
## 4647   782283 1
## 4648   782284 1
## 4649   782285 1
## 4650   782286 1
## 4651   782287 1
## 4652   782288 1
## 4653   782289 1
## 4654   782290 1
## 4655   782291 1
## 4656   782292 1
## 4657   782293 1
## 4658   782294 1
## 4659   782295 1
## 4660   782296 1
## 4661   782297 1
## 4662   782298 1
## 4663   782299 1
## 4664   782300 1
## 4665   782301 1
## 4666   782302 1
## 4667   782303 1
## 4668   782304 1
## 4669   782305 1
## 4670   782306 1
## 4671   782307 1
## 4672   782308 1
## 4673   782309 1
## 4674   782310 1
## 4675   782311 1
## 4676   782312 1
## 4677   782313 1
## 4678   782314 1
## 4679   782315 1
## 4680   782316 1
## 4681   782317 1
## 4682   782318 1
## 4683   782319 1
## 4684   782320 1
## 4685   782321 1
## 4686   782322 1
## 4687   782323 1
## 4688   782324 1
## 4689   782325 1
## 4690   782326 1
## 4691   782327 1
## 4692   782328 1
## 4693   782329 1
## 4694   782330 1
## 4695   782331 1
## 4696   782332 1
## 4697   782333 1
## 4698   782334 1
## 4699   782335 1
## 4700   782336 1
## 4701   782337 1
## 4702   782338 1
## 4703   782339 1
## 4704   782340 1
## 4705   782341 1
## 4706   782342 1
## 4707   782343 1
## 4708   782344 1
## 4709   782345 1
## 4710   782346 1
## 4711   782347 1
## 4712   782348 1
## 4713   782349 1
## 4714   782350 1
## 4715   782351 1
## 4716   782352 1
## 4717   782353 1
## 4718   782354 1
## 4719   782355 1
## 4720   782356 1
## 4721   782357 1
## 4722   782358 1
## 4723   782359 1
## 4724   782360 1
## 4725   782361 1
## 4726   782362 1
## 4727   782363 1
## 4728   782364 1
## 4729   782365 1
## 4730   782366 1
## 4731   782367 1
## 4732   782368 1
## 4733   782369 1
## 4734   782370 1
## 4735   782371 1
## 4736   782372 1
## 4737   782373 1
## 4738   782374 1
## 4739   782375 1
## 4740   782376 1
## 4741   782377 1
## 4742   782378 1
## 4743   782379 1
## 4744   782380 1
## 4745   782381 1
## 4746   782382 1
## 4747   782383 1
## 4748   782384 1
## 4749   782385 1
## 4750   782386 1
## 4751   782387 1
## 4752   782388 1
## 4753   782389 1
## 4754   782390 1
## 4755   782391 1
## 4756   782392 1
## 4757   782393 1
## 4758   782394 1
## 4759   782395 1
## 4760   782396 1
## 4761   782397 1
## 4762   782398 1
## 4763   782399 1
## 4764   782400 1
## 4765   782401 1
## 4766   782402 1
## 4767   782403 1
## 4768   782404 1
## 4769   782405 1
## 4770   782406 1
## 4771   782407 1
## 4772   782408 1
## 4773   782409 1
## 4774   782410 1
## 4775   782411 1
## 4776   782412 1
## 4777   782413 1
## 4778   782414 1
## 4779   782415 1
## 4780   782416 1
## 4781   782417 1
## 4782   782418 1
## 4783   782419 1
## 4784   782420 1
## 4785   782421 1
## 4786   782422 1
## 4787   782423 1
## 4788   782424 1
## 4789   782425 1
## 4790   782426 1
## 4791   782427 1
## 4792   782428 1
## 4793   782429 1
## 4794   782430 1
## 4795   782431 1
## 4796   782432 1
## 4797   782433 1
## 4798   782434 1
## 4799   782435 1
## 4800   782436 1
## 4801   782437 1
## 4802   782438 1
## 4803   782439 1
## 4804   782440 1
## 4805   782441 1
## 4806   782442 1
## 4807   782443 1
## 4808   782444 1
## 4809   782445 1
## 4810   782446 1
## 4811   782447 1
## 4812   782448 1
## 4813   782449 1
## 4814   782450 1
## 4815   782451 1
## 4816   782452 1
## 4817   782453 1
## 4818   782454 1
## 4819   782455 1
## 4820   782456 1
## 4821   782457 1
## 4822   782458 1
## 4823   782459 1
## 4824   782460 1
## 4825   782461 1
## 4826   782462 1
## 4827   782463 1
## 4828   782464 1
## 4829   782465 1
## 4830   782466 1
## 4831   782467 1
## 4832   782468 1
## 4833   782469 1
## 4834   782470 1
## 4835   782471 1
## 4836   782472 1
## 4837   782473 1
## 4838   782474 1
## 4839   782475 1
## 4840   782476 1
## 4841   782477 1
## 4842   782478 1
## 4843   782479 1
## 4844   782480 1
## 4845   782481 1
## 4846   782482 1
## 4847   782483 1
## 4848   782484 1
## 4849   782485 1
## 4850   782486 1
## 4851   782487 1
## 4852   782488 1
## 4853   782489 1
## 4854   782490 1
## 4855   782491 1
## 4856   782492 1
## 4857   782493 1
## 4858   782494 1
## 4859   782495 1
## 4860   782496 1
## 4861   782497 1
## 4862   782498 1
## 4863   782499 1
## 4864   782500 1
## 4865   782501 1
## 4866   782502 1
## 4867   782503 1
## 4868   782504 1
## 4869   782506 1
## 4870   782507 1
## 4871   782508 1
## 4872   782509 1
## 4873   782510 1
## 4874   782511 1
## 4875   782512 1
## 4876   782513 1
## 4877   782514 1
## 4878   782515 1
## 4879   782516 1
## 4880   782517 1
## 4881   782518 1
## 4882   782519 1
## 4883   782520 1
## 4884   782523 1
## 4885   782524 1
## 4886   782525 1
## 4887   782526 1
## 4888   782527 1
## 4889   782528 1
## 4890   782529 1
## 4891   782530 1
## 4892   782531 1
## 4893   782532 1
## 4894   782533 1
## 4895   782534 1
## 4896   782535 1
## 4897   782536 1
## 4898   782537 1
## 4899   782538 1
## 4900   782539 1
## 4901   782540 1
## 4902   782541 1
## 4903   782542 1
## 4904   782543 1
## 4905   782544 1
## 4906   782545 1
## 4907   782546 1
## 4908   782547 1
## 4909   782548 1
## 4910   782549 1
## 4911   782550 1
## 4912   782551 1
## 4913   782552 1
## 4914   782553 1
## 4915   782554 1
## 4916   782555 1
## 4917   782556 1
## 4918   782557 1
## 4919   782558 1
## 4920   782559 1
## 4921   782560 1
## 4922   782561 1
## 4923   782562 1
## 4924   782563 1
## 4925   782564 1
## 4926   782565 1
## 4927   782566 1
## 4928   782567 1
## 4929   782568 1
## 4930   782569 1
## 4931   782570 1
## 4932   782571 1
## 4933   782572 1
## 4934   782573 1
## 4935   782574 1
## 4936   782575 1
## 4937   782576 1
## 4938   782577 1
## 4939   782578 1
## 4940   782579 1
## 4941   782580 1
## 4942   782581 1
## 4943   782582 1
## 4944   782583 1
## 4945   782584 1
## 4946   782585 1
## 4947   782586 1
## 4948   782587 1
## 4949   782588 1
## 4950   782589 1
## 4951   782590 1
## 4952   782591 1
## 4953   782592 1
## 4954   782593 1
## 4955   782594 1
## 4956   782595 1
## 4957   782596 1
## 4958   782597 1
## 4959   782598 1
## 4960   782599 1
## 4961   782600 1
## 4962   782601 1
## 4963   782602 1
## 4964   782603 1
## 4965   782604 1
## 4966   782605 1
## 4967   782606 1
## 4968   782607 1
## 4969   782608 1
## 4970   782609 1
## 4971   782610 1
## 4972   782611 1
## 4973   782612 1
## 4974   782613 1
## 4975   782614 1
## 4976   782615 1
## 4977   782616 1
## 4978   782617 1
## 4979   782618 1
## 4980   782619 1
## 4981   782620 1
## 4982   782621 1
## 4983   782622 1
## 4984   782623 1
## 4985   782624 1
## 4986   782625 1
## 4987   782626 1
## 4988   782627 1
## 4989   782628 1
## 4990   782629 1
## 4991   782630 1
## 4992   782631 1
## 4993   782632 1
## 4994   782633 1
## 4995   782634 1
## 4996   782635 1
## 4997   782636 1
## 4998   782637 1
## 4999   782638 1
## 5000   782639 1
## 5001   782640 1
## 5002   782641 1
## 5003   782642 1
## 5004   782643 1
## 5005   782644 1
## 5006   782645 1
## 5007   782646 1
## 5008   782647 1
## 5009   782648 1
## 5010   782649 1
## 5011   782650 1
## 5012   782651 1
## 5013   782652 1
## 5014   782653 1
## 5015   782654 1
## 5016   782655 1
## 5017   782656 1
## 5018   782657 1
## 5019   782658 1
## 5020   782659 1
## 5021   782660 1
## 5022   782661 1
## 5023   782662 1
## 5024   782663 1
## 5025   782664 1
## 5026   782665 1
## 5027   782666 1
## 5028   782667 1
## 5029   782668 1
## 5030   782669 1
## 5031   782670 1
## 5032   782671 1
## 5033   782672 1
## 5034   782673 1
## 5035   782674 1
## 5036   782675 1
## 5037   782676 1
## 5038   782677 1
## 5039   782678 1
## 5040   782679 1
## 5041   782680 1
## 5042   782681 1
## 5043   782682 1
## 5044   782683 1
## 5045   782684 1
## 5046   782685 1
## 5047   782687 1
## 5048   782688 1
## 5049   782689 1
## 5050   782690 1
## 5051   782691 1
## 5052   782692 1
## 5053   782693 1
## 5054   782694 1
## 5055   782695 1
## 5056   782696 1
## 5057   782697 1
## 5058   782698 1
## 5059   782699 1
## 5060   782700 1
## 5061   782701 1
## 5062   782702 1
## 5063   782703 1
## 5064   782704 1
## 5065   782705 1
## 5066   782706 1
## 5067   782707 1
## 5068   782708 1
## 5069   782709 1
## 5070   782710 1
## 5071   782711 1
## 5072   782712 1
## 5073   782713 1
## 5074   782714 1
## 5075   782715 1
## 5076   782716 1
## 5077   782717 1
## 5078   782718 1
## 5079   782719 1
## 5080   782720 1
## 5081   782721 1
## 5082   782722 1
## 5083   782723 1
## 5084   782724 1
## 5085   782725 1
## 5086   782726 1
## 5087   782727 1
## 5088   782728 1
## 5089   782729 1
## 5090   782730 1
## 5091   782731 1
## 5092   782732 1
## 5093   782733 1
## 5094   782734 1
## 5095   782735 1
## 5096   782736 1
## 5097   782737 1
## 5098   782738 1
## 5099   782739 1
## 5100   782740 1
## 5101   782741 1
## 5102   782742 1
## 5103   782743 1
## 5104   782744 1
## 5105   782745 1
## 5106   782746 1
## 5107   782747 1
## 5108   782748 1
## 5109   782749 1
## 5110   782750 1
## 5111   782751 1
## 5112   782752 1
## 5113   782753 1
## 5114   782754 1
## 5115   782755 1
## 5116   782756 1
## 5117   782757 1
## 5118   782758 1
## 5119   782759 1
## 5120   782760 1
## 5121   782761 1
## 5122   782762 1
## 5123   782763 1
## 5124   782764 1
## 5125   782765 1
## 5126   782766 1
## 5127   782767 1
## 5128   782768 1
## 5129   782769 1
## 5130   782770 1
## 5131   782771 1
## 5132   782772 1
## 5133   782773 1
## 5134   782774 1
## 5135   782775 1
## 5136   782776 1
## 5137   782777 1
## 5138   782778 1
## 5139   782779 1
## 5140   782780 1
## 5141   782781 1
## 5142   782782 1
## 5143   782783 1
## 5144   782784 1
## 5145   782785 1
## 5146   782786 1
## 5147   782787 1
## 5148   782788 1
## 5149   782789 1
## 5150   782790 1
## 5151   782791 1
## 5152   782792 1
## 5153   782793 1
## 5154   782794 1
## 5155   782795 1
## 5156   782796 1
## 5157   782797 1
## 5158   782798 1
## 5159   782799 1
## 5160   782800 1
## 5161   782801 1
## 5162   782802 1
## 5163   782803 1
## 5164   782804 1
## 5165   782805 1
## 5166   782806 1
## 5167   782807 1
## 5168   782808 1
## 5169   782809 1
## 5170   782810 1
## 5171   782811 1
## 5172   782812 1
## 5173   782813 1
## 5174   782814 1
## 5175   782815 1
## 5176   782816 1
## 5177   782817 1
## 5178   782818 1
## 5179   782819 1
## 5180   782820 1
## 5181   782821 1
## 5182   782822 1
## 5183   782823 1
## 5184   782824 1
## 5185   782825 1
## 5186   782826 1
## 5187   782827 1
## 5188   782828 1
## 5189   782829 1
## 5190   782830 1
## 5191   782831 1
## 5192   782832 1
## 5193   782833 1
## 5194   782834 1
## 5195   782835 1
## 5196   782836 1
## 5197   782837 1
## 5198   782838 1
## 5199   782839 1
## 5200   782840 1
## 5201   782841 1
## 5202   782842 1
## 5203   782843 1
## 5204   782844 1
## 5205   782845 1
## 5206   782846 1
## 5207   782847 1
## 5208   782848 1
## 5209   782849 1
## 5210   782850 1
## 5211   782851 1
## 5212   782852 1
## 5213   782853 1
## 5214   782854 1
## 5215   782855 1
## 5216   782856 1
## 5217   782857 1
## 5218   782858 1
## 5219   782859 1
## 5220   782860 1
## 5221   782861 1
## 5222   782862 1
## 5223   782863 1
## 5224   782864 1
## 5225   782865 1
## 5226   782866 1
## 5227   782867 1
## 5228   782868 1
## 5229   782869 1
## 5230   782870 1
## 5231   782871 1
## 5232   782873 1
## 5233   782874 1
## 5234   782875 1
## 5235   782876 1
## 5236   782877 1
## 5237   782878 1
## 5238   782879 1
## 5239   782880 1
## 5240   782881 1
## 5241   782882 1
## 5242   782883 1
## 5243   782884 1
## 5244   782885 1
## 5245   782886 1
## 5246   782887 1
## 5247   782888 1
## 5248   782889 1
## 5249   782890 1
## 5250   782891 1
## 5251   782892 1
## 5252   782893 1
## 5253   782894 1
## 5254   782895 1
## 5255   782896 1
## 5256   782897 1
## 5257   782898 1
## 5258   782899 1
## 5259   782900 1
## 5260   782901 1
## 5261   782902 1
## 5262   782903 1
## 5263   782904 1
## 5264   782905 1
## 5265   782906 1
## 5266   782907 1
## 5267   782908 1
## 5268   782909 1
## 5269   782910 1
## 5270   782911 1
## 5271   782912 1
## 5272   782913 1
## 5273   782914 1
## 5274   782915 1
## 5275   782916 1
## 5276   782917 1
## 5277   782918 1
## 5278   782919 1
## 5279   782920 1
## 5280   782921 1
## 5281   782922 1
## 5282   782923 1
## 5283   782924 1
## 5284   782925 1
## 5285   782926 1
## 5286   782927 1
## 5287   782928 1
## 5288   782929 1
## 5289   782930 1
## 5290   782931 1
## 5291   782932 1
## 5292   782933 1
## 5293   782934 1
## 5294   782935 1
## 5295   782936 1
## 5296   782937 1
## 5297   782938 1
## 5298   782939 1
## 5299   782940 1
## 5300   782941 1
## 5301   782942 1
## 5302   782943 1
## 5303   782944 1
## 5304   782945 1
## 5305   782946 1
## 5306   782947 1
## 5307   782948 1
## 5308   782949 1
## 5309   782950 1
## 5310   782951 1
## 5311   782952 1
## 5312   782953 1
## 5313   782954 1
## 5314   782955 1
## 5315   782956 1
## 5316   782957 1
## 5317   782958 1
## 5318   782959 1
## 5319   782960 1
## 5320   782961 1
## 5321   782962 1
## 5322   782963 1
## 5323   782964 1
## 5324   782965 1
## 5325   782966 1
## 5326   782967 1
## 5327   782968 1
## 5328   782969 1
## 5329   782970 1
## 5330   782971 1
## 5331   782972 1
## 5332   782973 1
## 5333   782974 1
## 5334   782975 1
## 5335   782976 1
## 5336   782977 1
## 5337   782978 1
## 5338   782979 1
## 5339   782980 1
## 5340   782981 1
## 5341   782982 1
## 5342   782983 1
## 5343   782984 1
## 5344   782985 1
## 5345   782986 1
## 5346   782987 1
## 5347   782988 1
## 5348   782989 1
## 5349   782990 1
## 5350   782991 1
## 5351   782992 1
## 5352   782993 1
## 5353   782994 1
## 5354   782995 1
## 5355   782996 1
## 5356   782997 1
## 5357   782998 1
## 5358   782999 1
## 5359   783000 1
## 5360   783001 1
## 5361   783002 1
## 5362   783003 1
## 5363   783004 1
## 5364   783005 1
## 5365   783006 1
## 5366   783007 1
## 5367   783008 1
## 5368   783009 1
## 5369   783010 1
## 5370   783011 1
## 5371   783012 1
## 5372   783013 1
## 5373   783014 1
## 5374   783015 1
## 5375   783016 1
## 5376   783017 1
## 5377   783018 1
## 5378   783019 1
## 5379   783020 1
## 5380   783021 1
## 5381   783022 1
## 5382   783023 1
## 5383   783024 1
## 5384   783025 1
## 5385   783026 1
## 5386   783027 1
## 5387   783028 1
## 5388   783029 1
## 5389   783030 1
## 5390   783031 1
## 5391   783032 1
## 5392   783033 1
## 5393   783034 1
## 5394   783035 1
## 5395   783036 1
## 5396   783037 1
## 5397   783038 1
## 5398   783039 1
## 5399   783040 1
## 5400   783041 1
## 5401   783042 1
## 5402   783043 1
## 5403   783044 1
## 5404   783045 1
## 5405   783046 1
## 5406   783047 1
## 5407   783048 1
## 5408   783049 1
## 5409   783050 1
## 5410   783051 1
## 5411   783052 1
## 5412   783053 1
## 5413   783054 1
## 5414   783055 1
## 5415   783056 1
## 5416   783057 1
## 5417   783058 1
## 5418   783059 1
## 5419   783060 1
## 5420   783061 1
## 5421   783062 1
## 5422   783063 1
## 5423   783064 1
## 5424   783065 1
## 5425   783066 1
## 5426   783067 1
## 5427   783068 1
## 5428   783069 1
## 5429   783070 1
## 5430   783071 1
## 5431   783072 1
## 5432   783073 1
## 5433   783074 1
## 5434   783075 1
## 5435   783076 1
## 5436   783077 1
## 5437   783078 1
## 5438   783080 1
## 5439   783082 1
## 5440   783083 1
## 5441   783084 1
## 5442   783085 1
## 5443   783086 1
## 5444   783087 1
## 5445   783088 1
## 5446   783089 1
## 5447   783090 1
## 5448   783091 1
## 5449   783092 1
## 5450   783093 1
## 5451   783094 1
## 5452   783095 1
## 5453   783096 1
## 5454   783097 1
## 5455   783098 1
## 5456   783099 1
## 5457   783100 1
## 5458   783101 1
## 5459   783102 1
## 5460   783103 1
## 5461   783104 1
## 5462   783105 1
## 5463   783106 1
## 5464   783107 1
## 5465   783108 1
## 5466   783109 1
## 5467   783110 1
## 5468   783111 1
## 5469   783112 1
## 5470   783113 1
## 5471   783114 1
## 5472   783115 1
## 5473   783116 1
## 5474   783117 1
## 5475   783118 1
## 5476   783119 1
## 5477   783120 1
## 5478   783121 1
## 5479   783122 1
## 5480   783123 1
## 5481   783124 1
## 5482   783125 1
## 5483   783126 1
## 5484   783127 1
## 5485   783128 1
## 5486   783129 1
## 5487   783130 1
## 5488   783131 1
## 5489   783132 1
## 5490   783133 1
## 5491   783134 1
## 5492   783135 1
## 5493   783136 1
## 5494   783137 1
## 5495   783138 1
## 5496   783139 1
## 5497   783140 1
## 5498   783141 1
## 5499   783142 1
## 5500   783143 1
## 5501   783144 1
## 5502   783145 1
## 5503   783146 1
## 5504   783147 1
## 5505   783148 1
## 5506   783149 1
## 5507   783150 1
## 5508   783151 1
## 5509   783152 1
## 5510   783153 1
## 5511   783154 1
## 5512   783155 1
## 5513   783156 1
## 5514   783157 1
## 5515   783158 1
## 5516   783159 1
## 5517   783160 1
## 5518   783161 1
## 5519   783162 1
## 5520   783163 1
## 5521   783164 1
## 5522   783165 1
## 5523   783166 1
## 5524   783167 1
## 5525   783168 1
## 5526   783169 1
## 5527   783170 1
## 5528   783171 1
## 5529   783172 1
## 5530   783173 1
## 5531   783174 1
## 5532   783175 1
## 5533   783176 1
## 5534   783177 1
## 5535   783178 1
## 5536   783179 1
## 5537   783180 1
## 5538   783181 1
## 5539   783182 1
## 5540   783183 1
## 5541   783184 1
## 5542   783185 1
## 5543   783186 1
## 5544   783187 1
## 5545   783188 1
## 5546   783189 1
## 5547   783190 1
## 5548   783191 1
## 5549   783192 1
## 5550   783193 1
## 5551   783194 1
## 5552   783195 1
## 5553   783196 1
## 5554   783197 1
## 5555   783198 1
## 5556   783199 1
## 5557   783200 1
## 5558   783201 1
## 5559   783202 1
## 5560   783203 1
## 5561   783204 1
## 5562   783205 1
## 5563   783206 1
## 5564   783207 1
## 5565   783208 1
## 5566   783209 1
## 5567   783210 1
## 5568   783211 1
## 5569   783212 1
## 5570   783213 1
## 5571   783214 1
## 5572   783215 1
## 5573   783216 1
## 5574   783217 1
## 5575   783218 1
## 5576   783219 1
## 5577   783220 1
## 5578   783221 1
## 5579   783222 1
## 5580   783223 1
## 5581   783224 1
## 5582   783225 1
## 5583   783226 1
## 5584   783227 1
## 5585   783228 1
## 5586   783229 1
## 5587   783230 1
## 5588   783231 1
## 5589   783232 1
## 5590   783233 1
## 5591   783234 1
## 5592   783235 1
## 5593   783236 1
## 5594   783237 1
## 5595   783238 1
## 5596   783239 1
## 5597   783240 1
## 5598   783241 1
## 5599   783242 1
## 5600   783243 1
## 5601   783244 1
## 5602   783245 1
## 5603   783246 1
## 5604   783247 1
## 5605   783248 1
## 5606   783249 1
## 5607   783250 1
## 5608   783251 1
## 5609   783252 1
## 5610   783253 1
## 5611   783254 1
## 5612   783255 1
## 5613   783256 1
## 5614   783257 1
## 5615   783258 1
## 5616   783259 1
## 5617   783260 1
## 5618   783261 1
## 5619   783262 1
## 5620   783263 1
## 5621   783264 1
## 5622   783265 1
## 5623   783266 1
## 5624   783267 1
## 5625   783268 1
## 5626   783269 1
## 5627   783270 1
## 5628   783271 1
## 5629   783272 1
## 5630   783273 1
## 5631   783274 1
## 5632   783275 1
## 5633   783276 1
## 5634   783277 1
## 5635   783278 1
## 5636   783279 1
## 5637   783280 1
## 5638   783281 1
## 5639   783282 1
## 5640   783283 1
## 5641   783284 1
## 5642   783285 1
## 5643   783286 1
## 5644   783287 1
## 5645   783288 1
## 5646   783289 1
## 5647   783290 1
## 5648   783291 1
## 5649   783292 1
## 5650   783293 1
## 5651   783294 1
## 5652   783295 1
## 5653   783296 1
## 5654   783297 1
## 5655   783298 1
## 5656   783299 1
## 5657   783300 1
## 5658   783301 1
## 5659   783302 1
## 5660   783303 1
## 5661   783304 1
## 5662   783305 1
## 5663   783306 1
## 5664   783307 1
## 5665   783308 1
## 5666   783309 1
## 5667   783310 1
## 5668   783311 1
## 5669   783312 1
## 5670   783313 1
## 5671   783314 1
## 5672   783315 1
## 5673   783316 1
## 5674   783317 1
## 5675   783318 1
## 5676   783319 1
## 5677   783320 1
## 5678   783321 1
## 5679   783322 1
## 5680   783323 1
## 5681   783324 1
## 5682   783325 1
## 5683   783326 1
## 5684   783327 1
## 5685   783328 1
## 5686   783329 1
## 5687   783330 1
## 5688   783331 1
## 5689   783332 1
## 5690   783333 1
## 5691   783334 1
## 5692   783335 1
## 5693   783336 1
## 5694   783337 1
## 5695   783338 1
## 5696   783339 1
## 5697   783340 1
## 5698   783341 1
## 5699   783342 1
## 5700   783343 1
## 5701   783344 1
## 5702   783345 1
## 5703   783346 1
## 5704   783347 1
## 5705   783348 1
## 5706   783349 1
## 5707   783350 1
## 5708   783351 1
## 5709   783352 1
## 5710   783353 1
## 5711   783354 1
## 5712   783355 1
## 5713   783356 1
## 5714   783357 1
## 5715   783358 1
## 5716   783359 1
## 5717   783360 1
## 5718   783361 1
## 5719   783362 1
## 5720   783363 1
## 5721   783364 1
## 5722   783365 1
## 5723   783366 1
## 5724   783367 1
## 5725   783368 1
## 5726   783369 1
## 5727   783370 1
## 5728   783371 1
## 5729   783372 1
## 5730   783373 1
## 5731   783374 1
## 5732   783375 1
## 5733   783376 1
## 5734   783377 1
## 5735   783378 1
## 5736   783379 1
## 5737   783380 1
## 5738   783381 1
## 5739   783382 1
## 5740   783383 1
## 5741   783384 1
## 5742   783385 1
## 5743   783386 1
## 5744   783387 1
## 5745   783388 1
## 5746   783389 1
## 5747   783390 1
## 5748   783391 1
## 5749   783392 1
## 5750   783393 1
## 5751   783394 1
## 5752   783395 1
## 5753   783396 1
## 5754   783397 1
## 5755   783398 1
## 5756   783399 1
## 5757   783401 1
## 5758   783402 1
## 5759   783403 1
## 5760   783404 1
## 5761   783405 1
## 5762   783406 1
## 5763   783407 1
## 5764   783408 1
## 5765   783409 1
## 5766   783410 1
## 5767   783411 1
## 5768   783412 1
## 5769   783413 1
## 5770   783414 1
## 5771   783415 1
## 5772   783416 1
## 5773   783417 1
## 5774   783418 1
## 5775   783419 1
## 5776   783420 1
## 5777   783421 1
## 5778   783422 1
## 5779   783423 1
## 5780   783424 1
## 5781   783425 1
## 5782   783426 1
## 5783   783427 1
## 5784   783428 1
## 5785   783429 1
## 5786   783430 1
## 5787   783431 1
## 5788   783432 1
## 5789   783433 1
## 5790   783434 1
## 5791   783435 1
## 5792   783436 1
## 5793   783437 1
## 5794   783438 1
## 5795   783439 1
## 5796   783440 1
## 5797   783441 1
## 5798   783442 1
## 5799   783443 1
## 5800   783444 1
## 5801   783445 1
## 5802   783446 1
## 5803   783447 1
## 5804   783448 1
## 5805   783449 1
## 5806   783450 1
## 5807   783451 1
## 5808   783452 1
## 5809   783453 1
## 5810   783454 1
## 5811   783455 1
## 5812   783456 1
## 5813   783457 1
## 5814   783458 1
## 5815   783459 1
## 5816   783460 1
## 5817   783461 1
## 5818   783462 1
## 5819   783463 1
## 5820   783464 1
## 5821   783465 1
## 5822   783466 1
## 5823   783467 1
## 5824   783468 1
## 5825   783469 1
## 5826   783470 1
## 5827   783471 1
## 5828   783472 1
## 5829   783473 1
## 5830   783474 1
## 5831   783475 1
## 5832   783476 1
## 5833   783477 1
## 5834   783478 1
## 5835   783479 1
## 5836   783480 1
## 5837   783481 1
## 5838   783482 1
## 5839   783483 1
## 5840   783484 1
## 5841   783485 1
## 5842   783486 1
## 5843   783487 1
## 5844   783488 1
## 5845   783489 1
## 5846   783490 1
## 5847   783491 1
## 5848   783492 1
## 5849   783493 1
## 5850   783494 1
## 5851   783495 1
## 5852   783496 1
## 5853   783497 1
## 5854   783498 1
## 5855   783499 1
## 5856   783500 1
## 5857   783501 1
## 5858   783502 1
## 5859   783503 1
## 5860   783504 1
## 5861   783505 1
## 5862   783506 1
## 5863   783507 1
## 5864   783508 1
## 5865   783509 1
## 5866   783510 1
## 5867   783511 1
## 5868   783512 1
## 5869   783513 1
## 5870   783514 1
## 5871   783515 1
## 5872   783516 1
## 5873   783517 1
## 5874   783518 1
## 5875   783519 1
## 5876   783520 1
## 5877   783521 1
## 5878   783522 1
## 5879   783523 1
## 5880   783524 1
## 5881   783525 1
## 5882   783526 1
## 5883   783527 1
## 5884   783528 1
## 5885   783529 1
## 5886   783530 1
## 5887   783531 1
## 5888   783532 1
## 5889   783533 1
## 5890   783534 1
## 5891   783535 1
## 5892   783536 1
## 5893   783537 1
## 5894   783538 1
## 5895   783539 1
## 5896   783540 1
## 5897   783541 1
## 5898   783542 1
## 5899   783543 1
## 5900   783544 1
## 5901   783545 1
## 5902   783546 1
## 5903   783547 1
## 5904   783548 1
## 5905   783549 1
## 5906   783550 1
## 5907   783551 1
## 5908   783552 1
## 5909   783553 1
## 5910   783554 1
## 5911   783555 1
## 5912   783556 1
## 5913   783557 1
## 5914   783558 1
## 5915   783559 1
## 5916   783560 1
## 5917   783561 1
## 5918   783562 1
## 5919   783563 1
## 5920   783564 1
## 5921   783565 1
## 5922   783566 1
## 5923   783567 1
## 5924   783568 1
## 5925   783569 1
## 5926   783570 1
## 5927   783571 1
## 5928   783572 1
## 5929   783573 1
## 5930   783574 1
## 5931   783575 1
## 5932   783576 1
## 5933   783577 1
## 5934   783578 1
## 5935   783579 1
## 5936   783580 1
## 5937   783581 1
## 5938   783582 1
## 5939   783583 1
## 5940   783584 1
## 5941   783585 1
## 5942   783586 1
## 5943   783587 1
## 5944   783588 1
## 5945   783589 1
## 5946   783590 1
## 5947   783591 1
## 5948   783592 1
## 5949   783593 1
## 5950   783594 1
## 5951   783595 1
## 5952   783596 1
## 5953   783597 1
## 5954   783598 1
## 5955   783599 1
## 5956   783600 1
## 5957   783601 1
## 5958   783602 1
## 5959   783603 1
## 5960   783604 1
## 5961   783605 1
## 5962   783606 1
## 5963   783607 1
## 5964   783608 1
## 5965   783609 1
## 5966   783610 1
## 5967   783611 1
## 5968   783612 1
## 5969   783613 1
## 5970   783614 1
## 5971   783615 1
## 5972   783616 1
## 5973   783617 1
## 5974   783618 1
## 5975   783619 1
## 5976   783620 1
## 5977   783621 1
## 5978   783622 1
## 5979   783623 1
## 5980   783624 1
## 5981   783625 1
## 5982   783626 1
## 5983   783627 1
## 5984   783628 1
## 5985   783629 1
## 5986   783630 1
## 5987   783631 1
## 5988   783632 1
## 5989   783633 1
## 5990   783634 1
## 5991   783635 1
## 5992   783636 1
## 5993   783637 1
## 5994   783638 1
## 5995   783639 1
## 5996   783640 1
## 5997   783641 1
## 5998   783642 1
## 5999   783643 1
## 6000   783644 1
## 6001   783645 1
## 6002   783646 1
## 6003   783647 1
## 6004   783648 1
## 6005   783649 1
## 6006   783650 1
## 6007   783651 1
## 6008   783652 1
## 6009   783653 1
## 6010   783654 1
## 6011   783655 1
## 6012   783656 1
## 6013   783657 1
## 6014   783658 1
## 6015   783659 1
## 6016   783660 1
## 6017   783661 1
## 6018   783662 1
## 6019   783663 1
## 6020   783664 1
## 6021   783665 1
## 6022   783666 1
## 6023   783667 1
## 6024   783668 1
## 6025   783669 1
## 6026   783670 1
## 6027   783671 1
## 6028   783672 1
## 6029   783673 1
## 6030   783674 1
## 6031   783675 1
## 6032   783676 1
## 6033   783677 1
## 6034   783678 1
## 6035   783679 1
## 6036   783680 1
## 6037   783681 1
## 6038   783682 1
## 6039   783683 1
## 6040   783684 1
## 6041   783685 1
## 6042   783686 1
## 6043   783687 1
## 6044   783688 1
## 6045   783689 1
## 6046   783690 1
## 6047   783691 1
## 6048   783692 1
## 6049   783693 1
## 6050   783694 1
## 6051   783695 1
## 6052   783696 1
## 6053   783697 1
## 6054   783698 1
## 6055   783699 1
## 6056   783700 1
## 6057   783701 1
## 6058   783702 1
## 6059   783703 1
## 6060   783704 1
## 6061   783705 1
## 6062   783706 1
## 6063   783707 1
## 6064   783708 1
## 6065   783709 1
## 6066   783710 1
## 6067   783711 1
## 6068   783712 1
## 6069   783713 1
## 6070   783714 1
## 6071   783715 1
## 6072   783716 1
## 6073   783717 1
## 6074   783718 1
## 6075   783719 1
## 6076   783720 1
## 6077   783721 1
## 6078   783722 1
## 6079   783723 1
## 6080   783724 1
## 6081   783725 1
## 6082   783726 1
## 6083   783727 1
## 6084   783728 1
## 6085   783729 1
## 6086   783730 1
## 6087   783731 1
## 6088   783732 1
## 6089   783733 1
## 6090   783734 1
## 6091   783735 1
## 6092   783736 1
## 6093   783737 1
## 6094   783738 1
## 6095   783739 1
## 6096   783740 1
## 6097   783741 1
## 6098   783742 1
## 6099   783743 1
## 6100   783744 1
## 6101   783745 1
## 6102   783746 1
## 6103   783747 1
## 6104   783748 1
## 6105   783749 1
## 6106   783750 1
## 6107   783751 1
## 6108   783752 1
## 6109   783753 1
## 6110   783754 1
## 6111   783755 1
## 6112   783756 1
## 6113   783757 1
## 6114   783758 1
## 6115   783759 1
## 6116   783760 1
## 6117   783761 1
## 6118   783762 1
## 6119   783763 1
## 6120   783764 1
## 6121   783765 1
## 6122   783766 1
## 6123   783767 1
## 6124   783768 1
## 6125   783769 1
## 6126   783770 1
## 6127   783771 1
## 6128   783772 1
## 6129   783773 1
## 6130   783774 1
## 6131   783775 1
## 6132   783776 1
## 6133   783777 1
## 6134   783778 1
## 6135   783779 1
## 6136   783780 1
## 6137   783781 1
## 6138   783782 1
## 6139   783783 1
## 6140   783784 1
## 6141   783785 1
## 6142   783786 1
## 6143   783787 1
## 6144   783788 1
## 6145   783789 1
## 6146   783790 1
## 6147   783791 1
## 6148   783792 1
## 6149   783793 1
## 6150   783794 1
## 6151   783795 1
## 6152   783796 1
## 6153   783797 1
## 6154   783798 1
## 6155   783799 1
## 6156   783800 1
## 6157   783801 1
## 6158   783802 1
## 6159   783803 1
## 6160   783804 1
## 6161   783805 1
## 6162   783806 1
## 6163   783807 1
## 6164   783808 1
## 6165   783809 1
## 6166   783810 1
## 6167   783811 1
## 6168   783812 1
## 6169   783813 1
## 6170   783814 1
## 6171   783815 1
## 6172   783816 1
## 6173   783817 1
## 6174   783818 1
## 6175   783819 1
## 6176   783820 1
## 6177   783821 1
## 6178   783822 1
## 6179   783823 1
## 6180   783824 1
## 6181   783825 1
## 6182   783826 1
## 6183   783827 1
## 6184   783828 1
## 6185   783829 1
## 6186   783830 1
## 6187   783831 1
## 6188   783832 1
## 6189   783833 1
## 6190   783834 1
## 6191   783835 1
## 6192   783836 1
## 6193   783837 1
## 6194   783838 1
## 6195   783839 1
## 6196   783840 1
## 6197   783841 1
## 6198   783842 1
## 6199   783843 1
## 6200   783844 1
## 6201   783845 1
## 6202   783846 1
## 6203   783847 1
## 6204   783848 1
## 6205   783849 1
## 6206   783850 1
## 6207   783851 1
## 6208   783852 1
## 6209   783853 1
## 6210   783854 1
## 6211   783855 1
## 6212   783856 1
## 6213   783857 1
## 6214   783858 1
## 6215   783859 1
## 6216   783860 1
## 6217   783861 1
## 6218   783862 1
## 6219   783863 1
## 6220   783864 1
## 6221   783865 1
## 6222   783866 1
## 6223   783867 1
## 6224   783868 1
## 6225   783869 1
## 6226   783870 1
## 6227   783871 1
## 6228   783872 1
## 6229   783873 1
## 6230   783874 1
## 6231   783875 1
## 6232   783876 1
## 6233   783877 1
## 6234   783878 1
## 6235   783879 1
## 6236   783880 1
## 6237   783881 1
## 6238   783882 1
## 6239   783883 1
## 6240   783884 1
## 6241   783885 1
## 6242   783886 1
## 6243   783887 1
## 6244   783888 1
## 6245   783889 1
## 6246   783890 1
## 6247   783891 1
## 6248   783892 1
## 6249   783893 1
## 6250   783894 1
## 6251   783895 1
## 6252   783896 1
## 6253   783897 1
## 6254   783898 1
## 6255   783899 1
## 6256   783900 1
## 6257   783901 1
## 6258   783902 1
## 6259   783903 1
## 6260   783904 1
## 6261   783905 1
## 6262   783906 1
## 6263   783907 1
## 6264   783908 1
## 6265   783909 1
## 6266   783910 1
## 6267   783911 1
## 6268   783912 1
## 6269   783913 1
## 6270   783914 1
## 6271   783915 1
## 6272   783916 1
## 6273   783917 1
## 6274   783918 1
## 6275   783919 1
## 6276   783920 1
## 6277   783921 1
## 6278   783922 1
## 6279   783924 1
## 6280   783925 1
## 6281   783926 1
## 6282   783927 1
## 6283   783928 1
## 6284   783929 1
## 6285   783930 1
## 6286   783931 1
## 6287   783932 1
## 6288   783933 1
## 6289   783934 1
## 6290   783935 1
## 6291   783936 1
## 6292   783937 1
## 6293   783938 1
## 6294   783939 1
## 6295   783940 1
## 6296   783941 1
## 6297   783942 1
## 6298   783943 1
## 6299   783944 1
## 6300   783945 1
## 6301   783946 1
## 6302   783947 1
## 6303   783948 1
## 6304   783949 1
## 6305   783950 1
## 6306   783951 1
## 6307   783952 1
## 6308   783953 1
## 6309   783954 1
## 6310   783955 1
## 6311   783956 1
## 6312   783957 1
## 6313   783958 1
## 6314   783959 1
## 6315   783960 1
## 6316   783961 1
## 6317   783962 1
## 6318   783963 1
## 6319   783964 1
## 6320   783965 1
## 6321   783966 1
## 6322   783967 1
## 6323   783968 1
## 6324   783969 1
## 6325   783970 1
## 6326   783971 1
## 6327   783972 1
## 6328   783973 1
## 6329   783974 1
## 6330   783975 1
## 6331   783976 1
## 6332   783977 1
## 6333   783978 1
## 6334   783979 1
## 6335   783980 1
## 6336   783981 1
## 6337   783982 1
## 6338   783983 1
## 6339   783984 1
## 6340   783985 1
## 6341   783986 1
## 6342   783987 1
## 6343   783988 1
## 6344   783989 1
## 6345   783990 1
## 6346   783991 1
## 6347   783992 1
## 6348   783993 1
## 6349   783994 1
## 6350   783995 1
## 6351   783996 1
## 6352   783997 1
## 6353   783998 1
## 6354   783999 1
## 6355   784000 1
## 6356   784001 1
## 6357   784003 1
## 6358   784004 1
## 6359   784005 1
## 6360   784006 1
## 6361   784007 1
## 6362   784008 1
## 6363   784009 1
## 6364   784010 1
## 6365   784011 1
## 6366   784012 1
## 6367   784013 1
## 6368   784014 1
## 6369   784015 1
## 6370   784016 1
## 6371   784017 1
## 6372   784018 1
## 6373   784019 1
## 6374   784020 1
## 6375   784021 1
## 6376   784022 1
## 6377   784023 1
## 6378   784024 1
## 6379   784025 1
## 6380   784026 1
## 6381   784027 1
## 6382   784028 1
## 6383   784029 1
## 6384   784030 1
## 6385   784031 1
## 6386   784032 1
## 6387   784033 1
## 6388   784034 1
## 6389   784035 1
## 6390   784036 1
## 6391   784037 1
## 6392   784038 1
## 6393   784039 1
## 6394   784040 1
## 6395   784041 1
## 6396   784042 1
## 6397   784043 1
## 6398   784044 1
## 6399   784045 1
## 6400   784046 1
## 6401   784047 1
## 6402   784048 1
## 6403   784049 1
## 6404   784050 1
## 6405   784051 1
## 6406   784052 1
## 6407   784053 1
## 6408   784054 1
## 6409   784055 1
## 6410   784056 1
## 6411   784057 1
## 6412   784058 1
## 6413   784059 1
## 6414   784060 1
## 6415   784061 1
## 6416   784062 1
## 6417   784063 1
## 6418   784064 1
## 6419   784065 1
## 6420   784066 1
## 6421   784067 1
## 6422   784068 1
## 6423   784069 1
## 6424   784070 1
## 6425   784071 1
## 6426   784072 1
## 6427   784073 1
## 6428   784074 1
## 6429   784075 1
## 6430   784076 1
## 6431   784077 1
## 6432   784078 1
## 6433   784079 1
## 6434   784080 1
## 6435   784081 1
## 6436   784082 1
## 6437   784083 1
## 6438   784084 1
## 6439   784085 1
## 6440   784086 1
## 6441   784087 1
## 6442   784088 1
## 6443   784089 1
## 6444   784090 1
## 6445   784091 1
## 6446   784092 1
## 6447   784093 1
## 6448   784094 1
## 6449   784095 1
## 6450   784096 1
## 6451   784097 1
## 6452   784098 1
## 6453   784099 1
## 6454   784100 1
## 6455   784101 1
## 6456   784102 1
## 6457   784103 1
## 6458   784104 1
## 6459   784105 1
## 6460   784106 1
## 6461   784107 1
## 6462   784108 1
## 6463   784109 1
## 6464   784110 1
## 6465   784111 1
## 6466   784112 1
## 6467   784113 1
## 6468   784114 1
## 6469   784115 1
## 6470   784116 1
## 6471   784117 1
## 6472   784118 1
## 6473   784119 1
## 6474   784120 1
## 6475   784121 1
## 6476   784122 1
## 6477   784123 1
## 6478   784124 1
## 6479   784125 1
## 6480   784126 1
## 6481   784127 1
## 6482   784128 1
## 6483   784129 1
## 6484   784130 1
## 6485   784131 1
## 6486   784132 1
## 6487   784133 1
## 6488   784134 1
## 6489   784135 1
## 6490   784136 1
## 6491   784137 1
## 6492   784138 1
## 6493   784139 1
## 6494   784140 1
## 6495   784141 1
## 6496   784142 1
## 6497   784143 1
## 6498   784144 1
## 6499   784145 1
## 6500   784146 1
## 6501   784147 1
## 6502   784148 1
## 6503   784149 1
## 6504   784150 1
## 6505   784151 1
## 6506   784152 1
## 6507   784153 1
## 6508   784154 1
## 6509   784155 1
## 6510   784156 1
## 6511   784157 1
## 6512   784158 1
## 6513   784159 1
## 6514   784160 1
## 6515   784161 1
## 6516   784162 1
## 6517   784163 1
## 6518   784164 1
## 6519   784165 1
## 6520   784166 1
## 6521   784167 1
## 6522   784168 1
## 6523   784169 1
## 6524   784170 1
## 6525   784171 1
## 6526   784172 1
## 6527   784173 1
## 6528   784174 1
## 6529   784175 1
## 6530   784176 1
## 6531   784177 1
## 6532   784178 1
## 6533   784179 1
## 6534   784180 1
## 6535   784181 1
## 6536   784182 1
## 6537   784183 1
## 6538   784184 1
## 6539   784185 1
## 6540   784186 1
## 6541   784187 1
## 6542   784188 1
## 6543   784189 1
## 6544   784190 1
## 6545   784191 1
## 6546   784192 1
## 6547   784193 1
## 6548   784194 1
## 6549   784195 1
## 6550   784196 1
## 6551   784197 1
## 6552   784198 1
## 6553   784199 1
## 6554   784200 1
## 6555   784201 1
## 6556   784202 1
## 6557   784203 1
## 6558   784204 1
## 6559   784205 1
## 6560   784206 1
## 6561   784207 1
## 6562   784208 1
## 6563   784209 1
## 6564   784210 1
## 6565   784211 1
## 6566   784212 1
## 6567   784213 1
## 6568   784214 1
## 6569   784215 1
## 6570   784216 1
## 6571   784217 1
## 6572   784218 1
## 6573   784219 1
## 6574   784220 1
## 6575   784221 1
## 6576   784222 1
## 6577   784223 1
## 6578   784224 1
## 6579   784225 1
## 6580   784226 1
## 6581   784227 1
## 6582   784228 1
## 6583   784229 1
## 6584   784230 1
## 6585   784231 1
## 6586   784232 1
## 6587   784233 1
## 6588   784234 1
## 6589   784235 1
## 6590   784236 1
## 6591   784237 1
## 6592   784238 1
## 6593   784239 1
## 6594   784240 1
## 6595   784241 1
## 6596   784242 1
## 6597   784243 1
## 6598   784244 1
## 6599   784245 1
## 6600   784246 1
## 6601   784247 1
## 6602   784248 1
## 6603   784249 1
## 6604   784250 1
## 6605   784251 1
## 6606   784252 1
## 6607   784253 1
## 6608   784254 1
## 6609   784255 1
## 6610   784256 1
## 6611   784257 1
## 6612   784258 1
## 6613   784259 1
## 6614   784260 1
## 6615   784261 1
## 6616   784262 1
## 6617   784263 1
## 6618   784264 1
## 6619   784265 1
## 6620   784266 1
## 6621   784267 1
## 6622   784268 1
## 6623   784269 1
## 6624   784270 1
## 6625   784271 1
## 6626   784272 1
## 6627   784273 1
## 6628   784274 1
## 6629   784275 1
## 6630   784276 1
## 6631   784277 1
## 6632   784278 1
## 6633   784279 1
## 6634   784280 1
## 6635   784281 1
## 6636   784282 1
## 6637   784283 1
## 6638   784284 1
## 6639   784285 1
## 6640   784286 1
## 6641   784287 1
## 6642   784288 1
## 6643   784289 1
## 6644   784290 1
## 6645   784291 1
## 6646   784292 1
## 6647   784294 1
## 6648   784295 1
## 6649   784296 1
## 6650   784297 1
## 6651   784298 1
## 6652   784299 1
## 6653   784300 1
## 6654   784301 1
## 6655   784302 1
## 6656   784303 1
## 6657   784304 1
## 6658   784305 1
## 6659   784306 1
## 6660   784307 1
## 6661   784308 1
## 6662   784309 1
## 6663   784310 1
## 6664   784311 1
## 6665   784312 1
## 6666   784313 1
## 6667   784314 1
## 6668   784315 1
## 6669   784316 1
## 6670   784317 1
## 6671   784318 1
## 6672   784319 1
## 6673   784320 1
## 6674   784321 1
## 6675   784322 1
## 6676   784323 1
## 6677   784324 1
## 6678   784325 1
## 6679   784326 1
## 6680   784327 1
## 6681   784328 1
## 6682   784329 1
## 6683   784330 1
## 6684   784331 1
## 6685   784332 1
## 6686   784333 1
## 6687   784334 1
## 6688   784335 1
## 6689   784336 1
## 6690   784337 1
## 6691   784338 1
## 6692   784339 1
## 6693   784340 1
## 6694   784341 1
## 6695   784342 1
## 6696   784343 1
## 6697   784344 1
## 6698   784345 1
## 6699   784346 1
## 6700   784347 1
## 6701   784348 1
## 6702   784349 1
## 6703   784351 1
## 6704   784352 1
## 6705   784353 1
## 6706   784354 1
## 6707   784355 1
## 6708   784356 1
## 6709   784357 1
## 6710   784358 1
## 6711   784359 1
## 6712   784360 1
## 6713   784361 1
## 6714   784362 1
## 6715   784363 1
## 6716   784364 1
## 6717   784365 1
## 6718   784366 1
## 6719   784367 1
## 6720   784368 1
## 6721   784369 1
## 6722   784370 1
## 6723   784371 1
## 6724   784372 1
## 6725   784373 1
## 6726   784374 1
## 6727   784375 1
## 6728   784376 1
## 6729   784377 1
## 6730   784378 1
## 6731   784379 1
## 6732   784380 1
## 6733   784381 1
## 6734   784382 1
## 6735   784383 1
## 6736   784384 1
## 6737   784385 1
## 6738   784386 1
## 6739   784387 1
## 6740   784388 1
## 6741   784390 1
## 6742   784391 1
## 6743   784392 1
## 6744   784393 1
## 6745   784394 1
## 6746   784395 1
## 6747   784396 1
## 6748   784397 1
## 6749   784398 1
## 6750   784399 1
## 6751   784400 1
## 6752   784401 1
## 6753   784402 1
## 6754   784403 1
## 6755   784404 1
## 6756   784405 1
## 6757   784406 1
## 6758   784407 1
## 6759   784408 1
## 6760   784409 1
## 6761   784410 1
## 6762   784411 1
## 6763   784412 1
## 6764   784413 1
## 6765   784414 1
## 6766   784415 1
## 6767   784416 1
## 6768   784417 1
## 6769   784418 1
## 6770   784419 1
## 6771   784420 1
## 6772   784421 1
## 6773   784422 1
## 6774   784423 1
## 6775   784424 1
## 6776   784425 1
## 6777   784426 1
## 6778   784427 1
## 6779   784428 1
## 6780   784429 1
## 6781   784430 1
## 6782   784431 1
## 6783   784432 1
## 6784   784433 1
## 6785   784434 1
## 6786   784435 1
## 6787   784436 1
## 6788   784437 1
## 6789   784438 1
## 6790   784439 1
## 6791   784440 1
## 6792   784441 1
## 6793   784442 1
## 6794   784443 1
## 6795   784444 1
## 6796   784445 1
## 6797   784446 1
## 6798   784447 1
## 6799   784448 1
## 6800   784449 1
## 6801   784450 1
## 6802   784451 1
## 6803   784452 1
## 6804   784453 1
## 6805   784454 1
## 6806   784455 1
## 6807   784456 1
## 6808   784457 1
## 6809   784458 1
## 6810   784459 1
## 6811   784460 1
## 6812   784461 1
## 6813   784462 1
## 6814   784463 1
## 6815   784464 1
## 6816   784465 1
## 6817   784466 1
## 6818   784467 1
## 6819   784468 1
## 6820   784469 1
## 6821   784470 1
## 6822   784471 1
## 6823   784472 1
## 6824   784473 1
## 6825   784474 1
## 6826   784475 1
## 6827   784476 1
## 6828   784477 1
## 6829   784478 1
## 6830   784479 1
## 6831   784480 1
## 6832   784481 1
## 6833   784482 1
## 6834   784483 1
## 6835   784484 1
## 6836   784485 1
## 6837   784486 1
## 6838   784487 1
## 6839   784488 1
## 6840   784489 1
## 6841   784490 1
## 6842   784491 1
## 6843   784492 1
## 6844   784493 1
## 6845   784494 1
## 6846   784495 1
## 6847   784496 1
## 6848   784497 1
## 6849   784498 1
## 6850   784499 1
## 6851   784500 1
## 6852   784501 1
## 6853   784502 1
## 6854   784503 1
## 6855   784504 1
## 6856   784505 1
## 6857   784506 1
## 6858   784507 1
## 6859   784508 1
## 6860   784509 1
## 6861   784510 1
## 6862   784511 1
## 6863   784512 1
## 6864   784513 1
## 6865   784514 1
## 6866   784515 1
## 6867   784517 1
## 6868   784518 1
## 6869   784519 1
## 6870   784520 1
## 6871   784521 1
## 6872   784522 1
## 6873   784523 1
## 6874   784524 1
## 6875   784525 1
## 6876   784526 1
## 6877   784527 1
## 6878   784528 1
## 6879   784529 1
## 6880   784530 1
## 6881   784531 1
## 6882   784532 1
## 6883   784533 1
## 6884   784534 1
## 6885   784535 1
## 6886   784536 1
## 6887   784537 1
## 6888   784538 1
## 6889   784539 1
## 6890   784540 1
## 6891   784541 1
## 6892   784542 1
## 6893   784543 1
## 6894   784544 1
## 6895   784545 1
## 6896   784546 1
## 6897   784547 1
## 6898   784548 1
## 6899   784549 1
## 6900   784550 1
## 6901   784551 1
## 6902   784552 1
## 6903   784553 1
## 6904   784554 1
## 6905   784555 1
## 6906   784556 1
## 6907   784557 1
## 6908   784558 1
## 6909   784559 1
## 6910   784560 1
## 6911   784561 1
## 6912   784562 1
## 6913   784563 1
## 6914   784564 1
## 6915   784565 1
## 6916   784566 1
## 6917   784567 1
## 6918   784568 1
## 6919   784569 1
## 6920   784570 1
## 6921   784571 1
## 6922   784572 1
## 6923   784573 1
## 6924   784574 1
## 6925   784575 1
## 6926   784576 1
## 6927   784577 1
## 6928   784578 1
## 6929   784579 1
## 6930   784580 1
## 6931   784581 1
## 6932   784582 1
## 6933   784583 1
## 6934   784584 1
## 6935   784585 1
## 6936   784586 1
## 6937   784587 1
## 6938   784588 1
## 6939   784589 1
## 6940   784590 1
## 6941   784591 1
## 6942   784592 1
## 6943   784593 1
## 6944   784594 1
## 6945   784595 1
## 6946   784596 1
## 6947   784597 1
## 6948   784598 1
## 6949   784599 1
## 6950   784600 1
## 6951   784601 1
## 6952   784602 1
## 6953   784603 1
## 6954   784604 1
## 6955   784605 1
## 6956   784606 1
## 6957   784607 1
## 6958   784608 1
## 6959   784609 1
## 6960   784610 1
## 6961   784611 1
## 6962   784612 1
## 6963   784613 1
## 6964   784614 1
## 6965   784615 1
## 6966   784616 1
## 6967   784617 1
## 6968   784618 1
## 6969   784619 1
## 6970   784620 1
## 6971   784621 1
## 6972   784622 1
## 6973   784623 1
## 6974   784624 1
## 6975   784625 1
## 6976   784626 1
## 6977   784627 1
## 6978   784628 1
## 6979   784629 1
## 6980   784630 1
## 6981   784631 1
## 6982   784632 1
## 6983   784633 1
## 6984   784634 1
## 6985   784635 1
## 6986   784636 1
## 6987   784637 1
## 6988   784638 1
## 6989   784639 1
## 6990   784640 1
## 6991   784641 1
## 6992   784642 1
## 6993   784643 1
## 6994   784644 1
## 6995   784645 1
## 6996   784646 1
## 6997   784647 1
## 6998   784648 1
## 6999   784649 1
## 7000   784650 1
## 7001   784651 1
## 7002   784652 1
## 7003   784653 1
## 7004   784654 1
## 7005   784655 1
## 7006   784656 1
## 7007   784657 1
## 7008   784658 1
## 7009   784659 1
## 7010   784660 1
## 7011   784661 1
## 7012   784662 1
## 7013   784663 1
## 7014   784664 1
## 7015   784665 1
## 7016   784666 1
## 7017   784667 1
## 7018   784668 1
## 7019   784669 1
## 7020   784670 1
## 7021   784671 1
## 7022   784672 1
## 7023   784673 1
## 7024   784674 1
## 7025   784675 1
## 7026   784676 1
## 7027   784677 1
## 7028   784678 1
## 7029   784679 1
## 7030   784680 1
## 7031   784681 1
## 7032   784682 1
## 7033   784683 1
## 7034   784684 1
## 7035   784685 1
## 7036   784686 1
## 7037   784687 1
## 7038   784688 1
## 7039   784689 1
## 7040   784690 1
## 7041   784691 1
## 7042   784692 1
## 7043   784693 1
## 7044   784694 1
## 7045   784695 1
## 7046   784696 1
## 7047   784697 1
## 7048   784698 1
## 7049   784699 1
## 7050   784700 1
## 7051   784701 1
## 7052   784702 1
## 7053   784703 1
## 7054   784704 1
## 7055   784705 1
## 7056   784706 1
## 7057   784707 1
## 7058   784708 1
## 7059   784709 1
## 7060   784710 1
## 7061   784711 1
## 7062   784712 1
## 7063   784713 1
## 7064   784714 1
## 7065   784715 1
## 7066   784716 1
## 7067   784717 1
## 7068   784718 1
## 7069   784719 1
## 7070   784720 1
## 7071   784721 1
## 7072   784722 1
## 7073   784723 1
## 7074   784724 1
## 7075   784725 1
## 7076   784726 1
## 7077   784727 1
## 7078   784728 1
## 7079   784729 1
## 7080   784730 1
## 7081   784731 1
## 7082   784732 1
## 7083   784733 1
## 7084   784734 1
## 7085   784735 1
## 7086   784736 1
## 7087   784737 1
## 7088   784738 1
## 7089   784739 1
## 7090   784740 1
## 7091   784741 1
## 7092   784742 1
## 7093   784743 1
## 7094   784744 1
## 7095   784745 1
## 7096   784746 1
## 7097   784748 1
## 7098   784749 1
## 7099   784750 1
## 7100   784751 1
## 7101   784752 1
## 7102   784753 1
## 7103   784754 1
## 7104   784755 1
## 7105   784756 1
## 7106   784757 1
## 7107   784758 1
## 7108   784759 1
## 7109   784760 1
## 7110   784761 1
## 7111   784762 1
## 7112   784763 1
## 7113   784764 1
## 7114   784765 1
## 7115   784766 1
## 7116   784767 1
## 7117   784768 1
## 7118   784769 1
## 7119   784770 1
## 7120   784771 1
## 7121   784772 1
## 7122   784773 1
## 7123   784774 1
## 7124   784775 1
## 7125   784776 1
## 7126   784777 1
## 7127   784778 1
## 7128   784779 1
## 7129   784780 1
## 7130   784781 1
## 7131   784782 1
## 7132   784783 1
## 7133   784784 1
## 7134   784785 1
## 7135   784786 1
## 7136   784787 1
## 7137   784788 1
## 7138   784789 1
## 7139   784790 1
## 7140   784791 1
## 7141   784792 1
## 7142   784793 1
## 7143   784794 1
## 7144   784795 1
## 7145   784796 1
## 7146   784797 1
## 7147   784798 1
## 7148   784799 1
## 7149   784800 1
## 7150   784801 1
## 7151   784802 1
## 7152   784803 1
## 7153   784804 1
## 7154   784805 1
## 7155   784806 1
## 7156   784807 1
## 7157   784808 1
## 7158   784809 1
## 7159   784810 1
## 7160   784811 1
## 7161   784812 1
## 7162   784813 1
## 7163   784814 1
## 7164   784815 1
## 7165   784816 1
## 7166   784817 1
## 7167   784818 1
## 7168   784819 1
## 7169   784820 1
## 7170   784821 1
## 7171   784822 1
## 7172   784823 1
## 7173   784824 1
## 7174   784825 1
## 7175   784826 1
## 7176   784827 1
## 7177   784828 1
## 7178   784829 1
## 7179   784830 1
## 7180   784831 1
## 7181   784832 1
## 7182   784833 1
## 7183   784834 1
## 7184   784835 1
## 7185   784836 1
## 7186   784837 1
## 7187   784838 1
## 7188   784839 1
## 7189   784840 1
## 7190   784841 1
## 7191   784842 1
## 7192   784843 1
## 7193   784844 1
## 7194   784845 1
## 7195   784846 1
## 7196   784847 1
## 7197   784848 1
## 7198   784849 1
## 7199   784850 1
## 7200   784851 1
## 7201   784852 1
## 7202   784853 1
## 7203   784854 1
## 7204   784855 1
## 7205   784856 1
## 7206   784857 1
## 7207   784858 1
## 7208   784859 1
## 7209   784860 1
## 7210   784861 1
## 7211   784862 1
## 7212   784863 1
## 7213   784864 1
## 7214   784865 1
## 7215   784866 1
## 7216   784867 1
## 7217   784868 1
## 7218   784869 1
## 7219   784870 1
## 7220   784871 1
## 7221   784872 1
## 7222   784873 1
## 7223   784874 1
## 7224   784875 1
## 7225   784876 1
## 7226   784877 1
## 7227   784878 1
## 7228   784879 1
## 7229   784880 1
## 7230   784881 1
## 7231   784882 1
## 7232   784883 1
## 7233   784884 1
## 7234   784885 1
## 7235   784886 1
## 7236   784887 1
## 7237   784888 1
## 7238   784889 1
## 7239   784890 1
## 7240   784891 1
## 7241   784892 1
## 7242   784893 1
## 7243   784894 1
## 7244   784895 1
## 7245   784896 1
## 7246   784897 1
## 7247   784898 1
## 7248   784899 1
## 7249   784900 1
## 7250   784901 1
## 7251   784902 1
## 7252   784903 1
## 7253   784904 1
## 7254   784905 1
## 7255   784906 1
## 7256   784907 1
## 7257   784908 1
## 7258   784909 1
## 7259   784910 1
## 7260   784911 1
## 7261   784912 1
## 7262   784913 1
## 7263   784914 1
## 7264   784915 1
## 7265   784916 1
## 7266   784917 1
## 7267   784918 1
## 7268   784919 1
## 7269   784920 1
## 7270   784921 1
## 7271   784922 1
## 7272   784923 1
## 7273   784924 1
## 7274   784925 1
## 7275   784926 1
## 7276   784927 1
## 7277   784928 1
## 7278   784929 1
## 7279   784930 1
## 7280   784931 1
## 7281   784932 1
## 7282   784933 1
## 7283   784934 1
## 7284   784935 1
## 7285   784936 1
## 7286   784937 1
## 7287   784938 1
## 7288   784939 1
## 7289   784940 1
## 7290   784941 1
## 7291   784942 1
## 7292   784943 1
## 7293   784944 1
## 7294   784945 1
## 7295   784946 1
## 7296   784947 1
## 7297   784948 1
## 7298   784949 1
## 7299   784950 1
## 7300   784951 1
## 7301   784952 1
## 7302   784953 1
## 7303   784954 1
## 7304   784955 1
## 7305   784956 1
## 7306   784957 1
## 7307   784958 1
## 7308   784959 1
## 7309   784960 1
## 7310   784961 1
## 7311   784962 1
## 7312   784963 1
## 7313   784964 1
## 7314   784965 1
## 7315   784966 1
## 7316   784967 1
## 7317   784968 1
## 7318   784969 1
## 7319   784970 1
## 7320   784971 1
## 7321   784972 1
## 7322   784973 1
## 7323   784974 1
## 7324   784975 1
## 7325   784976 1
## 7326   784977 1
## 7327   784978 1
## 7328   784979 1
## 7329   784980 1
## 7330   784981 1
## 7331   784982 1
## 7332   784983 1
## 7333   784984 1
## 7334   784985 1
## 7335   784986 1
## 7336   784987 1
## 7337   784988 1
## 7338   784989 1
## 7339   784990 1
## 7340   784991 1
## 7341   784992 1
## 7342   784993 1
## 7343   784994 1
## 7344   784995 1
## 7345   784996 1
## 7346   784997 1
## 7347   784998 1
## 7348   784999 1
## 7349   785000 1
## 7350   785001 1
## 7351   785002 1
## 7352   785003 1
## 7353   785004 1
## 7354   785005 1
## 7355   785006 1
## 7356   785007 1
## 7357   785008 1
## 7358   785009 1
## 7359   785010 1
## 7360   785011 1
## 7361   785012 1
## 7362   785013 1
## 7363   785014 1
## 7364   785015 1
## 7365   785016 1
## 7366   785017 1
## 7367   785018 1
## 7368   785019 1
## 7369   785020 1
## 7370   785021 1
## 7371   785023 1
## 7372   785024 1
## 7373   785025 1
## 7374   785026 1
## 7375   785027 1
## 7376   785028 1
## 7377   785029 1
## 7378   785030 1
## 7379   785031 1
## 7380   785032 1
## 7381   785033 1
## 7382   785034 1
## 7383   785035 1
## 7384   785036 1
## 7385   785037 1
## 7386   785038 1
## 7387   785039 1
## 7388   785040 1
## 7389   785041 1
## 7390   785042 1
## 7391   785043 1
## 7392   785044 1
## 7393   785045 1
## 7394   785046 1
## 7395   785047 1
## 7396   785048 1
## 7397   785049 1
## 7398   785050 1
## 7399   785051 1
## 7400   785052 1
## 7401   785053 1
## 7402   785054 1
## 7403   785055 1
## 7404   785056 1
## 7405   785057 1
## 7406   785058 1
## 7407   785059 1
## 7408   785060 1
## 7409   785061 1
## 7410   785062 1
## 7411   785063 1
## 7412   785064 1
## 7413   785065 1
## 7414   785066 1
## 7415   785067 1
## 7416   785068 1
## 7417   785069 1
## 7418   785070 1
## 7419   785071 1
## 7420   785072 1
## 7421   785073 1
## 7422   785074 1
## 7423   785075 1
## 7424   785076 1
## 7425   785077 1
## 7426   785078 1
## 7427   785079 1
## 7428   785080 1
## 7429   785081 1
## 7430   785082 1
## 7431   785083 1
## 7432   785084 1
## 7433   785085 1
## 7434   785086 1
## 7435   785087 1
## 7436   785088 1
## 7437   785089 1
## 7438   785090 1
## 7439   785091 1
## 7440   785092 1
## 7441   785093 1
## 7442   785094 1
## 7443   785095 1
## 7444   785096 1
## 7445   785097 1
## 7446   785098 1
## 7447   785099 1
## 7448   785100 1
## 7449   785101 1
## 7450   785102 1
## 7451   785103 1
## 7452   785104 1
## 7453   785105 1
## 7454   785106 1
## 7455   785107 1
## 7456   785108 1
## 7457   785109 1
## 7458   785110 1
## 7459   785111 1
## 7460   785112 1
## 7461   785113 1
## 7462   785114 1
## 7463   785115 1
## 7464   785116 1
## 7465   785117 1
## 7466   785118 1
## 7467   785119 1
## 7468   785120 1
## 7469   785121 1
## 7470   785122 1
## 7471   785123 1
## 7472   785124 1
## 7473   785125 1
## 7474   785126 1
## 7475   785127 1
## 7476   785128 1
## 7477   785129 1
## 7478   785130 1
## 7479   785131 1
## 7480   785132 1
## 7481   785133 1
## 7482   785134 1
## 7483   785135 1
## 7484   785136 1
## 7485   785137 1
## 7486   785138 1
## 7487   785139 1
## 7488   785140 1
## 7489   785141 1
## 7490   785142 1
## 7491   785143 1
## 7492   785144 1
## 7493   785145 1
## 7494   785146 1
## 7495   785147 1
## 7496   785148 1
## 7497   785149 1
## 7498   785150 1
## 7499   785151 1
## 7500   785152 1
## 7501   785153 1
## 7502   785154 1
## 7503   785155 1
## 7504   785156 1
## 7505   785157 1
## 7506   785158 1
## 7507   785159 1
## 7508   785160 1
## 7509   785161 1
## 7510   785162 1
## 7511   785163 1
## 7512   785164 1
## 7513   785165 1
## 7514   785166 1
## 7515   785167 1
## 7516   785168 1
## 7517   785169 1
## 7518   785170 1
## 7519   785171 1
## 7520   785172 1
## 7521   785173 1
## 7522   785174 1
## 7523   785175 1
## 7524   785176 1
## 7525   785177 1
## 7526   785178 1
## 7527   785179 1
## 7528   785180 1
## 7529   785181 1
## 7530   785182 1
## 7531   785183 1
## 7532   785184 1
## 7533   785185 1
## 7534   785186 1
## 7535   785187 1
## 7536   785188 1
## 7537   785189 1
## 7538   785190 1
## 7539   785191 1
## 7540   785192 1
## 7541   785193 1
## 7542   785194 1
## 7543   785195 1
## 7544   785196 1
## 7545   785197 1
## 7546   785198 1
## 7547   785199 1
## 7548   785200 1
## 7549   785201 1
## 7550   785202 1
## 7551   785203 1
## 7552   785204 1
## 7553   785205 1
## 7554   785206 1
## 7555   785207 1
## 7556   785208 1
## 7557   785209 1
## 7558   785210 1
## 7559   785211 1
## 7560   785212 1
## 7561   785213 1
## 7562   785214 1
## 7563   785215 1
## 7564   785216 1
## 7565   785217 1
## 7566   785218 1
## 7567   785219 1
## 7568   785220 1
## 7569   785221 1
## 7570   785222 1
## 7571   785223 1
## 7572   785224 1
## 7573   785225 1
## 7574   785226 1
## 7575   785227 1
## 7576   785228 1
## 7577   785229 1
## 7578   785230 1
## 7579   785231 1
## 7580   785232 1
## 7581   785233 1
## 7582   785234 1
## 7583   785235 1
## 7584   785236 1
## 7585   785237 1
## 7586   785238 1
## 7587   785239 1
## 7588   785240 1
## 7589   785241 1
## 7590   785242 1
## 7591   785243 1
## 7592   785244 1
## 7593   785245 1
## 7594   785246 1
## 7595   785247 1
## 7596   785248 1
## 7597   785249 1
## 7598   785250 1
## 7599   785251 1
## 7600   785252 1
## 7601   785253 1
## 7602   785254 1
## 7603   785255 1
## 7604   785256 1
## 7605   785257 1
## 7606   785258 1
## 7607   785259 1
## 7608   785260 1
## 7609   785261 1
## 7610   785262 1
## 7611   785263 1
## 7612   785264 1
## 7613   785265 1
## 7614   785266 1
## 7615   785267 1
## 7616   785268 1
## 7617   785269 1
## 7618   785270 1
## 7619   785271 1
## 7620   785272 1
## 7621   785273 1
## 7622   785274 1
## 7623   785275 1
## 7624   785276 1
## 7625   785277 1
## 7626   785278 1
## 7627   785279 1
## 7628   785280 1
## 7629   785281 1
## 7630   785282 1
## 7631   785283 1
## 7632   785284 1
## 7633   785285 1
## 7634   785286 1
## 7635   785287 1
## 7636   785288 1
## 7637   785289 1
## 7638   785290 1
## 7639   785291 1
## 7640   785292 1
## 7641   785293 1
## 7642   785294 1
## 7643   785295 1
## 7644   785296 1
## 7645   785297 1
## 7646   785298 1
## 7647   785299 1
## 7648   785300 1
## 7649   785301 1
## 7650   785302 1
## 7651   785303 1
## 7652   785304 1
## 7653   785305 1
## 7654   785306 1
## 7655   785307 1
## 7656   785308 1
## 7657   785309 1
## 7658   785310 1
## 7659   785311 1
## 7660   785312 1
## 7661   785313 1
## 7662   785314 1
## 7663   785315 1
## 7664   785316 1
## 7665   785317 1
## 7666   785318 1
## 7667   785319 1
## 7668   785320 1
## 7669   785321 1
## 7670   785322 1
## 7671   785323 1
## 7672   785324 1
## 7673   785325 1
## 7674   785326 1
## 7675   785327 1
## 7676   785328 1
## 7677   785329 1
## 7678   785330 1
## 7679   785331 1
## 7680   785332 1
## 7681   785333 1
## 7682   785334 1
## 7683   785335 1
## 7684   785336 1
## 7685   785337 1
## 7686   785338 1
## 7687   785339 1
## 7688   785340 1
## 7689   785341 1
## 7690   785342 1
## 7691   785343 1
## 7692   785344 1
## 7693   785345 1
## 7694   785346 1
## 7695   785347 1
## 7696   785348 1
## 7697   785349 1
## 7698   785350 1
## 7699   785351 1
## 7700   785352 1
## 7701   785353 1
## 7702   785354 1
## 7703   785355 1
## 7704   785356 1
## 7705   785357 1
## 7706   785358 1
## 7707   785359 1
## 7708   785360 1
## 7709   785361 1
## 7710   785362 1
## 7711   785363 1
## 7712   785364 1
## 7713   785365 1
## 7714   785366 1
## 7715   785367 1
## 7716   785368 1
## 7717   785369 1
## 7718   785370 1
## 7719   785371 1
## 7720   785372 1
## 7721   785373 1
## 7722   785374 1
## 7723   785375 1
## 7724   785376 1
## 7725   785377 1
## 7726   785378 1
## 7727   785379 1
## 7728   785380 1
## 7729   785381 1
## 7730   785382 1
## 7731   785383 1
## 7732   785384 1
## 7733   785385 1
## 7734   785386 1
## 7735   785387 1
## 7736   785388 1
## 7737   785389 1
## 7738   785390 1
## 7739   785391 1
## 7740   785392 1
## 7741   785393 1
## 7742   785394 1
## 7743   785395 1
## 7744   785396 1
## 7745   785397 1
## 7746   785398 1
## 7747   785399 1
## 7748   785400 1
## 7749   785401 1
## 7750   785402 1
## 7751   785403 1
## 7752   785404 1
## 7753   785405 1
## 7754   785406 1
## 7755   785407 1
## 7756   785408 1
## 7757   785409 1
## 7758   785410 1
## 7759   785411 1
## 7760   785412 1
## 7761   785413 1
## 7762   785414 1
## 7763   785415 1
## 7764   785416 1
## 7765   785417 1
## 7766   785418 1
## 7767   785419 1
## 7768   785420 1
## 7769   785421 1
## 7770   785422 1
## 7771   785423 1
## 7772   785424 1
## 7773   785425 1
## 7774   785426 1
## 7775   785427 1
## 7776   785428 1
## 7777   785429 1
## 7778   785430 1
## 7779   785431 1
## 7780   785432 1
## 7781   785433 1
## 7782   785434 1
## 7783   785435 1
## 7784   785436 1
## 7785   785437 1
## 7786   785438 1
## 7787   785439 1
## 7788   785440 1
## 7789   785441 1
## 7790   785442 1
## 7791   785443 1
## 7792   785444 1
## 7793   785445 1
## 7794   785446 1
## 7795   785447 1
## 7796   785448 1
## 7797   785449 1
## 7798   785450 1
## 7799   785451 1
## 7800   785452 1
## 7801   785453 1
## 7802   785454 1
## 7803   785455 1
## 7804   785456 1
## 7805   785457 1
## 7806   785458 1
## 7807   785459 1
## 7808   785460 1
## 7809   785461 1
## 7810   785462 1
## 7811   785463 1
## 7812   785464 1
## 7813   785465 1
## 7814   785466 1
## 7815   785467 1
## 7816   785468 1
## 7817   785469 1
## 7818   785470 1
## 7819   785471 1
## 7820   785472 1
## 7821   785473 1
## 7822   785474 1
## 7823   785475 1
## 7824   785476 1
## 7825   785477 1
## 7826   785478 1
## 7827   785479 1
## 7828   785480 1
## 7829   785481 1
## 7830   785482 1
## 7831   785483 1
## 7832   785484 1
## 7833   785485 1
## 7834   785486 1
## 7835   785487 1
## 7836   785488 1
## 7837   785489 1
## 7838   785490 1
## 7839   785491 1
## 7840   785492 1
## 7841   785493 1
## 7842   785494 1
## 7843   785495 1
## 7844   785496 1
## 7845   785497 1
## 7846   785498 1
## 7847   785499 1
## 7848   785500 1
## 7849   785501 1
## 7850   785502 1
## 7851   785503 1
## 7852   785504 1
## 7853   785505 1
## 7854   785506 1
## 7855   785507 1
## 7856   785508 1
## 7857   785509 1
## 7858   785510 1
## 7859   785511 1
## 7860   785512 1
## 7861   785513 1
## 7862   785514 1
## 7863   785515 1
## 7864   785516 1
## 7865   785517 1
## 7866   785518 1
## 7867   785519 1
## 7868   785520 1
## 7869   785521 1
## 7870   785522 1
## 7871   785523 1
## 7872   785524 1
## 7873   785525 1
## 7874   785526 1
## 7875   785527 1
## 7876   785528 1
## 7877   785529 1
## 7878   785530 1
## 7879   785531 1
## 7880   785532 1
## 7881   785533 1
## 7882   785534 1
## 7883   785535 1
## 7884   785536 1
## 7885   785537 1
## 7886   785538 1
## 7887   785539 1
## 7888   785540 1
## 7889   785541 1
## 7890   785542 1
## 7891   785543 1
## 7892   785544 1
## 7893   785545 1
## 7894   785546 1
## 7895   785547 1
## 7896   785548 1
## 7897   785549 1
## 7898   785550 1
## 7899   785551 1
## 7900   785552 1
## 7901   785553 1
## 7902   785554 1
## 7903   785555 1
## 7904   785556 1
## 7905   785557 1
## 7906   785558 1
## 7907   785559 1
## 7908   785560 1
## 7909   785561 1
## 7910   785562 1
## 7911   785563 1
## 7912   785564 1
## 7913   785565 1
## 7914   785566 1
## 7915   785567 1
## 7916   785568 1
## 7917   785569 1
## 7918   785570 1
## 7919   785571 1
## 7920   785572 1
## 7921   785573 1
## 7922   785574 1
## 7923   785575 1
## 7924   785576 1
## 7925   785577 1
## 7926   785578 1
## 7927   785579 1
## 7928   785580 1
## 7929   785581 1
## 7930   785582 1
## 7931   785583 1
## 7932   785584 1
## 7933   785585 1
## 7934   785586 1
## 7935   785587 1
## 7936   785588 1
## 7937   785589 1
## 7938   785590 1
## 7939   785591 1
## 7940   785592 1
## 7941   785593 1
## 7942   785594 1
## 7943   785595 1
## 7944   785596 1
## 7945   785597 1
## 7946   785598 1
## 7947   785599 1
## 7948   785600 1
## 7949   785601 1
## 7950   785602 1
## 7951   785603 1
## 7952   785604 1
## 7953   785605 1
## 7954   785606 1
## 7955   785607 1
## 7956   785608 1
## 7957   785609 1
## 7958   785610 1
## 7959   785611 1
## 7960   785612 1
## 7961   785613 1
## 7962   785614 1
## 7963   785615 1
## 7964   785616 1
## 7965   785617 1
## 7966   785618 1
## 7967   785619 1
## 7968   785620 1
## 7969   785621 1
## 7970   785622 1
## 7971   785623 1
## 7972   785624 1
## 7973   785625 1
## 7974   785626 1
## 7975   785627 1
## 7976   785628 1
## 7977   785629 1
## 7978   785630 1
## 7979   785631 1
## 7980   785632 1
## 7981   785633 1
## 7982   785634 1
## 7983   785635 1
## 7984   785636 1
## 7985   785637 1
## 7986   785638 1
## 7987   785639 1
## 7988   785640 1
## 7989   785641 1
## 7990   785642 1
## 7991   785643 1
## 7992   785644 1
## 7993   785645 1
## 7994   785646 1
## 7995   785647 1
## 7996   785648 1
## 7997   785649 1
## 7998   785650 1
## 7999   785651 1
## 8000   785652 1
## 8001   785653 1
## 8002   785654 1
## 8003   785655 1
## 8004   785656 1
## 8005   785657 1
## 8006   785658 1
## 8007   785659 1
## 8008   785660 1
## 8009   785661 1
## 8010   785662 1
## 8011   785663 1
## 8012   785664 1
## 8013   785665 1
## 8014   785666 1
## 8015   785667 1
## 8016   785668 1
## 8017   785669 1
## 8018   785670 1
## 8019   785671 1
## 8020   785672 1
## 8021   785673 1
## 8022   785674 1
## 8023   785675 1
## 8024   785676 1
## 8025   785677 1
## 8026   785678 1
## 8027   785679 1
## 8028   785680 1
## 8029   785681 1
## 8030   785682 1
## 8031   785683 1
## 8032   785684 1
## 8033   785685 1
## 8034   785686 1
## 8035   785687 1
## 8036   785688 1
## 8037   785689 1
## 8038   785690 1
## 8039   785691 1
## 8040   785692 1
## 8041   785693 1
## 8042   785694 1
## 8043   785695 1
## 8044   785696 1
## 8045   785697 1
## 8046   785698 1
## 8047   785699 1
## 8048   785700 1
## 8049   785701 1
## 8050   785702 1
## 8051   785703 1
## 8052   785704 1
## 8053   785705 1
## 8054   785706 1
## 8055   785707 1
## 8056   785708 1
## 8057   785709 1
## 8058   785710 1
## 8059   785711 1
## 8060   785712 1
## 8061   785713 1
## 8062   785714 1
## 8063   785715 1
## 8064   785716 1
## 8065   785717 1
## 8066   785718 1
## 8067   785719 1
## 8068   785720 1
## 8069   785721 1
## 8070   785722 1
## 8071   785723 1
## 8072   785724 1
## 8073   785726 1
## 8074   785728 1
## 8075   785729 1
## 8076   785730 1
## 8077   785731 1
## 8078   785732 1
## 8079   785733 1
## 8080   785734 1
## 8081   785735 1
## 8082   785736 1
## 8083   785737 1
## 8084   785738 1
## 8085   785739 1
## 8086   785740 1
## 8087   785741 1
## 8088   785742 1
## 8089   785743 1
## 8090   785744 1
## 8091   785745 1
## 8092   785746 1
## 8093   785747 1
## 8094   785748 1
## 8095   785749 1
## 8096   785750 1
## 8097   785751 1
## 8098   785752 1
## 8099   785753 1
## 8100   785754 1
## 8101   785755 1
## 8102   785756 1
## 8103   785757 1
## 8104   785758 1
## 8105   785759 1
## 8106   785760 1
## 8107   785761 1
## 8108   785762 1
## 8109   785763 1
## 8110   785764 1
## 8111   785765 1
## 8112   785766 1
## 8113   785767 1
## 8114   785768 1
## 8115   785769 1
## 8116   785770 1
## 8117   785771 1
## 8118   785772 1
## 8119   785773 1
## 8120   785774 1
## 8121   785775 1
## 8122   785776 1
## 8123   785777 1
## 8124   785779 1
## 8125   785780 1
## 8126   785781 1
## 8127   785782 1
## 8128   785783 1
## 8129   785784 1
## 8130   785785 1
## 8131   785786 1
## 8132   785787 1
## 8133   785788 1
## 8134   785789 1
## 8135   785790 1
## 8136   785791 1
## 8137   785792 1
## 8138   785793 1
## 8139   785794 1
## 8140   785795 1
## 8141   785796 1
## 8142   785797 1
## 8143   785798 1
## 8144   785799 1
## 8145   785800 1
## 8146   785801 1
## 8147   785802 1
## 8148   785803 1
## 8149   785804 1
## 8150   785805 1
## 8151   785806 1
## 8152   785807 1
## 8153   785808 1
## 8154   785809 1
## 8155   785810 1
## 8156   785811 1
## 8157   785812 1
## 8158   785813 1
## 8159   785814 1
## 8160   785815 1
## 8161   785816 1
## 8162   785817 1
## 8163   785818 1
## 8164   785819 1
## 8165   785820 1
## 8166   785821 1
## 8167   785822 1
## 8168   785823 1
## 8169   785824 1
## 8170   785825 1
## 8171   785826 1
## 8172   785827 1
## 8173   785828 1
## 8174   785829 1
## 8175   785830 1
## 8176   785831 1
## 8177   785832 1
## 8178   785833 1
## 8179   785834 1
## 8180   785835 1
## 8181   785836 1
## 8182   785837 1
## 8183   785838 1
## 8184   785839 1
## 8185   785840 1
## 8186   785841 1
## 8187   785842 1
## 8188   785843 1
## 8189   785844 1
## 8190   785845 1
## 8191   785846 1
## 8192   785847 1
## 8193   785848 1
## 8194   785849 1
## 8195   785850 1
## 8196   785851 1
## 8197   785852 1
## 8198   785853 1
## 8199   785854 1
## 8200   785855 1
## 8201   785856 1
## 8202   785857 1
## 8203   785858 1
## 8204   785859 1
## 8205   785860 1
## 8206   785861 1
## 8207   785862 1
## 8208   785863 1
## 8209   785864 1
## 8210   785865 1
## 8211   785866 1
## 8212   785867 1
## 8213   785868 1
## 8214   785869 1
## 8215   785870 1
## 8216   785871 1
## 8217   785872 1
## 8218   785873 1
## 8219   785874 1
## 8220   785875 1
## 8221   785876 1
## 8222   785877 1
## 8223   785878 1
## 8224   785879 1
## 8225   785880 1
## 8226   785881 1
## 8227   785882 1
## 8228   785883 1
## 8229   785884 1
## 8230   785885 1
## 8231   785886 1
## 8232   785887 1
## 8233   785888 1
## 8234   785889 1
## 8235   785890 1
## 8236   785891 1
## 8237   785892 1
## 8238   785893 1
## 8239   785894 1
## 8240   785895 1
## 8241   785896 1
## 8242   785897 1
## 8243   785898 1
## 8244   785899 1
## 8245   785900 1
## 8246   785901 1
## 8247   785902 1
## 8248   785903 1
## 8249   785904 1
## 8250   785905 1
## 8251   785906 1
## 8252   785907 1
## 8253   785908 1
## 8254   785909 1
## 8255   785910 1
## 8256   785911 1
## 8257   785912 1
## 8258   785913 1
## 8259   785914 1
## 8260   785915 1
## 8261   785916 1
## 8262   785917 1
## 8263   785918 1
## 8264   785919 1
## 8265   785920 1
## 8266   785921 1
## 8267   785922 1
## 8268   785923 1
## 8269   785924 1
## 8270   785925 1
## 8271   785926 1
## 8272   785927 1
## 8273   785928 1
## 8274   785929 1
## 8275   785930 1
## 8276   785931 1
## 8277   785932 1
## 8278   785933 1
## 8279   785934 1
## 8280   785935 1
## 8281   785936 1
## 8282   785937 1
## 8283   785938 1
## 8284   785939 1
## 8285   785940 1
## 8286   785941 1
## 8287   785942 1
## 8288   785943 1
## 8289   785944 1
## 8290   785945 1
## 8291   785946 1
## 8292   785947 1
## 8293   785948 1
## 8294   785949 1
## 8295   785950 1
## 8296   785951 1
## 8297   785952 1
## 8298   785953 1
## 8299   785954 1
## 8300   785955 1
## 8301   785956 1
## 8302   785957 1
## 8303   785958 1
## 8304   785960 1
## 8305   785961 1
## 8306   785962 1
## 8307   785964 1
## 8308   785965 1
## 8309   785966 1
## 8310   785967 1
## 8311   785968 1
## 8312   785969 1
## 8313   785970 1
## 8314   785971 1
## 8315   785972 1
## 8316   785973 1
## 8317   785974 1
## 8318   785975 1
## 8319   785976 1
## 8320   785977 1
## 8321   785978 1
## 8322   785979 1
## 8323   785980 1
## 8324   785981 1
## 8325   785982 1
## 8326   785983 1
## 8327   785984 1
## 8328   785985 1
## 8329   785986 1
## 8330   785987 1
## 8331   785988 1
## 8332   785989 1
## 8333   785990 1
## 8334   785991 1
## 8335   785992 1
## 8336   785993 1
## 8337   785994 1
## 8338   785995 1
## 8339   785996 1
## 8340   785997 1
## 8341   785998 1
## 8342   785999 1
## 8343   786000 1
## 8344   786001 1
## 8345   786002 1
## 8346   786003 1
## 8347   786004 1
## 8348   786005 1
## 8349   786006 1
## 8350   786007 1
## 8351   786008 1
## 8352   786009 1
## 8353   786010 1
## 8354   786011 1
## 8355   786012 1
## 8356   786013 1
## 8357   786014 1
## 8358   786015 1
## 8359   786016 1
## 8360   786017 1
## 8361   786018 1
## 8362   786019 1
## 8363   786020 1
## 8364   786021 1
## 8365   786022 1
## 8366   786023 1
## 8367   786024 1
## 8368   786025 1
## 8369   786026 1
## 8370   786027 1
## 8371   786028 1
## 8372   786029 1
## 8373   786030 1
## 8374   786031 1
## 8375   786032 1
## 8376   786033 1
## 8377   786034 1
## 8378   786035 1
## 8379   786036 1
## 8380   786037 1
## 8381   786038 1
## 8382   786039 1
## 8383   786040 1
## 8384   786041 1
## 8385   786042 1
## 8386   786043 1
## 8387   786044 1
## 8388   786045 1
## 8389   786046 1
## 8390   786047 1
## 8391   786048 1
## 8392   786049 1
## 8393   786050 1
## 8394   786051 1
## 8395   786052 1
## 8396   786053 1
## 8397   786054 1
## 8398   786055 1
## 8399   786056 1
## 8400   786057 1
## 8401   786058 1
## 8402   786059 1
## 8403   786060 1
## 8404   786061 1
## 8405   786062 1
## 8406   786063 1
## 8407   786064 1
## 8408   786065 1
## 8409   786066 1
## 8410   786067 1
## 8411   786068 1
## 8412   786069 1
## 8413   786070 1
## 8414   786071 1
## 8415   786072 1
## 8416   786073 1
## 8417   786074 1
## 8418   786075 1
## 8419   786076 1
## 8420   786077 1
## 8421   786078 1
## 8422   786079 1
## 8423   786080 1
## 8424   786081 1
## 8425   786082 1
## 8426   786083 1
## 8427   786084 1
## 8428   786085 1
## 8429   786086 1
## 8430   786087 1
## 8431   786088 1
## 8432   786089 1
## 8433   786090 1
## 8434   786091 1
## 8435   786092 1
## 8436   786093 1
## 8437   786094 1
## 8438   786095 1
## 8439   786096 1
## 8440   786097 1
## 8441   786098 1
## 8442   786099 1
## 8443   786100 1
## 8444   786101 1
## 8445   786102 1
## 8446   786103 1
## 8447   786104 1
## 8448   786105 1
## 8449   786106 1
## 8450   786107 1
## 8451   786108 1
## 8452   786109 1
## 8453   786110 1
## 8454   786111 1
## 8455   786112 1
## 8456   786113 1
## 8457   786114 1
## 8458   786115 1
## 8459   786116 1
## 8460   786117 1
## 8461   786118 1
## 8462   786119 1
## 8463   786120 1
## 8464   786121 1
## 8465   786122 1
## 8466   786123 1
## 8467   786124 1
## 8468   786125 1
## 8469   786126 1
## 8470   786127 1
## 8471   786128 1
## 8472   786129 1
## 8473   786130 1
## 8474   786131 1
## 8475   786132 1
## 8476   786133 1
## 8477   786134 1
## 8478   786135 1
## 8479   786136 1
## 8480   786137 1
## 8481   786138 1
## 8482   786139 1
## 8483   786140 1
## 8484   786141 1
## 8485   786142 1
## 8486   786143 1
## 8487   786144 1
## 8488   786145 1
## 8489   786146 1
## 8490   786147 1
## 8491   786148 1
## 8492   786149 1
## 8493   786150 1
## 8494   786151 1
## 8495   786152 1
## 8496   786153 1
## 8497   786154 1
## 8498   786155 1
## 8499   786156 1
## 8500   786157 1
## 8501   786158 1
## 8502   786159 1
## 8503   786160 1
## 8504   786161 1
## 8505   786162 1
## 8506   786163 1
## 8507   786164 1
## 8508   786165 1
## 8509   786166 1
## 8510   786167 1
## 8511   786168 1
## 8512   786169 1
## 8513   786170 1
## 8514   786171 1
## 8515   786172 1
## 8516   786173 1
## 8517   786174 1
## 8518   786175 1
## 8519   786176 1
## 8520   786177 1
## 8521   786178 1
## 8522   786179 1
## 8523   786180 1
## 8524   786181 1
## 8525   786182 1
## 8526   786183 1
## 8527   786184 1
## 8528   786185 1
## 8529   786186 1
## 8530   786187 1
## 8531   786188 1
## 8532   786189 1
## 8533   786190 1
## 8534   786191 1
## 8535   786192 1
## 8536   786193 1
## 8537   786194 1
## 8538   786195 1
## 8539   786196 1
## 8540   786197 1
## 8541   786198 1
## 8542   786199 1
## 8543   786200 1
## 8544   786201 1
## 8545   786202 1
## 8546   786203 1
## 8547   786204 1
## 8548   786205 1
## 8549   786206 1
## 8550   786207 1
## 8551   786208 1
## 8552   786209 1
## 8553   786210 1
## 8554   786211 1
## 8555   786212 1
## 8556   786213 1
## 8557   786214 1
## 8558   786215 1
## 8559   786216 1
## 8560   786217 1
## 8561   786218 1
## 8562   786219 1
## 8563   786220 1
## 8564   786221 1
## 8565   786222 1
## 8566   786223 1
## 8567   786224 1
## 8568   786225 1
## 8569   786226 1
## 8570   786227 1
## 8571   786228 1
## 8572   786229 1
## 8573   786230 1
## 8574   786231 1
## 8575   786232 1
## 8576   786233 1
## 8577   786234 1
## 8578   786235 1
## 8579   786236 1
## 8580   786237 1
## 8581   786238 1
## 8582   786239 1
## 8583   786240 1
## 8584   786241 1
## 8585   786242 1
## 8586   786243 1
## 8587   786244 1
## 8588   786245 1
## 8589   786246 1
## 8590   786247 1
## 8591   786248 1
## 8592   786249 1
## 8593   786250 1
## 8594   786251 1
## 8595   786252 1
## 8596   786253 1
## 8597   786254 1
## 8598   786255 1
## 8599   786256 1
## 8600   786257 1
## 8601   786258 1
## 8602   786259 1
## 8603   786260 1
## 8604   786261 1
## 8605   786262 1
## 8606   786263 1
## 8607   786264 1
## 8608   786265 1
## 8609   786266 1
## 8610   786267 1
## 8611   786268 1
## 8612   786269 1
## 8613   786270 1
## 8614   786271 1
## 8615   786272 1
## 8616   786273 1
## 8617   786274 1
## 8618   786275 1
## 8619   786276 1
## 8620   786277 1
## 8621   786278 1
## 8622   786279 1
## 8623   786280 1
## 8624   786281 1
## 8625   786282 1
## 8626   786283 1
## 8627   786284 1
## 8628   786285 1
## 8629   786286 1
## 8630   786287 1
## 8631   786288 1
## 8632   786289 1
## 8633   786290 1
## 8634   786291 1
## 8635   786292 1
## 8636   786293 1
## 8637   786294 1
## 8638   786295 1
## 8639   786296 1
## 8640   786297 1
## 8641   786298 1
## 8642   786299 1
## 8643   786300 1
## 8644   786301 1
## 8645   786302 1
## 8646   786303 1
## 8647   786304 1
## 8648   786305 1
## 8649   786306 1
## 8650   786307 1
## 8651   786308 1
## 8652   786309 1
## 8653   786310 1
## 8654   786311 1
## 8655   786312 1
## 8656   786313 1
## 8657   786314 1
## 8658   786315 1
## 8659   786316 1
## 8660   786317 1
## 8661   786318 1
## 8662   786319 1
## 8663   786320 1
## 8664   786321 1
## 8665   786322 1
## 8666   786323 1
## 8667   786324 1
## 8668   786325 1
## 8669   786326 1
## 8670   786327 1
## 8671   786328 1
## 8672   786329 1
## 8673   786330 1
## 8674   786331 1
## 8675   786332 1
## 8676   786333 1
## 8677   786334 1
## 8678   786335 1
## 8679   786336 1
## 8680   786337 1
## 8681   786338 1
## 8682   786339 1
## 8683   786340 1
## 8684   786341 1
## 8685   786342 1
## 8686   786343 1
## 8687   786344 1
## 8688   786345 1
## 8689   786346 1
## 8690   786347 1
## 8691   786348 1
## 8692   786349 1
## 8693   786350 1
## 8694   786351 1
## 8695   786352 1
## 8696   786353 1
## 8697   786354 1
## 8698   786355 1
## 8699   786356 1
## 8700   786357 1
## 8701   786358 1
## 8702   786359 1
## 8703   786360 1
## 8704   786361 1
## 8705   786362 1
## 8706   786363 1
## 8707   786364 1
## 8708   786365 1
## 8709   786366 1
## 8710   786367 1
## 8711   786368 1
## 8712   786369 1
## 8713   786370 1
## 8714   786371 1
## 8715   786372 1
## 8716   786373 1
## 8717   786374 1
## 8718   786375 1
## 8719   786376 1
## 8720   786377 1
## 8721   786378 1
## 8722   786379 1
## 8723   786380 1
## 8724   786381 1
## 8725   786382 1
## 8726   786383 1
## 8727   786384 1
## 8728   786385 1
## 8729   786386 1
## 8730   786387 1
## 8731   786388 1
## 8732   786389 1
## 8733   786390 1
## 8734   786391 1
## 8735   786392 1
## 8736   786393 1
## 8737   786394 1
## 8738   786395 1
## 8739   786396 1
## 8740   786397 1
## 8741   786398 1
## 8742   786399 1
## 8743   786400 1
## 8744   786401 1
## 8745   786402 1
## 8746   786403 1
## 8747   786404 1
## 8748   786405 1
## 8749   786406 1
## 8750   786407 1
## 8751   786408 1
## 8752   786409 1
## 8753   786410 1
## 8754   786411 1
## 8755   786412 1
## 8756   786413 1
## 8757   786414 1
## 8758   786415 1
## 8759   786416 1
## 8760   786417 1
## 8761   786418 1
## 8762   786419 1
## 8763   786420 1
## 8764   786421 1
## 8765   786422 1
## 8766   786423 1
## 8767   786424 1
## 8768   786425 1
## 8769   786426 1
## 8770   786427 1
## 8771   786428 1
## 8772   786429 1
## 8773   786430 1
## 8774   786431 1
## 8775   786432 1
## 8776   786433 1
## 8777   786434 1
## 8778   786435 1
## 8779   786436 1
## 8780   786437 1
## 8781   786438 1
## 8782   786439 1
## 8783   786440 1
## 8784   786441 1
## 8785   786442 1
## 8786   786443 1
## 8787   786444 1
## 8788   786445 1
## 8789   786446 1
## 8790   786447 1
## 8791   786448 1
## 8792   786449 1
## 8793   786450 1
## 8794   786451 1
## 8795   786452 1
## 8796   786453 1
## 8797   786454 1
## 8798   786455 1
## 8799   786456 1
## 8800   786457 1
## 8801   786458 1
## 8802   786459 1
## 8803   786460 1
## 8804   786461 1
## 8805   786462 1
## 8806   786463 1
## 8807   786464 1
## 8808   786465 1
## 8809   786466 1
## 8810   786467 1
## 8811   786468 1
## 8812   786469 1
## 8813   786470 1
## 8814   786471 1
## 8815   786472 1
## 8816   786473 1
## 8817   786474 1
## 8818   786475 1
## 8819   786476 1
## 8820   786477 1
## 8821   786478 1
## 8822   786479 1
## 8823   786480 1
## 8824   786481 1
## 8825   786482 1
## 8826   786483 1
## 8827   786484 1
## 8828   786485 1
## 8829   786486 1
## 8830   786487 1
## 8831   786488 1
## 8832   786489 1
## 8833   786490 1
## 8834   786491 1
## 8835   786492 1
## 8836   786493 1
## 8837   786494 1
## 8838   786495 1
## 8839   786496 1
## 8840   786497 1
## 8841   786498 1
## 8842   786499 1
## 8843   786500 1
## 8844   786501 1
## 8845   786502 1
## 8846   786503 1
## 8847   786504 1
## 8848   786505 1
## 8849   786506 1
## 8850   786507 1
## 8851   786508 1
## 8852   786509 1
## 8853   786510 1
## 8854   786511 1
## 8855   786512 1
## 8856   786513 1
## 8857   786514 1
## 8858   786515 1
## 8859   786516 1
## 8860   786517 1
## 8861   786518 1
## 8862   786519 1
## 8863   786520 1
## 8864   786521 1
## 8865   786522 1
## 8866   786523 1
## 8867   786524 1
## 8868   786525 1
## 8869   786526 1
## 8870   786527 1
## 8871   786528 1
## 8872   786529 1
## 8873   786530 1
## 8874   786531 1
## 8875   786532 1
## 8876   786533 1
## 8877   786534 1
## 8878   786535 1
## 8879   786536 1
## 8880   786537 1
## 8881   786538 1
## 8882   786539 1
## 8883   786540 1
## 8884   786541 1
## 8885   786542 1
## 8886   786543 1
## 8887   786544 1
## 8888   786545 1
## 8889   786546 1
## 8890   786547 1
## 8891   786548 1
## 8892   786549 1
## 8893   786550 1
## 8894   786551 1
## 8895   786552 1
## 8896   786553 1
## 8897   786554 1
## 8898   786555 1
## 8899   786556 1
## 8900   786557 1
## 8901   786558 1
## 8902   786559 1
## 8903   786560 1
## 8904   786561 1
## 8905   786562 1
## 8906   786563 1
## 8907   786564 1
## 8908   786565 1
## 8909   786566 1
## 8910   786567 1
## 8911   786568 1
## 8912   786569 1
## 8913   786570 1
## 8914   786571 1
## 8915   786572 1
## 8916   786573 1
## 8917   786574 1
## 8918   786575 1
## 8919   786576 1
## 8920   786577 1
## 8921   786578 1
## 8922   786579 1
## 8923   786580 1
## 8924   786581 1
## 8925   786582 1
## 8926   786583 1
## 8927   786584 1
## 8928   786585 1
## 8929   786586 1
## 8930   786587 1
## 8931   786588 1
## 8932   786589 1
## 8933   786590 1
## 8934   786591 1
## 8935   786592 1
## 8936   786593 1
## 8937   786594 1
## 8938   786595 1
## 8939   786596 1
## 8940   786597 1
## 8941   786598 1
## 8942   786599 1
## 8943   786600 1
## 8944   786601 1
## 8945   786602 1
## 8946   786603 1
## 8947   786604 1
## 8948   786605 1
## 8949   786606 1
## 8950   786607 1
## 8951   786608 1
## 8952   786609 1
## 8953   786610 1
## 8954   786611 1
## 8955   786612 1
## 8956   786613 1
## 8957   786614 1
## 8958   786615 1
## 8959   786616 1
## 8960   786617 1
## 8961   786618 1
## 8962   786619 1
## 8963   786620 1
## 8964   786621 1
## 8965   786622 1
## 8966   786623 1
## 8967   786624 1
## 8968   786625 1
## 8969   786626 1
## 8970   786627 1
## 8971   786628 1
## 8972   786629 1
## 8973   786630 1
## 8974   786631 1
## 8975   786632 1
## 8976   786633 1
## 8977   786634 1
## 8978   786635 1
## 8979   786636 1
## 8980   786637 1
## 8981   786638 1
## 8982   786639 1
## 8983   786640 1
## 8984   786641 1
## 8985   786642 1
## 8986   786643 1
## 8987   786644 1
## 8988   786645 1
## 8989   786646 1
## 8990   786647 1
## 8991   786648 1
## 8992   786649 1
## 8993   786650 1
## 8994   786651 1
## 8995   786652 1
## 8996   786653 1
## 8997   786654 1
## 8998   786655 1
## 8999   786656 1
## 9000   786657 1
## 9001   786658 1
## 9002   786659 1
## 9003   786660 1
## 9004   786661 1
## 9005   786662 1
## 9006   786663 1
## 9007   786664 1
## 9008   786665 1
## 9009   786666 1
## 9010   786667 1
## 9011   786668 1
## 9012   786669 1
## 9013   786670 1
## 9014   786671 1
## 9015   786672 1
## 9016   786673 1
## 9017   786674 1
## 9018   786675 1
## 9019   786676 1
## 9020   786677 1
## 9021   786678 1
## 9022   786679 1
## 9023   786680 1
## 9024   786681 1
## 9025   786682 1
## 9026   786683 1
## 9027   786684 1
## 9028   786685 1
## 9029   786686 1
## 9030   786687 1
## 9031   786688 1
## 9032   786689 1
## 9033   786690 1
## 9034   786691 1
## 9035   786692 1
## 9036   786693 1
## 9037   786694 1
## 9038   786695 1
## 9039   786696 1
## 9040   786697 1
## 9041   786698 1
## 9042   786699 1
## 9043   786700 1
## 9044   786701 1
## 9045   786702 1
## 9046   786703 1
## 9047   786704 1
## 9048   786705 1
## 9049   786706 1
## 9050   786707 1
## 9051   786708 1
## 9052   786709 1
## 9053   786710 1
## 9054   786711 1
## 9055   786712 1
## 9056   786713 1
## 9057   786714 1
## 9058   786715 1
## 9059   786716 1
## 9060   786717 1
## 9061   786718 1
## 9062   786719 1
## 9063   786720 1
## 9064   786721 1
## 9065   786722 1
## 9066   786723 1
## 9067   786724 1
## 9068   786725 1
## 9069   786726 1
## 9070   786727 1
## 9071   786728 1
## 9072   786729 1
## 9073   786730 1
## 9074   786731 1
## 9075   786732 1
## 9076   786733 1
## 9077   786734 1
## 9078   786735 1
## 9079   786736 1
## 9080   786737 1
## 9081   786738 1
## 9082   786739 1
## 9083   786740 1
## 9084   786741 1
## 9085   786742 1
## 9086   786743 1
## 9087   786744 1
## 9088   786745 1
## 9089   786746 1
## 9090   786747 1
## 9091   786748 1
## 9092   786749 1
## 9093   786750 1
## 9094   786751 1
## 9095   786752 1
## 9096   786753 1
## 9097   786754 1
## 9098   786755 1
## 9099   786756 1
## 9100   786757 1
## 9101   786758 1
## 9102   786759 1
## 9103   786760 1
## 9104   786761 1
## 9105   786762 1
## 9106   786763 1
## 9107   786764 1
## 9108   786765 1
## 9109   786766 1
## 9110   786767 1
## 9111   786768 1
## 9112   786769 1
## 9113   786770 1
## 9114   786771 1
## 9115   786772 1
## 9116   786773 1
## 9117   786774 1
## 9118   786775 1
## 9119   786776 1
## 9120   786777 1
## 9121   786778 1
## 9122   786779 1
## 9123   786780 1
## 9124   786781 1
## 9125   786782 1
## 9126   786783 1
## 9127   786784 1
## 9128   786785 1
## 9129   786786 1
## 9130   786787 1
## 9131   786788 1
## 9132   786789 1
## 9133   786790 1
## 9134   786791 1
## 9135   786792 1
## 9136   786793 1
## 9137   786794 1
## 9138   786795 1
## 9139   786796 1
## 9140   786797 1
## 9141   786798 1
## 9142   786799 1
## 9143   786800 1
## 9144   786801 1
## 9145   786802 1
## 9146   786803 1
## 9147   786804 1
## 9148   786805 1
## 9149   786806 1
## 9150   786807 1
## 9151   786808 1
## 9152   786809 1
## 9153   786810 1
## 9154   786811 1
## 9155   786812 1
## 9156   786813 1
## 9157   786814 1
## 9158   786815 1
## 9159   786816 1
## 9160   786817 1
## 9161   786818 1
## 9162   786819 1
## 9163   786820 1
## 9164   786821 1
## 9165   786822 1
## 9166   786823 1
## 9167   786824 1
## 9168   786825 1
## 9169   786826 1
## 9170   786827 1
## 9171   786828 1
## 9172   786829 1
## 9173   786830 1
## 9174   786831 1
## 9175   786832 1
## 9176   786833 1
## 9177   786834 1
## 9178   786835 1
## 9179   786836 1
## 9180   786837 1
## 9181   786838 1
## 9182   786839 1
## 9183   786840 1
## 9184   786841 1
## 9185   786842 1
## 9186   786843 1
## 9187   786844 1
## 9188   786845 1
## 9189   786846 1
## 9190   786847 1
## 9191   786848 1
## 9192   786849 1
## 9193   786850 1
## 9194   786851 1
## 9195   786852 1
## 9196   786853 1
## 9197   786854 1
## 9198   786855 1
## 9199   786856 1
## 9200   786857 1
## 9201   786858 1
## 9202   786859 1
## 9203   786861 1
## 9204   786862 1
## 9205   786863 1
## 9206   786864 1
## 9207   786865 1
## 9208   786866 1
## 9209   786867 1
## 9210   786868 1
## 9211   786869 1
## 9212   786870 1
## 9213   786871 1
## 9214   786872 1
## 9215   786873 1
## 9216   786874 1
## 9217   786875 1
## 9218   786876 1
## 9219   786877 1
## 9220   786878 1
## 9221   786879 1
## 9222   786880 1
## 9223   786881 1
## 9224   786882 1
## 9225   786883 1
## 9226   786884 1
## 9227   786885 1
## 9228   786886 1
## 9229   786887 1
## 9230   786888 1
## 9231   786889 1
## 9232   786890 1
## 9233   786891 1
## 9234   786892 1
## 9235   786893 1
## 9236   786894 1
## 9237   786895 1
## 9238   786896 1
## 9239   786897 1
## 9240   786898 1
## 9241   786899 1
## 9242   786900 1
## 9243   786901 1
## 9244   786902 1
## 9245   786903 1
## 9246   786904 1
## 9247   786905 1
## 9248   786906 1
## 9249   786907 1
## 9250   786908 1
## 9251   786909 1
## 9252   786910 1
## 9253   786911 1
## 9254   786912 1
## 9255   786913 1
## 9256   786914 1
## 9257   786915 1
## 9258   786916 1
## 9259   786917 1
## 9260   786918 1
## 9261   786920 1
## 9262   786921 1
## 9263   786922 1
## 9264   786923 1
## 9265   786924 1
## 9266   786925 1
## 9267   786926 1
## 9268   786927 1
## 9269   786928 1
## 9270   786929 1
## 9271   786930 1
## 9272   786931 1
## 9273   786932 1
## 9274   786933 1
## 9275   786934 1
## 9276   786935 1
## 9277   786936 1
## 9278   786937 1
## 9279   786938 1
## 9280   786939 1
## 9281   786940 1
## 9282   786941 1
## 9283   786942 1
## 9284   786943 1
## 9285   786944 1
## 9286   786945 1
## 9287   786946 1
## 9288   786947 1
## 9289   786948 1
## 9290   786949 1
## 9291   786950 1
## 9292   786951 1
## 9293   786952 1
## 9294   786953 1
## 9295   786954 1
## 9296   786955 1
## 9297   786956 1
## 9298   786957 1
## 9299   786958 1
## 9300   786959 1
## 9301   786960 1
## 9302   786961 1
## 9303   786962 1
## 9304   786963 1
## 9305   786964 1
## 9306   786965 1
## 9307   786966 1
## 9308   786967 1
## 9309   786968 1
## 9310   786969 1
## 9311   786970 1
## 9312   786971 1
## 9313   786972 1
## 9314   786973 1
## 9315   786974 1
## 9316   786975 1
## 9317   786976 1
## 9318   786977 1
## 9319   786978 1
## 9320   786979 1
## 9321   786980 1
## 9322   786981 1
## 9323   786982 1
## 9324   786983 1
## 9325   786984 1
## 9326   786985 1
## 9327   786986 1
## 9328   786987 1
## 9329   786988 1
## 9330   786989 1
## 9331   786990 1
## 9332   786991 1
## 9333   786992 1
## 9334   786993 1
## 9335   786994 1
## 9336   786995 1
## 9337   786996 1
## 9338   786997 1
## 9339   786998 1
## 9340   786999 1
## 9341   787000 1
## 9342   787001 1
## 9343   787002 1
## 9344   787003 1
## 9345   787004 1
## 9346   787005 1
## 9347   787006 1
## 9348   787007 1
## 9349   787008 1
## 9350   787009 1
## 9351   787010 1
## 9352   787011 1
## 9353   787012 1
## 9354   787013 1
## 9355   787014 1
## 9356   787015 1
## 9357   787016 1
## 9358   787017 1
## 9359   787018 1
## 9360   787019 1
## 9361   787020 1
## 9362   787021 1
## 9363   787022 1
## 9364   787023 1
## 9365   787025 1
## 9366   787026 1
## 9367   787027 1
## 9368   787028 1
## 9369   787029 1
## 9370   787030 1
## 9371   787031 1
## 9372   787032 1
## 9373   787033 1
## 9374   787034 1
## 9375   787035 1
## 9376   787036 1
## 9377   787037 1
## 9378   787038 1
## 9379   787039 1
## 9380   787040 1
## 9381   787041 1
## 9382   787042 1
## 9383   787043 1
## 9384   787044 1
## 9385   787045 1
## 9386   787046 1
## 9387   787047 1
## 9388   787048 1
## 9389   787049 1
## 9390   787050 1
## 9391   787051 1
## 9392   787052 1
## 9393   787053 1
## 9394   787054 1
## 9395   787055 1
## 9396   787056 1
## 9397   787057 1
## 9398   787058 1
## 9399   787059 1
## 9400   787060 1
## 9401   787061 1
## 9402   787062 1
## 9403   787063 1
## 9404   787064 1
## 9405   787065 1
## 9406   787066 1
## 9407   787067 1
## 9408   787068 1
## 9409   787069 1
## 9410   787070 1
## 9411   787071 1
## 9412   787072 1
## 9413   787073 1
## 9414   787074 1
## 9415   787075 1
## 9416   787076 1
## 9417   787077 1
## 9418   787078 1
## 9419   787079 1
## 9420   787080 1
## 9421   787081 1
## 9422   787082 1
## 9423   787083 1
## 9424   787084 1
## 9425   787085 1
## 9426   787086 1
## 9427   787087 1
## 9428   787088 1
## 9429   787089 1
## 9430   787090 1
## 9431   787091 1
## 9432   787092 1
## 9433   787093 1
## 9434   787094 1
## 9435   787095 1
## 9436   787096 1
## 9437   787097 1
## 9438   787098 1
## 9439   787099 1
## 9440   787100 1
## 9441   787101 1
## 9442   787102 1
## 9443   787103 1
## 9444   787104 1
## 9445   787105 1
## 9446   787106 1
## 9447   787107 1
## 9448   787108 1
## 9449   787109 1
## 9450   787110 1
## 9451   787111 1
## 9452   787112 1
## 9453   787113 1
## 9454   787114 1
## 9455   787115 1
## 9456   787116 1
## 9457   787117 1
## 9458   787118 1
## 9459   787119 1
## 9460   787120 1
## 9461   787121 1
## 9462   787122 1
## 9463   787123 1
## 9464   787124 1
## 9465   787125 1
## 9466   787126 1
## 9467   787127 1
## 9468   787128 1
## 9469   787129 1
## 9470   787130 1
## 9471   787131 1
## 9472   787132 1
## 9473   787133 1
## 9474   787134 1
## 9475   787135 1
## 9476   787136 1
## 9477   787137 1
## 9478   787138 1
## 9479   787139 1
## 9480   787140 1
## 9481   787141 1
## 9482   787142 1
## 9483   787143 1
## 9484   787144 1
## 9485   787145 1
## 9486   787146 1
## 9487   787147 1
## 9488   787148 1
## 9489   787149 1
## 9490   787150 1
## 9491   787151 1
## 9492   787152 1
## 9493   787153 1
## 9494   787154 1
## 9495   787155 1
## 9496   787156 1
## 9497   787157 1
## 9498   787158 1
## 9499   787159 1
## 9500   787160 1
## 9501   787161 1
## 9502   787162 1
## 9503   787163 1
## 9504   787164 1
## 9505   787165 1
## 9506   787166 1
## 9507   787167 1
## 9508   787168 1
## 9509   787169 1
## 9510   787170 1
## 9511   787171 1
## 9512   787172 1
## 9513   787173 1
## 9514   787174 1
## 9515   787175 1
## 9516   787176 1
## 9517   787177 1
## 9518   787178 1
## 9519   787179 1
## 9520   787180 1
## 9521   787181 1
## 9522   787182 1
## 9523   787183 1
## 9524   787184 1
## 9525   787185 1
## 9526   787186 1
## 9527   787187 1
## 9528   787188 1
## 9529   787189 1
## 9530   787190 1
## 9531   787191 1
## 9532   787192 1
## 9533   787193 1
## 9534   787194 1
## 9535   787195 1
## 9536   787196 1
## 9537   787197 1
## 9538   787198 1
## 9539   787199 1
## 9540   787200 1
## 9541   787201 1
## 9542   787202 1
## 9543   787203 1
## 9544   787204 1
## 9545   787205 1
## 9546   787206 1
## 9547   787207 1
## 9548   787208 1
## 9549   787209 1
## 9550   787210 1
## 9551   787211 1
## 9552   787212 1
## 9553   787213 1
## 9554   787214 1
## 9555   787215 1
## 9556   787216 1
## 9557   787217 1
## 9558   787218 1
## 9559   787219 1
## 9560   787220 1
## 9561   787221 1
## 9562   787222 1
## 9563   787223 1
## 9564   787224 1
## 9565   787225 1
## 9566   787226 1
## 9567   787227 1
## 9568   787228 1
## 9569   787229 1
## 9570   787230 1
## 9571   787231 1
## 9572   787232 1
## 9573   787233 1
## 9574   787234 1
## 9575   787236 1
## 9576   787237 1
## 9577   787238 1
## 9578   787239 1
## 9579   787240 1
## 9580   787241 1
## 9581   787242 1
## 9582   787243 1
## 9583   787244 1
## 9584   787245 1
## 9585   787246 1
## 9586   787247 1
## 9587   787248 1
## 9588   787249 1
## 9589   787250 1
## 9590   787251 1
## 9591   787252 1
## 9592   787253 1
## 9593   787254 1
## 9594   787255 1
## 9595   787256 1
## 9596   787257 1
## 9597   787258 1
## 9598   787259 1
## 9599   787260 1
## 9600   787261 1
## 9601   787262 1
## 9602   787263 1
## 9603   787264 1
## 9604   787265 1
## 9605   787267 1
## 9606   787268 1
## 9607   787269 1
## 9608   787270 1
## 9609   787271 1
## 9610   787272 1
## 9611   787273 1
## 9612   787274 1
## 9613   787275 1
## 9614   787276 1
## 9615   787277 1
## 9616   787278 1
## 9617   787279 1
## 9618   787280 1
## 9619   787281 1
## 9620   787282 1
## 9621   787283 1
## 9622   787284 1
## 9623   787285 1
## 9624   787286 1
## 9625   787287 1
## 9626   787288 1
## 9627   787289 1
## 9628   787290 1
## 9629   787291 1
## 9630   787292 1
## 9631   787293 1
## 9632   787294 1
## 9633   787295 1
## 9634   787296 1
## 9635   787297 1
## 9636   787298 1
## 9637   787299 1
## 9638   787300 1
## 9639   787301 1
## 9640   787302 1
## 9641   787303 1
## 9642   787304 1
## 9643   787305 1
## 9644   787306 1
## 9645   787307 1
## 9646   787308 1
## 9647   787309 1
## 9648   787310 1
## 9649   787311 1
## 9650   787312 1
## 9651   787313 1
## 9652   787314 1
## 9653   787315 1
## 9654   787316 1
## 9655   787317 1
## 9656   787318 1
## 9657   787319 1
## 9658   787320 1
## 9659   787321 1
## 9660   787322 1
## 9661   787323 1
## 9662   787324 1
## 9663   787325 1
## 9664   787326 1
## 9665   787327 1
## 9666   787328 1
## 9667   787329 1
## 9668   787330 1
## 9669   787331 1
## 9670   787332 1
## 9671   787333 1
## 9672   787334 1
## 9673   787335 1
## 9674   787336 1
## 9675   787337 1
## 9676   787338 1
## 9677   787339 1
## 9678   787340 1
## 9679   787341 1
## 9680   787342 1
## 9681   787343 1
## 9682   787344 1
## 9683   787345 1
## 9684   787346 1
## 9685   787347 1
## 9686   787348 1
## 9687   787349 1
## 9688   787350 1
## 9689   787351 1
## 9690   787352 1
## 9691   787353 1
## 9692   787354 1
## 9693   787355 1
## 9694   787356 1
## 9695   787357 1
## 9696   787358 1
## 9697   787359 1
## 9698   787360 1
## 9699   787361 1
## 9700   787362 1
## 9701   787363 1
## 9702   787364 1
## 9703   787365 1
## 9704   787366 1
## 9705   787367 1
## 9706   787368 1
## 9707   787369 1
## 9708   787370 1
## 9709   787371 1
## 9710   787372 1
## 9711   787373 1
## 9712   787374 1
## 9713   787375 1
## 9714   787376 1
## 9715   787377 1
## 9716   787378 1
## 9717   787379 1
## 9718   787380 1
## 9719   787381 1
## 9720   787382 1
## 9721   787383 1
## 9722   787384 1
## 9723   787385 1
## 9724   787386 1
## 9725   787387 1
## 9726   787388 1
## 9727   787389 1
## 9728   787390 1
## 9729   787391 1
## 9730   787392 1
## 9731   787393 1
## 9732   787394 1
## 9733   787395 1
## 9734   787396 1
## 9735   787397 1
## 9736   787398 1
## 9737   787399 1
## 9738   787400 1
## 9739   787401 1
## 9740   787402 1
## 9741   787403 1
## 9742   787404 1
## 9743   787405 1
## 9744   787406 1
## 9745   787407 1
## 9746   787408 1
## 9747   787409 1
## 9748   787410 1
## 9749   787411 1
## 9750   787412 1
## 9751   787413 1
## 9752   787414 1
## 9753   787415 1
## 9754   787416 1
## 9755   787417 1
## 9756   787418 1
## 9757   787419 1
## 9758   787420 1
## 9759   787421 1
## 9760   787422 1
## 9761   787423 1
## 9762   787424 1
## 9763   787425 1
## 9764   787426 1
## 9765   787427 1
## 9766   787428 1
## 9767   787429 1
## 9768   787430 1
## 9769   787431 1
## 9770   787432 1
## 9771   787433 1
## 9772   787434 1
## 9773   787435 1
## 9774   787436 1
## 9775   787437 1
## 9776   787438 1
## 9777   787439 1
## 9778   787440 1
## 9779   787441 1
## 9780   787442 1
## 9781   787443 1
## 9782   787444 1
## 9783   787445 1
## 9784   787446 1
## 9785   787447 1
## 9786   787448 1
## 9787   787449 1
## 9788   787450 1
## 9789   787451 1
## 9790   787452 1
## 9791   787453 1
## 9792   787454 1
## 9793   787455 1
## 9794   787456 1
## 9795   787457 1
## 9796   787458 1
## 9797   787459 1
## 9798   787460 1
## 9799   787461 1
## 9800   787462 1
## 9801   787463 1
## 9802   787464 1
## 9803   787465 1
## 9804   787466 1
## 9805   787467 1
## 9806   787468 1
## 9807   787469 1
## 9808   787470 1
## 9809   787471 1
## 9810   787472 1
## 9811   787473 1
## 9812   787474 1
## 9813   787475 1
## 9814   787476 1
## 9815   787477 1
## 9816   787478 1
## 9817   787479 1
## 9818   787480 1
## 9819   787481 1
## 9820   787482 1
## 9821   787483 1
## 9822   787484 1
## 9823   787485 1
## 9824   787486 1
## 9825   787487 1
## 9826   787488 1
## 9827   787489 1
## 9828   787490 1
## 9829   787491 1
## 9830   787492 1
## 9831   787493 1
## 9832   787494 1
## 9833   787495 1
## 9834   787496 1
## 9835   787497 1
## 9836   787498 1
## 9837   787499 1
## 9838   787500 1
## 9839   787501 1
## 9840   787502 1
## 9841   787503 1
## 9842   787504 1
## 9843   787505 1
## 9844   787506 1
## 9845   787507 1
## 9846   787508 1
## 9847   787509 1
## 9848   787510 1
## 9849   787511 1
## 9850   787512 1
## 9851   787513 1
## 9852   787514 1
## 9853   787515 1
## 9854   787516 1
## 9855   787517 1
## 9856   787518 1
## 9857   787519 1
## 9858   787520 1
## 9859   787521 1
## 9860   787522 1
## 9861   787523 1
## 9862   787524 1
## 9863   787525 1
## 9864   787526 1
## 9865   787527 1
## 9866   787528 1
## 9867   787529 1
## 9868   787530 1
## 9869   787531 1
## 9870   787532 1
## 9871   787533 1
## 9872   787534 1
## 9873   787535 1
## 9874   787536 1
## 9875   787537 1
## 9876   787538 1
## 9877   787539 1
## 9878   787540 1
## 9879   787541 1
## 9880   787542 1
## 9881   787543 1
## 9882   787544 1
## 9883   787545 1
## 9884   787546 1
## 9885   787547 1
## 9886   787548 1
## 9887   787549 1
## 9888   787550 1
## 9889   787551 1
## 9890   787552 1
## 9891   787553 1
## 9892   787554 1
## 9893   787555 1
## 9894   787556 1
## 9895   787557 1
## 9896   787558 1
## 9897   787559 1
## 9898   787560 1
## 9899   787562 1
## 9900   787563 1
## 9901   787564 1
## 9902   787565 1
## 9903   787566 1
## 9904   787567 1
## 9905   787568 1
## 9906   787569 1
## 9907   787570 1
## 9908   787571 1
## 9909   787572 1
## 9910   787573 1
## 9911   787574 1
## 9912   787575 1
## 9913   787576 1
## 9914   787577 1
## 9915   787578 1
## 9916   787579 1
## 9917   787580 1
## 9918   787581 1
## 9919   787582 1
## 9920   787583 1
## 9921   787584 1
## 9922   787585 1
## 9923   787586 1
## 9924   787587 1
## 9925   787588 1
## 9926   787589 1
## 9927   787590 1
## 9928   787591 1
## 9929   787592 1
## 9930   787593 1
## 9931   787594 1
## 9932   787595 1
## 9933   787596 1
## 9934   787597 1
## 9935   787598 1
## 9936   787599 1
## 9937   787600 1
## 9938   787601 1
## 9939   787602 1
## 9940   787603 1
## 9941   787604 1
## 9942   787605 1
## 9943   787606 1
## 9944   787607 1
## 9945   787608 1
## 9946   787609 1
## 9947   787610 1
## 9948   787611 1
## 9949   787612 1
## 9950   787613 1
## 9951   787614 1
## 9952   787615 1
## 9953   787616 1
## 9954   787617 1
## 9955   787618 1
## 9956   787619 1
## 9957   787620 1
## 9958   787621 1
## 9959   787622 1
## 9960   787623 1
## 9961   787624 1
## 9962   787625 1
## 9963   787626 1
## 9964   787627 1
## 9965   787628 1
## 9966   787629 1
## 9967   787630 1
## 9968   787631 1
## 9969   787632 1
## 9970   787633 1
## 9971   787634 1
## 9972   787635 1
## 9973   787636 1
## 9974   787637 1
## 9975   787638 1
## 9976   787639 1
## 9977   787640 1
## 9978   787641 1
## 9979   787642 1
## 9980   787643 1
## 9981   787644 1
## 9982   787645 1
## 9983   787646 1
## 9984   787647 1
## 9985   787648 1
## 9986   787649 1
## 9987   787650 1
## 9988   787651 1
## 9989   787652 1
## 9990   787653 1
## 9991   787654 1
## 9992   787655 1
## 9993   787656 1
## 9994   787657 1
## 9995   787658 1
## 9996   787659 1
## 9997   787660 1
## 9998   787661 1
## 9999   787662 1
## 10000  787663 1
## 10001  787664 1
## 10002  787665 1
## 10003  787666 1
## 10004  787667 1
## 10005  787668 1
## 10006  787669 1
## 10007  787670 1
## 10008  787671 1
## 10009  787672 1
## 10010  787673 1
## 10011  787674 1
## 10012  787675 1
## 10013  787676 1
## 10014  787677 1
## 10015  787678 1
## 10016  787679 1
## 10017  787680 1
## 10018  787681 1
## 10019  787682 1
## 10020  787683 1
## 10021  787684 1
## 10022  787685 1
## 10023  787686 1
## 10024  787687 1
## 10025  787688 1
## 10026  787689 1
## 10027  787690 1
## 10028  787691 1
## 10029  787692 1
## 10030  787693 1
## 10031  787694 1
## 10032  787695 1
## 10033  787696 1
## 10034  787697 1
## 10035  787698 1
## 10036  787699 1
## 10037  787700 1
## 10038  787701 1
## 10039  787702 1
## 10040  787703 1
## 10041  787704 1
## 10042  787705 1
## 10043  787706 1
## 10044  787707 1
## 10045  787708 1
## 10046  787710 1
## 10047  787711 1
## 10048  787712 1
## 10049  787713 1
## 10050  787714 1
## 10051  787715 1
## 10052  787716 1
## 10053  787717 1
## 10054  787718 1
## 10055  787719 1
## 10056  787720 1
## 10057  787721 1
## 10058  787722 1
## 10059  787723 1
## 10060  787724 1
## 10061  787725 1
## 10062  787726 1
## 10063  787727 1
## 10064  787728 1
## 10065  787729 1
## 10066  787730 1
## 10067  787731 1
## 10068  787732 1
## 10069  787733 1
## 10070  787734 1
## 10071  787735 1
## 10072  787736 1
## 10073  787737 1
## 10074  787738 1
## 10075  787739 1
## 10076  787740 1
## 10077  787741 1
## 10078  787742 1
## 10079  787743 1
## 10080  787744 1
## 10081  787745 1
## 10082  787746 1
## 10083  787747 1
## 10084  787748 1
## 10085  787749 1
## 10086  787750 1
## 10087  787751 1
## 10088  787752 1
## 10089  787753 1
## 10090  787754 1
## 10091  787755 1
## 10092  787756 1
## 10093  787757 1
## 10094  787758 1
## 10095  787759 1
## 10096  787760 1
## 10097  787761 1
## 10098  787762 1
## 10099  787763 1
## 10100  787764 1
## 10101  787765 1
## 10102  787766 1
## 10103  787767 1
## 10104  787768 1
## 10105  787769 1
## 10106  787770 1
## 10107  787771 1
## 10108  787772 1
## 10109  787773 1
## 10110  787774 1
## 10111  787775 1
## 10112  787776 1
## 10113  787777 1
## 10114  787778 1
## 10115  787779 1
## 10116  787780 1
## 10117  787781 1
## 10118  787782 1
## 10119  787783 1
## 10120  787784 1
## 10121  787785 1
## 10122  787786 1
## 10123  787787 1
## 10124  787788 1
## 10125  787789 1
## 10126  787790 1
## 10127  787791 1
## 10128  787792 1
## 10129  787793 1
## 10130  787794 1
## 10131  787795 1
## 10132  787796 1
## 10133  787797 1
## 10134  787798 1
## 10135  787799 1
## 10136  787800 1
## 10137  787801 1
## 10138  787802 1
## 10139  787803 1
## 10140  787805 1
## 10141  787806 1
## 10142  787807 1
## 10143  787808 1
## 10144  787809 1
## 10145  787810 1
## 10146  787811 1
## 10147  787812 1
## 10148  787813 1
## 10149  787814 1
## 10150  787815 1
## 10151  787816 1
## 10152  787817 1
## 10153  787818 1
## 10154  787819 1
## 10155  787820 1
## 10156  787821 1
## 10157  787822 1
## 10158  787823 1
## 10159  787824 1
## 10160  787825 1
## 10161  787826 1
## 10162  787827 1
## 10163  787828 1
## 10164  787829 1
## 10165  787830 1
## 10166  787831 1
## 10167  787832 1
## 10168  787833 1
## 10169  787834 1
## 10170  787835 1
## 10171  787836 1
## 10172  787837 1
## 10173  787838 1
## 10174  787839 1
## 10175  787840 1
## 10176  787841 1
## 10177  787842 1
## 10178  787843 1
## 10179  787844 1
## 10180  787845 1
## 10181  787847 1
## 10182  787848 1
## 10183  787849 1
## 10184  787850 1
## 10185  787851 1
## 10186  787852 1
## 10187  787853 1
## 10188  787854 1
## 10189  787855 1
## 10190  787856 1
## 10191  787857 1
## 10192  787858 1
## 10193  787859 1
## 10194  787860 1
## 10195  787861 1
## 10196  787862 1
## 10197  787863 1
## 10198  787864 1
## 10199  787865 1
## 10200  787866 1
## 10201  787867 1
## 10202  787868 1
## 10203  787869 1
## 10204  787870 1
## 10205  787871 1
## 10206  787872 1
## 10207  787873 1
## 10208  787874 1
## 10209  787875 1
## 10210  787876 1
## 10211  787877 1
## 10212  787878 1
## 10213  787879 1
## 10214  787880 1
## 10215  787881 1
## 10216  787882 1
## 10217  787883 1
## 10218  787884 1
## 10219  787885 1
## 10220  787886 1
## 10221  787887 1
## 10222  787888 1
## 10223  787889 1
## 10224  787890 1
## 10225  787891 1
## 10226  787892 1
## 10227  787893 1
## 10228  787894 1
## 10229  787895 1
## 10230  787896 1
## 10231  787897 1
## 10232  787898 1
## 10233  787899 1
## 10234  787900 1
## 10235  787901 1
## 10236  787902 1
## 10237  787903 1
## 10238  787904 1
## 10239  787905 1
## 10240  787906 1
## 10241  787907 1
## 10242  787908 1
## 10243  787909 1
## 10244  787910 1
## 10245  787911 1
## 10246  787912 1
## 10247  787913 1
## 10248  787914 1
## 10249  787915 1
## 10250  787916 1
## 10251  787917 1
## 10252  787918 1
## 10253  787919 1
## 10254  787920 1
## 10255  787921 1
## 10256  787922 1
## 10257  787923 1
## 10258  787924 1
## 10259  787925 1
## 10260  787926 1
## 10261  787927 1
## 10262  787928 1
## 10263  787929 1
## 10264  787930 1
## 10265  787931 1
## 10266  787932 1
## 10267  787933 1
## 10268  787934 1
## 10269  787935 1
## 10270  787936 1
## 10271  787937 1
## 10272  787938 1
## 10273  787939 1
## 10274  787940 1
## 10275  787941 1
## 10276  787942 1
## 10277  787943 1
## 10278  787944 1
## 10279  787945 1
## 10280  787946 1
## 10281  787947 1
## 10282  787948 1
## 10283  787949 1
## 10284  787950 1
## 10285  787951 1
## 10286  787952 1
## 10287  787953 1
## 10288  787954 1
## 10289  787955 1
## 10290  787956 1
## 10291  787957 1
## 10292  787958 1
## 10293  787959 1
## 10294  787960 1
## 10295  787961 1
## 10296  787962 1
## 10297  787964 1
## 10298  787965 1
## 10299  787966 1
## 10300  787967 1
## 10301  787968 1
## 10302  787969 1
## 10303  787970 1
## 10304  787971 1
## 10305  787972 1
## 10306  787973 1
## 10307  787974 1
## 10308  787975 1
## 10309  787976 1
## 10310  787977 1
## 10311  787978 1
## 10312  787979 1
## 10313  787980 1
## 10314  787981 1
## 10315  787982 1
## 10316  787983 1
## 10317  787984 1
## 10318  787985 1
## 10319  787986 1
## 10320  787987 1
## 10321  787988 1
## 10322  787989 1
## 10323  787990 1
## 10324  787991 1
## 10325  787992 1
## 10326  787993 1
## 10327  787994 1
## 10328  787995 1
## 10329  787996 1
## 10330  787997 1
## 10331  787998 1
## 10332  787999 1
## 10333  788000 1
## 10334  788001 1
## 10335  788002 1
## 10336  788003 1
## 10337  788004 1
## 10338  788005 1
## 10339  788006 1
## 10340  788007 1
## 10341  788008 1
## 10342  788009 1
## 10343  788010 1
## 10344  788011 1
## 10345  788012 1
## 10346  788013 1
## 10347  788014 1
## 10348  788015 1
## 10349  788016 1
## 10350  788017 1
## 10351  788018 1
## 10352  788019 1
## 10353  788020 1
## 10354  788021 1
## 10355  788022 1
## 10356  788023 1
## 10357  788024 1
## 10358  788025 1
## 10359  788026 1
## 10360  788027 1
## 10361  788028 1
## 10362  788029 1
## 10363  788030 1
## 10364  788031 1
## 10365  788032 1
## 10366  788033 1
## 10367  788034 1
## 10368  788035 1
## 10369  788036 1
## 10370  788037 1
## 10371  788038 1
## 10372  788039 1
## 10373  788041 1
## 10374  788042 1
## 10375  788043 1
## 10376  788044 1
## 10377  788045 1
## 10378  788046 1
## 10379  788047 1
## 10380  788048 1
## 10381  788049 1
## 10382  788050 1
## 10383  788051 1
## 10384  788052 1
## 10385  788053 1
## 10386  788054 1
## 10387  788055 1
## 10388  788056 1
## 10389  788057 1
## 10390  788058 1
## 10391  788059 1
## 10392  788060 1
## 10393  788061 1
## 10394  788062 1
## 10395  788063 1
## 10396  788064 1
## 10397  788065 1
## 10398  788066 1
## 10399  788067 1
## 10400  788068 1
## 10401  788069 1
## 10402  788070 1
## 10403  788071 1
## 10404  788072 1
## 10405  788073 1
## 10406  788074 1
## 10407  788075 1
## 10408  788076 1
## 10409  788077 1
## 10410  788078 1
## 10411  788079 1
## 10412  788080 1
## 10413  788081 1
## 10414  788082 1
## 10415  788083 1
## 10416  788084 1
## 10417  788085 1
## 10418  788086 1
## 10419  788087 1
## 10420  788088 1
## 10421  788089 1
## 10422  788090 1
## 10423  788091 1
## 10424  788092 1
## 10425  788093 1
## 10426  788094 1
## 10427  788095 1
## 10428  788096 1
## 10429  788097 1
## 10430  788098 1
## 10431  788099 1
## 10432  788100 1
## 10433  788101 1
## 10434  788102 1
## 10435  788103 1
## 10436  788104 1
## 10437  788105 1
## 10438  788106 1
## 10439  788107 1
## 10440  788108 1
## 10441  788109 1
## 10442  788110 1
## 10443  788111 1
## 10444  788112 1
## 10445  788114 1
## 10446  788115 1
## 10447  788116 1
## 10448  788117 1
## 10449  788118 1
## 10450  788119 1
## 10451  788120 1
## 10452  788121 1
## 10453  788122 1
## 10454  788123 1
## 10455  788124 1
## 10456  788125 1
## 10457  788126 1
## 10458  788127 1
## 10459  788128 1
## 10460  788129 1
## 10461  788130 1
## 10462  788131 1
## 10463  788132 1
## 10464  788133 1
## 10465  788134 1
## 10466  788135 1
## 10467  788136 1
## 10468  788137 1
## 10469  788138 1
## 10470  788139 1
## 10471  788140 1
## 10472  788141 1
## 10473  788142 1
## 10474  788143 1
## 10475  788144 1
## 10476  788145 1
## 10477  788146 1
## 10478  788147 1
## 10479  788148 1
## 10480  788149 1
## 10481  788150 1
## 10482  788151 1
## 10483  788152 1
## 10484  788153 1
## 10485  788154 1
## 10486  788155 1
## 10487  788156 1
## 10488  788157 1
## 10489  788158 1
## 10490  788159 1
## 10491  788160 1
## 10492  788161 1
## 10493  788162 1
## 10494  788163 1
## 10495  788164 1
## 10496  788165 1
## 10497  788166 1
## 10498  788167 1
## 10499  788168 1
## 10500  788169 1
## 10501  788170 1
## 10502  788171 1
## 10503  788172 1
## 10504  788173 1
## 10505  788174 1
## 10506  788175 1
## 10507  788176 1
## 10508  788177 1
## 10509  788178 1
## 10510  788179 1
## 10511  788180 1
## 10512  788181 1
## 10513  788182 1
## 10514  788183 1
## 10515  788184 1
## 10516  788185 1
## 10517  788186 1
## 10518  788187 1
## 10519  788188 1
## 10520  788189 1
## 10521  788190 1
## 10522  788191 1
## 10523  788192 1
## 10524  788193 1
## 10525  788194 1
## 10526  788195 1
## 10527  788196 1
## 10528  788197 1
## 10529  788198 1
## 10530  788199 1
## 10531  788200 1
## 10532  788201 1
## 10533  788202 1
## 10534  788203 1
## 10535  788205 1
## 10536  788206 1
## 10537  788207 1
## 10538  788208 1
## 10539  788209 1
## 10540  788210 1
## 10541  788211 1
## 10542  788212 1
## 10543  788213 1
## 10544  788214 1
## 10545  788215 1
## 10546  788216 1
## 10547  788217 1
## 10548  788218 1
## 10549  788219 1
## 10550  788220 1
## 10551  788221 1
## 10552  788222 1
## 10553  788223 1
## 10554  788224 1
## 10555  788225 1
## 10556  788226 1
## 10557  788227 1
## 10558  788228 1
## 10559  788229 1
## 10560  788230 1
## 10561  788231 1
## 10562  788232 1
## 10563  788233 1
## 10564  788234 1
## 10565  788235 1
## 10566  788236 1
## 10567  788237 1
## 10568  788238 1
## 10569  788239 1
## 10570  788240 1
## 10571  788241 1
## 10572  788242 1
## 10573  788243 1
## 10574  788244 1
## 10575  788245 1
## 10576  788246 1
## 10577  788247 1
## 10578  788248 1
## 10579  788249 1
## 10580  788250 1
## 10581  788251 1
## 10582  788252 1
## 10583  788253 1
## 10584  788254 1
## 10585  788255 1
## 10586  788256 1
## 10587  788257 1
## 10588  788258 1
## 10589  788259 1
## 10590  788260 1
## 10591  788261 1
## 10592  788262 1
## 10593  788263 1
## 10594  788264 1
## 10595  788265 1
## 10596  788266 1
## 10597  788267 1
## 10598  788269 1
## 10599  788270 1
## 10600  788271 1
## 10601  788272 1
## 10602  788273 1
## 10603  788274 1
## 10604  788275 1
## 10605  788276 1
## 10606  788277 1
## 10607  788278 1
## 10608  788279 1
## 10609  788280 1
## 10610  788281 1
## 10611  788282 1
## 10612  788283 1
## 10613  788284 1
## 10614  788285 1
## 10615  788286 1
## 10616  788287 1
## 10617  788288 1
## 10618  788289 1
## 10619  788290 1
## 10620  788291 1
## 10621  788292 1
## 10622  788293 1
## 10623  788294 1
## 10624  788295 1
## 10625  788296 1
## 10626  788297 1
## 10627  788298 1
## 10628  788299 1
## 10629  788300 1
## 10630  788301 1
## 10631  788302 1
## 10632  788303 1
## 10633  788304 1
## 10634  788305 1
## 10635  788306 1
## 10636  788307 1
## 10637  788308 1
## 10638  788309 1
## 10639  788310 1
## 10640  788311 1
## 10641  788312 1
## 10642  788313 1
## 10643  788314 1
## 10644  788315 1
## 10645  788316 1
## 10646  788317 1
## 10647  788318 1
## 10648  788319 1
## 10649  788320 1
## 10650  788321 1
## 10651  788322 1
## 10652  788323 1
## 10653  788324 1
## 10654  788325 1
## 10655  788326 1
## 10656  788327 1
## 10657  788328 1
## 10658  788329 1
## 10659  788330 1
## 10660  788331 1
## 10661  788332 1
## 10662  788333 1
## 10663  788334 1
## 10664  788335 1
## 10665  788336 1
## 10666  788337 1
## 10667  788338 1
## 10668  788339 1
## 10669  788340 1
## 10670  788341 1
## 10671  788342 1
## 10672  788343 1
## 10673  788344 1
## 10674  788345 1
## 10675  788346 1
## 10676  788347 1
## 10677  788348 1
## 10678  788349 1
## 10679  788350 1
## 10680  788351 1
## 10681  788352 1
## 10682  788353 1
## 10683  788354 1
## 10684  788355 1
## 10685  788356 1
## 10686  788357 1
## 10687  788358 1
## 10688  788359 1
## 10689  788360 1
## 10690  788361 1
## 10691  788362 1
## 10692  788363 1
## 10693  788364 1
## 10694  788365 1
## 10695  788366 1
## 10696  788367 1
## 10697  788368 1
## 10698  788369 1
## 10699  788370 1
## 10700  788371 1
## 10701  788372 1
## 10702  788373 1
## 10703  788374 1
## 10704  788375 1
## 10705  788376 1
## 10706  788377 1
## 10707  788378 1
## 10708  788379 1
## 10709  788380 1
## 10710  788381 1
## 10711  788382 1
## 10712  788383 1
## 10713  788384 1
## 10714  788385 1
## 10715  788386 1
## 10716  788387 1
## 10717  788388 1
## 10718  788389 1
## 10719  788390 1
## 10720  788391 1
## 10721  788392 1
## 10722  788393 1
## 10723  788394 1
## 10724  788395 1
## 10725  788396 1
## 10726  788397 1
## 10727  788398 1
## 10728  788399 1
## 10729  788400 1
## 10730  788401 1
## 10731  788402 1
## 10732  788403 1
## 10733  788404 1
## 10734  788405 1
## 10735  788406 1
## 10736  788407 1
## 10737  788408 1
## 10738  788409 1
## 10739  788410 1
## 10740  788411 1
## 10741  788412 1
## 10742  788413 1
## 10743  788414 1
## 10744  788415 1
## 10745  788416 1
## 10746  788417 1
## 10747  788418 1
## 10748  788419 1
## 10749  788420 1
## 10750  788421 1
## 10751  788422 1
## 10752  788423 1
## 10753  788424 1
## 10754  788425 1
## 10755  788426 1
## 10756  788427 1
## 10757  788428 1
## 10758  788429 1
## 10759  788430 1
## 10760  788431 1
## 10761  788432 1
## 10762  788433 1
## 10763  788434 1
## 10764  788435 1
## 10765  788436 1
## 10766  788437 1
## 10767  788438 1
## 10768  788439 1
## 10769  788440 1
## 10770  788441 1
## 10771  788443 1
## 10772  788444 1
## 10773  788445 1
## 10774  788446 1
## 10775  788447 1
## 10776  788448 1
## 10777  788449 1
## 10778  788450 1
## 10779  788451 1
## 10780  788452 1
## 10781  788453 1
## 10782  788454 1
## 10783  788455 1
## 10784  788456 1
## 10785  788457 1
## 10786  788458 1
## 10787  788459 1
## 10788  788460 1
## 10789  788461 1
## 10790  788462 1
## 10791  788463 1
## 10792  788464 1
## 10793  788465 1
## 10794  788466 1
## 10795  788467 1
## 10796  788468 1
## 10797  788469 1
## 10798  788470 1
## 10799  788471 1
## 10800  788472 1
## 10801  788473 1
## 10802  788474 1
## 10803  788475 1
## 10804  788476 1
## 10805  788477 1
## 10806  788478 1
## 10807  788479 1
## 10808  788480 1
## 10809  788481 1
## 10810  788482 1
## 10811  788483 1
## 10812  788484 1
## 10813  788485 1
## 10814  788486 1
## 10815  788487 1
## 10816  788488 1
## 10817  788489 1
## 10818  788490 1
## 10819  788491 1
## 10820  788492 1
## 10821  788493 1
## 10822  788494 1
## 10823  788495 1
## 10824  788496 1
## 10825  788497 1
## 10826  788498 1
## 10827  788499 1
## 10828  788500 1
## 10829  788501 1
## 10830  788502 1
## 10831  788503 1
## 10832  788504 1
## 10833  788505 1
## 10834  788506 1
## 10835  788507 1
## 10836  788508 1
## 10837  788509 1
## 10838  788510 1
## 10839  788511 1
## 10840  788512 1
## 10841  788513 1
## 10842  788514 1
## 10843  788515 1
## 10844  788516 1
## 10845  788517 1
## 10846  788518 1
## 10847  788519 1
## 10848  788520 1
## 10849  788521 1
## 10850  788522 1
## 10851  788523 1
## 10852  788524 1
## 10853  788525 1
## 10854  788526 1
## 10855  788527 1
## 10856  788528 1
## 10857  788529 1
## 10858  788530 1
## 10859  788531 1
## 10860  788532 1
## 10861  788533 1
## 10862  788534 1
## 10863  788535 1
## 10864  788536 1
## 10865  788537 1
## 10866  788538 1
## 10867  788539 1
## 10868  788540 1
## 10869  788541 1
## 10870  788542 1
## 10871  788543 1
## 10872  788544 1
## 10873  788546 1
## 10874  788547 1
## 10875  788548 1
## 10876  788549 1
## 10877  788550 1
## 10878  788551 1
## 10879  788552 1
## 10880  788553 1
## 10881  788554 1
## 10882  788555 1
## 10883  788556 1
## 10884  788557 1
## 10885  788558 1
## 10886  788559 1
## 10887  788560 1
## 10888  788561 1
## 10889  788562 1
## 10890  788563 1
## 10891  788564 1
## 10892  788565 1
## 10893  788566 1
## 10894  788567 1
## 10895  788568 1
## 10896  788569 1
## 10897  788570 1
## 10898  788571 1
## 10899  788572 1
## 10900  788573 1
## 10901  788574 1
## 10902  788575 1
## 10903  788576 1
## 10904  788577 1
## 10905  788578 1
## 10906  788579 1
## 10907  788580 1
## 10908  788581 1
## 10909  788582 1
## 10910  788583 1
## 10911  788584 1
## 10912  788585 1
## 10913  788586 1
## 10914  788587 1
## 10915  788588 1
## 10916  788589 1
## 10917  788590 1
## 10918  788591 1
## 10919  788592 1
## 10920  788593 1
## 10921  788594 1
## 10922  788595 1
## 10923  788596 1
## 10924  788597 1
## 10925  788598 1
## 10926  788599 1
## 10927  788600 1
## 10928  788601 1
## 10929  788602 1
## 10930  788603 1
## 10931  788604 1
## 10932  788605 1
## 10933  788606 1
## 10934  788607 1
## 10935  788608 1
## 10936  788609 1
## 10937  788610 1
## 10938  788611 1
## 10939  788612 1
## 10940  788613 1
## 10941  788614 1
## 10942  788615 1
## 10943  788616 1
## 10944  788617 1
## 10945  788618 1
## 10946  788619 1
## 10947  788620 1
## 10948  788621 1
## 10949  788622 1
## 10950  788623 1
## 10951  788624 1
## 10952  788625 1
## 10953  788626 1
## 10954  788627 1
## 10955  788628 1
## 10956  788629 1
## 10957  788630 1
## 10958  788631 1
## 10959  788632 1
## 10960  788633 1
## 10961  788634 1
## 10962  788635 1
## 10963  788636 1
## 10964  788637 1
## 10965  788638 1
## 10966  788639 1
## 10967  788640 1
## 10968  788641 1
## 10969  788642 1
## 10970  788643 1
## 10971  788644 1
## 10972  788645 1
## 10973  788646 1
## 10974  788647 1
## 10975  788648 1
## 10976  788649 1
## 10977  788650 1
## 10978  788651 1
## 10979  788652 1
## 10980  788653 1
## 10981  788654 1
## 10982  788655 1
## 10983  788656 1
## 10984  788657 1
## 10985  788658 1
## 10986  788659 1
## 10987  788660 1
## 10988  788661 1
## 10989  788662 1
## 10990  788663 1
## 10991  788664 1
## 10992  788665 1
## 10993  788666 1
## 10994  788667 1
## 10995  788668 1
## 10996  788669 1
## 10997  788670 1
## 10998  788671 1
## 10999  788672 1
## 11000  788673 1
## 11001  788674 1
## 11002  788675 1
## 11003  788676 1
## 11004  788677 1
## 11005  788678 1
## 11006  788679 1
## 11007  788680 1
## 11008  788681 1
## 11009  788682 1
## 11010  788683 1
## 11011  788684 1
## 11012  788685 1
## 11013  788686 1
## 11014  788687 1
## 11015  788688 1
## 11016  788689 1
## 11017  788690 1
## 11018  788691 1
## 11019  788692 1
## 11020  788693 1
## 11021  788694 1
## 11022  788695 1
## 11023  788696 1
## 11024  788697 1
## 11025  788698 1
## 11026  788699 1
## 11027  788700 1
## 11028  788701 1
## 11029  788702 1
## 11030  788703 1
## 11031  788704 1
## 11032  788705 1
## 11033  788706 1
## 11034  788707 1
## 11035  788708 1
## 11036  788709 1
## 11037  788710 1
## 11038  788711 1
## 11039  788712 1
## 11040  788713 1
## 11041  788714 1
## 11042  788715 1
## 11043  788716 1
## 11044  788717 1
## 11045  788718 1
## 11046  788719 1
## 11047  788720 1
## 11048  788721 1
## 11049  788722 1
## 11050  788723 1
## 11051  788724 1
## 11052  788725 1
## 11053  788726 1
## 11054  788727 1
## 11055  788728 1
## 11056  788729 1
## 11057  788730 1
## 11058  788731 1
## 11059  788732 1
## 11060  788733 1
## 11061  788734 1
## 11062  788735 1
## 11063  788736 1
## 11064  788737 1
## 11065  788738 1
## 11066  788739 1
## 11067  788740 1
## 11068  788741 1
## 11069  788742 1
## 11070  788743 1
## 11071  788744 1
## 11072  788745 1
## 11073  788746 1
## 11074  788747 1
## 11075  788748 1
## 11076  788749 1
## 11077  788750 1
## 11078  788751 1
## 11079  788752 1
## 11080  788753 1
## 11081  788754 1
## 11082  788755 1
## 11083  788756 1
## 11084  788757 1
## 11085  788758 1
## 11086  788759 1
## 11087  788760 1
## 11088  788761 1
## 11089  788762 1
## 11090  788763 1
## 11091  788764 1
## 11092  788765 1
## 11093  788766 1
## 11094  788767 1
## 11095  788768 1
## 11096  788769 1
## 11097  788770 1
## 11098  788771 1
## 11099  788772 1
## 11100  788773 1
## 11101  788774 1
## 11102  788775 1
## 11103  788776 1
## 11104  788777 1
## 11105  788778 1
## 11106  788779 1
## 11107  788780 1
## 11108  788781 1
## 11109  788782 1
## 11110  788783 1
## 11111  788784 1
## 11112  788785 1
## 11113  788786 1
## 11114  788787 1
## 11115  788788 1
## 11116  788789 1
## 11117  788790 1
## 11118  788791 1
## 11119  788792 1
## 11120  788793 1
## 11121  788794 1
## 11122  788795 1
## 11123  788796 1
## 11124  788797 1
## 11125  788798 1
## 11126  788799 1
## 11127  788800 1
## 11128  788801 1
## 11129  788803 1
## 11130  788804 1
## 11131  788805 1
## 11132  788806 1
## 11133  788807 1
## 11134  788808 1
## 11135  788809 1
## 11136  788810 1
## 11137  788811 1
## 11138  788812 1
## 11139  788813 1
## 11140  788814 1
## 11141  788815 1
## 11142  788816 1
## 11143  788817 1
## 11144  788818 1
## 11145  788819 1
## 11146  788820 1
## 11147  788821 1
## 11148  788822 1
## 11149  788823 1
## 11150  788824 1
## 11151  788825 1
## 11152  788826 1
## 11153  788827 1
## 11154  788828 1
## 11155  788829 1
## 11156  788830 1
## 11157  788831 1
## 11158  788832 1
## 11159  788833 1
## 11160  788834 1
## 11161  788835 1
## 11162  788836 1
## 11163  788837 1
## 11164  788838 1
## 11165  788839 1
## 11166  788840 1
## 11167  788841 1
## 11168  788842 1
## 11169  788843 1
## 11170  788844 1
## 11171  788845 1
## 11172  788846 1
## 11173  788847 1
## 11174  788848 1
## 11175  788849 1
## 11176  788850 1
## 11177  788851 1
## 11178  788852 1
## 11179  788853 1
## 11180  788854 1
## 11181  788855 1
## 11182  788856 1
## 11183  788857 1
## 11184  788858 1
## 11185  788859 1
## 11186  788860 1
## 11187  788861 1
## 11188  788862 1
## 11189  788863 1
## 11190  788864 1
## 11191  788865 1
## 11192  788866 1
## 11193  788867 1
## 11194  788868 1
## 11195  788869 1
## 11196  788870 1
## 11197  788871 1
## 11198  788872 1
## 11199  788873 1
## 11200  788874 1
## 11201  788875 1
## 11202  788876 1
## 11203  788877 1
## 11204  788878 1
## 11205  788879 1
## 11206  788880 1
## 11207  788881 1
## 11208  788882 1
## 11209  788883 1
## 11210  788884 1
## 11211  788885 1
## 11212  788886 1
## 11213  788887 1
## 11214  788888 1
## 11215  788889 1
## 11216  788890 1
## 11217  788891 1
## 11218  788892 1
## 11219  788893 1
## 11220  788894 1
## 11221  788895 1
## 11222  788896 1
## 11223  788897 1
## 11224  788898 1
## 11225  788899 1
## 11226  788900 1
## 11227  788901 1
## 11228  788902 1
## 11229  788903 1
## 11230  788904 1
## 11231  788905 1
## 11232  788906 1
## 11233  788907 1
## 11234  788908 1
## 11235  788909 1
## 11236  788910 1
## 11237  788911 1
## 11238  788912 1
## 11239  788913 1
## 11240  788914 1
## 11241  788915 1
## 11242  788916 1
## 11243  788917 1
## 11244  788918 1
## 11245  788919 1
## 11246  788920 1
## 11247  788921 1
## 11248  788922 1
## 11249  788923 1
## 11250  788924 1
## 11251  788925 1
## 11252  788926 1
## 11253  788927 1
## 11254  788928 1
## 11255  788929 1
## 11256  788930 1
## 11257  788931 1
## 11258  788932 1
## 11259  788933 1
## 11260  788934 1
## 11261  788935 1
## 11262  788936 1
## 11263  788937 1
## 11264  788938 1
## 11265  788939 1
## 11266  788940 1
## 11267  788941 1
## 11268  788942 1
## 11269  788943 1
## 11270  788944 1
## 11271  788945 1
## 11272  788946 1
## 11273  788947 1
## 11274  788948 1
## 11275  788949 1
## 11276  788950 1
## 11277  788951 1
## 11278  788952 1
## 11279  788953 1
## 11280  788954 1
## 11281  788955 1
## 11282  788956 1
## 11283  788957 1
## 11284  788958 1
## 11285  788959 1
## 11286  788960 1
## 11287  788961 1
## 11288  788962 1
## 11289  788963 1
## 11290  788964 1
## 11291  788965 1
## 11292  788966 1
## 11293  788967 1
## 11294  788968 1
## 11295  788969 1
## 11296  788970 1
## 11297  788971 1
## 11298  788972 1
## 11299  788973 1
## 11300  788974 1
## 11301  788975 1
## 11302  788976 1
## 11303  788977 1
## 11304  788978 1
## 11305  788979 1
## 11306  788980 1
## 11307  788981 1
## 11308  788982 1
## 11309  788983 1
## 11310  788984 1
## 11311  788985 1
## 11312  788986 1
## 11313  788987 1
## 11314  788988 1
## 11315  788989 1
## 11316  788990 1
## 11317  788991 1
## 11318  788992 1
## 11319  788993 1
## 11320  788994 1
## 11321  788995 1
## 11322  788996 1
## 11323  788997 1
## 11324  788998 1
## 11325  788999 1
## 11326  789000 1
## 11327  789001 1
## 11328  789002 1
## 11329  789003 1
## 11330  789004 1
## 11331  789005 1
## 11332  789006 1
## 11333  789007 1
## 11334  789008 1
## 11335  789009 1
## 11336  789010 1
## 11337  789011 1
## 11338  789012 1
## 11339  789013 1
## 11340  789014 1
## 11341  789015 1
## 11342  789016 1
## 11343  789017 1
## 11344  789018 1
## 11345  789019 1
## 11346  789020 1
## 11347  789021 1
## 11348  789022 1
## 11349  789023 1
## 11350  789024 1
## 11351  789025 1
## 11352  789026 1
## 11353  789027 1
## 11354  789028 1
## 11355  789029 1
## 11356  789030 1
## 11357  789031 1
## 11358  789032 1
## 11359  789033 1
## 11360  789034 1
## 11361  789035 1
## 11362  789036 1
## 11363  789037 1
## 11364  789038 1
## 11365  789039 1
## 11366  789040 1
## 11367  789041 1
## 11368  789042 1
## 11369  789043 1
## 11370  789044 1
## 11371  789045 1
## 11372  789046 1
## 11373  789047 1
## 11374  789048 1
## 11375  789049 1
## 11376  789050 1
## 11377  789051 1
## 11378  789052 1
## 11379  789053 1
## 11380  789054 1
## 11381  789055 1
## 11382  789056 1
## 11383  789057 1
## 11384  789058 1
## 11385  789059 1
## 11386  789060 1
## 11387  789061 1
## 11388  789062 1
## 11389  789063 1
## 11390  789064 1
## 11391  789065 1
## 11392  789066 1
## 11393  789067 1
## 11394  789068 1
## 11395  789069 1
## 11396  789070 1
## 11397  789071 1
## 11398  789072 1
## 11399  789073 1
## 11400  789074 1
## 11401  789075 1
## 11402  789076 1
## 11403  789077 1
## 11404  789078 1
## 11405  789079 1
## 11406  789080 1
## 11407  789081 1
## 11408  789082 1
## 11409  789083 1
## 11410  789084 1
## 11411  789085 1
## 11412  789086 1
## 11413  789087 1
## 11414  789088 1
## 11415  789089 1
## 11416  789090 1
## 11417  789091 1
## 11418  789092 1
## 11419  789093 1
## 11420  789094 1
## 11421  789095 1
## 11422  789096 1
## 11423  789097 1
## 11424  789098 1
## 11425  789099 1
## 11426  789100 1
## 11427  789101 1
## 11428  789102 1
## 11429  789103 1
## 11430  789104 1
## 11431  789105 1
## 11432  789106 1
## 11433  789107 1
## 11434  789108 1
## 11435  789109 1
## 11436  789110 1
## 11437  789111 1
## 11438  789112 1
## 11439  789113 1
## 11440  789114 1
## 11441  789115 1
## 11442  789116 1
## 11443  789117 1
## 11444  789118 1
## 11445  789119 1
## 11446  789120 1
## 11447  789121 1
## 11448  789122 1
## 11449  789123 1
## 11450  789124 1
## 11451  789125 1
## 11452  789126 1
## 11453  789127 1
## 11454  789128 1
## 11455  789129 1
## 11456  789130 1
## 11457  789131 1
## 11458  789132 1
## 11459  789133 1
## 11460  789134 1
## 11461  789135 1
## 11462  789136 1
## 11463  789137 1
## 11464  789138 1
## 11465  789139 1
## 11466  789140 1
## 11467  789141 1
## 11468  789142 1
## 11469  789143 1
## 11470  789144 1
## 11471  789145 1
## 11472  789146 1
## 11473  789147 1
## 11474  789148 1
## 11475  789149 1
## 11476  789150 1
## 11477  789151 1
## 11478  789152 1
## 11479  789153 1
## 11480  789154 1
## 11481  789155 1
## 11482  789156 1
## 11483  789157 1
## 11484  789158 1
## 11485  789159 1
## 11486  789160 1
## 11487  789161 1
## 11488  789162 1
## 11489  789163 1
## 11490  789164 1
## 11491  789165 1
## 11492  789166 1
## 11493  789167 1
## 11494  789168 1
## 11495  789169 1
## 11496  789170 1
## 11497  789171 1
## 11498  789172 1
## 11499  789173 1
## 11500  789174 1
## 11501  789175 1
## 11502  789176 1
## 11503  789177 1
## 11504  789178 1
## 11505  789179 1
## 11506  789180 1
## 11507  789181 1
## 11508  789182 1
## 11509  789183 1
## 11510  789184 1
## 11511  789185 1
## 11512  789186 1
## 11513  789187 1
## 11514  789188 1
## 11515  789189 1
## 11516  789190 1
## 11517  789191 1
## 11518  789192 1
## 11519  789193 1
## 11520  789194 1
## 11521  789195 1
## 11522  789196 1
## 11523  789197 1
## 11524  789198 1
## 11525  789199 1
## 11526  789200 1
## 11527  789201 1
## 11528  789202 1
## 11529  789203 1
## 11530  789204 1
## 11531  789205 1
## 11532  789206 1
## 11533  789207 1
## 11534  789208 1
## 11535  789209 1
## 11536  789210 1
## 11537  789211 1
## 11538  789212 1
## 11539  789213 1
## 11540  789214 1
## 11541  789215 1
## 11542  789216 1
## 11543  789217 1
## 11544  789218 1
## 11545  789219 1
## 11546  789220 1
## 11547  789221 1
## 11548  789222 1
## 11549  789223 1
## 11550  789224 1
## 11551  789225 1
## 11552  789226 1
## 11553  789227 1
## 11554  789228 1
## 11555  789229 1
## 11556  789230 1
## 11557  789231 1
## 11558  789232 1
## 11559  789233 1
## 11560  789234 1
## 11561  789235 1
## 11562  789236 1
## 11563  789237 1
## 11564  789238 1
## 11565  789239 1
## 11566  789240 1
## 11567  789241 1
## 11568  789242 1
## 11569  789243 1
## 11570  789244 1
## 11571  789245 1
## 11572  789246 1
## 11573  789247 1
## 11574  789248 1
## 11575  789249 1
## 11576  789250 1
## 11577  789251 1
## 11578  789252 1
## 11579  789253 1
## 11580  789254 1
## 11581  789255 1
## 11582  789256 1
## 11583  789257 1
## 11584  789258 1
## 11585  789259 1
## 11586  789260 1
## 11587  789261 1
## 11588  789262 1
## 11589  789263 1
## 11590  789264 1
## 11591  789265 1
## 11592  789266 1
## 11593  789267 1
## 11594  789268 1
## 11595  789269 1
## 11596  789271 1
## 11597  789272 1
## 11598  789273 1
## 11599  789274 1
## 11600  789275 1
## 11601  789276 1
## 11602  789277 1
## 11603  789278 1
## 11604  789279 1
## 11605  789280 1
## 11606  789281 1
## 11607  789282 1
## 11608  789283 1
## 11609  789284 1
## 11610  789285 1
## 11611  789286 1
## 11612  789287 1
## 11613  789288 1
## 11614  789289 1
## 11615  789290 1
## 11616  789291 1
## 11617  789292 1
## 11618  789293 1
## 11619  789294 1
## 11620  789295 1
## 11621  789296 1
## 11622  789297 1
## 11623  789298 1
## 11624  789299 1
## 11625  789300 1
## 11626  789301 1
## 11627  789302 1
## 11628  789303 1
## 11629  789304 1
## 11630  789305 1
## 11631  789306 1
## 11632  789307 1
## 11633  789308 1
## 11634  789309 1
## 11635  789310 1
## 11636  789311 1
## 11637  789312 1
## 11638  789313 1
## 11639  789314 1
## 11640  789315 1
## 11641  789316 1
## 11642  789317 1
## 11643  789318 1
## 11644  789319 1
## 11645  789320 1
## 11646  789321 1
## 11647  789322 1
## 11648  789323 1
## 11649  789324 1
## 11650  789325 1
## 11651  789326 1
## 11652  789327 1
## 11653  789328 1
## 11654  789329 1
## 11655  789330 1
## 11656  789331 1
## 11657  789332 1
## 11658  789333 1
## 11659  789334 1
## 11660  789335 1
## 11661  789336 1
## 11662  789337 1
## 11663  789338 1
## 11664  789339 1
## 11665  789340 1
## 11666  789341 1
## 11667  789342 1
## 11668  789343 1
## 11669  789344 1
## 11670  789345 1
## 11671  789346 1
## 11672  789347 1
## 11673  789348 1
## 11674  789349 1
## 11675  789350 1
## 11676  789351 1
## 11677  789352 1
## 11678  789353 1
## 11679  789354 1
## 11680  789355 1
## 11681  789356 1
## 11682  789357 1
## 11683  789358 1
## 11684  789359 1
## 11685  789360 1
## 11686  789361 1
## 11687  789362 1
## 11688  789363 1
## 11689  789364 1
## 11690  789365 1
## 11691  789366 1
## 11692  789367 1
## 11693  789368 1
## 11694  789369 1
## 11695  789370 1
## 11696  789371 1
## 11697  789372 1
## 11698  789373 1
## 11699  789374 1
## 11700  789375 1
## 11701  789376 1
## 11702  789377 1
## 11703  789378 1
## 11704  789379 1
## 11705  789380 1
## 11706  789381 1
## 11707  789382 1
## 11708  789383 1
## 11709  789384 1
## 11710  789385 1
## 11711  789386 1
## 11712  789387 1
## 11713  789388 1
## 11714  789389 1
## 11715  789390 1
## 11716  789391 1
## 11717  789392 1
## 11718  789393 1
## 11719  789394 1
## 11720  789395 1
## 11721  789396 1
## 11722  789397 1
## 11723  789398 1
## 11724  789399 1
## 11725  789400 1
## 11726  789401 1
## 11727  789402 1
## 11728  789403 1
## 11729  789404 1
## 11730  789405 1
## 11731  789406 1
## 11732  789407 1
## 11733  789408 1
## 11734  789409 1
## 11735  789410 1
## 11736  789411 1
## 11737  789412 1
## 11738  789413 1
## 11739  789414 1
## 11740  789415 1
## 11741  789416 1
## 11742  789417 1
## 11743  789418 1
## 11744  789419 1
## 11745  789420 1
## 11746  789421 1
## 11747  789422 1
## 11748  789423 1
## 11749  789424 1
## 11750  789425 1
## 11751  789426 1
## 11752  789427 1
## 11753  789428 1
## 11754  789429 1
## 11755  789430 1
## 11756  789431 1
## 11757  789432 1
## 11758  789433 1
## 11759  789434 1
## 11760  789435 1
## 11761  789436 1
## 11762  789437 1
## 11763  789438 1
## 11764  789439 1
## 11765  789440 1
## 11766  789441 1
## 11767  789442 1
## 11768  789443 1
## 11769  789444 1
## 11770  789445 1
## 11771  789446 1
## 11772  789447 1
## 11773  789448 1
## 11774  789449 1
## 11775  789450 1
## 11776  789451 1
## 11777  789452 1
## 11778  789453 1
## 11779  789454 1
## 11780  789455 1
## 11781  789456 1
## 11782  789457 1
## 11783  789458 1
## 11784  789459 1
## 11785  789460 1
## 11786  789461 1
## 11787  789462 1
## 11788  789463 1
## 11789  789464 1
## 11790  789465 1
## 11791  789466 1
## 11792  789467 1
## 11793  789468 1
## 11794  789469 1
## 11795  789470 1
## 11796  789471 1
## 11797  789472 1
## 11798  789473 1
## 11799  789474 1
## 11800  789475 1
## 11801  789476 1
## 11802  789477 1
## 11803  789478 1
## 11804  789479 1
## 11805  789480 1
## 11806  789481 1
## 11807  789482 1
## 11808  789483 1
## 11809  789484 1
## 11810  789485 1
## 11811  789486 1
## 11812  789487 1
## 11813  789488 1
## 11814  789489 1
## 11815  789490 1
## 11816  789491 1
## 11817  789492 1
## 11818  789493 1
## 11819  789494 1
## 11820  789495 1
## 11821  789496 1
## 11822  789497 1
## 11823  789498 1
## 11824  789499 1
## 11825  789500 1
## 11826  789501 1
## 11827  789502 1
## 11828  789503 1
## 11829  789504 1
## 11830  789505 1
## 11831  789506 1
## 11832  789507 1
## 11833  789508 1
## 11834  789509 1
## 11835  789510 1
## 11836  789511 1
## 11837  789512 1
## 11838  789513 1
## 11839  789514 1
## 11840  789515 1
## 11841  789516 1
## 11842  789517 1
## 11843  789518 1
## 11844  789519 1
## 11845  789520 1
## 11846  789521 1
## 11847  789523 1
## 11848  789524 1
## 11849  789525 1
## 11850  789526 1
## 11851  789527 1
## 11852  789528 1
## 11853  789529 1
## 11854  789530 1
## 11855  789531 1
## 11856  789532 1
## 11857  789533 1
## 11858  789534 1
## 11859  789535 1
## 11860  789536 1
## 11861  789537 1
## 11862  789538 1
## 11863  789539 1
## 11864  789540 1
## 11865  789541 1
## 11866  789542 1
## 11867  789543 1
## 11868  789544 1
## 11869  789545 1
## 11870  789546 1
## 11871  789547 1
## 11872  789548 1
## 11873  789549 1
## 11874  789550 1
## 11875  789551 1
## 11876  789552 1
## 11877  789553 1
## 11878  789554 1
## 11879  789555 1
## 11880  789556 1
## 11881  789557 1
## 11882  789558 1
## 11883  789559 1
## 11884  789560 1
## 11885  789561 1
## 11886  789562 1
## 11887  789563 1
## 11888  789564 1
## 11889  789565 1
## 11890  789566 1
## 11891  789567 1
## 11892  789568 1
## 11893  789569 1
## 11894  789570 1
## 11895  789571 1
## 11896  789572 1
## 11897  789573 1
## 11898  789574 1
## 11899  789575 1
## 11900  789576 1
## 11901  789577 1
## 11902  789578 1
## 11903  789579 1
## 11904  789580 1
## 11905  789581 1
## 11906  789582 1
## 11907  789583 1
## 11908  789584 1
## 11909  789585 1
## 11910  789586 1
## 11911  789587 1
## 11912  789588 1
## 11913  789589 1
## 11914  789590 1
## 11915  789591 1
## 11916  789592 1
## 11917  789593 1
## 11918  789594 1
## 11919  789595 1
## 11920  789596 1
## 11921  789597 1
## 11922  789598 1
## 11923  789599 1
## 11924  789600 1
## 11925  789601 1
## 11926  789602 1
## 11927  789603 1
## 11928  789604 1
## 11929  789605 1
## 11930  789606 1
## 11931  789607 1
## 11932  789608 1
## 11933  789609 1
## 11934  789610 1
## 11935  789611 1
## 11936  789612 1
## 11937  789613 1
## 11938  789615 1
## 11939  789616 1
## 11940  789617 1
## 11941  789618 1
## 11942  789619 1
## 11943  789620 1
## 11944  789621 1
## 11945  789622 1
## 11946  789623 1
## 11947  789624 1
## 11948  789625 1
## 11949  789626 1
## 11950  789627 1
## 11951  789628 1
## 11952  789629 1
## 11953  789630 1
## 11954  789631 1
## 11955  789632 1
## 11956  789633 1
## 11957  789634 1
## 11958  789635 1
## 11959  789636 1
## 11960  789637 1
## 11961  789638 1
## 11962  789639 1
## 11963  789640 1
## 11964  789641 1
## 11965  789642 1
## 11966  789643 1
## 11967  789644 1
## 11968  789645 1
## 11969  789646 1
## 11970  789647 1
## 11971  789648 1
## 11972  789649 1
## 11973  789650 1
## 11974  789651 1
## 11975  789652 1
## 11976  789653 1
## 11977  789654 1
## 11978  789655 1
## 11979  789656 1
## 11980  789657 1
## 11981  789658 1
## 11982  789659 1
## 11983  789660 1
## 11984  789661 1
## 11985  789662 1
## 11986  789663 1
## 11987  789664 1
## 11988  789665 1
## 11989  789666 1
## 11990  789667 1
## 11991  789668 1
## 11992  789669 1
## 11993  789670 1
## 11994  789671 1
## 11995  789672 1
## 11996  789673 1
## 11997  789674 1
## 11998  789675 1
## 11999  789676 1
## 12000  789677 1
## 12001  789678 1
## 12002  789679 1
## 12003  789680 1
## 12004  789681 1
## 12005  789682 1
## 12006  789683 1
## 12007  789684 1
## 12008  789685 1
## 12009  789686 1
## 12010  789687 1
## 12011  789688 1
## 12012  789689 1
## 12013  789690 1
## 12014  789691 1
## 12015  789692 1
## 12016  789693 1
## 12017  789694 1
## 12018  789695 1
## 12019  789696 1
## 12020  789697 1
## 12021  789698 1
## 12022  789699 1
## 12023  789700 1
## 12024  789701 1
## 12025  789702 1
## 12026  789703 1
## 12027  789704 1
## 12028  789705 1
## 12029  789706 1
## 12030  789707 1
## 12031  789708 1
## 12032  789709 1
## 12033  789710 1
## 12034  789711 1
## 12035  789712 1
## 12036  789713 1
## 12037  789714 1
## 12038  789715 1
## 12039  789716 1
## 12040  789717 1
## 12041  789718 1
## 12042  789719 1
## 12043  789720 1
## 12044  789721 1
## 12045  789722 1
## 12046  789723 1
## 12047  789724 1
## 12048  789725 1
## 12049  789726 1
## 12050  789727 1
## 12051  789728 1
## 12052  789729 1
## 12053  789730 1
## 12054  789731 1
## 12055  789732 1
## 12056  789733 1
## 12057  789734 1
## 12058  789735 1
## 12059  789736 1
## 12060  789737 1
## 12061  789738 1
## 12062  789739 1
## 12063  789740 1
## 12064  789741 1
## 12065  789742 1
## 12066  789743 1
## 12067  789744 1
## 12068  789745 1
## 12069  789746 1
## 12070  789747 1
## 12071  789748 1
## 12072  789749 1
## 12073  789750 1
## 12074  789751 1
## 12075  789752 1
## 12076  789753 1
## 12077  789754 1
## 12078  789755 1
## 12079  789756 1
## 12080  789757 1
## 12081  789758 1
## 12082  789759 1
## 12083  789760 1
## 12084  789761 1
## 12085  789762 1
## 12086  789763 1
## 12087  789764 1
## 12088  789765 1
## 12089  789766 1
## 12090  789767 1
## 12091  789768 1
## 12092  789769 1
## 12093  789770 1
## 12094  789771 1
## 12095  789772 1
## 12096  789773 1
## 12097  789774 1
## 12098  789775 1
## 12099  789776 1
## 12100  789777 1
## 12101  789778 1
## 12102  789779 1
## 12103  789780 1
## 12104  789781 1
## 12105  789782 1
## 12106  789783 1
## 12107  789784 1
## 12108  789785 1
## 12109  789786 1
## 12110  789787 1
## 12111  789788 1
## 12112  789789 1
## 12113  789790 1
## 12114  789791 1
## 12115  789792 1
## 12116  789793 1
## 12117  789794 1
## 12118  789795 1
## 12119  789796 1
## 12120  789797 1
## 12121  789798 1
## 12122  789799 1
## 12123  789800 1
## 12124  789801 1
## 12125  789802 1
## 12126  789803 1
## 12127  789804 1
## 12128  789805 1
## 12129  789806 1
## 12130  789807 1
## 12131  789808 1
## 12132  789809 1
## 12133  789810 1
## 12134  789811 1
## 12135  789812 1
## 12136  789813 1
## 12137  789814 1
## 12138  789815 1
## 12139  789816 1
## 12140  789817 1
## 12141  789818 1
## 12142  789819 1
## 12143  789820 1
## 12144  789821 1
## 12145  789822 1
## 12146  789823 1
## 12147  789824 1
## 12148  789825 1
## 12149  789826 1
## 12150  789827 1
## 12151  789828 1
## 12152  789829 1
## 12153  789830 1
## 12154  789831 1
## 12155  789832 1
## 12156  789833 1
## 12157  789834 1
## 12158  789835 1
## 12159  789836 1
## 12160  789837 1
## 12161  789838 1
## 12162  789839 1
## 12163  789840 1
## 12164  789841 1
## 12165  789842 1
## 12166  789843 1
## 12167  789844 1
## 12168  789845 1
## 12169  789846 1
## 12170  789847 1
## 12171  789848 1
## 12172  789849 1
## 12173  789850 1
## 12174  789851 1
## 12175  789852 1
## 12176  789853 1
## 12177  789854 1
## 12178  789855 1
## 12179  789856 1
## 12180  789857 1
## 12181  789858 1
## 12182  789859 1
## 12183  789860 1
## 12184  789861 1
## 12185  789862 1
## 12186  789863 1
## 12187  789864 1
## 12188  789865 1
## 12189  789866 1
## 12190  789867 1
## 12191  789868 1
## 12192  789869 1
## 12193  789870 1
## 12194  789871 1
## 12195  789872 1
## 12196  789873 1
## 12197  789874 1
## 12198  789875 1
## 12199  789876 1
## 12200  789877 1
## 12201  789878 1
## 12202  789879 1
## 12203  789880 1
## 12204  789881 1
## 12205  789882 1
## 12206  789883 1
## 12207  789884 1
## 12208  789885 1
## 12209  789886 1
## 12210  789887 1
## 12211  789888 1
## 12212  789889 1
## 12213  789890 1
## 12214  789891 1
## 12215  789892 1
## 12216  789893 1
## 12217  789894 1
## 12218  789895 1
## 12219  789896 1
## 12220  789897 1
## 12221  789898 1
## 12222  789899 1
## 12223  789900 1
## 12224  789901 1
## 12225  789902 1
## 12226  789903 1
## 12227  789904 1
## 12228  789905 1
## 12229  789907 1
## 12230  789908 1
## 12231  789909 1
## 12232  789910 1
## 12233  789911 1
## 12234  789912 1
## 12235  789913 1
## 12236  789914 1
## 12237  789915 1
## 12238  789916 1
## 12239  789917 1
## 12240  789918 1
## 12241  789919 1
## 12242  789920 1
## 12243  789921 1
## 12244  789922 1
## 12245  789923 1
## 12246  789924 1
## 12247  789925 1
## 12248  789926 1
## 12249  789927 1
## 12250  789928 1
## 12251  789929 1
## 12252  789930 1
## 12253  789931 1
## 12254  789932 1
## 12255  789933 1
## 12256  789934 1
## 12257  789935 1
## 12258  789936 1
## 12259  789937 1
## 12260  789938 1
## 12261  789939 1
## 12262  789940 1
## 12263  789941 1
## 12264  789942 1
## 12265  789943 1
## 12266  789944 1
## 12267  789945 1
## 12268  789946 1
## 12269  789947 1
## 12270  789948 1
## 12271  789949 1
## 12272  789950 1
## 12273  789951 1
## 12274  789952 1
## 12275  789953 1
## 12276  789954 1
## 12277  789955 1
## 12278  789956 1
## 12279  789957 1
## 12280  789958 1
## 12281  789959 1
## 12282  789960 1
## 12283  789961 1
## 12284  789962 1
## 12285  789963 1
## 12286  789964 1
## 12287  789965 1
## 12288  789966 1
## 12289  789967 1
## 12290  789968 1
## 12291  789969 1
## 12292  789970 1
## 12293  789971 1
## 12294  789972 1
## 12295  789973 1
## 12296  789974 1
## 12297  789975 1
## 12298  789976 1
## 12299  789977 1
## 12300  789978 1
## 12301  789979 1
## 12302  789980 1
## 12303  789981 1
## 12304  789982 1
## 12305  789983 1
## 12306  789984 1
## 12307  789985 1
## 12308  789986 1
## 12309  789987 1
## 12310  789988 1
## 12311  789989 1
## 12312  789990 1
## 12313  789991 1
## 12314  789992 1
## 12315  789993 1
## 12316  789994 1
## 12317  789995 1
## 12318  789996 1
## 12319  789997 1
## 12320  789998 1
## 12321  789999 1
## 12322  790000 1
## 12323  790001 1
## 12324  790002 1
## 12325  790003 1
## 12326  790004 1
## 12327  790005 1
## 12328  790006 1
## 12329  790007 1
## 12330  790008 1
## 12331  790009 1
## 12332  790010 1
## 12333  790011 1
## 12334  790012 1
## 12335  790013 1
## 12336  790014 1
## 12337  790015 1
## 12338  790016 1
## 12339  790017 1
## 12340  790018 1
## 12341  790019 1
## 12342  790020 1
## 12343  790021 1
## 12344  790022 1
## 12345  790023 1
## 12346  790024 1
## 12347  790025 1
## 12348  790026 1
## 12349  790027 1
## 12350  790028 1
## 12351  790029 1
## 12352  790030 1
## 12353  790031 1
## 12354  790032 1
## 12355  790033 1
## 12356  790034 1
## 12357  790035 1
## 12358  790036 1
## 12359  790037 1
## 12360  790038 1
## 12361  790039 1
## 12362  790040 1
## 12363  790041 1
## 12364  790042 1
## 12365  790043 1
## 12366  790044 1
## 12367  790046 1
## 12368  790047 1
## 12369  790048 1
## 12370  790049 1
## 12371  790050 1
## 12372  790051 1
## 12373  790052 1
## 12374  790053 1
## 12375  790054 1
## 12376  790055 1
## 12377  790056 1
## 12378  790057 1
## 12379  790058 1
## 12380  790059 1
## 12381  790060 1
## 12382  790061 1
## 12383  790062 1
## 12384  790063 1
## 12385  790064 1
## 12386  790065 1
## 12387  790066 1
## 12388  790067 1
## 12389  790068 1
## 12390  790069 1
## 12391  790070 1
## 12392  790071 1
## 12393  790072 1
## 12394  790073 1
## 12395  790074 1
## 12396  790075 1
## 12397  790076 1
## 12398  790077 1
## 12399  790078 1
## 12400  790079 1
## 12401  790080 1
## 12402  790081 1
## 12403  790082 1
## 12404  790083 1
## 12405  790084 1
## 12406  790085 1
## 12407  790086 1
## 12408  790087 1
## 12409  790088 1
## 12410  790089 1
## 12411  790090 1
## 12412  790091 1
## 12413  790092 1
## 12414  790093 1
## 12415  790094 1
## 12416  790095 1
## 12417  790096 1
## 12418  790097 1
## 12419  790098 1
## 12420  790099 1
## 12421  790101 1
## 12422  790102 1
## 12423  790103 1
## 12424  790104 1
## 12425  790105 1
## 12426  790106 1
## 12427  790107 1
## 12428  790108 1
## 12429  790109 1
## 12430  790110 1
## 12431  790111 1
## 12432  790112 1
## 12433  790113 1
## 12434  790114 1
## 12435  790115 1
## 12436  790116 1
## 12437  790117 1
## 12438  790118 1
## 12439  790119 1
## 12440  790120 1
## 12441  790121 1
## 12442  790122 1
## 12443  790123 1
## 12444  790124 1
## 12445  790125 1
## 12446  790126 1
## 12447  790127 1
## 12448  790128 1
## 12449  790129 1
## 12450  790130 1
## 12451  790131 1
## 12452  790132 1
## 12453  790133 1
## 12454  790134 1
## 12455  790135 1
## 12456  790136 1
## 12457  790137 1
## 12458  790138 1
## 12459  790139 1
## 12460  790140 1
## 12461  790141 1
## 12462  790142 1
## 12463  790143 1
## 12464  790144 1
## 12465  790145 1
## 12466  790146 1
## 12467  790147 1
## 12468  790148 1
## 12469  790149 1
## 12470  790150 1
## 12471  790151 1
## 12472  790152 1
## 12473  790153 1
## 12474  790154 1
## 12475  790155 1
## 12476  790156 1
## 12477  790157 1
## 12478  790158 1
## 12479  790159 1
## 12480  790160 1
## 12481  790161 1
## 12482  790162 1
## 12483  790163 1
## 12484  790164 1
## 12485  790165 1
## 12486  790166 1
## 12487  790167 1
## 12488  790168 1
## 12489  790169 1
## 12490  790170 1
## 12491  790171 1
## 12492  790172 1
## 12493  790173 1
## 12494  790174 1
## 12495  790175 1
## 12496  790176 1
## 12497  790177 1
## 12498  790178 1
## 12499  790179 1
## 12500  790180 1
## 12501  790181 1
## 12502  790182 1
## 12503  790183 1
## 12504  790184 1
## 12505  790185 1
## 12506  790186 1
## 12507  790187 1
## 12508  790188 1
## 12509  790189 1
## 12510  790190 1
## 12511  790191 1
## 12512  790192 1
## 12513  790193 1
## 12514  790194 1
## 12515  790195 1
## 12516  790196 1
## 12517  790197 1
## 12518  790198 1
## 12519  790199 1
## 12520  790200 1
## 12521  790201 1
## 12522  790202 1
## 12523  790203 1
## 12524  790204 1
## 12525  790205 1
## 12526  790206 1
## 12527  790207 1
## 12528  790208 1
## 12529  790209 1
## 12530  790210 1
## 12531  790211 1
## 12532  790212 1
## 12533  790213 1
## 12534  790214 1
## 12535  790215 1
## 12536  790216 1
## 12537  790217 1
## 12538  790218 1
## 12539  790219 1
## 12540  790220 1
## 12541  790221 1
## 12542  790222 1
## 12543  790223 1
## 12544  790224 1
## 12545  790225 1
## 12546  790226 1
## 12547  790227 1
## 12548  790228 1
## 12549  790229 1
## 12550  790230 1
## 12551  790231 1
## 12552  790232 1
## 12553  790233 1
## 12554  790234 1
## 12555  790235 1
## 12556  790236 1
## 12557  790237 1
## 12558  790238 1
## 12559  790239 1
## 12560  790240 1
## 12561  790241 1
## 12562  790242 1
## 12563  790243 1
## 12564  790244 1
## 12565  790245 1
## 12566  790247 1
## 12567  790248 1
## 12568  790249 1
## 12569  790250 1
## 12570  790251 1
## 12571  790252 1
## 12572  790253 1
## 12573  790254 1
## 12574  790255 1
## 12575  790256 1
## 12576  790257 1
## 12577  790258 1
## 12578  790259 1
## 12579  790260 1
## 12580  790261 1
## 12581  790262 1
## 12582  790263 1
## 12583  790264 1
## 12584  790265 1
## 12585  790266 1
## 12586  790267 1
## 12587  790268 1
## 12588  790269 1
## 12589  790270 1
## 12590  790271 1
## 12591  790272 1
## 12592  790273 1
## 12593  790274 1
## 12594  790275 1
## 12595  790276 1
## 12596  790277 1
## 12597  790278 1
## 12598  790279 1
## 12599  790280 1
## 12600  790281 1
## 12601  790282 1
## 12602  790283 1
## 12603  790284 1
## 12604  790285 1
## 12605  790286 1
## 12606  790287 1
## 12607  790288 1
## 12608  790289 1
## 12609  790290 1
## 12610  790291 1
## 12611  790292 1
## 12612  790293 1
## 12613  790294 1
## 12614  790295 1
## 12615  790296 1
## 12616  790297 1
## 12617  790298 1
## 12618  790299 1
## 12619  790300 1
## 12620  790301 1
## 12621  790302 1
## 12622  790303 1
## 12623  790304 1
## 12624  790305 1
## 12625  790306 1
## 12626  790307 1
## 12627  790308 1
## 12628  790309 1
## 12629  790310 1
## 12630  790311 1
## 12631  790312 1
## 12632  790313 1
## 12633  790314 1
## 12634  790315 1
## 12635  790316 1
## 12636  790317 1
## 12637  790318 1
## 12638  790319 1
## 12639  790320 1
## 12640  790321 1
## 12641  790322 1
## 12642  790323 1
## 12643  790324 1
## 12644  790325 1
## 12645  790326 1
## 12646  790327 1
## 12647  790328 1
## 12648  790329 1
## 12649  790330 1
## 12650  790331 1
## 12651  790332 1
## 12652  790333 1
## 12653  790334 1
## 12654  790335 1
## 12655  790336 1
## 12656  790337 1
## 12657  790338 1
## 12658  790339 1
## 12659  790340 1
## 12660  790341 1
## 12661  790342 1
## 12662  790343 1
## 12663  790344 1
## 12664  790345 1
## 12665  790346 1
## 12666  790347 1
## 12667  790348 1
## 12668  790349 1
## 12669  790350 1
## 12670  790351 1
## 12671  790352 1
## 12672  790353 1
## 12673  790354 1
## 12674  790355 1
## 12675  790356 1
## 12676  790357 1
## 12677  790358 1
## 12678  790359 1
## 12679  790360 1
## 12680  790361 1
## 12681  790362 1
## 12682  790363 1
## 12683  790364 1
## 12684  790365 1
## 12685  790366 1
## 12686  790367 1
## 12687  790368 1
## 12688  790369 1
## 12689  790370 1
## 12690  790371 1
## 12691  790372 1
## 12692  790373 1
## 12693  790374 1
## 12694  790375 1
## 12695  790376 1
## 12696  790377 1
## 12697  790378 1
## 12698  790379 1
## 12699  790380 1
## 12700  790381 1
## 12701  790382 1
## 12702  790383 1
## 12703  790384 1
## 12704  790385 1
## 12705  790386 1
## 12706  790387 1
## 12707  790388 1
## 12708  790389 1
## 12709  790390 1
## 12710  790391 1
## 12711  790392 1
## 12712  790393 1
## 12713  790394 1
## 12714  790395 1
## 12715  790396 1
## 12716  790397 1
## 12717  790398 1
## 12718  790399 1
## 12719  790400 1
## 12720  790402 1
## 12721  790403 1
## 12722  790404 1
## 12723  790405 1
## 12724  790406 1
## 12725  790407 1
## 12726  790408 1
## 12727  790409 1
## 12728  790410 1
## 12729  790411 1
## 12730  790412 1
## 12731  790413 1
## 12732  790414 1
## 12733  790415 1
## 12734  790416 1
## 12735  790417 1
## 12736  790418 1
## 12737  790419 1
## 12738  790420 1
## 12739  790421 1
## 12740  790422 1
## 12741  790423 1
## 12742  790424 1
## 12743  790425 1
## 12744  790426 1
## 12745  790427 1
## 12746  790428 1
## 12747  790429 1
## 12748  790430 1
## 12749  790431 1
## 12750  790432 1
## 12751  790433 1
## 12752  790434 1
## 12753  790435 1
## 12754  790436 1
## 12755  790437 1
## 12756  790438 1
## 12757  790439 1
## 12758  790440 1
## 12759  790441 1
## 12760  790442 1
## 12761  790443 1
## 12762  790444 1
## 12763  790445 1
## 12764  790446 1
## 12765  790447 1
## 12766  790448 1
## 12767  790449 1
## 12768  790450 1
## 12769  790451 1
## 12770  790452 1
## 12771  790453 1
## 12772  790454 1
## 12773  790455 1
## 12774  790456 1
## 12775  790457 1
## 12776  790458 1
## 12777  790460 1
## 12778  790461 1
## 12779  790462 1
## 12780  790463 1
## 12781  790464 1
## 12782  790465 1
## 12783  790466 1
## 12784  790467 1
## 12785  790468 1
## 12786  790469 1
## 12787  790470 1
## 12788  790471 1
## 12789  790472 1
## 12790  790473 1
## 12791  790474 1
## 12792  790475 1
## 12793  790476 1
## 12794  790477 1
## 12795  790478 1
## 12796  790479 1
## 12797  790480 1
## 12798  790481 1
## 12799  790482 1
## 12800  790483 1
## 12801  790484 1
## 12802  790485 1
## 12803  790486 1
## 12804  790487 1
## 12805  790488 1
## 12806  790489 1
## 12807  790490 1
## 12808  790491 1
## 12809  790492 1
## 12810  790493 1
## 12811  790494 1
## 12812  790495 1
## 12813  790496 1
## 12814  790497 1
## 12815  790498 1
## 12816  790499 1
## 12817  790500 1
## 12818  790501 1
## 12819  790502 1
## 12820  790503 1
## 12821  790504 1
## 12822  790505 1
## 12823  790506 1
## 12824  790507 1
## 12825  790508 1
## 12826  790509 1
## 12827  790510 1
## 12828  790511 1
## 12829  790512 1
## 12830  790513 1
## 12831  790514 1
## 12832  790515 1
## 12833  790516 1
## 12834  790517 1
## 12835  790518 1
## 12836  790519 1
## 12837  790520 1
## 12838  790521 1
## 12839  790522 1
## 12840  790523 1
## 12841  790524 1
## 12842  790525 1
## 12843  790526 1
## 12844  790527 1
## 12845  790528 1
## 12846  790529 1
## 12847  790530 1
## 12848  790531 1
## 12849  790532 1
## 12850  790533 1
## 12851  790534 1
## 12852  790535 1
## 12853  790536 1
## 12854  790537 1
## 12855  790538 1
## 12856  790539 1
## 12857  790540 1
## 12858  790541 1
## 12859  790542 1
## 12860  790543 1
## 12861  790544 1
## 12862  790545 1
## 12863  790546 1
## 12864  790547 1
## 12865  790548 1
## 12866  790549 1
## 12867  790550 1
## 12868  790551 1
## 12869  790552 1
## 12870  790553 1
## 12871  790554 1
## 12872  790555 1
## 12873  790556 1
## 12874  790557 1
## 12875  790558 1
## 12876  790559 1
## 12877  790560 1
## 12878  790561 1
## 12879  790562 1
## 12880  790563 1
## 12881  790564 1
## 12882  790565 1
## 12883  790566 1
## 12884  790567 1
## 12885  790568 1
## 12886  790569 1
## 12887  790570 1
## 12888  790571 1
## 12889  790572 1
## 12890  790573 1
## 12891  790574 1
## 12892  790575 1
## 12893  790576 1
## 12894  790577 1
## 12895  790578 1
## 12896  790579 1
## 12897  790580 1
## 12898  790581 1
## 12899  790582 1
## 12900  790583 1
## 12901  790584 1
## 12902  790585 1
## 12903  790586 1
## 12904  790587 1
## 12905  790588 1
## 12906  790589 1
## 12907  790590 1
## 12908  790591 1
## 12909  790592 1
## 12910  790593 1
## 12911  790594 1
## 12912  790595 1
## 12913  790596 1
## 12914  790597 1
## 12915  790598 1
## 12916  790599 1
## 12917  790600 1
## 12918  790601 1
## 12919  790602 1
## 12920  790603 1
## 12921  790604 1
## 12922  790605 1
## 12923  790606 1
## 12924  790607 1
## 12925  790608 1
## 12926  790609 1
## 12927  790610 1
## 12928  790611 1
## 12929  790612 1
## 12930  790613 1
## 12931  790614 1
## 12932  790615 1
## 12933  790616 1
## 12934  790617 1
## 12935  790618 1
## 12936  790619 1
## 12937  790620 1
## 12938  790621 1
## 12939  790622 1
## 12940  790623 1
## 12941  790624 1
## 12942  790625 1
## 12943  790626 1
## 12944  790627 1
## 12945  790628 1
## 12946  790629 1
## 12947  790630 1
## 12948  790631 1
## 12949  790632 1
## 12950  790633 1
## 12951  790634 1
## 12952  790635 1
## 12953  790636 1
## 12954  790637 1
## 12955  790638 1
## 12956  790639 1
## 12957  790640 1
## 12958  790641 1
## 12959  790642 1
## 12960  790643 1
## 12961  790644 1
## 12962  790645 1
## 12963  790646 1
## 12964  790647 1
## 12965  790648 1
## 12966  790649 1
## 12967  790650 1
## 12968  790651 1
## 12969  790652 1
## 12970  790653 1
## 12971  790654 1
## 12972  790655 1
## 12973  790656 1
## 12974  790657 1
## 12975  790658 1
## 12976  790659 1
## 12977  790660 1
## 12978  790661 1
## 12979  790662 1
## 12980  790663 1
## 12981  790664 1
## 12982  790665 1
## 12983  790666 1
## 12984  790667 1
## 12985  790668 1
## 12986  790669 1
## 12987  790670 1
## 12988  790671 1
## 12989  790672 1
## 12990  790673 1
## 12991  790674 1
## 12992  790675 1
## 12993  790676 1
## 12994  790677 1
## 12995  790678 1
## 12996  790679 1
## 12997  790680 1
## 12998  790681 1
## 12999  790682 1
## 13000  790683 1
## 13001  790684 1
## 13002  790685 1
## 13003  790686 1
## 13004  790687 1
## 13005  790688 1
## 13006  790689 1
## 13007  790690 1
## 13008  790691 1
## 13009  790692 1
## 13010  790693 1
## 13011  790694 1
## 13012  790695 1
## 13013  790696 1
## 13014  790697 1
## 13015  790698 1
## 13016  790699 1
## 13017  790700 1
## 13018  790701 1
## 13019  790702 1
## 13020  790703 1
## 13021  790704 1
## 13022  790705 1
## 13023  790706 1
## 13024  790707 1
## 13025  790708 1
## 13026  790709 1
## 13027  790710 1
## 13028  790711 1
## 13029  790712 1
## 13030  790713 1
## 13031  790714 1
## 13032  790715 1
## 13033  790716 1
## 13034  790717 1
## 13035  790718 1
## 13036  790719 1
## 13037  790720 1
## 13038  790721 1
## 13039  790722 1
## 13040  790723 1
## 13041  790724 1
## 13042  790725 1
## 13043  790726 1
## 13044  790727 1
## 13045  790728 1
## 13046  790729 1
## 13047  790730 1
## 13048  790731 1
## 13049  790732 1
## 13050  790733 1
## 13051  790734 1
## 13052  790735 1
## 13053  790736 1
## 13054  790737 1
## 13055  790738 1
## 13056  790739 1
## 13057  790740 1
## 13058  790741 1
## 13059  790742 1
## 13060  790743 1
## 13061  790744 1
## 13062  790745 1
## 13063  790746 1
## 13064  790747 1
## 13065  790748 1
## 13066  790749 1
## 13067  790750 1
## 13068  790751 1
## 13069  790752 1
## 13070  790753 1
## 13071  790754 1
## 13072  790755 1
## 13073  790756 1
## 13074  790757 1
## 13075  790758 1
## 13076  790759 1
## 13077  790760 1
## 13078  790761 1
## 13079  790762 1
## 13080  790763 1
## 13081  790764 1
## 13082  790765 1
## 13083  790766 1
## 13084  790767 1
## 13085  790768 1
## 13086  790769 1
## 13087  790770 1
## 13088  790771 1
## 13089  790772 1
## 13090  790773 1
## 13091  790774 1
## 13092  790775 1
## 13093  790776 1
## 13094  790777 1
## 13095  790778 1
## 13096  790779 1
## 13097  790780 1
## 13098  790781 1
## 13099  790782 1
## 13100  790783 1
## 13101  790784 1
## 13102  790785 1
## 13103  790786 1
## 13104  790787 1
## 13105  790788 1
## 13106  790789 1
## 13107  790790 1
## 13108  790791 1
## 13109  790792 1
## 13110  790793 1
## 13111  790794 1
## 13112  790795 1
## 13113  790796 1
## 13114  790797 1
## 13115  790798 1
## 13116  790799 1
## 13117  790800 1
## 13118  790801 1
## 13119  790802 1
## 13120  790803 1
## 13121  790804 1
## 13122  790805 1
## 13123  790806 1
## 13124  790807 1
## 13125  790808 1
## 13126  790809 1
## 13127  790810 1
## 13128  790811 1
## 13129  790812 1
## 13130  790813 1
## 13131  790814 1
## 13132  790815 1
## 13133  790816 1
## 13134  790817 1
## 13135  790818 1
## 13136  790819 1
## 13137  790820 1
## 13138  790821 1
## 13139  790822 1
## 13140  790823 1
## 13141  790824 1
## 13142  790825 1
## 13143  790826 1
## 13144  790827 1
## 13145  790828 1
## 13146  790829 1
## 13147  790830 1
## 13148  790831 1
## 13149  790832 1
## 13150  790833 1
## 13151  790834 1
## 13152  790835 1
## 13153  790836 1
## 13154  790837 1
## 13155  790838 1
## 13156  790839 1
## 13157  790840 1
## 13158  790841 1
## 13159  790842 1
## 13160  790843 1
## 13161  790844 1
## 13162  790845 1
## 13163  790846 1
## 13164  790847 1
## 13165  790848 1
## 13166  790849 1
## 13167  790850 1
## 13168  790851 1
## 13169  790852 1
## 13170  790853 1
## 13171  790854 1
## 13172  790855 1
## 13173  790856 1
## 13174  790857 1
## 13175  790858 1
## 13176  790859 1
## 13177  790860 1
## 13178  790861 1
## 13179  790862 1
## 13180  790863 1
## 13181  790864 1
## 13182  790865 1
## 13183  790866 1
## 13184  790867 1
## 13185  790868 1
## 13186  790869 1
## 13187  790870 1
## 13188  790871 1
## 13189  790872 1
## 13190  790873 1
## 13191  790874 1
## 13192  790875 1
## 13193  790876 1
## 13194  790877 1
## 13195  790878 1
## 13196  790879 1
## 13197  790880 1
## 13198  790881 1
## 13199  790882 1
## 13200  790883 1
## 13201  790884 1
## 13202  790885 1
## 13203  790886 1
## 13204  790887 1
## 13205  790888 1
## 13206  790889 1
## 13207  790890 1
## 13208  790891 1
## 13209  790892 1
## 13210  790893 1
## 13211  790894 1
## 13212  790895 1
## 13213  790896 1
## 13214  790897 1
## 13215  790898 1
## 13216  790899 1
## 13217  790900 1
## 13218  790901 1
## 13219  790902 1
## 13220  790903 1
## 13221  790904 1
## 13222  790905 1
## 13223  790906 1
## 13224  790907 1
## 13225  790908 1
## 13226  790909 1
## 13227  790910 1
## 13228  790911 1
## 13229  790912 1
## 13230  790913 1
## 13231  790914 1
## 13232  790915 1
## 13233  790916 1
## 13234  790917 1
## 13235  790918 1
## 13236  790919 1
## 13237  790920 1
## 13238  790921 1
## 13239  790922 1
## 13240  790923 1
## 13241  790924 1
## 13242  790925 1
## 13243  790926 1
## 13244  790927 1
## 13245  790928 1
## 13246  790929 1
## 13247  790930 1
## 13248  790931 1
## 13249  790932 1
## 13250  790933 1
## 13251  790934 1
## 13252  790935 1
## 13253  790936 1
## 13254  790937 1
## 13255  790938 1
## 13256  790939 1
## 13257  790940 1
## 13258  790941 1
## 13259  790942 1
## 13260  790943 1
## 13261  790944 1
## 13262  790945 1
## 13263  790946 1
## 13264  790947 1
## 13265  790948 1
## 13266  790949 1
## 13267  790950 1
## 13268  790951 1
## 13269  790952 1
## 13270  790953 1
## 13271  790954 1
## 13272  790955 1
## 13273  790956 1
## 13274  790957 1
## 13275  790958 1
## 13276  790959 1
## 13277  790960 1
## 13278  790961 1
## 13279  790962 1
## 13280  790963 1
## 13281  790964 1
## 13282  790965 1
## 13283  790966 1
## 13284  790967 1
## 13285  790968 1
## 13286  790969 1
## 13287  790970 1
## 13288  790971 1
## 13289  790972 1
## 13290  790973 1
## 13291  790974 1
## 13292  790975 1
## 13293  790976 1
## 13294  790977 1
## 13295  790978 1
## 13296  790979 1
## 13297  790980 1
## 13298  790981 1
## 13299  790982 1
## 13300  790983 1
## 13301  790984 1
## 13302  790985 1
## 13303  790986 1
## 13304  790987 1
## 13305  790988 1
## 13306  790989 1
## 13307  790990 1
## 13308  790991 1
## 13309  790992 1
## 13310  790993 1
## 13311  790994 1
## 13312  790995 1
## 13313  790996 1
## 13314  790997 1
## 13315  790998 1
## 13316  790999 1
## 13317  791000 1
## 13318  791001 1
## 13319  791002 1
## 13320  791003 1
## 13321  791004 1
## 13322  791005 1
## 13323  791006 1
## 13324  791007 1
## 13325  791008 1
## 13326  791009 1
## 13327  791010 1
## 13328  791011 1
## 13329  791012 1
## 13330  791013 1
## 13331  791014 1
## 13332  791015 1
## 13333  791016 1
## 13334  791017 1
## 13335  791018 1
## 13336  791019 1
## 13337  791020 1
## 13338  791021 1
## 13339  791022 1
## 13340  791023 1
## 13341  791024 1
## 13342  791025 1
## 13343  791026 1
## 13344  791027 1
## 13345  791028 1
## 13346  791029 1
## 13347  791030 1
## 13348  791031 1
## 13349  791032 1
## 13350  791033 1
## 13351  791034 1
## 13352  791035 1
## 13353  791036 1
## 13354  791037 1
## 13355  791038 1
## 13356  791039 1
## 13357  791040 1
## 13358  791041 1
## 13359  791042 1
## 13360  791043 1
## 13361  791044 1
## 13362  791045 1
## 13363  791046 1
## 13364  791047 1
## 13365  791048 1
## 13366  791049 1
## 13367  791050 1
## 13368  791051 1
## 13369  791052 1
## 13370  791053 1
## 13371  791054 1
## 13372  791055 1
## 13373  791056 1
## 13374  791057 1
## 13375  791058 1
## 13376  791059 1
## 13377  791060 1
## 13378  791061 1
## 13379  791062 1
## 13380  791063 1
## 13381  791064 1
## 13382  791065 1
## 13383  791066 1
## 13384  791067 1
## 13385  791068 1
## 13386  791069 1
## 13387  791070 1
## 13388  791071 1
## 13389  791072 1
## 13390  791073 1
## 13391  791074 1
## 13392  791075 1
## 13393  791076 1
## 13394  791077 1
## 13395  791078 1
## 13396  791079 1
## 13397  791080 1
## 13398  791081 1
## 13399  791082 1
## 13400  791083 1
## 13401  791084 1
## 13402  791085 1
## 13403  791086 1
## 13404  791087 1
## 13405  791088 1
## 13406  791089 1
## 13407  791090 1
## 13408  791091 1
## 13409  791092 1
## 13410  791093 1
## 13411  791094 1
## 13412  791095 1
## 13413  791096 1
## 13414  791097 1
## 13415  791098 1
## 13416  791099 1
## 13417  791100 1
## 13418  791101 1
## 13419  791102 1
## 13420  791103 1
## 13421  791104 1
## 13422  791105 1
## 13423  791106 1
## 13424  791107 1
## 13425  791108 1
## 13426  791109 1
## 13427  791110 1
## 13428  791111 1
## 13429  791112 1
## 13430  791113 1
## 13431  791114 1
## 13432  791115 1
## 13433  791116 1
## 13434  791117 1
## 13435  791118 1
## 13436  791119 1
## 13437  791120 1
## 13438  791121 1
## 13439  791122 1
## 13440  791123 1
## 13441  791124 1
## 13442  791125 1
## 13443  791126 1
## 13444  791127 1
## 13445  791128 1
## 13446  791129 1
## 13447  791130 1
## 13448  791131 1
## 13449  791132 1
## 13450  791133 1
## 13451  791134 1
## 13452  791135 1
## 13453  791136 1
## 13454  791137 1
## 13455  791138 1
## 13456  791139 1
## 13457  791140 1
## 13458  791141 1
## 13459  791142 1
## 13460  791143 1
## 13461  791144 1
## 13462  791145 1
## 13463  791146 1
## 13464  791147 1
## 13465  791148 1
## 13466  791149 1
## 13467  791150 1
## 13468  791151 1
## 13469  791152 1
## 13470  791153 1
## 13471  791154 1
## 13472  791155 1
## 13473  791156 1
## 13474  791157 1
## 13475  791158 1
## 13476  791159 1
## 13477  791160 1
## 13478  791162 1
## 13479  791163 1
## 13480  791164 1
## 13481  791165 1
## 13482  791166 1
## 13483  791167 1
## 13484  791168 1
## 13485  791169 1
## 13486  791170 1
## 13487  791171 1
## 13488  791172 1
## 13489  791173 1
## 13490  791174 1
## 13491  791175 1
## 13492  791176 1
## 13493  791177 1
## 13494  791178 1
## 13495  791179 1
## 13496  791180 1
## 13497  791181 1
## 13498  791182 1
## 13499  791183 1
## 13500  791184 1
## 13501  791185 1
## 13502  791186 1
## 13503  791187 1
## 13504  791188 1
## 13505  791189 1
## 13506  791190 1
## 13507  791191 1
## 13508  791192 1
## 13509  791193 1
## 13510  791194 1
## 13511  791195 1
## 13512  791196 1
## 13513  791197 1
## 13514  791198 1
## 13515  791199 1
## 13516  791200 1
## 13517  791201 1
## 13518  791202 1
## 13519  791203 1
## 13520  791204 1
## 13521  791205 1
## 13522  791206 1
## 13523  791207 1
## 13524  791208 1
## 13525  791209 1
## 13526  791210 1
## 13527  791211 1
## 13528  791212 1
## 13529  791213 1
## 13530  791214 1
## 13531  791215 1
## 13532  791216 1
## 13533  791217 1
## 13534  791218 1
## 13535  791219 1
## 13536  791220 1
## 13537  791221 1
## 13538  791222 1
## 13539  791223 1
## 13540  791224 1
## 13541  791225 1
## 13542  791226 1
## 13543  791227 1
## 13544  791228 1
## 13545  791229 1
## 13546  791230 1
## 13547  791231 1
## 13548  791232 1
## 13549  791233 1
## 13550  791234 1
## 13551  791235 1
## 13552  791236 1
## 13553  791237 1
## 13554  791238 1
## 13555  791239 1
## 13556  791240 1
## 13557  791241 1
## 13558  791242 1
## 13559  791243 1
## 13560  791244 1
## 13561  791245 1
## 13562  791246 1
## 13563  791247 1
## 13564  791248 1
## 13565  791249 1
## 13566  791250 1
## 13567  791251 1
## 13568  791252 1
## 13569  791253 1
## 13570  791254 1
## 13571  791255 1
## 13572  791256 1
## 13573  791257 1
## 13574  791258 1
## 13575  791259 1
## 13576  791260 1
## 13577  791261 1
## 13578  791262 1
## 13579  791263 1
## 13580  791264 1
## 13581  791265 1
## 13582  791266 1
## 13583  791267 1
## 13584  791268 1
## 13585  791269 1
## 13586  791270 1
## 13587  791271 1
## 13588  791272 1
## 13589  791273 1
## 13590  791274 1
## 13591  791275 1
## 13592  791276 1
## 13593  791277 1
## 13594  791278 1
## 13595  791279 1
## 13596  791280 1
## 13597  791281 1
## 13598  791282 1
## 13599  791283 1
## 13600  791284 1
## 13601  791285 1
## 13602  791286 1
## 13603  791287 1
## 13604  791288 1
## 13605  791289 1
## 13606  791290 1
## 13607  791291 1
## 13608  791292 1
## 13609  791293 1
## 13610  791294 1
## 13611  791295 1
## 13612  791296 1
## 13613  791297 1
## 13614  791298 1
## 13615  791299 1
## 13616  791300 1
## 13617  791301 1
## 13618  791302 1
## 13619  791303 1
## 13620  791304 1
## 13621  791305 1
## 13622  791306 1
## 13623  791307 1
## 13624  791308 1
## 13625  791309 1
## 13626  791310 1
## 13627  791311 1
## 13628  791312 1
## 13629  791313 1
## 13630  791314 1
## 13631  791315 1
## 13632  791316 1
## 13633  791317 1
## 13634  791318 1
## 13635  791319 1
## 13636  791320 1
## 13637  791321 1
## 13638  791322 1
## 13639  791323 1
## 13640  791324 1
## 13641  791325 1
## 13642  791326 1
## 13643  791327 1
## 13644  791328 1
## 13645  791329 1
## 13646  791330 1
## 13647  791331 1
## 13648  791332 1
## 13649  791333 1
## 13650  791334 1
## 13651  791335 1
## 13652  791336 1
## 13653  791337 1
## 13654  791338 1
## 13655  791339 1
## 13656  791340 1
## 13657  791341 1
## 13658  791342 1
## 13659  791343 1
## 13660  791344 1
## 13661  791345 1
## 13662  791346 1
## 13663  791347 1
## 13664  791348 1
## 13665  791349 1
## 13666  791350 1
## 13667  791351 1
## 13668  791352 1
## 13669  791353 1
## 13670  791354 1
## 13671  791355 1
## 13672  791356 1
## 13673  791357 1
## 13674  791358 1
## 13675  791359 1
## 13676  791360 1
## 13677  791361 1
## 13678  791362 1
## 13679  791363 1
## 13680  791364 1
## 13681  791365 1
## 13682  791366 1
## 13683  791367 1
## 13684  791368 1
## 13685  791369 1
## 13686  791370 1
## 13687  791371 1
## 13688  791372 1
## 13689  791373 1
## 13690  791374 1
## 13691  791375 1
## 13692  791376 1
## 13693  791377 1
## 13694  791378 1
## 13695  791379 1
## 13696  791380 1
## 13697  791381 1
## 13698  791382 1
## 13699  791383 1
## 13700  791384 1
## 13701  791385 1
## 13702  791386 1
## 13703  791387 1
## 13704  791388 1
## 13705  791389 1
## 13706  791390 1
## 13707  791391 1
## 13708  791393 1
## 13709  791394 1
## 13710  791395 1
## 13711  791396 1
## 13712  791397 1
## 13713  791398 1
## 13714  791399 1
## 13715  791400 1
## 13716  791401 1
## 13717  791402 1
## 13718  791403 1
## 13719  791404 1
## 13720  791405 1
## 13721  791406 1
## 13722  791407 1
## 13723  791408 1
## 13724  791409 1
## 13725  791410 1
## 13726  791411 1
## 13727  791412 1
## 13728  791413 1
## 13729  791414 1
## 13730  791415 1
## 13731  791416 1
## 13732  791417 1
## 13733  791418 1
## 13734  791419 1
## 13735  791420 1
## 13736  791421 1
## 13737  791422 1
## 13738  791423 1
## 13739  791424 1
## 13740  791425 1
## 13741  791426 1
## 13742  791427 1
## 13743  791428 1
## 13744  791429 1
## 13745  791430 1
## 13746  791431 1
## 13747  791432 1
## 13748  791433 1
## 13749  791434 1
## 13750  791435 1
## 13751  791436 1
## 13752  791437 1
## 13753  791438 1
## 13754  791439 1
## 13755  791440 1
## 13756  791441 1
## 13757  791442 1
## 13758  791443 1
## 13759  791444 1
## 13760  791445 1
## 13761  791446 1
## 13762  791447 1
## 13763  791448 1
## 13764  791449 1
## 13765  791450 1
## 13766  791451 1
## 13767  791452 1
## 13768  791453 1
## 13769  791454 1
## 13770  791455 1
## 13771  791456 1
## 13772  791457 1
## 13773  791458 1
## 13774  791459 1
## 13775  791460 1
## 13776  791461 1
## 13777  791462 1
## 13778  791463 1
## 13779  791464 1
## 13780  791465 1
## 13781  791466 1
## 13782  791467 1
## 13783  791468 1
## 13784  791469 1
## 13785  791470 1
## 13786  791471 1
## 13787  791472 1
## 13788  791473 1
## 13789  791474 1
## 13790  791475 1
## 13791  791476 1
## 13792  791477 1
## 13793  791478 1
## 13794  791479 1
## 13795  791480 1
## 13796  791481 1
## 13797  791482 1
## 13798  791483 1
## 13799  791484 1
## 13800  791485 1
## 13801  791486 1
## 13802  791487 1
## 13803  791488 1
## 13804  791489 1
## 13805  791490 1
## 13806  791491 1
## 13807  791492 1
## 13808  791493 1
## 13809  791494 1
## 13810  791495 1
## 13811  791496 1
## 13812  791497 1
## 13813  791498 1
## 13814  791499 1
## 13815  791500 1
## 13816  791501 1
## 13817  791502 1
## 13818  791503 1
## 13819  791504 1
## 13820  791505 1
## 13821  791506 1
## 13822  791507 1
## 13823  791508 1
## 13824  791509 1
## 13825  791510 1
## 13826  791511 1
## 13827  791512 1
## 13828  791513 1
## 13829  791514 1
## 13830  791515 1
## 13831  791516 1
## 13832  791517 1
## 13833  791518 1
## 13834  791519 1
## 13835  791520 1
## 13836  791521 1
## 13837  791522 1
## 13838  791523 1
## 13839  791524 1
## 13840  791525 1
## 13841  791526 1
## 13842  791527 1
## 13843  791528 1
## 13844  791529 1
## 13845  791530 1
## 13846  791531 1
## 13847  791532 1
## 13848  791533 1
## 13849  791534 1
## 13850  791535 1
## 13851  791536 1
## 13852  791537 1
## 13853  791538 1
## 13854  791539 1
## 13855  791540 1
## 13856  791541 1
## 13857  791542 1
## 13858  791543 1
## 13859  791544 1
## 13860  791545 1
## 13861  791546 1
## 13862  791547 1
## 13863  791548 1
## 13864  791549 1
## 13865  791550 1
## 13866  791551 1
## 13867  791552 1
## 13868  791553 1
## 13869  791554 1
## 13870  791555 1
## 13871  791556 1
## 13872  791557 1
## 13873  791558 1
## 13874  791559 1
## 13875  791560 1
## 13876  791561 1
## 13877  791562 1
## 13878  791563 1
## 13879  791564 1
## 13880  791565 1
## 13881  791566 1
## 13882  791567 1
## 13883  791568 1
## 13884  791569 1
## 13885  791570 1
## 13886  791571 1
## 13887  791572 1
## 13888  791573 1
## 13889  791574 1
## 13890  791575 1
## 13891  791576 1
## 13892  791577 1
## 13893  791578 1
## 13894  791579 1
## 13895  791580 1
## 13896  791581 1
## 13897  791582 1
## 13898  791583 1
## 13899  791584 1
## 13900  791585 1
## 13901  791586 1
## 13902  791587 1
## 13903  791588 1
## 13904  791589 1
## 13905  791590 1
## 13906  791591 1
## 13907  791592 1
## 13908  791593 1
## 13909  791594 1
## 13910  791595 1
## 13911  791596 1
## 13912  791597 1
## 13913  791598 1
## 13914  791599 1
## 13915  791600 1
## 13916  791601 1
## 13917  791602 1
## 13918  791603 1
## 13919  791604 1
## 13920  791605 1
## 13921  791606 1
## 13922  791607 1
## 13923  791608 1
## 13924  791609 1
## 13925  791610 1
## 13926  791611 1
## 13927  791612 1
## 13928  791613 1
## 13929  791614 1
## 13930  791615 1
## 13931  791616 1
## 13932  791617 1
## 13933  791618 1
## 13934  791619 1
## 13935  791620 1
## 13936  791621 1
## 13937  791622 1
## 13938  791623 1
## 13939  791624 1
## 13940  791625 1
## 13941  791626 1
## 13942  791627 1
## 13943  791628 1
## 13944  791629 1
## 13945  791630 1
## 13946  791631 1
## 13947  791632 1
## 13948  791633 1
## 13949  791634 1
## 13950  791635 1
## 13951  791636 1
## 13952  791637 1
## 13953  791638 1
## 13954  791639 1
## 13955  791640 1
## 13956  791641 1
## 13957  791642 1
## 13958  791643 1
## 13959  791644 1
## 13960  791645 1
## 13961  791646 1
## 13962  791647 1
## 13963  791648 1
## 13964  791649 1
## 13965  791650 1
## 13966  791651 1
## 13967  791652 1
## 13968  791653 1
## 13969  791654 1
## 13970  791655 1
## 13971  791656 1
## 13972  791657 1
## 13973  791658 1
## 13974  791659 1
## 13975  791660 1
## 13976  791661 1
## 13977  791662 1
## 13978  791663 1
## 13979  791664 1
## 13980  791665 1
## 13981  791666 1
## 13982  791667 1
## 13983  791668 1
## 13984  791669 1
## 13985  791670 1
## 13986  791671 1
## 13987  791672 1
## 13988  791673 1
## 13989  791674 1
## 13990  791675 1
## 13991  791676 1
## 13992  791677 1
## 13993  791678 1
## 13994  791679 1
## 13995  791680 1
## 13996  791681 1
## 13997  791682 1
## 13998  791683 1
## 13999  791684 1
## 14000  791685 1
## 14001  791686 1
## 14002  791687 1
## 14003  791688 1
## 14004  791689 1
## 14005  791690 1
## 14006  791691 1
## 14007  791692 1
## 14008  791693 1
## 14009  791694 1
## 14010  791695 1
## 14011  791696 1
## 14012  791697 1
## 14013  791698 1
## 14014  791699 1
## 14015  791700 1
## 14016  791701 1
## 14017  791702 1
## 14018  791703 1
## 14019  791704 1
## 14020  791705 1
## 14021  791706 1
## 14022  791707 1
## 14023  791708 1
## 14024  791709 1
## 14025  791710 1
## 14026  791711 1
## 14027  791712 1
## 14028  791713 1
## 14029  791714 1
## 14030  791715 1
## 14031  791716 1
## 14032  791717 1
## 14033  791718 1
## 14034  791719 1
## 14035  791720 1
## 14036  791722 1
## 14037  791723 1
## 14038  791724 1
## 14039  791725 1
## 14040  791726 1
## 14041  791727 1
## 14042  791728 1
## 14043  791729 1
## 14044  791730 1
## 14045  791731 1
## 14046  791732 1
## 14047  791733 1
## 14048  791734 1
## 14049  791735 1
## 14050  791736 1
## 14051  791737 1
## 14052  791738 1
## 14053  791739 1
## 14054  791740 1
## 14055  791741 1
## 14056  791742 1
## 14057  791743 1
## 14058  791744 1
## 14059  791745 1
## 14060  791746 1
## 14061  791747 1
## 14062  791748 1
## 14063  791749 1
## 14064  791750 1
## 14065  791751 1
## 14066  791752 1
## 14067  791753 1
## 14068  791754 1
## 14069  791755 1
## 14070  791756 1
## 14071  791757 1
## 14072  791758 1
## 14073  791759 1
## 14074  791760 1
## 14075  791761 1
## 14076  791762 1
## 14077  791763 1
## 14078  791764 1
## 14079  791765 1
## 14080  791766 1
## 14081  791767 1
## 14082  791768 1
## 14083  791769 1
## 14084  791770 1
## 14085  791771 1
## 14086  791773 1
## 14087  791774 1
## 14088  791775 1
## 14089  791776 1
## 14090  791777 1
## 14091  791778 1
## 14092  791779 1
## 14093  791780 1
## 14094  791781 1
## 14095  791782 1
## 14096  791783 1
## 14097  791784 1
## 14098  791785 1
## 14099  791786 1
## 14100  791787 1
## 14101  791788 1
## 14102  791789 1
## 14103  791790 1
## 14104  791791 1
## 14105  791792 1
## 14106  791793 1
## 14107  791794 1
## 14108  791795 1
## 14109  791796 1
## 14110  791797 1
## 14111  791798 1
## 14112  791799 1
## 14113  791800 1
## 14114  791801 1
## 14115  791802 1
## 14116  791803 1
## 14117  791804 1
## 14118  791805 1
## 14119  791806 1
## 14120  791807 1
## 14121  791808 1
## 14122  791809 1
## 14123  791810 1
## 14124  791811 1
## 14125  791812 1
## 14126  791813 1
## 14127  791814 1
## 14128  791815 1
## 14129  791816 1
## 14130  791817 1
## 14131  791818 1
## 14132  791819 1
## 14133  791820 1
## 14134  791821 1
## 14135  791822 1
## 14136  791823 1
## 14137  791824 1
## 14138  791825 1
## 14139  791826 1
## 14140  791827 1
## 14141  791828 1
## 14142  791829 1
## 14143  791830 1
## 14144  791831 1
## 14145  791832 1
## 14146  791833 1
## 14147  791834 1
## 14148  791835 1
## 14149  791836 1
## 14150  791837 1
## 14151  791838 1
## 14152  791839 1
## 14153  791840 1
## 14154  791841 1
## 14155  791842 1
## 14156  791843 1
## 14157  791844 1
## 14158  791845 1
## 14159  791846 1
## 14160  791847 1
## 14161  791848 1
## 14162  791849 1
## 14163  791850 1
## 14164  791851 1
## 14165  791852 1
## 14166  791853 1
## 14167  791854 1
## 14168  791855 1
## 14169  791856 1
## 14170  791857 1
## 14171  791858 1
## 14172  791859 1
## 14173  791860 1
## 14174  791861 1
## 14175  791862 1
## 14176  791863 1
## 14177  791864 1
## 14178  791865 1
## 14179  791866 1
## 14180  791867 1
## 14181  791868 1
## 14182  791869 1
## 14183  791870 1
## 14184  791871 1
## 14185  791872 1
## 14186  791873 1
## 14187  791874 1
## 14188  791875 1
## 14189  791876 1
## 14190  791877 1
## 14191  791878 1
## 14192  791879 1
## 14193  791880 1
## 14194  791881 1
## 14195  791882 1
## 14196  791883 1
## 14197  791884 1
## 14198  791885 1
## 14199  791886 1
## 14200  791887 1
## 14201  791888 1
## 14202  791889 1
## 14203  791890 1
## 14204  791891 1
## 14205  791892 1
## 14206  791893 1
## 14207  791894 1
## 14208  791895 1
## 14209  791896 1
## 14210  791897 1
## 14211  791898 1
## 14212  791899 1
## 14213  791900 1
## 14214  791901 1
## 14215  791902 1
## 14216  791903 1
## 14217  791904 1
## 14218  791905 1
## 14219  791906 1
## 14220  791907 1
## 14221  791908 1
## 14222  791909 1
## 14223  791910 1
## 14224  791911 1
## 14225  791912 1
## 14226  791913 1
## 14227  791914 1
## 14228  791915 1
## 14229  791916 1
## 14230  791917 1
## 14231  791918 1
## 14232  791919 1
## 14233  791920 1
## 14234  791921 1
## 14235  791922 1
## 14236  791923 1
## 14237  791924 1
## 14238  791925 1
## 14239  791926 1
## 14240  791927 1
## 14241  791928 1
## 14242  791929 1
## 14243  791930 1
## 14244  791931 1
## 14245  791932 1
## 14246  791933 1
## 14247  791934 1
## 14248  791935 1
## 14249  791936 1
## 14250  791937 1
## 14251  791938 1
## 14252  791939 1
## 14253  791940 1
## 14254  791941 1
## 14255  791942 1
## 14256  791943 1
## 14257  791944 1
## 14258  791945 1
## 14259  791946 1
## 14260  791947 1
## 14261  791948 1
## 14262  791949 1
## 14263  791950 1
## 14264  791951 1
## 14265  791952 1
## 14266  791953 1
## 14267  791954 1
## 14268  791955 1
## 14269  791956 1
## 14270  791957 1
## 14271  791958 1
## 14272  791959 1
## 14273  791960 1
## 14274  791961 1
## 14275  791962 1
## 14276  791963 1
## 14277  791964 1
## 14278  791965 1
## 14279  791966 1
## 14280  791967 1
## 14281  791968 1
## 14282  791969 1
## 14283  791970 1
## 14284  791971 1
## 14285  791972 1
## 14286  791973 1
## 14287  791974 1
## 14288  791975 1
## 14289  791976 1
## 14290  791977 1
## 14291  791978 1
## 14292  791979 1
## 14293  791980 1
## 14294  791981 1
## 14295  791982 1
## 14296  791983 1
## 14297  791984 1
## 14298  791985 1
## 14299  791986 1
## 14300  791987 1
## 14301  791988 1
## 14302  791989 1
## 14303  791990 1
## 14304  791991 1
## 14305  791992 1
## 14306  791993 1
## 14307  791994 1
## 14308  791995 1
## 14309  791996 1
## 14310  791997 1
## 14311  791998 1
## 14312  791999 1
## 14313  792000 1
## 14314  792001 1
## 14315  792002 1
## 14316  792003 1
## 14317  792004 1
## 14318  792005 1
## 14319  792006 1
## 14320  792007 1
## 14321  792008 1
## 14322  792009 1
## 14323  792010 1
## 14324  792011 1
## 14325  792012 1
## 14326  792013 1
## 14327  792014 1
## 14328  792015 1
## 14329  792016 1
## 14330  792017 1
## 14331  792018 1
## 14332  792019 1
## 14333  792020 1
## 14334  792021 1
## 14335  792022 1
## 14336  792023 1
## 14337  792024 1
## 14338  792025 1
## 14339  792026 1
## 14340  792027 1
## 14341  792028 1
## 14342  792029 1
## 14343  792030 1
## 14344  792031 1
## 14345  792032 1
## 14346  792033 1
## 14347  792034 1
## 14348  792035 1
## 14349  792036 1
## 14350  792037 1
## 14351  792038 1
## 14352  792039 1
## 14353  792040 1
## 14354  792041 1
## 14355  792042 1
## 14356  792043 1
## 14357  792044 1
## 14358  792045 1
## 14359  792046 1
## 14360  792047 1
## 14361  792048 1
## 14362  792049 1
## 14363  792050 1
## 14364  792051 1
## 14365  792052 1
## 14366  792053 1
## 14367  792054 1
## 14368  792055 1
## 14369  792056 1
## 14370  792057 1
## 14371  792058 1
## 14372  792059 1
## 14373  792060 1
## 14374  792061 1
## 14375  792062 1
## 14376  792063 1
## 14377  792064 1
## 14378  792065 1
## 14379  792066 1
## 14380  792067 1
## 14381  792068 1
## 14382  792069 1
## 14383  792070 1
## 14384  792071 1
## 14385  792072 1
## 14386  792073 1
## 14387  792074 1
## 14388  792075 1
## 14389  792076 1
## 14390  792077 1
## 14391  792078 1
## 14392  792079 1
## 14393  792080 1
## 14394  792081 1
## 14395  792082 1
## 14396  792083 1
## 14397  792085 1
## 14398  792086 1
## 14399  792087 1
## 14400  792088 1
## 14401  792089 1
## 14402  792090 1
## 14403  792091 1
## 14404  792092 1
## 14405  792093 1
## 14406  792094 1
## 14407  792095 1
## 14408  792096 1
## 14409  792097 1
## 14410  792098 1
## 14411  792099 1
## 14412  792100 1
## 14413  792101 1
## 14414  792102 1
## 14415  792103 1
## 14416  792104 1
## 14417  792105 1
## 14418  792106 1
## 14419  792107 1
## 14420  792108 1
## 14421  792109 1
## 14422  792110 1
## 14423  792111 1
## 14424  792112 1
## 14425  792113 1
## 14426  792114 1
## 14427  792115 1
## 14428  792116 1
## 14429  792117 1
## 14430  792118 1
## 14431  792119 1
## 14432  792120 1
## 14433  792121 1
## 14434  792122 1
## 14435  792123 1
## 14436  792124 1
## 14437  792125 1
## 14438  792126 1
## 14439  792127 1
## 14440  792128 1
## 14441  792129 1
## 14442  792130 1
## 14443  792131 1
## 14444  792132 1
## 14445  792133 1
## 14446  792134 1
## 14447  792135 1
## 14448  792136 1
## 14449  792137 1
## 14450  792138 1
## 14451  792139 1
## 14452  792140 1
## 14453  792141 1
## 14454  792142 1
## 14455  792143 1
## 14456  792145 1
## 14457  792146 1
## 14458  792147 1
## 14459  792148 1
## 14460  792149 1
## 14461  792150 1
## 14462  792151 1
## 14463  792152 1
## 14464  792153 1
## 14465  792154 1
## 14466  792155 1
## 14467  792156 1
## 14468  792157 1
## 14469  792158 1
## 14470  792159 1
## 14471  792160 1
## 14472  792161 1
## 14473  792162 1
## 14474  792163 1
## 14475  792164 1
## 14476  792165 1
## 14477  792166 1
## 14478  792167 1
## 14479  792168 1
## 14480  792169 1
## 14481  792170 1
## 14482  792171 1
## 14483  792172 1
## 14484  792173 1
## 14485  792174 1
## 14486  792175 1
## 14487  792176 1
## 14488  792177 1
## 14489  792178 1
## 14490  792179 1
## 14491  792180 1
## 14492  792181 1
## 14493  792182 1
## 14494  792183 1
## 14495  792184 1
## 14496  792185 1
## 14497  792186 1
## 14498  792187 1
## 14499  792188 1
## 14500  792189 1
## 14501  792190 1
## 14502  792191 1
## 14503  792192 1
## 14504  792193 1
## 14505  792194 1
## 14506  792195 1
## 14507  792196 1
## 14508  792197 1
## 14509  792198 1
## 14510  792199 1
## 14511  792200 1
## 14512  792201 1
## 14513  792202 1
## 14514  792203 1
## 14515  792204 1
## 14516  792205 1
## 14517  792206 1
## 14518  792207 1
## 14519  792208 1
## 14520  792209 1
## 14521  792210 1
## 14522  792211 1
## 14523  792212 1
## 14524  792213 1
## 14525  792214 1
## 14526  792215 1
## 14527  792216 1
## 14528  792217 1
## 14529  792218 1
## 14530  792219 1
## 14531  792220 1
## 14532  792221 1
## 14533  792222 1
## 14534  792223 1
## 14535  792224 1
## 14536  792225 1
## 14537  792226 1
## 14538  792227 1
## 14539  792228 1
## 14540  792229 1
## 14541  792230 1
## 14542  792231 1
## 14543  792232 1
## 14544  792233 1
## 14545  792234 1
## 14546  792235 1
## 14547  792236 1
## 14548  792237 1
## 14549  792238 1
## 14550  792239 1
## 14551  792240 1
## 14552  792241 1
## 14553  792242 1
## 14554  792243 1
## 14555  792244 1
## 14556  792245 1
## 14557  792246 1
## 14558  792247 1
## 14559  792248 1
## 14560  792249 1
## 14561  792250 1
## 14562  792251 1
## 14563  792252 1
## 14564  792253 1
## 14565  792254 1
## 14566  792255 1
## 14567  792256 1
## 14568  792257 1
## 14569  792258 1
## 14570  792259 1
## 14571  792260 1
## 14572  792261 1
## 14573  792262 1
## 14574  792263 1
## 14575  792264 1
## 14576  792265 1
## 14577  792266 1
## 14578  792267 1
## 14579  792268 1
## 14580  792269 1
## 14581  792270 1
## 14582  792271 1
## 14583  792272 1
## 14584  792274 1
## 14585  792275 1
## 14586  792276 1
## 14587  792277 1
## 14588  792278 1
## 14589  792279 1
## 14590  792280 1
## 14591  792281 1
## 14592  792282 1
## 14593  792283 1
## 14594  792284 1
## 14595  792285 1
## 14596  792286 1
## 14597  792287 1
## 14598  792288 1
## 14599  792289 1
## 14600  792290 1
## 14601  792291 1
## 14602  792292 1
## 14603  792293 1
## 14604  792294 1
## 14605  792295 1
## 14606  792296 1
## 14607  792297 1
## 14608  792298 1
## 14609  792299 1
## 14610  792300 1
## 14611  792301 1
## 14612  792302 1
## 14613  792303 1
## 14614  792304 1
## 14615  792305 1
## 14616  792306 1
## 14617  792307 1
## 14618  792308 1
## 14619  792309 1
## 14620  792310 1
## 14621  792311 1
## 14622  792312 1
## 14623  792313 1
## 14624  792314 1
## 14625  792315 1
## 14626  792316 1
## 14627  792317 1
## 14628  792318 1
## 14629  792319 1
## 14630  792320 1
## 14631  792322 1
## 14632  792323 1
## 14633  792324 1
## 14634  792325 1
## 14635  792326 1
## 14636  792327 1
## 14637  792328 1
## 14638  792329 1
## 14639  792330 1
## 14640  792331 1
## 14641  792332 1
## 14642  792333 1
## 14643  792334 1
## 14644  792335 1
## 14645  792336 1
## 14646  792337 1
## 14647  792338 1
## 14648  792339 1
## 14649  792340 1
## 14650  792341 1
## 14651  792342 1
## 14652  792343 1
## 14653  792344 1
## 14654  792345 1
## 14655  792346 1
## 14656  792347 1
## 14657  792348 1
## 14658  792349 1
## 14659  792350 1
## 14660  792351 1
## 14661  792352 1
## 14662  792353 1
## 14663  792354 1
## 14664  792355 1
## 14665  792356 1
## 14666  792357 1
## 14667  792358 1
## 14668  792359 1
## 14669  792360 1
## 14670  792361 1
## 14671  792362 1
## 14672  792363 1
## 14673  792364 1
## 14674  792365 1
## 14675  792366 1
## 14676  792367 1
## 14677  792368 1
## 14678  792369 1
## 14679  792370 1
## 14680  792371 1
## 14681  792372 1
## 14682  792373 1
## 14683  792374 1
## 14684  792375 1
## 14685  792376 1
## 14686  792377 1
## 14687  792378 1
## 14688  792379 1
## 14689  792380 1
## 14690  792381 1
## 14691  792382 1
## 14692  792383 1
## 14693  792384 1
## 14694  792385 1
## 14695  792386 1
## 14696  792387 1
## 14697  792388 1
## 14698  792389 1
## 14699  792390 1
## 14700  792391 1
## 14701  792392 1
## 14702  792393 1
## 14703  792394 1
## 14704  792395 1
## 14705  792396 1
## 14706  792397 1
## 14707  792398 1
## 14708  792400 1
## 14709  792401 1
## 14710  792402 1
## 14711  792403 1
## 14712  792404 1
## 14713  792405 1
## 14714  792406 1
## 14715  792407 1
## 14716  792408 1
## 14717  792409 1
## 14718  792410 1
## 14719  792411 1
## 14720  792412 1
## 14721  792413 1
## 14722  792414 1
## 14723  792415 1
## 14724  792416 1
## 14725  792417 1
## 14726  792418 1
## 14727  792419 1
## 14728  792420 1
## 14729  792421 1
## 14730  792422 1
## 14731  792423 1
## 14732  792424 1
## 14733  792425 1
## 14734  792426 1
## 14735  792427 1
## 14736  792428 1
## 14737  792429 1
## 14738  792430 1
## 14739  792431 1
## 14740  792432 1
## 14741  792433 1
## 14742  792434 1
## 14743  792435 1
## 14744  792436 1
## 14745  792437 1
## 14746  792438 1
## 14747  792439 1
## 14748  792440 1
## 14749  792441 1
## 14750  792442 1
## 14751  792443 1
## 14752  792444 1
## 14753  792445 1
## 14754  792446 1
## 14755  792447 1
## 14756  792448 1
## 14757  792449 1
## 14758  792450 1
## 14759  792451 1
## 14760  792452 1
## 14761  792453 1
## 14762  792454 1
## 14763  792455 1
## 14764  792456 1
## 14765  792457 1
## 14766  792458 1
## 14767  792459 1
## 14768  792460 1
## 14769  792461 1
## 14770  792462 1
## 14771  792463 1
## 14772  792464 1
## 14773  792465 1
## 14774  792466 1
## 14775  792467 1
## 14776  792468 1
## 14777  792469 1
## 14778  792470 1
## 14779  792471 1
## 14780  792472 1
## 14781  792473 1
## 14782  792474 1
## 14783  792475 1
## 14784  792476 1
## 14785  792477 1
## 14786  792478 1
## 14787  792479 1
## 14788  792480 1
## 14789  792481 1
## 14790  792482 1
## 14791  792483 1
## 14792  792484 1
## 14793  792485 1
## 14794  792486 1
## 14795  792487 1
## 14796  792488 1
## 14797  792489 1
## 14798  792490 1
## 14799  792491 1
## 14800  792492 1
## 14801  792493 1
## 14802  792494 1
## 14803  792495 1
## 14804  792496 1
## 14805  792497 1
## 14806  792498 1
## 14807  792499 1
## 14808  792500 1
## 14809  792501 1
## 14810  792502 1
## 14811  792503 1
## 14812  792504 1
## 14813  792505 1
## 14814  792506 1
## 14815  792507 1
## 14816  792508 1
## 14817  792510 1
## 14818  792511 1
## 14819  792512 1
## 14820  792513 1
## 14821  792514 1
## 14822  792515 1
## 14823  792516 1
## 14824  792517 1
## 14825  792518 1
## 14826  792519 1
## 14827  792520 1
## 14828  792521 1
## 14829  792522 1
## 14830  792523 1
## 14831  792524 1
## 14832  792525 1
## 14833  792526 1
## 14834  792527 1
## 14835  792528 1
## 14836  792529 1
## 14837  792530 1
## 14838  792531 1
## 14839  792532 1
## 14840  792533 1
## 14841  792534 1
## 14842  792535 1
## 14843  792536 1
## 14844  792537 1
## 14845  792538 1
## 14846  792539 1
## 14847  792540 1
## 14848  792541 1
## 14849  792542 1
## 14850  792543 1
## 14851  792544 1
## 14852  792545 1
## 14853  792546 1
## 14854  792547 1
## 14855  792548 1
## 14856  792549 1
## 14857  792550 1
## 14858  792551 1
## 14859  792552 1
## 14860  792553 1
## 14861  792554 1
## 14862  792555 1
## 14863  792556 1
## 14864  792557 1
## 14865  792558 1
## 14866  792559 1
## 14867  792560 1
## 14868  792561 1
## 14869  792562 1
## 14870  792563 1
## 14871  792564 1
## 14872  792565 1
## 14873  792566 1
## 14874  792567 1
## 14875  792568 1
## 14876  792569 1
## 14877  792570 1
## 14878  792571 1
## 14879  792572 1
## 14880  792573 1
## 14881  792574 1
## 14882  792575 1
## 14883  792576 1
## 14884  792577 1
## 14885  792578 1
## 14886  792579 1
## 14887  792580 1
## 14888  792581 1
## 14889  792582 1
## 14890  792583 1
## 14891  792584 1
## 14892  792585 1
## 14893  792586 1
## 14894  792587 1
## 14895  792588 1
## 14896  792589 1
## 14897  792590 1
## 14898  792591 1
## 14899  792592 1
## 14900  792593 1
## 14901  792594 1
## 14902  792595 1
## 14903  792596 1
## 14904  792597 1
## 14905  792598 1
## 14906  792599 1
## 14907  792600 1
## 14908  792601 1
## 14909  792602 1
## 14910  792603 1
## 14911  792604 1
## 14912  792605 1
## 14913  792606 1
## 14914  792607 1
## 14915  792608 1
## 14916  792609 1
## 14917  792610 1
## 14918  792611 1
## 14919  792612 1
## 14920  792613 1
## 14921  792614 1
## 14922  792615 1
## 14923  792616 1
## 14924  792617 1
## 14925  792618 1
## 14926  792620 1
## 14927  792621 1
## 14928  792622 1
## 14929  792623 1
## 14930  792624 1
## 14931  792625 1
## 14932  792626 1
## 14933  792628 1
## 14934  792629 1
## 14935  792630 1
## 14936  792631 1
## 14937  792632 1
## 14938  792633 1
## 14939  792634 1
## 14940  792635 1
## 14941  792636 1
## 14942  792637 1
## 14943  792638 1
## 14944  792639 1
## 14945  792640 1
## 14946  792641 1
## 14947  792642 1
## 14948  792643 1
## 14949  792644 1
## 14950  792645 1
## 14951  792646 1
## 14952  792648 1
## 14953  792649 1
## 14954  792650 1
## 14955  792651 1
## 14956  792652 1
## 14957  792653 1
## 14958  792654 1
## 14959  792655 1
## 14960  792656 1
## 14961  792657 1
## 14962  792658 1
## 14963  792659 1
## 14964  792660 1
## 14965  792661 1
## 14966  792662 1
## 14967  792663 1
## 14968  792664 1
## 14969  792665 1
## 14970  792666 1
## 14971  792667 1
## 14972  792668 1
## 14973  792669 1
## 14974  792670 1
## 14975  792671 1
## 14976  792672 1
## 14977  792673 1
## 14978  792674 1
## 14979  792675 1
## 14980  792676 1
## 14981  792677 1
## 14982  792678 1
## 14983  792679 1
## 14984  792680 1
## 14985  792681 1
## 14986  792682 1
## 14987  792683 1
## 14988  792684 1
## 14989  792685 1
## 14990  792686 1
## 14991  792687 1
## 14992  792688 1
## 14993  792689 1
## 14994  792690 1
## 14995  792691 1
## 14996  792692 1
## 14997  792693 1
## 14998  792694 1
## 14999  792695 1
## 15000  792696 1
## 15001  792697 1
## 15002  792698 1
## 15003  792699 1
## 15004  792700 1
## 15005  792701 1
## 15006  792702 1
## 15007  792703 1
## 15008  792704 1
## 15009  792705 1
## 15010  792706 1
## 15011  792707 1
## 15012  792708 1
## 15013  792709 1
## 15014  792710 1
## 15015  792711 1
## 15016  792712 1
## 15017  792713 1
## 15018  792714 1
## 15019  792715 1
## 15020  792716 1
## 15021  792717 1
## 15022  792718 1
## 15023  792719 1
## 15024  792720 1
## 15025  792721 1
## 15026  792722 1
## 15027  792723 1
## 15028  792724 1
## 15029  792725 1
## 15030  792726 1
## 15031  792727 1
## 15032  792728 1
## 15033  792729 1
## 15034  792730 1
## 15035  792731 1
## 15036  792732 1
## 15037  792733 1
## 15038  792734 1
## 15039  792736 1
## 15040  792737 1
## 15041  792738 1
## 15042  792739 1
## 15043  792740 1
## 15044  792741 1
## 15045  792742 1
## 15046  792743 1
## 15047  792744 1
## 15048  792745 1
## 15049  792746 1
## 15050  792747 1
## 15051  792748 1
## 15052  792749 1
## 15053  792750 1
## 15054  792751 1
## 15055  792752 1
## 15056  792753 1
## 15057  792754 1
## 15058  792755 1
## 15059  792756 1
## 15060  792757 1
## 15061  792758 1
## 15062  792759 1
## 15063  792760 1
## 15064  792761 1
## 15065  792762 1
## 15066  792763 1
## 15067  792764 1
## 15068  792765 1
## 15069  792766 1
## 15070  792767 1
## 15071  792768 1
## 15072  792769 1
## 15073  792770 1
## 15074  792771 1
## 15075  792772 1
## 15076  792773 1
## 15077  792774 1
## 15078  792775 1
## 15079  792776 1
## 15080  792777 1
## 15081  792778 1
## 15082  792779 1
## 15083  792780 1
## 15084  792781 1
## 15085  792782 1
## 15086  792783 1
## 15087  792784 1
## 15088  792785 1
## 15089  792786 1
## 15090  792787 1
## 15091  792788 1
## 15092  792789 1
## 15093  792790 1
## 15094  792791 1
## 15095  792792 1
## 15096  792793 1
## 15097  792794 1
## 15098  792795 1
## 15099  792796 1
## 15100  792797 1
## 15101  792798 1
## 15102  792799 1
## 15103  792800 1
## 15104  792801 1
## 15105  792802 1
## 15106  792803 1
## 15107  792804 1
## 15108  792805 1
## 15109  792806 1
## 15110  792807 1
## 15111  792808 1
## 15112  792809 1
## 15113  792810 1
## 15114  792811 1
## 15115  792812 1
## 15116  792813 1
## 15117  792814 1
## 15118  792815 1
## 15119  792816 1
## 15120  792817 1
## 15121  792818 1
## 15122  792819 1
## 15123  792820 1
## 15124  792821 1
## 15125  792822 1
## 15126  792823 1
## 15127  792824 1
## 15128  792825 1
## 15129  792826 1
## 15130  792827 1
## 15131  792828 1
## 15132  792829 1
## 15133  792830 1
## 15134  792831 1
## 15135  792832 1
## 15136  792833 1
## 15137  792834 1
## 15138  792835 1
## 15139  792836 1
## 15140  792837 1
## 15141  792838 1
## 15142  792839 1
## 15143  792840 1
## 15144  792841 1
## 15145  792842 1
## 15146  792843 1
## 15147  792844 1
## 15148  792845 1
## 15149  792846 1
## 15150  792847 1
## 15151  792848 1
## 15152  792849 1
## 15153  792850 1
## 15154  792851 1
## 15155  792852 1
## 15156  792853 1
## 15157  792854 1
## 15158  792855 1
## 15159  792856 1
## 15160  792857 1
## 15161  792858 1
## 15162  792859 1
## 15163  792860 1
## 15164  792861 1
## 15165  792862 1
## 15166  792863 1
## 15167  792864 1
## 15168  792865 1
## 15169  792866 1
## 15170  792867 1
## 15171  792868 1
## 15172  792869 1
## 15173  792870 1
## 15174  792871 1
## 15175  792872 1
## 15176  792873 1
## 15177  792874 1
## 15178  792875 1
## 15179  792876 1
## 15180  792877 1
## 15181  792878 1
## 15182  792879 1
## 15183  792880 1
## 15184  792881 1
## 15185  792882 1
## 15186  792883 1
## 15187  792884 1
## 15188  792885 1
## 15189  792886 1
## 15190  792887 1
## 15191  792888 1
## 15192  792889 1
## 15193  792890 1
## 15194  792891 1
## 15195  792892 1
## 15196  792893 1
## 15197  792894 1
## 15198  792895 1
## 15199  792896 1
## 15200  792897 1
## 15201  792898 1
## 15202  792899 1
## 15203  792900 1
## 15204  792901 1
## 15205  792902 1
## 15206  792903 1
## 15207  792904 1
## 15208  792905 1
## 15209  792906 1
## 15210  792907 1
## 15211  792908 1
## 15212  792909 1
## 15213  792910 1
## 15214  792911 1
## 15215  792912 1
## 15216  792913 1
## 15217  792914 1
## 15218  792915 1
## 15219  792916 1
## 15220  792917 1
## 15221  792918 1
## 15222  792919 1
## 15223  792920 1
## 15224  792921 1
## 15225  792922 1
## 15226  792923 1
## 15227  792924 1
## 15228  792925 1
## 15229  792926 1
## 15230  792927 1
## 15231  792928 1
## 15232  792929 1
## 15233  792930 1
## 15234  792931 1
## 15235  792932 1
## 15236  792933 1
## 15237  792934 1
## 15238  792935 1
## 15239  792936 1
## 15240  792937 1
## 15241  792938 1
## 15242  792939 1
## 15243  792940 1
## 15244  792941 1
## 15245  792942 1
## 15246  792943 1
## 15247  792944 1
## 15248  792945 1
## 15249  792946 1
## 15250  792947 1
## 15251  792948 1
## 15252  792949 1
## 15253  792950 1
## 15254  792951 1
## 15255  792952 1
## 15256  792953 1
## 15257  792954 1
## 15258  792955 1
## 15259  792956 1
## 15260  792957 1
## 15261  792958 1
## 15262  792959 1
## 15263  792960 1
## 15264  792961 1
## 15265  792962 1
## 15266  792963 1
## 15267  792964 1
## 15268  792965 1
## 15269  792966 1
## 15270  792967 1
## 15271  792968 1
## 15272  792969 1
## 15273  792970 1
## 15274  792971 1
## 15275  792972 1
## 15276  792973 1
## 15277  792974 1
## 15278  792975 1
## 15279  792976 1
## 15280  792977 1
## 15281  792978 1
## 15282  792979 1
## 15283  792980 1
## 15284  792981 1
## 15285  792982 1
## 15286  792983 1
## 15287  792984 1
## 15288  792985 1
## 15289  792986 1
## 15290  792988 1
## 15291  792989 1
## 15292  792990 1
## 15293  792991 1
## 15294  792992 1
## 15295  792993 1
## 15296  792994 1
## 15297  792995 1
## 15298  792996 1
## 15299  792998 1
## 15300  792999 1
## 15301  793000 1
## 15302  793001 1
## 15303  793002 1
## 15304  793003 1
## 15305  793004 1
## 15306  793005 1
## 15307  793006 1
## 15308  793007 1
## 15309  793008 1
## 15310  793009 1
## 15311  793010 1
## 15312  793011 1
## 15313  793012 1
## 15314  793013 1
## 15315  793014 1
## 15316  793015 1
## 15317  793016 1
## 15318  793017 1
## 15319  793018 1
## 15320  793019 1
## 15321  793020 1
## 15322  793021 1
## 15323  793022 1
## 15324  793023 1
## 15325  793024 1
## 15326  793025 1
## 15327  793026 1
## 15328  793027 1
## 15329  793028 1
## 15330  793029 1
## 15331  793030 1
## 15332  793031 1
## 15333  793032 1
## 15334  793033 1
## 15335  793034 1
## 15336  793035 1
## 15337  793036 1
## 15338  793037 1
## 15339  793038 1
## 15340  793039 1
## 15341  793040 1
## 15342  793041 1
## 15343  793042 1
## 15344  793043 1
## 15345  793044 1
## 15346  793045 1
## 15347  793046 1
## 15348  793047 1
## 15349  793048 1
## 15350  793049 1
## 15351  793050 1
## 15352  793051 1
## 15353  793052 1
## 15354  793053 1
## 15355  793054 1
## 15356  793055 1
## 15357  793056 1
## 15358  793057 1
## 15359  793058 1
## 15360  793059 1
## 15361  793060 1
## 15362  793061 1
## 15363  793062 1
## 15364  793063 1
## 15365  793064 1
## 15366  793065 1
## 15367  793066 1
## 15368  793067 1
## 15369  793068 1
## 15370  793069 1
## 15371  793070 1
## 15372  793071 1
## 15373  793072 1
## 15374  793073 1
## 15375  793074 1
## 15376  793075 1
## 15377  793076 1
## 15378  793077 1
## 15379  793078 1
## 15380  793079 1
## 15381  793080 1
## 15382  793081 1
## 15383  793082 1
## 15384  793083 1
## 15385  793084 1
## 15386  793085 1
## 15387  793086 1
## 15388  793087 1
## 15389  793088 1
## 15390  793089 1
## 15391  793090 1
## 15392  793091 1
## 15393  793092 1
## 15394  793093 1
## 15395  793094 1
## 15396  793095 1
## 15397  793096 1
## 15398  793097 1
## 15399  793098 1
## 15400  793099 1
## 15401  793100 1
## 15402  793101 1
## 15403  793102 1
## 15404  793103 1
## 15405  793104 1
## 15406  793105 1
## 15407  793106 1
## 15408  793107 1
## 15409  793108 1
## 15410  793109 1
## 15411  793110 1
## 15412  793111 1
## 15413  793112 1
## 15414  793113 1
## 15415  793114 1
## 15416  793115 1
## 15417  793116 1
## 15418  793117 1
## 15419  793118 1
## 15420  793119 1
## 15421  793120 1
## 15422  793121 1
## 15423  793122 1
## 15424  793123 1
## 15425  793124 1
## 15426  793125 1
## 15427  793126 1
## 15428  793127 1
## 15429  793128 1
## 15430  793129 1
## 15431  793130 1
## 15432  793131 1
## 15433  793132 1
## 15434  793133 1
## 15435  793134 1
## 15436  793135 1
## 15437  793136 1
## 15438  793137 1
## 15439  793138 1
## 15440  793139 1
## 15441  793140 1
## 15442  793141 1
## 15443  793142 1
## 15444  793143 1
## 15445  793144 1
## 15446  793145 1
## 15447  793146 1
## 15448  793147 1
## 15449  793148 1
## 15450  793149 1
## 15451  793150 1
## 15452  793151 1
## 15453  793152 1
## 15454  793153 1
## 15455  793154 1
## 15456  793155 1
## 15457  793156 1
## 15458  793157 1
## 15459  793158 1
## 15460  793159 1
## 15461  793160 1
## 15462  793161 1
## 15463  793162 1
## 15464  793163 1
## 15465  793165 1
## 15466  793166 1
## 15467  793167 1
## 15468  793168 1
## 15469  793169 1
## 15470  793170 1
## 15471  793171 1
## 15472  793172 1
## 15473  793173 1
## 15474  793174 1
## 15475  793175 1
## 15476  793176 1
## 15477  793177 1
## 15478  793178 1
## 15479  793179 1
## 15480  793180 1
## 15481  793181 1
## 15482  793182 1
## 15483  793183 1
## 15484  793184 1
## 15485  793185 1
## 15486  793186 1
## 15487  793187 1
## 15488  793188 1
## 15489  793189 1
## 15490  793190 1
## 15491  793191 1
## 15492  793192 1
## 15493  793193 1
## 15494  793194 1
## 15495  793195 1
## 15496  793196 1
## 15497  793197 1
## 15498  793198 1
## 15499  793199 1
## 15500  793200 1
## 15501  793201 1
## 15502  793202 1
## 15503  793203 1
## 15504  793204 1
## 15505  793205 1
## 15506  793206 1
## 15507  793207 1
## 15508  793208 1
## 15509  793209 1
## 15510  793210 1
## 15511  793211 1
## 15512  793212 1
## 15513  793213 1
## 15514  793214 1
## 15515  793215 1
## 15516  793216 1
## 15517  793217 1
## 15518  793218 1
## 15519  793219 1
## 15520  793220 1
## 15521  793221 1
## 15522  793222 1
## 15523  793223 1
## 15524  793224 1
## 15525  793225 1
## 15526  793226 1
## 15527  793227 1
## 15528  793228 1
## 15529  793229 1
## 15530  793230 1
## 15531  793231 1
## 15532  793232 1
## 15533  793233 1
## 15534  793234 1
## 15535  793235 1
## 15536  793236 1
## 15537  793237 1
## 15538  793238 1
## 15539  793240 1
## 15540  793241 1
## 15541  793242 1
## 15542  793243 1
## 15543  793244 1
## 15544  793246 1
## 15545  793247 1
## 15546  793248 1
## 15547  793249 1
## 15548  793250 1
## 15549  793251 1
## 15550  793252 1
## 15551  793253 1
## 15552  793254 1
## 15553  793255 1
## 15554  793256 1
## 15555  793257 1
## 15556  793258 1
## 15557  793259 1
## 15558  793260 1
## 15559  793261 1
## 15560  793262 1
## 15561  793263 1
## 15562  793264 1
## 15563  793265 1
## 15564  793266 1
## 15565  793267 1
## 15566  793268 1
## 15567  793269 1
## 15568  793270 1
## 15569  793271 1
## 15570  793272 1
## 15571  793273 1
## 15572  793274 1
## 15573  793275 1
## 15574  793276 1
## 15575  793277 1
## 15576  793278 1
## 15577  793279 1
## 15578  793280 1
## 15579  793281 1
## 15580  793282 1
## 15581  793283 1
## 15582  793284 1
## 15583  793285 1
## 15584  793286 1
## 15585  793287 1
## 15586  793288 1
## 15587  793289 1
## 15588  793290 1
## 15589  793291 1
## 15590  793292 1
## 15591  793293 1
## 15592  793294 1
## 15593  793295 1
## 15594  793296 1
## 15595  793297 1
## 15596  793298 1
## 15597  793299 1
## 15598  793300 1
## 15599  793301 1
## 15600  793302 1
## 15601  793303 1
## 15602  793304 1
## 15603  793305 1
## 15604  793306 1
## 15605  793307 1
## 15606  793308 1
## 15607  793309 1
## 15608  793310 1
## 15609  793311 1
## 15610  793312 1
## 15611  793313 1
## 15612  793314 1
## 15613  793315 1
## 15614  793316 1
## 15615  793317 1
## 15616  793318 1
## 15617  793319 1
## 15618  793320 1
## 15619  793321 1
## 15620  793322 1
## 15621  793323 1
## 15622  793324 1
## 15623  793325 1
## 15624  793326 1
## 15625  793327 1
## 15626  793328 1
## 15627  793329 1
## 15628  793330 1
## 15629  793331 1
## 15630  793332 1
## 15631  793333 1
## 15632  793334 1
## 15633  793335 1
## 15634  793336 1
## 15635  793337 1
## 15636  793338 1
## 15637  793339 1
## 15638  793340 1
## 15639  793342 1
## 15640  793343 1
## 15641  793344 1
## 15642  793345 1
## 15643  793346 1
## 15644  793347 1
## 15645  793348 1
## 15646  793349 1
## 15647  793350 1
## 15648  793351 1
## 15649  793352 1
## 15650  793353 1
## 15651  793354 1
## 15652  793355 1
## 15653  793356 1
## 15654  793357 1
## 15655  793358 1
## 15656  793359 1
## 15657  793360 1
## 15658  793361 1
## 15659  793362 1
## 15660  793363 1
## 15661  793364 1
## 15662  793365 1
## 15663  793366 1
## 15664  793367 1
## 15665  793368 1
## 15666  793369 1
## 15667  793370 1
## 15668  793371 1
## 15669  793372 1
## 15670  793373 1
## 15671  793374 1
## 15672  793375 1
## 15673  793376 1
## 15674  793377 1
## 15675  793378 1
## 15676  793379 1
## 15677  793380 1
## 15678  793381 1
## 15679  793382 1
## 15680  793383 1
## 15681  793384 1
## 15682  793385 1
## 15683  793386 1
## 15684  793387 1
## 15685  793388 1
## 15686  793389 1
## 15687  793390 1
## 15688  793391 1
## 15689  793392 1
## 15690  793393 1
## 15691  793394 1
## 15692  793395 1
## 15693  793396 1
## 15694  793397 1
## 15695  793398 1
## 15696  793399 1
## 15697  793400 1
## 15698  793401 1
## 15699  793402 1
## 15700  793403 1
## 15701  793404 1
## 15702  793405 1
## 15703  793406 1
## 15704  793407 1
## 15705  793408 1
## 15706  793409 1
## 15707  793410 1
## 15708  793411 1
## 15709  793412 1
## 15710  793413 1
## 15711  793414 1
## 15712  793415 1
## 15713  793416 1
## 15714  793417 1
## 15715  793418 1
## 15716  793419 1
## 15717  793420 1
## 15718  793421 1
## 15719  793422 1
## 15720  793423 1
## 15721  793424 1
## 15722  793425 1
## 15723  793426 1
## 15724  793427 1
## 15725  793428 1
## 15726  793429 1
## 15727  793430 1
## 15728  793431 1
## 15729  793432 1
## 15730  793433 1
## 15731  793434 1
## 15732  793435 1
## 15733  793436 1
## 15734  793437 1
## 15735  793438 1
## 15736  793439 1
## 15737  793440 1
## 15738  793441 1
## 15739  793442 1
## 15740  793443 1
## 15741  793444 1
## 15742  793445 1
## 15743  793446 1
## 15744  793447 1
## 15745  793448 1
## 15746  793449 1
## 15747  793450 1
## 15748  793451 1
## 15749  793452 1
## 15750  793453 1
## 15751  793454 1
## 15752  793455 1
## 15753  793456 1
## 15754  793457 1
## 15755  793458 1
## 15756  793459 1
## 15757  793460 1
## 15758  793461 1
## 15759  793462 1
## 15760  793463 1
## 15761  793464 1
## 15762  793465 1
## 15763  793466 1
## 15764  793467 1
## 15765  793468 1
## 15766  793469 1
## 15767  793470 1
## 15768  793471 1
## 15769  793472 1
## 15770  793473 1
## 15771  793475 1
## 15772  793476 1
## 15773  793477 1
## 15774  793478 1
## 15775  793479 1
## 15776  793480 1
## 15777  793481 1
## 15778  793482 1
## 15779  793483 1
## 15780  793484 1
## 15781  793485 1
## 15782  793486 1
## 15783  793487 1
## 15784  793488 1
## 15785  793489 1
## 15786  793490 1
## 15787  793491 1
## 15788  793492 1
## 15789  793493 1
## 15790  793494 1
## 15791  793495 1
## 15792  793496 1
## 15793  793497 1
## 15794  793498 1
## 15795  793499 1
## 15796  793500 1
## 15797  793501 1
## 15798  793502 1
## 15799  793503 1
## 15800  793504 1
## 15801  793505 1
## 15802  793506 1
## 15803  793507 1
## 15804  793508 1
## 15805  793509 1
## 15806  793510 1
## 15807  793511 1
## 15808  793512 1
## 15809  793513 1
## 15810  793514 1
## 15811  793515 1
## 15812  793516 1
## 15813  793517 1
## 15814  793518 1
## 15815  793519 1
## 15816  793520 1
## 15817  793521 1
## 15818  793522 1
## 15819  793523 1
## 15820  793524 1
## 15821  793525 1
## 15822  793526 1
## 15823  793527 1
## 15824  793528 1
## 15825  793529 1
## 15826  793530 1
## 15827  793531 1
## 15828  793532 1
## 15829  793533 1
## 15830  793534 1
## 15831  793535 1
## 15832  793536 1
## 15833  793537 1
## 15834  793538 1
## 15835  793539 1
## 15836  793540 1
## 15837  793541 1
## 15838  793542 1
## 15839  793543 1
## 15840  793544 1
## 15841  793545 1
## 15842  793546 1
## 15843  793547 1
## 15844  793548 1
## 15845  793549 1
## 15846  793550 1
## 15847  793551 1
## 15848  793552 1
## 15849  793553 1
## 15850  793554 1
## 15851  793555 1
## 15852  793556 1
## 15853  793557 1
## 15854  793558 1
## 15855  793559 1
## 15856  793560 1
## 15857  793561 1
## 15858  793562 1
## 15859  793563 1
## 15860  793564 1
## 15861  793565 1
## 15862  793566 1
## 15863  793567 1
## 15864  793568 1
## 15865  793569 1
## 15866  793570 1
## 15867  793571 1
## 15868  793572 1
## 15869  793573 1
## 15870  793574 1
## 15871  793575 1
## 15872  793576 1
## 15873  793577 1
## 15874  793578 1
## 15875  793579 1
## 15876  793580 1
## 15877  793581 1
## 15878  793582 1
## 15879  793583 1
## 15880  793584 1
## 15881  793585 1
## 15882  793586 1
## 15883  793587 1
## 15884  793588 1
## 15885  793589 1
## 15886  793590 1
## 15887  793591 1
## 15888  793592 1
## 15889  793593 1
## 15890  793594 1
## 15891  793595 1
## 15892  793596 1
## 15893  793597 1
## 15894  793598 1
## 15895  793599 1
## 15896  793600 1
## 15897  793601 1
## 15898  793602 1
## 15899  793603 1
## 15900  793604 1
## 15901  793605 1
## 15902  793606 1
## 15903  793607 1
## 15904  793608 1
## 15905  793609 1
## 15906  793610 1
## 15907  793611 1
## 15908  793612 1
## 15909  793613 1
## 15910  793614 1
## 15911  793615 1
## 15912  793616 1
## 15913  793617 1
## 15914  793618 1
## 15915  793619 1
## 15916  793620 1
## 15917  793621 1
## 15918  793622 1
## 15919  793623 1
## 15920  793624 1
## 15921  793625 1
## 15922  793626 1
## 15923  793627 1
## 15924  793628 1
## 15925  793629 1
## 15926  793630 1
## 15927  793631 1
## 15928  793632 1
## 15929  793633 1
## 15930  793634 1
## 15931  793635 1
## 15932  793636 1
## 15933  793637 1
## 15934  793638 1
## 15935  793639 1
## 15936  793640 1
## 15937  793641 1
## 15938  793642 1
## 15939  793643 1
## 15940  793644 1
## 15941  793645 1
## 15942  793646 1
## 15943  793647 1
## 15944  793648 1
## 15945  793649 1
## 15946  793650 1
## 15947  793651 1
## 15948  793652 1
## 15949  793653 1
## 15950  793654 1
## 15951  793655 1
## 15952  793656 1
## 15953  793657 1
## 15954  793658 1
## 15955  793659 1
## 15956  793660 1
## 15957  793661 1
## 15958  793662 1
## 15959  793663 1
## 15960  793664 1
## 15961  793665 1
## 15962  793666 1
## 15963  793667 1
## 15964  793668 1
## 15965  793669 1
## 15966  793670 1
## 15967  793671 1
## 15968  793672 1
## 15969  793673 1
## 15970  793674 1
## 15971  793675 1
## 15972  793676 1
## 15973  793677 1
## 15974  793678 1
## 15975  793679 1
## 15976  793680 1
## 15977  793681 1
## 15978  793682 1
## 15979  793683 1
## 15980  793684 1
## 15981  793685 1
## 15982  793686 1
## 15983  793687 1
## 15984  793688 1
## 15985  793689 1
## 15986  793690 1
## 15987  793691 1
## 15988  793692 1
## 15989  793693 1
## 15990  793694 1
## 15991  793695 1
## 15992  793696 1
## 15993  793697 1
## 15994  793698 1
## 15995  793699 1
## 15996  793700 1
## 15997  793701 1
## 15998  793702 1
## 15999  793703 1
## 16000  793704 1
## 16001  793705 1
## 16002  793706 1
## 16003  793707 1
## 16004  793708 1
## 16005  793709 1
## 16006  793710 1
## 16007  793711 1
## 16008  793712 1
## 16009  793713 1
## 16010  793714 1
## 16011  793715 1
## 16012  793716 1
## 16013  793717 1
## 16014  793718 1
## 16015  793719 1
## 16016  793720 1
## 16017  793721 1
## 16018  793722 1
## 16019  793723 1
## 16020  793724 1
## 16021  793725 1
## 16022  793726 1
## 16023  793727 1
## 16024  793728 1
## 16025  793729 1
## 16026  793730 1
## 16027  793731 1
## 16028  793732 1
## 16029  793733 1
## 16030  793734 1
## 16031  793735 1
## 16032  793736 1
## 16033  793737 1
## 16034  793738 1
## 16035  793739 1
## 16036  793740 1
## 16037  793741 1
## 16038  793742 1
## 16039  793743 1
## 16040  793744 1
## 16041  793745 1
## 16042  793746 1
## 16043  793747 1
## 16044  793748 1
## 16045  793749 1
## 16046  793750 1
## 16047  793751 1
## 16048  793752 1
## 16049  793753 1
## 16050  793754 1
## 16051  793755 1
## 16052  793756 1
## 16053  793757 1
## 16054  793758 1
## 16055  793759 1
## 16056  793760 1
## 16057  793761 1
## 16058  793762 1
## 16059  793763 1
## 16060  793764 1
## 16061  793766 1
## 16062  793767 1
## 16063  793768 1
## 16064  793769 1
## 16065  793770 1
## 16066  793771 1
## 16067  793772 1
## 16068  793773 1
## 16069  793774 1
## 16070  793775 1
## 16071  793776 1
## 16072  793777 1
## 16073  793778 1
## 16074  793779 1
## 16075  793780 1
## 16076  793781 1
## 16077  793782 1
## 16078  793783 1
## 16079  793784 1
## 16080  793785 1
## 16081  793786 1
## 16082  793787 1
## 16083  793788 1
## 16084  793789 1
## 16085  793790 1
## 16086  793791 1
## 16087  793792 1
## 16088  793793 1
## 16089  793794 1
## 16090  793795 1
## 16091  793796 1
## 16092  793797 1
## 16093  793798 1
## 16094  793799 1
## 16095  793800 1
## 16096  793801 1
## 16097  793802 1
## 16098  793803 1
## 16099  793804 1
## 16100  793805 1
## 16101  793806 1
## 16102  793807 1
## 16103  793808 1
## 16104  793809 1
## 16105  793810 1
## 16106  793811 1
## 16107  793812 1
## 16108  793813 1
## 16109  793814 1
## 16110  793816 1
## 16111  793817 1
## 16112  793818 1
## 16113  793819 1
## 16114  793820 1
## 16115  793821 1
## 16116  793822 1
## 16117  793823 1
## 16118  793824 1
## 16119  793826 1
## 16120  793827 1
## 16121  793828 1
## 16122  793829 1
## 16123  793830 1
## 16124  793831 1
## 16125  793832 1
## 16126  793833 1
## 16127  793834 1
## 16128  793835 1
## 16129  793836 1
## 16130  793837 1
## 16131  793838 1
## 16132  793839 1
## 16133  793840 1
## 16134  793841 1
## 16135  793842 1
## 16136  793843 1
## 16137  793844 1
## 16138  793845 1
## 16139  793846 1
## 16140  793847 1
## 16141  793848 1
## 16142  793849 1
## 16143  793850 1
## 16144  793851 1
## 16145  793852 1
## 16146  793853 1
## 16147  793854 1
## 16148  793855 1
## 16149  793856 1
## 16150  793857 1
## 16151  793858 1
## 16152  793859 1
## 16153  793860 1
## 16154  793861 1
## 16155  793862 1
## 16156  793863 1
## 16157  793864 1
## 16158  793865 1
## 16159  793866 1
## 16160  793867 1
## 16161  793868 1
## 16162  793869 1
## 16163  793870 1
## 16164  793871 1
## 16165  793872 1
## 16166  793873 1
## 16167  793874 1
## 16168  793875 1
## 16169  793876 1
## 16170  793877 1
## 16171  793878 1
## 16172  793879 1
## 16173  793880 1
## 16174  793881 1
## 16175  793882 1
## 16176  793883 1
## 16177  793884 1
## 16178  793885 1
## 16179  793886 1
## 16180  793887 1
## 16181  793888 1
## 16182  793889 1
## 16183  793890 1
## 16184  793891 1
## 16185  793892 1
## 16186  793893 1
## 16187  793894 1
## 16188  793895 1
## 16189  793896 1
## 16190  793897 1
## 16191  793898 1
## 16192  793899 1
## 16193  793900 1
## 16194  793901 1
## 16195  793902 1
## 16196  793903 1
## 16197  793904 1
## 16198  793905 1
## 16199  793906 1
## 16200  793907 1
## 16201  793908 1
## 16202  793909 1
## 16203  793910 1
## 16204  793911 1
## 16205  793912 1
## 16206  793913 1
## 16207  793914 1
## 16208  793915 1
## 16209  793916 1
## 16210  793917 1
## 16211  793918 1
## 16212  793919 1
## 16213  793920 1
## 16214  793921 1
## 16215  793922 1
## 16216  793923 1
## 16217  793924 1
## 16218  793925 1
## 16219  793926 1
## 16220  793927 1
## 16221  793928 1
## 16222  793929 1
## 16223  793930 1
## 16224  793931 1
## 16225  793932 1
## 16226  793933 1
## 16227  793934 1
## 16228  793935 1
## 16229  793936 1
## 16230  793937 1
## 16231  793938 1
## 16232  793939 1
## 16233  793940 1
## 16234  793941 1
## 16235  793942 1
## 16236  793943 1
## 16237  793944 1
## 16238  793945 1
## 16239  793946 1
## 16240  793947 1
## 16241  793948 1
## 16242  793949 1
## 16243  793950 1
## 16244  793951 1
## 16245  793952 1
## 16246  793953 1
## 16247  793954 1
## 16248  793955 1
## 16249  793956 1
## 16250  793957 1
## 16251  793958 1
## 16252  793959 1
## 16253  793960 1
## 16254  793961 1
## 16255  793962 1
## 16256  793963 1
## 16257  793964 1
## 16258  793965 1
## 16259  793966 1
## 16260  793967 1
## 16261  793968 1
## 16262  793969 1
## 16263  793970 1
## 16264  793971 1
## 16265  793972 1
## 16266  793973 1
## 16267  793974 1
## 16268  793975 1
## 16269  793976 1
## 16270  793977 1
## 16271  793978 1
## 16272  793979 1
## 16273  793980 1
## 16274  793981 1
## 16275  793982 1
## 16276  793983 1
## 16277  793984 1
## 16278  793985 1
## 16279  793986 1
## 16280  793987 1
## 16281  793988 1
## 16282  793989 1
## 16283  793990 1
## 16284  793991 1
## 16285  793992 1
## 16286  793993 1
## 16287  793994 1
## 16288  793995 1
## 16289  793996 1
## 16290  793997 1
## 16291  793998 1
## 16292  793999 1
## 16293  794000 1
## 16294  794001 1
## 16295  794002 1
## 16296  794003 1
## 16297  794004 1
## 16298  794005 1
## 16299  794006 1
## 16300  794007 1
## 16301  794008 1
## 16302  794009 1
## 16303  794010 1
## 16304  794011 1
## 16305  794012 1
## 16306  794013 1
## 16307  794014 1
## 16308  794015 1
## 16309  794016 1
## 16310  794017 1
## 16311  794018 1
## 16312  794019 1
## 16313  794020 1
## 16314  794021 1
## 16315  794022 1
## 16316  794023 1
## 16317  794024 1
## 16318  794025 1
## 16319  794026 1
## 16320  794027 1
## 16321  794028 1
## 16322  794029 1
## 16323  794030 1
## 16324  794031 1
## 16325  794032 1
## 16326  794033 1
## 16327  794034 1
## 16328  794035 1
## 16329  794036 1
## 16330  794037 1
## 16331  794038 1
## 16332  794039 1
## 16333  794040 1
## 16334  794041 1
## 16335  794042 1
## 16336  794043 1
## 16337  794044 1
## 16338  794045 1
## 16339  794046 1
## 16340  794047 1
## 16341  794048 1
## 16342  794049 1
## 16343  794050 1
## 16344  794051 1
## 16345  794052 1
## 16346  794053 1
## 16347  794054 1
## 16348  794055 1
## 16349  794056 1
## 16350  794057 1
## 16351  794058 1
## 16352  794059 1
## 16353  794061 1
## 16354  794062 1
## 16355  794063 1
## 16356  794064 1
## 16357  794065 1
## 16358  794066 1
## 16359  794067 1
## 16360  794068 1
## 16361  794069 1
## 16362  794070 1
## 16363  794071 1
## 16364  794072 1
## 16365  794073 1
## 16366  794074 1
## 16367  794075 1
## 16368  794076 1
## 16369  794077 1
## 16370  794078 1
## 16371  794079 1
## 16372  794080 1
## 16373  794081 1
## 16374  794082 1
## 16375  794083 1
## 16376  794084 1
## 16377  794085 1
## 16378  794086 1
## 16379  794087 1
## 16380  794088 1
## 16381  794089 1
## 16382  794090 1
## 16383  794091 1
## 16384  794092 1
## 16385  794093 1
## 16386  794094 1
## 16387  794095 1
## 16388  794096 1
## 16389  794097 1
## 16390  794098 1
## 16391  794099 1
## 16392  794100 1
## 16393  794101 1
## 16394  794102 1
## 16395  794103 1
## 16396  794104 1
## 16397  794105 1
## 16398  794106 1
## 16399  794107 1
## 16400  794108 1
## 16401  794109 1
## 16402  794110 1
## 16403  794111 1
## 16404  794112 1
## 16405  794113 1
## 16406  794114 1
## 16407  794115 1
## 16408  794116 1
## 16409  794117 1
## 16410  794118 1
## 16411  794119 1
## 16412  794120 1
## 16413  794121 1
## 16414  794122 1
## 16415  794123 1
## 16416  794124 1
## 16417  794125 1
## 16418  794126 1
## 16419  794127 1
## 16420  794128 1
## 16421  794129 1
## 16422  794130 1
## 16423  794131 1
## 16424  794132 1
## 16425  794133 1
## 16426  794134 1
## 16427  794135 1
## 16428  794136 1
## 16429  794137 1
## 16430  794138 1
## 16431  794139 1
## 16432  794140 1
## 16433  794141 1
## 16434  794142 1
## 16435  794143 1
## 16436  794144 1
## 16437  794145 1
## 16438  794146 1
## 16439  794147 1
## 16440  794148 1
## 16441  794149 1
## 16442  794150 1
## 16443  794151 1
## 16444  794152 1
## 16445  794153 1
## 16446  794154 1
## 16447  794155 1
## 16448  794156 1
## 16449  794157 1
## 16450  794158 1
## 16451  794159 1
## 16452  794160 1
## 16453  794161 1
## 16454  794162 1
## 16455  794163 1
## 16456  794164 1
## 16457  794165 1
## 16458  794166 1
## 16459  794167 1
## 16460  794168 1
## 16461  794169 1
## 16462  794170 1
## 16463  794171 1
## 16464  794172 1
## 16465  794173 1
## 16466  794174 1
## 16467  794175 1
## 16468  794176 1
## 16469  794177 1
## 16470  794178 1
## 16471  794179 1
## 16472  794180 1
## 16473  794181 1
## 16474  794182 1
## 16475  794183 1
## 16476  794184 1
## 16477  794185 1
## 16478  794186 1
## 16479  794187 1
## 16480  794188 1
## 16481  794189 1
## 16482  794190 1
## 16483  794191 1
## 16484  794192 1
## 16485  794193 1
## 16486  794194 1
## 16487  794195 1
## 16488  794196 1
## 16489  794197 1
## 16490  794198 1
## 16491  794199 1
## 16492  794200 1
## 16493  794201 1
## 16494  794202 1
## 16495  794203 1
## 16496  794204 1
## 16497  794205 1
## 16498  794206 1
## 16499  794207 1
## 16500  794208 1
## 16501  794209 1
## 16502  794210 1
## 16503  794211 1
## 16504  794212 1
## 16505  794213 1
## 16506  794214 1
## 16507  794215 1
## 16508  794216 1
## 16509  794217 1
## 16510  794218 1
## 16511  794219 1
## 16512  794220 1
## 16513  794221 1
## 16514  794222 1
## 16515  794223 1
## 16516  794224 1
## 16517  794225 1
## 16518  794226 1
## 16519  794227 1
## 16520  794228 1
## 16521  794229 1
## 16522  794230 1
## 16523  794231 1
## 16524  794232 1
## 16525  794233 1
## 16526  794234 1
## 16527  794235 1
## 16528  794236 1
## 16529  794237 1
## 16530  794238 1
## 16531  794239 1
## 16532  794240 1
## 16533  794241 1
## 16534  794242 1
## 16535  794243 1
## 16536  794244 1
## 16537  794245 1
## 16538  794247 1
## 16539  794248 1
## 16540  794249 1
## 16541  794251 1
## 16542  794252 1
## 16543  794253 1
## 16544  794254 1
## 16545  794255 1
## 16546  794256 1
## 16547  794257 1
## 16548  794258 1
## 16549  794259 1
## 16550  794260 1
## 16551  794261 1
## 16552  794262 1
## 16553  794263 1
## 16554  794264 1
## 16555  794265 1
## 16556  794266 1
## 16557  794267 1
## 16558  794268 1
## 16559  794269 1
## 16560  794270 1
## 16561  794271 1
## 16562  794272 1
## 16563  794273 1
## 16564  794274 1
## 16565  794275 1
## 16566  794276 1
## 16567  794277 1
## 16568  794278 1
## 16569  794279 1
## 16570  794280 1
## 16571  794281 1
## 16572  794282 1
## 16573  794283 1
## 16574  794284 1
## 16575  794285 1
## 16576  794286 1
## 16577  794287 1
## 16578  794288 1
## 16579  794289 1
## 16580  794290 1
## 16581  794291 1
## 16582  794292 1
## 16583  794293 1
## 16584  794294 1
## 16585  794295 1
## 16586  794296 1
## 16587  794297 1
## 16588  794298 1
## 16589  794299 1
## 16590  794300 1
## 16591  794301 1
## 16592  794302 1
## 16593  794303 1
## 16594  794304 1
## 16595  794305 1
## 16596  794306 1
## 16597  794307 1
## 16598  794308 1
## 16599  794309 1
## 16600  794310 1
## 16601  794311 1
## 16602  794312 1
## 16603  794313 1
## 16604  794314 1
## 16605  794315 1
## 16606  794316 1
## 16607  794317 1
## 16608  794318 1
## 16609  794319 1
## 16610  794320 1
## 16611  794321 1
## 16612  794322 1
## 16613  794323 1
## 16614  794324 1
## 16615  794325 1
## 16616  794326 1
## 16617  794327 1
## 16618  794328 1
## 16619  794329 1
## 16620  794330 1
## 16621  794331 1
## 16622  794332 1
## 16623  794333 1
## 16624  794334 1
## 16625  794335 1
## 16626  794336 1
## 16627  794337 1
## 16628  794338 1
## 16629  794339 1
## 16630  794340 1
## 16631  794341 1
## 16632  794342 1
## 16633  794343 1
## 16634  794344 1
## 16635  794345 1
## 16636  794346 1
## 16637  794347 1
## 16638  794348 1
## 16639  794349 1
## 16640  794350 1
## 16641  794351 1
## 16642  794352 1
## 16643  794353 1
## 16644  794354 1
## 16645  794355 1
## 16646  794356 1
## 16647  794357 1
## 16648  794358 1
## 16649  794359 1
## 16650  794360 1
## 16651  794361 1
## 16652  794362 1
## 16653  794363 1
## 16654  794364 1
## 16655  794365 1
## 16656  794366 1
## 16657  794367 1
## 16658  794368 1
## 16659  794369 1
## 16660  794370 1
## 16661  794371 1
## 16662  794372 1
## 16663  794373 1
## 16664  794374 1
## 16665  794375 1
## 16666  794376 1
## 16667  794377 1
## 16668  794378 1
## 16669  794379 1
## 16670  794380 1
## 16671  794381 1
## 16672  794382 1
## 16673  794383 1
## 16674  794384 1
## 16675  794385 1
## 16676  794386 1
## 16677  794387 1
## 16678  794388 1
## 16679  794389 1
## 16680  794390 1
## 16681  794391 1
## 16682  794392 1
## 16683  794393 1
## 16684  794394 1
## 16685  794395 1
## 16686  794396 1
## 16687  794397 1
## 16688  794398 1
## 16689  794399 1
## 16690  794400 1
## 16691  794401 1
## 16692  794402 1
## 16693  794403 1
## 16694  794404 1
## 16695  794405 1
## 16696  794406 1
## 16697  794407 1
## 16698  794408 1
## 16699  794409 1
## 16700  794410 1
## 16701  794411 1
## 16702  794412 1
## 16703  794413 1
## 16704  794414 1
## 16705  794415 1
## 16706  794416 1
## 16707  794417 1
## 16708  794418 1
## 16709  794419 1
## 16710  794420 1
## 16711  794421 1
## 16712  794422 1
## 16713  794423 1
## 16714  794424 1
## 16715  794425 1
## 16716  794426 1
## 16717  794427 1
## 16718  794428 1
## 16719  794429 1
## 16720  794430 1
## 16721  794431 1
## 16722  794432 1
## 16723  794433 1
## 16724  794434 1
## 16725  794435 1
## 16726  794436 1
## 16727  794437 1
## 16728  794438 1
## 16729  794439 1
## 16730  794440 1
## 16731  794441 1
## 16732  794442 1
## 16733  794443 1
## 16734  794444 1
## 16735  794445 1
## 16736  794446 1
## 16737  794447 1
## 16738  794448 1
## 16739  794449 1
## 16740  794450 1
## 16741  794451 1
## 16742  794452 1
## 16743  794453 1
## 16744  794454 1
## 16745  794455 1
## 16746  794456 1
## 16747  794457 1
## 16748  794458 1
## 16749  794459 1
## 16750  794460 1
## 16751  794461 1
## 16752  794462 1
## 16753  794463 1
## 16754  794464 1
## 16755  794465 1
## 16756  794466 1
## 16757  794467 1
## 16758  794468 1
## 16759  794469 1
## 16760  794470 1
## 16761  794471 1
## 16762  794472 1
## 16763  794473 1
## 16764  794474 1
## 16765  794475 1
## 16766  794476 1
## 16767  794477 1
## 16768  794478 1
## 16769  794479 1
## 16770  794480 1
## 16771  794481 1
## 16772  794482 1
## 16773  794483 1
## 16774  794484 1
## 16775  794485 1
## 16776  794486 1
## 16777  794487 1
## 16778  794488 1
## 16779  794489 1
## 16780  794490 1
## 16781  794491 1
## 16782  794492 1
## 16783  794493 1
## 16784  794494 1
## 16785  794495 1
## 16786  794496 1
## 16787  794497 1
## 16788  794498 1
## 16789  794499 1
## 16790  794500 1
## 16791  794501 1
## 16792  794502 1
## 16793  794503 1
## 16794  794504 1
## 16795  794505 1
## 16796  794506 1
## 16797  794507 1
## 16798  794508 1
## 16799  794509 1
## 16800  794510 1
## 16801  794511 1
## 16802  794512 1
## 16803  794513 1
## 16804  794514 1
## 16805  794515 1
## 16806  794516 1
## 16807  794517 1
## 16808  794518 1
## 16809  794519 1
## 16810  794520 1
## 16811  794521 1
## 16812  794522 1
## 16813  794523 1
## 16814  794524 1
## 16815  794525 1
## 16816  794526 1
## 16817  794527 1
## 16818  794528 1
## 16819  794529 1
## 16820  794530 1
## 16821  794531 1
## 16822  794532 1
## 16823  794533 1
## 16824  794534 1
## 16825  794535 1
## 16826  794536 1
## 16827  794537 1
## 16828  794538 1
## 16829  794539 1
## 16830  794540 1
## 16831  794541 1
## 16832  794542 1
## 16833  794543 1
## 16834  794544 1
## 16835  794545 1
## 16836  794546 1
## 16837  794547 1
## 16838  794548 1
## 16839  794549 1
## 16840  794550 1
## 16841  794551 1
## 16842  794552 1
## 16843  794553 1
## 16844  794554 1
## 16845  794555 1
## 16846  794556 1
## 16847  794557 1
## 16848  794558 1
## 16849  794559 1
## 16850  794560 1
## 16851  794561 1
## 16852  794562 1
## 16853  794563 1
## 16854  794564 1
## 16855  794565 1
## 16856  794566 1
## 16857  794567 1
## 16858  794568 1
## 16859  794569 1
## 16860  794570 1
## 16861  794571 1
## 16862  794572 1
## 16863  794573 1
## 16864  794574 1
## 16865  794575 1
## 16866  794576 1
## 16867  794577 1
## 16868  794578 1
## 16869  794579 1
## 16870  794580 1
## 16871  794581 1
## 16872  794582 1
## 16873  794583 1
## 16874  794584 1
## 16875  794585 1
## 16876  794586 1
## 16877  794587 1
## 16878  794588 1
## 16879  794589 1
## 16880  794590 1
## 16881  794591 1
## 16882  794592 1
## 16883  794593 1
## 16884  794594 1
## 16885  794595 1
## 16886  794596 1
## 16887  794597 1
## 16888  794598 1
## 16889  794599 1
## 16890  794600 1
## 16891  794601 1
## 16892  794602 1
## 16893  794603 1
## 16894  794604 1
## 16895  794605 1
## 16896  794606 1
## 16897  794607 1
## 16898  794608 1
## 16899  794609 1
## 16900  794610 1
## 16901  794611 1
## 16902  794612 1
## 16903  794613 1
## 16904  794614 1
## 16905  794615 1
## 16906  794616 1
## 16907  794617 1
## 16908  794618 1
## 16909  794619 1
## 16910  794620 1
## 16911  794621 1
## 16912  794622 1
## 16913  794623 1
## 16914  794624 1
## 16915  794625 1
## 16916  794626 1
## 16917  794627 1
## 16918  794628 1
## 16919  794629 1
## 16920  794631 1
## 16921  794632 1
## 16922  794633 1
## 16923  794634 1
## 16924  794635 1
## 16925  794636 1
## 16926  794637 1
## 16927  794638 1
## 16928  794639 1
## 16929  794640 1
## 16930  794641 1
## 16931  794642 1
## 16932  794643 1
## 16933  794644 1
## 16934  794645 1
## 16935  794646 1
## 16936  794647 1
## 16937  794648 1
## 16938  794649 1
## 16939  794650 1
## 16940  794651 1
## 16941  794652 1
## 16942  794653 1
## 16943  794654 1
## 16944  794655 1
## 16945  794656 1
## 16946  794657 1
## 16947  794658 1
## 16948  794659 1
## 16949  794660 1
## 16950  794661 1
## 16951  794662 1
## 16952  794663 1
## 16953  794664 1
## 16954  794665 1
## 16955  794666 1
## 16956  794667 1
## 16957  794668 1
## 16958  794669 1
## 16959  794670 1
## 16960  794671 1
## 16961  794672 1
## 16962  794673 1
## 16963  794674 1
## 16964  794675 1
## 16965  794676 1
## 16966  794677 1
## 16967  794678 1
## 16968  794679 1
## 16969  794680 1
## 16970  794681 1
## 16971  794682 1
## 16972  794683 1
## 16973  794684 1
## 16974  794685 1
## 16975  794686 1
## 16976  794687 1
## 16977  794688 1
## 16978  794689 1
## 16979  794690 1
## 16980  794691 1
## 16981  794692 1
## 16982  794693 1
## 16983  794694 1
## 16984  794695 1
## 16985  794696 1
## 16986  794697 1
## 16987  794698 1
## 16988  794699 1
## 16989  794700 1
## 16990  794701 1
## 16991  794702 1
## 16992  794703 1
## 16993  794704 1
## 16994  794705 1
## 16995  794706 1
## 16996  794707 1
## 16997  794710 1
## 16998  794711 1
## 16999  794712 1
## 17000  794713 1
## 17001  794714 1
## 17002  794715 1
## 17003  794716 1
## 17004  794717 1
## 17005  794718 1
## 17006  794719 1
## 17007  794720 1
## 17008  794721 1
## 17009  794722 1
## 17010  794723 1
## 17011  794724 1
## 17012  794725 1
## 17013  794726 1
## 17014  794727 1
## 17015  794728 1
## 17016  794729 1
## 17017  794730 1
## 17018  794731 1
## 17019  794732 1
## 17020  794733 1
## 17021  794734 1
## 17022  794735 1
## 17023  794736 1
## 17024  794737 1
## 17025  794738 1
## 17026  794739 1
## 17027  794740 1
## 17028  794741 1
## 17029  794742 1
## 17030  794743 1
## 17031  794744 1
## 17032  794745 1
## 17033  794746 1
## 17034  794747 1
## 17035  794748 1
## 17036  794749 1
## 17037  794750 1
## 17038  794751 1
## 17039  794752 1
## 17040  794753 1
## 17041  794754 1
## 17042  794755 1
## 17043  794756 1
## 17044  794757 1
## 17045  794758 1
## 17046  794759 1
## 17047  794760 1
## 17048  794761 1
## 17049  794762 1
## 17050  794763 1
## 17051  794764 1
## 17052  794765 1
## 17053  794766 1
## 17054  794767 1
## 17055  794768 1
## 17056  794769 1
## 17057  794770 1
## 17058  794771 1
## 17059  794772 1
## 17060  794773 1
## 17061  794774 1
## 17062  794775 1
## 17063  794776 1
## 17064  794777 1
## 17065  794778 1
## 17066  794779 1
## 17067  794780 1
## 17068  794781 1
## 17069  794782 1
## 17070  794783 1
## 17071  794784 1
## 17072  794785 1
## 17073  794786 1
## 17074  794787 1
## 17075  794788 1
## 17076  794789 1
## 17077  794790 1
## 17078  794791 1
## 17079  794792 1
## 17080  794793 1
## 17081  794794 1
## 17082  794795 1
## 17083  794797 1
## 17084  794798 1
## 17085  794799 1
## 17086  794800 1
## 17087  794801 1
## 17088  794802 1
## 17089  794803 1
## 17090  794804 1
## 17091  794805 1
## 17092  794806 1
## 17093  794807 1
## 17094  794808 1
## 17095  794809 1
## 17096  794810 1
## 17097  794811 1
## 17098  794812 1
## 17099  794813 1
## 17100  794814 1
## 17101  794815 1
## 17102  794816 1
## 17103  794817 1
## 17104  794818 1
## 17105  794819 1
## 17106  794820 1
## 17107  794821 1
## 17108  794822 1
## 17109  794823 1
## 17110  794824 1
## 17111  794825 1
## 17112  794826 1
## 17113  794827 1
## 17114  794828 1
## 17115  794829 1
## 17116  794830 1
## 17117  794831 1
## 17118  794832 1
## 17119  794833 1
## 17120  794834 1
## 17121  794835 1
## 17122  794836 1
## 17123  794837 1
## 17124  794838 1
## 17125  794839 1
## 17126  794840 1
## 17127  794841 1
## 17128  794842 1
## 17129  794843 1
## 17130  794844 1
## 17131  794845 1
## 17132  794846 1
## 17133  794847 1
## 17134  794848 1
## 17135  794849 1
## 17136  794850 1
## 17137  794851 1
## 17138  794852 1
## 17139  794853 1
## 17140  794854 1
## 17141  794855 1
## 17142  794856 1
## 17143  794857 1
## 17144  794858 1
## 17145  794859 1
## 17146  794860 1
## 17147  794861 1
## 17148  794862 1
## 17149  794863 1
## 17150  794864 1
## 17151  794865 1
## 17152  794866 1
## 17153  794867 1
## 17154  794868 1
## 17155  794869 1
## 17156  794870 1
## 17157  794871 1
## 17158  794872 1
## 17159  794873 1
## 17160  794874 1
## 17161  794875 1
## 17162  794876 1
## 17163  794877 1
## 17164  794878 1
## 17165  794879 1
## 17166  794880 1
## 17167  794881 1
## 17168  794882 1
## 17169  794883 1
## 17170  794884 1
## 17171  794885 1
## 17172  794886 1
## 17173  794887 1
## 17174  794888 1
## 17175  794889 1
## 17176  794890 1
## 17177  794891 1
## 17178  794892 1
## 17179  794893 1
## 17180  794894 1
## 17181  794895 1
## 17182  794896 1
## 17183  794897 1
## 17184  794898 1
## 17185  794899 1
## 17186  794900 1
## 17187  794901 1
## 17188  794902 1
## 17189  794903 1
## 17190  794904 1
## 17191  794905 1
## 17192  794906 1
## 17193  794907 1
## 17194  794908 1
## 17195  794909 1
## 17196  794910 1
## 17197  794911 1
## 17198  794912 1
## 17199  794913 1
## 17200  794914 1
## 17201  794915 1
## 17202  794916 1
## 17203  794917 1
## 17204  794918 1
## 17205  794919 1
## 17206  794920 1
## 17207  794921 1
## 17208  794922 1
## 17209  794923 1
## 17210  794924 1
## 17211  794925 1
## 17212  794926 1
## 17213  794927 1
## 17214  794928 1
## 17215  794929 1
## 17216  794930 1
## 17217  794931 1
## 17218  794932 1
## 17219  794933 1
## 17220  794934 1
## 17221  794935 1
## 17222  794936 1
## 17223  794937 1
## 17224  794938 1
## 17225  794939 1
## 17226  794940 1
## 17227  794941 1
## 17228  794942 1
## 17229  794943 1
## 17230  794944 1
## 17231  794945 1
## 17232  794946 1
## 17233  794947 1
## 17234  794948 1
## 17235  794949 1
## 17236  794950 1
## 17237  794951 1
## 17238  794952 1
## 17239  794953 1
## 17240  794954 1
## 17241  794955 1
## 17242  794956 1
## 17243  794957 1
## 17244  794958 1
## 17245  794959 1
## 17246  794960 1
## 17247  794961 1
## 17248  794963 1
## 17249  794964 1
## 17250  794965 1
## 17251  794966 1
## 17252  794967 1
## 17253  794968 1
## 17254  794969 1
## 17255  794970 1
## 17256  794971 1
## 17257  794972 1
## 17258  794973 1
## 17259  794974 1
## 17260  794975 1
## 17261  794976 1
## 17262  794977 1
## 17263  794978 1
## 17264  794979 1
## 17265  794980 1
## 17266  794981 1
## 17267  794982 1
## 17268  794983 1
## 17269  794984 1
## 17270  794985 1
## 17271  794986 1
## 17272  794987 1
## 17273  794988 1
## 17274  794989 1
## 17275  794990 1
## 17276  794991 1
## 17277  794992 1
## 17278  794993 1
## 17279  794994 1
## 17280  794995 1
## 17281  794996 1
## 17282  794997 1
## 17283  794998 1
## 17284  794999 1
## 17285  795000 1
## 17286  795001 1
## 17287  795002 1
## 17288  795003 1
## 17289  795004 1
## 17290  795005 1
## 17291  795006 1
## 17292  795007 1
## 17293  795008 1
## 17294  795009 1
## 17295  795010 1
## 17296  795011 1
## 17297  795012 1
## 17298  795013 1
## 17299  795015 1
## 17300  795016 1
## 17301  795017 1
## 17302  795018 1
## 17303  795019 1
## 17304  795020 1
## 17305  795021 1
## 17306  795022 1
## 17307  795023 1
## 17308  795024 1
## 17309  795026 1
## 17310  795027 1
## 17311  795028 1
## 17312  795029 1
## 17313  795030 1
## 17314  795031 1
## 17315  795032 1
## 17316  795033 1
## 17317  795034 1
## 17318  795035 1
## 17319  795036 1
## 17320  795037 1
## 17321  795038 1
## 17322  795039 1
## 17323  795040 1
## 17324  795041 1
## 17325  795042 1
## 17326  795043 1
## 17327  795044 1
## 17328  795045 1
## 17329  795046 1
## 17330  795047 1
## 17331  795048 1
## 17332  795049 1
## 17333  795050 1
## 17334  795051 1
## 17335  795052 1
## 17336  795053 1
## 17337  795054 1
## 17338  795055 1
## 17339  795056 1
## 17340  795057 1
## 17341  795058 1
## 17342  795059 1
## 17343  795060 1
## 17344  795061 1
## 17345  795062 1
## 17346  795063 1
## 17347  795064 1
## 17348  795065 1
## 17349  795066 1
## 17350  795067 1
## 17351  795068 1
## 17352  795069 1
## 17353  795070 1
## 17354  795071 1
## 17355  795072 1
## 17356  795073 1
## 17357  795074 1
## 17358  795075 1
## 17359  795076 1
## 17360  795077 1
## 17361  795078 1
## 17362  795079 1
## 17363  795080 1
## 17364  795081 1
## 17365  795082 1
## 17366  795083 1
## 17367  795084 1
## 17368  795085 1
## 17369  795086 1
## 17370  795087 1
## 17371  795088 1
## 17372  795089 1
## 17373  795090 1
## 17374  795091 1
## 17375  795092 1
## 17376  795093 1
## 17377  795094 1
## 17378  795095 1
## 17379  795096 1
## 17380  795097 1
## 17381  795098 1
## 17382  795099 1
## 17383  795100 1
## 17384  795101 1
## 17385  795102 1
## 17386  795103 1
## 17387  795104 1
## 17388  795105 1
## 17389  795106 1
## 17390  795107 1
## 17391  795108 1
## 17392  795109 1
## 17393  795110 1
## 17394  795111 1
## 17395  795112 1
## 17396  795113 1
## 17397  795114 1
## 17398  795115 1
## 17399  795116 1
## 17400  795117 1
## 17401  795118 1
## 17402  795119 1
## 17403  795120 1
## 17404  795121 1
## 17405  795122 1
## 17406  795123 1
## 17407  795124 1
## 17408  795125 1
## 17409  795126 1
## 17410  795127 1
## 17411  795128 1
## 17412  795129 1
## 17413  795130 1
## 17414  795131 1
## 17415  795132 1
## 17416  795133 1
## 17417  795134 1
## 17418  795135 1
## 17419  795136 1
## 17420  795137 1
## 17421  795138 1
## 17422  795139 1
## 17423  795140 1
## 17424  795141 1
## 17425  795142 1
## 17426  795143 1
## 17427  795144 1
## 17428  795145 1
## 17429  795146 1
## 17430  795147 1
## 17431  795148 1
## 17432  795149 1
## 17433  795150 1
## 17434  795151 1
## 17435  795152 1
## 17436  795153 1
## 17437  795154 1
## 17438  795155 1
## 17439  795156 1
## 17440  795157 1
## 17441  795158 1
## 17442  795159 1
## 17443  795160 1
## 17444  795161 1
## 17445  795162 1
## 17446  795163 1
## 17447  795164 1
## 17448  795165 1
## 17449  795166 1
## 17450  795167 1
## 17451  795168 1
## 17452  795169 1
## 17453  795170 1
## 17454  795171 1
## 17455  795172 1
## 17456  795173 1
## 17457  795174 1
## 17458  795175 1
## 17459  795176 1
## 17460  795177 1
## 17461  795178 1
## 17462  795179 1
## 17463  795180 1
## 17464  795181 1
## 17465  795182 1
## 17466  795183 1
## 17467  795184 1
## 17468  795185 1
## 17469  795186 1
## 17470  795187 1
## 17471  795188 1
## 17472  795189 1
## 17473  795190 1
## 17474  795191 1
## 17475  795192 1
## 17476  795193 1
## 17477  795194 1
## 17478  795195 1
## 17479  795196 1
## 17480  795197 1
## 17481  795198 1
## 17482  795199 1
## 17483  795200 1
## 17484  795201 1
## 17485  795202 1
## 17486  795203 1
## 17487  795204 1
## 17488  795205 1
## 17489  795206 1
## 17490  795207 1
## 17491  795208 1
## 17492  795209 1
## 17493  795210 1
## 17494  795211 1
## 17495  795212 1
## 17496  795213 1
## 17497  795214 1
## 17498  795215 1
## 17499  795216 1
## 17500  795217 1
## 17501  795218 1
## 17502  795219 1
## 17503  795220 1
## 17504  795221 1
## 17505  795222 1
## 17506  795223 1
## 17507  795224 1
## 17508  795225 1
## 17509  795226 1
## 17510  795227 1
## 17511  795228 1
## 17512  795229 1
## 17513  795230 1
## 17514  795231 1
## 17515  795232 1
## 17516  795233 1
## 17517  795234 1
## 17518  795235 1
## 17519  795236 1
## 17520  795237 1
## 17521  795238 1
## 17522  795239 1
## 17523  795240 1
## 17524  795241 1
## 17525  795242 1
## 17526  795243 1
## 17527  795244 1
## 17528  795245 1
## 17529  795246 1
## 17530  795247 1
## 17531  795248 1
## 17532  795250 1
## 17533  795251 1
## 17534  795252 1
## 17535  795253 1
## 17536  795254 1
## 17537  795255 1
## 17538  795256 1
## 17539  795257 1
## 17540  795258 1
## 17541  795259 1
## 17542  795260 1
## 17543  795261 1
## 17544  795262 1
## 17545  795263 1
## 17546  795264 1
## 17547  795265 1
## 17548  795266 1
## 17549  795267 1
## 17550  795268 1
## 17551  795269 1
## 17552  795270 1
## 17553  795271 1
## 17554  795272 1
## 17555  795273 1
## 17556  795274 1
## 17557  795275 1
## 17558  795276 1
## 17559  795277 1
## 17560  795278 1
## 17561  795279 1
## 17562  795280 1
## 17563  795281 1
## 17564  795282 1
## 17565  795283 1
## 17566  795284 1
## 17567  795285 1
## 17568  795286 1
## 17569  795287 1
## 17570  795288 1
## 17571  795289 1
## 17572  795290 1
## 17573  795291 1
## 17574  795292 1
## 17575  795293 1
## 17576  795294 1
## 17577  795295 1
## 17578  795296 1
## 17579  795297 1
## 17580  795299 1
## 17581  795300 1
## 17582  795301 1
## 17583  795302 1
## 17584  795303 1
## 17585  795304 1
## 17586  795305 1
## 17587  795306 1
## 17588  795307 1
## 17589  795308 1
## 17590  795309 1
## 17591  795310 1
## 17592  795311 1
## 17593  795312 1
## 17594  795313 1
## 17595  795314 1
## 17596  795315 1
## 17597  795316 1
## 17598  795317 1
## 17599  795318 1
## 17600  795319 1
## 17601  795320 1
## 17602  795321 1
## 17603  795322 1
## 17604  795323 1
## 17605  795324 1
## 17606  795325 1
## 17607  795326 1
## 17608  795327 1
## 17609  795328 1
## 17610  795329 1
## 17611  795330 1
## 17612  795331 1
## 17613  795332 1
## 17614  795333 1
## 17615  795334 1
## 17616  795335 1
## 17617  795336 1
## 17618  795337 1
## 17619  795338 1
## 17620  795339 1
## 17621  795340 1
## 17622  795341 1
## 17623  795342 1
## 17624  795343 1
## 17625  795344 1
## 17626  795345 1
## 17627  795346 1
## 17628  795347 1
## 17629  795348 1
## 17630  795349 1
## 17631  795350 1
## 17632  795351 1
## 17633  795352 1
## 17634  795353 1
## 17635  795354 1
## 17636  795355 1
## 17637  795356 1
## 17638  795357 1
## 17639  795358 1
## 17640  795359 1
## 17641  795360 1
## 17642  795361 1
## 17643  795362 1
## 17644  795363 1
## 17645  795364 1
## 17646  795365 1
## 17647  795366 1
## 17648  795367 1
## 17649  795368 1
## 17650  795369 1
## 17651  795370 1
## 17652  795371 1
## 17653  795372 1
## 17654  795373 1
## 17655  795374 1
## 17656  795375 1
## 17657  795376 1
## 17658  795377 1
## 17659  795378 1
## 17660  795379 1
## 17661  795380 1
## 17662  795381 1
## 17663  795382 1
## 17664  795383 1
## 17665  795384 1
## 17666  795385 1
## 17667  795386 1
## 17668  795387 1
## 17669  795388 1
## 17670  795389 1
## 17671  795390 1
## 17672  795391 1
## 17673  795392 1
## 17674  795393 1
## 17675  795394 1
## 17676  795395 1
## 17677  795396 1
## 17678  795397 1
## 17679  795398 1
## 17680  795399 1
## 17681  795400 1
## 17682  795401 1
## 17683  795402 1
## 17684  795403 1
## 17685  795404 1
## 17686  795405 1
## 17687  795406 1
## 17688  795407 1
## 17689  795408 1
## 17690  795409 1
## 17691  795410 1
## 17692  795411 1
## 17693  795412 1
## 17694  795413 1
## 17695  795414 1
## 17696  795415 1
## 17697  795416 1
## 17698  795417 1
## 17699  795418 1
## 17700  795419 1
## 17701  795420 1
## 17702  795421 1
## 17703  795422 1
## 17704  795423 1
## 17705  795424 1
## 17706  795425 1
## 17707  795426 1
## 17708  795427 1
## 17709  795428 1
## 17710  795429 1
## 17711  795430 1
## 17712  795431 1
## 17713  795432 1
## 17714  795433 1
## 17715  795434 1
## 17716  795435 1
## 17717  795436 1
## 17718  795437 1
## 17719  795438 1
## 17720  795439 1
## 17721  795440 1
## 17722  795441 1
## 17723  795442 1
## 17724  795443 1
## 17725  795444 1
## 17726  795445 1
## 17727  795446 1
## 17728  795447 1
## 17729  795448 1
## 17730  795449 1
## 17731  795450 1
## 17732  795451 1
## 17733  795452 1
## 17734  795453 1
## 17735  795454 1
## 17736  795455 1
## 17737  795456 1
## 17738  795457 1
## 17739  795458 1
## 17740  795459 1
## 17741  795460 1
## 17742  795461 1
## 17743  795462 1
## 17744  795463 1
## 17745  795464 1
## 17746  795465 1
## 17747  795466 1
## 17748  795467 1
## 17749  795468 1
## 17750  795469 1
## 17751  795470 1
## 17752  795471 1
## 17753  795472 1
## 17754  795473 1
## 17755  795474 1
## 17756  795475 1
## 17757  795476 1
## 17758  795477 1
## 17759  795478 1
## 17760  795479 1
## 17761  795480 1
## 17762  795481 1
## 17763  795482 1
## 17764  795483 1
## 17765  795484 1
## 17766  795485 1
## 17767  795486 1
## 17768  795487 1
## 17769  795488 1
## 17770  795489 1
## 17771  795490 1
## 17772  795491 1
## 17773  795492 1
## 17774  795493 1
## 17775  795494 1
## 17776  795495 1
## 17777  795496 1
## 17778  795497 1
## 17779  795498 1
## 17780  795499 1
## 17781  795500 1
## 17782  795501 1
## 17783  795502 1
## 17784  795503 1
## 17785  795504 1
## 17786  795505 1
## 17787  795506 1
## 17788  795507 1
## 17789  795508 1
## 17790  795509 1
## 17791  795510 1
## 17792  795511 1
## 17793  795512 1
## 17794  795513 1
## 17795  795514 1
## 17796  795515 1
## 17797  795516 1
## 17798  795517 1
## 17799  795518 1
## 17800  795519 1
## 17801  795520 1
## 17802  795521 1
## 17803  795522 1
## 17804  795523 1
## 17805  795524 1
## 17806  795525 1
## 17807  795526 1
## 17808  795527 1
## 17809  795528 1
## 17810  795529 1
## 17811  795530 1
## 17812  795531 1
## 17813  795532 1
## 17814  795533 1
## 17815  795534 1
## 17816  795535 1
## 17817  795536 1
## 17818  795537 1
## 17819  795538 1
## 17820  795539 1
## 17821  795540 1
## 17822  795541 1
## 17823  795542 1
## 17824  795543 1
## 17825  795544 1
## 17826  795545 1
## 17827  795546 1
## 17828  795547 1
## 17829  795548 1
## 17830  795549 1
## 17831  795550 1
## 17832  795551 1
## 17833  795552 1
## 17834  795553 1
## 17835  795554 1
## 17836  795555 1
## 17837  795556 1
## 17838  795557 1
## 17839  795558 1
## 17840  795559 1
## 17841  795560 1
## 17842  795561 1
## 17843  795562 1
## 17844  795563 1
## 17845  795564 1
## 17846  795565 1
## 17847  795566 1
## 17848  795567 1
## 17849  795568 1
## 17850  795569 1
## 17851  795570 1
## 17852  795571 1
## 17853  795572 1
## 17854  795573 1
## 17855  795574 1
## 17856  795575 1
## 17857  795576 1
## 17858  795577 1
## 17859  795578 1
## 17860  795579 1
## 17861  795580 1
## 17862  795581 1
## 17863  795582 1
## 17864  795583 1
## 17865  795584 1
## 17866  795585 1
## 17867  795586 1
## 17868  795587 1
## 17869  795588 1
## 17870  795589 1
## 17871  795590 1
## 17872  795591 1
## 17873  795592 1
## 17874  795593 1
## 17875  795594 1
## 17876  795595 1
## 17877  795596 1
## 17878  795597 1
## 17879  795598 1
## 17880  795599 1
## 17881  795600 1
## 17882  795602 1
## 17883  795603 1
## 17884  795604 1
## 17885  795605 1
## 17886  795606 1
## 17887  795607 1
## 17888  795608 1
## 17889  795609 1
## 17890  795610 1
## 17891  795611 1
## 17892  795612 1
## 17893  795613 1
## 17894  795614 1
## 17895  795615 1
## 17896  795616 1
## 17897  795617 1
## 17898  795618 1
## 17899  795619 1
## 17900  795620 1
## 17901  795621 1
## 17902  795622 1
## 17903  795623 1
## 17904  795624 1
## 17905  795625 1
## 17906  795626 1
## 17907  795627 1
## 17908  795628 1
## 17909  795629 1
## 17910  795630 1
## 17911  795631 1
## 17912  795632 1
## 17913  795633 1
## 17914  795634 1
## 17915  795635 1
## 17916  795636 1
## 17917  795637 1
## 17918  795638 1
## 17919  795639 1
## 17920  795640 1
## 17921  795641 1
## 17922  795642 1
## 17923  795643 1
## 17924  795644 1
## 17925  795645 1
## 17926  795646 1
## 17927  795647 1
## 17928  795648 1
## 17929  795649 1
## 17930  795650 1
## 17931  795651 1
## 17932  795652 1
## 17933  795653 1
## 17934  795654 1
## 17935  795655 1
## 17936  795656 1
## 17937  795657 1
## 17938  795658 1
## 17939  795659 1
## 17940  795660 1
## 17941  795661 1
## 17942  795662 1
## 17943  795663 1
## 17944  795664 1
## 17945  795665 1
## 17946  795666 1
## 17947  795667 1
## 17948  795668 1
## 17949  795669 1
## 17950  795670 1
## 17951  795671 1
## 17952  795672 1
## 17953  795673 1
## 17954  795674 1
## 17955  795675 1
## 17956  795676 1
## 17957  795677 1
## 17958  795678 1
## 17959  795679 1
## 17960  795680 1
## 17961  795681 1
## 17962  795682 1
## 17963  795683 1
## 17964  795684 1
## 17965  795685 1
## 17966  795686 1
## 17967  795687 1
## 17968  795688 1
## 17969  795689 1
## 17970  795690 1
## 17971  795691 1
## 17972  795692 1
## 17973  795693 1
## 17974  795694 1
## 17975  795695 1
## 17976  795696 1
## 17977  795697 1
## 17978  795698 1
## 17979  795699 1
## 17980  795700 1
## 17981  795701 1
## 17982  795702 1
## 17983  795703 1
## 17984  795704 1
## 17985  795705 1
## 17986  795706 1
## 17987  795707 1
## 17988  795708 1
## 17989  795709 1
## 17990  795710 1
## 17991  795711 1
## 17992  795712 1
## 17993  795713 1
## 17994  795714 1
## 17995  795715 1
## 17996  795716 1
## 17997  795717 1
## 17998  795718 1
## 17999  795719 1
## 18000  795720 1
## 18001  795721 1
## 18002  795722 1
## 18003  795723 1
## 18004  795724 1
## 18005  795725 1
## 18006  795726 1
## 18007  795727 1
## 18008  795728 1
## 18009  795729 1
## 18010  795730 1
## 18011  795731 1
## 18012  795732 1
## 18013  795733 1
## 18014  795734 1
## 18015  795735 1
## 18016  795736 1
## 18017  795737 1
## 18018  795738 1
## 18019  795739 1
## 18020  795740 1
## 18021  795741 1
## 18022  795742 1
## 18023  795743 1
## 18024  795744 1
## 18025  795745 1
## 18026  795746 1
## 18027  795747 1
## 18028  795748 1
## 18029  795749 1
## 18030  795750 1
## 18031  795751 1
## 18032  795752 1
## 18033  795753 1
## 18034  795754 1
## 18035  795755 1
## 18036  795756 1
## 18037  795757 1
## 18038  795758 1
## 18039  795759 1
## 18040  795760 1
## 18041  795761 1
## 18042  795762 1
## 18043  795763 1
## 18044  795764 1
## 18045  795765 1
## 18046  795766 1
## 18047  795767 1
## 18048  795768 1
## 18049  795769 1
## 18050  795770 1
## 18051  795771 1
## 18052  795772 1
## 18053  795773 1
## 18054  795774 1
## 18055  795775 1
## 18056  795776 1
## 18057  795777 1
## 18058  795778 1
## 18059  795779 1
## 18060  795780 1
## 18061  795781 1
## 18062  795782 1
## 18063  795783 1
## 18064  795784 1
## 18065  795785 1
## 18066  795786 1
## 18067  795787 1
## 18068  795788 1
## 18069  795789 1
## 18070  795790 1
## 18071  795791 1
## 18072  795792 1
## 18073  795793 1
## 18074  795794 1
## 18075  795795 1
## 18076  795796 1
## 18077  795797 1
## 18078  795798 1
## 18079  795799 1
## 18080  795800 1
## 18081  795801 1
## 18082  795802 1
## 18083  795803 1
## 18084  795804 1
## 18085  795805 1
## 18086  795806 1
## 18087  795807 1
## 18088  795808 1
## 18089  795809 1
## 18090  795810 1
## 18091  795811 1
## 18092  795812 1
## 18093  795813 1
## 18094  795814 1
## 18095  795815 1
## 18096  795816 1
## 18097  795817 1
## 18098  795818 1
## 18099  795819 1
## 18100  795820 1
## 18101  795821 1
## 18102  795822 1
## 18103  795823 1
## 18104  795824 1
## 18105  795825 1
## 18106  795826 1
## 18107  795827 1
## 18108  795828 1
## 18109  795829 1
## 18110  795830 1
## 18111  795831 1
## 18112  795832 1
## 18113  795833 1
## 18114  795834 1
## 18115  795835 1
## 18116  795836 1
## 18117  795837 1
## 18118  795838 1
## 18119  795839 1
## 18120  795840 1
## 18121  795841 1
## 18122  795842 1
## 18123  795843 1
## 18124  795844 1
## 18125  795845 1
## 18126  795846 1
## 18127  795847 1
## 18128  795848 1
## 18129  795849 1
## 18130  795850 1
## 18131  795851 1
## 18132  795852 1
## 18133  795853 1
## 18134  795854 1
## 18135  795855 1
## 18136  795856 1
## 18137  795857 1
## 18138  795858 1
## 18139  795859 1
## 18140  795860 1
## 18141  795861 1
## 18142  795862 1
## 18143  795863 1
## 18144  795864 1
## 18145  795865 1
## 18146  795867 1
## 18147  795868 1
## 18148  795869 1
## 18149  795870 1
## 18150  795871 1
## 18151  795872 1
## 18152  795873 1
## 18153  795874 1
## 18154  795875 1
## 18155  795876 1
## 18156  795877 1
## 18157  795878 1
## 18158  795879 1
## 18159  795880 1
## 18160  795881 1
## 18161  795882 1
## 18162  795883 1
## 18163  795884 1
## 18164  795885 1
## 18165  795886 1
## 18166  795887 1
## 18167  795888 1
## 18168  795889 1
## 18169  795890 1
## 18170  795891 1
## 18171  795892 1
## 18172  795893 1
## 18173  795894 1
## 18174  795895 1
## 18175  795896 1
## 18176  795897 1
## 18177  795898 1
## 18178  795899 1
## 18179  795900 1
## 18180  795901 1
## 18181  795902 1
## 18182  795903 1
## 18183  795904 1
## 18184  795905 1
## 18185  795906 1
## 18186  795907 1
## 18187  795908 1
## 18188  795909 1
## 18189  795910 1
## 18190  795911 1
## 18191  795912 1
## 18192  795913 1
## 18193  795914 1
## 18194  795915 1
## 18195  795916 1
## 18196  795917 1
## 18197  795918 1
## 18198  795919 1
## 18199  795920 1
## 18200  795921 1
## 18201  795922 1
## 18202  795923 1
## 18203  795924 1
## 18204  795925 1
## 18205  795926 1
## 18206  795927 1
## 18207  795928 1
## 18208  795929 1
## 18209  795930 1
## 18210  795931 1
## 18211  795932 1
## 18212  795933 1
## 18213  795934 1
## 18214  795935 1
## 18215  795936 1
## 18216  795937 1
## 18217  795938 1
## 18218  795939 1
## 18219  795940 1
## 18220  795941 1
## 18221  795942 1
## 18222  795943 1
## 18223  795944 1
## 18224  795945 1
## 18225  795946 1
## 18226  795947 1
## 18227  795948 1
## 18228  795949 1
## 18229  795950 1
## 18230  795951 1
## 18231  795952 1
## 18232  795953 1
## 18233  795954 1
## 18234  795955 1
## 18235  795956 1
## 18236  795957 1
## 18237  795958 1
## 18238  795959 1
## 18239  795960 1
## 18240  795962 1
## 18241  795963 1
## 18242  795964 1
## 18243  795965 1
## 18244  795966 1
## 18245  795967 1
## 18246  795968 1
## 18247  795969 1
## 18248  795970 1
## 18249  795971 1
## 18250  795972 1
## 18251  795973 1
## 18252  795974 1
## 18253  795975 1
## 18254  795976 1
## 18255  795977 1
## 18256  795978 1
## 18257  795979 1
## 18258  795980 1
## 18259  795981 1
## 18260  795982 1
## 18261  795983 1
## 18262  795984 1
## 18263  795985 1
## 18264  795986 1
## 18265  795987 1
## 18266  795988 1
## 18267  795989 1
## 18268  795990 1
## 18269  795991 1
## 18270  795992 1
## 18271  795993 1
## 18272  795994 1
## 18273  795995 1
## 18274  795996 1
## 18275  795997 1
## 18276  795998 1
## 18277  795999 1
## 18278  796000 1
## 18279  796001 1
## 18280  796002 1
## 18281  796003 1
## 18282  796004 1
## 18283  796005 1
## 18284  796006 1
## 18285  796007 1
## 18286  796008 1
## 18287  796009 1
## 18288  796010 1
## 18289  796011 1
## 18290  796012 1
## 18291  796013 1
## 18292  796014 1
## 18293  796015 1
## 18294  796016 1
## 18295  796017 1
## 18296  796018 1
## 18297  796019 1
## 18298  796020 1
## 18299  796021 1
## 18300  796022 1
## 18301  796023 1
## 18302  796024 1
## 18303  796025 1
## 18304  796026 1
## 18305  796027 1
## 18306  796028 1
## 18307  796029 1
## 18308  796030 1
## 18309  796031 1
## 18310  796032 1
## 18311  796033 1
## 18312  796034 1
## 18313  796035 1
## 18314  796036 1
## 18315  796037 1
## 18316  796038 1
## 18317  796039 1
## 18318  796040 1
## 18319  796041 1
## 18320  796042 1
## 18321  796043 1
## 18322  796044 1
## 18323  796045 1
## 18324  796046 1
## 18325  796047 1
## 18326  796048 1
## 18327  796049 1
## 18328  796050 1
## 18329  796051 1
## 18330  796052 1
## 18331  796053 1
## 18332  796054 1
## 18333  796055 1
## 18334  796056 1
## 18335  796057 1
## 18336  796058 1
## 18337  796059 1
## 18338  796060 1
## 18339  796061 1
## 18340  796062 1
## 18341  796063 1
## 18342  796064 1
## 18343  796065 1
## 18344  796066 1
## 18345  796067 1
## 18346  796068 1
## 18347  796069 1
## 18348  796070 1
## 18349  796071 1
## 18350  796072 1
## 18351  796073 1
## 18352  796074 1
## 18353  796075 1
## 18354  796076 1
## 18355  796077 1
## 18356  796078 1
## 18357  796079 1
## 18358  796080 1
## 18359  796081 1
## 18360  796082 1
## 18361  796083 1
## 18362  796084 1
## 18363  796085 1
## 18364  796086 1
## 18365  796087 1
## 18366  796088 1
## 18367  796089 1
## 18368  796090 1
## 18369  796091 1
## 18370  796092 1
## 18371  796093 1
## 18372  796094 1
## 18373  796095 1
## 18374  796096 1
## 18375  796097 1
## 18376  796098 1
## 18377  796099 1
## 18378  796100 1
## 18379  796101 1
## 18380  796102 1
## 18381  796103 1
## 18382  796104 1
## 18383  796105 1
## 18384  796106 1
## 18385  796107 1
## 18386  796108 1
## 18387  796109 1
## 18388  796110 1
## 18389  796111 1
## 18390  796112 1
## 18391  796113 1
## 18392  796114 1
## 18393  796115 1
## 18394  796116 1
## 18395  796117 1
## 18396  796118 1
## 18397  796119 1
## 18398  796120 1
## 18399  796121 1
## 18400  796122 1
## 18401  796123 1
## 18402  796124 1
## 18403  796125 1
## 18404  796126 1
## 18405  796127 1
## 18406  796128 1
## 18407  796129 1
## 18408  796130 1
## 18409  796131 1
## 18410  796132 1
## 18411  796133 1
## 18412  796134 1
## 18413  796135 1
## 18414  796136 1
## 18415  796137 1
## 18416  796138 1
## 18417  796139 1
## 18418  796140 1
## 18419  796141 1
## 18420  796142 1
## 18421  796143 1
## 18422  796144 1
## 18423  796145 1
## 18424  796146 1
## 18425  796147 1
## 18426  796148 1
## 18427  796149 1
## 18428  796150 1
## 18429  796151 1
## 18430  796152 1
## 18431  796153 1
## 18432  796154 1
## 18433  796155 1
## 18434  796156 1
## 18435  796157 1
## 18436  796158 1
## 18437  796159 1
## 18438  796160 1
## 18439  796161 1
## 18440  796162 1
## 18441  796163 1
## 18442  796164 1
## 18443  796165 1
## 18444  796166 1
## 18445  796167 1
## 18446  796168 1
## 18447  796169 1
## 18448  796170 1
## 18449  796171 1
## 18450  796172 1
## 18451  796173 1
## 18452  796174 1
## 18453  796175 1
## 18454  796176 1
## 18455  796177 1
## 18456  796178 1
## 18457  796179 1
## 18458  796180 1
## 18459  796181 1
## 18460  796182 1
## 18461  796183 1
## 18462  796184 1
## 18463  796185 1
## 18464  796186 1
## 18465  796187 1
## 18466  796188 1
## 18467  796189 1
## 18468  796190 1
## 18469  796191 1
## 18470  796192 1
## 18471  796193 1
## 18472  796194 1
## 18473  796195 1
## 18474  796196 1
## 18475  796197 1
## 18476  796198 1
## 18477  796199 1
## 18478  796200 1
## 18479  796201 1
## 18480  796202 1
## 18481  796203 1
## 18482  796204 1
## 18483  796205 1
## 18484  796206 1
## 18485  796207 1
## 18486  796208 1
## 18487  796209 1
## 18488  796210 1
## 18489  796211 1
## 18490  796212 1
## 18491  796213 1
## 18492  796214 1
## 18493  796215 1
## 18494  796216 1
## 18495  796217 1
## 18496  796218 1
## 18497  796219 1
## 18498  796220 1
## 18499  796221 1
## 18500  796222 1
## 18501  796223 1
## 18502  796224 1
## 18503  796225 1
## 18504  796226 1
## 18505  796227 1
## 18506  796228 1
## 18507  796229 1
## 18508  796230 1
## 18509  796231 1
## 18510  796232 1
## 18511  796233 1
## 18512  796234 1
## 18513  796235 1
## 18514  796236 1
## 18515  796237 1
## 18516  796238 1
## 18517  796239 1
## 18518  796240 1
## 18519  796241 1
## 18520  796242 1
## 18521  796243 1
## 18522  796244 1
## 18523  796245 1
## 18524  796246 1
## 18525  796247 1
## 18526  796248 1
## 18527  796249 1
## 18528  796250 1
## 18529  796251 1
## 18530  796252 1
## 18531  796253 1
## 18532  796254 1
## 18533  796255 1
## 18534  796256 1
## 18535  796257 1
## 18536  796258 1
## 18537  796259 1
## 18538  796260 1
## 18539  796261 1
## 18540  796262 1
## 18541  796263 1
## 18542  796264 1
## 18543  796265 1
## 18544  796266 1
## 18545  796267 1
## 18546  796268 1
## 18547  796269 1
## 18548  796270 1
## 18549  796271 1
## 18550  796272 1
## 18551  796273 1
## 18552  796274 1
## 18553  796275 1
## 18554  796276 1
## 18555  796277 1
## 18556  796278 1
## 18557  796279 1
## 18558  796280 1
## 18559  796281 1
## 18560  796282 1
## 18561  796283 1
## 18562  796284 1
## 18563  796285 1
## 18564  796286 1
## 18565  796287 1
## 18566  796288 1
## 18567  796289 1
## 18568  796290 1
## 18569  796291 1
## 18570  796292 1
## 18571  796293 1
## 18572  796294 1
## 18573  796295 1
## 18574  796296 1
## 18575  796297 1
## 18576  796298 1
## 18577  796299 1
## 18578  796300 1
## 18579  796301 1
## 18580  796302 1
## 18581  796303 1
## 18582  796304 1
## 18583  796305 1
## 18584  796306 1
## 18585  796307 1
## 18586  796308 1
## 18587  796309 1
## 18588  796310 1
## 18589  796311 1
## 18590  796312 1
## 18591  796313 1
## 18592  796314 1
## 18593  796315 1
## 18594  796316 1
## 18595  796317 1
## 18596  796318 1
## 18597  796319 1
## 18598  796320 1
## 18599  796321 1
## 18600  796322 1
## 18601  796323 1
## 18602  796324 1
## 18603  796325 1
## 18604  796327 1
## 18605  796328 1
## 18606  796329 1
## 18607  796330 1
## 18608  796331 1
## 18609  796332 1
## 18610  796333 1
## 18611  796334 1
## 18612  796335 1
## 18613  796336 1
## 18614  796337 1
## 18615  796338 1
## 18616  796339 1
## 18617  796340 1
## 18618  796341 1
## 18619  796342 1
## 18620  796343 1
## 18621  796344 1
## 18622  796345 1
## 18623  796346 1
## 18624  796347 1
## 18625  796348 1
## 18626  796349 1
## 18627  796350 1
## 18628  796351 1
## 18629  796352 1
## 18630  796353 1
## 18631  796354 1
## 18632  796355 1
## 18633  796356 1
## 18634  796357 1
## 18635  796358 1
## 18636  796359 1
## 18637  796360 1
## 18638  796361 1
## 18639  796362 1
## 18640  796363 1
## 18641  796364 1
## 18642  796365 1
## 18643  796366 1
## 18644  796367 1
## 18645  796368 1
## 18646  796369 1
## 18647  796370 1
## 18648  796371 1
## 18649  796372 1
## 18650  796373 1
## 18651  796374 1
## 18652  796375 1
## 18653  796376 1
## 18654  796377 1
## 18655  796378 1
## 18656  796379 1
## 18657  796380 1
## 18658  796381 1
## 18659  796382 1
## 18660  796383 1
## 18661  796384 1
## 18662  796385 1
## 18663  796386 1
## 18664  796387 1
## 18665  796388 1
## 18666  796389 1
## 18667  796390 1
## 18668  796391 1
## 18669  796392 1
## 18670  796393 1
## 18671  796394 1
## 18672  796395 1
## 18673  796396 1
## 18674  796397 1
## 18675  796398 1
## 18676  796399 1
## 18677  796400 1
## 18678  796401 1
## 18679  796402 1
## 18680  796403 1
## 18681  796404 1
## 18682  796405 1
## 18683  796406 1
## 18684  796407 1
## 18685  796408 1
## 18686  796409 1
## 18687  796411 1
## 18688  796412 1
## 18689  796413 1
## 18690  796414 1
## 18691  796415 1
## 18692  796416 1
## 18693  796417 1
## 18694  796418 1
## 18695  796419 1
## 18696  796420 1
## 18697  796421 1
## 18698  796422 1
## 18699  796423 1
## 18700  796424 1
## 18701  796425 1
## 18702  796426 1
## 18703  796427 1
## 18704  796428 1
## 18705  796429 1
## 18706  796430 1
## 18707  796431 1
## 18708  796432 1
## 18709  796433 1
## 18710  796434 1
## 18711  796435 1
## 18712  796436 1
## 18713  796437 1
## 18714  796438 1
## 18715  796439 1
## 18716  796440 1
## 18717  796441 1
## 18718  796442 1
## 18719  796443 1
## 18720  796444 1
## 18721  796445 1
## 18722  796446 1
## 18723  796447 1
## 18724  796448 1
## 18725  796449 1
## 18726  796450 1
## 18727  796451 1
## 18728  796452 1
## 18729  796453 1
## 18730  796454 1
## 18731  796455 1
## 18732  796456 1
## 18733  796457 1
## 18734  796458 1
## 18735  796459 1
## 18736  796460 1
## 18737  796461 1
## 18738  796462 1
## 18739  796463 1
## 18740  796464 1
## 18741  796465 1
## 18742  796466 1
## 18743  796467 1
## 18744  796468 1
## 18745  796469 1
## 18746  796470 1
## 18747  796471 1
## 18748  796472 1
## 18749  796473 1
## 18750  796474 1
## 18751  796475 1
## 18752  796476 1
## 18753  796477 1
## 18754  796478 1
## 18755  796479 1
## 18756  796480 1
## 18757  796481 1
## 18758  796482 1
## 18759  796483 1
## 18760  796484 1
## 18761  796485 1
## 18762  796486 1
## 18763  796487 1
## 18764  796488 1
## 18765  796489 1
## 18766  796490 1
## 18767  796491 1
## 18768  796492 1
## 18769  796493 1
## 18770  796494 1
## 18771  796495 1
## 18772  796496 1
## 18773  796497 1
## 18774  796498 1
## 18775  796499 1
## 18776  796500 1
## 18777  796501 1
## 18778  796502 1
## 18779  796503 1
## 18780  796504 1
## 18781  796505 1
## 18782  796506 1
## 18783  796507 1
## 18784  796508 1
## 18785  796509 1
## 18786  796510 1
## 18787  796511 1
## 18788  796512 1
## 18789  796513 1
## 18790  796514 1
## 18791  796515 1
## 18792  796516 1
## 18793  796517 1
## 18794  796518 1
## 18795  796519 1
## 18796  796520 1
## 18797  796521 1
## 18798  796522 1
## 18799  796523 1
## 18800  796524 1
## 18801  796525 1
## 18802  796526 1
## 18803  796527 1
## 18804  796528 1
## 18805  796529 1
## 18806  796530 1
## 18807  796531 1
## 18808  796532 1
## 18809  796533 1
## 18810  796534 1
## 18811  796535 1
## 18812  796536 1
## 18813  796537 1
## 18814  796538 1
## 18815  796539 1
## 18816  796540 1
## 18817  796541 1
## 18818  796542 1
## 18819  796543 1
## 18820  796544 1
## 18821  796545 1
## 18822  796546 1
## 18823  796547 1
## 18824  796548 1
## 18825  796549 1
## 18826  796550 1
## 18827  796551 1
## 18828  796552 1
## 18829  796553 1
## 18830  796554 1
## 18831  796555 1
## 18832  796556 1
## 18833  796557 1
## 18834  796558 1
## 18835  796559 1
## 18836  796560 1
## 18837  796561 1
## 18838  796562 1
## 18839  796563 1
## 18840  796564 1
## 18841  796565 1
## 18842  796566 1
## 18843  796567 1
## 18844  796568 1
## 18845  796569 1
## 18846  796570 1
## 18847  796571 1
## 18848  796572 1
## 18849  796573 1
## 18850  796574 1
## 18851  796575 1
## 18852  796576 1
## 18853  796577 1
## 18854  796578 1
## 18855  796579 1
## 18856  796580 1
## 18857  796581 1
## 18858  796582 1
## 18859  796583 1
## 18860  796584 1
## 18861  796585 1
## 18862  796586 1
## 18863  796587 1
## 18864  796588 1
## 18865  796589 1
## 18866  796590 1
## 18867  796591 1
## 18868  796592 1
## 18869  796593 1
## 18870  796594 1
## 18871  796595 1
## 18872  796596 1
## 18873  796597 1
## 18874  796598 1
## 18875  796599 1
## 18876  796600 1
## 18877  796601 1
## 18878  796602 1
## 18879  796603 1
## 18880  796604 1
## 18881  796605 1
## 18882  796606 1
## 18883  796607 1
## 18884  796608 1
## 18885  796609 1
## 18886  796610 1
## 18887  796611 1
## 18888  796612 1
## 18889  796613 1
## 18890  796614 1
## 18891  796615 1
## 18892  796616 1
## 18893  796617 1
## 18894  796618 1
## 18895  796619 1
## 18896  796620 1
## 18897  796621 1
## 18898  796622 1
## 18899  796623 1
## 18900  796624 1
## 18901  796625 1
## 18902  796626 1
## 18903  796627 1
## 18904  796628 1
## 18905  796629 1
## 18906  796630 1
## 18907  796631 1
## 18908  796632 1
## 18909  796633 1
## 18910  796634 1
## 18911  796635 1
## 18912  796636 1
## 18913  796637 1
## 18914  796638 1
## 18915  796639 1
## 18916  796640 1
## 18917  796641 1
## 18918  796642 1
## 18919  796643 1
## 18920  796644 1
## 18921  796645 1
## 18922  796646 1
## 18923  796647 1
## 18924  796648 1
## 18925  796649 1
## 18926  796650 1
## 18927  796651 1
## 18928  796652 1
## 18929  796653 1
## 18930  796654 1
## 18931  796655 1
## 18932  796656 1
## 18933  796657 1
## 18934  796658 1
## 18935  796659 1
## 18936  796660 1
## 18937  796661 1
## 18938  796662 1
## 18939  796663 1
## 18940  796664 1
## 18941  796665 1
## 18942  796666 1
## 18943  796667 1
## 18944  796668 1
## 18945  796669 1
## 18946  796670 1
## 18947  796671 1
## 18948  796672 1
## 18949  796673 1
## 18950  796674 1
## 18951  796675 1
## 18952  796676 1
## 18953  796677 1
## 18954  796678 1
## 18955  796679 1
## 18956  796680 1
## 18957  796681 1
## 18958  796682 1
## 18959  796683 1
## 18960  796684 1
## 18961  796685 1
## 18962  796686 1
## 18963  796687 1
## 18964  796688 1
## 18965  796689 1
## 18966  796690 1
## 18967  796691 1
## 18968  796692 1
## 18969  796693 1
## 18970  796694 1
## 18971  796695 1
## 18972  796696 1
## 18973  796697 1
## 18974  796698 1
## 18975  796699 1
## 18976  796700 1
## 18977  796701 1
## 18978  796702 1
## 18979  796703 1
## 18980  796704 1
## 18981  796705 1
## 18982  796706 1
## 18983  796708 1
## 18984  796709 1
## 18985  796710 1
## 18986  796711 1
## 18987  796712 1
## 18988  796713 1
## 18989  796714 1
## 18990  796715 1
## 18991  796716 1
## 18992  796717 1
## 18993  796718 1
## 18994  796719 1
## 18995  796721 1
## 18996  796722 1
## 18997  796723 1
## 18998  796724 1
## 18999  796725 1
## 19000  796726 1
## 19001  796727 1
## 19002  796728 1
## 19003  796729 1
## 19004  796730 1
## 19005  796731 1
## 19006  796732 1
## 19007  796733 1
## 19008  796734 1
## 19009  796735 1
## 19010  796736 1
## 19011  796737 1
## 19012  796738 1
## 19013  796739 1
## 19014  796740 1
## 19015  796741 1
## 19016  796742 1
## 19017  796743 1
## 19018  796744 1
## 19019  796745 1
## 19020  796746 1
## 19021  796747 1
## 19022  796748 1
## 19023  796749 1
## 19024  796750 1
## 19025  796751 1
## 19026  796752 1
## 19027  796753 1
## 19028  796754 1
## 19029  796755 1
## 19030  796756 1
## 19031  796757 1
## 19032  796758 1
## 19033  796759 1
## 19034  796760 1
## 19035  796761 1
## 19036  796762 1
## 19037  796763 1
## 19038  796764 1
## 19039  796765 1
## 19040  796766 1
## 19041  796767 1
## 19042  796768 1
## 19043  796769 1
## 19044  796770 1
## 19045  796771 1
## 19046  796772 1
## 19047  796773 1
## 19048  796774 1
## 19049  796775 1
## 19050  796776 1
## 19051  796777 1
## 19052  796778 1
## 19053  796779 1
## 19054  796780 1
## 19055  796781 1
## 19056  796782 1
## 19057  796783 1
## 19058  796784 1
## 19059  796785 1
## 19060  796786 1
## 19061  796787 1
## 19062  796788 1
## 19063  796789 1
## 19064  796790 1
## 19065  796791 1
## 19066  796792 1
## 19067  796793 1
## 19068  796794 1
## 19069  796795 1
## 19070  796796 1
## 19071  796797 1
## 19072  796798 1
## 19073  796799 1
## 19074  796800 1
## 19075  796801 1
## 19076  796802 1
## 19077  796803 1
## 19078  796804 1
## 19079  796805 1
## 19080  796806 1
## 19081  796807 1
## 19082  796808 1
## 19083  796809 1
## 19084  796810 1
## 19085  796811 1
## 19086  796812 1
## 19087  796813 1
## 19088  796814 1
## 19089  796815 1
## 19090  796816 1
## 19091  796817 1
## 19092  796818 1
## 19093  796819 1
## 19094  796820 1
## 19095  796821 1
## 19096  796822 1
## 19097  796823 1
## 19098  796824 1
## 19099  796825 1
## 19100  796826 1
## 19101  796827 1
## 19102  796828 1
## 19103  796829 1
## 19104  796830 1
## 19105  796831 1
## 19106  796832 1
## 19107  796833 1
## 19108  796834 1
## 19109  796835 1
## 19110  796836 1
## 19111  796837 1
## 19112  796838 1
## 19113  796839 1
## 19114  796840 1
## 19115  796841 1
## 19116  796842 1
## 19117  796843 1
## 19118  796844 1
## 19119  796845 1
## 19120  796846 1
## 19121  796847 1
## 19122  796848 1
## 19123  796849 1
## 19124  796850 1
## 19125  796851 1
## 19126  796852 1
## 19127  796853 1
## 19128  796854 1
## 19129  796855 1
## 19130  796856 1
## 19131  796857 1
## 19132  796858 1
## 19133  796859 1
## 19134  796860 1
## 19135  796861 1
## 19136  796862 1
## 19137  796863 1
## 19138  796864 1
## 19139  796865 1
## 19140  796866 1
## 19141  796867 1
## 19142  796868 1
## 19143  796869 1
## 19144  796870 1
## 19145  796871 1
## 19146  796872 1
## 19147  796873 1
## 19148  796874 1
## 19149  796875 1
## 19150  796876 1
## 19151  796877 1
## 19152  796878 1
## 19153  796879 1
## 19154  796880 1
## 19155  796881 1
## 19156  796882 1
## 19157  796883 1
## 19158  796884 1
## 19159  796885 1
## 19160  796886 1
## 19161  796887 1
## 19162  796888 1
## 19163  796889 1
## 19164  796890 1
## 19165  796891 1
## 19166  796892 1
## 19167  796893 1
## 19168  796894 1
## 19169  796895 1
## 19170  796896 1
## 19171  796897 1
## 19172  796898 1
## 19173  796899 1
## 19174  796900 1
## 19175  796901 1
## 19176  796902 1
## 19177  796903 1
## 19178  796904 1
## 19179  796905 1
## 19180  796906 1
## 19181  796907 1
## 19182  796908 1
## 19183  796909 1
## 19184  796910 1
## 19185  796911 1
## 19186  796912 1
## 19187  796913 1
## 19188  796914 1
## 19189  796915 1
## 19190  796916 1
## 19191  796917 1
## 19192  796918 1
## 19193  796919 1
## 19194  796920 1
## 19195  796921 1
## 19196  796922 1
## 19197  796923 1
## 19198  796924 1
## 19199  796925 1
## 19200  796926 1
## 19201  796927 1
## 19202  796928 1
## 19203  796929 1
## 19204  796930 1
## 19205  796931 1
## 19206  796932 1
## 19207  796933 1
## 19208  796934 1
## 19209  796935 1
## 19210  796936 1
## 19211  796937 1
## 19212  796938 1
## 19213  796939 1
## 19214  796940 1
## 19215  796941 1
## 19216  796942 1
## 19217  796943 1
## 19218  796944 1
## 19219  796945 1
## 19220  796946 1
## 19221  796947 1
## 19222  796948 1
## 19223  796949 1
## 19224  796950 1
## 19225  796951 1
## 19226  796952 1
## 19227  796953 1
## 19228  796954 1
## 19229  796955 1
## 19230  796956 1
## 19231  796957 1
## 19232  796958 1
## 19233  796959 1
## 19234  796960 1
## 19235  796961 1
## 19236  796962 1
## 19237  796963 1
## 19238  796964 1
## 19239  796965 1
## 19240  796966 1
## 19241  796967 1
## 19242  796968 1
## 19243  796969 1
## 19244  796970 1
## 19245  796971 1
## 19246  796972 1
## 19247  796973 1
## 19248  796974 1
## 19249  796975 1
## 19250  796976 1
## 19251  796977 1
## 19252  796978 1
## 19253  796979 1
## 19254  796980 1
## 19255  796981 1
## 19256  796982 1
## 19257  796983 1
## 19258  796984 1
## 19259  796985 1
## 19260  796986 1
## 19261  796987 1
## 19262  796988 1
## 19263  796989 1
## 19264  796990 1
## 19265  796991 1
## 19266  796992 1
## 19267  796994 1
## 19268  796995 1
## 19269  796996 1
## 19270  796997 1
## 19271  796998 1
## 19272  796999 1
## 19273  797000 1
## 19274  797001 1
## 19275  797002 1
## 19276  797003 1
## 19277  797004 1
## 19278  797005 1
## 19279  797006 1
## 19280  797007 1
## 19281  797008 1
## 19282  797009 1
## 19283  797010 1
## 19284  797011 1
## 19285  797012 1
## 19286  797013 1
## 19287  797014 1
## 19288  797015 1
## 19289  797016 1
## 19290  797017 1
## 19291  797018 1
## 19292  797019 1
## 19293  797020 1
## 19294  797021 1
## 19295  797022 1
## 19296  797023 1
## 19297  797024 1
## 19298  797025 1
## 19299  797026 1
## 19300  797027 1
## 19301  797028 1
## 19302  797029 1
## 19303  797030 1
## 19304  797031 1
## 19305  797032 1
## 19306  797033 1
## 19307  797034 1
## 19308  797035 1
## 19309  797036 1
## 19310  797037 1
## 19311  797038 1
## 19312  797039 1
## 19313  797040 1
## 19314  797041 1
## 19315  797042 1
## 19316  797043 1
## 19317  797044 1
## 19318  797045 1
## 19319  797046 1
## 19320  797047 1
## 19321  797048 1
## 19322  797049 1
## 19323  797050 1
## 19324  797051 1
## 19325  797052 1
## 19326  797053 1
## 19327  797054 1
## 19328  797055 1
## 19329  797056 1
## 19330  797057 1
## 19331  797058 1
## 19332  797059 1
## 19333  797060 1
## 19334  797061 1
## 19335  797062 1
## 19336  797063 1
## 19337  797064 1
## 19338  797065 1
## 19339  797066 1
## 19340  797067 1
## 19341  797068 1
## 19342  797069 1
## 19343  797070 1
## 19344  797071 1
## 19345  797072 1
## 19346  797073 1
## 19347  797074 1
## 19348  797075 1
## 19349  797076 1
## 19350  797077 1
## 19351  797078 1
## 19352  797079 1
## 19353  797080 1
## 19354  797081 1
## 19355  797082 1
## 19356  797083 1
## 19357  797084 1
## 19358  797085 1
## 19359  797086 1
## 19360  797087 1
## 19361  797088 1
## 19362  797089 1
## 19363  797090 1
## 19364  797091 1
## 19365  797092 1
## 19366  797093 1
## 19367  797094 1
## 19368  797095 1
## 19369  797096 1
## 19370  797097 1
## 19371  797098 1
## 19372  797099 1
## 19373  797100 1
## 19374  797101 1
## 19375  797102 1
## 19376  797103 1
## 19377  797104 1
## 19378  797105 1
## 19379  797106 1
## 19380  797107 1
## 19381  797108 1
## 19382  797109 1
## 19383  797110 1
## 19384  797111 1
## 19385  797112 1
## 19386  797113 1
## 19387  797114 1
## 19388  797115 1
## 19389  797116 1
## 19390  797117 1
## 19391  797118 1
## 19392  797119 1
## 19393  797120 1
## 19394  797121 1
## 19395  797122 1
## 19396  797123 1
## 19397  797124 1
## 19398  797125 1
## 19399  797126 1
## 19400  797127 1
## 19401  797128 1
## 19402  797129 1
## 19403  797130 1
## 19404  797131 1
## 19405  797132 1
## 19406  797133 1
## 19407  797134 1
## 19408  797135 1
## 19409  797136 1
## 19410  797137 1
## 19411  797138 1
## 19412  797139 1
## 19413  797140 1
## 19414  797141 1
## 19415  797142 1
## 19416  797143 1
## 19417  797144 1
## 19418  797145 1
## 19419  797146 1
## 19420  797147 1
## 19421  797148 1
## 19422  797149 1
## 19423  797150 1
## 19424  797151 1
## 19425  797152 1
## 19426  797153 1
## 19427  797154 1
## 19428  797155 1
## 19429  797156 1
## 19430  797157 1
## 19431  797158 1
## 19432  797159 1
## 19433  797160 1
## 19434  797161 1
## 19435  797162 1
## 19436  797163 1
## 19437  797164 1
## 19438  797165 1
## 19439  797166 1
## 19440  797167 1
## 19441  797168 1
## 19442  797169 1
## 19443  797170 1
## 19444  797171 1
## 19445  797172 1
## 19446  797173 1
## 19447  797174 1
## 19448  797175 1
## 19449  797176 1
## 19450  797177 1
## 19451  797178 1
## 19452  797179 1
## 19453  797180 1
## 19454  797181 1
## 19455  797182 1
## 19456  797183 1
## 19457  797184 1
## 19458  797185 1
## 19459  797186 1
## 19460  797187 1
## 19461  797188 1
## 19462  797189 1
## 19463  797190 1
## 19464  797191 1
## 19465  797192 1
## 19466  797193 1
## 19467  797194 1
## 19468  797195 1
## 19469  797196 1
## 19470  797197 1
## 19471  797198 1
## 19472  797199 1
## 19473  797200 1
## 19474  797201 1
## 19475  797202 1
## 19476  797203 1
## 19477  797204 1
## 19478  797205 1
## 19479  797206 1
## 19480  797207 1
## 19481  797208 1
## 19482  797209 1
## 19483  797210 1
## 19484  797211 1
## 19485  797212 1
## 19486  797213 1
## 19487  797214 1
## 19488  797215 1
## 19489  797216 1
## 19490  797217 1
## 19491  797218 1
## 19492  797219 1
## 19493  797220 1
## 19494  797221 1
## 19495  797222 1
## 19496  797223 1
## 19497  797224 1
## 19498  797225 1
## 19499  797226 1
## 19500  797227 1
## 19501  797228 1
## 19502  797229 1
## 19503  797230 1
## 19504  797231 1
## 19505  797232 1
## 19506  797233 1
## 19507  797234 1
## 19508  797235 1
## 19509  797236 1
## 19510  797237 1
## 19511  797238 1
## 19512  797239 1
## 19513  797240 1
## 19514  797241 1
## 19515  797242 1
## 19516  797243 1
## 19517  797244 1
## 19518  797245 1
## 19519  797246 1
## 19520  797247 1
## 19521  797248 1
## 19522  797249 1
## 19523  797250 1
## 19524  797251 1
## 19525  797252 1
## 19526  797253 1
## 19527  797254 1
## 19528  797255 1
## 19529  797256 1
## 19530  797257 1
## 19531  797258 1
## 19532  797259 1
## 19533  797260 1
## 19534  797261 1
## 19535  797262 1
## 19536  797263 1
## 19537  797264 1
## 19538  797265 1
## 19539  797266 1
## 19540  797267 1
## 19541  797268 1
## 19542  797269 1
## 19543  797270 1
## 19544  797271 1
## 19545  797272 1
## 19546  797273 1
## 19547  797274 1
## 19548  797275 1
## 19549  797276 1
## 19550  797277 1
## 19551  797278 1
## 19552  797279 1
## 19553  797280 1
## 19554  797281 1
## 19555  797282 1
## 19556  797283 1
## 19557  797284 1
## 19558  797285 1
## 19559  797286 1
## 19560  797287 1
## 19561  797288 1
## 19562  797289 1
## 19563  797290 1
## 19564  797291 1
## 19565  797292 1
## 19566  797293 1
## 19567  797294 1
## 19568  797295 1
## 19569  797296 1
## 19570  797297 1
## 19571  797298 1
## 19572  797300 1
## 19573  797301 1
## 19574  797302 1
## 19575  797303 1
## 19576  797304 1
## 19577  797305 1
## 19578  797306 1
## 19579  797307 1
## 19580  797308 1
## 19581  797309 1
## 19582  797310 1
## 19583  797311 1
## 19584  797312 1
## 19585  797313 1
## 19586  797314 1
## 19587  797315 1
## 19588  797316 1
## 19589  797317 1
## 19590  797318 1
## 19591  797319 1
## 19592  797320 1
## 19593  797321 1
## 19594  797322 1
## 19595  797323 1
## 19596  797324 1
## 19597  797325 1
## 19598  797326 1
## 19599  797327 1
## 19600  797328 1
## 19601  797329 1
## 19602  797330 1
## 19603  797331 1
## 19604  797332 1
## 19605  797333 1
## 19606  797334 1
## 19607  797335 1
## 19608  797336 1
## 19609  797337 1
## 19610  797338 1
## 19611  797339 1
## 19612  797340 1
## 19613  797341 1
## 19614  797342 1
## 19615  797343 1
## 19616  797344 1
## 19617  797345 1
## 19618  797346 1
## 19619  797347 1
## 19620  797348 1
## 19621  797349 1
## 19622  797350 1
## 19623  797351 1
## 19624  797352 1
## 19625  797353 1
## 19626  797354 1
## 19627  797355 1
## 19628  797356 1
## 19629  797357 1
## 19630  797358 1
## 19631  797359 1
## 19632  797360 1
## 19633  797361 1
## 19634  797362 1
## 19635  797363 1
## 19636  797364 1
## 19637  797365 1
## 19638  797366 1
## 19639  797367 1
## 19640  797368 1
## 19641  797369 1
## 19642  797370 1
## 19643  797371 1
## 19644  797372 1
## 19645  797373 1
## 19646  797374 1
## 19647  797375 1
## 19648  797376 1
## 19649  797377 1
## 19650  797378 1
## 19651  797379 1
## 19652  797380 1
## 19653  797381 1
## 19654  797382 1
## 19655  797383 1
## 19656  797384 1
## 19657  797385 1
## 19658  797386 1
## 19659  797387 1
## 19660  797388 1
## 19661  797389 1
## 19662  797390 1
## 19663  797391 1
## 19664  797392 1
## 19665  797393 1
## 19666  797394 1
## 19667  797395 1
## 19668  797396 1
## 19669  797397 1
## 19670  797398 1
## 19671  797399 1
## 19672  797400 1
## 19673  797401 1
## 19674  797402 1
## 19675  797403 1
## 19676  797404 1
## 19677  797405 1
## 19678  797406 1
## 19679  797407 1
## 19680  797408 1
## 19681  797409 1
## 19682  797410 1
## 19683  797411 1
## 19684  797412 1
## 19685  797413 1
## 19686  797414 1
## 19687  797415 1
## 19688  797416 1
## 19689  797417 1
## 19690  797418 1
## 19691  797419 1
## 19692  797420 1
## 19693  797421 1
## 19694  797422 1
## 19695  797423 1
## 19696  797424 1
## 19697  797425 1
## 19698  797426 1
## 19699  797427 1
## 19700  797428 1
## 19701  797429 1
## 19702  797430 1
## 19703  797431 1
## 19704  797432 1
## 19705  797433 1
## 19706  797434 1
## 19707  797435 1
## 19708  797436 1
## 19709  797437 1
## 19710  797438 1
## 19711  797439 1
## 19712  797440 1
## 19713  797441 1
## 19714  797442 1
## 19715  797443 1
## 19716  797444 1
## 19717  797445 1
## 19718  797446 1
## 19719  797447 1
## 19720  797448 1
## 19721  797449 1
## 19722  797450 1
## 19723  797451 1
## 19724  797452 1
## 19725  797453 1
## 19726  797454 1
## 19727  797455 1
## 19728  797456 1
## 19729  797457 1
## 19730  797458 1
## 19731  797459 1
## 19732  797460 1
## 19733  797461 1
## 19734  797462 1
## 19735  797463 1
## 19736  797464 1
## 19737  797465 1
## 19738  797466 1
## 19739  797467 1
## 19740  797468 1
## 19741  797469 1
## 19742  797470 1
## 19743  797471 1
## 19744  797472 1
## 19745  797473 1
## 19746  797474 1
## 19747  797475 1
## 19748  797476 1
## 19749  797477 1
## 19750  797478 1
## 19751  797479 1
## 19752  797480 1
## 19753  797481 1
## 19754  797482 1
## 19755  797483 1
## 19756  797484 1
## 19757  797485 1
## 19758  797486 1
## 19759  797487 1
## 19760  797488 1
## 19761  797489 1
## 19762  797490 1
## 19763  797491 1
## 19764  797493 1
## 19765  797494 1
## 19766  797495 1
## 19767  797496 1
## 19768  797497 1
## 19769  797498 1
## 19770  797499 1
## 19771  797500 1
## 19772  797501 1
## 19773  797502 1
## 19774  797503 1
## 19775  797504 1
## 19776  797505 1
## 19777  797506 1
## 19778  797507 1
## 19779  797508 1
## 19780  797509 1
## 19781  797510 1
## 19782  797511 1
## 19783  797512 1
## 19784  797513 1
## 19785  797514 1
## 19786  797515 1
## 19787  797516 1
## 19788  797517 1
## 19789  797518 1
## 19790  797519 1
## 19791  797520 1
## 19792  797521 1
## 19793  797522 1
## 19794  797523 1
## 19795  797524 1
## 19796  797525 1
## 19797  797526 1
## 19798  797527 1
## 19799  797528 1
## 19800  797529 1
## 19801  797530 1
## 19802  797531 1
## 19803  797532 1
## 19804  797533 1
## 19805  797534 1
## 19806  797535 1
## 19807  797536 1
## 19808  797537 1
## 19809  797538 1
## 19810  797539 1
## 19811  797540 1
## 19812  797541 1
## 19813  797542 1
## 19814  797543 1
## 19815  797544 1
## 19816  797545 1
## 19817  797546 1
## 19818  797547 1
## 19819  797548 1
## 19820  797549 1
## 19821  797550 1
## 19822  797551 1
## 19823  797552 1
## 19824  797553 1
## 19825  797554 1
## 19826  797555 1
## 19827  797556 1
## 19828  797557 1
## 19829  797558 1
## 19830  797559 1
## 19831  797560 1
## 19832  797561 1
## 19833  797562 1
## 19834  797563 1
## 19835  797564 1
## 19836  797565 1
## 19837  797566 1
## 19838  797567 1
## 19839  797568 1
## 19840  797569 1
## 19841  797570 1
## 19842  797571 1
## 19843  797572 1
## 19844  797573 1
## 19845  797574 1
## 19846  797575 1
## 19847  797576 1
## 19848  797577 1
## 19849  797578 1
## 19850  797579 1
## 19851  797580 1
## 19852  797582 1
## 19853  797583 1
## 19854  797584 1
## 19855  797585 1
## 19856  797586 1
## 19857  797587 1
## 19858  797588 1
## 19859  797589 1
## 19860  797590 1
## 19861  797591 1
## 19862  797592 1
## 19863  797593 1
## 19864  797594 1
## 19865  797595 1
## 19866  797596 1
## 19867  797597 1
## 19868  797598 1
## 19869  797599 1
## 19870  797600 1
## 19871  797601 1
## 19872  797602 1
## 19873  797603 1
## 19874  797604 1
## 19875  797605 1
## 19876  797606 1
## 19877  797607 1
## 19878  797608 1
## 19879  797609 1
## 19880  797610 1
## 19881  797611 1
## 19882  797612 1
## 19883  797613 1
## 19884  797614 1
## 19885  797615 1
## 19886  797616 1
## 19887  797617 1
## 19888  797618 1
## 19889  797619 1
## 19890  797620 1
## 19891  797621 1
## 19892  797622 1
## 19893  797623 1
## 19894  797624 1
## 19895  797625 1
## 19896  797626 1
## 19897  797627 1
## 19898  797628 1
## 19899  797629 1
## 19900  797630 1
## 19901  797631 1
## 19902  797632 1
## 19903  797633 1
## 19904  797634 1
## 19905  797635 1
## 19906  797636 1
## 19907  797637 1
## 19908  797638 1
## 19909  797639 1
## 19910  797640 1
## 19911  797641 1
## 19912  797642 1
## 19913  797643 1
## 19914  797644 1
## 19915  797645 1
## 19916  797646 1
## 19917  797647 1
## 19918  797648 1
## 19919  797649 1
## 19920  797650 1
## 19921  797651 1
## 19922  797652 1
## 19923  797653 1
## 19924  797654 1
## 19925  797655 1
## 19926  797656 1
## 19927  797657 1
## 19928  797658 1
## 19929  797659 1
## 19930  797660 1
## 19931  797661 1
## 19932  797662 1
## 19933  797663 1
## 19934  797664 1
## 19935  797665 1
## 19936  797666 1
## 19937  797667 1
## 19938  797668 1
## 19939  797669 1
## 19940  797670 1
## 19941  797671 1
## 19942  797672 1
## 19943  797673 1
## 19944  797674 1
## 19945  797675 1
## 19946  797676 1
## 19947  797677 1
## 19948  797678 1
## 19949  797679 1
## 19950  797680 1
## 19951  797681 1
## 19952  797682 1
## 19953  797683 1
## 19954  797684 1
## 19955  797685 1
## 19956  797686 1
## 19957  797687 1
## 19958  797688 1
## 19959  797689 1
## 19960  797690 1
## 19961  797691 1
## 19962  797692 1
## 19963  797693 1
## 19964  797694 1
## 19965  797695 1
## 19966  797696 1
## 19967  797697 1
## 19968  797698 1
## 19969  797699 1
## 19970  797700 1
## 19971  797701 1
## 19972  797702 1
## 19973  797703 1
## 19974  797704 1
## 19975  797705 1
## 19976  797706 1
## 19977  797707 1
## 19978  797708 1
## 19979  797709 1
## 19980  797710 1
## 19981  797711 1
## 19982  797712 1
## 19983  797713 1
## 19984  797714 1
## 19985  797715 1
## 19986  797716 1
## 19987  797717 1
## 19988  797718 1
## 19989  797719 1
## 19990  797720 1
## 19991  797721 1
## 19992  797722 1
## 19993  797723 1
## 19994  797724 1
## 19995  797725 1
## 19996  797726 1
## 19997  797727 1
## 19998  797728 1
## 19999  797729 1
## 20000  797730 1
## 20001  797731 1
## 20002  797732 1
## 20003  797733 1
## 20004  797734 1
## 20005  797736 1
## 20006  797737 1
## 20007  797738 1
## 20008  797739 1
## 20009  797740 1
## 20010  797741 1
## 20011  797742 1
## 20012  797743 1
## 20013  797744 1
## 20014  797745 1
## 20015  797746 1
## 20016  797747 1
## 20017  797748 1
## 20018  797749 1
## 20019  797750 1
## 20020  797751 1
## 20021  797752 1
## 20022  797753 1
## 20023  797754 1
## 20024  797755 1
## 20025  797756 1
## 20026  797757 1
## 20027  797758 1
## 20028  797759 1
## 20029  797760 1
## 20030  797761 1
## 20031  797762 1
## 20032  797763 1
## 20033  797764 1
## 20034  797765 1
## 20035  797766 1
## 20036  797767 1
## 20037  797768 1
## 20038  797769 1
## 20039  797770 1
## 20040  797771 1
## 20041  797772 1
## 20042  797773 1
## 20043  797774 1
## 20044  797775 1
## 20045  797776 1
## 20046  797777 1
## 20047  797778 1
## 20048  797779 1
## 20049  797780 1
## 20050  797781 1
## 20051  797782 1
## 20052  797783 1
## 20053  797784 1
## 20054  797785 1
## 20055  797786 1
## 20056  797787 1
## 20057  797788 1
## 20058  797789 1
## 20059  797790 1
## 20060  797791 1
## 20061  797792 1
## 20062  797793 1
## 20063  797794 1
## 20064  797795 1
## 20065  797796 1
## 20066  797797 1
## 20067  797798 1
## 20068  797799 1
## 20069  797800 1
## 20070  797801 1
## 20071  797802 1
## 20072  797803 1
## 20073  797804 1
## 20074  797805 1
## 20075  797806 1
## 20076  797807 1
## 20077  797808 1
## 20078  797809 1
## 20079  797810 1
## 20080  797811 1
## 20081  797812 1
## 20082  797813 1
## 20083  797814 1
## 20084  797815 1
## 20085  797816 1
## 20086  797817 1
## 20087  797818 1
## 20088  797819 1
## 20089  797820 1
## 20090  797821 1
## 20091  797822 1
## 20092  797823 1
## 20093  797824 1
## 20094  797825 1
## 20095  797826 1
## 20096  797827 1
## 20097  797828 1
## 20098  797829 1
## 20099  797830 1
## 20100  797831 1
## 20101  797832 1
## 20102  797833 1
## 20103  797834 1
## 20104  797835 1
## 20105  797836 1
## 20106  797837 1
## 20107  797838 1
## 20108  797839 1
## 20109  797840 1
## 20110  797841 1
## 20111  797842 1
## 20112  797843 1
## 20113  797844 1
## 20114  797845 1
## 20115  797846 1
## 20116  797847 1
## 20117  797848 1
## 20118  797849 1
## 20119  797850 1
## 20120  797851 1
## 20121  797852 1
## 20122  797853 1
## 20123  797854 1
## 20124  797855 1
## 20125  797856 1
## 20126  797857 1
## 20127  797858 1
## 20128  797859 1
## 20129  797860 1
## 20130  797861 1
## 20131  797862 1
## 20132  797863 1
## 20133  797864 1
## 20134  797865 1
## 20135  797866 1
## 20136  797867 1
## 20137  797868 1
## 20138  797869 1
## 20139  797870 1
## 20140  797871 1
## 20141  797872 1
## 20142  797873 1
## 20143  797874 1
## 20144  797875 1
## 20145  797876 1
## 20146  797877 1
## 20147  797878 1
## 20148  797879 1
## 20149  797880 1
## 20150  797881 1
## 20151  797882 1
## 20152  797883 1
## 20153  797884 1
## 20154  797885 1
## 20155  797886 1
## 20156  797887 1
## 20157  797888 1
## 20158  797889 1
## 20159  797890 1
## 20160  797891 1
## 20161  797892 1
## 20162  797893 1
## 20163  797894 1
## 20164  797895 1
## 20165  797896 1
## 20166  797897 1
## 20167  797898 1
## 20168  797899 1
## 20169  797900 1
## 20170  797901 1
## 20171  797902 1
## 20172  797903 1
## 20173  797904 1
## 20174  797905 1
## 20175  797906 1
## 20176  797907 1
## 20177  797908 1
## 20178  797909 1
## 20179  797910 1
## 20180  797911 1
## 20181  797912 1
## 20182  797913 1
## 20183  797914 1
## 20184  797915 1
## 20185  797916 1
## 20186  797917 1
## 20187  797918 1
## 20188  797919 1
## 20189  797920 1
## 20190  797921 1
## 20191  797922 1
## 20192  797923 1
## 20193  797924 1
## 20194  797925 1
## 20195  797926 1
## 20196  797927 1
## 20197  797928 1
## 20198  797929 1
## 20199  797930 1
## 20200  797931 1
## 20201  797932 1
## 20202  797933 1
## 20203  797934 1
## 20204  797935 1
## 20205  797936 1
## 20206  797937 1
## 20207  797938 1
## 20208  797939 1
## 20209  797940 1
## 20210  797941 1
## 20211  797942 1
## 20212  797943 1
## 20213  797944 1
## 20214  797945 1
## 20215  797946 1
## 20216  797947 1
## 20217  797948 1
## 20218  797949 1
## 20219  797950 1
## 20220  797951 1
## 20221  797952 1
## 20222  797953 1
## 20223  797954 1
## 20224  797955 1
## 20225  797956 1
## 20226  797957 1
## 20227  797958 1
## 20228  797959 1
## 20229  797960 1
## 20230  797961 1
## 20231  797962 1
## 20232  797963 1
## 20233  797964 1
## 20234  797965 1
## 20235  797966 1
## 20236  797967 1
## 20237  797968 1
## 20238  797969 1
## 20239  797970 1
## 20240  797971 1
## 20241  797972 1
## 20242  797973 1
## 20243  797974 1
## 20244  797975 1
## 20245  797976 1
## 20246  797977 1
## 20247  797978 1
## 20248  797979 1
## 20249  797980 1
## 20250  797981 1
## 20251  797982 1
## 20252  797983 1
## 20253  797984 1
## 20254  797985 1
## 20255  797986 1
## 20256  797987 1
## 20257  797988 1
## 20258  797989 1
## 20259  797990 1
## 20260  797991 1
## 20261  797992 1
## 20262  797993 1
## 20263  797995 1
## 20264  797996 1
## 20265  797997 1
## 20266  797998 1
## 20267  797999 1
## 20268  798000 1
## 20269  798001 1
## 20270  798002 1
## 20271  798003 1
## 20272  798004 1
## 20273  798005 1
## 20274  798006 1
## 20275  798007 1
## 20276  798008 1
## 20277  798009 1
## 20278  798010 1
## 20279  798011 1
## 20280  798012 1
## 20281  798013 1
## 20282  798014 1
## 20283  798015 1
## 20284  798016 1
## 20285  798017 1
## 20286  798018 1
## 20287  798019 1
## 20288  798020 1
## 20289  798021 1
## 20290  798022 1
## 20291  798023 1
## 20292  798024 1
## 20293  798025 1
## 20294  798026 1
## 20295  798027 1
## 20296  798028 1
## 20297  798029 1
## 20298  798030 1
## 20299  798031 1
## 20300  798032 1
## 20301  798033 1
## 20302  798034 1
## 20303  798035 1
## 20304  798036 1
## 20305  798037 1
## 20306  798038 1
## 20307  798039 1
## 20308  798040 1
## 20309  798041 1
## 20310  798042 1
## 20311  798043 1
## 20312  798044 1
## 20313  798045 1
## 20314  798046 1
## 20315  798047 1
## 20316  798048 1
## 20317  798049 1
## 20318  798050 1
## 20319  798051 1
## 20320  798052 1
## 20321  798053 1
## 20322  798054 1
## 20323  798055 1
## 20324  798056 1
## 20325  798057 1
## 20326  798058 1
## 20327  798059 1
## 20328  798060 1
## 20329  798061 1
## 20330  798062 1
## 20331  798063 1
## 20332  798064 1
## 20333  798065 1
## 20334  798066 1
## 20335  798067 1
## 20336  798068 1
## 20337  798069 1
## 20338  798070 1
## 20339  798071 1
## 20340  798072 1
## 20341  798073 1
## 20342  798074 1
## 20343  798075 1
## 20344  798076 1
## 20345  798077 1
## 20346  798078 1
## 20347  798079 1
## 20348  798080 1
## 20349  798081 1
## 20350  798082 1
## 20351  798083 1
## 20352  798084 1
## 20353  798085 1
## 20354  798086 1
## 20355  798087 1
## 20356  798088 1
## 20357  798089 1
## 20358  798090 1
## 20359  798091 1
## 20360  798092 1
## 20361  798093 1
## 20362  798094 1
## 20363  798095 1
## 20364  798096 1
## 20365  798097 1
## 20366  798098 1
## 20367  798099 1
## 20368  798100 1
## 20369  798101 1
## 20370  798102 1
## 20371  798103 1
## 20372  798104 1
## 20373  798105 1
## 20374  798106 1
## 20375  798107 1
## 20376  798108 1
## 20377  798109 1
## 20378  798110 1
## 20379  798111 1
## 20380  798112 1
## 20381  798113 1
## 20382  798114 1
## 20383  798115 1
## 20384  798116 1
## 20385  798117 1
## 20386  798118 1
## 20387  798119 1
## 20388  798120 1
## 20389  798121 1
## 20390  798122 1
## 20391  798123 1
## 20392  798124 1
## 20393  798125 1
## 20394  798126 1
## 20395  798127 1
## 20396  798128 1
## 20397  798129 1
## 20398  798130 1
## 20399  798131 1
## 20400  798132 1
## 20401  798133 1
## 20402  798134 1
## 20403  798135 1
## 20404  798136 1
## 20405  798137 1
## 20406  798138 1
## 20407  798139 1
## 20408  798140 1
## 20409  798141 1
## 20410  798142 1
## 20411  798143 1
## 20412  798144 1
## 20413  798145 1
## 20414  798146 1
## 20415  798147 1
## 20416  798148 1
## 20417  798149 1
## 20418  798150 1
## 20419  798151 1
## 20420  798153 1
## 20421  798154 1
## 20422  798155 1
## 20423  798156 1
## 20424  798157 1
## 20425  798158 1
## 20426  798159 1
## 20427  798160 1
## 20428  798161 1
## 20429  798162 1
## 20430  798163 1
## 20431  798164 1
## 20432  798165 1
## 20433  798166 1
## 20434  798167 1
## 20435  798168 1
## 20436  798169 1
## 20437  798170 1
## 20438  798171 1
## 20439  798172 1
## 20440  798173 1
## 20441  798174 1
## 20442  798175 1
## 20443  798176 1
## 20444  798177 1
## 20445  798178 1
## 20446  798179 1
## 20447  798180 1
## 20448  798181 1
## 20449  798182 1
## 20450  798183 1
## 20451  798184 1
## 20452  798185 1
## 20453  798186 1
## 20454  798187 1
## 20455  798188 1
## 20456  798189 1
## 20457  798190 1
## 20458  798191 1
## 20459  798192 1
## 20460  798193 1
## 20461  798194 1
## 20462  798195 1
## 20463  798196 1
## 20464  798197 1
## 20465  798198 1
## 20466  798199 1
## 20467  798200 1
## 20468  798201 1
## 20469  798202 1
## 20470  798203 1
## 20471  798204 1
## 20472  798205 1
## 20473  798206 1
## 20474  798207 1
## 20475  798208 1
## 20476  798209 1
## 20477  798210 1
## 20478  798211 1
## 20479  798212 1
## 20480  798213 1
## 20481  798214 1
## 20482  798215 1
## 20483  798216 1
## 20484  798217 1
## 20485  798218 1
## 20486  798219 1
## 20487  798220 1
## 20488  798221 1
## 20489  798222 1
## 20490  798223 1
## 20491  798224 1
## 20492  798225 1
## 20493  798226 1
## 20494  798227 1
## 20495  798228 1
## 20496  798229 1
## 20497  798230 1
## 20498  798231 1
## 20499  798232 1
## 20500  798233 1
## 20501  798234 1
## 20502  798235 1
## 20503  798236 1
## 20504  798237 1
## 20505  798238 1
## 20506  798239 1
## 20507  798240 1
## 20508  798241 1
## 20509  798242 1
## 20510  798243 1
## 20511  798244 1
## 20512  798245 1
## 20513  798246 1
## 20514  798247 1
## 20515  798248 1
## 20516  798249 1
## 20517  798250 1
## 20518  798251 1
## 20519  798252 1
## 20520  798253 1
## 20521  798254 1
## 20522  798255 1
## 20523  798256 1
## 20524  798257 1
## 20525  798258 1
## 20526  798259 1
## 20527  798260 1
## 20528  798261 1
## 20529  798262 1
## 20530  798263 1
## 20531  798264 1
## 20532  798266 1
## 20533  798267 1
## 20534  798268 1
## 20535  798269 1
## 20536  798270 1
## 20537  798271 1
## 20538  798272 1
## 20539  798273 1
## 20540  798274 1
## 20541  798275 1
## 20542  798276 1
## 20543  798277 1
## 20544  798278 1
## 20545  798279 1
## 20546  798280 1
## 20547  798281 1
## 20548  798282 1
## 20549  798283 1
## 20550  798284 1
## 20551  798285 1
## 20552  798286 1
## 20553  798287 1
## 20554  798288 1
## 20555  798289 1
## 20556  798290 1
## 20557  798291 1
## 20558  798292 1
## 20559  798293 1
## 20560  798294 1
## 20561  798295 1
## 20562  798296 1
## 20563  798297 1
## 20564  798298 1
## 20565  798299 1
## 20566  798300 1
## 20567  798301 1
## 20568  798302 1
## 20569  798303 1
## 20570  798304 1
## 20571  798305 1
## 20572  798306 1
## 20573  798307 1
## 20574  798308 1
## 20575  798309 1
## 20576  798310 1
## 20577  798311 1
## 20578  798312 1
## 20579  798313 1
## 20580  798314 1
## 20581  798315 1
## 20582  798316 1
## 20583  798317 1
## 20584  798318 1
## 20585  798319 1
## 20586  798320 1
## 20587  798321 1
## 20588  798322 1
## 20589  798323 1
## 20590  798324 1
## 20591  798325 1
## 20592  798326 1
## 20593  798327 1
## 20594  798328 1
## 20595  798329 1
## 20596  798330 1
## 20597  798331 1
## 20598  798333 1
## 20599  798334 1
## 20600  798335 1
## 20601  798336 1
## 20602  798337 1
## 20603  798338 1
## 20604  798339 1
## 20605  798340 1
## 20606  798341 1
## 20607  798342 1
## 20608  798343 1
## 20609  798344 1
## 20610  798345 1
## 20611  798346 1
## 20612  798347 1
## 20613  798348 1
## 20614  798349 1
## 20615  798350 1
## 20616  798351 1
## 20617  798352 1
## 20618  798353 1
## 20619  798354 1
## 20620  798355 1
## 20621  798356 1
## 20622  798357 1
## 20623  798358 1
## 20624  798359 1
## 20625  798360 1
## 20626  798361 1
## 20627  798362 1
## 20628  798363 1
## 20629  798364 1
## 20630  798365 1
## 20631  798366 1
## 20632  798367 1
## 20633  798368 1
## 20634  798369 1
## 20635  798370 1
## 20636  798371 1
## 20637  798372 1
## 20638  798373 1
## 20639  798374 1
## 20640  798375 1
## 20641  798376 1
## 20642  798377 1
## 20643  798378 1
## 20644  798379 1
## 20645  798380 1
## 20646  798381 1
## 20647  798382 1
## 20648  798383 1
## 20649  798384 1
## 20650  798385 1
## 20651  798386 1
## 20652  798387 1
## 20653  798388 1
## 20654  798389 1
## 20655  798390 1
## 20656  798391 1
## 20657  798392 1
## 20658  798393 1
## 20659  798394 1
## 20660  798395 1
## 20661  798396 1
## 20662  798397 1
## 20663  798398 1
## 20664  798399 1
## 20665  798400 1
## 20666  798401 1
## 20667  798402 1
## 20668  798403 1
## 20669  798404 1
## 20670  798405 1
## 20671  798406 1
## 20672  798407 1
## 20673  798408 1
## 20674  798409 1
## 20675  798410 1
## 20676  798411 1
## 20677  798412 1
## 20678  798413 1
## 20679  798414 1
## 20680  798415 1
## 20681  798416 1
## 20682  798417 1
## 20683  798418 1
## 20684  798419 1
## 20685  798420 1
## 20686  798421 1
## 20687  798422 1
## 20688  798423 1
## 20689  798424 1
## 20690  798425 1
## 20691  798426 1
## 20692  798427 1
## 20693  798428 1
## 20694  798429 1
## 20695  798430 1
## 20696  798431 1
## 20697  798432 1
## 20698  798433 1
## 20699  798434 1
## 20700  798435 1
## 20701  798436 1
## 20702  798437 1
## 20703  798438 1
## 20704  798439 1
## 20705  798440 1
## 20706  798441 1
## 20707  798442 1
## 20708  798443 1
## 20709  798444 1
## 20710  798445 1
## 20711  798446 1
## 20712  798447 1
## 20713  798448 1
## 20714  798449 1
## 20715  798450 1
## 20716  798451 1
## 20717  798452 1
## 20718  798453 1
## 20719  798454 1
## 20720  798455 1
## 20721  798456 1
## 20722  798457 1
## 20723  798458 1
## 20724  798459 1
## 20725  798460 1
## 20726  798461 1
## 20727  798462 1
## 20728  798463 1
## 20729  798464 1
## 20730  798465 1
## 20731  798466 1
## 20732  798467 1
## 20733  798468 1
## 20734  798469 1
## 20735  798470 1
## 20736  798471 1
## 20737  798472 1
## 20738  798473 1
## 20739  798474 1
## 20740  798475 1
## 20741  798476 1
## 20742  798477 1
## 20743  798478 1
## 20744  798479 1
## 20745  798480 1
## 20746  798481 1
## 20747  798482 1
## 20748  798483 1
## 20749  798484 1
## 20750  798485 1
## 20751  798486 1
## 20752  798487 1
## 20753  798488 1
## 20754  798489 1
## 20755  798490 1
## 20756  798491 1
## 20757  798492 1
## 20758  798493 1
## 20759  798494 1
## 20760  798495 1
## 20761  798496 1
## 20762  798498 1
## 20763  798499 1
## 20764  798500 1
## 20765  798501 1
## 20766  798502 1
## 20767  798503 1
## 20768  798504 1
## 20769  798505 1
## 20770  798506 1
## 20771  798507 1
## 20772  798508 1
## 20773  798509 1
## 20774  798510 1
## 20775  798511 1
## 20776  798512 1
## 20777  798513 1
## 20778  798514 1
## 20779  798515 1
## 20780  798516 1
## 20781  798517 1
## 20782  798518 1
## 20783  798519 1
## 20784  798520 1
## 20785  798521 1
## 20786  798522 1
## 20787  798523 1
## 20788  798524 1
## 20789  798525 1
## 20790  798526 1
## 20791  798527 1
## 20792  798528 1
## 20793  798529 1
## 20794  798530 1
## 20795  798531 1
## 20796  798532 1
## 20797  798533 1
## 20798  798534 1
## 20799  798535 1
## 20800  798536 1
## 20801  798537 1
## 20802  798538 1
## 20803  798539 1
## 20804  798540 1
## 20805  798541 1
## 20806  798542 1
## 20807  798543 1
## 20808  798544 1
## 20809  798545 1
## 20810  798546 1
## 20811  798547 1
## 20812  798548 1
## 20813  798549 1
## 20814  798550 1
## 20815  798551 1
## 20816  798552 1
## 20817  798553 1
## 20818  798554 1
## 20819  798555 1
## 20820  798556 1
## 20821  798557 1
## 20822  798558 1
## 20823  798559 1
## 20824  798560 1
## 20825  798561 1
## 20826  798562 1
## 20827  798563 1
## 20828  798564 1
## 20829  798565 1
## 20830  798566 1
## 20831  798567 1
## 20832  798568 1
## 20833  798569 1
## 20834  798570 1
## 20835  798571 1
## 20836  798572 1
## 20837  798573 1
## 20838  798574 1
## 20839  798575 1
## 20840  798576 1
## 20841  798577 1
## 20842  798578 1
## 20843  798579 1
## 20844  798580 1
## 20845  798581 1
## 20846  798582 1
## 20847  798583 1
## 20848  798584 1
## 20849  798585 1
## 20850  798586 1
## 20851  798587 1
## 20852  798588 1
## 20853  798589 1
## 20854  798590 1
## 20855  798591 1
## 20856  798592 1
## 20857  798593 1
## 20858  798594 1
## 20859  798595 1
## 20860  798596 1
## 20861  798597 1
## 20862  798598 1
## 20863  798599 1
## 20864  798600 1
## 20865  798601 1
## 20866  798602 1
## 20867  798603 1
## 20868  798604 1
## 20869  798605 1
## 20870  798606 1
## 20871  798607 1
## 20872  798608 1
## 20873  798609 1
## 20874  798610 1
## 20875  798611 1
## 20876  798612 1
## 20877  798613 1
## 20878  798614 1
## 20879  798615 1
## 20880  798616 1
## 20881  798617 1
## 20882  798618 1
## 20883  798619 1
## 20884  798620 1
## 20885  798621 1
## 20886  798622 1
## 20887  798623 1
## 20888  798624 1
## 20889  798625 1
## 20890  798626 1
## 20891  798627 1
## 20892  798628 1
## 20893  798629 1
## 20894  798630 1
## 20895  798631 1
## 20896  798632 1
## 20897  798633 1
## 20898  798634 1
## 20899  798635 1
## 20900  798636 1
## 20901  798637 1
## 20902  798638 1
## 20903  798639 1
## 20904  798640 1
## 20905  798641 1
## 20906  798642 1
## 20907  798643 1
## 20908  798644 1
## 20909  798645 1
## 20910  798646 1
## 20911  798648 1
## 20912  798649 1
## 20913  798650 1
## 20914  798651 1
## 20915  798652 1
## 20916  798653 1
## 20917  798654 1
## 20918  798655 1
## 20919  798656 1
## 20920  798657 1
## 20921  798658 1
## 20922  798659 1
## 20923  798660 1
## 20924  798661 1
## 20925  798662 1
## 20926  798663 1
## 20927  798664 1
## 20928  798665 1
## 20929  798666 1
## 20930  798667 1
## 20931  798668 1
## 20932  798669 1
## 20933  798670 1
## 20934  798671 1
## 20935  798672 1
## 20936  798673 1
## 20937  798674 1
## 20938  798675 1
## 20939  798676 1
## 20940  798677 1
## 20941  798678 1
## 20942  798679 1
## 20943  798680 1
## 20944  798681 1
## 20945  798682 1
## 20946  798683 1
## 20947  798684 1
## 20948  798685 1
## 20949  798686 1
## 20950  798687 1
## 20951  798688 1
## 20952  798689 1
## 20953  798690 1
## 20954  798691 1
## 20955  798692 1
## 20956  798693 1
## 20957  798694 1
## 20958  798695 1
## 20959  798696 1
## 20960  798697 1
## 20961  798698 1
## 20962  798699 1
## 20963  798700 1
## 20964  798701 1
## 20965  798702 1
## 20966  798703 1
## 20967  798704 1
## 20968  798705 1
## 20969  798706 1
## 20970  798707 1
## 20971  798708 1
## 20972  798709 1
## 20973  798710 1
## 20974  798711 1
## 20975  798712 1
## 20976  798713 1
## 20977  798714 1
## 20978  798715 1
## 20979  798716 1
## 20980  798717 1
## 20981  798718 1
## 20982  798719 1
## 20983  798720 1
## 20984  798721 1
## 20985  798722 1
## 20986  798723 1
## 20987  798724 1
## 20988  798725 1
## 20989  798726 1
## 20990  798727 1
## 20991  798728 1
## 20992  798729 1
## 20993  798730 1
## 20994  798731 1
## 20995  798732 1
## 20996  798733 1
## 20997  798734 1
## 20998  798735 1
## 20999  798736 1
## 21000  798737 1
## 21001  798738 1
## 21002  798739 1
## 21003  798740 1
## 21004  798741 1
## 21005  798742 1
## 21006  798743 1
## 21007  798744 1
## 21008  798745 1
## 21009  798746 1
## 21010  798747 1
## 21011  798748 1
## 21012  798749 1
## 21013  798750 1
## 21014  798751 1
## 21015  798752 1
## 21016  798753 1
## 21017  798754 1
## 21018  798755 1
## 21019  798756 1
## 21020  798757 1
## 21021  798758 1
## 21022  798759 1
## 21023  798760 1
## 21024  798761 1
## 21025  798762 1
## 21026  798763 1
## 21027  798764 1
## 21028  798765 1
## 21029  798766 1
## 21030  798767 1
## 21031  798768 1
## 21032  798769 1
## 21033  798770 1
## 21034  798771 1
## 21035  798772 1
## 21036  798773 1
## 21037  798774 1
## 21038  798775 1
## 21039  798776 1
## 21040  798777 1
## 21041  798778 1
## 21042  798779 1
## 21043  798780 1
## 21044  798781 1
## 21045  798782 1
## 21046  798783 1
## 21047  798784 1
## 21048  798785 1
## 21049  798786 1
## 21050  798787 1
## 21051  798788 1
## 21052  798789 1
## 21053  798790 1
## 21054  798791 1
## 21055  798792 1
## 21056  798793 1
## 21057  798794 1
## 21058  798795 1
## 21059  798796 1
## 21060  798797 1
## 21061  798798 1
## 21062  798799 1
## 21063  798800 1
## 21064  798801 1
## 21065  798802 1
## 21066  798803 1
## 21067  798804 1
## 21068  798805 1
## 21069  798806 1
## 21070  798807 1
## 21071  798808 1
## 21072  798809 1
## 21073  798810 1
## 21074  798811 1
## 21075  798812 1
## 21076  798813 1
## 21077  798814 1
## 21078  798815 1
## 21079  798816 1
## 21080  798817 1
## 21081  798818 1
## 21082  798819 1
## 21083  798820 1
## 21084  798821 1
## 21085  798822 1
## 21086  798823 1
## 21087  798824 1
## 21088  798825 1
## 21089  798827 1
## 21090  798828 1
## 21091  798829 1
## 21092  798830 1
## 21093  798831 1
## 21094  798832 1
## 21095  798833 1
## 21096  798834 1
## 21097  798835 1
## 21098  798836 1
## 21099  798837 1
## 21100  798838 1
## 21101  798839 1
## 21102  798840 1
## 21103  798841 1
## 21104  798842 1
## 21105  798843 1
## 21106  798844 1
## 21107  798845 1
## 21108  798846 1
## 21109  798847 1
## 21110  798848 1
## 21111  798849 1
## 21112  798850 1
## 21113  798851 1
## 21114  798852 1
## 21115  798853 1
## 21116  798854 1
## 21117  798855 1
## 21118  798856 1
## 21119  798857 1
## 21120  798858 1
## 21121  798859 1
## 21122  798860 1
## 21123  798861 1
## 21124  798862 1
## 21125  798863 1
## 21126  798864 1
## 21127  798865 1
## 21128  798866 1
## 21129  798867 1
## 21130  798868 1
## 21131  798869 1
## 21132  798870 1
## 21133  798871 1
## 21134  798872 1
## 21135  798873 1
## 21136  798874 1
## 21137  798875 1
## 21138  798876 1
## 21139  798877 1
## 21140  798878 1
## 21141  798879 1
## 21142  798880 1
## 21143  798881 1
## 21144  798882 1
## 21145  798883 1
## 21146  798884 1
## 21147  798885 1
## 21148  798886 1
## 21149  798887 1
## 21150  798888 1
## 21151  798889 1
## 21152  798890 1
## 21153  798891 1
## 21154  798892 1
## 21155  798893 1
## 21156  798894 1
## 21157  798895 1
## 21158  798896 1
## 21159  798897 1
## 21160  798898 1
## 21161  798899 1
## 21162  798900 1
## 21163  798901 1
## 21164  798902 1
## 21165  798903 1
## 21166  798904 1
## 21167  798905 1
## 21168  798906 1
## 21169  798907 1
## 21170  798908 1
## 21171  798909 1
## 21172  798910 1
## 21173  798911 1
## 21174  798912 1
## 21175  798913 1
## 21176  798914 1
## 21177  798915 1
## 21178  798916 1
## 21179  798917 1
## 21180  798918 1
## 21181  798919 1
## 21182  798920 1
## 21183  798921 1
## 21184  798922 1
## 21185  798923 1
## 21186  798924 1
## 21187  798925 1
## 21188  798926 1
## 21189  798928 1
## 21190  798929 1
## 21191  798930 1
## 21192  798931 1
## 21193  798932 1
## 21194  798933 1
## 21195  798934 1
## 21196  798935 1
## 21197  798936 1
## 21198  798937 1
## 21199  798938 1
## 21200  798939 1
## 21201  798940 1
## 21202  798941 1
## 21203  798942 1
## 21204  798943 1
## 21205  798944 1
## 21206  798945 1
## 21207  798946 1
## 21208  798947 1
## 21209  798948 1
## 21210  798949 1
## 21211  798950 1
## 21212  798951 1
## 21213  798952 1
## 21214  798953 1
## 21215  798954 1
## 21216  798955 1
## 21217  798956 1
## 21218  798957 1
## 21219  798958 1
## 21220  798959 1
## 21221  798960 1
## 21222  798961 1
## 21223  798962 1
## 21224  798963 1
## 21225  798964 1
## 21226  798965 1
## 21227  798966 1
## 21228  798967 1
## 21229  798968 1
## 21230  798969 1
## 21231  798970 1
## 21232  798971 1
## 21233  798972 1
## 21234  798973 1
## 21235  798974 1
## 21236  798975 1
## 21237  798976 1
## 21238  798977 1
## 21239  798978 1
## 21240  798979 1
## 21241  798980 1
## 21242  798981 1
## 21243  798982 1
## 21244  798983 1
## 21245  798984 1
## 21246  798985 1
## 21247  798986 1
## 21248  798987 1
## 21249  798988 1
## 21250  798989 1
## 21251  798990 1
## 21252  798991 1
## 21253  798992 1
## 21254  798993 1
## 21255  798994 1
## 21256  798995 1
## 21257  798996 1
## 21258  798997 1
## 21259  798998 1
## 21260  798999 1
## 21261  799000 1
## 21262  799001 1
## 21263  799002 1
## 21264  799003 1
## 21265  799004 1
## 21266  799005 1
## 21267  799006 1
## 21268  799007 1
## 21269  799008 1
## 21270  799009 1
## 21271  799010 1
## 21272  799011 1
## 21273  799012 1
## 21274  799013 1
## 21275  799014 1
## 21276  799015 1
## 21277  799016 1
## 21278  799017 1
## 21279  799018 1
## 21280  799019 1
## 21281  799020 1
## 21282  799021 1
## 21283  799022 1
## 21284  799023 1
## 21285  799024 1
## 21286  799025 1
## 21287  799026 1
## 21288  799027 1
## 21289  799028 1
## 21290  799029 1
## 21291  799030 1
## 21292  799031 1
## 21293  799032 1
## 21294  799033 1
## 21295  799034 1
## 21296  799035 1
## 21297  799036 1
## 21298  799037 1
## 21299  799038 1
## 21300  799039 1
## 21301  799040 1
## 21302  799041 1
## 21303  799042 1
## 21304  799043 1
## 21305  799044 1
## 21306  799045 1
## 21307  799046 1
## 21308  799047 1
## 21309  799048 1
## 21310  799049 1
## 21311  799050 1
## 21312  799051 1
## 21313  799052 1
## 21314  799053 1
## 21315  799054 1
## 21316  799055 1
## 21317  799056 1
## 21318  799057 1
## 21319  799058 1
## 21320  799059 1
## 21321  799060 1
## 21322  799061 1
## 21323  799062 1
## 21324  799063 1
## 21325  799064 1
## 21326  799065 1
## 21327  799066 1
## 21328  799067 1
## 21329  799068 1
## 21330  799069 1
## 21331  799070 1
## 21332  799071 1
## 21333  799072 1
## 21334  799073 1
## 21335  799074 1
## 21336  799075 1
## 21337  799076 1
## 21338  799077 1
## 21339  799078 1
## 21340  799079 1
## 21341  799080 1
## 21342  799081 1
## 21343  799082 1
## 21344  799083 1
## 21345  799084 1
## 21346  799085 1
## 21347  799086 1
## 21348  799087 1
## 21349  799088 1
## 21350  799089 1
## 21351  799090 1
## 21352  799091 1
## 21353  799092 1
## 21354  799093 1
## 21355  799094 1
## 21356  799095 1
## 21357  799096 1
## 21358  799097 1
## 21359  799098 1
## 21360  799099 1
## 21361  799100 1
## 21362  799101 1
## 21363  799102 1
## 21364  799103 1
## 21365  799104 1
## 21366  799105 1
## 21367  799106 1
## 21368  799107 1
## 21369  799108 1
## 21370  799109 1
## 21371  799110 1
## 21372  799111 1
## 21373  799112 1
## 21374  799113 1
## 21375  799114 1
## 21376  799115 1
## 21377  799116 1
## 21378  799117 1
## 21379  799118 1
## 21380  799119 1
## 21381  799120 1
## 21382  799121 1
## 21383  799122 1
## 21384  799123 1
## 21385  799124 1
## 21386  799125 1
## 21387  799126 1
## 21388  799127 1
## 21389  799128 1
## 21390  799129 1
## 21391  799130 1
## 21392  799131 1
## 21393  799132 1
## 21394  799133 1
## 21395  799134 1
## 21396  799135 1
## 21397  799136 1
## 21398  799137 1
## 21399  799138 1
## 21400  799139 1
## 21401  799140 1
## 21402  799141 1
## 21403  799142 1
## 21404  799143 1
## 21405  799144 1
## 21406  799145 1
## 21407  799146 1
## 21408  799147 1
## 21409  799148 1
## 21410  799149 1
## 21411  799150 1
## 21412  799151 1
## 21413  799152 1
## 21414  799153 1
## 21415  799154 1
## 21416  799155 1
## 21417  799156 1
## 21418  799157 1
## 21419  799158 1
## 21420  799159 1
## 21421  799160 1
## 21422  799161 1
## 21423  799162 1
## 21424  799163 1
## 21425  799164 1
## 21426  799165 1
## 21427  799166 1
## 21428  799167 1
## 21429  799168 1
## 21430  799169 1
## 21431  799171 1
## 21432  799172 1
## 21433  799173 1
## 21434  799174 1
## 21435  799175 1
## 21436  799176 1
## 21437  799177 1
## 21438  799178 1
## 21439  799179 1
## 21440  799180 1
## 21441  799182 1
## 21442  799183 1
## 21443  799184 1
## 21444  799185 1
## 21445  799186 1
## 21446  799187 1
## 21447  799188 1
## 21448  799189 1
## 21449  799190 1
## 21450  799191 1
## 21451  799192 1
## 21452  799193 1
## 21453  799194 1
## 21454  799195 1
## 21455  799196 1
## 21456  799197 1
## 21457  799198 1
## 21458  799199 1
## 21459  799200 1
## 21460  799201 1
## 21461  799202 1
## 21462  799203 1
## 21463  799204 1
## 21464  799206 1
## 21465  799207 1
## 21466  799208 1
## 21467  799209 1
## 21468  799210 1
## 21469  799211 1
## 21470  799212 1
## 21471  799213 1
## 21472  799214 1
## 21473  799215 1
## 21474  799216 1
## 21475  799217 1
## 21476  799218 1
## 21477  799219 1
## 21478  799220 1
## 21479  799221 1
## 21480  799222 1
## 21481  799223 1
## 21482  799224 1
## 21483  799225 1
## 21484  799226 1
## 21485  799227 1
## 21486  799228 1
## 21487  799229 1
## 21488  799230 1
## 21489  799231 1
## 21490  799232 1
## 21491  799233 1
## 21492  799234 1
## 21493  799235 1
## 21494  799236 1
## 21495  799237 1
## 21496  799238 1
## 21497  799239 1
## 21498  799240 1
## 21499  799241 1
## 21500  799242 1
## 21501  799243 1
## 21502  799244 1
## 21503  799245 1
## 21504  799246 1
## 21505  799247 1
## 21506  799248 1
## 21507  799249 1
## 21508  799250 1
## 21509  799251 1
## 21510  799252 1
## 21511  799253 1
## 21512  799254 1
## 21513  799255 1
## 21514  799256 1
## 21515  799257 1
## 21516  799258 1
## 21517  799259 1
## 21518  799260 1
## 21519  799261 1
## 21520  799262 1
## 21521  799263 1
## 21522  799264 1
## 21523  799265 1
## 21524  799266 1
## 21525  799267 1
## 21526  799268 1
## 21527  799269 1
## 21528  799270 1
## 21529  799271 1
## 21530  799272 1
## 21531  799273 1
## 21532  799274 1
## 21533  799275 1
## 21534  799276 1
## 21535  799277 1
## 21536  799278 1
## 21537  799279 1
## 21538  799280 1
## 21539  799281 1
## 21540  799282 1
## 21541  799283 1
## 21542  799284 1
## 21543  799285 1
## 21544  799286 1
## 21545  799287 1
## 21546  799288 1
## 21547  799289 1
## 21548  799290 1
## 21549  799291 1
## 21550  799292 1
## 21551  799293 1
## 21552  799294 1
## 21553  799295 1
## 21554  799296 1
## 21555  799297 1
## 21556  799298 1
## 21557  799299 1
## 21558  799300 1
## 21559  799301 1
## 21560  799302 1
## 21561  799303 1
## 21562  799304 1
## 21563  799305 1
## 21564  799306 1
## 21565  799307 1
## 21566  799308 1
## 21567  799309 1
## 21568  799310 1
## 21569  799311 1
## 21570  799312 1
## 21571  799313 1
## 21572  799314 1
## 21573  799315 1
## 21574  799316 1
## 21575  799317 1
## 21576  799318 1
## 21577  799319 1
## 21578  799320 1
## 21579  799321 1
## 21580  799322 1
## 21581  799323 1
## 21582  799324 1
## 21583  799325 1
## 21584  799326 1
## 21585  799327 1
## 21586  799328 1
## 21587  799329 1
## 21588  799330 1
## 21589  799331 1
## 21590  799332 1
## 21591  799333 1
## 21592  799334 1
## 21593  799335 1
## 21594  799336 1
## 21595  799337 1
## 21596  799338 1
## 21597  799339 1
## 21598  799340 1
## 21599  799341 1
## 21600  799342 1
## 21601  799343 1
## 21602  799344 1
## 21603  799345 1
## 21604  799346 1
## 21605  799347 1
## 21606  799348 1
## 21607  799349 1
## 21608  799350 1
## 21609  799351 1
## 21610  799352 1
## 21611  799353 1
## 21612  799354 1
## 21613  799355 1
## 21614  799356 1
## 21615  799357 1
## 21616  799358 1
## 21617  799359 1
## 21618  799360 1
## 21619  799361 1
## 21620  799362 1
## 21621  799363 1
## 21622  799364 1
## 21623  799365 1
## 21624  799366 1
## 21625  799367 1
## 21626  799368 1
## 21627  799369 1
## 21628  799370 1
## 21629  799371 1
## 21630  799372 1
## 21631  799373 1
## 21632  799374 1
## 21633  799375 1
## 21634  799376 1
## 21635  799377 1
## 21636  799378 1
## 21637  799379 1
## 21638  799380 1
## 21639  799381 1
## 21640  799382 1
## 21641  799383 1
## 21642  799384 1
## 21643  799385 1
## 21644  799386 1
## 21645  799387 1
## 21646  799388 1
## 21647  799389 1
## 21648  799390 1
## 21649  799391 1
## 21650  799392 1
## 21651  799393 1
## 21652  799394 1
## 21653  799395 1
## 21654  799396 1
## 21655  799397 1
## 21656  799398 1
## 21657  799399 1
## 21658  799400 1
## 21659  799401 1
## 21660  799402 1
## 21661  799403 1
## 21662  799404 1
## 21663  799405 1
## 21664  799406 1
## 21665  799407 1
## 21666  799408 1
## 21667  799409 1
## 21668  799410 1
## 21669  799411 1
## 21670  799412 1
## 21671  799413 1
## 21672  799414 1
## 21673  799415 1
## 21674  799416 1
## 21675  799417 1
## 21676  799418 1
## 21677  799419 1
## 21678  799420 1
## 21679  799421 1
## 21680  799422 1
## 21681  799423 1
## 21682  799424 1
## 21683  799425 1
## 21684  799426 1
## 21685  799427 1
## 21686  799428 1
## 21687  799429 1
## 21688  799430 1
## 21689  799431 1
## 21690  799432 1
## 21691  799433 1
## 21692  799434 1
## 21693  799435 1
## 21694  799436 1
## 21695  799437 1
## 21696  799438 1
## 21697  799439 1
## 21698  799440 1
## 21699  799441 1
## 21700  799442 1
## 21701  799443 1
## 21702  799444 1
## 21703  799445 1
## 21704  799446 1
## 21705  799447 1
## 21706  799448 1
## 21707  799449 1
## 21708  799450 1
## 21709  799451 1
## 21710  799452 1
## 21711  799453 1
## 21712  799454 1
## 21713  799455 1
## 21714  799456 1
## 21715  799457 1
## 21716  799458 1
## 21717  799459 1
## 21718  799460 1
## 21719  799461 1
## 21720  799462 1
## 21721  799463 1
## 21722  799464 1
## 21723  799465 1
## 21724  799466 1
## 21725  799467 1
## 21726  799468 1
## 21727  799469 1
## 21728  799470 1
## 21729  799472 1
## 21730  799473 1
## 21731  799474 1
## 21732  799475 1
## 21733  799476 1
## 21734  799477 1
## 21735  799478 1
## 21736  799479 1
## 21737  799480 1
## 21738  799481 1
## 21739  799482 1
## 21740  799483 1
## 21741  799484 1
## 21742  799485 1
## 21743  799486 1
## 21744  799487 1
## 21745  799488 1
## 21746  799489 1
## 21747  799490 1
## 21748  799491 1
## 21749  799492 1
## 21750  799493 1
## 21751  799494 1
## 21752  799495 1
## 21753  799496 1
## 21754  799497 1
## 21755  799498 1
## 21756  799499 1
## 21757  799500 1
## 21758  799501 1
## 21759  799502 1
## 21760  799503 1
## 21761  799504 1
## 21762  799505 1
## 21763  799506 1
## 21764  799507 1
## 21765  799508 1
## 21766  799509 1
## 21767  799510 1
## 21768  799511 1
## 21769  799512 1
## 21770  799513 1
## 21771  799514 1
## 21772  799515 1
## 21773  799516 1
## 21774  799517 1
## 21775  799518 1
## 21776  799519 1
## 21777  799520 1
## 21778  799521 1
## 21779  799522 1
## 21780  799523 1
## 21781  799524 1
## 21782  799525 1
## 21783  799526 1
## 21784  799527 1
## 21785  799528 1
## 21786  799529 1
## 21787  799530 1
## 21788  799531 1
## 21789  799532 1
## 21790  799533 1
## 21791  799534 1
## 21792  799535 1
## 21793  799536 1
## 21794  799537 1
## 21795  799538 1
## 21796  799539 1
## 21797  799540 1
## 21798  799541 1
## 21799  799542 1
## 21800  799543 1
## 21801  799544 1
## 21802  799545 1
## 21803  799546 1
## 21804  799547 1
## 21805  799548 1
## 21806  799549 1
## 21807  799550 1
## 21808  799551 1
## 21809  799552 1
## 21810  799553 1
## 21811  799554 1
## 21812  799555 1
## 21813  799556 1
## 21814  799557 1
## 21815  799558 1
## 21816  799559 1
## 21817  799560 1
## 21818  799561 1
## 21819  799562 1
## 21820  799563 1
## 21821  799564 1
## 21822  799565 1
## 21823  799566 1
## 21824  799567 1
## 21825  799568 1
## 21826  799569 1
## 21827  799570 1
## 21828  799571 1
## 21829  799572 1
## 21830  799573 1
## 21831  799574 1
## 21832  799575 1
## 21833  799576 1
## 21834  799577 1
## 21835  799578 1
## 21836  799579 1
## 21837  799580 1
## 21838  799581 1
## 21839  799582 1
## 21840  799583 1
## 21841  799584 1
## 21842  799585 1
## 21843  799586 1
## 21844  799587 1
## 21845  799588 1
## 21846  799589 1
## 21847  799590 1
## 21848  799591 1
## 21849  799592 1
## 21850  799593 1
## 21851  799594 1
## 21852  799595 1
## 21853  799596 1
## 21854  799597 1
## 21855  799598 1
## 21856  799599 1
## 21857  799600 1
## 21858  799601 1
## 21859  799602 1
## 21860  799603 1
## 21861  799604 1
## 21862  799605 1
## 21863  799606 1
## 21864  799607 1
## 21865  799608 1
## 21866  799609 1
## 21867  799610 1
## 21868  799611 1
## 21869  799612 1
## 21870  799613 1
## 21871  799614 1
## 21872  799615 1
## 21873  799616 1
## 21874  799617 1
## 21875  799618 1
## 21876  799619 1
## 21877  799620 1
## 21878  799621 1
## 21879  799622 1
## 21880  799623 1
## 21881  799624 1
## 21882  799625 1
## 21883  799626 1
## 21884  799627 1
## 21885  799628 1
## 21886  799629 1
## 21887  799630 1
## 21888  799631 1
## 21889  799632 1
## 21890  799633 1
## 21891  799634 1
## 21892  799635 1
## 21893  799636 1
## 21894  799637 1
## 21895  799638 1
## 21896  799639 1
## 21897  799640 1
## 21898  799641 1
## 21899  799642 1
## 21900  799643 1
## 21901  799644 1
## 21902  799645 1
## 21903  799646 1
## 21904  799647 1
## 21905  799648 1
## 21906  799649 1
## 21907  799650 1
## 21908  799651 1
## 21909  799653 1
## 21910  799654 1
## 21911  799655 1
## 21912  799656 1
## 21913  799657 1
## 21914  799658 1
## 21915  799659 1
## 21916  799660 1
## 21917  799661 1
## 21918  799662 1
## 21919  799663 1
## 21920  799664 1
## 21921  799665 1
## 21922  799666 1
## 21923  799667 1
## 21924  799668 1
## 21925  799669 1
## 21926  799670 1
## 21927  799671 1
## 21928  799672 1
## 21929  799673 1
## 21930  799674 1
## 21931  799675 1
## 21932  799676 1
## 21933  799677 1
## 21934  799678 1
## 21935  799679 1
## 21936  799680 1
## 21937  799681 1
## 21938  799682 1
## 21939  799683 1
## 21940  799684 1
## 21941  799685 1
## 21942  799686 1
## 21943  799687 1
## 21944  799688 1
## 21945  799689 1
## 21946  799690 1
## 21947  799691 1
## 21948  799692 1
## 21949  799693 1
## 21950  799694 1
## 21951  799695 1
## 21952  799696 1
## 21953  799697 1
## 21954  799698 1
## 21955  799699 1
## 21956  799700 1
## 21957  799701 1
## 21958  799702 1
## 21959  799703 1
## 21960  799704 1
## 21961  799705 1
## 21962  799706 1
## 21963  799707 1
## 21964  799708 1
## 21965  799709 1
## 21966  799710 1
## 21967  799711 1
## 21968  799712 1
## 21969  799713 1
## 21970  799714 1
## 21971  799715 1
## 21972  799716 1
## 21973  799717 1
## 21974  799718 1
## 21975  799719 1
## 21976  799720 1
## 21977  799721 1
## 21978  799722 1
## 21979  799723 1
## 21980  799724 1
## 21981  799725 1
## 21982  799726 1
## 21983  799727 1
## 21984  799728 1
## 21985  799729 1
## 21986  799730 1
## 21987  799731 1
## 21988  799732 1
## 21989  799733 1
## 21990  799734 1
## 21991  799735 1
## 21992  799736 1
## 21993  799737 1
## 21994  799738 1
## 21995  799739 1
## 21996  799740 1
## 21997  799741 1
## 21998  799742 1
## 21999  799743 1
## 22000  799744 1
## 22001  799745 1
## 22002  799746 1
## 22003  799747 1
## 22004  799748 1
## 22005  799749 1
## 22006  799750 1
## 22007  799751 1
## 22008  799752 1
## 22009  799753 1
## 22010  799754 1
## 22011  799755 1
## 22012  799756 1
## 22013  799757 1
## 22014  799758 1
## 22015  799759 1
## 22016  799760 1
## 22017  799761 1
## 22018  799762 1
## 22019  799763 1
## 22020  799764 1
## 22021  799766 1
## 22022  799767 1
## 22023  799768 1
## 22024  799769 1
## 22025  799770 1
## 22026  799771 1
## 22027  799772 1
## 22028  799773 1
## 22029  799774 1
## 22030  799775 1
## 22031  799776 1
## 22032  799777 1
## 22033  799778 1
## 22034  799779 1
## 22035  799780 1
## 22036  799782 1
## 22037  799783 1
## 22038  799784 1
## 22039  799785 1
## 22040  799786 1
## 22041  799787 1
## 22042  799788 1
## 22043  799789 1
## 22044  799790 1
## 22045  799791 1
## 22046  799792 1
## 22047  799793 1
## 22048  799794 1
## 22049  799795 1
## 22050  799796 1
## 22051  799797 1
## 22052  799798 1
## 22053  799799 1
## 22054  799800 1
## 22055  799801 1
## 22056  799802 1
## 22057  799803 1
## 22058  799804 1
## 22059  799805 1
## 22060  799806 1
## 22061  799807 1
## 22062  799808 1
## 22063  799809 1
## 22064  799810 1
## 22065  799811 1
## 22066  799812 1
## 22067  799813 1
## 22068  799814 1
## 22069  799815 1
## 22070  799816 1
## 22071  799817 1
## 22072  799818 1
## 22073  799819 1
## 22074  799820 1
## 22075  799821 1
## 22076  799822 1
## 22077  799823 1
## 22078  799824 1
## 22079  799825 1
## 22080  799826 1
## 22081  799827 1
## 22082  799828 1
## 22083  799829 1
## 22084  799830 1
## 22085  799831 1
## 22086  799832 1
## 22087  799833 1
## 22088  799834 1
## 22089  799835 1
## 22090  799836 1
## 22091  799837 1
## 22092  799838 1
## 22093  799839 1
## 22094  799840 1
## 22095  799841 1
## 22096  799842 1
## 22097  799843 1
## 22098  799844 1
## 22099  799845 1
## 22100  799846 1
## 22101  799847 1
## 22102  799848 1
## 22103  799849 1
## 22104  799850 1
## 22105  799851 1
## 22106  799852 1
## 22107  799853 1
## 22108  799854 1
## 22109  799855 1
## 22110  799856 1
## 22111  799857 1
## 22112  799858 1
## 22113  799859 1
## 22114  799860 1
## 22115  799861 1
## 22116  799862 1
## 22117  799863 1
## 22118  799864 1
## 22119  799865 1
## 22120  799866 1
## 22121  799867 1
## 22122  799868 1
## 22123  799869 1
## 22124  799870 1
## 22125  799871 1
## 22126  799872 1
## 22127  799873 1
## 22128  799874 1
## 22129  799875 1
## 22130  799876 1
## 22131  799877 1
## 22132  799878 1
## 22133  799879 1
## 22134  799880 1
## 22135  799881 1
## 22136  799882 1
## 22137  799883 1
## 22138  799884 1
## 22139  799885 1
## 22140  799886 1
## 22141  799887 1
## 22142  799888 1
## 22143  799889 1
## 22144  799890 1
## 22145  799891 1
## 22146  799892 1
## 22147  799893 1
## 22148  799894 1
## 22149  799895 1
## 22150  799896 1
## 22151  799897 1
## 22152  799898 1
## 22153  799899 1
## 22154  799900 1
## 22155  799901 1
## 22156  799902 1
## 22157  799903 1
## 22158  799904 1
## 22159  799905 1
## 22160  799906 1
## 22161  799907 1
## 22162  799908 1
## 22163  799909 1
## 22164  799910 1
## 22165  799911 1
## 22166  799912 1
## 22167  799913 1
## 22168  799914 1
## 22169  799915 1
## 22170  799916 1
## 22171  799917 1
## 22172  799918 1
## 22173  799919 1
## 22174  799920 1
## 22175  799921 1
## 22176  799922 1
## 22177  799923 1
## 22178  799924 1
## 22179  799925 1
## 22180  799926 1
## 22181  799927 1
## 22182  799928 1
## 22183  799929 1
## 22184  799930 1
## 22185  799931 1
## 22186  799932 1
## 22187  799933 1
## 22188  799934 1
## 22189  799935 1
## 22190  799936 1
## 22191  799937 1
## 22192  799938 1
## 22193  799939 1
## 22194  799940 1
## 22195  799941 1
## 22196  799942 1
## 22197  799943 1
## 22198  799944 1
## 22199  799945 1
## 22200  799946 1
## 22201  799947 1
## 22202  799948 1
## 22203  799949 1
## 22204  799950 1
## 22205  799951 1
## 22206  799952 1
## 22207  799953 1
## 22208  799954 1
## 22209  799955 1
## 22210  799956 1
## 22211  799957 1
## 22212  799958 1
## 22213  799959 1
## 22214  799960 1
## 22215  799961 1
## 22216  799962 1
## 22217  799963 1
## 22218  799964 1
## 22219  799965 1
## 22220  799966 1
## 22221  799967 1
## 22222  799968 1
## 22223  799969 1
## 22224  799970 1
## 22225  799971 1
## 22226  799972 1
## 22227  799973 1
## 22228  799974 1
## 22229  799975 1
## 22230  799976 1
## 22231  799977 1
## 22232  799978 1
## 22233  799979 1
## 22234  799980 1
## 22235  799981 1
## 22236  799982 1
## 22237  799983 1
## 22238  799984 1
## 22239  799985 1
## 22240  799986 1
## 22241  799987 1
## 22242  799988 1
## 22243  799989 1
## 22244  799990 1
## 22245  799991 1
## 22246  799992 1
## 22247  799993 1
## 22248  799994 1
## 22249  799995 1
## 22250  799996 1
## 22251  799997 1
## 22252  799998 1
## 22253  799999 1
## 22254  800000 1
## 22255  800001 1
## 22256  800002 1
## 22257  800003 1
## 22258  800004 1
## 22259  800005 1
## 22260  800006 1
## 22261  800007 1
## 22262  800008 1
## 22263  800009 1
## 22264  800010 1
## 22265  800011 1
## 22266  800012 1
## 22267  800013 1
## 22268  800014 1
## 22269  800015 1
## 22270  800016 1
## 22271  800017 1
## 22272  800018 1
## 22273  800019 1
## 22274  800020 1
## 22275  800021 1
## 22276  800022 1
## 22277  800023 1
## 22278  800024 1
## 22279  800025 1
## 22280  800026 1
## 22281  800027 1
## 22282  800028 1
## 22283  800029 1
## 22284  800030 1
## 22285  800031 1
## 22286  800032 1
## 22287  800033 1
## 22288  800034 1
## 22289  800035 1
## 22290  800036 1
## 22291  800037 1
## 22292  800038 1
## 22293  800039 1
## 22294  800040 1
## 22295  800041 1
## 22296  800042 1
## 22297  800043 1
## 22298  800044 1
## 22299  800045 1
## 22300  800046 1
## 22301  800047 1
## 22302  800048 1
## 22303  800049 1
## 22304  800050 1
## 22305  800051 1
## 22306  800052 1
## 22307  800053 1
## 22308  800054 1
## 22309  800055 1
## 22310  800056 1
## 22311  800057 1
## 22312  800058 1
## 22313  800059 1
## 22314  800060 1
## 22315  800061 1
## 22316  800062 1
## 22317  800063 1
## 22318  800064 1
## 22319  800065 1
## 22320  800066 1
## 22321  800067 1
## 22322  800068 1
## 22323  800069 1
## 22324  800070 1
## 22325  800071 1
## 22326  800072 1
## 22327  800073 1
## 22328  800074 1
## 22329  800075 1
## 22330  800076 1
## 22331  800077 1
## 22332  800078 1
## 22333  800079 1
## 22334  800080 1
## 22335  800081 1
## 22336  800082 1
## 22337  800083 1
## 22338  800084 1
## 22339  800085 1
## 22340  800086 1
## 22341  800087 1
## 22342  800088 1
## 22343  800089 1
## 22344  800090 1
## 22345  800091 1
## 22346  800092 1
## 22347  800093 1
## 22348  800094 1
## 22349  800095 1
## 22350  800096 1
## 22351  800097 1
## 22352  800098 1
## 22353  800099 1
## 22354  800100 1
## 22355  800101 1
## 22356  800102 1
## 22357  800103 1
## 22358  800104 1
## 22359  800105 1
## 22360  800106 1
## 22361  800107 1
## 22362  800108 1
## 22363  800109 1
## 22364  800110 1
## 22365  800111 1
## 22366  800112 1
## 22367  800113 1
## 22368  800114 1
## 22369  800115 1
## 22370  800116 1
## 22371  800117 1
## 22372  800118 1
## 22373  800119 1
## 22374  800120 1
## 22375  800121 1
## 22376  800122 1
## 22377  800123 1
## 22378  800124 1
## 22379  800125 1
## 22380  800126 1
## 22381  800127 1
## 22382  800128 1
## 22383  800129 1
## 22384  800130 1
## 22385  800131 1
## 22386  800132 1
## 22387  800133 1
## 22388  800134 1
## 22389  800135 1
## 22390  800136 1
## 22391  800137 1
## 22392  800138 1
## 22393  800139 1
## 22394  800140 1
## 22395  800141 1
## 22396  800142 1
## 22397  800143 1
## 22398  800144 1
## 22399  800145 1
## 22400  800146 1
## 22401  800147 1
## 22402  800148 1
## 22403  800149 1
## 22404  800150 1
## 22405  800151 1
## 22406  800152 1
## 22407  800153 1
## 22408  800154 1
## 22409  800155 1
## 22410  800156 1
## 22411  800157 1
## 22412  800158 1
## 22413  800159 1
## 22414  800160 1
## 22415  800161 1
## 22416  800162 1
## 22417  800163 1
## 22418  800164 1
## 22419  800166 1
## 22420  800167 1
## 22421  800168 1
## 22422  800169 1
## 22423  800170 1
## 22424  800171 1
## 22425  800172 1
## 22426  800173 1
## 22427  800174 1
## 22428  800175 1
## 22429  800176 1
## 22430  800177 1
## 22431  800178 1
## 22432  800179 1
## 22433  800180 1
## 22434  800181 1
## 22435  800182 1
## 22436  800183 1
## 22437  800184 1
## 22438  800185 1
## 22439  800186 1
## 22440  800187 1
## 22441  800188 1
## 22442  800189 1
## 22443  800191 1
## 22444  800192 1
## 22445  800193 1
## 22446  800194 1
## 22447  800195 1
## 22448  800196 1
## 22449  800197 1
## 22450  800198 1
## 22451  800199 1
## 22452  800200 1
## 22453  800201 1
## 22454  800202 1
## 22455  800203 1
## 22456  800204 1
## 22457  800205 1
## 22458  800206 1
## 22459  800207 1
## 22460  800208 1
## 22461  800209 1
## 22462  800210 1
## 22463  800211 1
## 22464  800212 1
## 22465  800213 1
## 22466  800214 1
## 22467  800215 1
## 22468  800216 1
## 22469  800217 1
## 22470  800218 1
## 22471  800219 1
## 22472  800220 1
## 22473  800221 1
## 22474  800222 1
## 22475  800223 1
## 22476  800224 1
## 22477  800225 1
## 22478  800226 1
## 22479  800227 1
## 22480  800228 1
## 22481  800229 1
## 22482  800230 1
## 22483  800231 1
## 22484  800232 1
## 22485  800233 1
## 22486  800234 1
## 22487  800235 1
## 22488  800236 1
## 22489  800237 1
## 22490  800238 1
## 22491  800239 1
## 22492  800240 1
## 22493  800241 1
## 22494  800242 1
## 22495  800243 1
## 22496  800244 1
## 22497  800245 1
## 22498  800246 1
## 22499  800247 1
## 22500  800249 1
## 22501  800250 1
## 22502  800251 1
## 22503  800252 1
## 22504  800253 1
## 22505  800254 1
## 22506  800255 1
## 22507  800256 1
## 22508  800257 1
## 22509  800258 1
## 22510  800259 1
## 22511  800260 1
## 22512  800261 1
## 22513  800262 1
## 22514  800263 1
## 22515  800264 1
## 22516  800265 1
## 22517  800266 1
## 22518  800267 1
## 22519  800268 1
## 22520  800269 1
## 22521  800270 1
## 22522  800271 1
## 22523  800272 1
## 22524  800273 1
## 22525  800274 1
## 22526  800275 1
## 22527  800276 1
## 22528  800277 1
## 22529  800278 1
## 22530  800279 1
## 22531  800280 1
## 22532  800281 1
## 22533  800282 1
## 22534  800283 1
## 22535  800284 1
## 22536  800285 1
## 22537  800286 1
## 22538  800287 1
## 22539  800288 1
## 22540  800289 1
## 22541  800290 1
## 22542  800291 1
## 22543  800292 1
## 22544  800293 1
## 22545  800294 1
## 22546  800295 1
## 22547  800296 1
## 22548  800297 1
## 22549  800298 1
## 22550  800299 1
## 22551  800300 1
## 22552  800301 1
## 22553  800302 1
## 22554  800303 1
## 22555  800304 1
## 22556  800305 1
## 22557  800306 1
## 22558  800307 1
## 22559  800308 1
## 22560  800309 1
## 22561  800310 1
## 22562  800311 1
## 22563  800312 1
## 22564  800313 1
## 22565  800314 1
## 22566  800315 1
## 22567  800316 1
## 22568  800317 1
## 22569  800318 1
## 22570  800319 1
## 22571  800320 1
## 22572  800321 1
## 22573  800322 1
## 22574  800323 1
## 22575  800324 1
## 22576  800325 1
## 22577  800326 1
## 22578  800327 1
## 22579  800328 1
## 22580  800329 1
## 22581  800330 1
## 22582  800332 1
## 22583  800333 1
## 22584  800334 1
## 22585  800335 1
## 22586  800336 1
## 22587  800337 1
## 22588  800338 1
## 22589  800339 1
## 22590  800340 1
## 22591  800341 1
## 22592  800342 1
## 22593  800343 1
## 22594  800344 1
## 22595  800345 1
## 22596  800346 1
## 22597  800347 1
## 22598  800348 1
## 22599  800349 1
## 22600  800350 1
## 22601  800351 1
## 22602  800352 1
## 22603  800353 1
## 22604  800354 1
## 22605  800355 1
## 22606  800356 1
## 22607  800357 1
## 22608  800358 1
## 22609  800359 1
## 22610  800360 1
## 22611  800361 1
## 22612  800362 1
## 22613  800363 1
## 22614  800364 1
## 22615  800365 1
## 22616  800366 1
## 22617  800367 1
## 22618  800368 1
## 22619  800369 1
## 22620  800370 1
## 22621  800371 1
## 22622  800372 1
## 22623  800373 1
## 22624  800374 1
## 22625  800375 1
## 22626  800376 1
## 22627  800377 1
## 22628  800378 1
## 22629  800379 1
## 22630  800380 1
## 22631  800381 1
## 22632  800382 1
## 22633  800383 1
## 22634  800384 1
## 22635  800385 1
## 22636  800386 1
## 22637  800387 1
## 22638  800388 1
## 22639  800389 1
## 22640  800390 1
## 22641  800391 1
## 22642  800392 1
## 22643  800393 1
## 22644  800394 1
## 22645  800395 1
## 22646  800396 1
## 22647  800397 1
## 22648  800398 1
## 22649  800399 1
## 22650  800400 1
## 22651  800401 1
## 22652  800402 1
## 22653  800403 1
## 22654  800404 1
## 22655  800405 1
## 22656  800406 1
## 22657  800407 1
## 22658  800408 1
## 22659  800409 1
## 22660  800410 1
## 22661  800411 1
## 22662  800412 1
## 22663  800413 1
## 22664  800414 1
## 22665  800415 1
## 22666  800416 1
## 22667  800417 1
## 22668  800418 1
## 22669  800419 1
## 22670  800420 1
## 22671  800421 1
## 22672  800422 1
## 22673  800423 1
## 22674  800424 1
## 22675  800425 1
## 22676  800426 1
## 22677  800427 1
## 22678  800428 1
## 22679  800429 1
## 22680  800430 1
## 22681  800431 1
## 22682  800432 1
## 22683  800433 1
## 22684  800434 1
## 22685  800435 1
## 22686  800436 1
## 22687  800437 1
## 22688  800438 1
## 22689  800439 1
## 22690  800440 1
## 22691  800441 1
## 22692  800442 1
## 22693  800443 1
## 22694  800444 1
## 22695  800445 1
## 22696  800446 1
## 22697  800447 1
## 22698  800448 1
## 22699  800449 1
## 22700  800450 1
## 22701  800451 1
## 22702  800452 1
## 22703  800453 1
## 22704  800454 1
## 22705  800455 1
## 22706  800456 1
## 22707  800457 1
## 22708  800459 1
## 22709  800460 1
## 22710  800461 1
## 22711  800462 1
## 22712  800463 1
## 22713  800464 1
## 22714  800465 1
## 22715  800466 1
## 22716  800467 1
## 22717  800468 1
## 22718  800469 1
## 22719  800470 1
## 22720  800471 1
## 22721  800473 1
## 22722  800474 1
## 22723  800475 1
## 22724  800476 1
## 22725  800477 1
## 22726  800478 1
## 22727  800479 1
## 22728  800480 1
## 22729  800481 1
## 22730  800482 1
## 22731  800483 1
## 22732  800484 1
## 22733  800485 1
## 22734  800486 1
## 22735  800487 1
## 22736  800488 1
## 22737  800489 1
## 22738  800490 1
## 22739  800491 1
## 22740  800492 1
## 22741  800493 1
## 22742  800494 1
## 22743  800495 1
## 22744  800496 1
## 22745  800497 1
## 22746  800498 1
## 22747  800499 1
## 22748  800500 1
## 22749  800501 1
## 22750  800502 1
## 22751  800503 1
## 22752  800504 1
## 22753  800505 1
## 22754  800506 1
## 22755  800507 1
## 22756  800508 1
## 22757  800509 1
## 22758  800510 1
## 22759  800511 1
## 22760  800512 1
## 22761  800513 1
## 22762  800514 1
## 22763  800515 1
## 22764  800516 1
## 22765  800517 1
## 22766  800519 1
## 22767  800520 1
## 22768  800521 1
## 22769  800522 1
## 22770  800523 1
## 22771  800524 1
## 22772  800525 1
## 22773  800526 1
## 22774  800527 1
## 22775  800528 1
## 22776  800529 1
## 22777  800530 1
## 22778  800531 1
## 22779  800532 1
## 22780  800533 1
## 22781  800534 1
## 22782  800535 1
## 22783  800536 1
## 22784  800537 1
## 22785  800538 1
## 22786  800539 1
## 22787  800540 1
## 22788  800541 1
## 22789  800542 1
## 22790  800543 1
## 22791  800544 1
## 22792  800545 1
## 22793  800546 1
## 22794  800547 1
## 22795  800548 1
## 22796  800549 1
## 22797  800550 1
## 22798  800551 1
## 22799  800552 1
## 22800  800553 1
## 22801  800554 1
## 22802  800555 1
## 22803  800556 1
## 22804  800557 1
## 22805  800558 1
## 22806  800559 1
## 22807  800560 1
## 22808  800561 1
## 22809  800562 1
## 22810  800563 1
## 22811  800564 1
## 22812  800565 1
## 22813  800566 1
## 22814  800567 1
## 22815  800568 1
## 22816  800569 1
## 22817  800570 1
## 22818  800571 1
## 22819  800572 1
## 22820  800573 1
## 22821  800574 1
## 22822  800575 1
## 22823  800576 1
## 22824  800577 1
## 22825  800578 1
## 22826  800579 1
## 22827  800580 1
## 22828  800581 1
## 22829  800582 1
## 22830  800583 1
## 22831  800584 1
## 22832  800585 1
## 22833  800586 1
## 22834  800587 1
## 22835  800588 1
## 22836  800589 1
## 22837  800590 1
## 22838  800591 1
## 22839  800592 1
## 22840  800593 1
## 22841  800594 1
## 22842  800595 1
## 22843  800596 1
## 22844  800597 1
## 22845  800598 1
## 22846  800599 1
## 22847  800600 1
## 22848  800601 1
## 22849  800602 1
## 22850  800603 1
## 22851  800604 1
## 22852  800605 1
## 22853  800606 1
## 22854  800607 1
## 22855  800608 1
## 22856  800609 1
## 22857  800610 1
## 22858  800611 1
## 22859  800612 1
## 22860  800613 1
## 22861  800614 1
## 22862  800615 1
## 22863  800616 1
## 22864  800617 1
## 22865  800618 1
## 22866  800619 1
## 22867  800620 1
## 22868  800621 1
## 22869  800622 1
## 22870  800623 1
## 22871  800624 1
## 22872  800625 1
## 22873  800626 1
## 22874  800627 1
## 22875  800628 1
## 22876  800629 1
## 22877  800630 1
## 22878  800631 1
## 22879  800632 1
## 22880  800633 1
## 22881  800634 1
## 22882  800635 1
## 22883  800636 1
## 22884  800637 1
## 22885  800638 1
## 22886  800639 1
## 22887  800640 1
## 22888  800641 1
## 22889  800642 1
## 22890  800643 1
## 22891  800644 1
## 22892  800645 1
## 22893  800646 1
## 22894  800647 1
## 22895  800648 1
## 22896  800649 1
## 22897  800650 1
## 22898  800651 1
## 22899  800652 1
## 22900  800653 1
## 22901  800654 1
## 22902  800655 1
## 22903  800656 1
## 22904  800657 1
## 22905  800658 1
## 22906  800659 1
## 22907  800660 1
## 22908  800661 1
## 22909  800662 1
## 22910  800663 1
## 22911  800664 1
## 22912  800665 1
## 22913  800666 1
## 22914  800667 1
## 22915  800668 1
## 22916  800669 1
## 22917  800670 1
## 22918  800671 1
## 22919  800672 1
## 22920  800673 1
## 22921  800674 1
## 22922  800675 1
## 22923  800676 1
## 22924  800677 1
## 22925  800678 1
## 22926  800679 1
## 22927  800680 1
## 22928  800681 1
## 22929  800682 1
## 22930  800683 1
## 22931  800684 1
## 22932  800685 1
## 22933  800686 1
## 22934  800687 1
## 22935  800688 1
## 22936  800689 1
## 22937  800690 1
## 22938  800691 1
## 22939  800692 1
## 22940  800693 1
## 22941  800694 1
## 22942  800695 1
## 22943  800696 1
## 22944  800697 1
## 22945  800698 1
## 22946  800699 1
## 22947  800700 1
## 22948  800701 1
## 22949  800702 1
## 22950  800703 1
## 22951  800704 1
## 22952  800705 1
## 22953  800706 1
## 22954  800707 1
## 22955  800708 1
## 22956  800709 1
## 22957  800710 1
## 22958  800711 1
## 22959  800712 1
## 22960  800713 1
## 22961  800714 1
## 22962  800715 1
## 22963  800716 1
## 22964  800717 1
## 22965  800718 1
## 22966  800719 1
## 22967  800720 1
## 22968  800721 1
## 22969  800722 1
## 22970  800723 1
## 22971  800724 1
## 22972  800725 1
## 22973  800726 1
## 22974  800727 1
## 22975  800728 1
## 22976  800729 1
## 22977  800730 1
## 22978  800731 1
## 22979  800732 1
## 22980  800733 1
## 22981  800734 1
## 22982  800735 1
## 22983  800736 1
## 22984  800737 1
## 22985  800738 1
## 22986  800739 1
## 22987  800740 1
## 22988  800741 1
## 22989  800742 1
## 22990  800743 1
## 22991  800744 1
## 22992  800745 1
## 22993  800746 1
## 22994  800747 1
## 22995  800748 1
## 22996  800749 1
## 22997  800750 1
## 22998  800751 1
## 22999  800752 1
## 23000  800753 1
## 23001  800754 1
## 23002  800755 1
## 23003  800756 1
## 23004  800757 1
## 23005  800758 1
## 23006  800759 1
## 23007  800760 1
## 23008  800761 1
## 23009  800762 1
## 23010  800763 1
## 23011  800764 1
## 23012  800765 1
## 23013  800766 1
## 23014  800767 1
## 23015  800768 1
## 23016  800769 1
## 23017  800770 1
## 23018  800771 1
## 23019  800772 1
## 23020  800773 1
## 23021  800774 1
## 23022  800775 1
## 23023  800776 1
## 23024  800777 1
## 23025  800778 1
## 23026  800779 1
## 23027  800780 1
## 23028  800781 1
## 23029  800782 1
## 23030  800783 1
## 23031  800784 1
## 23032  800785 1
## 23033  800786 1
## 23034  800787 1
## 23035  800788 1
## 23036  800789 1
## 23037  800790 1
## 23038  800791 1
## 23039  800792 1
## 23040  800793 1
## 23041  800794 1
## 23042  800795 1
## 23043  800796 1
## 23044  800797 1
## 23045  800798 1
## 23046  800799 1
## 23047  800800 1
## 23048  800801 1
## 23049  800802 1
## 23050  800803 1
## 23051  800804 1
## 23052  800805 1
## 23053  800806 1
## 23054  800807 1
## 23055  800808 1
## 23056  800809 1
## 23057  800810 1
## 23058  800811 1
## 23059  800813 1
## 23060  800814 1
## 23061  800815 1
## 23062  800816 1
## 23063  800817 1
## 23064  800818 1
## 23065  800819 1
## 23066  800820 1
## 23067  800821 1
## 23068  800822 1
## 23069  800823 1
## 23070  800824 1
## 23071  800825 1
## 23072  800826 1
## 23073  800827 1
## 23074  800828 1
## 23075  800829 1
## 23076  800830 1
## 23077  800831 1
## 23078  800832 1
## 23079  800833 1
## 23080  800834 1
## 23081  800835 1
## 23082  800836 1
## 23083  800837 1
## 23084  800838 1
## 23085  800839 1
## 23086  800840 1
## 23087  800841 1
## 23088  800842 1
## 23089  800843 1
## 23090  800844 1
## 23091  800845 1
## 23092  800846 1
## 23093  800847 1
## 23094  800848 1
## 23095  800849 1
## 23096  800850 1
## 23097  800851 1
## 23098  800852 1
## 23099  800853 1
## 23100  800854 1
## 23101  800855 1
## 23102  800856 1
## 23103  800857 1
## 23104  800858 1
## 23105  800859 1
## 23106  800860 1
## 23107  800861 1
## 23108  800862 1
## 23109  800863 1
## 23110  800864 1
## 23111  800865 1
## 23112  800866 1
## 23113  800867 1
## 23114  800868 1
## 23115  800869 1
## 23116  800870 1
## 23117  800871 1
## 23118  800872 1
## 23119  800873 1
## 23120  800874 1
## 23121  800875 1
## 23122  800876 1
## 23123  800877 1
## 23124  800878 1
## 23125  800879 1
## 23126  800880 1
## 23127  800881 1
## 23128  800882 1
## 23129  800883 1
## 23130  800884 1
## 23131  800885 1
## 23132  800886 1
## 23133  800887 1
## 23134  800888 1
## 23135  800889 1
## 23136  800890 1
## 23137  800891 1
## 23138  800892 1
## 23139  800893 1
## 23140  800894 1
## 23141  800895 1
## 23142  800896 1
## 23143  800897 1
## 23144  800898 1
## 23145  800899 1
## 23146  800900 1
## 23147  800901 1
## 23148  800902 1
## 23149  800903 1
## 23150  800904 1
## 23151  800905 1
## 23152  800906 1
## 23153  800907 1
## 23154  800908 1
## 23155  800909 1
## 23156  800910 1
## 23157  800911 1
## 23158  800912 1
## 23159  800913 1
## 23160  800914 1
## 23161  800915 1
## 23162  800916 1
## 23163  800917 1
## 23164  800918 1
## 23165  800919 1
## 23166  800920 1
## 23167  800921 1
## 23168  800922 1
## 23169  800923 1
## 23170  800924 1
## 23171  800925 1
## 23172  800926 1
## 23173  800927 1
## 23174  800928 1
## 23175  800929 1
## 23176  800930 1
## 23177  800931 1
## 23178  800932 1
## 23179  800933 1
## 23180  800934 1
## 23181  800935 1
## 23182  800936 1
## 23183  800937 1
## 23184  800938 1
## 23185  800939 1
## 23186  800940 1
## 23187  800941 1
## 23188  800942 1
## 23189  800943 1
## 23190  800944 1
## 23191  800945 1
## 23192  800946 1
## 23193  800947 1
## 23194  800948 1
## 23195  800949 1
## 23196  800950 1
## 23197  800951 1
## 23198  800952 1
## 23199  800953 1
## 23200  800954 1
## 23201  800955 1
## 23202  800956 1
## 23203  800957 1
## 23204  800958 1
## 23205  800959 1
## 23206  800960 1
## 23207  800961 1
## 23208  800962 1
## 23209  800963 1
## 23210  800964 1
## 23211  800965 1
## 23212  800966 1
## 23213  800967 1
## 23214  800968 1
## 23215  800969 1
## 23216  800970 1
## 23217  800971 1
## 23218  800972 1
## 23219  800973 1
## 23220  800974 1
## 23221  800975 1
## 23222  800976 1
## 23223  800977 1
## 23224  800978 1
## 23225  800979 1
## 23226  800980 1
## 23227  800981 1
## 23228  800982 1
## 23229  800983 1
## 23230  800984 1
## 23231  800985 1
## 23232  800986 1
## 23233  800987 1
## 23234  800988 1
## 23235  800989 1
## 23236  800990 1
## 23237  800991 1
## 23238  800992 1
## 23239  800993 1
## 23240  800994 1
## 23241  800995 1
## 23242  800996 1
## 23243  800997 1
## 23244  800998 1
## 23245  800999 1
## 23246  801000 1
## 23247  801001 1
## 23248  801002 1
## 23249  801003 1
## 23250  801004 1
## 23251  801005 1
## 23252  801006 1
## 23253  801007 1
## 23254  801008 1
## 23255  801009 1
## 23256  801010 1
## 23257  801013 1
## 23258  801014 1
## 23259  801015 1
## 23260  801016 1
## 23261  801017 1
## 23262  801018 1
## 23263  801019 1
## 23264  801020 1
## 23265  801021 1
## 23266  801022 1
## 23267  801023 1
## 23268  801024 1
## 23269  801025 1
## 23270  801026 1
## 23271  801027 1
## 23272  801028 1
## 23273  801029 1
## 23274  801030 1
## 23275  801031 1
## 23276  801032 1
## 23277  801033 1
## 23278  801034 1
## 23279  801035 1
## 23280  801036 1
## 23281  801037 1
## 23282  801038 1
## 23283  801039 1
## 23284  801040 1
## 23285  801041 1
## 23286  801042 1
## 23287  801043 1
## 23288  801044 1
## 23289  801045 1
## 23290  801046 1
## 23291  801047 1
## 23292  801048 1
## 23293  801049 1
## 23294  801050 1
## 23295  801051 1
## 23296  801052 1
## 23297  801053 1
## 23298  801054 1
## 23299  801055 1
## 23300  801056 1
## 23301  801057 1
## 23302  801058 1
## 23303  801059 1
## 23304  801060 1
## 23305  801061 1
## 23306  801062 1
## 23307  801063 1
## 23308  801064 1
## 23309  801065 1
## 23310  801066 1
## 23311  801067 1
## 23312  801068 1
## 23313  801069 1
## 23314  801070 1
## 23315  801071 1
## 23316  801072 1
## 23317  801073 1
## 23318  801074 1
## 23319  801075 1
## 23320  801076 1
## 23321  801077 1
## 23322  801078 1
## 23323  801079 1
## 23324  801080 1
## 23325  801081 1
## 23326  801082 1
## 23327  801083 1
## 23328  801084 1
## 23329  801085 1
## 23330  801086 1
## 23331  801087 1
## 23332  801088 1
## 23333  801089 1
## 23334  801090 1
## 23335  801091 1
## 23336  801092 1
## 23337  801093 1
## 23338  801094 1
## 23339  801095 1
## 23340  801096 1
## 23341  801097 1
## 23342  801098 1
## 23343  801099 1
## 23344  801100 1
## 23345  801101 1
## 23346  801102 1
## 23347  801103 1
## 23348  801104 1
## 23349  801105 1
## 23350  801106 1
## 23351  801107 1
## 23352  801108 1
## 23353  801109 1
## 23354  801110 1
## 23355  801111 1
## 23356  801112 1
## 23357  801113 1
## 23358  801114 1
## 23359  801115 1
## 23360  801116 1
## 23361  801117 1
## 23362  801118 1
## 23363  801119 1
## 23364  801120 1
## 23365  801121 1
## 23366  801122 1
## 23367  801123 1
## 23368  801124 1
## 23369  801125 1
## 23370  801126 1
## 23371  801127 1
## 23372  801128 1
## 23373  801129 1
## 23374  801130 1
## 23375  801131 1
## 23376  801132 1
## 23377  801133 1
## 23378  801134 1
## 23379  801135 1
## 23380  801136 1
## 23381  801137 1
## 23382  801138 1
## 23383  801139 1
## 23384  801140 1
## 23385  801141 1
## 23386  801142 1
## 23387  801143 1
## 23388  801144 1
## 23389  801145 1
## 23390  801146 1
## 23391  801147 1
## 23392  801148 1
## 23393  801149 1
## 23394  801150 1
## 23395  801151 1
## 23396  801152 1
## 23397  801154 1
## 23398  801155 1
## 23399  801156 1
## 23400  801157 1
## 23401  801158 1
## 23402  801159 1
## 23403  801160 1
## 23404  801161 1
## 23405  801162 1
## 23406  801163 1
## 23407  801164 1
## 23408  801165 1
## 23409  801166 1
## 23410  801167 1
## 23411  801168 1
## 23412  801169 1
## 23413  801170 1
## 23414  801171 1
## 23415  801172 1
## 23416  801173 1
## 23417  801174 1
## 23418  801175 1
## 23419  801176 1
## 23420  801177 1
## 23421  801178 1
## 23422  801179 1
## 23423  801180 1
## 23424  801181 1
## 23425  801182 1
## 23426  801183 1
## 23427  801184 1
## 23428  801185 1
## 23429  801186 1
## 23430  801188 1
## 23431  801189 1
## 23432  801190 1
## 23433  801191 1
## 23434  801192 1
## 23435  801193 1
## 23436  801194 1
## 23437  801195 1
## 23438  801196 1
## 23439  801197 1
## 23440  801198 1
## 23441  801199 1
## 23442  801200 1
## 23443  801201 1
## 23444  801202 1
## 23445  801203 1
## 23446  801204 1
## 23447  801205 1
## 23448  801206 1
## 23449  801207 1
## 23450  801208 1
## 23451  801209 1
## 23452  801210 1
## 23453  801211 1
## 23454  801212 1
## 23455  801213 1
## 23456  801214 1
## 23457  801215 1
## 23458  801216 1
## 23459  801217 1
## 23460  801218 1
## 23461  801219 1
## 23462  801220 1
## 23463  801221 1
## 23464  801222 1
## 23465  801223 1
## 23466  801224 1
## 23467  801225 1
## 23468  801226 1
## 23469  801227 1
## 23470  801228 1
## 23471  801229 1
## 23472  801230 1
## 23473  801231 1
## 23474  801232 1
## 23475  801233 1
## 23476  801234 1
## 23477  801235 1
## 23478  801236 1
## 23479  801237 1
## 23480  801238 1
## 23481  801239 1
## 23482  801240 1
## 23483  801241 1
## 23484  801242 1
## 23485  801243 1
## 23486  801244 1
## 23487  801245 1
## 23488  801246 1
## 23489  801247 1
## 23490  801248 1
## 23491  801249 1
## 23492  801250 1
## 23493  801251 1
## 23494  801252 1
## 23495  801253 1
## 23496  801254 1
## 23497  801255 1
## 23498  801256 1
## 23499  801257 1
## 23500  801258 1
## 23501  801259 1
## 23502  801260 1
## 23503  801261 1
## 23504  801262 1
## 23505  801263 1
## 23506  801264 1
## 23507  801265 1
## 23508  801266 1
## 23509  801267 1
## 23510  801268 1
## 23511  801269 1
## 23512  801270 1
## 23513  801271 1
## 23514  801272 1
## 23515  801273 1
## 23516  801274 1
## 23517  801275 1
## 23518  801276 1
## 23519  801277 1
## 23520  801278 1
## 23521  801279 1
## 23522  801280 1
## 23523  801281 1
## 23524  801282 1
## 23525  801283 1
## 23526  801284 1
## 23527  801285 1
## 23528  801286 1
## 23529  801287 1
## 23530  801288 1
## 23531  801289 1
## 23532  801290 1
## 23533  801291 1
## 23534  801292 1
## 23535  801293 1
## 23536  801294 1
## 23537  801295 1
## 23538  801296 1
## 23539  801297 1
## 23540  801298 1
## 23541  801299 1
## 23542  801300 1
## 23543  801301 1
## 23544  801302 1
## 23545  801303 1
## 23546  801304 1
## 23547  801305 1
## 23548  801306 1
## 23549  801307 1
## 23550  801308 1
## 23551  801309 1
## 23552  801310 1
## 23553  801311 1
## 23554  801312 1
## 23555  801313 1
## 23556  801314 1
## 23557  801315 1
## 23558  801316 1
## 23559  801317 1
## 23560  801318 1
## 23561  801319 1
## 23562  801320 1
## 23563  801321 1
## 23564  801322 1
## 23565  801323 1
## 23566  801324 1
## 23567  801325 1
## 23568  801326 1
## 23569  801327 1
## 23570  801328 1
## 23571  801329 1
## 23572  801330 1
## 23573  801331 1
## 23574  801332 1
## 23575  801333 1
## 23576  801334 1
## 23577  801335 1
## 23578  801336 1
## 23579  801337 1
## 23580  801338 1
## 23581  801339 1
## 23582  801340 1
## 23583  801341 1
## 23584  801342 1
## 23585  801343 1
## 23586  801344 1
## 23587  801345 1
## 23588  801346 1
## 23589  801347 1
## 23590  801348 1
## 23591  801349 1
## 23592  801350 1
## 23593  801351 1
## 23594  801352 1
## 23595  801353 1
## 23596  801354 1
## 23597  801355 1
## 23598  801356 1
## 23599  801357 1
## 23600  801358 1
## 23601  801359 1
## 23602  801360 1
## 23603  801361 1
## 23604  801362 1
## 23605  801363 1
## 23606  801364 1
## 23607  801365 1
## 23608  801366 1
## 23609  801367 1
## 23610  801368 1
## 23611  801369 1
## 23612  801370 1
## 23613  801371 1
## 23614  801372 1
## 23615  801373 1
## 23616  801374 1
## 23617  801375 1
## 23618  801376 1
## 23619  801377 1
## 23620  801378 1
## 23621  801379 1
## 23622  801380 1
## 23623  801381 1
## 23624  801382 1
## 23625  801383 1
## 23626  801384 1
## 23627  801385 1
## 23628  801386 1
## 23629  801387 1
## 23630  801388 1
## 23631  801389 1
## 23632  801390 1
## 23633  801391 1
## 23634  801392 1
## 23635  801393 1
## 23636  801394 1
## 23637  801395 1
## 23638  801396 1
## 23639  801397 1
## 23640  801398 1
## 23641  801399 1
## 23642  801400 1
## 23643  801401 1
## 23644  801402 1
## 23645  801403 1
## 23646  801404 1
## 23647  801405 1
## 23648  801406 1
## 23649  801407 1
## 23650  801408 1
## 23651  801409 1
## 23652  801410 1
## 23653  801411 1
## 23654  801412 1
## 23655  801413 1
## 23656  801414 1
## 23657  801415 1
## 23658  801416 1
## 23659  801417 1
## 23660  801418 1
## 23661  801419 1
## 23662  801420 1
## 23663  801421 1
## 23664  801422 1
## 23665  801423 1
## 23666  801424 1
## 23667  801425 1
## 23668  801426 1
## 23669  801427 1
## 23670  801428 1
## 23671  801429 1
## 23672  801430 1
## 23673  801431 1
## 23674  801432 1
## 23675  801433 1
## 23676  801434 1
## 23677  801435 1
## 23678  801436 1
## 23679  801437 1
## 23680  801438 1
## 23681  801439 1
## 23682  801440 1
## 23683  801441 1
## 23684  801442 1
## 23685  801443 1
## 23686  801444 1
## 23687  801445 1
## 23688  801446 1
## 23689  801447 1
## 23690  801448 1
## 23691  801449 1
## 23692  801450 1
## 23693  801451 1
## 23694  801452 1
## 23695  801453 1
## 23696  801454 1
## 23697  801455 1
## 23698  801456 1
## 23699  801457 1
## 23700  801458 1
## 23701  801459 1
## 23702  801460 1
## 23703  801461 1
## 23704  801462 1
## 23705  801463 1
## 23706  801464 1
## 23707  801465 1
## 23708  801466 1
## 23709  801467 1
## 23710  801468 1
## 23711  801469 1
## 23712  801470 1
## 23713  801471 1
## 23714  801472 1
## 23715  801473 1
## 23716  801474 1
## 23717  801475 1
## 23718  801476 1
## 23719  801477 1
## 23720  801478 1
## 23721  801479 1
## 23722  801480 1
## 23723  801481 1
## 23724  801482 1
## 23725  801483 1
## 23726  801484 1
## 23727  801485 1
## 23728  801486 1
## 23729  801487 1
## 23730  801488 1
## 23731  801489 1
## 23732  801490 1
## 23733  801491 1
## 23734  801492 1
## 23735  801493 1
## 23736  801494 1
## 23737  801495 1
## 23738  801496 1
## 23739  801497 1
## 23740  801498 1
## 23741  801499 1
## 23742  801500 1
## 23743  801501 1
## 23744  801502 1
## 23745  801503 1
## 23746  801504 1
## 23747  801505 1
## 23748  801506 1
## 23749  801507 1
## 23750  801508 1
## 23751  801509 1
## 23752  801510 1
## 23753  801511 1
## 23754  801512 1
## 23755  801513 1
## 23756  801514 1
## 23757  801515 1
## 23758  801516 1
## 23759  801517 1
## 23760  801518 1
## 23761  801519 1
## 23762  801520 1
## 23763  801521 1
## 23764  801522 1
## 23765  801523 1
## 23766  801524 1
## 23767  801525 1
## 23768  801526 1
## 23769  801527 1
## 23770  801528 1
## 23771  801529 1
## 23772  801530 1
## 23773  801531 1
## 23774  801532 1
## 23775  801533 1
## 23776  801534 1
## 23777  801535 1
## 23778  801536 1
## 23779  801537 1
## 23780  801538 1
## 23781  801539 1
## 23782  801540 1
## 23783  801541 1
## 23784  801542 1
## 23785  801543 1
## 23786  801544 1
## 23787  801545 1
## 23788  801546 1
## 23789  801547 1
## 23790  801548 1
## 23791  801549 1
## 23792  801550 1
## 23793  801551 1
## 23794  801552 1
## 23795  801553 1
## 23796  801554 1
## 23797  801555 1
## 23798  801556 1
## 23799  801557 1
## 23800  801558 1
## 23801  801559 1
## 23802  801561 1
## 23803  801562 1
## 23804  801563 1
## 23805  801564 1
## 23806  801565 1
## 23807  801566 1
## 23808  801567 1
## 23809  801568 1
## 23810  801569 1
## 23811  801570 1
## 23812  801571 1
## 23813  801572 1
## 23814  801573 1
## 23815  801574 1
## 23816  801575 1
## 23817  801576 1
## 23818  801577 1
## 23819  801578 1
## 23820  801579 1
## 23821  801580 1
## 23822  801581 1
## 23823  801582 1
## 23824  801583 1
## 23825  801584 1
## 23826  801585 1
## 23827  801586 1
## 23828  801587 1
## 23829  801588 1
## 23830  801589 1
## 23831  801590 1
## 23832  801591 1
## 23833  801592 1
## 23834  801593 1
## 23835  801594 1
## 23836  801595 1
## 23837  801596 1
## 23838  801597 1
## 23839  801598 1
## 23840  801599 1
## 23841  801600 1
## 23842  801601 1
## 23843  801602 1
## 23844  801603 1
## 23845  801604 1
## 23846  801605 1
## 23847  801606 1
## 23848  801607 1
## 23849  801608 1
## 23850  801609 1
## 23851  801610 1
## 23852  801611 1
## 23853  801612 1
## 23854  801613 1
## 23855  801614 1
## 23856  801615 1
## 23857  801616 1
## 23858  801617 1
## 23859  801618 1
## 23860  801619 1
## 23861  801620 1
## 23862  801621 1
## 23863  801622 1
## 23864  801623 1
## 23865  801624 1
## 23866  801625 1
## 23867  801626 1
## 23868  801627 1
## 23869  801628 1
## 23870  801629 1
## 23871  801630 1
## 23872  801631 1
## 23873  801632 1
## 23874  801633 1
## 23875  801634 1
## 23876  801635 1
## 23877  801636 1
## 23878  801637 1
## 23879  801638 1
## 23880  801639 1
## 23881  801640 1
## 23882  801641 1
## 23883  801642 1
## 23884  801643 1
## 23885  801644 1
## 23886  801645 1
## 23887  801646 1
## 23888  801647 1
## 23889  801648 1
## 23890  801649 1
## 23891  801650 1
## 23892  801651 1
## 23893  801652 1
## 23894  801653 1
## 23895  801655 1
## 23896  801656 1
## 23897  801657 1
## 23898  801658 1
## 23899  801659 1
## 23900  801660 1
## 23901  801661 1
## 23902  801662 1
## 23903  801663 1
## 23904  801664 1
## 23905  801665 1
## 23906  801666 1
## 23907  801667 1
## 23908  801668 1
## 23909  801669 1
## 23910  801670 1
## 23911  801671 1
## 23912  801672 1
## 23913  801673 1
## 23914  801674 1
## 23915  801675 1
## 23916  801676 1
## 23917  801677 1
## 23918  801678 1
## 23919  801679 1
## 23920  801680 1
## 23921  801681 1
## 23922  801682 1
## 23923  801683 1
## 23924  801684 1
## 23925  801685 1
## 23926  801686 1
## 23927  801687 1
## 23928  801688 1
## 23929  801689 1
## 23930  801690 1
## 23931  801691 1
## 23932  801692 1
## 23933  801693 1
## 23934  801694 1
## 23935  801695 1
## 23936  801696 1
## 23937  801697 1
## 23938  801698 1
## 23939  801699 1
## 23940  801700 1
## 23941  801701 1
## 23942  801702 1
## 23943  801703 1
## 23944  801704 1
## 23945  801705 1
## 23946  801706 1
## 23947  801707 1
## 23948  801708 1
## 23949  801709 1
## 23950  801710 1
## 23951  801711 1
## 23952  801712 1
## 23953  801713 1
## 23954  801714 1
## 23955  801715 1
## 23956  801716 1
## 23957  801717 1
## 23958  801718 1
## 23959  801719 1
## 23960  801720 1
## 23961  801721 1
## 23962  801722 1
## 23963  801723 1
## 23964  801724 1
## 23965  801725 1
## 23966  801726 1
## 23967  801727 1
## 23968  801728 1
## 23969  801729 1
## 23970  801730 1
## 23971  801731 1
## 23972  801732 1
## 23973  801733 1
## 23974  801734 1
## 23975  801735 1
## 23976  801736 1
## 23977  801737 1
## 23978  801738 1
## 23979  801739 1
## 23980  801740 1
## 23981  801741 1
## 23982  801742 1
## 23983  801743 1
## 23984  801744 1
## 23985  801745 1
## 23986  801746 1
## 23987  801747 1
## 23988  801748 1
## 23989  801749 1
## 23990  801750 1
## 23991  801751 1
## 23992  801752 1
## 23993  801753 1
## 23994  801754 1
## 23995  801755 1
## 23996  801756 1
## 23997  801757 1
## 23998  801758 1
## 23999  801759 1
## 24000  801760 1
## 24001  801761 1
## 24002  801762 1
## 24003  801763 1
## 24004  801764 1
## 24005  801765 1
## 24006  801766 1
## 24007  801767 1
## 24008  801768 1
## 24009  801770 1
## 24010  801771 1
## 24011  801772 1
## 24012  801773 1
## 24013  801774 1
## 24014  801775 1
## 24015  801776 1
## 24016  801777 1
## 24017  801778 1
## 24018  801779 1
## 24019  801780 1
## 24020  801781 1
## 24021  801782 1
## 24022  801783 1
## 24023  801784 1
## 24024  801785 1
## 24025  801786 1
## 24026  801787 1
## 24027  801788 1
## 24028  801789 1
## 24029  801790 1
## 24030  801791 1
## 24031  801792 1
## 24032  801793 1
## 24033  801794 1
## 24034  801795 1
## 24035  801796 1
## 24036  801797 1
## 24037  801798 1
## 24038  801799 1
## 24039  801800 1
## 24040  801801 1
## 24041  801802 1
## 24042  801803 1
## 24043  801804 1
## 24044  801805 1
## 24045  801806 1
## 24046  801807 1
## 24047  801808 1
## 24048  801809 1
## 24049  801810 1
## 24050  801811 1
## 24051  801812 1
## 24052  801813 1
## 24053  801814 1
## 24054  801815 1
## 24055  801816 1
## 24056  801817 1
## 24057  801818 1
## 24058  801819 1
## 24059  801820 1
## 24060  801821 1
## 24061  801822 1
## 24062  801823 1
## 24063  801824 1
## 24064  801825 1
## 24065  801826 1
## 24066  801827 1
## 24067  801828 1
## 24068  801829 1
## 24069  801830 1
## 24070  801831 1
## 24071  801832 1
## 24072  801833 1
## 24073  801834 1
## 24074  801835 1
## 24075  801836 1
## 24076  801837 1
## 24077  801838 1
## 24078  801839 1
## 24079  801840 1
## 24080  801841 1
## 24081  801842 1
## 24082  801843 1
## 24083  801844 1
## 24084  801845 1
## 24085  801846 1
## 24086  801847 1
## 24087  801848 1
## 24088  801849 1
## 24089  801850 1
## 24090  801851 1
## 24091  801852 1
## 24092  801853 1
## 24093  801854 1
## 24094  801855 1
## 24095  801856 1
## 24096  801857 1
## 24097  801858 1
## 24098  801859 1
## 24099  801860 1
## 24100  801861 1
## 24101  801862 1
## 24102  801863 1
## 24103  801864 1
## 24104  801865 1
## 24105  801866 1
## 24106  801867 1
## 24107  801868 1
## 24108  801869 1
## 24109  801870 1
## 24110  801871 1
## 24111  801872 1
## 24112  801873 1
## 24113  801874 1
## 24114  801875 1
## 24115  801876 1
## 24116  801877 1
## 24117  801878 1
## 24118  801879 1
## 24119  801880 1
## 24120  801881 1
## 24121  801882 1
## 24122  801883 1
## 24123  801884 1
## 24124  801885 1
## 24125  801886 1
## 24126  801887 1
## 24127  801888 1
## 24128  801889 1
## 24129  801890 1
## 24130  801892 1
## 24131  801893 1
## 24132  801894 1
## 24133  801895 1
## 24134  801896 1
## 24135  801897 1
## 24136  801898 1
## 24137  801899 1
## 24138  801900 1
## 24139  801901 1
## 24140  801902 1
## 24141  801903 1
## 24142  801904 1
## 24143  801905 1
## 24144  801906 1
## 24145  801907 1
## 24146  801908 1
## 24147  801909 1
## 24148  801910 1
## 24149  801911 1
## 24150  801912 1
## 24151  801913 1
## 24152  801914 1
## 24153  801915 1
## 24154  801916 1
## 24155  801917 1
## 24156  801918 1
## 24157  801919 1
## 24158  801920 1
## 24159  801921 1
## 24160  801922 1
## 24161  801923 1
## 24162  801924 1
## 24163  801925 1
## 24164  801926 1
## 24165  801927 1
## 24166  801928 1
## 24167  801929 1
## 24168  801930 1
## 24169  801931 1
## 24170  801932 1
## 24171  801933 1
## 24172  801934 1
## 24173  801935 1
## 24174  801936 1
## 24175  801937 1
## 24176  801938 1
## 24177  801939 1
## 24178  801940 1
## 24179  801941 1
## 24180  801942 1
## 24181  801943 1
## 24182  801944 1
## 24183  801945 1
## 24184  801946 1
## 24185  801947 1
## 24186  801948 1
## 24187  801949 1
## 24188  801950 1
## 24189  801951 1
## 24190  801952 1
## 24191  801953 1
## 24192  801954 1
## 24193  801955 1
## 24194  801956 1
## 24195  801957 1
## 24196  801958 1
## 24197  801959 1
## 24198  801960 1
## 24199  801961 1
## 24200  801962 1
## 24201  801963 1
## 24202  801964 1
## 24203  801965 1
## 24204  801966 1
## 24205  801967 1
## 24206  801968 1
## 24207  801969 1
## 24208  801970 1
## 24209  801971 1
## 24210  801972 1
## 24211  801973 1
## 24212  801974 1
## 24213  801975 1
## 24214  801976 1
## 24215  801977 1
## 24216  801978 1
## 24217  801979 1
## 24218  801980 1
## 24219  801981 1
## 24220  801982 1
## 24221  801983 1
## 24222  801984 1
## 24223  801985 1
## 24224  801986 1
## 24225  801987 1
## 24226  801988 1
## 24227  801989 1
## 24228  801990 1
## 24229  801991 1
## 24230  801992 1
## 24231  801993 1
## 24232  801994 1
## 24233  801995 1
## 24234  801996 1
## 24235  801997 1
## 24236  801998 1
## 24237  801999 1
## 24238  802000 1
## 24239  802001 1
## 24240  802002 1
## 24241  802003 1
## 24242  802004 1
## 24243  802005 1
## 24244  802006 1
## 24245  802007 1
## 24246  802008 1
## 24247  802009 1
## 24248  802010 1
## 24249  802011 1
## 24250  802012 1
## 24251  802013 1
## 24252  802014 1
## 24253  802015 1
## 24254  802016 1
## 24255  802017 1
## 24256  802018 1
## 24257  802019 1
## 24258  802020 1
## 24259  802021 1
## 24260  802022 1
## 24261  802023 1
## 24262  802024 1
## 24263  802025 1
## 24264  802026 1
## 24265  802027 1
## 24266  802028 1
## 24267  802029 1
## 24268  802030 1
## 24269  802031 1
## 24270  802032 1
## 24271  802033 1
## 24272  802034 1
## 24273  802035 1
## 24274  802036 1
## 24275  802037 1
## 24276  802038 1
## 24277  802039 1
## 24278  802040 1
## 24279  802041 1
## 24280  802042 1
## 24281  802043 1
## 24282  802044 1
## 24283  802045 1
## 24284  802046 1
## 24285  802047 1
## 24286  802048 1
## 24287  802049 1
## 24288  802050 1
## 24289  802051 1
## 24290  802052 1
## 24291  802053 1
## 24292  802054 1
## 24293  802055 1
## 24294  802056 1
## 24295  802057 1
## 24296  802058 1
## 24297  802059 1
## 24298  802060 1
## 24299  802061 1
## 24300  802062 1
## 24301  802063 1
## 24302  802064 1
## 24303  802065 1
## 24304  802066 1
## 24305  802067 1
## 24306  802068 1
## 24307  802069 1
## 24308  802070 1
## 24309  802071 1
## 24310  802072 1
## 24311  802073 1
## 24312  802074 1
## 24313  802075 1
## 24314  802076 1
## 24315  802077 1
## 24316  802078 1
## 24317  802079 1
## 24318  802080 1
## 24319  802081 1
## 24320  802082 1
## 24321  802083 1
## 24322  802084 1
## 24323  802086 1
## 24324  802087 1
## 24325  802088 1
## 24326  802089 1
## 24327  802090 1
## 24328  802091 1
## 24329  802092 1
## 24330  802093 1
## 24331  802094 1
## 24332  802095 1
## 24333  802096 1
## 24334  802097 1
## 24335  802098 1
## 24336  802099 1
## 24337  802100 1
## 24338  802101 1
## 24339  802102 1
## 24340  802103 1
## 24341  802104 1
## 24342  802105 1
## 24343  802106 1
## 24344  802107 1
## 24345  802108 1
## 24346  802109 1
## 24347  802110 1
## 24348  802111 1
## 24349  802112 1
## 24350  802113 1
## 24351  802114 1
## 24352  802115 1
## 24353  802116 1
## 24354  802117 1
## 24355  802118 1
## 24356  802119 1
## 24357  802120 1
## 24358  802121 1
## 24359  802122 1
## 24360  802123 1
## 24361  802124 1
## 24362  802125 1
## 24363  802126 1
## 24364  802127 1
## 24365  802128 1
## 24366  802129 1
## 24367  802130 1
## 24368  802131 1
## 24369  802132 1
## 24370  802133 1
## 24371  802134 1
## 24372  802135 1
## 24373  802136 1
## 24374  802137 1
## 24375  802138 1
## 24376  802139 1
## 24377  802140 1
## 24378  802141 1
## 24379  802142 1
## 24380  802143 1
## 24381  802144 1
## 24382  802145 1
## 24383  802146 1
## 24384  802147 1
## 24385  802148 1
## 24386  802149 1
## 24387  802150 1
## 24388  802151 1
## 24389  802152 1
## 24390  802153 1
## 24391  802154 1
## 24392  802155 1
## 24393  802156 1
## 24394  802157 1
## 24395  802158 1
## 24396  802159 1
## 24397  802160 1
## 24398  802161 1
## 24399  802162 1
## 24400  802163 1
## 24401  802164 1
## 24402  802165 1
## 24403  802166 1
## 24404  802167 1
## 24405  802168 1
## 24406  802169 1
## 24407  802170 1
## 24408  802171 1
## 24409  802172 1
## 24410  802173 1
## 24411  802174 1
## 24412  802175 1
## 24413  802176 1
## 24414  802177 1
## 24415  802178 1
## 24416  802179 1
## 24417  802180 1
## 24418  802181 1
## 24419  802182 1
## 24420  802183 1
## 24421  802185 1
## 24422  802186 1
## 24423  802187 1
## 24424  802188 1
## 24425  802189 1
## 24426  802190 1
## 24427  802191 1
## 24428  802192 1
## 24429  802193 1
## 24430  802194 1
## 24431  802195 1
## 24432  802196 1
## 24433  802197 1
## 24434  802198 1
## 24435  802199 1
## 24436  802200 1
## 24437  802201 1
## 24438  802202 1
## 24439  802203 1
## 24440  802204 1
## 24441  802205 1
## 24442  802206 1
## 24443  802207 1
## 24444  802208 1
## 24445  802209 1
## 24446  802210 1
## 24447  802211 1
## 24448  802212 1
## 24449  802213 1
## 24450  802214 1
## 24451  802215 1
## 24452  802216 1
## 24453  802217 1
## 24454  802218 1
## 24455  802219 1
## 24456  802220 1
## 24457  802221 1
## 24458  802222 1
## 24459  802223 1
## 24460  802224 1
## 24461  802225 1
## 24462  802226 1
## 24463  802227 1
## 24464  802228 1
## 24465  802229 1
## 24466  802230 1
## 24467  802231 1
## 24468  802232 1
## 24469  802233 1
## 24470  802234 1
## 24471  802235 1
## 24472  802236 1
## 24473  802237 1
## 24474  802238 1
## 24475  802239 1
## 24476  802240 1
## 24477  802241 1
## 24478  802242 1
## 24479  802243 1
## 24480  802244 1
## 24481  802245 1
## 24482  802246 1
## 24483  802247 1
## 24484  802248 1
## 24485  802249 1
## 24486  802250 1
## 24487  802251 1
## 24488  802252 1
## 24489  802253 1
## 24490  802254 1
## 24491  802255 1
## 24492  802256 1
## 24493  802257 1
## 24494  802258 1
## 24495  802259 1
## 24496  802260 1
## 24497  802261 1
## 24498  802262 1
## 24499  802263 1
## 24500  802264 1
## 24501  802265 1
## 24502  802266 1
## 24503  802267 1
## 24504  802268 1
## 24505  802269 1
## 24506  802271 1
## 24507  802272 1
## 24508  802273 1
## 24509  802274 1
## 24510  802275 1
## 24511  802276 1
## 24512  802277 1
## 24513  802278 1
## 24514  802279 1
## 24515  802280 1
## 24516  802281 1
## 24517  802282 1
## 24518  802283 1
## 24519  802284 1
## 24520  802285 1
## 24521  802286 1
## 24522  802287 1
## 24523  802288 1
## 24524  802289 1
## 24525  802290 1
## 24526  802291 1
## 24527  802292 1
## 24528  802293 1
## 24529  802294 1
## 24530  802295 1
## 24531  802296 1
## 24532  802297 1
## 24533  802298 1
## 24534  802299 1
## 24535  802300 1
## 24536  802301 1
## 24537  802302 1
## 24538  802303 1
## 24539  802304 1
## 24540  802305 1
## 24541  802306 1
## 24542  802307 1
## 24543  802308 1
## 24544  802309 1
## 24545  802310 1
## 24546  802311 1
## 24547  802312 1
## 24548  802313 1
## 24549  802314 1
## 24550  802315 1
## 24551  802316 1
## 24552  802317 1
## 24553  802318 1
## 24554  802319 1
## 24555  802320 1
## 24556  802321 1
## 24557  802322 1
## 24558  802323 1
## 24559  802324 1
## 24560  802325 1
## 24561  802326 1
## 24562  802327 1
## 24563  802328 1
## 24564  802329 1
## 24565  802330 1
## 24566  802331 1
## 24567  802332 1
## 24568  802333 1
## 24569  802334 1
## 24570  802335 1
## 24571  802336 1
## 24572  802337 1
## 24573  802338 1
## 24574  802339 1
## 24575  802340 1
## 24576  802341 1
## 24577  802342 1
## 24578  802343 1
## 24579  802344 1
## 24580  802345 1
## 24581  802346 1
## 24582  802347 1
## 24583  802348 1
## 24584  802349 1
## 24585  802350 1
## 24586  802351 1
## 24587  802352 1
## 24588  802353 1
## 24589  802354 1
## 24590  802355 1
## 24591  802356 1
## 24592  802357 1
## 24593  802358 1
## 24594  802359 1
## 24595  802360 1
## 24596  802361 1
## 24597  802362 1
## 24598  802363 1
## 24599  802364 1
## 24600  802365 1
## 24601  802366 1
## 24602  802367 1
## 24603  802368 1
## 24604  802369 1
## 24605  802370 1
## 24606  802371 1
## 24607  802372 1
## 24608  802373 1
## 24609  802374 1
## 24610  802375 1
## 24611  802376 1
## 24612  802377 1
## 24613  802378 1
## 24614  802379 1
## 24615  802380 1
## 24616  802381 1
## 24617  802382 1
## 24618  802383 1
## 24619  802384 1
## 24620  802385 1
## 24621  802386 1
## 24622  802387 1
## 24623  802388 1
## 24624  802389 1
## 24625  802390 1
## 24626  802391 1
## 24627  802392 1
## 24628  802393 1
## 24629  802394 1
## 24630  802395 1
## 24631  802396 1
## 24632  802397 1
## 24633  802398 1
## 24634  802399 1
## 24635  802400 1
## 24636  802401 1
## 24637  802402 1
## 24638  802403 1
## 24639  802404 1
## 24640  802405 1
## 24641  802406 1
## 24642  802407 1
## 24643  802408 1
## 24644  802409 1
## 24645  802410 1
## 24646  802411 1
## 24647  802412 1
## 24648  802413 1
## 24649  802414 1
## 24650  802415 1
## 24651  802416 1
## 24652  802417 1
## 24653  802418 1
## 24654  802419 1
## 24655  802420 1
## 24656  802421 1
## 24657  802422 1
## 24658  802423 1
## 24659  802424 1
## 24660  802425 1
## 24661  802426 1
## 24662  802427 1
## 24663  802428 1
## 24664  802429 1
## 24665  802430 1
## 24666  802431 1
## 24667  802432 1
## 24668  802433 1
## 24669  802434 1
## 24670  802435 1
## 24671  802436 1
## 24672  802437 1
## 24673  802438 1
## 24674  802439 1
## 24675  802440 1
## 24676  802441 1
## 24677  802442 1
## 24678  802443 1
## 24679  802444 1
## 24680  802445 1
## 24681  802446 1
## 24682  802447 1
## 24683  802448 1
## 24684  802449 1
## 24685  802450 1
## 24686  802451 1
## 24687  802452 1
## 24688  802453 1
## 24689  802454 1
## 24690  802455 1
## 24691  802456 1
## 24692  802457 1
## 24693  802458 1
## 24694  802459 1
## 24695  802460 1
## 24696  802461 1
## 24697  802462 1
## 24698  802463 1
## 24699  802464 1
## 24700  802465 1
## 24701  802467 1
## 24702  802468 1
## 24703  802469 1
## 24704  802470 1
## 24705  802471 1
## 24706  802473 1
## 24707  802474 1
## 24708  802475 1
## 24709  802476 1
## 24710  802477 1
## 24711  802478 1
## 24712  802479 1
## 24713  802480 1
## 24714  802481 1
## 24715  802482 1
## 24716  802483 1
## 24717  802484 1
## 24718  802485 1
## 24719  802486 1
## 24720  802487 1
## 24721  802488 1
## 24722  802489 1
## 24723  802490 1
## 24724  802491 1
## 24725  802492 1
## 24726  802493 1
## 24727  802494 1
## 24728  802495 1
## 24729  802496 1
## 24730  802497 1
## 24731  802498 1
## 24732  802499 1
## 24733  802500 1
## 24734  802501 1
## 24735  802502 1
## 24736  802503 1
## 24737  802504 1
## 24738  802505 1
## 24739  802506 1
## 24740  802507 1
## 24741  802508 1
## 24742  802509 1
## 24743  802510 1
## 24744  802511 1
## 24745  802512 1
## 24746  802513 1
## 24747  802514 1
## 24748  802515 1
## 24749  802516 1
## 24750  802517 1
## 24751  802518 1
## 24752  802519 1
## 24753  802520 1
## 24754  802521 1
## 24755  802522 1
## 24756  802523 1
## 24757  802524 1
## 24758  802525 1
## 24759  802526 1
## 24760  802527 1
## 24761  802528 1
## 24762  802529 1
## 24763  802530 1
## 24764  802531 1
## 24765  802532 1
## 24766  802533 1
## 24767  802534 1
## 24768  802535 1
## 24769  802536 1
## 24770  802537 1
## 24771  802538 1
## 24772  802539 1
## 24773  802540 1
## 24774  802541 1
## 24775  802542 1
## 24776  802543 1
## 24777  802544 1
## 24778  802545 1
## 24779  802546 1
## 24780  802547 1
## 24781  802548 1
## 24782  802549 1
## 24783  802550 1
## 24784  802551 1
## 24785  802552 1
## 24786  802553 1
## 24787  802554 1
## 24788  802555 1
## 24789  802556 1
## 24790  802557 1
## 24791  802558 1
## 24792  802559 1
## 24793  802560 1
## 24794  802561 1
## 24795  802562 1
## 24796  802563 1
## 24797  802564 1
## 24798  802565 1
## 24799  802566 1
## 24800  802567 1
## 24801  802568 1
## 24802  802569 1
## 24803  802570 1
## 24804  802571 1
## 24805  802572 1
## 24806  802573 1
## 24807  802574 1
## 24808  802575 1
## 24809  802576 1
## 24810  802577 1
## 24811  802578 1
## 24812  802579 1
## 24813  802580 1
## 24814  802581 1
## 24815  802582 1
## 24816  802583 1
## 24817  802584 1
## 24818  802585 1
## 24819  802586 1
## 24820  802587 1
## 24821  802588 1
## 24822  802589 1
## 24823  802590 1
## 24824  802591 1
## 24825  802592 1
## 24826  802593 1
## 24827  802594 1
## 24828  802595 1
## 24829  802596 1
## 24830  802597 1
## 24831  802598 1
## 24832  802599 1
## 24833  802600 1
## 24834  802601 1
## 24835  802602 1
## 24836  802603 1
## 24837  802604 1
## 24838  802605 1
## 24839  802606 1
## 24840  802607 1
## 24841  802608 1
## 24842  802609 1
## 24843  802610 1
## 24844  802611 1
## 24845  802612 1
## 24846  802613 1
## 24847  802614 1
## 24848  802615 1
## 24849  802616 1
## 24850  802617 1
## 24851  802618 1
## 24852  802619 1
## 24853  802620 1
## 24854  802621 1
## 24855  802622 1
## 24856  802623 1
## 24857  802624 1
## 24858  802625 1
## 24859  802626 1
## 24860  802627 1
## 24861  802628 1
## 24862  802629 1
## 24863  802630 1
## 24864  802631 1
## 24865  802632 1
## 24866  802633 1
## 24867  802634 1
## 24868  802635 1
## 24869  802636 1
## 24870  802637 1
## 24871  802638 1
## 24872  802639 1
## 24873  802640 1
## 24874  802641 1
## 24875  802642 1
## 24876  802643 1
## 24877  802644 1
## 24878  802645 1
## 24879  802646 1
## 24880  802647 1
## 24881  802648 1
## 24882  802649 1
## 24883  802650 1
## 24884  802651 1
## 24885  802652 1
## 24886  802653 1
## 24887  802654 1
## 24888  802655 1
## 24889  802656 1
## 24890  802657 1
## 24891  802658 1
## 24892  802659 1
## 24893  802660 1
## 24894  802661 1
## 24895  802662 1
## 24896  802663 1
## 24897  802664 1
## 24898  802665 1
## 24899  802666 1
## 24900  802667 1
## 24901  802668 1
## 24902  802669 1
## 24903  802670 1
## 24904  802671 1
## 24905  802672 1
## 24906  802673 1
## 24907  802674 1
## 24908  802675 1
## 24909  802676 1
## 24910  802677 1
## 24911  802678 1
## 24912  802679 1
## 24913  802680 1
## 24914  802681 1
## 24915  802682 1
## 24916  802683 1
## 24917  802684 1
## 24918  802685 1
## 24919  802686 1
## 24920  802687 1
## 24921  802688 1
## 24922  802689 1
## 24923  802690 1
## 24924  802691 1
## 24925  802692 1
## 24926  802693 1
## 24927  802694 1
## 24928  802695 1
## 24929  802696 1
## 24930  802697 1
## 24931  802698 1
## 24932  802699 1
## 24933  802701 1
## 24934  802702 1
## 24935  802703 1
## 24936  802704 1
## 24937  802705 1
## 24938  802706 1
## 24939  802707 1
## 24940  802708 1
## 24941  802709 1
## 24942  802710 1
## 24943  802711 1
## 24944  802712 1
## 24945  802713 1
## 24946  802714 1
## 24947  802715 1
## 24948  802716 1
## 24949  802717 1
## 24950  802718 1
## 24951  802719 1
## 24952  802720 1
## 24953  802721 1
## 24954  802722 1
## 24955  802723 1
## 24956  802724 1
## 24957  802725 1
## 24958  802726 1
## 24959  802727 1
## 24960  802728 1
## 24961  802729 1
## 24962  802730 1
## 24963  802731 1
## 24964  802732 1
## 24965  802733 1
## 24966  802734 1
## 24967  802735 1
## 24968  802736 1
## 24969  802737 1
## 24970  802738 1
## 24971  802739 1
## 24972  802740 1
## 24973  802741 1
## 24974  802742 1
## 24975  802743 1
## 24976  802744 1
## 24977  802745 1
## 24978  802746 1
## 24979  802747 1
## 24980  802748 1
## 24981  802749 1
## 24982  802750 1
## 24983  802751 1
## 24984  802752 1
## 24985  802753 1
## 24986  802754 1
## 24987  802755 1
## 24988  802756 1
## 24989  802757 1
## 24990  802758 1
## 24991  802759 1
## 24992  802760 1
## 24993  802761 1
## 24994  802762 1
## 24995  802763 1
## 24996  802764 1
## 24997  802765 1
## 24998  802766 1
## 24999  802767 1
## 25000  802768 1
## 25001  802769 1
## 25002  802770 1
## 25003  802771 1
## 25004  802772 1
## 25005  802773 1
## 25006  802774 1
## 25007  802775 1
## 25008  802776 1
## 25009  802777 1
## 25010  802778 1
## 25011  802779 1
## 25012  802780 1
## 25013  802781 1
## 25014  802782 1
## 25015  802783 1
## 25016  802784 1
## 25017  802785 1
## 25018  802786 1
## 25019  802787 1
## 25020  802788 1
## 25021  802789 1
## 25022  802790 1
## 25023  802791 1
## 25024  802792 1
## 25025  802793 1
## 25026  802794 1
## 25027  802795 1
## 25028  802796 1
## 25029  802797 1
## 25030  802798 1
## 25031  802799 1
## 25032  802800 1
## 25033  802801 1
## 25034  802803 1
## 25035  802804 1
## 25036  802805 1
## 25037  802806 1
## 25038  802807 1
## 25039  802808 1
## 25040  802809 1
## 25041  802810 1
## 25042  802811 1
## 25043  802812 1
## 25044  802813 1
## 25045  802814 1
## 25046  802815 1
## 25047  802816 1
## 25048  802817 1
## 25049  802818 1
## 25050  802819 1
## 25051  802820 1
## 25052  802821 1
## 25053  802822 1
## 25054  802823 1
## 25055  802824 1
## 25056  802825 1
## 25057  802826 1
## 25058  802827 1
## 25059  802828 1
## 25060  802829 1
## 25061  802830 1
## 25062  802831 1
## 25063  802832 1
## 25064  802833 1
## 25065  802834 1
## 25066  802835 1
## 25067  802836 1
## 25068  802837 1
## 25069  802838 1
## 25070  802839 1
## 25071  802840 1
## 25072  802841 1
## 25073  802842 1
## 25074  802843 1
## 25075  802845 1
## 25076  802846 1
## 25077  802847 1
## 25078  802848 1
## 25079  802849 1
## 25080  802850 1
## 25081  802851 1
## 25082  802852 1
## 25083  802853 1
## 25084  802854 1
## 25085  802855 1
## 25086  802856 1
## 25087  802857 1
## 25088  802858 1
## 25089  802859 1
## 25090  802860 1
## 25091  802861 1
## 25092  802862 1
## 25093  802863 1
## 25094  802864 1
## 25095  802865 1
## 25096  802866 1
## 25097  802867 1
## 25098  802868 1
## 25099  802869 1
## 25100  802870 1
## 25101  802871 1
## 25102  802872 1
## 25103  802873 1
## 25104  802874 1
## 25105  802875 1
## 25106  802876 1
## 25107  802877 1
## 25108  802878 1
## 25109  802879 1
## 25110  802880 1
## 25111  802881 1
## 25112  802882 1
## 25113  802883 1
## 25114  802884 1
## 25115  802885 1
## 25116  802886 1
## 25117  802887 1
## 25118  802888 1
## 25119  802889 1
## 25120  802890 1
## 25121  802891 1
## 25122  802892 1
## 25123  802893 1
## 25124  802894 1
## 25125  802895 1
## 25126  802896 1
## 25127  802897 1
## 25128  802898 1
## 25129  802899 1
## 25130  802900 1
## 25131  802901 1
## 25132  802902 1
## 25133  802903 1
## 25134  802904 1
## 25135  802905 1
## 25136  802906 1
## 25137  802907 1
## 25138  802908 1
## 25139  802909 1
## 25140  802910 1
## 25141  802911 1
## 25142  802912 1
## 25143  802913 1
## 25144  802914 1
## 25145  802915 1
## 25146  802916 1
## 25147  802917 1
## 25148  802918 1
## 25149  802919 1
## 25150  802920 1
## 25151  802921 1
## 25152  802922 1
## 25153  802923 1
## 25154  802924 1
## 25155  802925 1
## 25156  802926 1
## 25157  802927 1
## 25158  802928 1
## 25159  802929 1
## 25160  802930 1
## 25161  802931 1
## 25162  802932 1
## 25163  802933 1
## 25164  802934 1
## 25165  802935 1
## 25166  802936 1
## 25167  802937 1
## 25168  802938 1
## 25169  802939 1
## 25170  802940 1
## 25171  802941 1
## 25172  802942 1
## 25173  802943 1
## 25174  802944 1
## 25175  802945 1
## 25176  802946 1
## 25177  802947 1
## 25178  802948 1
## 25179  802949 1
## 25180  802950 1
## 25181  802951 1
## 25182  802952 1
## 25183  802953 1
## 25184  802954 1
## 25185  802955 1
## 25186  802956 1
## 25187  802957 1
## 25188  802958 1
## 25189  802959 1
## 25190  802960 1
## 25191  802961 1
## 25192  802962 1
## 25193  802963 1
## 25194  802964 1
## 25195  802965 1
## 25196  802966 1
## 25197  802967 1
## 25198  802968 1
## 25199  802969 1
## 25200  802970 1
## 25201  802971 1
## 25202  802972 1
## 25203  802973 1
## 25204  802974 1
## 25205  802975 1
## 25206  802976 1
## 25207  802977 1
## 25208  802978 1
## 25209  802979 1
## 25210  802980 1
## 25211  802981 1
## 25212  802982 1
## 25213  802983 1
## 25214  802984 1
## 25215  802985 1
## 25216  802986 1
## 25217  802987 1
## 25218  802988 1
## 25219  802989 1
## 25220  802990 1
## 25221  802991 1
## 25222  802992 1
## 25223  802993 1
## 25224  802994 1
## 25225  802995 1
## 25226  802996 1
## 25227  802997 1
## 25228  802998 1
## 25229  802999 1
## 25230  803000 1
## 25231  803001 1
## 25232  803002 1
## 25233  803003 1
## 25234  803004 1
## 25235  803005 1
## 25236  803006 1
## 25237  803007 1
## 25238  803008 1
## 25239  803009 1
## 25240  803010 1
## 25241  803011 1
## 25242  803012 1
## 25243  803013 1
## 25244  803014 1
## 25245  803015 1
## 25246  803016 1
## 25247  803017 1
## 25248  803018 1
## 25249  803019 1
## 25250  803020 1
## 25251  803021 1
## 25252  803022 1
## 25253  803023 1
## 25254  803024 1
## 25255  803025 1
## 25256  803026 1
## 25257  803027 1
## 25258  803028 1
## 25259  803029 1
## 25260  803030 1
## 25261  803031 1
## 25262  803032 1
## 25263  803033 1
## 25264  803034 1
## 25265  803035 1
## 25266  803036 1
## 25267  803037 1
## 25268  803038 1
## 25269  803039 1
## 25270  803040 1
## 25271  803041 1
## 25272  803042 1
## 25273  803043 1
## 25274  803044 1
## 25275  803045 1
## 25276  803046 1
## 25277  803047 1
## 25278  803048 1
## 25279  803049 1
## 25280  803050 1
## 25281  803051 1
## 25282  803052 1
## 25283  803053 1
## 25284  803054 1
## 25285  803055 1
## 25286  803056 1
## 25287  803058 1
## 25288  803059 1
## 25289  803060 1
## 25290  803061 1
## 25291  803062 1
## 25292  803063 1
## 25293  803064 1
## 25294  803065 1
## 25295  803066 1
## 25296  803067 1
## 25297  803068 1
## 25298  803069 1
## 25299  803070 1
## 25300  803071 1
## 25301  803072 1
## 25302  803073 1
## 25303  803074 1
## 25304  803075 1
## 25305  803076 1
## 25306  803077 1
## 25307  803078 1
## 25308  803079 1
## 25309  803080 1
## 25310  803081 1
## 25311  803082 1
## 25312  803083 1
## 25313  803084 1
## 25314  803085 1
## 25315  803086 1
## 25316  803087 1
## 25317  803088 1
## 25318  803089 1
## 25319  803090 1
## 25320  803091 1
## 25321  803092 1
## 25322  803093 1
## 25323  803094 1
## 25324  803095 1
## 25325  803096 1
## 25326  803097 1
## 25327  803098 1
## 25328  803099 1
## 25329  803100 1
## 25330  803101 1
## 25331  803102 1
## 25332  803103 1
## 25333  803104 1
## 25334  803105 1
## 25335  803106 1
## 25336  803107 1
## 25337  803108 1
## 25338  803109 1
## 25339  803110 1
## 25340  803111 1
## 25341  803112 1
## 25342  803113 1
## 25343  803114 1
## 25344  803115 1
## 25345  803116 1
## 25346  803117 1
## 25347  803118 1
## 25348  803119 1
## 25349  803120 1
## 25350  803121 1
## 25351  803122 1
## 25352  803123 1
## 25353  803124 1
## 25354  803125 1
## 25355  803126 1
## 25356  803127 1
## 25357  803128 1
## 25358  803129 1
## 25359  803130 1
## 25360  803131 1
## 25361  803132 1
## 25362  803133 1
## 25363  803134 1
## 25364  803135 1
## 25365  803136 1
## 25366  803137 1
## 25367  803138 1
## 25368  803139 1
## 25369  803140 1
## 25370  803141 1
## 25371  803142 1
## 25372  803143 1
## 25373  803144 1
## 25374  803145 1
## 25375  803146 1
## 25376  803147 1
## 25377  803148 1
## 25378  803149 1
## 25379  803150 1
## 25380  803151 1
## 25381  803152 1
## 25382  803153 1
## 25383  803154 1
## 25384  803155 1
## 25385  803156 1
## 25386  803158 1
## 25387  803159 1
## 25388  803160 1
## 25389  803161 1
## 25390  803162 1
## 25391  803163 1
## 25392  803164 1
## 25393  803165 1
## 25394  803166 1
## 25395  803167 1
## 25396  803168 1
## 25397  803169 1
## 25398  803170 1
## 25399  803171 1
## 25400  803172 1
## 25401  803173 1
## 25402  803174 1
## 25403  803175 1
## 25404  803176 1
## 25405  803177 1
## 25406  803178 1
## 25407  803179 1
## 25408  803180 1
## 25409  803181 1
## 25410  803182 1
## 25411  803183 1
## 25412  803184 1
## 25413  803185 1
## 25414  803186 1
## 25415  803187 1
## 25416  803188 1
## 25417  803189 1
## 25418  803190 1
## 25419  803191 1
## 25420  803192 1
## 25421  803193 1
## 25422  803194 1
## 25423  803195 1
## 25424  803196 1
## 25425  803197 1
## 25426  803198 1
## 25427  803199 1
## 25428  803200 1
## 25429  803201 1
## 25430  803202 1
## 25431  803203 1
## 25432  803204 1
## 25433  803205 1
## 25434  803206 1
## 25435  803207 1
## 25436  803208 1
## 25437  803209 1
## 25438  803210 1
## 25439  803211 1
## 25440  803212 1
## 25441  803213 1
## 25442  803214 1
## 25443  803215 1
## 25444  803216 1
## 25445  803217 1
## 25446  803218 1
## 25447  803219 1
## 25448  803220 1
## 25449  803221 1
## 25450  803222 1
## 25451  803223 1
## 25452  803224 1
## 25453  803225 1
## 25454  803226 1
## 25455  803227 1
## 25456  803228 1
## 25457  803229 1
## 25458  803230 1
## 25459  803231 1
## 25460  803232 1
## 25461  803233 1
## 25462  803234 1
## 25463  803235 1
## 25464  803236 1
## 25465  803237 1
## 25466  803238 1
## 25467  803239 1
## 25468  803240 1
## 25469  803241 1
## 25470  803242 1
## 25471  803243 1
## 25472  803244 1
## 25473  803245 1
## 25474  803246 1
## 25475  803247 1
## 25476  803248 1
## 25477  803249 1
## 25478  803250 1
## 25479  803251 1
## 25480  803252 1
## 25481  803253 1
## 25482  803254 1
## 25483  803255 1
## 25484  803256 1
## 25485  803257 1
## 25486  803258 1
## 25487  803259 1
## 25488  803260 1
## 25489  803261 1
## 25490  803262 1
## 25491  803263 1
## 25492  803264 1
## 25493  803265 1
## 25494  803266 1
## 25495  803267 1
## 25496  803268 1
## 25497  803269 1
## 25498  803270 1
## 25499  803271 1
## 25500  803272 1
## 25501  803273 1
## 25502  803274 1
## 25503  803275 1
## 25504  803276 1
## 25505  803277 1
## 25506  803278 1
## 25507  803279 1
## 25508  803280 1
## 25509  803281 1
## 25510  803282 1
## 25511  803283 1
## 25512  803284 1
## 25513  803285 1
## 25514  803286 1
## 25515  803287 1
## 25516  803288 1
## 25517  803289 1
## 25518  803290 1
## 25519  803291 1
## 25520  803292 1
## 25521  803293 1
## 25522  803294 1
## 25523  803295 1
## 25524  803296 1
## 25525  803297 1
## 25526  803298 1
## 25527  803299 1
## 25528  803300 1
## 25529  803301 1
## 25530  803302 1
## 25531  803303 1
## 25532  803304 1
## 25533  803305 1
## 25534  803306 1
## 25535  803307 1
## 25536  803308 1
## 25537  803309 1
## 25538  803310 1
## 25539  803311 1
## 25540  803312 1
## 25541  803313 1
## 25542  803314 1
## 25543  803315 1
## 25544  803316 1
## 25545  803317 1
## 25546  803318 1
## 25547  803319 1
## 25548  803320 1
## 25549  803321 1
## 25550  803322 1
## 25551  803323 1
## 25552  803324 1
## 25553  803325 1
## 25554  803326 1
## 25555  803327 1
## 25556  803328 1
## 25557  803329 1
## 25558  803330 1
## 25559  803331 1
## 25560  803332 1
## 25561  803333 1
## 25562  803334 1
## 25563  803335 1
## 25564  803336 1
## 25565  803337 1
## 25566  803338 1
## 25567  803339 1
## 25568  803340 1
## 25569  803341 1
## 25570  803342 1
## 25571  803343 1
## 25572  803344 1
## 25573  803345 1
## 25574  803346 1
## 25575  803347 1
## 25576  803348 1
## 25577  803349 1
## 25578  803350 1
## 25579  803351 1
## 25580  803352 1
## 25581  803353 1
## 25582  803354 1
## 25583  803355 1
## 25584  803356 1
## 25585  803357 1
## 25586  803358 1
## 25587  803359 1
## 25588  803360 1
## 25589  803361 1
## 25590  803362 1
## 25591  803363 1
## 25592  803364 1
## 25593  803365 1
## 25594  803366 1
## 25595  803367 1
## 25596  803368 1
## 25597  803369 1
## 25598  803370 1
## 25599  803371 1
## 25600  803372 1
## 25601  803373 1
## 25602  803374 1
## 25603  803375 1
## 25604  803376 1
## 25605  803377 1
## 25606  803378 1
## 25607  803379 1
## 25608  803380 1
## 25609  803381 1
## 25610  803382 1
## 25611  803383 1
## 25612  803384 1
## 25613  803385 1
## 25614  803386 1
## 25615  803387 1
## 25616  803388 1
## 25617  803389 1
## 25618  803390 1
## 25619  803391 1
## 25620  803392 1
## 25621  803393 1
## 25622  803394 1
## 25623  803395 1
## 25624  803396 1
## 25625  803397 1
## 25626  803398 1
## 25627  803399 1
## 25628  803400 1
## 25629  803401 1
## 25630  803402 1
## 25631  803403 1
## 25632  803404 1
## 25633  803405 1
## 25634  803406 1
## 25635  803407 1
## 25636  803408 1
## 25637  803409 1
## 25638  803410 1
## 25639  803411 1
## 25640  803412 1
## 25641  803413 1
## 25642  803414 1
## 25643  803415 1
## 25644  803416 1
## 25645  803417 1
## 25646  803418 1
## 25647  803419 1
## 25648  803420 1
## 25649  803421 1
## 25650  803422 1
## 25651  803423 1
## 25652  803424 1
## 25653  803425 1
## 25654  803426 1
## 25655  803427 1
## 25656  803428 1
## 25657  803429 1
## 25658  803430 1
## 25659  803431 1
## 25660  803432 1
## 25661  803433 1
## 25662  803434 1
## 25663  803435 1
## 25664  803436 1
## 25665  803437 1
## 25666  803438 1
## 25667  803439 1
## 25668  803440 1
## 25669  803441 1
## 25670  803442 1
## 25671  803443 1
## 25672  803444 1
## 25673  803445 1
## 25674  803446 1
## 25675  803447 1
## 25676  803448 1
## 25677  803449 1
## 25678  803450 1
## 25679  803451 1
## 25680  803452 1
## 25681  803453 1
## 25682  803454 1
## 25683  803455 1
## 25684  803456 1
## 25685  803457 1
## 25686  803458 1
## 25687  803459 1
## 25688  803460 1
## 25689  803461 1
## 25690  803462 1
## 25691  803463 1
## 25692  803464 1
## 25693  803465 1
## 25694  803466 1
## 25695  803467 1
## 25696  803468 1
## 25697  803469 1
## 25698  803470 1
## 25699  803471 1
## 25700  803472 1
## 25701  803473 1
## 25702  803474 1
## 25703  803475 1
## 25704  803477 1
## 25705  803478 1
## 25706  803479 1
## 25707  803480 1
## 25708  803481 1
## 25709  803482 1
## 25710  803483 1
## 25711  803484 1
## 25712  803485 1
## 25713  803486 1
## 25714  803487 1
## 25715  803488 1
## 25716  803489 1
## 25717  803490 1
## 25718  803491 1
## 25719  803492 1
## 25720  803493 1
## 25721  803494 1
## 25722  803495 1
## 25723  803496 1
## 25724  803497 1
## 25725  803498 1
## 25726  803499 1
## 25727  803500 1
## 25728  803501 1
## 25729  803502 1
## 25730  803503 1
## 25731  803504 1
## 25732  803505 1
## 25733  803506 1
## 25734  803507 1
## 25735  803508 1
## 25736  803509 1
## 25737  803510 1
## 25738  803511 1
## 25739  803512 1
## 25740  803513 1
## 25741  803514 1
## 25742  803515 1
## 25743  803517 1
## 25744  803518 1
## 25745  803519 1
## 25746  803520 1
## 25747  803521 1
## 25748  803522 1
## 25749  803523 1
## 25750  803524 1
## 25751  803525 1
## 25752  803526 1
## 25753  803527 1
## 25754  803528 1
## 25755  803530 1
## 25756  803531 1
## 25757  803532 1
## 25758  803533 1
## 25759  803534 1
## 25760  803535 1
## 25761  803536 1
## 25762  803537 1
## 25763  803538 1
## 25764  803539 1
## 25765  803540 1
## 25766  803541 1
## 25767  803542 1
## 25768  803543 1
## 25769  803544 1
## 25770  803545 1
## 25771  803546 1
## 25772  803547 1
## 25773  803548 1
## 25774  803549 1
## 25775  803550 1
## 25776  803551 1
## 25777  803552 1
## 25778  803553 1
## 25779  803554 1
## 25780  803555 1
## 25781  803556 1
## 25782  803557 1
## 25783  803558 1
## 25784  803559 1
## 25785  803560 1
## 25786  803561 1
## 25787  803562 1
## 25788  803563 1
## 25789  803564 1
## 25790  803565 1
## 25791  803566 1
## 25792  803567 1
## 25793  803568 1
## 25794  803569 1
## 25795  803570 1
## 25796  803571 1
## 25797  803572 1
## 25798  803573 1
## 25799  803574 1
## 25800  803575 1
## 25801  803576 1
## 25802  803577 1
## 25803  803578 1
## 25804  803579 1
## 25805  803580 1
## 25806  803581 1
## 25807  803582 1
## 25808  803583 1
## 25809  803584 1
## 25810  803585 1
## 25811  803586 1
## 25812  803587 1
## 25813  803588 1
## 25814  803590 1
## 25815  803591 1
## 25816  803592 1
## 25817  803593 1
## 25818  803594 1
## 25819  803595 1
## 25820  803596 1
## 25821  803597 1
## 25822  803598 1
## 25823  803599 1
## 25824  803600 1
## 25825  803601 1
## 25826  803602 1
## 25827  803603 1
## 25828  803604 1
## 25829  803605 1
## 25830  803606 1
## 25831  803607 1
## 25832  803608 1
## 25833  803609 1
## 25834  803610 1
## 25835  803611 1
## 25836  803612 1
## 25837  803613 1
## 25838  803614 1
## 25839  803615 1
## 25840  803616 1
## 25841  803617 1
## 25842  803618 1
## 25843  803619 1
## 25844  803620 1
## 25845  803621 1
## 25846  803622 1
## 25847  803623 1
## 25848  803624 1
## 25849  803625 1
## 25850  803626 1
## 25851  803627 1
## 25852  803628 1
## 25853  803629 1
## 25854  803630 1
## 25855  803631 1
## 25856  803632 1
## 25857  803633 1
## 25858  803634 1
## 25859  803635 1
## 25860  803637 1
## 25861  803638 1
## 25862  803639 1
## 25863  803640 1
## 25864  803641 1
## 25865  803642 1
## 25866  803643 1
## 25867  803644 1
## 25868  803645 1
## 25869  803646 1
## 25870  803647 1
## 25871  803648 1
## 25872  803649 1
## 25873  803650 1
## 25874  803651 1
## 25875  803652 1
## 25876  803653 1
## 25877  803654 1
## 25878  803655 1
## 25879  803656 1
## 25880  803657 1
## 25881  803658 1
## 25882  803659 1
## 25883  803660 1
## 25884  803661 1
## 25885  803662 1
## 25886  803663 1
## 25887  803664 1
## 25888  803665 1
## 25889  803666 1
## 25890  803667 1
## 25891  803668 1
## 25892  803669 1
## 25893  803670 1
## 25894  803671 1
## 25895  803672 1
## 25896  803673 1
## 25897  803674 1
## 25898  803675 1
## 25899  803676 1
## 25900  803677 1
## 25901  803678 1
## 25902  803679 1
## 25903  803680 1
## 25904  803681 1
## 25905  803682 1
## 25906  803683 1
## 25907  803684 1
## 25908  803685 1
## 25909  803686 1
## 25910  803687 1
## 25911  803688 1
## 25912  803689 1
## 25913  803690 1
## 25914  803691 1
## 25915  803692 1
## 25916  803693 1
## 25917  803694 1
## 25918  803695 1
## 25919  803696 1
## 25920  803697 1
## 25921  803698 1
## 25922  803699 1
## 25923  803700 1
## 25924  803701 1
## 25925  803702 1
## 25926  803703 1
## 25927  803704 1
## 25928  803705 1
## 25929  803706 1
## 25930  803707 1
## 25931  803708 1
## 25932  803709 1
## 25933  803710 1
## 25934  803711 1
## 25935  803712 1
## 25936  803713 1
## 25937  803714 1
## 25938  803716 1
## 25939  803717 1
## 25940  803718 1
## 25941  803719 1
## 25942  803720 1
## 25943  803721 1
## 25944  803722 1
## 25945  803723 1
## 25946  803724 1
## 25947  803725 1
## 25948  803726 1
## 25949  803727 1
## 25950  803728 1
## 25951  803729 1
## 25952  803730 1
## 25953  803731 1
## 25954  803732 1
## 25955  803733 1
## 25956  803734 1
## 25957  803735 1
## 25958  803736 1
## 25959  803737 1
## 25960  803738 1
## 25961  803739 1
## 25962  803740 1
## 25963  803741 1
## 25964  803742 1
## 25965  803743 1
## 25966  803744 1
## 25967  803745 1
## 25968  803746 1
## 25969  803747 1
## 25970  803748 1
## 25971  803749 1
## 25972  803750 1
## 25973  803751 1
## 25974  803752 1
## 25975  803753 1
## 25976  803754 1
## 25977  803755 1
## 25978  803756 1
## 25979  803757 1
## 25980  803758 1
## 25981  803759 1
## 25982  803760 1
## 25983  803761 1
## 25984  803762 1
## 25985  803763 1
## 25986  803764 1
## 25987  803765 1
## 25988  803766 1
## 25989  803767 1
## 25990  803768 1
## 25991  803769 1
## 25992  803770 1
## 25993  803771 1
## 25994  803772 1
## 25995  803773 1
## 25996  803774 1
## 25997  803775 1
## 25998  803776 1
## 25999  803777 1
## 26000  803778 1
## 26001  803779 1
## 26002  803780 1
## 26003  803781 1
## 26004  803782 1
## 26005  803783 1
## 26006  803784 1
## 26007  803785 1
## 26008  803786 1
## 26009  803787 1
## 26010  803788 1
## 26011  803789 1
## 26012  803790 1
## 26013  803791 1
## 26014  803792 1
## 26015  803793 1
## 26016  803794 1
## 26017  803795 1
## 26018  803796 1
## 26019  803797 1
## 26020  803798 1
## 26021  803799 1
## 26022  803800 1
## 26023  803801 1
## 26024  803802 1
## 26025  803803 1
## 26026  803804 1
## 26027  803805 1
## 26028  803806 1
## 26029  803807 1
## 26030  803808 1
## 26031  803809 1
## 26032  803810 1
## 26033  803811 1
## 26034  803812 1
## 26035  803813 1
## 26036  803814 1
## 26037  803815 1
## 26038  803816 1
## 26039  803817 1
## 26040  803818 1
## 26041  803819 1
## 26042  803820 1
## 26043  803821 1
## 26044  803822 1
## 26045  803823 1
## 26046  803824 1
## 26047  803825 1
## 26048  803826 1
## 26049  803827 1
## 26050  803828 1
## 26051  803829 1
## 26052  803830 1
## 26053  803831 1
## 26054  803832 1
## 26055  803833 1
## 26056  803834 1
## 26057  803835 1
## 26058  803836 1
## 26059  803837 1
## 26060  803838 1
## 26061  803839 1
## 26062  803840 1
## 26063  803841 1
## 26064  803842 1
## 26065  803843 1
## 26066  803844 1
## 26067  803845 1
## 26068  803846 1
## 26069  803847 1
## 26070  803848 1
## 26071  803849 1
## 26072  803850 1
## 26073  803851 1
## 26074  803853 1
## 26075  803854 1
## 26076  803855 1
## 26077  803856 1
## 26078  803857 1
## 26079  803858 1
## 26080  803859 1
## 26081  803860 1
## 26082  803861 1
## 26083  803862 1
## 26084  803863 1
## 26085  803864 1
## 26086  803865 1
## 26087  803866 1
## 26088  803867 1
## 26089  803868 1
## 26090  803869 1
## 26091  803870 1
## 26092  803871 1
## 26093  803872 1
## 26094  803873 1
## 26095  803874 1
## 26096  803875 1
## 26097  803876 1
## 26098  803877 1
## 26099  803878 1
## 26100  803879 1
## 26101  803880 1
## 26102  803881 1
## 26103  803882 1
## 26104  803883 1
## 26105  803884 1
## 26106  803885 1
## 26107  803886 1
## 26108  803887 1
## 26109  803888 1
## 26110  803889 1
## 26111  803890 1
## 26112  803891 1
## 26113  803892 1
## 26114  803893 1
## 26115  803894 1
## 26116  803895 1
## 26117  803896 1
## 26118  803897 1
## 26119  803898 1
## 26120  803899 1
## 26121  803900 1
## 26122  803901 1
## 26123  803902 1
## 26124  803903 1
## 26125  803904 1
## 26126  803905 1
## 26127  803906 1
## 26128  803907 1
## 26129  803908 1
## 26130  803909 1
## 26131  803910 1
## 26132  803911 1
## 26133  803912 1
## 26134  803913 1
## 26135  803914 1
## 26136  803915 1
## 26137  803916 1
## 26138  803917 1
## 26139  803918 1
## 26140  803919 1
## 26141  803920 1
## 26142  803921 1
## 26143  803922 1
## 26144  803923 1
## 26145  803924 1
## 26146  803925 1
## 26147  803926 1
## 26148  803927 1
## 26149  803928 1
## 26150  803929 1
## 26151  803930 1
## 26152  803931 1
## 26153  803932 1
## 26154  803933 1
## 26155  803934 1
## 26156  803935 1
## 26157  803936 1
## 26158  803937 1
## 26159  803938 1
## 26160  803939 1
## 26161  803940 1
## 26162  803941 1
## 26163  803942 1
## 26164  803943 1
## 26165  803944 1
## 26166  803945 1
## 26167  803946 1
## 26168  803947 1
## 26169  803948 1
## 26170  803949 1
## 26171  803950 1
## 26172  803951 1
## 26173  803952 1
## 26174  803953 1
## 26175  803954 1
## 26176  803955 1
## 26177  803956 1
## 26178  803958 1
## 26179  803959 1
## 26180  803960 1
## 26181  803961 1
## 26182  803962 1
## 26183  803963 1
## 26184  803964 1
## 26185  803965 1
## 26186  803966 1
## 26187  803967 1
## 26188  803968 1
## 26189  803969 1
## 26190  803970 1
## 26191  803971 1
## 26192  803972 1
## 26193  803973 1
## 26194  803974 1
## 26195  803975 1
## 26196  803976 1
## 26197  803977 1
## 26198  803978 1
## 26199  803979 1
## 26200  803980 1
## 26201  803981 1
## 26202  803982 1
## 26203  803983 1
## 26204  803984 1
## 26205  803985 1
## 26206  803986 1
## 26207  803987 1
## 26208  803988 1
## 26209  803989 1
## 26210  803990 1
## 26211  803991 1
## 26212  803992 1
## 26213  803993 1
## 26214  803994 1
## 26215  803995 1
## 26216  803996 1
## 26217  803997 1
## 26218  803998 1
## 26219  803999 1
## 26220  804000 1
## 26221  804001 1
## 26222  804002 1
## 26223  804003 1
## 26224  804004 1
## 26225  804005 1
## 26226  804006 1
## 26227  804007 1
## 26228  804008 1
## 26229  804009 1
## 26230  804010 1
## 26231  804011 1
## 26232  804012 1
## 26233  804013 1
## 26234  804014 1
## 26235  804015 1
## 26236  804016 1
## 26237  804017 1
## 26238  804018 1
## 26239  804019 1
## 26240  804020 1
## 26241  804021 1
## 26242  804022 1
## 26243  804023 1
## 26244  804024 1
## 26245  804025 1
## 26246  804026 1
## 26247  804027 1
## 26248  804028 1
## 26249  804029 1
## 26250  804030 1
## 26251  804031 1
## 26252  804032 1
## 26253  804033 1
## 26254  804034 1
## 26255  804035 1
## 26256  804036 1
## 26257  804037 1
## 26258  804038 1
## 26259  804039 1
## 26260  804040 1
## 26261  804041 1
## 26262  804042 1
## 26263  804043 1
## 26264  804044 1
## 26265  804045 1
## 26266  804046 1
## 26267  804047 1
## 26268  804048 1
## 26269  804049 1
## 26270  804050 1
## 26271  804051 1
## 26272  804053 1
## 26273  804054 1
## 26274  804055 1
## 26275  804056 1
## 26276  804058 1
## 26277  804059 1
## 26278  804060 1
## 26279  804061 1
## 26280  804062 1
## 26281  804063 1
## 26282  804064 1
## 26283  804065 1
## 26284  804066 1
## 26285  804067 1
## 26286  804068 1
## 26287  804069 1
## 26288  804070 1
## 26289  804071 1
## 26290  804072 1
## 26291  804073 1
## 26292  804074 1
## 26293  804075 1
## 26294  804077 1
## 26295  804078 1
## 26296  804079 1
## 26297  804080 1
## 26298  804081 1
## 26299  804082 1
## 26300  804083 1
## 26301  804084 1
## 26302  804085 1
## 26303  804086 1
## 26304  804087 1
## 26305  804088 1
## 26306  804089 1
## 26307  804090 1
## 26308  804092 1
## 26309  804093 1
## 26310  804094 1
## 26311  804095 1
## 26312  804096 1
## 26313  804097 1
## 26314  804098 1
## 26315  804099 1
## 26316  804100 1
## 26317  804102 1
## 26318  804103 1
## 26319  804104 1
## 26320  804105 1
## 26321  804106 1
## 26322  804107 1
## 26323  804108 1
## 26324  804109 1
## 26325  804110 1
## 26326  804111 1
## 26327  804112 1
## 26328  804113 1
## 26329  804114 1
## 26330  804115 1
## 26331  804116 1
## 26332  804117 1
## 26333  804118 1
## 26334  804119 1
## 26335  804120 1
## 26336  804121 1
## 26337  804122 1
## 26338  804123 1
## 26339  804124 1
## 26340  804125 1
## 26341  804127 1
## 26342  804128 1
## 26343  804129 1
## 26344  804130 1
## 26345  804131 1
## 26346  804132 1
## 26347  804133 1
## 26348  804134 1
## 26349  804135 1
## 26350  804136 1
## 26351  804137 1
## 26352  804138 1
## 26353  804139 1
## 26354  804140 1
## 26355  804141 1
## 26356  804142 1
## 26357  804143 1
## 26358  804144 1
## 26359  804145 1
## 26360  804146 1
## 26361  804147 1
## 26362  804148 1
## 26363  804149 1
## 26364  804150 1
## 26365  804151 1
## 26366  804152 1
## 26367  804153 1
## 26368  804154 1
## 26369  804156 1
## 26370  804157 1
## 26371  804158 1
## 26372  804159 1
## 26373  804160 1
## 26374  804161 1
## 26375  804162 1
## 26376  804163 1
## 26377  804164 1
## 26378  804165 1
## 26379  804166 1
## 26380  804167 1
## 26381  804168 1
## 26382  804169 1
## 26383  804170 1
## 26384  804171 1
## 26385  804172 1
## 26386  804173 1
## 26387  804174 1
## 26388  804175 1
## 26389  804176 1
## 26390  804177 1
## 26391  804178 1
## 26392  804179 1
## 26393  804180 1
## 26394  804181 1
## 26395  804182 1
## 26396  804183 1
## 26397  804184 1
## 26398  804185 1
## 26399  804186 1
## 26400  804187 1
## 26401  804188 1
## 26402  804189 1
## 26403  804190 1
## 26404  804191 1
## 26405  804192 1
## 26406  804193 1
## 26407  804194 1
## 26408  804195 1
## 26409  804197 1
## 26410  804198 1
## 26411  804199 1
## 26412  804200 1
## 26413  804201 1
## 26414  804202 1
## 26415  804203 1
## 26416  804204 1
## 26417  804205 1
## 26418  804206 1
## 26419  804207 1
## 26420  804208 1
## 26421  804209 1
## 26422  804210 1
## 26423  804211 1
## 26424  804212 1
## 26425  804213 1
## 26426  804214 1
## 26427  804215 1
## 26428  804216 1
## 26429  804217 1
## 26430  804218 1
## 26431  804219 1
## 26432  804220 1
## 26433  804221 1
## 26434  804222 1
## 26435  804223 1
## 26436  804224 1
## 26437  804225 1
## 26438  804226 1
## 26439  804227 1
## 26440  804228 1
## 26441  804229 1
## 26442  804230 1
## 26443  804231 1
## 26444  804232 1
## 26445  804233 1
## 26446  804234 1
## 26447  804235 1
## 26448  804236 1
## 26449  804237 1
## 26450  804238 1
## 26451  804239 1
## 26452  804240 1
## 26453  804241 1
## 26454  804242 1
## 26455  804243 1
## 26456  804244 1
## 26457  804245 1
## 26458  804246 1
## 26459  804247 1
## 26460  804248 1
## 26461  804249 1
## 26462  804250 1
## 26463  804251 1
## 26464  804252 1
## 26465  804253 1
## 26466  804254 1
## 26467  804255 1
## 26468  804256 1
## 26469  804257 1
## 26470  804258 1
## 26471  804259 1
## 26472  804260 1
## 26473  804261 1
## 26474  804262 1
## 26475  804263 1
## 26476  804264 1
## 26477  804265 1
## 26478  804266 1
## 26479  804267 1
## 26480  804268 1
## 26481  804269 1
## 26482  804270 1
## 26483  804271 1
## 26484  804272 1
## 26485  804273 1
## 26486  804274 1
## 26487  804275 1
## 26488  804276 1
## 26489  804277 1
## 26490  804278 1
## 26491  804279 1
## 26492  804280 1
## 26493  804281 1
## 26494  804282 1
## 26495  804283 1
## 26496  804284 1
## 26497  804285 1
## 26498  804286 1
## 26499  804287 1
## 26500  804288 1
## 26501  804289 1
## 26502  804290 1
## 26503  804291 1
## 26504  804292 1
## 26505  804293 1
## 26506  804294 1
## 26507  804295 1
## 26508  804296 1
## 26509  804297 1
## 26510  804298 1
## 26511  804299 1
## 26512  804300 1
## 26513  804301 1
## 26514  804302 1
## 26515  804303 1
## 26516  804304 1
## 26517  804305 1
## 26518  804306 1
## 26519  804307 1
## 26520  804308 1
## 26521  804309 1
## 26522  804310 1
## 26523  804311 1
## 26524  804312 1
## 26525  804313 1
## 26526  804314 1
## 26527  804315 1
## 26528  804316 1
## 26529  804317 1
## 26530  804318 1
## 26531  804319 1
## 26532  804320 1
## 26533  804321 1
## 26534  804322 1
## 26535  804323 1
## 26536  804324 1
## 26537  804325 1
## 26538  804326 1
## 26539  804327 1
## 26540  804328 1
## 26541  804329 1
## 26542  804330 1
## 26543  804331 1
## 26544  804332 1
## 26545  804333 1
## 26546  804334 1
## 26547  804335 1
## 26548  804336 1
## 26549  804337 1
## 26550  804338 1
## 26551  804339 1
## 26552  804340 1
## 26553  804341 1
## 26554  804342 1
## 26555  804343 1
## 26556  804344 1
## 26557  804345 1
## 26558  804346 1
## 26559  804347 1
## 26560  804348 1
## 26561  804349 1
## 26562  804350 1
## 26563  804351 1
## 26564  804352 1
## 26565  804353 1
## 26566  804354 1
## 26567  804355 1
## 26568  804356 1
## 26569  804357 1
## 26570  804358 1
## 26571  804359 1
## 26572  804360 1
## 26573  804361 1
## 26574  804362 1
## 26575  804363 1
## 26576  804364 1
## 26577  804365 1
## 26578  804366 1
## 26579  804367 1
## 26580  804368 1
## 26581  804369 1
## 26582  804370 1
## 26583  804371 1
## 26584  804372 1
## 26585  804373 1
## 26586  804374 1
## 26587  804375 1
## 26588  804376 1
## 26589  804377 1
## 26590  804378 1
## 26591  804379 1
## 26592  804380 1
## 26593  804381 1
## 26594  804382 1
## 26595  804383 1
## 26596  804384 1
## 26597  804385 1
## 26598  804386 1
## 26599  804387 1
## 26600  804388 1
## 26601  804389 1
## 26602  804390 1
## 26603  804391 1
## 26604  804392 1
## 26605  804393 1
## 26606  804394 1
## 26607  804395 1
## 26608  804396 1
## 26609  804397 1
## 26610  804398 1
## 26611  804399 1
## 26612  804400 1
## 26613  804401 1
## 26614  804402 1
## 26615  804403 1
## 26616  804404 1
## 26617  804405 1
## 26618  804406 1
## 26619  804407 1
## 26620  804408 1
## 26621  804409 1
## 26622  804410 1
## 26623  804411 1
## 26624  804412 1
## 26625  804413 1
## 26626  804414 1
## 26627  804415 1
## 26628  804416 1
## 26629  804417 1
## 26630  804418 1
## 26631  804419 1
## 26632  804420 1
## 26633  804421 1
## 26634  804422 1
## 26635  804423 1
## 26636  804424 1
## 26637  804425 1
## 26638  804426 1
## 26639  804427 1
## 26640  804428 1
## 26641  804429 1
## 26642  804430 1
## 26643  804431 1
## 26644  804432 1
## 26645  804433 1
## 26646  804434 1
## 26647  804435 1
## 26648  804436 1
## 26649  804437 1
## 26650  804438 1
## 26651  804439 1
## 26652  804440 1
## 26653  804441 1
## 26654  804442 1
## 26655  804443 1
## 26656  804444 1
## 26657  804445 1
## 26658  804446 1
## 26659  804447 1
## 26660  804448 1
## 26661  804449 1
## 26662  804450 1
## 26663  804451 1
## 26664  804452 1
## 26665  804453 1
## 26666  804454 1
## 26667  804455 1
## 26668  804456 1
## 26669  804457 1
## 26670  804458 1
## 26671  804459 1
## 26672  804460 1
## 26673  804461 1
## 26674  804462 1
## 26675  804463 1
## 26676  804464 1
## 26677  804465 1
## 26678  804466 1
## 26679  804467 1
## 26680  804468 1
## 26681  804469 1
## 26682  804470 1
## 26683  804471 1
## 26684  804472 1
## 26685  804473 1
## 26686  804474 1
## 26687  804475 1
## 26688  804476 1
## 26689  804477 1
## 26690  804478 1
## 26691  804480 1
## 26692  804481 1
## 26693  804482 1
## 26694  804483 1
## 26695  804484 1
## 26696  804485 1
## 26697  804486 1
## 26698  804487 1
## 26699  804488 1
## 26700  804489 1
## 26701  804490 1
## 26702  804491 1
## 26703  804492 1
## 26704  804493 1
## 26705  804494 1
## 26706  804495 1
## 26707  804496 1
## 26708  804497 1
## 26709  804498 1
## 26710  804499 1
## 26711  804500 1
## 26712  804501 1
## 26713  804502 1
## 26714  804503 1
## 26715  804504 1
## 26716  804505 1
## 26717  804506 1
## 26718  804507 1
## 26719  804508 1
## 26720  804509 1
## 26721  804510 1
## 26722  804511 1
## 26723  804512 1
## 26724  804513 1
## 26725  804514 1
## 26726  804515 1
## 26727  804516 1
## 26728  804517 1
## 26729  804518 1
## 26730  804519 1
## 26731  804520 1
## 26732  804521 1
## 26733  804522 1
## 26734  804523 1
## 26735  804524 1
## 26736  804525 1
## 26737  804526 1
## 26738  804527 1
## 26739  804528 1
## 26740  804529 1
## 26741  804530 1
## 26742  804531 1
## 26743  804532 1
## 26744  804533 1
## 26745  804534 1
## 26746  804535 1
## 26747  804536 1
## 26748  804537 1
## 26749  804538 1
## 26750  804539 1
## 26751  804540 1
## 26752  804541 1
## 26753  804542 1
## 26754  804543 1
## 26755  804544 1
## 26756  804545 1
## 26757  804546 1
## 26758  804547 1
## 26759  804549 1
## 26760  804550 1
## 26761  804551 1
## 26762  804552 1
## 26763  804553 1
## 26764  804554 1
## 26765  804555 1
## 26766  804556 1
## 26767  804557 1
## 26768  804558 1
## 26769  804559 1
## 26770  804560 1
## 26771  804561 1
## 26772  804562 1
## 26773  804563 1
## 26774  804564 1
## 26775  804565 1
## 26776  804566 1
## 26777  804567 1
## 26778  804568 1
## 26779  804569 1
## 26780  804570 1
## 26781  804571 1
## 26782  804572 1
## 26783  804573 1
## 26784  804574 1
## 26785  804575 1
## 26786  804576 1
## 26787  804577 1
## 26788  804578 1
## 26789  804579 1
## 26790  804580 1
## 26791  804582 1
## 26792  804583 1
## 26793  804584 1
## 26794  804585 1
## 26795  804586 1
## 26796  804587 1
## 26797  804588 1
## 26798  804589 1
## 26799  804590 1
## 26800  804591 1
## 26801  804592 1
## 26802  804593 1
## 26803  804594 1
## 26804  804595 1
## 26805  804596 1
## 26806  804597 1
## 26807  804598 1
## 26808  804599 1
## 26809  804600 1
## 26810  804601 1
## 26811  804602 1
## 26812  804603 1
## 26813  804604 1
## 26814  804605 1
## 26815  804606 1
## 26816  804607 1
## 26817  804608 1
## 26818  804609 1
## 26819  804610 1
## 26820  804611 1
## 26821  804612 1
## 26822  804613 1
## 26823  804614 1
## 26824  804615 1
## 26825  804616 1
## 26826  804617 1
## 26827  804618 1
## 26828  804619 1
## 26829  804620 1
## 26830  804621 1
## 26831  804622 1
## 26832  804623 1
## 26833  804624 1
## 26834  804625 1
## 26835  804626 1
## 26836  804627 1
## 26837  804628 1
## 26838  804629 1
## 26839  804630 1
## 26840  804631 1
## 26841  804632 1
## 26842  804633 1
## 26843  804634 1
## 26844  804635 1
## 26845  804636 1
## 26846  804637 1
## 26847  804638 1
## 26848  804639 1
## 26849  804640 1
## 26850  804641 1
## 26851  804642 1
## 26852  804643 1
## 26853  804644 1
## 26854  804645 1
## 26855  804646 1
## 26856  804647 1
## 26857  804648 1
## 26858  804649 1
## 26859  804651 1
## 26860  804652 1
## 26861  804653 1
## 26862  804654 1
## 26863  804655 1
## 26864  804656 1
## 26865  804657 1
## 26866  804658 1
## 26867  804659 1
## 26868  804660 1
## 26869  804661 1
## 26870  804662 1
## 26871  804663 1
## 26872  804664 1
## 26873  804665 1
## 26874  804666 1
## 26875  804667 1
## 26876  804668 1
## 26877  804669 1
## 26878  804670 1
## 26879  804671 1
## 26880  804672 1
## 26881  804673 1
## 26882  804674 1
## 26883  804675 1
## 26884  804676 1
## 26885  804677 1
## 26886  804678 1
## 26887  804679 1
## 26888  804680 1
## 26889  804681 1
## 26890  804682 1
## 26891  804684 1
## 26892  804685 1
## 26893  804687 1
## 26894  804688 1
## 26895  804689 1
## 26896  804690 1
## 26897  804691 1
## 26898  804692 1
## 26899  804693 1
## 26900  804694 1
## 26901  804695 1
## 26902  804696 1
## 26903  804697 1
## 26904  804698 1
## 26905  804699 1
## 26906  804700 1
## 26907  804701 1
## 26908  804702 1
## 26909  804703 1
## 26910  804704 1
## 26911  804705 1
## 26912  804706 1
## 26913  804707 1
## 26914  804708 1
## 26915  804709 1
## 26916  804710 1
## 26917  804713 1
## 26918  804714 1
## 26919  804715 1
## 26920  804716 1
## 26921  804717 1
## 26922  804718 1
## 26923  804719 1
## 26924  804720 1
## 26925  804721 1
## 26926  804722 1
## 26927  804723 1
## 26928  804724 1
## 26929  804725 1
## 26930  804726 1
## 26931  804727 1
## 26932  804728 1
## 26933  804729 1
## 26934  804730 1
## 26935  804731 1
## 26936  804732 1
## 26937  804733 1
## 26938  804734 1
## 26939  804735 1
## 26940  804736 1
## 26941  804737 1
## 26942  804738 1
## 26943  804739 1
## 26944  804740 1
## 26945  804741 1
## 26946  804742 1
## 26947  804743 1
## 26948  804744 1
## 26949  804745 1
## 26950  804746 1
## 26951  804747 1
## 26952  804748 1
## 26953  804749 1
## 26954  804750 1
## 26955  804751 1
## 26956  804752 1
## 26957  804753 1
## 26958  804754 1
## 26959  804755 1
## 26960  804756 1
## 26961  804757 1
## 26962  804758 1
## 26963  804759 1
## 26964  804760 1
## 26965  804761 1
## 26966  804762 1
## 26967  804763 1
## 26968  804764 1
## 26969  804765 1
## 26970  804766 1
## 26971  804767 1
## 26972  804768 1
## 26973  804769 1
## 26974  804770 1
## 26975  804771 1
## 26976  804772 1
## 26977  804773 1
## 26978  804774 1
## 26979  804775 1
## 26980  804776 1
## 26981  804777 1
## 26982  804778 1
## 26983  804779 1
## 26984  804780 1
## 26985  804781 1
## 26986  804782 1
## 26987  804783 1
## 26988  804784 1
## 26989  804785 1
## 26990  804786 1
## 26991  804787 1
## 26992  804788 1
## 26993  804789 1
## 26994  804790 1
## 26995  804791 1
## 26996  804792 1
## 26997  804793 1
## 26998  804794 1
## 26999  804795 1
## 27000  804796 1
## 27001  804797 1
## 27002  804798 1
## 27003  804799 1
## 27004  804800 1
## 27005  804801 1
## 27006  804802 1
## 27007  804803 1
## 27008  804804 1
## 27009  804805 1
## 27010  804806 1
## 27011  804807 1
## 27012  804808 1
## 27013  804809 1
## 27014  804810 1
## 27015  804811 1
## 27016  804812 1
## 27017  804813 1
## 27018  804814 1
## 27019  804815 1
## 27020  804816 1
## 27021  804817 1
## 27022  804818 1
## 27023  804819 1
## 27024  804820 1
## 27025  804821 1
## 27026  804822 1
## 27027  804823 1
## 27028  804824 1
## 27029  804825 1
## 27030  804826 1
## 27031  804827 1
## 27032  804828 1
## 27033  804829 1
## 27034  804830 1
## 27035  804831 1
## 27036  804832 1
## 27037  804833 1
## 27038  804834 1
## 27039  804835 1
## 27040  804836 1
## 27041  804837 1
## 27042  804838 1
## 27043  804839 1
## 27044  804840 1
## 27045  804841 1
## 27046  804842 1
## 27047  804843 1
## 27048  804844 1
## 27049  804845 1
## 27050  804846 1
## 27051  804847 1
## 27052  804848 1
## 27053  804849 1
## 27054  804850 1
## 27055  804851 1
## 27056  804852 1
## 27057  804853 1
## 27058  804854 1
## 27059  804855 1
## 27060  804856 1
## 27061  804857 1
## 27062  804858 1
## 27063  804859 1
## 27064  804860 1
## 27065  804861 1
## 27066  804862 1
## 27067  804863 1
## 27068  804864 1
## 27069  804865 1
## 27070  804866 1
## 27071  804867 1
## 27072  804868 1
## 27073  804869 1
## 27074  804870 1
## 27075  804871 1
## 27076  804872 1
## 27077  804873 1
## 27078  804874 1
## 27079  804875 1
## 27080  804876 1
## 27081  804877 1
## 27082  804878 1
## 27083  804879 1
## 27084  804880 1
## 27085  804881 1
## 27086  804882 1
## 27087  804883 1
## 27088  804884 1
## 27089  804885 1
## 27090  804886 1
## 27091  804887 1
## 27092  804888 1
## 27093  804889 1
## 27094  804890 1
## 27095  804891 1
## 27096  804892 1
## 27097  804893 1
## 27098  804894 1
## 27099  804895 1
## 27100  804896 1
## 27101  804897 1
## 27102  804898 1
## 27103  804899 1
## 27104  804900 1
## 27105  804901 1
## 27106  804902 1
## 27107  804903 1
## 27108  804904 1
## 27109  804905 1
## 27110  804906 1
## 27111  804907 1
## 27112  804908 1
## 27113  804909 1
## 27114  804910 1
## 27115  804911 1
## 27116  804912 1
## 27117  804913 1
## 27118  804914 1
## 27119  804915 1
## 27120  804916 1
## 27121  804917 1
## 27122  804918 1
## 27123  804919 1
## 27124  804920 1
## 27125  804922 1
## 27126  804923 1
## 27127  804924 1
## 27128  804925 1
## 27129  804926 1
## 27130  804927 1
## 27131  804928 1
## 27132  804929 1
## 27133  804930 1
## 27134  804931 1
## 27135  804932 1
## 27136  804933 1
## 27137  804934 1
## 27138  804935 1
## 27139  804936 1
## 27140  804937 1
## 27141  804938 1
## 27142  804939 1
## 27143  804940 1
## 27144  804941 1
## 27145  804942 1
## 27146  804943 1
## 27147  804944 1
## 27148  804945 1
## 27149  804946 1
## 27150  804947 1
## 27151  804948 1
## 27152  804949 1
## 27153  804950 1
## 27154  804951 1
## 27155  804952 1
## 27156  804953 1
## 27157  804954 1
## 27158  804955 1
## 27159  804956 1
## 27160  804957 1
## 27161  804958 1
## 27162  804959 1
## 27163  804960 1
## 27164  804961 1
## 27165  804962 1
## 27166  804963 1
## 27167  804964 1
## 27168  804965 1
## 27169  804966 1
## 27170  804967 1
## 27171  804968 1
## 27172  804969 1
## 27173  804970 1
## 27174  804971 1
## 27175  804972 1
## 27176  804973 1
## 27177  804974 1
## 27178  804975 1
## 27179  804976 1
## 27180  804977 1
## 27181  804978 1
## 27182  804979 1
## 27183  804980 1
## 27184  804981 1
## 27185  804982 1
## 27186  804983 1
## 27187  804984 1
## 27188  804985 1
## 27189  804986 1
## 27190  804987 1
## 27191  804988 1
## 27192  804989 1
## 27193  804990 1
## 27194  804991 1
## 27195  804992 1
## 27196  804993 1
## 27197  804994 1
## 27198  804995 1
## 27199  804996 1
## 27200  804997 1
## 27201  804998 1
## 27202  804999 1
## 27203  805000 1
## 27204  805001 1
## 27205  805002 1
## 27206  805003 1
## 27207  805004 1
## 27208  805005 1
## 27209  805006 1
## 27210  805007 1
## 27211  805008 1
## 27212  805009 1
## 27213  805010 1
## 27214  805011 1
## 27215  805012 1
## 27216  805013 1
## 27217  805014 1
## 27218  805015 1
## 27219  805016 1
## 27220  805017 1
## 27221  805018 1
## 27222  805019 1
## 27223  805020 1
## 27224  805021 1
## 27225  805022 1
## 27226  805023 1
## 27227  805024 1
## 27228  805025 1
## 27229  805026 1
## 27230  805027 1
## 27231  805028 1
## 27232  805029 1
## 27233  805030 1
## 27234  805031 1
## 27235  805032 1
## 27236  805033 1
## 27237  805034 1
## 27238  805035 1
## 27239  805036 1
## 27240  805037 1
## 27241  805038 1
## 27242  805039 1
## 27243  805040 1
## 27244  805041 1
## 27245  805042 1
## 27246  805043 1
## 27247  805044 1
## 27248  805045 1
## 27249  805047 1
## 27250  805048 1
## 27251  805049 1
## 27252  805050 1
## 27253  805051 1
## 27254  805052 1
## 27255  805053 1
## 27256  805054 1
## 27257  805055 1
## 27258  805056 1
## 27259  805057 1
## 27260  805058 1
## 27261  805059 1
## 27262  805060 1
## 27263  805062 1
## 27264  805063 1
## 27265  805064 1
## 27266  805065 1
## 27267  805066 1
## 27268  805067 1
## 27269  805068 1
## 27270  805069 1
## 27271  805070 1
## 27272  805071 1
## 27273  805072 1
## 27274  805073 1
## 27275  805074 1
## 27276  805075 1
## 27277  805076 1
## 27278  805077 1
## 27279  805078 1
## 27280  805079 1
## 27281  805080 1
## 27282  805081 1
## 27283  805082 1
## 27284  805083 1
## 27285  805084 1
## 27286  805085 1
## 27287  805086 1
## 27288  805087 1
## 27289  805088 1
## 27290  805089 1
## 27291  805090 1
## 27292  805091 1
## 27293  805092 1
## 27294  805093 1
## 27295  805094 1
## 27296  805095 1
## 27297  805096 1
## 27298  805097 1
## 27299  805098 1
## 27300  805099 1
## 27301  805100 1
## 27302  805101 1
## 27303  805102 1
## 27304  805103 1
## 27305  805104 1
## 27306  805105 1
## 27307  805106 1
## 27308  805107 1
## 27309  805108 1
## 27310  805109 1
## 27311  805110 1
## 27312  805111 1
## 27313  805112 1
## 27314  805113 1
## 27315  805114 1
## 27316  805115 1
## 27317  805116 1
## 27318  805117 1
## 27319  805118 1
## 27320  805119 1
## 27321  805120 1
## 27322  805121 1
## 27323  805122 1
## 27324  805123 1
## 27325  805124 1
## 27326  805125 1
## 27327  805126 1
## 27328  805127 1
## 27329  805128 1
## 27330  805129 1
## 27331  805130 1
## 27332  805131 1
## 27333  805132 1
## 27334  805133 1
## 27335  805134 1
## 27336  805135 1
## 27337  805136 1
## 27338  805137 1
## 27339  805138 1
## 27340  805139 1
## 27341  805140 1
## 27342  805141 1
## 27343  805142 1
## 27344  805143 1
## 27345  805144 1
## 27346  805145 1
## 27347  805146 1
## 27348  805147 1
## 27349  805148 1
## 27350  805149 1
## 27351  805150 1
## 27352  805151 1
## 27353  805152 1
## 27354  805153 1
## 27355  805154 1
## 27356  805155 1
## 27357  805156 1
## 27358  805157 1
## 27359  805158 1
## 27360  805159 1
## 27361  805160 1
## 27362  805161 1
## 27363  805162 1
## 27364  805163 1
## 27365  805164 1
## 27366  805165 1
## 27367  805166 1
## 27368  805167 1
## 27369  805168 1
## 27370  805169 1
## 27371  805170 1
## 27372  805171 1
## 27373  805172 1
## 27374  805173 1
## 27375  805174 1
## 27376  805175 1
## 27377  805176 1
## 27378  805177 1
## 27379  805178 1
## 27380  805179 1
## 27381  805180 1
## 27382  805181 1
## 27383  805182 1
## 27384  805183 1
## 27385  805184 1
## 27386  805185 1
## 27387  805186 1
## 27388  805187 1
## 27389  805188 1
## 27390  805189 1
## 27391  805190 1
## 27392  805191 1
## 27393  805192 1
## 27394  805194 1
## 27395  805195 1
## 27396  805196 1
## 27397  805197 1
## 27398  805198 1
## 27399  805199 1
## 27400  805200 1
## 27401  805202 1
## 27402  805203 1
## 27403  805204 1
## 27404  805205 1
## 27405  805206 1
## 27406  805207 1
## 27407  805208 1
## 27408  805209 1
## 27409  805210 1
## 27410  805211 1
## 27411  805212 1
## 27412  805213 1
## 27413  805214 1
## 27414  805215 1
## 27415  805216 1
## 27416  805217 1
## 27417  805218 1
## 27418  805219 1
## 27419  805220 1
## 27420  805221 1
## 27421  805222 1
## 27422  805223 1
## 27423  805224 1
## 27424  805225 1
## 27425  805226 1
## 27426  805227 1
## 27427  805228 1
## 27428  805229 1
## 27429  805230 1
## 27430  805231 1
## 27431  805232 1
## 27432  805233 1
## 27433  805234 1
## 27434  805235 1
## 27435  805236 1
## 27436  805237 1
## 27437  805238 1
## 27438  805239 1
## 27439  805240 1
## 27440  805241 1
## 27441  805242 1
## 27442  805243 1
## 27443  805244 1
## 27444  805245 1
## 27445  805246 1
## 27446  805247 1
## 27447  805248 1
## 27448  805249 1
## 27449  805250 1
## 27450  805251 1
## 27451  805252 1
## 27452  805253 1
## 27453  805254 1
## 27454  805255 1
## 27455  805256 1
## 27456  805257 1
## 27457  805258 1
## 27458  805259 1
## 27459  805260 1
## 27460  805261 1
## 27461  805262 1
## 27462  805263 1
## 27463  805264 1
## 27464  805265 1
## 27465  805266 1
## 27466  805267 1
## 27467  805268 1
## 27468  805269 1
## 27469  805270 1
## 27470  805271 1
## 27471  805272 1
## 27472  805273 1
## 27473  805274 1
## 27474  805275 1
## 27475  805276 1
## 27476  805277 1
## 27477  805278 1
## 27478  805279 1
## 27479  805280 1
## 27480  805281 1
## 27481  805282 1
## 27482  805283 1
## 27483  805284 1
## 27484  805285 1
## 27485  805286 1
## 27486  805287 1
## 27487  805288 1
## 27488  805289 1
## 27489  805290 1
## 27490  805291 1
## 27491  805292 1
## 27492  805293 1
## 27493  805294 1
## 27494  805295 1
## 27495  805296 1
## 27496  805297 1
## 27497  805298 1
## 27498  805299 1
## 27499  805300 1
## 27500  805301 1
## 27501  805302 1
## 27502  805303 1
## 27503  805304 1
## 27504  805305 1
## 27505  805306 1
## 27506  805307 1
## 27507  805308 1
## 27508  805309 1
## 27509  805311 1
## 27510  805312 1
## 27511  805313 1
## 27512  805314 1
## 27513  805315 1
## 27514  805316 1
## 27515  805317 1
## 27516  805318 1
## 27517  805319 1
## 27518  805320 1
## 27519  805321 1
## 27520  805322 1
## 27521  805323 1
## 27522  805324 1
## 27523  805325 1
## 27524  805326 1
## 27525  805327 1
## 27526  805328 1
## 27527  805329 1
## 27528  805330 1
## 27529  805331 1
## 27530  805332 1
## 27531  805333 1
## 27532  805334 1
## 27533  805335 1
## 27534  805336 1
## 27535  805337 1
## 27536  805338 1
## 27537  805339 1
## 27538  805340 1
## 27539  805341 1
## 27540  805342 1
## 27541  805343 1
## 27542  805344 1
## 27543  805345 1
## 27544  805346 1
## 27545  805347 1
## 27546  805348 1
## 27547  805349 1
## 27548  805350 1
## 27549  805351 1
## 27550  805352 1
## 27551  805353 1
## 27552  805354 1
## 27553  805355 1
## 27554  805356 1
## 27555  805357 1
## 27556  805358 1
## 27557  805359 1
## 27558  805360 1
## 27559  805361 1
## 27560  805362 1
## 27561  805363 1
## 27562  805364 1
## 27563  805365 1
## 27564  805366 1
## 27565  805367 1
## 27566  805368 1
## 27567  805369 1
## 27568  805370 1
## 27569  805371 1
## 27570  805372 1
## 27571  805373 1
## 27572  805374 1
## 27573  805375 1
## 27574  805376 1
## 27575  805377 1
## 27576  805378 1
## 27577  805379 1
## 27578  805380 1
## 27579  805381 1
## 27580  805382 1
## 27581  805383 1
## 27582  805384 1
## 27583  805385 1
## 27584  805386 1
## 27585  805387 1
## 27586  805388 1
## 27587  805389 1
## 27588  805390 1
## 27589  805391 1
## 27590  805392 1
## 27591  805393 1
## 27592  805394 1
## 27593  805395 1
## 27594  805396 1
## 27595  805397 1
## 27596  805398 1
## 27597  805399 1
## 27598  805400 1
## 27599  805401 1
## 27600  805402 1
## 27601  805403 1
## 27602  805404 1
## 27603  805405 1
## 27604  805406 1
## 27605  805407 1
## 27606  805409 1
## 27607  805410 1
## 27608  805411 1
## 27609  805412 1
## 27610  805413 1
## 27611  805414 1
## 27612  805415 1
## 27613  805416 1
## 27614  805417 1
## 27615  805418 1
## 27616  805419 1
## 27617  805420 1
## 27618  805421 1
## 27619  805422 1
## 27620  805423 1
## 27621  805424 1
## 27622  805425 1
## 27623  805426 1
## 27624  805427 1
## 27625  805428 1
## 27626  805429 1
## 27627  805430 1
## 27628  805431 1
## 27629  805432 1
## 27630  805433 1
## 27631  805434 1
## 27632  805435 1
## 27633  805436 1
## 27634  805437 1
## 27635  805438 1
## 27636  805439 1
## 27637  805440 1
## 27638  805441 1
## 27639  805442 1
## 27640  805443 1
## 27641  805444 1
## 27642  805445 1
## 27643  805446 1
## 27644  805447 1
## 27645  805448 1
## 27646  805449 1
## 27647  805450 1
## 27648  805451 1
## 27649  805452 1
## 27650  805453 1
## 27651  805454 1
## 27652  805455 1
## 27653  805456 1
## 27654  805457 1
## 27655  805458 1
## 27656  805459 1
## 27657  805460 1
## 27658  805461 1
## 27659  805462 1
## 27660  805463 1
## 27661  805464 1
## 27662  805465 1
## 27663  805466 1
## 27664  805467 1
## 27665  805468 1
## 27666  805469 1
## 27667  805470 1
## 27668  805471 1
## 27669  805472 1
## 27670  805473 1
## 27671  805474 1
## 27672  805475 1
## 27673  805476 1
## 27674  805477 1
## 27675  805478 1
## 27676  805479 1
## 27677  805480 1
## 27678  805481 1
## 27679  805482 1
## 27680  805483 1
## 27681  805484 1
## 27682  805485 1
## 27683  805486 1
## 27684  805487 1
## 27685  805488 1
## 27686  805489 1
## 27687  805490 1
## 27688  805491 1
## 27689  805492 1
## 27690  805494 1
## 27691  805495 1
## 27692  805496 1
## 27693  805497 1
## 27694  805498 1
## 27695  805499 1
## 27696  805500 1
## 27697  805501 1
## 27698  805502 1
## 27699  805503 1
## 27700  805504 1
## 27701  805505 1
## 27702  805506 1
## 27703  805507 1
## 27704  805508 1
## 27705  805509 1
## 27706  805510 1
## 27707  805511 1
## 27708  805512 1
## 27709  805513 1
## 27710  805514 1
## 27711  805515 1
## 27712  805516 1
## 27713  805517 1
## 27714  805518 1
## 27715  805519 1
## 27716  805520 1
## 27717  805521 1
## 27718  805522 1
## 27719  805523 1
## 27720  805524 1
## 27721  805525 1
## 27722  805526 1
## 27723  805527 1
## 27724  805528 1
## 27725  805529 1
## 27726  805530 1
## 27727  805531 1
## 27728  805532 1
## 27729  805533 1
## 27730  805534 1
## 27731  805535 1
## 27732  805536 1
## 27733  805537 1
## 27734  805538 1
## 27735  805539 1
## 27736  805540 1
## 27737  805541 1
## 27738  805542 1
## 27739  805543 1
## 27740  805545 1
## 27741  805546 1
## 27742  805547 1
## 27743  805548 1
## 27744  805549 1
## 27745  805550 1
## 27746  805551 1
## 27747  805552 1
## 27748  805553 1
## 27749  805554 1
## 27750  805555 1
## 27751  805556 1
## 27752  805557 1
## 27753  805558 1
## 27754  805559 1
## 27755  805560 1
## 27756  805561 1
## 27757  805562 1
## 27758  805563 1
## 27759  805564 1
## 27760  805565 1
## 27761  805566 1
## 27762  805567 1
## 27763  805568 1
## 27764  805569 1
## 27765  805570 1
## 27766  805571 1
## 27767  805572 1
## 27768  805573 1
## 27769  805574 1
## 27770  805575 1
## 27771  805576 1
## 27772  805577 1
## 27773  805578 1
## 27774  805579 1
## 27775  805580 1
## 27776  805581 1
## 27777  805582 1
## 27778  805583 1
## 27779  805584 1
## 27780  805585 1
## 27781  805586 1
## 27782  805587 1
## 27783  805588 1
## 27784  805589 1
## 27785  805590 1
## 27786  805591 1
## 27787  805592 1
## 27788  805593 1
## 27789  805594 1
## 27790  805595 1
## 27791  805596 1
## 27792  805597 1
## 27793  805598 1
## 27794  805599 1
## 27795  805600 1
## 27796  805601 1
## 27797  805602 1
## 27798  805603 1
## 27799  805604 1
## 27800  805605 1
## 27801  805606 1
## 27802  805607 1
## 27803  805608 1
## 27804  805609 1
## 27805  805610 1
## 27806  805611 1
## 27807  805612 1
## 27808  805613 1
## 27809  805614 1
## 27810  805615 1
## 27811  805616 1
## 27812  805617 1
## 27813  805618 1
## 27814  805619 1
## 27815  805620 1
## 27816  805621 1
## 27817  805622 1
## 27818  805623 1
## 27819  805624 1
## 27820  805625 1
## 27821  805626 1
## 27822  805627 1
## 27823  805628 1
## 27824  805629 1
## 27825  805630 1
## 27826  805631 1
## 27827  805632 1
## 27828  805633 1
## 27829  805634 1
## 27830  805635 1
## 27831  805636 1
## 27832  805637 1
## 27833  805638 1
## 27834  805639 1
## 27835  805640 1
## 27836  805641 1
## 27837  805642 1
## 27838  805643 1
## 27839  805644 1
## 27840  805645 1
## 27841  805646 1
## 27842  805647 1
## 27843  805648 1
## 27844  805649 1
## 27845  805650 1
## 27846  805651 1
## 27847  805652 1
## 27848  805653 1
## 27849  805654 1
## 27850  805655 1
## 27851  805656 1
## 27852  805657 1
## 27853  805658 1
## 27854  805659 1
## 27855  805660 1
## 27856  805661 1
## 27857  805662 1
## 27858  805663 1
## 27859  805664 1
## 27860  805665 1
## 27861  805666 1
## 27862  805667 1
## 27863  805668 1
## 27864  805669 1
## 27865  805670 1
## 27866  805671 1
## 27867  805672 1
## 27868  805673 1
## 27869  805674 1
## 27870  805675 1
## 27871  805676 1
## 27872  805677 1
## 27873  805678 1
## 27874  805679 1
## 27875  805680 1
## 27876  805681 1
## 27877  805682 1
## 27878  805683 1
## 27879  805684 1
## 27880  805685 1
## 27881  805686 1
## 27882  805687 1
## 27883  805688 1
## 27884  805689 1
## 27885  805690 1
## 27886  805691 1
## 27887  805692 1
## 27888  805693 1
## 27889  805694 1
## 27890  805695 1
## 27891  805696 1
## 27892  805697 1
## 27893  805698 1
## 27894  805699 1
## 27895  805700 1
## 27896  805701 1
## 27897  805702 1
## 27898  805703 1
## 27899  805704 1
## 27900  805705 1
## 27901  805706 1
## 27902  805707 1
## 27903  805708 1
## 27904  805709 1
## 27905  805710 1
## 27906  805711 1
## 27907  805712 1
## 27908  805713 1
## 27909  805714 1
## 27910  805715 1
## 27911  805716 1
## 27912  805717 1
## 27913  805718 1
## 27914  805719 1
## 27915  805720 1
## 27916  805721 1
## 27917  805722 1
## 27918  805723 1
## 27919  805724 1
## 27920  805725 1
## 27921  805726 1
## 27922  805727 1
## 27923  805728 1
## 27924  805729 1
## 27925  805730 1
## 27926  805731 1
## 27927  805732 1
## 27928  805733 1
## 27929  805734 1
## 27930  805735 1
## 27931  805736 1
## 27932  805737 1
## 27933  805738 1
## 27934  805739 1
## 27935  805740 1
## 27936  805741 1
## 27937  805742 1
## 27938  805743 1
## 27939  805744 1
## 27940  805745 1
## 27941  805746 1
## 27942  805747 1
## 27943  805748 1
## 27944  805749 1
## 27945  805750 1
## 27946  805751 1
## 27947  805752 1
## 27948  805753 1
## 27949  805754 1
## 27950  805755 1
## 27951  805756 1
## 27952  805757 1
## 27953  805758 1
## 27954  805759 1
## 27955  805760 1
## 27956  805761 1
## 27957  805762 1
## 27958  805763 1
## 27959  805764 1
## 27960  805765 1
## 27961  805766 1
## 27962  805767 1
## 27963  805768 1
## 27964  805769 1
## 27965  805770 1
## 27966  805771 1
## 27967  805772 1
## 27968  805773 1
## 27969  805774 1
## 27970  805775 1
## 27971  805776 1
## 27972  805777 1
## 27973  805778 1
## 27974  805779 1
## 27975  805780 1
## 27976  805781 1
## 27977  805782 1
## 27978  805783 1
## 27979  805784 1
## 27980  805785 1
## 27981  805786 1
## 27982  805787 1
## 27983  805788 1
## 27984  805789 1
## 27985  805790 1
## 27986  805791 1
## 27987  805792 1
## 27988  805793 1
## 27989  805794 1
## 27990  805795 1
## 27991  805796 1
## 27992  805797 1
## 27993  805798 1
## 27994  805799 1
## 27995  805800 1
## 27996  805801 1
## 27997  805802 1
## 27998  805803 1
## 27999  805804 1
## 28000  805805 1
## 28001  805806 1
## 28002  805807 1
## 28003  805808 1
## 28004  805809 1
## 28005  805810 1
## 28006  805811 1
## 28007  805812 1
## 28008  805813 1
## 28009  805814 1
## 28010  805815 1
## 28011  805816 1
## 28012  805817 1
## 28013  805818 1
## 28014  805819 1
## 28015  805820 1
## 28016  805821 1
## 28017  805822 1
## 28018  805823 1
## 28019  805824 1
## 28020  805825 1
## 28021  805826 1
## 28022  805827 1
## 28023  805828 1
## 28024  805829 1
## 28025  805830 1
## 28026  805831 1
## 28027  805832 1
## 28028  805833 1
## 28029  805834 1
## 28030  805835 1
## 28031  805836 1
## 28032  805837 1
## 28033  805838 1
## 28034  805839 1
## 28035  805840 1
## 28036  805841 1
## 28037  805842 1
## 28038  805843 1
## 28039  805844 1
## 28040  805845 1
## 28041  805846 1
## 28042  805847 1
## 28043  805848 1
## 28044  805849 1
## 28045  805850 1
## 28046  805851 1
## 28047  805852 1
## 28048  805853 1
## 28049  805854 1
## 28050  805855 1
## 28051  805856 1
## 28052  805857 1
## 28053  805858 1
## 28054  805859 1
## 28055  805860 1
## 28056  805861 1
## 28057  805862 1
## 28058  805863 1
## 28059  805864 1
## 28060  805865 1
## 28061  805866 1
## 28062  805867 1
## 28063  805868 1
## 28064  805870 1
## 28065  805871 1
## 28066  805872 1
## 28067  805873 1
## 28068  805874 1
## 28069  805875 1
## 28070  805876 1
## 28071  805877 1
## 28072  805878 1
## 28073  805879 1
## 28074  805880 1
## 28075  805881 1
## 28076  805882 1
## 28077  805883 1
## 28078  805884 1
## 28079  805885 1
## 28080  805886 1
## 28081  805887 1
## 28082  805888 1
## 28083  805889 1
## 28084  805890 1
## 28085  805891 1
## 28086  805892 1
## 28087  805893 1
## 28088  805894 1
## 28089  805895 1
## 28090  805896 1
## 28091  805897 1
## 28092  805898 1
## 28093  805899 1
## 28094  805900 1
## 28095  805901 1
## 28096  805902 1
## 28097  805903 1
## 28098  805904 1
## 28099  805905 1
## 28100  805906 1
## 28101  805907 1
## 28102  805908 1
## 28103  805909 1
## 28104  805910 1
## 28105  805911 1
## 28106  805912 1
## 28107  805913 1
## 28108  805914 1
## 28109  805915 1
## 28110  805916 1
## 28111  805917 1
## 28112  805918 1
## 28113  805919 1
## 28114  805920 1
## 28115  805921 1
## 28116  805922 1
## 28117  805923 1
## 28118  805924 1
## 28119  805925 1
## 28120  805926 1
## 28121  805927 1
## 28122  805928 1
## 28123  805929 1
## 28124  805930 1
## 28125  805931 1
## 28126  805932 1
## 28127  805933 1
## 28128  805934 1
## 28129  805935 1
## 28130  805936 1
## 28131  805937 1
## 28132  805938 1
## 28133  805939 1
## 28134  805940 1
## 28135  805941 1
## 28136  805942 1
## 28137  805943 1
## 28138  805944 1
## 28139  805945 1
## 28140  805946 1
## 28141  805947 1
## 28142  805948 1
## 28143  805949 1
## 28144  805950 1
## 28145  805951 1
## 28146  805952 1
## 28147  805953 1
## 28148  805954 1
## 28149  805955 1
## 28150  805956 1
## 28151  805957 1
## 28152  805958 1
## 28153  805959 1
## 28154  805960 1
## 28155  805961 1
## 28156  805962 1
## 28157  805963 1
## 28158  805964 1
## 28159  805965 1
## 28160  805966 1
## 28161  805967 1
## 28162  805968 1
## 28163  805969 1
## 28164  805970 1
## 28165  805972 1
## 28166  805973 1
## 28167  805974 1
## 28168  805975 1
## 28169  805976 1
## 28170  805977 1
## 28171  805978 1
## 28172  805979 1
## 28173  805980 1
## 28174  805981 1
## 28175  805982 1
## 28176  805983 1
## 28177  805984 1
## 28178  805985 1
## 28179  805986 1
## 28180  805987 1
## 28181  805988 1
## 28182  805989 1
## 28183  805990 1
## 28184  805991 1
## 28185  805992 1
## 28186  805993 1
## 28187  805994 1
## 28188  805995 1
## 28189  805997 1
## 28190  805998 1
## 28191  805999 1
## 28192  806000 1
## 28193  806001 1
## 28194  806002 1
## 28195  806003 1
## 28196  806004 1
## 28197  806005 1
## 28198  806006 1
## 28199  806007 1
## 28200  806008 1
## 28201  806009 1
## 28202  806010 1
## 28203  806011 1
## 28204  806012 1
## 28205  806013 1
## 28206  806014 1
## 28207  806015 1
## 28208  806016 1
## 28209  806017 1
## 28210  806018 1
## 28211  806019 1
## 28212  806020 1
## 28213  806021 1
## 28214  806022 1
## 28215  806023 1
## 28216  806024 1
## 28217  806025 1
## 28218  806026 1
## 28219  806027 1
## 28220  806028 1
## 28221  806029 1
## 28222  806030 1
## 28223  806031 1
## 28224  806032 1
## 28225  806033 1
## 28226  806034 1
## 28227  806035 1
## 28228  806036 1
## 28229  806037 1
## 28230  806038 1
## 28231  806039 1
## 28232  806040 1
## 28233  806041 1
## 28234  806042 1
## 28235  806043 1
## 28236  806044 1
## 28237  806045 1
## 28238  806046 1
## 28239  806047 1
## 28240  806048 1
## 28241  806049 1
## 28242  806050 1
## 28243  806051 1
## 28244  806052 1
## 28245  806053 1
## 28246  806054 1
## 28247  806055 1
## 28248  806056 1
## 28249  806057 1
## 28250  806058 1
## 28251  806059 1
## 28252  806060 1
## 28253  806061 1
## 28254  806062 1
## 28255  806063 1
## 28256  806064 1
## 28257  806065 1
## 28258  806066 1
## 28259  806067 1
## 28260  806068 1
## 28261  806069 1
## 28262  806070 1
## 28263  806071 1
## 28264  806072 1
## 28265  806073 1
## 28266  806074 1
## 28267  806075 1
## 28268  806076 1
## 28269  806077 1
## 28270  806078 1
## 28271  806079 1
## 28272  806080 1
## 28273  806081 1
## 28274  806082 1
## 28275  806083 1
## 28276  806084 1
## 28277  806085 1
## 28278  806086 1
## 28279  806087 1
## 28280  806088 1
## 28281  806089 1
## 28282  806090 1
## 28283  806091 1
## 28284  806092 1
## 28285  806093 1
## 28286  806094 1
## 28287  806095 1
## 28288  806096 1
## 28289  806097 1
## 28290  806098 1
## 28291  806099 1
## 28292  806100 1
## 28293  806101 1
## 28294  806102 1
## 28295  806103 1
## 28296  806104 1
## 28297  806105 1
## 28298  806106 1
## 28299  806108 1
## 28300  806109 1
## 28301  806110 1
## 28302  806111 1
## 28303  806112 1
## 28304  806113 1
## 28305  806114 1
## 28306  806115 1
## 28307  806116 1
## 28308  806117 1
## 28309  806118 1
## 28310  806119 1
## 28311  806120 1
## 28312  806121 1
## 28313  806122 1
## 28314  806123 1
## 28315  806124 1
## 28316  806125 1
## 28317  806126 1
## 28318  806127 1
## 28319  806128 1
## 28320  806129 1
## 28321  806130 1
## 28322  806131 1
## 28323  806132 1
## 28324  806133 1
## 28325  806134 1
## 28326  806135 1
## 28327  806136 1
## 28328  806137 1
## 28329  806138 1
## 28330  806139 1
## 28331  806140 1
## 28332  806141 1
## 28333  806142 1
## 28334  806143 1
## 28335  806144 1
## 28336  806145 1
## 28337  806146 1
## 28338  806147 1
## 28339  806148 1
## 28340  806149 1
## 28341  806151 1
## 28342  806152 1
## 28343  806153 1
## 28344  806154 1
## 28345  806155 1
## 28346  806156 1
## 28347  806157 1
## 28348  806158 1
## 28349  806159 1
## 28350  806160 1
## 28351  806161 1
## 28352  806162 1
## 28353  806163 1
## 28354  806165 1
## 28355  806166 1
## 28356  806167 1
## 28357  806168 1
## 28358  806169 1
## 28359  806170 1
## 28360  806171 1
## 28361  806172 1
## 28362  806173 1
## 28363  806174 1
## 28364  806175 1
## 28365  806176 1
## 28366  806177 1
## 28367  806178 1
## 28368  806180 1
## 28369  806181 1
## 28370  806182 1
## 28371  806183 1
## 28372  806184 1
## 28373  806185 1
## 28374  806186 1
## 28375  806187 1
## 28376  806188 1
## 28377  806189 1
## 28378  806190 1
## 28379  806191 1
## 28380  806192 1
## 28381  806193 1
## 28382  806194 1
## 28383  806195 1
## 28384  806196 1
## 28385  806197 1
## 28386  806198 1
## 28387  806199 1
## 28388  806200 1
## 28389  806201 1
## 28390  806202 1
## 28391  806203 1
## 28392  806204 1
## 28393  806205 1
## 28394  806206 1
## 28395  806207 1
## 28396  806208 1
## 28397  806209 1
## 28398  806210 1
## 28399  806211 1
## 28400  806212 1
## 28401  806213 1
## 28402  806214 1
## 28403  806215 1
## 28404  806216 1
## 28405  806217 1
## 28406  806218 1
## 28407  806219 1
## 28408  806220 1
## 28409  806221 1
## 28410  806222 1
## 28411  806223 1
## 28412  806224 1
## 28413  806225 1
## 28414  806226 1
## 28415  806227 1
## 28416  806228 1
## 28417  806229 1
## 28418  806230 1
## 28419  806231 1
## 28420  806232 1
## 28421  806233 1
## 28422  806234 1
## 28423  806235 1
## 28424  806236 1
## 28425  806237 1
## 28426  806238 1
## 28427  806239 1
## 28428  806240 1
## 28429  806241 1
## 28430  806242 1
## 28431  806243 1
## 28432  806244 1
## 28433  806245 1
## 28434  806246 1
## 28435  806247 1
## 28436  806248 1
## 28437  806249 1
## 28438  806250 1
## 28439  806251 1
## 28440  806252 1
## 28441  806253 1
## 28442  806254 1
## 28443  806255 1
## 28444  806256 1
## 28445  806257 1
## 28446  806258 1
## 28447  806259 1
## 28448  806260 1
## 28449  806261 1
## 28450  806262 1
## 28451  806263 1
## 28452  806264 1
## 28453  806265 1
## 28454  806266 1
## 28455  806267 1
## 28456  806268 1
## 28457  806269 1
## 28458  806270 1
## 28459  806271 1
## 28460  806272 1
## 28461  806273 1
## 28462  806274 1
## 28463  806275 1
## 28464  806277 1
## 28465  806278 1
## 28466  806279 1
## 28467  806280 1
## 28468  806281 1
## 28469  806282 1
## 28470  806283 1
## 28471  806284 1
## 28472  806285 1
## 28473  806286 1
## 28474  806287 1
## 28475  806288 1
## 28476  806289 1
## 28477  806290 1
## 28478  806291 1
## 28479  806292 1
## 28480  806293 1
## 28481  806294 1
## 28482  806295 1
## 28483  806296 1
## 28484  806297 1
## 28485  806298 1
## 28486  806299 1
## 28487  806300 1
## 28488  806301 1
## 28489  806302 1
## 28490  806303 1
## 28491  806304 1
## 28492  806305 1
## 28493  806306 1
## 28494  806307 1
## 28495  806308 1
## 28496  806309 1
## 28497  806310 1
## 28498  806311 1
## 28499  806312 1
## 28500  806313 1
## 28501  806314 1
## 28502  806315 1
## 28503  806316 1
## 28504  806317 1
## 28505  806318 1
## 28506  806319 1
## 28507  806320 1
## 28508  806321 1
## 28509  806322 1
## 28510  806323 1
## 28511  806324 1
## 28512  806325 1
## 28513  806326 1
## 28514  806327 1
## 28515  806328 1
## 28516  806329 1
## 28517  806331 1
## 28518  806332 1
## 28519  806333 1
## 28520  806334 1
## 28521  806335 1
## 28522  806336 1
## 28523  806337 1
## 28524  806338 1
## 28525  806339 1
## 28526  806340 1
## 28527  806341 1
## 28528  806342 1
## 28529  806343 1
## 28530  806344 1
## 28531  806345 1
## 28532  806346 1
## 28533  806347 1
## 28534  806348 1
## 28535  806349 1
## 28536  806350 1
## 28537  806351 1
## 28538  806352 1
## 28539  806353 1
## 28540  806354 1
## 28541  806355 1
## 28542  806356 1
## 28543  806357 1
## 28544  806358 1
## 28545  806359 1
## 28546  806360 1
## 28547  806361 1
## 28548  806362 1
## 28549  806363 1
## 28550  806364 1
## 28551  806365 1
## 28552  806366 1
## 28553  806367 1
## 28554  806368 1
## 28555  806369 1
## 28556  806370 1
## 28557  806371 1
## 28558  806372 1
## 28559  806373 1
## 28560  806374 1
## 28561  806375 1
## 28562  806376 1
## 28563  806377 1
## 28564  806378 1
## 28565  806379 1
## 28566  806380 1
## 28567  806381 1
## 28568  806382 1
## 28569  806383 1
## 28570  806384 1
## 28571  806385 1
## 28572  806386 1
## 28573  806387 1
## 28574  806388 1
## 28575  806389 1
## 28576  806390 1
## 28577  806391 1
## 28578  806392 1
## 28579  806393 1
## 28580  806394 1
## 28581  806395 1
## 28582  806396 1
## 28583  806397 1
## 28584  806398 1
## 28585  806399 1
## 28586  806400 1
## 28587  806401 1
## 28588  806402 1
## 28589  806403 1
## 28590  806404 1
## 28591  806405 1
## 28592  806406 1
## 28593  806407 1
## 28594  806408 1
## 28595  806409 1
## 28596  806410 1
## 28597  806411 1
## 28598  806412 1
## 28599  806413 1
## 28600  806414 1
## 28601  806415 1
## 28602  806416 1
## 28603  806417 1
## 28604  806418 1
## 28605  806419 1
## 28606  806420 1
## 28607  806421 1
## 28608  806422 1
## 28609  806423 1
## 28610  806424 1
## 28611  806425 1
## 28612  806426 1
## 28613  806427 1
## 28614  806428 1
## 28615  806429 1
## 28616  806430 1
## 28617  806431 1
## 28618  806432 1
## 28619  806433 1
## 28620  806434 1
## 28621  806435 1
## 28622  806436 1
## 28623  806437 1
## 28624  806438 1
## 28625  806439 1
## 28626  806440 1
## 28627  806441 1
## 28628  806442 1
## 28629  806443 1
## 28630  806444 1
## 28631  806445 1
## 28632  806446 1
## 28633  806447 1
## 28634  806448 1
## 28635  806449 1
## 28636  806450 1
## 28637  806451 1
## 28638  806452 1
## 28639  806453 1
## 28640  806455 1
## 28641  806456 1
## 28642  806457 1
## 28643  806458 1
## 28644  806459 1
## 28645  806460 1
## 28646  806461 1
## 28647  806462 1
## 28648  806463 1
## 28649  806464 1
## 28650  806465 1
## 28651  806466 1
## 28652  806467 1
## 28653  806468 1
## 28654  806469 1
## 28655  806470 1
## 28656  806471 1
## 28657  806472 1
## 28658  806473 1
## 28659  806474 1
## 28660  806475 1
## 28661  806476 1
## 28662  806477 1
## 28663  806478 1
## 28664  806479 1
## 28665  806480 1
## 28666  806481 1
## 28667  806482 1
## 28668  806483 1
## 28669  806484 1
## 28670  806485 1
## 28671  806486 1
## 28672  806487 1
## 28673  806488 1
## 28674  806489 1
## 28675  806490 1
## 28676  806491 1
## 28677  806492 1
## 28678  806494 1
## 28679  806495 1
## 28680  806496 1
## 28681  806497 1
## 28682  806498 1
## 28683  806499 1
## 28684  806500 1
## 28685  806501 1
## 28686  806502 1
## 28687  806503 1
## 28688  806504 1
## 28689  806505 1
## 28690  806506 1
## 28691  806507 1
## 28692  806508 1
## 28693  806509 1
## 28694  806510 1
## 28695  806511 1
## 28696  806512 1
## 28697  806513 1
## 28698  806514 1
## 28699  806515 1
## 28700  806516 1
## 28701  806517 1
## 28702  806518 1
## 28703  806519 1
## 28704  806520 1
## 28705  806521 1
## 28706  806522 1
## 28707  806523 1
## 28708  806524 1
## 28709  806525 1
## 28710  806526 1
## 28711  806527 1
## 28712  806528 1
## 28713  806529 1
## 28714  806530 1
## 28715  806531 1
## 28716  806532 1
## 28717  806533 1
## 28718  806534 1
## 28719  806535 1
## 28720  806536 1
## 28721  806537 1
## 28722  806538 1
## 28723  806539 1
## 28724  806540 1
## 28725  806541 1
## 28726  806542 1
## 28727  806543 1
## 28728  806544 1
## 28729  806545 1
## 28730  806546 1
## 28731  806547 1
## 28732  806548 1
## 28733  806549 1
## 28734  806550 1
## 28735  806551 1
## 28736  806552 1
## 28737  806553 1
## 28738  806554 1
## 28739  806555 1
## 28740  806556 1
## 28741  806557 1
## 28742  806558 1
## 28743  806559 1
## 28744  806560 1
## 28745  806561 1
## 28746  806562 1
## 28747  806563 1
## 28748  806564 1
## 28749  806565 1
## 28750  806566 1
## 28751  806567 1
## 28752  806568 1
## 28753  806569 1
## 28754  806570 1
## 28755  806571 1
## 28756  806572 1
## 28757  806573 1
## 28758  806574 1
## 28759  806575 1
## 28760  806576 1
## 28761  806577 1
## 28762  806578 1
## 28763  806579 1
## 28764  806580 1
## 28765  806581 1
## 28766  806582 1
## 28767  806583 1
## 28768  806584 1
## 28769  806585 1
## 28770  806586 1
## 28771  806587 1
## 28772  806588 1
## 28773  806589 1
## 28774  806590 1
## 28775  806591 1
## 28776  806592 1
## 28777  806593 1
## 28778  806594 1
## 28779  806595 1
## 28780  806596 1
## 28781  806597 1
## 28782  806598 1
## 28783  806599 1
## 28784  806600 1
## 28785  806601 1
## 28786  806602 1
## 28787  806603 1
## 28788  806604 1
## 28789  806605 1
## 28790  806606 1
## 28791  806607 1
## 28792  806608 1
## 28793  806609 1
## 28794  806611 1
## 28795  806612 1
## 28796  806613 1
## 28797  806614 1
## 28798  806615 1
## 28799  806616 1
## 28800  806617 1
## 28801  806618 1
## 28802  806619 1
## 28803  806620 1
## 28804  806621 1
## 28805  806622 1
## 28806  806623 1
## 28807  806624 1
## 28808  806625 1
## 28809  806626 1
## 28810  806627 1
## 28811  806628 1
## 28812  806629 1
## 28813  806630 1
## 28814  806631 1
## 28815  806632 1
## 28816  806633 1
## 28817  806634 1
## 28818  806635 1
## 28819  806636 1
## 28820  806637 1
## 28821  806638 1
## 28822  806639 1
## 28823  806640 1
## 28824  806641 1
## 28825  806642 1
## 28826  806643 1
## 28827  806644 1
## 28828  806645 1
## 28829  806646 1
## 28830  806647 1
## 28831  806648 1
## 28832  806649 1
## 28833  806650 1
## 28834  806651 1
## 28835  806652 1
## 28836  806653 1
## 28837  806654 1
## 28838  806655 1
## 28839  806656 1
## 28840  806657 1
## 28841  806658 1
## 28842  806659 1
## 28843  806660 1
## 28844  806661 1
## 28845  806662 1
## 28846  806663 1
## 28847  806664 1
## 28848  806665 1
## 28849  806666 1
## 28850  806667 1
## 28851  806668 1
## 28852  806669 1
## 28853  806670 1
## 28854  806671 1
## 28855  806672 1
## 28856  806673 1
## 28857  806674 1
## 28858  806675 1
## 28859  806676 1
## 28860  806677 1
## 28861  806678 1
## 28862  806679 1
## 28863  806680 1
## 28864  806681 1
## 28865  806682 1
## 28866  806683 1
## 28867  806684 1
## 28868  806685 1
## 28869  806686 1
## 28870  806687 1
## 28871  806688 1
## 28872  806689 1
## 28873  806690 1
## 28874  806691 1
## 28875  806692 1
## 28876  806693 1
## 28877  806694 1
## 28878  806695 1
## 28879  806696 1
## 28880  806697 1
## 28881  806698 1
## 28882  806699 1
## 28883  806700 1
## 28884  806702 1
## 28885  806703 1
## 28886  806704 1
## 28887  806705 1
## 28888  806706 1
## 28889  806707 1
## 28890  806708 1
## 28891  806709 1
## 28892  806710 1
## 28893  806711 1
## 28894  806712 1
## 28895  806713 1
## 28896  806714 1
## 28897  806715 1
## 28898  806716 1
## 28899  806717 1
## 28900  806718 1
## 28901  806719 1
## 28902  806720 1
## 28903  806721 1
## 28904  806722 1
## 28905  806723 1
## 28906  806724 1
## 28907  806725 1
## 28908  806726 1
## 28909  806727 1
## 28910  806728 1
## 28911  806729 1
## 28912  806730 1
## 28913  806731 1
## 28914  806732 1
## 28915  806733 1
## 28916  806734 1
## 28917  806735 1
## 28918  806736 1
## 28919  806737 1
## 28920  806738 1
## 28921  806739 1
## 28922  806740 1
## 28923  806741 1
## 28924  806742 1
## 28925  806743 1
## 28926  806744 1
## 28927  806745 1
## 28928  806746 1
## 28929  806747 1
## 28930  806748 1
## 28931  806749 1
## 28932  806750 1
## 28933  806751 1
## 28934  806752 1
## 28935  806753 1
## 28936  806754 1
## 28937  806755 1
## 28938  806756 1
## 28939  806757 1
## 28940  806758 1
## 28941  806759 1
## 28942  806760 1
## 28943  806761 1
## 28944  806762 1
## 28945  806763 1
## 28946  806764 1
## 28947  806765 1
## 28948  806766 1
## 28949  806767 1
## 28950  806768 1
## 28951  806769 1
## 28952  806770 1
## 28953  806771 1
## 28954  806772 1
## 28955  806773 1
## 28956  806774 1
## 28957  806775 1
## 28958  806776 1
## 28959  806777 1
## 28960  806778 1
## 28961  806779 1
## 28962  806780 1
## 28963  806781 1
## 28964  806782 1
## 28965  806783 1
## 28966  806784 1
## 28967  806785 1
## 28968  806786 1
## 28969  806787 1
## 28970  806788 1
## 28971  806789 1
## 28972  806790 1
## 28973  806792 1
## 28974  806793 1
## 28975  806794 1
## 28976  806795 1
## 28977  806796 1
## 28978  806797 1
## 28979  806798 1
## 28980  806799 1
## 28981  806800 1
## 28982  806801 1
## 28983  806802 1
## 28984  806803 1
## 28985  806804 1
## 28986  806805 1
## 28987  806806 1
## 28988  806807 1
## 28989  806808 1
## 28990  806809 1
## 28991  806810 1
## 28992  806811 1
## 28993  806812 1
## 28994  806813 1
## 28995  806814 1
## 28996  806815 1
## 28997  806816 1
## 28998  806817 1
## 28999  806818 1
## 29000  806819 1
## 29001  806820 1
## 29002  806821 1
## 29003  806822 1
## 29004  806823 1
## 29005  806824 1
## 29006  806825 1
## 29007  806826 1
## 29008  806827 1
## 29009  806828 1
## 29010  806829 1
## 29011  806830 1
## 29012  806831 1
## 29013  806832 1
## 29014  806833 1
## 29015  806834 1
## 29016  806835 1
## 29017  806836 1
## 29018  806837 1
## 29019  806838 1
## 29020  806839 1
## 29021  806840 1
## 29022  806841 1
## 29023  806842 1
## 29024  806843 1
## 29025  806844 1
## 29026  806845 1
## 29027  806846 1
## 29028  806847 1
## 29029  806848 1
## 29030  806849 1
## 29031  806850 1
## 29032  806851 1
## 29033  806852 1
## 29034  806853 1
## 29035  806854 1
## 29036  806855 1
## 29037  806856 1
## 29038  806857 1
## 29039  806858 1
## 29040  806859 1
## 29041  806860 1
## 29042  806861 1
## 29043  806862 1
## 29044  806863 1
## 29045  806864 1
## 29046  806865 1
## 29047  806866 1
## 29048  806867 1
## 29049  806868 1
## 29050  806869 1
## 29051  806870 1
## 29052  806871 1
## 29053  806872 1
## 29054  806873 1
## 29055  806874 1
## 29056  806875 1
## 29057  806876 1
## 29058  806877 1
## 29059  806878 1
## 29060  806879 1
## 29061  806880 1
## 29062  806881 1
## 29063  806882 1
## 29064  806883 1
## 29065  806884 1
## 29066  806885 1
## 29067  806886 1
## 29068  806887 1
## 29069  806888 1
## 29070  806889 1
## 29071  806890 1
## 29072  806891 1
## 29073  806892 1
## 29074  806893 1
## 29075  806894 1
## 29076  806895 1
## 29077  806896 1
## 29078  806897 1
## 29079  806898 1
## 29080  806899 1
## 29081  806900 1
## 29082  806901 1
## 29083  806902 1
## 29084  806903 1
## 29085  806904 1
## 29086  806905 1
## 29087  806906 1
## 29088  806907 1
## 29089  806908 1
## 29090  806909 1
## 29091  806910 1
## 29092  806911 1
## 29093  806912 1
## 29094  806913 1
## 29095  806914 1
## 29096  806915 1
## 29097  806916 1
## 29098  806917 1
## 29099  806918 1
## 29100  806920 1
## 29101  806921 1
## 29102  806922 1
## 29103  806923 1
## 29104  806924 1
## 29105  806925 1
## 29106  806926 1
## 29107  806927 1
## 29108  806928 1
## 29109  806929 1
## 29110  806930 1
## 29111  806931 1
## 29112  806932 1
## 29113  806933 1
## 29114  806934 1
## 29115  806935 1
## 29116  806936 1
## 29117  806937 1
## 29118  806938 1
## 29119  806939 1
## 29120  806940 1
## 29121  806941 1
## 29122  806942 1
## 29123  806943 1
## 29124  806944 1
## 29125  806945 1
## 29126  806946 1
## 29127  806947 1
## 29128  806948 1
## 29129  806949 1
## 29130  806950 1
## 29131  806951 1
## 29132  806952 1
## 29133  806953 1
## 29134  806954 1
## 29135  806955 1
## 29136  806956 1
## 29137  806957 1
## 29138  806958 1
## 29139  806959 1
## 29140  806960 1
## 29141  806961 1
## 29142  806962 1
## 29143  806963 1
## 29144  806964 1
## 29145  806965 1
## 29146  806966 1
## 29147  806967 1
## 29148  806968 1
## 29149  806969 1
## 29150  806970 1
## 29151  806971 1
## 29152  806972 1
## 29153  806973 1
## 29154  806974 1
## 29155  806975 1
## 29156  806976 1
## 29157  806977 1
## 29158  806978 1
## 29159  806979 1
## 29160  806980 1
## 29161  806981 1
## 29162  806982 1
## 29163  806983 1
## 29164  806984 1
## 29165  806985 1
## 29166  806986 1
## 29167  806987 1
## 29168  806988 1
## 29169  806989 1
## 29170  806990 1
## 29171  806991 1
## 29172  806992 1
## 29173  806993 1
## 29174  806994 1
## 29175  806995 1
## 29176  806996 1
## 29177  806997 1
## 29178  806998 1
## 29179  806999 1
## 29180  807000 1
## 29181  807001 1
## 29182  807002 1
## 29183  807003 1
## 29184  807004 1
## 29185  807005 1
## 29186  807006 1
## 29187  807007 1
## 29188  807008 1
## 29189  807009 1
## 29190  807010 1
## 29191  807011 1
## 29192  807012 1
## 29193  807013 1
## 29194  807014 1
## 29195  807015 1
## 29196  807016 1
## 29197  807017 1
## 29198  807018 1
## 29199  807019 1
## 29200  807020 1
## 29201  807021 1
## 29202  807022 1
## 29203  807023 1
## 29204  807024 1
## 29205  807025 1
## 29206  807026 1
## 29207  807027 1
## 29208  807028 1
## 29209  807029 1
## 29210  807030 1
## 29211  807031 1
## 29212  807032 1
## 29213  807033 1
## 29214  807034 1
## 29215  807035 1
## 29216  807036 1
## 29217  807037 1
## 29218  807038 1
## 29219  807039 1
## 29220  807040 1
## 29221  807041 1
## 29222  807042 1
## 29223  807043 1
## 29224  807044 1
## 29225  807045 1
## 29226  807046 1
## 29227  807047 1
## 29228  807048 1
## 29229  807049 1
## 29230  807050 1
## 29231  807051 1
## 29232  807052 1
## 29233  807053 1
## 29234  807054 1
## 29235  807055 1
## 29236  807056 1
## 29237  807057 1
## 29238  807058 1
## 29239  807059 1
## 29240  807060 1
## 29241  807061 1
## 29242  807062 1
## 29243  807063 1
## 29244  807064 1
## 29245  807065 1
## 29246  807066 1
## 29247  807067 1
## 29248  807068 1
## 29249  807069 1
## 29250  807070 1
## 29251  807071 1
## 29252  807072 1
## 29253  807073 1
## 29254  807074 1
## 29255  807075 1
## 29256  807076 1
## 29257  807077 1
## 29258  807078 1
## 29259  807079 1
## 29260  807080 1
## 29261  807081 1
## 29262  807082 1
## 29263  807083 1
## 29264  807084 1
## 29265  807085 1
## 29266  807086 1
## 29267  807087 1
## 29268  807088 1
## 29269  807089 1
## 29270  807090 1
## 29271  807091 1
## 29272  807092 1
## 29273  807093 1
## 29274  807094 1
## 29275  807095 1
## 29276  807096 1
## 29277  807097 1
## 29278  807098 1
## 29279  807100 1
## 29280  807101 1
## 29281  807102 1
## 29282  807103 1
## 29283  807104 1
## 29284  807105 1
## 29285  807106 1
## 29286  807107 1
## 29287  807108 1
## 29288  807109 1
## 29289  807110 1
## 29290  807111 1
## 29291  807112 1
## 29292  807113 1
## 29293  807114 1
## 29294  807115 1
## 29295  807116 1
## 29296  807117 1
## 29297  807118 1
## 29298  807119 1
## 29299  807120 1
## 29300  807121 1
## 29301  807122 1
## 29302  807123 1
## 29303  807124 1
## 29304  807125 1
## 29305  807126 1
## 29306  807127 1
## 29307  807128 1
## 29308  807129 1
## 29309  807130 1
## 29310  807131 1
## 29311  807132 1
## 29312  807133 1
## 29313  807134 1
## 29314  807135 1
## 29315  807136 1
## 29316  807137 1
## 29317  807138 1
## 29318  807139 1
## 29319  807140 1
## 29320  807141 1
## 29321  807142 1
## 29322  807143 1
## 29323  807144 1
## 29324  807145 1
## 29325  807146 1
## 29326  807147 1
## 29327  807148 1
## 29328  807149 1
## 29329  807150 1
## 29330  807151 1
## 29331  807152 1
## 29332  807153 1
## 29333  807154 1
## 29334  807155 1
## 29335  807156 1
## 29336  807157 1
## 29337  807158 1
## 29338  807159 1
## 29339  807160 1
## 29340  807161 1
## 29341  807162 1
## 29342  807163 1
## 29343  807164 1
## 29344  807165 1
## 29345  807166 1
## 29346  807167 1
## 29347  807168 1
## 29348  807169 1
## 29349  807170 1
## 29350  807171 1
## 29351  807172 1
## 29352  807173 1
## 29353  807174 1
## 29354  807175 1
## 29355  807176 1
## 29356  807177 1
## 29357  807178 1
## 29358  807179 1
## 29359  807180 1
## 29360  807181 1
## 29361  807182 1
## 29362  807183 1
## 29363  807184 1
## 29364  807185 1
## 29365  807186 1
## 29366  807187 1
## 29367  807188 1
## 29368  807189 1
## 29369  807190 1
## 29370  807191 1
## 29371  807192 1
## 29372  807193 1
## 29373  807194 1
## 29374  807195 1
## 29375  807196 1
## 29376  807197 1
## 29377  807198 1
## 29378  807199 1
## 29379  807200 1
## 29380  807201 1
## 29381  807202 1
## 29382  807203 1
## 29383  807204 1
## 29384  807205 1
## 29385  807206 1
## 29386  807207 1
## 29387  807208 1
## 29388  807209 1
## 29389  807210 1
## 29390  807211 1
## 29391  807212 1
## 29392  807213 1
## 29393  807214 1
## 29394  807215 1
## 29395  807216 1
## 29396  807217 1
## 29397  807218 1
## 29398  807219 1
## 29399  807220 1
## 29400  807221 1
## 29401  807222 1
## 29402  807223 1
## 29403  807224 1
## 29404  807225 1
## 29405  807226 1
## 29406  807227 1
## 29407  807228 1
## 29408  807229 1
## 29409  807230 1
## 29410  807231 1
## 29411  807232 1
## 29412  807233 1
## 29413  807234 1
## 29414  807235 1
## 29415  807236 1
## 29416  807237 1
## 29417  807238 1
## 29418  807239 1
## 29419  807240 1
## 29420  807241 1
## 29421  807242 1
## 29422  807243 1
## 29423  807244 1
## 29424  807245 1
## 29425  807246 1
## 29426  807247 1
## 29427  807248 1
## 29428  807249 1
## 29429  807250 1
## 29430  807251 1
## 29431  807252 1
## 29432  807253 1
## 29433  807254 1
## 29434  807255 1
## 29435  807256 1
## 29436  807257 1
## 29437  807258 1
## 29438  807259 1
## 29439  807260 1
## 29440  807261 1
## 29441  807262 1
## 29442  807263 1
## 29443  807264 1
## 29444  807265 1
## 29445  807266 1
## 29446  807267 1
## 29447  807268 1
## 29448  807269 1
## 29449  807270 1
## 29450  807271 1
## 29451  807272 1
## 29452  807273 1
## 29453  807274 1
## 29454  807275 1
## 29455  807276 1
## 29456  807277 1
## 29457  807278 1
## 29458  807279 1
## 29459  807280 1
## 29460  807281 1
## 29461  807283 1
## 29462  807284 1
## 29463  807285 1
## 29464  807286 1
## 29465  807287 1
## 29466  807288 1
## 29467  807289 1
## 29468  807290 1
## 29469  807291 1
## 29470  807292 1
## 29471  807293 1
## 29472  807294 1
## 29473  807295 1
## 29474  807296 1
## 29475  807297 1
## 29476  807298 1
## 29477  807299 1
## 29478  807300 1
## 29479  807301 1
## 29480  807302 1
## 29481  807303 1
## 29482  807304 1
## 29483  807305 1
## 29484  807306 1
## 29485  807307 1
## 29486  807308 1
## 29487  807309 1
## 29488  807310 1
## 29489  807311 1
## 29490  807312 1
## 29491  807313 1
## 29492  807314 1
## 29493  807315 1
## 29494  807316 1
## 29495  807317 1
## 29496  807318 1
## 29497  807319 1
## 29498  807320 1
## 29499  807321 1
## 29500  807322 1
## 29501  807323 1
## 29502  807324 1
## 29503  807325 1
## 29504  807326 1
## 29505  807327 1
## 29506  807328 1
## 29507  807329 1
## 29508  807330 1
## 29509  807331 1
## 29510  807332 1
## 29511  807333 1
## 29512  807334 1
## 29513  807335 1
## 29514  807336 1
## 29515  807337 1
## 29516  807338 1
## 29517  807339 1
## 29518  807340 1
## 29519  807341 1
## 29520  807343 1
## 29521  807344 1
## 29522  807345 1
## 29523  807346 1
## 29524  807347 1
## 29525  807348 1
## 29526  807349 1
## 29527  807350 1
## 29528  807351 1
## 29529  807352 1
## 29530  807353 1
## 29531  807354 1
## 29532  807356 1
## 29533  807357 1
## 29534  807358 1
## 29535  807359 1
## 29536  807360 1
## 29537  807361 1
## 29538  807362 1
## 29539  807363 1
## 29540  807364 1
## 29541  807365 1
## 29542  807366 1
## 29543  807367 1
## 29544  807368 1
## 29545  807369 1
## 29546  807370 1
## 29547  807371 1
## 29548  807372 1
## 29549  807373 1
## 29550  807374 1
## 29551  807375 1
## 29552  807376 1
## 29553  807377 1
## 29554  807378 1
## 29555  807379 1
## 29556  807380 1
## 29557  807381 1
## 29558  807382 1
## 29559  807383 1
## 29560  807384 1
## 29561  807385 1
## 29562  807386 1
## 29563  807387 1
## 29564  807388 1
## 29565  807389 1
## 29566  807390 1
## 29567  807391 1
## 29568  807392 1
## 29569  807393 1
## 29570  807394 1
## 29571  807395 1
## 29572  807396 1
## 29573  807397 1
## 29574  807398 1
## 29575  807399 1
## 29576  807400 1
## 29577  807401 1
## 29578  807402 1
## 29579  807403 1
## 29580  807404 1
## 29581  807405 1
## 29582  807406 1
## 29583  807407 1
## 29584  807408 1
## 29585  807409 1
## 29586  807410 1
## 29587  807411 1
## 29588  807412 1
## 29589  807413 1
## 29590  807414 1
## 29591  807415 1
## 29592  807416 1
## 29593  807417 1
## 29594  807418 1
## 29595  807419 1
## 29596  807420 1
## 29597  807421 1
## 29598  807422 1
## 29599  807423 1
## 29600  807424 1
## 29601  807425 1
## 29602  807426 1
## 29603  807427 1
## 29604  807428 1
## 29605  807429 1
## 29606  807430 1
## 29607  807431 1
## 29608  807432 1
## 29609  807433 1
## 29610  807434 1
## 29611  807435 1
## 29612  807436 1
## 29613  807437 1
## 29614  807438 1
## 29615  807439 1
## 29616  807440 1
## 29617  807441 1
## 29618  807442 1
## 29619  807443 1
## 29620  807444 1
## 29621  807445 1
## 29622  807446 1
## 29623  807447 1
## 29624  807448 1
## 29625  807449 1
## 29626  807450 1
## 29627  807451 1
## 29628  807452 1
## 29629  807453 1
## 29630  807454 1
## 29631  807455 1
## 29632  807456 1
## 29633  807457 1
## 29634  807458 1
## 29635  807459 1
## 29636  807460 1
## 29637  807461 1
## 29638  807462 1
## 29639  807463 1
## 29640  807464 1
## 29641  807465 1
## 29642  807466 1
## 29643  807468 1
## 29644  807469 1
## 29645  807470 1
## 29646  807471 1
## 29647  807472 1
## 29648  807473 1
## 29649  807474 1
## 29650  807475 1
## 29651  807476 1
## 29652  807477 1
## 29653  807478 1
## 29654  807479 1
## 29655  807480 1
## 29656  807481 1
## 29657  807482 1
## 29658  807483 1
## 29659  807484 1
## 29660  807485 1
## 29661  807486 1
## 29662  807487 1
## 29663  807488 1
## 29664  807489 1
## 29665  807490 1
## 29666  807491 1
## 29667  807492 1
## 29668  807493 1
## 29669  807494 1
## 29670  807495 1
## 29671  807496 1
## 29672  807497 1
## 29673  807498 1
## 29674  807499 1
## 29675  807500 1
## 29676  807501 1
## 29677  807502 1
## 29678  807503 1
## 29679  807504 1
## 29680  807505 1
## 29681  807506 1
## 29682  807507 1
## 29683  807508 1
## 29684  807509 1
## 29685  807510 1
## 29686  807511 1
## 29687  807512 1
## 29688  807513 1
## 29689  807514 1
## 29690  807515 1
## 29691  807516 1
## 29692  807517 1
## 29693  807518 1
## 29694  807519 1
## 29695  807520 1
## 29696  807521 1
## 29697  807522 1
## 29698  807523 1
## 29699  807524 1
## 29700  807525 1
## 29701  807526 1
## 29702  807527 1
## 29703  807528 1
## 29704  807529 1
## 29705  807530 1
## 29706  807531 1
## 29707  807532 1
## 29708  807533 1
## 29709  807534 1
## 29710  807535 1
## 29711  807536 1
## 29712  807537 1
## 29713  807538 1
## 29714  807539 1
## 29715  807540 1
## 29716  807541 1
## 29717  807542 1
## 29718  807543 1
## 29719  807544 1
## 29720  807545 1
## 29721  807546 1
## 29722  807547 1
## 29723  807548 1
## 29724  807549 1
## 29725  807550 1
## 29726  807551 1
## 29727  807552 1
## 29728  807553 1
## 29729  807554 1
## 29730  807555 1
## 29731  807556 1
## 29732  807557 1
## 29733  807558 1
## 29734  807559 1
## 29735  807560 1
## 29736  807561 1
## 29737  807562 1
## 29738  807563 1
## 29739  807564 1
## 29740  807565 1
## 29741  807566 1
## 29742  807567 1
## 29743  807568 1
## 29744  807569 1
## 29745  807570 1
## 29746  807571 1
## 29747  807572 1
## 29748  807573 1
## 29749  807574 1
## 29750  807575 1
## 29751  807576 1
## 29752  807577 1
## 29753  807578 1
## 29754  807579 1
## 29755  807580 1
## 29756  807581 1
## 29757  807582 1
## 29758  807583 1
## 29759  807584 1
## 29760  807585 1
## 29761  807586 1
## 29762  807587 1
## 29763  807588 1
## 29764  807589 1
## 29765  807590 1
## 29766  807591 1
## 29767  807592 1
## 29768  807593 1
## 29769  807594 1
## 29770  807595 1
## 29771  807596 1
## 29772  807597 1
## 29773  807598 1
## 29774  807599 1
## 29775  807600 1
## 29776  807601 1
## 29777  807602 1
## 29778  807603 1
## 29779  807604 1
## 29780  807605 1
## 29781  807606 1
## 29782  807607 1
## 29783  807608 1
## 29784  807609 1
## 29785  807610 1
## 29786  807611 1
## 29787  807612 1
## 29788  807613 1
## 29789  807614 1
## 29790  807615 1
## 29791  807616 1
## 29792  807617 1
## 29793  807618 1
## 29794  807619 1
## 29795  807620 1
## 29796  807621 1
## 29797  807622 1
## 29798  807623 1
## 29799  807624 1
## 29800  807625 1
## 29801  807626 1
## 29802  807627 1
## 29803  807628 1
## 29804  807629 1
## 29805  807630 1
## 29806  807631 1
## 29807  807632 1
## 29808  807633 1
## 29809  807634 1
## 29810  807635 1
## 29811  807636 1
## 29812  807637 1
## 29813  807638 1
## 29814  807639 1
## 29815  807640 1
## 29816  807641 1
## 29817  807642 1
## 29818  807643 1
## 29819  807644 1
## 29820  807645 1
## 29821  807647 1
## 29822  807648 1
## 29823  807649 1
## 29824  807650 1
## 29825  807651 1
## 29826  807652 1
## 29827  807653 1
## 29828  807654 1
## 29829  807655 1
## 29830  807656 1
## 29831  807657 1
## 29832  807658 1
## 29833  807659 1
## 29834  807660 1
## 29835  807661 1
## 29836  807662 1
## 29837  807663 1
## 29838  807664 1
## 29839  807665 1
## 29840  807666 1
## 29841  807667 1
## 29842  807668 1
## 29843  807669 1
## 29844  807670 1
## 29845  807671 1
## 29846  807672 1
## 29847  807673 1
## 29848  807675 1
## 29849  807676 1
## 29850  807677 1
## 29851  807678 1
## 29852  807679 1
## 29853  807680 1
## 29854  807681 1
## 29855  807682 1
## 29856  807683 1
## 29857  807684 1
## 29858  807685 1
## 29859  807686 1
## 29860  807687 1
## 29861  807688 1
## 29862  807689 1
## 29863  807690 1
## 29864  807691 1
## 29865  807692 1
## 29866  807693 1
## 29867  807694 1
## 29868  807695 1
## 29869  807696 1
## 29870  807697 1
## 29871  807698 1
## 29872  807699 1
## 29873  807700 1
## 29874  807701 1
## 29875  807702 1
## 29876  807703 1
## 29877  807704 1
## 29878  807706 1
## 29879  807707 1
## 29880  807708 1
## 29881  807709 1
## 29882  807710 1
## 29883  807711 1
## 29884  807712 1
## 29885  807713 1
## 29886  807714 1
## 29887  807715 1
## 29888  807716 1
## 29889  807717 1
## 29890  807718 1
## 29891  807719 1
## 29892  807720 1
## 29893  807721 1
## 29894  807722 1
## 29895  807723 1
## 29896  807724 1
## 29897  807725 1
## 29898  807726 1
## 29899  807727 1
## 29900  807728 1
## 29901  807729 1
## 29902  807730 1
## 29903  807731 1
## 29904  807732 1
## 29905  807733 1
## 29906  807734 1
## 29907  807735 1
## 29908  807736 1
## 29909  807737 1
## 29910  807738 1
## 29911  807739 1
## 29912  807740 1
## 29913  807741 1
## 29914  807742 1
## 29915  807743 1
## 29916  807744 1
## 29917  807745 1
## 29918  807746 1
## 29919  807747 1
## 29920  807748 1
## 29921  807749 1
## 29922  807750 1
## 29923  807751 1
## 29924  807752 1
## 29925  807753 1
## 29926  807754 1
## 29927  807755 1
## 29928  807756 1
## 29929  807757 1
## 29930  807758 1
## 29931  807759 1
## 29932  807760 1
## 29933  807761 1
## 29934  807762 1
## 29935  807763 1
## 29936  807764 1
## 29937  807765 1
## 29938  807766 1
## 29939  807767 1
## 29940  807768 1
## 29941  807769 1
## 29942  807770 1
## 29943  807771 1
## 29944  807772 1
## 29945  807773 1
## 29946  807774 1
## 29947  807775 1
## 29948  807776 1
## 29949  807777 1
## 29950  807778 1
## 29951  807779 1
## 29952  807780 1
## 29953  807781 1
## 29954  807782 1
## 29955  807783 1
## 29956  807784 1
## 29957  807785 1
## 29958  807786 1
## 29959  807787 1
## 29960  807788 1
## 29961  807789 1
## 29962  807790 1
## 29963  807791 1
## 29964  807792 1
## 29965  807793 1
## 29966  807794 1
## 29967  807795 1
## 29968  807796 1
## 29969  807797 1
## 29970  807798 1
## 29971  807799 1
## 29972  807800 1
## 29973  807801 1
## 29974  807802 1
## 29975  807803 1
## 29976  807804 1
## 29977  807805 1
## 29978  807806 1
## 29979  807807 1
## 29980  807808 1
## 29981  807809 1
## 29982  807810 1
## 29983  807811 1
## 29984  807812 1
## 29985  807813 1
## 29986  807814 1
## 29987  807815 1
## 29988  807816 1
## 29989  807817 1
## 29990  807818 1
## 29991  807819 1
## 29992  807820 1
## 29993  807821 1
## 29994  807822 1
## 29995  807823 1
## 29996  807824 1
## 29997  807825 1
## 29998  807826 1
## 29999  807827 1
## 30000  807829 1
## 30001  807830 1
## 30002  807831 1
## 30003  807832 1
## 30004  807833 1
## 30005  807834 1
## 30006  807835 1
## 30007  807836 1
## 30008  807837 1
## 30009  807838 1
## 30010  807839 1
## 30011  807840 1
## 30012  807841 1
## 30013  807842 1
## 30014  807843 1
## 30015  807844 1
## 30016  807845 1
## 30017  807846 1
## 30018  807847 1
## 30019  807848 1
## 30020  807849 1
## 30021  807850 1
## 30022  807851 1
## 30023  807852 1
## 30024  807853 1
## 30025  807854 1
## 30026  807856 1
## 30027  807857 1
## 30028  807858 1
## 30029  807859 1
## 30030  807860 1
## 30031  807861 1
## 30032  807862 1
## 30033  807863 1
## 30034  807864 1
## 30035  807865 1
## 30036  807866 1
## 30037  807867 1
## 30038  807868 1
## 30039  807869 1
## 30040  807870 1
## 30041  807871 1
## 30042  807872 1
## 30043  807873 1
## 30044  807874 1
## 30045  807875 1
## 30046  807876 1
## 30047  807877 1
## 30048  807878 1
## 30049  807879 1
## 30050  807880 1
## 30051  807881 1
## 30052  807882 1
## 30053  807883 1
## 30054  807884 1
## 30055  807885 1
## 30056  807886 1
## 30057  807887 1
## 30058  807888 1
## 30059  807889 1
## 30060  807890 1
## 30061  807891 1
## 30062  807892 1
## 30063  807893 1
## 30064  807894 1
## 30065  807895 1
## 30066  807897 1
## 30067  807898 1
## 30068  807899 1
## 30069  807900 1
## 30070  807901 1
## 30071  807902 1
## 30072  807903 1
## 30073  807904 1
## 30074  807905 1
## 30075  807906 1
## 30076  807907 1
## 30077  807908 1
## 30078  807909 1
## 30079  807910 1
## 30080  807911 1
## 30081  807912 1
## 30082  807913 1
## 30083  807914 1
## 30084  807915 1
## 30085  807916 1
## 30086  807917 1
## 30087  807918 1
## 30088  807919 1
## 30089  807920 1
## 30090  807921 1
## 30091  807922 1
## 30092  807923 1
## 30093  807924 1
## 30094  807925 1
## 30095  807926 1
## 30096  807927 1
## 30097  807928 1
## 30098  807929 1
## 30099  807930 1
## 30100  807931 1
## 30101  807932 1
## 30102  807933 1
## 30103  807934 1
## 30104  807935 1
## 30105  807936 1
## 30106  807937 1
## 30107  807938 1
## 30108  807939 1
## 30109  807940 1
## 30110  807941 1
## 30111  807942 1
## 30112  807943 1
## 30113  807944 1
## 30114  807945 1
## 30115  807946 1
## 30116  807947 1
## 30117  807948 1
## 30118  807949 1
## 30119  807950 1
## 30120  807951 1
## 30121  807952 1
## 30122  807953 1
## 30123  807954 1
## 30124  807955 1
## 30125  807956 1
## 30126  807957 1
## 30127  807958 1
## 30128  807959 1
## 30129  807960 1
## 30130  807961 1
## 30131  807962 1
## 30132  807963 1
## 30133  807964 1
## 30134  807965 1
## 30135  807966 1
## 30136  807967 1
## 30137  807968 1
## 30138  807969 1
## 30139  807970 1
## 30140  807971 1
## 30141  807972 1
## 30142  807973 1
## 30143  807974 1
## 30144  807975 1
## 30145  807976 1
## 30146  807977 1
## 30147  807978 1
## 30148  807979 1
## 30149  807980 1
## 30150  807981 1
## 30151  807982 1
## 30152  807983 1
## 30153  807984 1
## 30154  807985 1
## 30155  807986 1
## 30156  807987 1
## 30157  807988 1
## 30158  807989 1
## 30159  807990 1
## 30160  807991 1
## 30161  807992 1
## 30162  807993 1
## 30163  807994 1
## 30164  807995 1
## 30165  807996 1
## 30166  807997 1
## 30167  807998 1
## 30168  807999 1
## 30169  808000 1
## 30170  808001 1
## 30171  808002 1
## 30172  808003 1
## 30173  808004 1
## 30174  808005 1
## 30175  808006 1
## 30176  808007 1
## 30177  808008 1
## 30178  808009 1
## 30179  808010 1
## 30180  808011 1
## 30181  808012 1
## 30182  808013 1
## 30183  808014 1
## 30184  808015 1
## 30185  808016 1
## 30186  808017 1
## 30187  808018 1
## 30188  808019 1
## 30189  808020 1
## 30190  808021 1
## 30191  808022 1
## 30192  808023 1
## 30193  808024 1
## 30194  808025 1
## 30195  808026 1
## 30196  808027 1
## 30197  808028 1
## 30198  808029 1
## 30199  808030 1
## 30200  808031 1
## 30201  808032 1
## 30202  808033 1
## 30203  808034 1
## 30204  808035 1
## 30205  808036 1
## 30206  808037 1
## 30207  808038 1
## 30208  808039 1
## 30209  808040 1
## 30210  808041 1
## 30211  808042 1
## 30212  808043 1
## 30213  808044 1
## 30214  808045 1
## 30215  808046 1
## 30216  808047 1
## 30217  808048 1
## 30218  808049 1
## 30219  808050 1
## 30220  808051 1
## 30221  808052 1
## 30222  808053 1
## 30223  808054 1
## 30224  808055 1
## 30225  808056 1
## 30226  808057 1
## 30227  808058 1
## 30228  808059 1
## 30229  808060 1
## 30230  808061 1
## 30231  808062 1
## 30232  808063 1
## 30233  808064 1
## 30234  808065 1
## 30235  808066 1
## 30236  808067 1
## 30237  808068 1
## 30238  808069 1
## 30239  808070 1
## 30240  808071 1
## 30241  808072 1
## 30242  808073 1
## 30243  808074 1
## 30244  808075 1
## 30245  808076 1
## 30246  808077 1
## 30247  808078 1
## 30248  808079 1
## 30249  808080 1
## 30250  808081 1
## 30251  808082 1
## 30252  808083 1
## 30253  808084 1
## 30254  808085 1
## 30255  808086 1
## 30256  808087 1
## 30257  808088 1
## 30258  808089 1
## 30259  808090 1
## 30260  808091 1
## 30261  808092 1
## 30262  808093 1
## 30263  808094 1
## 30264  808095 1
## 30265  808096 1
## 30266  808097 1
## 30267  808098 1
## 30268  808099 1
## 30269  808100 1
## 30270  808101 1
## 30271  808102 1
## 30272  808103 1
## 30273  808104 1
## 30274  808105 1
## 30275  808106 1
## 30276  808107 1
## 30277  808108 1
## 30278  808109 1
## 30279  808110 1
## 30280  808111 1
## 30281  808112 1
## 30282  808113 1
## 30283  808114 1
## 30284  808115 1
## 30285  808116 1
## 30286  808117 1
## 30287  808118 1
## 30288  808119 1
## 30289  808120 1
## 30290  808121 1
## 30291  808122 1
## 30292  808123 1
## 30293  808124 1
## 30294  808125 1
## 30295  808126 1
## 30296  808127 1
## 30297  808128 1
## 30298  808129 1
## 30299  808130 1
## 30300  808131 1
## 30301  808132 1
## 30302  808133 1
## 30303  808134 1
## 30304  808135 1
## 30305  808136 1
## 30306  808137 1
## 30307  808138 1
## 30308  808139 1
## 30309  808140 1
## 30310  808141 1
## 30311  808142 1
## 30312  808143 1
## 30313  808144 1
## 30314  808145 1
## 30315  808146 1
## 30316  808147 1
## 30317  808148 1
## 30318  808149 1
## 30319  808150 1
## 30320  808151 1
## 30321  808152 1
## 30322  808153 1
## 30323  808154 1
## 30324  808155 1
## 30325  808156 1
## 30326  808157 1
## 30327  808158 1
## 30328  808159 1
## 30329  808160 1
## 30330  808161 1
## 30331  808162 1
## 30332  808163 1
## 30333  808164 1
## 30334  808165 1
## 30335  808166 1
## 30336  808167 1
## 30337  808168 1
## 30338  808169 1
## 30339  808170 1
## 30340  808171 1
## 30341  808172 1
## 30342  808173 1
## 30343  808174 1
## 30344  808175 1
## 30345  808176 1
## 30346  808177 1
## 30347  808178 1
## 30348  808179 1
## 30349  808180 1
## 30350  808181 1
## 30351  808182 1
## 30352  808183 1
## 30353  808184 1
## 30354  808185 1
## 30355  808186 1
## 30356  808187 1
## 30357  808188 1
## 30358  808189 1
## 30359  808190 1
## 30360  808191 1
## 30361  808192 1
## 30362  808193 1
## 30363  808194 1
## 30364  808195 1
## 30365  808196 1
## 30366  808198 1
## 30367  808199 1
## 30368  808200 1
## 30369  808201 1
## 30370  808202 1
## 30371  808203 1
## 30372  808204 1
## 30373  808205 1
## 30374  808206 1
## 30375  808207 1
## 30376  808208 1
## 30377  808209 1
## 30378  808210 1
## 30379  808211 1
## 30380  808212 1
## 30381  808213 1
## 30382  808214 1
## 30383  808215 1
## 30384  808216 1
## 30385  808217 1
## 30386  808218 1
## 30387  808219 1
## 30388  808220 1
## 30389  808221 1
## 30390  808222 1
## 30391  808223 1
## 30392  808224 1
## 30393  808225 1
## 30394  808226 1
## 30395  808227 1
## 30396  808228 1
## 30397  808229 1
## 30398  808230 1
## 30399  808231 1
## 30400  808232 1
## 30401  808233 1
## 30402  808234 1
## 30403  808235 1
## 30404  808236 1
## 30405  808237 1
## 30406  808238 1
## 30407  808239 1
## 30408  808240 1
## 30409  808241 1
## 30410  808242 1
## 30411  808243 1
## 30412  808244 1
## 30413  808245 1
## 30414  808246 1
## 30415  808247 1
## 30416  808248 1
## 30417  808249 1
## 30418  808250 1
## 30419  808251 1
## 30420  808252 1
## 30421  808253 1
## 30422  808254 1
## 30423  808255 1
## 30424  808256 1
## 30425  808257 1
## 30426  808258 1
## 30427  808259 1
## 30428  808260 1
## 30429  808261 1
## 30430  808262 1
## 30431  808263 1
## 30432  808264 1
## 30433  808265 1
## 30434  808266 1
## 30435  808267 1
## 30436  808268 1
## 30437  808269 1
## 30438  808270 1
## 30439  808271 1
## 30440  808272 1
## 30441  808273 1
## 30442  808274 1
## 30443  808275 1
## 30444  808276 1
## 30445  808277 1
## 30446  808278 1
## 30447  808279 1
## 30448  808280 1
## 30449  808281 1
## 30450  808282 1
## 30451  808283 1
## 30452  808284 1
## 30453  808285 1
## 30454  808286 1
## 30455  808287 1
## 30456  808288 1
## 30457  808289 1
## 30458  808290 1
## 30459  808291 1
## 30460  808292 1
## 30461  808293 1
## 30462  808294 1
## 30463  808295 1
## 30464  808296 1
## 30465  808297 1
## 30466  808298 1
## 30467  808299 1
## 30468  808300 1
## 30469  808301 1
## 30470  808302 1
## 30471  808303 1
## 30472  808304 1
## 30473  808305 1
## 30474  808307 1
## 30475  808308 1
## 30476  808309 1
## 30477  808310 1
## 30478  808311 1
## 30479  808312 1
## 30480  808313 1
## 30481  808314 1
## 30482  808315 1
## 30483  808316 1
## 30484  808317 1
## 30485  808318 1
## 30486  808319 1
## 30487  808320 1
## 30488  808321 1
## 30489  808322 1
## 30490  808323 1
## 30491  808324 1
## 30492  808325 1
## 30493  808326 1
## 30494  808327 1
## 30495  808328 1
## 30496  808329 1
## 30497  808330 1
## 30498  808331 1
## 30499  808332 1
## 30500  808333 1
## 30501  808334 1
## 30502  808335 1
## 30503  808336 1
## 30504  808337 1
## 30505  808338 1
## 30506  808339 1
## 30507  808340 1
## 30508  808341 1
## 30509  808342 1
## 30510  808343 1
## 30511  808344 1
## 30512  808345 1
## 30513  808346 1
## 30514  808347 1
## 30515  808348 1
## 30516  808349 1
## 30517  808350 1
## 30518  808351 1
## 30519  808352 1
## 30520  808353 1
## 30521  808354 1
## 30522  808355 1
## 30523  808356 1
## 30524  808357 1
## 30525  808358 1
## 30526  808359 1
## 30527  808360 1
## 30528  808361 1
## 30529  808362 1
## 30530  808363 1
## 30531  808364 1
## 30532  808365 1
## 30533  808366 1
## 30534  808367 1
## 30535  808368 1
## 30536  808369 1
## 30537  808370 1
## 30538  808371 1
## 30539  808372 1
## 30540  808373 1
## 30541  808374 1
## 30542  808375 1
## 30543  808376 1
## 30544  808377 1
## 30545  808378 1
## 30546  808379 1
## 30547  808380 1
## 30548  808381 1
## 30549  808382 1
## 30550  808383 1
## 30551  808384 1
## 30552  808385 1
## 30553  808386 1
## 30554  808387 1
## 30555  808388 1
## 30556  808389 1
## 30557  808390 1
## 30558  808391 1
## 30559  808392 1
## 30560  808393 1
## 30561  808394 1
## 30562  808395 1
## 30563  808396 1
## 30564  808397 1
## 30565  808398 1
## 30566  808399 1
## 30567  808400 1
## 30568  808401 1
## 30569  808402 1
## 30570  808403 1
## 30571  808404 1
## 30572  808405 1
## 30573  808406 1
## 30574  808407 1
## 30575  808408 1
## 30576  808409 1
## 30577  808410 1
## 30578  808411 1
## 30579  808412 1
## 30580  808413 1
## 30581  808414 1
## 30582  808415 1
## 30583  808416 1
## 30584  808417 1
## 30585  808418 1
## 30586  808419 1
## 30587  808420 1
## 30588  808421 1
## 30589  808422 1
## 30590  808423 1
## 30591  808424 1
## 30592  808425 1
## 30593  808426 1
## 30594  808427 1
## 30595  808428 1
## 30596  808429 1
## 30597  808430 1
## 30598  808431 1
## 30599  808432 1
## 30600  808433 1
## 30601  808434 1
## 30602  808435 1
## 30603  808436 1
## 30604  808437 1
## 30605  808438 1
## 30606  808439 1
## 30607  808440 1
## 30608  808441 1
## 30609  808442 1
## 30610  808443 1
## 30611  808444 1
## 30612  808445 1
## 30613  808446 1
## 30614  808447 1
## 30615  808448 1
## 30616  808449 1
## 30617  808450 1
## 30618  808451 1
## 30619  808452 1
## 30620  808453 1
## 30621  808454 1
## 30622  808455 1
## 30623  808456 1
## 30624  808457 1
## 30625  808458 1
## 30626  808459 1
## 30627  808460 1
## 30628  808461 1
## 30629  808462 1
## 30630  808463 1
## 30631  808464 1
## 30632  808465 1
## 30633  808466 1
## 30634  808467 1
## 30635  808468 1
## 30636  808469 1
## 30637  808470 1
## 30638  808471 1
## 30639  808472 1
## 30640  808473 1
## 30641  808474 1
## 30642  808475 1
## 30643  808476 1
## 30644  808477 1
## 30645  808478 1
## 30646  808479 1
## 30647  808480 1
## 30648  808481 1
## 30649  808482 1
## 30650  808483 1
## 30651  808484 1
## 30652  808485 1
## 30653  808486 1
## 30654  808487 1
## 30655  808488 1
## 30656  808489 1
## 30657  808490 1
## 30658  808491 1
## 30659  808492 1
## 30660  808493 1
## 30661  808494 1
## 30662  808495 1
## 30663  808496 1
## 30664  808497 1
## 30665  808498 1
## 30666  808499 1
## 30667  808500 1
## 30668  808501 1
## 30669  808502 1
## 30670  808503 1
## 30671  808504 1
## 30672  808505 1
## 30673  808506 1
## 30674  808507 1
## 30675  808508 1
## 30676  808509 1
## 30677  808510 1
## 30678  808511 1
## 30679  808512 1
## 30680  808513 1
## 30681  808514 1
## 30682  808515 1
## 30683  808516 1
## 30684  808517 1
## 30685  808518 1
## 30686  808519 1
## 30687  808520 1
## 30688  808521 1
## 30689  808522 1
## 30690  808523 1
## 30691  808524 1
## 30692  808525 1
## 30693  808526 1
## 30694  808527 1
## 30695  808528 1
## 30696  808529 1
## 30697  808530 1
## 30698  808531 1
## 30699  808532 1
## 30700  808533 1
## 30701  808534 1
## 30702  808535 1
## 30703  808536 1
## 30704  808537 1
## 30705  808538 1
## 30706  808540 1
## 30707  808541 1
## 30708  808542 1
## 30709  808543 1
## 30710  808544 1
## 30711  808545 1
## 30712  808546 1
## 30713  808547 1
## 30714  808548 1
## 30715  808549 1
## 30716  808550 1
## 30717  808551 1
## 30718  808552 1
## 30719  808553 1
## 30720  808554 1
## 30721  808555 1
## 30722  808556 1
## 30723  808557 1
## 30724  808558 1
## 30725  808559 1
## 30726  808560 1
## 30727  808561 1
## 30728  808562 1
## 30729  808563 1
## 30730  808564 1
## 30731  808565 1
## 30732  808566 1
## 30733  808567 1
## 30734  808568 1
## 30735  808569 1
## 30736  808570 1
## 30737  808571 1
## 30738  808572 1
## 30739  808573 1
## 30740  808574 1
## 30741  808575 1
## 30742  808576 1
## 30743  808577 1
## 30744  808578 1
## 30745  808579 1
## 30746  808580 1
## 30747  808581 1
## 30748  808582 1
## 30749  808583 1
## 30750  808584 1
## 30751  808585 1
## 30752  808586 1
## 30753  808587 1
## 30754  808588 1
## 30755  808589 1
## 30756  808590 1
## 30757  808591 1
## 30758  808592 1
## 30759  808593 1
## 30760  808594 1
## 30761  808595 1
## 30762  808596 1
## 30763  808597 1
## 30764  808598 1
## 30765  808599 1
## 30766  808600 1
## 30767  808601 1
## 30768  808602 1
## 30769  808603 1
## 30770  808604 1
## 30771  808605 1
## 30772  808606 1
## 30773  808607 1
## 30774  808608 1
## 30775  808609 1
## 30776  808610 1
## 30777  808611 1
## 30778  808612 1
## 30779  808613 1
## 30780  808614 1
## 30781  808615 1
## 30782  808616 1
## 30783  808617 1
## 30784  808618 1
## 30785  808619 1
## 30786  808620 1
## 30787  808621 1
## 30788  808622 1
## 30789  808623 1
## 30790  808624 1
## 30791  808625 1
## 30792  808626 1
## 30793  808627 1
## 30794  808628 1
## 30795  808629 1
## 30796  808630 1
## 30797  808631 1
## 30798  808632 1
## 30799  808633 1
## 30800  808634 1
## 30801  808635 1
## 30802  808636 1
## 30803  808637 1
## 30804  808638 1
## 30805  808639 1
## 30806  808640 1
## 30807  808641 1
## 30808  808642 1
## 30809  808643 1
## 30810  808644 1
## 30811  808645 1
## 30812  808646 1
## 30813  808647 1
## 30814  808648 1
## 30815  808649 1
## 30816  808650 1
## 30817  808651 1
## 30818  808652 1
## 30819  808653 1
## 30820  808654 1
## 30821  808655 1
## 30822  808656 1
## 30823  808657 1
## 30824  808658 1
## 30825  808659 1
## 30826  808660 1
## 30827  808661 1
## 30828  808662 1
## 30829  808663 1
## 30830  808664 1
## 30831  808665 1
## 30832  808666 1
## 30833  808667 1
## 30834  808668 1
## 30835  808669 1
## 30836  808670 1
## 30837  808671 1
## 30838  808672 1
## 30839  808673 1
## 30840  808674 1
## 30841  808675 1
## 30842  808676 1
## 30843  808677 1
## 30844  808678 1
## 30845  808679 1
## 30846  808680 1
## 30847  808681 1
## 30848  808682 1
## 30849  808683 1
## 30850  808684 1
## 30851  808685 1
## 30852  808686 1
## 30853  808687 1
## 30854  808688 1
## 30855  808689 1
## 30856  808690 1
## 30857  808691 1
## 30858  808692 1
## 30859  808693 1
## 30860  808694 1
## 30861  808695 1
## 30862  808696 1
## 30863  808697 1
## 30864  808698 1
## 30865  808699 1
## 30866  808700 1
## 30867  808701 1
## 30868  808702 1
## 30869  808703 1
## 30870  808704 1
## 30871  808705 1
## 30872  808706 1
## 30873  808707 1
## 30874  808708 1
## 30875  808710 1
## 30876  808711 1
## 30877  808712 1
## 30878  808713 1
## 30879  808714 1
## 30880  808715 1
## 30881  808716 1
## 30882  808717 1
## 30883  808718 1
## 30884  808719 1
## 30885  808720 1
## 30886  808721 1
## 30887  808722 1
## 30888  808723 1
## 30889  808724 1
## 30890  808725 1
## 30891  808726 1
## 30892  808727 1
## 30893  808728 1
## 30894  808729 1
## 30895  808730 1
## 30896  808731 1
## 30897  808732 1
## 30898  808733 1
## 30899  808734 1
## 30900  808735 1
## 30901  808736 1
## 30902  808737 1
## 30903  808738 1
## 30904  808739 1
## 30905  808740 1
## 30906  808741 1
## 30907  808742 1
## 30908  808743 1
## 30909  808744 1
## 30910  808745 1
## 30911  808746 1
## 30912  808747 1
## 30913  808748 1
## 30914  808749 1
## 30915  808750 1
## 30916  808751 1
## 30917  808752 1
## 30918  808753 1
## 30919  808754 1
## 30920  808755 1
## 30921  808756 1
## 30922  808757 1
## 30923  808758 1
## 30924  808759 1
## 30925  808760 1
## 30926  808761 1
## 30927  808762 1
## 30928  808763 1
## 30929  808764 1
## 30930  808765 1
## 30931  808766 1
## 30932  808767 1
## 30933  808768 1
## 30934  808769 1
## 30935  808770 1
## 30936  808771 1
## 30937  808772 1
## 30938  808773 1
## 30939  808774 1
## 30940  808775 1
## 30941  808776 1
## 30942  808777 1
## 30943  808778 1
## 30944  808779 1
## 30945  808780 1
## 30946  808781 1
## 30947  808782 1
## 30948  808783 1
## 30949  808784 1
## 30950  808785 1
## 30951  808786 1
## 30952  808787 1
## 30953  808788 1
## 30954  808789 1
## 30955  808790 1
## 30956  808791 1
## 30957  808792 1
## 30958  808793 1
## 30959  808794 1
## 30960  808795 1
## 30961  808796 1
## 30962  808797 1
## 30963  808798 1
## 30964  808799 1
## 30965  808800 1
## 30966  808801 1
## 30967  808802 1
## 30968  808803 1
## 30969  808804 1
## 30970  808805 1
## 30971  808806 1
## 30972  808807 1
## 30973  808808 1
## 30974  808809 1
## 30975  808810 1
## 30976  808811 1
## 30977  808812 1
## 30978  808813 1
## 30979  808814 1
## 30980  808815 1
## 30981  808816 1
## 30982  808817 1
## 30983  808818 1
## 30984  808819 1
## 30985  808820 1
## 30986  808821 1
## 30987  808822 1
## 30988  808823 1
## 30989  808824 1
## 30990  808825 1
## 30991  808826 1
## 30992  808827 1
## 30993  808828 1
## 30994  808829 1
## 30995  808830 1
## 30996  808831 1
## 30997  808832 1
## 30998  808833 1
## 30999  808834 1
## 31000  808835 1
## 31001  808836 1
## 31002  808837 1
## 31003  808838 1
## 31004  808839 1
## 31005  808840 1
## 31006  808841 1
## 31007  808842 1
## 31008  808843 1
## 31009  808844 1
## 31010  808845 1
## 31011  808846 1
## 31012  808847 1
## 31013  808848 1
## 31014  808849 1
## 31015  808850 1
## 31016  808851 1
## 31017  808852 1
## 31018  808853 1
## 31019  808854 1
## 31020  808855 1
## 31021  808856 1
## 31022  808857 1
## 31023  808858 1
## 31024  808859 1
## 31025  808860 1
## 31026  808861 1
## 31027  808862 1
## 31028  808863 1
## 31029  808864 1
## 31030  808865 1
## 31031  808866 1
## 31032  808867 1
## 31033  808868 1
## 31034  808869 1
## 31035  808870 1
## 31036  808871 1
## 31037  808872 1
## 31038  808873 1
## 31039  808874 1
## 31040  808875 1
## 31041  808876 1
## 31042  808878 1
## 31043  808879 1
## 31044  808880 1
## 31045  808881 1
## 31046  808882 1
## 31047  808883 1
## 31048  808884 1
## 31049  808885 1
## 31050  808886 1
## 31051  808887 1
## 31052  808888 1
## 31053  808889 1
## 31054  808890 1
## 31055  808891 1
## 31056  808892 1
## 31057  808893 1
## 31058  808894 1
## 31059  808895 1
## 31060  808896 1
## 31061  808897 1
## 31062  808898 1
## 31063  808899 1
## 31064  808900 1
## 31065  808901 1
## 31066  808902 1
## 31067  808903 1
## 31068  808904 1
## 31069  808905 1
## 31070  808906 1
## 31071  808907 1
## 31072  808908 1
## 31073  808909 1
## 31074  808910 1
## 31075  808911 1
## 31076  808912 1
## 31077  808913 1
## 31078  808914 1
## 31079  808915 1
## 31080  808916 1
## 31081  808917 1
## 31082  808918 1
## 31083  808919 1
## 31084  808920 1
## 31085  808921 1
## 31086  808922 1
## 31087  808923 1
## 31088  808924 1
## 31089  808925 1
## 31090  808926 1
## 31091  808927 1
## 31092  808928 1
## 31093  808929 1
## 31094  808930 1
## 31095  808931 1
## 31096  808932 1
## 31097  808933 1
## 31098  808934 1
## 31099  808935 1
## 31100  808936 1
## 31101  808937 1
## 31102  808938 1
## 31103  808939 1
## 31104  808940 1
## 31105  808941 1
## 31106  808942 1
## 31107  808943 1
## 31108  808944 1
## 31109  808945 1
## 31110  808946 1
## 31111  808947 1
## 31112  808948 1
## 31113  808949 1
## 31114  808950 1
## 31115  808951 1
## 31116  808952 1
## 31117  808953 1
## 31118  808954 1
## 31119  808955 1
## 31120  808956 1
## 31121  808957 1
## 31122  808958 1
## 31123  808959 1
## 31124  808960 1
## 31125  808961 1
## 31126  808962 1
## 31127  808963 1
## 31128  808964 1
## 31129  808966 1
## 31130  808967 1
## 31131  808968 1
## 31132  808969 1
## 31133  808970 1
## 31134  808971 1
## 31135  808972 1
## 31136  808973 1
## 31137  808974 1
## 31138  808975 1
## 31139  808976 1
## 31140  808977 1
## 31141  808978 1
## 31142  808979 1
## 31143  808980 1
## 31144  808981 1
## 31145  808982 1
## 31146  808983 1
## 31147  808984 1
## 31148  808985 1
## 31149  808986 1
## 31150  808987 1
## 31151  808988 1
## 31152  808989 1
## 31153  808990 1
## 31154  808991 1
## 31155  808992 1
## 31156  808993 1
## 31157  808994 1
## 31158  808995 1
## 31159  808996 1
## 31160  808997 1
## 31161  808998 1
## 31162  808999 1
## 31163  809000 1
## 31164  809001 1
## 31165  809002 1
## 31166  809003 1
## 31167  809004 1
## 31168  809005 1
## 31169  809006 1
## 31170  809007 1
## 31171  809008 1
## 31172  809009 1
## 31173  809010 1
## 31174  809011 1
## 31175  809012 1
## 31176  809013 1
## 31177  809014 1
## 31178  809015 1
## 31179  809016 1
## 31180  809017 1
## 31181  809018 1
## 31182  809019 1
## 31183  809020 1
## 31184  809021 1
## 31185  809022 1
## 31186  809023 1
## 31187  809024 1
## 31188  809025 1
## 31189  809026 1
## 31190  809027 1
## 31191  809028 1
## 31192  809029 1
## 31193  809030 1
## 31194  809031 1
## 31195  809032 1
## 31196  809033 1
## 31197  809034 1
## 31198  809035 1
## 31199  809036 1
## 31200  809037 1
## 31201  809038 1
## 31202  809039 1
## 31203  809040 1
## 31204  809041 1
## 31205  809042 1
## 31206  809043 1
## 31207  809044 1
## 31208  809045 1
## 31209  809046 1
## 31210  809047 1
## 31211  809048 1
## 31212  809049 1
## 31213  809050 1
## 31214  809051 1
## 31215  809052 1
## 31216  809053 1
## 31217  809054 1
## 31218  809055 1
## 31219  809056 1
## 31220  809057 1
## 31221  809058 1
## 31222  809059 1
## 31223  809060 1
## 31224  809061 1
## 31225  809062 1
## 31226  809063 1
## 31227  809064 1
## 31228  809065 1
## 31229  809066 1
## 31230  809067 1
## 31231  809068 1
## 31232  809069 1
## 31233  809070 1
## 31234  809071 1
## 31235  809072 1
## 31236  809073 1
## 31237  809074 1
## 31238  809075 1
## 31239  809076 1
## 31240  809077 1
## 31241  809078 1
## 31242  809079 1
## 31243  809080 1
## 31244  809081 1
## 31245  809082 1
## 31246  809083 1
## 31247  809084 1
## 31248  809085 1
## 31249  809086 1
## 31250  809087 1
## 31251  809088 1
## 31252  809089 1
## 31253  809090 1
## 31254  809091 1
## 31255  809092 1
## 31256  809093 1
## 31257  809094 1
## 31258  809095 1
## 31259  809096 1
## 31260  809097 1
## 31261  809099 1
## 31262  809100 1
## 31263  809101 1
## 31264  809102 1
## 31265  809103 1
## 31266  809104 1
## 31267  809105 1
## 31268  809106 1
## 31269  809107 1
## 31270  809108 1
## 31271  809109 1
## 31272  809110 1
## 31273  809111 1
## 31274  809112 1
## 31275  809113 1
## 31276  809114 1
## 31277  809115 1
## 31278  809116 1
## 31279  809117 1
## 31280  809118 1
## 31281  809119 1
## 31282  809120 1
## 31283  809121 1
## 31284  809122 1
## 31285  809123 1
## 31286  809124 1
## 31287  809125 1
## 31288  809126 1
## 31289  809127 1
## 31290  809128 1
## 31291  809129 1
## 31292  809130 1
## 31293  809131 1
## 31294  809132 1
## 31295  809133 1
## 31296  809134 1
## 31297  809135 1
## 31298  809136 1
## 31299  809137 1
## 31300  809138 1
## 31301  809139 1
## 31302  809140 1
## 31303  809141 1
## 31304  809142 1
## 31305  809143 1
## 31306  809144 1
## 31307  809145 1
## 31308  809146 1
## 31309  809147 1
## 31310  809148 1
## 31311  809149 1
## 31312  809150 1
## 31313  809151 1
## 31314  809152 1
## 31315  809153 1
## 31316  809154 1
## 31317  809155 1
## 31318  809156 1
## 31319  809157 1
## 31320  809158 1
## 31321  809159 1
## 31322  809160 1
## 31323  809161 1
## 31324  809162 1
## 31325  809163 1
## 31326  809164 1
## 31327  809165 1
## 31328  809166 1
## 31329  809167 1
## 31330  809168 1
## 31331  809169 1
## 31332  809170 1
## 31333  809171 1
## 31334  809172 1
## 31335  809173 1
## 31336  809174 1
## 31337  809175 1
## 31338  809176 1
## 31339  809177 1
## 31340  809178 1
## 31341  809179 1
## 31342  809180 1
## 31343  809181 1
## 31344  809182 1
## 31345  809183 1
## 31346  809184 1
## 31347  809185 1
## 31348  809186 1
## 31349  809187 1
## 31350  809188 1
## 31351  809189 1
## 31352  809190 1
## 31353  809191 1
## 31354  809192 1
## 31355  809193 1
## 31356  809194 1
## 31357  809195 1
## 31358  809196 1
## 31359  809197 1
## 31360  809198 1
## 31361  809199 1
## 31362  809200 1
## 31363  809201 1
## 31364  809202 1
## 31365  809203 1
## 31366  809204 1
## 31367  809205 1
## 31368  809206 1
## 31369  809207 1
## 31370  809208 1
## 31371  809209 1
## 31372  809210 1
## 31373  809211 1
## 31374  809212 1
## 31375  809213 1
## 31376  809214 1
## 31377  809215 1
## 31378  809216 1
## 31379  809217 1
## 31380  809218 1
## 31381  809219 1
## 31382  809220 1
## 31383  809221 1
## 31384  809222 1
## 31385  809224 1
## 31386  809225 1
## 31387  809226 1
## 31388  809227 1
## 31389  809228 1
## 31390  809229 1
## 31391  809230 1
## 31392  809231 1
## 31393  809232 1
## 31394  809233 1
## 31395  809234 1
## 31396  809235 1
## 31397  809236 1
## 31398  809237 1
## 31399  809238 1
## 31400  809239 1
## 31401  809240 1
## 31402  809241 1
## 31403  809242 1
## 31404  809243 1
## 31405  809244 1
## 31406  809245 1
## 31407  809246 1
## 31408  809247 1
## 31409  809248 1
## 31410  809249 1
## 31411  809250 1
## 31412  809251 1
## 31413  809252 1
## 31414  809253 1
## 31415  809254 1
## 31416  809255 1
## 31417  809256 1
## 31418  809257 1
## 31419  809258 1
## 31420  809259 1
## 31421  809260 1
## 31422  809261 1
## 31423  809262 1
## 31424  809263 1
## 31425  809264 1
## 31426  809265 1
## 31427  809266 1
## 31428  809267 1
## 31429  809268 1
## 31430  809269 1
## 31431  809270 1
## 31432  809271 1
## 31433  809272 1
## 31434  809273 1
## 31435  809274 1
## 31436  809275 1
## 31437  809276 1
## 31438  809277 1
## 31439  809278 1
## 31440  809279 1
## 31441  809280 1
## 31442  809281 1
## 31443  809282 1
## 31444  809283 1
## 31445  809284 1
## 31446  809285 1
## 31447  809286 1
## 31448  809287 1
## 31449  809288 1
## 31450  809289 1
## 31451  809290 1
## 31452  809291 1
## 31453  809292 1
## 31454  809293 1
## 31455  809294 1
## 31456  809295 1
## 31457  809296 1
## 31458  809297 1
## 31459  809298 1
## 31460  809299 1
## 31461  809300 1
## 31462  809301 1
## 31463  809302 1
## 31464  809303 1
## 31465  809304 1
## 31466  809305 1
## 31467  809306 1
## 31468  809307 1
## 31469  809308 1
## 31470  809309 1
## 31471  809310 1
## 31472  809311 1
## 31473  809312 1
## 31474  809313 1
## 31475  809314 1
## 31476  809315 1
## 31477  809316 1
## 31478  809317 1
## 31479  809318 1
## 31480  809319 1
## 31481  809320 1
## 31482  809321 1
## 31483  809322 1
## 31484  809323 1
## 31485  809324 1
## 31486  809325 1
## 31487  809326 1
## 31488  809327 1
## 31489  809328 1
## 31490  809329 1
## 31491  809330 1
## 31492  809331 1
## 31493  809332 1
## 31494  809333 1
## 31495  809334 1
## 31496  809335 1
## 31497  809336 1
## 31498  809337 1
## 31499  809338 1
## 31500  809339 1
## 31501  809340 1
## 31502  809341 1
## 31503  809342 1
## 31504  809343 1
## 31505  809344 1
## 31506  809345 1
## 31507  809346 1
## 31508  809347 1
## 31509  809348 1
## 31510  809349 1
## 31511  809350 1
## 31512  809351 1
## 31513  809352 1
## 31514  809353 1
## 31515  809354 1
## 31516  809355 1
## 31517  809356 1
## 31518  809357 1
## 31519  809358 1
## 31520  809359 1
## 31521  809360 1
## 31522  809361 1
## 31523  809362 1
## 31524  809363 1
## 31525  809364 1
## 31526  809365 1
## 31527  809366 1
## 31528  809367 1
## 31529  809368 1
## 31530  809369 1
## 31531  809370 1
## 31532  809371 1
## 31533  809372 1
## 31534  809373 1
## 31535  809374 1
## 31536  809375 1
## 31537  809376 1
## 31538  809377 1
## 31539  809378 1
## 31540  809379 1
## 31541  809380 1
## 31542  809381 1
## 31543  809382 1
## 31544  809383 1
## 31545  809384 1
## 31546  809385 1
## 31547  809386 1
## 31548  809387 1
## 31549  809388 1
## 31550  809389 1
## 31551  809390 1
## 31552  809391 1
## 31553  809392 1
## 31554  809393 1
## 31555  809394 1
## 31556  809395 1
## 31557  809396 1
## 31558  809397 1
## 31559  809398 1
## 31560  809399 1
## 31561  809400 1
## 31562  809401 1
## 31563  809402 1
## 31564  809403 1
## 31565  809404 1
## 31566  809405 1
## 31567  809406 1
## 31568  809407 1
## 31569  809408 1
## 31570  809409 1
## 31571  809410 1
## 31572  809411 1
## 31573  809412 1
## 31574  809413 1
## 31575  809414 1
## 31576  809415 1
## 31577  809416 1
## 31578  809417 1
## 31579  809418 1
## 31580  809419 1
## 31581  809420 1
## 31582  809421 1
## 31583  809422 1
## 31584  809423 1
## 31585  809424 1
## 31586  809425 1
## 31587  809426 1
## 31588  809427 1
## 31589  809428 1
## 31590  809429 1
## 31591  809430 1
## 31592  809431 1
## 31593  809432 1
## 31594  809433 1
## 31595  809434 1
## 31596  809435 1
## 31597  809436 1
## 31598  809437 1
## 31599  809438 1
## 31600  809439 1
## 31601  809440 1
## 31602  809441 1
## 31603  809442 1
## 31604  809443 1
## 31605  809444 1
## 31606  809445 1
## 31607  809446 1
## 31608  809447 1
## 31609  809448 1
## 31610  809449 1
## 31611  809450 1
## 31612  809451 1
## 31613  809452 1
## 31614  809453 1
## 31615  809454 1
## 31616  809455 1
## 31617  809456 1
## 31618  809457 1
## 31619  809458 1
## 31620  809459 1
## 31621  809460 1
## 31622  809461 1
## 31623  809462 1
## 31624  809463 1
## 31625  809464 1
## 31626  809465 1
## 31627  809466 1
## 31628  809467 1
## 31629  809468 1
## 31630  809469 1
## 31631  809470 1
## 31632  809471 1
## 31633  809472 1
## 31634  809473 1
## 31635  809474 1
## 31636  809475 1
## 31637  809476 1
## 31638  809477 1
## 31639  809478 1
## 31640  809479 1
## 31641  809480 1
## 31642  809481 1
## 31643  809482 1
## 31644  809483 1
## 31645  809484 1
## 31646  809485 1
## 31647  809486 1
## 31648  809487 1
## 31649  809488 1
## 31650  809489 1
## 31651  809490 1
## 31652  809491 1
## 31653  809492 1
## 31654  809493 1
## 31655  809494 1
## 31656  809495 1
## 31657  809496 1
## 31658  809497 1
## 31659  809498 1
## 31660  809499 1
## 31661  809500 1
## 31662  809501 1
## 31663  809502 1
## 31664  809503 1
## 31665  809504 1
## 31666  809505 1
## 31667  809506 1
## 31668  809507 1
## 31669  809508 1
## 31670  809509 1
## 31671  809510 1
## 31672  809511 1
## 31673  809512 1
## 31674  809513 1
## 31675  809514 1
## 31676  809515 1
## 31677  809516 1
## 31678  809517 1
## 31679  809518 1
## 31680  809519 1
## 31681  809520 1
## 31682  809521 1
## 31683  809522 1
## 31684  809523 1
## 31685  809524 1
## 31686  809525 1
## 31687  809526 1
## 31688  809527 1
## 31689  809528 1
## 31690  809529 1
## 31691  809530 1
## 31692  809531 1
## 31693  809532 1
## 31694  809533 1
## 31695  809534 1
## 31696  809535 1
## 31697  809536 1
## 31698  809537 1
## 31699  809538 1
## 31700  809539 1
## 31701  809540 1
## 31702  809541 1
## 31703  809542 1
## 31704  809543 1
## 31705  809544 1
## 31706  809545 1
## 31707  809546 1
## 31708  809547 1
## 31709  809548 1
## 31710  809549 1
## 31711  809550 1
## 31712  809551 1
## 31713  809552 1
## 31714  809553 1
## 31715  809554 1
## 31716  809555 1
## 31717  809556 1
## 31718  809557 1
## 31719  809558 1
## 31720  809559 1
## 31721  809560 1
## 31722  809561 1
## 31723  809562 1
## 31724  809563 1
## 31725  809564 1
## 31726  809565 1
## 31727  809566 1
## 31728  809567 1
## 31729  809568 1
## 31730  809569 1
## 31731  809570 1
## 31732  809571 1
## 31733  809572 1
## 31734  809573 1
## 31735  809574 1
## 31736  809575 1
## 31737  809576 1
## 31738  809577 1
## 31739  809578 1
## 31740  809579 1
## 31741  809580 1
## 31742  809581 1
## 31743  809582 1
## 31744  809583 1
## 31745  809584 1
## 31746  809585 1
## 31747  809586 1
## 31748  809587 1
## 31749  809588 1
## 31750  809589 1
## 31751  809590 1
## 31752  809591 1
## 31753  809592 1
## 31754  809593 1
## 31755  809594 1
## 31756  809595 1
## 31757  809596 1
## 31758  809597 1
## 31759  809598 1
## 31760  809599 1
## 31761  809600 1
## 31762  809601 1
## 31763  809602 1
## 31764  809603 1
## 31765  809604 1
## 31766  809605 1
## 31767  809606 1
## 31768  809607 1
## 31769  809608 1
## 31770  809609 1
## 31771  809610 1
## 31772  809611 1
## 31773  809612 1
## 31774  809614 1
## 31775  809615 1
## 31776  809616 1
## 31777  809617 1
## 31778  809618 1
## 31779  809619 1
## 31780  809620 1
## 31781  809621 1
## 31782  809622 1
## 31783  809623 1
## 31784  809624 1
## 31785  809625 1
## 31786  809626 1
## 31787  809627 1
## 31788  809628 1
## 31789  809629 1
## 31790  809630 1
## 31791  809631 1
## 31792  809632 1
## 31793  809633 1
## 31794  809634 1
## 31795  809635 1
## 31796  809636 1
## 31797  809637 1
## 31798  809638 1
## 31799  809639 1
## 31800  809640 1
## 31801  809641 1
## 31802  809642 1
## 31803  809643 1
## 31804  809644 1
## 31805  809645 1
## 31806  809646 1
## 31807  809647 1
## 31808  809648 1
## 31809  809649 1
## 31810  809650 1
## 31811  809651 1
## 31812  809652 1
## 31813  809653 1
## 31814  809654 1
## 31815  809655 1
## 31816  809656 1
## 31817  809657 1
## 31818  809658 1
## 31819  809659 1
## 31820  809660 1
## 31821  809661 1
## 31822  809662 1
## 31823  809663 1
## 31824  809664 1
## 31825  809665 1
## 31826  809666 1
## 31827  809667 1
## 31828  809668 1
## 31829  809669 1
## 31830  809670 1
## 31831  809671 1
## 31832  809672 1
## 31833  809673 1
## 31834  809674 1
## 31835  809675 1
## 31836  809676 1
## 31837  809677 1
## 31838  809678 1
## 31839  809679 1
## 31840  809680 1
## 31841  809681 1
## 31842  809682 1
## 31843  809683 1
## 31844  809684 1
## 31845  809685 1
## 31846  809686 1
## 31847  809687 1
## 31848  809688 1
## 31849  809689 1
## 31850  809690 1
## 31851  809691 1
## 31852  809692 1
## 31853  809693 1
## 31854  809694 1
## 31855  809695 1
## 31856  809696 1
## 31857  809697 1
## 31858  809698 1
## 31859  809699 1
## 31860  809700 1
## 31861  809701 1
## 31862  809702 1
## 31863  809703 1
## 31864  809704 1
## 31865  809705 1
## 31866  809706 1
## 31867  809707 1
## 31868  809708 1
## 31869  809709 1
## 31870  809710 1
## 31871  809711 1
## 31872  809712 1
## 31873  809713 1
## 31874  809714 1
## 31875  809715 1
## 31876  809716 1
## 31877  809717 1
## 31878  809718 1
## 31879  809719 1
## 31880  809720 1
## 31881  809721 1
## 31882  809722 1
## 31883  809723 1
## 31884  809724 1
## 31885  809725 1
## 31886  809726 1
## 31887  809727 1
## 31888  809728 1
## 31889  809729 1
## 31890  809730 1
## 31891  809731 1
## 31892  809732 1
## 31893  809733 1
## 31894  809734 1
## 31895  809735 1
## 31896  809736 1
## 31897  809737 1
## 31898  809738 1
## 31899  809739 1
## 31900  809740 1
## 31901  809741 1
## 31902  809742 1
## 31903  809743 1
## 31904  809744 1
## 31905  809745 1
## 31906  809746 1
## 31907  809747 1
## 31908  809748 1
## 31909  809749 1
## 31910  809750 1
## 31911  809751 1
## 31912  809752 1
## 31913  809753 1
## 31914  809754 1
## 31915  809755 1
## 31916  809756 1
## 31917  809757 1
## 31918  809758 1
## 31919  809759 1
## 31920  809760 1
## 31921  809761 1
## 31922  809762 1
## 31923  809763 1
## 31924  809764 1
## 31925  809765 1
## 31926  809766 1
## 31927  809767 1
## 31928  809768 1
## 31929  809770 1
## 31930  809771 1
## 31931  809772 1
## 31932  809773 1
## 31933  809774 1
## 31934  809775 1
## 31935  809776 1
## 31936  809777 1
## 31937  809778 1
## 31938  809779 1
## 31939  809780 1
## 31940  809781 1
## 31941  809782 1
## 31942  809783 1
## 31943  809784 1
## 31944  809785 1
## 31945  809786 1
## 31946  809787 1
## 31947  809788 1
## 31948  809789 1
## 31949  809790 1
## 31950  809791 1
## 31951  809792 1
## 31952  809793 1
## 31953  809794 1
## 31954  809795 1
## 31955  809796 1
## 31956  809797 1
## 31957  809798 1
## 31958  809799 1
## 31959  809800 1
## 31960  809801 1
## 31961  809802 1
## 31962  809803 1
## 31963  809804 1
## 31964  809805 1
## 31965  809806 1
## 31966  809807 1
## 31967  809808 1
## 31968  809809 1
## 31969  809810 1
## 31970  809811 1
## 31971  809812 1
## 31972  809813 1
## 31973  809814 1
## 31974  809815 1
## 31975  809816 1
## 31976  809817 1
## 31977  809818 1
## 31978  809819 1
## 31979  809820 1
## 31980  809821 1
## 31981  809822 1
## 31982  809823 1
## 31983  809824 1
## 31984  809825 1
## 31985  809826 1
## 31986  809827 1
## 31987  809828 1
## 31988  809829 1
## 31989  809830 1
## 31990  809831 1
## 31991  809832 1
## 31992  809833 1
## 31993  809834 1
## 31994  809835 1
## 31995  809836 1
## 31996  809837 1
## 31997  809838 1
## 31998  809839 1
## 31999  809840 1
## 32000  809841 1
## 32001  809842 1
## 32002  809843 1
## 32003  809844 1
## 32004  809845 1
## 32005  809846 1
## 32006  809847 1
## 32007  809848 1
## 32008  809849 1
## 32009  809850 1
## 32010  809851 1
## 32011  809852 1
## 32012  809853 1
## 32013  809854 1
## 32014  809855 1
## 32015  809856 1
## 32016  809857 1
## 32017  809858 1
## 32018  809859 1
## 32019  809860 1
## 32020  809861 1
## 32021  809862 1
## 32022  809863 1
## 32023  809864 1
## 32024  809865 1
## 32025  809866 1
## 32026  809867 1
## 32027  809868 1
## 32028  809869 1
## 32029  809870 1
## 32030  809871 1
## 32031  809872 1
## 32032  809873 1
## 32033  809874 1
## 32034  809875 1
## 32035  809876 1
## 32036  809877 1
## 32037  809878 1
## 32038  809879 1
## 32039  809880 1
## 32040  809881 1
## 32041  809882 1
## 32042  809883 1
## 32043  809884 1
## 32044  809885 1
## 32045  809886 1
## 32046  809887 1
## 32047  809888 1
## 32048  809889 1
## 32049  809890 1
## 32050  809891 1
## 32051  809892 1
## 32052  809893 1
## 32053  809894 1
## 32054  809895 1
## 32055  809896 1
## 32056  809897 1
## 32057  809898 1
## 32058  809899 1
## 32059  809900 1
## 32060  809901 1
## 32061  809902 1
## 32062  809903 1
## 32063  809904 1
## 32064  809905 1
## 32065  809906 1
## 32066  809907 1
## 32067  809908 1
## 32068  809909 1
## 32069  809910 1
## 32070  809911 1
## 32071  809912 1
## 32072  809913 1
## 32073  809914 1
## 32074  809915 1
## 32075  809916 1
## 32076  809917 1
## 32077  809918 1
## 32078  809919 1
## 32079  809920 1
## 32080  809921 1
## 32081  809922 1
## 32082  809923 1
## 32083  809924 1
## 32084  809925 1
## 32085  809926 1
## 32086  809927 1
## 32087  809928 1
## 32088  809929 1
## 32089  809930 1
## 32090  809931 1
## 32091  809932 1
## 32092  809933 1
## 32093  809934 1
## 32094  809935 1
## 32095  809936 1
## 32096  809937 1
## 32097  809938 1
## 32098  809939 1
## 32099  809940 1
## 32100  809941 1
## 32101  809942 1
## 32102  809943 1
## 32103  809944 1
## 32104  809945 1
## 32105  809946 1
## 32106  809947 1
## 32107  809948 1
## 32108  809949 1
## 32109  809950 1
## 32110  809951 1
## 32111  809952 1
## 32112  809953 1
## 32113  809954 1
## 32114  809955 1
## 32115  809956 1
## 32116  809957 1
## 32117  809958 1
## 32118  809959 1
## 32119  809960 1
## 32120  809961 1
## 32121  809962 1
## 32122  809963 1
## 32123  809964 1
## 32124  809965 1
## 32125  809966 1
## 32126  809967 1
## 32127  809968 1
## 32128  809969 1
## 32129  809970 1
## 32130  809971 1
## 32131  809972 1
## 32132  809973 1
## 32133  809974 1
## 32134  809975 1
## 32135  809976 1
## 32136  809977 1
## 32137  809978 1
## 32138  809979 1
## 32139  809980 1
## 32140  809981 1
## 32141  809982 1
## 32142  809983 1
## 32143  809984 1
## 32144  809985 1
## 32145  809986 1
## 32146  809987 1
## 32147  809988 1
## 32148  809989 1
## 32149  809990 1
## 32150  809991 1
## 32151  809992 1
## 32152  809993 1
## 32153  809994 1
## 32154  809995 1
## 32155  809996 1
## 32156  809997 1
## 32157  809998 1
## 32158  809999 1
## 32159  810000 1
## 32160  810001 1
## 32161  810002 1
## 32162  810003 1
## 32163  810004 1
## 32164  810005 1
## 32165  810006 1
## 32166  810007 1
## 32167  810008 1
## 32168  810009 1
## 32169  810010 1
## 32170  810011 1
## 32171  810012 1
## 32172  810013 1
## 32173  810014 1
## 32174  810015 1
## 32175  810016 1
## 32176  810017 1
## 32177  810018 1
## 32178  810019 1
## 32179  810020 1
## 32180  810021 1
## 32181  810022 1
## 32182  810023 1
## 32183  810024 1
## 32184  810025 1
## 32185  810026 1
## 32186  810027 1
## 32187  810028 1
## 32188  810029 1
## 32189  810030 1
## 32190  810031 1
## 32191  810032 1
## 32192  810033 1
## 32193  810034 1
## 32194  810035 1
## 32195  810036 1
## 32196  810037 1
## 32197  810038 1
## 32198  810039 1
## 32199  810040 1
## 32200  810041 1
## 32201  810042 1
## 32202  810043 1
## 32203  810044 1
## 32204  810045 1
## 32205  810046 1
## 32206  810047 1
## 32207  810048 1
## 32208  810049 1
## 32209  810050 1
## 32210  810051 1
## 32211  810052 1
## 32212  810053 1
## 32213  810054 1
## 32214  810055 1
## 32215  810056 1
## 32216  810057 1
## 32217  810058 1
## 32218  810059 1
## 32219  810060 1
## 32220  810061 1
## 32221  810062 1
## 32222  810063 1
## 32223  810064 1
## 32224  810065 1
## 32225  810066 1
## 32226  810067 1
## 32227  810068 1
## 32228  810069 1
## 32229  810070 1
## 32230  810071 1
## 32231  810072 1
## 32232  810073 1
## 32233  810074 1
## 32234  810075 1
## 32235  810076 1
## 32236  810077 1
## 32237  810078 1
## 32238  810079 1
## 32239  810080 1
## 32240  810081 1
## 32241  810082 1
## 32242  810083 1
## 32243  810084 1
## 32244  810085 1
## 32245  810086 1
## 32246  810087 1
## 32247  810088 1
## 32248  810089 1
## 32249  810090 1
## 32250  810091 1
## 32251  810092 1
## 32252  810093 1
## 32253  810094 1
## 32254  810095 1
## 32255  810096 1
## 32256  810097 1
## 32257  810098 1
## 32258  810099 1
## 32259  810100 1
## 32260  810101 1
## 32261  810102 1
## 32262  810103 1
## 32263  810104 1
## 32264  810105 1
## 32265  810106 1
## 32266  810107 1
## 32267  810108 1
## 32268  810109 1
## 32269  810110 1
## 32270  810111 1
## 32271  810112 1
## 32272  810113 1
## 32273  810114 1
## 32274  810115 1
## 32275  810116 1
## 32276  810117 1
## 32277  810118 1
## 32278  810119 1
## 32279  810120 1
## 32280  810121 1
## 32281  810122 1
## 32282  810123 1
## 32283  810124 1
## 32284  810125 1
## 32285  810126 1
## 32286  810127 1
## 32287  810128 1
## 32288  810129 1
## 32289  810130 1
## 32290  810131 1
## 32291  810132 1
## 32292  810133 1
## 32293  810134 1
## 32294  810135 1
## 32295  810136 1
## 32296  810137 1
## 32297  810138 1
## 32298  810139 1
## 32299  810140 1
## 32300  810141 1
## 32301  810142 1
## 32302  810143 1
## 32303  810144 1
## 32304  810145 1
## 32305  810146 1
## 32306  810147 1
## 32307  810148 1
## 32308  810150 1
## 32309  810151 1
## 32310  810152 1
## 32311  810153 1
## 32312  810154 1
## 32313  810155 1
## 32314  810156 1
## 32315  810157 1
## 32316  810158 1
## 32317  810159 1
## 32318  810160 1
## 32319  810161 1
## 32320  810162 1
## 32321  810163 1
## 32322  810164 1
## 32323  810165 1
## 32324  810166 1
## 32325  810167 1
## 32326  810168 1
## 32327  810169 1
## 32328  810170 1
## 32329  810171 1
## 32330  810172 1
## 32331  810173 1
## 32332  810174 1
## 32333  810175 1
## 32334  810176 1
## 32335  810177 1
## 32336  810178 1
## 32337  810179 1
## 32338  810180 1
## 32339  810181 1
## 32340  810182 1
## 32341  810183 1
## 32342  810184 1
## 32343  810185 1
## 32344  810186 1
## 32345  810187 1
## 32346  810188 1
## 32347  810189 1
## 32348  810190 1
## 32349  810191 1
## 32350  810192 1
## 32351  810193 1
## 32352  810194 1
## 32353  810195 1
## 32354  810196 1
## 32355  810197 1
## 32356  810198 1
## 32357  810200 1
## 32358  810201 1
## 32359  810202 1
## 32360  810203 1
## 32361  810204 1
## 32362  810205 1
## 32363  810206 1
## 32364  810207 1
## 32365  810208 1
## 32366  810209 1
## 32367  810211 1
## 32368  810212 1
## 32369  810213 1
## 32370  810214 1
## 32371  810215 1
## 32372  810216 1
## 32373  810217 1
## 32374  810218 1
## 32375  810219 1
## 32376  810220 1
## 32377  810221 1
## 32378  810222 1
## 32379  810223 1
## 32380  810224 1
## 32381  810225 1
## 32382  810226 1
## 32383  810227 1
## 32384  810228 1
## 32385  810229 1
## 32386  810230 1
## 32387  810231 1
## 32388  810232 1
## 32389  810233 1
## 32390  810234 1
## 32391  810235 1
## 32392  810237 1
## 32393  810238 1
## 32394  810239 1
## 32395  810240 1
## 32396  810241 1
## 32397  810242 1
## 32398  810243 1
## 32399  810244 1
## 32400  810245 1
## 32401  810246 1
## 32402  810247 1
## 32403  810248 1
## 32404  810249 1
## 32405  810250 1
## 32406  810251 1
## 32407  810252 1
## 32408  810253 1
## 32409  810254 1
## 32410  810255 1
## 32411  810256 1
## 32412  810257 1
## 32413  810258 1
## 32414  810259 1
## 32415  810260 1
## 32416  810261 1
## 32417  810262 1
## 32418  810263 1
## 32419  810264 1
## 32420  810265 1
## 32421  810266 1
## 32422  810267 1
## 32423  810268 1
## 32424  810269 1
## 32425  810270 1
## 32426  810271 1
## 32427  810272 1
## 32428  810273 1
## 32429  810274 1
## 32430  810275 1
## 32431  810276 1
## 32432  810277 1
## 32433  810278 1
## 32434  810279 1
## 32435  810280 1
## 32436  810281 1
## 32437  810282 1
## 32438  810283 1
## 32439  810284 1
## 32440  810285 1
## 32441  810286 1
## 32442  810287 1
## 32443  810288 1
## 32444  810289 1
## 32445  810290 1
## 32446  810291 1
## 32447  810292 1
## 32448  810293 1
## 32449  810294 1
## 32450  810295 1
## 32451  810296 1
## 32452  810297 1
## 32453  810298 1
## 32454  810299 1
## 32455  810300 1
## 32456  810301 1
## 32457  810302 1
## 32458  810304 1
## 32459  810305 1
## 32460  810306 1
## 32461  810307 1
## 32462  810308 1
## 32463  810309 1
## 32464  810310 1
## 32465  810311 1
## 32466  810312 1
## 32467  810313 1
## 32468  810314 1
## 32469  810315 1
## 32470  810316 1
## 32471  810317 1
## 32472  810318 1
## 32473  810319 1
## 32474  810320 1
## 32475  810322 1
## 32476  810323 1
## 32477  810324 1
## 32478  810325 1
## 32479  810326 1
## 32480  810327 1
## 32481  810328 1
## 32482  810329 1
## 32483  810330 1
## 32484  810331 1
## 32485  810332 1
## 32486  810333 1
## 32487  810334 1
## 32488  810335 1
## 32489  810336 1
## 32490  810337 1
## 32491  810338 1
## 32492  810339 1
## 32493  810340 1
## 32494  810341 1
## 32495  810342 1
## 32496  810343 1
## 32497  810344 1
## 32498  810345 1
## 32499  810346 1
## 32500  810347 1
## 32501  810348 1
## 32502  810349 1
## 32503  810350 1
## 32504  810351 1
## 32505  810352 1
## 32506  810353 1
## 32507  810354 1
## 32508  810355 1
## 32509  810356 1
## 32510  810357 1
## 32511  810358 1
## 32512  810359 1
## 32513  810360 1
## 32514  810361 1
## 32515  810362 1
## 32516  810363 1
## 32517  810364 1
## 32518  810365 1
## 32519  810366 1
## 32520  810367 1
## 32521  810369 1
## 32522  810370 1
## 32523  810371 1
## 32524  810372 1
## 32525  810373 1
## 32526  810374 1
## 32527  810375 1
## 32528  810376 1
## 32529  810377 1
## 32530  810378 1
## 32531  810379 1
## 32532  810380 1
## 32533  810381 1
## 32534  810382 1
## 32535  810383 1
## 32536  810384 1
## 32537  810385 1
## 32538  810386 1
## 32539  810387 1
## 32540  810388 1
## 32541  810389 1
## 32542  810390 1
## 32543  810391 1
## 32544  810392 1
## 32545  810393 1
## 32546  810394 1
## 32547  810395 1
## 32548  810396 1
## 32549  810397 1
## 32550  810398 1
## 32551  810399 1
## 32552  810400 1
## 32553  810401 1
## 32554  810402 1
## 32555  810403 1
## 32556  810404 1
## 32557  810405 1
## 32558  810406 1
## 32559  810407 1
## 32560  810408 1
## 32561  810409 1
## 32562  810410 1
## 32563  810411 1
## 32564  810412 1
## 32565  810413 1
## 32566  810414 1
## 32567  810415 1
## 32568  810416 1
## 32569  810417 1
## 32570  810418 1
## 32571  810419 1
## 32572  810420 1
## 32573  810422 1
## 32574  810423 1
## 32575  810424 1
## 32576  810425 1
## 32577  810426 1
## 32578  810427 1
## 32579  810428 1
## 32580  810429 1
## 32581  810430 1
## 32582  810431 1
## 32583  810432 1
## 32584  810433 1
## 32585  810434 1
## 32586  810435 1
## 32587  810436 1
## 32588  810437 1
## 32589  810438 1
## 32590  810439 1
## 32591  810440 1
## 32592  810441 1
## 32593  810442 1
## 32594  810443 1
## 32595  810444 1
## 32596  810445 1
## 32597  810446 1
## 32598  810447 1
## 32599  810448 1
## 32600  810449 1
## 32601  810450 1
## 32602  810451 1
## 32603  810452 1
## 32604  810453 1
## 32605  810454 1
## 32606  810455 1
## 32607  810456 1
## 32608  810457 1
## 32609  810458 1
## 32610  810459 1
## 32611  810460 1
## 32612  810461 1
## 32613  810462 1
## 32614  810463 1
## 32615  810464 1
## 32616  810465 1
## 32617  810466 1
## 32618  810467 1
## 32619  810468 1
## 32620  810469 1
## 32621  810470 1
## 32622  810471 1
## 32623  810472 1
## 32624  810473 1
## 32625  810474 1
## 32626  810477 1
## 32627  810478 1
## 32628  810479 1
## 32629  810480 1
## 32630  810481 1
## 32631  810482 1
## 32632  810483 1
## 32633  810484 1
## 32634  810485 1
## 32635  810486 1
## 32636  810488 1
## 32637  810489 1
## 32638  810490 1
## 32639  810491 1
## 32640  810492 1
## 32641  810493 1
## 32642  810494 1
## 32643  810495 1
## 32644  810496 1
## 32645  810497 1
## 32646  810498 1
## 32647  810499 1
## 32648  810500 1
## 32649  810501 1
## 32650  810502 1
## 32651  810503 1
## 32652  810504 1
## 32653  810505 1
## 32654  810506 1
## 32655  810507 1
## 32656  810508 1
## 32657  810509 1
## 32658  810510 1
## 32659  810511 1
## 32660  810512 1
## 32661  810513 1
## 32662  810514 1
## 32663  810515 1
## 32664  810516 1
## 32665  810517 1
## 32666  810518 1
## 32667  810519 1
## 32668  810520 1
## 32669  810521 1
## 32670  810522 1
## 32671  810523 1
## 32672  810524 1
## 32673  810525 1
## 32674  810526 1
## 32675  810527 1
## 32676  810529 1
## 32677  810530 1
## 32678  810531 1
## 32679  810532 1
## 32680  810533 1
## 32681  810534 1
## 32682  810535 1
## 32683  810536 1
## 32684  810537 1
## 32685  810538 1
## 32686  810539 1
## 32687  810540 1
## 32688  810541 1
## 32689  810542 1
## 32690  810543 1
## 32691  810544 1
## 32692  810545 1
## 32693  810546 1
## 32694  810547 1
## 32695  810548 1
## 32696  810549 1
## 32697  810550 1
## 32698  810551 1
## 32699  810552 1
## 32700  810553 1
## 32701  810554 1
## 32702  810555 1
## 32703  810556 1
## 32704  810557 1
## 32705  810558 1
## 32706  810559 1
## 32707  810560 1
## 32708  810561 1
## 32709  810562 1
## 32710  810563 1
## 32711  810564 1
## 32712  810565 1
## 32713  810566 1
## 32714  810567 1
## 32715  810568 1
## 32716  810569 1
## 32717  810570 1
## 32718  810571 1
## 32719  810572 1
## 32720  810573 1
## 32721  810574 1
## 32722  810575 1
## 32723  810576 1
## 32724  810577 1
## 32725  810578 1
## 32726  810579 1
## 32727  810580 1
## 32728  810581 1
## 32729  810582 1
## 32730  810583 1
## 32731  810584 1
## 32732  810585 1
## 32733  810586 1
## 32734  810587 1
## 32735  810588 1
## 32736  810589 1
## 32737  810590 1
## 32738  810591 1
## 32739  810592 1
## 32740  810593 1
## 32741  810594 1
## 32742  810595 1
## 32743  810596 1
## 32744  810597 1
## 32745  810598 1
## 32746  810599 1
## 32747  810600 1
## 32748  810601 1
## 32749  810602 1
## 32750  810603 1
## 32751  810604 1
## 32752  810605 1
## 32753  810606 1
## 32754  810607 1
## 32755  810608 1
## 32756  810609 1
## 32757  810611 1
## 32758  810612 1
## 32759  810613 1
## 32760  810614 1
## 32761  810615 1
## 32762  810616 1
## 32763  810617 1
## 32764  810618 1
## 32765  810619 1
## 32766  810620 1
## 32767  810621 1
## 32768  810622 1
## 32769  810623 1
## 32770  810624 1
## 32771  810625 1
## 32772  810626 1
## 32773  810627 1
## 32774  810628 1
## 32775  810629 1
## 32776  810630 1
## 32777  810631 1
## 32778  810632 1
## 32779  810633 1
## 32780  810634 1
## 32781  810635 1
## 32782  810636 1
## 32783  810637 1
## 32784  810638 1
## 32785  810639 1
## 32786  810640 1
## 32787  810641 1
## 32788  810642 1
## 32789  810643 1
## 32790  810644 1
## 32791  810645 1
## 32792  810646 1
## 32793  810647 1
## 32794  810648 1
## 32795  810649 1
## 32796  810650 1
## 32797  810651 1
## 32798  810652 1
## 32799  810653 1
## 32800  810654 1
## 32801  810655 1
## 32802  810657 1
## 32803  810659 1
## 32804  810660 1
## 32805  810661 1
## 32806  810662 1
## 32807  810663 1
## 32808  810664 1
## 32809  810665 1
## 32810  810666 1
## 32811  810667 1
## 32812  810668 1
## 32813  810669 1
## 32814  810670 1
## 32815  810671 1
## 32816  810672 1
## 32817  810673 1
## 32818  810674 1
## 32819  810675 1
## 32820  810676 1
## 32821  810677 1
## 32822  810678 1
## 32823  810679 1
## 32824  810680 1
## 32825  810681 1
## 32826  810682 1
## 32827  810683 1
## 32828  810684 1
## 32829  810685 1
## 32830  810686 1
## 32831  810687 1
## 32832  810688 1
## 32833  810689 1
## 32834  810690 1
## 32835  810691 1
## 32836  810692 1
## 32837  810693 1
## 32838  810694 1
## 32839  810695 1
## 32840  810696 1
## 32841  810697 1
## 32842  810698 1
## 32843  810699 1
## 32844  810700 1
## 32845  810701 1
## 32846  810702 1
## 32847  810703 1
## 32848  810704 1
## 32849  810705 1
## 32850  810706 1
## 32851  810707 1
## 32852  810708 1
## 32853  810709 1
## 32854  810710 1
## 32855  810711 1
## 32856  810712 1
## 32857  810713 1
## 32858  810714 1
## 32859  810715 1
## 32860  810716 1
## 32861  810717 1
## 32862  810718 1
## 32863  810719 1
## 32864  810720 1
## 32865  810721 1
## 32866  810722 1
## 32867  810723 1
## 32868  810724 1
## 32869  810725 1
## 32870  810726 1
## 32871  810727 1
## 32872  810729 1
## 32873  810730 1
## 32874  810731 1
## 32875  810732 1
## 32876  810733 1
## 32877  810734 1
## 32878  810735 1
## 32879  810736 1
## 32880  810737 1
## 32881  810738 1
## 32882  810739 1
## 32883  810740 1
## 32884  810741 1
## 32885  810742 1
## 32886  810744 1
## 32887  810745 1
## 32888  810746 1
## 32889  810747 1
## 32890  810748 1
## 32891  810749 1
## 32892  810750 1
## 32893  810751 1
## 32894  810752 1
## 32895  810753 1
## 32896  810754 1
## 32897  810755 1
## 32898  810756 1
## 32899  810757 1
## 32900  810758 1
## 32901  810759 1
## 32902  810760 1
## 32903  810761 1
## 32904  810762 1
## 32905  810763 1
## 32906  810764 1
## 32907  810765 1
## 32908  810766 1
## 32909  810767 1
## 32910  810768 1
## 32911  810769 1
## 32912  810770 1
## 32913  810771 1
## 32914  810772 1
## 32915  810773 1
## 32916  810774 1
## 32917  810775 1
## 32918  810776 1
## 32919  810777 1
## 32920  810778 1
## 32921  810779 1
## 32922  810780 1
## 32923  810781 1
## 32924  810782 1
## 32925  810783 1
## 32926  810784 1
## 32927  810785 1
## 32928  810786 1
## 32929  810787 1
## 32930  810788 1
## 32931  810789 1
## 32932  810790 1
## 32933  810791 1
## 32934  810792 1
## 32935  810793 1
## 32936  810794 1
## 32937  810795 1
## 32938  810796 1
## 32939  810797 1
## 32940  810798 1
## 32941  810799 1
## 32942  810800 1
## 32943  810801 1
## 32944  810802 1
## 32945  810803 1
## 32946  810804 1
## 32947  810805 1
## 32948  810806 1
## 32949  810807 1
## 32950  810808 1
## 32951  810809 1
## 32952  810810 1
## 32953  810811 1
## 32954  810812 1
## 32955  810813 1
## 32956  810814 1
## 32957  810815 1
## 32958  810816 1
## 32959  810817 1
## 32960  810818 1
## 32961  810819 1
## 32962  810820 1
## 32963  810821 1
## 32964  810822 1
## 32965  810823 1
## 32966  810824 1
## 32967  810825 1
## 32968  810826 1
## 32969  810827 1
## 32970  810828 1
## 32971  810829 1
## 32972  810830 1
## 32973  810831 1
## 32974  810832 1
## 32975  810833 1
## 32976  810834 1
## 32977  810835 1
## 32978  810836 1
## 32979  810837 1
## 32980  810838 1
## 32981  810839 1
## 32982  810840 1
## 32983  810841 1
## 32984  810842 1
## 32985  810843 1
## 32986  810844 1
## 32987  810846 1
## 32988  810847 1
## 32989  810848 1
## 32990  810849 1
## 32991  810850 1
## 32992  810851 1
## 32993  810852 1
## 32994  810853 1
## 32995  810854 1
## 32996  810855 1
## 32997  810856 1
## 32998  810857 1
## 32999  810858 1
## 33000  810859 1
## 33001  810860 1
## 33002  810861 1
## 33003  810862 1
## 33004  810863 1
## 33005  810864 1
## 33006  810865 1
## 33007  810866 1
## 33008  810867 1
## 33009  810868 1
## 33010  810869 1
## 33011  810870 1
## 33012  810871 1
## 33013  810872 1
## 33014  810873 1
## 33015  810874 1
## 33016  810875 1
## 33017  810876 1
## 33018  810877 1
## 33019  810878 1
## 33020  810879 1
## 33021  810880 1
## 33022  810881 1
## 33023  810882 1
## 33024  810883 1
## 33025  810884 1
## 33026  810885 1
## 33027  810886 1
## 33028  810887 1
## 33029  810888 1
## 33030  810889 1
## 33031  810890 1
## 33032  810891 1
## 33033  810892 1
## 33034  810893 1
## 33035  810894 1
## 33036  810895 1
## 33037  810896 1
## 33038  810897 1
## 33039  810898 1
## 33040  810899 1
## 33041  810900 1
## 33042  810901 1
## 33043  810902 1
## 33044  810903 1
## 33045  810904 1
## 33046  810905 1
## 33047  810906 1
## 33048  810907 1
## 33049  810908 1
## 33050  810909 1
## 33051  810910 1
## 33052  810911 1
## 33053  810912 1
## 33054  810913 1
## 33055  810914 1
## 33056  810915 1
## 33057  810916 1
## 33058  810917 1
## 33059  810918 1
## 33060  810919 1
## 33061  810920 1
## 33062  810921 1
## 33063  810922 1
## 33064  810923 1
## 33065  810924 1
## 33066  810925 1
## 33067  810926 1
## 33068  810927 1
## 33069  810928 1
## 33070  810929 1
## 33071  810930 1
## 33072  810931 1
## 33073  810932 1
## 33074  810933 1
## 33075  810934 1
## 33076  810935 1
## 33077  810936 1
## 33078  810937 1
## 33079  810938 1
## 33080  810939 1
## 33081  810940 1
## 33082  810941 1
## 33083  810942 1
## 33084  810943 1
## 33085  810944 1
## 33086  810945 1
## 33087  810946 1
## 33088  810947 1
## 33089  810948 1
## 33090  810949 1
## 33091  810950 1
## 33092  810951 1
## 33093  810952 1
## 33094  810953 1
## 33095  810954 1
## 33096  810955 1
## 33097  810956 1
## 33098  810957 1
## 33099  810958 1
## 33100  810959 1
## 33101  810960 1
## 33102  810961 1
## 33103  810962 1
## 33104  810963 1
## 33105  810964 1
## 33106  810965 1
## 33107  810966 1
## 33108  810967 1
## 33109  810968 1
## 33110  810969 1
## 33111  810970 1
## 33112  810971 1
## 33113  810972 1
## 33114  810973 1
## 33115  810974 1
## 33116  810975 1
## 33117  810976 1
## 33118  810977 1
## 33119  810978 1
## 33120  810979 1
## 33121  810980 1
## 33122  810981 1
## 33123  810982 1
## 33124  810983 1
## 33125  810984 1
## 33126  810985 1
## 33127  810986 1
## 33128  810987 1
## 33129  810988 1
## 33130  810989 1
## 33131  810990 1
## 33132  810991 1
## 33133  810992 1
## 33134  810993 1
## 33135  810994 1
## 33136  810995 1
## 33137  810996 1
## 33138  810997 1
## 33139  810998 1
## 33140  810999 1
## 33141  811000 1
## 33142  811001 1
## 33143  811002 1
## 33144  811003 1
## 33145  811004 1
## 33146  811005 1
## 33147  811006 1
## 33148  811007 1
## 33149  811008 1
## 33150  811009 1
## 33151  811010 1
## 33152  811011 1
## 33153  811012 1
## 33154  811013 1
## 33155  811014 1
## 33156  811015 1
## 33157  811016 1
## 33158  811017 1
## 33159  811018 1
## 33160  811019 1
## 33161  811020 1
## 33162  811021 1
## 33163  811022 1
## 33164  811023 1
## 33165  811024 1
## 33166  811025 1
## 33167  811026 1
## 33168  811027 1
## 33169  811028 1
## 33170  811029 1
## 33171  811030 1
## 33172  811031 1
## 33173  811032 1
## 33174  811033 1
## 33175  811034 1
## 33176  811035 1
## 33177  811036 1
## 33178  811037 1
## 33179  811038 1
## 33180  811039 1
## 33181  811040 1
## 33182  811041 1
## 33183  811042 1
## 33184  811043 1
## 33185  811044 1
## 33186  811045 1
## 33187  811046 1
## 33188  811047 1
## 33189  811048 1
## 33190  811049 1
## 33191  811050 1
## 33192  811051 1
## 33193  811052 1
## 33194  811053 1
## 33195  811054 1
## 33196  811055 1
## 33197  811056 1
## 33198  811057 1
## 33199  811058 1
## 33200  811059 1
## 33201  811060 1
## 33202  811061 1
## 33203  811062 1
## 33204  811063 1
## 33205  811064 1
## 33206  811065 1
## 33207  811066 1
## 33208  811067 1
## 33209  811068 1
## 33210  811069 1
## 33211  811070 1
## 33212  811071 1
## 33213  811072 1
## 33214  811073 1
## 33215  811074 1
## 33216  811075 1
## 33217  811076 1
## 33218  811077 1
## 33219  811078 1
## 33220  811079 1
## 33221  811080 1
## 33222  811081 1
## 33223  811082 1
## 33224  811083 1
## 33225  811084 1
## 33226  811085 1
## 33227  811086 1
## 33228  811087 1
## 33229  811088 1
## 33230  811089 1
## 33231  811090 1
## 33232  811091 1
## 33233  811092 1
## 33234  811093 1
## 33235  811094 1
## 33236  811095 1
## 33237  811096 1
## 33238  811097 1
## 33239  811098 1
## 33240  811099 1
## 33241  811100 1
## 33242  811101 1
## 33243  811102 1
## 33244  811103 1
## 33245  811104 1
## 33246  811105 1
## 33247  811106 1
## 33248  811107 1
## 33249  811108 1
## 33250  811109 1
## 33251  811110 1
## 33252  811111 1
## 33253  811112 1
## 33254  811113 1
## 33255  811114 1
## 33256  811115 1
## 33257  811116 1
## 33258  811117 1
## 33259  811118 1
## 33260  811119 1
## 33261  811120 1
## 33262  811121 1
## 33263  811122 1
## 33264  811123 1
## 33265  811124 1
## 33266  811125 1
## 33267  811126 1
## 33268  811127 1
## 33269  811128 1
## 33270  811129 1
## 33271  811130 1
## 33272  811131 1
## 33273  811132 1
## 33274  811133 1
## 33275  811134 1
## 33276  811135 1
## 33277  811136 1
## 33278  811137 1
## 33279  811138 1
## 33280  811139 1
## 33281  811140 1
## 33282  811141 1
## 33283  811142 1
## 33284  811143 1
## 33285  811144 1
## 33286  811145 1
## 33287  811146 1
## 33288  811147 1
## 33289  811148 1
## 33290  811149 1
## 33291  811150 1
## 33292  811151 1
## 33293  811152 1
## 33294  811153 1
## 33295  811154 1
## 33296  811155 1
## 33297  811156 1
## 33298  811157 1
## 33299  811158 1
## 33300  811159 1
## 33301  811160 1
## 33302  811161 1
## 33303  811162 1
## 33304  811163 1
## 33305  811164 1
## 33306  811165 1
## 33307  811166 1
## 33308  811167 1
## 33309  811168 1
## 33310  811169 1
## 33311  811170 1
## 33312  811171 1
## 33313  811172 1
## 33314  811173 1
## 33315  811175 1
## 33316  811176 1
## 33317  811177 1
## 33318  811178 1
## 33319  811179 1
## 33320  811180 1
## 33321  811181 1
## 33322  811182 1
## 33323  811183 1
## 33324  811184 1
## 33325  811185 1
## 33326  811186 1
## 33327  811187 1
## 33328  811188 1
## 33329  811189 1
## 33330  811190 1
## 33331  811191 1
## 33332  811192 1
## 33333  811193 1
## 33334  811194 1
## 33335  811195 1
## 33336  811196 1
## 33337  811197 1
## 33338  811198 1
## 33339  811199 1
## 33340  811200 1
## 33341  811201 1
## 33342  811202 1
## 33343  811203 1
## 33344  811204 1
## 33345  811205 1
## 33346  811206 1
## 33347  811207 1
## 33348  811208 1
## 33349  811209 1
## 33350  811210 1
## 33351  811211 1
## 33352  811212 1
## 33353  811213 1
## 33354  811214 1
## 33355  811215 1
## 33356  811216 1
## 33357  811217 1
## 33358  811218 1
## 33359  811219 1
## 33360  811220 1
## 33361  811221 1
## 33362  811222 1
## 33363  811223 1
## 33364  811224 1
## 33365  811225 1
## 33366  811226 1
## 33367  811227 1
## 33368  811228 1
## 33369  811229 1
## 33370  811230 1
## 33371  811231 1
## 33372  811232 1
## 33373  811233 1
## 33374  811234 1
## 33375  811235 1
## 33376  811236 1
## 33377  811237 1
## 33378  811238 1
## 33379  811239 1
## 33380  811240 1
## 33381  811241 1
## 33382  811242 1
## 33383  811243 1
## 33384  811244 1
## 33385  811245 1
## 33386  811246 1
## 33387  811247 1
## 33388  811248 1
## 33389  811249 1
## 33390  811250 1
## 33391  811251 1
## 33392  811252 1
## 33393  811253 1
## 33394  811254 1
## 33395  811255 1
## 33396  811256 1
## 33397  811257 1
## 33398  811258 1
## 33399  811259 1
## 33400  811260 1
## 33401  811261 1
## 33402  811262 1
## 33403  811263 1
## 33404  811264 1
## 33405  811265 1
## 33406  811266 1
## 33407  811267 1
## 33408  811268 1
## 33409  811269 1
## 33410  811270 1
## 33411  811271 1
## 33412  811272 1
## 33413  811273 1
## 33414  811274 1
## 33415  811275 1
## 33416  811276 1
## 33417  811278 1
## 33418  811279 1
## 33419  811280 1
## 33420  811281 1
## 33421  811282 1
## 33422  811283 1
## 33423  811284 1
## 33424  811285 1
## 33425  811286 1
## 33426  811287 1
## 33427  811288 1
## 33428  811289 1
## 33429  811290 1
## 33430  811291 1
## 33431  811292 1
## 33432  811293 1
## 33433  811294 1
## 33434  811295 1
## 33435  811296 1
## 33436  811297 1
## 33437  811298 1
## 33438  811299 1
## 33439  811300 1
## 33440  811301 1
## 33441  811302 1
## 33442  811303 1
## 33443  811304 1
## 33444  811305 1
## 33445  811306 1
## 33446  811307 1
## 33447  811308 1
## 33448  811309 1
## 33449  811310 1
## 33450  811311 1
## 33451  811312 1
## 33452  811313 1
## 33453  811314 1
## 33454  811315 1
## 33455  811316 1
## 33456  811317 1
## 33457  811318 1
## 33458  811319 1
## 33459  811320 1
## 33460  811321 1
## 33461  811322 1
## 33462  811323 1
## 33463  811326 1
## 33464  811327 1
## 33465  811328 1
## 33466  811329 1
## 33467  811330 1
## 33468  811331 1
## 33469  811332 1
## 33470  811333 1
## 33471  811334 1
## 33472  811335 1
## 33473  811336 1
## 33474  811337 1
## 33475  811338 1
## 33476  811339 1
## 33477  811340 1
## 33478  811341 1
## 33479  811342 1
## 33480  811343 1
## 33481  811344 1
## 33482  811345 1
## 33483  811346 1
## 33484  811347 1
## 33485  811348 1
## 33486  811349 1
## 33487  811350 1
## 33488  811351 1
## 33489  811352 1
## 33490  811353 1
## 33491  811354 1
## 33492  811355 1
## 33493  811356 1
## 33494  811357 1
## 33495  811358 1
## 33496  811359 1
## 33497  811360 1
## 33498  811361 1
## 33499  811362 1
## 33500  811363 1
## 33501  811364 1
## 33502  811365 1
## 33503  811366 1
## 33504  811367 1
## 33505  811368 1
## 33506  811369 1
## 33507  811370 1
## 33508  811371 1
## 33509  811372 1
## 33510  811373 1
## 33511  811374 1
## 33512  811375 1
## 33513  811376 1
## 33514  811377 1
## 33515  811378 1
## 33516  811379 1
## 33517  811380 1
## 33518  811382 1
## 33519  811383 1
## 33520  811384 1
## 33521  811385 1
## 33522  811386 1
## 33523  811387 1
## 33524  811388 1
## 33525  811389 1
## 33526  811390 1
## 33527  811391 1
## 33528  811392 1
## 33529  811393 1
## 33530  811394 1
## 33531  811395 1
## 33532  811396 1
## 33533  811397 1
## 33534  811398 1
## 33535  811399 1
## 33536  811400 1
## 33537  811401 1
## 33538  811402 1
## 33539  811403 1
## 33540  811404 1
## 33541  811405 1
## 33542  811406 1
## 33543  811407 1
## 33544  811408 1
## 33545  811409 1
## 33546  811410 1
## 33547  811411 1
## 33548  811412 1
## 33549  811413 1
## 33550  811414 1
## 33551  811415 1
## 33552  811416 1
## 33553  811417 1
## 33554  811418 1
## 33555  811419 1
## 33556  811420 1
## 33557  811421 1
## 33558  811422 1
## 33559  811423 1
## 33560  811424 1
## 33561  811425 1
## 33562  811426 1
## 33563  811427 1
## 33564  811428 1
## 33565  811429 1
## 33566  811430 1
## 33567  811431 1
## 33568  811433 1
## 33569  811434 1
## 33570  811435 1
## 33571  811436 1
## 33572  811437 1
## 33573  811438 1
## 33574  811439 1
## 33575  811440 1
## 33576  811441 1
## 33577  811442 1
## 33578  811443 1
## 33579  811444 1
## 33580  811445 1
## 33581  811446 1
## 33582  811447 1
## 33583  811448 1
## 33584  811449 1
## 33585  811450 1
## 33586  811451 1
## 33587  811452 1
## 33588  811453 1
## 33589  811454 1
## 33590  811455 1
## 33591  811456 1
## 33592  811457 1
## 33593  811458 1
## 33594  811459 1
## 33595  811460 1
## 33596  811461 1
## 33597  811462 1
## 33598  811463 1
## 33599  811464 1
## 33600  811465 1
## 33601  811466 1
## 33602  811467 1
## 33603  811468 1
## 33604  811469 1
## 33605  811470 1
## 33606  811471 1
## 33607  811472 1
## 33608  811473 1
## 33609  811474 1
## 33610  811475 1
## 33611  811476 1
## 33612  811477 1
## 33613  811478 1
## 33614  811479 1
## 33615  811480 1
## 33616  811481 1
## 33617  811482 1
## 33618  811483 1
## 33619  811484 1
## 33620  811485 1
## 33621  811486 1
## 33622  811487 1
## 33623  811488 1
## 33624  811489 1
## 33625  811491 1
## 33626  811492 1
## 33627  811493 1
## 33628  811494 1
## 33629  811495 1
## 33630  811496 1
## 33631  811497 1
## 33632  811498 1
## 33633  811499 1
## 33634  811500 1
## 33635  811501 1
## 33636  811502 1
## 33637  811503 1
## 33638  811504 1
## 33639  811505 1
## 33640  811506 1
## 33641  811507 1
## 33642  811508 1
## 33643  811509 1
## 33644  811510 1
## 33645  811511 1
## 33646  811512 1
## 33647  811513 1
## 33648  811514 1
## 33649  811515 1
## 33650  811516 1
## 33651  811517 1
## 33652  811518 1
## 33653  811519 1
## 33654  811520 1
## 33655  811521 1
## 33656  811522 1
## 33657  811523 1
## 33658  811524 1
## 33659  811525 1
## 33660  811526 1
## 33661  811527 1
## 33662  811528 1
## 33663  811529 1
## 33664  811530 1
## 33665  811531 1
## 33666  811532 1
## 33667  811533 1
## 33668  811534 1
## 33669  811535 1
## 33670  811536 1
## 33671  811537 1
## 33672  811538 1
## 33673  811539 1
## 33674  811540 1
## 33675  811541 1
## 33676  811542 1
## 33677  811543 1
## 33678  811544 1
## 33679  811545 1
## 33680  811546 1
## 33681  811547 1
## 33682  811548 1
## 33683  811549 1
## 33684  811550 1
## 33685  811551 1
## 33686  811553 1
## 33687  811554 1
## 33688  811555 1
## 33689  811556 1
## 33690  811557 1
## 33691  811558 1
## 33692  811559 1
## 33693  811560 1
## 33694  811561 1
## 33695  811562 1
## 33696  811563 1
## 33697  811564 1
## 33698  811565 1
## 33699  811566 1
## 33700  811567 1
## 33701  811568 1
## 33702  811569 1
## 33703  811570 1
## 33704  811571 1
## 33705  811572 1
## 33706  811573 1
## 33707  811574 1
## 33708  811575 1
## 33709  811576 1
## 33710  811577 1
## 33711  811578 1
## 33712  811579 1
## 33713  811580 1
## 33714  811581 1
## 33715  811582 1
## 33716  811583 1
## 33717  811584 1
## 33718  811585 1
## 33719  811586 1
## 33720  811587 1
## 33721  811588 1
## 33722  811589 1
## 33723  811590 1
## 33724  811591 1
## 33725  811592 1
## 33726  811593 1
## 33727  811594 1
## 33728  811595 1
## 33729  811596 1
## 33730  811597 1
## 33731  811598 1
## 33732  811599 1
## 33733  811600 1
## 33734  811601 1
## 33735  811602 1
## 33736  811603 1
## 33737  811604 1
## 33738  811605 1
## 33739  811606 1
## 33740  811607 1
## 33741  811608 1
## 33742  811609 1
## 33743  811610 1
## 33744  811612 1
## 33745  811613 1
## 33746  811614 1
## 33747  811615 1
## 33748  811616 1
## 33749  811617 1
## 33750  811618 1
## 33751  811619 1
## 33752  811620 1
## 33753  811621 1
## 33754  811622 1
## 33755  811623 1
## 33756  811624 1
## 33757  811625 1
## 33758  811626 1
## 33759  811627 1
## 33760  811628 1
## 33761  811629 1
## 33762  811630 1
## 33763  811631 1
## 33764  811632 1
## 33765  811633 1
## 33766  811634 1
## 33767  811635 1
## 33768  811636 1
## 33769  811637 1
## 33770  811638 1
## 33771  811639 1
## 33772  811640 1
## 33773  811641 1
## 33774  811642 1
## 33775  811643 1
## 33776  811644 1
## 33777  811645 1
## 33778  811646 1
## 33779  811647 1
## 33780  811648 1
## 33781  811649 1
## 33782  811650 1
## 33783  811651 1
## 33784  811652 1
## 33785  811653 1
## 33786  811654 1
## 33787  811655 1
## 33788  811656 1
## 33789  811657 1
## 33790  811658 1
## 33791  811659 1
## 33792  811660 1
## 33793  811661 1
## 33794  811662 1
## 33795  811663 1
## 33796  811664 1
## 33797  811665 1
## 33798  811666 1
## 33799  811667 1
## 33800  811668 1
## 33801  811669 1
## 33802  811670 1
## 33803  811671 1
## 33804  811672 1
## 33805  811673 1
## 33806  811674 1
## 33807  811675 1
## 33808  811676 1
## 33809  811677 1
## 33810  811678 1
## 33811  811681 1
## 33812  811682 1
## 33813  811683 1
## 33814  811684 1
## 33815  811685 1
## 33816  811686 1
## 33817  811687 1
## 33818  811688 1
## 33819  811689 1
## 33820  811690 1
## 33821  811691 1
## 33822  811692 1
## 33823  811693 1
## 33824  811694 1
## 33825  811695 1
## 33826  811696 1
## 33827  811697 1
## 33828  811698 1
## 33829  811699 1
## 33830  811700 1
## 33831  811701 1
## 33832  811702 1
## 33833  811703 1
## 33834  811704 1
## 33835  811705 1
## 33836  811706 1
## 33837  811707 1
## 33838  811708 1
## 33839  811709 1
## 33840  811710 1
## 33841  811711 1
## 33842  811712 1
## 33843  811713 1
## 33844  811714 1
## 33845  811715 1
## 33846  811716 1
## 33847  811717 1
## 33848  811718 1
## 33849  811719 1
## 33850  811720 1
## 33851  811721 1
## 33852  811722 1
## 33853  811723 1
## 33854  811724 1
## 33855  811725 1
## 33856  811726 1
## 33857  811727 1
## 33858  811728 1
## 33859  811729 1
## 33860  811730 1
## 33861  811731 1
## 33862  811732 1
## 33863  811733 1
## 33864  811734 1
## 33865  811735 1
## 33866  811737 1
## 33867  811738 1
## 33868  811739 1
## 33869  811740 1
## 33870  811741 1
## 33871  811742 1
## 33872  811743 1
## 33873  811744 1
## 33874  811745 1
## 33875  811746 1
## 33876  811747 1
## 33877  811748 1
## 33878  811749 1
## 33879  811750 1
## 33880  811751 1
## 33881  811752 1
## 33882  811753 1
## 33883  811754 1
## 33884  811755 1
## 33885  811756 1
## 33886  811757 1
## 33887  811758 1
## 33888  811759 1
## 33889  811760 1
## 33890  811761 1
## 33891  811762 1
## 33892  811763 1
## 33893  811764 1
## 33894  811765 1
## 33895  811766 1
## 33896  811767 1
## 33897  811768 1
## 33898  811769 1
## 33899  811770 1
## 33900  811771 1
## 33901  811772 1
## 33902  811773 1
## 33903  811774 1
## 33904  811775 1
## 33905  811776 1
## 33906  811777 1
## 33907  811778 1
## 33908  811779 1
## 33909  811780 1
## 33910  811781 1
## 33911  811782 1
## 33912  811783 1
## 33913  811784 1
## 33914  811785 1
## 33915  811786 1
## 33916  811787 1
## 33917  811788 1
## 33918  811789 1
## 33919  811790 1
## 33920  811791 1
## 33921  811792 1
## 33922  811793 1
## 33923  811794 1
## 33924  811795 1
## 33925  811796 1
## 33926  811797 1
## 33927  811798 1
## 33928  811799 1
## 33929  811800 1
## 33930  811801 1
## 33931  811803 1
## 33932  811804 1
## 33933  811805 1
## 33934  811806 1
## 33935  811807 1
## 33936  811808 1
## 33937  811809 1
## 33938  811810 1
## 33939  811811 1
## 33940  811812 1
## 33941  811813 1
## 33942  811814 1
## 33943  811815 1
## 33944  811816 1
## 33945  811817 1
## 33946  811818 1
## 33947  811819 1
## 33948  811820 1
## 33949  811821 1
## 33950  811822 1
## 33951  811823 1
## 33952  811824 1
## 33953  811825 1
## 33954  811826 1
## 33955  811827 1
## 33956  811828 1
## 33957  811829 1
## 33958  811830 1
## 33959  811831 1
## 33960  811832 1
## 33961  811833 1
## 33962  811834 1
## 33963  811835 1
## 33964  811836 1
## 33965  811837 1
## 33966  811838 1
## 33967  811839 1
## 33968  811840 1
## 33969  811841 1
## 33970  811842 1
## 33971  811843 1
## 33972  811844 1
## 33973  811845 1
## 33974  811846 1
## 33975  811847 1
## 33976  811848 1
## 33977  811849 1
## 33978  811850 1
## 33979  811851 1
## 33980  811852 1
## 33981  811853 1
## 33982  811854 1
## 33983  811855 1
## 33984  811856 1
## 33985  811857 1
## 33986  811858 1
## 33987  811859 1
## 33988  811860 1
## 33989  811861 1
## 33990  811862 1
## 33991  811863 1
## 33992  811864 1
## 33993  811865 1
## 33994  811866 1
## 33995  811867 1
## 33996  811868 1
## 33997  811869 1
## 33998  811870 1
## 33999  811871 1
## 34000  811872 1
## 34001  811873 1
## 34002  811874 1
## 34003  811875 1
## 34004  811876 1
## 34005  811877 1
## 34006  811878 1
## 34007  811879 1
## 34008  811880 1
## 34009  811881 1
## 34010  811882 1
## 34011  811883 1
## 34012  811884 1
## 34013  811885 1
## 34014  811886 1
## 34015  811887 1
## 34016  811888 1
## 34017  811889 1
## 34018  811890 1
## 34019  811891 1
## 34020  811892 1
## 34021  811893 1
## 34022  811894 1
## 34023  811895 1
## 34024  811896 1
## 34025  811897 1
## 34026  811898 1
## 34027  811899 1
## 34028  811900 1
## 34029  811901 1
## 34030  811902 1
## 34031  811903 1
## 34032  811904 1
## 34033  811905 1
## 34034  811906 1
## 34035  811907 1
## 34036  811908 1
## 34037  811909 1
## 34038  811910 1
## 34039  811911 1
## 34040  811912 1
## 34041  811913 1
## 34042  811914 1
## 34043  811915 1
## 34044  811916 1
## 34045  811917 1
## 34046  811918 1
## 34047  811919 1
## 34048  811920 1
## 34049  811921 1
## 34050  811922 1
## 34051  811923 1
## 34052  811924 1
## 34053  811925 1
## 34054  811926 1
## 34055  811927 1
## 34056  811928 1
## 34057  811929 1
## 34058  811930 1
## 34059  811931 1
## 34060  811932 1
## 34061  811933 1
## 34062  811934 1
## 34063  811935 1
## 34064  811936 1
## 34065  811937 1
## 34066  811938 1
## 34067  811939 1
## 34068  811940 1
## 34069  811941 1
## 34070  811942 1
## 34071  811943 1
## 34072  811944 1
## 34073  811945 1
## 34074  811946 1
## 34075  811947 1
## 34076  811948 1
## 34077  811949 1
## 34078  811950 1
## 34079  811951 1
## 34080  811952 1
## 34081  811953 1
## 34082  811954 1
## 34083  811955 1
## 34084  811956 1
## 34085  811957 1
## 34086  811958 1
## 34087  811959 1
## 34088  811960 1
## 34089  811961 1
## 34090  811962 1
## 34091  811963 1
## 34092  811964 1
## 34093  811965 1
## 34094  811966 1
## 34095  811967 1
## 34096  811968 1
## 34097  811969 1
## 34098  811970 1
## 34099  811971 1
## 34100  811972 1
## 34101  811973 1
## 34102  811974 1
## 34103  811975 1
## 34104  811976 1
## 34105  811977 1
## 34106  811978 1
## 34107  811979 1
## 34108  811980 1
## 34109  811981 1
## 34110  811982 1
## 34111  811983 1
## 34112  811984 1
## 34113  811985 1
## 34114  811986 1
## 34115  811987 1
## 34116  811988 1
## 34117  811989 1
## 34118  811990 1
## 34119  811991 1
## 34120  811992 1
## 34121  811993 1
## 34122  811994 1
## 34123  811995 1
## 34124  811996 1
## 34125  811997 1
## 34126  811998 1
## 34127  811999 1
## 34128  812000 1
## 34129  812001 1
## 34130  812002 1
## 34131  812003 1
## 34132  812004 1
## 34133  812005 1
## 34134  812006 1
## 34135  812007 1
## 34136  812008 1
## 34137  812009 1
## 34138  812010 1
## 34139  812011 1
## 34140  812012 1
## 34141  812013 1
## 34142  812014 1
## 34143  812015 1
## 34144  812016 1
## 34145  812017 1
## 34146  812018 1
## 34147  812019 1
## 34148  812020 1
## 34149  812021 1
## 34150  812022 1
## 34151  812023 1
## 34152  812024 1
## 34153  812025 1
## 34154  812026 1
## 34155  812027 1
## 34156  812028 1
## 34157  812029 1
## 34158  812030 1
## 34159  812031 1
## 34160  812032 1
## 34161  812033 1
## 34162  812034 1
## 34163  812035 1
## 34164  812036 1
## 34165  812037 1
## 34166  812038 1
## 34167  812039 1
## 34168  812040 1
## 34169  812041 1
## 34170  812042 1
## 34171  812043 1
## 34172  812044 1
## 34173  812045 1
## 34174  812046 1
## 34175  812047 1
## 34176  812048 1
## 34177  812049 1
## 34178  812050 1
## 34179  812051 1
## 34180  812052 1
## 34181  812053 1
## 34182  812054 1
## 34183  812055 1
## 34184  812056 1
## 34185  812057 1
## 34186  812058 1
## 34187  812059 1
## 34188  812060 1
## 34189  812061 1
## 34190  812062 1
## 34191  812064 1
## 34192  812065 1
## 34193  812066 1
## 34194  812067 1
## 34195  812068 1
## 34196  812069 1
## 34197  812070 1
## 34198  812071 1
## 34199  812072 1
## 34200  812073 1
## 34201  812074 1
## 34202  812075 1
## 34203  812076 1
## 34204  812077 1
## 34205  812078 1
## 34206  812079 1
## 34207  812080 1
## 34208  812081 1
## 34209  812082 1
## 34210  812083 1
## 34211  812084 1
## 34212  812085 1
## 34213  812086 1
## 34214  812087 1
## 34215  812088 1
## 34216  812089 1
## 34217  812090 1
## 34218  812091 1
## 34219  812092 1
## 34220  812093 1
## 34221  812094 1
## 34222  812095 1
## 34223  812096 1
## 34224  812097 1
## 34225  812098 1
## 34226  812099 1
## 34227  812100 1
## 34228  812101 1
## 34229  812102 1
## 34230  812103 1
## 34231  812104 1
## 34232  812105 1
## 34233  812106 1
## 34234  812107 1
## 34235  812108 1
## 34236  812109 1
## 34237  812110 1
## 34238  812111 1
## 34239  812112 1
## 34240  812113 1
## 34241  812114 1
## 34242  812115 1
## 34243  812116 1
## 34244  812117 1
## 34245  812118 1
## 34246  812119 1
## 34247  812120 1
## 34248  812121 1
## 34249  812122 1
## 34250  812123 1
## 34251  812124 1
## 34252  812125 1
## 34253  812126 1
## 34254  812127 1
## 34255  812128 1
## 34256  812129 1
## 34257  812130 1
## 34258  812131 1
## 34259  812132 1
## 34260  812133 1
## 34261  812134 1
## 34262  812135 1
## 34263  812136 1
## 34264  812137 1
## 34265  812138 1
## 34266  812139 1
## 34267  812140 1
## 34268  812141 1
## 34269  812142 1
## 34270  812143 1
## 34271  812144 1
## 34272  812145 1
## 34273  812146 1
## 34274  812147 1
## 34275  812148 1
## 34276  812149 1
## 34277  812150 1
## 34278  812151 1
## 34279  812152 1
## 34280  812153 1
## 34281  812154 1
## 34282  812155 1
## 34283  812156 1
## 34284  812157 1
## 34285  812158 1
## 34286  812159 1
## 34287  812160 1
## 34288  812161 1
## 34289  812162 1
## 34290  812163 1
## 34291  812164 1
## 34292  812165 1
## 34293  812166 1
## 34294  812167 1
## 34295  812168 1
## 34296  812169 1
## 34297  812170 1
## 34298  812171 1
## 34299  812172 1
## 34300  812173 1
## 34301  812174 1
## 34302  812175 1
## 34303  812176 1
## 34304  812177 1
## 34305  812178 1
## 34306  812179 1
## 34307  812180 1
## 34308  812181 1
## 34309  812182 1
## 34310  812183 1
## 34311  812184 1
## 34312  812185 1
## 34313  812186 1
## 34314  812187 1
## 34315  812188 1
## 34316  812189 1
## 34317  812190 1
## 34318  812191 1
## 34319  812192 1
## 34320  812193 1
## 34321  812194 1
## 34322  812195 1
## 34323  812196 1
## 34324  812197 1
## 34325  812198 1
## 34326  812199 1
## 34327  812200 1
## 34328  812201 1
## 34329  812202 1
## 34330  812203 1
## 34331  812204 1
## 34332  812205 1
## 34333  812206 1
## 34334  812207 1
## 34335  812208 1
## 34336  812209 1
## 34337  812210 1
## 34338  812211 1
## 34339  812212 1
## 34340  812213 1
## 34341  812214 1
## 34342  812215 1
## 34343  812216 1
## 34344  812217 1
## 34345  812218 1
## 34346  812219 1
## 34347  812220 1
## 34348  812221 1
## 34349  812222 1
## 34350  812223 1
## 34351  812224 1
## 34352  812225 1
## 34353  812226 1
## 34354  812227 1
## 34355  812228 1
## 34356  812229 1
## 34357  812230 1
## 34358  812231 1
## 34359  812232 1
## 34360  812233 1
## 34361  812234 1
## 34362  812235 1
## 34363  812236 1
## 34364  812237 1
## 34365  812238 1
## 34366  812239 1
## 34367  812240 1
## 34368  812241 1
## 34369  812242 1
## 34370  812243 1
## 34371  812244 1
## 34372  812245 1
## 34373  812246 1
## 34374  812247 1
## 34375  812248 1
## 34376  812249 1
## 34377  812250 1
## 34378  812251 1
## 34379  812252 1
## 34380  812253 1
## 34381  812254 1
## 34382  812255 1
## 34383  812256 1
## 34384  812257 1
## 34385  812258 1
## 34386  812259 1
## 34387  812260 1
## 34388  812261 1
## 34389  812262 1
## 34390  812263 1
## 34391  812264 1
## 34392  812265 1
## 34393  812266 1
## 34394  812267 1
## 34395  812268 1
## 34396  812269 1
## 34397  812270 1
## 34398  812271 1
## 34399  812272 1
## 34400  812273 1
## 34401  812274 1
## 34402  812275 1
## 34403  812276 1
## 34404  812277 1
## 34405  812278 1
## 34406  812279 1
## 34407  812280 1
## 34408  812281 1
## 34409  812282 1
## 34410  812283 1
## 34411  812284 1
## 34412  812285 1
## 34413  812286 1
## 34414  812287 1
## 34415  812288 1
## 34416  812289 1
## 34417  812290 1
## 34418  812291 1
## 34419  812292 1
## 34420  812293 1
## 34421  812294 1
## 34422  812295 1
## 34423  812296 1
## 34424  812297 1
## 34425  812298 1
## 34426  812299 1
## 34427  812300 1
## 34428  812301 1
## 34429  812302 1
## 34430  812303 1
## 34431  812304 1
## 34432  812305 1
## 34433  812306 1
## 34434  812307 1
## 34435  812308 1
## 34436  812309 1
## 34437  812310 1
## 34438  812311 1
## 34439  812312 1
## 34440  812313 1
## 34441  812314 1
## 34442  812315 1
## 34443  812316 1
## 34444  812317 1
## 34445  812318 1
## 34446  812319 1
## 34447  812320 1
## 34448  812321 1
## 34449  812322 1
## 34450  812323 1
## 34451  812324 1
## 34452  812325 1
## 34453  812326 1
## 34454  812327 1
## 34455  812328 1
## 34456  812329 1
## 34457  812330 1
## 34458  812331 1
## 34459  812332 1
## 34460  812333 1
## 34461  812334 1
## 34462  812335 1
## 34463  812336 1
## 34464  812337 1
## 34465  812338 1
## 34466  812339 1
## 34467  812340 1
## 34468  812341 1
## 34469  812342 1
## 34470  812343 1
## 34471  812344 1
## 34472  812345 1
## 34473  812346 1
## 34474  812347 1
## 34475  812348 1
## 34476  812349 1
## 34477  812350 1
## 34478  812351 1
## 34479  812352 1
## 34480  812353 1
## 34481  812354 1
## 34482  812355 1
## 34483  812356 1
## 34484  812357 1
## 34485  812358 1
## 34486  812359 1
## 34487  812360 1
## 34488  812361 1
## 34489  812362 1
## 34490  812363 1
## 34491  812364 1
## 34492  812365 1
## 34493  812367 1
## 34494  812368 1
## 34495  812369 1
## 34496  812370 1
## 34497  812371 1
## 34498  812372 1
## 34499  812373 1
## 34500  812374 1
## 34501  812375 1
## 34502  812376 1
## 34503  812377 1
## 34504  812378 1
## 34505  812379 1
## 34506  812380 1
## 34507  812381 1
## 34508  812382 1
## 34509  812383 1
## 34510  812384 1
## 34511  812385 1
## 34512  812386 1
## 34513  812387 1
## 34514  812388 1
## 34515  812389 1
## 34516  812390 1
## 34517  812391 1
## 34518  812392 1
## 34519  812393 1
## 34520  812394 1
## 34521  812395 1
## 34522  812396 1
## 34523  812397 1
## 34524  812398 1
## 34525  812399 1
## 34526  812400 1
## 34527  812401 1
## 34528  812402 1
## 34529  812403 1
## 34530  812404 1
## 34531  812405 1
## 34532  812406 1
## 34533  812407 1
## 34534  812408 1
## 34535  812409 1
## 34536  812410 1
## 34537  812411 1
## 34538  812412 1
## 34539  812413 1
## 34540  812414 1
## 34541  812415 1
## 34542  812416 1
## 34543  812417 1
## 34544  812418 1
## 34545  812419 1
## 34546  812420 1
## 34547  812421 1
## 34548  812422 1
## 34549  812423 1
## 34550  812424 1
## 34551  812425 1
## 34552  812426 1
## 34553  812427 1
## 34554  812428 1
## 34555  812429 1
## 34556  812430 1
## 34557  812431 1
## 34558  812432 1
## 34559  812433 1
## 34560  812434 1
## 34561  812435 1
## 34562  812436 1
## 34563  812437 1
## 34564  812438 1
## 34565  812439 1
## 34566  812440 1
## 34567  812441 1
## 34568  812442 1
## 34569  812443 1
## 34570  812444 1
## 34571  812445 1
## 34572  812446 1
## 34573  812447 1
## 34574  812448 1
## 34575  812449 1
## 34576  812450 1
## 34577  812451 1
## 34578  812452 1
## 34579  812453 1
## 34580  812454 1
## 34581  812455 1
## 34582  812456 1
## 34583  812457 1
## 34584  812458 1
## 34585  812459 1
## 34586  812460 1
## 34587  812461 1
## 34588  812462 1
## 34589  812463 1
## 34590  812464 1
## 34591  812466 1
## 34592  812467 1
## 34593  812468 1
## 34594  812469 1
## 34595  812470 1
## 34596  812471 1
## 34597  812472 1
## 34598  812473 1
## 34599  812474 1
## 34600  812475 1
## 34601  812476 1
## 34602  812477 1
## 34603  812478 1
## 34604  812479 1
## 34605  812480 1
## 34606  812481 1
## 34607  812482 1
## 34608  812483 1
## 34609  812484 1
## 34610  812485 1
## 34611  812486 1
## 34612  812487 1
## 34613  812488 1
## 34614  812489 1
## 34615  812490 1
## 34616  812491 1
## 34617  812492 1
## 34618  812493 1
## 34619  812494 1
## 34620  812495 1
## 34621  812496 1
## 34622  812497 1
## 34623  812498 1
## 34624  812499 1
## 34625  812500 1
## 34626  812501 1
## 34627  812502 1
## 34628  812503 1
## 34629  812504 1
## 34630  812505 1
## 34631  812506 1
## 34632  812507 1
## 34633  812508 1
## 34634  812509 1
## 34635  812510 1
## 34636  812511 1
## 34637  812512 1
## 34638  812513 1
## 34639  812514 1
## 34640  812515 1
## 34641  812516 1
## 34642  812517 1
## 34643  812518 1
## 34644  812519 1
## 34645  812520 1
## 34646  812521 1
## 34647  812522 1
## 34648  812523 1
## 34649  812524 1
## 34650  812525 1
## 34651  812526 1
## 34652  812527 1
## 34653  812528 1
## 34654  812529 1
## 34655  812530 1
## 34656  812531 1
## 34657  812532 1
## 34658  812533 1
## 34659  812534 1
## 34660  812535 1
## 34661  812536 1
## 34662  812538 1
## 34663  812539 1
## 34664  812540 1
## 34665  812541 1
## 34666  812542 1
## 34667  812543 1
## 34668  812544 1
## 34669  812545 1
## 34670  812546 1
## 34671  812547 1
## 34672  812548 1
## 34673  812549 1
## 34674  812550 1
## 34675  812551 1
## 34676  812552 1
## 34677  812553 1
## 34678  812554 1
## 34679  812555 1
## 34680  812556 1
## 34681  812557 1
## 34682  812558 1
## 34683  812559 1
## 34684  812560 1
## 34685  812561 1
## 34686  812562 1
## 34687  812563 1
## 34688  812564 1
## 34689  812566 1
## 34690  812567 1
## 34691  812568 1
## 34692  812569 1
## 34693  812570 1
## 34694  812571 1
## 34695  812572 1
## 34696  812573 1
## 34697  812574 1
## 34698  812575 1
## 34699  812576 1
## 34700  812577 1
## 34701  812578 1
## 34702  812579 1
## 34703  812580 1
## 34704  812581 1
## 34705  812582 1
## 34706  812583 1
## 34707  812584 1
## 34708  812585 1
## 34709  812586 1
## 34710  812587 1
## 34711  812588 1
## 34712  812589 1
## 34713  812590 1
## 34714  812591 1
## 34715  812592 1
## 34716  812593 1
## 34717  812594 1
## 34718  812595 1
## 34719  812596 1
## 34720  812597 1
## 34721  812598 1
## 34722  812599 1
## 34723  812600 1
## 34724  812601 1
## 34725  812602 1
## 34726  812603 1
## 34727  812604 1
## 34728  812605 1
## 34729  812606 1
## 34730  812607 1
## 34731  812609 1
## 34732  812610 1
## 34733  812611 1
## 34734  812612 1
## 34735  812613 1
## 34736  812614 1
## 34737  812615 1
## 34738  812616 1
## 34739  812617 1
## 34740  812618 1
## 34741  812619 1
## 34742  812620 1
## 34743  812621 1
## 34744  812622 1
## 34745  812623 1
## 34746  812624 1
## 34747  812625 1
## 34748  812626 1
## 34749  812627 1
## 34750  812628 1
## 34751  812629 1
## 34752  812630 1
## 34753  812631 1
## 34754  812632 1
## 34755  812633 1
## 34756  812634 1
## 34757  812635 1
## 34758  812636 1
## 34759  812637 1
## 34760  812638 1
## 34761  812639 1
## 34762  812640 1
## 34763  812641 1
## 34764  812642 1
## 34765  812643 1
## 34766  812644 1
## 34767  812645 1
## 34768  812646 1
## 34769  812647 1
## 34770  812648 1
## 34771  812649 1
## 34772  812650 1
## 34773  812651 1
## 34774  812652 1
## 34775  812653 1
## 34776  812654 1
## 34777  812655 1
## 34778  812656 1
## 34779  812657 1
## 34780  812658 1
## 34781  812659 1
## 34782  812660 1
## 34783  812661 1
## 34784  812662 1
## 34785  812663 1
## 34786  812664 1
## 34787  812665 1
## 34788  812666 1
## 34789  812667 1
## 34790  812668 1
## 34791  812669 1
## 34792  812670 1
## 34793  812671 1
## 34794  812672 1
## 34795  812673 1
## 34796  812674 1
## 34797  812675 1
## 34798  812676 1
## 34799  812677 1
## 34800  812678 1
## 34801  812679 1
## 34802  812680 1
## 34803  812681 1
## 34804  812682 1
## 34805  812683 1
## 34806  812684 1
## 34807  812685 1
## 34808  812686 1
## 34809  812687 1
## 34810  812688 1
## 34811  812689 1
## 34812  812690 1
## 34813  812691 1
## 34814  812692 1
## 34815  812693 1
## 34816  812694 1
## 34817  812695 1
## 34818  812696 1
## 34819  812697 1
## 34820  812698 1
## 34821  812699 1
## 34822  812700 1
## 34823  812701 1
## 34824  812702 1
## 34825  812703 1
## 34826  812704 1
## 34827  812705 1
## 34828  812706 1
## 34829  812707 1
## 34830  812708 1
## 34831  812709 1
## 34832  812710 1
## 34833  812711 1
## 34834  812712 1
## 34835  812713 1
## 34836  812714 1
## 34837  812715 1
## 34838  812716 1
## 34839  812717 1
## 34840  812718 1
## 34841  812719 1
## 34842  812720 1
## 34843  812721 1
## 34844  812722 1
## 34845  812723 1
## 34846  812724 1
## 34847  812725 1
## 34848  812726 1
## 34849  812727 1
## 34850  812728 1
## 34851  812729 1
## 34852  812730 1
## 34853  812731 1
## 34854  812732 1
## 34855  812733 1
## 34856  812734 1
## 34857  812735 1
## 34858  812736 1
## 34859  812737 1
## 34860  812738 1
## 34861  812739 1
## 34862  812740 1
## 34863  812741 1
## 34864  812742 1
## 34865  812743 1
## 34866  812744 1
## 34867  812745 1
## 34868  812746 1
## 34869  812747 1
## 34870  812748 1
## 34871  812749 1
## 34872  812750 1
## 34873  812751 1
## 34874  812752 1
## 34875  812753 1
## 34876  812754 1
## 34877  812755 1
## 34878  812756 1
## 34879  812757 1
## 34880  812758 1
## 34881  812759 1
## 34882  812760 1
## 34883  812761 1
## 34884  812762 1
## 34885  812763 1
## 34886  812764 1
## 34887  812765 1
## 34888  812766 1
## 34889  812767 1
## 34890  812768 1
## 34891  812769 1
## 34892  812770 1
## 34893  812771 1
## 34894  812772 1
## 34895  812773 1
## 34896  812774 1
## 34897  812775 1
## 34898  812776 1
## 34899  812777 1
## 34900  812778 1
## 34901  812779 1
## 34902  812780 1
## 34903  812781 1
## 34904  812782 1
## 34905  812783 1
## 34906  812784 1
## 34907  812785 1
## 34908  812786 1
## 34909  812787 1
## 34910  812788 1
## 34911  812789 1
## 34912  812790 1
## 34913  812791 1
## 34914  812792 1
## 34915  812793 1
## 34916  812794 1
## 34917  812795 1
## 34918  812797 1
## 34919  812798 1
## 34920  812799 1
## 34921  812800 1
## 34922  812801 1
## 34923  812802 1
## 34924  812803 1
## 34925  812804 1
## 34926  812805 1
## 34927  812806 1
## 34928  812807 1
## 34929  812808 1
## 34930  812809 1
## 34931  812810 1
## 34932  812811 1
## 34933  812812 1
## 34934  812813 1
## 34935  812814 1
## 34936  812815 1
## 34937  812816 1
## 34938  812817 1
## 34939  812818 1
## 34940  812819 1
## 34941  812820 1
## 34942  812821 1
## 34943  812822 1
## 34944  812823 1
## 34945  812824 1
## 34946  812825 1
## 34947  812826 1
## 34948  812827 1
## 34949  812828 1
## 34950  812829 1
## 34951  812830 1
## 34952  812831 1
## 34953  812832 1
## 34954  812833 1
## 34955  812834 1
## 34956  812835 1
## 34957  812836 1
## 34958  812837 1
## 34959  812838 1
## 34960  812839 1
## 34961  812840 1
## 34962  812841 1
## 34963  812842 1
## 34964  812843 1
## 34965  812844 1
## 34966  812845 1
## 34967  812846 1
## 34968  812847 1
## 34969  812848 1
## 34970  812849 1
## 34971  812850 1
## 34972  812851 1
## 34973  812852 1
## 34974  812853 1
## 34975  812854 1
## 34976  812855 1
## 34977  812856 1
## 34978  812857 1
## 34979  812858 1
## 34980  812859 1
## 34981  812860 1
## 34982  812861 1
## 34983  812862 1
## 34984  812863 1
## 34985  812864 1
## 34986  812865 1
## 34987  812866 1
## 34988  812867 1
## 34989  812868 1
## 34990  812869 1
## 34991  812870 1
## 34992  812871 1
## 34993  812872 1
## 34994  812873 1
## 34995  812874 1
## 34996  812875 1
## 34997  812876 1
## 34998  812877 1
## 34999  812878 1
## 35000  812879 1
## 35001  812880 1
## 35002  812881 1
## 35003  812882 1
## 35004  812883 1
## 35005  812884 1
## 35006  812886 1
## 35007  812887 1
## 35008  812888 1
## 35009  812889 1
## 35010  812890 1
## 35011  812891 1
## 35012  812892 1
## 35013  812893 1
## 35014  812894 1
## 35015  812895 1
## 35016  812896 1
## 35017  812897 1
## 35018  812898 1
## 35019  812899 1
## 35020  812900 1
## 35021  812901 1
## 35022  812902 1
## 35023  812903 1
## 35024  812904 1
## 35025  812905 1
## 35026  812906 1
## 35027  812907 1
## 35028  812908 1
## 35029  812910 1
## 35030  812911 1
## 35031  812912 1
## 35032  812913 1
## 35033  812914 1
## 35034  812915 1
## 35035  812916 1
## 35036  812917 1
## 35037  812918 1
## 35038  812919 1
## 35039  812920 1
## 35040  812921 1
## 35041  812922 1
## 35042  812923 1
## 35043  812924 1
## 35044  812925 1
## 35045  812926 1
## 35046  812927 1
## 35047  812928 1
## 35048  812929 1
## 35049  812930 1
## 35050  812931 1
## 35051  812932 1
## 35052  812933 1
## 35053  812934 1
## 35054  812935 1
## 35055  812936 1
## 35056  812937 1
## 35057  812938 1
## 35058  812939 1
## 35059  812940 1
## 35060  812941 1
## 35061  812942 1
## 35062  812943 1
## 35063  812944 1
## 35064  812945 1
## 35065  812946 1
## 35066  812947 1
## 35067  812948 1
## 35068  812949 1
## 35069  812950 1
## 35070  812951 1
## 35071  812952 1
## 35072  812953 1
## 35073  812954 1
## 35074  812955 1
## 35075  812956 1
## 35076  812957 1
## 35077  812958 1
## 35078  812959 1
## 35079  812960 1
## 35080  812961 1
## 35081  812962 1
## 35082  812963 1
## 35083  812964 1
## 35084  812965 1
## 35085  812966 1
## 35086  812967 1
## 35087  812968 1
## 35088  812970 1
## 35089  812971 1
## 35090  812972 1
## 35091  812973 1
## 35092  812974 1
## 35093  812975 1
## 35094  812976 1
## 35095  812977 1
## 35096  812978 1
## 35097  812979 1
## 35098  812980 1
## 35099  812981 1
## 35100  812982 1
## 35101  812983 1
## 35102  812984 1
## 35103  812985 1
## 35104  812986 1
## 35105  812987 1
## 35106  812988 1
## 35107  812989 1
## 35108  812990 1
## 35109  812991 1
## 35110  812992 1
## 35111  812993 1
## 35112  812994 1
## 35113  812995 1
## 35114  812996 1
## 35115  812997 1
## 35116  812998 1
## 35117  812999 1
## 35118  813000 1
## 35119  813001 1
## 35120  813002 1
## 35121  813003 1
## 35122  813004 1
## 35123  813005 1
## 35124  813006 1
## 35125  813007 1
## 35126  813008 1
## 35127  813009 1
## 35128  813010 1
## 35129  813011 1
## 35130  813012 1
## 35131  813013 1
## 35132  813014 1
## 35133  813015 1
## 35134  813016 1
## 35135  813017 1
## 35136  813018 1
## 35137  813019 1
## 35138  813020 1
## 35139  813021 1
## 35140  813022 1
## 35141  813023 1
## 35142  813024 1
## 35143  813025 1
## 35144  813026 1
## 35145  813027 1
## 35146  813028 1
## 35147  813029 1
## 35148  813030 1
## 35149  813031 1
## 35150  813032 1
## 35151  813033 1
## 35152  813034 1
## 35153  813035 1
## 35154  813036 1
## 35155  813037 1
## 35156  813038 1
## 35157  813039 1
## 35158  813040 1
## 35159  813041 1
## 35160  813042 1
## 35161  813043 1
## 35162  813044 1
## 35163  813045 1
## 35164  813046 1
## 35165  813047 1
## 35166  813048 1
## 35167  813049 1
## 35168  813050 1
## 35169  813051 1
## 35170  813052 1
## 35171  813053 1
## 35172  813054 1
## 35173  813055 1
## 35174  813056 1
## 35175  813057 1
## 35176  813058 1
## 35177  813059 1
## 35178  813060 1
## 35179  813061 1
## 35180  813062 1
## 35181  813063 1
## 35182  813064 1
## 35183  813065 1
## 35184  813066 1
## 35185  813067 1
## 35186  813068 1
## 35187  813069 1
## 35188  813070 1
## 35189  813071 1
## 35190  813072 1
## 35191  813073 1
## 35192  813074 1
## 35193  813075 1
## 35194  813076 1
## 35195  813077 1
## 35196  813078 1
## 35197  813079 1
## 35198  813080 1
## 35199  813081 1
## 35200  813082 1
## 35201  813083 1
## 35202  813084 1
## 35203  813085 1
## 35204  813086 1
## 35205  813087 1
## 35206  813088 1
## 35207  813089 1
## 35208  813090 1
## 35209  813091 1
## 35210  813092 1
## 35211  813093 1
## 35212  813094 1
## 35213  813095 1
## 35214  813096 1
## 35215  813097 1
## 35216  813098 1
## 35217  813099 1
## 35218  813100 1
## 35219  813102 1
## 35220  813103 1
## 35221  813104 1
## 35222  813105 1
## 35223  813106 1
## 35224  813107 1
## 35225  813108 1
## 35226  813109 1
## 35227  813110 1
## 35228  813111 1
## 35229  813112 1
## 35230  813113 1
## 35231  813114 1
## 35232  813115 1
## 35233  813116 1
## 35234  813117 1
## 35235  813118 1
## 35236  813119 1
## 35237  813120 1
## 35238  813121 1
## 35239  813122 1
## 35240  813123 1
## 35241  813124 1
## 35242  813125 1
## 35243  813126 1
## 35244  813127 1
## 35245  813128 1
## 35246  813129 1
## 35247  813130 1
## 35248  813131 1
## 35249  813132 1
## 35250  813133 1
## 35251  813134 1
## 35252  813135 1
## 35253  813136 1
## 35254  813137 1
## 35255  813138 1
## 35256  813139 1
## 35257  813140 1
## 35258  813141 1
## 35259  813142 1
## 35260  813143 1
## 35261  813144 1
## 35262  813145 1
## 35263  813146 1
## 35264  813147 1
## 35265  813148 1
## 35266  813149 1
## 35267  813150 1
## 35268  813151 1
## 35269  813152 1
## 35270  813153 1
## 35271  813154 1
## 35272  813155 1
## 35273  813156 1
## 35274  813157 1
## 35275  813158 1
## 35276  813159 1
## 35277  813160 1
## 35278  813161 1
## 35279  813162 1
## 35280  813163 1
## 35281  813164 1
## 35282  813165 1
## 35283  813166 1
## 35284  813167 1
## 35285  813168 1
## 35286  813169 1
## 35287  813170 1
## 35288  813171 1
## 35289  813172 1
## 35290  813173 1
## 35291  813174 1
## 35292  813175 1
## 35293  813176 1
## 35294  813177 1
## 35295  813178 1
## 35296  813179 1
## 35297  813180 1
## 35298  813181 1
## 35299  813182 1
## 35300  813183 1
## 35301  813184 1
## 35302  813185 1
## 35303  813186 1
## 35304  813187 1
## 35305  813188 1
## 35306  813189 1
## 35307  813190 1
## 35308  813191 1
## 35309  813192 1
## 35310  813193 1
## 35311  813194 1
## 35312  813195 1
## 35313  813196 1
## 35314  813197 1
## 35315  813198 1
## 35316  813199 1
## 35317  813200 1
## 35318  813201 1
## 35319  813202 1
## 35320  813203 1
## 35321  813204 1
## 35322  813205 1
## 35323  813206 1
## 35324  813207 1
## 35325  813208 1
## 35326  813209 1
## 35327  813210 1
## 35328  813211 1
## 35329  813212 1
## 35330  813213 1
## 35331  813214 1
## 35332  813215 1
## 35333  813216 1
## 35334  813217 1
## 35335  813218 1
## 35336  813219 1
## 35337  813220 1
## 35338  813221 1
## 35339  813222 1
## 35340  813223 1
## 35341  813224 1
## 35342  813225 1
## 35343  813226 1
## 35344  813227 1
## 35345  813228 1
## 35346  813229 1
## 35347  813230 1
## 35348  813231 1
## 35349  813232 1
## 35350  813233 1
## 35351  813234 1
## 35352  813235 1
## 35353  813236 1
## 35354  813237 1
## 35355  813238 1
## 35356  813239 1
## 35357  813240 1
## 35358  813241 1
## 35359  813242 1
## 35360  813243 1
## 35361  813244 1
## 35362  813245 1
## 35363  813246 1
## 35364  813247 1
## 35365  813248 1
## 35366  813249 1
## 35367  813250 1
## 35368  813251 1
## 35369  813252 1
## 35370  813253 1
## 35371  813254 1
## 35372  813255 1
## 35373  813256 1
## 35374  813257 1
## 35375  813258 1
## 35376  813259 1
## 35377  813260 1
## 35378  813261 1
## 35379  813262 1
## 35380  813263 1
## 35381  813264 1
## 35382  813265 1
## 35383  813266 1
## 35384  813267 1
## 35385  813268 1
## 35386  813269 1
## 35387  813270 1
## 35388  813271 1
## 35389  813272 1
## 35390  813273 1
## 35391  813274 1
## 35392  813275 1
## 35393  813276 1
## 35394  813277 1
## 35395  813278 1
## 35396  813279 1
## 35397  813280 1
## 35398  813281 1
## 35399  813282 1
## 35400  813283 1
## 35401  813284 1
## 35402  813285 1
## 35403  813286 1
## 35404  813287 1
## 35405  813288 1
## 35406  813289 1
## 35407  813290 1
## 35408  813291 1
## 35409  813292 1
## 35410  813293 1
## 35411  813294 1
## 35412  813295 1
## 35413  813296 1
## 35414  813297 1
## 35415  813298 1
## 35416  813299 1
## 35417  813300 1
## 35418  813301 1
## 35419  813302 1
## 35420  813303 1
## 35421  813304 1
## 35422  813305 1
## 35423  813306 1
## 35424  813307 1
## 35425  813308 1
## 35426  813309 1
## 35427  813310 1
## 35428  813311 1
## 35429  813312 1
## 35430  813313 1
## 35431  813314 1
## 35432  813315 1
## 35433  813316 1
## 35434  813317 1
## 35435  813318 1
## 35436  813319 1
## 35437  813320 1
## 35438  813321 1
## 35439  813322 1
## 35440  813323 1
## 35441  813324 1
## 35442  813325 1
## 35443  813326 1
## 35444  813327 1
## 35445  813328 1
## 35446  813329 1
## 35447  813330 1
## 35448  813331 1
## 35449  813332 1
## 35450  813333 1
## 35451  813334 1
## 35452  813335 1
## 35453  813336 1
## 35454  813337 1
## 35455  813338 1
## 35456  813339 1
## 35457  813340 1
## 35458  813341 1
## 35459  813342 1
## 35460  813343 1
## 35461  813344 1
## 35462  813345 1
## 35463  813346 1
## 35464  813347 1
## 35465  813348 1
## 35466  813349 1
## 35467  813350 1
## 35468  813351 1
## 35469  813352 1
## 35470  813353 1
## 35471  813354 1
## 35472  813355 1
## 35473  813356 1
## 35474  813357 1
## 35475  813358 1
## 35476  813359 1
## 35477  813360 1
## 35478  813361 1
## 35479  813362 1
## 35480  813363 1
## 35481  813364 1
## 35482  813365 1
## 35483  813366 1
## 35484  813367 1
## 35485  813368 1
## 35486  813369 1
## 35487  813370 1
## 35488  813371 1
## 35489  813372 1
## 35490  813373 1
## 35491  813374 1
## 35492  813375 1
## 35493  813376 1
## 35494  813377 1
## 35495  813378 1
## 35496  813379 1
## 35497  813380 1
## 35498  813381 1
## 35499  813382 1
## 35500  813383 1
## 35501  813384 1
## 35502  813385 1
## 35503  813386 1
## 35504  813387 1
## 35505  813388 1
## 35506  813389 1
## 35507  813390 1
## 35508  813391 1
## 35509  813392 1
## 35510  813393 1
## 35511  813394 1
## 35512  813395 1
## 35513  813396 1
## 35514  813397 1
## 35515  813398 1
## 35516  813399 1
## 35517  813400 1
## 35518  813401 1
## 35519  813402 1
## 35520  813403 1
## 35521  813404 1
## 35522  813405 1
## 35523  813406 1
## 35524  813407 1
## 35525  813408 1
## 35526  813409 1
## 35527  813410 1
## 35528  813411 1
## 35529  813412 1
## 35530  813413 1
## 35531  813414 1
## 35532  813415 1
## 35533  813416 1
## 35534  813417 1
## 35535  813418 1
## 35536  813419 1
## 35537  813420 1
## 35538  813421 1
## 35539  813422 1
## 35540  813423 1
## 35541  813424 1
## 35542  813425 1
## 35543  813426 1
## 35544  813427 1
## 35545  813428 1
## 35546  813429 1
## 35547  813430 1
## 35548  813431 1
## 35549  813432 1
## 35550  813433 1
## 35551  813434 1
## 35552  813435 1
## 35553  813436 1
## 35554  813437 1
## 35555  813438 1
## 35556  813439 1
## 35557  813440 1
## 35558  813441 1
## 35559  813442 1
## 35560  813443 1
## 35561  813444 1
## 35562  813445 1
## 35563  813446 1
## 35564  813447 1
## 35565  813448 1
## 35566  813449 1
## 35567  813451 1
## 35568  813452 1
## 35569  813453 1
## 35570  813454 1
## 35571  813455 1
## 35572  813456 1
## 35573  813457 1
## 35574  813458 1
## 35575  813459 1
## 35576  813460 1
## 35577  813461 1
## 35578  813462 1
## 35579  813464 1
## 35580  813465 1
## 35581  813466 1
## 35582  813467 1
## 35583  813468 1
## 35584  813469 1
## 35585  813470 1
## 35586  813471 1
## 35587  813472 1
## 35588  813473 1
## 35589  813474 1
## 35590  813475 1
## 35591  813476 1
## 35592  813477 1
## 35593  813478 1
## 35594  813479 1
## 35595  813480 1
## 35596  813481 1
## 35597  813482 1
## 35598  813483 1
## 35599  813484 1
## 35600  813485 1
## 35601  813486 1
## 35602  813487 1
## 35603  813488 1
## 35604  813489 1
## 35605  813490 1
## 35606  813491 1
## 35607  813492 1
## 35608  813493 1
## 35609  813494 1
## 35610  813495 1
## 35611  813496 1
## 35612  813497 1
## 35613  813498 1
## 35614  813499 1
## 35615  813500 1
## 35616  813501 1
## 35617  813502 1
## 35618  813503 1
## 35619  813504 1
## 35620  813505 1
## 35621  813506 1
## 35622  813507 1
## 35623  813508 1
## 35624  813509 1
## 35625  813510 1
## 35626  813511 1
## 35627  813512 1
## 35628  813513 1
## 35629  813514 1
## 35630  813515 1
## 35631  813516 1
## 35632  813517 1
## 35633  813518 1
## 35634  813519 1
## 35635  813520 1
## 35636  813521 1
## 35637  813522 1
## 35638  813523 1
## 35639  813524 1
## 35640  813525 1
## 35641  813526 1
## 35642  813527 1
## 35643  813528 1
## 35644  813529 1
## 35645  813530 1
## 35646  813531 1
## 35647  813532 1
## 35648  813533 1
## 35649  813534 1
## 35650  813535 1
## 35651  813536 1
## 35652  813537 1
## 35653  813538 1
## 35654  813539 1
## 35655  813540 1
## 35656  813541 1
## 35657  813542 1
## 35658  813543 1
## 35659  813544 1
## 35660  813545 1
## 35661  813546 1
## 35662  813547 1
## 35663  813548 1
## 35664  813549 1
## 35665  813550 1
## 35666  813551 1
## 35667  813552 1
## 35668  813553 1
## 35669  813554 1
## 35670  813555 1
## 35671  813556 1
## 35672  813557 1
## 35673  813558 1
## 35674  813559 1
## 35675  813560 1
## 35676  813561 1
## 35677  813562 1
## 35678  813563 1
## 35679  813564 1
## 35680  813565 1
## 35681  813566 1
## 35682  813567 1
## 35683  813568 1
## 35684  813569 1
## 35685  813570 1
## 35686  813571 1
## 35687  813572 1
## 35688  813573 1
## 35689  813574 1
## 35690  813575 1
## 35691  813576 1
## 35692  813577 1
## 35693  813578 1
## 35694  813579 1
## 35695  813580 1
## 35696  813581 1
## 35697  813582 1
## 35698  813583 1
## 35699  813584 1
## 35700  813585 1
## 35701  813586 1
## 35702  813587 1
## 35703  813588 1
## 35704  813589 1
## 35705  813591 1
## 35706  813592 1
## 35707  813593 1
## 35708  813594 1
## 35709  813595 1
## 35710  813596 1
## 35711  813597 1
## 35712  813598 1
## 35713  813599 1
## 35714  813600 1
## 35715  813601 1
## 35716  813602 1
## 35717  813603 1
## 35718  813604 1
## 35719  813605 1
## 35720  813606 1
## 35721  813607 1
## 35722  813608 1
## 35723  813609 1
## 35724  813610 1
## 35725  813611 1
## 35726  813612 1
## 35727  813613 1
## 35728  813614 1
## 35729  813615 1
## 35730  813616 1
## 35731  813617 1
## 35732  813618 1
## 35733  813619 1
## 35734  813620 1
## 35735  813621 1
## 35736  813622 1
## 35737  813623 1
## 35738  813624 1
## 35739  813625 1
## 35740  813626 1
## 35741  813627 1
## 35742  813628 1
## 35743  813629 1
## 35744  813630 1
## 35745  813631 1
## 35746  813632 1
## 35747  813633 1
## 35748  813634 1
## 35749  813635 1
## 35750  813636 1
## 35751  813637 1
## 35752  813638 1
## 35753  813639 1
## 35754  813640 1
## 35755  813641 1
## 35756  813642 1
## 35757  813643 1
## 35758  813644 1
## 35759  813645 1
## 35760  813646 1
## 35761  813647 1
## 35762  813648 1
## 35763  813649 1
## 35764  813650 1
## 35765  813651 1
## 35766  813652 1
## 35767  813653 1
## 35768  813654 1
## 35769  813655 1
## 35770  813656 1
## 35771  813657 1
## 35772  813658 1
## 35773  813659 1
## 35774  813660 1
## 35775  813661 1
## 35776  813662 1
## 35777  813663 1
## 35778  813664 1
## 35779  813665 1
## 35780  813666 1
## 35781  813667 1
## 35782  813668 1
## 35783  813669 1
## 35784  813670 1
## 35785  813671 1
## 35786  813672 1
## 35787  813673 1
## 35788  813674 1
## 35789  813675 1
## 35790  813676 1
## 35791  813677 1
## 35792  813678 1
## 35793  813679 1
## 35794  813680 1
## 35795  813681 1
## 35796  813682 1
## 35797  813683 1
## 35798  813684 1
## 35799  813685 1
## 35800  813686 1
## 35801  813687 1
## 35802  813688 1
## 35803  813689 1
## 35804  813690 1
## 35805  813691 1
## 35806  813692 1
## 35807  813693 1
## 35808  813694 1
## 35809  813695 1
## 35810  813696 1
## 35811  813697 1
## 35812  813698 1
## 35813  813699 1
## 35814  813700 1
## 35815  813701 1
## 35816  813702 1
## 35817  813703 1
## 35818  813704 1
## 35819  813705 1
## 35820  813707 1
## 35821  813708 1
## 35822  813709 1
## 35823  813710 1
## 35824  813711 1
## 35825  813712 1
## 35826  813713 1
## 35827  813714 1
## 35828  813715 1
## 35829  813716 1
## 35830  813717 1
## 35831  813718 1
## 35832  813719 1
## 35833  813720 1
## 35834  813721 1
## 35835  813722 1
## 35836  813723 1
## 35837  813724 1
## 35838  813725 1
## 35839  813726 1
## 35840  813727 1
## 35841  813728 1
## 35842  813729 1
## 35843  813730 1
## 35844  813731 1
## 35845  813732 1
## 35846  813733 1
## 35847  813734 1
## 35848  813735 1
## 35849  813736 1
## 35850  813737 1
## 35851  813738 1
## 35852  813739 1
## 35853  813740 1
## 35854  813741 1
## 35855  813742 1
## 35856  813743 1
## 35857  813744 1
## 35858  813745 1
## 35859  813746 1
## 35860  813747 1
## 35861  813748 1
## 35862  813749 1
## 35863  813750 1
## 35864  813751 1
## 35865  813752 1
## 35866  813753 1
## 35867  813754 1
## 35868  813755 1
## 35869  813756 1
## 35870  813757 1
## 35871  813758 1
## 35872  813759 1
## 35873  813760 1
## 35874  813761 1
## 35875  813762 1
## 35876  813763 1
## 35877  813764 1
## 35878  813765 1
## 35879  813766 1
## 35880  813767 1
## 35881  813768 1
## 35882  813769 1
## 35883  813770 1
## 35884  813771 1
## 35885  813772 1
## 35886  813773 1
## 35887  813774 1
## 35888  813775 1
## 35889  813776 1
## 35890  813777 1
## 35891  813778 1
## 35892  813779 1
## 35893  813780 1
## 35894  813781 1
## 35895  813782 1
## 35896  813783 1
## 35897  813784 1
## 35898  813785 1
## 35899  813786 1
## 35900  813787 1
## 35901  813788 1
## 35902  813789 1
## 35903  813790 1
## 35904  813791 1
## 35905  813792 1
## 35906  813793 1
## 35907  813794 1
## 35908  813795 1
## 35909  813796 1
## 35910  813797 1
## 35911  813798 1
## 35912  813799 1
## 35913  813800 1
## 35914  813801 1
## 35915  813802 1
## 35916  813803 1
## 35917  813804 1
## 35918  813805 1
## 35919  813806 1
## 35920  813807 1
## 35921  813808 1
## 35922  813809 1
## 35923  813810 1
## 35924  813811 1
## 35925  813812 1
## 35926  813813 1
## 35927  813814 1
## 35928  813815 1
## 35929  813816 1
## 35930  813817 1
## 35931  813818 1
## 35932  813819 1
## 35933  813820 1
## 35934  813821 1
## 35935  813822 1
## 35936  813823 1
## 35937  813824 1
## 35938  813825 1
## 35939  813826 1
## 35940  813828 1
## 35941  813829 1
## 35942  813830 1
## 35943  813831 1
## 35944  813832 1
## 35945  813833 1
## 35946  813834 1
## 35947  813835 1
## 35948  813836 1
## 35949  813837 1
## 35950  813838 1
## 35951  813839 1
## 35952  813840 1
## 35953  813841 1
## 35954  813842 1
## 35955  813843 1
## 35956  813844 1
## 35957  813845 1
## 35958  813846 1
## 35959  813847 1
## 35960  813848 1
## 35961  813849 1
## 35962  813850 1
## 35963  813851 1
## 35964  813852 1
## 35965  813853 1
## 35966  813854 1
## 35967  813855 1
## 35968  813856 1
## 35969  813857 1
## 35970  813858 1
## 35971  813859 1
## 35972  813860 1
## 35973  813861 1
## 35974  813862 1
## 35975  813863 1
## 35976  813864 1
## 35977  813866 1
## 35978  813867 1
## 35979  813868 1
## 35980  813869 1
## 35981  813870 1
## 35982  813871 1
## 35983  813872 1
## 35984  813873 1
## 35985  813874 1
## 35986  813875 1
## 35987  813876 1
## 35988  813877 1
## 35989  813878 1
## 35990  813879 1
## 35991  813880 1
## 35992  813881 1
## 35993  813882 1
## 35994  813883 1
## 35995  813884 1
## 35996  813885 1
## 35997  813886 1
## 35998  813887 1
## 35999  813888 1
## 36000  813889 1
## 36001  813890 1
## 36002  813891 1
## 36003  813892 1
## 36004  813893 1
## 36005  813894 1
## 36006  813895 1
## 36007  813896 1
## 36008  813897 1
## 36009  813898 1
## 36010  813899 1
## 36011  813900 1
## 36012  813901 1
## 36013  813902 1
## 36014  813903 1
## 36015  813904 1
## 36016  813905 1
## 36017  813906 1
## 36018  813907 1
## 36019  813908 1
## 36020  813909 1
## 36021  813910 1
## 36022  813911 1
## 36023  813912 1
## 36024  813913 1
## 36025  813914 1
## 36026  813915 1
## 36027  813916 1
## 36028  813917 1
## 36029  813918 1
## 36030  813919 1
## 36031  813920 1
## 36032  813921 1
## 36033  813922 1
## 36034  813923 1
## 36035  813924 1
## 36036  813925 1
## 36037  813926 1
## 36038  813927 1
## 36039  813928 1
## 36040  813929 1
## 36041  813930 1
## 36042  813931 1
## 36043  813932 1
## 36044  813933 1
## 36045  813934 1
## 36046  813935 1
## 36047  813936 1
## 36048  813937 1
## 36049  813938 1
## 36050  813939 1
## 36051  813940 1
## 36052  813941 1
## 36053  813942 1
## 36054  813943 1
## 36055  813944 1
## 36056  813945 1
## 36057  813946 1
## 36058  813947 1
## 36059  813948 1
## 36060  813949 1
## 36061  813950 1
## 36062  813951 1
## 36063  813952 1
## 36064  813953 1
## 36065  813954 1
## 36066  813955 1
## 36067  813956 1
## 36068  813957 1
## 36069  813958 1
## 36070  813959 1
## 36071  813960 1
## 36072  813961 1
## 36073  813962 1
## 36074  813963 1
## 36075  813964 1
## 36076  813965 1
## 36077  813966 1
## 36078  813967 1
## 36079  813968 1
## 36080  813969 1
## 36081  813970 1
## 36082  813971 1
## 36083  813972 1
## 36084  813973 1
## 36085  813974 1
## 36086  813975 1
## 36087  813976 1
## 36088  813977 1
## 36089  813978 1
## 36090  813979 1
## 36091  813980 1
## 36092  813981 1
## 36093  813982 1
## 36094  813983 1
## 36095  813984 1
## 36096  813985 1
## 36097  813986 1
## 36098  813987 1
## 36099  813988 1
## 36100  813989 1
## 36101  813990 1
## 36102  813991 1
## 36103  813992 1
## 36104  813993 1
## 36105  813994 1
## 36106  813995 1
## 36107  813996 1
## 36108  813997 1
## 36109  813998 1
## 36110  813999 1
## 36111  814000 1
## 36112  814001 1
## 36113  814002 1
## 36114  814004 1
## 36115  814005 1
## 36116  814006 1
## 36117  814007 1
## 36118  814008 1
## 36119  814009 1
## 36120  814010 1
## 36121  814011 1
## 36122  814012 1
## 36123  814013 1
## 36124  814014 1
## 36125  814015 1
## 36126  814016 1
## 36127  814017 1
## 36128  814018 1
## 36129  814019 1
## 36130  814020 1
## 36131  814021 1
## 36132  814022 1
## 36133  814023 1
## 36134  814024 1
## 36135  814025 1
## 36136  814026 1
## 36137  814027 1
## 36138  814028 1
## 36139  814029 1
## 36140  814031 1
## 36141  814032 1
## 36142  814033 1
## 36143  814034 1
## 36144  814035 1
## 36145  814036 1
## 36146  814037 1
## 36147  814038 1
## 36148  814039 1
## 36149  814040 1
## 36150  814041 1
## 36151  814042 1
## 36152  814043 1
## 36153  814044 1
## 36154  814045 1
## 36155  814046 1
## 36156  814047 1
## 36157  814048 1
## 36158  814049 1
## 36159  814050 1
## 36160  814051 1
## 36161  814052 1
## 36162  814053 1
## 36163  814054 1
## 36164  814055 1
## 36165  814056 1
## 36166  814057 1
## 36167  814058 1
## 36168  814059 1
## 36169  814060 1
## 36170  814061 1
## 36171  814062 1
## 36172  814063 1
## 36173  814064 1
## 36174  814065 1
## 36175  814066 1
## 36176  814067 1
## 36177  814068 1
## 36178  814069 1
## 36179  814070 1
## 36180  814071 1
## 36181  814072 1
## 36182  814073 1
## 36183  814074 1
## 36184  814075 1
## 36185  814076 1
## 36186  814077 1
## 36187  814078 1
## 36188  814079 1
## 36189  814080 1
## 36190  814081 1
## 36191  814082 1
## 36192  814083 1
## 36193  814084 1
## 36194  814085 1
## 36195  814086 1
## 36196  814087 1
## 36197  814088 1
## 36198  814089 1
## 36199  814090 1
## 36200  814091 1
## 36201  814092 1
## 36202  814093 1
## 36203  814094 1
## 36204  814095 1
## 36205  814096 1
## 36206  814097 1
## 36207  814098 1
## 36208  814099 1
## 36209  814100 1
## 36210  814101 1
## 36211  814102 1
## 36212  814103 1
## 36213  814104 1
## 36214  814105 1
## 36215  814106 1
## 36216  814107 1
## 36217  814108 1
## 36218  814109 1
## 36219  814110 1
## 36220  814111 1
## 36221  814112 1
## 36222  814113 1
## 36223  814114 1
## 36224  814115 1
## 36225  814116 1
## 36226  814117 1
## 36227  814118 1
## 36228  814119 1
## 36229  814120 1
## 36230  814121 1
## 36231  814122 1
## 36232  814123 1
## 36233  814124 1
## 36234  814125 1
## 36235  814126 1
## 36236  814127 1
## 36237  814128 1
## 36238  814129 1
## 36239  814130 1
## 36240  814131 1
## 36241  814132 1
## 36242  814133 1
## 36243  814134 1
## 36244  814135 1
## 36245  814136 1
## 36246  814137 1
## 36247  814138 1
## 36248  814139 1
## 36249  814140 1
## 36250  814141 1
## 36251  814142 1
## 36252  814143 1
## 36253  814144 1
## 36254  814145 1
## 36255  814146 1
## 36256  814147 1
## 36257  814148 1
## 36258  814149 1
## 36259  814150 1
## 36260  814151 1
## 36261  814152 1
## 36262  814153 1
## 36263  814154 1
## 36264  814155 1
## 36265  814156 1
## 36266  814157 1
## 36267  814158 1
## 36268  814159 1
## 36269  814160 1
## 36270  814161 1
## 36271  814162 1
## 36272  814163 1
## 36273  814164 1
## 36274  814165 1
## 36275  814166 1
## 36276  814167 1
## 36277  814168 1
## 36278  814169 1
## 36279  814170 1
## 36280  814171 1
## 36281  814172 1
## 36282  814173 1
## 36283  814174 1
## 36284  814175 1
## 36285  814176 1
## 36286  814177 1
## 36287  814178 1
## 36288  814179 1
## 36289  814180 1
## 36290  814181 1
## 36291  814182 1
## 36292  814183 1
## 36293  814184 1
## 36294  814185 1
## 36295  814186 1
## 36296  814187 1
## 36297  814188 1
## 36298  814189 1
## 36299  814190 1
## 36300  814191 1
## 36301  814192 1
## 36302  814193 1
## 36303  814194 1
## 36304  814195 1
## 36305  814196 1
## 36306  814197 1
## 36307  814198 1
## 36308  814199 1
## 36309  814200 1
## 36310  814201 1
## 36311  814202 1
## 36312  814203 1
## 36313  814204 1
## 36314  814206 1
## 36315  814207 1
## 36316  814208 1
## 36317  814209 1
## 36318  814210 1
## 36319  814211 1
## 36320  814212 1
## 36321  814213 1
## 36322  814214 1
## 36323  814215 1
## 36324  814216 1
## 36325  814217 1
## 36326  814218 1
## 36327  814219 1
## 36328  814220 1
## 36329  814221 1
## 36330  814222 1
## 36331  814223 1
## 36332  814224 1
## 36333  814225 1
## 36334  814226 1
## 36335  814227 1
## 36336  814228 1
## 36337  814229 1
## 36338  814230 1
## 36339  814231 1
## 36340  814232 1
## 36341  814233 1
## 36342  814234 1
## 36343  814235 1
## 36344  814236 1
## 36345  814237 1
## 36346  814238 1
## 36347  814239 1
## 36348  814240 1
## 36349  814241 1
## 36350  814242 1
## 36351  814243 1
## 36352  814244 1
## 36353  814245 1
## 36354  814246 1
## 36355  814247 1
## 36356  814248 1
## 36357  814249 1
## 36358  814250 1
## 36359  814251 1
## 36360  814252 1
## 36361  814253 1
## 36362  814254 1
## 36363  814255 1
## 36364  814256 1
## 36365  814258 1
## 36366  814259 1
## 36367  814260 1
## 36368  814261 1
## 36369  814262 1
## 36370  814263 1
## 36371  814264 1
## 36372  814265 1
## 36373  814266 1
## 36374  814268 1
## 36375  814269 1
## 36376  814270 1
## 36377  814271 1
## 36378  814272 1
## 36379  814273 1
## 36380  814274 1
## 36381  814275 1
## 36382  814276 1
## 36383  814277 1
## 36384  814278 1
## 36385  814279 1
## 36386  814280 1
## 36387  814281 1
## 36388  814282 1
## 36389  814283 1
## 36390  814284 1
## 36391  814285 1
## 36392  814286 1
## 36393  814287 1
## 36394  814288 1
## 36395  814289 1
## 36396  814290 1
## 36397  814291 1
## 36398  814292 1
## 36399  814293 1
## 36400  814294 1
## 36401  814295 1
## 36402  814296 1
## 36403  814297 1
## 36404  814298 1
## 36405  814299 1
## 36406  814300 1
## 36407  814301 1
## 36408  814302 1
## 36409  814303 1
## 36410  814304 1
## 36411  814305 1
## 36412  814306 1
## 36413  814307 1
## 36414  814308 1
## 36415  814309 1
## 36416  814310 1
## 36417  814311 1
## 36418  814312 1
## 36419  814313 1
## 36420  814314 1
## 36421  814315 1
## 36422  814316 1
## 36423  814317 1
## 36424  814318 1
## 36425  814319 1
## 36426  814320 1
## 36427  814321 1
## 36428  814322 1
## 36429  814323 1
## 36430  814324 1
## 36431  814325 1
## 36432  814326 1
## 36433  814327 1
## 36434  814328 1
## 36435  814329 1
## 36436  814330 1
## 36437  814331 1
## 36438  814332 1
## 36439  814333 1
## 36440  814334 1
## 36441  814335 1
## 36442  814336 1
## 36443  814337 1
## 36444  814338 1
## 36445  814339 1
## 36446  814340 1
## 36447  814341 1
## 36448  814342 1
## 36449  814343 1
## 36450  814344 1
## 36451  814345 1
## 36452  814347 1
## 36453  814349 1
## 36454  814350 1
## 36455  814351 1
## 36456  814352 1
## 36457  814353 1
## 36458  814354 1
## 36459  814355 1
## 36460  814356 1
## 36461  814357 1
## 36462  814358 1
## 36463  814359 1
## 36464  814360 1
## 36465  814361 1
## 36466  814362 1
## 36467  814363 1
## 36468  814364 1
## 36469  814365 1
## 36470  814366 1
## 36471  814367 1
## 36472  814368 1
## 36473  814369 1
## 36474  814370 1
## 36475  814371 1
## 36476  814372 1
## 36477  814373 1
## 36478  814374 1
## 36479  814375 1
## 36480  814376 1
## 36481  814377 1
## 36482  814378 1
## 36483  814379 1
## 36484  814380 1
## 36485  814381 1
## 36486  814382 1
## 36487  814383 1
## 36488  814384 1
## 36489  814385 1
## 36490  814386 1
## 36491  814387 1
## 36492  814388 1
## 36493  814389 1
## 36494  814390 1
## 36495  814391 1
## 36496  814392 1
## 36497  814393 1
## 36498  814394 1
## 36499  814395 1
## 36500  814396 1
## 36501  814397 1
## 36502  814398 1
## 36503  814399 1
## 36504  814400 1
## 36505  814401 1
## 36506  814402 1
## 36507  814403 1
## 36508  814404 1
## 36509  814405 1
## 36510  814406 1
## 36511  814407 1
## 36512  814408 1
## 36513  814409 1
## 36514  814410 1
## 36515  814411 1
## 36516  814412 1
## 36517  814413 1
## 36518  814414 1
## 36519  814415 1
## 36520  814416 1
## 36521  814417 1
## 36522  814418 1
## 36523  814419 1
## 36524  814420 1
## 36525  814421 1
## 36526  814422 1
## 36527  814423 1
## 36528  814424 1
## 36529  814425 1
## 36530  814426 1
## 36531  814427 1
## 36532  814428 1
## 36533  814429 1
## 36534  814431 1
## 36535  814432 1
## 36536  814433 1
## 36537  814434 1
## 36538  814435 1
## 36539  814436 1
## 36540  814437 1
## 36541  814438 1
## 36542  814439 1
## 36543  814440 1
## 36544  814441 1
## 36545  814442 1
## 36546  814443 1
## 36547  814444 1
## 36548  814445 1
## 36549  814446 1
## 36550  814447 1
## 36551  814448 1
## 36552  814449 1
## 36553  814450 1
## 36554  814451 1
## 36555  814452 1
## 36556  814453 1
## 36557  814454 1
## 36558  814455 1
## 36559  814456 1
## 36560  814457 1
## 36561  814458 1
## 36562  814459 1
## 36563  814460 1
## 36564  814461 1
## 36565  814462 1
## 36566  814463 1
## 36567  814464 1
## 36568  814465 1
## 36569  814466 1
## 36570  814467 1
## 36571  814468 1
## 36572  814469 1
## 36573  814470 1
## 36574  814471 1
## 36575  814472 1
## 36576  814473 1
## 36577  814474 1
## 36578  814475 1
## 36579  814476 1
## 36580  814477 1
## 36581  814478 1
## 36582  814479 1
## 36583  814480 1
## 36584  814481 1
## 36585  814482 1
## 36586  814483 1
## 36587  814484 1
## 36588  814485 1
## 36589  814486 1
## 36590  814487 1
## 36591  814488 1
## 36592  814489 1
## 36593  814490 1
## 36594  814491 1
## 36595  814492 1
## 36596  814493 1
## 36597  814494 1
## 36598  814495 1
## 36599  814496 1
## 36600  814497 1
## 36601  814498 1
## 36602  814499 1
## 36603  814500 1
## 36604  814501 1
## 36605  814502 1
## 36606  814503 1
## 36607  814504 1
## 36608  814505 1
## 36609  814506 1
## 36610  814507 1
## 36611  814508 1
## 36612  814509 1
## 36613  814510 1
## 36614  814511 1
## 36615  814512 1
## 36616  814513 1
## 36617  814514 1
## 36618  814515 1
## 36619  814516 1
## 36620  814517 1
## 36621  814518 1
## 36622  814519 1
## 36623  814520 1
## 36624  814521 1
## 36625  814522 1
## 36626  814523 1
## 36627  814524 1
## 36628  814525 1
## 36629  814526 1
## 36630  814527 1
## 36631  814528 1
## 36632  814529 1
## 36633  814530 1
## 36634  814531 1
## 36635  814532 1
## 36636  814533 1
## 36637  814534 1
## 36638  814535 1
## 36639  814536 1
## 36640  814537 1
## 36641  814538 1
## 36642  814539 1
## 36643  814540 1
## 36644  814541 1
## 36645  814542 1
## 36646  814543 1
## 36647  814544 1
## 36648  814545 1
## 36649  814546 1
## 36650  814548 1
## 36651  814549 1
## 36652  814550 1
## 36653  814551 1
## 36654  814552 1
## 36655  814553 1
## 36656  814554 1
## 36657  814555 1
## 36658  814556 1
## 36659  814557 1
## 36660  814558 1
## 36661  814559 1
## 36662  814560 1
## 36663  814561 1
## 36664  814562 1
## 36665  814563 1
## 36666  814564 1
## 36667  814565 1
## 36668  814566 1
## 36669  814567 1
## 36670  814568 1
## 36671  814569 1
## 36672  814570 1
## 36673  814571 1
## 36674  814572 1
## 36675  814573 1
## 36676  814574 1
## 36677  814575 1
## 36678  814576 1
## 36679  814577 1
## 36680  814578 1
## 36681  814579 1
## 36682  814580 1
## 36683  814581 1
## 36684  814582 1
## 36685  814583 1
## 36686  814584 1
## 36687  814585 1
## 36688  814586 1
## 36689  814587 1
## 36690  814588 1
## 36691  814589 1
## 36692  814590 1
## 36693  814591 1
## 36694  814592 1
## 36695  814593 1
## 36696  814594 1
## 36697  814595 1
## 36698  814596 1
## 36699  814597 1
## 36700  814598 1
## 36701  814599 1
## 36702  814600 1
## 36703  814601 1
## 36704  814602 1
## 36705  814603 1
## 36706  814604 1
## 36707  814605 1
## 36708  814606 1
## 36709  814607 1
## 36710  814608 1
## 36711  814609 1
## 36712  814610 1
## 36713  814611 1
## 36714  814612 1
## 36715  814613 1
## 36716  814614 1
## 36717  814615 1
## 36718  814616 1
## 36719  814617 1
## 36720  814618 1
## 36721  814619 1
## 36722  814620 1
## 36723  814621 1
## 36724  814622 1
## 36725  814623 1
## 36726  814624 1
## 36727  814625 1
## 36728  814626 1
## 36729  814627 1
## 36730  814628 1
## 36731  814629 1
## 36732  814630 1
## 36733  814631 1
## 36734  814632 1
## 36735  814633 1
## 36736  814634 1
## 36737  814635 1
## 36738  814636 1
## 36739  814637 1
## 36740  814638 1
## 36741  814639 1
## 36742  814640 1
## 36743  814641 1
## 36744  814642 1
## 36745  814643 1
## 36746  814644 1
## 36747  814645 1
## 36748  814646 1
## 36749  814647 1
## 36750  814648 1
## 36751  814649 1
## 36752  814650 1
## 36753  814651 1
## 36754  814652 1
## 36755  814653 1
## 36756  814654 1
## 36757  814655 1
## 36758  814656 1
## 36759  814657 1
## 36760  814658 1
## 36761  814659 1
## 36762  814660 1
## 36763  814661 1
## 36764  814662 1
## 36765  814663 1
## 36766  814664 1
## 36767  814665 1
## 36768  814666 1
## 36769  814667 1
## 36770  814668 1
## 36771  814669 1
## 36772  814670 1
## 36773  814671 1
## 36774  814672 1
## 36775  814673 1
## 36776  814674 1
## 36777  814675 1
## 36778  814676 1
## 36779  814677 1
## 36780  814678 1
## 36781  814679 1
## 36782  814680 1
## 36783  814681 1
## 36784  814682 1
## 36785  814683 1
## 36786  814684 1
## 36787  814685 1
## 36788  814686 1
## 36789  814687 1
## 36790  814688 1
## 36791  814689 1
## 36792  814690 1
## 36793  814691 1
## 36794  814692 1
## 36795  814693 1
## 36796  814694 1
## 36797  814695 1
## 36798  814696 1
## 36799  814697 1
## 36800  814698 1
## 36801  814699 1
## 36802  814700 1
## 36803  814701 1
## 36804  814702 1
## 36805  814704 1
## 36806  814705 1
## 36807  814706 1
## 36808  814707 1
## 36809  814708 1
## 36810  814709 1
## 36811  814710 1
## 36812  814711 1
## 36813  814712 1
## 36814  814713 1
## 36815  814714 1
## 36816  814715 1
## 36817  814716 1
## 36818  814717 1
## 36819  814718 1
## 36820  814719 1
## 36821  814720 1
## 36822  814721 1
## 36823  814722 1
## 36824  814723 1
## 36825  814724 1
## 36826  814725 1
## 36827  814726 1
## 36828  814727 1
## 36829  814728 1
## 36830  814729 1
## 36831  814730 1
## 36832  814731 1
## 36833  814732 1
## 36834  814733 1
## 36835  814734 1
## 36836  814735 1
## 36837  814736 1
## 36838  814737 1
## 36839  814738 1
## 36840  814739 1
## 36841  814740 1
## 36842  814741 1
## 36843  814742 1
## 36844  814743 1
## 36845  814744 1
## 36846  814745 1
## 36847  814746 1
## 36848  814747 1
## 36849  814748 1
## 36850  814749 1
## 36851  814750 1
## 36852  814751 1
## 36853  814753 1
## 36854  814754 1
## 36855  814755 1
## 36856  814756 1
## 36857  814757 1
## 36858  814758 1
## 36859  814759 1
## 36860  814760 1
## 36861  814761 1
## 36862  814762 1
## 36863  814763 1
## 36864  814764 1
## 36865  814765 1
## 36866  814766 1
## 36867  814767 1
## 36868  814768 1
## 36869  814769 1
## 36870  814770 1
## 36871  814771 1
## 36872  814773 1
## 36873  814774 1
## 36874  814775 1
## 36875  814776 1
## 36876  814777 1
## 36877  814778 1
## 36878  814779 1
## 36879  814780 1
## 36880  814781 1
## 36881  814782 1
## 36882  814783 1
## 36883  814784 1
## 36884  814785 1
## 36885  814786 1
## 36886  814787 1
## 36887  814788 1
## 36888  814789 1
## 36889  814790 1
## 36890  814791 1
## 36891  814792 1
## 36892  814793 1
## 36893  814794 1
## 36894  814795 1
## 36895  814796 1
## 36896  814797 1
## 36897  814798 1
## 36898  814799 1
## 36899  814800 1
## 36900  814801 1
## 36901  814802 1
## 36902  814803 1
## 36903  814804 1
## 36904  814805 1
## 36905  814806 1
## 36906  814807 1
## 36907  814808 1
## 36908  814809 1
## 36909  814810 1
## 36910  814811 1
## 36911  814813 1
## 36912  814814 1
## 36913  814815 1
## 36914  814816 1
## 36915  814817 1
## 36916  814818 1
## 36917  814819 1
## 36918  814820 1
## 36919  814821 1
## 36920  814822 1
## 36921  814823 1
## 36922  814824 1
## 36923  814825 1
## 36924  814826 1
## 36925  814827 1
## 36926  814828 1
## 36927  814829 1
## 36928  814830 1
## 36929  814831 1
## 36930  814832 1
## 36931  814833 1
## 36932  814834 1
## 36933  814835 1
## 36934  814836 1
## 36935  814838 1
## 36936  814839 1
## 36937  814840 1
## 36938  814841 1
## 36939  814842 1
## 36940  814843 1
## 36941  814844 1
## 36942  814845 1
## 36943  814846 1
## 36944  814847 1
## 36945  814848 1
## 36946  814849 1
## 36947  814850 1
## 36948  814851 1
## 36949  814852 1
## 36950  814853 1
## 36951  814854 1
## 36952  814855 1
## 36953  814856 1
## 36954  814857 1
## 36955  814858 1
## 36956  814859 1
## 36957  814860 1
## 36958  814861 1
## 36959  814862 1
## 36960  814863 1
## 36961  814864 1
## 36962  814865 1
## 36963  814866 1
## 36964  814867 1
## 36965  814868 1
## 36966  814869 1
## 36967  814870 1
## 36968  814871 1
## 36969  814872 1
## 36970  814873 1
## 36971  814874 1
## 36972  814875 1
## 36973  814876 1
## 36974  814877 1
## 36975  814878 1
## 36976  814879 1
## 36977  814880 1
## 36978  814881 1
## 36979  814882 1
## 36980  814883 1
## 36981  814884 1
## 36982  814885 1
## 36983  814886 1
## 36984  814887 1
## 36985  814888 1
## 36986  814889 1
## 36987  814890 1
## 36988  814891 1
## 36989  814892 1
## 36990  814893 1
## 36991  814894 1
## 36992  814895 1
## 36993  814896 1
## 36994  814897 1
## 36995  814898 1
## 36996  814899 1
## 36997  814900 1
## 36998  814901 1
## 36999  814902 1
## 37000  814903 1
## 37001  814904 1
## 37002  814905 1
## 37003  814906 1
## 37004  814907 1
## 37005  814908 1
## 37006  814909 1
## 37007  814910 1
## 37008  814911 1
## 37009  814912 1
## 37010  814913 1
## 37011  814914 1
## 37012  814915 1
## 37013  814916 1
## 37014  814917 1
## 37015  814918 1
## 37016  814919 1
## 37017  814920 1
## 37018  814921 1
## 37019  814922 1
## 37020  814923 1
## 37021  814924 1
## 37022  814925 1
## 37023  814926 1
## 37024  814927 1
## 37025  814928 1
## 37026  814929 1
## 37027  814930 1
## 37028  814931 1
## 37029  814932 1
## 37030  814933 1
## 37031  814934 1
## 37032  814935 1
## 37033  814936 1
## 37034  814937 1
## 37035  814938 1
## 37036  814939 1
## 37037  814940 1
## 37038  814941 1
## 37039  814942 1
## 37040  814943 1
## 37041  814944 1
## 37042  814945 1
## 37043  814946 1
## 37044  814947 1
## 37045  814948 1
## 37046  814949 1
## 37047  814950 1
## 37048  814951 1
## 37049  814952 1
## 37050  814954 1
## 37051  814955 1
## 37052  814956 1
## 37053  814957 1
## 37054  814958 1
## 37055  814959 1
## 37056  814960 1
## 37057  814961 1
## 37058  814962 1
## 37059  814963 1
## 37060  814964 1
## 37061  814965 1
## 37062  814966 1
## 37063  814967 1
## 37064  814968 1
## 37065  814969 1
## 37066  814970 1
## 37067  814971 1
## 37068  814972 1
## 37069  814973 1
## 37070  814974 1
## 37071  814975 1
## 37072  814976 1
## 37073  814977 1
## 37074  814978 1
## 37075  814979 1
## 37076  814980 1
## 37077  814981 1
## 37078  814982 1
## 37079  814983 1
## 37080  814984 1
## 37081  814985 1
## 37082  814986 1
## 37083  814987 1
## 37084  814988 1
## 37085  814989 1
## 37086  814990 1
## 37087  814991 1
## 37088  814992 1
## 37089  814993 1
## 37090  814994 1
## 37091  814995 1
## 37092  814996 1
## 37093  814997 1
## 37094  814998 1
## 37095  814999 1
## 37096  815000 1
## 37097  815001 1
## 37098  815002 1
## 37099  815003 1
## 37100  815004 1
## 37101  815005 1
## 37102  815006 1
## 37103  815007 1
## 37104  815008 1
## 37105  815009 1
## 37106  815010 1
## 37107  815011 1
## 37108  815012 1
## 37109  815013 1
## 37110  815014 1
## 37111  815015 1
## 37112  815016 1
## 37113  815017 1
## 37114  815018 1
## 37115  815019 1
## 37116  815020 1
## 37117  815021 1
## 37118  815022 1
## 37119  815023 1
## 37120  815024 1
## 37121  815025 1
## 37122  815026 1
## 37123  815027 1
## 37124  815028 1
## 37125  815029 1
## 37126  815030 1
## 37127  815031 1
## 37128  815032 1
## 37129  815033 1
## 37130  815034 1
## 37131  815035 1
## 37132  815036 1
## 37133  815037 1
## 37134  815038 1
## 37135  815039 1
## 37136  815040 1
## 37137  815041 1
## 37138  815042 1
## 37139  815043 1
## 37140  815044 1
## 37141  815045 1
## 37142  815046 1
## 37143  815047 1
## 37144  815048 1
## 37145  815049 1
## 37146  815050 1
## 37147  815051 1
## 37148  815052 1
## 37149  815053 1
## 37150  815054 1
## 37151  815055 1
## 37152  815056 1
## 37153  815057 1
## 37154  815058 1
## 37155  815059 1
## 37156  815060 1
## 37157  815061 1
## 37158  815062 1
## 37159  815063 1
## 37160  815064 1
## 37161  815065 1
## 37162  815066 1
## 37163  815067 1
## 37164  815068 1
## 37165  815069 1
## 37166  815070 1
## 37167  815071 1
## 37168  815072 1
## 37169  815073 1
## 37170  815074 1
## 37171  815075 1
## 37172  815076 1
## 37173  815077 1
## 37174  815078 1
## 37175  815079 1
## 37176  815080 1
## 37177  815081 1
## 37178  815082 1
## 37179  815083 1
## 37180  815084 1
## 37181  815085 1
## 37182  815086 1
## 37183  815087 1
## 37184  815088 1
## 37185  815089 1
## 37186  815090 1
## 37187  815091 1
## 37188  815092 1
## 37189  815093 1
## 37190  815094 1
## 37191  815095 1
## 37192  815096 1
## 37193  815097 1
## 37194  815099 1
## 37195  815100 1
## 37196  815101 1
## 37197  815102 1
## 37198  815103 1
## 37199  815104 1
## 37200  815105 1
## 37201  815106 1
## 37202  815107 1
## 37203  815108 1
## 37204  815109 1
## 37205  815110 1
## 37206  815111 1
## 37207  815112 1
## 37208  815113 1
## 37209  815114 1
## 37210  815115 1
## 37211  815116 1
## 37212  815117 1
## 37213  815118 1
## 37214  815119 1
## 37215  815120 1
## 37216  815121 1
## 37217  815122 1
## 37218  815123 1
## 37219  815124 1
## 37220  815125 1
## 37221  815126 1
## 37222  815127 1
## 37223  815128 1
## 37224  815129 1
## 37225  815130 1
## 37226  815131 1
## 37227  815132 1
## 37228  815133 1
## 37229  815134 1
## 37230  815135 1
## 37231  815136 1
## 37232  815137 1
## 37233  815138 1
## 37234  815139 1
## 37235  815140 1
## 37236  815141 1
## 37237  815143 1
## 37238  815144 1
## 37239  815145 1
## 37240  815146 1
## 37241  815147 1
## 37242  815148 1
## 37243  815149 1
## 37244  815150 1
## 37245  815151 1
## 37246  815152 1
## 37247  815153 1
## 37248  815154 1
## 37249  815155 1
## 37250  815156 1
## 37251  815157 1
## 37252  815158 1
## 37253  815159 1
## 37254  815160 1
## 37255  815161 1
## 37256  815162 1
## 37257  815163 1
## 37258  815164 1
## 37259  815165 1
## 37260  815166 1
## 37261  815167 1
## 37262  815168 1
## 37263  815169 1
## 37264  815170 1
## 37265  815171 1
## 37266  815172 1
## 37267  815173 1
## 37268  815174 1
## 37269  815175 1
## 37270  815176 1
## 37271  815177 1
## 37272  815178 1
## 37273  815179 1
## 37274  815180 1
## 37275  815181 1
## 37276  815182 1
## 37277  815183 1
## 37278  815184 1
## 37279  815185 1
## 37280  815186 1
## 37281  815187 1
## 37282  815188 1
## 37283  815189 1
## 37284  815190 1
## 37285  815191 1
## 37286  815192 1
## 37287  815193 1
## 37288  815194 1
## 37289  815195 1
## 37290  815196 1
## 37291  815197 1
## 37292  815198 1
## 37293  815199 1
## 37294  815200 1
## 37295  815201 1
## 37296  815202 1
## 37297  815203 1
## 37298  815204 1
## 37299  815205 1
## 37300  815206 1
## 37301  815207 1
## 37302  815208 1
## 37303  815209 1
## 37304  815210 1
## 37305  815211 1
## 37306  815212 1
## 37307  815213 1
## 37308  815214 1
## 37309  815215 1
## 37310  815216 1
## 37311  815217 1
## 37312  815218 1
## 37313  815219 1
## 37314  815220 1
## 37315  815221 1
## 37316  815222 1
## 37317  815223 1
## 37318  815224 1
## 37319  815225 1
## 37320  815226 1
## 37321  815227 1
## 37322  815228 1
## 37323  815229 1
## 37324  815230 1
## 37325  815231 1
## 37326  815232 1
## 37327  815233 1
## 37328  815234 1
## 37329  815235 1
## 37330  815236 1
## 37331  815237 1
## 37332  815238 1
## 37333  815239 1
## 37334  815240 1
## 37335  815241 1
## 37336  815242 1
## 37337  815243 1
## 37338  815244 1
## 37339  815245 1
## 37340  815246 1
## 37341  815247 1
## 37342  815248 1
## 37343  815249 1
## 37344  815250 1
## 37345  815251 1
## 37346  815252 1
## 37347  815253 1
## 37348  815254 1
## 37349  815255 1
## 37350  815256 1
## 37351  815257 1
## 37352  815258 1
## 37353  815259 1
## 37354  815260 1
## 37355  815261 1
## 37356  815262 1
## 37357  815263 1
## 37358  815264 1
## 37359  815265 1
## 37360  815266 1
## 37361  815267 1
## 37362  815268 1
## 37363  815269 1
## 37364  815270 1
## 37365  815271 1
## 37366  815272 1
## 37367  815273 1
## 37368  815274 1
## 37369  815275 1
## 37370  815276 1
## 37371  815277 1
## 37372  815278 1
## 37373  815279 1
## 37374  815280 1
## 37375  815281 1
## 37376  815282 1
## 37377  815283 1
## 37378  815284 1
## 37379  815285 1
## 37380  815286 1
## 37381  815287 1
## 37382  815288 1
## 37383  815289 1
## 37384  815290 1
## 37385  815291 1
## 37386  815292 1
## 37387  815293 1
## 37388  815294 1
## 37389  815295 1
## 37390  815296 1
## 37391  815297 1
## 37392  815298 1
## 37393  815299 1
## 37394  815300 1
## 37395  815301 1
## 37396  815302 1
## 37397  815303 1
## 37398  815304 1
## 37399  815305 1
## 37400  815306 1
## 37401  815307 1
## 37402  815308 1
## 37403  815309 1
## 37404  815310 1
## 37405  815311 1
## 37406  815312 1
## 37407  815313 1
## 37408  815314 1
## 37409  815315 1
## 37410  815316 1
## 37411  815317 1
## 37412  815318 1
## 37413  815319 1
## 37414  815320 1
## 37415  815321 1
## 37416  815322 1
## 37417  815323 1
## 37418  815324 1
## 37419  815325 1
## 37420  815327 1
## 37421  815328 1
## 37422  815329 1
## 37423  815330 1
## 37424  815331 1
## 37425  815332 1
## 37426  815333 1
## 37427  815334 1
## 37428  815335 1
## 37429  815336 1
## 37430  815337 1
## 37431  815338 1
## 37432  815339 1
## 37433  815340 1
## 37434  815341 1
## 37435  815342 1
## 37436  815343 1
## 37437  815344 1
## 37438  815345 1
## 37439  815346 1
## 37440  815347 1
## 37441  815348 1
## 37442  815349 1
## 37443  815350 1
## 37444  815351 1
## 37445  815352 1
## 37446  815353 1
## 37447  815354 1
## 37448  815355 1
## 37449  815356 1
## 37450  815357 1
## 37451  815358 1
## 37452  815359 1
## 37453  815360 1
## 37454  815361 1
## 37455  815362 1
## 37456  815363 1
## 37457  815364 1
## 37458  815365 1
## 37459  815366 1
## 37460  815367 1
## 37461  815368 1
## 37462  815369 1
## 37463  815370 1
## 37464  815371 1
## 37465  815372 1
## 37466  815373 1
## 37467  815374 1
## 37468  815375 1
## 37469  815376 1
## 37470  815377 1
## 37471  815378 1
## 37472  815379 1
## 37473  815380 1
## 37474  815381 1
## 37475  815382 1
## 37476  815383 1
## 37477  815384 1
## 37478  815385 1
## 37479  815386 1
## 37480  815387 1
## 37481  815388 1
## 37482  815389 1
## 37483  815390 1
## 37484  815391 1
## 37485  815392 1
## 37486  815393 1
## 37487  815394 1
## 37488  815395 1
## 37489  815396 1
## 37490  815397 1
## 37491  815398 1
## 37492  815399 1
## 37493  815400 1
## 37494  815401 1
## 37495  815402 1
## 37496  815403 1
## 37497  815404 1
## 37498  815405 1
## 37499  815406 1
## 37500  815407 1
## 37501  815408 1
## 37502  815409 1
## 37503  815410 1
## 37504  815411 1
## 37505  815412 1
## 37506  815413 1
## 37507  815414 1
## 37508  815415 1
## 37509  815416 1
## 37510  815417 1
## 37511  815418 1
## 37512  815419 1
## 37513  815420 1
## 37514  815421 1
## 37515  815422 1
## 37516  815423 1
## 37517  815424 1
## 37518  815425 1
## 37519  815426 1
## 37520  815427 1
## 37521  815428 1
## 37522  815429 1
## 37523  815430 1
## 37524  815431 1
## 37525  815432 1
## 37526  815433 1
## 37527  815434 1
## 37528  815435 1
## 37529  815436 1
## 37530  815437 1
## 37531  815438 1
## 37532  815439 1
## 37533  815440 1
## 37534  815441 1
## 37535  815442 1
## 37536  815443 1
## 37537  815444 1
## 37538  815445 1
## 37539  815446 1
## 37540  815447 1
## 37541  815448 1
## 37542  815449 1
## 37543  815450 1
## 37544  815451 1
## 37545  815452 1
## 37546  815453 1
## 37547  815454 1
## 37548  815455 1
## 37549  815456 1
## 37550  815457 1
## 37551  815458 1
## 37552  815459 1
## 37553  815460 1
## 37554  815461 1
## 37555  815462 1
## 37556  815463 1
## 37557  815464 1
## 37558  815465 1
## 37559  815466 1
## 37560  815467 1
## 37561  815468 1
## 37562  815469 1
## 37563  815470 1
## 37564  815471 1
## 37565  815472 1
## 37566  815473 1
## 37567  815474 1
## 37568  815475 1
## 37569  815476 1
## 37570  815477 1
## 37571  815478 1
## 37572  815479 1
## 37573  815480 1
## 37574  815481 1
## 37575  815482 1
## 37576  815483 1
## 37577  815484 1
## 37578  815485 1
## 37579  815486 1
## 37580  815487 1
## 37581  815488 1
## 37582  815489 1
## 37583  815490 1
## 37584  815491 1
## 37585  815492 1
## 37586  815493 1
## 37587  815494 1
## 37588  815495 1
## 37589  815496 1
## 37590  815497 1
## 37591  815498 1
## 37592  815499 1
## 37593  815500 1
## 37594  815501 1
## 37595  815502 1
## 37596  815503 1
## 37597  815504 1
## 37598  815505 1
## 37599  815506 1
## 37600  815507 1
## 37601  815508 1
## 37602  815509 1
## 37603  815510 1
## 37604  815511 1
## 37605  815512 1
## 37606  815513 1
## 37607  815514 1
## 37608  815515 1
## 37609  815516 1
## 37610  815517 1
## 37611  815518 1
## 37612  815519 1
## 37613  815520 1
## 37614  815521 1
## 37615  815522 1
## 37616  815523 1
## 37617  815524 1
## 37618  815525 1
## 37619  815526 1
## 37620  815527 1
## 37621  815528 1
## 37622  815529 1
## 37623  815530 1
## 37624  815531 1
## 37625  815532 1
## 37626  815533 1
## 37627  815534 1
## 37628  815535 1
## 37629  815536 1
## 37630  815537 1
## 37631  815538 1
## 37632  815539 1
## 37633  815540 1
## 37634  815541 1
## 37635  815542 1
## 37636  815543 1
## 37637  815544 1
## 37638  815545 1
## 37639  815546 1
## 37640  815547 1
## 37641  815548 1
## 37642  815549 1
## 37643  815550 1
## 37644  815551 1
## 37645  815552 1
## 37646  815553 1
## 37647  815554 1
## 37648  815555 1
## 37649  815556 1
## 37650  815557 1
## 37651  815558 1
## 37652  815559 1
## 37653  815560 1
## 37654  815561 1
## 37655  815562 1
## 37656  815563 1
## 37657  815564 1
## 37658  815565 1
## 37659  815566 1
## 37660  815567 1
## 37661  815568 1
## 37662  815569 1
## 37663  815571 1
## 37664  815572 1
## 37665  815573 1
## 37666  815574 1
## 37667  815575 1
## 37668  815576 1
## 37669  815577 1
## 37670  815578 1
## 37671  815579 1
## 37672  815580 1
## 37673  815581 1
## 37674  815582 1
## 37675  815583 1
## 37676  815584 1
## 37677  815585 1
## 37678  815586 1
## 37679  815587 1
## 37680  815588 1
## 37681  815589 1
## 37682  815590 1
## 37683  815592 1
## 37684  815593 1
## 37685  815594 1
## 37686  815595 1
## 37687  815596 1
## 37688  815597 1
## 37689  815598 1
## 37690  815599 1
## 37691  815600 1
## 37692  815601 1
## 37693  815602 1
## 37694  815603 1
## 37695  815604 1
## 37696  815606 1
## 37697  815607 1
## 37698  815608 1
## 37699  815609 1
## 37700  815610 1
## 37701  815611 1
## 37702  815612 1
## 37703  815613 1
## 37704  815614 1
## 37705  815615 1
## 37706  815616 1
## 37707  815617 1
## 37708  815618 1
## 37709  815619 1
## 37710  815620 1
## 37711  815621 1
## 37712  815622 1
## 37713  815623 1
## 37714  815624 1
## 37715  815625 1
## 37716  815626 1
## 37717  815627 1
## 37718  815628 1
## 37719  815629 1
## 37720  815630 1
## 37721  815631 1
## 37722  815632 1
## 37723  815633 1
## 37724  815634 1
## 37725  815635 1
## 37726  815636 1
## 37727  815637 1
## 37728  815638 1
## 37729  815639 1
## 37730  815640 1
## 37731  815641 1
## 37732  815642 1
## 37733  815643 1
## 37734  815644 1
## 37735  815645 1
## 37736  815646 1
## 37737  815647 1
## 37738  815648 1
## 37739  815649 1
## 37740  815650 1
## 37741  815651 1
## 37742  815652 1
## 37743  815653 1
## 37744  815654 1
## 37745  815655 1
## 37746  815656 1
## 37747  815657 1
## 37748  815658 1
## 37749  815659 1
## 37750  815660 1
## 37751  815661 1
## 37752  815662 1
## 37753  815663 1
## 37754  815664 1
## 37755  815665 1
## 37756  815666 1
## 37757  815667 1
## 37758  815668 1
## 37759  815669 1
## 37760  815670 1
## 37761  815671 1
## 37762  815672 1
## 37763  815673 1
## 37764  815674 1
## 37765  815675 1
## 37766  815676 1
## 37767  815677 1
## 37768  815678 1
## 37769  815679 1
## 37770  815680 1
## 37771  815681 1
## 37772  815682 1
## 37773  815683 1
## 37774  815684 1
## 37775  815685 1
## 37776  815686 1
## 37777  815687 1
## 37778  815688 1
## 37779  815689 1
## 37780  815690 1
## 37781  815691 1
## 37782  815692 1
## 37783  815693 1
## 37784  815694 1
## 37785  815695 1
## 37786  815696 1
## 37787  815697 1
## 37788  815698 1
## 37789  815699 1
## 37790  815700 1
## 37791  815701 1
## 37792  815702 1
## 37793  815703 1
## 37794  815704 1
## 37795  815705 1
## 37796  815706 1
## 37797  815707 1
## 37798  815708 1
## 37799  815709 1
## 37800  815710 1
## 37801  815711 1
## 37802  815712 1
## 37803  815713 1
## 37804  815714 1
## 37805  815715 1
## 37806  815716 1
## 37807  815717 1
## 37808  815718 1
## 37809  815719 1
## 37810  815720 1
## 37811  815721 1
## 37812  815722 1
## 37813  815723 1
## 37814  815724 1
## 37815  815725 1
## 37816  815726 1
## 37817  815727 1
## 37818  815728 1
## 37819  815729 1
## 37820  815730 1
## 37821  815731 1
## 37822  815732 1
## 37823  815733 1
## 37824  815734 1
## 37825  815735 1
## 37826  815736 1
## 37827  815737 1
## 37828  815738 1
## 37829  815739 1
## 37830  815740 1
## 37831  815741 1
## 37832  815742 1
## 37833  815743 1
## 37834  815744 1
## 37835  815745 1
## 37836  815746 1
## 37837  815747 1
## 37838  815748 1
## 37839  815749 1
## 37840  815750 1
## 37841  815751 1
## 37842  815752 1
## 37843  815753 1
## 37844  815754 1
## 37845  815756 1
## 37846  815757 1
## 37847  815758 1
## 37848  815759 1
## 37849  815760 1
## 37850  815761 1
## 37851  815762 1
## 37852  815763 1
## 37853  815764 1
## 37854  815765 1
## 37855  815766 1
## 37856  815767 1
## 37857  815768 1
## 37858  815769 1
## 37859  815770 1
## 37860  815771 1
## 37861  815772 1
## 37862  815773 1
## 37863  815774 1
## 37864  815775 1
## 37865  815776 1
## 37866  815777 1
## 37867  815778 1
## 37868  815779 1
## 37869  815780 1
## 37870  815781 1
## 37871  815782 1
## 37872  815783 1
## 37873  815784 1
## 37874  815785 1
## 37875  815786 1
## 37876  815787 1
## 37877  815788 1
## 37878  815789 1
## 37879  815791 1
## 37880  815792 1
## 37881  815793 1
## 37882  815794 1
## 37883  815795 1
## 37884  815796 1
## 37885  815797 1
## 37886  815798 1
## 37887  815799 1
## 37888  815800 1
## 37889  815801 1
## 37890  815802 1
## 37891  815803 1
## 37892  815804 1
## 37893  815805 1
## 37894  815806 1
## 37895  815807 1
## 37896  815808 1
## 37897  815809 1
## 37898  815810 1
## 37899  815811 1
## 37900  815812 1
## 37901  815813 1
## 37902  815814 1
## 37903  815815 1
## 37904  815816 1
## 37905  815817 1
## 37906  815818 1
## 37907  815819 1
## 37908  815820 1
## 37909  815821 1
## 37910  815822 1
## 37911  815823 1
## 37912  815824 1
## 37913  815825 1
## 37914  815826 1
## 37915  815827 1
## 37916  815828 1
## 37917  815829 1
## 37918  815830 1
## 37919  815831 1
## 37920  815832 1
## 37921  815833 1
## 37922  815834 1
## 37923  815835 1
## 37924  815836 1
## 37925  815837 1
## 37926  815838 1
## 37927  815839 1
## 37928  815840 1
## 37929  815841 1
## 37930  815842 1
## 37931  815843 1
## 37932  815844 1
## 37933  815845 1
## 37934  815846 1
## 37935  815847 1
## 37936  815848 1
## 37937  815849 1
## 37938  815850 1
## 37939  815851 1
## 37940  815852 1
## 37941  815853 1
## 37942  815854 1
## 37943  815855 1
## 37944  815856 1
## 37945  815857 1
## 37946  815858 1
## 37947  815859 1
## 37948  815860 1
## 37949  815861 1
## 37950  815862 1
## 37951  815863 1
## 37952  815864 1
## 37953  815865 1
## 37954  815866 1
## 37955  815867 1
## 37956  815868 1
## 37957  815869 1
## 37958  815870 1
## 37959  815871 1
## 37960  815872 1
## 37961  815873 1
## 37962  815874 1
## 37963  815875 1
## 37964  815876 1
## 37965  815877 1
## 37966  815878 1
## 37967  815879 1
## 37968  815880 1
## 37969  815881 1
## 37970  815882 1
## 37971  815883 1
## 37972  815884 1
## 37973  815885 1
## 37974  815886 1
## 37975  815887 1
## 37976  815888 1
## 37977  815889 1
## 37978  815890 1
## 37979  815891 1
## 37980  815892 1
## 37981  815893 1
## 37982  815894 1
## 37983  815895 1
## 37984  815896 1
## 37985  815897 1
## 37986  815898 1
## 37987  815899 1
## 37988  815900 1
## 37989  815901 1
## 37990  815902 1
## 37991  815903 1
## 37992  815904 1
## 37993  815905 1
## 37994  815906 1
## 37995  815907 1
## 37996  815908 1
## 37997  815909 1
## 37998  815910 1
## 37999  815911 1
## 38000  815912 1
## 38001  815913 1
## 38002  815914 1
## 38003  815915 1
## 38004  815916 1
## 38005  815917 1
## 38006  815918 1
## 38007  815919 1
## 38008  815920 1
## 38009  815921 1
## 38010  815922 1
## 38011  815923 1
## 38012  815924 1
## 38013  815925 1
## 38014  815926 1
## 38015  815927 1
## 38016  815928 1
## 38017  815929 1
## 38018  815930 1
## 38019  815931 1
## 38020  815932 1
## 38021  815933 1
## 38022  815934 1
## 38023  815935 1
## 38024  815936 1
## 38025  815937 1
## 38026  815938 1
## 38027  815939 1
## 38028  815940 1
## 38029  815941 1
## 38030  815942 1
## 38031  815943 1
## 38032  815944 1
## 38033  815945 1
## 38034  815946 1
## 38035  815947 1
## 38036  815948 1
## 38037  815949 1
## 38038  815950 1
## 38039  815951 1
## 38040  815952 1
## 38041  815953 1
## 38042  815954 1
## 38043  815955 1
## 38044  815956 1
## 38045  815957 1
## 38046  815958 1
## 38047  815959 1
## 38048  815960 1
## 38049  815961 1
## 38050  815962 1
## 38051  815963 1
## 38052  815964 1
## 38053  815965 1
## 38054  815966 1
## 38055  815967 1
## 38056  815968 1
## 38057  815969 1
## 38058  815970 1
## 38059  815971 1
## 38060  815972 1
## 38061  815973 1
## 38062  815974 1
## 38063  815975 1
## 38064  815976 1
## 38065  815977 1
## 38066  815978 1
## 38067  815979 1
## 38068  815980 1
## 38069  815981 1
## 38070  815982 1
## 38071  815983 1
## 38072  815984 1
## 38073  815985 1
## 38074  815986 1
## 38075  815987 1
## 38076  815988 1
## 38077  815989 1
## 38078  815990 1
## 38079  815991 1
## 38080  815992 1
## 38081  815993 1
## 38082  815994 1
## 38083  815995 1
## 38084  815996 1
## 38085  815997 1
## 38086  815998 1
## 38087  815999 1
## 38088  816000 1
## 38089  816001 1
## 38090  816002 1
## 38091  816003 1
## 38092  816004 1
## 38093  816005 1
## 38094  816006 1
## 38095  816007 1
## 38096  816008 1
## 38097  816009 1
## 38098  816010 1
## 38099  816011 1
## 38100  816012 1
## 38101  816014 1
## 38102  816015 1
## 38103  816016 1
## 38104  816017 1
## 38105  816018 1
## 38106  816019 1
## 38107  816020 1
## 38108  816021 1
## 38109  816022 1
## 38110  816024 1
## 38111  816025 1
## 38112  816026 1
## 38113  816027 1
## 38114  816028 1
## 38115  816029 1
## 38116  816030 1
## 38117  816031 1
## 38118  816032 1
## 38119  816033 1
## 38120  816034 1
## 38121  816035 1
## 38122  816036 1
## 38123  816037 1
## 38124  816038 1
## 38125  816040 1
## 38126  816041 1
## 38127  816042 1
## 38128  816043 1
## 38129  816044 1
## 38130  816045 1
## 38131  816046 1
## 38132  816047 1
## 38133  816048 1
## 38134  816049 1
## 38135  816050 1
## 38136  816051 1
## 38137  816052 1
## 38138  816054 1
## 38139  816055 1
## 38140  816056 1
## 38141  816057 1
## 38142  816058 1
## 38143  816059 1
## 38144  816060 1
## 38145  816061 1
## 38146  816062 1
## 38147  816063 1
## 38148  816064 1
## 38149  816065 1
## 38150  816066 1
## 38151  816067 1
## 38152  816068 1
## 38153  816069 1
## 38154  816070 1
## 38155  816071 1
## 38156  816072 1
## 38157  816073 1
## 38158  816074 1
## 38159  816075 1
## 38160  816076 1
## 38161  816077 1
## 38162  816078 1
## 38163  816079 1
## 38164  816080 1
## 38165  816082 1
## 38166  816083 1
## 38167  816084 1
## 38168  816085 1
## 38169  816086 1
## 38170  816087 1
## 38171  816088 1
## 38172  816089 1
## 38173  816090 1
## 38174  816091 1
## 38175  816092 1
## 38176  816093 1
## 38177  816094 1
## 38178  816095 1
## 38179  816096 1
## 38180  816097 1
## 38181  816098 1
## 38182  816099 1
## 38183  816100 1
## 38184  816101 1
## 38185  816102 1
## 38186  816103 1
## 38187  816104 1
## 38188  816105 1
## 38189  816106 1
## 38190  816107 1
## 38191  816108 1
## 38192  816109 1
## 38193  816110 1
## 38194  816111 1
## 38195  816112 1
## 38196  816113 1
## 38197  816114 1
## 38198  816115 1
## 38199  816117 1
## 38200  816118 1
## 38201  816119 1
## 38202  816120 1
## 38203  816121 1
## 38204  816122 1
## 38205  816123 1
## 38206  816124 1
## 38207  816125 1
## 38208  816126 1
## 38209  816127 1
## 38210  816128 1
## 38211  816129 1
## 38212  816130 1
## 38213  816131 1
## 38214  816132 1
## 38215  816133 1
## 38216  816134 1
## 38217  816135 1
## 38218  816136 1
## 38219  816137 1
## 38220  816138 1
## 38221  816139 1
## 38222  816140 1
## 38223  816141 1
## 38224  816142 1
## 38225  816143 1
## 38226  816144 1
## 38227  816145 1
## 38228  816146 1
## 38229  816147 1
## 38230  816148 1
## 38231  816149 1
## 38232  816150 1
## 38233  816151 1
## 38234  816152 1
## 38235  816153 1
## 38236  816155 1
## 38237  816156 1
## 38238  816157 1
## 38239  816158 1
## 38240  816159 1
## 38241  816160 1
## 38242  816161 1
## 38243  816162 1
## 38244  816163 1
## 38245  816164 1
## 38246  816165 1
## 38247  816166 1
## 38248  816167 1
## 38249  816168 1
## 38250  816169 1
## 38251  816170 1
## 38252  816171 1
## 38253  816172 1
## 38254  816173 1
## 38255  816174 1
## 38256  816175 1
## 38257  816176 1
## 38258  816177 1
## 38259  816178 1
## 38260  816179 1
## 38261  816180 1
## 38262  816181 1
## 38263  816182 1
## 38264  816183 1
## 38265  816184 1
## 38266  816185 1
## 38267  816186 1
## 38268  816187 1
## 38269  816188 1
## 38270  816189 1
## 38271  816190 1
## 38272  816191 1
## 38273  816192 1
## 38274  816193 1
## 38275  816194 1
## 38276  816195 1
## 38277  816196 1
## 38278  816197 1
## 38279  816198 1
## 38280  816199 1
## 38281  816201 1
## 38282  816202 1
## 38283  816203 1
## 38284  816204 1
## 38285  816205 1
## 38286  816206 1
## 38287  816207 1
## 38288  816208 1
## 38289  816209 1
## 38290  816210 1
## 38291  816211 1
## 38292  816212 1
## 38293  816213 1
## 38294  816214 1
## 38295  816215 1
## 38296  816216 1
## 38297  816217 1
## 38298  816218 1
## 38299  816219 1
## 38300  816220 1
## 38301  816221 1
## 38302  816222 1
## 38303  816223 1
## 38304  816224 1
## 38305  816225 1
## 38306  816226 1
## 38307  816227 1
## 38308  816228 1
## 38309  816229 1
## 38310  816230 1
## 38311  816231 1
## 38312  816232 1
## 38313  816233 1
## 38314  816234 1
## 38315  816235 1
## 38316  816236 1
## 38317  816237 1
## 38318  816238 1
## 38319  816239 1
## 38320  816240 1
## 38321  816241 1
## 38322  816242 1
## 38323  816243 1
## 38324  816244 1
## 38325  816245 1
## 38326  816246 1
## 38327  816247 1
## 38328  816248 1
## 38329  816249 1
## 38330  816250 1
## 38331  816251 1
## 38332  816252 1
## 38333  816253 1
## 38334  816254 1
## 38335  816255 1
## 38336  816256 1
## 38337  816257 1
## 38338  816258 1
## 38339  816259 1
## 38340  816260 1
## 38341  816261 1
## 38342  816262 1
## 38343  816263 1
## 38344  816264 1
## 38345  816265 1
## 38346  816266 1
## 38347  816267 1
## 38348  816268 1
## 38349  816269 1
## 38350  816270 1
## 38351  816271 1
## 38352  816272 1
## 38353  816273 1
## 38354  816274 1
## 38355  816275 1
## 38356  816276 1
## 38357  816277 1
## 38358  816278 1
## 38359  816279 1
## 38360  816280 1
## 38361  816281 1
## 38362  816282 1
## 38363  816283 1
## 38364  816284 1
## 38365  816285 1
## 38366  816286 1
## 38367  816287 1
## 38368  816288 1
## 38369  816289 1
## 38370  816290 1
## 38371  816291 1
## 38372  816292 1
## 38373  816293 1
## 38374  816294 1
## 38375  816295 1
## 38376  816296 1
## 38377  816297 1
## 38378  816298 1
## 38379  816299 1
## 38380  816300 1
## 38381  816301 1
## 38382  816302 1
## 38383  816303 1
## 38384  816304 1
## 38385  816305 1
## 38386  816306 1
## 38387  816307 1
## 38388  816308 1
## 38389  816309 1
## 38390  816310 1
## 38391  816311 1
## 38392  816312 1
## 38393  816313 1
## 38394  816314 1
## 38395  816315 1
## 38396  816316 1
## 38397  816317 1
## 38398  816318 1
## 38399  816319 1
## 38400  816320 1
## 38401  816321 1
## 38402  816322 1
## 38403  816323 1
## 38404  816324 1
## 38405  816325 1
## 38406  816326 1
## 38407  816327 1
## 38408  816328 1
## 38409  816329 1
## 38410  816330 1
## 38411  816331 1
## 38412  816332 1
## 38413  816333 1
## 38414  816334 1
## 38415  816335 1
## 38416  816336 1
## 38417  816337 1
## 38418  816338 1
## 38419  816339 1
## 38420  816340 1
## 38421  816341 1
## 38422  816342 1
## 38423  816343 1
## 38424  816344 1
## 38425  816345 1
## 38426  816346 1
## 38427  816347 1
## 38428  816348 1
## 38429  816349 1
## 38430  816350 1
## 38431  816351 1
## 38432  816352 1
## 38433  816353 1
## 38434  816354 1
## 38435  816355 1
## 38436  816356 1
## 38437  816357 1
## 38438  816358 1
## 38439  816359 1
## 38440  816360 1
## 38441  816361 1
## 38442  816362 1
## 38443  816363 1
## 38444  816364 1
## 38445  816365 1
## 38446  816366 1
## 38447  816367 1
## 38448  816368 1
## 38449  816369 1
## 38450  816370 1
## 38451  816371 1
## 38452  816372 1
## 38453  816373 1
## 38454  816374 1
## 38455  816375 1
## 38456  816376 1
## 38457  816377 1
## 38458  816378 1
## 38459  816379 1
## 38460  816380 1
## 38461  816381 1
## 38462  816382 1
## 38463  816383 1
## 38464  816384 1
## 38465  816385 1
## 38466  816386 1
## 38467  816387 1
## 38468  816388 1
## 38469  816389 1
## 38470  816390 1
## 38471  816391 1
## 38472  816392 1
## 38473  816393 1
## 38474  816394 1
## 38475  816395 1
## 38476  816396 1
## 38477  816397 1
## 38478  816398 1
## 38479  816399 1
## 38480  816400 1
## 38481  816401 1
## 38482  816402 1
## 38483  816403 1
## 38484  816404 1
## 38485  816405 1
## 38486  816406 1
## 38487  816407 1
## 38488  816408 1
## 38489  816409 1
## 38490  816410 1
## 38491  816411 1
## 38492  816412 1
## 38493  816413 1
## 38494  816414 1
## 38495  816415 1
## 38496  816416 1
## 38497  816417 1
## 38498  816418 1
## 38499  816419 1
## 38500  816420 1
## 38501  816421 1
## 38502  816422 1
## 38503  816423 1
## 38504  816424 1
## 38505  816425 1
## 38506  816426 1
## 38507  816427 1
## 38508  816428 1
## 38509  816429 1
## 38510  816430 1
## 38511  816431 1
## 38512  816432 1
## 38513  816433 1
## 38514  816434 1
## 38515  816435 1
## 38516  816436 1
## 38517  816437 1
## 38518  816438 1
## 38519  816439 1
## 38520  816440 1
## 38521  816441 1
## 38522  816442 1
## 38523  816443 1
## 38524  816444 1
## 38525  816445 1
## 38526  816446 1
## 38527  816447 1
## 38528  816448 1
## 38529  816449 1
## 38530  816450 1
## 38531  816451 1
## 38532  816452 1
## 38533  816453 1
## 38534  816454 1
## 38535  816455 1
## 38536  816456 1
## 38537  816457 1
## 38538  816458 1
## 38539  816459 1
## 38540  816460 1
## 38541  816461 1
## 38542  816462 1
## 38543  816463 1
## 38544  816464 1
## 38545  816465 1
## 38546  816466 1
## 38547  816467 1
## 38548  816468 1
## 38549  816469 1
## 38550  816470 1
## 38551  816471 1
## 38552  816472 1
## 38553  816473 1
## 38554  816474 1
## 38555  816475 1
## 38556  816476 1
## 38557  816477 1
## 38558  816479 1
## 38559  816480 1
## 38560  816481 1
## 38561  816482 1
## 38562  816483 1
## 38563  816484 1
## 38564  816485 1
## 38565  816486 1
## 38566  816487 1
## 38567  816488 1
## 38568  816489 1
## 38569  816490 1
## 38570  816491 1
## 38571  816492 1
## 38572  816493 1
## 38573  816494 1
## 38574  816495 1
## 38575  816496 1
## 38576  816497 1
## 38577  816498 1
## 38578  816499 1
## 38579  816500 1
## 38580  816501 1
## 38581  816502 1
## 38582  816503 1
## 38583  816504 1
## 38584  816505 1
## 38585  816506 1
## 38586  816507 1
## 38587  816508 1
## 38588  816509 1
## 38589  816510 1
## 38590  816511 1
## 38591  816512 1
## 38592  816513 1
## 38593  816514 1
## 38594  816515 1
## 38595  816516 1
## 38596  816517 1
## 38597  816518 1
## 38598  816519 1
## 38599  816520 1
## 38600  816521 1
## 38601  816522 1
## 38602  816523 1
## 38603  816524 1
## 38604  816525 1
## 38605  816526 1
## 38606  816527 1
## 38607  816528 1
## 38608  816529 1
## 38609  816530 1
## 38610  816531 1
## 38611  816532 1
## 38612  816533 1
## 38613  816534 1
## 38614  816535 1
## 38615  816536 1
## 38616  816537 1
## 38617  816538 1
## 38618  816539 1
## 38619  816540 1
## 38620  816541 1
## 38621  816542 1
## 38622  816543 1
## 38623  816544 1
## 38624  816545 1
## 38625  816546 1
## 38626  816547 1
## 38627  816548 1
## 38628  816549 1
## 38629  816550 1
## 38630  816551 1
## 38631  816552 1
## 38632  816553 1
## 38633  816554 1
## 38634  816555 1
## 38635  816556 1
## 38636  816557 1
## 38637  816558 1
## 38638  816559 1
## 38639  816560 1
## 38640  816561 1
## 38641  816562 1
## 38642  816563 1
## 38643  816564 1
## 38644  816565 1
## 38645  816566 1
## 38646  816567 1
## 38647  816568 1
## 38648  816569 1
## 38649  816570 1
## 38650  816571 1
## 38651  816572 1
## 38652  816573 1
## 38653  816574 1
## 38654  816575 1
## 38655  816576 1
## 38656  816577 1
## 38657  816578 1
## 38658  816579 1
## 38659  816580 1
## 38660  816581 1
## 38661  816582 1
## 38662  816583 1
## 38663  816584 1
## 38664  816585 1
## 38665  816586 1
## 38666  816587 1
## 38667  816588 1
## 38668  816589 1
## 38669  816590 1
## 38670  816591 1
## 38671  816592 1
## 38672  816593 1
## 38673  816594 1
## 38674  816595 1
## 38675  816596 1
## 38676  816597 1
## 38677  816598 1
## 38678  816599 1
## 38679  816600 1
## 38680  816601 1
## 38681  816602 1
## 38682  816603 1
## 38683  816604 1
## 38684  816605 1
## 38685  816606 1
## 38686  816607 1
## 38687  816608 1
## 38688  816609 1
## 38689  816610 1
## 38690  816611 1
## 38691  816612 1
## 38692  816613 1
## 38693  816614 1
## 38694  816615 1
## 38695  816616 1
## 38696  816617 1
## 38697  816618 1
## 38698  816619 1
## 38699  816620 1
## 38700  816621 1
## 38701  816622 1
## 38702  816623 1
## 38703  816624 1
## 38704  816625 1
## 38705  816626 1
## 38706  816627 1
## 38707  816628 1
## 38708  816629 1
## 38709  816630 1
## 38710  816631 1
## 38711  816632 1
## 38712  816633 1
## 38713  816634 1
## 38714  816635 1
## 38715  816637 1
## 38716  816638 1
## 38717  816639 1
## 38718  816640 1
## 38719  816641 1
## 38720  816643 1
## 38721  816644 1
## 38722  816645 1
## 38723  816646 1
## 38724  816647 1
## 38725  816648 1
## 38726  816649 1
## 38727  816650 1
## 38728  816651 1
## 38729  816652 1
## 38730  816653 1
## 38731  816654 1
## 38732  816655 1
## 38733  816656 1
## 38734  816657 1
## 38735  816658 1
## 38736  816659 1
## 38737  816660 1
## 38738  816661 1
## 38739  816662 1
## 38740  816663 1
## 38741  816664 1
## 38742  816665 1
## 38743  816666 1
## 38744  816667 1
## 38745  816668 1
## 38746  816669 1
## 38747  816670 1
## 38748  816671 1
## 38749  816672 1
## 38750  816673 1
## 38751  816674 1
## 38752  816675 1
## 38753  816676 1
## 38754  816677 1
## 38755  816678 1
## 38756  816679 1
## 38757  816680 1
## 38758  816681 1
## 38759  816682 1
## 38760  816683 1
## 38761  816684 1
## 38762  816685 1
## 38763  816686 1
## 38764  816687 1
## 38765  816688 1
## 38766  816689 1
## 38767  816690 1
## 38768  816691 1
## 38769  816692 1
## 38770  816694 1
## 38771  816695 1
## 38772  816696 1
## 38773  816697 1
## 38774  816698 1
## 38775  816699 1
## 38776  816701 1
## 38777  816702 1
## 38778  816703 1
## 38779  816704 1
## 38780  816705 1
## 38781  816706 1
## 38782  816707 1
## 38783  816708 1
## 38784  816709 1
## 38785  816710 1
## 38786  816711 1
## 38787  816712 1
## 38788  816713 1
## 38789  816714 1
## 38790  816715 1
## 38791  816716 1
## 38792  816717 1
## 38793  816718 1
## 38794  816719 1
## 38795  816720 1
## 38796  816721 1
## 38797  816722 1
## 38798  816723 1
## 38799  816724 1
## 38800  816725 1
## 38801  816726 1
## 38802  816727 1
## 38803  816728 1
## 38804  816729 1
## 38805  816730 1
## 38806  816731 1
## 38807  816732 1
## 38808  816733 1
## 38809  816734 1
## 38810  816735 1
## 38811  816736 1
## 38812  816737 1
## 38813  816738 1
## 38814  816739 1
## 38815  816740 1
## 38816  816741 1
## 38817  816742 1
## 38818  816743 1
## 38819  816744 1
## 38820  816745 1
## 38821  816746 1
## 38822  816747 1
## 38823  816748 1
## 38824  816749 1
## 38825  816750 1
## 38826  816751 1
## 38827  816752 1
## 38828  816753 1
## 38829  816754 1
## 38830  816755 1
## 38831  816756 1
## 38832  816757 1
## 38833  816758 1
## 38834  816759 1
## 38835  816760 1
## 38836  816761 1
## 38837  816762 1
## 38838  816763 1
## 38839  816764 1
## 38840  816766 1
## 38841  816767 1
## 38842  816768 1
## 38843  816769 1
## 38844  816770 1
## 38845  816771 1
## 38846  816772 1
## 38847  816773 1
## 38848  816774 1
## 38849  816775 1
## 38850  816776 1
## 38851  816777 1
## 38852  816778 1
## 38853  816780 1
## 38854  816781 1
## 38855  816782 1
## 38856  816783 1
## 38857  816784 1
## 38858  816785 1
## 38859  816786 1
## 38860  816787 1
## 38861  816788 1
## 38862  816789 1
## 38863  816790 1
## 38864  816791 1
## 38865  816792 1
## 38866  816793 1
## 38867  816794 1
## 38868  816795 1
## 38869  816796 1
## 38870  816797 1
## 38871  816798 1
## 38872  816799 1
## 38873  816800 1
## 38874  816801 1
## 38875  816802 1
## 38876  816803 1
## 38877  816804 1
## 38878  816805 1
## 38879  816806 1
## 38880  816807 1
## 38881  816808 1
## 38882  816809 1
## 38883  816810 1
## 38884  816811 1
## 38885  816812 1
## 38886  816813 1
## 38887  816814 1
## 38888  816815 1
## 38889  816816 1
## 38890  816817 1
## 38891  816818 1
## 38892  816819 1
## 38893  816820 1
## 38894  816821 1
## 38895  816822 1
## 38896  816823 1
## 38897  816825 1
## 38898  816826 1
## 38899  816827 1
## 38900  816828 1
## 38901  816829 1
## 38902  816830 1
## 38903  816831 1
## 38904  816832 1
## 38905  816833 1
## 38906  816834 1
## 38907  816835 1
## 38908  816836 1
## 38909  816837 1
## 38910  816838 1
## 38911  816839 1
## 38912  816840 1
## 38913  816841 1
## 38914  816842 1
## 38915  816843 1
## 38916  816844 1
## 38917  816845 1
## 38918  816846 1
## 38919  816847 1
## 38920  816848 1
## 38921  816849 1
## 38922  816850 1
## 38923  816851 1
## 38924  816852 1
## 38925  816853 1
## 38926  816854 1
## 38927  816855 1
## 38928  816856 1
## 38929  816857 1
## 38930  816858 1
## 38931  816859 1
## 38932  816860 1
## 38933  816861 1
## 38934  816862 1
## 38935  816863 1
## 38936  816864 1
## 38937  816865 1
## 38938  816866 1
## 38939  816867 1
## 38940  816868 1
## 38941  816869 1
## 38942  816870 1
## 38943  816871 1
## 38944  816872 1
## 38945  816873 1
## 38946  816874 1
## 38947  816875 1
## 38948  816876 1
## 38949  816877 1
## 38950  816878 1
## 38951  816879 1
## 38952  816880 1
## 38953  816881 1
## 38954  816882 1
## 38955  816883 1
## 38956  816884 1
## 38957  816885 1
## 38958  816886 1
## 38959  816887 1
## 38960  816888 1
## 38961  816889 1
## 38962  816890 1
## 38963  816891 1
## 38964  816892 1
## 38965  816893 1
## 38966  816894 1
## 38967  816895 1
## 38968  816896 1
## 38969  816897 1
## 38970  816898 1
## 38971  816899 1
## 38972  816900 1
## 38973  816901 1
## 38974  816902 1
## 38975  816903 1
## 38976  816904 1
## 38977  816905 1
## 38978  816906 1
## 38979  816907 1
## 38980  816908 1
## 38981  816909 1
## 38982  816910 1
## 38983  816911 1
## 38984  816912 1
## 38985  816913 1
## 38986  816914 1
## 38987  816915 1
## 38988  816916 1
## 38989  816917 1
## 38990  816918 1
## 38991  816919 1
## 38992  816920 1
## 38993  816921 1
## 38994  816922 1
## 38995  816923 1
## 38996  816924 1
## 38997  816925 1
## 38998  816926 1
## 38999  816927 1
## 39000  816928 1
## 39001  816929 1
## 39002  816930 1
## 39003  816931 1
## 39004  816932 1
## 39005  816933 1
## 39006  816934 1
## 39007  816935 1
## 39008  816936 1
## 39009  816937 1
## 39010  816938 1
## 39011  816940 1
## 39012  816941 1
## 39013  816942 1
## 39014  816943 1
## 39015  816944 1
## 39016  816945 1
## 39017  816946 1
## 39018  816947 1
## 39019  816948 1
## 39020  816949 1
## 39021  816950 1
## 39022  816951 1
## 39023  816952 1
## 39024  816953 1
## 39025  816954 1
## 39026  816955 1
## 39027  816956 1
## 39028  816957 1
## 39029  816958 1
## 39030  816959 1
## 39031  816960 1
## 39032  816961 1
## 39033  816962 1
## 39034  816963 1
## 39035  816964 1
## 39036  816965 1
## 39037  816966 1
## 39038  816967 1
## 39039  816968 1
## 39040  816969 1
## 39041  816970 1
## 39042  816971 1
## 39043  816972 1
## 39044  816973 1
## 39045  816974 1
## 39046  816975 1
## 39047  816976 1
## 39048  816977 1
## 39049  816978 1
## 39050  816979 1
## 39051  816980 1
## 39052  816981 1
## 39053  816982 1
## 39054  816983 1
## 39055  816984 1
## 39056  816985 1
## 39057  816986 1
## 39058  816987 1
## 39059  816988 1
## 39060  816989 1
## 39061  816990 1
## 39062  816991 1
## 39063  816992 1
## 39064  816993 1
## 39065  816994 1
## 39066  816995 1
## 39067  816996 1
## 39068  816997 1
## 39069  816998 1
## 39070  817000 1
## 39071  817001 1
## 39072  817002 1
## 39073  817003 1
## 39074  817004 1
## 39075  817005 1
## 39076  817006 1
## 39077  817007 1
## 39078  817008 1
## 39079  817009 1
## 39080  817010 1
## 39081  817011 1
## 39082  817012 1
## 39083  817013 1
## 39084  817014 1
## 39085  817015 1
## 39086  817016 1
## 39087  817017 1
## 39088  817018 1
## 39089  817019 1
## 39090  817020 1
## 39091  817021 1
## 39092  817022 1
## 39093  817023 1
## 39094  817024 1
## 39095  817025 1
## 39096  817027 1
## 39097  817028 1
## 39098  817029 1
## 39099  817030 1
## 39100  817031 1
## 39101  817032 1
## 39102  817033 1
## 39103  817034 1
## 39104  817035 1
## 39105  817036 1
## 39106  817037 1
## 39107  817038 1
## 39108  817039 1
## 39109  817040 1
## 39110  817041 1
## 39111  817042 1
## 39112  817043 1
## 39113  817044 1
## 39114  817045 1
## 39115  817046 1
## 39116  817047 1
## 39117  817048 1
## 39118  817049 1
## 39119  817050 1
## 39120  817051 1
## 39121  817052 1
## 39122  817053 1
## 39123  817054 1
## 39124  817055 1
## 39125  817056 1
## 39126  817057 1
## 39127  817058 1
## 39128  817059 1
## 39129  817060 1
## 39130  817061 1
## 39131  817062 1
## 39132  817063 1
## 39133  817064 1
## 39134  817065 1
## 39135  817066 1
## 39136  817067 1
## 39137  817068 1
## 39138  817069 1
## 39139  817070 1
## 39140  817071 1
## 39141  817072 1
## 39142  817073 1
## 39143  817074 1
## 39144  817075 1
## 39145  817076 1
## 39146  817077 1
## 39147  817078 1
## 39148  817079 1
## 39149  817080 1
## 39150  817081 1
## 39151  817082 1
## 39152  817083 1
## 39153  817084 1
## 39154  817085 1
## 39155  817086 1
## 39156  817087 1
## 39157  817088 1
## 39158  817089 1
## 39159  817090 1
## 39160  817091 1
## 39161  817092 1
## 39162  817093 1
## 39163  817094 1
## 39164  817095 1
## 39165  817096 1
## 39166  817097 1
## 39167  817098 1
## 39168  817099 1
## 39169  817100 1
## 39170  817101 1
## 39171  817102 1
## 39172  817103 1
## 39173  817104 1
## 39174  817105 1
## 39175  817106 1
## 39176  817107 1
## 39177  817108 1
## 39178  817109 1
## 39179  817110 1
## 39180  817111 1
## 39181  817112 1
## 39182  817113 1
## 39183  817114 1
## 39184  817115 1
## 39185  817116 1
## 39186  817117 1
## 39187  817118 1
## 39188  817119 1
## 39189  817120 1
## 39190  817121 1
## 39191  817122 1
## 39192  817123 1
## 39193  817124 1
## 39194  817125 1
## 39195  817126 1
## 39196  817127 1
## 39197  817128 1
## 39198  817129 1
## 39199  817130 1
## 39200  817131 1
## 39201  817132 1
## 39202  817133 1
## 39203  817134 1
## 39204  817135 1
## 39205  817136 1
## 39206  817137 1
## 39207  817138 1
## 39208  817140 1
## 39209  817141 1
## 39210  817142 1
## 39211  817143 1
## 39212  817144 1
## 39213  817145 1
## 39214  817146 1
## 39215  817147 1
## 39216  817148 1
## 39217  817149 1
## 39218  817150 1
## 39219  817151 1
## 39220  817152 1
## 39221  817153 1
## 39222  817155 1
## 39223  817156 1
## 39224  817157 1
## 39225  817158 1
## 39226  817159 1
## 39227  817160 1
## 39228  817161 1
## 39229  817162 1
## 39230  817163 1
## 39231  817164 1
## 39232  817165 1
## 39233  817166 1
## 39234  817167 1
## 39235  817168 1
## 39236  817169 1
## 39237  817170 1
## 39238  817171 1
## 39239  817172 1
## 39240  817173 1
## 39241  817174 1
## 39242  817176 1
## 39243  817177 1
## 39244  817178 1
## 39245  817179 1
## 39246  817180 1
## 39247  817181 1
## 39248  817182 1
## 39249  817183 1
## 39250  817184 1
## 39251  817185 1
## 39252  817186 1
## 39253  817187 1
## 39254  817188 1
## 39255  817189 1
## 39256  817190 1
## 39257  817191 1
## 39258  817192 1
## 39259  817193 1
## 39260  817194 1
## 39261  817195 1
## 39262  817197 1
## 39263  817198 1
## 39264  817199 1
## 39265  817200 1
## 39266  817201 1
## 39267  817202 1
## 39268  817203 1
## 39269  817204 1
## 39270  817205 1
## 39271  817206 1
## 39272  817207 1
## 39273  817208 1
## 39274  817209 1
## 39275  817210 1
## 39276  817211 1
## 39277  817212 1
## 39278  817213 1
## 39279  817214 1
## 39280  817215 1
## 39281  817216 1
## 39282  817217 1
## 39283  817218 1
## 39284  817219 1
## 39285  817220 1
## 39286  817221 1
## 39287  817222 1
## 39288  817223 1
## 39289  817224 1
## 39290  817225 1
## 39291  817226 1
## 39292  817227 1
## 39293  817228 1
## 39294  817229 1
## 39295  817230 1
## 39296  817231 1
## 39297  817232 1
## 39298  817233 1
## 39299  817234 1
## 39300  817235 1
## 39301  817236 1
## 39302  817237 1
## 39303  817238 1
## 39304  817239 1
## 39305  817240 1
## 39306  817241 1
## 39307  817242 1
## 39308  817243 1
## 39309  817244 1
## 39310  817245 1
## 39311  817246 1
## 39312  817247 1
## 39313  817248 1
## 39314  817249 1
## 39315  817250 1
## 39316  817252 1
## 39317  817253 1
## 39318  817254 1
## 39319  817255 1
## 39320  817256 1
## 39321  817257 1
## 39322  817258 1
## 39323  817259 1
## 39324  817260 1
## 39325  817261 1
## 39326  817262 1
## 39327  817263 1
## 39328  817264 1
## 39329  817265 1
## 39330  817266 1
## 39331  817267 1
## 39332  817268 1
## 39333  817269 1
## 39334  817270 1
## 39335  817271 1
## 39336  817272 1
## 39337  817273 1
## 39338  817274 1
## 39339  817275 1
## 39340  817276 1
## 39341  817277 1
## 39342  817278 1
## 39343  817279 1
## 39344  817280 1
## 39345  817281 1
## 39346  817282 1
## 39347  817283 1
## 39348  817284 1
## 39349  817285 1
## 39350  817286 1
## 39351  817287 1
## 39352  817288 1
## 39353  817289 1
## 39354  817290 1
## 39355  817291 1
## 39356  817292 1
## 39357  817293 1
## 39358  817294 1
## 39359  817295 1
## 39360  817296 1
## 39361  817297 1
## 39362  817298 1
## 39363  817299 1
## 39364  817300 1
## 39365  817301 1
## 39366  817303 1
## 39367  817304 1
## 39368  817305 1
## 39369  817306 1
## 39370  817307 1
## 39371  817308 1
## 39372  817309 1
## 39373  817310 1
## 39374  817311 1
## 39375  817312 1
## 39376  817313 1
## 39377  817314 1
## 39378  817315 1
## 39379  817316 1
## 39380  817317 1
## 39381  817318 1
## 39382  817319 1
## 39383  817320 1
## 39384  817321 1
## 39385  817322 1
## 39386  817323 1
## 39387  817324 1
## 39388  817325 1
## 39389  817326 1
## 39390  817327 1
## 39391  817328 1
## 39392  817329 1
## 39393  817330 1
## 39394  817331 1
## 39395  817332 1
## 39396  817333 1
## 39397  817334 1
## 39398  817335 1
## 39399  817336 1
## 39400  817337 1
## 39401  817338 1
## 39402  817339 1
## 39403  817340 1
## 39404  817341 1
## 39405  817342 1
## 39406  817343 1
## 39407  817344 1
## 39408  817345 1
## 39409  817346 1
## 39410  817347 1
## 39411  817348 1
## 39412  817349 1
## 39413  817350 1
## 39414  817351 1
## 39415  817352 1
## 39416  817353 1
## 39417  817354 1
## 39418  817355 1
## 39419  817357 1
## 39420  817358 1
## 39421  817359 1
## 39422  817360 1
## 39423  817361 1
## 39424  817362 1
## 39425  817363 1
## 39426  817364 1
## 39427  817365 1
## 39428  817366 1
## 39429  817367 1
## 39430  817368 1
## 39431  817369 1
## 39432  817370 1
## 39433  817371 1
## 39434  817372 1
## 39435  817373 1
## 39436  817374 1
## 39437  817375 1
## 39438  817376 1
## 39439  817377 1
## 39440  817378 1
## 39441  817379 1
## 39442  817380 1
## 39443  817381 1
## 39444  817382 1
## 39445  817383 1
## 39446  817384 1
## 39447  817385 1
## 39448  817386 1
## 39449  817387 1
## 39450  817388 1
## 39451  817389 1
## 39452  817390 1
## 39453  817391 1
## 39454  817392 1
## 39455  817393 1
## 39456  817394 1
## 39457  817395 1
## 39458  817396 1
## 39459  817397 1
## 39460  817398 1
## 39461  817399 1
## 39462  817400 1
## 39463  817401 1
## 39464  817402 1
## 39465  817403 1
## 39466  817404 1
## 39467  817405 1
## 39468  817406 1
## 39469  817407 1
## 39470  817408 1
## 39471  817409 1
## 39472  817410 1
## 39473  817411 1
## 39474  817412 1
## 39475  817413 1
## 39476  817414 1
## 39477  817415 1
## 39478  817416 1
## 39479  817417 1
## 39480  817418 1
## 39481  817419 1
## 39482  817420 1
## 39483  817421 1
## 39484  817422 1
## 39485  817423 1
## 39486  817424 1
## 39487  817425 1
## 39488  817426 1
## 39489  817427 1
## 39490  817428 1
## 39491  817429 1
## 39492  817430 1
## 39493  817431 1
## 39494  817432 1
## 39495  817433 1
## 39496  817434 1
## 39497  817435 1
## 39498  817436 1
## 39499  817437 1
## 39500  817438 1
## 39501  817439 1
## 39502  817440 1
## 39503  817441 1
## 39504  817442 1
## 39505  817443 1
## 39506  817444 1
## 39507  817445 1
## 39508  817446 1
## 39509  817447 1
## 39510  817448 1
## 39511  817449 1
## 39512  817450 1
## 39513  817451 1
## 39514  817452 1
## 39515  817453 1
## 39516  817454 1
## 39517  817455 1
## 39518  817456 1
## 39519  817457 1
## 39520  817458 1
## 39521  817459 1
## 39522  817460 1
## 39523  817461 1
## 39524  817462 1
## 39525  817463 1
## 39526  817464 1
## 39527  817465 1
## 39528  817466 1
## 39529  817467 1
## 39530  817468 1
## 39531  817469 1
## 39532  817470 1
## 39533  817471 1
## 39534  817472 1
## 39535  817473 1
## 39536  817474 1
## 39537  817475 1
## 39538  817476 1
## 39539  817477 1
## 39540  817478 1
## 39541  817479 1
## 39542  817480 1
## 39543  817481 1
## 39544  817482 1
## 39545  817483 1
## 39546  817484 1
## 39547  817485 1
## 39548  817486 1
## 39549  817487 1
## 39550  817488 1
## 39551  817489 1
## 39552  817490 1
## 39553  817491 1
## 39554  817492 1
## 39555  817493 1
## 39556  817494 1
## 39557  817495 1
## 39558  817496 1
## 39559  817498 1
## 39560  817499 1
## 39561  817500 1
## 39562  817501 1
## 39563  817502 1
## 39564  817503 1
## 39565  817504 1
## 39566  817505 1
## 39567  817506 1
## 39568  817507 1
## 39569  817508 1
## 39570  817509 1
## 39571  817510 1
## 39572  817511 1
## 39573  817512 1
## 39574  817514 1
## 39575  817515 1
## 39576  817516 1
## 39577  817517 1
## 39578  817518 1
## 39579  817519 1
## 39580  817520 1
## 39581  817521 1
## 39582  817522 1
## 39583  817523 1
## 39584  817524 1
## 39585  817525 1
## 39586  817527 1
## 39587  817528 1
## 39588  817529 1
## 39589  817530 1
## 39590  817531 1
## 39591  817532 1
## 39592  817533 1
## 39593  817534 1
## 39594  817535 1
## 39595  817536 1
## 39596  817537 1
## 39597  817538 1
## 39598  817539 1
## 39599  817540 1
## 39600  817541 1
## 39601  817542 1
## 39602  817543 1
## 39603  817544 1
## 39604  817545 1
## 39605  817546 1
## 39606  817547 1
## 39607  817548 1
## 39608  817549 1
## 39609  817550 1
## 39610  817551 1
## 39611  817552 1
## 39612  817553 1
## 39613  817554 1
## 39614  817555 1
## 39615  817556 1
## 39616  817557 1
## 39617  817558 1
## 39618  817559 1
## 39619  817560 1
## 39620  817561 1
## 39621  817562 1
## 39622  817563 1
## 39623  817564 1
## 39624  817565 1
## 39625  817566 1
## 39626  817567 1
## 39627  817568 1
## 39628  817569 1
## 39629  817570 1
## 39630  817571 1
## 39631  817572 1
## 39632  817573 1
## 39633  817575 1
## 39634  817576 1
## 39635  817577 1
## 39636  817578 1
## 39637  817579 1
## 39638  817580 1
## 39639  817581 1
## 39640  817582 1
## 39641  817583 1
## 39642  817584 1
## 39643  817585 1
## 39644  817586 1
## 39645  817587 1
## 39646  817588 1
## 39647  817589 1
## 39648  817590 1
## 39649  817591 1
## 39650  817592 1
## 39651  817593 1
## 39652  817594 1
## 39653  817595 1
## 39654  817596 1
## 39655  817597 1
## 39656  817598 1
## 39657  817599 1
## 39658  817600 1
## 39659  817601 1
## 39660  817602 1
## 39661  817603 1
## 39662  817604 1
## 39663  817605 1
## 39664  817606 1
## 39665  817607 1
## 39666  817608 1
## 39667  817609 1
## 39668  817610 1
## 39669  817611 1
## 39670  817612 1
## 39671  817613 1
## 39672  817614 1
## 39673  817615 1
## 39674  817616 1
## 39675  817617 1
## 39676  817618 1
## 39677  817619 1
## 39678  817620 1
## 39679  817621 1
## 39680  817622 1
## 39681  817623 1
## 39682  817624 1
## 39683  817625 1
## 39684  817626 1
## 39685  817627 1
## 39686  817628 1
## 39687  817630 1
## 39688  817631 1
## 39689  817632 1
## 39690  817633 1
## 39691  817634 1
## 39692  817635 1
## 39693  817636 1
## 39694  817637 1
## 39695  817638 1
## 39696  817640 1
## 39697  817641 1
## 39698  817642 1
## 39699  817643 1
## 39700  817644 1
## 39701  817645 1
## 39702  817646 1
## 39703  817647 1
## 39704  817648 1
## 39705  817649 1
## 39706  817650 1
## 39707  817651 1
## 39708  817652 1
## 39709  817653 1
## 39710  817654 1
## 39711  817656 1
## 39712  817657 1
## 39713  817658 1
## 39714  817659 1
## 39715  817660 1
## 39716  817661 1
## 39717  817662 1
## 39718  817663 1
## 39719  817664 1
## 39720  817665 1
## 39721  817666 1
## 39722  817667 1
## 39723  817668 1
## 39724  817669 1
## 39725  817670 1
## 39726  817671 1
## 39727  817672 1
## 39728  817673 1
## 39729  817674 1
## 39730  817675 1
## 39731  817676 1
## 39732  817677 1
## 39733  817678 1
## 39734  817679 1
## 39735  817680 1
## 39736  817681 1
## 39737  817682 1
## 39738  817683 1
## 39739  817684 1
## 39740  817685 1
## 39741  817686 1
## 39742  817687 1
## 39743  817688 1
## 39744  817689 1
## 39745  817690 1
## 39746  817691 1
## 39747  817692 1
## 39748  817693 1
## 39749  817694 1
## 39750  817695 1
## 39751  817696 1
## 39752  817697 1
## 39753  817698 1
## 39754  817699 1
## 39755  817700 1
## 39756  817701 1
## 39757  817702 1
## 39758  817703 1
## 39759  817704 1
## 39760  817705 1
## 39761  817706 1
## 39762  817707 1
## 39763  817708 1
## 39764  817709 1
## 39765  817710 1
## 39766  817711 1
## 39767  817712 1
## 39768  817713 1
## 39769  817714 1
## 39770  817715 1
## 39771  817716 1
## 39772  817717 1
## 39773  817718 1
## 39774  817719 1
## 39775  817720 1
## 39776  817721 1
## 39777  817722 1
## 39778  817723 1
## 39779  817724 1
## 39780  817725 1
## 39781  817726 1
## 39782  817727 1
## 39783  817728 1
## 39784  817729 1
## 39785  817730 1
## 39786  817731 1
## 39787  817732 1
## 39788  817733 1
## 39789  817734 1
## 39790  817735 1
## 39791  817736 1
## 39792  817737 1
## 39793  817738 1
## 39794  817739 1
## 39795  817740 1
## 39796  817741 1
## 39797  817742 1
## 39798  817743 1
## 39799  817744 1
## 39800  817745 1
## 39801  817746 1
## 39802  817747 1
## 39803  817748 1
## 39804  817749 1
## 39805  817750 1
## 39806  817751 1
## 39807  817752 1
## 39808  817753 1
## 39809  817754 1
## 39810  817755 1
## 39811  817756 1
## 39812  817757 1
## 39813  817758 1
## 39814  817759 1
## 39815  817760 1
## 39816  817761 1
## 39817  817762 1
## 39818  817763 1
## 39819  817764 1
## 39820  817765 1
## 39821  817766 1
## 39822  817767 1
## 39823  817768 1
## 39824  817769 1
## 39825  817770 1
## 39826  817771 1
## 39827  817772 1
## 39828  817773 1
## 39829  817774 1
## 39830  817775 1
## 39831  817776 1
## 39832  817777 1
## 39833  817778 1
## 39834  817779 1
## 39835  817780 1
## 39836  817781 1
## 39837  817782 1
## 39838  817783 1
## 39839  817784 1
## 39840  817785 1
## 39841  817786 1
## 39842  817787 1
## 39843  817788 1
## 39844  817789 1
## 39845  817790 1
## 39846  817791 1
## 39847  817792 1
## 39848  817793 1
## 39849  817794 1
## 39850  817795 1
## 39851  817796 1
## 39852  817797 1
## 39853  817798 1
## 39854  817799 1
## 39855  817800 1
## 39856  817801 1
## 39857  817802 1
## 39858  817803 1
## 39859  817804 1
## 39860  817805 1
## 39861  817806 1
## 39862  817807 1
## 39863  817808 1
## 39864  817809 1
## 39865  817810 1
## 39866  817811 1
## 39867  817812 1
## 39868  817813 1
## 39869  817814 1
## 39870  817815 1
## 39871  817816 1
## 39872  817817 1
## 39873  817818 1
## 39874  817819 1
## 39875  817820 1
## 39876  817821 1
## 39877  817822 1
## 39878  817823 1
## 39879  817824 1
## 39880  817825 1
## 39881  817826 1
## 39882  817827 1
## 39883  817828 1
## 39884  817829 1
## 39885  817830 1
## 39886  817831 1
## 39887  817832 1
## 39888  817833 1
## 39889  817834 1
## 39890  817835 1
## 39891  817836 1
## 39892  817837 1
## 39893  817838 1
## 39894  817839 1
## 39895  817840 1
## 39896  817841 1
## 39897  817842 1
## 39898  817843 1
## 39899  817844 1
## 39900  817845 1
## 39901  817846 1
## 39902  817847 1
## 39903  817848 1
## 39904  817849 1
## 39905  817850 1
## 39906  817851 1
## 39907  817852 1
## 39908  817853 1
## 39909  817854 1
## 39910  817855 1
## 39911  817856 1
## 39912  817857 1
## 39913  817858 1
## 39914  817859 1
## 39915  817860 1
## 39916  817861 1
## 39917  817862 1
## 39918  817863 1
## 39919  817864 1
## 39920  817865 1
## 39921  817866 1
## 39922  817867 1
## 39923  817868 1
## 39924  817869 1
## 39925  817870 1
## 39926  817871 1
## 39927  817872 1
## 39928  817873 1
## 39929  817874 1
## 39930  817875 1
## 39931  817876 1
## 39932  817877 1
## 39933  817879 1
## 39934  817880 1
## 39935  817881 1
## 39936  817882 1
## 39937  817883 1
## 39938  817884 1
## 39939  817885 1
## 39940  817886 1
## 39941  817887 1
## 39942  817888 1
## 39943  817889 1
## 39944  817890 1
## 39945  817891 1
## 39946  817892 1
## 39947  817893 1
## 39948  817894 1
## 39949  817895 1
## 39950  817896 1
## 39951  817897 1
## 39952  817898 1
## 39953  817899 1
## 39954  817900 1
## 39955  817901 1
## 39956  817902 1
## 39957  817903 1
## 39958  817904 1
## 39959  817905 1
## 39960  817906 1
## 39961  817907 1
## 39962  817908 1
## 39963  817909 1
## 39964  817910 1
## 39965  817911 1
## 39966  817912 1
## 39967  817913 1
## 39968  817914 1
## 39969  817915 1
## 39970  817916 1
## 39971  817917 1
## 39972  817918 1
## 39973  817919 1
## 39974  817920 1
## 39975  817921 1
## 39976  817922 1
## 39977  817923 1
## 39978  817924 1
## 39979  817925 1
## 39980  817926 1
## 39981  817927 1
## 39982  817928 1
## 39983  817929 1
## 39984  817930 1
## 39985  817931 1
## 39986  817932 1
## 39987  817933 1
## 39988  817934 1
## 39989  817935 1
## 39990  817936 1
## 39991  817937 1
## 39992  817938 1
## 39993  817939 1
## 39994  817940 1
## 39995  817941 1
## 39996  817942 1
## 39997  817943 1
## 39998  817944 1
## 39999  817945 1
## 40000  817946 1
## 40001  817947 1
## 40002  817948 1
## 40003  817949 1
## 40004  817950 1
## 40005  817951 1
## 40006  817952 1
## 40007  817953 1
## 40008  817954 1
## 40009  817955 1
## 40010  817956 1
## 40011  817957 1
## 40012  817958 1
## 40013  817959 1
## 40014  817960 1
## 40015  817961 1
## 40016  817962 1
## 40017  817963 1
## 40018  817964 1
## 40019  817965 1
## 40020  817966 1
## 40021  817967 1
## 40022  817968 1
## 40023  817969 1
## 40024  817970 1
## 40025  817971 1
## 40026  817972 1
## 40027  817973 1
## 40028  817974 1
## 40029  817975 1
## 40030  817976 1
## 40031  817978 1
## 40032  817979 1
## 40033  817980 1
## 40034  817981 1
## 40035  817982 1
## 40036  817983 1
## 40037  817984 1
## 40038  817985 1
## 40039  817986 1
## 40040  817987 1
## 40041  817988 1
## 40042  817989 1
## 40043  817990 1
## 40044  817991 1
## 40045  817992 1
## 40046  817993 1
## 40047  817994 1
## 40048  817995 1
## 40049  817996 1
## 40050  817997 1
## 40051  817998 1
## 40052  817999 1
## 40053  818000 1
## 40054  818001 1
## 40055  818002 1
## 40056  818003 1
## 40057  818004 1
## 40058  818005 1
## 40059  818006 1
## 40060  818007 1
## 40061  818008 1
## 40062  818009 1
## 40063  818010 1
## 40064  818011 1
## 40065  818012 1
## 40066  818013 1
## 40067  818014 1
## 40068  818015 1
## 40069  818016 1
## 40070  818017 1
## 40071  818018 1
## 40072  818019 1
## 40073  818020 1
## 40074  818021 1
## 40075  818022 1
## 40076  818023 1
## 40077  818024 1
## 40078  818025 1
## 40079  818026 1
## 40080  818027 1
## 40081  818028 1
## 40082  818029 1
## 40083  818030 1
## 40084  818031 1
## 40085  818032 1
## 40086  818033 1
## 40087  818034 1
## 40088  818035 1
## 40089  818036 1
## 40090  818037 1
## 40091  818038 1
## 40092  818039 1
## 40093  818040 1
## 40094  818041 1
## 40095  818042 1
## 40096  818043 1
## 40097  818044 1
## 40098  818045 1
## 40099  818046 1
## 40100  818047 1
## 40101  818048 1
## 40102  818049 1
## 40103  818050 1
## 40104  818051 1
## 40105  818052 1
## 40106  818053 1
## 40107  818054 1
## 40108  818055 1
## 40109  818056 1
## 40110  818057 1
## 40111  818058 1
## 40112  818059 1
## 40113  818060 1
## 40114  818061 1
## 40115  818062 1
## 40116  818063 1
## 40117  818064 1
## 40118  818065 1
## 40119  818066 1
## 40120  818067 1
## 40121  818068 1
## 40122  818069 1
## 40123  818070 1
## 40124  818071 1
## 40125  818072 1
## 40126  818073 1
## 40127  818074 1
## 40128  818075 1
## 40129  818076 1
## 40130  818077 1
## 40131  818078 1
## 40132  818079 1
## 40133  818081 1
## 40134  818082 1
## 40135  818083 1
## 40136  818084 1
## 40137  818085 1
## 40138  818086 1
## 40139  818087 1
## 40140  818088 1
## 40141  818089 1
## 40142  818090 1
## 40143  818091 1
## 40144  818092 1
## 40145  818093 1
## 40146  818094 1
## 40147  818095 1
## 40148  818096 1
## 40149  818097 1
## 40150  818098 1
## 40151  818099 1
## 40152  818100 1
## 40153  818101 1
## 40154  818102 1
## 40155  818103 1
## 40156  818104 1
## 40157  818105 1
## 40158  818106 1
## 40159  818107 1
## 40160  818108 1
## 40161  818109 1
## 40162  818110 1
## 40163  818111 1
## 40164  818112 1
## 40165  818113 1
## 40166  818114 1
## 40167  818115 1
## 40168  818116 1
## 40169  818117 1
## 40170  818118 1
## 40171  818119 1
## 40172  818120 1
## 40173  818121 1
## 40174  818122 1
## 40175  818123 1
## 40176  818124 1
## 40177  818125 1
## 40178  818126 1
## 40179  818127 1
## 40180  818128 1
## 40181  818129 1
## 40182  818130 1
## 40183  818131 1
## 40184  818132 1
## 40185  818133 1
## 40186  818134 1
## 40187  818135 1
## 40188  818136 1
## 40189  818137 1
## 40190  818138 1
## 40191  818139 1
## 40192  818140 1
## 40193  818141 1
## 40194  818143 1
## 40195  818144 1
## 40196  818145 1
## 40197  818146 1
## 40198  818147 1
## 40199  818148 1
## 40200  818149 1
## 40201  818150 1
## 40202  818151 1
## 40203  818152 1
## 40204  818153 1
## 40205  818154 1
## 40206  818155 1
## 40207  818157 1
## 40208  818158 1
## 40209  818159 1
## 40210  818160 1
## 40211  818161 1
## 40212  818162 1
## 40213  818163 1
## 40214  818164 1
## 40215  818165 1
## 40216  818166 1
## 40217  818167 1
## 40218  818168 1
## 40219  818169 1
## 40220  818170 1
## 40221  818171 1
## 40222  818172 1
## 40223  818173 1
## 40224  818174 1
## 40225  818175 1
## 40226  818176 1
## 40227  818177 1
## 40228  818178 1
## 40229  818179 1
## 40230  818180 1
## 40231  818181 1
## 40232  818182 1
## 40233  818183 1
## 40234  818184 1
## 40235  818185 1
## 40236  818186 1
## 40237  818187 1
## 40238  818188 1
## 40239  818189 1
## 40240  818190 1
## 40241  818191 1
## 40242  818193 1
## 40243  818194 1
## 40244  818195 1
## 40245  818196 1
## 40246  818197 1
## 40247  818198 1
## 40248  818199 1
## 40249  818200 1
## 40250  818201 1
## 40251  818202 1
## 40252  818203 1
## 40253  818204 1
## 40254  818205 1
## 40255  818206 1
## 40256  818207 1
## 40257  818208 1
## 40258  818209 1
## 40259  818210 1
## 40260  818211 1
## 40261  818213 1
## 40262  818214 1
## 40263  818215 1
## 40264  818216 1
## 40265  818217 1
## 40266  818218 1
## 40267  818219 1
## 40268  818220 1
## 40269  818221 1
## 40270  818222 1
## 40271  818223 1
## 40272  818224 1
## 40273  818225 1
## 40274  818226 1
## 40275  818227 1
## 40276  818228 1
## 40277  818229 1
## 40278  818230 1
## 40279  818231 1
## 40280  818232 1
## 40281  818233 1
## 40282  818234 1
## 40283  818235 1
## 40284  818236 1
## 40285  818237 1
## 40286  818238 1
## 40287  818239 1
## 40288  818240 1
## 40289  818241 1
## 40290  818242 1
## 40291  818243 1
## 40292  818244 1
## 40293  818245 1
## 40294  818246 1
## 40295  818247 1
## 40296  818248 1
## 40297  818249 1
## 40298  818250 1
## 40299  818251 1
## 40300  818252 1
## 40301  818253 1
## 40302  818254 1
## 40303  818255 1
## 40304  818256 1
## 40305  818257 1
## 40306  818258 1
## 40307  818259 1
## 40308  818260 1
## 40309  818261 1
## 40310  818262 1
## 40311  818263 1
## 40312  818264 1
## 40313  818265 1
## 40314  818266 1
## 40315  818267 1
## 40316  818268 1
## 40317  818269 1
## 40318  818270 1
## 40319  818271 1
## 40320  818272 1
## 40321  818273 1
## 40322  818274 1
## 40323  818275 1
## 40324  818276 1
## 40325  818277 1
## 40326  818278 1
## 40327  818279 1
## 40328  818280 1
## 40329  818281 1
## 40330  818282 1
## 40331  818283 1
## 40332  818284 1
## 40333  818285 1
## 40334  818286 1
## 40335  818287 1
## 40336  818288 1
## 40337  818289 1
## 40338  818290 1
## 40339  818291 1
## 40340  818292 1
## 40341  818293 1
## 40342  818294 1
## 40343  818296 1
## 40344  818297 1
## 40345  818298 1
## 40346  818299 1
## 40347  818300 1
## 40348  818301 1
## 40349  818302 1
## 40350  818303 1
## 40351  818304 1
## 40352  818305 1
## 40353  818306 1
## 40354  818307 1
## 40355  818308 1
## 40356  818309 1
## 40357  818310 1
## 40358  818311 1
## 40359  818312 1
## 40360  818313 1
## 40361  818314 1
## 40362  818315 1
## 40363  818316 1
## 40364  818317 1
## 40365  818318 1
## 40366  818319 1
## 40367  818320 1
## 40368  818321 1
## 40369  818322 1
## 40370  818323 1
## 40371  818324 1
## 40372  818325 1
## 40373  818326 1
## 40374  818327 1
## 40375  818328 1
## 40376  818329 1
## 40377  818330 1
## 40378  818331 1
## 40379  818332 1
## 40380  818333 1
## 40381  818334 1
## 40382  818335 1
## 40383  818336 1
## 40384  818337 1
## 40385  818339 1
## 40386  818340 1
## 40387  818341 1
## 40388  818342 1
## 40389  818343 1
## 40390  818344 1
## 40391  818345 1
## 40392  818346 1
## 40393  818347 1
## 40394  818348 1
## 40395  818349 1
## 40396  818350 1
## 40397  818351 1
## 40398  818352 1
## 40399  818353 1
## 40400  818354 1
## 40401  818355 1
## 40402  818356 1
## 40403  818357 1
## 40404  818358 1
## 40405  818359 1
## 40406  818360 1
## 40407  818361 1
## 40408  818362 1
## 40409  818363 1
## 40410  818364 1
## 40411  818365 1
## 40412  818366 1
## 40413  818367 1
## 40414  818368 1
## 40415  818369 1
## 40416  818370 1
## 40417  818371 1
## 40418  818372 1
## 40419  818373 1
## 40420  818374 1
## 40421  818375 1
## 40422  818376 1
## 40423  818377 1
## 40424  818378 1
## 40425  818379 1
## 40426  818380 1
## 40427  818381 1
## 40428  818382 1
## 40429  818383 1
## 40430  818384 1
## 40431  818385 1
## 40432  818386 1
## 40433  818387 1
## 40434  818388 1
## 40435  818389 1
## 40436  818390 1
## 40437  818391 1
## 40438  818392 1
## 40439  818393 1
## 40440  818394 1
## 40441  818395 1
## 40442  818396 1
## 40443  818397 1
## 40444  818398 1
## 40445  818399 1
## 40446  818400 1
## 40447  818401 1
## 40448  818402 1
## 40449  818403 1
## 40450  818404 1
## 40451  818405 1
## 40452  818406 1
## 40453  818407 1
## 40454  818408 1
## 40455  818409 1
## 40456  818410 1
## 40457  818411 1
## 40458  818412 1
## 40459  818414 1
## 40460  818415 1
## 40461  818416 1
## 40462  818417 1
## 40463  818418 1
## 40464  818419 1
## 40465  818420 1
## 40466  818421 1
## 40467  818422 1
## 40468  818423 1
## 40469  818424 1
## 40470  818425 1
## 40471  818426 1
## 40472  818427 1
## 40473  818428 1
## 40474  818429 1
## 40475  818430 1
## 40476  818431 1
## 40477  818432 1
## 40478  818433 1
## 40479  818434 1
## 40480  818435 1
## 40481  818436 1
## 40482  818437 1
## 40483  818438 1
## 40484  818439 1
## 40485  818440 1
## 40486  818441 1
## 40487  818442 1
## 40488  818443 1
## 40489  818444 1
## 40490  818445 1
## 40491  818446 1
## 40492  818447 1
## 40493  818448 1
## 40494  818449 1
## 40495  818450 1
## 40496  818451 1
## 40497  818452 1
## 40498  818453 1
## 40499  818454 1
## 40500  818455 1
## 40501  818456 1
## 40502  818457 1
## 40503  818458 1
## 40504  818459 1
## 40505  818460 1
## 40506  818461 1
## 40507  818462 1
## 40508  818463 1
## 40509  818464 1
## 40510  818465 1
## 40511  818466 1
## 40512  818467 1
## 40513  818468 1
## 40514  818469 1
## 40515  818470 1
## 40516  818471 1
## 40517  818472 1
## 40518  818473 1
## 40519  818474 1
## 40520  818475 1
## 40521  818476 1
## 40522  818477 1
## 40523  818478 1
## 40524  818479 1
## 40525  818480 1
## 40526  818481 1
## 40527  818482 1
## 40528  818483 1
## 40529  818484 1
## 40530  818485 1
## 40531  818486 1
## 40532  818487 1
## 40533  818488 1
## 40534  818489 1
## 40535  818490 1
## 40536  818491 1
## 40537  818492 1
## 40538  818493 1
## 40539  818494 1
## 40540  818495 1
## 40541  818496 1
## 40542  818497 1
## 40543  818498 1
## 40544  818499 1
## 40545  818500 1
## 40546  818501 1
## 40547  818502 1
## 40548  818503 1
## 40549  818504 1
## 40550  818505 1
## 40551  818506 1
## 40552  818507 1
## 40553  818508 1
## 40554  818509 1
## 40555  818510 1
## 40556  818511 1
## 40557  818512 1
## 40558  818513 1
## 40559  818514 1
## 40560  818515 1
## 40561  818516 1
## 40562  818517 1
## 40563  818519 1
## 40564  818520 1
## 40565  818521 1
## 40566  818522 1
## 40567  818523 1
## 40568  818524 1
## 40569  818525 1
## 40570  818526 1
## 40571  818527 1
## 40572  818528 1
## 40573  818529 1
## 40574  818530 1
## 40575  818531 1
## 40576  818532 1
## 40577  818533 1
## 40578  818534 1
## 40579  818535 1
## 40580  818536 1
## 40581  818537 1
## 40582  818538 1
## 40583  818539 1
## 40584  818540 1
## 40585  818541 1
## 40586  818542 1
## 40587  818543 1
## 40588  818544 1
## 40589  818545 1
## 40590  818546 1
## 40591  818547 1
## 40592  818548 1
## 40593  818549 1
## 40594  818550 1
## 40595  818551 1
## 40596  818552 1
## 40597  818553 1
## 40598  818554 1
## 40599  818555 1
## 40600  818556 1
## 40601  818557 1
## 40602  818558 1
## 40603  818560 1
## 40604  818561 1
## 40605  818562 1
## 40606  818563 1
## 40607  818564 1
## 40608  818565 1
## 40609  818566 1
## 40610  818567 1
## 40611  818568 1
## 40612  818569 1
## 40613  818570 1
## 40614  818571 1
## 40615  818572 1
## 40616  818573 1
## 40617  818574 1
## 40618  818575 1
## 40619  818576 1
## 40620  818577 1
## 40621  818578 1
## 40622  818579 1
## 40623  818580 1
## 40624  818581 1
## 40625  818582 1
## 40626  818583 1
## 40627  818584 1
## 40628  818585 1
## 40629  818586 1
## 40630  818587 1
## 40631  818588 1
## 40632  818589 1
## 40633  818590 1
## 40634  818591 1
## 40635  818592 1
## 40636  818593 1
## 40637  818594 1
## 40638  818595 1
## 40639  818596 1
## 40640  818597 1
## 40641  818598 1
## 40642  818599 1
## 40643  818600 1
## 40644  818601 1
## 40645  818602 1
## 40646  818603 1
## 40647  818604 1
## 40648  818605 1
## 40649  818606 1
## 40650  818607 1
## 40651  818608 1
## 40652  818609 1
## 40653  818610 1
## 40654  818611 1
## 40655  818612 1
## 40656  818613 1
## 40657  818614 1
## 40658  818615 1
## 40659  818616 1
## 40660  818617 1
## 40661  818618 1
## 40662  818619 1
## 40663  818620 1
## 40664  818621 1
## 40665  818622 1
## 40666  818623 1
## 40667  818624 1
## 40668  818625 1
## 40669  818626 1
## 40670  818627 1
## 40671  818628 1
## 40672  818629 1
## 40673  818630 1
## 40674  818631 1
## 40675  818632 1
## 40676  818633 1
## 40677  818634 1
## 40678  818635 1
## 40679  818636 1
## 40680  818637 1
## 40681  818638 1
## 40682  818639 1
## 40683  818640 1
## 40684  818641 1
## 40685  818642 1
## 40686  818643 1
## 40687  818644 1
## 40688  818645 1
## 40689  818646 1
## 40690  818647 1
## 40691  818649 1
## 40692  818650 1
## 40693  818651 1
## 40694  818652 1
## 40695  818653 1
## 40696  818654 1
## 40697  818655 1
## 40698  818656 1
## 40699  818657 1
## 40700  818658 1
## 40701  818659 1
## 40702  818660 1
## 40703  818661 1
## 40704  818662 1
## 40705  818663 1
## 40706  818664 1
## 40707  818665 1
## 40708  818666 1
## 40709  818667 1
## 40710  818668 1
## 40711  818669 1
## 40712  818670 1
## 40713  818671 1
## 40714  818672 1
## 40715  818673 1
## 40716  818674 1
## 40717  818675 1
## 40718  818676 1
## 40719  818677 1
## 40720  818678 1
## 40721  818679 1
## 40722  818680 1
## 40723  818681 1
## 40724  818682 1
## 40725  818683 1
## 40726  818684 1
## 40727  818685 1
## 40728  818686 1
## 40729  818687 1
## 40730  818688 1
## 40731  818689 1
## 40732  818690 1
## 40733  818691 1
## 40734  818692 1
## 40735  818693 1
## 40736  818694 1
## 40737  818695 1
## 40738  818696 1
## 40739  818697 1
## 40740  818698 1
## 40741  818699 1
## 40742  818700 1
## 40743  818701 1
## 40744  818702 1
## 40745  818703 1
## 40746  818704 1
## 40747  818705 1
## 40748  818706 1
## 40749  818707 1
## 40750  818708 1
## 40751  818709 1
## 40752  818710 1
## 40753  818711 1
## 40754  818712 1
## 40755  818713 1
## 40756  818714 1
## 40757  818715 1
## 40758  818716 1
## 40759  818717 1
## 40760  818718 1
## 40761  818719 1
## 40762  818720 1
## 40763  818721 1
## 40764  818722 1
## 40765  818723 1
## 40766  818724 1
## 40767  818725 1
## 40768  818726 1
## 40769  818727 1
## 40770  818728 1
## 40771  818729 1
## 40772  818730 1
## 40773  818731 1
## 40774  818732 1
## 40775  818733 1
## 40776  818734 1
## 40777  818735 1
## 40778  818736 1
## 40779  818737 1
## 40780  818738 1
## 40781  818739 1
## 40782  818740 1
## 40783  818741 1
## 40784  818742 1
## 40785  818743 1
## 40786  818744 1
## 40787  818745 1
## 40788  818746 1
## 40789  818747 1
## 40790  818748 1
## 40791  818749 1
## 40792  818750 1
## 40793  818751 1
## 40794  818752 1
## 40795  818753 1
## 40796  818754 1
## 40797  818755 1
## 40798  818756 1
## 40799  818757 1
## 40800  818758 1
## 40801  818759 1
## 40802  818760 1
## 40803  818761 1
## 40804  818762 1
## 40805  818763 1
## 40806  818764 1
## 40807  818765 1
## 40808  818766 1
## 40809  818767 1
## 40810  818768 1
## 40811  818769 1
## 40812  818770 1
## 40813  818771 1
## 40814  818773 1
## 40815  818774 1
## 40816  818775 1
## 40817  818776 1
## 40818  818777 1
## 40819  818778 1
## 40820  818779 1
## 40821  818780 1
## 40822  818781 1
## 40823  818782 1
## 40824  818783 1
## 40825  818784 1
## 40826  818785 1
## 40827  818786 1
## 40828  818787 1
## 40829  818788 1
## 40830  818789 1
## 40831  818790 1
## 40832  818791 1
## 40833  818792 1
## 40834  818793 1
## 40835  818794 1
## 40836  818795 1
## 40837  818796 1
## 40838  818797 1
## 40839  818798 1
## 40840  818799 1
## 40841  818800 1
## 40842  818801 1
## 40843  818802 1
## 40844  818803 1
## 40845  818804 1
## 40846  818805 1
## 40847  818806 1
## 40848  818807 1
## 40849  818808 1
## 40850  818809 1
## 40851  818810 1
## 40852  818811 1
## 40853  818812 1
## 40854  818813 1
## 40855  818814 1
## 40856  818815 1
## 40857  818816 1
## 40858  818817 1
## 40859  818818 1
## 40860  818819 1
## 40861  818820 1
## 40862  818821 1
## 40863  818822 1
## 40864  818823 1
## 40865  818824 1
## 40866  818825 1
## 40867  818826 1
## 40868  818827 1
## 40869  818828 1
## 40870  818829 1
## 40871  818830 1
## 40872  818831 1
## 40873  818832 1
## 40874  818833 1
## 40875  818834 1
## 40876  818835 1
## 40877  818836 1
## 40878  818837 1
## 40879  818838 1
## 40880  818839 1
## 40881  818840 1
## 40882  818841 1
## 40883  818842 1
## 40884  818843 1
## 40885  818844 1
## 40886  818845 1
## 40887  818846 1
## 40888  818847 1
## 40889  818848 1
## 40890  818849 1
## 40891  818850 1
## 40892  818851 1
## 40893  818852 1
## 40894  818853 1
## 40895  818854 1
## 40896  818855 1
## 40897  818856 1
## 40898  818857 1
## 40899  818858 1
## 40900  818859 1
## 40901  818860 1
## 40902  818861 1
## 40903  818862 1
## 40904  818863 1
## 40905  818864 1
## 40906  818865 1
## 40907  818866 1
## 40908  818867 1
## 40909  818868 1
## 40910  818869 1
## 40911  818870 1
## 40912  818871 1
## 40913  818872 1
## 40914  818873 1
## 40915  818875 1
## 40916  818876 1
## 40917  818877 1
## 40918  818878 1
## 40919  818879 1
## 40920  818880 1
## 40921  818881 1
## 40922  818882 1
## 40923  818883 1
## 40924  818884 1
## 40925  818885 1
## 40926  818886 1
## 40927  818887 1
## 40928  818888 1
## 40929  818889 1
## 40930  818890 1
## 40931  818891 1
## 40932  818892 1
## 40933  818893 1
## 40934  818894 1
## 40935  818895 1
## 40936  818896 1
## 40937  818897 1
## 40938  818898 1
## 40939  818899 1
## 40940  818900 1
## 40941  818901 1
## 40942  818902 1
## 40943  818903 1
## 40944  818904 1
## 40945  818905 1
## 40946  818906 1
## 40947  818907 1
## 40948  818908 1
## 40949  818909 1
## 40950  818910 1
## 40951  818911 1
## 40952  818912 1
## 40953  818913 1
## 40954  818914 1
## 40955  818915 1
## 40956  818916 1
## 40957  818917 1
## 40958  818918 1
## 40959  818919 1
## 40960  818920 1
## 40961  818921 1
## 40962  818922 1
## 40963  818923 1
## 40964  818924 1
## 40965  818925 1
## 40966  818926 1
## 40967  818927 1
## 40968  818928 1
## 40969  818929 1
## 40970  818930 1
## 40971  818931 1
## 40972  818932 1
## 40973  818933 1
## 40974  818934 1
## 40975  818935 1
## 40976  818936 1
## 40977  818937 1
## 40978  818938 1
## 40979  818939 1
## 40980  818940 1
## 40981  818941 1
## 40982  818942 1
## 40983  818943 1
## 40984  818944 1
## 40985  818945 1
## 40986  818946 1
## 40987  818947 1
## 40988  818948 1
## 40989  818949 1
## 40990  818950 1
## 40991  818951 1
## 40992  818952 1
## 40993  818953 1
## 40994  818954 1
## 40995  818955 1
## 40996  818956 1
## 40997  818957 1
## 40998  818958 1
## 40999  818959 1
## 41000  818960 1
## 41001  818961 1
## 41002  818962 1
## 41003  818963 1
## 41004  818964 1
## 41005  818965 1
## 41006  818966 1
## 41007  818967 1
## 41008  818969 1
## 41009  818970 1
## 41010  818971 1
## 41011  818972 1
## 41012  818973 1
## 41013  818974 1
## 41014  818975 1
## 41015  818976 1
## 41016  818977 1
## 41017  818978 1
## 41018  818979 1
## 41019  818980 1
## 41020  818981 1
## 41021  818982 1
## 41022  818983 1
## 41023  818984 1
## 41024  818985 1
## 41025  818986 1
## 41026  818987 1
## 41027  818988 1
## 41028  818989 1
## 41029  818990 1
## 41030  818991 1
## 41031  818992 1
## 41032  818993 1
## 41033  818994 1
## 41034  818995 1
## 41035  818996 1
## 41036  818997 1
## 41037  818998 1
## 41038  818999 1
## 41039  819000 1
## 41040  819001 1
## 41041  819003 1
## 41042  819004 1
## 41043  819005 1
## 41044  819006 1
## 41045  819007 1
## 41046  819008 1
## 41047  819009 1
## 41048  819010 1
## 41049  819011 1
## 41050  819012 1
## 41051  819013 1
## 41052  819014 1
## 41053  819015 1
## 41054  819016 1
## 41055  819017 1
## 41056  819019 1
## 41057  819020 1
## 41058  819021 1
## 41059  819022 1
## 41060  819023 1
## 41061  819024 1
## 41062  819025 1
## 41063  819026 1
## 41064  819027 1
## 41065  819028 1
## 41066  819029 1
## 41067  819030 1
## 41068  819031 1
## 41069  819032 1
## 41070  819033 1
## 41071  819034 1
## 41072  819035 1
## 41073  819036 1
## 41074  819037 1
## 41075  819038 1
## 41076  819039 1
## 41077  819040 1
## 41078  819041 1
## 41079  819042 1
## 41080  819043 1
## 41081  819044 1
## 41082  819045 1
## 41083  819046 1
## 41084  819047 1
## 41085  819048 1
## 41086  819049 1
## 41087  819050 1
## 41088  819051 1
## 41089  819052 1
## 41090  819053 1
## 41091  819054 1
## 41092  819055 1
## 41093  819056 1
## 41094  819057 1
## 41095  819058 1
## 41096  819059 1
## 41097  819060 1
## 41098  819061 1
## 41099  819062 1
## 41100  819063 1
## 41101  819064 1
## 41102  819065 1
## 41103  819066 1
## 41104  819067 1
## 41105  819068 1
## 41106  819069 1
## 41107  819070 1
## 41108  819071 1
## 41109  819072 1
## 41110  819073 1
## 41111  819074 1
## 41112  819075 1
## 41113  819076 1
## 41114  819077 1
## 41115  819078 1
## 41116  819079 1
## 41117  819080 1
## 41118  819081 1
## 41119  819082 1
## 41120  819083 1
## 41121  819084 1
## 41122  819085 1
## 41123  819086 1
## 41124  819087 1
## 41125  819088 1
## 41126  819089 1
## 41127  819090 1
## 41128  819091 1
## 41129  819092 1
## 41130  819093 1
## 41131  819094 1
## 41132  819095 1
## 41133  819096 1
## 41134  819097 1
## 41135  819098 1
## 41136  819099 1
## 41137  819100 1
## 41138  819101 1
## 41139  819102 1
## 41140  819103 1
## 41141  819104 1
## 41142  819105 1
## 41143  819106 1
## 41144  819107 1
## 41145  819108 1
## 41146  819109 1
## 41147  819110 1
## 41148  819111 1
## 41149  819112 1
## 41150  819113 1
## 41151  819114 1
## 41152  819115 1
## 41153  819116 1
## 41154  819117 1
## 41155  819118 1
## 41156  819119 1
## 41157  819120 1
## 41158  819121 1
## 41159  819122 1
## 41160  819123 1
## 41161  819124 1
## 41162  819125 1
## 41163  819126 1
## 41164  819127 1
## 41165  819128 1
## 41166  819129 1
## 41167  819130 1
## 41168  819131 1
## 41169  819132 1
## 41170  819133 1
## 41171  819135 1
## 41172  819136 1
## 41173  819138 1
## 41174  819139 1
## 41175  819140 1
## 41176  819141 1
## 41177  819142 1
## 41178  819143 1
## 41179  819144 1
## 41180  819145 1
## 41181  819146 1
## 41182  819147 1
## 41183  819148 1
## 41184  819149 1
## 41185  819150 1
## 41186  819151 1
## 41187  819152 1
## 41188  819153 1
## 41189  819154 1
## 41190  819155 1
## 41191  819156 1
## 41192  819157 1
## 41193  819158 1
## 41194  819159 1
## 41195  819160 1
## 41196  819161 1
## 41197  819162 1
## 41198  819163 1
## 41199  819164 1
## 41200  819165 1
## 41201  819166 1
## 41202  819167 1
## 41203  819168 1
## 41204  819169 1
## 41205  819170 1
## 41206  819171 1
## 41207  819172 1
## 41208  819173 1
## 41209  819174 1
## 41210  819175 1
## 41211  819176 1
## 41212  819177 1
## 41213  819178 1
## 41214  819179 1
## 41215  819180 1
## 41216  819181 1
## 41217  819182 1
## 41218  819183 1
## 41219  819184 1
## 41220  819185 1
## 41221  819186 1
## 41222  819187 1
## 41223  819188 1
## 41224  819189 1
## 41225  819190 1
## 41226  819191 1
## 41227  819192 1
## 41228  819193 1
## 41229  819194 1
## 41230  819195 1
## 41231  819196 1
## 41232  819197 1
## 41233  819198 1
## 41234  819199 1
## 41235  819200 1
## 41236  819201 1
## 41237  819202 1
## 41238  819203 1
## 41239  819204 1
## 41240  819205 1
## 41241  819206 1
## 41242  819207 1
## 41243  819208 1
## 41244  819209 1
## 41245  819210 1
## 41246  819211 1
## 41247  819212 1
## 41248  819213 1
## 41249  819214 1
## 41250  819215 1
## 41251  819216 1
## 41252  819217 1
## 41253  819218 1
## 41254  819219 1
## 41255  819220 1
## 41256  819221 1
## 41257  819222 1
## 41258  819223 1
## 41259  819224 1
## 41260  819225 1
## 41261  819226 1
## 41262  819227 1
## 41263  819228 1
## 41264  819229 1
## 41265  819230 1
## 41266  819231 1
## 41267  819232 1
## 41268  819233 1
## 41269  819234 1
## 41270  819235 1
## 41271  819236 1
## 41272  819237 1
## 41273  819238 1
## 41274  819239 1
## 41275  819240 1
## 41276  819241 1
## 41277  819242 1
## 41278  819243 1
## 41279  819244 1
## 41280  819245 1
## 41281  819246 1
## 41282  819247 1
## 41283  819248 1
## 41284  819249 1
## 41285  819250 1
## 41286  819251 1
## 41287  819252 1
## 41288  819253 1
## 41289  819254 1
## 41290  819255 1
## 41291  819256 1
## 41292  819257 1
## 41293  819258 1
## 41294  819259 1
## 41295  819260 1
## 41296  819261 1
## 41297  819262 1
## 41298  819264 1
## 41299  819265 1
## 41300  819266 1
## 41301  819267 1
## 41302  819268 1
## 41303  819269 1
## 41304  819271 1
## 41305  819272 1
## 41306  819273 1
## 41307  819274 1
## 41308  819275 1
## 41309  819276 1
## 41310  819277 1
## 41311  819278 1
## 41312  819279 1
## 41313  819280 1
## 41314  819281 1
## 41315  819282 1
## 41316  819283 1
## 41317  819284 1
## 41318  819285 1
## 41319  819286 1
## 41320  819287 1
## 41321  819288 1
## 41322  819289 1
## 41323  819290 1
## 41324  819291 1
## 41325  819292 1
## 41326  819293 1
## 41327  819294 1
## 41328  819295 1
## 41329  819296 1
## 41330  819297 1
## 41331  819298 1
## 41332  819299 1
## 41333  819300 1
## 41334  819301 1
## 41335  819302 1
## 41336  819303 1
## 41337  819304 1
## 41338  819305 1
## 41339  819306 1
## 41340  819307 1
## 41341  819308 1
## 41342  819309 1
## 41343  819310 1
## 41344  819311 1
## 41345  819312 1
## 41346  819313 1
## 41347  819314 1
## 41348  819315 1
## 41349  819316 1
## 41350  819317 1
## 41351  819318 1
## 41352  819319 1
## 41353  819320 1
## 41354  819321 1
## 41355  819322 1
## 41356  819323 1
## 41357  819324 1
## 41358  819325 1
## 41359  819326 1
## 41360  819327 1
## 41361  819328 1
## 41362  819329 1
## 41363  819330 1
## 41364  819331 1
## 41365  819332 1
## 41366  819334 1
## 41367  819335 1
## 41368  819336 1
## 41369  819337 1
## 41370  819338 1
## 41371  819339 1
## 41372  819340 1
## 41373  819341 1
## 41374  819342 1
## 41375  819343 1
## 41376  819344 1
## 41377  819345 1
## 41378  819346 1
## 41379  819347 1
## 41380  819348 1
## 41381  819349 1
## 41382  819350 1
## 41383  819351 1
## 41384  819352 1
## 41385  819353 1
## 41386  819354 1
## 41387  819355 1
## 41388  819356 1
## 41389  819357 1
## 41390  819358 1
## 41391  819359 1
## 41392  819360 1
## 41393  819361 1
## 41394  819362 1
## 41395  819363 1
## 41396  819364 1
## 41397  819365 1
## 41398  819366 1
## 41399  819367 1
## 41400  819368 1
## 41401  819369 1
## 41402  819370 1
## 41403  819371 1
## 41404  819372 1
## 41405  819373 1
## 41406  819374 1
## 41407  819375 1
## 41408  819376 1
## 41409  819377 1
## 41410  819378 1
## 41411  819379 1
## 41412  819380 1
## 41413  819381 1
## 41414  819382 1
## 41415  819383 1
## 41416  819384 1
## 41417  819385 1
## 41418  819386 1
## 41419  819387 1
## 41420  819388 1
## 41421  819389 1
## 41422  819390 1
## 41423  819391 1
## 41424  819392 1
## 41425  819393 1
## 41426  819394 1
## 41427  819395 1
## 41428  819396 1
## 41429  819397 1
## 41430  819398 1
## 41431  819399 1
## 41432  819400 1
## 41433  819401 1
## 41434  819402 1
## 41435  819403 1
## 41436  819404 1
## 41437  819405 1
## 41438  819406 1
## 41439  819407 1
## 41440  819408 1
## 41441  819409 1
## 41442  819410 1
## 41443  819411 1
## 41444  819412 1
## 41445  819413 1
## 41446  819414 1
## 41447  819415 1
## 41448  819416 1
## 41449  819417 1
## 41450  819418 1
## 41451  819419 1
## 41452  819420 1
## 41453  819421 1
## 41454  819422 1
## 41455  819423 1
## 41456  819424 1
## 41457  819425 1
## 41458  819426 1
## 41459  819427 1
## 41460  819428 1
## 41461  819429 1
## 41462  819430 1
## 41463  819431 1
## 41464  819432 1
## 41465  819433 1
## 41466  819434 1
## 41467  819435 1
## 41468  819436 1
## 41469  819437 1
## 41470  819438 1
## 41471  819439 1
## 41472  819440 1
## 41473  819441 1
## 41474  819442 1
## 41475  819443 1
## 41476  819444 1
## 41477  819445 1
## 41478  819446 1
## 41479  819447 1
## 41480  819448 1
## 41481  819449 1
## 41482  819450 1
## 41483  819451 1
## 41484  819452 1
## 41485  819453 1
## 41486  819454 1
## 41487  819455 1
## 41488  819456 1
## 41489  819457 1
## 41490  819458 1
## 41491  819459 1
## 41492  819460 1
## 41493  819461 1
## 41494  819462 1
## 41495  819463 1
## 41496  819464 1
## 41497  819465 1
## 41498  819466 1
## 41499  819467 1
## 41500  819468 1
## 41501  819469 1
## 41502  819470 1
## 41503  819471 1
## 41504  819472 1
## 41505  819473 1
## 41506  819474 1
## 41507  819475 1
## 41508  819476 1
## 41509  819477 1
## 41510  819478 1
## 41511  819479 1
## 41512  819480 1
## 41513  819481 1
## 41514  819482 1
## 41515  819484 1
## 41516  819485 1
## 41517  819486 1
## 41518  819487 1
## 41519  819488 1
## 41520  819489 1
## 41521  819490 1
## 41522  819491 1
## 41523  819492 1
## 41524  819493 1
## 41525  819494 1
## 41526  819495 1
## 41527  819496 1
## 41528  819497 1
## 41529  819498 1
## 41530  819499 1
## 41531  819500 1
## 41532  819501 1
## 41533  819502 1
## 41534  819503 1
## 41535  819504 1
## 41536  819505 1
## 41537  819506 1
## 41538  819507 1
## 41539  819508 1
## 41540  819509 1
## 41541  819510 1
## 41542  819511 1
## 41543  819512 1
## 41544  819513 1
## 41545  819514 1
## 41546  819515 1
## 41547  819516 1
## 41548  819517 1
## 41549  819518 1
## 41550  819519 1
## 41551  819520 1
## 41552  819521 1
## 41553  819522 1
## 41554  819523 1
## 41555  819525 1
## 41556  819526 1
## 41557  819527 1
## 41558  819528 1
## 41559  819529 1
## 41560  819530 1
## 41561  819531 1
## 41562  819532 1
## 41563  819533 1
## 41564  819534 1
## 41565  819535 1
## 41566  819536 1
## 41567  819537 1
## 41568  819538 1
## 41569  819539 1
## 41570  819540 1
## 41571  819541 1
## 41572  819542 1
## 41573  819543 1
## 41574  819544 1
## 41575  819545 1
## 41576  819546 1
## 41577  819547 1
## 41578  819549 1
## 41579  819550 1
## 41580  819551 1
## 41581  819552 1
## 41582  819553 1
## 41583  819554 1
## 41584  819555 1
## 41585  819556 1
## 41586  819557 1
## 41587  819558 1
## 41588  819559 1
## 41589  819560 1
## 41590  819561 1
## 41591  819562 1
## 41592  819563 1
## 41593  819564 1
## 41594  819565 1
## 41595  819566 1
## 41596  819567 1
## 41597  819568 1
## 41598  819569 1
## 41599  819570 1
## 41600  819571 1
## 41601  819572 1
## 41602  819573 1
## 41603  819574 1
## 41604  819575 1
## 41605  819576 1
## 41606  819577 1
## 41607  819578 1
## 41608  819579 1
## 41609  819580 1
## 41610  819581 1
## 41611  819582 1
## 41612  819583 1
## 41613  819584 1
## 41614  819585 1
## 41615  819586 1
## 41616  819587 1
## 41617  819588 1
## 41618  819589 1
## 41619  819590 1
## 41620  819591 1
## 41621  819592 1
## 41622  819593 1
## 41623  819594 1
## 41624  819595 1
## 41625  819596 1
## 41626  819597 1
## 41627  819598 1
## 41628  819599 1
## 41629  819600 1
## 41630  819601 1
## 41631  819602 1
## 41632  819603 1
## 41633  819604 1
## 41634  819605 1
## 41635  819606 1
## 41636  819607 1
## 41637  819608 1
## 41638  819609 1
## 41639  819610 1
## 41640  819611 1
## 41641  819612 1
## 41642  819613 1
## 41643  819614 1
## 41644  819615 1
## 41645  819616 1
## 41646  819617 1
## 41647  819618 1
## 41648  819619 1
## 41649  819620 1
## 41650  819621 1
## 41651  819622 1
## 41652  819623 1
## 41653  819624 1
## 41654  819625 1
## 41655  819626 1
## 41656  819627 1
## 41657  819628 1
## 41658  819629 1
## 41659  819630 1
## 41660  819631 1
## 41661  819632 1
## 41662  819633 1
## 41663  819634 1
## 41664  819635 1
## 41665  819636 1
## 41666  819637 1
## 41667  819638 1
## 41668  819639 1
## 41669  819640 1
## 41670  819641 1
## 41671  819642 1
## 41672  819643 1
## 41673  819644 1
## 41674  819645 1
## 41675  819646 1
## 41676  819647 1
## 41677  819648 1
## 41678  819649 1
## 41679  819650 1
## 41680  819651 1
## 41681  819652 1
## 41682  819653 1
## 41683  819654 1
## 41684  819655 1
## 41685  819656 1
## 41686  819657 1
## 41687  819658 1
## 41688  819659 1
## 41689  819660 1
## 41690  819661 1
## 41691  819662 1
## 41692  819663 1
## 41693  819664 1
## 41694  819665 1
## 41695  819666 1
## 41696  819667 1
## 41697  819668 1
## 41698  819669 1
## 41699  819670 1
## 41700  819671 1
## 41701  819672 1
## 41702  819673 1
## 41703  819674 1
## 41704  819675 1
## 41705  819676 1
## 41706  819677 1
## 41707  819678 1
## 41708  819679 1
## 41709  819680 1
## 41710  819681 1
## 41711  819682 1
## 41712  819683 1
## 41713  819684 1
## 41714  819685 1
## 41715  819686 1
## 41716  819687 1
## 41717  819688 1
## 41718  819689 1
## 41719  819690 1
## 41720  819691 1
## 41721  819692 1
## 41722  819693 1
## 41723  819694 1
## 41724  819695 1
## 41725  819696 1
## 41726  819697 1
## 41727  819698 1
## 41728  819699 1
## 41729  819700 1
## 41730  819701 1
## 41731  819702 1
## 41732  819703 1
## 41733  819704 1
## 41734  819705 1
## 41735  819706 1
## 41736  819707 1
## 41737  819708 1
## 41738  819709 1
## 41739  819710 1
## 41740  819711 1
## 41741  819712 1
## 41742  819713 1
## 41743  819714 1
## 41744  819715 1
## 41745  819716 1
## 41746  819717 1
## 41747  819718 1
## 41748  819719 1
## 41749  819720 1
## 41750  819721 1
## 41751  819722 1
## 41752  819723 1
## 41753  819724 1
## 41754  819725 1
## 41755  819726 1
## 41756  819727 1
## 41757  819728 1
## 41758  819729 1
## 41759  819730 1
## 41760  819731 1
## 41761  819732 1
## 41762  819733 1
## 41763  819734 1
## 41764  819735 1
## 41765  819736 1
## 41766  819737 1
## 41767  819739 1
## 41768  819740 1
## 41769  819741 1
## 41770  819742 1
## 41771  819743 1
## 41772  819744 1
## 41773  819745 1
## 41774  819746 1
## 41775  819747 1
## 41776  819748 1
## 41777  819749 1
## 41778  819750 1
## 41779  819751 1
## 41780  819752 1
## 41781  819753 1
## 41782  819754 1
## 41783  819755 1
## 41784  819756 1
## 41785  819757 1
## 41786  819758 1
## 41787  819759 1
## 41788  819760 1
## 41789  819761 1
## 41790  819762 1
## 41791  819763 1
## 41792  819764 1
## 41793  819765 1
## 41794  819766 1
## 41795  819767 1
## 41796  819768 1
## 41797  819769 1
## 41798  819770 1
## 41799  819771 1
## 41800  819772 1
## 41801  819773 1
## 41802  819774 1
## 41803  819775 1
## 41804  819776 1
## 41805  819777 1
## 41806  819778 1
## 41807  819779 1
## 41808  819780 1
## 41809  819781 1
## 41810  819782 1
## 41811  819783 1
## 41812  819784 1
## 41813  819785 1
## 41814  819786 1
## 41815  819787 1
## 41816  819788 1
## 41817  819789 1
## 41818  819791 1
## 41819  819792 1
## 41820  819793 1
## 41821  819794 1
## 41822  819795 1
## 41823  819796 1
## 41824  819797 1
## 41825  819798 1
## 41826  819800 1
## 41827  819801 1
## 41828  819802 1
## 41829  819803 1
## 41830  819804 1
## 41831  819805 1
## 41832  819806 1
## 41833  819807 1
## 41834  819808 1
## 41835  819809 1
## 41836  819810 1
## 41837  819811 1
## 41838  819812 1
## 41839  819813 1
## 41840  819814 1
## 41841  819815 1
## 41842  819816 1
## 41843  819817 1
## 41844  819818 1
## 41845  819819 1
## 41846  819820 1
## 41847  819821 1
## 41848  819822 1
## 41849  819823 1
## 41850  819824 1
## 41851  819825 1
## 41852  819826 1
## 41853  819827 1
## 41854  819828 1
## 41855  819829 1
## 41856  819830 1
## 41857  819831 1
## 41858  819832 1
## 41859  819833 1
## 41860  819834 1
## 41861  819835 1
## 41862  819836 1
## 41863  819837 1
## 41864  819838 1
## 41865  819839 1
## 41866  819840 1
## 41867  819841 1
## 41868  819842 1
## 41869  819844 1
## 41870  819845 1
## 41871  819846 1
## 41872  819847 1
## 41873  819848 1
## 41874  819849 1
## 41875  819850 1
## 41876  819851 1
## 41877  819852 1
## 41878  819853 1
## 41879  819854 1
## 41880  819855 1
## 41881  819856 1
## 41882  819857 1
## 41883  819858 1
## 41884  819859 1
## 41885  819860 1
## 41886  819862 1
## 41887  819863 1
## 41888  819864 1
## 41889  819865 1
## 41890  819866 1
## 41891  819867 1
## 41892  819868 1
## 41893  819869 1
## 41894  819870 1
## 41895  819871 1
## 41896  819872 1
## 41897  819873 1
## 41898  819874 1
## 41899  819875 1
## 41900  819876 1
## 41901  819877 1
## 41902  819878 1
## 41903  819879 1
## 41904  819880 1
## 41905  819881 1
## 41906  819882 1
## 41907  819883 1
## 41908  819884 1
## 41909  819885 1
## 41910  819886 1
## 41911  819887 1
## 41912  819888 1
## 41913  819889 1
## 41914  819890 1
## 41915  819891 1
## 41916  819892 1
## 41917  819893 1
## 41918  819895 1
## 41919  819896 1
## 41920  819897 1
## 41921  819898 1
## 41922  819899 1
## 41923  819900 1
## 41924  819901 1
## 41925  819902 1
## 41926  819903 1
## 41927  819904 1
## 41928  819905 1
## 41929  819906 1
## 41930  819907 1
## 41931  819908 1
## 41932  819909 1
## 41933  819910 1
## 41934  819911 1
## 41935  819912 1
## 41936  819913 1
## 41937  819914 1
## 41938  819915 1
## 41939  819916 1
## 41940  819917 1
## 41941  819918 1
## 41942  819919 1
## 41943  819920 1
## 41944  819921 1
## 41945  819922 1
## 41946  819923 1
## 41947  819924 1
## 41948  819925 1
## 41949  819926 1
## 41950  819927 1
## 41951  819929 1
## 41952  819930 1
## 41953  819931 1
## 41954  819932 1
## 41955  819933 1
## 41956  819934 1
## 41957  819935 1
## 41958  819936 1
## 41959  819937 1
## 41960  819938 1
## 41961  819939 1
## 41962  819940 1
## 41963  819941 1
## 41964  819942 1
## 41965  819943 1
## 41966  819944 1
## 41967  819945 1
## 41968  819946 1
## 41969  819947 1
## 41970  819948 1
## 41971  819949 1
## 41972  819950 1
## 41973  819951 1
## 41974  819952 1
## 41975  819953 1
## 41976  819954 1
## 41977  819955 1
## 41978  819956 1
## 41979  819957 1
## 41980  819958 1
## 41981  819959 1
## 41982  819960 1
## 41983  819961 1
## 41984  819962 1
## 41985  819963 1
## 41986  819964 1
## 41987  819965 1
## 41988  819966 1
## 41989  819967 1
## 41990  819968 1
## 41991  819969 1
## 41992  819970 1
## 41993  819971 1
## 41994  819972 1
## 41995  819973 1
## 41996  819974 1
## 41997  819975 1
## 41998  819976 1
## 41999  819977 1
## 42000  819978 1
## 42001  819979 1
## 42002  819980 1
## 42003  819981 1
## 42004  819982 1
## 42005  819983 1
## 42006  819984 1
## 42007  819985 1
## 42008  819986 1
## 42009  819987 1
## 42010  819988 1
## 42011  819989 1
## 42012  819990 1
## 42013  819991 1
## 42014  819992 1
## 42015  819993 1
## 42016  819994 1
## 42017  819995 1
## 42018  819996 1
## 42019  819997 1
## 42020  819998 1
## 42021  819999 1
## 42022  820000 1
## 42023  820001 1
## 42024  820002 1
## 42025  820003 1
## 42026  820004 1
## 42027  820005 1
## 42028  820006 1
## 42029  820007 1
## 42030  820008 1
## 42031  820009 1
## 42032  820010 1
## 42033  820011 1
## 42034  820012 1
## 42035  820013 1
## 42036  820014 1
## 42037  820015 1
## 42038  820016 1
## 42039  820017 1
## 42040  820018 1
## 42041  820019 1
## 42042  820020 1
## 42043  820021 1
## 42044  820022 1
## 42045  820023 1
## 42046  820024 1
## 42047  820025 1
## 42048  820026 1
## 42049  820027 1
## 42050  820028 1
## 42051  820029 1
## 42052  820030 1
## 42053  820031 1
## 42054  820032 1
## 42055  820033 1
## 42056  820034 1
## 42057  820035 1
## 42058  820036 1
## 42059  820037 1
## 42060  820038 1
## 42061  820039 1
## 42062  820040 1
## 42063  820041 1
## 42064  820042 1
## 42065  820043 1
## 42066  820044 1
## 42067  820045 1
## 42068  820046 1
## 42069  820047 1
## 42070  820048 1
## 42071  820049 1
## 42072  820050 1
## 42073  820051 1
## 42074  820052 1
## 42075  820053 1
## 42076  820054 1
## 42077  820055 1
## 42078  820056 1
## 42079  820057 1
## 42080  820058 1
## 42081  820059 1
## 42082  820060 1
## 42083  820061 1
## 42084  820062 1
## 42085  820064 1
## 42086  820065 1
## 42087  820066 1
## 42088  820067 1
## 42089  820068 1
## 42090  820069 1
## 42091  820070 1
## 42092  820071 1
## 42093  820072 1
## 42094  820073 1
## 42095  820074 1
## 42096  820075 1
## 42097  820077 1
## 42098  820078 1
## 42099  820079 1
## 42100  820080 1
## 42101  820081 1
## 42102  820082 1
## 42103  820083 1
## 42104  820084 1
## 42105  820085 1
## 42106  820086 1
## 42107  820087 1
## 42108  820088 1
## 42109  820089 1
## 42110  820090 1
## 42111  820091 1
## 42112  820092 1
## 42113  820093 1
## 42114  820094 1
## 42115  820095 1
## 42116  820096 1
## 42117  820097 1
## 42118  820098 1
## 42119  820099 1
## 42120  820100 1
## 42121  820101 1
## 42122  820102 1
## 42123  820103 1
## 42124  820104 1
## 42125  820105 1
## 42126  820106 1
## 42127  820107 1
## 42128  820108 1
## 42129  820109 1
## 42130  820110 1
## 42131  820111 1
## 42132  820112 1
## 42133  820113 1
## 42134  820114 1
## 42135  820115 1
## 42136  820116 1
## 42137  820117 1
## 42138  820118 1
## 42139  820119 1
## 42140  820120 1
## 42141  820121 1
## 42142  820122 1
## 42143  820123 1
## 42144  820124 1
## 42145  820125 1
## 42146  820126 1
## 42147  820127 1
## 42148  820128 1
## 42149  820129 1
## 42150  820130 1
## 42151  820131 1
## 42152  820132 1
## 42153  820133 1
## 42154  820134 1
## 42155  820135 1
## 42156  820136 1
## 42157  820137 1
## 42158  820138 1
## 42159  820139 1
## 42160  820141 1
## 42161  820142 1
## 42162  820143 1
## 42163  820144 1
## 42164  820145 1
## 42165  820146 1
## 42166  820147 1
## 42167  820148 1
## 42168  820149 1
## 42169  820150 1
## 42170  820151 1
## 42171  820152 1
## 42172  820153 1
## 42173  820154 1
## 42174  820155 1
## 42175  820156 1
## 42176  820157 1
## 42177  820158 1
## 42178  820159 1
## 42179  820160 1
## 42180  820161 1
## 42181  820162 1
## 42182  820163 1
## 42183  820164 1
## 42184  820165 1
## 42185  820166 1
## 42186  820167 1
## 42187  820168 1
## 42188  820169 1
## 42189  820170 1
## 42190  820171 1
## 42191  820172 1
## 42192  820173 1
## 42193  820174 1
## 42194  820175 1
## 42195  820176 1
## 42196  820177 1
## 42197  820178 1
## 42198  820179 1
## 42199  820180 1
## 42200  820181 1
## 42201  820182 1
## 42202  820183 1
## 42203  820184 1
## 42204  820185 1
## 42205  820186 1
## 42206  820187 1
## 42207  820188 1
## 42208  820189 1
## 42209  820190 1
## 42210  820191 1
## 42211  820192 1
## 42212  820193 1
## 42213  820194 1
## 42214  820195 1
## 42215  820196 1
## 42216  820197 1
## 42217  820198 1
## 42218  820199 1
## 42219  820200 1
## 42220  820201 1
## 42221  820202 1
## 42222  820203 1
## 42223  820204 1
## 42224  820205 1
## 42225  820206 1
## 42226  820207 1
## 42227  820208 1
## 42228  820209 1
## 42229  820210 1
## 42230  820211 1
## 42231  820212 1
## 42232  820213 1
## 42233  820214 1
## 42234  820215 1
## 42235  820216 1
## 42236  820217 1
## 42237  820218 1
## 42238  820219 1
## 42239  820220 1
## 42240  820221 1
## 42241  820222 1
## 42242  820223 1
## 42243  820224 1
## 42244  820225 1
## 42245  820226 1
## 42246  820227 1
## 42247  820228 1
## 42248  820229 1
## 42249  820230 1
## 42250  820231 1
## 42251  820232 1
## 42252  820233 1
## 42253  820234 1
## 42254  820235 1
## 42255  820236 1
## 42256  820237 1
## 42257  820238 1
## 42258  820239 1
## 42259  820240 1
## 42260  820241 1
## 42261  820242 1
## 42262  820243 1
## 42263  820244 1
## 42264  820245 1
## 42265  820246 1
## 42266  820247 1
## 42267  820248 1
## 42268  820249 1
## 42269  820250 1
## 42270  820251 1
## 42271  820252 1
## 42272  820253 1
## 42273  820254 1
## 42274  820255 1
## 42275  820256 1
## 42276  820257 1
## 42277  820258 1
## 42278  820259 1
## 42279  820260 1
## 42280  820261 1
## 42281  820262 1
## 42282  820263 1
## 42283  820264 1
## 42284  820265 1
## 42285  820266 1
## 42286  820267 1
## 42287  820268 1
## 42288  820269 1
## 42289  820270 1
## 42290  820271 1
## 42291  820272 1
## 42292  820273 1
## 42293  820274 1
## 42294  820275 1
## 42295  820276 1
## 42296  820277 1
## 42297  820278 1
## 42298  820279 1
## 42299  820280 1
## 42300  820281 1
## 42301  820282 1
## 42302  820283 1
## 42303  820284 1
## 42304  820285 1
## 42305  820286 1
## 42306  820287 1
## 42307  820288 1
## 42308  820289 1
## 42309  820290 1
## 42310  820291 1
## 42311  820292 1
## 42312  820293 1
## 42313  820294 1
## 42314  820295 1
## 42315  820297 1
## 42316  820298 1
## 42317  820299 1
## 42318  820300 1
## 42319  820301 1
## 42320  820302 1
## 42321  820303 1
## 42322  820304 1
## 42323  820305 1
## 42324  820306 1
## 42325  820307 1
## 42326  820308 1
## 42327  820309 1
## 42328  820310 1
## 42329  820311 1
## 42330  820312 1
## 42331  820314 1
## 42332  820315 1
## 42333  820316 1
## 42334  820317 1
## 42335  820318 1
## 42336  820319 1
## 42337  820320 1
## 42338  820321 1
## 42339  820322 1
## 42340  820323 1
## 42341  820324 1
## 42342  820325 1
## 42343  820326 1
## 42344  820327 1
## 42345  820328 1
## 42346  820329 1
## 42347  820330 1
## 42348  820331 1
## 42349  820332 1
## 42350  820333 1
## 42351  820334 1
## 42352  820335 1
## 42353  820336 1
## 42354  820337 1
## 42355  820338 1
## 42356  820339 1
## 42357  820340 1
## 42358  820341 1
## 42359  820342 1
## 42360  820343 1
## 42361  820344 1
## 42362  820346 1
## 42363  820347 1
## 42364  820349 1
## 42365  820350 1
## 42366  820351 1
## 42367  820352 1
## 42368  820353 1
## 42369  820354 1
## 42370  820355 1
## 42371  820356 1
## 42372  820357 1
## 42373  820358 1
## 42374  820359 1
## 42375  820360 1
## 42376  820361 1
## 42377  820362 1
## 42378  820363 1
## 42379  820364 1
## 42380  820365 1
## 42381  820366 1
## 42382  820367 1
## 42383  820368 1
## 42384  820369 1
## 42385  820370 1
## 42386  820371 1
## 42387  820372 1
## 42388  820373 1
## 42389  820374 1
## 42390  820375 1
## 42391  820376 1
## 42392  820377 1
## 42393  820378 1
## 42394  820379 1
## 42395  820380 1
## 42396  820381 1
## 42397  820382 1
## 42398  820383 1
## 42399  820384 1
## 42400  820385 1
## 42401  820386 1
## 42402  820387 1
## 42403  820389 1
## 42404  820390 1
## 42405  820391 1
## 42406  820392 1
## 42407  820393 1
## 42408  820394 1
## 42409  820395 1
## 42410  820396 1
## 42411  820397 1
## 42412  820398 1
## 42413  820399 1
## 42414  820400 1
## 42415  820401 1
## 42416  820402 1
## 42417  820403 1
## 42418  820404 1
## 42419  820405 1
## 42420  820406 1
## 42421  820407 1
## 42422  820408 1
## 42423  820409 1
## 42424  820411 1
## 42425  820412 1
## 42426  820413 1
## 42427  820414 1
## 42428  820415 1
## 42429  820416 1
## 42430  820417 1
## 42431  820418 1
## 42432  820419 1
## 42433  820420 1
## 42434  820421 1
## 42435  820422 1
## 42436  820423 1
## 42437  820424 1
## 42438  820425 1
## 42439  820426 1
## 42440  820427 1
## 42441  820428 1
## 42442  820429 1
## 42443  820430 1
## 42444  820431 1
## 42445  820432 1
## 42446  820433 1
## 42447  820434 1
## 42448  820435 1
## 42449  820436 1
## 42450  820437 1
## 42451  820438 1
## 42452  820439 1
## 42453  820440 1
## 42454  820441 1
## 42455  820442 1
## 42456  820443 1
## 42457  820444 1
## 42458  820445 1
## 42459  820446 1
## 42460  820447 1
## 42461  820448 1
## 42462  820449 1
## 42463  820450 1
## 42464  820451 1
## 42465  820452 1
## 42466  820453 1
## 42467  820454 1
## 42468  820455 1
## 42469  820456 1
## 42470  820457 1
## 42471  820458 1
## 42472  820459 1
## 42473  820460 1
## 42474  820461 1
## 42475  820462 1
## 42476  820463 1
## 42477  820464 1
## 42478  820465 1
## 42479  820466 1
## 42480  820467 1
## 42481  820468 1
## 42482  820470 1
## 42483  820471 1
## 42484  820472 1
## 42485  820473 1
## 42486  820474 1
## 42487  820475 1
## 42488  820476 1
## 42489  820477 1
## 42490  820478 1
## 42491  820479 1
## 42492  820480 1
## 42493  820481 1
## 42494  820482 1
## 42495  820483 1
## 42496  820484 1
## 42497  820485 1
## 42498  820486 1
## 42499  820487 1
## 42500  820488 1
## 42501  820489 1
## 42502  820490 1
## 42503  820491 1
## 42504  820492 1
## 42505  820493 1
## 42506  820494 1
## 42507  820496 1
## 42508  820498 1
## 42509  820499 1
## 42510  820500 1
## 42511  820501 1
## 42512  820502 1
## 42513  820503 1
## 42514  820504 1
## 42515  820505 1
## 42516  820506 1
## 42517  820507 1
## 42518  820508 1
## 42519  820509 1
## 42520  820510 1
## 42521  820511 1
## 42522  820512 1
## 42523  820513 1
## 42524  820514 1
## 42525  820515 1
## 42526  820516 1
## 42527  820517 1
## 42528  820518 1
## 42529  820519 1
## 42530  820520 1
## 42531  820521 1
## 42532  820522 1
## 42533  820523 1
## 42534  820524 1
## 42535  820525 1
## 42536  820526 1
## 42537  820527 1
## 42538  820529 1
## 42539  820530 1
## 42540  820531 1
## 42541  820532 1
## 42542  820533 1
## 42543  820534 1
## 42544  820535 1
## 42545  820536 1
## 42546  820537 1
## 42547  820538 1
## 42548  820539 1
## 42549  820540 1
## 42550  820541 1
## 42551  820542 1
## 42552  820543 1
## 42553  820544 1
## 42554  820545 1
## 42555  820547 1
## 42556  820548 1
## 42557  820549 1
## 42558  820550 1
## 42559  820551 1
## 42560  820552 1
## 42561  820553 1
## 42562  820554 1
## 42563  820555 1
## 42564  820556 1
## 42565  820557 1
## 42566  820558 1
## 42567  820559 1
## 42568  820560 1
## 42569  820561 1
## 42570  820562 1
## 42571  820563 1
## 42572  820564 1
## 42573  820565 1
## 42574  820566 1
## 42575  820567 1
## 42576  820568 1
## 42577  820569 1
## 42578  820570 1
## 42579  820571 1
## 42580  820572 1
## 42581  820573 1
## 42582  820574 1
## 42583  820575 1
## 42584  820576 1
## 42585  820577 1
## 42586  820578 1
## 42587  820579 1
## 42588  820580 1
## 42589  820581 1
## 42590  820582 1
## 42591  820583 1
## 42592  820584 1
## 42593  820585 1
## 42594  820586 1
## 42595  820587 1
## 42596  820588 1
## 42597  820589 1
## 42598  820590 1
## 42599  820591 1
## 42600  820592 1
## 42601  820593 1
## 42602  820594 1
## 42603  820595 1
## 42604  820596 1
## 42605  820597 1
## 42606  820598 1
## 42607  820599 1
## 42608  820600 1
## 42609  820601 1
## 42610  820602 1
## 42611  820603 1
## 42612  820604 1
## 42613  820605 1
## 42614  820606 1
## 42615  820607 1
## 42616  820608 1
## 42617  820609 1
## 42618  820610 1
## 42619  820611 1
## 42620  820612 1
## 42621  820613 1
## 42622  820614 1
## 42623  820615 1
## 42624  820616 1
## 42625  820617 1
## 42626  820618 1
## 42627  820619 1
## 42628  820620 1
## 42629  820621 1
## 42630  820622 1
## 42631  820623 1
## 42632  820624 1
## 42633  820625 1
## 42634  820626 1
## 42635  820627 1
## 42636  820628 1
## 42637  820629 1
## 42638  820630 1
## 42639  820631 1
## 42640  820632 1
## 42641  820633 1
## 42642  820634 1
## 42643  820635 1
## 42644  820636 1
## 42645  820637 1
## 42646  820638 1
## 42647  820639 1
## 42648  820640 1
## 42649  820641 1
## 42650  820642 1
## 42651  820643 1
## 42652  820644 1
## 42653  820645 1
## 42654  820646 1
## 42655  820647 1
## 42656  820648 1
## 42657  820649 1
## 42658  820650 1
## 42659  820651 1
## 42660  820652 1
## 42661  820653 1
## 42662  820654 1
## 42663  820655 1
## 42664  820656 1
## 42665  820657 1
## 42666  820658 1
## 42667  820659 1
## 42668  820660 1
## 42669  820661 1
## 42670  820662 1
## 42671  820663 1
## 42672  820664 1
## 42673  820665 1
## 42674  820666 1
## 42675  820667 1
## 42676  820668 1
## 42677  820669 1
## 42678  820670 1
## 42679  820671 1
## 42680  820672 1
## 42681  820673 1
## 42682  820674 1
## 42683  820675 1
## 42684  820676 1
## 42685  820677 1
## 42686  820678 1
## 42687  820679 1
## 42688  820680 1
## 42689  820681 1
## 42690  820682 1
## 42691  820683 1
## 42692  820684 1
## 42693  820685 1
## 42694  820686 1
## 42695  820687 1
## 42696  820688 1
## 42697  820689 1
## 42698  820690 1
## 42699  820691 1
## 42700  820692 1
## 42701  820693 1
## 42702  820694 1
## 42703  820695 1
## 42704  820696 1
## 42705  820697 1
## 42706  820698 1
## 42707  820699 1
## 42708  820700 1
## 42709  820701 1
## 42710  820702 1
## 42711  820703 1
## 42712  820704 1
## 42713  820705 1
## 42714  820706 1
## 42715  820707 1
## 42716  820708 1
## 42717  820709 1
## 42718  820710 1
## 42719  820711 1
## 42720  820712 1
## 42721  820713 1
## 42722  820714 1
## 42723  820715 1
## 42724  820716 1
## 42725  820717 1
## 42726  820718 1
## 42727  820719 1
## 42728  820720 1
## 42729  820721 1
## 42730  820722 1
## 42731  820723 1
## 42732  820724 1
## 42733  820726 1
## 42734  820727 1
## 42735  820728 1
## 42736  820729 1
## 42737  820730 1
## 42738  820731 1
## 42739  820732 1
## 42740  820733 1
## 42741  820734 1
## 42742  820735 1
## 42743  820736 1
## 42744  820737 1
## 42745  820738 1
## 42746  820739 1
## 42747  820740 1
## 42748  820741 1
## 42749  820742 1
## 42750  820743 1
## 42751  820744 1
## 42752  820745 1
## 42753  820746 1
## 42754  820747 1
## 42755  820748 1
## 42756  820750 1
## 42757  820751 1
## 42758  820752 1
## 42759  820753 1
## 42760  820754 1
## 42761  820755 1
## 42762  820756 1
## 42763  820757 1
## 42764  820758 1
## 42765  820759 1
## 42766  820760 1
## 42767  820761 1
## 42768  820762 1
## 42769  820763 1
## 42770  820764 1
## 42771  820765 1
## 42772  820766 1
## 42773  820767 1
## 42774  820768 1
## 42775  820769 1
## 42776  820770 1
## 42777  820771 1
## 42778  820772 1
## 42779  820773 1
## 42780  820774 1
## 42781  820775 1
## 42782  820776 1
## 42783  820777 1
## 42784  820778 1
## 42785  820779 1
## 42786  820780 1
## 42787  820781 1
## 42788  820782 1
## 42789  820783 1
## 42790  820785 1
## 42791  820786 1
## 42792  820787 1
## 42793  820788 1
## 42794  820789 1
## 42795  820790 1
## 42796  820791 1
## 42797  820792 1
## 42798  820793 1
## 42799  820794 1
## 42800  820795 1
## 42801  820796 1
## 42802  820797 1
## 42803  820798 1
## 42804  820799 1
## 42805  820800 1
## 42806  820801 1
## 42807  820802 1
## 42808  820803 1
## 42809  820804 1
## 42810  820805 1
## 42811  820806 1
## 42812  820807 1
## 42813  820808 1
## 42814  820809 1
## 42815  820810 1
## 42816  820811 1
## 42817  820812 1
## 42818  820814 1
## 42819  820815 1
## 42820  820816 1
## 42821  820817 1
## 42822  820818 1
## 42823  820819 1
## 42824  820820 1
## 42825  820821 1
## 42826  820822 1
## 42827  820823 1
## 42828  820824 1
## 42829  820825 1
## 42830  820826 1
## 42831  820827 1
## 42832  820828 1
## 42833  820829 1
## 42834  820830 1
## 42835  820831 1
## 42836  820833 1
## 42837  820834 1
## 42838  820835 1
## 42839  820836 1
## 42840  820837 1
## 42841  820838 1
## 42842  820839 1
## 42843  820840 1
## 42844  820841 1
## 42845  820842 1
## 42846  820843 1
## 42847  820844 1
## 42848  820845 1
## 42849  820846 1
## 42850  820847 1
## 42851  820848 1
## 42852  820849 1
## 42853  820850 1
## 42854  820851 1
## 42855  820852 1
## 42856  820853 1
## 42857  820854 1
## 42858  820855 1
## 42859  820856 1
## 42860  820857 1
## 42861  820858 1
## 42862  820859 1
## 42863  820860 1
## 42864  820861 1
## 42865  820862 1
## 42866  820863 1
## 42867  820864 1
## 42868  820865 1
## 42869  820866 1
## 42870  820867 1
## 42871  820868 1
## 42872  820869 1
## 42873  820870 1
## 42874  820871 1
## 42875  820872 1
## 42876  820873 1
## 42877  820874 1
## 42878  820875 1
## 42879  820877 1
## 42880  820878 1
## 42881  820879 1
## 42882  820880 1
## 42883  820881 1
## 42884  820882 1
## 42885  820883 1
## 42886  820884 1
## 42887  820885 1
## 42888  820886 1
## 42889  820887 1
## 42890  820888 1
## 42891  820889 1
## 42892  820890 1
## 42893  820891 1
## 42894  820892 1
## 42895  820893 1
## 42896  820894 1
## 42897  820895 1
## 42898  820896 1
## 42899  820897 1
## 42900  820898 1
## 42901  820899 1
## 42902  820900 1
## 42903  820901 1
## 42904  820902 1
## 42905  820903 1
## 42906  820904 1
## 42907  820905 1
## 42908  820906 1
## 42909  820907 1
## 42910  820908 1
## 42911  820909 1
## 42912  820910 1
## 42913  820911 1
## 42914  820912 1
## 42915  820913 1
## 42916  820914 1
## 42917  820915 1
## 42918  820916 1
## 42919  820917 1
## 42920  820918 1
## 42921  820919 1
## 42922  820920 1
## 42923  820921 1
## 42924  820922 1
## 42925  820923 1
## 42926  820924 1
## 42927  820925 1
## 42928  820926 1
## 42929  820927 1
## 42930  820928 1
## 42931  820929 1
## 42932  820930 1
## 42933  820931 1
## 42934  820932 1
## 42935  820933 1
## 42936  820934 1
## 42937  820935 1
## 42938  820936 1
## 42939  820937 1
## 42940  820938 1
## 42941  820939 1
## 42942  820940 1
## 42943  820941 1
## 42944  820942 1
## 42945  820943 1
## 42946  820944 1
## 42947  820945 1
## 42948  820946 1
## 42949  820947 1
## 42950  820948 1
## 42951  820949 1
## 42952  820950 1
## 42953  820951 1
## 42954  820952 1
## 42955  820953 1
## 42956  820954 1
## 42957  820955 1
## 42958  820956 1
## 42959  820957 1
## 42960  820958 1
## 42961  820959 1
## 42962  820960 1
## 42963  820961 1
## 42964  820962 1
## 42965  820963 1
## 42966  820964 1
## 42967  820965 1
## 42968  820966 1
## 42969  820967 1
## 42970  820968 1
## 42971  820969 1
## 42972  820970 1
## 42973  820971 1
## 42974  820972 1
## 42975  820973 1
## 42976  820974 1
## 42977  820975 1
## 42978  820976 1
## 42979  820977 1
## 42980  820978 1
## 42981  820979 1
## 42982  820980 1
## 42983  820981 1
## 42984  820982 1
## 42985  820983 1
## 42986  820984 1
## 42987  820985 1
## 42988  820986 1
## 42989  820987 1
## 42990  820988 1
## 42991  820989 1
## 42992  820990 1
## 42993  820991 1
## 42994  820992 1
## 42995  820993 1
## 42996  820994 1
## 42997  820995 1
## 42998  820996 1
## 42999  820997 1
## 43000  820998 1
## 43001  820999 1
## 43002  821000 1
## 43003  821001 1
## 43004  821002 1
## 43005  821003 1
## 43006  821004 1
## 43007  821005 1
## 43008  821006 1
## 43009  821007 1
## 43010  821008 1
## 43011  821009 1
## 43012  821010 1
## 43013  821011 1
## 43014  821012 1
## 43015  821013 1
## 43016  821014 1
## 43017  821015 1
## 43018  821016 1
## 43019  821017 1
## 43020  821018 1
## 43021  821019 1
## 43022  821020 1
## 43023  821021 1
## 43024  821022 1
## 43025  821023 1
## 43026  821024 1
## 43027  821025 1
## 43028  821026 1
## 43029  821027 1
## 43030  821028 1
## 43031  821030 1
## 43032  821031 1
## 43033  821032 1
## 43034  821033 1
## 43035  821034 1
## 43036  821035 1
## 43037  821036 1
## 43038  821037 1
## 43039  821038 1
## 43040  821039 1
## 43041  821040 1
## 43042  821041 1
## 43043  821043 1
## 43044  821044 1
## 43045  821045 1
## 43046  821046 1
## 43047  821047 1
## 43048  821048 1
## 43049  821049 1
## 43050  821050 1
## 43051  821051 1
## 43052  821052 1
## 43053  821053 1
## 43054  821054 1
## 43055  821055 1
## 43056  821056 1
## 43057  821057 1
## 43058  821058 1
## 43059  821059 1
## 43060  821060 1
## 43061  821061 1
## 43062  821062 1
## 43063  821063 1
## 43064  821065 1
## 43065  821066 1
## 43066  821067 1
## 43067  821068 1
## 43068  821069 1
## 43069  821070 1
## 43070  821071 1
## 43071  821072 1
## 43072  821073 1
## 43073  821074 1
## 43074  821075 1
## 43075  821076 1
## 43076  821077 1
## 43077  821078 1
## 43078  821079 1
## 43079  821080 1
## 43080  821081 1
## 43081  821082 1
## 43082  821083 1
## 43083  821084 1
## 43084  821085 1
## 43085  821086 1
## 43086  821087 1
## 43087  821088 1
## 43088  821089 1
## 43089  821090 1
## 43090  821091 1
## 43091  821092 1
## 43092  821093 1
## 43093  821094 1
## 43094  821095 1
## 43095  821096 1
## 43096  821097 1
## 43097  821098 1
## 43098  821099 1
## 43099  821100 1
## 43100  821101 1
## 43101  821102 1
## 43102  821103 1
## 43103  821104 1
## 43104  821105 1
## 43105  821106 1
## 43106  821107 1
## 43107  821108 1
## 43108  821109 1
## 43109  821110 1
## 43110  821111 1
## 43111  821112 1
## 43112  821113 1
## 43113  821114 1
## 43114  821115 1
## 43115  821116 1
## 43116  821117 1
## 43117  821118 1
## 43118  821119 1
## 43119  821120 1
## 43120  821121 1
## 43121  821122 1
## 43122  821123 1
## 43123  821124 1
## 43124  821125 1
## 43125  821126 1
## 43126  821127 1
## 43127  821128 1
## 43128  821129 1
## 43129  821130 1
## 43130  821131 1
## 43131  821132 1
## 43132  821133 1
## 43133  821134 1
## 43134  821135 1
## 43135  821136 1
## 43136  821137 1
## 43137  821138 1
## 43138  821139 1
## 43139  821140 1
## 43140  821141 1
## 43141  821142 1
## 43142  821143 1
## 43143  821144 1
## 43144  821145 1
## 43145  821146 1
## 43146  821147 1
## 43147  821148 1
## 43148  821149 1
## 43149  821150 1
## 43150  821151 1
## 43151  821152 1
## 43152  821153 1
## 43153  821154 1
## 43154  821155 1
## 43155  821156 1
## 43156  821157 1
## 43157  821158 1
## 43158  821159 1
## 43159  821160 1
## 43160  821162 1
## 43161  821163 1
## 43162  821164 1
## 43163  821165 1
## 43164  821166 1
## 43165  821167 1
## 43166  821168 1
## 43167  821169 1
## 43168  821170 1
## 43169  821171 1
## 43170  821172 1
## 43171  821173 1
## 43172  821174 1
## 43173  821175 1
## 43174  821176 1
## 43175  821177 1
## 43176  821178 1
## 43177  821179 1
## 43178  821180 1
## 43179  821181 1
## 43180  821182 1
## 43181  821183 1
## 43182  821184 1
## 43183  821185 1
## 43184  821186 1
## 43185  821187 1
## 43186  821188 1
## 43187  821189 1
## 43188  821190 1
## 43189  821191 1
## 43190  821192 1
## 43191  821193 1
## 43192  821194 1
## 43193  821195 1
## 43194  821196 1
## 43195  821197 1
## 43196  821198 1
## 43197  821199 1
## 43198  821200 1
## 43199  821201 1
## 43200  821202 1
## 43201  821203 1
## 43202  821204 1
## 43203  821205 1
## 43204  821206 1
## 43205  821207 1
## 43206  821208 1
## 43207  821209 1
## 43208  821210 1
## 43209  821211 1
## 43210  821212 1
## 43211  821213 1
## 43212  821214 1
## 43213  821215 1
## 43214  821216 1
## 43215  821217 1
## 43216  821218 1
## 43217  821219 1
## 43218  821220 1
## 43219  821221 1
## 43220  821222 1
## 43221  821223 1
## 43222  821224 1
## 43223  821225 1
## 43224  821226 1
## 43225  821227 1
## 43226  821228 1
## 43227  821229 1
## 43228  821230 1
## 43229  821231 1
## 43230  821232 1
## 43231  821233 1
## 43232  821234 1
## 43233  821236 1
## 43234  821237 1
## 43235  821238 1
## 43236  821239 1
## 43237  821240 1
## 43238  821241 1
## 43239  821242 1
## 43240  821243 1
## 43241  821244 1
## 43242  821245 1
## 43243  821246 1
## 43244  821247 1
## 43245  821249 1
## 43246  821250 1
## 43247  821251 1
## 43248  821252 1
## 43249  821253 1
## 43250  821254 1
## 43251  821255 1
## 43252  821256 1
## 43253  821257 1
## 43254  821258 1
## 43255  821259 1
## 43256  821260 1
## 43257  821261 1
## 43258  821262 1
## 43259  821263 1
## 43260  821264 1
## 43261  821265 1
## 43262  821266 1
## 43263  821267 1
## 43264  821268 1
## 43265  821269 1
## 43266  821270 1
## 43267  821271 1
## 43268  821272 1
## 43269  821273 1
## 43270  821274 1
## 43271  821275 1
## 43272  821276 1
## 43273  821277 1
## 43274  821278 1
## 43275  821279 1
## 43276  821280 1
## 43277  821281 1
## 43278  821282 1
## 43279  821283 1
## 43280  821284 1
## 43281  821285 1
## 43282  821286 1
## 43283  821288 1
## 43284  821289 1
## 43285  821290 1
## 43286  821292 1
## 43287  821293 1
## 43288  821294 1
## 43289  821295 1
## 43290  821296 1
## 43291  821297 1
## 43292  821298 1
## 43293  821299 1
## 43294  821300 1
## 43295  821301 1
## 43296  821302 1
## 43297  821303 1
## 43298  821304 1
## 43299  821305 1
## 43300  821306 1
## 43301  821307 1
## 43302  821308 1
## 43303  821309 1
## 43304  821310 1
## 43305  821311 1
## 43306  821312 1
## 43307  821313 1
## 43308  821314 1
## 43309  821315 1
## 43310  821316 1
## 43311  821317 1
## 43312  821318 1
## 43313  821319 1
## 43314  821320 1
## 43315  821321 1
## 43316  821322 1
## 43317  821323 1
## 43318  821324 1
## 43319  821325 1
## 43320  821326 1
## 43321  821327 1
## 43322  821328 1
## 43323  821329 1
## 43324  821330 1
## 43325  821331 1
## 43326  821332 1
## 43327  821333 1
## 43328  821334 1
## 43329  821335 1
## 43330  821336 1
## 43331  821337 1
## 43332  821338 1
## 43333  821339 1
## 43334  821340 1
## 43335  821341 1
## 43336  821342 1
## 43337  821343 1
## 43338  821344 1
## 43339  821345 1
## 43340  821346 1
## 43341  821347 1
## 43342  821348 1
## 43343  821349 1
## 43344  821350 1
## 43345  821351 1
## 43346  821352 1
## 43347  821353 1
## 43348  821354 1
## 43349  821355 1
## 43350  821356 1
## 43351  821357 1
## 43352  821358 1
## 43353  821359 1
## 43354  821360 1
## 43355  821361 1
## 43356  821362 1
## 43357  821363 1
## 43358  821364 1
## 43359  821365 1
## 43360  821366 1
## 43361  821367 1
## 43362  821368 1
## 43363  821369 1
## 43364  821370 1
## 43365  821371 1
## 43366  821372 1
## 43367  821373 1
## 43368  821374 1
## 43369  821375 1
## 43370  821376 1
## 43371  821377 1
## 43372  821378 1
## 43373  821379 1
## 43374  821380 1
## 43375  821381 1
## 43376  821382 1
## 43377  821383 1
## 43378  821384 1
## 43379  821385 1
## 43380  821386 1
## 43381  821387 1
## 43382  821388 1
## 43383  821389 1
## 43384  821390 1
## 43385  821391 1
## 43386  821392 1
## 43387  821393 1
## 43388  821394 1
## 43389  821395 1
## 43390  821396 1
## 43391  821397 1
## 43392  821398 1
## 43393  821399 1
## 43394  821400 1
## 43395  821401 1
## 43396  821402 1
## 43397  821403 1
## 43398  821404 1
## 43399  821405 1
## 43400  821406 1
## 43401  821407 1
## 43402  821408 1
## 43403  821409 1
## 43404  821410 1
## 43405  821411 1
## 43406  821412 1
## 43407  821413 1
## 43408  821414 1
## 43409  821415 1
## 43410  821416 1
## 43411  821417 1
## 43412  821418 1
## 43413  821419 1
## 43414  821420 1
## 43415  821421 1
## 43416  821422 1
## 43417  821423 1
## 43418  821424 1
## 43419  821425 1
## 43420  821426 1
## 43421  821427 1
## 43422  821428 1
## 43423  821429 1
## 43424  821430 1
## 43425  821431 1
## 43426  821432 1
## 43427  821433 1
## 43428  821434 1
## 43429  821437 1
## 43430  821438 1
## 43431  821439 1
## 43432  821440 1
## 43433  821441 1
## 43434  821442 1
## 43435  821443 1
## 43436  821444 1
## 43437  821445 1
## 43438  821446 1
## 43439  821447 1
## 43440  821448 1
## 43441  821449 1
## 43442  821450 1
## 43443  821451 1
## 43444  821452 1
## 43445  821453 1
## 43446  821454 1
## 43447  821455 1
## 43448  821456 1
## 43449  821457 1
## 43450  821458 1
## 43451  821460 1
## 43452  821461 1
## 43453  821462 1
## 43454  821463 1
## 43455  821464 1
## 43456  821465 1
## 43457  821466 1
## 43458  821467 1
## 43459  821468 1
## 43460  821469 1
## 43461  821470 1
## 43462  821471 1
## 43463  821472 1
## 43464  821473 1
## 43465  821474 1
## 43466  821475 1
## 43467  821476 1
## 43468  821477 1
## 43469  821478 1
## 43470  821479 1
## 43471  821480 1
## 43472  821481 1
## 43473  821482 1
## 43474  821483 1
## 43475  821484 1
## 43476  821485 1
## 43477  821486 1
## 43478  821487 1
## 43479  821488 1
## 43480  821490 1
## 43481  821491 1
## 43482  821492 1
## 43483  821493 1
## 43484  821494 1
## 43485  821496 1
## 43486  821497 1
## 43487  821498 1
## 43488  821499 1
## 43489  821500 1
## 43490  821501 1
## 43491  821502 1
## 43492  821503 1
## 43493  821504 1
## 43494  821505 1
## 43495  821506 1
## 43496  821507 1
## 43497  821508 1
## 43498  821509 1
## 43499  821510 1
## 43500  821511 1
## 43501  821512 1
## 43502  821513 1
## 43503  821514 1
## 43504  821516 1
## 43505  821517 1
## 43506  821518 1
## 43507  821519 1
## 43508  821520 1
## 43509  821521 1
## 43510  821522 1
## 43511  821523 1
## 43512  821524 1
## 43513  821525 1
## 43514  821526 1
## 43515  821527 1
## 43516  821528 1
## 43517  821529 1
## 43518  821530 1
## 43519  821531 1
## 43520  821532 1
## 43521  821533 1
## 43522  821534 1
## 43523  821535 1
## 43524  821536 1
## 43525  821537 1
## 43526  821538 1
## 43527  821539 1
## 43528  821540 1
## 43529  821541 1
## 43530  821542 1
## 43531  821543 1
## 43532  821544 1
## 43533  821545 1
## 43534  821546 1
## 43535  821547 1
## 43536  821548 1
## 43537  821549 1
## 43538  821550 1
## 43539  821551 1
## 43540  821552 1
## 43541  821553 1
## 43542  821554 1
## 43543  821555 1
## 43544  821556 1
## 43545  821557 1
## 43546  821558 1
## 43547  821559 1
## 43548  821560 1
## 43549  821561 1
## 43550  821562 1
## 43551  821563 1
## 43552  821564 1
## 43553  821565 1
## 43554  821566 1
## 43555  821567 1
## 43556  821568 1
## 43557  821569 1
## 43558  821570 1
## 43559  821571 1
## 43560  821572 1
## 43561  821573 1
## 43562  821574 1
## 43563  821575 1
## 43564  821576 1
## 43565  821577 1
## 43566  821578 1
## 43567  821579 1
## 43568  821580 1
## 43569  821581 1
## 43570  821582 1
## 43571  821583 1
## 43572  821585 1
## 43573  821586 1
## 43574  821587 1
## 43575  821588 1
## 43576  821589 1
## 43577  821590 1
## 43578  821591 1
## 43579  821593 1
## 43580  821594 1
## 43581  821595 1
## 43582  821596 1
## 43583  821597 1
## 43584  821598 1
## 43585  821599 1
## 43586  821600 1
## 43587  821601 1
## 43588  821602 1
## 43589  821603 1
## 43590  821604 1
## 43591  821605 1
## 43592  821606 1
## 43593  821607 1
## 43594  821608 1
## 43595  821609 1
## 43596  821610 1
## 43597  821611 1
## 43598  821612 1
## 43599  821613 1
## 43600  821614 1
## 43601  821616 1
## 43602  821617 1
## 43603  821618 1
## 43604  821619 1
## 43605  821620 1
## 43606  821621 1
## 43607  821622 1
## 43608  821623 1
## 43609  821624 1
## 43610  821625 1
## 43611  821626 1
## 43612  821627 1
## 43613  821628 1
## 43614  821629 1
## 43615  821630 1
## 43616  821631 1
## 43617  821632 1
## 43618  821633 1
## 43619  821634 1
## 43620  821635 1
## 43621  821636 1
## 43622  821637 1
## 43623  821638 1
## 43624  821639 1
## 43625  821640 1
## 43626  821641 1
## 43627  821642 1
## 43628  821643 1
## 43629  821644 1
## 43630  821645 1
## 43631  821646 1
## 43632  821647 1
## 43633  821648 1
## 43634  821650 1
## 43635  821651 1
## 43636  821652 1
## 43637  821653 1
## 43638  821654 1
## 43639  821655 1
## 43640  821656 1
## 43641  821657 1
## 43642  821658 1
## 43643  821659 1
## 43644  821660 1
## 43645  821661 1
## 43646  821662 1
## 43647  821663 1
## 43648  821664 1
## 43649  821665 1
## 43650  821666 1
## 43651  821667 1
## 43652  821668 1
## 43653  821669 1
## 43654  821670 1
## 43655  821671 1
## 43656  821672 1
## 43657  821673 1
## 43658  821674 1
## 43659  821675 1
## 43660  821676 1
## 43661  821677 1
## 43662  821679 1
## 43663  821680 1
## 43664  821681 1
## 43665  821682 1
## 43666  821683 1
## 43667  821684 1
## 43668  821685 1
## 43669  821686 1
## 43670  821687 1
## 43671  821688 1
## 43672  821689 1
## 43673  821690 1
## 43674  821691 1
## 43675  821692 1
## 43676  821693 1
## 43677  821694 1
## 43678  821695 1
## 43679  821696 1
## 43680  821697 1
## 43681  821698 1
## 43682  821699 1
## 43683  821700 1
## 43684  821701 1
## 43685  821702 1
## 43686  821703 1
## 43687  821704 1
## 43688  821705 1
## 43689  821706 1
## 43690  821707 1
## 43691  821708 1
## 43692  821709 1
## 43693  821710 1
## 43694  821711 1
## 43695  821712 1
## 43696  821713 1
## 43697  821714 1
## 43698  821715 1
## 43699  821716 1
## 43700  821717 1
## 43701  821718 1
## 43702  821719 1
## 43703  821720 1
## 43704  821721 1
## 43705  821722 1
## 43706  821724 1
## 43707  821725 1
## 43708  821726 1
## 43709  821727 1
## 43710  821728 1
## 43711  821729 1
## 43712  821730 1
## 43713  821731 1
## 43714  821732 1
## 43715  821734 1
## 43716  821735 1
## 43717  821736 1
## 43718  821737 1
## 43719  821738 1
## 43720  821739 1
## 43721  821740 1
## 43722  821741 1
## 43723  821742 1
## 43724  821743 1
## 43725  821744 1
## 43726  821745 1
## 43727  821746 1
## 43728  821747 1
## 43729  821748 1
## 43730  821749 1
## 43731  821750 1
## 43732  821751 1
## 43733  821752 1
## 43734  821753 1
## 43735  821754 1
## 43736  821755 1
## 43737  821756 1
## 43738  821757 1
## 43739  821758 1
## 43740  821759 1
## 43741  821760 1
## 43742  821761 1
## 43743  821762 1
## 43744  821763 1
## 43745  821764 1
## 43746  821765 1
## 43747  821766 1
## 43748  821767 1
## 43749  821768 1
## 43750  821769 1
## 43751  821770 1
## 43752  821771 1
## 43753  821772 1
## 43754  821773 1
## 43755  821774 1
## 43756  821775 1
## 43757  821776 1
## 43758  821777 1
## 43759  821778 1
## 43760  821779 1
## 43761  821780 1
## 43762  821781 1
## 43763  821782 1
## 43764  821783 1
## 43765  821784 1
## 43766  821785 1
## 43767  821786 1
## 43768  821787 1
## 43769  821788 1
## 43770  821789 1
## 43771  821790 1
## 43772  821791 1
## 43773  821792 1
## 43774  821793 1
## 43775  821794 1
## 43776  821795 1
## 43777  821796 1
## 43778  821797 1
## 43779  821798 1
## 43780  821799 1
## 43781  821800 1
## 43782  821801 1
## 43783  821802 1
## 43784  821803 1
## 43785  821804 1
## 43786  821805 1
## 43787  821806 1
## 43788  821807 1
## 43789  821808 1
## 43790  821809 1
## 43791  821810 1
## 43792  821811 1
## 43793  821812 1
## 43794  821813 1
## 43795  821814 1
## 43796  821815 1
## 43797  821816 1
## 43798  821817 1
## 43799  821818 1
## 43800  821819 1
## 43801  821820 1
## 43802  821822 1
## 43803  821823 1
## 43804  821824 1
## 43805  821825 1
## 43806  821826 1
## 43807  821827 1
## 43808  821828 1
## 43809  821829 1
## 43810  821830 1
## 43811  821831 1
## 43812  821832 1
## 43813  821833 1
## 43814  821834 1
## 43815  821835 1
## 43816  821836 1
## 43817  821837 1
## 43818  821838 1
## 43819  821839 1
## 43820  821840 1
## 43821  821841 1
## 43822  821842 1
## 43823  821843 1
## 43824  821844 1
## 43825  821845 1
## 43826  821846 1
## 43827  821847 1
## 43828  821848 1
## 43829  821849 1
## 43830  821850 1
## 43831  821851 1
## 43832  821852 1
## 43833  821853 1
## 43834  821854 1
## 43835  821855 1
## 43836  821856 1
## 43837  821857 1
## 43838  821858 1
## 43839  821859 1
## 43840  821860 1
## 43841  821861 1
## 43842  821862 1
## 43843  821863 1
## 43844  821864 1
## 43845  821865 1
## 43846  821866 1
## 43847  821867 1
## 43848  821868 1
## 43849  821869 1
## 43850  821870 1
## 43851  821871 1
## 43852  821872 1
## 43853  821873 1
## 43854  821874 1
## 43855  821875 1
## 43856  821876 1
## 43857  821877 1
## 43858  821878 1
## 43859  821879 1
## 43860  821880 1
## 43861  821881 1
## 43862  821882 1
## 43863  821883 1
## 43864  821884 1
## 43865  821885 1
## 43866  821886 1
## 43867  821887 1
## 43868  821888 1
## 43869  821889 1
## 43870  821890 1
## 43871  821891 1
## 43872  821892 1
## 43873  821893 1
## 43874  821894 1
## 43875  821895 1
## 43876  821896 1
## 43877  821897 1
## 43878  821898 1
## 43879  821900 1
## 43880  821901 1
## 43881  821902 1
## 43882  821903 1
## 43883  821904 1
## 43884  821905 1
## 43885  821906 1
## 43886  821907 1
## 43887  821908 1
## 43888  821909 1
## 43889  821910 1
## 43890  821911 1
## 43891  821913 1
## 43892  821914 1
## 43893  821915 1
## 43894  821916 1
## 43895  821917 1
## 43896  821918 1
## 43897  821919 1
## 43898  821920 1
## 43899  821921 1
## 43900  821922 1
## 43901  821923 1
## 43902  821924 1
## 43903  821925 1
## 43904  821926 1
## 43905  821927 1
## 43906  821928 1
## 43907  821929 1
## 43908  821930 1
## 43909  821931 1
## 43910  821932 1
## 43911  821933 1
## 43912  821934 1
## 43913  821935 1
## 43914  821936 1
## 43915  821937 1
## 43916  821938 1
## 43917  821939 1
## 43918  821940 1
## 43919  821941 1
## 43920  821942 1
## 43921  821943 1
## 43922  821944 1
## 43923  821945 1
## 43924  821946 1
## 43925  821947 1
## 43926  821948 1
## 43927  821949 1
## 43928  821951 1
## 43929  821953 1
## 43930  821954 1
## 43931  821955 1
## 43932  821956 1
## 43933  821957 1
## 43934  821958 1
## 43935  821960 1
## 43936  821961 1
## 43937  821962 1
## 43938  821963 1
## 43939  821964 1
## 43940  821965 1
## 43941  821966 1
## 43942  821967 1
## 43943  821968 1
## 43944  821969 1
## 43945  821970 1
## 43946  821971 1
## 43947  821972 1
## 43948  821973 1
## 43949  821974 1
## 43950  821975 1
## 43951  821976 1
## 43952  821977 1
## 43953  821978 1
## 43954  821980 1
## 43955  821981 1
## 43956  821982 1
## 43957  821983 1
## 43958  821984 1
## 43959  821985 1
## 43960  821986 1
## 43961  821987 1
## 43962  821988 1
## 43963  821989 1
## 43964  821990 1
## 43965  821991 1
## 43966  821992 1
## 43967  821993 1
## 43968  821994 1
## 43969  821995 1
## 43970  821996 1
## 43971  821997 1
## 43972  821998 1
## 43973  821999 1
## 43974  822000 1
## 43975  822002 1
## 43976  822003 1
## 43977  822004 1
## 43978  822005 1
## 43979  822006 1
## 43980  822007 1
## 43981  822008 1
## 43982  822009 1
## 43983  822010 1
## 43984  822011 1
## 43985  822012 1
## 43986  822013 1
## 43987  822014 1
## 43988  822015 1
## 43989  822016 1
## 43990  822017 1
## 43991  822018 1
## 43992  822019 1
## 43993  822020 1
## 43994  822021 1
## 43995  822022 1
## 43996  822023 1
## 43997  822024 1
## 43998  822025 1
## 43999  822026 1
## 44000  822027 1
## 44001  822028 1
## 44002  822029 1
## 44003  822030 1
## 44004  822031 1
## 44005  822032 1
## 44006  822033 1
## 44007  822034 1
## 44008  822035 1
## 44009  822036 1
## 44010  822037 1
## 44011  822038 1
## 44012  822039 1
## 44013  822040 1
## 44014  822041 1
## 44015  822042 1
## 44016  822043 1
## 44017  822044 1
## 44018  822045 1
## 44019  822046 1
## 44020  822047 1
## 44021  822048 1
## 44022  822049 1
## 44023  822050 1
## 44024  822051 1
## 44025  822052 1
## 44026  822053 1
## 44027  822054 1
## 44028  822055 1
## 44029  822056 1
## 44030  822057 1
## 44031  822059 1
## 44032  822060 1
## 44033  822061 1
## 44034  822062 1
## 44035  822063 1
## 44036  822064 1
## 44037  822065 1
## 44038  822066 1
## 44039  822067 1
## 44040  822068 1
## 44041  822069 1
## 44042  822070 1
## 44043  822071 1
## 44044  822072 1
## 44045  822073 1
## 44046  822074 1
## 44047  822075 1
## 44048  822076 1
## 44049  822077 1
## 44050  822078 1
## 44051  822079 1
## 44052  822080 1
## 44053  822081 1
## 44054  822082 1
## 44055  822083 1
## 44056  822084 1
## 44057  822085 1
## 44058  822086 1
## 44059  822087 1
## 44060  822088 1
## 44061  822089 1
## 44062  822090 1
## 44063  822091 1
## 44064  822092 1
## 44065  822093 1
## 44066  822094 1
## 44067  822095 1
## 44068  822096 1
## 44069  822097 1
## 44070  822098 1
## 44071  822099 1
## 44072  822100 1
## 44073  822101 1
## 44074  822102 1
## 44075  822103 1
## 44076  822104 1
## 44077  822105 1
## 44078  822106 1
## 44079  822107 1
## 44080  822108 1
## 44081  822109 1
## 44082  822110 1
## 44083  822111 1
## 44084  822112 1
## 44085  822113 1
## 44086  822114 1
## 44087  822115 1
## 44088  822116 1
## 44089  822117 1
## 44090  822119 1
## 44091  822120 1
## 44092  822121 1
## 44093  822122 1
## 44094  822123 1
## 44095  822124 1
## 44096  822125 1
## 44097  822126 1
## 44098  822127 1
## 44099  822128 1
## 44100  822129 1
## 44101  822130 1
## 44102  822131 1
## 44103  822132 1
## 44104  822133 1
## 44105  822134 1
## 44106  822135 1
## 44107  822136 1
## 44108  822137 1
## 44109  822138 1
## 44110  822139 1
## 44111  822140 1
## 44112  822141 1
## 44113  822142 1
## 44114  822143 1
## 44115  822144 1
## 44116  822145 1
## 44117  822146 1
## 44118  822147 1
## 44119  822148 1
## 44120  822149 1
## 44121  822150 1
## 44122  822151 1
## 44123  822152 1
## 44124  822153 1
## 44125  822154 1
## 44126  822155 1
## 44127  822156 1
## 44128  822157 1
## 44129  822158 1
## 44130  822159 1
## 44131  822160 1
## 44132  822161 1
## 44133  822162 1
## 44134  822163 1
## 44135  822164 1
## 44136  822165 1
## 44137  822166 1
## 44138  822167 1
## 44139  822168 1
## 44140  822169 1
## 44141  822170 1
## 44142  822171 1
## 44143  822172 1
## 44144  822173 1
## 44145  822174 1
## 44146  822175 1
## 44147  822176 1
## 44148  822177 1
## 44149  822178 1
## 44150  822179 1
## 44151  822180 1
## 44152  822181 1
## 44153  822182 1
## 44154  822183 1
## 44155  822184 1
## 44156  822185 1
## 44157  822186 1
## 44158  822187 1
## 44159  822188 1
## 44160  822189 1
## 44161  822190 1
## 44162  822191 1
## 44163  822192 1
## 44164  822193 1
## 44165  822194 1
## 44166  822195 1
## 44167  822196 1
## 44168  822197 1
## 44169  822198 1
## 44170  822199 1
## 44171  822200 1
## 44172  822201 1
## 44173  822202 1
## 44174  822203 1
## 44175  822204 1
## 44176  822205 1
## 44177  822206 1
## 44178  822208 1
## 44179  822209 1
## 44180  822210 1
## 44181  822211 1
## 44182  822212 1
## 44183  822213 1
## 44184  822214 1
## 44185  822215 1
## 44186  822216 1
## 44187  822217 1
## 44188  822218 1
## 44189  822219 1
## 44190  822220 1
## 44191  822221 1
## 44192  822222 1
## 44193  822223 1
## 44194  822224 1
## 44195  822225 1
## 44196  822226 1
## 44197  822227 1
## 44198  822228 1
## 44199  822229 1
## 44200  822230 1
## 44201  822231 1
## 44202  822232 1
## 44203  822233 1
## 44204  822234 1
## 44205  822235 1
## 44206  822236 1
## 44207  822237 1
## 44208  822238 1
## 44209  822240 1
## 44210  822241 1
## 44211  822242 1
## 44212  822243 1
## 44213  822244 1
## 44214  822245 1
## 44215  822246 1
## 44216  822247 1
## 44217  822248 1
## 44218  822249 1
## 44219  822250 1
## 44220  822251 1
## 44221  822252 1
## 44222  822253 1
## 44223  822254 1
## 44224  822255 1
## 44225  822256 1
## 44226  822257 1
## 44227  822258 1
## 44228  822259 1
## 44229  822260 1
## 44230  822261 1
## 44231  822262 1
## 44232  822263 1
## 44233  822264 1
## 44234  822265 1
## 44235  822266 1
## 44236  822267 1
## 44237  822268 1
## 44238  822269 1
## 44239  822270 1
## 44240  822271 1
## 44241  822272 1
## 44242  822273 1
## 44243  822274 1
## 44244  822275 1
## 44245  822276 1
## 44246  822277 1
## 44247  822278 1
## 44248  822279 1
## 44249  822280 1
## 44250  822281 1
## 44251  822282 1
## 44252  822283 1
## 44253  822284 1
## 44254  822285 1
## 44255  822286 1
## 44256  822287 1
## 44257  822288 1
## 44258  822289 1
## 44259  822290 1
## 44260  822291 1
## 44261  822292 1
## 44262  822293 1
## 44263  822294 1
## 44264  822295 1
## 44265  822296 1
## 44266  822297 1
## 44267  822298 1
## 44268  822299 1
## 44269  822300 1
## 44270  822301 1
## 44271  822302 1
## 44272  822303 1
## 44273  822304 1
## 44274  822305 1
## 44275  822306 1
## 44276  822307 1
## 44277  822308 1
## 44278  822309 1
## 44279  822310 1
## 44280  822311 1
## 44281  822312 1
## 44282  822313 1
## 44283  822314 1
## 44284  822315 1
## 44285  822316 1
## 44286  822317 1
## 44287  822318 1
## 44288  822319 1
## 44289  822320 1
## 44290  822321 1
## 44291  822322 1
## 44292  822323 1
## 44293  822324 1
## 44294  822325 1
## 44295  822326 1
## 44296  822327 1
## 44297  822328 1
## 44298  822329 1
## 44299  822330 1
## 44300  822331 1
## 44301  822332 1
## 44302  822333 1
## 44303  822335 1
## 44304  822336 1
## 44305  822337 1
## 44306  822338 1
## 44307  822339 1
## 44308  822340 1
## 44309  822341 1
## 44310  822342 1
## 44311  822343 1
## 44312  822344 1
## 44313  822345 1
## 44314  822346 1
## 44315  822347 1
## 44316  822348 1
## 44317  822349 1
## 44318  822350 1
## 44319  822351 1
## 44320  822352 1
## 44321  822353 1
## 44322  822354 1
## 44323  822355 1
## 44324  822356 1
## 44325  822357 1
## 44326  822358 1
## 44327  822359 1
## 44328  822360 1
## 44329  822361 1
## 44330  822362 1
## 44331  822363 1
## 44332  822364 1
## 44333  822365 1
## 44334  822366 1
## 44335  822367 1
## 44336  822368 1
## 44337  822369 1
## 44338  822370 1
## 44339  822371 1
## 44340  822372 1
## 44341  822373 1
## 44342  822374 1
## 44343  822375 1
## 44344  822376 1
## 44345  822377 1
## 44346  822378 1
## 44347  822379 1
## 44348  822381 1
## 44349  822382 1
## 44350  822383 1
## 44351  822384 1
## 44352  822385 1
## 44353  822386 1
## 44354  822387 1
## 44355  822388 1
## 44356  822389 1
## 44357  822390 1
## 44358  822391 1
## 44359  822392 1
## 44360  822393 1
## 44361  822394 1
## 44362  822395 1
## 44363  822396 1
## 44364  822397 1
## 44365  822398 1
## 44366  822399 1
## 44367  822400 1
## 44368  822401 1
## 44369  822402 1
## 44370  822403 1
## 44371  822404 1
## 44372  822405 1
## 44373  822406 1
## 44374  822407 1
## 44375  822408 1
## 44376  822409 1
## 44377  822410 1
## 44378  822411 1
## 44379  822412 1
## 44380  822413 1
## 44381  822414 1
## 44382  822415 1
## 44383  822416 1
## 44384  822417 1
## 44385  822418 1
## 44386  822419 1
## 44387  822420 1
## 44388  822421 1
## 44389  822422 1
## 44390  822423 1
## 44391  822424 1
## 44392  822425 1
## 44393  822426 1
## 44394  822427 1
## 44395  822428 1
## 44396  822429 1
## 44397  822430 1
## 44398  822431 1
## 44399  822432 1
## 44400  822433 1
## 44401  822434 1
## 44402  822435 1
## 44403  822436 1
## 44404  822437 1
## 44405  822438 1
## 44406  822439 1
## 44407  822440 1
## 44408  822441 1
## 44409  822442 1
## 44410  822443 1
## 44411  822444 1
## 44412  822445 1
## 44413  822446 1
## 44414  822447 1
## 44415  822448 1
## 44416  822449 1
## 44417  822450 1
## 44418  822451 1
## 44419  822452 1
## 44420  822453 1
## 44421  822454 1
## 44422  822455 1
## 44423  822456 1
## 44424  822457 1
## 44425  822458 1
## 44426  822459 1
## 44427  822460 1
## 44428  822461 1
## 44429  822462 1
## 44430  822463 1
## 44431  822464 1
## 44432  822465 1
## 44433  822466 1
## 44434  822467 1
## 44435  822468 1
## 44436  822469 1
## 44437  822470 1
## 44438  822471 1
## 44439  822472 1
## 44440  822473 1
## 44441  822474 1
## 44442  822475 1
## 44443  822476 1
## 44444  822477 1
## 44445  822478 1
## 44446  822479 1
## 44447  822480 1
## 44448  822481 1
## 44449  822482 1
## 44450  822483 1
## 44451  822484 1
## 44452  822485 1
## 44453  822486 1
## 44454  822487 1
## 44455  822488 1
## 44456  822489 1
## 44457  822490 1
## 44458  822491 1
## 44459  822492 1
## 44460  822493 1
## 44461  822494 1
## 44462  822495 1
## 44463  822496 1
## 44464  822497 1
## 44465  822498 1
## 44466  822499 1
## 44467  822500 1
## 44468  822501 1
## 44469  822502 1
## 44470  822503 1
## 44471  822504 1
## 44472  822506 1
## 44473  822507 1
## 44474  822508 1
## 44475  822509 1
## 44476  822511 1
## 44477  822512 1
## 44478  822513 1
## 44479  822514 1
## 44480  822515 1
## 44481  822516 1
## 44482  822517 1
## 44483  822518 1
## 44484  822519 1
## 44485  822520 1
## 44486  822521 1
## 44487  822522 1
## 44488  822523 1
## 44489  822524 1
## 44490  822525 1
## 44491  822526 1
## 44492  822527 1
## 44493  822528 1
## 44494  822529 1
## 44495  822530 1
## 44496  822531 1
## 44497  822532 1
## 44498  822533 1
## 44499  822534 1
## 44500  822535 1
## 44501  822536 1
## 44502  822537 1
## 44503  822539 1
## 44504  822540 1
## 44505  822541 1
## 44506  822542 1
## 44507  822543 1
## 44508  822544 1
## 44509  822546 1
## 44510  822547 1
## 44511  822548 1
## 44512  822549 1
## 44513  822550 1
## 44514  822551 1
## 44515  822553 1
## 44516  822554 1
## 44517  822555 1
## 44518  822556 1
## 44519  822557 1
## 44520  822558 1
## 44521  822559 1
## 44522  822560 1
## 44523  822561 1
## 44524  822562 1
## 44525  822563 1
## 44526  822564 1
## 44527  822565 1
## 44528  822566 1
## 44529  822567 1
## 44530  822568 1
## 44531  822569 1
## 44532  822570 1
## 44533  822571 1
## 44534  822572 1
## 44535  822573 1
## 44536  822574 1
## 44537  822575 1
## 44538  822576 1
## 44539  822577 1
## 44540  822578 1
## 44541  822579 1
## 44542  822580 1
## 44543  822581 1
## 44544  822582 1
## 44545  822583 1
## 44546  822584 1
## 44547  822585 1
## 44548  822586 1
## 44549  822587 1
## 44550  822588 1
## 44551  822589 1
## 44552  822590 1
## 44553  822591 1
## 44554  822592 1
## 44555  822593 1
## 44556  822594 1
## 44557  822595 1
## 44558  822596 1
## 44559  822597 1
## 44560  822598 1
## 44561  822599 1
## 44562  822600 1
## 44563  822601 1
## 44564  822602 1
## 44565  822603 1
## 44566  822604 1
## 44567  822605 1
## 44568  822606 1
## 44569  822607 1
## 44570  822608 1
## 44571  822609 1
## 44572  822611 1
## 44573  822612 1
## 44574  822613 1
## 44575  822614 1
## 44576  822615 1
## 44577  822616 1
## 44578  822617 1
## 44579  822618 1
## 44580  822619 1
## 44581  822620 1
## 44582  822621 1
## 44583  822622 1
## 44584  822623 1
## 44585  822624 1
## 44586  822625 1
## 44587  822626 1
## 44588  822627 1
## 44589  822628 1
## 44590  822629 1
## 44591  822630 1
## 44592  822631 1
## 44593  822632 1
## 44594  822633 1
## 44595  822634 1
## 44596  822635 1
## 44597  822636 1
## 44598  822637 1
## 44599  822638 1
## 44600  822639 1
## 44601  822640 1
## 44602  822641 1
## 44603  822642 1
## 44604  822643 1
## 44605  822644 1
## 44606  822645 1
## 44607  822646 1
## 44608  822647 1
## 44609  822648 1
## 44610  822649 1
## 44611  822650 1
## 44612  822651 1
## 44613  822652 1
## 44614  822653 1
## 44615  822654 1
## 44616  822656 1
## 44617  822657 1
## 44618  822658 1
## 44619  822659 1
## 44620  822660 1
## 44621  822661 1
## 44622  822662 1
## 44623  822663 1
## 44624  822664 1
## 44625  822665 1
## 44626  822666 1
## 44627  822667 1
## 44628  822668 1
## 44629  822669 1
## 44630  822670 1
## 44631  822671 1
## 44632  822672 1
## 44633  822673 1
## 44634  822674 1
## 44635  822675 1
## 44636  822676 1
## 44637  822677 1
## 44638  822678 1
## 44639  822679 1
## 44640  822680 1
## 44641  822681 1
## 44642  822682 1
## 44643  822684 1
## 44644  822685 1
## 44645  822686 1
## 44646  822687 1
## 44647  822688 1
## 44648  822689 1
## 44649  822690 1
## 44650  822691 1
## 44651  822692 1
## 44652  822693 1
## 44653  822694 1
## 44654  822695 1
## 44655  822696 1
## 44656  822697 1
## 44657  822698 1
## 44658  822699 1
## 44659  822700 1
## 44660  822701 1
## 44661  822702 1
## 44662  822703 1
## 44663  822704 1
## 44664  822705 1
## 44665  822706 1
## 44666  822707 1
## 44667  822708 1
## 44668  822709 1
## 44669  822710 1
## 44670  822711 1
## 44671  822712 1
## 44672  822713 1
## 44673  822714 1
## 44674  822715 1
## 44675  822716 1
## 44676  822717 1
## 44677  822718 1
## 44678  822719 1
## 44679  822720 1
## 44680  822721 1
## 44681  822722 1
## 44682  822723 1
## 44683  822724 1
## 44684  822725 1
## 44685  822726 1
## 44686  822727 1
## 44687  822728 1
## 44688  822729 1
## 44689  822730 1
## 44690  822731 1
## 44691  822732 1
## 44692  822733 1
## 44693  822734 1
## 44694  822735 1
## 44695  822736 1
## 44696  822737 1
## 44697  822738 1
## 44698  822739 1
## 44699  822740 1
## 44700  822741 1
## 44701  822742 1
## 44702  822743 1
## 44703  822744 1
## 44704  822745 1
## 44705  822746 1
## 44706  822747 1
## 44707  822748 1
## 44708  822749 1
## 44709  822750 1
## 44710  822751 1
## 44711  822752 1
## 44712  822753 1
## 44713  822754 1
## 44714  822755 1
## 44715  822756 1
## 44716  822757 1
## 44717  822758 1
## 44718  822759 1
## 44719  822760 1
## 44720  822761 1
## 44721  822762 1
## 44722  822763 1
## 44723  822764 1
## 44724  822765 1
## 44725  822766 1
## 44726  822767 1
## 44727  822768 1
## 44728  822769 1
## 44729  822770 1
## 44730  822771 1
## 44731  822772 1
## 44732  822773 1
## 44733  822774 1
## 44734  822775 1
## 44735  822776 1
## 44736  822777 1
## 44737  822778 1
## 44738  822779 1
## 44739  822780 1
## 44740  822781 1
## 44741  822782 1
## 44742  822783 1
## 44743  822784 1
## 44744  822786 1
## 44745  822788 1
## 44746  822789 1
## 44747  822790 1
## 44748  822791 1
## 44749  822792 1
## 44750  822793 1
## 44751  822794 1
## 44752  822795 1
## 44753  822796 1
## 44754  822797 1
## 44755  822798 1
## 44756  822799 1
## 44757  822800 1
## 44758  822801 1
## 44759  822802 1
## 44760  822803 1
## 44761  822804 1
## 44762  822805 1
## 44763  822806 1
## 44764  822807 1
## 44765  822808 1
## 44766  822809 1
## 44767  822810 1
## 44768  822811 1
## 44769  822812 1
## 44770  822813 1
## 44771  822814 1
## 44772  822815 1
## 44773  822816 1
## 44774  822817 1
## 44775  822818 1
## 44776  822819 1
## 44777  822820 1
## 44778  822821 1
## 44779  822822 1
## 44780  822823 1
## 44781  822824 1
## 44782  822825 1
## 44783  822826 1
## 44784  822827 1
## 44785  822828 1
## 44786  822829 1
## 44787  822830 1
## 44788  822831 1
## 44789  822832 1
## 44790  822833 1
## 44791  822834 1
## 44792  822835 1
## 44793  822836 1
## 44794  822837 1
## 44795  822838 1
## 44796  822839 1
## 44797  822840 1
## 44798  822841 1
## 44799  822842 1
## 44800  822843 1
## 44801  822844 1
## 44802  822845 1
## 44803  822846 1
## 44804  822847 1
## 44805  822848 1
## 44806  822849 1
## 44807  822850 1
## 44808  822851 1
## 44809  822852 1
## 44810  822853 1
## 44811  822854 1
## 44812  822855 1
## 44813  822856 1
## 44814  822857 1
## 44815  822858 1
## 44816  822859 1
## 44817  822860 1
## 44818  822861 1
## 44819  822862 1
## 44820  822863 1
## 44821  822864 1
## 44822  822865 1
## 44823  822866 1
## 44824  822867 1
## 44825  822868 1
## 44826  822869 1
## 44827  822870 1
## 44828  822871 1
## 44829  822872 1
## 44830  822873 1
## 44831  822874 1
## 44832  822875 1
## 44833  822876 1
## 44834  822877 1
## 44835  822878 1
## 44836  822879 1
## 44837  822880 1
## 44838  822881 1
## 44839  822882 1
## 44840  822883 1
## 44841  822884 1
## 44842  822885 1
## 44843  822886 1
## 44844  822887 1
## 44845  822888 1
## 44846  822889 1
## 44847  822890 1
## 44848  822891 1
## 44849  822892 1
## 44850  822893 1
## 44851  822894 1
## 44852  822895 1
## 44853  822896 1
## 44854  822897 1
## 44855  822898 1
## 44856  822899 1
## 44857  822900 1
## 44858  822901 1
## 44859  822902 1
## 44860  822903 1
## 44861  822904 1
## 44862  822905 1
## 44863  822906 1
## 44864  822907 1
## 44865  822908 1
## 44866  822909 1
## 44867  822910 1
## 44868  822911 1
## 44869  822913 1
## 44870  822914 1
## 44871  822915 1
## 44872  822916 1
## 44873  822917 1
## 44874  822918 1
## 44875  822920 1
## 44876  822921 1
## 44877  822922 1
## 44878  822923 1
## 44879  822924 1
## 44880  822925 1
## 44881  822926 1
## 44882  822927 1
## 44883  822928 1
## 44884  822929 1
## 44885  822930 1
## 44886  822931 1
## 44887  822932 1
## 44888  822933 1
## 44889  822934 1
## 44890  822935 1
## 44891  822936 1
## 44892  822937 1
## 44893  822938 1
## 44894  822939 1
## 44895  822940 1
## 44896  822941 1
## 44897  822942 1
## 44898  822943 1
## 44899  822944 1
## 44900  822945 1
## 44901  822946 1
## 44902  822947 1
## 44903  822948 1
## 44904  822949 1
## 44905  822950 1
## 44906  822952 1
## 44907  822953 1
## 44908  822954 1
## 44909  822955 1
## 44910  822956 1
## 44911  822957 1
## 44912  822958 1
## 44913  822959 1
## 44914  822960 1
## 44915  822961 1
## 44916  822962 1
## 44917  822963 1
## 44918  822964 1
## 44919  822965 1
## 44920  822966 1
## 44921  822967 1
## 44922  822968 1
## 44923  822969 1
## 44924  822970 1
## 44925  822971 1
## 44926  822972 1
## 44927  822973 1
## 44928  822974 1
## 44929  822975 1
## 44930  822976 1
## 44931  822977 1
## 44932  822978 1
## 44933  822979 1
## 44934  822980 1
## 44935  822981 1
## 44936  822982 1
## 44937  822983 1
## 44938  822984 1
## 44939  822985 1
## 44940  822986 1
## 44941  822988 1
## 44942  822989 1
## 44943  822990 1
## 44944  822991 1
## 44945  822992 1
## 44946  822993 1
## 44947  822994 1
## 44948  822995 1
## 44949  822996 1
## 44950  822997 1
## 44951  822998 1
## 44952  822999 1
## 44953  823000 1
## 44954  823001 1
## 44955  823002 1
## 44956  823003 1
## 44957  823004 1
## 44958  823005 1
## 44959  823006 1
## 44960  823007 1
## 44961  823008 1
## 44962  823009 1
## 44963  823010 1
## 44964  823011 1
## 44965  823012 1
## 44966  823013 1
## 44967  823014 1
## 44968  823015 1
## 44969  823016 1
## 44970  823017 1
## 44971  823018 1
## 44972  823019 1
## 44973  823020 1
## 44974  823021 1
## 44975  823022 1
## 44976  823023 1
## 44977  823024 1
## 44978  823025 1
## 44979  823026 1
## 44980  823027 1
## 44981  823028 1
## 44982  823029 1
## 44983  823030 1
## 44984  823031 1
## 44985  823032 1
## 44986  823033 1
## 44987  823034 1
## 44988  823035 1
## 44989  823036 1
## 44990  823037 1
## 44991  823038 1
## 44992  823039 1
## 44993  823040 1
## 44994  823041 1
## 44995  823042 1
## 44996  823043 1
## 44997  823044 1
## 44998  823045 1
## 44999  823046 1
## 45000  823047 1
## 45001  823048 1
## 45002  823049 1
## 45003  823050 1
## 45004  823051 1
## 45005  823052 1
## 45006  823053 1
## 45007  823054 1
## 45008  823055 1
## 45009  823056 1
## 45010  823057 1
## 45011  823058 1
## 45012  823059 1
## 45013  823060 1
## 45014  823061 1
## 45015  823062 1
## 45016  823063 1
## 45017  823064 1
## 45018  823065 1
## 45019  823066 1
## 45020  823067 1
## 45021  823068 1
## 45022  823069 1
## 45023  823070 1
## 45024  823071 1
## 45025  823072 1
## 45026  823073 1
## 45027  823074 1
## 45028  823075 1
## 45029  823076 1
## 45030  823077 1
## 45031  823078 1
## 45032  823079 1
## 45033  823080 1
## 45034  823081 1
## 45035  823082 1
## 45036  823083 1
## 45037  823084 1
## 45038  823085 1
## 45039  823086 1
## 45040  823087 1
## 45041  823088 1
## 45042  823089 1
## 45043  823090 1
## 45044  823091 1
## 45045  823092 1
## 45046  823093 1
## 45047  823094 1
## 45048  823095 1
## 45049  823096 1
## 45050  823097 1
## 45051  823098 1
## 45052  823099 1
## 45053  823100 1
## 45054  823101 1
## 45055  823102 1
## 45056  823103 1
## 45057  823104 1
## 45058  823105 1
## 45059  823106 1
## 45060  823107 1
## 45061  823108 1
## 45062  823109 1
## 45063  823110 1
## 45064  823111 1
## 45065  823112 1
## 45066  823113 1
## 45067  823114 1
## 45068  823115 1
## 45069  823116 1
## 45070  823117 1
## 45071  823119 1
## 45072  823120 1
## 45073  823121 1
## 45074  823122 1
## 45075  823123 1
## 45076  823124 1
## 45077  823125 1
## 45078  823126 1
## 45079  823127 1
## 45080  823128 1
## 45081  823129 1
## 45082  823130 1
## 45083  823131 1
## 45084  823132 1
## 45085  823133 1
## 45086  823134 1
## 45087  823135 1
## 45088  823136 1
## 45089  823137 1
## 45090  823138 1
## 45091  823139 1
## 45092  823140 1
## 45093  823141 1
## 45094  823142 1
## 45095  823143 1
## 45096  823144 1
## 45097  823145 1
## 45098  823146 1
## 45099  823147 1
## 45100  823148 1
## 45101  823149 1
## 45102  823150 1
## 45103  823151 1
## 45104  823152 1
## 45105  823153 1
## 45106  823154 1
## 45107  823155 1
## 45108  823156 1
## 45109  823157 1
## 45110  823158 1
## 45111  823159 1
## 45112  823161 1
## 45113  823162 1
## 45114  823163 1
## 45115  823164 1
## 45116  823165 1
## 45117  823166 1
## 45118  823167 1
## 45119  823168 1
## 45120  823169 1
## 45121  823170 1
## 45122  823171 1
## 45123  823172 1
## 45124  823173 1
## 45125  823174 1
## 45126  823175 1
## 45127  823176 1
## 45128  823177 1
## 45129  823178 1
## 45130  823179 1
## 45131  823180 1
## 45132  823181 1
## 45133  823182 1
## 45134  823183 1
## 45135  823184 1
## 45136  823185 1
## 45137  823186 1
## 45138  823187 1
## 45139  823188 1
## 45140  823189 1
## 45141  823190 1
## 45142  823191 1
## 45143  823192 1
## 45144  823193 1
## 45145  823194 1
## 45146  823195 1
## 45147  823196 1
## 45148  823197 1
## 45149  823198 1
## 45150  823199 1
## 45151  823200 1
## 45152  823201 1
## 45153  823202 1
## 45154  823203 1
## 45155  823204 1
## 45156  823205 1
## 45157  823206 1
## 45158  823207 1
## 45159  823208 1
## 45160  823209 1
## 45161  823210 1
## 45162  823211 1
## 45163  823212 1
## 45164  823213 1
## 45165  823214 1
## 45166  823215 1
## 45167  823216 1
## 45168  823217 1
## 45169  823218 1
## 45170  823219 1
## 45171  823220 1
## 45172  823221 1
## 45173  823222 1
## 45174  823223 1
## 45175  823224 1
## 45176  823225 1
## 45177  823226 1
## 45178  823227 1
## 45179  823228 1
## 45180  823229 1
## 45181  823230 1
## 45182  823231 1
## 45183  823232 1
## 45184  823233 1
## 45185  823234 1
## 45186  823235 1
## 45187  823236 1
## 45188  823237 1
## 45189  823238 1
## 45190  823239 1
## 45191  823240 1
## 45192  823241 1
## 45193  823242 1
## 45194  823243 1
## 45195  823244 1
## 45196  823245 1
## 45197  823246 1
## 45198  823247 1
## 45199  823248 1
## 45200  823249 1
## 45201  823250 1
## 45202  823251 1
## 45203  823252 1
## 45204  823253 1
## 45205  823254 1
## 45206  823255 1
## 45207  823256 1
## 45208  823257 1
## 45209  823258 1
## 45210  823259 1
## 45211  823260 1
## 45212  823261 1
## 45213  823262 1
## 45214  823263 1
## 45215  823264 1
## 45216  823265 1
## 45217  823266 1
## 45218  823267 1
## 45219  823268 1
## 45220  823269 1
## 45221  823270 1
## 45222  823271 1
## 45223  823272 1
## 45224  823273 1
## 45225  823274 1
## 45226  823275 1
## 45227  823276 1
## 45228  823277 1
## 45229  823278 1
## 45230  823279 1
## 45231  823280 1
## 45232  823281 1
## 45233  823282 1
## 45234  823283 1
## 45235  823284 1
## 45236  823285 1
## 45237  823286 1
## 45238  823287 1
## 45239  823288 1
## 45240  823289 1
## 45241  823290 1
## 45242  823291 1
## 45243  823292 1
## 45244  823293 1
## 45245  823294 1
## 45246  823295 1
## 45247  823296 1
## 45248  823297 1
## 45249  823298 1
## 45250  823299 1
## 45251  823300 1
## 45252  823301 1
## 45253  823302 1
## 45254  823303 1
## 45255  823304 1
## 45256  823305 1
## 45257  823306 1
## 45258  823307 1
## 45259  823308 1
## 45260  823309 1
## 45261  823310 1
## 45262  823311 1
## 45263  823312 1
## 45264  823313 1
## 45265  823314 1
## 45266  823315 1
## 45267  823316 1
## 45268  823317 1
## 45269  823318 1
## 45270  823319 1
## 45271  823320 1
## 45272  823321 1
## 45273  823322 1
## 45274  823323 1
## 45275  823324 1
## 45276  823325 1
## 45277  823326 1
## 45278  823328 1
## 45279  823329 1
## 45280  823330 1
## 45281  823331 1
## 45282  823332 1
## 45283  823333 1
## 45284  823334 1
## 45285  823335 1
## 45286  823336 1
## 45287  823337 1
## 45288  823338 1
## 45289  823339 1
## 45290  823340 1
## 45291  823341 1
## 45292  823342 1
## 45293  823343 1
## 45294  823344 1
## 45295  823345 1
## 45296  823346 1
## 45297  823347 1
## 45298  823349 1
## 45299  823350 1
## 45300  823351 1
## 45301  823352 1
## 45302  823353 1
## 45303  823354 1
## 45304  823355 1
## 45305  823356 1
## 45306  823357 1
## 45307  823358 1
## 45308  823359 1
## 45309  823360 1
## 45310  823361 1
## 45311  823362 1
## 45312  823363 1
## 45313  823364 1
## 45314  823365 1
## 45315  823366 1
## 45316  823367 1
## 45317  823368 1
## 45318  823369 1
## 45319  823370 1
## 45320  823371 1
## 45321  823372 1
## 45322  823373 1
## 45323  823374 1
## 45324  823375 1
## 45325  823376 1
## 45326  823377 1
## 45327  823378 1
## 45328  823379 1
## 45329  823380 1
## 45330  823381 1
## 45331  823382 1
## 45332  823383 1
## 45333  823384 1
## 45334  823385 1
## 45335  823386 1
## 45336  823387 1
## 45337  823388 1
## 45338  823389 1
## 45339  823390 1
## 45340  823391 1
## 45341  823392 1
## 45342  823393 1
## 45343  823394 1
## 45344  823395 1
## 45345  823396 1
## 45346  823397 1
## 45347  823398 1
## 45348  823399 1
## 45349  823401 1
## 45350  823402 1
## 45351  823403 1
## 45352  823404 1
## 45353  823405 1
## 45354  823406 1
## 45355  823407 1
## 45356  823408 1
## 45357  823409 1
## 45358  823410 1
## 45359  823411 1
## 45360  823412 1
## 45361  823413 1
## 45362  823414 1
## 45363  823415 1
## 45364  823416 1
## 45365  823417 1
## 45366  823418 1
## 45367  823419 1
## 45368  823420 1
## 45369  823421 1
## 45370  823422 1
## 45371  823423 1
## 45372  823424 1
## 45373  823425 1
## 45374  823426 1
## 45375  823427 1
## 45376  823428 1
## 45377  823429 1
## 45378  823430 1
## 45379  823431 1
## 45380  823432 1
## 45381  823433 1
## 45382  823434 1
## 45383  823435 1
## 45384  823436 1
## 45385  823437 1
## 45386  823438 1
## 45387  823439 1
## 45388  823440 1
## 45389  823442 1
## 45390  823443 1
## 45391  823444 1
## 45392  823445 1
## 45393  823446 1
## 45394  823447 1
## 45395  823448 1
## 45396  823449 1
## 45397  823450 1
## 45398  823451 1
## 45399  823452 1
## 45400  823453 1
## 45401  823454 1
## 45402  823455 1
## 45403  823456 1
## 45404  823457 1
## 45405  823458 1
## 45406  823459 1
## 45407  823460 1
## 45408  823461 1
## 45409  823462 1
## 45410  823463 1
## 45411  823464 1
## 45412  823465 1
## 45413  823466 1
## 45414  823467 1
## 45415  823468 1
## 45416  823469 1
## 45417  823470 1
## 45418  823471 1
## 45419  823472 1
## 45420  823474 1
## 45421  823475 1
## 45422  823476 1
## 45423  823477 1
## 45424  823478 1
## 45425  823479 1
## 45426  823480 1
## 45427  823481 1
## 45428  823482 1
## 45429  823483 1
## 45430  823484 1
## 45431  823485 1
## 45432  823486 1
## 45433  823487 1
## 45434  823488 1
## 45435  823489 1
## 45436  823490 1
## 45437  823491 1
## 45438  823492 1
## 45439  823493 1
## 45440  823494 1
## 45441  823496 1
## 45442  823497 1
## 45443  823498 1
## 45444  823499 1
## 45445  823500 1
## 45446  823501 1
## 45447  823502 1
## 45448  823503 1
## 45449  823504 1
## 45450  823505 1
## 45451  823506 1
## 45452  823507 1
## 45453  823508 1
## 45454  823509 1
## 45455  823510 1
## 45456  823512 1
## 45457  823513 1
## 45458  823514 1
## 45459  823515 1
## 45460  823516 1
## 45461  823517 1
## 45462  823518 1
## 45463  823519 1
## 45464  823520 1
## 45465  823521 1
## 45466  823522 1
## 45467  823523 1
## 45468  823524 1
## 45469  823525 1
## 45470  823526 1
## 45471  823527 1
## 45472  823528 1
## 45473  823529 1
## 45474  823530 1
## 45475  823531 1
## 45476  823532 1
## 45477  823533 1
## 45478  823534 1
## 45479  823535 1
## 45480  823536 1
## 45481  823537 1
## 45482  823538 1
## 45483  823539 1
## 45484  823540 1
## 45485  823541 1
## 45486  823542 1
## 45487  823543 1
## 45488  823544 1
## 45489  823545 1
## 45490  823546 1
## 45491  823547 1
## 45492  823548 1
## 45493  823549 1
## 45494  823550 1
## 45495  823551 1
## 45496  823552 1
## 45497  823553 1
## 45498  823554 1
## 45499  823555 1
## 45500  823556 1
## 45501  823557 1
## 45502  823558 1
## 45503  823559 1
## 45504  823560 1
## 45505  823561 1
## 45506  823562 1
## 45507  823563 1
## 45508  823564 1
## 45509  823565 1
## 45510  823566 1
## 45511  823567 1
## 45512  823568 1
## 45513  823569 1
## 45514  823570 1
## 45515  823571 1
## 45516  823572 1
## 45517  823573 1
## 45518  823574 1
## 45519  823575 1
## 45520  823576 1
## 45521  823577 1
## 45522  823578 1
## 45523  823579 1
## 45524  823580 1
## 45525  823581 1
## 45526  823582 1
## 45527  823583 1
## 45528  823584 1
## 45529  823585 1
## 45530  823586 1
## 45531  823587 1
## 45532  823588 1
## 45533  823589 1
## 45534  823590 1
## 45535  823591 1
## 45536  823592 1
## 45537  823593 1
## 45538  823594 1
## 45539  823595 1
## 45540  823597 1
## 45541  823598 1
## 45542  823599 1
## 45543  823600 1
## 45544  823601 1
## 45545  823602 1
## 45546  823603 1
## 45547  823604 1
## 45548  823605 1
## 45549  823606 1
## 45550  823607 1
## 45551  823608 1
## 45552  823609 1
## 45553  823610 1
## 45554  823611 1
## 45555  823612 1
## 45556  823613 1
## 45557  823614 1
## 45558  823615 1
## 45559  823616 1
## 45560  823617 1
## 45561  823618 1
## 45562  823619 1
## 45563  823620 1
## 45564  823621 1
## 45565  823623 1
## 45566  823624 1
## 45567  823625 1
## 45568  823626 1
## 45569  823627 1
## 45570  823628 1
## 45571  823629 1
## 45572  823630 1
## 45573  823631 1
## 45574  823632 1
## 45575  823633 1
## 45576  823634 1
## 45577  823635 1
## 45578  823636 1
## 45579  823637 1
## 45580  823638 1
## 45581  823639 1
## 45582  823640 1
## 45583  823641 1
## 45584  823642 1
## 45585  823643 1
## 45586  823644 1
## 45587  823645 1
## 45588  823646 1
## 45589  823647 1
## 45590  823648 1
## 45591  823649 1
## 45592  823650 1
## 45593  823651 1
## 45594  823652 1
## 45595  823653 1
## 45596  823654 1
## 45597  823655 1
## 45598  823656 1
## 45599  823657 1
## 45600  823658 1
## 45601  823659 1
## 45602  823660 1
## 45603  823661 1
## 45604  823662 1
## 45605  823663 1
## 45606  823664 1
## 45607  823665 1
## 45608  823666 1
## 45609  823667 1
## 45610  823668 1
## 45611  823669 1
## 45612  823670 1
## 45613  823671 1
## 45614  823672 1
## 45615  823673 1
## 45616  823674 1
## 45617  823675 1
## 45618  823676 1
## 45619  823677 1
## 45620  823678 1
## 45621  823679 1
## 45622  823680 1
## 45623  823681 1
## 45624  823682 1
## 45625  823683 1
## 45626  823684 1
## 45627  823685 1
## 45628  823686 1
## 45629  823687 1
## 45630  823688 1
## 45631  823689 1
## 45632  823690 1
## 45633  823691 1
## 45634  823692 1
## 45635  823693 1
## 45636  823694 1
## 45637  823695 1
## 45638  823696 1
## 45639  823697 1
## 45640  823698 1
## 45641  823699 1
## 45642  823700 1
## 45643  823701 1
## 45644  823702 1
## 45645  823703 1
## 45646  823704 1
## 45647  823705 1
## 45648  823706 1
## 45649  823707 1
## 45650  823708 1
## 45651  823709 1
## 45652  823710 1
## 45653  823711 1
## 45654  823712 1
## 45655  823713 1
## 45656  823714 1
## 45657  823715 1
## 45658  823716 1
## 45659  823717 1
## 45660  823718 1
## 45661  823719 1
## 45662  823720 1
## 45663  823721 1
## 45664  823722 1
## 45665  823723 1
## 45666  823724 1
## 45667  823725 1
## 45668  823726 1
## 45669  823727 1
## 45670  823728 1
## 45671  823729 1
## 45672  823730 1
## 45673  823731 1
## 45674  823732 1
## 45675  823733 1
## 45676  823734 1
## 45677  823735 1
## 45678  823736 1
## 45679  823737 1
## 45680  823738 1
## 45681  823739 1
## 45682  823740 1
## 45683  823741 1
## 45684  823742 1
## 45685  823743 1
## 45686  823744 1
## 45687  823745 1
## 45688  823746 1
## 45689  823747 1
## 45690  823748 1
## 45691  823749 1
## 45692  823750 1
## 45693  823751 1
## 45694  823752 1
## 45695  823753 1
## 45696  823754 1
## 45697  823755 1
## 45698  823756 1
## 45699  823757 1
## 45700  823758 1
## 45701  823759 1
## 45702  823761 1
## 45703  823762 1
## 45704  823763 1
## 45705  823764 1
## 45706  823765 1
## 45707  823766 1
## 45708  823767 1
## 45709  823768 1
## 45710  823769 1
## 45711  823770 1
## 45712  823771 1
## 45713  823772 1
## 45714  823773 1
## 45715  823774 1
## 45716  823775 1
## 45717  823776 1
## 45718  823777 1
## 45719  823778 1
## 45720  823780 1
## 45721  823781 1
## 45722  823782 1
## 45723  823783 1
## 45724  823784 1
## 45725  823785 1
## 45726  823786 1
## 45727  823787 1
## 45728  823788 1
## 45729  823789 1
## 45730  823790 1
## 45731  823791 1
## 45732  823792 1
## 45733  823793 1
## 45734  823794 1
## 45735  823795 1
## 45736  823796 1
## 45737  823797 1
## 45738  823798 1
## 45739  823799 1
## 45740  823800 1
## 45741  823801 1
## 45742  823802 1
## 45743  823803 1
## 45744  823804 1
## 45745  823805 1
## 45746  823806 1
## 45747  823807 1
## 45748  823808 1
## 45749  823809 1
## 45750  823810 1
## 45751  823811 1
## 45752  823812 1
## 45753  823814 1
## 45754  823815 1
## 45755  823816 1
## 45756  823817 1
## 45757  823818 1
## 45758  823819 1
## 45759  823820 1
## 45760  823821 1
## 45761  823822 1
## 45762  823823 1
## 45763  823824 1
## 45764  823825 1
## 45765  823826 1
## 45766  823827 1
## 45767  823828 1
## 45768  823829 1
## 45769  823830 1
## 45770  823831 1
## 45771  823832 1
## 45772  823833 1
## 45773  823834 1
## 45774  823835 1
## 45775  823836 1
## 45776  823837 1
## 45777  823838 1
## 45778  823839 1
## 45779  823840 1
## 45780  823841 1
## 45781  823842 1
## 45782  823843 1
## 45783  823844 1
## 45784  823845 1
## 45785  823846 1
## 45786  823847 1
## 45787  823849 1
## 45788  823850 1
## 45789  823851 1
## 45790  823852 1
## 45791  823853 1
## 45792  823854 1
## 45793  823855 1
## 45794  823856 1
## 45795  823857 1
## 45796  823858 1
## 45797  823859 1
## 45798  823860 1
## 45799  823862 1
## 45800  823863 1
## 45801  823864 1
## 45802  823865 1
## 45803  823866 1
## 45804  823867 1
## 45805  823868 1
## 45806  823869 1
## 45807  823870 1
## 45808  823871 1
## 45809  823872 1
## 45810  823873 1
## 45811  823874 1
## 45812  823875 1
## 45813  823876 1
## 45814  823877 1
## 45815  823878 1
## 45816  823879 1
## 45817  823880 1
## 45818  823881 1
## 45819  823882 1
## 45820  823883 1
## 45821  823884 1
## 45822  823885 1
## 45823  823886 1
## 45824  823887 1
## 45825  823888 1
## 45826  823889 1
## 45827  823890 1
## 45828  823891 1
## 45829  823892 1
## 45830  823893 1
## 45831  823894 1
## 45832  823895 1
## 45833  823896 1
## 45834  823897 1
## 45835  823898 1
## 45836  823899 1
## 45837  823900 1
## 45838  823901 1
## 45839  823902 1
## 45840  823903 1
## 45841  823904 1
## 45842  823905 1
## 45843  823906 1
## 45844  823907 1
## 45845  823908 1
## 45846  823909 1
## 45847  823910 1
## 45848  823911 1
## 45849  823912 1
## 45850  823913 1
## 45851  823914 1
## 45852  823915 1
## 45853  823916 1
## 45854  823917 1
## 45855  823918 1
## 45856  823919 1
## 45857  823920 1
## 45858  823921 1
## 45859  823922 1
## 45860  823923 1
## 45861  823924 1
## 45862  823925 1
## 45863  823926 1
## 45864  823927 1
## 45865  823928 1
## 45866  823929 1
## 45867  823930 1
## 45868  823931 1
## 45869  823932 1
## 45870  823933 1
## 45871  823934 1
## 45872  823935 1
## 45873  823936 1
## 45874  823937 1
## 45875  823939 1
## 45876  823940 1
## 45877  823941 1
## 45878  823942 1
## 45879  823943 1
## 45880  823944 1
## 45881  823945 1
## 45882  823946 1
## 45883  823947 1
## 45884  823948 1
## 45885  823949 1
## 45886  823950 1
## 45887  823951 1
## 45888  823952 1
## 45889  823953 1
## 45890  823954 1
## 45891  823955 1
## 45892  823956 1
## 45893  823957 1
## 45894  823958 1
## 45895  823959 1
## 45896  823960 1
## 45897  823961 1
## 45898  823962 1
## 45899  823963 1
## 45900  823964 1
## 45901  823965 1
## 45902  823966 1
## 45903  823967 1
## 45904  823968 1
## 45905  823969 1
## 45906  823970 1
## 45907  823971 1
## 45908  823972 1
## 45909  823973 1
## 45910  823974 1
## 45911  823975 1
## 45912  823976 1
## 45913  823977 1
## 45914  823978 1
## 45915  823979 1
## 45916  823980 1
## 45917  823981 1
## 45918  823982 1
## 45919  823984 1
## 45920  823985 1
## 45921  823986 1
## 45922  823987 1
## 45923  823988 1
## 45924  823989 1
## 45925  823990 1
## 45926  823991 1
## 45927  823992 1
## 45928  823993 1
## 45929  823994 1
## 45930  823995 1
## 45931  823996 1
## 45932  823997 1
## 45933  823998 1
## 45934  823999 1
## 45935  824000 1
## 45936  824001 1
## 45937  824002 1
## 45938  824003 1
## 45939  824004 1
## 45940  824005 1
## 45941  824006 1
## 45942  824007 1
## 45943  824008 1
## 45944  824009 1
## 45945  824010 1
## 45946  824011 1
## 45947  824012 1
## 45948  824013 1
## 45949  824014 1
## 45950  824015 1
## 45951  824016 1
## 45952  824017 1
## 45953  824018 1
## 45954  824019 1
## 45955  824020 1
## 45956  824021 1
## 45957  824022 1
## 45958  824023 1
## 45959  824024 1
## 45960  824025 1
## 45961  824026 1
## 45962  824027 1
## 45963  824028 1
## 45964  824029 1
## 45965  824030 1
## 45966  824031 1
## 45967  824032 1
## 45968  824033 1
## 45969  824034 1
## 45970  824035 1
## 45971  824036 1
## 45972  824037 1
## 45973  824038 1
## 45974  824039 1
## 45975  824040 1
## 45976  824041 1
## 45977  824042 1
## 45978  824043 1
## 45979  824044 1
## 45980  824045 1
## 45981  824046 1
## 45982  824047 1
## 45983  824048 1
## 45984  824049 1
## 45985  824050 1
## 45986  824051 1
## 45987  824052 1
## 45988  824053 1
## 45989  824054 1
## 45990  824055 1
## 45991  824056 1
## 45992  824057 1
## 45993  824058 1
## 45994  824059 1
## 45995  824060 1
## 45996  824061 1
## 45997  824062 1
## 45998  824063 1
## 45999  824064 1
## 46000  824065 1
## 46001  824066 1
## 46002  824067 1
## 46003  824068 1
## 46004  824069 1
## 46005  824070 1
## 46006  824071 1
## 46007  824072 1
## 46008  824073 1
## 46009  824074 1
## 46010  824075 1
## 46011  824076 1
## 46012  824077 1
## 46013  824078 1
## 46014  824079 1
## 46015  824080 1
## 46016  824081 1
## 46017  824082 1
## 46018  824083 1
## 46019  824084 1
## 46020  824085 1
## 46021  824086 1
## 46022  824087 1
## 46023  824088 1
## 46024  824089 1
## 46025  824090 1
## 46026  824091 1
## 46027  824092 1
## 46028  824093 1
## 46029  824094 1
## 46030  824095 1
## 46031  824096 1
## 46032  824097 1
## 46033  824098 1
## 46034  824099 1
## 46035  824100 1
## 46036  824101 1
## 46037  824102 1
## 46038  824104 1
## 46039  824105 1
## 46040  824106 1
## 46041  824107 1
## 46042  824108 1
## 46043  824109 1
## 46044  824110 1
## 46045  824111 1
## 46046  824112 1
## 46047  824113 1
## 46048  824114 1
## 46049  824115 1
## 46050  824116 1
## 46051  824117 1
## 46052  824118 1
## 46053  824119 1
## 46054  824120 1
## 46055  824121 1
## 46056  824122 1
## 46057  824123 1
## 46058  824124 1
## 46059  824125 1
## 46060  824126 1
## 46061  824127 1
## 46062  824128 1
## 46063  824129 1
## 46064  824130 1
## 46065  824131 1
## 46066  824132 1
## 46067  824133 1
## 46068  824134 1
## 46069  824135 1
## 46070  824136 1
## 46071  824137 1
## 46072  824138 1
## 46073  824139 1
## 46074  824140 1
## 46075  824141 1
## 46076  824142 1
## 46077  824143 1
## 46078  824144 1
## 46079  824145 1
## 46080  824146 1
## 46081  824147 1
## 46082  824148 1
## 46083  824149 1
## 46084  824150 1
## 46085  824151 1
## 46086  824152 1
## 46087  824153 1
## 46088  824154 1
## 46089  824155 1
## 46090  824156 1
## 46091  824157 1
## 46092  824158 1
## 46093  824159 1
## 46094  824160 1
## 46095  824161 1
## 46096  824162 1
## 46097  824163 1
## 46098  824164 1
## 46099  824165 1
## 46100  824166 1
## 46101  824167 1
## 46102  824168 1
## 46103  824169 1
## 46104  824170 1
## 46105  824171 1
## 46106  824172 1
## 46107  824173 1
## 46108  824174 1
## 46109  824175 1
## 46110  824176 1
## 46111  824177 1
## 46112  824178 1
## 46113  824179 1
## 46114  824180 1
## 46115  824182 1
## 46116  824183 1
## 46117  824184 1
## 46118  824185 1
## 46119  824186 1
## 46120  824187 1
## 46121  824188 1
## 46122  824189 1
## 46123  824190 1
## 46124  824191 1
## 46125  824192 1
## 46126  824193 1
## 46127  824194 1
## 46128  824195 1
## 46129  824196 1
## 46130  824197 1
## 46131  824198 1
## 46132  824199 1
## 46133  824200 1
## 46134  824201 1
## 46135  824202 1
## 46136  824203 1
## 46137  824204 1
## 46138  824205 1
## 46139  824206 1
## 46140  824207 1
## 46141  824208 1
## 46142  824209 1
## 46143  824210 1
## 46144  824211 1
## 46145  824212 1
## 46146  824213 1
## 46147  824214 1
## 46148  824215 1
## 46149  824216 1
## 46150  824217 1
## 46151  824219 1
## 46152  824220 1
## 46153  824221 1
## 46154  824222 1
## 46155  824223 1
## 46156  824224 1
## 46157  824225 1
## 46158  824226 1
## 46159  824227 1
## 46160  824228 1
## 46161  824229 1
## 46162  824230 1
## 46163  824231 1
## 46164  824232 1
## 46165  824233 1
## 46166  824234 1
## 46167  824235 1
## 46168  824236 1
## 46169  824237 1
## 46170  824238 1
## 46171  824239 1
## 46172  824240 1
## 46173  824241 1
## 46174  824242 1
## 46175  824243 1
## 46176  824244 1
## 46177  824245 1
## 46178  824246 1
## 46179  824247 1
## 46180  824248 1
## 46181  824249 1
## 46182  824250 1
## 46183  824251 1
## 46184  824252 1
## 46185  824253 1
## 46186  824254 1
## 46187  824255 1
## 46188  824256 1
## 46189  824257 1
## 46190  824258 1
## 46191  824259 1
## 46192  824260 1
## 46193  824261 1
## 46194  824262 1
## 46195  824263 1
## 46196  824264 1
## 46197  824265 1
## 46198  824266 1
## 46199  824267 1
## 46200  824268 1
## 46201  824269 1
## 46202  824270 1
## 46203  824271 1
## 46204  824272 1
## 46205  824273 1
## 46206  824274 1
## 46207  824275 1
## 46208  824276 1
## 46209  824277 1
## 46210  824278 1
## 46211  824279 1
## 46212  824280 1
## 46213  824281 1
## 46214  824282 1
## 46215  824283 1
## 46216  824284 1
## 46217  824285 1
## 46218  824286 1
## 46219  824287 1
## 46220  824288 1
## 46221  824289 1
## 46222  824290 1
## 46223  824291 1
## 46224  824292 1
## 46225  824293 1
## 46226  824294 1
## 46227  824295 1
## 46228  824297 1
## 46229  824298 1
## 46230  824299 1
## 46231  824300 1
## 46232  824301 1
## 46233  824302 1
## 46234  824303 1
## 46235  824304 1
## 46236  824305 1
## 46237  824306 1
## 46238  824307 1
## 46239  824308 1
## 46240  824309 1
## 46241  824310 1
## 46242  824311 1
## 46243  824312 1
## 46244  824313 1
## 46245  824314 1
## 46246  824315 1
## 46247  824316 1
## 46248  824317 1
## 46249  824318 1
## 46250  824319 1
## 46251  824320 1
## 46252  824321 1
## 46253  824322 1
## 46254  824323 1
## 46255  824324 1
## 46256  824325 1
## 46257  824326 1
## 46258  824327 1
## 46259  824328 1
## 46260  824329 1
## 46261  824330 1
## 46262  824331 1
## 46263  824332 1
## 46264  824333 1
## 46265  824334 1
## 46266  824335 1
## 46267  824336 1
## 46268  824337 1
## 46269  824338 1
## 46270  824339 1
## 46271  824340 1
## 46272  824341 1
## 46273  824342 1
## 46274  824343 1
## 46275  824344 1
## 46276  824345 1
## 46277  824346 1
## 46278  824347 1
## 46279  824348 1
## 46280  824349 1
## 46281  824350 1
## 46282  824351 1
## 46283  824352 1
## 46284  824353 1
## 46285  824354 1
## 46286  824355 1
## 46287  824356 1
## 46288  824357 1
## 46289  824358 1
## 46290  824359 1
## 46291  824360 1
## 46292  824361 1
## 46293  824362 1
## 46294  824363 1
## 46295  824364 1
## 46296  824365 1
## 46297  824366 1
## 46298  824367 1
## 46299  824368 1
## 46300  824369 1
## 46301  824370 1
## 46302  824371 1
## 46303  824372 1
## 46304  824373 1
## 46305  824374 1
## 46306  824375 1
## 46307  824376 1
## 46308  824377 1
## 46309  824378 1
## 46310  824379 1
## 46311  824380 1
## 46312  824381 1
## 46313  824382 1
## 46314  824383 1
## 46315  824384 1
## 46316  824385 1
## 46317  824386 1
## 46318  824387 1
## 46319  824388 1
## 46320  824389 1
## 46321  824390 1
## 46322  824391 1
## 46323  824392 1
## 46324  824393 1
## 46325  824394 1
## 46326  824395 1
## 46327  824396 1
## 46328  824397 1
## 46329  824398 1
## 46330  824399 1
## 46331  824400 1
## 46332  824401 1
## 46333  824402 1
## 46334  824403 1
## 46335  824404 1
## 46336  824405 1
## 46337  824406 1
## 46338  824407 1
## 46339  824408 1
## 46340  824409 1
## 46341  824410 1
## 46342  824412 1
## 46343  824414 1
## 46344  824415 1
## 46345  824416 1
## 46346  824418 1
## 46347  824419 1
## 46348  824420 1
## 46349  824421 1
## 46350  824422 1
## 46351  824423 1
## 46352  824424 1
## 46353  824425 1
## 46354  824426 1
## 46355  824427 1
## 46356  824428 1
## 46357  824429 1
## 46358  824430 1
## 46359  824432 1
## 46360  824433 1
## 46361  824434 1
## 46362  824435 1
## 46363  824436 1
## 46364  824437 1
## 46365  824438 1
## 46366  824439 1
## 46367  824440 1
## 46368  824441 1
## 46369  824442 1
## 46370  824443 1
## 46371  824444 1
## 46372  824445 1
## 46373  824446 1
## 46374  824447 1
## 46375  824448 1
## 46376  824449 1
## 46377  824450 1
## 46378  824451 1
## 46379  824452 1
## 46380  824453 1
## 46381  824454 1
## 46382  824455 1
## 46383  824456 1
## 46384  824457 1
## 46385  824458 1
## 46386  824459 1
## 46387  824460 1
## 46388  824461 1
## 46389  824462 1
## 46390  824463 1
## 46391  824464 1
## 46392  824465 1
## 46393  824466 1
## 46394  824467 1
## 46395  824468 1
## 46396  824469 1
## 46397  824470 1
## 46398  824471 1
## 46399  824472 1
## 46400  824473 1
## 46401  824474 1
## 46402  824475 1
## 46403  824476 1
## 46404  824477 1
## 46405  824478 1
## 46406  824479 1
## 46407  824480 1
## 46408  824481 1
## 46409  824482 1
## 46410  824483 1
## 46411  824484 1
## 46412  824486 1
## 46413  824487 1
## 46414  824488 1
## 46415  824489 1
## 46416  824490 1
## 46417  824491 1
## 46418  824492 1
## 46419  824493 1
## 46420  824494 1
## 46421  824495 1
## 46422  824496 1
## 46423  824497 1
## 46424  824498 1
## 46425  824499 1
## 46426  824500 1
## 46427  824501 1
## 46428  824502 1
## 46429  824503 1
## 46430  824504 1
## 46431  824505 1
## 46432  824506 1
## 46433  824507 1
## 46434  824508 1
## 46435  824509 1
## 46436  824510 1
## 46437  824511 1
## 46438  824512 1
## 46439  824513 1
## 46440  824514 1
## 46441  824515 1
## 46442  824516 1
## 46443  824517 1
## 46444  824518 1
## 46445  824519 1
## 46446  824520 1
## 46447  824521 1
## 46448  824522 1
## 46449  824523 1
## 46450  824524 1
## 46451  824525 1
## 46452  824526 1
## 46453  824527 1
## 46454  824528 1
## 46455  824529 1
## 46456  824530 1
## 46457  824531 1
## 46458  824532 1
## 46459  824533 1
## 46460  824534 1
## 46461  824535 1
## 46462  824536 1
## 46463  824537 1
## 46464  824538 1
## 46465  824539 1
## 46466  824540 1
## 46467  824541 1
## 46468  824542 1
## 46469  824543 1
## 46470  824544 1
## 46471  824545 1
## 46472  824546 1
## 46473  824547 1
## 46474  824548 1
## 46475  824550 1
## 46476  824551 1
## 46477  824552 1
## 46478  824553 1
## 46479  824554 1
## 46480  824555 1
## 46481  824556 1
## 46482  824557 1
## 46483  824558 1
## 46484  824559 1
## 46485  824560 1
## 46486  824561 1
## 46487  824562 1
## 46488  824563 1
## 46489  824564 1
## 46490  824565 1
## 46491  824566 1
## 46492  824567 1
## 46493  824568 1
## 46494  824569 1
## 46495  824570 1
## 46496  824571 1
## 46497  824572 1
## 46498  824573 1
## 46499  824574 1
## 46500  824575 1
## 46501  824576 1
## 46502  824577 1
## 46503  824578 1
## 46504  824579 1
## 46505  824580 1
## 46506  824581 1
## 46507  824583 1
## 46508  824584 1
## 46509  824585 1
## 46510  824586 1
## 46511  824587 1
## 46512  824588 1
## 46513  824589 1
## 46514  824590 1
## 46515  824591 1
## 46516  824592 1
## 46517  824593 1
## 46518  824594 1
## 46519  824595 1
## 46520  824596 1
## 46521  824597 1
## 46522  824598 1
## 46523  824599 1
## 46524  824600 1
## 46525  824601 1
## 46526  824602 1
## 46527  824603 1
## 46528  824604 1
## 46529  824605 1
## 46530  824606 1
## 46531  824607 1
## 46532  824608 1
## 46533  824609 1
## 46534  824610 1
## 46535  824611 1
## 46536  824612 1
## 46537  824614 1
## 46538  824615 1
## 46539  824616 1
## 46540  824617 1
## 46541  824618 1
## 46542  824619 1
## 46543  824620 1
## 46544  824621 1
## 46545  824622 1
## 46546  824623 1
## 46547  824624 1
## 46548  824625 1
## 46549  824626 1
## 46550  824627 1
## 46551  824628 1
## 46552  824629 1
## 46553  824630 1
## 46554  824631 1
## 46555  824632 1
## 46556  824633 1
## 46557  824634 1
## 46558  824635 1
## 46559  824636 1
## 46560  824637 1
## 46561  824638 1
## 46562  824639 1
## 46563  824640 1
## 46564  824641 1
## 46565  824642 1
## 46566  824643 1
## 46567  824644 1
## 46568  824645 1
## 46569  824646 1
## 46570  824648 1
## 46571  824649 1
## 46572  824650 1
## 46573  824651 1
## 46574  824652 1
## 46575  824653 1
## 46576  824654 1
## 46577  824655 1
## 46578  824657 1
## 46579  824658 1
## 46580  824659 1
## 46581  824660 1
## 46582  824661 1
## 46583  824662 1
## 46584  824663 1
## 46585  824664 1
## 46586  824665 1
## 46587  824666 1
## 46588  824667 1
## 46589  824668 1
## 46590  824669 1
## 46591  824670 1
## 46592  824671 1
## 46593  824672 1
## 46594  824673 1
## 46595  824674 1
## 46596  824675 1
## 46597  824676 1
## 46598  824677 1
## 46599  824678 1
## 46600  824679 1
## 46601  824680 1
## 46602  824681 1
## 46603  824682 1
## 46604  824683 1
## 46605  824684 1
## 46606  824685 1
## 46607  824686 1
## 46608  824687 1
## 46609  824689 1
## 46610  824690 1
## 46611  824691 1
## 46612  824692 1
## 46613  824693 1
## 46614  824694 1
## 46615  824695 1
## 46616  824696 1
## 46617  824697 1
## 46618  824698 1
## 46619  824699 1
## 46620  824700 1
## 46621  824701 1
## 46622  824702 1
## 46623  824703 1
## 46624  824704 1
## 46625  824705 1
## 46626  824706 1
## 46627  824707 1
## 46628  824708 1
## 46629  824709 1
## 46630  824710 1
## 46631  824711 1
## 46632  824712 1
## 46633  824713 1
## 46634  824714 1
## 46635  824715 1
## 46636  824716 1
## 46637  824717 1
## 46638  824718 1
## 46639  824719 1
## 46640  824720 1
## 46641  824721 1
## 46642  824722 1
## 46643  824723 1
## 46644  824724 1
## 46645  824725 1
## 46646  824726 1
## 46647  824727 1
## 46648  824728 1
## 46649  824729 1
## 46650  824730 1
## 46651  824731 1
## 46652  824732 1
## 46653  824733 1
## 46654  824734 1
## 46655  824735 1
## 46656  824736 1
## 46657  824737 1
## 46658  824738 1
## 46659  824740 1
## 46660  824741 1
## 46661  824742 1
## 46662  824743 1
## 46663  824744 1
## 46664  824746 1
## 46665  824747 1
## 46666  824748 1
## 46667  824749 1
## 46668  824750 1
## 46669  824751 1
## 46670  824752 1
## 46671  824753 1
## 46672  824754 1
## 46673  824755 1
## 46674  824756 1
## 46675  824757 1
## 46676  824758 1
## 46677  824759 1
## 46678  824760 1
## 46679  824761 1
## 46680  824762 1
## 46681  824763 1
## 46682  824764 1
## 46683  824765 1
## 46684  824766 1
## 46685  824767 1
## 46686  824768 1
## 46687  824769 1
## 46688  824770 1
## 46689  824771 1
## 46690  824772 1
## 46691  824773 1
## 46692  824774 1
## 46693  824775 1
## 46694  824776 1
## 46695  824777 1
## 46696  824778 1
## 46697  824779 1
## 46698  824780 1
## 46699  824781 1
## 46700  824782 1
## 46701  824783 1
## 46702  824784 1
## 46703  824785 1
## 46704  824786 1
## 46705  824787 1
## 46706  824788 1
## 46707  824789 1
## 46708  824790 1
## 46709  824791 1
## 46710  824792 1
## 46711  824793 1
## 46712  824794 1
## 46713  824795 1
## 46714  824796 1
## 46715  824797 1
## 46716  824798 1
## 46717  824799 1
## 46718  824800 1
## 46719  824801 1
## 46720  824802 1
## 46721  824803 1
## 46722  824804 1
## 46723  824805 1
## 46724  824806 1
## 46725  824807 1
## 46726  824808 1
## 46727  824809 1
## 46728  824810 1
## 46729  824811 1
## 46730  824812 1
## 46731  824813 1
## 46732  824814 1
## 46733  824815 1
## 46734  824816 1
## 46735  824817 1
## 46736  824818 1
## 46737  824819 1
## 46738  824820 1
## 46739  824821 1
## 46740  824822 1
## 46741  824823 1
## 46742  824824 1
## 46743  824825 1
## 46744  824826 1
## 46745  824827 1
## 46746  824828 1
## 46747  824829 1
## 46748  824830 1
## 46749  824831 1
## 46750  824832 1
## 46751  824833 1
## 46752  824834 1
## 46753  824835 1
## 46754  824836 1
## 46755  824837 1
## 46756  824838 1
## 46757  824839 1
## 46758  824840 1
## 46759  824841 1
## 46760  824842 1
## 46761  824843 1
## 46762  824844 1
## 46763  824845 1
## 46764  824846 1
## 46765  824847 1
## 46766  824848 1
## 46767  824849 1
## 46768  824850 1
## 46769  824851 1
## 46770  824852 1
## 46771  824853 1
## 46772  824854 1
## 46773  824855 1
## 46774  824856 1
## 46775  824857 1
## 46776  824858 1
## 46777  824859 1
## 46778  824860 1
## 46779  824861 1
## 46780  824862 1
## 46781  824863 1
## 46782  824864 1
## 46783  824865 1
## 46784  824866 1
## 46785  824867 1
## 46786  824868 1
## 46787  824869 1
## 46788  824870 1
## 46789  824871 1
## 46790  824872 1
## 46791  824873 1
## 46792  824874 1
## 46793  824875 1
## 46794  824876 1
## 46795  824877 1
## 46796  824878 1
## 46797  824879 1
## 46798  824880 1
## 46799  824881 1
## 46800  824882 1
## 46801  824883 1
## 46802  824884 1
## 46803  824885 1
## 46804  824886 1
## 46805  824887 1
## 46806  824888 1
## 46807  824889 1
## 46808  824890 1
## 46809  824891 1
## 46810  824892 1
## 46811  824893 1
## 46812  824894 1
## 46813  824895 1
## 46814  824896 1
## 46815  824897 1
## 46816  824898 1
## 46817  824899 1
## 46818  824900 1
## 46819  824901 1
## 46820  824902 1
## 46821  824903 1
## 46822  824904 1
## 46823  824905 1
## 46824  824906 1
## 46825  824907 1
## 46826  824908 1
## 46827  824909 1
## 46828  824910 1
## 46829  824911 1
## 46830  824912 1
## 46831  824913 1
## 46832  824914 1
## 46833  824915 1
## 46834  824916 1
## 46835  824917 1
## 46836  824918 1
## 46837  824919 1
## 46838  824921 1
## 46839  824922 1
## 46840  824923 1
## 46841  824924 1
## 46842  824925 1
## 46843  824926 1
## 46844  824927 1
## 46845  824928 1
## 46846  824929 1
## 46847  824930 1
## 46848  824931 1
## 46849  824932 1
## 46850  824933 1
## 46851  824935 1
## 46852  824936 1
## 46853  824937 1
## 46854  824938 1
## 46855  824939 1
## 46856  824940 1
## 46857  824941 1
## 46858  824942 1
## 46859  824943 1
## 46860  824944 1
## 46861  824945 1
## 46862  824946 1
## 46863  824947 1
## 46864  824948 1
## 46865  824949 1
## 46866  824950 1
## 46867  824951 1
## 46868  824952 1
## 46869  824953 1
## 46870  824954 1
## 46871  824955 1
## 46872  824956 1
## 46873  824957 1
## 46874  824958 1
## 46875  824959 1
## 46876  824960 1
## 46877  824961 1
## 46878  824962 1
## 46879  824963 1
## 46880  824964 1
## 46881  824965 1
## 46882  824966 1
## 46883  824967 1
## 46884  824968 1
## 46885  824969 1
## 46886  824970 1
## 46887  824971 1
## 46888  824972 1
## 46889  824973 1
## 46890  824974 1
## 46891  824975 1
## 46892  824976 1
## 46893  824977 1
## 46894  824978 1
## 46895  824979 1
## 46896  824980 1
## 46897  824981 1
## 46898  824982 1
## 46899  824983 1
## 46900  824984 1
## 46901  824985 1
## 46902  824986 1
## 46903  824987 1
## 46904  824988 1
## 46905  824989 1
## 46906  824990 1
## 46907  824991 1
## 46908  824992 1
## 46909  824993 1
## 46910  824994 1
## 46911  824995 1
## 46912  824996 1
## 46913  824997 1
## 46914  824998 1
## 46915  824999 1
## 46916  825000 1
## 46917  825001 1
## 46918  825002 1
## 46919  825003 1
## 46920  825004 1
## 46921  825005 1
## 46922  825006 1
## 46923  825007 1
## 46924  825008 1
## 46925  825009 1
## 46926  825010 1
## 46927  825011 1
## 46928  825012 1
## 46929  825013 1
## 46930  825014 1
## 46931  825015 1
## 46932  825016 1
## 46933  825017 1
## 46934  825018 1
## 46935  825019 1
## 46936  825020 1
## 46937  825021 1
## 46938  825022 1
## 46939  825023 1
## 46940  825024 1
## 46941  825025 1
## 46942  825026 1
## 46943  825027 1
## 46944  825028 1
## 46945  825029 1
## 46946  825030 1
## 46947  825031 1
## 46948  825032 1
## 46949  825033 1
## 46950  825034 1
## 46951  825035 1
## 46952  825036 1
## 46953  825037 1
## 46954  825038 1
## 46955  825039 1
## 46956  825040 1
## 46957  825041 1
## 46958  825042 1
## 46959  825043 1
## 46960  825044 1
## 46961  825045 1
## 46962  825046 1
## 46963  825047 1
## 46964  825048 1
## 46965  825049 1
## 46966  825050 1
## 46967  825051 1
## 46968  825052 1
## 46969  825053 1
## 46970  825054 1
## 46971  825055 1
## 46972  825056 1
## 46973  825057 1
## 46974  825058 1
## 46975  825059 1
## 46976  825060 1
## 46977  825061 1
## 46978  825062 1
## 46979  825063 1
## 46980  825064 1
## 46981  825065 1
## 46982  825066 1
## 46983  825067 1
## 46984  825068 1
## 46985  825069 1
## 46986  825070 1
## 46987  825071 1
## 46988  825072 1
## 46989  825073 1
## 46990  825074 1
## 46991  825075 1
## 46992  825076 1
## 46993  825077 1
## 46994  825078 1
## 46995  825079 1
## 46996  825080 1
## 46997  825081 1
## 46998  825082 1
## 46999  825083 1
## 47000  825084 1
## 47001  825085 1
## 47002  825086 1
## 47003  825087 1
## 47004  825088 1
## 47005  825089 1
## 47006  825090 1
## 47007  825091 1
## 47008  825092 1
## 47009  825093 1
## 47010  825094 1
## 47011  825095 1
## 47012  825096 1
## 47013  825097 1
## 47014  825098 1
## 47015  825099 1
## 47016  825100 1
## 47017  825101 1
## 47018  825102 1
## 47019  825103 1
## 47020  825104 1
## 47021  825105 1
## 47022  825106 1
## 47023  825107 1
## 47024  825108 1
## 47025  825109 1
## 47026  825110 1
## 47027  825111 1
## 47028  825112 1
## 47029  825113 1
## 47030  825114 1
## 47031  825115 1
## 47032  825116 1
## 47033  825117 1
## 47034  825118 1
## 47035  825119 1
## 47036  825120 1
## 47037  825121 1
## 47038  825122 1
## 47039  825123 1
## 47040  825124 1
## 47041  825125 1
## 47042  825126 1
## 47043  825127 1
## 47044  825128 1
## 47045  825129 1
## 47046  825130 1
## 47047  825131 1
## 47048  825132 1
## 47049  825133 1
## 47050  825134 1
## 47051  825135 1
## 47052  825136 1
## 47053  825137 1
## 47054  825138 1
## 47055  825139 1
## 47056  825140 1
## 47057  825141 1
## 47058  825142 1
## 47059  825143 1
## 47060  825144 1
## 47061  825145 1
## 47062  825146 1
## 47063  825147 1
## 47064  825148 1
## 47065  825149 1
## 47066  825150 1
## 47067  825151 1
## 47068  825152 1
## 47069  825153 1
## 47070  825154 1
## 47071  825155 1
## 47072  825156 1
## 47073  825157 1
## 47074  825158 1
## 47075  825159 1
## 47076  825160 1
## 47077  825161 1
## 47078  825162 1
## 47079  825163 1
## 47080  825164 1
## 47081  825165 1
## 47082  825166 1
## 47083  825167 1
## 47084  825168 1
## 47085  825169 1
## 47086  825170 1
## 47087  825171 1
## 47088  825172 1
## 47089  825173 1
## 47090  825174 1
## 47091  825175 1
## 47092  825176 1
## 47093  825177 1
## 47094  825178 1
## 47095  825179 1
## 47096  825180 1
## 47097  825181 1
## 47098  825182 1
## 47099  825183 1
## 47100  825184 1
## 47101  825185 1
## 47102  825186 1
## 47103  825187 1
## 47104  825188 1
## 47105  825189 1
## 47106  825190 1
## 47107  825191 1
## 47108  825192 1
## 47109  825193 1
## 47110  825194 1
## 47111  825195 1
## 47112  825196 1
## 47113  825197 1
## 47114  825198 1
## 47115  825199 1
## 47116  825200 1
## 47117  825201 1
## 47118  825202 1
## 47119  825203 1
## 47120  825204 1
## 47121  825206 1
## 47122  825207 1
## 47123  825208 1
## 47124  825209 1
## 47125  825210 1
## 47126  825211 1
## 47127  825212 1
## 47128  825213 1
## 47129  825214 1
## 47130  825215 1
## 47131  825216 1
## 47132  825217 1
## 47133  825218 1
## 47134  825219 1
## 47135  825220 1
## 47136  825221 1
## 47137  825222 1
## 47138  825223 1
## 47139  825224 1
## 47140  825225 1
## 47141  825226 1
## 47142  825227 1
## 47143  825228 1
## 47144  825229 1
## 47145  825230 1
## 47146  825231 1
## 47147  825232 1
## 47148  825233 1
## 47149  825234 1
## 47150  825235 1
## 47151  825236 1
## 47152  825237 1
## 47153  825239 1
## 47154  825240 1
## 47155  825241 1
## 47156  825242 1
## 47157  825243 1
## 47158  825244 1
## 47159  825245 1
## 47160  825246 1
## 47161  825247 1
## 47162  825248 1
## 47163  825249 1
## 47164  825250 1
## 47165  825251 1
## 47166  825252 1
## 47167  825253 1
## 47168  825254 1
## 47169  825255 1
## 47170  825256 1
## 47171  825258 1
## 47172  825259 1
## 47173  825260 1
## 47174  825261 1
## 47175  825262 1
## 47176  825263 1
## 47177  825264 1
## 47178  825265 1
## 47179  825266 1
## 47180  825267 1
## 47181  825268 1
## 47182  825269 1
## 47183  825270 1
## 47184  825271 1
## 47185  825272 1
## 47186  825273 1
## 47187  825274 1
## 47188  825275 1
## 47189  825276 1
## 47190  825277 1
## 47191  825278 1
## 47192  825279 1
## 47193  825280 1
## 47194  825281 1
## 47195  825282 1
## 47196  825283 1
## 47197  825284 1
## 47198  825285 1
## 47199  825286 1
## 47200  825287 1
## 47201  825288 1
## 47202  825289 1
## 47203  825290 1
## 47204  825291 1
## 47205  825292 1
## 47206  825293 1
## 47207  825294 1
## 47208  825295 1
## 47209  825296 1
## 47210  825297 1
## 47211  825298 1
## 47212  825299 1
## 47213  825300 1
## 47214  825301 1
## 47215  825303 1
## 47216  825304 1
## 47217  825305 1
## 47218  825306 1
## 47219  825307 1
## 47220  825308 1
## 47221  825309 1
## 47222  825310 1
## 47223  825311 1
## 47224  825312 1
## 47225  825313 1
## 47226  825314 1
## 47227  825315 1
## 47228  825316 1
## 47229  825318 1
## 47230  825319 1
## 47231  825320 1
## 47232  825321 1
## 47233  825322 1
## 47234  825323 1
## 47235  825324 1
## 47236  825325 1
## 47237  825326 1
## 47238  825327 1
## 47239  825328 1
## 47240  825329 1
## 47241  825330 1
## 47242  825331 1
## 47243  825332 1
## 47244  825333 1
## 47245  825334 1
## 47246  825335 1
## 47247  825336 1
## 47248  825337 1
## 47249  825338 1
## 47250  825339 1
## 47251  825340 1
## 47252  825341 1
## 47253  825342 1
## 47254  825343 1
## 47255  825344 1
## 47256  825345 1
## 47257  825346 1
## 47258  825347 1
## 47259  825348 1
## 47260  825349 1
## 47261  825350 1
## 47262  825351 1
## 47263  825352 1
## 47264  825353 1
## 47265  825354 1
## 47266  825355 1
## 47267  825356 1
## 47268  825357 1
## 47269  825359 1
## 47270  825360 1
## 47271  825361 1
## 47272  825362 1
## 47273  825363 1
## 47274  825364 1
## 47275  825365 1
## 47276  825367 1
## 47277  825368 1
## 47278  825369 1
## 47279  825370 1
## 47280  825371 1
## 47281  825372 1
## 47282  825373 1
## 47283  825374 1
## 47284  825375 1
## 47285  825376 1
## 47286  825377 1
## 47287  825378 1
## 47288  825379 1
## 47289  825380 1
## 47290  825381 1
## 47291  825382 1
## 47292  825383 1
## 47293  825384 1
## 47294  825385 1
## 47295  825386 1
## 47296  825387 1
## 47297  825388 1
## 47298  825389 1
## 47299  825390 1
## 47300  825391 1
## 47301  825392 1
## 47302  825393 1
## 47303  825394 1
## 47304  825395 1
## 47305  825396 1
## 47306  825397 1
## 47307  825398 1
## 47308  825399 1
## 47309  825400 1
## 47310  825401 1
## 47311  825402 1
## 47312  825403 1
## 47313  825404 1
## 47314  825405 1
## 47315  825406 1
## 47316  825407 1
## 47317  825408 1
## 47318  825409 1
## 47319  825410 1
## 47320  825411 1
## 47321  825412 1
## 47322  825413 1
## 47323  825414 1
## 47324  825415 1
## 47325  825416 1
## 47326  825417 1
## 47327  825418 1
## 47328  825419 1
## 47329  825420 1
## 47330  825421 1
## 47331  825422 1
## 47332  825423 1
## 47333  825424 1
## 47334  825425 1
## 47335  825426 1
## 47336  825427 1
## 47337  825428 1
## 47338  825429 1
## 47339  825430 1
## 47340  825431 1
## 47341  825432 1
## 47342  825433 1
## 47343  825434 1
## 47344  825435 1
## 47345  825436 1
## 47346  825437 1
## 47347  825438 1
## 47348  825439 1
## 47349  825440 1
## 47350  825441 1
## 47351  825442 1
## 47352  825443 1
## 47353  825444 1
## 47354  825445 1
## 47355  825446 1
## 47356  825447 1
## 47357  825448 1
## 47358  825449 1
## 47359  825450 1
## 47360  825451 1
## 47361  825452 1
## 47362  825453 1
## 47363  825454 1
## 47364  825455 1
## 47365  825456 1
## 47366  825458 1
## 47367  825459 1
## 47368  825460 1
## 47369  825461 1
## 47370  825462 1
## 47371  825463 1
## 47372  825464 1
## 47373  825465 1
## 47374  825466 1
## 47375  825467 1
## 47376  825468 1
## 47377  825469 1
## 47378  825470 1
## 47379  825471 1
## 47380  825472 1
## 47381  825473 1
## 47382  825474 1
## 47383  825475 1
## 47384  825476 1
## 47385  825477 1
## 47386  825478 1
## 47387  825479 1
## 47388  825480 1
## 47389  825481 1
## 47390  825482 1
## 47391  825483 1
## 47392  825484 1
## 47393  825485 1
## 47394  825486 1
## 47395  825487 1
## 47396  825489 1
## 47397  825490 1
## 47398  825491 1
## 47399  825492 1
## 47400  825493 1
## 47401  825494 1
## 47402  825495 1
## 47403  825496 1
## 47404  825497 1
## 47405  825498 1
## 47406  825499 1
## 47407  825500 1
## 47408  825501 1
## 47409  825502 1
## 47410  825503 1
## 47411  825504 1
## 47412  825505 1
## 47413  825506 1
## 47414  825507 1
## 47415  825508 1
## 47416  825509 1
## 47417  825510 1
## 47418  825511 1
## 47419  825512 1
## 47420  825513 1
## 47421  825514 1
## 47422  825515 1
## 47423  825516 1
## 47424  825517 1
## 47425  825518 1
## 47426  825519 1
## 47427  825520 1
## 47428  825521 1
## 47429  825522 1
## 47430  825523 1
## 47431  825524 1
## 47432  825525 1
## 47433  825526 1
## 47434  825527 1
## 47435  825528 1
## 47436  825529 1
## 47437  825530 1
## 47438  825531 1
## 47439  825532 1
## 47440  825533 1
## 47441  825534 1
## 47442  825535 1
## 47443  825536 1
## 47444  825537 1
## 47445  825538 1
## 47446  825539 1
## 47447  825540 1
## 47448  825541 1
## 47449  825542 1
## 47450  825543 1
## 47451  825544 1
## 47452  825545 1
## 47453  825546 1
## 47454  825547 1
## 47455  825548 1
## 47456  825549 1
## 47457  825550 1
## 47458  825551 1
## 47459  825552 1
## 47460  825553 1
## 47461  825554 1
## 47462  825555 1
## 47463  825556 1
## 47464  825557 1
## 47465  825558 1
## 47466  825559 1
## 47467  825560 1
## 47468  825561 1
## 47469  825562 1
## 47470  825563 1
## 47471  825564 1
## 47472  825565 1
## 47473  825566 1
## 47474  825567 1
## 47475  825568 1
## 47476  825569 1
## 47477  825570 1
## 47478  825571 1
## 47479  825572 1
## 47480  825573 1
## 47481  825574 1
## 47482  825575 1
## 47483  825576 1
## 47484  825577 1
## 47485  825578 1
## 47486  825579 1
## 47487  825580 1
## 47488  825581 1
## 47489  825583 1
## 47490  825584 1
## 47491  825585 1
## 47492  825586 1
## 47493  825587 1
## 47494  825588 1
## 47495  825589 1
## 47496  825590 1
## 47497  825591 1
## 47498  825592 1
## 47499  825593 1
## 47500  825594 1
## 47501  825595 1
## 47502  825596 1
## 47503  825597 1
## 47504  825598 1
## 47505  825599 1
## 47506  825600 1
## 47507  825601 1
## 47508  825602 1
## 47509  825603 1
## 47510  825604 1
## 47511  825605 1
## 47512  825606 1
## 47513  825607 1
## 47514  825608 1
## 47515  825609 1
## 47516  825610 1
## 47517  825611 1
## 47518  825612 1
## 47519  825613 1
## 47520  825614 1
## 47521  825615 1
## 47522  825616 1
## 47523  825617 1
## 47524  825618 1
## 47525  825619 1
## 47526  825620 1
## 47527  825621 1
## 47528  825622 1
## 47529  825623 1
## 47530  825624 1
## 47531  825625 1
## 47532  825626 1
## 47533  825627 1
## 47534  825628 1
## 47535  825629 1
## 47536  825630 1
## 47537  825631 1
## 47538  825632 1
## 47539  825633 1
## 47540  825634 1
## 47541  825635 1
## 47542  825636 1
## 47543  825637 1
## 47544  825638 1
## 47545  825639 1
## 47546  825640 1
## 47547  825641 1
## 47548  825642 1
## 47549  825643 1
## 47550  825644 1
## 47551  825645 1
## 47552  825646 1
## 47553  825647 1
## 47554  825648 1
## 47555  825649 1
## 47556  825650 1
## 47557  825651 1
## 47558  825652 1
## 47559  825653 1
## 47560  825654 1
## 47561  825655 1
## 47562  825656 1
## 47563  825657 1
## 47564  825658 1
## 47565  825659 1
## 47566  825660 1
## 47567  825661 1
## 47568  825662 1
## 47569  825663 1
## 47570  825664 1
## 47571  825665 1
## 47572  825666 1
## 47573  825667 1
## 47574  825668 1
## 47575  825669 1
## 47576  825670 1
## 47577  825671 1
## 47578  825672 1
## 47579  825673 1
## 47580  825674 1
## 47581  825675 1
## 47582  825676 1
## 47583  825677 1
## 47584  825678 1
## 47585  825679 1
## 47586  825680 1
## 47587  825681 1
## 47588  825682 1
## 47589  825683 1
## 47590  825684 1
## 47591  825685 1
## 47592  825686 1
## 47593  825687 1
## 47594  825688 1
## 47595  825689 1
## 47596  825690 1
## 47597  825691 1
## 47598  825692 1
## 47599  825693 1
## 47600  825694 1
## 47601  825695 1
## 47602  825696 1
## 47603  825697 1
## 47604  825698 1
## 47605  825699 1
## 47606  825700 1
## 47607  825701 1
## 47608  825702 1
## 47609  825703 1
## 47610  825704 1
## 47611  825705 1
## 47612  825706 1
## 47613  825707 1
## 47614  825708 1
## 47615  825709 1
## 47616  825710 1
## 47617  825711 1
## 47618  825712 1
## 47619  825713 1
## 47620  825714 1
## 47621  825715 1
## 47622  825716 1
## 47623  825717 1
## 47624  825718 1
## 47625  825719 1
## 47626  825720 1
## 47627  825721 1
## 47628  825722 1
## 47629  825723 1
## 47630  825724 1
## 47631  825725 1
## 47632  825726 1
## 47633  825727 1
## 47634  825728 1
## 47635  825729 1
## 47636  825730 1
## 47637  825731 1
## 47638  825732 1
## 47639  825733 1
## 47640  825734 1
## 47641  825735 1
## 47642  825736 1
## 47643  825737 1
## 47644  825738 1
## 47645  825739 1
## 47646  825740 1
## 47647  825741 1
## 47648  825742 1
## 47649  825743 1
## 47650  825744 1
## 47651  825745 1
## 47652  825746 1
## 47653  825747 1
## 47654  825748 1
## 47655  825749 1
## 47656  825750 1
## 47657  825751 1
## 47658  825752 1
## 47659  825753 1
## 47660  825754 1
## 47661  825755 1
## 47662  825756 1
## 47663  825757 1
## 47664  825759 1
## 47665  825760 1
## 47666  825761 1
## 47667  825763 1
## 47668  825764 1
## 47669  825765 1
## 47670  825766 1
## 47671  825767 1
## 47672  825768 1
## 47673  825769 1
## 47674  825770 1
## 47675  825771 1
## 47676  825772 1
## 47677  825773 1
## 47678  825774 1
## 47679  825775 1
## 47680  825776 1
## 47681  825777 1
## 47682  825778 1
## 47683  825779 1
## 47684  825780 1
## 47685  825781 1
## 47686  825782 1
## 47687  825783 1
## 47688  825784 1
## 47689  825785 1
## 47690  825786 1
## 47691  825787 1
## 47692  825788 1
## 47693  825789 1
## 47694  825790 1
## 47695  825791 1
## 47696  825792 1
## 47697  825793 1
## 47698  825794 1
## 47699  825795 1
## 47700  825796 1
## 47701  825797 1
## 47702  825798 1
## 47703  825799 1
## 47704  825800 1
## 47705  825801 1
## 47706  825802 1
## 47707  825803 1
## 47708  825804 1
## 47709  825805 1
## 47710  825806 1
## 47711  825807 1
## 47712  825808 1
## 47713  825809 1
## 47714  825810 1
## 47715  825811 1
## 47716  825812 1
## 47717  825813 1
## 47718  825814 1
## 47719  825815 1
## 47720  825816 1
## 47721  825817 1
## 47722  825818 1
## 47723  825819 1
## 47724  825820 1
## 47725  825821 1
## 47726  825822 1
## 47727  825823 1
## 47728  825824 1
## 47729  825825 1
## 47730  825826 1
## 47731  825827 1
## 47732  825828 1
## 47733  825829 1
## 47734  825830 1
## 47735  825831 1
## 47736  825832 1
## 47737  825833 1
## 47738  825834 1
## 47739  825835 1
## 47740  825836 1
## 47741  825837 1
## 47742  825838 1
## 47743  825839 1
## 47744  825840 1
## 47745  825841 1
## 47746  825842 1
## 47747  825843 1
## 47748  825845 1
## 47749  825846 1
## 47750  825847 1
## 47751  825848 1
## 47752  825849 1
## 47753  825850 1
## 47754  825851 1
## 47755  825852 1
## 47756  825853 1
## 47757  825854 1
## 47758  825855 1
## 47759  825856 1
## 47760  825857 1
## 47761  825858 1
## 47762  825859 1
## 47763  825860 1
## 47764  825861 1
## 47765  825862 1
## 47766  825863 1
## 47767  825864 1
## 47768  825865 1
## 47769  825866 1
## 47770  825867 1
## 47771  825868 1
## 47772  825869 1
## 47773  825871 1
## 47774  825872 1
## 47775  825873 1
## 47776  825874 1
## 47777  825875 1
## 47778  825876 1
## 47779  825877 1
## 47780  825878 1
## 47781  825879 1
## 47782  825880 1
## 47783  825881 1
## 47784  825882 1
## 47785  825883 1
## 47786  825884 1
## 47787  825885 1
## 47788  825886 1
## 47789  825887 1
## 47790  825888 1
## 47791  825889 1
## 47792  825890 1
## 47793  825891 1
## 47794  825892 1
## 47795  825893 1
## 47796  825894 1
## 47797  825895 1
## 47798  825896 1
## 47799  825897 1
## 47800  825898 1
## 47801  825899 1
## 47802  825900 1
## 47803  825901 1
## 47804  825902 1
## 47805  825903 1
## 47806  825904 1
## 47807  825905 1
## 47808  825906 1
## 47809  825907 1
## 47810  825908 1
## 47811  825909 1
## 47812  825910 1
## 47813  825911 1
## 47814  825912 1
## 47815  825913 1
## 47816  825914 1
## 47817  825915 1
## 47818  825916 1
## 47819  825917 1
## 47820  825918 1
## 47821  825919 1
## 47822  825920 1
## 47823  825922 1
## 47824  825923 1
## 47825  825924 1
## 47826  825925 1
## 47827  825926 1
## 47828  825927 1
## 47829  825928 1
## 47830  825929 1
## 47831  825930 1
## 47832  825931 1
## 47833  825932 1
## 47834  825934 1
## 47835  825935 1
## 47836  825936 1
## 47837  825937 1
## 47838  825938 1
## 47839  825939 1
## 47840  825940 1
## 47841  825941 1
## 47842  825942 1
## 47843  825943 1
## 47844  825944 1
## 47845  825945 1
## 47846  825946 1
## 47847  825947 1
## 47848  825948 1
## 47849  825949 1
## 47850  825951 1
## 47851  825952 1
## 47852  825953 1
## 47853  825954 1
## 47854  825955 1
## 47855  825956 1
## 47856  825957 1
## 47857  825958 1
## 47858  825959 1
## 47859  825960 1
## 47860  825961 1
## 47861  825962 1
## 47862  825963 1
## 47863  825964 1
## 47864  825966 1
## 47865  825967 1
## 47866  825968 1
## 47867  825969 1
## 47868  825970 1
## 47869  825971 1
## 47870  825972 1
## 47871  825973 1
## 47872  825974 1
## 47873  825975 1
## 47874  825976 1
## 47875  825977 1
## 47876  825978 1
## 47877  825979 1
## 47878  825980 1
## 47879  825981 1
## 47880  825982 1
## 47881  825983 1
## 47882  825984 1
## 47883  825985 1
## 47884  825986 1
## 47885  825987 1
## 47886  825988 1
## 47887  825989 1
## 47888  825990 1
## 47889  825991 1
## 47890  825992 1
## 47891  825993 1
## 47892  825994 1
## 47893  825995 1
## 47894  825996 1
## 47895  825998 1
## 47896  825999 1
## 47897  826000 1
## 47898  826001 1
## 47899  826002 1
## 47900  826003 1
## 47901  826004 1
## 47902  826005 1
## 47903  826006 1
## 47904  826007 1
## 47905  826008 1
## 47906  826009 1
## 47907  826010 1
## 47908  826011 1
## 47909  826012 1
## 47910  826013 1
## 47911  826014 1
## 47912  826015 1
## 47913  826016 1
## 47914  826017 1
## 47915  826018 1
## 47916  826019 1
## 47917  826020 1
## 47918  826021 1
## 47919  826022 1
## 47920  826023 1
## 47921  826024 1
## 47922  826025 1
## 47923  826026 1
## 47924  826028 1
## 47925  826029 1
## 47926  826031 1
## 47927  826032 1
## 47928  826033 1
## 47929  826034 1
## 47930  826035 1
## 47931  826036 1
## 47932  826037 1
## 47933  826038 1
## 47934  826039 1
## 47935  826040 1
## 47936  826041 1
## 47937  826042 1
## 47938  826043 1
## 47939  826044 1
## 47940  826045 1
## 47941  826046 1
## 47942  826047 1
## 47943  826048 1
## 47944  826049 1
## 47945  826050 1
## 47946  826051 1
## 47947  826052 1
## 47948  826054 1
## 47949  826055 1
## 47950  826056 1
## 47951  826057 1
## 47952  826058 1
## 47953  826059 1
## 47954  826060 1
## 47955  826061 1
## 47956  826062 1
## 47957  826063 1
## 47958  826064 1
## 47959  826065 1
## 47960  826066 1
## 47961  826067 1
## 47962  826068 1
## 47963  826069 1
## 47964  826070 1
## 47965  826071 1
## 47966  826072 1
## 47967  826073 1
## 47968  826074 1
## 47969  826075 1
## 47970  826076 1
## 47971  826077 1
## 47972  826078 1
## 47973  826079 1
## 47974  826080 1
## 47975  826081 1
## 47976  826082 1
## 47977  826083 1
## 47978  826084 1
## 47979  826085 1
## 47980  826086 1
## 47981  826087 1
## 47982  826088 1
## 47983  826089 1
## 47984  826090 1
## 47985  826091 1
## 47986  826093 1
## 47987  826094 1
## 47988  826095 1
## 47989  826096 1
## 47990  826097 1
## 47991  826098 1
## 47992  826099 1
## 47993  826100 1
## 47994  826101 1
## 47995  826102 1
## 47996  826103 1
## 47997  826104 1
## 47998  826105 1
## 47999  826106 1
## 48000  826107 1
## 48001  826108 1
## 48002  826109 1
## 48003  826110 1
## 48004  826111 1
## 48005  826112 1
## 48006  826113 1
## 48007  826114 1
## 48008  826115 1
## 48009  826116 1
## 48010  826117 1
## 48011  826118 1
## 48012  826119 1
## 48013  826120 1
## 48014  826121 1
## 48015  826122 1
## 48016  826123 1
## 48017  826124 1
## 48018  826125 1
## 48019  826126 1
## 48020  826127 1
## 48021  826128 1
## 48022  826129 1
## 48023  826130 1
## 48024  826131 1
## 48025  826132 1
## 48026  826133 1
## 48027  826134 1
## 48028  826135 1
## 48029  826136 1
## 48030  826137 1
## 48031  826138 1
## 48032  826139 1
## 48033  826140 1
## 48034  826141 1
## 48035  826142 1
## 48036  826143 1
## 48037  826144 1
## 48038  826145 1
## 48039  826146 1
## 48040  826147 1
## 48041  826148 1
## 48042  826149 1
## 48043  826150 1
## 48044  826151 1
## 48045  826152 1
## 48046  826153 1
## 48047  826154 1
## 48048  826155 1
## 48049  826156 1
## 48050  826157 1
## 48051  826158 1
## 48052  826159 1
## 48053  826160 1
## 48054  826161 1
## 48055  826162 1
## 48056  826163 1
## 48057  826164 1
## 48058  826165 1
## 48059  826166 1
## 48060  826167 1
## 48061  826168 1
## 48062  826169 1
## 48063  826170 1
## 48064  826171 1
## 48065  826172 1
## 48066  826173 1
## 48067  826174 1
## 48068  826175 1
## 48069  826176 1
## 48070  826177 1
## 48071  826178 1
## 48072  826179 1
## 48073  826180 1
## 48074  826181 1
## 48075  826182 1
## 48076  826183 1
## 48077  826184 1
## 48078  826185 1
## 48079  826186 1
## 48080  826187 1
## 48081  826188 1
## 48082  826190 1
## 48083  826191 1
## 48084  826192 1
## 48085  826193 1
## 48086  826194 1
## 48087  826195 1
## 48088  826196 1
## 48089  826197 1
## 48090  826198 1
## 48091  826199 1
## 48092  826200 1
## 48093  826201 1
## 48094  826202 1
## 48095  826203 1
## 48096  826204 1
## 48097  826205 1
## 48098  826206 1
## 48099  826207 1
## 48100  826208 1
## 48101  826209 1
## 48102  826210 1
## 48103  826211 1
## 48104  826212 1
## 48105  826213 1
## 48106  826214 1
## 48107  826215 1
## 48108  826216 1
## 48109  826217 1
## 48110  826218 1
## 48111  826219 1
## 48112  826220 1
## 48113  826221 1
## 48114  826222 1
## 48115  826223 1
## 48116  826224 1
## 48117  826225 1
## 48118  826227 1
## 48119  826228 1
## 48120  826229 1
## 48121  826230 1
## 48122  826231 1
## 48123  826232 1
## 48124  826233 1
## 48125  826234 1
## 48126  826235 1
## 48127  826236 1
## 48128  826237 1
## 48129  826238 1
## 48130  826239 1
## 48131  826240 1
## 48132  826241 1
## 48133  826242 1
## 48134  826243 1
## 48135  826244 1
## 48136  826245 1
## 48137  826247 1
## 48138  826248 1
## 48139  826249 1
## 48140  826250 1
## 48141  826251 1
## 48142  826252 1
## 48143  826253 1
## 48144  826254 1
## 48145  826255 1
## 48146  826256 1
## 48147  826257 1
## 48148  826258 1
## 48149  826259 1
## 48150  826260 1
## 48151  826261 1
## 48152  826262 1
## 48153  826263 1
## 48154  826264 1
## 48155  826265 1
## 48156  826266 1
## 48157  826267 1
## 48158  826268 1
## 48159  826269 1
## 48160  826270 1
## 48161  826271 1
## 48162  826272 1
## 48163  826273 1
## 48164  826274 1
## 48165  826275 1
## 48166  826276 1
## 48167  826277 1
## 48168  826278 1
## 48169  826279 1
## 48170  826280 1
## 48171  826281 1
## 48172  826282 1
## 48173  826283 1
## 48174  826284 1
## 48175  826285 1
## 48176  826286 1
## 48177  826287 1
## 48178  826288 1
## 48179  826289 1
## 48180  826290 1
## 48181  826291 1
## 48182  826292 1
## 48183  826293 1
## 48184  826294 1
## 48185  826295 1
## 48186  826296 1
## 48187  826297 1
## 48188  826298 1
## 48189  826299 1
## 48190  826300 1
## 48191  826301 1
## 48192  826302 1
## 48193  826303 1
## 48194  826304 1
## 48195  826305 1
## 48196  826306 1
## 48197  826307 1
## 48198  826308 1
## 48199  826309 1
## 48200  826310 1
## 48201  826311 1
## 48202  826312 1
## 48203  826313 1
## 48204  826314 1
## 48205  826315 1
## 48206  826316 1
## 48207  826317 1
## 48208  826318 1
## 48209  826319 1
## 48210  826320 1
## 48211  826321 1
## 48212  826322 1
## 48213  826323 1
## 48214  826324 1
## 48215  826325 1
## 48216  826326 1
## 48217  826327 1
## 48218  826328 1
## 48219  826329 1
## 48220  826330 1
## 48221  826331 1
## 48222  826332 1
## 48223  826333 1
## 48224  826334 1
## 48225  826336 1
## 48226  826337 1
## 48227  826338 1
## 48228  826339 1
## 48229  826340 1
## 48230  826341 1
## 48231  826342 1
## 48232  826343 1
## 48233  826344 1
## 48234  826345 1
## 48235  826346 1
## 48236  826347 1
## 48237  826348 1
## 48238  826349 1
## 48239  826350 1
## 48240  826351 1
## 48241  826352 1
## 48242  826353 1
## 48243  826354 1
## 48244  826355 1
## 48245  826356 1
## 48246  826357 1
## 48247  826358 1
## 48248  826359 1
## 48249  826360 1
## 48250  826361 1
## 48251  826362 1
## 48252  826363 1
## 48253  826364 1
## 48254  826365 1
## 48255  826366 1
## 48256  826367 1
## 48257  826368 1
## 48258  826369 1
## 48259  826370 1
## 48260  826371 1
## 48261  826372 1
## 48262  826373 1
## 48263  826374 1
## 48264  826375 1
## 48265  826376 1
## 48266  826377 1
## 48267  826378 1
## 48268  826379 1
## 48269  826380 1
## 48270  826381 1
## 48271  826382 1
## 48272  826383 1
## 48273  826384 1
## 48274  826385 1
## 48275  826386 1
## 48276  826387 1
## 48277  826388 1
## 48278  826389 1
## 48279  826390 1
## 48280  826391 1
## 48281  826392 1
## 48282  826393 1
## 48283  826394 1
## 48284  826395 1
## 48285  826396 1
## 48286  826397 1
## 48287  826398 1
## 48288  826399 1
## 48289  826400 1
## 48290  826401 1
## 48291  826402 1
## 48292  826403 1
## 48293  826404 1
## 48294  826405 1
## 48295  826406 1
## 48296  826407 1
## 48297  826408 1
## 48298  826409 1
## 48299  826410 1
## 48300  826411 1
## 48301  826412 1
## 48302  826413 1
## 48303  826414 1
## 48304  826415 1
## 48305  826416 1
## 48306  826417 1
## 48307  826418 1
## 48308  826419 1
## 48309  826420 1
## 48310  826421 1
## 48311  826422 1
## 48312  826423 1
## 48313  826424 1
## 48314  826425 1
## 48315  826426 1
## 48316  826427 1
## 48317  826428 1
## 48318  826429 1
## 48319  826430 1
## 48320  826431 1
## 48321  826432 1
## 48322  826433 1
## 48323  826434 1
## 48324  826435 1
## 48325  826436 1
## 48326  826437 1
## 48327  826438 1
## 48328  826439 1
## 48329  826440 1
## 48330  826441 1
## 48331  826442 1
## 48332  826443 1
## 48333  826444 1
## 48334  826445 1
## 48335  826446 1
## 48336  826447 1
## 48337  826448 1
## 48338  826449 1
## 48339  826450 1
## 48340  826451 1
## 48341  826452 1
## 48342  826453 1
## 48343  826454 1
## 48344  826455 1
## 48345  826456 1
## 48346  826457 1
## 48347  826458 1
## 48348  826459 1
## 48349  826460 1
## 48350  826461 1
## 48351  826462 1
## 48352  826463 1
## 48353  826464 1
## 48354  826465 1
## 48355  826466 1
## 48356  826467 1
## 48357  826468 1
## 48358  826469 1
## 48359  826470 1
## 48360  826471 1
## 48361  826472 1
## 48362  826473 1
## 48363  826474 1
## 48364  826475 1
## 48365  826476 1
## 48366  826477 1
## 48367  826478 1
## 48368  826479 1
## 48369  826480 1
## 48370  826481 1
## 48371  826482 1
## 48372  826483 1
## 48373  826484 1
## 48374  826485 1
## 48375  826486 1
## 48376  826487 1
## 48377  826488 1
## 48378  826489 1
## 48379  826490 1
## 48380  826491 1
## 48381  826492 1
## 48382  826493 1
## 48383  826494 1
## 48384  826495 1
## 48385  826496 1
## 48386  826497 1
## 48387  826498 1
## 48388  826499 1
## 48389  826500 1
## 48390  826501 1
## 48391  826502 1
## 48392  826503 1
## 48393  826504 1
## 48394  826505 1
## 48395  826506 1
## 48396  826507 1
## 48397  826508 1
## 48398  826509 1
## 48399  826510 1
## 48400  826511 1
## 48401  826512 1
## 48402  826513 1
## 48403  826514 1
## 48404  826515 1
## 48405  826516 1
## 48406  826517 1
## 48407  826518 1
## 48408  826519 1
## 48409  826520 1
## 48410  826521 1
## 48411  826522 1
## 48412  826523 1
## 48413  826524 1
## 48414  826525 1
## 48415  826526 1
## 48416  826527 1
## 48417  826528 1
## 48418  826529 1
## 48419  826530 1
## 48420  826531 1
## 48421  826532 1
## 48422  826533 1
## 48423  826534 1
## 48424  826535 1
## 48425  826536 1
## 48426  826537 1
## 48427  826538 1
## 48428  826539 1
## 48429  826540 1
## 48430  826541 1
## 48431  826542 1
## 48432  826543 1
## 48433  826544 1
## 48434  826545 1
## 48435  826547 1
## 48436  826548 1
## 48437  826549 1
## 48438  826550 1
## 48439  826551 1
## 48440  826552 1
## 48441  826553 1
## 48442  826554 1
## 48443  826555 1
## 48444  826556 1
## 48445  826557 1
## 48446  826558 1
## 48447  826559 1
## 48448  826560 1
## 48449  826561 1
## 48450  826562 1
## 48451  826563 1
## 48452  826564 1
## 48453  826565 1
## 48454  826566 1
## 48455  826568 1
## 48456  826569 1
## 48457  826570 1
## 48458  826571 1
## 48459  826572 1
## 48460  826573 1
## 48461  826574 1
## 48462  826575 1
## 48463  826577 1
## 48464  826578 1
## 48465  826579 1
## 48466  826580 1
## 48467  826581 1
## 48468  826582 1
## 48469  826583 1
## 48470  826584 1
## 48471  826585 1
## 48472  826586 1
## 48473  826587 1
## 48474  826588 1
## 48475  826589 1
## 48476  826590 1
## 48477  826591 1
## 48478  826592 1
## 48479  826593 1
## 48480  826594 1
## 48481  826595 1
## 48482  826596 1
## 48483  826597 1
## 48484  826598 1
## 48485  826599 1
## 48486  826600 1
## 48487  826601 1
## 48488  826602 1
## 48489  826603 1
## 48490  826604 1
## 48491  826605 1
## 48492  826606 1
## 48493  826607 1
## 48494  826608 1
## 48495  826610 1
## 48496  826611 1
## 48497  826612 1
## 48498  826613 1
## 48499  826614 1
## 48500  826615 1
## 48501  826616 1
## 48502  826617 1
## 48503  826618 1
## 48504  826619 1
## 48505  826620 1
## 48506  826621 1
## 48507  826622 1
## 48508  826623 1
## 48509  826624 1
## 48510  826625 1
## 48511  826626 1
## 48512  826627 1
## 48513  826628 1
## 48514  826629 1
## 48515  826630 1
## 48516  826631 1
## 48517  826632 1
## 48518  826633 1
## 48519  826634 1
## 48520  826635 1
## 48521  826636 1
## 48522  826637 1
## 48523  826638 1
## 48524  826639 1
## 48525  826640 1
## 48526  826641 1
## 48527  826642 1
## 48528  826643 1
## 48529  826644 1
## 48530  826645 1
## 48531  826646 1
## 48532  826647 1
## 48533  826648 1
## 48534  826649 1
## 48535  826650 1
## 48536  826651 1
## 48537  826652 1
## 48538  826653 1
## 48539  826654 1
## 48540  826655 1
## 48541  826656 1
## 48542  826657 1
## 48543  826658 1
## 48544  826659 1
## 48545  826660 1
## 48546  826661 1
## 48547  826662 1
## 48548  826663 1
## 48549  826664 1
## 48550  826665 1
## 48551  826666 1
## 48552  826667 1
## 48553  826668 1
## 48554  826669 1
## 48555  826670 1
## 48556  826671 1
## 48557  826672 1
## 48558  826673 1
## 48559  826674 1
## 48560  826675 1
## 48561  826676 1
## 48562  826677 1
## 48563  826678 1
## 48564  826679 1
## 48565  826680 1
## 48566  826681 1
## 48567  826682 1
## 48568  826683 1
## 48569  826684 1
## 48570  826685 1
## 48571  826686 1
## 48572  826687 1
## 48573  826688 1
## 48574  826689 1
## 48575  826690 1
## 48576  826691 1
## 48577  826692 1
## 48578  826693 1
## 48579  826695 1
## 48580  826696 1
## 48581  826697 1
## 48582  826698 1
## 48583  826699 1
## 48584  826700 1
## 48585  826701 1
## 48586  826702 1
## 48587  826703 1
## 48588  826704 1
## 48589  826705 1
## 48590  826706 1
## 48591  826707 1
## 48592  826708 1
## 48593  826709 1
## 48594  826710 1
## 48595  826711 1
## 48596  826712 1
## 48597  826713 1
## 48598  826714 1
## 48599  826715 1
## 48600  826716 1
## 48601  826717 1
## 48602  826718 1
## 48603  826719 1
## 48604  826720 1
## 48605  826721 1
## 48606  826722 1
## 48607  826723 1
## 48608  826724 1
## 48609  826725 1
## 48610  826726 1
## 48611  826727 1
## 48612  826728 1
## 48613  826729 1
## 48614  826730 1
## 48615  826731 1
## 48616  826732 1
## 48617  826733 1
## 48618  826734 1
## 48619  826735 1
## 48620  826736 1
## 48621  826737 1
## 48622  826738 1
## 48623  826739 1
## 48624  826740 1
## 48625  826741 1
## 48626  826742 1
## 48627  826743 1
## 48628  826744 1
## 48629  826745 1
## 48630  826746 1
## 48631  826747 1
## 48632  826748 1
## 48633  826749 1
## 48634  826750 1
## 48635  826751 1
## 48636  826752 1
## 48637  826753 1
## 48638  826754 1
## 48639  826755 1
## 48640  826756 1
## 48641  826757 1
## 48642  826758 1
## 48643  826759 1
## 48644  826760 1
## 48645  826761 1
## 48646  826762 1
## 48647  826763 1
## 48648  826764 1
## 48649  826765 1
## 48650  826766 1
## 48651  826767 1
## 48652  826768 1
## 48653  826769 1
## 48654  826770 1
## 48655  826771 1
## 48656  826772 1
## 48657  826773 1
## 48658  826774 1
## 48659  826775 1
## 48660  826776 1
## 48661  826777 1
## 48662  826778 1
## 48663  826779 1
## 48664  826780 1
## 48665  826781 1
## 48666  826782 1
## 48667  826783 1
## 48668  826784 1
## 48669  826785 1
## 48670  826786 1
## 48671  826787 1
## 48672  826788 1
## 48673  826789 1
## 48674  826790 1
## 48675  826791 1
## 48676  826792 1
## 48677  826793 1
## 48678  826794 1
## 48679  826795 1
## 48680  826796 1
## 48681  826797 1
## 48682  826798 1
## 48683  826799 1
## 48684  826800 1
## 48685  826801 1
## 48686  826802 1
## 48687  826804 1
## 48688  826805 1
## 48689  826806 1
## 48690  826807 1
## 48691  826808 1
## 48692  826809 1
## 48693  826810 1
## 48694  826811 1
## 48695  826812 1
## 48696  826813 1
## 48697  826814 1
## 48698  826815 1
## 48699  826816 1
## 48700  826817 1
## 48701  826818 1
## 48702  826819 1
## 48703  826820 1
## 48704  826821 1
## 48705  826822 1
## 48706  826823 1
## 48707  826824 1
## 48708  826825 1
## 48709  826826 1
## 48710  826827 1
## 48711  826828 1
## 48712  826830 1
## 48713  826831 1
## 48714  826832 1
## 48715  826833 1
## 48716  826834 1
## 48717  826835 1
## 48718  826836 1
## 48719  826837 1
## 48720  826838 1
## 48721  826839 1
## 48722  826840 1
## 48723  826841 1
## 48724  826842 1
## 48725  826843 1
## 48726  826844 1
## 48727  826846 1
## 48728  826847 1
## 48729  826848 1
## 48730  826849 1
## 48731  826850 1
## 48732  826851 1
## 48733  826852 1
## 48734  826853 1
## 48735  826854 1
## 48736  826855 1
## 48737  826856 1
## 48738  826857 1
## 48739  826858 1
## 48740  826859 1
## 48741  826860 1
## 48742  826861 1
## 48743  826862 1
## 48744  826863 1
## 48745  826864 1
## 48746  826865 1
## 48747  826866 1
## 48748  826867 1
## 48749  826868 1
## 48750  826869 1
## 48751  826870 1
## 48752  826871 1
## 48753  826872 1
## 48754  826873 1
## 48755  826874 1
## 48756  826875 1
## 48757  826876 1
## 48758  826877 1
## 48759  826878 1
## 48760  826879 1
## 48761  826880 1
## 48762  826881 1
## 48763  826882 1
## 48764  826883 1
## 48765  826884 1
## 48766  826885 1
## 48767  826886 1
## 48768  826887 1
## 48769  826888 1
## 48770  826889 1
## 48771  826890 1
## 48772  826892 1
## 48773  826893 1
## 48774  826894 1
## 48775  826895 1
## 48776  826896 1
## 48777  826897 1
## 48778  826898 1
## 48779  826899 1
## 48780  826900 1
## 48781  826901 1
## 48782  826902 1
## 48783  826903 1
## 48784  826904 1
## 48785  826905 1
## 48786  826906 1
## 48787  826907 1
## 48788  826908 1
## 48789  826909 1
## 48790  826910 1
## 48791  826911 1
## 48792  826912 1
## 48793  826913 1
## 48794  826914 1
## 48795  826915 1
## 48796  826916 1
## 48797  826917 1
## 48798  826918 1
## 48799  826919 1
## 48800  826920 1
## 48801  826921 1
## 48802  826922 1
## 48803  826923 1
## 48804  826924 1
## 48805  826925 1
## 48806  826926 1
## 48807  826927 1
## 48808  826928 1
## 48809  826929 1
## 48810  826930 1
## 48811  826931 1
## 48812  826932 1
## 48813  826933 1
## 48814  826934 1
## 48815  826935 1
## 48816  826936 1
## 48817  826937 1
## 48818  826938 1
## 48819  826939 1
## 48820  826940 1
## 48821  826941 1
## 48822  826942 1
## 48823  826943 1
## 48824  826944 1
## 48825  826945 1
## 48826  826946 1
## 48827  826947 1
## 48828  826948 1
## 48829  826949 1
## 48830  826950 1
## 48831  826951 1
## 48832  826952 1
## 48833  826953 1
## 48834  826954 1
## 48835  826955 1
## 48836  826956 1
## 48837  826957 1
## 48838  826958 1
## 48839  826959 1
## 48840  826960 1
## 48841  826961 1
## 48842  826962 1
## 48843  826963 1
## 48844  826964 1
## 48845  826965 1
## 48846  826966 1
## 48847  826967 1
## 48848  826968 1
## 48849  826969 1
## 48850  826970 1
## 48851  826971 1
## 48852  826972 1
## 48853  826973 1
## 48854  826974 1
## 48855  826975 1
## 48856  826976 1
## 48857  826977 1
## 48858  826978 1
## 48859  826979 1
## 48860  826980 1
## 48861  826981 1
## 48862  826982 1
## 48863  826983 1
## 48864  826984 1
## 48865  826985 1
## 48866  826986 1
## 48867  826987 1
## 48868  826988 1
## 48869  826989 1
## 48870  826990 1
## 48871  826991 1
## 48872  826992 1
## 48873  826993 1
## 48874  826994 1
## 48875  826995 1
## 48876  826996 1
## 48877  826997 1
## 48878  826998 1
## 48879  826999 1
## 48880  827000 1
## 48881  827001 1
## 48882  827002 1
## 48883  827003 1
## 48884  827005 1
## 48885  827006 1
## 48886  827007 1
## 48887  827008 1
## 48888  827009 1
## 48889  827010 1
## 48890  827012 1
## 48891  827013 1
## 48892  827014 1
## 48893  827015 1
## 48894  827016 1
## 48895  827017 1
## 48896  827018 1
## 48897  827019 1
## 48898  827020 1
## 48899  827021 1
## 48900  827022 1
## 48901  827023 1
## 48902  827024 1
## 48903  827025 1
## 48904  827026 1
## 48905  827027 1
## 48906  827028 1
## 48907  827029 1
## 48908  827030 1
## 48909  827031 1
## 48910  827032 1
## 48911  827034 1
## 48912  827035 1
## 48913  827036 1
## 48914  827037 1
## 48915  827038 1
## 48916  827039 1
## 48917  827040 1
## 48918  827041 1
## 48919  827042 1
## 48920  827043 1
## 48921  827044 1
## 48922  827045 1
## 48923  827046 1
## 48924  827047 1
## 48925  827048 1
## 48926  827049 1
## 48927  827050 1
## 48928  827051 1
## 48929  827052 1
## 48930  827053 1
## 48931  827054 1
## 48932  827055 1
## 48933  827056 1
## 48934  827057 1
## 48935  827058 1
## 48936  827059 1
## 48937  827060 1
## 48938  827061 1
## 48939  827062 1
## 48940  827063 1
## 48941  827064 1
## 48942  827065 1
## 48943  827066 1
## 48944  827067 1
## 48945  827068 1
## 48946  827069 1
## 48947  827070 1
## 48948  827071 1
## 48949  827072 1
## 48950  827073 1
## 48951  827074 1
## 48952  827075 1
## 48953  827077 1
## 48954  827078 1
## 48955  827079 1
## 48956  827080 1
## 48957  827081 1
## 48958  827082 1
## 48959  827084 1
## 48960  827085 1
## 48961  827086 1
## 48962  827087 1
## 48963  827088 1
## 48964  827089 1
## 48965  827091 1
## 48966  827092 1
## 48967  827093 1
## 48968  827095 1
## 48969  827096 1
## 48970  827097 1
## 48971  827098 1
## 48972  827099 1
## 48973  827100 1
## 48974  827101 1
## 48975  827102 1
## 48976  827103 1
## 48977  827104 1
## 48978  827105 1
## 48979  827106 1
## 48980  827107 1
## 48981  827108 1
## 48982  827109 1
## 48983  827110 1
## 48984  827111 1
## 48985  827112 1
## 48986  827113 1
## 48987  827114 1
## 48988  827115 1
## 48989  827116 1
## 48990  827117 1
## 48991  827118 1
## 48992  827119 1
## 48993  827120 1
## 48994  827121 1
## 48995  827122 1
## 48996  827123 1
## 48997  827124 1
## 48998  827126 1
## 48999  827127 1
## 49000  827128 1
## 49001  827129 1
## 49002  827130 1
## 49003  827131 1
## 49004  827132 1
## 49005  827133 1
## 49006  827134 1
## 49007  827135 1
## 49008  827136 1
## 49009  827137 1
## 49010  827138 1
## 49011  827139 1
## 49012  827140 1
## 49013  827141 1
## 49014  827142 1
## 49015  827143 1
## 49016  827144 1
## 49017  827145 1
## 49018  827146 1
## 49019  827147 1
## 49020  827148 1
## 49021  827149 1
## 49022  827150 1
## 49023  827151 1
## 49024  827152 1
## 49025  827153 1
## 49026  827154 1
## 49027  827155 1
## 49028  827156 1
## 49029  827157 1
## 49030  827158 1
## 49031  827159 1
## 49032  827160 1
## 49033  827161 1
## 49034  827162 1
## 49035  827163 1
## 49036  827164 1
## 49037  827165 1
## 49038  827166 1
## 49039  827167 1
## 49040  827168 1
## 49041  827169 1
## 49042  827170 1
## 49043  827171 1
## 49044  827172 1
## 49045  827173 1
## 49046  827174 1
## 49047  827175 1
## 49048  827176 1
## 49049  827177 1
## 49050  827178 1
## 49051  827179 1
## 49052  827180 1
## 49053  827181 1
## 49054  827182 1
## 49055  827183 1
## 49056  827185 1
## 49057  827186 1
## 49058  827187 1
## 49059  827188 1
## 49060  827189 1
## 49061  827190 1
## 49062  827191 1
## 49063  827192 1
## 49064  827193 1
## 49065  827194 1
## 49066  827195 1
## 49067  827196 1
## 49068  827197 1
## 49069  827198 1
## 49070  827199 1
## 49071  827200 1
## 49072  827201 1
## 49073  827202 1
## 49074  827203 1
## 49075  827204 1
## 49076  827205 1
## 49077  827206 1
## 49078  827207 1
## 49079  827208 1
## 49080  827209 1
## 49081  827210 1
## 49082  827211 1
## 49083  827212 1
## 49084  827213 1
## 49085  827214 1
## 49086  827215 1
## 49087  827216 1
## 49088  827217 1
## 49089  827218 1
## 49090  827219 1
## 49091  827220 1
## 49092  827221 1
## 49093  827222 1
## 49094  827223 1
## 49095  827225 1
## 49096  827226 1
## 49097  827227 1
## 49098  827228 1
## 49099  827229 1
## 49100  827230 1
## 49101  827231 1
## 49102  827232 1
## 49103  827233 1
## 49104  827234 1
## 49105  827235 1
## 49106  827236 1
## 49107  827237 1
## 49108  827238 1
## 49109  827239 1
## 49110  827240 1
## 49111  827241 1
## 49112  827242 1
## 49113  827243 1
## 49114  827244 1
## 49115  827245 1
## 49116  827246 1
## 49117  827247 1
## 49118  827248 1
## 49119  827249 1
## 49120  827250 1
## 49121  827251 1
## 49122  827252 1
## 49123  827253 1
## 49124  827254 1
## 49125  827255 1
## 49126  827256 1
## 49127  827257 1
## 49128  827258 1
## 49129  827259 1
## 49130  827260 1
## 49131  827261 1
## 49132  827262 1
## 49133  827263 1
## 49134  827264 1
## 49135  827265 1
## 49136  827266 1
## 49137  827267 1
## 49138  827268 1
## 49139  827269 1
## 49140  827270 1
## 49141  827272 1
## 49142  827273 1
## 49143  827274 1
## 49144  827275 1
## 49145  827276 1
## 49146  827277 1
## 49147  827278 1
## 49148  827279 1
## 49149  827280 1
## 49150  827281 1
## 49151  827282 1
## 49152  827283 1
## 49153  827284 1
## 49154  827285 1
## 49155  827286 1
## 49156  827287 1
## 49157  827288 1
## 49158  827289 1
## 49159  827290 1
## 49160  827291 1
## 49161  827292 1
## 49162  827293 1
## 49163  827294 1
## 49164  827295 1
## 49165  827297 1
## 49166  827298 1
## 49167  827299 1
## 49168  827300 1
## 49169  827301 1
## 49170  827302 1
## 49171  827303 1
## 49172  827304 1
## 49173  827305 1
## 49174  827306 1
## 49175  827308 1
## 49176  827309 1
## 49177  827310 1
## 49178  827311 1
## 49179  827312 1
## 49180  827313 1
## 49181  827314 1
## 49182  827315 1
## 49183  827316 1
## 49184  827317 1
## 49185  827318 1
## 49186  827319 1
## 49187  827320 1
## 49188  827321 1
## 49189  827322 1
## 49190  827323 1
## 49191  827324 1
## 49192  827325 1
## 49193  827326 1
## 49194  827327 1
## 49195  827329 1
## 49196  827330 1
## 49197  827331 1
## 49198  827332 1
## 49199  827333 1
## 49200  827334 1
## 49201  827335 1
## 49202  827336 1
## 49203  827337 1
## 49204  827338 1
## 49205  827339 1
## 49206  827340 1
## 49207  827341 1
## 49208  827342 1
## 49209  827343 1
## 49210  827344 1
## 49211  827345 1
## 49212  827346 1
## 49213  827347 1
## 49214  827348 1
## 49215  827349 1
## 49216  827350 1
## 49217  827351 1
## 49218  827352 1
## 49219  827353 1
## 49220  827354 1
## 49221  827355 1
## 49222  827356 1
## 49223  827357 1
## 49224  827358 1
## 49225  827359 1
## 49226  827360 1
## 49227  827361 1
## 49228  827362 1
## 49229  827363 1
## 49230  827364 1
## 49231  827365 1
## 49232  827366 1
## 49233  827367 1
## 49234  827368 1
## 49235  827369 1
## 49236  827370 1
## 49237  827371 1
## 49238  827372 1
## 49239  827373 1
## 49240  827374 1
## 49241  827375 1
## 49242  827376 1
## 49243  827377 1
## 49244  827378 1
## 49245  827379 1
## 49246  827380 1
## 49247  827381 1
## 49248  827382 1
## 49249  827383 1
## 49250  827384 1
## 49251  827385 1
## 49252  827386 1
## 49253  827387 1
## 49254  827388 1
## 49255  827389 1
## 49256  827390 1
## 49257  827391 1
## 49258  827392 1
## 49259  827393 1
## 49260  827394 1
## 49261  827395 1
## 49262  827396 1
## 49263  827397 1
## 49264  827398 1
## 49265  827399 1
## 49266  827401 1
## 49267  827402 1
## 49268  827403 1
## 49269  827404 1
## 49270  827405 1
## 49271  827406 1
## 49272  827407 1
## 49273  827408 1
## 49274  827409 1
## 49275  827410 1
## 49276  827411 1
## 49277  827412 1
## 49278  827413 1
## 49279  827414 1
## 49280  827415 1
## 49281  827416 1
## 49282  827417 1
## 49283  827418 1
## 49284  827419 1
## 49285  827420 1
## 49286  827421 1
## 49287  827422 1
## 49288  827423 1
## 49289  827424 1
## 49290  827425 1
## 49291  827426 1
## 49292  827427 1
## 49293  827428 1
## 49294  827429 1
## 49295  827430 1
## 49296  827431 1
## 49297  827432 1
## 49298  827433 1
## 49299  827434 1
## 49300  827435 1
## 49301  827436 1
## 49302  827437 1
## 49303  827438 1
## 49304  827439 1
## 49305  827440 1
## 49306  827441 1
## 49307  827442 1
## 49308  827443 1
## 49309  827444 1
## 49310  827445 1
## 49311  827446 1
## 49312  827447 1
## 49313  827448 1
## 49314  827449 1
## 49315  827450 1
## 49316  827451 1
## 49317  827452 1
## 49318  827453 1
## 49319  827454 1
## 49320  827455 1
## 49321  827456 1
## 49322  827457 1
## 49323  827458 1
## 49324  827459 1
## 49325  827460 1
## 49326  827461 1
## 49327  827462 1
## 49328  827463 1
## 49329  827464 1
## 49330  827465 1
## 49331  827466 1
## 49332  827467 1
## 49333  827468 1
## 49334  827469 1
## 49335  827470 1
## 49336  827471 1
## 49337  827472 1
## 49338  827473 1
## 49339  827474 1
## 49340  827475 1
## 49341  827476 1
## 49342  827477 1
## 49343  827478 1
## 49344  827479 1
## 49345  827480 1
## 49346  827481 1
## 49347  827482 1
## 49348  827483 1
## 49349  827484 1
## 49350  827485 1
## 49351  827486 1
## 49352  827487 1
## 49353  827488 1
## 49354  827489 1
## 49355  827490 1
## 49356  827491 1
## 49357  827492 1
## 49358  827493 1
## 49359  827494 1
## 49360  827495 1
## 49361  827496 1
## 49362  827497 1
## 49363  827498 1
## 49364  827499 1
## 49365  827500 1
## 49366  827501 1
## 49367  827502 1
## 49368  827503 1
## 49369  827504 1
## 49370  827505 1
## 49371  827506 1
## 49372  827507 1
## 49373  827508 1
## 49374  827509 1
## 49375  827510 1
## 49376  827511 1
## 49377  827512 1
## 49378  827513 1
## 49379  827514 1
## 49380  827515 1
## 49381  827516 1
## 49382  827517 1
## 49383  827518 1
## 49384  827519 1
## 49385  827520 1
## 49386  827521 1
## 49387  827522 1
## 49388  827523 1
## 49389  827525 1
## 49390  827526 1
## 49391  827527 1
## 49392  827528 1
## 49393  827529 1
## 49394  827530 1
## 49395  827531 1
## 49396  827532 1
## 49397  827533 1
## 49398  827534 1
## 49399  827535 1
## 49400  827536 1
## 49401  827537 1
## 49402  827538 1
## 49403  827539 1
## 49404  827540 1
## 49405  827541 1
## 49406  827542 1
## 49407  827543 1
## 49408  827544 1
## 49409  827545 1
## 49410  827546 1
## 49411  827547 1
## 49412  827548 1
## 49413  827549 1
## 49414  827550 1
## 49415  827552 1
## 49416  827553 1
## 49417  827554 1
## 49418  827555 1
## 49419  827556 1
## 49420  827557 1
## 49421  827558 1
## 49422  827559 1
## 49423  827560 1
## 49424  827561 1
## 49425  827562 1
## 49426  827563 1
## 49427  827564 1
## 49428  827565 1
## 49429  827566 1
## 49430  827567 1
## 49431  827568 1
## 49432  827570 1
## 49433  827571 1
## 49434  827572 1
## 49435  827573 1
## 49436  827574 1
## 49437  827575 1
## 49438  827576 1
## 49439  827577 1
## 49440  827578 1
## 49441  827579 1
## 49442  827580 1
## 49443  827581 1
## 49444  827582 1
## 49445  827583 1
## 49446  827584 1
## 49447  827585 1
## 49448  827586 1
## 49449  827587 1
## 49450  827588 1
## 49451  827589 1
## 49452  827590 1
## 49453  827591 1
## 49454  827592 1
## 49455  827593 1
## 49456  827595 1
## 49457  827596 1
## 49458  827597 1
## 49459  827598 1
## 49460  827599 1
## 49461  827600 1
## 49462  827602 1
## 49463  827603 1
## 49464  827604 1
## 49465  827606 1
## 49466  827607 1
## 49467  827608 1
## 49468  827609 1
## 49469  827610 1
## 49470  827611 1
## 49471  827612 1
## 49472  827613 1
## 49473  827614 1
## 49474  827615 1
## 49475  827617 1
## 49476  827618 1
## 49477  827620 1
## 49478  827621 1
## 49479  827622 1
## 49480  827623 1
## 49481  827624 1
## 49482  827625 1
## 49483  827626 1
## 49484  827627 1
## 49485  827628 1
## 49486  827629 1
## 49487  827630 1
## 49488  827631 1
## 49489  827632 1
## 49490  827633 1
## 49491  827634 1
## 49492  827635 1
## 49493  827636 1
## 49494  827637 1
## 49495  827638 1
## 49496  827639 1
## 49497  827640 1
## 49498  827641 1
## 49499  827642 1
## 49500  827643 1
## 49501  827644 1
## 49502  827645 1
## 49503  827646 1
## 49504  827647 1
## 49505  827648 1
## 49506  827649 1
## 49507  827650 1
## 49508  827651 1
## 49509  827652 1
## 49510  827653 1
## 49511  827654 1
## 49512  827655 1
## 49513  827656 1
## 49514  827657 1
## 49515  827658 1
## 49516  827659 1
## 49517  827660 1
## 49518  827661 1
## 49519  827662 1
## 49520  827663 1
## 49521  827664 1
## 49522  827665 1
## 49523  827666 1
## 49524  827667 1
## 49525  827668 1
## 49526  827669 1
## 49527  827670 1
## 49528  827671 1
## 49529  827672 1
## 49530  827673 1
## 49531  827674 1
## 49532  827675 1
## 49533  827676 1
## 49534  827677 1
## 49535  827678 1
## 49536  827679 1
## 49537  827680 1
## 49538  827681 1
## 49539  827682 1
## 49540  827683 1
## 49541  827684 1
## 49542  827685 1
## 49543  827686 1
## 49544  827687 1
## 49545  827688 1
## 49546  827689 1
## 49547  827690 1
## 49548  827691 1
## 49549  827692 1
## 49550  827693 1
## 49551  827694 1
## 49552  827695 1
## 49553  827696 1
## 49554  827697 1
## 49555  827698 1
## 49556  827699 1
## 49557  827700 1
## 49558  827701 1
## 49559  827702 1
## 49560  827703 1
## 49561  827704 1
## 49562  827705 1
## 49563  827706 1
## 49564  827707 1
## 49565  827708 1
## 49566  827709 1
## 49567  827710 1
## 49568  827711 1
## 49569  827712 1
## 49570  827713 1
## 49571  827714 1
## 49572  827716 1
## 49573  827717 1
## 49574  827718 1
## 49575  827719 1
## 49576  827720 1
## 49577  827722 1
## 49578  827723 1
## 49579  827724 1
## 49580  827725 1
## 49581  827726 1
## 49582  827727 1
## 49583  827728 1
## 49584  827729 1
## 49585  827730 1
## 49586  827731 1
## 49587  827733 1
## 49588  827734 1
## 49589  827735 1
## 49590  827736 1
## 49591  827737 1
## 49592  827738 1
## 49593  827739 1
## 49594  827740 1
## 49595  827741 1
## 49596  827742 1
## 49597  827743 1
## 49598  827744 1
## 49599  827745 1
## 49600  827746 1
## 49601  827747 1
## 49602  827748 1
## 49603  827749 1
## 49604  827750 1
## 49605  827751 1
## 49606  827752 1
## 49607  827753 1
## 49608  827754 1
## 49609  827755 1
## 49610  827756 1
## 49611  827757 1
## 49612  827758 1
## 49613  827759 1
## 49614  827760 1
## 49615  827761 1
## 49616  827762 1
## 49617  827763 1
## 49618  827764 1
## 49619  827765 1
## 49620  827766 1
## 49621  827767 1
## 49622  827768 1
## 49623  827769 1
## 49624  827770 1
## 49625  827771 1
## 49626  827772 1
## 49627  827773 1
## 49628  827774 1
## 49629  827775 1
## 49630  827776 1
## 49631  827777 1
## 49632  827778 1
## 49633  827779 1
## 49634  827780 1
## 49635  827781 1
## 49636  827782 1
## 49637  827783 1
## 49638  827784 1
## 49639  827785 1
## 49640  827786 1
## 49641  827787 1
## 49642  827788 1
## 49643  827789 1
## 49644  827790 1
## 49645  827791 1
## 49646  827792 1
## 49647  827793 1
## 49648  827794 1
## 49649  827795 1
## 49650  827796 1
## 49651  827797 1
## 49652  827798 1
## 49653  827799 1
## 49654  827800 1
## 49655  827801 1
## 49656  827802 1
## 49657  827803 1
## 49658  827804 1
## 49659  827805 1
## 49660  827806 1
## 49661  827807 1
## 49662  827808 1
## 49663  827809 1
## 49664  827810 1
## 49665  827811 1
## 49666  827812 1
## 49667  827813 1
## 49668  827814 1
## 49669  827815 1
## 49670  827816 1
## 49671  827817 1
## 49672  827818 1
## 49673  827819 1
## 49674  827820 1
## 49675  827821 1
## 49676  827822 1
## 49677  827823 1
## 49678  827824 1
## 49679  827825 1
## 49680  827826 1
## 49681  827827 1
## 49682  827828 1
## 49683  827829 1
## 49684  827830 1
## 49685  827831 1
## 49686  827832 1
## 49687  827833 1
## 49688  827834 1
## 49689  827835 1
## 49690  827836 1
## 49691  827837 1
## 49692  827839 1
## 49693  827840 1
## 49694  827841 1
## 49695  827842 1
## 49696  827843 1
## 49697  827844 1
## 49698  827845 1
## 49699  827846 1
## 49700  827847 1
## 49701  827848 1
## 49702  827849 1
## 49703  827850 1
## 49704  827851 1
## 49705  827854 1
## 49706  827855 1
## 49707  827856 1
## 49708  827857 1
## 49709  827858 1
## 49710  827859 1
## 49711  827860 1
## 49712  827861 1
## 49713  827862 1
## 49714  827863 1
## 49715  827864 1
## 49716  827865 1
## 49717  827866 1
## 49718  827867 1
## 49719  827868 1
## 49720  827869 1
## 49721  827870 1
## 49722  827871 1
## 49723  827872 1
## 49724  827873 1
## 49725  827874 1
## 49726  827875 1
## 49727  827876 1
## 49728  827877 1
## 49729  827878 1
## 49730  827879 1
## 49731  827880 1
## 49732  827881 1
## 49733  827882 1
## 49734  827883 1
## 49735  827884 1
## 49736  827885 1
## 49737  827886 1
## 49738  827887 1
## 49739  827888 1
## 49740  827889 1
## 49741  827890 1
## 49742  827891 1
## 49743  827892 1
## 49744  827893 1
## 49745  827894 1
## 49746  827895 1
## 49747  827896 1
## 49748  827897 1
## 49749  827898 1
## 49750  827899 1
## 49751  827900 1
## 49752  827901 1
## 49753  827902 1
## 49754  827903 1
## 49755  827904 1
## 49756  827905 1
## 49757  827906 1
## 49758  827907 1
## 49759  827908 1
## 49760  827909 1
## 49761  827910 1
## 49762  827911 1
## 49763  827912 1
## 49764  827913 1
## 49765  827914 1
## 49766  827915 1
## 49767  827916 1
## 49768  827917 1
## 49769  827918 1
## 49770  827919 1
## 49771  827920 1
## 49772  827921 1
## 49773  827922 1
## 49774  827923 1
## 49775  827924 1
## 49776  827925 1
## 49777  827926 1
## 49778  827927 1
## 49779  827928 1
## 49780  827929 1
## 49781  827930 1
## 49782  827931 1
## 49783  827932 1
## 49784  827933 1
## 49785  827934 1
## 49786  827935 1
## 49787  827936 1
## 49788  827937 1
## 49789  827938 1
## 49790  827939 1
## 49791  827940 1
## 49792  827941 1
## 49793  827942 1
## 49794  827943 1
## 49795  827944 1
## 49796  827945 1
## 49797  827946 1
## 49798  827947 1
## 49799  827948 1
## 49800  827949 1
## 49801  827950 1
## 49802  827951 1
## 49803  827952 1
## 49804  827953 1
## 49805  827954 1
## 49806  827955 1
## 49807  827956 1
## 49808  827957 1
## 49809  827958 1
## 49810  827959 1
## 49811  827960 1
## 49812  827961 1
## 49813  827962 1
## 49814  827963 1
## 49815  827964 1
## 49816  827965 1
## 49817  827966 1
## 49818  827967 1
## 49819  827968 1
## 49820  827969 1
## 49821  827972 1
## 49822  827973 1
## 49823  827974 1
## 49824  827975 1
## 49825  827976 1
## 49826  827977 1
## 49827  827978 1
## 49828  827979 1
## 49829  827980 1
## 49830  827981 1
## 49831  827982 1
## 49832  827983 1
## 49833  827984 1
## 49834  827986 1
## 49835  827987 1
## 49836  827988 1
## 49837  827989 1
## 49838  827990 1
## 49839  827991 1
## 49840  827992 1
## 49841  827993 1
## 49842  827994 1
## 49843  827995 1
## 49844  827996 1
## 49845  827997 1
## 49846  827998 1
## 49847  827999 1
## 49848  828000 1
## 49849  828001 1
## 49850  828003 1
## 49851  828004 1
## 49852  828005 1
## 49853  828006 1
## 49854  828007 1
## 49855  828008 1
## 49856  828009 1
## 49857  828010 1
## 49858  828011 1
## 49859  828012 1
## 49860  828013 1
## 49861  828014 1
## 49862  828015 1
## 49863  828016 1
## 49864  828017 1
## 49865  828018 1
## 49866  828019 1
## 49867  828020 1
## 49868  828021 1
## 49869  828022 1
## 49870  828023 1
## 49871  828024 1
## 49872  828025 1
## 49873  828026 1
## 49874  828027 1
## 49875  828028 1
## 49876  828029 1
## 49877  828030 1
## 49878  828031 1
## 49879  828032 1
## 49880  828033 1
## 49881  828034 1
## 49882  828035 1
## 49883  828036 1
## 49884  828037 1
## 49885  828038 1
## 49886  828039 1
## 49887  828040 1
## 49888  828041 1
## 49889  828042 1
## 49890  828043 1
## 49891  828044 1
## 49892  828045 1
## 49893  828046 1
## 49894  828047 1
## 49895  828048 1
## 49896  828049 1
## 49897  828050 1
## 49898  828051 1
## 49899  828052 1
## 49900  828053 1
## 49901  828054 1
## 49902  828055 1
## 49903  828056 1
## 49904  828057 1
## 49905  828058 1
## 49906  828059 1
## 49907  828060 1
## 49908  828061 1
## 49909  828062 1
## 49910  828063 1
## 49911  828064 1
## 49912  828065 1
## 49913  828066 1
## 49914  828067 1
## 49915  828068 1
## 49916  828069 1
## 49917  828070 1
## 49918  828071 1
## 49919  828072 1
## 49920  828073 1
## 49921  828074 1
## 49922  828075 1
## 49923  828076 1
## 49924  828077 1
## 49925  828078 1
## 49926  828079 1
## 49927  828080 1
## 49928  828081 1
## 49929  828082 1
## 49930  828083 1
## 49931  828084 1
## 49932  828085 1
## 49933  828086 1
## 49934  828088 1
## 49935  828089 1
## 49936  828090 1
## 49937  828091 1
## 49938  828092 1
## 49939  828093 1
## 49940  828094 1
## 49941  828095 1
## 49942  828096 1
## 49943  828097 1
## 49944  828098 1
## 49945  828099 1
## 49946  828100 1
## 49947  828102 1
## 49948  828103 1
## 49949  828104 1
## 49950  828105 1
## 49951  828106 1
## 49952  828107 1
## 49953  828108 1
## 49954  828109 1
## 49955  828110 1
## 49956  828111 1
## 49957  828112 1
## 49958  828113 1
## 49959  828114 1
## 49960  828115 1
## 49961  828116 1
## 49962  828117 1
## 49963  828118 1
## 49964  828119 1
## 49965  828120 1
## 49966  828121 1
## 49967  828122 1
## 49968  828123 1
## 49969  828124 1
## 49970  828125 1
## 49971  828126 1
## 49972  828127 1
## 49973  828128 1
## 49974  828129 1
## 49975  828130 1
## 49976  828131 1
## 49977  828132 1
## 49978  828133 1
## 49979  828134 1
## 49980  828135 1
## 49981  828136 1
## 49982  828137 1
## 49983  828138 1
## 49984  828139 1
## 49985  828142 1
## 49986  828143 1
## 49987  828144 1
## 49988  828145 1
## 49989  828146 1
## 49990  828147 1
## 49991  828148 1
## 49992  828149 1
## 49993  828150 1
## 49994  828151 1
## 49995  828152 1
## 49996  828153 1
## 49997  828154 1
## 49998  828155 1
## 49999  828156 1
##  [ reached 'max' / getOption("max.print") -- omitted 79319 rows ]
# count(db, BillReviewALE, sort=TRUE)
# count(db, Hospital, sort=TRUE)
# count(db, PhysicianOutpatient, sort=TRUE)
# # (db, Rx, sort=TRUE)
# (db, TotalPaid, sort=TRUE)
# count(db, TotalReserves, sort=TRUE)
# count(db, TotalRecovery, sort=TRUE)
# count(db, IndemnityPaid, sort=TRUE)
# count(db, OtherPaid, sort=TRUE)
count(db, ClaimStatus, sort=TRUE)
##   ClaimStatus      n
## 1           C 129318
count(db, IncidentDate, sort=TRUE)
##      IncidentDate  n
## 1      28/01/2004 74
## 2      01/02/2010 62
## 3      17/04/1996 61
## 4      15/04/1996 59
## 5      30/04/1996 56
## 6      01/05/1996 55
## 7      10/07/1999 55
## 8      18/04/1996 55
## 9      22/04/1996 55
## 10     20/05/1996 54
## 11     31/01/2000 54
## 12     14/05/1996 53
## 13     26/01/2000 53
## 14     01/02/2000 52
## 15     02/04/1996 52
## 16     10/07/1997 51
## 17     16/04/1996 51
## 18     18/07/2006 50
## 19     27/01/2004 50
## 20     07/05/1996 49
## 21     13/10/1997 49
## 22     15/09/2004 49
## 23     26/08/1996 48
## 24     02/05/1996 47
## 25     06/05/1996 47
## 26     10/06/2010 47
## 27     15/05/1996 47
## 28     23/07/1997 47
## 29     07/01/2002 46
## 30     11/09/1996 46
## 31     12/01/2011 46
## 32     13/05/1996 46
## 33     13/05/1998 46
## 34     17/07/2000 46
## 35     29/04/1996 46
## 36     29/07/1996 46
## 37     03/08/2006 45
## 38     06/11/1997 45
## 39     17/06/1996 45
## 40     21/07/2005 45
## 41     21/10/1996 45
## 42     24/06/2008 45
## 43     25/07/1996 45
## 44     01/10/1996 44
## 45     10/04/1996 44
## 46     22/01/2008 44
## 47     25/04/1996 44
## 48     01/04/1996 43
## 49     10/03/1998 43
## 50     11/04/1996 43
## 51     12/08/2003 43
## 52     14/06/2006 43
## 53     24/04/1996 43
## 54     26/04/1996 43
## 55     01/08/2000 42
## 56     02/08/1996 42
## 57     07/10/1997 42
## 58     17/05/1996 42
## 59     19/07/2000 42
## 60     21/07/1997 42
## 61     22/07/1996 42
## 62     22/07/2005 42
## 63     29/04/2002 42
## 64     04/04/1996 41
## 65     09/05/1996 41
## 66     10/09/1996 41
## 67     11/01/2011 41
## 68     11/06/1997 41
## 69     16/05/1996 41
## 70     18/02/2003 41
## 71     23/09/1996 41
## 72     28/07/1997 41
## 73     05/08/2003 40
## 74     10/08/2004 40
## 75     11/03/1997 40
## 76     16/07/1997 40
## 77     18/09/1996 40
## 78     20/10/1997 40
## 79     21/06/2006 40
## 80     23/04/1996 40
## 81     24/03/1998 40
## 82     25/09/2002 40
## 83     26/02/1997 40
## 84     31/07/1996 40
## 85     01/04/2003 39
## 86     03/08/2000 39
## 87     03/09/1996 39
## 88     06/08/1996 39
## 89     06/09/1996 39
## 90     08/05/1996 39
## 91     09/07/1997 39
## 92     09/09/1996 39
## 93     10/02/1997 39
## 94     10/06/2008 39
## 95     11/03/1998 39
## 96     13/06/1996 39
## 97     14/03/1997 39
## 98     15/10/1996 39
## 99     16/06/2011 39
## 100    17/02/2003 39
## 101    20/09/1999 39
## 102    20/10/1999 39
## 103    26/06/2000 39
## 104    30/07/2012 39
## 105    01/06/2011 38
## 106    02/08/2006 38
## 107    02/10/2001 38
## 108    03/05/1996 38
## 109    08/06/2004 38
## 110    10/06/1996 38
## 111    13/03/2000 38
## 112    15/05/2000 38
## 113    16/07/2003 38
## 114    16/08/2000 38
## 115    16/09/1996 38
## 116    18/05/2006 38
## 117    18/06/1996 38
## 118    19/04/1996 38
## 119    20/02/1998 38
## 120    20/04/2004 38
## 121    20/06/1996 38
## 122    22/03/2006 38
## 123    22/10/1996 38
## 124    25/07/2005 38
## 125    27/03/2007 38
## 126    01/02/2001 37
## 127    02/02/2012 37
## 128    02/04/2001 37
## 129    03/02/2010 37
## 130    03/04/1996 37
## 131    03/12/1997 37
## 132    04/03/2004 37
## 133    04/06/2003 37
## 134    05/08/2013 37
## 135    05/09/1996 37
## 136    06/02/1996 37
## 137    06/10/2004 37
## 138    07/07/1997 37
## 139    07/10/1996 37
## 140    11/07/2006 37
## 141    12/07/2001 37
## 142    12/07/2006 37
## 143    12/08/1996 37
## 144    13/06/2005 37
## 145    13/06/2006 37
## 146    13/08/1996 37
## 147    14/04/1997 37
## 148    15/02/2000 37
## 149    15/03/2007 37
## 150    15/07/1996 37
## 151    16/07/1996 37
## 152    17/04/1997 37
## 153    17/05/2006 37
## 154    17/12/1997 37
## 155    18/05/1998 37
## 156    18/07/2001 37
## 157    19/08/1996 37
## 158    20/09/2005 37
## 159    21/01/1997 37
## 160    21/05/1996 37
## 161    21/06/2001 37
## 162    22/06/2005 37
## 163    23/05/2006 37
## 164    24/06/2004 37
## 165    24/09/1996 37
## 166    25/06/1996 37
## 167    26/07/1999 37
## 168    28/07/2008 37
## 169    29/07/2009 37
## 170    30/07/1996 37
## 171    01/03/2001 36
## 172    01/06/1999 36
## 173    01/10/1997 36
## 174    01/11/1996 36
## 175    02/07/1996 36
## 176    02/09/1997 36
## 177    03/03/2009 36
## 178    05/06/1997 36
## 179    06/07/1999 36
## 180    07/11/1996 36
## 181    08/07/1996 36
## 182    10/07/2013 36
## 183    13/06/2003 36
## 184    13/07/2005 36
## 185    14/02/2006 36
## 186    15/01/1997 36
## 187    15/01/1998 36
## 188    16/06/2010 36
## 189    16/12/2005 36
## 190    17/02/2004 36
## 191    18/06/2001 36
## 192    19/03/2009 36
## 193    20/02/2001 36
## 194    20/03/1998 36
## 195    20/05/1997 36
## 196    21/08/1996 36
## 197    22/05/2000 36
## 198    22/07/2003 36
## 199    22/08/1996 36
## 200    22/08/2001 36
## 201    23/08/1996 36
## 202    24/06/2009 36
## 203    24/07/2000 36
## 204    24/10/2007 36
## 205    25/10/2000 36
## 206    27/08/1997 36
## 207    28/05/1997 36
## 208    28/06/1999 36
## 209    28/09/2005 36
## 210    29/01/2004 36
## 211    29/10/1996 36
## 212    30/09/1996 36
## 213    01/04/2004 35
## 214    01/05/2007 35
## 215    01/11/2006 35
## 216    02/02/2000 35
## 217    02/06/2003 35
## 218    02/07/1997 35
## 219    03/03/1998 35
## 220    03/04/2002 35
## 221    04/06/1996 35
## 222    05/06/1996 35
## 223    06/06/1996 35
## 224    06/09/2000 35
## 225    07/05/1997 35
## 226    07/08/1996 35
## 227    08/04/1998 35
## 228    08/05/2007 35
## 229    08/06/2000 35
## 230    08/08/2005 35
## 231    10/05/1996 35
## 232    10/09/2003 35
## 233    11/06/2013 35
## 234    12/05/2010 35
## 235    13/06/2001 35
## 236    13/08/1997 35
## 237    14/01/2002 35
## 238    14/08/2001 35
## 239    16/04/2002 35
## 240    16/05/2007 35
## 241    16/08/2010 35
## 242    16/12/1996 35
## 243    17/03/2004 35
## 244    18/03/1998 35
## 245    20/01/1998 35
## 246    20/01/1999 35
## 247    21/10/1997 35
## 248    22/09/1997 35
## 249    24/08/2009 35
## 250    24/10/1997 35
## 251    24/10/2001 35
## 252    25/03/1998 35
## 253    26/09/1996 35
## 254    26/09/1997 35
## 255    27/06/1996 35
## 256    27/06/2007 35
## 257    30/10/2000 35
## 258    31/10/2000 35
## 259    01/06/1998 34
## 260    01/08/1997 34
## 261    01/12/2004 34
## 262    02/11/2011 34
## 263    03/04/1997 34
## 264    03/10/1996 34
## 265    04/03/1997 34
## 266    06/07/2000 34
## 267    06/11/1996 34
## 268    07/07/1999 34
## 269    08/04/1996 34
## 270    10/07/2003 34
## 271    11/06/1998 34
## 272    12/04/1996 34
## 273    12/05/1997 34
## 274    12/07/2007 34
## 275    12/09/1996 34
## 276    13/09/1996 34
## 277    14/03/2006 34
## 278    14/10/1996 34
## 279    15/05/2006 34
## 280    15/08/2006 34
## 281    16/05/2000 34
## 282    17/06/2004 34
## 283    18/03/1997 34
## 284    18/06/1997 34
## 285    18/08/2004 34
## 286    18/08/2008 34
## 287    19/04/2006 34
## 288    20/06/2012 34
## 289    20/08/2013 34
## 290    22/05/1996 34
## 291    23/06/1997 34
## 292    23/07/2001 34
## 293    24/09/1998 34
## 294    25/08/1997 34
## 295    26/02/2002 34
## 296    26/09/2005 34
## 297    27/08/2012 34
## 298    27/09/2000 34
## 299    28/09/1998 34
## 300    29/06/1999 34
## 301    29/06/2004 34
## 302    29/10/1997 34
## 303    30/05/2002 34
## 304    30/08/2006 34
## 305    31/07/2000 34
## 306    01/03/2005 33
## 307    01/05/2000 33
## 308    01/06/2006 33
## 309    01/07/1996 33
## 310    01/08/1996 33
## 311    01/08/2013 33
## 312    01/10/2003 33
## 313    01/12/1997 33
## 314    02/10/2012 33
## 315    03/03/2008 33
## 316    03/10/2002 33
## 317    04/05/1998 33
## 318    04/06/2007 33
## 319    04/08/2003 33
## 320    04/10/2001 33
## 321    06/07/2004 33
## 322    07/07/2000 33
## 323    08/01/1998 33
## 324    08/01/2002 33
## 325    08/06/2009 33
## 326    08/06/2010 33
## 327    08/10/1997 33
## 328    09/02/2009 33
## 329    09/05/2000 33
## 330    09/11/1999 33
## 331    11/10/2005 33
## 332    12/06/2000 33
## 333    13/08/2002 33
## 334    14/03/2001 33
## 335    14/11/2000 33
## 336    15/03/2006 33
## 337    15/12/2003 33
## 338    16/08/2007 33
## 339    17/08/2006 33
## 340    17/09/1997 33
## 341    18/08/1999 33
## 342    18/09/2012 33
## 343    19/07/2006 33
## 344    19/09/2005 33
## 345    20/05/2009 33
## 346    20/06/2006 33
## 347    20/07/2010 33
## 348    20/10/2003 33
## 349    21/03/2001 33
## 350    22/01/1997 33
## 351    22/08/2007 33
## 352    23/02/2004 33
## 353    23/04/1997 33
## 354    23/04/2003 33
## 355    24/03/1997 33
## 356    24/05/1996 33
## 357    24/05/2005 33
## 358    25/06/2013 33
## 359    26/01/1998 33
## 360    26/04/2005 33
## 361    27/03/1996 33
## 362    27/04/1998 33
## 363    28/03/1996 33
## 364    29/05/1996 33
## 365    29/08/2001 33
## 366    29/10/2001 33
## 367    30/04/2003 33
## 368    30/06/1999 33
## 369    31/05/2007 33
## 370    01/05/2003 32
## 371    01/07/2005 32
## 372    01/08/2006 32
## 373    01/08/2007 32
## 374    01/10/2001 32
## 375    01/12/2006 32
## 376    02/02/2010 32
## 377    02/03/2006 32
## 378    02/12/2002 32
## 379    03/05/2001 32
## 380    03/05/2004 32
## 381    03/08/1998 32
## 382    05/03/1998 32
## 383    05/04/2005 32
## 384    05/05/2010 32
## 385    05/06/2006 32
## 386    06/05/1997 32
## 387    06/05/2009 32
## 388    07/05/2001 32
## 389    07/05/2012 32
## 390    07/08/2000 32
## 391    08/02/2000 32
## 392    08/08/1996 32
## 393    08/09/2003 32
## 394    10/03/2004 32
## 395    10/03/2009 32
## 396    10/08/2000 32
## 397    11/04/2006 32
## 398    11/04/2013 32
## 399    11/09/1997 32
## 400    11/10/2006 32
## 401    12/05/2003 32
## 402    12/05/2005 32
## 403    12/06/1996 32
## 404    12/08/2002 32
## 405    12/10/2005 32
## 406    13/01/2011 32
## 407    13/03/1997 32
## 408    13/06/2000 32
## 409    13/07/2000 32
## 410    14/06/2005 32
## 411    14/08/2003 32
## 412    15/06/2000 32
## 413    15/09/1997 32
## 414    15/09/2005 32
## 415    15/11/2011 32
## 416    16/05/2013 32
## 417    16/08/2006 32
## 418    16/09/2013 32
## 419    16/10/2007 32
## 420    16/11/1999 32
## 421    17/04/2002 32
## 422    17/08/2005 32
## 423    17/09/1996 32
## 424    19/01/2005 32
## 425    19/03/1997 32
## 426    19/03/2013 32
## 427    19/06/1996 32
## 428    19/06/2007 32
## 429    19/08/2003 32
## 430    19/09/2007 32
## 431    19/10/2009 32
## 432    20/07/1998 32
## 433    20/07/1999 32
## 434    20/07/2000 32
## 435    20/07/2005 32
## 436    20/08/1996 32
## 437    20/08/2007 32
## 438    20/09/2006 32
## 439    20/09/2010 32
## 440    21/12/2009 32
## 441    22/02/2000 32
## 442    22/08/2000 32
## 443    22/09/2004 32
## 444    22/10/2001 32
## 445    23/07/2003 32
## 446    23/08/2000 32
## 447    23/09/1997 32
## 448    23/09/2010 32
## 449    24/04/2006 32
## 450    24/06/1996 32
## 451    24/06/1997 32
## 452    24/08/2005 32
## 453    24/09/2003 32
## 454    24/09/2007 32
## 455    25/09/1996 32
## 456    26/09/2000 32
## 457    27/07/1999 32
## 458    28/02/2002 32
## 459    28/05/1996 32
## 460    28/05/1998 32
## 461    28/05/2002 32
## 462    29/01/1997 32
## 463    29/11/2000 32
## 464    31/10/1997 32
## 465    01/02/2006 31
## 466    01/04/2008 31
## 467    01/06/2005 31
## 468    01/09/2004 31
## 469    02/06/1997 31
## 470    02/08/1999 31
## 471    03/02/2000 31
## 472    04/01/2006 31
## 473    04/04/1997 31
## 474    04/08/1997 31
## 475    04/09/1997 31
## 476    05/08/1997 31
## 477    05/11/2008 31
## 478    06/05/1998 31
## 479    06/06/2013 31
## 480    06/09/2007 31
## 481    06/10/1997 31
## 482    07/08/2006 31
## 483    07/09/2000 31
## 484    08/08/2000 31
## 485    08/08/2001 31
## 486    08/08/2006 31
## 487    08/12/2000 31
## 488    09/04/1996 31
## 489    09/07/2007 31
## 490    09/08/2000 31
## 491    09/08/2005 31
## 492    09/10/1996 31
## 493    10/02/1998 31
## 494    10/04/2002 31
## 495    10/05/2005 31
## 496    10/09/2001 31
## 497    10/09/2007 31
## 498    10/10/1997 31
## 499    10/10/2001 31
## 500    11/01/1996 31
## 501    11/06/2004 31
## 502    11/10/1999 31
## 503    12/01/1999 31
## 504    12/05/1999 31
## 505    12/08/1999 31
## 506    12/11/1996 31
## 507    13/01/1997 31
## 508    13/07/2006 31
## 509    13/10/2004 31
## 510    15/08/2000 31
## 511    15/12/1999 31
## 512    15/12/2005 31
## 513    16/01/2001 31
## 514    16/08/2001 31
## 515    16/12/2010 31
## 516    17/07/1996 31
## 517    17/07/2006 31
## 518    17/08/2000 31
## 519    17/08/2004 31
## 520    17/10/2005 31
## 521    17/11/2011 31
## 522    18/05/2011 31
## 523    18/07/2012 31
## 524    18/12/2002 31
## 525    19/04/2004 31
## 526    19/05/1998 31
## 527    19/08/1999 31
## 528    19/09/2002 31
## 529    20/02/1997 31
## 530    20/03/2007 31
## 531    20/06/2007 31
## 532    20/08/2004 31
## 533    21/02/2002 31
## 534    21/03/2000 31
## 535    21/05/2001 31
## 536    21/08/2006 31
## 537    21/10/2013 31
## 538    22/04/2013 31
## 539    22/07/1997 31
## 540    23/03/2000 31
## 541    23/05/2001 31
## 542    23/09/1999 31
## 543    24/01/2000 31
## 544    24/07/1996 31
## 545    24/07/2007 31
## 546    25/01/2006 31
## 547    25/03/2002 31
## 548    25/04/2006 31
## 549    25/09/1997 31
## 550    26/03/1998 31
## 551    26/03/2001 31
## 552    26/06/2002 31
## 553    26/07/1996 31
## 554    26/10/2010 31
## 555    27/02/2003 31
## 556    27/07/2000 31
## 557    27/08/2004 31
## 558    27/08/2008 31
## 559    28/10/2002 31
## 560    29/03/2006 31
## 561    29/06/2006 31
## 562    29/07/1997 31
## 563    30/06/1997 31
## 564    30/07/2001 31
## 565    31/03/1998 31
## 566    31/07/2012 31
## 567    01/04/1998 30
## 568    01/07/1997 30
## 569    01/09/1998 30
## 570    01/10/2009 30
## 571    01/11/2005 30
## 572    02/02/2009 30
## 573    02/03/1998 30
## 574    02/04/1998 30
## 575    02/05/1997 30
## 576    02/10/1996 30
## 577    02/11/2000 30
## 578    02/11/2010 30
## 579    03/05/2000 30
## 580    03/06/1996 30
## 581    03/07/1997 30
## 582    03/09/2002 30
## 583    03/10/2012 30
## 584    04/10/2002 30
## 585    05/04/2002 30
## 586    05/08/2004 30
## 587    05/09/2006 30
## 588    05/11/2003 30
## 589    05/11/2013 30
## 590    05/12/2001 30
## 591    06/05/2005 30
## 592    06/08/2003 30
## 593    06/09/2006 30
## 594    07/04/2003 30
## 595    07/04/2004 30
## 596    08/01/2001 30
## 597    08/09/1999 30
## 598    09/02/2006 30
## 599    09/06/1998 30
## 600    09/06/2005 30
## 601    09/09/2004 30
## 602    09/10/2013 30
## 603    10/06/2002 30
## 604    10/07/2007 30
## 605    10/10/1996 30
## 606    10/11/1997 30
## 607    11/06/2001 30
## 608    11/07/2001 30
## 609    11/10/1996 30
## 610    12/03/1997 30
## 611    12/06/2012 30
## 612    12/08/1997 30
## 613    12/09/2000 30
## 614    12/09/2012 30
## 615    12/11/2003 30
## 616    12/12/2002 30
## 617    13/04/2010 30
## 618    13/05/2008 30
## 619    14/04/2009 30
## 620    14/05/1998 30
## 621    14/05/2007 30
## 622    14/07/2004 30
## 623    15/06/2006 30
## 624    15/06/2010 30
## 625    15/08/1997 30
## 626    15/09/2000 30
## 627    16/02/2005 30
## 628    16/05/1997 30
## 629    16/06/1998 30
## 630    16/08/1999 30
## 631    16/10/2008 30
## 632    17/05/2007 30
## 633    17/06/1997 30
## 634    17/06/1999 30
## 635    17/08/1998 30
## 636    17/09/2003 30
## 637    18/02/2004 30
## 638    18/02/2013 30
## 639    18/08/2005 30
## 640    18/10/1999 30
## 641    19/10/2004 30
## 642    20/10/2010 30
## 643    21/01/1998 30
## 644    21/01/2013 30
## 645    21/02/1997 30
## 646    21/02/2007 30
## 647    21/04/2009 30
## 648    21/06/1996 30
## 649    21/06/2004 30
## 650    21/07/1999 30
## 651    22/03/2004 30
## 652    22/05/2006 30
## 653    22/10/1997 30
## 654    23/03/1998 30
## 655    23/03/2005 30
## 656    23/03/2006 30
## 657    23/04/2007 30
## 658    23/06/1999 30
## 659    23/07/2007 30
## 660    24/01/2001 30
## 661    24/01/2002 30
## 662    24/02/1997 30
## 663    24/08/2000 30
## 664    25/04/2001 30
## 665    25/06/2008 30
## 666    25/07/2006 30
## 667    25/07/2007 30
## 668    25/08/2004 30
## 669    25/08/2005 30
## 670    26/01/2004 30
## 671    26/02/2001 30
## 672    26/06/2006 30
## 673    27/01/2000 30
## 674    27/02/2013 30
## 675    27/04/2005 30
## 676    27/06/2000 30
## 677    27/06/2006 30
## 678    27/08/2001 30
## 679    27/10/1999 30
## 680    28/07/2004 30
## 681    28/08/1996 30
## 682    28/10/2003 30
## 683    29/01/1998 30
## 684    29/08/1996 30
## 685    29/09/1997 30
## 686    30/01/2006 30
## 687    30/09/1997 30
## 688    30/09/1998 30
## 689    30/10/1996 30
## 690    31/07/1997 30
## 691    01/02/2002 29
## 692    01/02/2011 29
## 693    01/04/1997 29
## 694    01/07/2009 29
## 695    01/08/2005 29
## 696    01/10/2008 29
## 697    01/11/2007 29
## 698    02/02/2005 29
## 699    02/03/1999 29
## 700    02/04/1997 29
## 701    02/05/2007 29
## 702    02/07/1999 29
## 703    03/02/1998 29
## 704    03/04/2000 29
## 705    03/04/2009 29
## 706    03/05/2006 29
## 707    03/06/2010 29
## 708    03/08/2004 29
## 709    03/09/1997 29
## 710    03/10/2006 29
## 711    03/11/2011 29
## 712    04/01/2005 29
## 713    04/05/2006 29
## 714    04/06/1997 29
## 715    04/08/2008 29
## 716    04/09/2008 29
## 717    04/12/2000 29
## 718    05/02/2009 29
## 719    05/05/2009 29
## 720    05/06/2000 29
## 721    05/08/2008 29
## 722    05/08/2009 29
## 723    05/10/2004 29
## 724    06/04/1998 29
## 725    06/04/2006 29
## 726    06/05/2013 29
## 727    06/06/1997 29
## 728    06/08/2007 29
## 729    06/11/2000 29
## 730    07/01/1998 29
## 731    07/01/2009 29
## 732    07/02/1996 29
## 733    07/08/2013 29
## 734    07/09/2004 29
## 735    08/02/2006 29
## 736    08/04/1997 29
## 737    08/06/2007 29
## 738    08/07/2002 29
## 739    08/08/2013 29
## 740    08/09/1998 29
## 741    08/10/1998 29
## 742    09/01/1998 29
## 743    09/09/2002 29
## 744    09/10/2000 29
## 745    10/05/2007 29
## 746    10/07/2002 29
## 747    10/08/2005 29
## 748    10/10/2007 29
## 749    11/05/2000 29
## 750    11/07/2012 29
## 751    11/08/2005 29
## 752    12/01/1998 29
## 753    12/03/2001 29
## 754    12/07/2010 29
## 755    12/08/2013 29
## 756    12/12/1996 29
## 757    13/05/1997 29
## 758    13/05/2004 29
## 759    13/05/2005 29
## 760    13/08/2003 29
## 761    13/08/2008 29
## 762    13/09/2004 29
## 763    13/10/1998 29
## 764    13/11/2000 29
## 765    14/05/2001 29
## 766    14/06/2010 29
## 767    14/06/2012 29
## 768    14/07/2008 29
## 769    14/09/2001 29
## 770    14/09/2005 29
## 771    14/09/2006 29
## 772    14/10/1997 29
## 773    15/01/2013 29
## 774    15/05/2001 29
## 775    15/05/2003 29
## 776    15/05/2013 29
## 777    15/07/1997 29
## 778    16/01/1998 29
## 779    16/03/1998 29
## 780    16/04/2008 29
## 781    16/07/2002 29
## 782    16/07/2007 29
## 783    16/07/2013 29
## 784    16/08/2005 29
## 785    16/08/2011 29
## 786    16/10/2000 29
## 787    16/11/1998 29
## 788    16/11/2004 29
## 789    17/02/1998 29
## 790    17/03/1997 29
## 791    17/03/2011 29
## 792    17/06/1998 29
## 793    17/06/2008 29
## 794    17/07/2003 29
## 795    17/09/2008 29
## 796    18/01/2005 29
## 797    18/02/1998 29
## 798    18/02/2002 29
## 799    18/04/2000 29
## 800    18/04/2001 29
## 801    18/06/2008 29
## 802    18/08/2000 29
## 803    18/08/2003 29
## 804    18/08/2010 29
## 805    18/11/1999 29
## 806    19/02/2003 29
## 807    19/05/2003 29
## 808    19/05/2004 29
## 809    20/03/2002 29
## 810    20/04/2006 29
## 811    20/05/2005 29
## 812    20/06/2000 29
## 813    20/08/2003 29
## 814    21/01/2009 29
## 815    21/06/1999 29
## 816    21/09/2009 29
## 817    22/05/2002 29
## 818    22/07/1998 29
## 819    22/09/2006 29
## 820    23/01/2003 29
## 821    23/05/1996 29
## 822    23/05/2007 29
## 823    23/06/2004 29
## 824    23/06/2008 29
## 825    23/07/1999 29
## 826    24/02/1998 29
## 827    24/08/1998 29
## 828    24/08/2004 29
## 829    24/08/2006 29
## 830    24/09/2001 29
## 831    24/10/2002 29
## 832    25/01/2013 29
## 833    25/02/2008 29
## 834    25/04/2005 29
## 835    25/06/1997 29
## 836    25/06/2007 29
## 837    25/09/2000 29
## 838    25/10/2005 29
## 839    26/02/2008 29
## 840    26/07/2004 29
## 841    26/08/2004 29
## 842    27/08/1996 29
## 843    27/09/1996 29
## 844    28/07/2010 29
## 845    28/08/2000 29
## 846    28/08/2006 29
## 847    28/09/2000 29
## 848    28/09/2011 29
## 849    29/03/2007 29
## 850    29/05/2002 29
## 851    29/09/2005 29
## 852    30/03/2004 29
## 853    30/04/2012 29
## 854    30/08/2001 29
## 855    30/09/1999 29
## 856    31/05/2011 29
## 857    31/07/1998 29
## 858    31/10/2001 29
## 859    01/04/2002 28
## 860    01/06/2001 28
## 861    01/06/2009 28
## 862    01/07/1999 28
## 863    01/08/2001 28
## 864    01/09/2006 28
## 865    01/11/2001 28
## 866    01/11/2012 28
## 867    02/01/1997 28
## 868    02/02/1999 28
## 869    02/07/2007 28
## 870    02/09/2008 28
## 871    02/09/2010 28
## 872    02/10/1998 28
## 873    02/11/2004 28
## 874    03/01/2005 28
## 875    03/03/1997 28
## 876    03/04/2012 28
## 877    04/02/2013 28
## 878    04/03/1998 28
## 879    04/06/2001 28
## 880    04/08/2010 28
## 881    04/11/2008 28
## 882    05/03/2001 28
## 883    05/04/1996 28
## 884    05/05/2000 28
## 885    05/06/1998 28
## 886    05/07/2001 28
## 887    05/12/2000 28
## 888    05/12/2005 28
## 889    06/01/2000 28
## 890    06/04/2005 28
## 891    06/06/2006 28
## 892    06/08/1997 28
## 893    06/08/2009 28
## 894    07/06/2006 28
## 895    07/08/2002 28
## 896    07/12/1998 28
## 897    07/12/2000 28
## 898    08/01/1997 28
## 899    08/02/2005 28
## 900    08/04/2002 28
## 901    08/10/2007 28
## 902    09/01/2001 28
## 903    09/02/2004 28
## 904    09/03/2006 28
## 905    09/04/1997 28
## 906    09/04/2001 28
## 907    09/07/1996 28
## 908    09/08/1996 28
## 909    09/09/1997 28
## 910    09/09/2003 28
## 911    09/12/1996 28
## 912    10/06/1999 28
## 913    10/06/2003 28
## 914    10/09/2008 28
## 915    11/01/2005 28
## 916    11/03/2002 28
## 917    11/03/2004 28
## 918    11/12/1996 28
## 919    12/04/2010 28
## 920    12/06/1997 28
## 921    12/06/2006 28
## 922    12/07/2000 28
## 923    12/09/2007 28
## 924    12/09/2011 28
## 925    12/10/2010 28
## 926    12/11/2013 28
## 927    13/01/2000 28
## 928    13/02/1998 28
## 929    13/02/2006 28
## 930    13/03/2008 28
## 931    13/05/1999 28
## 932    13/06/2011 28
## 933    13/08/2001 28
## 934    13/11/1997 28
## 935    14/03/2002 28
## 936    14/05/1997 28
## 937    14/05/2002 28
## 938    14/05/2008 28
## 939    14/05/2009 28
## 940    14/06/1999 28
## 941    14/07/2006 28
## 942    14/08/2000 28
## 943    14/08/2006 28
## 944    14/10/2003 28
## 945    15/01/2002 28
## 946    15/01/2003 28
## 947    15/02/2010 28
## 948    15/04/1998 28
## 949    15/06/1999 28
## 950    15/06/2007 28
## 951    15/07/2003 28
## 952    15/08/2005 28
## 953    15/08/2012 28
## 954    15/10/2008 28
## 955    16/02/2006 28
## 956    16/04/2003 28
## 957    16/06/2005 28
## 958    16/06/2008 28
## 959    16/08/1996 28
## 960    16/09/1997 28
## 961    16/11/2006 28
## 962    16/12/1999 28
## 963    17/05/1999 28
## 964    17/07/2002 28
## 965    17/08/2009 28
## 966    18/06/1998 28
## 967    18/07/1996 28
## 968    18/10/2000 28
## 969    18/11/1996 28
## 970    19/05/2009 28
## 971    19/07/1999 28
## 972    19/10/2005 28
## 973    20/02/2013 28
## 974    20/06/2001 28
## 975    20/07/2004 28
## 976    20/08/1997 28
## 977    20/08/2001 28
## 978    20/08/2002 28
## 979    20/10/2005 28
## 980    20/11/1996 28
## 981    21/08/2001 28
## 982    21/08/2008 28
## 983    22/04/2002 28
## 984    22/04/2009 28
## 985    22/05/1997 28
## 986    22/09/2003 28
## 987    23/02/1998 28
## 988    23/02/2012 28
## 989    24/01/1997 28
## 990    24/04/2002 28
## 991    24/07/2003 28
## 992    24/07/2006 28
## 993    24/10/2013 28
## 994    25/01/2005 28
## 995    25/04/2007 28
## 996    25/06/2002 28
## 997    25/09/2013 28
## 998    26/01/2011 28
## 999    26/03/2002 28
## 1000   26/09/2007 28
## 1001   26/11/2012 28
## 1002   27/01/1998 28
## 1003   27/02/2007 28
## 1004   27/06/2002 28
## 1005   27/06/2012 28
## 1006   27/07/2005 28
## 1007   27/09/1999 28
## 1008   27/09/2001 28
## 1009   27/11/2006 28
## 1010   28/01/1999 28
## 1011   28/02/2000 28
## 1012   28/05/2008 28
## 1013   28/07/2000 28
## 1014   28/09/2006 28
## 1015   28/10/2004 28
## 1016   29/03/1999 28
## 1017   29/04/1998 28
## 1018   29/06/2000 28
## 1019   29/08/2000 28
## 1020   29/08/2006 28
## 1021   29/09/1999 28
## 1022   30/07/1998 28
## 1023   30/07/2008 28
## 1024   30/08/1996 28
## 1025   30/09/2004 28
## 1026   30/11/1999 28
## 1027   01/04/2013 27
## 1028   01/05/2002 27
## 1029   01/06/2004 27
## 1030   01/07/2003 27
## 1031   01/07/2008 27
## 1032   01/09/2005 27
## 1033   01/11/1999 27
## 1034   01/11/2000 27
## 1035   01/11/2004 27
## 1036   02/02/2007 27
## 1037   02/03/2011 27
## 1038   02/05/2002 27
## 1039   02/05/2006 27
## 1040   02/06/2008 27
## 1041   02/08/2010 27
## 1042   02/09/2003 27
## 1043   02/09/2009 27
## 1044   02/12/1996 27
## 1045   03/02/2004 27
## 1046   03/08/1999 27
## 1047   03/10/2001 27
## 1048   03/11/1997 27
## 1049   04/01/2002 27
## 1050   04/01/2012 27
## 1051   04/02/2002 27
## 1052   04/03/2002 27
## 1053   04/05/2005 27
## 1054   04/08/1999 27
## 1055   04/08/2004 27
## 1056   04/08/2009 27
## 1057   04/10/2007 27
## 1058   04/11/1996 27
## 1059   04/11/2009 27
## 1060   05/03/2007 27
## 1061   05/08/1998 27
## 1062   05/09/2007 27
## 1063   05/10/1999 27
## 1064   06/01/2005 27
## 1065   06/02/2001 27
## 1066   06/02/2006 27
## 1067   06/05/1999 27
## 1068   06/06/2001 27
## 1069   06/07/1998 27
## 1070   06/08/1999 27
## 1071   06/09/2001 27
## 1072   06/10/2011 27
## 1073   07/03/2000 27
## 1074   07/03/2002 27
## 1075   07/05/1998 27
## 1076   07/05/2003 27
## 1077   07/05/2007 27
## 1078   07/06/1999 27
## 1079   07/06/2005 27
## 1080   07/11/2005 27
## 1081   07/12/2004 27
## 1082   08/01/1996 27
## 1083   08/03/1999 27
## 1084   08/03/2000 27
## 1085   08/03/2005 27
## 1086   08/07/1999 27
## 1087   08/07/2010 27
## 1088   08/10/2012 27
## 1089   09/04/1999 27
## 1090   09/05/2005 27
## 1091   09/05/2013 27
## 1092   09/07/2013 27
## 1093   09/08/2004 27
## 1094   09/10/1997 27
## 1095   09/10/2008 27
## 1096   09/12/2009 27
## 1097   10/01/2000 27
## 1098   10/02/2004 27
## 1099   10/02/2010 27
## 1100   10/04/2000 27
## 1101   10/04/2003 27
## 1102   10/05/1999 27
## 1103   10/07/2000 27
## 1104   10/07/2006 27
## 1105   10/08/1999 27
## 1106   10/10/2000 27
## 1107   11/01/2001 27
## 1108   11/02/2008 27
## 1109   11/02/2013 27
## 1110   11/03/1999 27
## 1111   11/07/2000 27
## 1112   11/07/2003 27
## 1113   11/07/2013 27
## 1114   11/09/2006 27
## 1115   11/09/2008 27
## 1116   11/10/2010 27
## 1117   11/12/2008 27
## 1118   12/01/2006 27
## 1119   12/04/2006 27
## 1120   12/06/2003 27
## 1121   12/07/1996 27
## 1122   12/07/2011 27
## 1123   12/08/2010 27
## 1124   13/01/2010 27
## 1125   13/02/2004 27
## 1126   13/02/2008 27
## 1127   13/03/2006 27
## 1128   13/04/2004 27
## 1129   13/06/1997 27
## 1130   13/09/2000 27
## 1131   13/12/2000 27
## 1132   14/02/2014 27
## 1133   14/05/2003 27
## 1134   14/07/2005 27
## 1135   14/08/2002 27
## 1136   14/10/2004 27
## 1137   14/10/2013 27
## 1138   15/06/1998 27
## 1139   15/06/2004 27
## 1140   15/07/1998 27
## 1141   15/07/1999 27
## 1142   15/08/2002 27
## 1143   15/09/2010 27
## 1144   15/09/2011 27
## 1145   16/01/2007 27
## 1146   16/05/2002 27
## 1147   16/07/1999 27
## 1148   16/07/2001 27
## 1149   16/08/2004 27
## 1150   17/01/2001 27
## 1151   17/02/2005 27
## 1152   17/05/2001 27
## 1153   17/09/2002 27
## 1154   17/09/2007 27
## 1155   17/10/2000 27
## 1156   17/10/2003 27
## 1157   17/11/2003 27
## 1158   18/12/1996 27
## 1159   19/02/1997 27
## 1160   19/04/2001 27
## 1161   19/05/1997 27
## 1162   19/05/2005 27
## 1163   20/04/1999 27
## 1164   20/04/2009 27
## 1165   20/08/1999 27
## 1166   20/08/2012 27
## 1167   20/09/1996 27
## 1168   20/10/2004 27
## 1169   20/11/1997 27
## 1170   20/11/2001 27
## 1171   21/04/2010 27
## 1172   21/05/1999 27
## 1173   21/07/2004 27
## 1174   21/08/1998 27
## 1175   21/09/2011 27
## 1176   22/04/1997 27
## 1177   22/05/1998 27
## 1178   22/05/2013 27
## 1179   22/06/2000 27
## 1180   22/06/2006 27
## 1181   23/01/2006 27
## 1182   23/05/2011 27
## 1183   23/06/2010 27
## 1184   23/09/1998 27
## 1185   24/01/2006 27
## 1186   24/07/1997 27
## 1187   24/07/2001 27
## 1188   24/07/2013 27
## 1189   24/10/2006 27
## 1190   25/01/2000 27
## 1191   25/02/1998 27
## 1192   25/03/2003 27
## 1193   25/06/2003 27
## 1194   25/07/2001 27
## 1195   26/05/1998 27
## 1196   26/05/2009 27
## 1197   26/05/2010 27
## 1198   26/07/2010 27
## 1199   26/10/2001 27
## 1200   27/03/2000 27
## 1201   27/03/2001 27
## 1202   27/03/2002 27
## 1203   27/07/2004 27
## 1204   27/07/2011 27
## 1205   27/10/2004 27
## 1206   28/01/1997 27
## 1207   28/01/2000 27
## 1208   28/01/2002 27
## 1209   28/04/1997 27
## 1210   28/04/2010 27
## 1211   28/06/2000 27
## 1212   28/06/2001 27
## 1213   28/07/2003 27
## 1214   28/08/2001 27
## 1215   29/05/1997 27
## 1216   29/06/2011 27
## 1217   29/07/2010 27
## 1218   29/10/2012 27
## 1219   30/01/1997 27
## 1220   30/01/2002 27
## 1221   30/03/2000 27
## 1222   30/04/2004 27
## 1223   30/08/1999 27
## 1224   30/08/2000 27
## 1225   30/08/2011 27
## 1226   30/10/2008 27
## 1227   30/12/1997 27
## 1228   31/03/2009 27
## 1229   31/05/1996 27
## 1230   01/03/2012 26
## 1231   01/05/2006 26
## 1232   01/05/2008 26
## 1233   01/07/1998 26
## 1234   01/08/2011 26
## 1235   01/09/2009 26
## 1236   01/10/2007 26
## 1237   01/12/1999 26
## 1238   01/12/2005 26
## 1239   02/02/1996 26
## 1240   02/02/2004 26
## 1241   02/02/2006 26
## 1242   02/04/2002 26
## 1243   02/04/2008 26
## 1244   02/06/2006 26
## 1245   02/11/1999 26
## 1246   03/01/2006 26
## 1247   03/02/1997 26
## 1248   03/02/2006 26
## 1249   03/04/2001 26
## 1250   03/06/2009 26
## 1251   03/08/2005 26
## 1252   03/09/2013 26
## 1253   03/10/2000 26
## 1254   04/01/1999 26
## 1255   04/02/2003 26
## 1256   04/02/2004 26
## 1257   04/03/2014 26
## 1258   04/04/2001 26
## 1259   04/04/2006 26
## 1260   04/09/2007 26
## 1261   04/10/1999 26
## 1262   04/10/2005 26
## 1263   05/03/2002 26
## 1264   05/08/2005 26
## 1265   05/12/1997 26
## 1266   06/03/2000 26
## 1267   06/03/2003 26
## 1268   06/05/2003 26
## 1269   06/07/2009 26
## 1270   06/10/2005 26
## 1271   06/12/1999 26
## 1272   06/12/2000 26
## 1273   07/03/2005 26
## 1274   07/04/2011 26
## 1275   07/06/2000 26
## 1276   07/07/2004 26
## 1277   07/10/2013 26
## 1278   07/11/2001 26
## 1279   08/04/2004 26
## 1280   08/05/2000 26
## 1281   08/06/2011 26
## 1282   08/08/2002 26
## 1283   08/09/2006 26
## 1284   08/11/2011 26
## 1285   09/01/2002 26
## 1286   09/02/2012 26
## 1287   09/03/2004 26
## 1288   09/07/2001 26
## 1289   09/08/2013 26
## 1290   10/02/2005 26
## 1291   10/02/2006 26
## 1292   10/05/2000 26
## 1293   10/08/2006 26
## 1294   11/04/2001 26
## 1295   11/06/2002 26
## 1296   11/07/2002 26
## 1297   11/07/2008 26
## 1298   11/08/2008 26
## 1299   11/08/2010 26
## 1300   11/09/2012 26
## 1301   12/01/2009 26
## 1302   12/02/2002 26
## 1303   12/03/2012 26
## 1304   12/04/1999 26
## 1305   12/05/1998 26
## 1306   12/05/2011 26
## 1307   12/06/2007 26
## 1308   12/09/1997 26
## 1309   12/11/1997 26
## 1310   13/01/2004 26
## 1311   13/02/1997 26
## 1312   13/03/1998 26
## 1313   13/06/2007 26
## 1314   13/11/1996 26
## 1315   14/01/1998 26
## 1316   14/01/2004 26
## 1317   14/04/1998 26
## 1318   14/06/2000 26
## 1319   14/07/2011 26
## 1320   14/08/1996 26
## 1321   14/12/2011 26
## 1322   15/02/2006 26
## 1323   15/03/2012 26
## 1324   15/08/1996 26
## 1325   15/10/2001 26
## 1326   15/10/2003 26
## 1327   15/11/2004 26
## 1328   16/05/2006 26
## 1329   16/06/2003 26
## 1330   16/09/2002 26
## 1331   16/12/1997 26
## 1332   16/12/2004 26
## 1333   16/12/2008 26
## 1334   17/02/1997 26
## 1335   17/02/2010 26
## 1336   17/04/2000 26
## 1337   17/05/2010 26
## 1338   18/03/2005 26
## 1339   18/04/2002 26
## 1340   18/07/2000 26
## 1341   18/09/1997 26
## 1342   18/10/2007 26
## 1343   18/10/2012 26
## 1344   18/12/1997 26
## 1345   19/01/2010 26
## 1346   19/04/2000 26
## 1347   19/06/2000 26
## 1348   19/06/2002 26
## 1349   19/06/2006 26
## 1350   19/10/2010 26
## 1351   19/11/2002 26
## 1352   19/11/2003 26
## 1353   20/03/1997 26
## 1354   20/08/1998 26
## 1355   20/09/2000 26
## 1356   20/09/2001 26
## 1357   20/11/2002 26
## 1358   21/03/2007 26
## 1359   21/05/1998 26
## 1360   21/05/2012 26
## 1361   21/07/1998 26
## 1362   21/08/1997 26
## 1363   21/09/2005 26
## 1364   22/01/2001 26
## 1365   22/02/2006 26
## 1366   22/03/2005 26
## 1367   22/04/2004 26
## 1368   22/06/2009 26
## 1369   22/08/2002 26
## 1370   23/01/2001 26
## 1371   23/02/2005 26
## 1372   23/04/2002 26
## 1373   23/06/1998 26
## 1374   23/06/2006 26
## 1375   23/08/2001 26
## 1376   23/09/2003 26
## 1377   23/11/2010 26
## 1378   24/03/2003 26
## 1379   24/04/2003 26
## 1380   24/05/2004 26
## 1381   24/05/2006 26
## 1382   24/08/2011 26
## 1383   25/01/2001 26
## 1384   25/03/2008 26
## 1385   25/05/2005 26
## 1386   25/08/2003 26
## 1387   25/09/2003 26
## 1388   26/03/1996 26
## 1389   26/04/2002 26
## 1390   26/04/2007 26
## 1391   26/06/1997 26
## 1392   26/07/2001 26
## 1393   26/08/2008 26
## 1394   26/09/2006 26
## 1395   26/10/1998 26
## 1396   27/04/2004 26
## 1397   27/05/2004 26
## 1398   28/01/2013 26
## 1399   28/03/2005 26
## 1400   28/03/2012 26
## 1401   28/04/2003 26
## 1402   28/06/2004 26
## 1403   28/06/2006 26
## 1404   29/01/2001 26
## 1405   29/03/2005 26
## 1406   29/06/2007 26
## 1407   29/11/2005 26
## 1408   30/01/1998 26
## 1409   30/01/2004 26
## 1410   30/01/2012 26
## 1411   30/04/2001 26
## 1412   30/05/2000 26
## 1413   30/05/2013 26
## 1414   30/11/2005 26
## 1415   31/01/1997 26
## 1416   31/03/2004 26
## 1417   31/03/2005 26
## 1418   31/05/2000 26
## 1419   31/05/2002 26
## 1420   31/07/2001 26
## 1421   31/07/2003 26
## 1422   31/07/2007 26
## 1423   01/02/2012 25
## 1424   01/03/1999 25
## 1425   01/06/2000 25
## 1426   01/07/2010 25
## 1427   01/08/2002 25
## 1428   01/10/1999 25
## 1429   01/11/2002 25
## 1430   02/01/2001 25
## 1431   02/01/2008 25
## 1432   02/02/2011 25
## 1433   02/07/2008 25
## 1434   02/07/2012 25
## 1435   02/08/2001 25
## 1436   03/01/2013 25
## 1437   03/03/2004 25
## 1438   03/04/1998 25
## 1439   03/05/1999 25
## 1440   03/05/2005 25
## 1441   03/06/1997 25
## 1442   03/06/2002 25
## 1443   03/06/2005 25
## 1444   03/06/2008 25
## 1445   03/07/2000 25
## 1446   03/09/2004 25
## 1447   03/10/2005 25
## 1448   04/02/1997 25
## 1449   04/04/2003 25
## 1450   04/05/2004 25
## 1451   04/06/2004 25
## 1452   04/06/2013 25
## 1453   04/10/2006 25
## 1454   04/11/1997 25
## 1455   04/12/2007 25
## 1456   05/01/2002 25
## 1457   05/02/1996 25
## 1458   05/02/2003 25
## 1459   05/04/2007 25
## 1460   05/04/2010 25
## 1461   05/05/1998 25
## 1462   05/05/2006 25
## 1463   05/07/2005 25
## 1464   05/08/2002 25
## 1465   05/09/2012 25
## 1466   05/10/2005 25
## 1467   05/11/1997 25
## 1468   05/11/2007 25
## 1469   05/12/1996 25
## 1470   06/02/2013 25
## 1471   06/03/2002 25
## 1472   06/05/2002 25
## 1473   06/06/2002 25
## 1474   06/07/2010 25
## 1475   06/08/2004 25
## 1476   06/09/2013 25
## 1477   06/10/1999 25
## 1478   06/10/2000 25
## 1479   06/10/2003 25
## 1480   07/01/1999 25
## 1481   07/01/2004 25
## 1482   07/02/2013 25
## 1483   07/04/2010 25
## 1484   07/05/2002 25
## 1485   07/06/2010 25
## 1486   07/09/2005 25
## 1487   07/11/2000 25
## 1488   07/11/2008 25
## 1489   07/12/2005 25
## 1490   08/02/2001 25
## 1491   08/05/2001 25
## 1492   08/06/2006 25
## 1493   08/07/1997 25
## 1494   08/07/2003 25
## 1495   08/07/2009 25
## 1496   08/09/2005 25
## 1497   08/10/2001 25
## 1498   08/12/1997 25
## 1499   09/01/2003 25
## 1500   09/02/2001 25
## 1501   09/04/2003 25
## 1502   09/06/1999 25
## 1503   09/08/2001 25
## 1504   09/08/2010 25
## 1505   09/08/2012 25
## 1506   09/10/2001 25
## 1507   09/10/2009 25
## 1508   09/12/1998 25
## 1509   10/01/1997 25
## 1510   10/03/2003 25
## 1511   10/05/2004 25
## 1512   10/05/2010 25
## 1513   10/07/1996 25
## 1514   10/09/2004 25
## 1515   10/09/2013 25
## 1516   10/10/2012 25
## 1517   10/11/2009 25
## 1518   10/12/2001 25
## 1519   11/01/2006 25
## 1520   11/05/2007 25
## 1521   11/07/1996 25
## 1522   11/07/2005 25
## 1523   11/09/2003 25
## 1524   11/09/2007 25
## 1525   12/01/2001 25
## 1526   12/04/2004 25
## 1527   12/04/2013 25
## 1528   12/05/2004 25
## 1529   12/05/2006 25
## 1530   12/06/1998 25
## 1531   12/06/2002 25
## 1532   12/07/2005 25
## 1533   12/08/2008 25
## 1534   12/09/2001 25
## 1535   12/09/2002 25
## 1536   12/10/2004 25
## 1537   12/11/2002 25
## 1538   13/05/2013 25
## 1539   13/07/2010 25
## 1540   13/09/2005 25
## 1541   14/01/2003 25
## 1542   14/03/2000 25
## 1543   14/06/1996 25
## 1544   14/06/2011 25
## 1545   14/07/2000 25
## 1546   14/08/1997 25
## 1547   14/09/1999 25
## 1548   14/09/2009 25
## 1549   15/01/2004 25
## 1550   15/03/2005 25
## 1551   15/04/1997 25
## 1552   15/04/2009 25
## 1553   15/12/1997 25
## 1554   15/12/2009 25
## 1555   16/03/2000 25
## 1556   16/06/2004 25
## 1557   16/09/2003 25
## 1558   16/09/2004 25
## 1559   16/10/2012 25
## 1560   17/02/1999 25
## 1561   17/04/2007 25
## 1562   17/06/2003 25
## 1563   17/07/1998 25
## 1564   17/07/2001 25
## 1565   17/07/2007 25
## 1566   17/07/2013 25
## 1567   17/09/1998 25
## 1568   17/10/1997 25
## 1569   17/10/2012 25
## 1570   17/12/2004 25
## 1571   18/01/2006 25
## 1572   18/05/2005 25
## 1573   18/06/2009 25
## 1574   18/07/2003 25
## 1575   18/10/1996 25
## 1576   18/11/1997 25
## 1577   18/11/2002 25
## 1578   19/01/2006 25
## 1579   19/04/2010 25
## 1580   19/05/2010 25
## 1581   19/06/2001 25
## 1582   19/06/2003 25
## 1583   19/07/2001 25
## 1584   19/08/2004 25
## 1585   19/08/2008 25
## 1586   19/09/2003 25
## 1587   19/11/1997 25
## 1588   20/01/2004 25
## 1589   20/01/2005 25
## 1590   20/03/2000 25
## 1591   20/04/2000 25
## 1592   20/05/2003 25
## 1593   20/06/2003 25
## 1594   21/02/2000 25
## 1595   21/02/2006 25
## 1596   21/02/2011 25
## 1597   21/03/2005 25
## 1598   21/04/1998 25
## 1599   21/05/2008 25
## 1600   21/06/2005 25
## 1601   21/09/2000 25
## 1602   22/05/2012 25
## 1603   22/06/1999 25
## 1604   22/07/2002 25
## 1605   22/08/2011 25
## 1606   22/09/2005 25
## 1607   22/11/1999 25
## 1608   23/01/1998 25
## 1609   23/03/2009 25
## 1610   23/05/2012 25
## 1611   23/06/2003 25
## 1612   23/07/1996 25
## 1613   23/07/2002 25
## 1614   23/08/2011 25
## 1615   24/01/2005 25
## 1616   24/04/2000 25
## 1617   24/04/2001 25
## 1618   24/04/2012 25
## 1619   24/05/2001 25
## 1620   24/09/1999 25
## 1621   25/01/2007 25
## 1622   25/07/2000 25
## 1623   25/09/2001 25
## 1624   25/11/1996 25
## 1625   26/01/2006 25
## 1626   26/03/2007 25
## 1627   26/04/2006 25
## 1628   26/06/1996 25
## 1629   26/06/2008 25
## 1630   27/01/2009 25
## 1631   27/04/2009 25
## 1632   27/04/2012 25
## 1633   27/05/2003 25
## 1634   27/08/2003 25
## 1635   27/10/1997 25
## 1636   27/11/2001 25
## 1637   28/03/2006 25
## 1638   28/04/2009 25
## 1639   28/06/2011 25
## 1640   28/07/1999 25
## 1641   28/08/2013 25
## 1642   28/11/2000 25
## 1643   28/12/2004 25
## 1644   29/01/2007 25
## 1645   29/04/2003 25
## 1646   29/09/2004 25
## 1647   29/11/2004 25
## 1648   30/01/2003 25
## 1649   30/03/2005 25
## 1650   30/06/2005 25
## 1651   30/10/2013 25
## 1652   31/01/2014 25
## 1653   31/05/2001 25
## 1654   31/08/1999 25
## 1655   31/10/2007 25
## 1656   01/02/1999 24
## 1657   01/03/2000 24
## 1658   01/03/2007 24
## 1659   01/12/2011 24
## 1660   02/05/2005 24
## 1661   02/06/2009 24
## 1662   02/12/1997 24
## 1663   02/12/2004 24
## 1664   03/01/2001 24
## 1665   03/01/2008 24
## 1666   03/02/2003 24
## 1667   03/04/2006 24
## 1668   03/09/1998 24
## 1669   03/12/2004 24
## 1670   04/01/2007 24
## 1671   04/02/1999 24
## 1672   04/02/2010 24
## 1673   04/06/2008 24
## 1674   04/08/1998 24
## 1675   04/09/2002 24
## 1676   04/10/2000 24
## 1677   04/10/2004 24
## 1678   05/03/1997 24
## 1679   05/03/2008 24
## 1680   05/04/2001 24
## 1681   05/05/1997 24
## 1682   05/11/2012 24
## 1683   05/12/2011 24
## 1684   06/01/1998 24
## 1685   06/02/1998 24
## 1686   06/05/2010 24
## 1687   06/06/2008 24
## 1688   06/11/2008 24
## 1689   07/06/2001 24
## 1690   07/07/2010 24
## 1691   07/08/1997 24
## 1692   07/08/2008 24
## 1693   07/10/1998 24
## 1694   08/05/2012 24
## 1695   08/08/2011 24
## 1696   08/09/2004 24
## 1697   08/11/1996 24
## 1698   09/01/1996 24
## 1699   09/02/1999 24
## 1700   09/02/2000 24
## 1701   09/06/2000 24
## 1702   09/06/2008 24
## 1703   09/06/2010 24
## 1704   09/07/2008 24
## 1705   09/08/2007 24
## 1706   09/10/2012 24
## 1707   09/11/1998 24
## 1708   09/11/2004 24
## 1709   09/11/2005 24
## 1710   10/01/2008 24
## 1711   10/04/2006 24
## 1712   10/04/2007 24
## 1713   10/04/2013 24
## 1714   10/06/2004 24
## 1715   10/06/2013 24
## 1716   10/09/1997 24
## 1717   10/10/2002 24
## 1718   10/10/2005 24
## 1719   10/10/2006 24
## 1720   10/11/1999 24
## 1721   10/11/2004 24
## 1722   10/12/2009 24
## 1723   10/12/2012 24
## 1724   11/01/2002 24
## 1725   11/02/1997 24
## 1726   11/05/2006 24
## 1727   11/07/1997 24
## 1728   11/08/1997 24
## 1729   11/08/2004 24
## 1730   11/09/2000 24
## 1731   11/09/2002 24
## 1732   11/12/2007 24
## 1733   12/02/1997 24
## 1734   12/02/2013 24
## 1735   12/03/2002 24
## 1736   12/03/2007 24
## 1737   12/04/2000 24
## 1738   12/05/2009 24
## 1739   12/06/2008 24
## 1740   12/07/2004 24
## 1741   12/08/1998 24
## 1742   12/09/2006 24
## 1743   12/12/2007 24
## 1744   13/04/1999 24
## 1745   13/05/2009 24
## 1746   13/06/2002 24
## 1747   13/06/2012 24
## 1748   13/07/2009 24
## 1749   13/09/2011 24
## 1750   13/10/2010 24
## 1751   13/12/1996 24
## 1752   13/12/2006 24
## 1753   13/12/2007 24
## 1754   14/01/1999 24
## 1755   14/01/2008 24
## 1756   14/01/2011 24
## 1757   14/02/2011 24
## 1758   14/04/1999 24
## 1759   14/07/2003 24
## 1760   14/08/2012 24
## 1761   14/09/2010 24
## 1762   14/11/2011 24
## 1763   14/12/1998 24
## 1764   14/12/2005 24
## 1765   15/02/2001 24
## 1766   15/03/2000 24
## 1767   15/03/2001 24
## 1768   15/06/2005 24
## 1769   15/07/2008 24
## 1770   15/07/2013 24
## 1771   15/08/2007 24
## 1772   15/08/2011 24
## 1773   15/08/2013 24
## 1774   15/10/2004 24
## 1775   15/10/2007 24
## 1776   15/11/2001 24
## 1777   15/11/2005 24
## 1778   16/02/2000 24
## 1779   16/02/2004 24
## 1780   16/02/2009 24
## 1781   16/02/2012 24
## 1782   16/03/2009 24
## 1783   16/04/2007 24
## 1784   16/05/2005 24
## 1785   16/06/2000 24
## 1786   16/06/2006 24
## 1787   16/11/2005 24
## 1788   16/12/2009 24
## 1789   17/01/2006 24
## 1790   17/02/2000 24
## 1791   17/03/1999 24
## 1792   17/04/1998 24
## 1793   17/05/2002 24
## 1794   17/06/2009 24
## 1795   17/07/2008 24
## 1796   17/08/2010 24
## 1797   17/09/1999 24
## 1798   17/11/2000 24
## 1799   17/11/2004 24
## 1800   18/02/2009 24
## 1801   18/04/2012 24
## 1802   18/05/2004 24
## 1803   18/06/2002 24
## 1804   18/07/1997 24
## 1805   18/07/2002 24
## 1806   18/07/2005 24
## 1807   18/08/2011 24
## 1808   18/09/2006 24
## 1809   18/09/2008 24
## 1810   18/10/2004 24
## 1811   18/11/2003 24
## 1812   18/11/2010 24
## 1813   18/12/2000 24
## 1814   19/03/2008 24
## 1815   19/04/2005 24
## 1816   19/06/2008 24
## 1817   19/07/1996 24
## 1818   19/07/2012 24
## 1819   19/09/2000 24
## 1820   19/11/2001 24
## 1821   19/11/2008 24
## 1822   20/01/2009 24
## 1823   20/03/2013 24
## 1824   20/04/2005 24
## 1825   20/05/2004 24
## 1826   20/09/2007 24
## 1827   20/11/2000 24
## 1828   21/01/2010 24
## 1829   21/03/2012 24
## 1830   21/04/2003 24
## 1831   21/05/2013 24
## 1832   21/08/2007 24
## 1833   21/08/2013 24
## 1834   21/09/1998 24
## 1835   21/09/1999 24
## 1836   21/10/2010 24
## 1837   22/01/2007 24
## 1838   22/03/2000 24
## 1839   22/04/2003 24
## 1840   22/04/2010 24
## 1841   22/05/2008 24
## 1842   22/06/2001 24
## 1843   22/06/2004 24
## 1844   22/07/2004 24
## 1845   22/07/2008 24
## 1846   23/01/1997 24
## 1847   23/01/2007 24
## 1848   23/02/2000 24
## 1849   23/04/2004 24
## 1850   23/04/2012 24
## 1851   23/05/2000 24
## 1852   23/07/2008 24
## 1853   23/07/2010 24
## 1854   23/08/2004 24
## 1855   23/08/2007 24
## 1856   23/10/2001 24
## 1857   23/10/2007 24
## 1858   24/02/2014 24
## 1859   24/03/2004 24
## 1860   24/03/2006 24
## 1861   24/06/1999 24
## 1862   24/06/2013 24
## 1863   24/09/1997 24
## 1864   24/10/2000 24
## 1865   25/04/2008 24
## 1866   25/05/1999 24
## 1867   25/06/2001 24
## 1868   25/06/2012 24
## 1869   25/07/2011 24
## 1870   25/09/2006 24
## 1871   25/10/2011 24
## 1872   26/01/2005 24
## 1873   26/03/2008 24
## 1874   26/04/2004 24
## 1875   26/07/2000 24
## 1876   26/07/2005 24
## 1877   26/08/1997 24
## 1878   26/08/2013 24
## 1879   26/09/2012 24
## 1880   26/09/2013 24
## 1881   27/01/2003 24
## 1882   27/01/2010 24
## 1883   27/01/2011 24
## 1884   27/05/1997 24
## 1885   27/05/1998 24
## 1886   27/06/2008 24
## 1887   27/08/1998 24
## 1888   27/10/2008 24
## 1889   28/02/2008 24
## 1890   28/02/2012 24
## 1891   28/03/2007 24
## 1892   28/04/1999 24
## 1893   28/08/1997 24
## 1894   28/08/2012 24
## 1895   28/09/1999 24
## 1896   28/09/2004 24
## 1897   28/09/2009 24
## 1898   28/09/2010 24
## 1899   29/03/2000 24
## 1900   29/05/2001 24
## 1901   29/06/1998 24
## 1902   29/07/2003 24
## 1903   29/08/2005 24
## 1904   29/12/1997 24
## 1905   30/03/2006 24
## 1906   30/04/2002 24
## 1907   30/05/2008 24
## 1908   30/06/2004 24
## 1909   30/10/2006 24
## 1910   30/11/2000 24
## 1911   30/11/2009 24
## 1912   31/10/1996 24
## 1913   01/04/2005 23
## 1914   01/05/1997 23
## 1915   01/05/2001 23
## 1916   01/05/2013 23
## 1917   01/07/2002 23
## 1918   01/09/1999 23
## 1919   01/10/2004 23
## 1920   01/10/2010 23
## 1921   01/12/2009 23
## 1922   02/01/2002 23
## 1923   02/03/2000 23
## 1924   02/04/2003 23
## 1925   02/06/2000 23
## 1926   02/07/1998 23
## 1927   02/08/2005 23
## 1928   02/08/2007 23
## 1929   02/10/2007 23
## 1930   02/12/2009 23
## 1931   03/01/2000 23
## 1932   03/04/2008 23
## 1933   03/08/2009 23
## 1934   03/11/2003 23
## 1935   04/02/2000 23
## 1936   04/03/2003 23
## 1937   04/04/2005 23
## 1938   04/05/2011 23
## 1939   04/06/1999 23
## 1940   04/08/2006 23
## 1941   04/10/1996 23
## 1942   05/05/2003 23
## 1943   05/05/2008 23
## 1944   05/05/2011 23
## 1945   05/06/2001 23
## 1946   05/06/2002 23
## 1947   05/08/1999 23
## 1948   05/10/2011 23
## 1949   05/11/2009 23
## 1950   05/12/2013 23
## 1951   06/03/1998 23
## 1952   06/04/2009 23
## 1953   06/05/2008 23
## 1954   06/06/2003 23
## 1955   06/06/2005 23
## 1956   06/07/2001 23
## 1957   06/07/2005 23
## 1958   06/09/2011 23
## 1959   06/10/2010 23
## 1960   06/12/2005 23
## 1961   07/02/2005 23
## 1962   07/02/2008 23
## 1963   07/03/2006 23
## 1964   07/03/2012 23
## 1965   07/03/2013 23
## 1966   07/04/2000 23
## 1967   07/05/2008 23
## 1968   07/06/2002 23
## 1969   07/07/1998 23
## 1970   07/08/2012 23
## 1971   07/09/1996 23
## 1972   07/12/1999 23
## 1973   08/01/2003 23
## 1974   08/03/2001 23
## 1975   08/03/2007 23
## 1976   08/04/2013 23
## 1977   08/07/2004 23
## 1978   08/07/2013 23
## 1979   08/10/1996 23
## 1980   08/11/2000 23
## 1981   08/12/2004 23
## 1982   08/12/2011 23
## 1983   09/01/2004 23
## 1984   09/01/2008 23
## 1985   09/03/1998 23
## 1986   09/05/1997 23
## 1987   09/05/2006 23
## 1988   09/05/2012 23
## 1989   09/06/1997 23
## 1990   09/10/2002 23
## 1991   09/12/2003 23
## 1992   10/01/2006 23
## 1993   10/03/2008 23
## 1994   10/03/2010 23
## 1995   10/04/2012 23
## 1996   10/05/2001 23
## 1997   10/06/1998 23
## 1998   10/07/2012 23
## 1999   10/08/2012 23
## 2000   10/12/1996 23
## 2001   11/01/1999 23
## 2002   11/03/2010 23
## 2003   11/04/2002 23
## 2004   11/04/2007 23
## 2005   11/05/2011 23
## 2006   11/08/1999 23
## 2007   11/08/2000 23
## 2008   11/08/2003 23
## 2009   11/10/2000 23
## 2010   11/12/1997 23
## 2011   12/01/2000 23
## 2012   12/02/1998 23
## 2013   12/03/2013 23
## 2014   12/05/2008 23
## 2015   12/06/2009 23
## 2016   12/08/2004 23
## 2017   12/09/2005 23
## 2018   12/10/2000 23
## 2019   12/10/2011 23
## 2020   12/10/2012 23
## 2021   13/01/1998 23
## 2022   13/02/2003 23
## 2023   13/03/2007 23
## 2024   13/04/2000 23
## 2025   13/07/1998 23
## 2026   13/08/1999 23
## 2027   13/08/2009 23
## 2028   13/08/2013 23
## 2029   13/09/1999 23
## 2030   13/09/2012 23
## 2031   13/10/1999 23
## 2032   13/11/2002 23
## 2033   13/11/2008 23
## 2034   13/11/2012 23
## 2035   13/12/2004 23
## 2036   13/12/2005 23
## 2037   14/02/2001 23
## 2038   14/02/2005 23
## 2039   14/02/2012 23
## 2040   14/04/2005 23
## 2041   14/09/2011 23
## 2042   14/11/2007 23
## 2043   15/02/2002 23
## 2044   15/02/2005 23
## 2045   15/05/1997 23
## 2046   15/06/2012 23
## 2047   15/07/2009 23
## 2048   15/07/2011 23
## 2049   15/09/1996 23
## 2050   15/09/2003 23
## 2051   15/10/2010 23
## 2052   15/10/2013 23
## 2053   15/11/2006 23
## 2054   15/11/2007 23
## 2055   15/12/2004 23
## 2056   16/02/1999 23
## 2057   16/02/2011 23
## 2058   16/06/2009 23
## 2059   16/07/2010 23
## 2060   16/09/1998 23
## 2061   16/09/2005 23
## 2062   16/12/2002 23
## 2063   17/01/2013 23
## 2064   17/03/1998 23
## 2065   17/03/2006 23
## 2066   17/04/2001 23
## 2067   17/04/2006 23
## 2068   17/04/2012 23
## 2069   17/05/2005 23
## 2070   17/06/2010 23
## 2071   17/08/1999 23
## 2072   17/09/2009 23
## 2073   17/10/2002 23
## 2074   18/02/2008 23
## 2075   18/03/2013 23
## 2076   18/04/1997 23
## 2077   18/08/1997 23
## 2078   18/09/2001 23
## 2079   18/11/1998 23
## 2080   18/12/2008 23
## 2081   19/01/2000 23
## 2082   19/02/2004 23
## 2083   19/07/2005 23
## 2084   19/07/2011 23
## 2085   19/08/1997 23
## 2086   19/08/1998 23
## 2087   19/08/2010 23
## 2088   19/09/2001 23
## 2089   20/02/2012 23
## 2090   20/03/2012 23
## 2091   20/05/1998 23
## 2092   20/05/2008 23
## 2093   20/06/2013 23
## 2094   20/10/2008 23
## 2095   21/02/2008 23
## 2096   21/04/2005 23
## 2097   21/05/2002 23
## 2098   21/07/2006 23
## 2099   21/08/2003 23
## 2100   21/09/2001 23
## 2101   21/10/2008 23
## 2102   22/01/2003 23
## 2103   22/01/2004 23
## 2104   22/02/1999 23
## 2105   22/02/2005 23
## 2106   22/04/2008 23
## 2107   22/09/1999 23
## 2108   22/09/2010 23
## 2109   23/02/2006 23
## 2110   23/02/2011 23
## 2111   23/03/2007 23
## 2112   23/04/1999 23
## 2113   23/04/2001 23
## 2114   23/05/2013 23
## 2115   23/07/2004 23
## 2116   23/08/2005 23
## 2117   23/08/2010 23
## 2118   23/09/2004 23
## 2119   23/10/1997 23
## 2120   23/10/2000 23
## 2121   23/10/2013 23
## 2122   23/11/1999 23
## 2123   24/01/2011 23
## 2124   24/02/2009 23
## 2125   24/03/1999 23
## 2126   24/05/2007 23
## 2127   24/06/2002 23
## 2128   24/07/2008 23
## 2129   24/09/2008 23
## 2130   25/01/2011 23
## 2131   25/02/2010 23
## 2132   25/03/1996 23
## 2133   25/03/2004 23
## 2134   25/04/2013 23
## 2135   25/05/2011 23
## 2136   25/07/2013 23
## 2137   25/08/1998 23
## 2138   25/08/2008 23
## 2139   25/08/2009 23
## 2140   25/10/2001 23
## 2141   25/10/2002 23
## 2142   26/02/1998 23
## 2143   26/02/2009 23
## 2144   26/04/2012 23
## 2145   26/05/1999 23
## 2146   26/08/1999 23
## 2147   26/08/2009 23
## 2148   26/09/2011 23
## 2149   26/10/2000 23
## 2150   26/11/2001 23
## 2151   27/02/2001 23
## 2152   27/05/2009 23
## 2153   27/06/1997 23
## 2154   27/08/2007 23
## 2155   27/09/2005 23
## 2156   27/09/2006 23
## 2157   27/10/2006 23
## 2158   27/12/2010 23
## 2159   28/01/1998 23
## 2160   28/02/2013 23
## 2161   28/06/2002 23
## 2162   28/06/2010 23
## 2163   28/06/2013 23
## 2164   28/07/1998 23
## 2165   28/07/2005 23
## 2166   28/08/2007 23
## 2167   28/09/2012 23
## 2168   29/01/2002 23
## 2169   29/06/2009 23
## 2170   29/07/1999 23
## 2171   29/08/2012 23
## 2172   29/09/2003 23
## 2173   29/09/2008 23
## 2174   29/09/2009 23
## 2175   29/09/2010 23
## 2176   30/01/2013 23
## 2177   30/04/1998 23
## 2178   30/04/2007 23
## 2179   30/05/1996 23
## 2180   30/07/2009 23
## 2181   30/08/2004 23
## 2182   30/08/2005 23
## 2183   30/09/2003 23
## 2184   30/09/2009 23
## 2185   30/09/2010 23
## 2186   31/03/2010 23
## 2187   31/07/2006 23
## 2188   31/07/2008 23
## 2189   31/08/2011 23
## 2190   01/03/2004 22
## 2191   01/03/2006 22
## 2192   01/04/2010 22
## 2193   01/08/2008 22
## 2194   01/10/2002 22
## 2195   01/12/1998 22
## 2196   01/12/2010 22
## 2197   02/02/1998 22
## 2198   02/04/2004 22
## 2199   02/05/2003 22
## 2200   02/05/2011 22
## 2201   02/06/1998 22
## 2202   02/07/2001 22
## 2203   02/07/2004 22
## 2204   02/07/2013 22
## 2205   02/09/1999 22
## 2206   02/10/1997 22
## 2207   02/11/2006 22
## 2208   02/12/1998 22
## 2209   02/12/1999 22
## 2210   03/04/2007 22
## 2211   03/06/2003 22
## 2212   03/07/1996 22
## 2213   03/07/2002 22
## 2214   03/07/2006 22
## 2215   03/09/2010 22
## 2216   03/10/2003 22
## 2217   03/10/2007 22
## 2218   03/10/2013 22
## 2219   03/12/2012 22
## 2220   04/01/2000 22
## 2221   04/01/2001 22
## 2222   04/02/2005 22
## 2223   04/03/2008 22
## 2224   04/03/2009 22
## 2225   04/03/2010 22
## 2226   04/04/2011 22
## 2227   04/06/2009 22
## 2228   04/09/2013 22
## 2229   04/11/2010 22
## 2230   04/11/2013 22
## 2231   04/12/2001 22
## 2232   04/12/2003 22
## 2233   04/12/2008 22
## 2234   05/02/1998 22
## 2235   05/02/2008 22
## 2236   05/02/2013 22
## 2237   05/03/1999 22
## 2238   05/04/2004 22
## 2239   05/06/2008 22
## 2240   05/06/2012 22
## 2241   05/09/2000 22
## 2242   05/09/2002 22
## 2243   05/10/2006 22
## 2244   05/11/2002 22
## 2245   05/11/2010 22
## 2246   06/03/2008 22
## 2247   06/03/2013 22
## 2248   06/07/2006 22
## 2249   06/08/2001 22
## 2250   06/08/2012 22
## 2251   06/09/2005 22
## 2252   06/10/1998 22
## 2253   06/10/2009 22
## 2254   06/12/2006 22
## 2255   07/01/2010 22
## 2256   07/02/2000 22
## 2257   07/02/2001 22
## 2258   07/02/2012 22
## 2259   07/04/1997 22
## 2260   07/04/2009 22
## 2261   07/06/2012 22
## 2262   07/10/2002 22
## 2263   07/10/2010 22
## 2264   07/11/2012 22
## 2265   07/12/2007 22
## 2266   08/01/1999 22
## 2267   08/01/2004 22
## 2268   08/01/2007 22
## 2269   08/01/2008 22
## 2270   08/03/2006 22
## 2271   08/03/2011 22
## 2272   08/05/1997 22
## 2273   08/06/2005 22
## 2274   08/09/1997 22
## 2275   08/10/2013 22
## 2276   08/11/1999 22
## 2277   08/12/1999 22
## 2278   08/12/2005 22
## 2279   09/01/1997 22
## 2280   09/01/2012 22
## 2281   09/05/2011 22
## 2282   09/06/2003 22
## 2283   09/07/2012 22
## 2284   09/10/2003 22
## 2285   10/06/1997 22
## 2286   10/09/2002 22
## 2287   10/10/2013 22
## 2288   11/01/2000 22
## 2289   11/01/2008 22
## 2290   11/02/2002 22
## 2291   11/02/2003 22
## 2292   11/03/2008 22
## 2293   11/03/2013 22
## 2294   11/05/2004 22
## 2295   11/05/2009 22
## 2296   11/06/1996 22
## 2297   11/06/2008 22
## 2298   11/06/2010 22
## 2299   11/07/2007 22
## 2300   11/12/2006 22
## 2301   12/02/2001 22
## 2302   12/02/2004 22
## 2303   12/04/2005 22
## 2304   12/04/2007 22
## 2305   12/06/2001 22
## 2306   12/07/1999 22
## 2307   12/07/2013 22
## 2308   12/08/2005 22
## 2309   12/09/2003 22
## 2310   12/10/2006 22
## 2311   12/11/1999 22
## 2312   13/01/1999 22
## 2313   13/01/2006 22
## 2314   13/02/2001 22
## 2315   13/04/2006 22
## 2316   13/09/2006 22
## 2317   13/09/2007 22
## 2318   13/12/2012 22
## 2319   14/05/1999 22
## 2320   14/06/2001 22
## 2321   14/06/2007 22
## 2322   14/06/2013 22
## 2323   14/08/2008 22
## 2324   14/09/1998 22
## 2325   14/09/2000 22
## 2326   14/10/2009 22
## 2327   14/11/2012 22
## 2328   14/12/1999 22
## 2329   14/12/2000 22
## 2330   14/12/2004 22
## 2331   15/01/2010 22
## 2332   15/02/2013 22
## 2333   15/03/2013 22
## 2334   15/05/2002 22
## 2335   15/08/2001 22
## 2336   15/10/1997 22
## 2337   15/10/1999 22
## 2338   15/11/1999 22
## 2339   15/11/2000 22
## 2340   16/04/2010 22
## 2341   16/07/2004 22
## 2342   16/10/2002 22
## 2343   16/10/2006 22
## 2344   16/11/2001 22
## 2345   16/11/2011 22
## 2346   16/12/2003 22
## 2347   17/01/1997 22
## 2348   17/03/2003 22
## 2349   17/04/2013 22
## 2350   17/06/2011 22
## 2351   17/06/2013 22
## 2352   17/09/2001 22
## 2353   17/10/2001 22
## 2354   17/10/2013 22
## 2355   17/11/1998 22
## 2356   17/11/2005 22
## 2357   17/11/2010 22
## 2358   18/01/2000 22
## 2359   18/01/2001 22
## 2360   18/02/2010 22
## 2361   18/03/2004 22
## 2362   18/04/2006 22
## 2363   18/04/2008 22
## 2364   18/05/2000 22
## 2365   18/07/2007 22
## 2366   18/08/1998 22
## 2367   18/10/2001 22
## 2368   18/11/2004 22
## 2369   18/12/2001 22
## 2370   18/12/2013 22
## 2371   19/02/2008 22
## 2372   19/03/2004 22
## 2373   19/03/2007 22
## 2374   19/03/2014 22
## 2375   19/05/2008 22
## 2376   19/05/2011 22
## 2377   19/06/1997 22
## 2378   19/07/2010 22
## 2379   19/08/2002 22
## 2380   20/01/2000 22
## 2381   20/03/2001 22
## 2382   20/03/2003 22
## 2383   20/04/2011 22
## 2384   20/05/2010 22
## 2385   20/07/2006 22
## 2386   20/09/2004 22
## 2387   20/11/2003 22
## 2388   20/11/2013 22
## 2389   21/05/1997 22
## 2390   21/05/2003 22
## 2391   21/07/2010 22
## 2392   21/08/2000 22
## 2393   21/10/1999 22
## 2394   21/11/2000 22
## 2395   22/01/1998 22
## 2396   22/01/2002 22
## 2397   22/07/2010 22
## 2398   22/08/2005 22
## 2399   22/08/2013 22
## 2400   22/09/1998 22
## 2401   23/01/2002 22
## 2402   23/03/2004 22
## 2403   23/04/2013 22
## 2404   23/05/1997 22
## 2405   23/06/2009 22
## 2406   23/07/1998 22
## 2407   23/07/2013 22
## 2408   23/08/1999 22
## 2409   23/09/2009 22
## 2410   23/10/1996 22
## 2411   23/11/1998 22
## 2412   24/01/2003 22
## 2413   24/01/2008 22
## 2414   24/02/2011 22
## 2415   24/04/2007 22
## 2416   24/08/1999 22
## 2417   24/09/2002 22
## 2418   24/09/2010 22
## 2419   24/10/2003 22
## 2420   25/01/2002 22
## 2421   25/02/1997 22
## 2422   25/03/1997 22
## 2423   25/03/1999 22
## 2424   25/04/2000 22
## 2425   25/06/1998 22
## 2426   25/07/1997 22
## 2427   25/07/2002 22
## 2428   25/07/2012 22
## 2429   25/09/2007 22
## 2430   25/09/2012 22
## 2431   26/01/2009 22
## 2432   26/02/2004 22
## 2433   26/03/2003 22
## 2434   26/03/2013 22
## 2435   26/04/2001 22
## 2436   26/06/2012 22
## 2437   26/07/2012 22
## 2438   26/08/2005 22
## 2439   26/09/2008 22
## 2440   27/01/2005 22
## 2441   27/02/2006 22
## 2442   27/03/1997 22
## 2443   27/03/1998 22
## 2444   27/03/2003 22
## 2445   27/03/2012 22
## 2446   27/06/2001 22
## 2447   27/06/2005 22
## 2448   27/09/2011 22
## 2449   27/11/2007 22
## 2450   28/02/2007 22
## 2451   28/02/2011 22
## 2452   28/03/2001 22
## 2453   28/04/2005 22
## 2454   28/05/2009 22
## 2455   28/10/1998 22
## 2456   28/10/2010 22
## 2457   28/11/2001 22
## 2458   29/03/1996 22
## 2459   29/03/2011 22
## 2460   29/04/1997 22
## 2461   29/07/2004 22
## 2462   29/08/1997 22
## 2463   29/08/2007 22
## 2464   29/10/1998 22
## 2465   29/10/2008 22
## 2466   29/11/1999 22
## 2467   30/01/2001 22
## 2468   30/03/2001 22
## 2469   30/04/1997 22
## 2470   30/05/2012 22
## 2471   30/07/2003 22
## 2472   30/08/2007 22
## 2473   30/09/2002 22
## 2474   31/01/2005 22
## 2475   31/03/1997 22
## 2476   31/03/2006 22
## 2477   31/05/2005 22
## 2478   31/05/2006 22
## 2479   01/02/2005 21
## 2480   01/02/2008 21
## 2481   01/10/2000 21
## 2482   01/10/2012 21
## 2483   01/12/2000 21
## 2484   02/02/2001 21
## 2485   02/06/1999 21
## 2486   02/08/2000 21
## 2487   02/08/2011 21
## 2488   02/08/2012 21
## 2489   02/09/2004 21
## 2490   02/10/2002 21
## 2491   02/11/2001 21
## 2492   02/11/2009 21
## 2493   02/12/2011 21
## 2494   03/02/1999 21
## 2495   03/02/2005 21
## 2496   03/05/2013 21
## 2497   03/07/2012 21
## 2498   03/09/2003 21
## 2499   04/02/1996 21
## 2500   04/02/1998 21
## 2501   04/03/2005 21
## 2502   04/04/2008 21
## 2503   04/05/2001 21
## 2504   04/05/2010 21
## 2505   04/06/1998 21
## 2506   04/11/1999 21
## 2507   04/11/2002 21
## 2508   04/11/2011 21
## 2509   04/12/2006 21
## 2510   05/01/1999 21
## 2511   05/01/2000 21
## 2512   05/01/2006 21
## 2513   05/02/2002 21
## 2514   05/03/2003 21
## 2515   05/03/2004 21
## 2516   05/04/2000 21
## 2517   05/06/2013 21
## 2518   05/07/1996 21
## 2519   05/07/2006 21
## 2520   05/07/2011 21
## 2521   05/08/1996 21
## 2522   05/09/2013 21
## 2523   05/10/2000 21
## 2524   05/11/1999 21
## 2525   05/12/2006 21
## 2526   06/01/1997 21
## 2527   06/01/2003 21
## 2528   06/01/2014 21
## 2529   06/02/1997 21
## 2530   06/02/2003 21
## 2531   06/02/2008 21
## 2532   06/03/1997 21
## 2533   06/03/2009 21
## 2534   06/03/2012 21
## 2535   06/04/2004 21
## 2536   06/05/2004 21
## 2537   06/08/1998 21
## 2538   06/08/2008 21
## 2539   06/12/1996 21
## 2540   06/12/2010 21
## 2541   07/01/1997 21
## 2542   07/01/2008 21
## 2543   07/04/2006 21
## 2544   07/05/1999 21
## 2545   07/05/2013 21
## 2546   07/07/2005 21
## 2547   07/09/1999 21
## 2548   07/09/2001 21
## 2549   07/10/2011 21
## 2550   07/11/2007 21
## 2551   07/12/2012 21
## 2552   08/03/1996 21
## 2553   08/05/2008 21
## 2554   08/05/2009 21
## 2555   08/06/2012 21
## 2556   08/07/1998 21
## 2557   08/07/2008 21
## 2558   08/08/2008 21
## 2559   08/11/2001 21
## 2560   08/11/2010 21
## 2561   09/01/2006 21
## 2562   09/04/2002 21
## 2563   09/04/2013 21
## 2564   09/06/2004 21
## 2565   09/06/2009 21
## 2566   09/07/1998 21
## 2567   09/07/1999 21
## 2568   09/07/2003 21
## 2569   09/09/2005 21
## 2570   09/09/2010 21
## 2571   09/09/2011 21
## 2572   09/09/2013 21
## 2573   09/11/2007 21
## 2574   09/12/2008 21
## 2575   09/12/2013 21
## 2576   10/01/2001 21
## 2577   10/01/2014 21
## 2578   10/02/1999 21
## 2579   10/02/2011 21
## 2580   10/03/1999 21
## 2581   10/04/2001 21
## 2582   10/09/1998 21
## 2583   10/11/2003 21
## 2584   10/12/2002 21
## 2585   10/12/2008 21
## 2586   11/03/2014 21
## 2587   11/04/2005 21
## 2588   11/04/2008 21
## 2589   11/05/1999 21
## 2590   11/05/2005 21
## 2591   11/06/2003 21
## 2592   11/06/2012 21
## 2593   11/08/2009 21
## 2594   12/01/2012 21
## 2595   12/02/1999 21
## 2596   12/02/2003 21
## 2597   12/02/2009 21
## 2598   12/03/1998 21
## 2599   12/04/2002 21
## 2600   12/05/2000 21
## 2601   12/08/2011 21
## 2602   12/10/1998 21
## 2603   12/10/2001 21
## 2604   12/12/1997 21
## 2605   12/12/2006 21
## 2606   13/02/2002 21
## 2607   13/03/1996 21
## 2608   13/05/2010 21
## 2609   13/06/2013 21
## 2610   13/07/2011 21
## 2611   13/08/2007 21
## 2612   13/10/2003 21
## 2613   13/10/2008 21
## 2614   13/12/1999 21
## 2615   13/12/2001 21
## 2616   13/12/2002 21
## 2617   14/02/2008 21
## 2618   14/03/2003 21
## 2619   14/05/2013 21
## 2620   14/08/2007 21
## 2621   14/10/2008 21
## 2622   15/03/1999 21
## 2623   15/03/2011 21
## 2624   15/06/2009 21
## 2625   15/07/2010 21
## 2626   15/10/2009 21
## 2627   16/02/2010 21
## 2628   16/04/1999 21
## 2629   16/05/2011 21
## 2630   16/06/1997 21
## 2631   16/11/2012 21
## 2632   17/02/2009 21
## 2633   17/03/2000 21
## 2634   17/03/2009 21
## 2635   17/03/2010 21
## 2636   17/05/2013 21
## 2637   17/06/2002 21
## 2638   17/07/1997 21
## 2639   17/07/2012 21
## 2640   17/10/2007 21
## 2641   17/12/2008 21
## 2642   18/01/2007 21
## 2643   18/02/2000 21
## 2644   18/06/2004 21
## 2645   18/06/2012 21
## 2646   18/09/2000 21
## 2647   18/09/2009 21
## 2648   18/10/2010 21
## 2649   18/12/2007 21
## 2650   18/12/2012 21
## 2651   19/02/1998 21
## 2652   19/02/2013 21
## 2653   19/05/2000 21
## 2654   19/08/2009 21
## 2655   19/09/1996 21
## 2656   19/09/1997 21
## 2657   19/09/2013 21
## 2658   19/11/1996 21
## 2659   19/11/1999 21
## 2660   19/12/2005 21
## 2661   20/01/2011 21
## 2662   20/02/2008 21
## 2663   20/02/2014 21
## 2664   20/04/1998 21
## 2665   20/04/2007 21
## 2666   20/05/1999 21
## 2667   20/05/2002 21
## 2668   20/06/2002 21
## 2669   20/06/2008 21
## 2670   20/06/2011 21
## 2671   20/07/2011 21
## 2672   20/09/2012 21
## 2673   20/12/1999 21
## 2674   21/01/1999 21
## 2675   21/03/1997 21
## 2676   21/06/2011 21
## 2677   21/07/2003 21
## 2678   21/07/2008 21
## 2679   21/10/2003 21
## 2680   21/11/2013 21
## 2681   21/12/2005 21
## 2682   22/01/2013 21
## 2683   22/01/2014 21
## 2684   22/03/1999 21
## 2685   22/04/1999 21
## 2686   22/06/2007 21
## 2687   22/07/1999 21
## 2688   22/09/2008 21
## 2689   22/10/2008 21
## 2690   22/10/2009 21
## 2691   23/01/2004 21
## 2692   23/02/1999 21
## 2693   23/02/2001 21
## 2694   23/09/2011 21
## 2695   23/10/2003 21
## 2696   23/11/2009 21
## 2697   24/02/1999 21
## 2698   24/03/2000 21
## 2699   24/04/2013 21
## 2700   24/05/2000 21
## 2701   24/07/2002 21
## 2702   24/08/2010 21
## 2703   24/11/2003 21
## 2704   25/01/1999 21
## 2705   25/01/2008 21
## 2706   25/02/1999 21
## 2707   25/02/2002 21
## 2708   25/03/2010 21
## 2709   25/04/1997 21
## 2710   25/05/2006 21
## 2711   25/06/2010 21
## 2712   25/07/2008 21
## 2713   25/08/2010 21
## 2714   25/10/2007 21
## 2715   26/03/1997 21
## 2716   26/03/2009 21
## 2717   26/04/2000 21
## 2718   26/04/2010 21
## 2719   26/05/2004 21
## 2720   26/05/2005 21
## 2721   26/06/2009 21
## 2722   26/07/2007 21
## 2723   26/09/2003 21
## 2724   26/10/1999 21
## 2725   26/10/2009 21
## 2726   27/03/2006 21
## 2727   27/03/2008 21
## 2728   27/03/2013 21
## 2729   27/05/1999 21
## 2730   27/05/2005 21
## 2731   27/06/2013 21
## 2732   27/10/2005 21
## 2733   27/10/2011 21
## 2734   27/11/2002 21
## 2735   28/01/2003 21
## 2736   28/01/2005 21
## 2737   28/03/2011 21
## 2738   28/04/1998 21
## 2739   28/04/2008 21
## 2740   28/10/1999 21
## 2741   29/01/2014 21
## 2742   29/04/2008 21
## 2743   29/07/2002 21
## 2744   29/08/2002 21
## 2745   29/08/2013 21
## 2746   29/09/1998 21
## 2747   29/09/2011 21
## 2748   29/10/2009 21
## 2749   29/11/2011 21
## 2750   30/01/2008 21
## 2751   30/04/2008 21
## 2752   30/07/2002 21
## 2753   30/09/2008 21
## 2754   31/07/2002 21
## 2755   31/08/2007 21
## 2756   31/08/2009 21
## 2757   31/08/2010 21
## 2758   31/10/2003 21
## 2759   31/10/2005 21
## 2760   31/10/2013 21
## 2761   01/03/2010 20
## 2762   01/05/2012 20
## 2763   01/07/2004 20
## 2764   01/11/2011 20
## 2765   02/03/2004 20
## 2766   02/03/2009 20
## 2767   02/04/2013 20
## 2768   02/05/2000 20
## 2769   02/05/2001 20
## 2770   02/06/2004 20
## 2771   02/06/2005 20
## 2772   02/07/2000 20
## 2773   02/10/2006 20
## 2774   02/11/1998 20
## 2775   02/11/2005 20
## 2776   03/01/1997 20
## 2777   03/03/2010 20
## 2778   03/05/2007 20
## 2779   03/06/2013 20
## 2780   03/08/1995 20
## 2781   03/08/2010 20
## 2782   03/09/1999 20
## 2783   03/11/2005 20
## 2784   03/12/2007 20
## 2785   04/01/2011 20
## 2786   04/01/2013 20
## 2787   04/02/2008 20
## 2788   04/03/1999 20
## 2789   04/04/2002 20
## 2790   04/04/2007 20
## 2791   04/05/2009 20
## 2792   04/09/1996 20
## 2793   04/11/1998 20
## 2794   04/12/1996 20
## 2795   04/12/2002 20
## 2796   04/12/2012 20
## 2797   05/01/1998 20
## 2798   05/01/2009 20
## 2799   05/01/2011 20
## 2800   05/02/1997 20
## 2801   05/02/2001 20
## 2802   05/02/2007 20
## 2803   05/08/2010 20
## 2804   05/10/1998 20
## 2805   05/11/1996 20
## 2806   06/01/2006 20
## 2807   06/01/2011 20
## 2808   06/02/2004 20
## 2809   06/02/2007 20
## 2810   06/03/2001 20
## 2811   06/03/2006 20
## 2812   06/04/1996 20
## 2813   06/04/2000 20
## 2814   06/07/2011 20
## 2815   06/07/2012 20
## 2816   06/08/2013 20
## 2817   06/11/2002 20
## 2818   06/12/2012 20
## 2819   07/01/2003 20
## 2820   07/02/1997 20
## 2821   07/02/2002 20
## 2822   07/02/2006 20
## 2823   07/04/1998 20
## 2824   07/05/2010 20
## 2825   07/06/2004 20
## 2826   07/07/2011 20
## 2827   07/08/2001 20
## 2828   07/10/2003 20
## 2829   08/02/2007 20
## 2830   08/02/2012 20
## 2831   08/03/2012 20
## 2832   08/05/1998 20
## 2833   08/05/2002 20
## 2834   08/05/2003 20
## 2835   08/05/2006 20
## 2836   08/08/1997 20
## 2837   08/10/2002 20
## 2838   08/10/2003 20
## 2839   08/10/2008 20
## 2840   08/10/2009 20
## 2841   08/11/2004 20
## 2842   08/11/2005 20
## 2843   09/02/1996 20
## 2844   09/02/1998 20
## 2845   09/02/2010 20
## 2846   09/03/2001 20
## 2847   09/03/2005 20
## 2848   09/03/2010 20
## 2849   09/03/2011 20
## 2850   09/04/2008 20
## 2851   09/05/2001 20
## 2852   09/05/2003 20
## 2853   09/05/2007 20
## 2854   09/05/2008 20
## 2855   09/07/2009 20
## 2856   09/08/1999 20
## 2857   09/08/2006 20
## 2858   09/08/2011 20
## 2859   09/09/2009 20
## 2860   09/10/2006 20
## 2861   09/11/2000 20
## 2862   10/01/2007 20
## 2863   10/02/2000 20
## 2864   10/02/2003 20
## 2865   10/07/1998 20
## 2866   10/07/2001 20
## 2867   10/08/2011 20
## 2868   10/10/2011 20
## 2869   11/01/2013 20
## 2870   11/04/2000 20
## 2871   11/04/2012 20
## 2872   11/05/1998 20
## 2873   11/05/2010 20
## 2874   11/06/1999 20
## 2875   11/08/2006 20
## 2876   11/10/2004 20
## 2877   11/10/2012 20
## 2878   11/12/2001 20
## 2879   12/01/1996 20
## 2880   12/01/2007 20
## 2881   12/02/2010 20
## 2882   12/03/1999 20
## 2883   12/03/2003 20
## 2884   12/10/2009 20
## 2885   12/11/1998 20
## 2886   12/12/2000 20
## 2887   13/01/2005 20
## 2888   13/02/2013 20
## 2889   13/04/1996 20
## 2890   13/04/2005 20
## 2891   13/05/2003 20
## 2892   13/07/1999 20
## 2893   13/08/1998 20
## 2894   13/08/2004 20
## 2895   13/08/2010 20
## 2896   13/09/2001 20
## 2897   13/11/2003 20
## 2898   13/11/2006 20
## 2899   14/01/2005 20
## 2900   14/02/2000 20
## 2901   14/02/2013 20
## 2902   14/03/2012 20
## 2903   14/04/1996 20
## 2904   14/04/2004 20
## 2905   14/04/2010 20
## 2906   14/04/2011 20
## 2907   14/05/2012 20
## 2908   14/11/1997 20
## 2909   14/12/2009 20
## 2910   15/03/2004 20
## 2911   15/04/2004 20
## 2912   15/05/2008 20
## 2913   15/07/2002 20
## 2914   15/09/1998 20
## 2915   15/12/1998 20
## 2916   15/12/2000 20
## 2917   15/12/2011 20
## 2918   16/03/2005 20
## 2919   16/04/1997 20
## 2920   16/04/2004 20
## 2921   16/04/2009 20
## 2922   16/04/2013 20
## 2923   16/05/2003 20
## 2924   16/07/2009 20
## 2925   16/08/2012 20
## 2926   16/09/2011 20
## 2927   17/02/2006 20
## 2928   17/04/2008 20
## 2929   17/11/2008 20
## 2930   17/12/1996 20
## 2931   17/12/1999 20
## 2932   17/12/2003 20
## 2933   18/01/2011 20
## 2934   18/02/1997 20
## 2935   18/02/1999 20
## 2936   18/03/2009 20
## 2937   18/04/2005 20
## 2938   18/04/2007 20
## 2939   18/05/1996 20
## 2940   18/05/2001 20
## 2941   18/06/2003 20
## 2942   18/06/2013 20
## 2943   18/07/2008 20
## 2944   18/09/2002 20
## 2945   18/11/2005 20
## 2946   19/02/2009 20
## 2947   19/02/2014 20
## 2948   19/03/2001 20
## 2949   19/04/1999 20
## 2950   19/04/2012 20
## 2951   19/05/2006 20
## 2952   19/06/2012 20
## 2953   19/06/2013 20
## 2954   19/07/2004 20
## 2955   19/09/2012 20
## 2956   19/10/2011 20
## 2957   19/11/2004 20
## 2958   19/11/2013 20
## 2959   19/12/2007 20
## 2960   20/02/2004 20
## 2961   20/02/2007 20
## 2962   20/03/2006 20
## 2963   20/03/2008 20
## 2964   20/05/2011 20
## 2965   20/06/1997 20
## 2966   20/08/2009 20
## 2967   20/09/2002 20
## 2968   20/09/2011 20
## 2969   21/03/1996 20
## 2970   21/03/2006 20
## 2971   21/04/2004 20
## 2972   21/06/2007 20
## 2973   21/06/2010 20
## 2974   21/08/2002 20
## 2975   21/10/2004 20
## 2976   21/11/1996 20
## 2977   22/01/2010 20
## 2978   22/02/2007 20
## 2979   22/03/2002 20
## 2980   22/03/2012 20
## 2981   22/05/2003 20
## 2982   22/07/2009 20
## 2983   22/07/2013 20
## 2984   22/08/1995 20
## 2985   22/08/2003 20
## 2986   22/08/2006 20
## 2987   22/09/2009 20
## 2988   22/10/1998 20
## 2989   22/10/2002 20
## 2990   22/10/2007 20
## 2991   22/12/2004 20
## 2992   23/03/2011 20
## 2993   23/03/2012 20
## 2994   23/04/2008 20
## 2995   23/06/2005 20
## 2996   23/07/2012 20
## 2997   23/09/2013 20
## 2998   23/10/2002 20
## 2999   24/02/2000 20
## 3000   24/02/2003 20
## 3001   24/02/2004 20
## 3002   24/02/2012 20
## 3003   24/04/2008 20
## 3004   24/05/1999 20
## 3005   24/05/2010 20
## 3006   24/05/2011 20
## 3007   24/07/2009 20
## 3008   24/08/2007 20
## 3009   24/10/1996 20
## 3010   24/11/1997 20
## 3011   24/11/1999 20
## 3012   25/04/2002 20
## 3013   25/05/2012 20
## 3014   25/06/2004 20
## 3015   25/09/1998 20
## 3016   26/05/2011 20
## 3017   26/06/1998 20
## 3018   26/06/2007 20
## 3019   26/08/2002 20
## 3020   26/10/2011 20
## 3021   26/11/1996 20
## 3022   26/11/2002 20
## 3023   27/01/1997 20
## 3024   27/02/1997 20
## 3025   27/02/2002 20
## 3026   27/02/2008 20
## 3027   27/04/2011 20
## 3028   27/08/2013 20
## 3029   27/09/2002 20
## 3030   27/09/2007 20
## 3031   27/10/2003 20
## 3032   28/01/2008 20
## 3033   28/02/2001 20
## 3034   28/02/2005 20
## 3035   28/02/2006 20
## 3036   28/03/2000 20
## 3037   28/06/2005 20
## 3038   28/06/2007 20
## 3039   28/06/2012 20
## 3040   28/08/1998 20
## 3041   28/08/2009 20
## 3042   28/09/2007 20
## 3043   28/10/1996 20
## 3044   28/11/2005 20
## 3045   29/02/2000 20
## 3046   29/04/2009 20
## 3047   29/05/2003 20
## 3048   29/05/2013 20
## 3049   29/10/2007 20
## 3050   29/11/2010 20
## 3051   30/01/2014 20
## 3052   30/05/2006 20
## 3053   30/06/2000 20
## 3054   30/06/2003 20
## 3055   30/06/2011 20
## 3056   30/10/2007 20
## 3057   30/11/1998 20
## 3058   30/11/2004 20
## 3059   30/11/2010 20
## 3060   31/01/2011 20
## 3061   31/01/2012 20
## 3062   31/03/2003 20
## 3063   31/08/2000 20
## 3064   01/06/2012 19
## 3065   01/08/2003 19
## 3066   01/09/2000 19
## 3067   01/10/1998 19
## 3068   02/05/2013 19
## 3069   02/08/2004 19
## 3070   02/09/1998 19
## 3071   02/10/2000 19
## 3072   02/10/2013 19
## 3073   03/03/1999 19
## 3074   03/03/2000 19
## 3075   03/04/2013 19
## 3076   03/05/2010 19
## 3077   03/06/1999 19
## 3078   03/07/2001 19
## 3079   03/07/2007 19
## 3080   03/08/2011 19
## 3081   03/11/1999 19
## 3082   03/12/2003 19
## 3083   04/01/1996 19
## 3084   04/05/2000 19
## 3085   04/06/2002 19
## 3086   04/06/2010 19
## 3087   04/08/2005 19
## 3088   04/09/2001 19
## 3089   04/10/2011 19
## 3090   04/10/2012 19
## 3091   04/11/2004 19
## 3092   04/12/1998 19
## 3093   05/01/2001 19
## 3094   05/01/2004 19
## 3095   05/01/2005 19
## 3096   05/03/2009 19
## 3097   05/04/2006 19
## 3098   05/05/2005 19
## 3099   05/07/2000 19
## 3100   05/08/2011 19
## 3101   05/09/2001 19
## 3102   05/10/2001 19
## 3103   05/10/2012 19
## 3104   05/11/1998 19
## 3105   05/12/2007 19
## 3106   05/12/2008 19
## 3107   06/01/1999 19
## 3108   06/01/2004 19
## 3109   06/04/2010 19
## 3110   06/06/2007 19
## 3111   06/10/2008 19
## 3112   06/11/2001 19
## 3113   06/12/2001 19
## 3114   07/02/2003 19
## 3115   07/03/1997 19
## 3116   07/04/2008 19
## 3117   07/06/2011 19
## 3118   07/08/1998 19
## 3119   07/09/2007 19
## 3120   07/09/2012 19
## 3121   07/11/1997 19
## 3122   07/11/2002 19
## 3123   08/01/2009 19
## 3124   08/01/2013 19
## 3125   08/01/2014 19
## 3126   08/02/2002 19
## 3127   08/02/2010 19
## 3128   08/02/2011 19
## 3129   08/03/2010 19
## 3130   08/04/1999 19
## 3131   08/04/2008 19
## 3132   08/05/2013 19
## 3133   08/06/1999 19
## 3134   08/09/2000 19
## 3135   08/09/2009 19
## 3136   08/10/2004 19
## 3137   08/11/2006 19
## 3138   08/11/2012 19
## 3139   09/02/2005 19
## 3140   09/02/2007 19
## 3141   09/04/2009 19
## 3142   09/07/2002 19
## 3143   09/10/2007 19
## 3144   09/12/2004 19
## 3145   10/01/2002 19
## 3146   10/01/2005 19
## 3147   10/01/2012 19
## 3148   10/03/2000 19
## 3149   10/04/1997 19
## 3150   10/05/2002 19
## 3151   10/05/2006 19
## 3152   10/06/2011 19
## 3153   10/07/2008 19
## 3154   10/08/2009 19
## 3155   10/09/2009 19
## 3156   10/09/2010 19
## 3157   10/12/2003 19
## 3158   11/01/2007 19
## 3159   11/03/1996 19
## 3160   11/03/2005 19
## 3161   11/08/2011 19
## 3162   11/10/2011 19
## 3163   11/11/1997 19
## 3164   11/12/2002 19
## 3165   11/12/2012 19
## 3166   12/03/1996 19
## 3167   12/04/2011 19
## 3168   12/08/2009 19
## 3169   12/10/2007 19
## 3170   12/12/2001 19
## 3171   12/12/2008 19
## 3172   13/01/2003 19
## 3173   13/04/2007 19
## 3174   13/06/2008 19
## 3175   13/09/2002 19
## 3176   13/10/2006 19
## 3177   13/10/2009 19
## 3178   13/11/2007 19
## 3179   14/01/2013 19
## 3180   14/03/2005 19
## 3181   14/04/2003 19
## 3182   14/04/2008 19
## 3183   14/07/1998 19
## 3184   14/07/1999 19
## 3185   14/07/2010 19
## 3186   14/09/2012 19
## 3187   14/10/2002 19
## 3188   14/10/2010 19
## 3189   14/11/2006 19
## 3190   15/01/2009 19
## 3191   15/02/2007 19
## 3192   15/02/2011 19
## 3193   15/03/2010 19
## 3194   15/04/1999 19
## 3195   15/04/2003 19
## 3196   15/04/2010 19
## 3197   15/04/2011 19
## 3198   15/05/2007 19
## 3199   15/05/2012 19
## 3200   15/06/2001 19
## 3201   15/07/2004 19
## 3202   15/08/2003 19
## 3203   15/09/1999 19
## 3204   15/11/2002 19
## 3205   16/01/2009 19
## 3206   16/04/1998 19
## 3207   16/04/2001 19
## 3208   16/05/2001 19
## 3209   16/07/2008 19
## 3210   16/08/2013 19
## 3211   16/10/1998 19
## 3212   16/10/2013 19
## 3213   16/11/2009 19
## 3214   16/11/2010 19
## 3215   17/01/2002 19
## 3216   17/10/1996 19
## 3217   17/10/2006 19
## 3218   17/11/1999 19
## 3219   17/12/2001 19
## 3220   17/12/2012 19
## 3221   18/02/2014 19
## 3222   18/03/2011 19
## 3223   18/06/1999 19
## 3224   18/06/2007 19
## 3225   18/08/2006 19
## 3226   18/10/2005 19
## 3227   18/11/2009 19
## 3228   18/11/2013 19
## 3229   18/12/2006 19
## 3230   19/01/2001 19
## 3231   19/03/2002 19
## 3232   19/03/2003 19
## 3233   19/03/2010 19
## 3234   19/03/2012 19
## 3235   19/04/2007 19
## 3236   19/07/2007 19
## 3237   19/10/2000 19
## 3238   19/11/2007 19
## 3239   20/01/2006 19
## 3240   20/02/2006 19
## 3241   20/03/2014 19
## 3242   20/07/2012 19
## 3243   20/10/2006 19
## 3244   20/12/2007 19
## 3245   21/01/2005 19
## 3246   21/04/2011 19
## 3247   21/06/2002 19
## 3248   21/06/2013 19
## 3249   21/10/1998 19
## 3250   21/10/2002 19
## 3251   21/12/2004 19
## 3252   22/01/1996 19
## 3253   22/02/2002 19
## 3254   22/02/2012 19
## 3255   22/06/1998 19
## 3256   22/10/2013 19
## 3257   22/11/1996 19
## 3258   22/11/2010 19
## 3259   22/11/2013 19
## 3260   23/02/2009 19
## 3261   23/05/2003 19
## 3262   23/08/2013 19
## 3263   24/09/2013 19
## 3264   24/10/2005 19
## 3265   24/10/2012 19
## 3266   25/02/2000 19
## 3267   25/02/2003 19
## 3268   25/04/2003 19
## 3269   25/06/1999 19
## 3270   25/06/2009 19
## 3271   25/08/2011 19
## 3272   25/08/2012 19
## 3273   25/10/2006 19
## 3274   26/02/1999 19
## 3275   26/03/2012 19
## 3276   26/04/1999 19
## 3277   26/08/2003 19
## 3278   26/11/2007 19
## 3279   27/04/2000 19
## 3280   27/04/2006 19
## 3281   27/07/2006 19
## 3282   27/08/1999 19
## 3283   27/08/2009 19
## 3284   27/09/2004 19
## 3285   27/09/2013 19
## 3286   27/11/2013 19
## 3287   28/01/2014 19
## 3288   28/04/2000 19
## 3289   28/05/2013 19
## 3290   29/01/1999 19
## 3291   29/03/2001 19
## 3292   29/03/2004 19
## 3293   29/04/2013 19
## 3294   29/07/1998 19
## 3295   29/10/2004 19
## 3296   30/01/2007 19
## 3297   30/01/2009 19
## 3298   30/03/1998 19
## 3299   30/03/1999 19
## 3300   30/04/1999 19
## 3301   30/05/2007 19
## 3302   30/06/2006 19
## 3303   30/07/2013 19
## 3304   30/10/2003 19
## 3305   30/11/2001 19
## 3306   30/11/2011 19
## 3307   31/01/2006 19
## 3308   31/03/2000 19
## 3309   31/03/2011 19
## 3310   31/07/2013 19
## 3311   31/08/2001 19
## 3312   31/08/2006 19
## 3313   31/10/2011 19
## 3314   01/02/2007 18
## 3315   01/03/2002 18
## 3316   01/03/2011 18
## 3317   01/04/2009 18
## 3318   01/04/2011 18
## 3319   01/07/2013 18
## 3320   01/08/2012 18
## 3321   01/09/2010 18
## 3322   01/12/2003 18
## 3323   01/12/2008 18
## 3324   02/01/1998 18
## 3325   02/03/2005 18
## 3326   02/04/2007 18
## 3327   02/04/2012 18
## 3328   02/06/2010 18
## 3329   02/08/2013 18
## 3330   02/10/2008 18
## 3331   02/12/2003 18
## 3332   03/03/2006 18
## 3333   03/05/2003 18
## 3334   03/06/2004 18
## 3335   03/10/2011 18
## 3336   03/11/1995 18
## 3337   03/11/2009 18
## 3338   04/04/2000 18
## 3339   04/04/2013 18
## 3340   04/06/2012 18
## 3341   04/08/2011 18
## 3342   04/10/2010 18
## 3343   04/11/2003 18
## 3344   05/01/2012 18
## 3345   05/03/2010 18
## 3346   05/06/1995 18
## 3347   05/06/2003 18
## 3348   05/07/2007 18
## 3349   06/02/2009 18
## 3350   06/06/2012 18
## 3351   06/12/2002 18
## 3352   06/12/2004 18
## 3353   07/02/2007 18
## 3354   07/03/2007 18
## 3355   07/03/2011 18
## 3356   07/07/2008 18
## 3357   07/08/2007 18
## 3358   07/10/1999 18
## 3359   07/10/2005 18
## 3360   08/04/2009 18
## 3361   08/04/2010 18
## 3362   08/07/2005 18
## 3363   08/08/2007 18
## 3364   08/08/2012 18
## 3365   08/12/2006 18
## 3366   08/12/2008 18
## 3367   09/01/2014 18
## 3368   09/03/2000 18
## 3369   09/08/2002 18
## 3370   09/09/1999 18
## 3371   09/09/2008 18
## 3372   09/11/2006 18
## 3373   09/12/1999 18
## 3374   09/12/2005 18
## 3375   09/12/2010 18
## 3376   10/01/2013 18
## 3377   10/03/2005 18
## 3378   10/06/2005 18
## 3379   10/06/2009 18
## 3380   10/08/2010 18
## 3381   10/09/1999 18
## 3382   10/11/2008 18
## 3383   11/02/1998 18
## 3384   11/04/2011 18
## 3385   11/07/2011 18
## 3386   11/08/1998 18
## 3387   11/09/2001 18
## 3388   12/01/2010 18
## 3389   12/07/2012 18
## 3390   12/11/2004 18
## 3391   12/11/2009 18
## 3392   12/12/2012 18
## 3393   13/02/2007 18
## 3394   13/03/2001 18
## 3395   13/03/2013 18
## 3396   13/04/2011 18
## 3397   13/07/2004 18
## 3398   13/07/2007 18
## 3399   13/10/2000 18
## 3400   13/11/2009 18
## 3401   13/12/1997 18
## 3402   13/12/2010 18
## 3403   13/12/2011 18
## 3404   14/01/1997 18
## 3405   14/01/2010 18
## 3406   14/03/2011 18
## 3407   14/03/2013 18
## 3408   14/06/2002 18
## 3409   14/07/1997 18
## 3410   14/08/2013 18
## 3411   14/09/2004 18
## 3412   14/09/2007 18
## 3413   14/10/2011 18
## 3414   14/11/2001 18
## 3415   14/11/2013 18
## 3416   14/12/2006 18
## 3417   14/12/2012 18
## 3418   15/02/1999 18
## 3419   15/02/2012 18
## 3420   15/04/2002 18
## 3421   15/10/1998 18
## 3422   15/11/1996 18
## 3423   16/01/1997 18
## 3424   16/02/2003 18
## 3425   16/02/2007 18
## 3426   16/03/1999 18
## 3427   16/03/2004 18
## 3428   16/03/2006 18
## 3429   16/05/2012 18
## 3430   16/08/2002 18
## 3431   16/10/1996 18
## 3432   16/12/1998 18
## 3433   17/01/1996 18
## 3434   17/02/2011 18
## 3435   17/03/2005 18
## 3436   17/05/2000 18
## 3437   17/05/2012 18
## 3438   17/08/2001 18
## 3439   17/08/2007 18
## 3440   17/08/2012 18
## 3441   17/09/2004 18
## 3442   17/11/1997 18
## 3443   17/12/2007 18
## 3444   18/01/2002 18
## 3445   18/03/1996 18
## 3446   18/03/1999 18
## 3447   18/03/2008 18
## 3448   18/03/2010 18
## 3449   18/05/2010 18
## 3450   18/07/2013 18
## 3451   18/09/2003 18
## 3452   18/10/2011 18
## 3453   19/01/1999 18
## 3454   19/06/1998 18
## 3455   19/12/1996 18
## 3456   20/01/2010 18
## 3457   20/02/2002 18
## 3458   20/03/2009 18
## 3459   20/07/2001 18
## 3460   20/07/2007 18
## 3461   20/07/2009 18
## 3462   20/11/1998 18
## 3463   20/12/2012 18
## 3464   21/02/2001 18
## 3465   21/04/1997 18
## 3466   21/06/2000 18
## 3467   21/08/2012 18
## 3468   21/09/2007 18
## 3469   21/09/2010 18
## 3470   21/11/1997 18
## 3471   22/01/1999 18
## 3472   22/05/2007 18
## 3473   22/06/1996 18
## 3474   22/08/1997 18
## 3475   22/10/2003 18
## 3476   23/01/2012 18
## 3477   23/03/1999 18
## 3478   23/05/2005 18
## 3479   23/10/2012 18
## 3480   23/11/2004 18
## 3481   24/02/2010 18
## 3482   24/03/2008 18
## 3483   24/06/2003 18
## 3484   24/06/2005 18
## 3485   24/09/2009 18
## 3486   25/01/2012 18
## 3487   25/02/2009 18
## 3488   25/03/2013 18
## 3489   25/04/2012 18
## 3490   25/05/2010 18
## 3491   25/10/1999 18
## 3492   25/10/2012 18
## 3493   26/03/2004 18
## 3494   26/03/2014 18
## 3495   26/04/2011 18
## 3496   26/07/2006 18
## 3497   26/09/2002 18
## 3498   27/01/2014 18
## 3499   27/03/2009 18
## 3500   27/04/2010 18
## 3501   27/06/2011 18
## 3502   27/07/1992 18
## 3503   27/07/2009 18
## 3504   27/11/2000 18
## 3505   27/11/2012 18
## 3506   28/04/2004 18
## 3507   28/04/2006 18
## 3508   28/06/1996 18
## 3509   28/07/2006 18
## 3510   28/07/2011 18
## 3511   28/08/2003 18
## 3512   29/03/2012 18
## 3513   29/04/2004 18
## 3514   29/04/2005 18
## 3515   29/05/2007 18
## 3516   30/03/2009 18
## 3517   30/05/2001 18
## 3518   30/05/2003 18
## 3519   30/07/1999 18
## 3520   30/07/2010 18
## 3521   30/08/2013 18
## 3522   30/09/2005 18
## 3523   30/10/2001 18
## 3524   30/10/2002 18
## 3525   30/12/1996 18
## 3526   31/01/2001 18
## 3527   31/01/2002 18
## 3528   31/01/2010 18
## 3529   31/03/1999 18
## 3530   31/03/2008 18
## 3531   31/12/1997 18
## 3532   01/01/1998 17
## 3533   01/04/1999 17
## 3534   01/06/2007 17
## 3535   01/06/2010 17
## 3536   01/09/1996 17
## 3537   02/01/2007 17
## 3538   02/03/2010 17
## 3539   02/04/2009 17
## 3540   02/06/2013 17
## 3541   02/09/2011 17
## 3542   02/12/2005 17
## 3543   02/12/2013 17
## 3544   03/01/2011 17
## 3545   03/01/2012 17
## 3546   03/02/2012 17
## 3547   03/03/2003 17
## 3548   03/06/1998 17
## 3549   03/11/1998 17
## 3550   03/11/2006 17
## 3551   03/12/1999 17
## 3552   03/12/2001 17
## 3553   04/01/2008 17
## 3554   04/03/1996 17
## 3555   04/03/2013 17
## 3556   04/05/1997 17
## 3557   04/09/1998 17
## 3558   04/09/2003 17
## 3559   05/01/2007 17
## 3560   05/02/2004 17
## 3561   05/05/1999 17
## 3562   05/05/2004 17
## 3563   05/06/2007 17
## 3564   05/07/2012 17
## 3565   05/07/2013 17
## 3566   05/10/2010 17
## 3567   05/12/2012 17
## 3568   06/03/2007 17
## 3569   06/03/2014 17
## 3570   06/04/2001 17
## 3571   06/04/2011 17
## 3572   06/05/2006 17
## 3573   06/06/2000 17
## 3574   06/07/2007 17
## 3575   06/12/2007 17
## 3576   07/01/2005 17
## 3577   07/01/2013 17
## 3578   07/02/2011 17
## 3579   07/04/1999 17
## 3580   07/04/2005 17
## 3581   07/05/2004 17
## 3582   07/06/1996 17
## 3583   07/07/2003 17
## 3584   07/07/2006 17
## 3585   07/10/2004 17
## 3586   07/10/2008 17
## 3587   07/11/2006 17
## 3588   07/12/2001 17
## 3589   08/02/1999 17
## 3590   08/02/2013 17
## 3591   08/03/2002 17
## 3592   08/04/2011 17
## 3593   08/06/1998 17
## 3594   08/08/2003 17
## 3595   08/09/2008 17
## 3596   08/09/2010 17
## 3597   08/09/2011 17
## 3598   08/11/2002 17
## 3599   08/11/2007 17
## 3600   09/02/2011 17
## 3601   09/04/2007 17
## 3602   09/05/2002 17
## 3603   09/06/2006 17
## 3604   09/09/1998 17
## 3605   09/11/2011 17
## 3606   09/12/1997 17
## 3607   09/12/2002 17
## 3608   10/01/2003 17
## 3609   10/02/2009 17
## 3610   10/03/1997 17
## 3611   10/04/2008 17
## 3612   10/05/2011 17
## 3613   10/05/2012 17
## 3614   10/07/2009 17
## 3615   10/08/1996 17
## 3616   10/08/1998 17
## 3617   10/09/2012 17
## 3618   10/11/2011 17
## 3619   10/12/1998 17
## 3620   10/12/2013 17
## 3621   11/01/2010 17
## 3622   11/02/2009 17
## 3623   11/04/1997 17
## 3624   11/04/2003 17
## 3625   11/06/2009 17
## 3626   11/09/2013 17
## 3627   11/10/2002 17
## 3628   12/01/2004 17
## 3629   12/02/1996 17
## 3630   12/03/2009 17
## 3631   12/04/2001 17
## 3632   12/07/2002 17
## 3633   12/10/1999 17
## 3634   12/11/2008 17
## 3635   12/12/2011 17
## 3636   12/12/2013 17
## 3637   13/01/2012 17
## 3638   13/02/1996 17
## 3639   13/02/2012 17
## 3640   13/03/2002 17
## 3641   13/03/2003 17
## 3642   13/05/2011 17
## 3643   13/09/2013 17
## 3644   14/01/2009 17
## 3645   14/02/1997 17
## 3646   14/03/2014 17
## 3647   14/05/2004 17
## 3648   14/06/2004 17
## 3649   14/10/2005 17
## 3650   14/12/2007 17
## 3651   15/05/1998 17
## 3652   16/01/2003 17
## 3653   16/03/2007 17
## 3654   16/08/1997 17
## 3655   16/09/1999 17
## 3656   16/09/2010 17
## 3657   16/10/2003 17
## 3658   17/01/2003 17
## 3659   17/02/2012 17
## 3660   17/09/2012 17
## 3661   18/01/2013 17
## 3662   18/03/2002 17
## 3663   18/03/2003 17
## 3664   18/05/1999 17
## 3665   18/05/2007 17
## 3666   18/09/2007 17
## 3667   18/10/2002 17
## 3668   19/03/1996 17
## 3669   19/04/2013 17
## 3670   19/10/1999 17
## 3671   19/10/2001 17
## 3672   19/10/2006 17
## 3673   19/10/2012 17
## 3674   19/11/1998 17
## 3675   20/01/2002 17
## 3676   20/05/2013 17
## 3677   20/06/2005 17
## 3678   20/10/2011 17
## 3679   20/11/2008 17
## 3680   20/12/2005 17
## 3681   20/12/2006 17
## 3682   20/12/2011 17
## 3683   21/02/2013 17
## 3684   21/03/2003 17
## 3685   21/03/2013 17
## 3686   21/07/2011 17
## 3687   21/10/2005 17
## 3688   21/11/2008 17
## 3689   21/12/1996 17
## 3690   21/12/1998 17
## 3691   21/12/2000 17
## 3692   22/03/2001 17
## 3693   22/07/2011 17
## 3694   22/08/2012 17
## 3695   22/12/1999 17
## 3696   23/01/1996 17
## 3697   23/01/2014 17
## 3698   23/02/2007 17
## 3699   23/03/2001 17
## 3700   23/08/1995 17
## 3701   23/08/2006 17
## 3702   23/08/2012 17
## 3703   23/10/1998 17
## 3704   24/01/2014 17
## 3705   24/03/2009 17
## 3706   24/05/2002 17
## 3707   24/05/2012 17
## 3708   24/10/2008 17
## 3709   25/01/2010 17
## 3710   25/05/2001 17
## 3711   25/05/2004 17
## 3712   25/05/2007 17
## 3713   25/07/2004 17
## 3714   25/08/1999 17
## 3715   25/09/2008 17
## 3716   25/10/1996 17
## 3717   25/11/1997 17
## 3718   26/01/2001 17
## 3719   26/06/2003 17
## 3720   26/07/2011 17
## 3721   26/07/2013 17
## 3722   26/09/1999 17
## 3723   26/10/2004 17
## 3724   27/02/1996 17
## 3725   27/02/2012 17
## 3726   27/04/2007 17
## 3727   27/05/2010 17
## 3728   27/07/2007 17
## 3729   27/07/2010 17
## 3730   27/10/2000 17
## 3731   27/12/2000 17
## 3732   28/01/2010 17
## 3733   28/03/2002 17
## 3734   28/03/2013 17
## 3735   28/04/2011 17
## 3736   28/05/2003 17
## 3737   28/07/2009 17
## 3738   28/08/2002 17
## 3739   28/09/2001 17
## 3740   28/10/1997 17
## 3741   28/10/2008 17
## 3742   28/10/2009 17
## 3743   28/11/2011 17
## 3744   29/02/2008 17
## 3745   29/03/2010 17
## 3746   29/05/2008 17
## 3747   29/05/2012 17
## 3748   29/07/2005 17
## 3749   29/07/2013 17
## 3750   29/08/2008 17
## 3751   29/10/2002 17
## 3752   29/10/2013 17
## 3753   30/06/1998 17
## 3754   30/06/2008 17
## 3755   30/06/2009 17
## 3756   30/07/1997 17
## 3757   30/07/2004 17
## 3758   30/08/2012 17
## 3759   30/09/2013 17
## 3760   30/11/2012 17
## 3761   31/01/2008 17
## 3762   31/05/2013 17
## 3763   31/10/2002 17
## 3764   31/12/1996 17
## 3765   01/01/2005 16
## 3766   01/02/1996 16
## 3767   01/03/1996 16
## 3768   01/05/1998 16
## 3769   01/10/2013 16
## 3770   01/11/2013 16
## 3771   02/01/2009 16
## 3772   02/07/2009 16
## 3773   02/10/2003 16
## 3774   02/12/2010 16
## 3775   03/01/2002 16
## 3776   03/03/2005 16
## 3777   03/04/2003 16
## 3778   03/05/2011 16
## 3779   03/06/2011 16
## 3780   03/07/2008 16
## 3781   03/08/2012 16
## 3782   03/09/2009 16
## 3783   03/10/1999 16
## 3784   03/10/2008 16
## 3785   03/11/2004 16
## 3786   03/11/2008 16
## 3787   03/11/2010 16
## 3788   03/12/1996 16
## 3789   03/12/2010 16
## 3790   04/12/1997 16
## 3791   05/02/1999 16
## 3792   05/02/2010 16
## 3793   05/04/1999 16
## 3794   05/04/2012 16
## 3795   05/09/1997 16
## 3796   05/10/2007 16
## 3797   06/01/2010 16
## 3798   06/02/2012 16
## 3799   06/04/1999 16
## 3800   06/08/2010 16
## 3801   06/10/1996 16
## 3802   06/10/2006 16
## 3803   06/11/1998 16
## 3804   06/11/2013 16
## 3805   07/01/2000 16
## 3806   07/01/2014 16
## 3807   07/03/1996 16
## 3808   07/07/2009 16
## 3809   07/08/2009 16
## 3810   07/09/2006 16
## 3811   07/09/2011 16
## 3812   07/11/2003 16
## 3813   08/01/2010 16
## 3814   08/06/2001 16
## 3815   08/07/2011 16
## 3816   08/08/1998 16
## 3817   08/12/2010 16
## 3818   09/01/2007 16
## 3819   09/04/2012 16
## 3820   09/06/1995 16
## 3821   09/07/2010 16
## 3822   10/08/2007 16
## 3823   10/10/2003 16
## 3824   10/11/1998 16
## 3825   10/11/2005 16
## 3826   10/12/2007 16
## 3827   11/02/2004 16
## 3828   11/02/2005 16
## 3829   11/02/2010 16
## 3830   11/03/2003 16
## 3831   11/05/1996 16
## 3832   11/05/2012 16
## 3833   11/06/2007 16
## 3834   11/09/2009 16
## 3835   11/10/2001 16
## 3836   11/11/1998 16
## 3837   11/12/2000 16
## 3838   12/01/2005 16
## 3839   12/03/2010 16
## 3840   12/11/2001 16
## 3841   12/12/2003 16
## 3842   13/01/2009 16
## 3843   13/05/2002 16
## 3844   13/08/2012 16
## 3845   13/11/1998 16
## 3846   13/11/2001 16
## 3847   13/11/2013 16
## 3848   13/12/2013 16
## 3849   14/02/2002 16
## 3850   14/03/2007 16
## 3851   14/04/2000 16
## 3852   14/07/1996 16
## 3853   14/08/1998 16
## 3854   14/09/1996 16
## 3855   14/10/1999 16
## 3856   14/11/1996 16
## 3857   14/11/2002 16
## 3858   14/11/2003 16
## 3859   15/01/2014 16
## 3860   15/04/2008 16
## 3861   15/05/2009 16
## 3862   15/06/2011 16
## 3863   15/09/2006 16
## 3864   15/09/2008 16
## 3865   15/10/2012 16
## 3866   16/01/2013 16
## 3867   16/02/2001 16
## 3868   16/03/2001 16
## 3869   16/04/2012 16
## 3870   16/09/2008 16
## 3871   16/10/1997 16
## 3872   16/10/2001 16
## 3873   16/12/2013 16
## 3874   17/01/2007 16
## 3875   17/01/2012 16
## 3876   17/05/2004 16
## 3877   17/07/2009 16
## 3878   17/08/1995 16
## 3879   17/09/2013 16
## 3880   17/10/2011 16
## 3881   17/11/2009 16
## 3882   17/12/2009 16
## 3883   17/12/2010 16
## 3884   18/01/2008 16
## 3885   18/05/2009 16
## 3886   18/07/2011 16
## 3887   18/08/2009 16
## 3888   18/10/2006 16
## 3889   19/01/1996 16
## 3890   19/01/2011 16
## 3891   19/03/1998 16
## 3892   19/04/1998 16
## 3893   19/04/2002 16
## 3894   19/08/2006 16
## 3895   19/09/2006 16
## 3896   19/09/2008 16
## 3897   19/09/2011 16
## 3898   19/10/1998 16
## 3899   19/10/2007 16
## 3900   19/12/2001 16
## 3901   19/12/2006 16
## 3902   19/12/2011 16
## 3903   20/02/2003 16
## 3904   20/03/1996 16
## 3905   20/04/2012 16
## 3906   20/08/2008 16
## 3907   20/10/1998 16
## 3908   20/10/2000 16
## 3909   20/11/2006 16
## 3910   20/12/1996 16
## 3911   20/12/2000 16
## 3912   20/12/2001 16
## 3913   21/01/2004 16
## 3914   21/01/2011 16
## 3915   21/01/2014 16
## 3916   21/05/2007 16
## 3917   21/06/2012 16
## 3918   21/07/1994 16
## 3919   21/07/1996 16
## 3920   21/07/2000 16
## 3921   21/10/2009 16
## 3922   21/12/2010 16
## 3923   22/02/1996 16
## 3924   22/02/2001 16
## 3925   22/03/2010 16
## 3926   22/04/1998 16
## 3927   22/05/2001 16
## 3928   22/10/2004 16
## 3929   23/01/2009 16
## 3930   23/02/2010 16
## 3931   23/04/1998 16
## 3932   23/04/2010 16
## 3933   23/07/2009 16
## 3934   23/09/2008 16
## 3935   23/10/2008 16
## 3936   23/11/2005 16
## 3937   24/01/2007 16
## 3938   24/02/2006 16
## 3939   24/06/1991 16
## 3940   24/06/2010 16
## 3941   24/07/1995 16
## 3942   24/08/1996 16
## 3943   24/10/2011 16
## 3944   24/11/2004 16
## 3945   25/03/2011 16
## 3946   25/04/2011 16
## 3947   25/05/2000 16
## 3948   25/08/2006 16
## 3949   25/09/2009 16
## 3950   25/11/2008 16
## 3951   26/02/2007 16
## 3952   26/04/2013 16
## 3953   26/05/2000 16
## 3954   26/05/2006 16
## 3955   26/06/2001 16
## 3956   26/06/2013 16
## 3957   26/08/1998 16
## 3958   26/09/2001 16
## 3959   26/10/2006 16
## 3960   26/10/2007 16
## 3961   27/05/2008 16
## 3962   27/07/1993 16
## 3963   27/07/2001 16
## 3964   27/08/2002 16
## 3965   27/09/2010 16
## 3966   27/10/1998 16
## 3967   27/10/2009 16
## 3968   28/03/2014 16
## 3969   28/05/2004 16
## 3970   28/10/2013 16
## 3971   28/12/2010 16
## 3972   29/01/2013 16
## 3973   29/04/1999 16
## 3974   29/04/2010 16
## 3975   29/06/2001 16
## 3976   29/06/2005 16
## 3977   29/07/2008 16
## 3978   29/07/2011 16
## 3979   29/10/2003 16
## 3980   30/03/2007 16
## 3981   30/03/2012 16
## 3982   30/05/1997 16
## 3983   30/09/2011 16
## 3984   30/10/1997 16
## 3985   30/10/2012 16
## 3986   31/01/2007 16
## 3987   31/08/1998 16
## 3988   31/08/2005 16
## 3989   01/01/2000 15
## 3990   01/01/2001 15
## 3991   01/02/1997 15
## 3992   01/02/2013 15
## 3993   01/07/2011 15
## 3994   01/09/2011 15
## 3995   02/02/1997 15
## 3996   02/03/2001 15
## 3997   02/05/2008 15
## 3998   02/05/2012 15
## 3999   02/07/2002 15
## 4000   02/07/2003 15
## 4001   02/08/1991 15
## 4002   02/08/2002 15
## 4003   02/12/2008 15
## 4004   03/01/2007 15
## 4005   03/02/2014 15
## 4006   03/03/2011 15
## 4007   03/03/2012 15
## 4008   03/05/1998 15
## 4009   03/07/2003 15
## 4010   03/08/2001 15
## 4011   03/10/1997 15
## 4012   03/11/2000 15
## 4013   03/12/2009 15
## 4014   04/01/2010 15
## 4015   04/08/2007 15
## 4016   04/11/2005 15
## 4017   05/01/2010 15
## 4018   05/02/2014 15
## 4019   05/03/2012 15
## 4020   05/05/1996 15
## 4021   05/11/2004 15
## 4022   05/12/2002 15
## 4023   06/04/1997 15
## 4024   06/09/2002 15
## 4025   06/11/2006 15
## 4026   06/11/2007 15
## 4027   06/12/2011 15
## 4028   06/12/2013 15
## 4029   07/03/2008 15
## 4030   07/07/2002 15
## 4031   07/08/2003 15
## 4032   08/03/2004 15
## 4033   08/04/2003 15
## 4034   08/09/1996 15
## 4035   08/10/1999 15
## 4036   09/03/2007 15
## 4037   09/06/2011 15
## 4038   09/10/1998 15
## 4039   10/01/1996 15
## 4040   10/02/2012 15
## 4041   10/08/1994 15
## 4042   10/10/2008 15
## 4043   10/12/1997 15
## 4044   10/12/1999 15
## 4045   10/12/2004 15
## 4046   11/02/2000 15
## 4047   11/03/2009 15
## 4048   11/07/1998 15
## 4049   12/02/2007 15
## 4050   12/08/2000 15
## 4051   12/09/2008 15
## 4052   12/09/2013 15
## 4053   12/10/1995 15
## 4054   12/12/2005 15
## 4055   13/04/2012 15
## 4056   13/07/1996 15
## 4057   13/10/2005 15
## 4058   14/02/2003 15
## 4059   14/02/2007 15
## 4060   14/03/1996 15
## 4061   14/03/2008 15
## 4062   14/05/2010 15
## 4063   14/08/2009 15
## 4064   14/10/1998 15
## 4065   14/12/2001 15
## 4066   15/02/2008 15
## 4067   15/03/2002 15
## 4068   15/07/2005 15
## 4069   15/09/2009 15
## 4070   15/10/2000 15
## 4071   16/01/1996 15
## 4072   16/01/2002 15
## 4073   16/02/1998 15
## 4074   16/07/2012 15
## 4075   16/11/2000 15
## 4076   16/12/2011 15
## 4077   17/02/2014 15
## 4078   17/05/2011 15
## 4079   17/07/1990 15
## 4080   17/08/2011 15
## 4081   17/12/1998 15
## 4082   17/12/2002 15
## 4083   18/02/2005 15
## 4084   18/02/2011 15
## 4085   18/07/1991 15
## 4086   18/08/1993 15
## 4087   18/09/1995 15
## 4088   18/09/1998 15
## 4089   18/12/2003 15
## 4090   18/12/2009 15
## 4091   19/03/1999 15
## 4092   19/05/1999 15
## 4093   19/06/2009 15
## 4094   19/08/2011 15
## 4095   19/08/2013 15
## 4096   19/11/2009 15
## 4097   19/11/2010 15
## 4098   19/12/2000 15
## 4099   20/02/2009 15
## 4100   20/04/1996 15
## 4101   20/07/1996 15
## 4102   20/09/2003 15
## 4103   21/02/2005 15
## 4104   21/02/2012 15
## 4105   21/03/2002 15
## 4106   21/04/1996 15
## 4107   21/05/2004 15
## 4108   21/06/1994 15
## 4109   21/09/2004 15
## 4110   21/09/2006 15
## 4111   21/12/2001 15
## 4112   22/02/2010 15
## 4113   22/06/1997 15
## 4114   22/09/2000 15
## 4115   22/11/2002 15
## 4116   22/12/2009 15
## 4117   22/12/2010 15
## 4118   23/01/2008 15
## 4119   23/03/2010 15
## 4120   23/05/2008 15
## 4121   23/06/2011 15
## 4122   23/10/2006 15
## 4123   23/12/2004 15
## 4124   24/01/1998 15
## 4125   24/02/1992 15
## 4126   24/02/2005 15
## 4127   24/06/2006 15
## 4128   24/08/2012 15
## 4129   24/09/2012 15
## 4130   24/10/1995 15
## 4131   24/11/2008 15
## 4132   24/11/2009 15
## 4133   25/05/1998 15
## 4134   25/07/1995 15
## 4135   25/09/1990 15
## 4136   26/01/2010 15
## 4137   26/08/2010 15
## 4138   26/08/2011 15
## 4139   26/10/2005 15
## 4140   27/01/1999 15
## 4141   27/02/2004 15
## 4142   27/04/1999 15
## 4143   27/04/2001 15
## 4144   27/05/1996 15
## 4145   27/07/1998 15
## 4146   27/08/1990 15
## 4147   27/10/2007 15
## 4148   28/04/2014 15
## 4149   28/08/2008 15
## 4150   28/10/2005 15
## 4151   28/11/2012 15
## 4152   29/01/2008 15
## 4153   29/01/2009 15
## 4154   29/05/1998 15
## 4155   29/05/2009 15
## 4156   29/06/2012 15
## 4157   29/09/2000 15
## 4158   29/09/2006 15
## 4159   29/10/1999 15
## 4160   29/10/2010 15
## 4161   29/12/2003 15
## 4162   29/12/2005 15
## 4163   29/12/2010 15
## 4164   30/01/2010 15
## 4165   30/08/2010 15
## 4166   30/11/2007 15
## 4167   30/12/2002 15
## 4168   31/01/2013 15
## 4169   31/05/2012 15
## 4170   31/07/2009 15
## 4171   01/03/2013 14
## 4172   01/12/1996 14
## 4173   02/01/1999 14
## 4174   02/01/2003 14
## 4175   02/03/2007 14
## 4176   02/03/2012 14
## 4177   02/06/2001 14
## 4178   02/11/2012 14
## 4179   03/05/2012 14
## 4180   03/06/1991 14
## 4181   03/07/2013 14
## 4182   03/09/2008 14
## 4183   03/12/2002 14
## 4184   04/05/1999 14
## 4185   05/03/1996 14
## 4186   05/04/2013 14
## 4187   05/06/2009 14
## 4188   05/09/2003 14
## 4189   05/09/2008 14
## 4190   06/05/2011 14
## 4191   07/03/2001 14
## 4192   07/03/2003 14
## 4193   07/04/2014 14
## 4194   07/05/2009 14
## 4195   07/06/2007 14
## 4196   07/07/1996 14
## 4197   07/11/1995 14
## 4198   07/12/2006 14
## 4199   07/12/2010 14
## 4200   08/04/2005 14
## 4201   08/10/2010 14
## 4202   08/12/1998 14
## 4203   09/03/2009 14
## 4204   09/07/2004 14
## 4205   09/11/2010 14
## 4206   10/02/2008 14
## 4207   10/03/2011 14
## 4208   10/04/2005 14
## 4209   10/05/2013 14
## 4210   10/08/2001 14
## 4211   10/11/2010 14
## 4212   11/06/2011 14
## 4213   11/09/2011 14
## 4214   11/10/2007 14
## 4215   11/12/2003 14
## 4216   12/01/1997 14
## 4217   12/03/2008 14
## 4218   12/03/2014 14
## 4219   12/04/2012 14
## 4220   13/03/2012 14
## 4221   13/04/1998 14
## 4222   13/07/2012 14
## 4223   13/10/2011 14
## 4224   14/02/1996 14
## 4225   14/07/1993 14
## 4226   14/09/1992 14
## 4227   14/11/2005 14
## 4228   15/03/1996 14
## 4229   15/04/2005 14
## 4230   15/11/1997 14
## 4231   15/11/2010 14
## 4232   15/11/2012 14
## 4233   15/12/2006 14
## 4234   15/12/2010 14
## 4235   16/01/2014 14
## 4236   16/03/2010 14
## 4237   16/03/2011 14
## 4238   16/05/2008 14
## 4239   16/06/1999 14
## 4240   16/07/1990 14
## 4241   17/01/2014 14
## 4242   17/09/2005 14
## 4243   17/11/1996 14
## 4244   18/01/1996 14
## 4245   18/06/1990 14
## 4246   18/09/2013 14
## 4247   18/11/2008 14
## 4248   19/01/2012 14
## 4249   19/02/2007 14
## 4250   19/08/2005 14
## 4251   19/10/1995 14
## 4252   19/12/2012 14
## 4253   20/04/2001 14
## 4254   20/07/1993 14
## 4255   20/08/2010 14
## 4256   20/09/1991 14
## 4257   20/09/1995 14
## 4258   20/10/2009 14
## 4259   20/11/2007 14
## 4260   21/02/1996 14
## 4261   21/02/1998 14
## 4262   21/03/1998 14
## 4263   21/03/2011 14
## 4264   21/04/1999 14
## 4265   21/04/2008 14
## 4266   21/05/2010 14
## 4267   21/06/2008 14
## 4268   21/07/2009 14
## 4269   21/09/2012 14
## 4270   21/11/2001 14
## 4271   21/11/2002 14
## 4272   21/11/2006 14
## 4273   22/01/2009 14
## 4274   22/03/1996 14
## 4275   22/03/2007 14
## 4276   22/04/2005 14
## 4277   22/05/2009 14
## 4278   22/08/1994 14
## 4279   22/09/2011 14
## 4280   22/10/2012 14
## 4281   22/11/2005 14
## 4282   22/11/2011 14
## 4283   23/04/2009 14
## 4284   23/06/1994 14
## 4285   23/06/2000 14
## 4286   23/07/2006 14
## 4287   23/08/1991 14
## 4288   23/09/2002 14
## 4289   23/10/1995 14
## 4290   23/10/2009 14
## 4291   24/01/1996 14
## 4292   24/03/2010 14
## 4293   24/04/2009 14
## 4294   24/06/1998 14
## 4295   24/06/2011 14
## 4296   24/07/1998 14
## 4297   24/08/1993 14
## 4298   25/02/2013 14
## 4299   25/03/2009 14
## 4300   25/08/1995 14
## 4301   25/08/2000 14
## 4302   26/03/1999 14
## 4303   26/11/2008 14
## 4304   26/11/2013 14
## 4305   27/07/2012 14
## 4306   27/08/2010 14
## 4307   27/11/1996 14
## 4308   27/12/1996 14
## 4309   28/01/2009 14
## 4310   28/03/2008 14
## 4311   28/04/1996 14
## 4312   28/07/1995 14
## 4313   28/10/2011 14
## 4314   28/11/2007 14
## 4315   29/01/1996 14
## 4316   29/01/2000 14
## 4317   29/03/1997 14
## 4318   29/11/2012 14
## 4319   29/12/2011 14
## 4320   30/03/2010 14
## 4321   30/04/2013 14
## 4322   30/07/2007 14
## 4323   30/11/2006 14
## 4324   30/12/1998 14
## 4325   30/12/2010 14
## 4326   31/10/2006 14
## 4327   01/01/2011 13
## 4328   01/02/2003 13
## 4329   01/05/2005 13
## 4330   01/06/1996 13
## 4331   01/07/2001 13
## 4332   01/09/1995 13
## 4333   01/11/2010 13
## 4334   02/01/1996 13
## 4335   02/01/2013 13
## 4336   02/06/1996 13
## 4337   02/07/2010 13
## 4338   02/08/1995 13
## 4339   03/02/2009 13
## 4340   03/02/2013 13
## 4341   03/03/2014 13
## 4342   03/08/1996 13
## 4343   03/10/2009 13
## 4344   03/12/1998 13
## 4345   04/04/2012 13
## 4346   04/07/1996 13
## 4347   04/12/2013 13
## 4348   05/03/2014 13
## 4349   05/12/2003 13
## 4350   06/01/2012 13
## 4351   06/08/2002 13
## 4352   06/11/2009 13
## 4353   07/06/1997 13
## 4354   07/09/2010 13
## 4355   07/11/2013 13
## 4356   08/03/1998 13
## 4357   08/07/2006 13
## 4358   08/12/2003 13
## 4359   08/12/2009 13
## 4360   09/04/1998 13
## 4361   09/06/1996 13
## 4362   09/07/2011 13
## 4363   09/08/1994 13
## 4364   09/09/1991 13
## 4365   09/11/2001 13
## 4366   09/11/2012 13
## 4367   10/03/2014 13
## 4368   10/08/1993 13
## 4369   10/11/2002 13
## 4370   10/12/2010 13
## 4371   11/01/2012 13
## 4372   11/02/2011 13
## 4373   11/05/2001 13
## 4374   11/08/2013 13
## 4375   11/09/2004 13
## 4376   11/11/1999 13
## 4377   11/11/2008 13
## 4378   12/03/2004 13
## 4379   12/04/1997 13
## 4380   12/06/1995 13
## 4381   12/06/2013 13
## 4382   12/07/1995 13
## 4383   13/02/2014 13
## 4384   13/03/2009 13
## 4385   13/07/1990 13
## 4386   13/07/2001 13
## 4387   13/09/2010 13
## 4388   14/01/2000 13
## 4389   14/07/2009 13
## 4390   15/03/1998 13
## 4391   15/07/1991 13
## 4392   15/07/2006 13
## 4393   15/08/2008 13
## 4394   15/10/2002 13
## 4395   16/01/2008 13
## 4396   16/05/1995 13
## 4397   16/06/1994 13
## 4398   16/09/2009 13
## 4399   17/01/2008 13
## 4400   17/03/2008 13
## 4401   17/06/2005 13
## 4402   17/09/2010 13
## 4403   17/10/2008 13
## 4404   17/11/2006 13
## 4405   18/03/1993 13
## 4406   18/04/2013 13
## 4407   18/05/2012 13
## 4408   18/06/2010 13
## 4409   18/08/1996 13
## 4410   18/08/2007 13
## 4411   18/12/1998 13
## 4412   19/01/1998 13
## 4413   19/02/1996 13
## 4414   19/02/2010 13
## 4415   19/04/2011 13
## 4416   19/05/2002 13
## 4417   19/07/2002 13
## 4418   19/09/1995 13
## 4419   19/12/2003 13
## 4420   20/04/2010 13
## 4421   20/08/2005 13
## 4422   20/11/2009 13
## 4423   21/02/2014 13
## 4424   21/03/2014 13
## 4425   21/11/2005 13
## 4426   22/01/2000 13
## 4427   22/03/1995 13
## 4428   22/06/1990 13
## 4429   22/06/2010 13
## 4430   22/06/2011 13
## 4431   22/06/2012 13
## 4432   22/07/2001 13
## 4433   22/08/2008 13
## 4434   22/09/1996 13
## 4435   22/11/2004 13
## 4436   22/11/2006 13
## 4437   22/12/2003 13
## 4438   23/01/2013 13
## 4439   23/02/1996 13
## 4440   23/05/1995 13
## 4441   23/12/1998 13
## 4442   23/12/1999 13
## 4443   24/01/2012 13
## 4444   24/03/2005 13
## 4445   24/04/1997 13
## 4446   24/04/1999 13
## 4447   24/07/1991 13
## 4448   24/07/2004 13
## 4449   24/07/2012 13
## 4450   24/08/2001 13
## 4451   24/11/2010 13
## 4452   25/01/2004 13
## 4453   25/02/2005 13
## 4454   25/02/2014 13
## 4455   25/07/2003 13
## 4456   25/10/2013 13
## 4457   26/01/1996 13
## 4458   26/01/2012 13
## 4459   26/02/2003 13
## 4460   26/02/2013 13
## 4461   26/05/1997 13
## 4462   26/10/2012 13
## 4463   27/02/1995 13
## 4464   27/02/1999 13
## 4465   27/06/2003 13
## 4466   27/09/2012 13
## 4467   27/12/2006 13
## 4468   28/02/1996 13
## 4469   28/02/1997 13
## 4470   28/05/1999 13
## 4471   28/05/2001 13
## 4472   28/06/2008 13
## 4473   28/09/1996 13
## 4474   28/12/1999 13
## 4475   28/12/2005 13
## 4476   29/01/2010 13
## 4477   29/02/2012 13
## 4478   29/04/2006 13
## 4479   29/04/2011 13
## 4480   29/06/2010 13
## 4481   29/08/2003 13
## 4482   29/11/2001 13
## 4483   29/11/2007 13
## 4484   29/12/2000 13
## 4485   30/03/2011 13
## 4486   30/06/2010 13
## 4487   31/01/1996 13
## 4488   31/07/1990 13
## 4489   31/12/2002 13
## 4490   01/01/2007 12
## 4491   01/03/2003 12
## 4492   01/11/2003 12
## 4493   02/04/2011 12
## 4494   02/05/2004 12
## 4495   02/05/2009 12
## 4496   02/06/2002 12
## 4497   02/09/2005 12
## 4498   03/01/2003 12
## 4499   03/02/1993 12
## 4500   03/04/2014 12
## 4501   03/09/2011 12
## 4502   03/11/1996 12
## 4503   03/12/2008 12
## 4504   04/02/2009 12
## 4505   04/05/2012 12
## 4506   04/06/1991 12
## 4507   04/08/2000 12
## 4508   04/09/2004 12
## 4509   04/10/2013 12
## 4510   04/12/2009 12
## 4511   05/03/2013 12
## 4512   05/04/2011 12
## 4513   05/05/2001 12
## 4514   05/09/1991 12
## 4515   05/10/1995 12
## 4516   05/10/1996 12
## 4517   05/10/1997 12
## 4518   06/01/2009 12
## 4519   06/03/1996 12
## 4520   06/06/1991 12
## 4521   06/06/2014 12
## 4522   06/07/1994 12
## 4523   06/09/1997 12
## 4524   06/09/2012 12
## 4525   06/10/1995 12
## 4526   06/11/2012 12
## 4527   07/01/2011 12
## 4528   07/06/2013 12
## 4529   07/11/2011 12
## 4530   07/12/1994 12
## 4531   07/12/2002 12
## 4532   07/12/2009 12
## 4533   07/12/2011 12
## 4534   08/06/1992 12
## 4535   08/06/2003 12
## 4536   09/03/2012 12
## 4537   09/04/2006 12
## 4538   09/04/2014 12
## 4539   09/05/2009 12
## 4540   09/07/1991 12
## 4541   09/10/1990 12
## 4542   09/10/1999 12
## 4543   09/12/2011 12
## 4544   10/01/2011 12
## 4545   10/03/2002 12
## 4546   10/03/2006 12
## 4547   10/04/1990 12
## 4548   10/04/2014 12
## 4549   10/07/1990 12
## 4550   10/09/1990 12
## 4551   11/03/2011 12
## 4552   11/05/1994 12
## 4553   11/08/1994 12
## 4554   11/09/1991 12
## 4555   11/09/1998 12
## 4556   11/11/1996 12
## 4557   11/11/2010 12
## 4558   12/02/2008 12
## 4559   12/05/1995 12
## 4560   12/05/1996 12
## 4561   13/01/1996 12
## 4562   13/01/2014 12
## 4563   13/03/2014 12
## 4564   13/12/1995 12
## 4565   14/04/2013 12
## 4566   14/05/1990 12
## 4567   14/05/2000 12
## 4568   14/08/2004 12
## 4569   14/12/2010 12
## 4570   15/01/1999 12
## 4571   15/05/2005 12
## 4572   15/06/1995 12
## 4573   15/06/2002 12
## 4574   15/09/1995 12
## 4575   15/11/1995 12
## 4576   15/12/2008 12
## 4577   16/02/1996 12
## 4578   16/03/1996 12
## 4579   16/03/2012 12
## 4580   16/04/2014 12
## 4581   16/06/1993 12
## 4582   16/07/1998 12
## 4583   17/02/2002 12
## 4584   17/03/1996 12
## 4585   17/04/2009 12
## 4586   17/08/1996 12
## 4587   18/01/1997 12
## 4588   18/01/2012 12
## 4589   18/09/2010 12
## 4590   18/11/2011 12
## 4591   19/01/2007 12
## 4592   19/02/2002 12
## 4593   19/07/2003 12
## 4594   19/12/1997 12
## 4595   19/12/2013 12
## 4596   20/01/2001 12
## 4597   20/01/2003 12
## 4598   20/03/2005 12
## 4599   20/07/1995 12
## 4600   20/10/1993 12
## 4601   20/11/2012 12
## 4602   20/12/2004 12
## 4603   20/12/2009 12
## 4604   21/03/1995 12
## 4605   21/04/2006 12
## 4606   21/04/2014 12
## 4607   21/07/2001 12
## 4608   21/08/2005 12
## 4609   21/10/2012 12
## 4610   21/11/2011 12
## 4611   21/12/1993 12
## 4612   21/12/1999 12
## 4613   22/04/2000 12
## 4614   22/04/2001 12
## 4615   22/04/2014 12
## 4616   22/08/1991 12
## 4617   22/09/1995 12
## 4618   22/11/2000 12
## 4619   22/12/1998 12
## 4620   22/12/2011 12
## 4621   23/01/2000 12
## 4622   23/05/1994 12
## 4623   23/05/2002 12
## 4624   23/06/2002 12
## 4625   23/12/1997 12
## 4626   24/01/2013 12
## 4627   24/03/2014 12
## 4628   24/04/1998 12
## 4629   24/07/2011 12
## 4630   24/09/2004 12
## 4631   24/11/1998 12
## 4632   25/01/1996 12
## 4633   25/01/1997 12
## 4634   25/02/2004 12
## 4635   25/08/2001 12
## 4636   25/11/2002 12
## 4637   26/01/2007 12
## 4638   26/02/1996 12
## 4639   26/02/2014 12
## 4640   26/05/2007 12
## 4641   26/06/1995 12
## 4642   26/10/1996 12
## 4643   27/01/2006 12
## 4644   27/01/2012 12
## 4645   27/02/1998 12
## 4646   27/02/2009 12
## 4647   27/02/2014 12
## 4648   27/04/1996 12
## 4649   27/10/2010 12
## 4650   28/02/2003 12
## 4651   28/03/1998 12
## 4652   28/04/1995 12
## 4653   28/06/2003 12
## 4654   28/07/1994 12
## 4655   28/11/2006 12
## 4656   28/12/2009 12
## 4657   29/02/1996 12
## 4658   29/06/2008 12
## 4659   29/11/2006 12
## 4660   30/01/2005 12
## 4661   30/06/2013 12
## 4662   30/07/2005 12
## 4663   30/10/1998 12
## 4664   30/12/1999 12
## 4665   31/10/2008 12
## 4666   31/10/2012 12
## 4667   31/12/2008 12
## 4668   01/01/1997 11
## 4669   01/01/2003 11
## 4670   01/08/1995 11
## 4671   01/09/1997 11
## 4672   01/09/2003 11
## 4673   01/11/2008 11
## 4674   01/12/2002 11
## 4675   02/11/2002 11
## 4676   02/11/2003 11
## 4677   02/11/2007 11
## 4678   03/06/2001 11
## 4679   03/09/2005 11
## 4680   03/10/1991 11
## 4681   03/10/2004 11
## 4682   03/10/2010 11
## 4683   04/02/2014 11
## 4684   04/05/1993 11
## 4685   04/05/1995 11
## 4686   04/05/1996 11
## 4687   04/05/2007 11
## 4688   04/07/2001 11
## 4689   05/04/2003 11
## 4690   05/07/1994 11
## 4691   05/07/1999 11
## 4692   05/09/1990 11
## 4693   05/10/2009 11
## 4694   06/01/2002 11
## 4695   06/02/2002 11
## 4696   06/02/2014 11
## 4697   06/03/2005 11
## 4698   06/06/2011 11
## 4699   06/09/1990 11
## 4700   07/01/2007 11
## 4701   07/02/2014 11
## 4702   07/03/2004 11
## 4703   07/03/2014 11
## 4704   07/04/2012 11
## 4705   07/08/1991 11
## 4706   07/12/1995 11
## 4707   08/03/1994 11
## 4708   08/03/2013 11
## 4709   08/04/2000 11
## 4710   08/04/2006 11
## 4711   08/05/1995 11
## 4712   08/06/1993 11
## 4713   08/07/1994 11
## 4714   08/09/2013 11
## 4715   09/01/2013 11
## 4716   09/04/2010 11
## 4717   09/10/2011 11
## 4718   09/11/2009 11
## 4719   10/02/1995 11
## 4720   10/05/1991 11
## 4721   10/09/2000 11
## 4722   10/10/1995 11
## 4723   10/12/2000 11
## 4724   11/02/1999 11
## 4725   11/03/1991 11
## 4726   11/04/1999 11
## 4727   11/05/1995 11
## 4728   11/06/2000 11
## 4729   11/07/1995 11
## 4730   11/11/2006 11
## 4731   11/12/2009 11
## 4732   12/02/2014 11
## 4733   12/10/1997 11
## 4734   13/02/2009 11
## 4735   13/04/1997 11
## 4736   13/06/1994 11
## 4737   13/11/1991 11
## 4738   13/11/1995 11
## 4739   14/03/1998 11
## 4740   14/03/1999 11
## 4741   14/04/2006 11
## 4742   15/02/1996 11
## 4743   15/03/1994 11
## 4744   15/03/2008 11
## 4745   15/05/1995 11
## 4746   15/06/2013 11
## 4747   15/08/1991 11
## 4748   15/08/2004 11
## 4749   15/09/1994 11
## 4750   16/02/1997 11
## 4751   16/03/2002 11
## 4752   16/08/1998 11
## 4753   16/11/2007 11
## 4754   17/02/2001 11
## 4755   17/04/2003 11
## 4756   17/05/1993 11
## 4757   17/05/1995 11
## 4758   17/05/1997 11
## 4759   17/05/1998 11
## 4760   17/06/2006 11
## 4761   17/08/1993 11
## 4762   17/10/1998 11
## 4763   17/12/2013 11
## 4764   18/04/2004 11
## 4765   18/07/1999 11
## 4766   18/11/2006 11
## 4767   19/01/2002 11
## 4768   19/01/2004 11
## 4769   19/02/1999 11
## 4770   19/02/2001 11
## 4771   19/04/2008 11
## 4772   19/05/2014 11
## 4773   19/06/1990 11
## 4774   19/06/1992 11
## 4775   19/06/1999 11
## 4776   19/07/1995 11
## 4777   19/08/2000 11
## 4778   19/09/1994 11
## 4779   19/11/2006 11
## 4780   20/03/1995 11
## 4781   20/04/1995 11
## 4782   20/09/1997 11
## 4783   20/11/2011 11
## 4784   20/12/2002 11
## 4785   21/01/2000 11
## 4786   21/04/2002 11
## 4787   21/05/2009 11
## 4788   21/06/2009 11
## 4789   21/09/1996 11
## 4790   21/11/2003 11
## 4791   21/11/2007 11
## 4792   21/12/2012 11
## 4793   22/02/1997 11
## 4794   22/02/2013 11
## 4795   22/07/1993 11
## 4796   22/07/2000 11
## 4797   22/12/2006 11
## 4798   22/12/2013 11
## 4799   23/03/1994 11
## 4800   23/05/1998 11
## 4801   23/06/1996 11
## 4802   23/07/2005 11
## 4803   23/09/2005 11
## 4804   23/10/2004 11
## 4805   23/11/2002 11
## 4806   23/11/2011 11
## 4807   23/12/1996 11
## 4808   23/12/2000 11
## 4809   23/12/2001 11
## 4810   24/05/2013 11
## 4811   24/06/1994 11
## 4812   24/06/2007 11
## 4813   25/03/2014 11
## 4814   25/05/1996 11
## 4815   25/06/2006 11
## 4816   25/08/1994 11
## 4817   25/09/1999 11
## 4818   25/10/2010 11
## 4819   25/11/2009 11
## 4820   26/02/2010 11
## 4821   26/05/2003 11
## 4822   26/05/2012 11
## 4823   26/07/1998 11
## 4824   26/08/1991 11
## 4825   26/09/1994 11
## 4826   26/09/1995 11
## 4827   27/02/2000 11
## 4828   27/05/2011 11
## 4829   27/06/1991 11
## 4830   27/07/1996 11
## 4831   27/09/1990 11
## 4832   27/11/1995 11
## 4833   28/03/2004 11
## 4834   28/03/2009 11
## 4835   28/05/2006 11
## 4836   28/05/2010 11
## 4837   28/06/1998 11
## 4838   28/09/2013 11
## 4839   28/12/2001 11
## 4840   29/01/2005 11
## 4841   29/03/1993 11
## 4842   29/05/1999 11
## 4843   29/05/2006 11
## 4844   29/07/1993 11
## 4845   29/09/2007 11
## 4846   29/11/2009 11
## 4847   29/12/1996 11
## 4848   29/12/2004 11
## 4849   30/01/1996 11
## 4850   30/04/2009 11
## 4851   30/04/2010 11
## 4852   30/08/1997 11
## 4853   30/08/1998 11
## 4854   30/08/2002 11
## 4855   30/12/2003 11
## 4856   31/05/1995 11
## 4857   31/08/1994 11
## 4858   31/08/2004 11
## 4859   31/08/2012 11
## 4860   31/12/2003 11
## 4861   01/01/2009 10
## 4862   01/02/1995 10
## 4863   01/03/1990 10
## 4864   01/03/2009 10
## 4865   01/04/2001 10
## 4866   01/04/2014 10
## 4867   01/05/2004 10
## 4868   01/05/2009 10
## 4869   01/06/1994 10
## 4870   01/06/2002 10
## 4871   01/06/2003 10
## 4872   01/08/1998 10
## 4873   01/08/1999 10
## 4874   01/10/2006 10
## 4875   01/10/2011 10
## 4876   01/11/1995 10
## 4877   01/11/1998 10
## 4878   01/12/2007 10
## 4879   02/01/2010 10
## 4880   02/02/2013 10
## 4881   02/03/1997 10
## 4882   02/05/1990 10
## 4883   02/06/2011 10
## 4884   02/07/1993 10
## 4885   02/07/2006 10
## 4886   02/09/1996 10
## 4887   02/09/2006 10
## 4888   02/10/2004 10
## 4889   02/11/1995 10
## 4890   03/01/2014 10
## 4891   03/05/2002 10
## 4892   03/05/2008 10
## 4893   03/09/2000 10
## 4894   03/09/2007 10
## 4895   03/10/1990 10
## 4896   03/12/1993 10
## 4897   04/02/2011 10
## 4898   04/03/2011 10
## 4899   04/04/1994 10
## 4900   04/04/1998 10
## 4901   04/04/2009 10
## 4902   04/06/2000 10
## 4903   04/07/2009 10
## 4904   04/08/1995 10
## 4905   04/08/2013 10
## 4906   04/09/1991 10
## 4907   04/10/1995 10
## 4908   04/11/1993 10
## 4909   05/04/1997 10
## 4910   05/06/1990 10
## 4911   05/06/2011 10
## 4912   05/07/1995 10
## 4913   05/07/1998 10
## 4914   05/07/2002 10
## 4915   05/08/2001 10
## 4916   05/10/2002 10
## 4917   05/11/2001 10
## 4918   06/02/2005 10
## 4919   06/03/2004 10
## 4920   06/06/1990 10
## 4921   06/07/1996 10
## 4922   06/08/1991 10
## 4923   06/08/2006 10
## 4924   07/02/1995 10
## 4925   07/04/1996 10
## 4926   07/06/1993 10
## 4927   07/06/1994 10
## 4928   07/09/1993 10
## 4929   07/11/1994 10
## 4930   08/02/2008 10
## 4931   08/03/1997 10
## 4932   08/03/2003 10
## 4933   08/04/1991 10
## 4934   08/06/2002 10
## 4935   08/09/1995 10
## 4936   08/10/2005 10
## 4937   08/11/2013 10
## 4938   09/01/1991 10
## 4939   09/02/1997 10
## 4940   09/03/1999 10
## 4941   09/04/1991 10
## 4942   09/05/1998 10
## 4943   09/07/1993 10
## 4944   09/09/2012 10
## 4945   10/02/2014 10
## 4946   10/04/1999 10
## 4947   10/04/2009 10
## 4948   10/05/1995 10
## 4949   10/05/1997 10
## 4950   10/05/2003 10
## 4951   10/06/2000 10
## 4952   11/04/2014 10
## 4953   11/06/1993 10
## 4954   11/06/2006 10
## 4955   11/07/1990 10
## 4956   11/07/1994 10
## 4957   11/09/2010 10
## 4958   11/10/1994 10
## 4959   11/11/2009 10
## 4960   11/11/2013 10
## 4961   11/12/1995 10
## 4962   11/12/2013 10
## 4963   12/01/2002 10
## 4964   12/06/1991 10
## 4965   12/07/1990 10
## 4966   12/07/1993 10
## 4967   12/09/2009 10
## 4968   12/10/1994 10
## 4969   12/11/2010 10
## 4970   12/11/2012 10
## 4971   12/12/1995 10
## 4972   13/02/2010 10
## 4973   13/04/2009 10
## 4974   13/05/2000 10
## 4975   13/06/1990 10
## 4976   13/07/1992 10
## 4977   13/09/1997 10
## 4978   14/02/2010 10
## 4979   14/04/2014 10
## 4980   14/05/1991 10
## 4981   14/06/1994 10
## 4982   14/06/1997 10
## 4983   14/06/2003 10
## 4984   14/08/1990 10
## 4985   14/09/1997 10
## 4986   14/09/2008 10
## 4987   14/11/2008 10
## 4988   15/01/2000 10
## 4989   15/01/2007 10
## 4990   15/01/2008 10
## 4991   15/02/1991 10
## 4992   15/02/1998 10
## 4993   15/03/2014 10
## 4994   15/04/1993 10
## 4995   15/05/2010 10
## 4996   15/06/1996 10
## 4997   15/08/2009 10
## 4998   15/09/2001 10
## 4999   15/12/1996 10
## 5000   16/01/2010 10
## 5001   16/02/2013 10
## 5002   16/09/2006 10
## 5003   16/11/2013 10
## 5004   17/02/2013 10
## 5005   17/03/2012 10
## 5006   17/03/2014 10
## 5007   17/04/1999 10
## 5008   17/05/1991 10
## 5009   17/06/2001 10
## 5010   17/11/2013 10
## 5011   18/01/1999 10
## 5012   18/02/2001 10
## 5013   18/03/2001 10
## 5014   18/03/2014 10
## 5015   18/04/1998 10
## 5016   18/04/2011 10
## 5017   18/07/1994 10
## 5018   18/07/2004 10
## 5019   18/08/2001 10
## 5020   18/08/2002 10
## 5021   18/12/1999 10
## 5022   19/04/1997 10
## 5023   19/05/2007 10
## 5024   19/07/2013 10
## 5025   19/08/1992 10
## 5026   19/10/1996 10
## 5027   19/12/2002 10
## 5028   19/12/2008 10
## 5029   20/04/1994 10
## 5030   20/04/2002 10
## 5031   20/06/2004 10
## 5032   20/09/2013 10
## 5033   20/10/2007 10
## 5034   20/11/2004 10
## 5035   20/11/2010 10
## 5036   21/01/2003 10
## 5037   21/02/1999 10
## 5038   21/05/2006 10
## 5039   21/06/2003 10
## 5040   21/07/1992 10
## 5041   21/08/1990 10
## 5042   21/08/2010 10
## 5043   21/09/2003 10
## 5044   21/10/2001 10
## 5045   21/10/2011 10
## 5046   21/12/2006 10
## 5047   21/12/2011 10
## 5048   22/02/2008 10
## 5049   22/02/2011 10
## 5050   22/03/2011 10
## 5051   22/05/2004 10
## 5052   22/05/2014 10
## 5053   22/07/1991 10
## 5054   22/10/1992 10
## 5055   22/10/1999 10
## 5056   22/10/2010 10
## 5057   23/02/2008 10
## 5058   23/03/1997 10
## 5059   23/06/2012 10
## 5060   23/07/1990 10
## 5061   23/07/1991 10
## 5062   23/08/2002 10
## 5063   23/12/2003 10
## 5064   24/03/2011 10
## 5065   24/04/2014 10
## 5066   24/05/2008 10
## 5067   24/11/2012 10
## 5068   25/05/1995 10
## 5069   25/05/2003 10
## 5070   25/09/1995 10
## 5071   25/10/1997 10
## 5072   25/10/2004 10
## 5073   25/11/2000 10
## 5074   26/01/1999 10
## 5075   26/02/2012 10
## 5076   26/06/2011 10
## 5077   26/07/1990 10
## 5078   26/07/1991 10
## 5079   26/08/2012 10
## 5080   26/11/1997 10
## 5081   26/11/2003 10
## 5082   27/01/2001 10
## 5083   27/03/1990 10
## 5084   27/03/2014 10
## 5085   27/04/2013 10
## 5086   27/06/1995 10
## 5087   27/07/1997 10
## 5088   27/09/1995 10
## 5089   27/09/1997 10
## 5090   27/10/1995 10
## 5091   27/10/1996 10
## 5092   27/12/2007 10
## 5093   28/01/2011 10
## 5094   28/02/2004 10
## 5095   28/03/2003 10
## 5096   28/04/2001 10
## 5097   28/05/1991 10
## 5098   28/05/2012 10
## 5099   28/08/2010 10
## 5100   28/11/2004 10
## 5101   28/12/2011 10
## 5102   28/12/2013 10
## 5103   29/01/2003 10
## 5104   29/06/1993 10
## 5105   29/06/1995 10
## 5106   29/07/2006 10
## 5107   29/08/1995 10
## 5108   29/08/2011 10
## 5109   29/11/1995 10
## 5110   29/11/1997 10
## 5111   30/01/2000 10
## 5112   30/04/1992 10
## 5113   30/05/2004 10
## 5114   30/06/2001 10
## 5115   30/07/1992 10
## 5116   30/09/1991 10
## 5117   30/10/1995 10
## 5118   30/10/2009 10
## 5119   30/11/1997 10
## 5120   30/12/2005 10
## 5121   30/12/2013 10
## 5122   31/01/1992 10
## 5123   31/03/1992 10
## 5124   31/03/1996 10
## 5125   31/03/2014 10
## 5126   31/08/1992 10
## 5127   31/08/2002 10
## 5128   31/12/2004 10
## 5129   31/12/2005 10
## 5130   31/12/2009 10
## 5131   01/01/2002  9
## 5132   01/01/2013  9
## 5133   01/02/2009  9
## 5134   01/04/2000  9
## 5135   01/06/1992  9
## 5136   01/06/1993  9
## 5137   01/06/1997  9
## 5138   01/06/2013  9
## 5139   01/07/1992  9
## 5140   01/08/1991  9
## 5141   02/03/2013  9
## 5142   02/04/2014  9
## 5143   02/05/1998  9
## 5144   02/06/1994  9
## 5145   02/06/1995  9
## 5146   02/08/1997  9
## 5147   02/09/2001  9
## 5148   02/10/1995  9
## 5149   02/10/2009  9
## 5150   02/11/1994  9
## 5151   03/01/1996  9
## 5152   03/02/1996  9
## 5153   03/03/1992  9
## 5154   03/04/1991  9
## 5155   03/07/1991  9
## 5156   03/08/1993  9
## 5157   03/09/1991  9
## 5158   03/12/2013  9
## 5159   04/01/1994  9
## 5160   04/02/1993  9
## 5161   04/02/1994  9
## 5162   04/04/1995  9
## 5163   04/05/1990  9
## 5164   04/05/2008  9
## 5165   04/07/2013  9
## 5166   04/08/1993  9
## 5167   04/08/1996  9
## 5168   04/09/2010  9
## 5169   04/10/1997  9
## 5170   05/04/1994  9
## 5171   05/05/2014  9
## 5172   05/08/2000  9
## 5173   05/09/2005  9
## 5174   05/10/1990  9
## 5175   05/10/2008  9
## 5176   05/10/2013  9
## 5177   06/01/1996  9
## 5178   06/01/2001  9
## 5179   06/01/2007  9
## 5180   06/04/1995  9
## 5181   06/04/2007  9
## 5182   06/04/2012  9
## 5183   06/04/2013  9
## 5184   06/08/1990  9
## 5185   06/09/1999  9
## 5186   06/09/2008  9
## 5187   06/11/2003  9
## 5188   06/12/2003  9
## 5189   07/02/2010  9
## 5190   07/03/1995  9
## 5191   07/03/1999  9
## 5192   07/05/1990  9
## 5193   07/06/1995  9
## 5194   07/06/2008  9
## 5195   07/07/1992  9
## 5196   07/07/1993  9
## 5197   07/08/2005  9
## 5198   07/08/2011  9
## 5199   07/10/1993  9
## 5200   07/10/2009  9
## 5201   07/10/2012  9
## 5202   08/01/2005  9
## 5203   08/03/1991  9
## 5204   08/04/2001  9
## 5205   08/04/2014  9
## 5206   08/05/2004  9
## 5207   08/05/2014  9
## 5208   08/06/1996  9
## 5209   08/06/1997  9
## 5210   08/08/2009  9
## 5211   08/09/1992  9
## 5212   08/09/1993  9
## 5213   08/11/1997  9
## 5214   08/12/2013  9
## 5215   09/01/1995  9
## 5216   09/01/2009  9
## 5217   09/02/1994  9
## 5218   09/03/1992  9
## 5219   09/04/2005  9
## 5220   09/05/2010  9
## 5221   09/10/1995  9
## 5222   09/10/2010  9
## 5223   09/12/2000  9
## 5224   10/03/2012  9
## 5225   10/04/2010  9
## 5226   10/06/1993  9
## 5227   10/06/1994  9
## 5228   10/07/1992  9
## 5229   10/07/2011  9
## 5230   10/10/1990  9
## 5231   10/11/2013  9
## 5232   11/01/2004  9
## 5233   11/02/1991  9
## 5234   11/02/2014  9
## 5235   11/04/1994  9
## 5236   11/04/1995  9
## 5237   11/05/1992  9
## 5238   11/05/1993  9
## 5239   11/05/1997  9
## 5240   11/06/1991  9
## 5241   11/07/1991  9
## 5242   11/07/1999  9
## 5243   11/08/1995  9
## 5244   11/10/2008  9
## 5245   11/11/2003  9
## 5246   12/02/1991  9
## 5247   12/02/2005  9
## 5248   12/05/2001  9
## 5249   12/05/2014  9
## 5250   12/07/1997  9
## 5251   12/09/1995  9
## 5252   12/10/2008  9
## 5253   13/01/2002  9
## 5254   13/04/2001  9
## 5255   13/05/2001  9
## 5256   13/07/1995  9
## 5257   13/07/1997  9
## 5258   13/07/2013  9
## 5259   13/08/2005  9
## 5260   13/08/2006  9
## 5261   13/10/2012  9
## 5262   14/01/1991  9
## 5263   14/01/1992  9
## 5264   14/04/2007  9
## 5265   14/05/1992  9
## 5266   14/06/1995  9
## 5267   14/08/2010  9
## 5268   14/09/1995  9
## 5269   14/10/2006  9
## 5270   14/11/2004  9
## 5271   14/12/1995  9
## 5272   15/01/2006  9
## 5273   15/02/1997  9
## 5274   15/03/1995  9
## 5275   15/04/2013  9
## 5276   15/06/1992  9
## 5277   15/06/2008  9
## 5278   15/09/2002  9
## 5279   15/09/2012  9
## 5280   15/10/1990  9
## 5281   15/12/2001  9
## 5282   16/01/2000  9
## 5283   16/01/2004  9
## 5284   16/04/2005  9
## 5285   16/07/2006  9
## 5286   16/07/2011  9
## 5287   16/09/1993  9
## 5288   16/09/2000  9
## 5289   16/10/1995  9
## 5290   16/10/2009  9
## 5291   16/11/1996  9
## 5292   16/12/1992  9
## 5293   17/01/2000  9
## 5294   17/04/2004  9
## 5295   17/06/1994  9
## 5296   17/06/2000  9
## 5297   17/07/1991  9
## 5298   17/07/1995  9
## 5299   17/07/2004  9
## 5300   17/09/1990  9
## 5301   17/09/2011  9
## 5302   18/02/2007  9
## 5303   18/04/1995  9
## 5304   18/04/2010  9
## 5305   18/05/1995  9
## 5306   18/05/2013  9
## 5307   18/08/1992  9
## 5308   18/09/2005  9
## 5309   18/10/2013  9
## 5310   19/02/2005  9
## 5311   19/02/2011  9
## 5312   19/04/1995  9
## 5313   19/05/1992  9
## 5314   19/05/1996  9
## 5315   19/07/1991  9
## 5316   19/08/1993  9
## 5317   19/08/1994  9
## 5318   19/09/1999  9
## 5319   19/10/2013  9
## 5320   19/11/2000  9
## 5321   19/11/2012  9
## 5322   19/12/1999  9
## 5323   19/12/2009  9
## 5324   20/01/2012  9
## 5325   20/01/2013  9
## 5326   20/03/1990  9
## 5327   20/05/2014  9
## 5328   20/06/1995  9
## 5329   20/07/1994  9
## 5330   20/09/2008  9
## 5331   20/11/1991  9
## 5332   20/12/1993  9
## 5333   20/12/2010  9
## 5334   20/12/2013  9
## 5335   21/01/2006  9
## 5336   21/02/1994  9
## 5337   21/02/2003  9
## 5338   21/04/1994  9
## 5339   21/04/1995  9
## 5340   21/05/2005  9
## 5341   21/06/1990  9
## 5342   21/06/1997  9
## 5343   21/08/1995  9
## 5344   21/08/2004  9
## 5345   21/09/1994  9
## 5346   21/10/1994  9
## 5347   21/10/2000  9
## 5348   21/11/1994  9
## 5349   21/11/2012  9
## 5350   21/12/1997  9
## 5351   22/01/2005  9
## 5352   22/03/1994  9
## 5353   22/06/2002  9
## 5354   22/08/1990  9
## 5355   22/08/2004  9
## 5356   22/09/2002  9
## 5357   22/09/2012  9
## 5358   22/10/1993  9
## 5359   22/11/1997  9
## 5360   23/01/2005  9
## 5361   23/02/1993  9
## 5362   23/04/2011  9
## 5363   23/05/2004  9
## 5364   23/06/2001  9
## 5365   23/07/2011  9
## 5366   23/08/2009  9
## 5367   23/09/1991  9
## 5368   23/12/2009  9
## 5369   24/02/2013  9
## 5370   24/03/1996  9
## 5371   24/04/1990  9
## 5372   24/04/1995  9
## 5373   24/05/1994  9
## 5374   24/05/1998  9
## 5375   24/06/1993  9
## 5376   24/06/2014  9
## 5377   24/07/2005  9
## 5378   24/08/1992  9
## 5379   24/08/1995  9
## 5380   24/09/1990  9
## 5381   24/09/1992  9
## 5382   24/10/1991  9
## 5383   24/10/1998  9
## 5384   24/10/1999  9
## 5385   25/04/1994  9
## 5386   25/04/2004  9
## 5387   25/04/2010  9
## 5388   25/06/1992  9
## 5389   25/07/1998  9
## 5390   25/08/1996  9
## 5391   25/11/2003  9
## 5392   25/11/2013  9
## 5393   25/12/1996  9
## 5394   26/01/1997  9
## 5395   26/01/2013  9
## 5396   26/03/2010  9
## 5397   26/04/1994  9
## 5398   26/04/2009  9
## 5399   26/06/2010  9
## 5400   26/07/2008  9
## 5401   26/08/1992  9
## 5402   26/08/1993  9
## 5403   26/08/2000  9
## 5404   26/09/1990  9
## 5405   26/09/2004  9
## 5406   26/10/1997  9
## 5407   26/11/2000  9
## 5408   26/12/1997  9
## 5409   27/04/2003  9
## 5410   27/05/2002  9
## 5411   27/08/1993  9
## 5412   27/12/1994  9
## 5413   27/12/2004  9
## 5414   28/02/1999  9
## 5415   28/03/1995  9
## 5416   28/06/1997  9
## 5417   28/08/1995  9
## 5418   28/10/2000  9
## 5419   28/10/2001  9
## 5420   28/11/1995  9
## 5421   28/12/1998  9
## 5422   28/12/2000  9
## 5423   28/12/2012  9
## 5424   29/02/2004  9
## 5425   29/03/1995  9
## 5426   29/03/2003  9
## 5427   29/04/2014  9
## 5428   29/06/1992  9
## 5429   29/08/1998  9
## 5430   29/12/2009  9
## 5431   30/01/1999  9
## 5432   30/03/1994  9
## 5433   30/03/1997  9
## 5434   30/04/2005  9
## 5435   30/05/1999  9
## 5436   30/06/1994  9
## 5437   30/06/1995  9
## 5438   30/08/1990  9
## 5439   30/08/1994  9
## 5440   30/08/2008  9
## 5441   30/09/1993  9
## 5442   30/11/1996  9
## 5443   30/12/2004  9
## 5444   31/01/1998  9
## 5445   31/10/1991  9
## 5446   31/12/1998  9
## 5447   31/12/2001  9
## 5448   01/01/1996  8
## 5449   01/01/2006  8
## 5450   01/03/1997  8
## 5451   01/04/1993  8
## 5452   01/04/2012  8
## 5453   01/05/1995  8
## 5454   01/05/1999  8
## 5455   01/06/1990  8
## 5456   01/06/2008  8
## 5457   01/07/1994  8
## 5458   01/07/2000  8
## 5459   01/07/2007  8
## 5460   01/09/1992  8
## 5461   01/09/1994  8
## 5462   01/09/2001  8
## 5463   01/09/2013  8
## 5464   01/10/1991  8
## 5465   01/11/1997  8
## 5466   01/11/2009  8
## 5467   02/01/2005  8
## 5468   02/01/2006  8
## 5469   02/02/2003  8
## 5470   02/03/1995  8
## 5471   02/03/2008  8
## 5472   02/04/1990  8
## 5473   02/04/2005  8
## 5474   02/05/1999  8
## 5475   02/06/1993  8
## 5476   02/09/1992  8
## 5477   02/09/1993  8
## 5478   02/09/2013  8
## 5479   02/10/1990  8
## 5480   02/11/2008  8
## 5481   02/12/1993  8
## 5482   02/12/2000  8
## 5483   02/12/2006  8
## 5484   03/01/1994  8
## 5485   03/02/1994  8
## 5486   03/02/2008  8
## 5487   03/02/2011  8
## 5488   03/04/1995  8
## 5489   03/04/2010  8
## 5490   03/05/1990  8
## 5491   03/05/1993  8
## 5492   03/05/1995  8
## 5493   03/05/1997  8
## 5494   03/06/1993  8
## 5495   03/06/2012  8
## 5496   03/07/1990  8
## 5497   03/07/1998  8
## 5498   03/08/1990  8
## 5499   03/08/1994  8
## 5500   03/11/2013  8
## 5501   03/12/2000  8
## 5502   04/02/2007  8
## 5503   04/04/2014  8
## 5504   04/07/1998  8
## 5505   04/07/2002  8
## 5506   04/07/2004  8
## 5507   04/07/2012  8
## 5508   04/09/1990  8
## 5509   04/09/2009  8
## 5510   04/09/2012  8
## 5511   04/11/1992  8
## 5512   04/11/2001  8
## 5513   04/11/2006  8
## 5514   04/12/2005  8
## 5515   05/01/1996  8
## 5516   05/01/2014  8
## 5517   05/03/1991  8
## 5518   05/05/2002  8
## 5519   05/08/1994  8
## 5520   05/09/2004  8
## 5521   05/09/2009  8
## 5522   05/11/2000  8
## 5523   05/12/1995  8
## 5524   05/12/1999  8
## 5525   06/01/1992  8
## 5526   06/04/1993  8
## 5527   06/04/2003  8
## 5528   06/05/2001  8
## 5529   06/06/2004  8
## 5530   06/06/2010  8
## 5531   06/07/1995  8
## 5532   06/07/2002  8
## 5533   06/09/1995  8
## 5534   06/09/2004  8
## 5535   06/10/1993  8
## 5536   06/11/2005  8
## 5537   07/02/1998  8
## 5538   07/02/2004  8
## 5539   07/02/2009  8
## 5540   07/04/1993  8
## 5541   07/04/2007  8
## 5542   07/05/2000  8
## 5543   07/06/1990  8
## 5544   07/09/1994  8
## 5545   07/09/2003  8
## 5546   07/10/2000  8
## 5547   07/10/2006  8
## 5548   07/11/1991  8
## 5549   08/01/1992  8
## 5550   08/01/2012  8
## 5551   08/02/1995  8
## 5552   08/02/1997  8
## 5553   08/02/1998  8
## 5554   08/03/1995  8
## 5555   08/06/1995  8
## 5556   08/07/1993  8
## 5557   08/08/1994  8
## 5558   08/08/1995  8
## 5559   08/09/2001  8
## 5560   08/09/2002  8
## 5561   08/10/1991  8
## 5562   08/10/2011  8
## 5563   08/11/1991  8
## 5564   09/03/1995  8
## 5565   09/03/1997  8
## 5566   09/05/1990  8
## 5567   09/05/1994  8
## 5568   09/08/1997  8
## 5569   09/10/1991  8
## 5570   09/11/1995  8
## 5571   09/12/1993  8
## 5572   09/12/2001  8
## 5573   10/01/1991  8
## 5574   10/01/1999  8
## 5575   10/01/2004  8
## 5576   10/01/2009  8
## 5577   10/02/1994  8
## 5578   10/04/1992  8
## 5579   10/06/1991  8
## 5580   10/06/2006  8
## 5581   10/07/1991  8
## 5582   10/07/2005  8
## 5583   10/08/2013  8
## 5584   10/09/1993  8
## 5585   10/10/1994  8
## 5586   10/10/1999  8
## 5587   10/10/2004  8
## 5588   10/11/1995  8
## 5589   10/11/2007  8
## 5590   10/11/2012  8
## 5591   11/01/2003  8
## 5592   11/02/2006  8
## 5593   11/04/1998  8
## 5594   11/05/2002  8
## 5595   11/06/1990  8
## 5596   11/09/1992  8
## 5597   11/10/1998  8
## 5598   11/10/2013  8
## 5599   11/11/2002  8
## 5600   11/12/1990  8
## 5601   11/12/1998  8
## 5602   11/12/2004  8
## 5603   11/12/2005  8
## 5604   12/01/1995  8
## 5605   12/02/2011  8
## 5606   12/03/2006  8
## 5607   12/04/1995  8
## 5608   12/05/2013  8
## 5609   12/06/1990  8
## 5610   12/07/1994  8
## 5611   12/07/2003  8
## 5612   12/08/1992  8
## 5613   12/08/1994  8
## 5614   12/08/2007  8
## 5615   12/10/1993  8
## 5616   12/10/1996  8
## 5617   12/10/2002  8
## 5618   12/11/2000  8
## 5619   12/12/1994  8
## 5620   13/02/1995  8
## 5621   13/03/2010  8
## 5622   13/05/2006  8
## 5623   13/06/1995  8
## 5624   13/07/1994  8
## 5625   13/08/1992  8
## 5626   13/08/1993  8
## 5627   13/09/1998  8
## 5628   13/10/1996  8
## 5629   14/01/1996  8
## 5630   14/01/2007  8
## 5631   14/01/2014  8
## 5632   14/05/2014  8
## 5633   14/06/1990  8
## 5634   14/07/2012  8
## 5635   14/08/1999  8
## 5636   14/11/1995  8
## 5637   14/11/1998  8
## 5638   15/03/1997  8
## 5639   15/03/2009  8
## 5640   15/04/2000  8
## 5641   15/05/1992  8
## 5642   15/07/1993  8
## 5643   15/07/2000  8
## 5644   15/07/2001  8
## 5645   15/08/1990  8
## 5646   15/08/1995  8
## 5647   15/09/1992  8
## 5648   15/09/1993  8
## 5649   15/10/1991  8
## 5650   15/11/1991  8
## 5651   15/11/1994  8
## 5652   15/12/1995  8
## 5653   16/02/2014  8
## 5654   16/03/1992  8
## 5655   16/03/1997  8
## 5656   16/03/2003  8
## 5657   16/04/2011  8
## 5658   16/06/2002  8
## 5659   16/06/2007  8
## 5660   16/06/2012  8
## 5661   16/08/1990  8
## 5662   16/08/2003  8
## 5663   16/08/2008  8
## 5664   16/10/2005  8
## 5665   16/11/1992  8
## 5666   17/01/2011  8
## 5667   17/08/1997  8
## 5668   17/10/1990  8
## 5669   17/10/1991  8
## 5670   18/01/2003  8
## 5671   18/03/2000  8
## 5672   18/04/2014  8
## 5673   18/05/1990  8
## 5674   18/05/2002  8
## 5675   18/05/2003  8
## 5676   18/06/1993  8
## 5677   18/06/2000  8
## 5678   18/08/1995  8
## 5679   18/08/2012  8
## 5680   18/09/1999  8
## 5681   18/09/2004  8
## 5682   18/10/1998  8
## 5683   18/10/2008  8
## 5684   18/11/1993  8
## 5685   18/11/2001  8
## 5686   18/11/2012  8
## 5687   18/12/1995  8
## 5688   19/01/1997  8
## 5689   19/02/2012  8
## 5690   19/04/1994  8
## 5691   19/05/2013  8
## 5692   19/06/1991  8
## 5693   19/07/1994  8
## 5694   19/07/1997  8
## 5695   19/07/1998  8
## 5696   19/08/1991  8
## 5697   19/09/1991  8
## 5698   19/09/1998  8
## 5699   19/10/1997  8
## 5700   20/01/1997  8
## 5701   20/02/1995  8
## 5702   20/02/1996  8
## 5703   20/03/1991  8
## 5704   20/05/2001  8
## 5705   20/06/1991  8
## 5706   20/06/1994  8
## 5707   20/07/1990  8
## 5708   20/07/2002  8
## 5709   20/07/2008  8
## 5710   20/07/2013  8
## 5711   20/08/1991  8
## 5712   20/09/1990  8
## 5713   20/10/2002  8
## 5714   20/10/2013  8
## 5715   20/11/1995  8
## 5716   20/12/1995  8
## 5717   20/12/1998  8
## 5718   21/02/1995  8
## 5719   21/04/2000  8
## 5720   21/05/1990  8
## 5721   21/05/2014  8
## 5722   21/07/1993  8
## 5723   21/07/2002  8
## 5724   21/09/1992  8
## 5725   21/10/1992  8
## 5726   21/11/1995  8
## 5727   22/01/1991  8
## 5728   22/01/2011  8
## 5729   22/02/1994  8
## 5730   22/02/1998  8
## 5731   22/03/1997  8
## 5732   22/03/1998  8
## 5733   22/03/2013  8
## 5734   22/03/2014  8
## 5735   22/05/1990  8
## 5736   22/06/1993  8
## 5737   22/10/2000  8
## 5738   22/12/1997  8
## 5739   22/12/2002  8
## 5740   23/02/1994  8
## 5741   23/02/1997  8
## 5742   23/04/1990  8
## 5743   23/04/2006  8
## 5744   23/04/2014  8
## 5745   23/05/1999  8
## 5746   23/05/2010  8
## 5747   23/06/1993  8
## 5748   23/06/1995  8
## 5749   23/07/2000  8
## 5750   23/08/1997  8
## 5751   23/08/2003  8
## 5752   23/09/2012  8
## 5753   23/12/2002  8
## 5754   24/01/2010  8
## 5755   24/03/2001  8
## 5756   24/05/2009  8
## 5757   24/06/2000  8
## 5758   24/08/1990  8
## 5759   24/08/2002  8
## 5760   24/09/1993  8
## 5761   24/11/1992  8
## 5762   24/11/1996  8
## 5763   25/01/1994  8
## 5764   25/01/2003  8
## 5765   25/02/2011  8
## 5766   25/03/2005  8
## 5767   25/03/2006  8
## 5768   25/04/1995  8
## 5769   25/05/1994  8
## 5770   25/06/1991  8
## 5771   25/06/2000  8
## 5772   25/07/1990  8
## 5773   25/07/2009  8
## 5774   25/08/1992  8
## 5775   25/08/2002  8
## 5776   25/08/2013  8
## 5777   25/09/2005  8
## 5778   25/10/1991  8
## 5779   25/11/2006  8
## 5780   25/11/2012  8
## 5781   26/03/1990  8
## 5782   26/03/1991  8
## 5783   26/06/1992  8
## 5784   26/07/2002  8
## 5785   26/08/1994  8
## 5786   26/10/2003  8
## 5787   26/11/1999  8
## 5788   26/12/2006  8
## 5789   27/02/1991  8
## 5790   27/03/2004  8
## 5791   27/05/2000  8
## 5792   27/07/1994  8
## 5793   27/08/1992  8
## 5794   27/09/1993  8
## 5795   27/10/1994  8
## 5796   27/10/2012  8
## 5797   27/11/1999  8
## 5798   27/11/2009  8
## 5799   27/12/1997  8
## 5800   27/12/2002  8
## 5801   27/12/2005  8
## 5802   28/01/1993  8
## 5803   28/01/2006  8
## 5804   28/01/2007  8
## 5805   28/02/2014  8
## 5806   28/03/1997  8
## 5807   28/05/2014  8
## 5808   28/06/1990  8
## 5809   28/06/1993  8
## 5810   28/06/1995  8
## 5811   28/08/1991  8
## 5812   28/08/1992  8
## 5813   28/08/2005  8
## 5814   28/08/2011  8
## 5815   28/09/2002  8
## 5816   28/09/2008  8
## 5817   28/10/1994  8
## 5818   29/01/1992  8
## 5819   29/01/1993  8
## 5820   29/01/2006  8
## 5821   29/03/2002  8
## 5822   29/05/2000  8
## 5823   29/05/2014  8
## 5824   29/06/1996  8
## 5825   29/07/1994  8
## 5826   29/10/2000  8
## 5827   29/10/2011  8
## 5828   29/11/1993  8
## 5829   29/12/2008  8
## 5830   30/03/1996  8
## 5831   30/04/2000  8
## 5832   30/05/1991  8
## 5833   30/06/1992  8
## 5834   30/06/1996  8
## 5835   30/07/2011  8
## 5836   30/08/2009  8
## 5837   30/10/2004  8
## 5838   30/12/2006  8
## 5839   30/12/2011  8
## 5840   31/01/2003  8
## 5841   31/05/2004  8
## 5842   31/07/2004  8
## 5843   31/08/1990  8
## 5844   31/08/2003  8
## 5845   31/08/2013  8
## 5846   31/10/1995  8
## 5847   01/01/2004  7
## 5848   01/01/2012  7
## 5849   01/01/2014  7
## 5850   01/02/1994  7
## 5851   01/02/1998  7
## 5852   01/03/1994  7
## 5853   01/04/1991  7
## 5854   01/07/1991  7
## 5855   01/07/1993  7
## 5856   01/08/1994  7
## 5857   01/08/2009  7
## 5858   01/09/1993  7
## 5859   01/09/2002  7
## 5860   01/09/2007  7
## 5861   01/09/2012  7
## 5862   01/10/1990  7
## 5863   01/10/1993  7
## 5864   01/10/1995  7
## 5865   01/11/1990  7
## 5866   01/11/1993  7
## 5867   01/12/2001  7
## 5868   02/01/2004  7
## 5869   02/01/2014  7
## 5870   02/02/1995  7
## 5871   02/04/1999  7
## 5872   02/04/2006  7
## 5873   02/07/1992  7
## 5874   02/07/2005  7
## 5875   02/09/1994  7
## 5876   02/09/2002  7
## 5877   02/10/1999  7
## 5878   02/10/2005  7
## 5879   02/12/2007  7
## 5880   03/01/1995  7
## 5881   03/01/1999  7
## 5882   03/01/2010  7
## 5883   03/03/1996  7
## 5884   03/03/2002  7
## 5885   03/07/2009  7
## 5886   03/08/2002  7
## 5887   03/11/1994  7
## 5888   03/11/2002  7
## 5889   03/12/1991  7
## 5890   04/01/1997  7
## 5891   04/01/1998  7
## 5892   04/02/2001  7
## 5893   04/03/1992  7
## 5894   04/03/2000  7
## 5895   04/03/2012  7
## 5896   04/04/1991  7
## 5897   04/06/2005  7
## 5898   04/06/2014  7
## 5899   04/07/1997  7
## 5900   04/07/1999  7
## 5901   04/07/2003  7
## 5902   04/07/2007  7
## 5903   04/10/1991  7
## 5904   04/10/1998  7
## 5905   04/11/2007  7
## 5906   04/12/1995  7
## 5907   04/12/2010  7
## 5908   05/01/2003  7
## 5909   05/02/2000  7
## 5910   05/02/2012  7
## 5911   05/03/2006  7
## 5912   05/04/2009  7
## 5913   05/04/2014  7
## 5914   05/06/1991  7
## 5915   05/07/2004  7
## 5916   05/07/2009  7
## 5917   05/08/2012  7
## 5918   05/09/1995  7
## 5919   05/10/1993  7
## 5920   05/10/1994  7
## 5921   05/11/2005  7
## 5922   05/11/2011  7
## 5923   05/12/1990  7
## 5924   05/12/1994  7
## 5925   05/12/1998  7
## 5926   05/12/2004  7
## 5927   06/01/1995  7
## 5928   06/02/1992  7
## 5929   06/03/1991  7
## 5930   06/03/1999  7
## 5931   06/04/1990  7
## 5932   06/04/1992  7
## 5933   06/04/2002  7
## 5934   06/05/2007  7
## 5935   06/06/1998  7
## 5936   06/06/1999  7
## 5937   06/09/1991  7
## 5938   06/09/2003  7
## 5939   06/09/2009  7
## 5940   06/10/2001  7
## 5941   06/12/1990  7
## 5942   06/12/1997  7
## 5943   06/12/2009  7
## 5944   07/01/1992  7
## 5945   07/01/1996  7
## 5946   07/02/1992  7
## 5947   07/03/2009  7
## 5948   07/04/1995  7
## 5949   07/04/2001  7
## 5950   07/05/2006  7
## 5951   07/07/1994  7
## 5952   07/07/2012  7
## 5953   07/08/1995  7
## 5954   07/08/2010  7
## 5955   07/09/1995  7
## 5956   07/09/1998  7
## 5957   07/09/2002  7
## 5958   07/12/2003  7
## 5959   07/12/2008  7
## 5960   08/01/2000  7
## 5961   08/02/1990  7
## 5962   08/02/1991  7
## 5963   08/02/1996  7
## 5964   08/02/2003  7
## 5965   08/06/1994  7
## 5966   08/07/2007  7
## 5967   08/08/1999  7
## 5968   08/09/2012  7
## 5969   08/10/1990  7
## 5970   08/10/2006  7
## 5971   08/11/1994  7
## 5972   08/12/2001  7
## 5973   09/01/1999  7
## 5974   09/02/1993  7
## 5975   09/02/2008  7
## 5976   09/03/1993  7
## 5977   09/04/2004  7
## 5978   09/04/2011  7
## 5979   09/05/1991  7
## 5980   09/05/2014  7
## 5981   09/06/1993  7
## 5982   09/06/2001  7
## 5983   09/08/1995  7
## 5984   09/08/2003  7
## 5985   09/08/2009  7
## 5986   09/11/2003  7
## 5987   09/11/2013  7
## 5988   09/12/1992  7
## 5989   10/02/1993  7
## 5990   10/03/1993  7
## 5991   10/06/1992  7
## 5992   10/06/2001  7
## 5993   10/07/1995  7
## 5994   10/08/1995  7
## 5995   10/11/2006  7
## 5996   11/01/1995  7
## 5997   11/03/1992  7
## 5998   11/04/1991  7
## 5999   11/08/1993  7
## 6000   11/08/2012  7
## 6001   11/10/1990  7
## 6002   11/10/1995  7
## 6003   11/10/2009  7
## 6004   11/11/2005  7
## 6005   12/03/2000  7
## 6006   12/03/2005  7
## 6007   12/04/1993  7
## 6008   12/04/1994  7
## 6009   12/05/1993  7
## 6010   12/05/2012  7
## 6011   12/06/1999  7
## 6012   12/08/2001  7
## 6013   12/09/2004  7
## 6014   12/10/1992  7
## 6015   12/10/2013  7
## 6016   12/11/1991  7
## 6017   12/11/1993  7
## 6018   12/11/2007  7
## 6019   12/12/2009  7
## 6020   13/01/2001  7
## 6021   13/02/1992  7
## 6022   13/03/2005  7
## 6023   13/05/1993  7
## 6024   13/05/2007  7
## 6025   13/07/2002  7
## 6026   13/09/1991  7
## 6027   13/09/1993  7
## 6028   13/09/2009  7
## 6029   13/10/1993  7
## 6030   13/10/1994  7
## 6031   13/10/1995  7
## 6032   13/10/2002  7
## 6033   13/11/2005  7
## 6034   14/02/1994  7
## 6035   14/02/1999  7
## 6036   14/02/2004  7
## 6037   14/03/2004  7
## 6038   14/04/1993  7
## 6039   14/04/2002  7
## 6040   14/04/2012  7
## 6041   14/05/2005  7
## 6042   14/06/1991  7
## 6043   14/06/1993  7
## 6044   14/06/1998  7
## 6045   14/06/2009  7
## 6046   14/07/1995  7
## 6047   14/10/1991  7
## 6048   14/10/2000  7
## 6049   14/10/2001  7
## 6050   14/10/2007  7
## 6051   14/12/1990  7
## 6052   15/01/2011  7
## 6053   15/03/2003  7
## 6054   15/04/2001  7
## 6055   15/04/2006  7
## 6056   15/05/1990  7
## 6057   15/05/2004  7
## 6058   15/06/1994  7
## 6059   15/07/1994  7
## 6060   15/08/1994  7
## 6061   15/08/2010  7
## 6062   15/10/2005  7
## 6063   15/11/1989  7
## 6064   15/11/1990  7
## 6065   15/11/1993  7
## 6066   15/11/1998  7
## 6067   15/11/2013  7
## 6068   15/12/2007  7
## 6069   16/02/1995  7
## 6070   16/03/2013  7
## 6071   16/04/1991  7
## 6072   16/05/1998  7
## 6073   16/05/1999  7
## 6074   16/06/2013  7
## 6075   16/07/2005  7
## 6076   16/08/1991  7
## 6077   16/08/1993  7
## 6078   16/08/1994  7
## 6079   16/08/1995  7
## 6080   16/10/1992  7
## 6081   16/10/2004  7
## 6082   16/11/1997  7
## 6083   16/12/2000  7
## 6084   16/12/2007  7
## 6085   16/12/2012  7
## 6086   17/01/1995  7
## 6087   17/03/1994  7
## 6088   17/04/1995  7
## 6089   17/04/2011  7
## 6090   17/06/1991  7
## 6091   17/08/1990  7
## 6092   17/08/2008  7
## 6093   17/09/1991  7
## 6094   17/09/1992  7
## 6095   17/10/1995  7
## 6096   17/11/2012  7
## 6097   17/12/2005  7
## 6098   17/12/2006  7
## 6099   18/03/1991  7
## 6100   18/05/1997  7
## 6101   18/06/2006  7
## 6102   18/06/2014  7
## 6103   18/07/1990  7
## 6104   18/08/1994  7
## 6105   18/08/2013  7
## 6106   18/09/1992  7
## 6107   18/10/1994  7
## 6108   18/10/1995  7
## 6109   18/10/1997  7
## 6110   18/12/1990  7
## 6111   18/12/2004  7
## 6112   19/02/2006  7
## 6113   19/04/1993  7
## 6114   19/05/1993  7
## 6115   19/05/2001  7
## 6116   19/05/2012  7
## 6117   19/06/1995  7
## 6118   19/07/2009  7
## 6119   19/08/2001  7
## 6120   19/08/2007  7
## 6121   19/09/2009  7
## 6122   19/11/1992  7
## 6123   20/01/2007  7
## 6124   20/01/2014  7
## 6125   20/02/1999  7
## 6126   20/03/2004  7
## 6127   20/03/2010  7
## 6128   20/04/1993  7
## 6129   20/04/1997  7
## 6130   20/05/1992  7
## 6131   20/05/1993  7
## 6132   20/05/2000  7
## 6133   20/05/2006  7
## 6134   20/06/1990  7
## 6135   20/07/1992  7
## 6136   20/08/1992  7
## 6137   20/08/1993  7
## 6138   20/08/2011  7
## 6139   20/09/1993  7
## 6140   20/11/2005  7
## 6141   21/02/2009  7
## 6142   21/02/2010  7
## 6143   21/03/1990  7
## 6144   21/04/2007  7
## 6145   21/04/2012  7
## 6146   21/05/1992  7
## 6147   21/08/1991  7
## 6148   21/08/2011  7
## 6149   21/09/1990  7
## 6150   21/09/2013  7
## 6151   21/10/1993  7
## 6152   21/10/2006  7
## 6153   21/11/1991  7
## 6154   21/11/2004  7
## 6155   21/12/2008  7
## 6156   22/01/1992  7
## 6157   22/02/1995  7
## 6158   22/03/1990  7
## 6159   22/04/1991  7
## 6160   22/04/1992  7
## 6161   22/05/1999  7
## 6162   22/05/2010  7
## 6163   22/06/1992  7
## 6164   22/06/1995  7
## 6165   22/07/1992  7
## 6166   22/07/2007  7
## 6167   22/12/1993  7
## 6168   22/12/2000  7
## 6169   23/01/1995  7
## 6170   23/03/1993  7
## 6171   23/03/2002  7
## 6172   23/03/2014  7
## 6173   23/07/1993  7
## 6174   23/09/1992  7
## 6175   23/09/1994  7
## 6176   23/10/2011  7
## 6177   23/11/2000  7
## 6178   23/11/2003  7
## 6179   23/11/2006  7
## 6180   23/11/2007  7
## 6181   23/11/2013  7
## 6182   23/12/2013  7
## 6183   24/01/1992  7
## 6184   24/01/1995  7
## 6185   24/02/1994  7
## 6186   24/03/1995  7
## 6187   24/03/2012  7
## 6188   24/04/1991  7
## 6189   24/04/2004  7
## 6190   24/05/1990  7
## 6191   24/05/1993  7
## 6192   24/08/2003  7
## 6193   24/10/2009  7
## 6194   24/10/2010  7
## 6195   24/12/2006  7
## 6196   25/02/1994  7
## 6197   25/02/2006  7
## 6198   25/03/1991  7
## 6199   25/03/2001  7
## 6200   25/04/1990  7
## 6201   25/04/1998  7
## 6202   25/04/2014  7
## 6203   25/05/2008  7
## 6204   25/06/1990  7
## 6205   25/06/2005  7
## 6206   25/07/2010  7
## 6207   25/10/1995  7
## 6208   25/11/1991  7
## 6209   25/11/1998  7
## 6210   25/11/2011  7
## 6211   25/12/2006  7
## 6212   25/12/2010  7
## 6213   26/01/2008  7
## 6214   26/03/2000  7
## 6215   26/04/2008  7
## 6216   26/05/1996  7
## 6217   26/06/1999  7
## 6218   26/06/2004  7
## 6219   26/06/2005  7
## 6220   26/07/1993  7
## 6221   26/07/1997  7
## 6222   26/08/2001  7
## 6223   26/09/1998  7
## 6224   26/12/2007  7
## 6225   27/01/1992  7
## 6226   27/03/1991  7
## 6227   27/03/1995  7
## 6228   27/04/1993  7
## 6229   27/04/1994  7
## 6230   27/04/1995  7
## 6231   27/04/2002  7
## 6232   27/04/2008  7
## 6233   27/05/1993  7
## 6234   27/06/2004  7
## 6235   27/07/1990  7
## 6236   27/07/2013  7
## 6237   27/08/2006  7
## 6238   27/09/1991  7
## 6239   27/10/1992  7
## 6240   27/11/1998  7
## 6241   28/01/2001  7
## 6242   28/04/1994  7
## 6243   28/04/2002  7
## 6244   28/04/2012  7
## 6245   28/06/1991  7
## 6246   28/06/1994  7
## 6247   28/06/2009  7
## 6248   28/07/1992  7
## 6249   28/07/1996  7
## 6250   28/08/1990  7
## 6251   28/09/2003  7
## 6252   28/10/1993  7
## 6253   28/11/1998  7
## 6254   28/12/1997  7
## 6255   28/12/2002  7
## 6256   28/12/2007  7
## 6257   29/01/1991  7
## 6258   29/05/2004  7
## 6259   29/06/1990  7
## 6260   29/07/2000  7
## 6261   29/08/1994  7
## 6262   29/09/1995  7
## 6263   29/10/2005  7
## 6264   29/10/2006  7
## 6265   29/11/2013  7
## 6266   29/12/1995  7
## 6267   29/12/1998  7
## 6268   30/03/1995  7
## 6269   30/03/2013  7
## 6270   30/05/2009  7
## 6271   30/05/2014  7
## 6272   30/06/2007  7
## 6273   30/06/2012  7
## 6274   30/07/1990  7
## 6275   30/07/1993  7
## 6276   30/08/1993  7
## 6277   30/08/1995  7
## 6278   30/10/1992  7
## 6279   30/11/2002  7
## 6280   30/12/2008  7
## 6281   31/01/1995  7
## 6282   31/03/1995  7
## 6283   31/03/2001  7
## 6284   31/05/1991  7
## 6285   31/07/1999  7
## 6286   31/07/2010  7
## 6287   31/07/2011  7
## 6288   31/08/1993  7
## 6289   31/10/1998  7
## 6290   31/10/2009  7
## 6291   01/01/1999  6
## 6292   01/02/1993  6
## 6293   01/02/2004  6
## 6294   01/04/1992  6
## 6295   01/04/2007  6
## 6296   01/05/1992  6
## 6297   01/06/1995  6
## 6298   01/08/1990  6
## 6299   01/08/2004  6
## 6300   01/10/2005  6
## 6301   01/12/1992  6
## 6302   01/12/2013  6
## 6303   02/01/1991  6
## 6304   02/03/1994  6
## 6305   02/03/1996  6
## 6306   02/03/2002  6
## 6307   02/04/1991  6
## 6308   02/05/1991  6
## 6309   02/05/1995  6
## 6310   02/07/1990  6
## 6311   02/08/1990  6
## 6312   02/08/1993  6
## 6313   02/08/1994  6
## 6314   02/09/2000  6
## 6315   02/09/2012  6
## 6316   02/11/1997  6
## 6317   02/12/1991  6
## 6318   03/01/2004  6
## 6319   03/02/2001  6
## 6320   03/03/2007  6
## 6321   03/04/2004  6
## 6322   03/05/1991  6
## 6323   03/06/1992  6
## 6324   03/06/2000  6
## 6325   03/06/2014  6
## 6326   03/07/2004  6
## 6327   03/08/1992  6
## 6328   03/08/2003  6
## 6329   03/09/1992  6
## 6330   03/10/1995  6
## 6331   04/01/1993  6
## 6332   04/01/2009  6
## 6333   04/03/2001  6
## 6334   04/04/1999  6
## 6335   04/05/2013  6
## 6336   04/06/1992  6
## 6337   04/06/2006  6
## 6338   04/06/2011  6
## 6339   04/08/2001  6
## 6340   04/08/2002  6
## 6341   04/09/2000  6
## 6342   04/09/2006  6
## 6343   04/10/1990  6
## 6344   04/10/1993  6
## 6345   04/11/1994  6
## 6346   04/11/2000  6
## 6347   04/12/1999  6
## 6348   05/01/2008  6
## 6349   05/01/2013  6
## 6350   05/02/1991  6
## 6351   05/03/2011  6
## 6352   05/05/2007  6
## 6353   05/05/2012  6
## 6354   05/06/1999  6
## 6355   05/06/2014  6
## 6356   05/07/1990  6
## 6357   05/07/1997  6
## 6358   05/08/1991  6
## 6359   05/08/1992  6
## 6360   05/08/2006  6
## 6361   05/11/1993  6
## 6362   06/01/2013  6
## 6363   06/03/1995  6
## 6364   06/03/2011  6
## 6365   06/05/2014  6
## 6366   06/07/1992  6
## 6367   06/07/1997  6
## 6368   06/07/2013  6
## 6369   06/08/2000  6
## 6370   06/10/2007  6
## 6371   06/11/1995  6
## 6372   06/12/1993  6
## 6373   06/12/1998  6
## 6374   07/01/1991  6
## 6375   07/01/1994  6
## 6376   07/01/2001  6
## 6377   07/01/2012  6
## 6378   07/03/1991  6
## 6379   07/04/2002  6
## 6380   07/06/2014  6
## 6381   07/07/1995  6
## 6382   07/07/2001  6
## 6383   07/08/1999  6
## 6384   07/09/1997  6
## 6385   07/09/2013  6
## 6386   07/10/1991  6
## 6387   07/10/1992  6
## 6388   07/10/1994  6
## 6389   07/11/2010  6
## 6390   07/12/1996  6
## 6391   08/03/1993  6
## 6392   08/04/1992  6
## 6393   08/04/1994  6
## 6394   08/05/1990  6
## 6395   08/05/2011  6
## 6396   08/06/2014  6
## 6397   08/07/1991  6
## 6398   08/07/2001  6
## 6399   08/07/2012  6
## 6400   08/08/2004  6
## 6401   08/09/1994  6
## 6402   08/09/2007  6
## 6403   08/10/2000  6
## 6404   08/11/2008  6
## 6405   08/12/1994  6
## 6406   08/12/2007  6
## 6407   09/01/2010  6
## 6408   09/03/2008  6
## 6409   09/08/1993  6
## 6410   09/08/2008  6
## 6411   09/09/2001  6
## 6412   09/09/2007  6
## 6413   09/11/1994  6
## 6414   09/12/2006  6
## 6415   09/12/2012  6
## 6416   10/01/1992  6
## 6417   10/01/1994  6
## 6418   10/02/2013  6
## 6419   10/03/1996  6
## 6420   10/04/1995  6
## 6421   10/04/2011  6
## 6422   10/05/1990  6
## 6423   10/06/2007  6
## 6424   10/06/2012  6
## 6425   10/07/2004  6
## 6426   10/08/1990  6
## 6427   10/08/1992  6
## 6428   10/08/1997  6
## 6429   10/08/2002  6
## 6430   10/09/1991  6
## 6431   10/10/1991  6
## 6432   10/11/1996  6
## 6433   10/11/2000  6
## 6434   10/12/1990  6
## 6435   10/12/2005  6
## 6436   11/01/2014  6
## 6437   11/02/1994  6
## 6438   11/02/1996  6
## 6439   11/03/1994  6
## 6440   11/03/2000  6
## 6441   11/03/2001  6
## 6442   11/03/2012  6
## 6443   11/05/2003  6
## 6444   11/05/2008  6
## 6445   11/07/2004  6
## 6446   11/08/1996  6
## 6447   11/08/2001  6
## 6448   11/09/1999  6
## 6449   11/10/1991  6
## 6450   11/10/1993  6
## 6451   11/10/2003  6
## 6452   11/11/2004  6
## 6453   11/12/1999  6
## 6454   12/01/2003  6
## 6455   12/02/2012  6
## 6456   12/04/1990  6
## 6457   12/04/1991  6
## 6458   12/04/1998  6
## 6459   12/04/2009  6
## 6460   12/05/1994  6
## 6461   12/06/2005  6
## 6462   12/06/2010  6
## 6463   12/06/2011  6
## 6464   12/07/2009  6
## 6465   12/08/2006  6
## 6466   12/08/2012  6
## 6467   12/09/1994  6
## 6468   12/09/1999  6
## 6469   12/09/2010  6
## 6470   12/11/2005  6
## 6471   12/12/1990  6
## 6472   12/12/1998  6
## 6473   12/12/1999  6
## 6474   12/12/2010  6
## 6475   13/01/1993  6
## 6476   13/02/1991  6
## 6477   13/04/1995  6
## 6478   13/05/2014  6
## 6479   13/06/1991  6
## 6480   13/06/2014  6
## 6481   13/07/1993  6
## 6482   13/07/2003  6
## 6483   13/08/1995  6
## 6484   13/09/2003  6
## 6485   13/09/2008  6
## 6486   13/10/2001  6
## 6487   13/10/2007  6
## 6488   13/11/1990  6
## 6489   13/11/2011  6
## 6490   13/12/1991  6
## 6491   13/12/1998  6
## 6492   14/01/2006  6
## 6493   14/01/2012  6
## 6494   14/03/1990  6
## 6495   14/03/2009  6
## 6496   14/03/2010  6
## 6497   14/04/2001  6
## 6498   14/07/1994  6
## 6499   14/07/2002  6
## 6500   14/07/2007  6
## 6501   14/08/1995  6
## 6502   14/09/2003  6
## 6503   14/10/1992  6
## 6504   14/10/1994  6
## 6505   14/10/2012  6
## 6506   14/11/1991  6
## 6507   14/11/1994  6
## 6508   14/12/1992  6
## 6509   14/12/1996  6
## 6510   14/12/1997  6
## 6511   14/12/2008  6
## 6512   14/12/2013  6
## 6513   15/01/2005  6
## 6514   15/02/1994  6
## 6515   15/02/1995  6
## 6516   15/03/1993  6
## 6517   15/04/1991  6
## 6518   15/04/1994  6
## 6519   15/04/2014  6
## 6520   15/05/1991  6
## 6521   15/06/1990  6
## 6522   15/06/1993  6
## 6523   15/06/2003  6
## 6524   15/07/1992  6
## 6525   15/08/1999  6
## 6526   15/09/2007  6
## 6527   15/10/1992  6
## 6528   15/11/2008  6
## 6529   15/11/2009  6
## 6530   15/12/1994  6
## 6531   16/01/1991  6
## 6532   16/01/1999  6
## 6533   16/01/2006  6
## 6534   16/01/2012  6
## 6535   16/02/2008  6
## 6536   16/03/1994  6
## 6537   16/03/1995  6
## 6538   16/04/1990  6
## 6539   16/05/1991  6
## 6540   16/05/1994  6
## 6541   16/05/2009  6
## 6542   16/06/1995  6
## 6543   16/06/1996  6
## 6544   16/06/2014  6
## 6545   16/08/2009  6
## 6546   16/09/1991  6
## 6547   16/09/2007  6
## 6548   16/10/1990  6
## 6549   16/10/1999  6
## 6550   16/11/1993  6
## 6551   16/11/2003  6
## 6552   17/01/1992  6
## 6553   17/01/2004  6
## 6554   17/01/2005  6
## 6555   17/02/1992  6
## 6556   17/02/1994  6
## 6557   17/02/2008  6
## 6558   17/03/1992  6
## 6559   17/03/2007  6
## 6560   17/04/1991  6
## 6561   17/04/2005  6
## 6562   17/04/2014  6
## 6563   17/06/1992  6
## 6564   17/06/1993  6
## 6565   17/06/2007  6
## 6566   17/06/2012  6
## 6567   17/07/1992  6
## 6568   17/08/1994  6
## 6569   17/09/2000  6
## 6570   17/09/2006  6
## 6571   17/10/2004  6
## 6572   17/11/1993  6
## 6573   17/11/1994  6
## 6574   17/11/1995  6
## 6575   17/12/1990  6
## 6576   18/01/1998  6
## 6577   18/01/2004  6
## 6578   18/01/2009  6
## 6579   18/02/2012  6
## 6580   18/03/2007  6
## 6581   18/04/1990  6
## 6582   18/04/2003  6
## 6583   18/04/2009  6
## 6584   18/05/1992  6
## 6585   18/05/2008  6
## 6586   18/05/2014  6
## 6587   18/06/1991  6
## 6588   18/06/2005  6
## 6589   18/07/1995  6
## 6590   18/07/1998  6
## 6591   18/07/2009  6
## 6592   18/10/1991  6
## 6593   18/11/2000  6
## 6594   19/02/1992  6
## 6595   19/03/1993  6
## 6596   19/03/2006  6
## 6597   19/08/2012  6
## 6598   19/09/1990  6
## 6599   19/10/1990  6
## 6600   19/10/1994  6
## 6601   19/10/2002  6
## 6602   19/11/1993  6
## 6603   19/11/2005  6
## 6604   19/12/1994  6
## 6605   19/12/1995  6
## 6606   20/02/1991  6
## 6607   20/05/2007  6
## 6608   20/05/2012  6
## 6609   20/06/2009  6
## 6610   20/06/2014  6
## 6611   20/08/1990  6
## 6612   20/08/2000  6
## 6613   20/09/1994  6
## 6614   20/09/2009  6
## 6615   20/10/1995  6
## 6616   20/10/1996  6
## 6617   20/12/2003  6
## 6618   21/01/1994  6
## 6619   21/01/2008  6
## 6620   21/05/1993  6
## 6621   21/06/1991  6
## 6622   21/06/1993  6
## 6623   21/07/1995  6
## 6624   21/07/2013  6
## 6625   21/08/2009  6
## 6626   21/09/1995  6
## 6627   21/09/1997  6
## 6628   21/11/1999  6
## 6629   21/12/2003  6
## 6630   21/12/2007  6
## 6631   21/12/2013  6
## 6632   22/02/1991  6
## 6633   22/02/2009  6
## 6634   22/03/2009  6
## 6635   22/04/1993  6
## 6636   22/04/1995  6
## 6637   22/05/1991  6
## 6638   22/05/1995  6
## 6639   22/06/1994  6
## 6640   22/07/2012  6
## 6641   22/08/1998  6
## 6642   22/08/1999  6
## 6643   22/08/2010  6
## 6644   22/09/1992  6
## 6645   22/10/2005  6
## 6646   22/10/2006  6
## 6647   22/12/1994  6
## 6648   22/12/2005  6
## 6649   22/12/2008  6
## 6650   22/12/2012  6
## 6651   23/01/1990  6
## 6652   23/01/1999  6
## 6653   23/01/2010  6
## 6654   23/02/2002  6
## 6655   23/03/2003  6
## 6656   23/04/1992  6
## 6657   23/04/2005  6
## 6658   23/06/1992  6
## 6659   23/06/2007  6
## 6660   23/08/1990  6
## 6661   23/08/1994  6
## 6662   23/09/2000  6
## 6663   23/09/2001  6
## 6664   23/10/1990  6
## 6665   23/10/2005  6
## 6666   23/11/1992  6
## 6667   23/11/1997  6
## 6668   23/12/2008  6
## 6669   23/12/2011  6
## 6670   24/01/1999  6
## 6671   24/02/2008  6
## 6672   24/03/1994  6
## 6673   24/05/1995  6
## 6674   24/07/1990  6
## 6675   24/08/1994  6
## 6676   24/09/1991  6
## 6677   24/09/2000  6
## 6678   24/09/2005  6
## 6679   24/11/2000  6
## 6680   24/12/2002  6
## 6681   25/01/2009  6
## 6682   25/02/1993  6
## 6683   25/03/1992  6
## 6684   25/03/2000  6
## 6685   25/03/2012  6
## 6686   25/05/2009  6
## 6687   25/05/2013  6
## 6688   25/06/2011  6
## 6689   25/07/1991  6
## 6690   25/08/1993  6
## 6691   25/09/2011  6
## 6692   25/10/1993  6
## 6693   25/10/1994  6
## 6694   25/10/2008  6
## 6695   25/11/1999  6
## 6696   25/11/2001  6
## 6697   25/12/2007  6
## 6698   26/01/2002  6
## 6699   26/01/2003  6
## 6700   26/02/1991  6
## 6701   26/02/1992  6
## 6702   26/02/2005  6
## 6703   26/02/2011  6
## 6704   26/03/1992  6
## 6705   26/03/1993  6
## 6706   26/03/2005  6
## 6707   26/04/1998  6
## 6708   26/05/2008  6
## 6709   26/05/2013  6
## 6710   26/10/1992  6
## 6711   26/10/1995  6
## 6712   26/11/2005  6
## 6713   26/11/2006  6
## 6714   26/12/1998  6
## 6715   26/12/2000  6
## 6716   26/12/2008  6
## 6717   26/12/2010  6
## 6718   27/01/1993  6
## 6719   27/01/2013  6
## 6720   27/02/2005  6
## 6721   27/02/2010  6
## 6722   27/02/2011  6
## 6723   27/04/1992  6
## 6724   27/04/1997  6
## 6725   27/04/2014  6
## 6726   27/05/2001  6
## 6727   27/05/2013  6
## 6728   27/05/2014  6
## 6729   27/06/1994  6
## 6730   27/08/1991  6
## 6731   27/09/2008  6
## 6732   27/10/2001  6
## 6733   27/12/1998  6
## 6734   27/12/2001  6
## 6735   27/12/2008  6
## 6736   27/12/2012  6
## 6737   27/12/2013  6
## 6738   28/01/1994  6
## 6739   28/02/1994  6
## 6740   28/02/1998  6
## 6741   28/03/1990  6
## 6742   28/04/2007  6
## 6743   28/05/2000  6
## 6744   28/05/2007  6
## 6745   28/07/1993  6
## 6746   28/07/2001  6
## 6747   28/07/2007  6
## 6748   28/08/2004  6
## 6749   28/09/1993  6
## 6750   28/09/1995  6
## 6751   28/10/2012  6
## 6752   28/11/1990  6
## 6753   28/11/2003  6
## 6754   28/11/2009  6
## 6755   29/03/2013  6
## 6756   29/04/1991  6
## 6757   29/04/1992  6
## 6758   29/04/2000  6
## 6759   29/04/2007  6
## 6760   29/05/1990  6
## 6761   29/06/1997  6
## 6762   29/07/2007  6
## 6763   29/08/2010  6
## 6764   29/10/1991  6
## 6765   29/11/1996  6
## 6766   29/11/1998  6
## 6767   29/12/2012  6
## 6768   30/03/2003  6
## 6769   30/03/2014  6
## 6770   30/04/2006  6
## 6771   30/04/2014  6
## 6772   30/05/2005  6
## 6773   30/07/2000  6
## 6774   30/09/1994  6
## 6775   30/09/2000  6
## 6776   30/10/1991  6
## 6777   30/10/1999  6
## 6778   30/10/2005  6
## 6779   30/10/2010  6
## 6780   30/11/1992  6
## 6781   30/11/1994  6
## 6782   30/12/2009  6
## 6783   31/01/2009  6
## 6784   31/03/1993  6
## 6785   31/03/2013  6
## 6786   31/05/1998  6
## 6787   31/05/1999  6
## 6788   31/05/2003  6
## 6789   31/05/2008  6
## 6790   31/05/2010  6
## 6791   31/07/1995  6
## 6792   31/08/1996  6
## 6793   31/08/1997  6
## 6794   31/12/2000  6
## 6795   31/12/2007  6
## 6796   31/12/2013  6
## 6797   01/02/1991  5
## 6798   01/03/1998  5
## 6799   01/05/1991  5
## 6800   01/06/2014  5
## 6801   01/07/2006  5
## 6802   01/08/2010  5
## 6803   01/09/2008  5
## 6804   01/12/1995  5
## 6805   02/01/1990  5
## 6806   02/01/1992  5
## 6807   02/01/2000  5
## 6808   02/02/2008  5
## 6809   02/03/2003  5
## 6810   02/04/2000  5
## 6811   02/06/2007  5
## 6812   02/06/2012  5
## 6813   02/08/2009  5
## 6814   02/09/2007  5
## 6815   02/10/2011  5
## 6816   02/11/1993  5
## 6817   02/11/1996  5
## 6818   02/12/1992  5
## 6819   02/12/2012  5
## 6820   03/01/1991  5
## 6821   03/01/2009  5
## 6822   03/02/2007  5
## 6823   03/05/2009  5
## 6824   03/06/2006  5
## 6825   03/06/2007  5
## 6826   03/08/1997  5
## 6827   03/08/2007  5
## 6828   03/11/2007  5
## 6829   03/12/2006  5
## 6830   04/01/1995  5
## 6831   04/01/2004  5
## 6832   04/02/1991  5
## 6833   04/03/1991  5
## 6834   04/03/2006  5
## 6835   04/04/1990  5
## 6836   04/04/2010  5
## 6837   04/05/1992  5
## 6838   04/05/2002  5
## 6839   04/06/1990  5
## 6840   04/07/2005  5
## 6841   04/07/2008  5
## 6842   04/07/2010  5
## 6843   04/08/2012  5
## 6844   04/09/2011  5
## 6845   04/10/2008  5
## 6846   04/10/2009  5
## 6847   04/12/2011  5
## 6848   05/01/1993  5
## 6849   05/01/1997  5
## 6850   05/02/1993  5
## 6851   05/02/2005  5
## 6852   05/03/1990  5
## 6853   05/03/1992  5
## 6854   05/04/1993  5
## 6855   05/04/1998  5
## 6856   05/05/1992  5
## 6857   05/05/1995  5
## 6858   05/06/1992  5
## 6859   05/06/2004  5
## 6860   05/06/2005  5
## 6861   05/07/1991  5
## 6862   05/07/2003  5
## 6863   05/09/2011  5
## 6864   05/10/1992  5
## 6865   05/12/1991  5
## 6866   06/01/1994  5
## 6867   06/02/1990  5
## 6868   06/02/1991  5
## 6869   06/04/2008  5
## 6870   06/05/1991  5
## 6871   06/05/2012  5
## 6872   06/06/1995  5
## 6873   06/06/2009  5
## 6874   06/08/1993  5
## 6875   06/08/2005  5
## 6876   06/09/2010  5
## 6877   06/11/2011  5
## 6878   06/12/1991  5
## 6879   07/01/1993  5
## 6880   07/03/1990  5
## 6881   07/03/1994  5
## 6882   07/04/1992  5
## 6883   07/05/2014  5
## 6884   07/06/1991  5
## 6885   07/06/2003  5
## 6886   07/07/2013  5
## 6887   07/08/1992  5
## 6888   07/08/2004  5
## 6889   07/10/2001  5
## 6890   07/11/1998  5
## 6891   07/12/1992  5
## 6892   07/12/1997  5
## 6893   08/03/2008  5
## 6894   08/03/2014  5
## 6895   08/05/1991  5
## 6896   08/05/1999  5
## 6897   08/06/2013  5
## 6898   08/07/2000  5
## 6899   08/08/1990  5
## 6900   08/11/1990  5
## 6901   08/11/1993  5
## 6902   08/11/2003  5
## 6903   08/12/1989  5
## 6904   08/12/2002  5
## 6905   08/12/2012  5
## 6906   09/01/2000  5
## 6907   09/02/1995  5
## 6908   09/02/2002  5
## 6909   09/03/2002  5
## 6910   09/04/1990  5
## 6911   09/04/2000  5
## 6912   09/05/1999  5
## 6913   09/06/1992  5
## 6914   09/06/2002  5
## 6915   09/06/2012  5
## 6916   09/06/2014  5
## 6917   09/07/1990  5
## 6918   09/08/1990  5
## 6919   09/10/2004  5
## 6920   09/11/2002  5
## 6921   09/12/1991  5
## 6922   09/12/2007  5
## 6923   10/02/2001  5
## 6924   10/03/1992  5
## 6925   10/03/1995  5
## 6926   10/03/2001  5
## 6927   10/03/2007  5
## 6928   10/04/1991  5
## 6929   10/04/1998  5
## 6930   10/05/1998  5
## 6931   10/05/2008  5
## 6932   10/05/2009  5
## 6933   10/08/2003  5
## 6934   10/08/2008  5
## 6935   10/09/2005  5
## 6936   10/10/2009  5
## 6937   10/10/2010  5
## 6938   10/11/1993  5
## 6939   10/11/2001  5
## 6940   11/01/1997  5
## 6941   11/02/1992  5
## 6942   11/02/2001  5
## 6943   11/02/2007  5
## 6944   11/03/2006  5
## 6945   11/03/2007  5
## 6946   11/04/2010  5
## 6947   11/05/1989  5
## 6948   11/05/1990  5
## 6949   11/06/1992  5
## 6950   11/07/2009  5
## 6951   11/09/1995  5
## 6952   11/09/2005  5
## 6953   11/10/1997  5
## 6954   11/11/2001  5
## 6955   11/11/2011  5
## 6956   11/11/2012  5
## 6957   11/12/2011  5
## 6958   12/02/1990  5
## 6959   12/02/1992  5
## 6960   12/03/1991  5
## 6961   12/03/1993  5
## 6962   12/05/1992  5
## 6963   12/05/2007  5
## 6964   12/06/2004  5
## 6965   12/06/2014  5
## 6966   12/08/1991  5
## 6967   12/09/1990  5
## 6968   13/01/2007  5
## 6969   13/01/2008  5
## 6970   13/01/2013  5
## 6971   13/03/1992  5
## 6972   13/03/1993  5
## 6973   13/03/1995  5
## 6974   13/04/1992  5
## 6975   13/04/2013  5
## 6976   13/06/1998  5
## 6977   13/08/2011  5
## 6978   13/09/1990  5
## 6979   13/10/2013  5
## 6980   13/11/1999  5
## 6981   13/12/2003  5
## 6982   14/01/2001  5
## 6983   14/02/1995  5
## 6984   14/05/2006  5
## 6985   14/07/1992  5
## 6986   14/07/2001  5
## 6987   14/08/1991  5
## 6988   14/08/2011  5
## 6989   14/09/2002  5
## 6990   14/09/2013  5
## 6991   14/10/1993  5
## 6992   14/11/1999  5
## 6993   14/12/1993  5
## 6994   15/01/1992  5
## 6995   15/01/1993  5
## 6996   15/02/1990  5
## 6997   15/03/1991  5
## 6998   15/04/1992  5
## 6999   15/04/2012  5
## 7000   15/05/1999  5
## 7001   15/06/1997  5
## 7002   15/07/2012  5
## 7003   15/10/2011  5
## 7004   15/12/2012  5
## 7005   16/01/1992  5
## 7006   16/02/1993  5
## 7007   16/02/2002  5
## 7008   16/03/1993  5
## 7009   16/04/1993  5
## 7010   16/04/2000  5
## 7011   16/04/2006  5
## 7012   16/05/2014  5
## 7013   16/09/1992  5
## 7014   16/09/1995  5
## 7015   16/09/2012  5
## 7016   16/10/1991  5
## 7017   16/10/2010  5
## 7018   16/11/1994  5
## 7019   16/11/1995  5
## 7020   16/11/2002  5
## 7021   16/12/1991  5
## 7022   17/01/1994  5
## 7023   17/01/1998  5
## 7024   17/01/1999  5
## 7025   17/02/1993  5
## 7026   17/03/1993  5
## 7027   17/03/1995  5
## 7028   17/03/2013  5
## 7029   17/04/1990  5
## 7030   17/06/2014  5
## 7031   17/07/2010  5
## 7032   17/08/1992  5
## 7033   17/08/2002  5
## 7034   17/08/2003  5
## 7035   17/10/2010  5
## 7036   17/11/2001  5
## 7037   17/12/2000  5
## 7038   18/01/2010  5
## 7039   18/02/1991  5
## 7040   18/02/1992  5
## 7041   18/03/1994  5
## 7042   18/03/2012  5
## 7043   18/04/1991  5
## 7044   18/04/1994  5
## 7045   18/05/1993  5
## 7046   18/05/1994  5
## 7047   18/06/1992  5
## 7048   18/06/2011  5
## 7049   18/07/2010  5
## 7050   18/09/1991  5
## 7051   18/09/2011  5
## 7052   18/10/1990  5
## 7053   18/10/1993  5
## 7054   18/11/1991  5
## 7055   19/03/1990  5
## 7056   19/03/2000  5
## 7057   19/03/2005  5
## 7058   19/04/1990  5
## 7059   19/04/2003  5
## 7060   19/04/2009  5
## 7061   19/05/1995  5
## 7062   19/06/2010  5
## 7063   19/06/2011  5
## 7064   19/06/2014  5
## 7065   19/07/1990  5
## 7066   19/07/1993  5
## 7067   19/09/2004  5
## 7068   19/09/2010  5
## 7069   19/11/1991  5
## 7070   19/11/2011  5
## 7071   19/12/1990  5
## 7072   20/01/1994  5
## 7073   20/01/1996  5
## 7074   20/01/2008  5
## 7075   20/02/2010  5
## 7076   20/02/2011  5
## 7077   20/03/2011  5
## 7078   20/04/1992  5
## 7079   20/04/2003  5
## 7080   20/05/1994  5
## 7081   20/06/2010  5
## 7082   20/07/1997  5
## 7083   20/10/2012  5
## 7084   20/11/1992  5
## 7085   21/01/1992  5
## 7086   21/01/2012  5
## 7087   21/03/2008  5
## 7088   21/03/2009  5
## 7089   21/04/1992  5
## 7090   21/04/1993  5
## 7091   21/05/2000  5
## 7092   21/05/2011  5
## 7093   21/07/2007  5
## 7094   21/08/1999  5
## 7095   21/09/1993  5
## 7096   21/09/2002  5
## 7097   21/11/1990  5
## 7098   21/12/1995  5
## 7099   22/01/1993  5
## 7100   22/01/2006  5
## 7101   22/02/1993  5
## 7102   22/02/2014  5
## 7103   22/03/1991  5
## 7104   22/03/2008  5
## 7105   22/04/2011  5
## 7106   22/04/2012  5
## 7107   22/05/2005  5
## 7108   22/06/2013  5
## 7109   22/07/2006  5
## 7110   22/08/2009  5
## 7111   22/09/1993  5
## 7112   22/09/1994  5
## 7113   22/09/2001  5
## 7114   22/10/1990  5
## 7115   22/10/1991  5
## 7116   22/11/1995  5
## 7117   22/11/1998  5
## 7118   23/01/2011  5
## 7119   23/02/1995  5
## 7120   23/03/1996  5
## 7121   23/04/1993  5
## 7122   23/05/1991  5
## 7123   23/05/2009  5
## 7124   23/07/1992  5
## 7125   23/08/1998  5
## 7126   23/09/1993  5
## 7127   23/09/2007  5
## 7128   23/10/1999  5
## 7129   23/11/1993  5
## 7130   23/11/2008  5
## 7131   23/12/2005  5
## 7132   23/12/2010  5
## 7133   24/01/1994  5
## 7134   24/01/2004  5
## 7135   24/01/2009  5
## 7136   24/02/1995  5
## 7137   24/03/1992  5
## 7138   24/03/2002  5
## 7139   24/04/2010  5
## 7140   24/05/1997  5
## 7141   24/07/1992  5
## 7142   24/07/1999  5
## 7143   24/07/2010  5
## 7144   24/09/2006  5
## 7145   24/10/1990  5
## 7146   24/10/1994  5
## 7147   24/12/1996  5
## 7148   24/12/1997  5
## 7149   24/12/1998  5
## 7150   24/12/2008  5
## 7151   24/12/2013  5
## 7152   25/01/1993  5
## 7153   25/02/1991  5
## 7154   25/02/2001  5
## 7155   25/04/1999  5
## 7156   25/05/2002  5
## 7157   25/06/1993  5
## 7158   25/07/1994  5
## 7159   25/07/1999  5
## 7160   25/09/1991  5
## 7161   25/09/2004  5
## 7162   25/09/2010  5
## 7163   25/10/1998  5
## 7164   25/11/2004  5
## 7165   25/11/2007  5
## 7166   25/12/2000  5
## 7167   25/12/2001  5
## 7168   25/12/2013  5
## 7169   26/01/1994  5
## 7170   26/03/2006  5
## 7171   26/04/1990  5
## 7172   26/04/1993  5
## 7173   26/04/1995  5
## 7174   26/04/1997  5
## 7175   26/05/1992  5
## 7176   26/05/1993  5
## 7177   26/05/1995  5
## 7178   26/06/1991  5
## 7179   26/07/1995  5
## 7180   26/07/2003  5
## 7181   26/08/2006  5
## 7182   26/09/1991  5
## 7183   26/09/2009  5
## 7184   26/10/1994  5
## 7185   26/10/2013  5
## 7186   26/11/2011  5
## 7187   26/12/2005  5
## 7188   26/12/2009  5
## 7189   26/12/2012  5
## 7190   27/01/1994  5
## 7191   27/01/2002  5
## 7192   27/01/2007  5
## 7193   27/02/1990  5
## 7194   27/05/1992  5
## 7195   27/05/2007  5
## 7196   27/06/1998  5
## 7197   27/06/2009  5
## 7198   27/08/2005  5
## 7199   27/09/1994  5
## 7200   27/09/2003  5
## 7201   27/11/1997  5
## 7202   27/11/2004  5
## 7203   27/11/2010  5
## 7204   27/12/2003  5
## 7205   28/01/1991  5
## 7206   28/01/1996  5
## 7207   28/02/1995  5
## 7208   28/02/2009  5
## 7209   28/03/1999  5
## 7210   28/04/1992  5
## 7211   28/04/2013  5
## 7212   28/05/2005  5
## 7213   28/07/2012  5
## 7214   28/07/2013  5
## 7215   28/08/1999  5
## 7216   28/09/1990  5
## 7217   28/09/1994  5
## 7218   28/10/1992  5
## 7219   28/11/1994  5
## 7220   28/11/1997  5
## 7221   28/11/2002  5
## 7222   28/12/1996  5
## 7223   28/12/2003  5
## 7224   28/12/2006  5
## 7225   29/01/1990  5
## 7226   29/03/1994  5
## 7227   29/04/2001  5
## 7228   29/05/1991  5
## 7229   29/05/1992  5
## 7230   29/05/2010  5
## 7231   29/05/2011  5
## 7232   29/06/1994  5
## 7233   29/06/2003  5
## 7234   29/07/1992  5
## 7235   29/07/2012  5
## 7236   29/08/1990  5
## 7237   29/08/2009  5
## 7238   29/09/1993  5
## 7239   29/09/1996  5
## 7240   29/09/2012  5
## 7241   29/10/1992  5
## 7242   29/10/1993  5
## 7243   29/11/2003  5
## 7244   29/12/2006  5
## 7245   30/01/1991  5
## 7246   30/01/1992  5
## 7247   30/03/2008  5
## 7248   30/05/1990  5
## 7249   30/05/2010  5
## 7250   30/05/2011  5
## 7251   30/06/1993  5
## 7252   30/08/1991  5
## 7253   30/08/2003  5
## 7254   30/09/1992  5
## 7255   30/09/2007  5
## 7256   30/11/1990  5
## 7257   30/11/1995  5
## 7258   30/11/2013  5
## 7259   30/12/2007  5
## 7260   30/12/2012  5
## 7261   31/01/1991  5
## 7262   31/03/1994  5
## 7263   31/03/2007  5
## 7264   31/03/2012  5
## 7265   31/05/1990  5
## 7266   31/05/1994  5
## 7267   31/05/1997  5
## 7268   31/08/1989  5
## 7269   31/10/1990  5
## 7270   31/10/1999  5
## 7271   31/10/2004  5
## 7272   31/10/2010  5
## 7273   31/12/1990  5
## 7274   31/12/1992  5
## 7275   31/12/2011  5
## 7276   01/01/2010  4
## 7277   01/03/1991  4
## 7278   01/03/2014  4
## 7279   01/04/1995  4
## 7280   01/05/2010  4
## 7281   01/05/2014  4
## 7282   01/07/2012  4
## 7283   01/09/1989  4
## 7284   01/12/1994  4
## 7285   02/01/2011  4
## 7286   02/01/2012  4
## 7287   02/02/1993  4
## 7288   02/02/1994  4
## 7289   02/02/2002  4
## 7290   02/03/1990  4
## 7291   02/03/1993  4
## 7292   02/04/1992  4
## 7293   02/04/1993  4
## 7294   02/04/2010  4
## 7295   02/05/1994  4
## 7296   02/05/2010  4
## 7297   02/05/2014  4
## 7298   02/06/1992  4
## 7299   02/06/2014  4
## 7300   02/08/1998  4
## 7301   02/08/2003  4
## 7302   02/10/2010  4
## 7303   02/11/1990  4
## 7304   02/12/2001  4
## 7305   03/01/1990  4
## 7306   03/01/1998  4
## 7307   03/02/1992  4
## 7308   03/03/1993  4
## 7309   03/03/1994  4
## 7310   03/03/2001  4
## 7311   03/03/2013  4
## 7312   03/04/1993  4
## 7313   03/04/1999  4
## 7314   03/04/2011  4
## 7315   03/06/1994  4
## 7316   03/07/1995  4
## 7317   03/07/2011  4
## 7318   03/09/1993  4
## 7319   03/09/2006  4
## 7320   03/10/1998  4
## 7321   03/11/1992  4
## 7322   03/11/1993  4
## 7323   03/11/2001  4
## 7324   03/12/2005  4
## 7325   04/01/2003  4
## 7326   04/01/2014  4
## 7327   04/02/1992  4
## 7328   04/02/2006  4
## 7329   04/02/2012  4
## 7330   04/03/1993  4
## 7331   04/03/2007  4
## 7332   04/06/1993  4
## 7333   04/07/1995  4
## 7334   04/07/2006  4
## 7335   04/08/1989  4
## 7336   04/08/1992  4
## 7337   04/08/1994  4
## 7338   04/09/1999  4
## 7339   04/09/2005  4
## 7340   04/11/1991  4
## 7341   04/12/1992  4
## 7342   05/02/1992  4
## 7343   05/02/2006  4
## 7344   05/03/2005  4
## 7345   05/04/1990  4
## 7346   05/05/2013  4
## 7347   05/06/2010  4
## 7348   05/07/2008  4
## 7349   05/07/2010  4
## 7350   05/08/2007  4
## 7351   05/09/1998  4
## 7352   05/11/1990  4
## 7353   05/11/1991  4
## 7354   06/02/1999  4
## 7355   06/02/2000  4
## 7356   06/03/1990  4
## 7357   06/03/2010  4
## 7358   06/05/1994  4
## 7359   06/05/2000  4
## 7360   06/07/1990  4
## 7361   06/07/2003  4
## 7362   06/09/1994  4
## 7363   06/10/1992  4
## 7364   06/10/1994  4
## 7365   06/10/2012  4
## 7366   06/11/1990  4
## 7367   06/11/2004  4
## 7368   06/12/1995  4
## 7369   07/02/1991  4
## 7370   07/02/1999  4
## 7371   07/04/1994  4
## 7372   07/05/1993  4
## 7373   07/06/1998  4
## 7374   07/06/2009  4
## 7375   07/07/2007  4
## 7376   07/08/1990  4
## 7377   07/08/1994  4
## 7378   07/09/1990  4
## 7379   07/09/2008  4
## 7380   07/11/1990  4
## 7381   07/12/2013  4
## 7382   08/01/1990  4
## 7383   08/02/1993  4
## 7384   08/04/2012  4
## 7385   08/07/1992  4
## 7386   08/08/1991  4
## 7387   08/10/1993  4
## 7388   08/11/1995  4
## 7389   08/12/1992  4
## 7390   08/12/1993  4
## 7391   08/12/1995  4
## 7392   09/01/1992  4
## 7393   09/01/2011  4
## 7394   09/02/2013  4
## 7395   09/03/1996  4
## 7396   09/03/2013  4
## 7397   09/06/1994  4
## 7398   09/06/2013  4
## 7399   09/07/1992  4
## 7400   09/07/2000  4
## 7401   09/07/2005  4
## 7402   09/08/1991  4
## 7403   09/08/1998  4
## 7404   09/10/1992  4
## 7405   09/11/1992  4
## 7406   09/11/1993  4
## 7407   09/11/1996  4
## 7408   09/11/1997  4
## 7409   09/12/1995  4
## 7410   10/01/1995  4
## 7411   10/01/1998  4
## 7412   10/02/2002  4
## 7413   10/02/2007  4
## 7414   10/04/2004  4
## 7415   10/05/1993  4
## 7416   10/05/1994  4
## 7417   10/09/2006  4
## 7418   10/09/2011  4
## 7419   10/12/1993  4
## 7420   11/02/1993  4
## 7421   11/03/1993  4
## 7422   11/04/2004  4
## 7423   11/05/2014  4
## 7424   11/06/2005  4
## 7425   11/06/2014  4
## 7426   11/07/2010  4
## 7427   11/08/2002  4
## 7428   11/08/2007  4
## 7429   11/09/1989  4
## 7430   11/09/1990  4
## 7431   11/11/2007  4
## 7432   12/01/1993  4
## 7433   12/02/2000  4
## 7434   12/04/2008  4
## 7435   12/07/1991  4
## 7436   12/08/1993  4
## 7437   12/09/1998  4
## 7438   12/11/1992  4
## 7439   12/11/2006  4
## 7440   13/02/2011  4
## 7441   13/04/1993  4
## 7442   13/04/1994  4
## 7443   13/04/2003  4
## 7444   13/05/2012  4
## 7445   13/06/2004  4
## 7446   13/07/2008  4
## 7447   13/08/1990  4
## 7448   13/08/1991  4
## 7449   13/08/2000  4
## 7450   13/09/1994  4
## 7451   13/09/1995  4
## 7452   13/10/1992  4
## 7453   13/12/1993  4
## 7454   13/12/1994  4
## 7455   13/12/2008  4
## 7456   14/02/1990  4
## 7457   14/02/1991  4
## 7458   14/02/2009  4
## 7459   14/03/1991  4
## 7460   14/03/1993  4
## 7461   14/03/1994  4
## 7462   14/03/1995  4
## 7463   14/04/1992  4
## 7464   14/04/1994  4
## 7465   14/08/2005  4
## 7466   14/09/1990  4
## 7467   14/09/1993  4
## 7468   14/09/1994  4
## 7469   14/11/2009  4
## 7470   15/01/1991  4
## 7471   15/01/2001  4
## 7472   15/02/2004  4
## 7473   15/02/2009  4
## 7474   15/04/2007  4
## 7475   15/05/1989  4
## 7476   15/05/2014  4
## 7477   15/08/1998  4
## 7478   15/10/2006  4
## 7479   15/12/2002  4
## 7480   15/12/2013  4
## 7481   16/03/2014  4
## 7482   16/05/1990  4
## 7483   16/05/2004  4
## 7484   16/05/2010  4
## 7485   16/06/2001  4
## 7486   16/07/1992  4
## 7487   16/07/2000  4
## 7488   16/10/2011  4
## 7489   16/11/2008  4
## 7490   16/12/1994  4
## 7491   16/12/2006  4
## 7492   17/01/1991  4
## 7493   17/01/2009  4
## 7494   17/01/2010  4
## 7495   17/03/2001  4
## 7496   17/03/2002  4
## 7497   17/05/1990  4
## 7498   17/05/1994  4
## 7499   17/05/2014  4
## 7500   17/07/1999  4
## 7501   17/08/2013  4
## 7502   17/10/1994  4
## 7503   17/11/1989  4
## 7504   17/11/1992  4
## 7505   17/11/2002  4
## 7506   17/11/2007  4
## 7507   17/12/1993  4
## 7508   17/12/2011  4
## 7509   18/01/1991  4
## 7510   18/01/1994  4
## 7511   18/01/1995  4
## 7512   18/02/1993  4
## 7513   18/03/2006  4
## 7514   18/04/1999  4
## 7515   18/10/2009  4
## 7516   18/12/1991  4
## 7517   18/12/2010  4
## 7518   19/01/1993  4
## 7519   19/01/1994  4
## 7520   19/01/2008  4
## 7521   19/01/2013  4
## 7522   19/01/2014  4
## 7523   19/02/1991  4
## 7524   19/02/2000  4
## 7525   19/03/1991  4
## 7526   19/03/1992  4
## 7527   19/04/1991  4
## 7528   19/05/1994  4
## 7529   19/06/2004  4
## 7530   19/07/2008  4
## 7531   19/08/1995  4
## 7532   19/11/1990  4
## 7533   19/12/1991  4
## 7534   19/12/1998  4
## 7535   19/12/2004  4
## 7536   19/12/2010  4
## 7537   20/01/1993  4
## 7538   20/01/1995  4
## 7539   20/02/2000  4
## 7540   20/02/2005  4
## 7541   20/03/1999  4
## 7542   20/04/2013  4
## 7543   20/05/1991  4
## 7544   20/08/2006  4
## 7545   20/11/1990  4
## 7546   20/11/1999  4
## 7547   20/12/1991  4
## 7548   20/12/1997  4
## 7549   21/01/2001  4
## 7550   21/01/2002  4
## 7551   21/01/2007  4
## 7552   21/02/2004  4
## 7553   21/03/1999  4
## 7554   21/03/2010  4
## 7555   21/04/2001  4
## 7556   21/04/2013  4
## 7557   21/05/1991  4
## 7558   21/06/1998  4
## 7559   21/08/1992  4
## 7560   21/09/2008  4
## 7561   21/10/1991  4
## 7562   21/10/2007  4
## 7563   21/11/1998  4
## 7564   21/11/2009  4
## 7565   21/11/2010  4
## 7566   22/02/2004  4
## 7567   22/03/1993  4
## 7568   22/07/1994  4
## 7569   22/09/2013  4
## 7570   22/11/2007  4
## 7571   22/11/2008  4
## 7572   22/11/2009  4
## 7573   22/11/2012  4
## 7574   22/12/1995  4
## 7575   22/12/1996  4
## 7576   22/12/2001  4
## 7577   23/03/1990  4
## 7578   23/03/1992  4
## 7579   23/03/1995  4
## 7580   23/03/2008  4
## 7581   23/03/2013  4
## 7582   23/04/2000  4
## 7583   23/05/1990  4
## 7584   23/05/2014  4
## 7585   23/06/2014  4
## 7586   23/08/1993  4
## 7587   23/08/2008  4
## 7588   23/11/1996  4
## 7589   23/12/2012  4
## 7590   24/01/1990  4
## 7591   24/02/1996  4
## 7592   24/02/2001  4
## 7593   24/02/2002  4
## 7594   24/03/2007  4
## 7595   24/04/2005  4
## 7596   24/04/2011  4
## 7597   24/05/1991  4
## 7598   24/06/1992  4
## 7599   24/06/2012  4
## 7600   24/08/2013  4
## 7601   24/09/2011  4
## 7602   24/10/2004  4
## 7603   24/11/2001  4
## 7604   24/11/2002  4
## 7605   24/11/2006  4
## 7606   24/11/2013  4
## 7607   24/12/2000  4
## 7608   24/12/2003  4
## 7609   24/12/2007  4
## 7610   24/12/2009  4
## 7611   25/01/1998  4
## 7612   25/01/2014  4
## 7613   25/05/1990  4
## 7614   25/05/2014  4
## 7615   25/06/2014  4
## 7616   25/08/2007  4
## 7617   25/09/1992  4
## 7618   25/10/1990  4
## 7619   25/11/1992  4
## 7620   25/11/2010  4
## 7621   25/12/1998  4
## 7622   25/12/2003  4
## 7623   25/12/2005  4
## 7624   25/12/2008  4
## 7625   26/01/1995  4
## 7626   26/01/2014  4
## 7627   26/02/2006  4
## 7628   26/04/1991  4
## 7629   26/06/2014  4
## 7630   26/08/1995  4
## 7631   26/10/2002  4
## 7632   26/10/2008  4
## 7633   26/11/2009  4
## 7634   26/11/2010  4
## 7635   26/12/1990  4
## 7636   26/12/2001  4
## 7637   26/12/2002  4
## 7638   26/12/2004  4
## 7639   26/12/2011  4
## 7640   26/12/2013  4
## 7641   27/01/1996  4
## 7642   27/03/1999  4
## 7643   27/05/1994  4
## 7644   27/06/1990  4
## 7645   27/06/1999  4
## 7646   27/06/2010  4
## 7647   27/07/2002  4
## 7648   27/07/2003  4
## 7649   27/08/2000  4
## 7650   27/08/2011  4
## 7651   27/09/1998  4
## 7652   27/09/2009  4
## 7653   27/10/2002  4
## 7654   27/11/1989  4
## 7655   27/11/2003  4
## 7656   27/11/2011  4
## 7657   27/12/2009  4
## 7658   28/01/1992  4
## 7659   28/01/2012  4
## 7660   28/03/1994  4
## 7661   28/04/1993  4
## 7662   28/09/1997  4
## 7663   28/10/1995  4
## 7664   28/12/1990  4
## 7665   28/12/1995  4
## 7666   28/12/2008  4
## 7667   29/01/2012  4
## 7668   29/03/1998  4
## 7669   29/04/1993  4
## 7670   29/04/1994  4
## 7671   29/05/1994  4
## 7672   29/07/2001  4
## 7673   29/08/1991  4
## 7674   29/08/1999  4
## 7675   29/09/2013  4
## 7676   29/10/1990  4
## 7677   29/11/2008  4
## 7678   29/12/1999  4
## 7679   29/12/2013  4
## 7680   30/01/2011  4
## 7681   30/03/1992  4
## 7682   30/03/1993  4
## 7683   30/04/1990  4
## 7684   30/04/2011  4
## 7685   30/05/1995  4
## 7686   30/06/2002  4
## 7687   30/07/2006  4
## 7688   30/09/2001  4
## 7689   30/09/2012  4
## 7690   30/10/2011  4
## 7691   30/11/2008  4
## 7692   30/12/1992  4
## 7693   30/12/1995  4
## 7694   30/12/2000  4
## 7695   30/12/2001  4
## 7696   31/01/1994  4
## 7697   31/01/2004  4
## 7698   31/03/2002  4
## 7699   31/05/2009  4
## 7700   31/07/2005  4
## 7701   31/08/1995  4
## 7702   31/10/1994  4
## 7703   01/01/1993  3
## 7704   01/01/2008  3
## 7705   01/02/1990  3
## 7706   01/02/2014  3
## 7707   01/03/1993  3
## 7708   01/03/1995  3
## 7709   01/07/1990  3
## 7710   01/07/1995  3
## 7711   01/09/1990  3
## 7712   01/11/1991  3
## 7713   01/11/1994  3
## 7714   02/01/1994  3
## 7715   02/02/1990  3
## 7716   02/02/2014  3
## 7717   02/08/1989  3
## 7718   02/08/2008  3
## 7719   02/10/1992  3
## 7720   02/12/1994  3
## 7721   03/02/1995  3
## 7722   03/02/2002  3
## 7723   03/04/1990  3
## 7724   03/05/1994  3
## 7725   03/07/1999  3
## 7726   03/07/2010  3
## 7727   03/08/2008  3
## 7728   03/09/1994  3
## 7729   03/11/2012  3
## 7730   03/12/1990  3
## 7731   04/03/1994  3
## 7732   04/04/2004  3
## 7733   04/05/1994  3
## 7734   04/06/1995  3
## 7735   04/07/2011  3
## 7736   04/09/1992  3
## 7737   04/10/1994  3
## 7738   04/12/1990  3
## 7739   04/12/1991  3
## 7740   05/02/1990  3
## 7741   05/02/2011  3
## 7742   05/04/1991  3
## 7743   05/04/1995  3
## 7744   05/04/2008  3
## 7745   05/05/1993  3
## 7746   05/06/1993  3
## 7747   05/09/1999  3
## 7748   05/09/2010  3
## 7749   05/10/1989  3
## 7750   05/10/2003  3
## 7751   06/01/1993  3
## 7752   06/01/2008  3
## 7753   06/02/2010  3
## 7754   06/02/2011  3
## 7755   06/03/1992  3
## 7756   06/04/1994  3
## 7757   06/05/1992  3
## 7758   06/05/1993  3
## 7759   06/06/1994  3
## 7760   06/07/1993  3
## 7761   06/07/2008  3
## 7762   06/08/1992  3
## 7763   06/08/2011  3
## 7764   06/09/1998  3
## 7765   06/10/2002  3
## 7766   06/10/2013  3
## 7767   06/11/1989  3
## 7768   06/11/1991  3
## 7769   06/11/1992  3
## 7770   06/11/1999  3
## 7771   06/11/2010  3
## 7772   06/12/1989  3
## 7773   07/02/1990  3
## 7774   07/02/1994  3
## 7775   07/03/1998  3
## 7776   07/03/2010  3
## 7777   07/05/1991  3
## 7778   07/05/1992  3
## 7779   07/05/2011  3
## 7780   07/06/1989  3
## 7781   07/10/1995  3
## 7782   07/10/2007  3
## 7783   07/11/2004  3
## 7784   07/11/2009  3
## 7785   07/12/1993  3
## 7786   08/01/1993  3
## 7787   08/01/2006  3
## 7788   08/01/2011  3
## 7789   08/02/2004  3
## 7790   08/02/2014  3
## 7791   08/03/2009  3
## 7792   08/04/1993  3
## 7793   08/05/1992  3
## 7794   08/05/2005  3
## 7795   08/05/2010  3
## 7796   08/06/1989  3
## 7797   08/06/1990  3
## 7798   08/06/2008  3
## 7799   08/07/1995  3
## 7800   08/08/2010  3
## 7801   08/10/1992  3
## 7802   08/10/1995  3
## 7803   08/11/1998  3
## 7804   08/12/1996  3
## 7805   09/01/1990  3
## 7806   09/02/2003  3
## 7807   09/02/2014  3
## 7808   09/03/1994  3
## 7809   09/03/2014  3
## 7810   09/04/1992  3
## 7811   09/05/2004  3
## 7812   09/06/2007  3
## 7813   09/07/2006  3
## 7814   09/09/1992  3
## 7815   09/09/1993  3
## 7816   09/09/1994  3
## 7817   09/09/2000  3
## 7818   09/09/2006  3
## 7819   09/10/2005  3
## 7820   10/01/2010  3
## 7821   10/02/1992  3
## 7822   10/02/1996  3
## 7823   10/03/2013  3
## 7824   10/05/2014  3
## 7825   10/06/2014  3
## 7826   10/07/2010  3
## 7827   10/09/1992  3
## 7828   10/11/1994  3
## 7829   10/12/1992  3
## 7830   10/12/2011  3
## 7831   11/01/1990  3
## 7832   11/01/1993  3
## 7833   11/01/1994  3
## 7834   11/01/1998  3
## 7835   11/04/2009  3
## 7836   11/05/2013  3
## 7837   11/08/1989  3
## 7838   11/08/1992  3
## 7839   11/11/1995  3
## 7840   11/11/2000  3
## 7841   11/12/1991  3
## 7842   11/12/1992  3
## 7843   12/01/1994  3
## 7844   12/01/2008  3
## 7845   12/01/2013  3
## 7846   12/02/2006  3
## 7847   12/03/2011  3
## 7848   12/04/2003  3
## 7849   12/06/1992  3
## 7850   12/07/1998  3
## 7851   12/07/2008  3
## 7852   12/09/1991  3
## 7853   12/10/1990  3
## 7854   12/10/2003  3
## 7855   13/01/1995  3
## 7856   13/02/2000  3
## 7857   13/03/1990  3
## 7858   13/03/2011  3
## 7859   13/04/2008  3
## 7860   13/05/1991  3
## 7861   13/05/1992  3
## 7862   13/06/1999  3
## 7863   13/06/2009  3
## 7864   13/06/2010  3
## 7865   13/11/1989  3
## 7866   13/11/2010  3
## 7867   13/12/1990  3
## 7868   14/02/1992  3
## 7869   14/02/1998  3
## 7870   14/05/1993  3
## 7871   14/05/2011  3
## 7872   14/07/2013  3
## 7873   14/08/1992  3
## 7874   14/10/1995  3
## 7875   14/11/1990  3
## 7876   14/11/2010  3
## 7877   14/12/1989  3
## 7878   14/12/2002  3
## 7879   14/12/2003  3
## 7880   15/02/1993  3
## 7881   15/02/2014  3
## 7882   15/03/1990  3
## 7883   15/05/2011  3
## 7884   15/06/2014  3
## 7885   15/09/1989  3
## 7886   15/09/2013  3
## 7887   15/12/1992  3
## 7888   16/02/1994  3
## 7889   16/03/1990  3
## 7890   16/03/2008  3
## 7891   16/04/1992  3
## 7892   16/06/1989  3
## 7893   16/06/1992  3
## 7894   16/07/1993  3
## 7895   16/09/1994  3
## 7896   16/09/2001  3
## 7897   16/10/1989  3
## 7898   17/02/1995  3
## 7899   17/02/1996  3
## 7900   17/02/2007  3
## 7901   17/04/1989  3
## 7902   17/05/2008  3
## 7903   17/05/2009  3
## 7904   17/07/2011  3
## 7905   17/09/1995  3
## 7906   17/10/1999  3
## 7907   17/10/2009  3
## 7908   17/12/1992  3
## 7909   18/01/2014  3
## 7910   18/02/1996  3
## 7911   18/03/1992  3
## 7912   18/08/1989  3
## 7913   18/11/1992  3
## 7914   18/11/1994  3
## 7915   18/12/2005  3
## 7916   18/12/2011  3
## 7917   19/01/1995  3
## 7918   19/01/2003  3
## 7919   19/01/2009  3
## 7920   19/03/2011  3
## 7921   19/04/2014  3
## 7922   19/06/2005  3
## 7923   19/10/1992  3
## 7924   19/10/1993  3
## 7925   19/10/2003  3
## 7926   19/10/2008  3
## 7927   20/02/1990  3
## 7928   20/04/1990  3
## 7929   20/04/2008  3
## 7930   20/05/1995  3
## 7931   20/06/1998  3
## 7932   20/07/2003  3
## 7933   20/09/1998  3
## 7934   20/10/1989  3
## 7935   20/10/1992  3
## 7936   20/10/1994  3
## 7937   20/10/2001  3
## 7938   20/11/1989  3
## 7939   20/12/1994  3
## 7940   21/01/1993  3
## 7941   21/02/1991  3
## 7942   21/02/1992  3
## 7943   21/03/2004  3
## 7944   21/05/1995  3
## 7945   21/06/1995  3
## 7946   21/07/2012  3
## 7947   21/11/1989  3
## 7948   21/12/1992  3
## 7949   22/01/2012  3
## 7950   22/02/2003  3
## 7951   22/04/1994  3
## 7952   22/04/2007  3
## 7953   22/06/2003  3
## 7954   22/06/2008  3
## 7955   22/11/1991  3
## 7956   22/11/1992  3
## 7957   22/11/1994  3
## 7958   22/12/1992  3
## 7959   23/02/1990  3
## 7960   23/02/2013  3
## 7961   23/02/2014  3
## 7962   23/06/2013  3
## 7963   23/07/1994  3
## 7964   23/09/2006  3
## 7965   23/10/1991  3
## 7966   23/10/2010  3
## 7967   23/11/1994  3
## 7968   23/11/1995  3
## 7969   23/11/2012  3
## 7970   23/12/1992  3
## 7971   24/02/1993  3
## 7972   24/03/1993  3
## 7973   24/04/1992  3
## 7974   24/05/2003  3
## 7975   24/08/1997  3
## 7976   24/11/1993  3
## 7977   24/11/2005  3
## 7978   24/12/1995  3
## 7979   24/12/2001  3
## 7980   24/12/2004  3
## 7981   24/12/2010  3
## 7982   24/12/2012  3
## 7983   25/01/1990  3
## 7984   25/01/1995  3
## 7985   25/02/2012  3
## 7986   25/03/1994  3
## 7987   25/03/2007  3
## 7988   25/04/1991  3
## 7989   25/05/1993  3
## 7990   25/05/1997  3
## 7991   25/10/1989  3
## 7992   25/10/2003  3
## 7993   25/10/2009  3
## 7994   25/11/1995  3
## 7995   25/12/1997  3
## 7996   25/12/2011  3
## 7997   26/02/1993  3
## 7998   26/03/2011  3
## 7999   26/04/1992  3
## 8000   26/04/2003  3
## 8001   26/04/2014  3
## 8002   26/05/1994  3
## 8003   26/05/2001  3
## 8004   26/05/2002  3
## 8005   26/06/1990  3
## 8006   26/07/1994  3
## 8007   26/07/2009  3
## 8008   26/08/2007  3
## 8009   26/09/1993  3
## 8010   26/09/2010  3
## 8011   26/10/1990  3
## 8012   26/11/1991  3
## 8013   26/12/2003  3
## 8014   27/01/1995  3
## 8015   27/03/1992  3
## 8016   27/05/2006  3
## 8017   27/05/2012  3
## 8018   27/07/2008  3
## 8019   27/10/1993  3
## 8020   27/10/2013  3
## 8021   27/11/1990  3
## 8022   27/11/1991  3
## 8023   27/11/2005  3
## 8024   27/12/1992  3
## 8025   27/12/1995  3
## 8026   28/02/1990  3
## 8027   28/02/2010  3
## 8028   28/03/2010  3
## 8029   28/05/1993  3
## 8030   28/07/2002  3
## 8031   28/08/1989  3
## 8032   28/09/1992  3
## 8033   28/10/1991  3
## 8034   28/10/2006  3
## 8035   28/10/2007  3
## 8036   28/11/1989  3
## 8037   28/11/1996  3
## 8038   28/11/1999  3
## 8039   28/11/2008  3
## 8040   28/12/1992  3
## 8041   28/12/1993  3
## 8042   28/12/1994  3
## 8043   29/01/2011  3
## 8044   29/03/1990  3
## 8045   29/03/2008  3
## 8046   29/03/2014  3
## 8047   29/04/2012  3
## 8048   29/08/2004  3
## 8049   29/09/1994  3
## 8050   29/10/1995  3
## 8051   29/11/2002  3
## 8052   29/12/1989  3
## 8053   29/12/2001  3
## 8054   29/12/2002  3
## 8055   29/12/2007  3
## 8056   30/01/1990  3
## 8057   30/04/1991  3
## 8058   30/05/1998  3
## 8059   30/07/1991  3
## 8060   30/10/1990  3
## 8061   30/11/1993  3
## 8062   30/11/2003  3
## 8063   30/12/1993  3
## 8064   31/01/1990  3
## 8065   31/05/2014  3
## 8066   31/07/1991  3
## 8067   31/12/1991  3
## 8068   31/12/2006  3
## 8069   31/12/2010  3
## 8070   31/12/2012  3
## 8071   01/01/1994  2
## 8072   01/01/1995  2
## 8073   01/03/1989  2
## 8074   01/04/2006  2
## 8075   01/05/1989  2
## 8076   01/05/1993  2
## 8077   01/06/1979  2
## 8078   01/06/1988  2
## 8079   01/06/1991  2
## 8080   01/10/1994  2
## 8081   01/11/1989  2
## 8082   01/12/2012  2
## 8083   02/03/1992  2
## 8084   02/05/1989  2
## 8085   02/07/1991  2
## 8086   02/11/1992  2
## 8087   02/11/2013  2
## 8088   03/01/1992  2
## 8089   03/05/2014  2
## 8090   03/07/2005  2
## 8091   03/08/1991  2
## 8092   03/09/1995  2
## 8093   03/09/2001  2
## 8094   03/09/2012  2
## 8095   03/12/1995  2
## 8096   03/12/2011  2
## 8097   04/01/1991  2
## 8098   04/05/2003  2
## 8099   04/05/2014  2
## 8100   04/07/2000  2
## 8101   04/09/1993  2
## 8102   04/09/1995  2
## 8103   04/10/2003  2
## 8104   04/11/1988  2
## 8105   04/12/1989  2
## 8106   04/12/2004  2
## 8107   05/01/1990  2
## 8108   05/01/1994  2
## 8109   05/03/1993  2
## 8110   05/03/2000  2
## 8111   05/05/1994  2
## 8112   05/08/1993  2
## 8113   05/08/1995  2
## 8114   05/09/1993  2
## 8115   05/10/1988  2
## 8116   05/11/1994  2
## 8117   05/11/1995  2
## 8118   05/11/2006  2
## 8119   05/12/2009  2
## 8120   05/12/2010  2
## 8121   06/02/1989  2
## 8122   06/02/1994  2
## 8123   06/05/1995  2
## 8124   06/07/1989  2
## 8125   07/01/2006  2
## 8126   07/05/2005  2
## 8127   07/06/1988  2
## 8128   07/12/1990  2
## 8129   08/01/1991  2
## 8130   08/01/1994  2
## 8131   08/02/1994  2
## 8132   08/04/1995  2
## 8133   08/04/2007  2
## 8134   08/07/1989  2
## 8135   08/10/1994  2
## 8136   08/11/1989  2
## 8137   09/05/1995  2
## 8138   09/08/1992  2
## 8139   09/09/1995  2
## 8140   09/10/1989  2
## 8141   09/10/1994  2
## 8142   09/11/1990  2
## 8143   09/11/2008  2
## 8144   10/08/1989  2
## 8145   10/11/1992  2
## 8146   10/12/1994  2
## 8147   10/12/2006  2
## 8148   11/01/1991  2
## 8149   11/01/1992  2
## 8150   11/02/1995  2
## 8151   11/04/1990  2
## 8152   11/04/1992  2
## 8153   11/10/1988  2
## 8154   11/12/1989  2
## 8155   11/12/2010  2
## 8156   12/01/1990  2
## 8157   12/03/1990  2
## 8158   12/03/1992  2
## 8159   12/04/2014  2
## 8160   12/05/1989  2
## 8161   12/05/2002  2
## 8162   12/06/1989  2
## 8163   12/07/1989  2
## 8164   12/10/1989  2
## 8165   12/11/1995  2
## 8166   12/12/1991  2
## 8167   13/01/1994  2
## 8168   13/02/1999  2
## 8169   13/02/2005  2
## 8170   13/03/1989  2
## 8171   13/03/1999  2
## 8172   13/03/2004  2
## 8173   13/04/2002  2
## 8174   13/04/2014  2
## 8175   13/07/1988  2
## 8176   13/08/1994  2
## 8177   13/10/1988  2
## 8178   13/10/1990  2
## 8179   13/11/1992  2
## 8180   13/11/2004  2
## 8181   13/12/1989  2
## 8182   14/01/1993  2
## 8183   14/06/1989  2
## 8184   14/06/2008  2
## 8185   14/06/2014  2
## 8186   14/07/1988  2
## 8187   14/09/1989  2
## 8188   15/01/1995  2
## 8189   15/01/1996  2
## 8190   15/02/1989  2
## 8191   15/07/1995  2
## 8192   15/07/2007  2
## 8193   15/08/1985  2
## 8194   15/08/1988  2
## 8195   15/10/1993  2
## 8196   15/10/1994  2
## 8197   15/11/2003  2
## 8198   15/12/1991  2
## 8199   15/12/1993  2
## 8200   16/01/1990  2
## 8201   16/01/2011  2
## 8202   16/02/1990  2
## 8203   16/05/1993  2
## 8204   16/07/1991  2
## 8205   16/11/1990  2
## 8206   16/12/1993  2
## 8207   17/01/1989  2
## 8208   17/01/1990  2
## 8209   17/04/2010  2
## 8210   17/05/1989  2
## 8211   17/05/2003  2
## 8212   17/07/2005  2
## 8213   17/09/1993  2
## 8214   17/09/1994  2
## 8215   17/12/1991  2
## 8216   17/12/1994  2
## 8217   18/02/1994  2
## 8218   18/02/2006  2
## 8219   18/06/1994  2
## 8220   18/06/1995  2
## 8221   18/09/1989  2
## 8222   18/09/1990  2
## 8223   18/09/1993  2
## 8224   18/10/1989  2
## 8225   18/10/2003  2
## 8226   18/11/2007  2
## 8227   18/12/1989  2
## 8228   18/12/1992  2
## 8229   19/01/1990  2
## 8230   19/02/1989  2
## 8231   19/02/1993  2
## 8232   19/03/1987  2
## 8233   19/03/1994  2
## 8234   19/06/1994  2
## 8235   19/07/1989  2
## 8236   19/09/1989  2
## 8237   19/11/1994  2
## 8238   19/12/1992  2
## 8239   19/12/1993  2
## 8240   20/06/1999  2
## 8241   20/11/1994  2
## 8242   20/12/2008  2
## 8243   21/01/1996  2
## 8244   21/02/1990  2
## 8245   21/03/1994  2
## 8246   21/05/1986  2
## 8247   22/01/1990  2
## 8248   22/02/1990  2
## 8249   22/04/2006  2
## 8250   22/05/1992  2
## 8251   22/08/1993  2
## 8252   22/09/1986  2
## 8253   22/09/2007  2
## 8254   22/10/2011  2
## 8255   22/11/1989  2
## 8256   22/11/1993  2
## 8257   22/11/2001  2
## 8258   22/11/2003  2
## 8259   23/01/1991  2
## 8260   23/01/1992  2
## 8261   23/02/2003  2
## 8262   23/04/1991  2
## 8263   23/07/1995  2
## 8264   23/08/1989  2
## 8265   23/10/1992  2
## 8266   23/10/1994  2
## 8267   23/12/1993  2
## 8268   23/12/2006  2
## 8269   23/12/2007  2
## 8270   24/01/1993  2
## 8271   24/03/2013  2
## 8272   24/04/1989  2
## 8273   24/06/1995  2
## 8274   24/06/2001  2
## 8275   24/07/1989  2
## 8276   24/08/2008  2
## 8277   24/10/1989  2
## 8278   24/11/1994  2
## 8279   24/11/2011  2
## 8280   24/12/2005  2
## 8281   25/02/1992  2
## 8282   25/02/1996  2
## 8283   25/02/2007  2
## 8284   25/03/1993  2
## 8285   25/04/1989  2
## 8286   25/04/2009  2
## 8287   25/09/1989  2
## 8288   25/11/2005  2
## 8289   25/12/1993  2
## 8290   25/12/1999  2
## 8291   25/12/2009  2
## 8292   25/12/2012  2
## 8293   26/10/1993  2
## 8294   26/11/1995  2
## 8295   26/11/1998  2
## 8296   26/11/2004  2
## 8297   26/12/1994  2
## 8298   26/12/1995  2
## 8299   26/12/1996  2
## 8300   27/02/1992  2
## 8301   27/03/2005  2
## 8302   27/03/2010  2
## 8303   27/03/2011  2
## 8304   27/04/1990  2
## 8305   27/06/1989  2
## 8306   27/06/1993  2
## 8307   27/07/1995  2
## 8308   27/11/2008  2
## 8309   27/12/1989  2
## 8310   27/12/1990  2
## 8311   27/12/1991  2
## 8312   27/12/1999  2
## 8313   27/12/2011  2
## 8314   28/02/1992  2
## 8315   28/04/1989  2
## 8316   28/05/2011  2
## 8317   28/06/1989  2
## 8318   28/07/1989  2
## 8319   28/09/1989  2
## 8320   29/03/2009  2
## 8321   29/05/1995  2
## 8322   29/06/2013  2
## 8323   29/07/1991  2
## 8324   29/09/2002  2
## 8325   29/11/1990  2
## 8326   29/11/1994  2
## 8327   29/12/1992  2
## 8328   29/12/1993  2
## 8329   29/12/1994  2
## 8330   30/01/1989  2
## 8331   30/01/1993  2
## 8332   30/03/1990  2
## 8333   30/03/1991  2
## 8334   30/05/1989  2
## 8335   30/07/1995  2
## 8336   30/09/2006  2
## 8337   30/12/1994  2
## 8338   31/01/1999  2
## 8339   31/08/2008  2
## 8340   31/10/1989  2
## 8341   31/12/1995  2
## 8342   01/01/1984  1
## 8343   01/01/1985  1
## 8344   01/01/1986  1
## 8345   01/01/1992  1
## 8346   01/02/1989  1
## 8347   01/02/1992  1
## 8348   01/03/2008  1
## 8349   01/04/1987  1
## 8350   01/04/1994  1
## 8351   01/05/1990  1
## 8352   01/05/1994  1
## 8353   01/05/2011  1
## 8354   01/07/1979  1
## 8355   01/07/1987  1
## 8356   01/07/1988  1
## 8357   01/10/1992  1
## 8358   01/11/1992  1
## 8359   01/12/1989  1
## 8360   01/12/1993  1
## 8361   02/01/1995  1
## 8362   02/03/1988  1
## 8363   02/03/1991  1
## 8364   02/03/2014  1
## 8365   02/04/1986  1
## 8366   02/05/1992  1
## 8367   02/06/1969  1
## 8368   02/06/1988  1
## 8369   02/06/1990  1
## 8370   02/07/1986  1
## 8371   02/07/1994  1
## 8372   02/07/2011  1
## 8373   02/09/1995  1
## 8374   02/10/1989  1
## 8375   02/10/1991  1
## 8376   02/10/1993  1
## 8377   02/10/1994  1
## 8378   02/11/1983  1
## 8379   02/11/1988  1
## 8380   02/11/1989  1
## 8381   02/11/1991  1
## 8382   02/12/1989  1
## 8383   03/02/1991  1
## 8384   03/03/1990  1
## 8385   03/03/1995  1
## 8386   03/04/1989  1
## 8387   03/04/1992  1
## 8388   03/04/2005  1
## 8389   03/05/1988  1
## 8390   03/06/1988  1
## 8391   03/06/1995  1
## 8392   03/07/1989  1
## 8393   03/07/1993  1
## 8394   03/08/1984  1
## 8395   03/08/1989  1
## 8396   03/08/2013  1
## 8397   03/09/1986  1
## 8398   03/09/1990  1
## 8399   03/11/1988  1
## 8400   03/11/1989  1
## 8401   03/11/1991  1
## 8402   03/12/1992  1
## 8403   04/01/1990  1
## 8404   04/02/1988  1
## 8405   04/02/1995  1
## 8406   04/03/1990  1
## 8407   04/04/1986  1
## 8408   04/04/1987  1
## 8409   04/04/1992  1
## 8410   04/04/1993  1
## 8411   04/05/1989  1
## 8412   04/05/1991  1
## 8413   04/06/1980  1
## 8414   04/07/1994  1
## 8415   04/08/1988  1
## 8416   04/09/1987  1
## 8417   04/09/1989  1
## 8418   04/10/1988  1
## 8419   04/11/1985  1
## 8420   04/11/1990  1
## 8421   04/11/1995  1
## 8422   04/12/1993  1
## 8423   05/01/1979  1
## 8424   05/01/1995  1
## 8425   05/02/1988  1
## 8426   05/03/1988  1
## 8427   05/05/1988  1
## 8428   05/06/1994  1
## 8429   05/07/1989  1
## 8430   05/08/1990  1
## 8431   05/09/1989  1
## 8432   05/09/1992  1
## 8433   05/09/1994  1
## 8434   05/11/1984  1
## 8435   05/11/1992  1
## 8436   06/02/1967  1
## 8437   06/02/1995  1
## 8438   06/04/1978  1
## 8439   06/04/2014  1
## 8440   06/06/1989  1
## 8441   06/06/1992  1
## 8442   06/07/1983  1
## 8443   06/08/1994  1
## 8444   06/08/1995  1
## 8445   06/09/1988  1
## 8446   06/09/1993  1
## 8447   06/10/1987  1
## 8448   06/10/1988  1
## 8449   06/10/1991  1
## 8450   06/11/1993  1
## 8451   06/12/1992  1
## 8452   06/12/1994  1
## 8453   06/12/2008  1
## 8454   07/01/1995  1
## 8455   07/02/1984  1
## 8456   07/02/1989  1
## 8457   07/03/1989  1
## 8458   07/07/1989  1
## 8459   07/07/1991  1
## 8460   07/09/2009  1
## 8461   07/11/1999  1
## 8462   07/12/1987  1
## 8463   07/12/1989  1
## 8464   07/12/1991  1
## 8465   08/01/1995  1
## 8466   08/02/2009  1
## 8467   08/03/1990  1
## 8468   08/05/1986  1
## 8469   08/05/1988  1
## 8470   08/05/1994  1
## 8471   08/06/1979  1
## 8472   08/07/1985  1
## 8473   08/07/1986  1
## 8474   08/07/1987  1
## 8475   08/08/1977  1
## 8476   08/08/1988  1
## 8477   08/08/1989  1
## 8478   08/08/1992  1
## 8479   08/09/1988  1
## 8480   08/09/1991  1
## 8481   08/11/1988  1
## 8482   08/11/2009  1
## 8483   08/12/1985  1
## 8484   08/12/1991  1
## 8485   09/01/1993  1
## 8486   09/01/2005  1
## 8487   09/02/1989  1
## 8488   09/02/1990  1
## 8489   09/02/1991  1
## 8490   09/03/1989  1
## 8491   09/03/1991  1
## 8492   09/04/1993  1
## 8493   09/04/1995  1
## 8494   09/05/1992  1
## 8495   09/05/1993  1
## 8496   09/07/1994  1
## 8497   09/08/1989  1
## 8498   09/11/1987  1
## 8499   09/11/1988  1
## 8500   09/12/1989  1
## 8501   09/12/1994  1
## 8502   10/01/1985  1
## 8503   10/01/1990  1
## 8504   10/02/1988  1
## 8505   10/03/1989  1
## 8506   10/03/1994  1
## 8507   10/06/1981  1
## 8508   10/06/1987  1
## 8509   10/07/1989  1
## 8510   10/09/1989  1
## 8511   10/09/1994  1
## 8512   10/09/1995  1
## 8513   10/10/1989  1
## 8514   10/10/1992  1
## 8515   10/10/1993  1
## 8516   10/10/1998  1
## 8517   10/11/1981  1
## 8518   10/11/1986  1
## 8519   10/11/1988  1
## 8520   10/11/1990  1
## 8521   10/12/1985  1
## 8522   10/12/1989  1
## 8523   10/12/1991  1
## 8524   10/12/1995  1
## 8525   11/02/2012  1
## 8526   11/03/1995  1
## 8527   11/04/1985  1
## 8528   11/05/1982  1
## 8529   11/05/1987  1
## 8530   11/05/1988  1
## 8531   11/06/1987  1
## 8532   11/07/1988  1
## 8533   11/07/1989  1
## 8534   11/07/1992  1
## 8535   11/09/1993  1
## 8536   11/10/1989  1
## 8537   11/11/1991  1
## 8538   11/11/1994  1
## 8539   11/12/1994  1
## 8540   12/01/1979  1
## 8541   12/01/1988  1
## 8542   12/01/1989  1
## 8543   12/01/1992  1
## 8544   12/01/2014  1
## 8545   12/02/1985  1
## 8546   12/02/1993  1
## 8547   12/02/1995  1
## 8548   12/03/1995  1
## 8549   12/04/1989  1
## 8550   12/05/1986  1
## 8551   12/05/1988  1
## 8552   12/05/1990  1
## 8553   12/07/1988  1
## 8554   12/08/1987  1
## 8555   12/08/1995  1
## 8556   12/09/1989  1
## 8557   12/09/1992  1
## 8558   12/10/1988  1
## 8559   12/10/1991  1
## 8560   12/11/1989  1
## 8561   12/11/1990  1
## 8562   12/11/2011  1
## 8563   12/12/1988  1
## 8564   12/12/1992  1
## 8565   12/12/1993  1
## 8566   12/12/2004  1
## 8567   13/02/1990  1
## 8568   13/02/1993  1
## 8569   13/02/1994  1
## 8570   13/04/1989  1
## 8571   13/05/1986  1
## 8572   13/05/1994  1
## 8573   13/05/1995  1
## 8574   13/06/1988  1
## 8575   13/07/1987  1
## 8576   13/07/1991  1
## 8577   13/09/1988  1
## 8578   13/09/1989  1
## 8579   13/09/1992  1
## 8580   13/11/1985  1
## 8581   13/11/1993  1
## 8582   13/12/1988  1
## 8583   13/12/2009  1
## 8584   14/01/1994  1
## 8585   14/01/1995  1
## 8586   14/02/1993  1
## 8587   14/04/1991  1
## 8588   14/04/1995  1
## 8589   14/05/1995  1
## 8590   14/06/1988  1
## 8591   14/08/1986  1
## 8592   14/08/1989  1
## 8593   14/08/1993  1
## 8594   14/09/1988  1
## 8595   14/11/1989  1
## 8596   14/12/1991  1
## 8597   14/12/1994  1
## 8598   15/01/1990  1
## 8599   15/01/1994  1
## 8600   15/01/2012  1
## 8601   15/02/1992  1
## 8602   15/03/1992  1
## 8603   15/04/1988  1
## 8604   15/04/1995  1
## 8605   15/06/1989  1
## 8606   15/07/1988  1
## 8607   15/08/1989  1
## 8608   15/08/1993  1
## 8609   15/09/1990  1
## 8610   15/10/1987  1
## 8611   15/12/1987  1
## 8612   15/12/1989  1
## 8613   16/01/1994  1
## 8614   16/01/2005  1
## 8615   16/02/1987  1
## 8616   16/02/1989  1
## 8617   16/03/1988  1
## 8618   16/04/1995  1
## 8619   16/05/1985  1
## 8620   16/05/1989  1
## 8621   16/06/1988  1
## 8622   16/07/1994  1
## 8623   16/07/1995  1
## 8624   16/08/1992  1
## 8625   16/09/1982  1
## 8626   16/09/1987  1
## 8627   16/09/1989  1
## 8628   16/12/1995  1
## 8629   16/12/2001  1
## 8630   17/01/1986  1
## 8631   17/02/1989  1
## 8632   17/03/1989  1
## 8633   17/03/1991  1
## 8634   17/04/1992  1
## 8635   17/04/1993  1
## 8636   17/04/1994  1
## 8637   17/05/1988  1
## 8638   17/07/1989  1
## 8639   17/07/1993  1
## 8640   17/07/1994  1
## 8641   17/08/1991  1
## 8642   17/09/1989  1
## 8643   17/10/1988  1
## 8644   17/11/1988  1
## 8645   18/01/1989  1
## 8646   18/01/1990  1
## 8647   18/01/1993  1
## 8648   18/02/1987  1
## 8649   18/02/1988  1
## 8650   18/02/1990  1
## 8651   18/03/1986  1
## 8652   18/03/1995  1
## 8653   18/04/1989  1
## 8654   18/04/1992  1
## 8655   18/06/1987  1
## 8656   18/07/1988  1
## 8657   18/08/1980  1
## 8658   18/08/1991  1
## 8659   18/09/1983  1
## 8660   18/11/1995  1
## 8661   18/12/1994  1
## 8662   19/01/1986  1
## 8663   19/02/1985  1
## 8664   19/02/1994  1
## 8665   19/08/1986  1
## 8666   19/08/1989  1
## 8667   19/09/1988  1
## 8668   19/09/1993  1
## 8669   19/10/1984  1
## 8670   19/11/1986  1
## 8671   19/11/1987  1
## 8672   19/11/1995  1
## 8673   19/12/1985  1
## 8674   19/12/1988  1
## 8675   19/12/1989  1
## 8676   20/01/1989  1
## 8677   20/01/1992  1
## 8678   20/02/1992  1
## 8679   20/02/1993  1
## 8680   20/03/1989  1
## 8681   20/03/1993  1
## 8682   20/04/1988  1
## 8683   20/04/2014  1
## 8684   20/05/1988  1
## 8685   20/07/1989  1
## 8686   20/08/1994  1
## 8687   20/09/1989  1
## 8688   20/10/1990  1
## 8689   20/11/1988  1
## 8690   20/12/1990  1
## 8691   21/01/1989  1
## 8692   21/02/1989  1
## 8693   21/03/1991  1
## 8694   21/04/1989  1
## 8695   21/05/1994  1
## 8696   21/07/1989  1
## 8697   21/07/1990  1
## 8698   21/07/1991  1
## 8699   21/08/1989  1
## 8700   21/08/1993  1
## 8701   21/09/1987  1
## 8702   21/09/1988  1
## 8703   21/10/1983  1
## 8704   21/10/1995  1
## 8705   21/12/1988  1
## 8706   21/12/1989  1
## 8707   21/12/1990  1
## 8708   21/12/1994  1
## 8709   21/12/2002  1
## 8710   22/01/1994  1
## 8711   22/02/1989  1
## 8712   22/03/1980  1
## 8713   22/03/2003  1
## 8714   22/04/1983  1
## 8715   22/05/1993  1
## 8716   22/06/1989  1
## 8717   22/06/2014  1
## 8718   22/08/1989  1
## 8719   22/08/1992  1
## 8720   22/09/1989  1
## 8721   22/09/1990  1
## 8722   22/12/2007  1
## 8723   23/01/1987  1
## 8724   23/03/1988  1
## 8725   23/04/1994  1
## 8726   23/04/1995  1
## 8727   23/05/1988  1
## 8728   23/05/1989  1
## 8729   23/05/1993  1
## 8730   23/06/1989  1
## 8731   23/06/1990  1
## 8732   23/08/1992  1
## 8733   23/09/1986  1
## 8734   23/09/1989  1
## 8735   23/09/1995  1
## 8736   23/10/1989  1
## 8737   23/10/1993  1
## 8738   23/11/1989  1
## 8739   23/11/2001  1
## 8740   23/12/1991  1
## 8741   23/12/1995  1
## 8742   24/01/1991  1
## 8743   24/02/1947  1
## 8744   24/02/1986  1
## 8745   24/02/1989  1
## 8746   24/02/1990  1
## 8747   24/02/2007  1
## 8748   24/04/1994  1
## 8749   24/05/1989  1
## 8750   24/05/2014  1
## 8751   24/06/1989  1
## 8752   24/07/1993  1
## 8753   24/08/1989  1
## 8754   24/08/1991  1
## 8755   24/09/1995  1
## 8756   24/11/1971  1
## 8757   24/11/1995  1
## 8758   24/11/2007  1
## 8759   24/12/1989  1
## 8760   24/12/1990  1
## 8761   24/12/1999  1
## 8762   24/12/2011  1
## 8763   25/02/1989  1
## 8764   25/04/1985  1
## 8765   25/05/1989  1
## 8766   25/07/1993  1
## 8767   25/08/1988  1
## 8768   25/10/1992  1
## 8769   25/11/1993  1
## 8770   25/12/1992  1
## 8771   25/12/2004  1
## 8772   26/01/1989  1
## 8773   26/01/1993  1
## 8774   26/02/1990  1
## 8775   26/02/1995  1
## 8776   26/02/2000  1
## 8777   26/03/1986  1
## 8778   26/05/2014  1
## 8779   26/06/1989  1
## 8780   26/06/1993  1
## 8781   26/06/1994  1
## 8782   26/09/1987  1
## 8783   26/09/1989  1
## 8784   26/10/1989  1
## 8785   26/11/1988  1
## 8786   26/11/1990  1
## 8787   26/11/1993  1
## 8788   26/12/1999  1
## 8789   27/02/1989  1
## 8790   27/02/1993  1
## 8791   27/02/1994  1
## 8792   27/05/1990  1
## 8793   27/05/1991  1
## 8794   27/05/1995  1
## 8795   27/08/1984  1
## 8796   27/08/1994  1
## 8797   27/08/1995  1
## 8798   27/09/1968  1
## 8799   27/09/1988  1
## 8800   27/09/1989  1
## 8801   27/10/1988  1
## 8802   27/10/1989  1
## 8803   27/11/1993  1
## 8804   28/03/1988  1
## 8805   28/03/1989  1
## 8806   28/03/1991  1
## 8807   28/04/1987  1
## 8808   28/04/1988  1
## 8809   28/05/1992  1
## 8810   28/06/1988  1
## 8811   28/06/1992  1
## 8812   28/07/1976  1
## 8813   28/07/1990  1
## 8814   28/08/1988  1
## 8815   28/08/1994  1
## 8816   28/09/1984  1
## 8817   28/10/1986  1
## 8818   28/11/1993  1
## 8819   28/11/2010  1
## 8820   28/11/2013  1
## 8821   28/12/1988  1
## 8822   29/01/1987  1
## 8823   29/01/1994  1
## 8824   29/03/1981  1
## 8825   29/03/1991  1
## 8826   29/03/1992  1
## 8827   29/04/1987  1
## 8828   29/04/1988  1
## 8829   29/04/1995  1
## 8830   29/05/1993  1
## 8831   29/06/2002  1
## 8832   29/07/1988  1
## 8833   29/07/1995  1
## 8834   29/08/1988  1
## 8835   29/08/1989  1
## 8836   29/09/1989  1
## 8837   29/09/1992  1
## 8838   29/09/2001  1
## 8839   29/10/1976  1
## 8840   29/10/1982  1
## 8841   29/10/1994  1
## 8842   29/12/1986  1
## 8843   30/01/1984  1
## 8844   30/01/1994  1
## 8845   30/01/1995  1
## 8846   30/03/2002  1
## 8847   30/04/1987  1
## 8848   30/04/1993  1
## 8849   30/05/1994  1
## 8850   30/06/1988  1
## 8851   30/06/1991  1
## 8852   30/07/1989  1
## 8853   30/08/1988  1
## 8854   30/09/1986  1
## 8855   30/09/1987  1
## 8856   30/10/1989  1
## 8857   30/12/1989  1
## 8858   31/05/1987  1
## 8859   31/07/1986  1
## 8860   31/07/1992  1
## 8861   31/07/1994  1
## 8862   31/08/1987  1
## 8863   31/10/1993  1
## 8864   31/12/1994  1
## 8865   31/12/1999  1
count(db, IncidentDescription, sort=TRUE)
##                                                                                                                                                                                                                                                      IncidentDescription
## 1                                                                                                                                                                                                                                                                      I
## 2                                                                                                                                                                                                                                                                Unknown
## 3                                                                                                                                                                                                                                              EE was exposed to scabies
## 4                                                                                                                                                                                       Work exposure to inmate with bacterial meningitis between 1/10/13 and 1/20/13 ()
## 5                                                                                                                                                                                                                                                   Brucella exposure ()
## 6                                                                                                                                                                                                                                                                   NULL
## 7                                                                                                                                                                                                                                                   Reaction to ppd test
## 8                                                                                                                                                                EE was exposed to hepatitis a from co-worker co-worker with hepatitis a prepares food and intimate care
## 9                                                                                                                                                                                                                    Inmate threw an unknown substance on the officer ()
## 10                                                                                                                                                                                                                                                 EE exposed to scabies
## 11                                                                                                                                                                                                                          EE was involved in a motor vehicle accident.
## 12             11/26/2007 03:57 pm (fblackmo) employees (all eleven) became sick due to suspected exposure of hazards material/fumes while moving into new office. All employees experienced burning to eyes, throat, nose, and lungs. Two of the eleven did not go to t
## 13                                                                                                                                                                                                                                        EE was exposed to tuberculosis
## 14                                                                                                                                                                                                                                EE was struck in the face by an inmate
## 15                                                                                                                                                                                                                                                        Exposure to TB
## 16                                                                                                                                                                                                                                    EE came in contact with poison ivy
## 17                                                                                                                                                                                                                                          EE had reaction to ppd test.
## 18                                                                                                                                                                     EE was exposed to hepatitis a from co-worker with hepatitis a who prepared food and intimate care
## 19                                                                                                                                                                                                                                                         Auto accident
## 20                                                                                                                                                                                                                                                          EE states ()
## 21                                                                                                                                                                                                                                      EE strained back lifting patient
## 22                                                                                                                                                                                 EE was exposed to hep a from co-worker with hep a who prepared food and intimate care
## 23                                                                                                                                                                                                                           EE was involved in a motor vehicle accident
## 24                                                                                                                                                                                                                                                  Slipped on wet floor
## 25                                                                                                                                                                                                                                               Slipped on wet floor ()
## 26                                                                       11/14/2002 03:21 pm (fblackmo) employees' states that while trying to make a left turn on state road 1544 a private vehicle ran into the back of them at a high speed. Supervisor: bobby lewis.
## 27                                                                                                                                                                                                                                                         EE states, ()
## 28                                                                                                                                                                                                                                     EE strained back lifting resident
## 29                                                                                    Employee was locating r/w monuments along I-40 in wake co. Spray truck was spraying in area. Employee worked in area later that day. List injury as: possible exposure to spray ()
## 30                                                                Ie was assisting investigating a criminal case. While there, the deceased suspect tested positive for TB, the other 3 suspects lived with him. The other 3 suspects were interviewed by the agents. ()
## 31                                                                                                                                                   Location: wake d-5 /// injury: face arms and neck-poison ivy /// physician: na /// hospital: coastal medical center
## 32                                                                                                                                                                                                                                                     Repetitive motion
## 33                                                                                                                                                                                                      Toxic fumes from varnish being put down on 2nd florr of foust ()
## 34                                                                                                                                                                                                                                                            Unknown ()
## 35                                                                                                                                                                                                                    ******************see log notes*******************
## 36          09/25/2001 09:40 am (fblackmo) private own dump truck(load) was unable to stop moved into left lane to bypass other vehicles that had already stop. The dump truck entered department of transportation work zone hitting d. O. T. Boom truck head on, causi
## 37           11/9/2010 10:40 am (barnes) employee was operating a state owned truck when he met an oncoming vehicle and moved over. The rear wheels of the truck dropped off the pavement and the employee lost control of the truck causing it to over turn. As a resul
## 38                                                                                                                                                                                                                An inmate threw an unknown substance on the officer ()
## 39                                                                                                                                                                                                                                                   Attacked by patient
## 40                                                                                                                                                                                                                                                       Car accident ()
## 41                                                                                                                                                                                                                                                Carpal tunnel syndrome
## 42                                                                                                                                                                                                                                           EE had reaction to ppd test
## 43                                                                                                                                                                                                                                    EE states an inmate spitted on him
## 44                                                                                                                                                                                       EE was exposed to hepatitis a from co-worker with hepatitis a who prepared food
## 45                                                                                                                                                                                                                               EE was exposed to resident with scabies
## 46                                                                                                                                                                                                                                                    I /// hospital: na
## 47                                                                                                                                                                                                                      Inmate threw an unknown liquid on the officer ()
## 48                                                                                                                                                                                                                                                           Insect bite
## 49                                                                                                                                               Location: 3021 beaufort /// injury: absorbed, inhaled, ingested contaminated soil. /// physician: n/a /// hospital: n/a
## 50                                                                                                                                     Location: washington county - div. 1 /// injury: poison ivy /// physician: chang y. Oak, m. D., p. O. Box 987, plymouth, nc 27962
## 51                                                                                                                                                                                                                                                             No injury
## 52                                                                                                                                                                                                         Possible exposure issue regarding mold in big center building
## 53                                                                                                                                                                                                                                                        Spider bite ()
## 54                                                                             01/10/2000 05:34 pm employee was riding in state dot vehicle, when the stopped behind a trash truck and was struck from behind. Mr. Walker injuries: back strain. Supervisor: a. W. Smith
## 55                                                                        03/25/2002 12:20 pm (fblackmo) employee was driving pick-up truck pulling air compressor. The air compressor was hit by another vehicle as it came to a stop sign. Supervisor: rodney matthews
## 56            06/04/2003 06:40 am (slee) my crew was on 96 hwy, south patching potholes. We were in crewcab driving south on 96 when we attempted to make a left hand turn. The driver of a transfer truck went to to pass on a double yellow line and struck the crew c
## 57                06/26/2000 05:23 pm mini van driven by a private citizen left the travel lane on I-85; striking Mr. Talcott some 60-80 feet from the travel lane. Mr. Talcott was on his knees planting flowers at the time of incident. Supervisor: danny clary note:
## 58                                                                                      08/14/2003 07:29 am (fblackmo) employee was picking up litter when, tractor trailer ran off road and struck mirror causing glass to fall on employee. Supervisor: d. M. Pressley
## 59            09/01/2000 10:23 am state vehicle towing asphalt kettle trailer was making a right turn, with signal on, from us 17 north onto sr 1568. Delivery truck ran into trailer from behind at a high rate of speed spinning state truck and trailer through adjac
## 60               10/04/1999 02:24 pm employee suffered a fracture to his left heel on 9/14/99. Employee was hit head on by a private vehicle that crossed the center line, striking Mr. Schaub and two other passengers 1) david woodard; 2) micah tussey. Supervisor: p
## 61             11/5/2007 03:26 pm (fblackmo) employee one (rush) was picking up signs on state road when, the vehicle he was driving was struck in the rear by a private vehicle. Employee felt pain in his neck and back area. Supervisor: chip speight 11/5/2007 03:37
## 62           3/21/2006 02:49 pm (fblackmo) employees states traffic was backed up on us 1. Employee was merging onto us 1 from the 64/tyron road exit, and at a standstill waiting for traffic to inch up so that they could fully get into the lane, when a private hit
## 63                                                                                    4/20/2005 02:45 pm (fblackmo) employee was operating a dot crew cab truck that was rear ended by a private vehicle. Employee experienced pain in his back. Supervisor: l. W. Lyall
## 64           8/24/2005 08:23 am (fblackmo) employee was operating a f-350 crew cab pickup following a backhoe from the maintenance office to a nearby stockpile area to load shoulder material when, a private vehicle struck the pickup from behind. Employee felt pain
## 65                                                                                                                                                                                                                   An inmate threw an unknown liquid on the officer ()
## 66                                                                                                                                                                                     Bitten by ticks during field research in virginia. Employee continued to work. ()
## 67                                                                                                                                                                                                                                                           Dog bite ()
## 68                                                                                                                                                                                                EE came in contact with inmate who was tested postive for tuberculosis
## 69                                                                                                                                                                                                                                             EE closed door on rt hand
## 70                                                                                                                                                                                                                                                    EE fell down steps
## 71                                                                                                                                                                                                                                            EE slipped and fell on ice
## 72                                                                                                                                                                                                                                              EE slipped on wet floor.
## 73                                                                                                                                                                                                   EE states during a use of force on an inmate he injured his rt hand
## 74                                                                                                                                                                                                                EE states he was involved in a motor vehicle accident.
## 75                                                                                                                                                                                                               EE states she was involved in a motor vehicle accident.
## 76                                                                                                                                                                                                                      EE states while walking she twisted her rt ankle
## 77                                                                                                                                                                                                                                          EE strained back moving desk
## 78                                                                                                                                                                                                                                                   EE tripped and fell
## 79                                                                                                                                                                           EE was exposed to hepatitis a from co-worker with hep a who prepared food and intimate care
## 80                                                                                                                                                                                                                                          EE was exposed to menegetis.
## 81                                                                                                                                                                                                                                       EE was exposed to tuberculosis.
## 82                                                                                                                                                                                                       EE was involved in a motor vehicle accident causing back injury
## 83                                                                                                                                                                                                                        Employee came into contact with poison ivy. ()
## 84                                                                                                                                                                                                                            Employee slipped and fell on wet floor. ()
## 85                                                                                                                              Employee stated that he was trying to stop two patients from fighting. Staff and patient hit the floor by patient pulling staff down. ()
## 86                                                                                                                                            Employee was passenger in vehicle traveling on forest dirt road. Driver lost control of vehicle and crashed in to tree. ()
## 87                                                                                                                                                                                                                                Entering bldg, slipped and fell on ice
## 88                                                                                                                                                                                                                                          Exposed to patient with h1n1
## 89                                                                                                                                                                                                                                                   Fell in parking lot
## 90                                                                                                                                                                                                                                                     Fell on wet floor
## 91                                                                                                                                                                                                                                                           I, and loui
## 92                                                                                                                                                                                                                                             Involved in auto accident
## 93                                                                                                                              Location: 3021 beaufort /// injury: upper body exposed to exaust fumes /// physician: Dr. Dennis czuchara /// hospital: family med. Care
## 94                                                                                                                                         Location: 3061 46 /// injury: hearing loss /// physician: thomas j. Henderson /// hospital: clinical & industrial audiologist
## 95                                                                                                                                                     Location: 3162 craven /// injury: from the neck down - scabies. /// physician: Dr. Gray /// hospital: urgent care
## 96                                                                                                                       Location: 3441 washington /// injury: hearing disability(both ears) /// physician: Dr. Thomas j. Henderson /// hospital: henderson audiometrics
## 97                                                                                                                                                                 Location: ashe co., division 11 /// injury: poison ivy on legs /// physician: ashe medical associates
## 98                                                                                                                                                                                          Location: johnston, d-4 /// injury: right hand /// physician: Dr. Jan creech
## 99                                                                                                                                                                                                Part of ceiling pulled away with duct during demolition for renovation
## 100                                                                                                                                                                                                                                     Slipped and fell on wet floor ()
## 101                                                                                                                                                                                                                                                            Tick bite
## 102                                                                                                                                                                                                                                                     Vehicle accident
## 103           02/01/2000 02:08 pm Mr. Minton was traveling on highway 421 in boone, nc on 1/4/2000, when he was hit head on by a private vehicle and also hit on side of drivers door. The private vehicle crossed the centerline and the other private vehicle was foll
## 104             04/04/2000 10:31 am private vehicle was following state vehicle too close. Employees (craft and hardee) was rear ended at the intersection of grove street and easter blvd. In cumberland county. Craft suffered neck, shoulder, arm strain/sprains; and
## 105            04/24/2000 02:54 pm employees were working in a stationary bucket truck replacing bulbs in traffic signals; when two vehicles collided behind the truck. A flying object came off hitting truck and employees causing injuries. Gary chatman sustained sc
## 106             04/27/2000 11:14 am employees were working on a overturned dump truck on independence blvd. When they was struck from behind. The left lane was blocked causing private vehicle to hit them and then another car hit the private vehicle. Both employees
## 107                                                                      04/28/2003 02:21 pm (fblackmo) employee was coming back from picking up another employee in his personal vehicle when, he was struck in the rear by a private vehicle. Supervisor: grady morris
## 108              05/09/2000 11:03 am employees nelson and sims was riding in state vehicle on sr 3045 in guilford county on 4/19/00. Both employees was struck by private vehicle causing upper back & neck strain and injuries to the head. Medical attention @ cone ho
## 109                     06/23/2010 10:24 am (slee) employee on sov stopped to allow a pov in front to turn left. A pov behind them struck the sov in the rear. 06/23/2010 02:32 pm (slee) other person: eugene t. Ferrell, 110 east john st., goldsboro, 28365. 7/2/2010
## 110                                                                                             06/29/2001 02:27 pm (fblackmo) the employee was the driver of sign truck and was rear-ended by private vehicle. (jerry tilley was a passenger) supervisor: charles sharp
## 111            07/05/2000 03:32 pm Mrs. Switzer and Mr. Nixon was traveling on us highway 29 on 5/5/00; when a van pulled out in front of state sign truck. They were hit by a private van driver. Mrs. Switzer has injuries to her right arm, neck, cervical strain (up
## 112                                                                       07/26/2000 10:07 am employee was cutting trees around poison ivy with a weed eater; when he came in contact with poison plants. He has contact rash all over his body. Supervisor: a. L. Smith
## 113            07/31/2001 10:00 am (fblackmo) employee was at intersection of market street and boeing drive. Light turned green employee proceeded through green light when the dot vehicle was struck in drivers side by a private vehicle running red light. Supervis
## 114                                                                                                          08/08/2002 02:12 pm (jgibson) private party ran stop sign and state vehicle hit private vehicle and overturned, then came to rest on left side of the road.
## 115                                                                                                          08/24/2000 02:37 pm wet road from rain, state vehicle's tire went off road and truck then spun on wet pavement, lost control and went through private yard.
## 116                                                                                      08/24/2000 11:10 am employee sustained injuries to neck and shoulders area; when state vehicle was struck from behind by a private vehicle on 8/3/00. Supervisor: jeff robinson
## 117                                                                                          08/24/2000 11:48 am employee was removing a tree from roadway; when he came in poison ivy and he has contact rash both arms, face, and abdomen. Supervisor: greg g. Caudill
## 118                                                                                              08/30/2001 03:03 pm (fblackmo) employee was walking in high weeds and tripped over a piece of broken power line insulation and cut his hand. Supervisor: john m. Donald
## 119                09/12/2002 11:21 am (fblackmo) employee was traveling on nc 61 and shoe road when, a private vehicle ran the intersection striking state vehicle. Supervisor: d. R. Summers 11/6/2006 01:21 pm (fblackmo) claim closed. Clincher on 1/25/2005. Do not
## 120                                                                           09/24/2003 12:59 pm (fblackmo) employee states the injury occurred to his left knee when, a private vehicle ran a stop sign crossing into his lane of traffic. Supervisor; lt. B. P. Jones
## 121                                                                             1/11/2010 04:36 pm (blgay) employee and passenger had stopped for a vehicle in the road, when a private vehicle failed to stop and rear ended the state vehicle. Supervisor: k. R. Davis
## 122                                                1/23/2004 12:01 pm (jgibson) vehicle 3 was traveling east on sr 1360, brevard road. Vehicle 1 was traveling south on sr 1511, old plank road. Vehicle 3 pulled out in front of vehicle 1. Vehicle 1 struck vehicle 3.
## 123          1/25/2007 12:04 pm (fblackmo) employee was a passenger in sign truck traveling northbound on state road 1007. A dog ran out in front of the vehicle, driver swerved to the right to attempt to avoid hitting the animal, driver lost control of the vehicle
## 124         1/29/2007 02:35 pm (fblackmo) employee was driving dump truck when, he ran off the road onto the shoulder. Employee over corrected causing the truck to over turn. Employee felt pain in his neck, back, legs, and head. Supervisor: c. E. Thompson 1/29/200
## 125               1/29/2008 12:03 pm (fblackmo) employee (hinton) was lifting file storage boxes for retention to supply room when, she felt pain in her back. Supervisor: doug dunnagan 1/29/2008 12:13 pm (fblackmo) employee (jarrett) was lifting file storage boxes
## 126             10/05/2000 03:03 pm p. Caas was driving a crewcab on sr 1159 and approaching the intersection of sr 1142. A lp gas truck was turning off of sr 1142 onto sr 1159. The gas truck crossed the centerline, causing the driver side mirrors to hit. This res
## 127          10/14/2010 09:15 am (fblackmo) employee(s) was traveling south on us 13 when crew cab truck (1213-6236-0209) was struck on the right side rear by a tractor trailer. Both vehicles ran off the road into a wooded area. Each employee received multiple inj
## 128                                                                                                          10/15/2004 04:10 pm (fblackmo) employee was stopped at a stop sign when, a private vehicle ran into the rear of the state vehicle. Supervisor: darrell dean
## 129              10/2/2007 02:32 pm (fblackmo) employee was lifting up gas can that had tilted in back of crew cab when, gas sprayed into his face. Supervisor: j. M. Ellis 10/2/2007 02:54 pm (fblackmo) employee was placing tools back into the bed of crew cab truck
## 130              10/23/2000 04:20 pm employee came in contact with poison ivy plants while cutting trees on 10/26/00. Mr. Edwards has contact rash on both hands and around his eyes. Mr. Benge also came in contact with poison ivy plants on the same day. He has cont
## 131            11/03/2000 11:28 am Mr. Austin was performing routine maintenance work along highway 12 in dare county. A private vehicle entered the workzone, ran off the road, and struck dot crewcab and Mr. Austin. Mr. Austin was standing on the side of the road.
## 132             11/05/2001 10:32 am (slee) imap truck had stopped in the lane next to the median to assist the ncshp. Ncshp had already stopped in the lane with blue lights. Imap truck had flashers, strobes and a flashing arrow panel on. Private vehicle didn't try
## 133                11/08/2010 08:11 am (slee) trailer brakes locked up and the trailer started to slide. Trailer jack-knifed into rear of the truck. Upon immediate expection pintle hook was broke and safety chenges were still attached. 11/12/2010 02:42 pm (lvaugha
## 134           11/10/2005 09:37 am (fblackmo) employee was in f-150 pickup truck preparing control sings when, a tractor trailer struck the truck in the the rear. Employee felt pain in his head and shoulder. Supervisor: donald griffith 11/10/2005 10:13 am (fblackmo
## 135             11/18/1999 10:24 am Mr. Blizzard was involved in a vehicle accident on 9/30/99. Mr. Blizzard was waiting to make a turn at an intersection when a private car (in other lane) hit his left side of truck bed and rear-ended his vehicle. Mr. Blizzard su
## 136           11/29/2010 07:37 am (slee) employee was traveling east on greenwood and approaching harris st. When the driver of pov which was traveling turned in front of him toward harris st. Striking the front end of his truck nearly head on with the right front
## 137                                                                                              11/9/2004 02:37 pm (jgibson) private vehicle failed to yield right of way at intersection of nc 226 and nc 182. Private vehicle turned left into path of state vehicle.
## 138            11/9/2005 09:56 am (fblackmo) employee was driving pickup truck when, it was rear ended by a private vehicle. Employee felt numbness and back pain. Supervisor: j. M. Gibson 11/9/2005 10:10 am (fblackmo) employee was a passenger in truck when, it was
## 139           12/06/2000 03:39 pm employee was traveling on highway 485 checking (snow/ice) conditions on bridges on 11/19/00. A private party vehicle (joseph lee helms) crossed the median and hit dot vehicle head on. Mr. Ricky alan mason & Mr. Kenneth wayne smith
## 140                                                                   12/10/2002 07:31 am (fblackmo) employee states that she was in a car accident at the intersection of independence blvd. A white ford hit the state vehicle in the rear. Supervisor: louis mitchell
## 141           12/12/2006 08:19 am (fblackmo) employee was the driver in a sign truck that was making a left turn off of us 158 when, truck was struck from behind by another vehicle. Employee felt pain in his neck, back, and left shoulder area. Supervisor: faron h.
## 142              12/15/2006 11:49 am (fblackmo) employee was cutting a tree down when, heavy winds blew another tree on top of him causing injury to his head. Supervisor: joe ng 12/15/2006 04:21 pm (fblackmo) Mr. Murray has a laceration to back of head/hand. Super
## 143                                                                                               12/16/2003 10:52 am (fblackmo) employee was driving when she ran off the shoulder of the road causing the truck to flip over on drivers side. Supervisor: wayne knight
## 144          12/29/2009 12:46 pm (blgay) employee and another transportation worker were riding down us 74 business to the work site, when the truck dropped off into a sink hole. Not complaining of any injuries but wanted back, neck and legs checked out for safe m
## 145                      2/19/2004 10:09 am (fblackmo) employee states that a private vehicle (rv) was blocking both lanes of traffic when, he applied the brakes to avoid hitting the rv the trailer jack-knife causing the truck to overturn. Supervisor: l. W. Sehorn
## 146                                                                 2/20/2004 10:24 am (bhenders) employees were taking dead deer to bury it. Pov pulled out from sr 1414, lost control, and came into the west bound lane. Sov struck pov on the right side of the car.
## 147           2/3/2011 10:39 am (fblackmo) employee travis anderson was driving crewcab flatbed truck. He was at traffic light when the private own vehicle on his right side veered over into his lane. The private own vehicle front left tire hit the front right tir
## 148          2/7/2005 12:10 pm (fblackmo) employee was driving a dump truck loaded with an inbody sand spreader, spreading sand on ice when, he hit and icy spot on the road causing the truck to overturn. Employee experience pain in his neck area and left shoulder.
## 149               3/11/2009 04:52 pm (fblackmo) employee was driving (personal vehicle) to job site when, he was struck in the rear by a private own vehicle. Employee felt pain in back and neck area. Supervisor: brandon jones 3/11/2009 05:06 pm (fblackmo) employee
## 150                                                                                                                                  3/25/2004 02:42 pm (fblackmo) employee states, that there vehicle was hit in the rear by another vehicle. Supervisor: keith beverly
## 151          3/26/2010 11:10 am (fblackmo) employee was pushing snow with motor grader on interstate when, he was struck in the rear by a private vehicle. Employee was taken to durham regional to be checked out as a precautionary manner. No injury occurred from th
## 152                                          3/31/2005 12:29 pm (fblackmo) employee was crossing intersection when, private vehicle ran red light striking state truck on passenger side. Employee experience pain in his neck, back, and knees. Supervisor: k. R. Davis
## 153           4/22/2004 08:44 am (fblackmo) employee was operating a state vehicle driving back form a class in raleigh. Employee was stopped for a vehicle make a left turn, a private vehicle rear ended the state vehicle causing both the driver and passenger to ex
## 154                                                            4/23/2009 09:50 am (fblackmo) employee(s) was in state crew cab at stop light waiting to make left turn when, private own vehicle struck them in the rear. Both employees felt pain in their lower backs.
## 155                                              4/27/2010 05:09 pm (fblackmo) employee norman was picking up trash with employee martin when drink bottle with a hose released fumes of hydrogen chloride gas. Both employee inhaled the fumes. Supervisor: mark taylor
## 156          5/1/2007 02:53 pm (fblackmo) employee scott struck-driving and thomas dawson and contract employee alvin watson were passengers riding in a state vehicle to a job site at dot it hq at new hope center on capital blvd. They were stopped at the traffic l
## 157           5/15/2007 01:34 pm (fblackmo) employee (anderson) was stopped at stop light in sligo when, a private vehicle hit them in the rear. Employee has had problems with neck and lower back. Employee decided on 5-09-07 to go to the doctor to get checked out.
## 158                                    5/20/2005 01:12 pm (fblackmo) employees were attempting to remove lid from garden sprayer when, asphalt solvent contacted their eyes. The solvent came from a sprayer that another employee was moving. Supervisor: mark williams
## 159                6/26/2007 10:46 am (fblackmo) employee was driving john deere polaris down embankment to spray vegetation when, spray tank shifted causing polaris to flip on its side. Employee mashed/cut his right little finger. Supervisor: rj brown 6/26/2007 1
## 160           6/3/2004 09:39 am (fblackmo) employee and passenger was traveling to pick up inmates when, a car traveling in the opposite direction crossed over into their lane striking their vehicle. Employee pulled to the right shoulder hitting a mailbox, jumping
## 161                7/11/2007 01:20 pm (fblackmo) employee was standing on shoulder of road when, a car ran off the road and hit employee. Employee experienced several cuts, scrapes, and bruises. Supervisor: tim earp 7/11/2007 01:38 pm (fblackmo) employee (mcneese)
## 162          7/16/2009 08:41 am (fblackmo) both employees (crissman & peake) were touring the brunswick county jail during a tuberculosis(TB) outbreak inside the jail. At the time of the tour 31 cases was confirmed (2 staff members). Both employees received testin
## 163          7/8/2004 12:53 pm (fblackmo) employee stated on form 19 that while traveling down 29 north near law road exit that the fire extinguisher discharged into the cab causing chemical exposure to head, face, eyes, and chest area. Supervisor: wayne childress
## 164          7/9/2010 02:48 pm (fblackmo) employees were making repairs to tar kettle when flames came from under the machine causing both employees to be burn. Employee gates received burns to his left forearm, elbow, and hand. Supervisor: robert kaufman employee
## 165                                                                    8/9/2006 11:30 am (fblackmo) employee was driving a dump truck on a dusty unpaved road when, he rear ended the dump truck in front of him and his knees hit the dash. Supervisor: charles f. Vick
## 166             9/1/2009 02:45 pm (fblackmo) employee was operating state assigned vehicle that was stop at traffic light when, private vehicle failed to stop causing a rear end collision. Employee felt pain in his neck and back area. Supervisor: ben ander riggs 9
## 167                               9/13/2005 11:21 am (fblackmo) employee states while stopped at traffic light a private own vehicle struck him from behind causing him to also hit a car in front of him. Employees felt pain in back area. Supervisor: ann lorscheider
## 168          9/14/2004 11:29 am (fblackmo) employee was traveling south on nc 226 when, a tractor trailer traveling north lost control of the trailer in a curve. The trailer jack-knife and came around striking employees truck on the drivers side. Tractor trailer d
## 169               9/24/2007 04:01 pm (fblackmo) employee was traveling 45 mph when he hit a bump in the road causing him to bounce in the seat which in turned stretched a muscle in his stomach. Supervisor: wesley powell 9/24/2007 04:23 pm (fblackmo) employee (lind
## 170                                                                                                                                                                                                                After pepper spray training EE had problems with eyes
## 171                                                                                                                                                                                                       An inmate threw an unknown substance in the officer's face. ()
## 172                                                                                                                                                                                                                                               Anxiety/stress related
## 173                                                                                                                                                                                                                                                Apparent spider bite.
## 174                                                                                                                                                                                                                                                             Asbestos
## 175                                                                                                                                                                                                                                                  Assaulted by inmate
## 176                                                                                                                                           Assisting patient walking-patient attempted to drop to floor-bore weight-patient combative during bath kicking/yanking. ()
## 177                                                                                                                                                                                                                                                  Automobile accident
## 178                                                                                                                                                                                                                 Came in contact w/poison ivy while mowing at stadium
## 179                                                                                                                                                                                                                                                         Car accident
## 180                                                                                                                                                                                                                                                        Carpal tunnel
## 181                                                                                                                                                                                                                                            Carpal tunnel, both hands
## 182                                                                                                                                                                                                                                             Caught finger in door ()
## 183                                                                                                                                                                                                                                          Cell extraction training ()
## 184                                                                                                                                                                                                                        Changing aggressive resident and injured back
## 185                                                                                                                                                                                        Due to construction in the building EE suffered from carbon monoxide exposure
## 186                                                                                                                                                                                                                                During eri, pt bit EE on right arm ()
## 187                                                                                                                                                                                                                        During eri, pt kicked EE in the right knee ()
## 188                                                                                                                                                                                                                           During eri, pt scratched EE on left arm ()
## 189                                                                                                                                                                                                                                 During eri, pt spat in EE's mouth ()
## 190                                                                                                                                                                                                                            EE came in contact with inmate who had TB
## 191                                                                                                                                                                                                                                        EE had a reaction to ppd test
## 192                                                                                                                                                                                                                                       EE inhaled fumes on hallway ()
## 193                                                                                                                                                                                                    EE pulled a shelf loose and his left arm came down on a drill bit
## 194                                                                                                               EE rcvd call to fix leak in b-level pump rm. Whilesearching for leak, heard pump kick on, then loud noise, pipe burst above his head dropn waste water
## 195                                                                                                                                                                                                                                           EE slammed finger in door.
## 196                                                                                                                                                                                                                                     EE slipped and fell on wet floor
## 197                                                                                                                                                                                                                                         EE slipped on floor and fell
## 198                                                                                                                                                                                                                           EE slipped on wet floor injuring left knee
## 199                                                                                                                                                                                                                      EE stated restraining defendant, fluid transfer
## 200                                                                                                                                                                                                                              EE states an inmate spitted in his face
## 201                                                                                                                                                                                                                 EE states an inmate threw some unknown liquid at her
## 202                                                                                                                                                                                                                 EE states an inmate threw some unknown liquid at him
## 203                                                                                                                                                                                                               EE states during a training course he injured his back
## 204                                                                                                                                                                                                                            EE states during the flood he was injured
## 205                                                                                                                                                                                                                        EE states during training he injured his back
## 206                                                                                                                                                                                                                EE states during training he injured his lt shoulder.
## 207                                                                                                                                                                                                  EE states he slipped and fell on a wet floor injurying his rt knee.
## 208                                                                                                                                                                                                                       EE states he was bitten by a dog on the lt leg
## 209                                                                                                                                                                                                                   EE states he was bitten by a spider on the rt hand
## 210                                                                                                                                                                                                                     EE states he was struck in the face by an inmate
## 211                                                                                                                                                                                                                   EE states he was struck in the mouth by an inmate.
## 212                                                                                                                                                                                                                                EE states she was exposed to scabies.
## 213                                                                                                                                                                                                               EE states she was involved in a motor vehicle accident
## 214                                                                                                                                                                                                           EE states that during a use of force he was exposeto blood
## 215                                                                                                                                                                                                                    EE states the wind blew something into his lt eye
## 216                                                                                                                                                                                                            EE states while assisting with a pt she injured her back.
## 217                                                                                                                                                                                                          EE states while assisting with client she injured her back.
## 218                                                                                                                                                                                                              EE states while assisting with pt she injured her back.
## 219                                                                                                                                                                                   EE states while driving state vehicle he was involved in a motor vehicle accident.
## 220                                                                                                                                                                                                               EE states while lifting a client she injured her back.
## 221                                                                                                                                                                                                                   EE states while lifting a pt she injured her back.
## 222                                                                                                                                                                              EE states while opening and closing the door to the boiler room there was an explosion.
## 223                                                                                                                                                                                           EE states while trying to keep resident from falling she injured her back.
## 224                                                                                                                                                                                                               EE states working patient floor and exposed to scabies
## 225                                                                                                                                                                                                                          EE stepped into a hole and twisted his back
## 226                                                                                                                                                                                                                                      EE strained back lifting client
## 227                                                                                                                                                                                                                                    EE strained back lifting patients
## 228                                                                                                                                                                                                                                 EE strained back restraining patient
## 229                                                                                                                                                                                                                          EE strained back trying to restrain patient
## 230                                                                                                                                                                                                                                   EE strained chest moving furniture
## 231                                                                                                                                                                                                                           EE strained left elbow restraining student
## 232                                                                                                                                                                                                                                            EE tripped on sidewalk ()
## 233                                                                                                                                                                                                                                       EE was assaulted by a patient.
## 234                                                                                                                                                                                                                                           EE was assaulted by inmate
## 235                                                                                                                                                                                                        EE was assisting w/ treatments on a cat and was clawed by cat
## 236                                                                                                                                                                                               EE was attacked by a patient that was being escorted to seclusion room
## 237                                                                                                                                                                                                                                           EE was attacked by patient
## 238                                                                                                                                                                                                                   EE was checking cell door due to it being blocked.
## 239                                                                                                                                                                           EE was dumping a load of sand into the truck when the tractor tipped over down an incline.
## 240                                                             EE was enroute to complete home visit and was sitting at red light at intersection of royall ave and berkeley ave. Light changed to green, began to accelerate and was hit in the rear by car behind. ()
## 241                                                                                                                                                                                                                                                 EE was exposed to TB
## 242                                                                                                                                                                                     EE was exposed to hepatitis a from co-worker with hepatitis a whoe prepared food
## 243                                                                                                                                                                                                                                        EE was exposed to pepperspray
## 244                                                                                                                                                                                                                                         EE was exposed to poison ivy
## 245                                                                                                                                                                                                                                             EE was exposed to scabie
## 246                                                                                                                                                                                                                            EE was in contact with inmate that had TB
## 247                                                                                                                                                                                                                      EE was injured while trying to restrain patient
## 248                                                                                                                                                                                                                              EE was kicked in the knee by a patient.
## 249                                                                                                                                                                     EE was microfilming documents that had been in storage for one year and was bitten by papermites
## 250                                                                                                                                                                                                                     EE was moving office furniture and strained back
## 251                                                                                                                                                                                                                               EE was possibly exposed to hepatitis a
## 252                                                                                                                             EE was preparing to clean sivler in sink turned on hot water and faucet value came off causing water to shot out hitting EE's upper body
## 253                                                                                                                                                                                                                  EE was pulling resident up in bed and strained back
## 254                                                                                                                                                                                                                       EE was questioning pt, pt spat in EE's face ()
## 255                                                                                                                                                                                                                                          EE was restraining student.
## 256                                                                                                                                                                                                                           EE was struck in the left eye by a patient
## 257                                                                                                                                                                                                                              EE was struck in the mouth by a patient
## 258                                                                                                                                                                                                                   EE was traveling and was in an automobile accident
## 259                                                                                                                                                                                        EE was using cleaner powder to clean bathroom and later had rash on left neck
## 260                                                                                                                                                           EE was working on building renovations and discovered a pipe in the wall which was wrapped in asbestos. ()
## 261                                                                                                        Employee stated that she was helping put a patient in restraint room. Patient was sliding out of the chair and punched and grabbed her lt arm and lt hand. ()
## 262                                                                                                                                                                                                                                                  Employee stated, ()
## 263                                                                                                                                                       Employee was at a conference. Together with two other employees, they were fender bendered while in a taxi. ()
## 264                                                                                                          Employee was exposed to poor conditions at a taxpayers house where he was bitten approximately 200 times by various insects while serving a tax warrant. ()
## 265                                                                                                         Employee was involved in a motor vehicle accident in route to our research station. Van was at a complete stop when another vehicle hit them from behind. ()
## 266                                                                                                                                                                                                     Exposed to TB while conducting search of offender's residence ()
## 267                                                                                                                                                                                                                                                 Exposed to active TB
## 268                                                                                                                                                                                                                                                 Exposed to pertussis
## 269                                                                                                                                                                                                                                 Exposed to resident w/conjunctivitis
## 270                                                                                                                                                                                                                                        Exposed to resident w/scabies
## 271                                                                                                                                                                                                                                                   Exposed to scabies
## 272                                                                                                                                                                                                                   Exposed to white powder substance - hands and nose
## 273                                                                                                                                                                                                                                      Exposure to active tuberculosis
## 274                                                                                                                                                                                                                                              Exposure to body fluids
## 275                                                                                                                                                                                                                                         Exposure to pediculosis/lice
## 276                                                                                                                                                                                                                                                  Exposure to scabies
## 277                                                                                                                                                                                                                                                  Fell down stairs ()
## 278                                                                                                                                                                                                                                                   Fell off ladder ()
## 279                                                                                                                                                                                                                                        Fell on ice in parking lot ()
## 280                                                                                                                                                                                                                                    Fell on steps coming into work ()
## 281                                                                                                                                                                                                                                                 Fell on wet floor ()
## 282                                                                                                                                                                                                                                            Hit in left eye by client
## 283                                                                                                                                                                                                                                                Hit left knee on desk
## 284                                                                                                                                                                                                                                             Human bite to r. Hand ()
## 285                                                                                                                                                                                                                                                                 I ()
## 286                                                                                                                                                                                                                                                  I /// hospital: n/a
## 287                                                                Ie was assisting investigating a criminal case. While there, the deceased suspect tested positive for TB, the other 3 suspects lived with him. The other 3 suspect were interviewed by the agents. ()
## 288                                                                                                                                                         Injured lower back while digging out large holes in ground at avian prop. Using heavy equipment. Lower back.
## 289                                                                                                                                                                                                                                                     Injury to rt eye
## 290                                                                                                                                                                                                                                                    Inmate assault ()
## 291                                                                                                                                                                                                                                             Inmate spit in EE's face
## 292                                                                                                                                                                                                           Inmate threw an unknown substance in the officer's face ()
## 293                                                                                                                                                                                                                                                               Keying
## 294                                                                                                                                                                                                                                                    Kicked by patient
## 295                                                                                                                                                Location: 0571 surry /// injury: cut middle finger on (r) hand /// physician: Dr. Stephen t. Walker /// hospital: n/a
## 296                                                                                                                            Location: 3021 beaufort /// injury: muscle strain in cervix area /// physician: Dr. Dennis czuchra /// hospital: family medical care, inc
## 297                                                                                                                                                                        Location: 3041 edgecombe /// injury: hearing loss /// physician: Dr. Newsome /// hospital: na
## 298                                                                                                                                                              Location: 3043 wayne /// injury: muscle strain /// physician: n/a /// hospital: wayne memorial hospital
## 299                                                                                                                                                 Location: 3043 wayne /// injury: poison ivy on arms & legs /// physician: Dr. Karlus artis /// hospital: urgent care
## 300                                                                                                                                                                           Location: 3081 randolph /// injury: twisted left knee /// physician: n/a /// hospital: n/a
## 301                                                                                                                                                               Location: 3091 rowan /// injury: poison oak over body /// physician: na /// hospital: romedical center
## 302                                                                                                                      Location: 3101 cabarrus /// injury: insect sting on inside of right forearm /// physician: Dr. Eugene coles /// hospital: stanly memorial hosp.
## 303                                                                                                                                                              Location: 3116 wilkes /// injury: foreign object in (l) eye /// physician: leo baughm /// hospital: n/a
## 304                                                                                                                         Location: 3128 cleveland /// injury: body exposed to inspects (chiggers) /// physician: Dr. Larry smith /// hospital: shelby family practice
## 305                                                                                                                                                                 Location: 3131 burke /// injury: left eye /// physician: n/a /// hospital: grace occupational health
## 306                                                                                                                                                                      Location: 3162 craven /// injury: poision oak /// physician: sea level clinic /// hospital: n/a
## 307                                                                                                                                             Location: 3166 dare /// injury: foreign body in right eye /// physician: Dr. J. Riddick /// hospital: dare vision center
## 308                                                                                                                       Location: 3215 25 /// injury: strained neck & back muscles. /// physician: Dr. Charles nance /// hospital: new hanover regional medical center
## 309                                                                                                                                                    Location: 3443 wake /// injury: foreign matter in (l) eye /// physician: n/a /// hospital: coastal medical center
## 310                                                                                                                                                       Location: 3445 cabarrus /// injury: poison ivey /// physician: Dr. Cole /// hospital: stanly memorial hospital
## 311                                                                                                                                                   Location: alamance, d-7 /// injury: poison ivy all over body /// physician: alamance walk-in-clinic burlington, nc
## 312                                                                                                                                                                                                                         Location: burke, d-13 /// injury: right knee
## 313                                                                                                                                              Location: caswell county division 7 /// injury: lower back /// physician: none on form 19 /// hospital: none on form 19
## 314                                                                                                                                                                             Location: caswell, d-7 /// injury: lower legs /// physician: Dr. Jezsik /// hospital: na
## 315                                                                                                                                                                          Location: cleveland, d-12 /// injury: right index finger /// physician: na /// hospital: na
## 316                                                                                                                                Location: dare co. Ferry division /// injury: foreign body in left eye /// physician: Dr. Adams, dare vision center, manteo, nc 27954
## 317                                                                                                                                                   Location: duplin, d-3 /// injury: poison ivy all over body /// physician: na /// hospital: duplin general hospital
## 318                                                                                                                                                               Location: forsyth, d-9 /// injury: right knee /// physician: pine ridge family practice, winston-salem
## 319                                                                                                                                                                                         Location: gaston co. Enforcement /// injury: subject was a hepatitis carrier
## 320                                                                                                                     Location: granville county div. 5 /// injury: upper neck and left arm strain /// physician: michael d. Michael, MD, 1012 college st., oxford, nc
## 321                                                                                                                                                                 Location: granville, d-5 /// injury: lower back /// physician: cara l. Davis, m. D. /// hospital: na
## 322                                                                                                                                          Location: halifax co., bridge maintenanc /// injury: poison ivy on legs and arms /// physician: frazier, roanoke rapids, nc
## 323                                                                                                                                                                                                                        Location: halifax, dmv /// injury: lower back
## 324                                                                                                                                                                                           Location: hyde, d-1 /// injury: strain in left knee /// physician: Dr. Oak
## 325                                                                                                                                                                                    Location: jackson, d-14 /// injury: lower back /// physician: na /// hospital: na
## 326                                                                                                                                                  Location: lenoir, d-2 /// injury: right ribs /// physician: Dr. Nina h. Ward /// hospital: lenoir memorial hospital
## 327                                                                                                                                                                        Location: macon, d-14 /// injury: lower back /// physician: Dr. David franks /// hospital: na
## 328                                                                                                                                                                  Location: mecklenburg, d-10 /// injury: left shoulder /// physician: c. N. Owensby /// hospital: na
## 329                                                                                                                                    Location: moore co division 8 /// injury: emergency room visit after motor vehicle accident /// hospital: moore regional hospital
## 330                                                                                                                                                           Location: nash, d-4 /// injury: right hand /// physician: Dr. Kirk jensen /// hospital: nash general hosp.
## 331                                                                                                                                                                         Location: pender 3031 /// injury: insect bite /// physician: bruce williams /// hospital: na
## 332                                                                                                                                                               Location: polk 3447 /// injury: forearm and wrist /// physician: Dr. C. Trott /// hospital: park ridge
## 333                                                                                                                                                                                    Location: randolph, d-8 /// injury: right foot /// physician: na /// hospital: na
## 334                                                                                                                                                       Location: robeson 3061 /// injury: left eye /// physician: Dr. Thomas wilson /// hospital: carolina eye clinic
## 335                                                                                                                                         Location: union, d-10 /// injury: cervical sprain /// physician: Dr. Okwara /// hospital: union memorial hospital monroe, nc
## 336                                                                                                                                                                                      Location: union, d-10 /// injury: lower back /// physician: na /// hospital: na
## 337                                                                                                                                                                                        Location: wake, d-5 /// injury: lower back /// physician: na /// hospital: na
## 338                                                                                                                                                                                             Location: wake, dmv /// injury: right and left wrists /// physician: cra
## 339                                                                                                                         Location: washington county div. 1 /// injury: poison ivey on hands and face /// physician: oak chang y., MD, us 64 east, plymouth, nc 27962
## 340                                                                                                                      Location: wilkes, d-11 /// injury: acute sprain to lower back /// physician: Dr. S. E. Erlandscon /// hospital: hugh chatham memorial elkin, nc
## 341                                                                                                                                                                         Location: wilson 3042 /// injury: back /// physician: m. Sauls /// hospital: wilson memorial
## 342                                                                                                                                                                           Location: wilson, d-4 /// injury: back /// physician: Dr. Richard burdick /// hospital: na
## 343                                                                                                                                                                                                                                                        Mental stress
## 344                                                                                                                                                                                                                                               Motor vehicle accident
## 345                                                                                                                                                                                                                   Motor vehicle accident in which he was a passenger
## 346                                                                                                                                                                       On 2-27-2013, the nurse supervisor informed me of a pinworm outbreak in the area where I work.
## 347                                                                                                                                                                                  Over period of time rolling heavy trash cart over gravel caused pain in left arm ()
## 348                                                                                                                                                                                                                                                 Patient assaulted EE
## 349                                                                                                                                                                                                        Person who has tuberculosis came into area in which EE worked
## 350                                                                                                                                                                                                                                             Positive reaction to ppd
## 351                                                                                                                                                                                              Possible noise induced hearing loss due to occupational noise exposure.
## 352                                                                                                                                                                                                                                                   Possible tick bite
## 353                                                                                                                                                                                                                  Processing crime scene and suspect possibly had TB.
## 354                                                                                                                                                                                                                                                    Pt attacked EE ()
## 355                                                                                                                                                                                                                                           Pulling resident up in bed
## 356                                                                                                                                                                                                                                                Reaction to ppd test.
## 357                                                                                                                                                                                                                       Redirecting patient-punched under r. Breast ()
## 358                                                                                                                                                                                                                                   Repetitive motion using hand punch
## 359                                                                                                                                                                                                                                 Repetitive writing and computer use.
## 360                                                                                                                                                                                 Replacing gate roller near razor wire when gate shifting at, cut left pinkie finger.
## 361                                                                                                                                                                                                                   Retest of hearing test as a result of high average
## 362                                                                                                                                                                                                                                                              Slipped
## 363                                                                                                                                                                                                                                                       Slipped on ice
## 364                                                                                                                                                                                                                                     Slipped on ice in parking lot ()
## 365                                                                                                                                                                                                                            Slipped on stairs, pain in shin and ankle
## 366                                                                                                                                                                                                                                                          Unspecified
## 367                                                                                                                                                                                                                                                      Use of force ()
## 368                                                                                                                                                                                                                                                       Using computer
## 369                                                                                                                                                                                                                                                    Washing dishes ()
## 370                                                                                                                          While restocking shelves, a box of honey buns fell off shelf and laded on plaintiff's right hand/wrist while it rested on a shelf below. ()
## 371                                                                                                                                                                                         While stopped at a traffic light, vehicle was rear-ended by another vehicle.
## 372                                                                                                                                                                                                                                                      Word processing
## 373                                                                                                                                                                                                                 Work exposure to inmate with bacterial meningitis ()
## 374                                                                                                                                                                                                             Worked with several patients diagnosed with pink eye. ()
## 375                                                                                                "I reached to catch the pharmacy door and my 4th finger left hand was shut in door. " "putting up stock in pharmacy, left hand 4th finger shut in pharmach door. " ()
## 376                                                                                                                                                                                     "bent over to pick up air tank; felt back give a little; could not pick up tank"
## 377                                                                                                                             "extreme amount of bending and twisting required to clean up around the cattle and feed them. Painbegan in left hip during this process.
## 378                                                                                                                                                                                                                       "one time visit only per ricky" using computer
## 379                                                                                                                                "the stress of not being able to do my former job due to my back problem has led to more depression and more frustration in my life."
## 380                                                                                                               "turned to r to go down hall to do round, when I turned to r I felt a pop & twist to outer l side from ankle. Pain shot to behind leg & then to calf "
## 381                                                                                                                                          "when climbing trailer to check ther truck-box at the top noticed an odd discomfort in groin area" as per officer humphrey.
## 382                                                                                     "while attending an advanced motorcycle riders course held at gtcc, I was thrown over the handlebars of the motorcycle landing on my recent surgically repaired right knee. " ()
## 383                                                                                                                                                                                                                                                         $785. 58 aww
## 384                                                                                                                 'cubicle overhead shelving fell forward and hit employee on the right hand side of her head as she was hanging paperwork to the wall of her cube. ()
## 385                                                                                 'julie was in the file room by herself when the injury occurred. She stated that she bent down to place files on the bottom shelf and bumped her buttock area on the trash can. ' ()
## 386                                                                                                                                                                                              'slipped on black ice in parking lot of courthouse coming into work' ()
## 387                                                                                                                                                                               'walking through public lobby and fell down- landed on left knee (7 mos. Pregnant)' ()
## 388                                                                                                                                                                                                                        (blood exposure) no details were provided. ()
## 389                                                                                                                             (cell extraction training) officer states while in training, she was conducting a cell extraction and the man shield fell on her leg. ()
## 390                                                                                                                                 (dizziness & hypertension) sitting in the chair in the control room; does not remember anything except staff standing around her. ()
## 391                                                                                                                                                                                      (firearms)getting up with the shotgun I fell back, hitting my head and back. ()
## 392                                                                                                                                                                                            (index) finger caught in the door while trying to catch the door to cpod.
## 393                                                                                                                                                          (injured worker was on containment line when he slipped and fell causing a strain injury to his lower back)
## 394                                                                                                                                           (l) hand was on a chest plate, my (r) hand was cutting toward the patient neck when my left hand slipped into my knife. ()
## 395                                                                                                                                                                                                        (mi) EE fell on mossy steps and put arm back to catch herself
## 396                                                                                                                                                                                       (mi) EE was lifting garbage bag and felt pain in lower back then fell to floor
## 397                                                                                                                                                            (mi) EE went to parking lot to close car window due to storm approaching and twisted her ankle on a rock.
## 398                                                                                                                                                                  (mi) EE woke up saturday morning with back spasms, EE complained that injury came from office chair
## 399                                                                                                                                          (mi)EE pushing auto scrubber, cleaning the floor, slipped in water on the floor, causing her left leg to twist & left ankle
## 400                                                                                                                            (r) hand, wrist, elbow, shoulder.. This is a naggingworsening pain in rt hand wrist forearm elbow & shoulder maybe caused by computer use
## 401                                                                                                                                 (r)knee/ankle. It was raining when I walked into carrington hall, I stepped onto the tile floor I slipped and fell onto my knees. ()
## 402                                                                                                                                                                                  **************** do not pay on this claim ******************************** inactive
## 403                                                                                                                                                                                                                   *********************see log notes****************
## 404                                                                                                                                                                                                                   ********************see log notes*****************
## 405                                                                                                                                                                                                                   *******************see log notes******************
## 406                                                                                                                                                                                                                    ***************see log notes*********************
## 407                                                                                                                                                                                                                   ***************see log notes**********************
## 408                                                                                                                                                                                                                                    ***not an active claim***********
## 409                                                                                                                                                                   *EE states* I was moving a case of paper off the shelf on the floor while pulling office supplies.
## 410                                                                                                                          *EE states* that he was squated down sliding pieceof paper under the door when c/o brock opened the wicker door and it hit him in the head.
## 411                                                                                                                                                                                             *EE states* that while lifting a medical exam table he strained himself.
## 412                                                                                                                                     *EE states* that while responding to emergency code he ran down the hallway, turned the corner & slipped entering the chow hall.
## 413                                                                                                                                *EE states* while doing routine search I picked upup a jacket & felt something prick my finger. I pulled a tatoo gun from the jacket.
## 414                                                                                                                                                                                                   *EE states* while standing in control noticed arm itching, burning
## 415                                                                                                                          *alleged reptv motion, left shldr, cervical spine &left wrist. This claim involves 2 others occuptnl disease claims #10072184 and #01058473
## 416                                                                                                                                                                         *employee state* after being sprayed with pepper spray left eye has been hurting since then.
## 417                                                                                                                      *employee states* I was making my round in the pods and as I was walking in b pod c/o penny closed slider door and it hit my right arm/shoulder
## 418                                                                                                                                                                                   *employee states* a bug bit me on the palm of my hand just below my little finger.
## 419                                                                                                                                                                                              *employee states* injured left knee while doing a crdt instructed move.
## 420                                                                                                                       *employee states* inmate pushed me with his right hand out of the way & preceeded to run. He pushed me with his right hand to my left shoulder
## 421                                                                                                                                                                    *employee states* material from boxes of clothes touched arms causing them to itch and break out.
## 422                                                                                                                      *employee states* she was fully squatted down retrieving paperwork from metal cabinet & she was getting up she felt and heard something tear in
## 423                                                                                                                *employee states* walking from the fire panel to door panel controls. Chair did not move and my feetgot caught in chair leg. Wheel was not on chair s
## 424                                                                                                                *employee states* while doing crdt training she injured her left wrist while conducting the bent wrist application and having the bent wrist applied.
## 425                                                                                                                                                          *employee states* while performing a breakfall crdt) and while attempting to stand she hurt her left ankle.
## 426                                                                                                                                         *employee states* while responding to an emergencycall for assistance going down steps I twisted my knee while on the steps.
## 427                                                                                                                              *employee states* while unloading truck of pillows& matresses she turned to hand some pillows to an officer and heard her shoulder pop.
## 428                                                                                                                                                                                                  *employee states* while walking down steps I twisted my right knee.
## 429                                                                                                                 *employee states* while walking up stairs knee polled two times then started having sharp pains thatcome and go when moving around and certain ways.
## 430                                                                                                                                          *employee states*giving out equipment to employee and trap door caught her finger which was her middle finger on left hand.
## 431                                                                                                                                                                 *employee states*inmate struck him in chest causing hime to hit the wall and hurt his left shoulder.
## 432                                                                                                                                  *employee states*while exiting facility something tore in his right leg and he fell to the concrete on side walk outside gatehouse.
## 433                                                                                                                                  *officer states* that during officer simulation hetackled an inmate's father to the ground & at thattime he injured his right knee.
## 434                                                                                                                                                                                           *officer states* while clearing yard #2 his ankle rolled on uneven ground.
## 435                                                                                                                          ++++ aww - $573. 58 c/r - $382. 41 ++++ trying to hold her head up to keep it from hittingit on the floor, hurting r shoulder and neck, arm
## 436                                                                                                             +cts. It was a gradual process that over 3yrs it got worse. EE tried alternatives to sx. Cannot function at a high level both at work/home. Alot of pain
## 437                                                                                                                                                                                            . 5mls of TB culture dropped & splashed on floor. Exposure to TB culture.
## 438                                                                                         01/02/2003 02:55 pm (fblackmo) employee was standing near wood chipper when, the impact from one of the limbs hit him on his right knee. Supervisor: ralph thomas mcmanus jr
## 439                                                                                                                                      01/02/2003 03:09 pm (fblackmo) employee states while feeding chipper a limb hit him in his right eye. Supervisor: john w. White
## 440                                                                                                                        01/02/2003 03:22 pm (fblackmo) employee states while pulling apart gurney, experienced pain in right wrist and hand. Supervisor: shane murray
## 441                                                                                                                       01/02/2003 03:31 pm (fblackmo) employee states while lifting a piece of rotten wood, felt pain in his right arm. Supervisor: matthew oliverson
## 442                                                                                                    01/02/2003 07:31 am (fblackmo) employee states while removing pin from snow plow, his hand slipped causing the injury to his left thumb. Supervisor: m. E. Anders
## 443                                                                                                       01/02/2003 07:45 am (fblackmo) employee was changing gears in his truck when, gear popped out of second hitting him on his right hand. Supervisor: bucky vance
## 444                                                                          01/03/2000 02:31 pm Mr. Scott was drilling holes when he placed drill bit he accidently touched trigger. He cut his left index finger requiring six stitches. Supervisor: d. E. Bowers, jr.
## 445                01/03/2000 02:45 pm Mr. Talley was hit by an axe on his right forearm causing abrasions and swelling on 12/3/99. Mr. Talley was struck by an inmate helping him knock the side of tailgate in placed. Supervisor: r. C. Wood 01/04/2000 10:13 am note
## 446                                                                                 01/03/2000 03:08 pm on 12/6/99 Mr. Harbison was involved in motor vehicle accident injuring his left knee. His left knee hit the dash board upon impact. Supervisor: e. D. Zimmerman
## 447                                                                                                                01/03/2000 03:23 pm Mr. Ledford was working cutting and chipping brush on right of way, when debris got in his right eye. Supervisor: d. L. Carpenter
## 448                    01/03/2000 04:05 pm Mr. Mcswain (dot employee) was fighting a contractor employee while working on a project on 12/2/99. When he fell and dislocated his right shoulder and bruises to the back of his head. Supervisor: supervisor: a. S. Bailey
## 449                                                                                                01/03/2000 04:18 pm Mr. Owens was removing scales from trunk of vehicle when the truck lid fell down striking him on his left elbow. Supervisor: capt. David robinson
## 450                                                                                                                                  01/03/2001 02:59 pm employee stated after moving a box of towel ends she felt pain in her lower back area. Supervisor: j. R. Sutton
## 451                                                                                                                                      01/03/2001 03:07 pm employee wad lifting motor grader blades; when he felt pain in his lower back. Supervisor: cecil bowser, jr
## 452                                                                                             01/03/2001 03:12 pm employee was pulling brush when she came in contact with poison ivy plants. She has contact rash on her face and left arm. Supervisor: kent d. Boyer
## 453                                                                                  01/03/2001 03:17 pm employee was attempting to board (climb) his truck; when his foot slipped on snow/ice causing him to fall on his rear end (buttocks). Supervisor: jeff cabaniss
## 454                                                                     01/03/2001 03:22 pm employee was blowing chips of wood; when he came in contact with poison ivy plants. Mr. Collins has contact rash and irritation all over his body. Supervisor: kent d. Boyer
## 455                                                                     01/03/2001 04:18 pm employee was loading limbs on truck when he came in contact with poison ivy plants. Mr. Watson has contact rash o his left temple (forehead). Supervisor: thomas j. Burchell
## 456             01/03/2001 04:23 pm employee and inmates was cutting a dead trees on 12/21/00. Employee was walking on a limb that was laying across the bottom of a ditch to keep his feet from getting wet. Mr. Schneider was carrying chain saw (not on) when he lost
## 457                                                                                                               01/05/2000 02:10 pm Ms. Hart sprain/strain her right wrist while pulling sign post to remove it form the ground on 12/23/99. Supervisor: charles sharp
## 458              01/05/2000 02:17 pm employee was heating a drainpipe on liquid asphalt tank on 12/20/99, when liquid asphalt came in contact with Mr. Jordan's face and eyes. He was attempting to loosen the hardened material when it exploded. Supervisor: charles f
## 459                                                  01/05/2000 02:26 pm Mr. Smith was working on I-40/85 at the tucker street bridge when his left foot was ran over by a truck. Mr. Smith was climbing off the truck at the time of incident. Supervisor: j. S. Walker
## 460                                                                          01/05/2000 02:37 pm employee was adjusting brakes on a truck with a ratchet in left hand, so s cam would bottom out on roller, when he mashed left middle finger. Supervisor: d. E. Clapton
## 461                                                                       01/05/2000 02:46 pm Mr. Moore was marking locations for temporary lane closure signs on I-40, when he stepped into an old guardrail post hole injuring his right knee. Supervisor: j. R. Clark
## 462                                                                                                               01/05/2000 02:54 pm Mr. Baxter foot hit the front wheel of exy-go cart causing him to trip and fall bruising his left knee. Supervisor: d. L. Ferguson
## 463              01/06/2000 09:42 am Ms. Hill has pain in both wrist and arms due to repetitive motion using typewriter, and computer terminal on her job. She has a note from her doctor stating she needs to avoid using her hands for the next two weeks. Supervisor:
## 464                                                                                                01/06/2003 10:21 am (fblackmo) employee state due to repetitive motions of using her keyboard her center finger on right hand would not move. Supervisor: jay stancil
## 465                                                                                                01/07/2000 09:55 am Mr. Farmer injured his right hip while attempting to remove a diesel fuel can from gang truck, when he lost his balance. Supervisor: g. S. Harris
## 466                                                                                  01/07/2000 11:39 am Mr. Lane was using a crowbar to pry a board loose, when the board gave way causing him to hit himself in the head with the crowbar. Supervisor: dennis w. Baker
## 467                                                  01/07/2002 03:33 pm (fblackmo) employee stated she was reaching for posting book when she felt a numbness in hand and tingling sensation in her neck that caused her to drop the book. Supervisor: diane strickland
## 468            01/07/2002 03:50 pm (fblackmo) employee was moving a pressure washer with fellow employee wayne mcgaha and felt a pain in his lower back. Employee quit and sat down on a near by trailer. When employee got off the trailer he states the pain was worst
## 469            01/07/2002 04:08 pm (fblackmo) employee was stepping out of the crew cab truck(front drivers side) when he slipped and fell. Employee had his right hand on the door and his left hand on the door jam when he slipped. Employee grabbed the door with bo
## 470                                                                       01/07/2002 04:26 pm (fblackmo) employee was unloading a roll of fence wire with assistance from another employee. Employee stated he felt a pull muscle in his leg. Supervisor: r. L. Matthews
## 471                                        01/07/2002 05:07 pm (fblackmo) employee was helping unload 120' diameter metal pipe. Employee jumped from one pipe to another and when he landed on the second pipe employee twisted his right ankle. Supervisor: j. E. Smith
## 472                                                                                                            01/07/2002 05:25 pm (fblackmo) employee states that his foot slipped off truck causing his arm to jerk in an upward position. Supervisor; a. C. Culpepper
## 473                                                                                                              01/07/2003 01:09 pm (fblackmo) employee was cutting a tree with chainsaw. The tree kicked back and struck employee in the face. Supervisor: k. R. Davis
## 474                                                       01/07/2003 12:55 pm (fblackmo) hearing loss in both ears due to exposure to loud noise. Operating chainsaw, asphalt machine, and weighing stone in high noise area near rock crusher. Supervisor: k. J. Putnam
## 475                                                                            01/08/2001 01:56 pm employee was walking on large frozen clumps of clay; when one rolled under her foot. This caused her to fall twisting her right ankle. Supervisor: thomas j. Burchell
## 476                                                                      01/08/2001 02:00 pm employee was hooking cable around a fallen beacon near ferry channel on 12/23/00. Mr. Lawrence punctured his right foot when he stepped on a nail. Supervisor: h. F. O'neal
## 477                                                                                                             01/08/2001 02:08 pm employee was pulling a pat scale from truck of patrol car; when he strained muscles in his left elbow. Supervisor: sgt. M. S. Lanier
## 478                                                                                                         01/08/2001 02:15 pm employee was lifting/moving salt spreader on truck; when it slipped pinching/breaking his left middle finger. Supervisor: randy mcintyre
## 479                                                                                                                                   01/08/2001 02:23 pm employee was moving/lifting signs on 12/8/00; when he strained his left shoulder. Supervisor: charles r. Sharp
## 480                                                                              01/08/2001 02:28 pm employee was getting out of motor grader when his foot slipped off the bottom step. Mr. Wallin fell striking his right elbow on pavement. Supervisor: david h. Rice
## 481                                                   01/08/2001 02:38 pm employee was exiting the back door of drivers license office to conduct a pre-trip basic test on 12/5/00. Mrs. Rouse slipped and fell on ice straining her lower back. Supervisor: c. J. Horne
## 482                                                                                 01/08/2001 02:44 pm employee was pulling on tilt hood; when it came loose suddenly and struck him in the face. Mr. Edwards left front tooth was broken. Supervisor: mack o. Anderson
## 483                                                                                                                          01/08/2001 02:51 pm employee was walking to the copier machine; when she twisted her left ankle on 12/28/00. Supervisor: john davenport, jr
## 484                                                                                                                           01/08/2001 02:58 pm employee struck/bruised his left knee on truck bumper while weighing trucks on 12/18/00. Supervisor: lt. R. D. Edwards
## 485             01/08/2001 03:04 pm employee was driving on sr 1544 and crossing bridge # 056 on 12/18/00. He was met by a lambert truck pulling a ditcher which hit the drivers side mirror causing it to break. Mr. Bailey has small cuts on his face and ear. Supervi
## 486                                                                                                01/08/2001 03:16 pm employee was removing debris from roadway shoulder; when he stepped on a nail penetrating through his right foot. Supervisor: lindsey o. Ethridge
## 487                                                                                                          01/08/2001 03:21 pm employee was operating front end loader with the window down; when a foreign object blew into his right eye. Supervisor: c. E. Thompson
## 488                                                                01/08/2002 10:01 am (fblackmo) employee was placing a sign rack into the bed of the truck. The sign got caught on another rack, fell and mashed employees left hand. Supervisor: ralph thomas mcmanus
## 489                                               01/08/2002 10:16 am (fblackmo) employee was exiting crewcab truck holding on to center post as a handrail. Upon exiting employees right hand center finger got caught between the back door. Supervisor: r. D. Brinson
## 490            01/08/2002 11:16 am (fblackmo) employee was driving east on us 264 looking around at the houses. When employee looked back at the road a tandem axle dump truck was turing right into a driveway. Employee slammed on his brakes but could not stop in ti
## 491                                                                  01/08/2002 11:40 am (fblackmo) employee was stopped at the traffic light on nc 280 and was struck from the rear by a private vehicle causing injury to neck and hip. Supervisor: capt. G. P. Ramsey
## 492             01/09/2002 01:37 pm (slee) supervisor was parked on mexico drive, off flowers store road. His vehicle was backed onto the side road approx. 25' from the edge of pavement. Operator of private vehicle was traveling out on flowers store road exceeding
## 493                                                                                           01/09/2002 02:52 pm (fblackmo) employee was dismounting from tailgate of pickup truck when his foot slipped, causing him to fall to the pavement. Supervisor: d. R. Parker
## 494                                01/09/2002 03:10 pm (fblackmo) employee was driving to jobsite when a vehicle in front of him wrecked and he swerved to avoid contact. Employee states that he hit his left knee on something in the truck. Supervisor: hugh williams
## 495         01/09/2002 03:42 pm (fblackmo) employee states that at approximately 11:15 am on tuesday 12/18/2001 he was securing a mooring line to the starboard bow cleat on m/v ft. Fisher when, he felt a sharp sting near the base of right thumb area. Employees han
## 496                                                                                                                 01/09/2002 04:04 pm (fblackmo) employee states that he slipped on a muddy creek bank causing the incident to his left hand. Supervisor: r. L. Bowers
## 497                                                                                                             01/09/2002 04:23 pm (fblackmo) employee states that while picking up lumber from shed he bent over and felt a pain in his back. Supervisor: ken anderson
## 498                                                                          01/09/2003 02:44 pm (fblackmo) employee was removing debris from roadway during ice strom when, he slipped and fell on road causing the injury to his right elbow. Supervisor: n. S. Gibson
## 499                                                                                                                                          01/09/2003 08:28 am (fblackmo) employee was going out front door when, she slipped on the door mat. Supervisor: doug mcneal
## 500                                                                                         01/09/2003 08:38 am (fblackmo) employee went to sit down in his chair when, he missed judged the distance and fell to the floor hitting his buttocks. Supervisor: ava parker
## 501           01/10/2000 03:52 pm Mr. Sturges suffers from post traumatic stress disorder, depression, anxiety and other mental/nervous disorders. Mr. Sturges obtained this disorders due to participating in investigations of multiple homicides on April 11, 1998 an
## 502                                                                                 01/10/2000 05:26 pm employee was demonstrating (horseplay) a cheerleading "jump" with the assistance of a co-worker, when she twisted her right knee. Supervisor: arthur glenn short
## 503            01/10/2002 03:55 pm (fblackmo) employee was driving van of inmates to the department of corrections when a private vehicle rant he stoplight at the intersection of nc b and patterson avenue. The van flipped to its side, all inmates and driver had br
## 504                                              01/10/2002 04:14 pm (fblackmo) employee states that while bending over smoothing loose asphalt he felt something catch in his lower back. Employee could not straighten up for a few seconds. Supervisor: j. A. Medford
## 505                                                                      01/10/2002 04:25 pm (fblackmo) employee states that while cutting trees and standing in the area were the falling vain was that, she came into contact with poison oak. Supervisor: larry lucas
## 506                                                                                                                      01/10/2003 10:58 am (fblackmo) employee states while performing roadside equipment repair, he twisted his right ankle. Supervisor: jimmy ammons
## 507                                                                                                                               01/10/2003 11:36 am (fblackmo) employee was feeding brush into a chipper when, a wood chip hit him on his lip. Supervisor: a. O. Epley
## 508           01/11/2000 09:29 am employee was assembling boom sections on a crane, when she pulled muscles in her lower back. The employee twisted her upper right part of body to extend her right hand to catch cables, when the cables slipped off the top of the bo
## 509                                                               01/11/2000 09:37 am Mr. Metcalf sprain/strain his right knee while exiting a backhoe on a construction project on 12/30/99. When he stepped onto the ground his knee gave way. Supervisor: t. M. Smith
## 510                                                                                  01/11/2000 09:42 am Mr. Brooks was lifting a spreader trying to hook it into the tailgate of a dump truck on 11/24/99, when he strained his lower back. Supervisor: aaron s. Horton
## 511                                                                  01/11/2000 10:17 am employee was removing signs from truck bed, when he jerked the sign loose to remove it he felt a snap (pain) in his left side/lower back area. Supervisor: archie francis smith
## 512                                            01/11/2000 10:23 am employee was removing a steel band off a pallet of banded sheet metal, when the band broke loose, swung back and cut top of right hand between the thumb and index finger. Supervisor: roger faulkner
## 513                                                                                         01/11/2000 10:29 am Mr. Binkley was reading a emr book walking into a deck, when he jerked back his head cutting skin above and below his right eye. Supervisor: f. E. Floyd
## 514                                                                                     01/11/2000 10:38 am Mr. Cooke was entering crosspipe on 11/30/99. When he stood up to exit the pipe, he hit his head on bolt, causing a laceration on upper right side of scalp.
## 515                                                                                                                                          01/11/2000 10:48 am Mr. Crocker claiming mental stress due to confrontation with fellow employees. Supervisor: r. L. Bowers
## 516                                                                                                                               01/11/2001 04:01 pm employee was moving/pushing a desk from office when he felt a sharp pain in his abdomen. Supervisor: m. S. Venable
## 517                 01/11/2001 04:07 pm employee was unloading/lifting tamp from backhoe bucket onto truck bed; when the tamp jerked his hand into the bucket causing his right ring finger to break. Supervisor: g. E. Strickland 04/19/2001 04:53 pm (sjerniga) fractu
## 518            01/11/2001 04:13 pm employee was opening his pocket knife to oil the hinge of a blade on 12/13/00. A blade got stuck so he used some pliers along with the knife. When he pulled the other end with the pliers the knife blade cut his left middle finger
## 519                                                                          01/11/2001 04:22 pm employee struck his head on stud of exhaust system while repairing vehicle on 12/18/00. Mr. Whitson has a cut on the right side of his head. Supervisor: t. M. Griffith
## 520                                                                   01/11/2001 04:30 pm employee was bitten by a dog while working on sr 1102 in transylvania county on 1/8/01. He has two puncture wounds and bruises behind his right knee. Supervisor: t. L. Greene
## 521                                         01/11/2001 04:37 pm employee was assisting move/pull sign post on 1/4/01. Mr. Dalton used his foot to clear the dirt; when his foot became lodged in the puller mashing his big toe on his left foot. Supervisor: e. A. Cabe
## 522                                                                                                                                                         01/11/2002 10:02 am (fblackmo) employee was walking and tripped and fell. Supervisor: cathy overton (backup)
## 523                                                                                                              01/12/2000 04:17 pm Mr. Thompson was picking up trash on a hill, when he lost his balance, slipped and hurt his left shoulder. Supervisor: j. S. Walker
## 524            01/12/2000 04:32 pm Mr. Spinks was carrying a 12 ft. U-channel steel post with an attached sign. He placed the sign post in a hole, when he noticed the sign was facing the wrong way. He proceeded to lift the sign when he felt a pain in his lower bac
## 525                                                                                                      01/13/2000 03:31 pm Mr. Wells was attempting to turn battery charger off when the batteries exploded causing acid to get in his eyes. Supervisor: d. E. Clapton
## 526           01/13/2000 03:33 pm officer newbern was stopped in the turn lane of us 158 (4 lane with turn lane) with his blue lights and strob lights activated. He was waiting for an approaching vehicle reported operating careless and reckless at a high rate of s
## 527                                                             01/13/2000 03:36 pm Mr. Blue injured his right arm when he fell out of tandem truck on 1/11/2000. His foot got hung between bed and top of tire when he stepped off the truck. Supervisor: j. E. Walters
## 528                                                             01/13/2000 03:44 pm Mr. Beane s stepped down off motorgrader onto block of wood. The wood was sticking out from under the grader blade causing him to sprain his right ankle. Supervisor: e. M. Presnell
## 529                                                                 01/13/2000 09:13 am Mr. Holley was assisting another employee guiding a tailgate into place, when his right hand little finger was caught between tailgate and dump truck. Supervisor: l. D. Skinner
## 530                                                                                                                                    01/15/2003 02:01 pm (fblackmo) employee fell off back of truck while trying to position the spreader. Supervisor: r. W. Rhodes jr
## 531                                                                                               01/15/2003 02:54 pm (fblackmo) employee was pulling a limb out of a pile of debris from ice storm when, he felt pain in his left shoulder 10/21/2003 02:39 pm (gwhite)
## 532                                                                                     01/15/2003 09:15 am (fblackmo) employee had stopped his vehicle behind private vehicle turning into driveway when, dot vehicle was hit in the rear. Supervisor: barry f. Kizziah
## 533                                                                                                                                                     01/15/2003 09:28 am (fblackmo) repetitive motion. Carpal tunnel syndrome in right wrist. Supervisor: sam barbour
## 534                                                                                                                 01/15/2003 09:44 am (fblackmo) employee was cutting tree on arthur minnis road when, one of the limbs hit him on his left arm. Supervisor: todd bray
## 535                                                                                                               01/15/2003 09:55 am (fblackmo) employee was hooking up cement mixer to pick-up when, he felt pain in his lower right side. Supervisor: terry l. Harris
## 536                                                              01/15/2003 10:22 am (fblackmo) employee states he experienced pain in his lower back when; the state crew cab truck he was operating was hit in the rear by another state owned medium duty dump truck.
## 537                                  01/15/2003 10:34 am (fblackmo) employee was checking a salvage rebuilt truck. The panel of the truck struck him on his right leg causing him to fall, twisting his lower back and right ankle and leg. Supervisor: cpt. J. F. Jones
## 538                                                                                               01/15/2003 10:48 am (fblackmo) employee was bending to pick up log when, he felt pain in his lower back. Supervisor: b. J. Berryhill jr 01/28/2003 03:01 pm (kbarefoo)
## 539                                                                                                                              01/15/2003 10:59 am (fblackmo) employee was cutting tree, tree kicked back hitting employee on his right heel. Supervisor: g. R. Cooper
## 540                                          01/15/2003 11:10 am (fblackmo) employee was operating a chain-saw removing debris form roadway in emergency situation. Employee was using all safety equipment. Tree limb kicked back hitting face. Supervisor: a. O. Epley
## 541                                                                                                                            01/15/2003 11:23 am (fblackmo) employee states while bending to pick up clipboard, he felt pain in his left knee. Supervisor: mike harris
## 542                       01/15/2003 12:07 pm (fblackmo) employee was feeding a tree limb into a brush chipper. The tree limb twisted inside the chipper striking employee on his right leg just above the knee. Supervisor: h. M. Coates 11/29/2004 06:59 am (kbarefoo)
## 543                                                                                                            01/15/2003 12:35 pm (fblackmo) employee states while lifting rear end in housing to line it up, he felt pain in his left hand. Supervisor: mark y. Walker
## 544                                                                            01/15/2003 12:52 pm (fblackmo) employee was cutting and removing trees from highway when, he stepped wrong on the pavement leading to the injury to his ankle. Supervisor: phil d. Manley
## 545                                                                                                         01/16/2002 01:53 pm (fblackmo) employee states that while dragging brushes to the chipper he experienced pain in his lower back. Supervisor: d. L. Carpenter
## 546            01/16/2002 02:07 pm (fblackmo) employee was replacing batteries in a ups. Employee was attempting to disconnect the battery cables. The connector was stuck, he exerted more force and the cable dislodged quickly causing employee to slid his hand alon
## 547                              01/16/2002 02:19 pm (fblackmo) employee states that while bending over at the snack machine beside a freezer another employee came in and open the freezer door causing it to hit employee on the shoulder. Supervisor: rebecca simpson
## 548           01/16/2002 02:39 pm (fblackmo) employee states that, while walking by the railing next to the snack bar in the m&t lab, he was sliding his hand along the wood top of the rail. A splinter from the wooden rail entered in the palm of employees right han
## 549                                                                                    01/16/2002 03:04 pm (fblackmo) employee was checking snow plow blades and tire chains when he went to get back into the truck his foot slipped on the ice. Supervisor: rice david
## 550             01/16/2002 03:20 pm (fblackmo) employee was blading ice off of roadways with a motor-grader. Due to the loose bolts on the grader blade, the blade became lodged in a gap in the bridge approach, the blade was stuck in the travel lane. Employee tried
## 551            01/16/2002 03:34 pm (fblackmo) employee was securing hooks on m/v ft. Fisher when the other deckhand released his grip on the net before it was safely hook. The net jumped back suddenly to the left causing the injury to her left hand and wrist. Supe
## 552             01/16/2002 03:48 pm (fblackmo) employee was assisting in cutting a downed tree from the roadway which had poison ivy vines wrapped around it, when cutting the tree, he cut through a vine on the bottom, which threw the sap on his neck and face. Supe
## 553                                              01/16/2002 04:03 pm (fblackmo) employee was sitting in state vehicle eating lunch with the window down, when a gust of wind came in the window causing foreign object to go into his left eye. Supervisor; earl d. Bell
## 554            01/16/2002 11:25 am (fblackmo) employee states that while sitting at stop light on state road 1012 @ us 15-501 a private own vehicle hit them in the back. The force from the accident caused the employee to experience pain in his neck and eye. Superv
## 555                                                       01/16/2002 12:04 pm (fblackmo) employee lost balance after table that was being moved slipped out of hands of other person carrying table. Employee fell on wrist to catch himself. Supervisor: c. S. Mcdonald
## 556            01/16/2002 12:20 pm (fblackmo) employee was exiting bucket on a bucket truck, placed left foot on bucket step, while bringing right leg out of bucket, left foot slipped off step. Employee struck the tailgate with chest and hit the round with his bac
## 557            01/16/2002 12:37 pm (fblackmo) employee was lifting a 4" stem valve on to a dolly to transport it to the hull shop to install it on the facilities water main line. As he lifted it he felt a grinding sensation in his lower back. The pain was not seve
## 558                                                                                    01/16/2002 12:49 pm (fblackmo) employee states that while pulling up a fishing net that was in the channel, his foot got tangled up causing him to fall. Supervisor: e. M. Farrow
## 559                                         01/17/2001 05:11 pm employee was in state truck when he reached with his right arm over his left shoulder to put on safety belt. Mr. Hildreth strained his lower right side of back. Supervisor: d. W. Knight/marc p. Morgan
## 560           01/17/2002 02:14 pm (fblackmo) employee was standing on the harden salt inside of the salt spreader of his truck. While loosening up the salt, the salt broke loose throwing employee to the bottom of the salt spreader causing the injury to his right k
## 561                                                                                                                                           01/17/2002 02:27 pm (fblackmo) employee states that he has pain in right elbow and forearm and hand. Supervisor: not given
## 562                                                                                                                        01/17/2002 03:03 pm (fblackmo) employee was walking to entrance of the parking area when she slipped on a lemon peel. Supervisor: lee johnson
## 563            01/17/2002 03:23 pm (fblackmo) employee was conducting road test when, customer backed up and stopped and failed to put vehicle back in proper gear. The customer backed sharply against the curb and as a result caused the injury to employees neck and
## 564                                                                                                                                     01/17/2002 03:53 pm (fblackmo) employee was unloading salt when he felt a pian in his left hip area. Supervisor: v. Dean summers
## 565                                                                                                   01/17/2002 04:07 pm (fblackmo) employee was prying 2 x 4 timber from concrete form. Timber fell striking employee in back of neck area. Supervisor: r. D. Sherrill
## 566                                                                                                                                        01/17/2002 04:17 pm (fblackmo) employee states that he slipped on ice while walking to his vehicle. Supervisor: l. D. Caddell
## 567                                                                                                    01/17/2002 04:31 pm (fblackmo) employee was putting mailbox post in back of the truck when he mashed his middle finger on his left hand. Supervisor: s. G. Dillon
## 568                                                                                                              01/17/2002 04:46 pm (fblackmo) employee stepped from truck with spreader onto snow covered concrete and twisted right ankle. Supervisor; b. W. Whitaker
## 569                                           01/17/2002 09:25 am (fblackmo) carpal tunnel syndrome injury in both wrists and has developed over the past eight years due to secretarial work, typing, repetitive computer input and calculator. Supervisor: j. F. Sloop
## 570                                                                                             01/17/2003 09:34 am (fblackmo) employee was cutting up a fallen tree with chainsaw when, one section of the tree fell hitting his left foot. Supervisor: steve a. Hardin
## 571                                                   01/17/2003 09:44 am (fblackmo) employee got his right index finger caught between the chain and tailgate while, trying to free the chain that was behind the locking bar of the tailgate. Supervisor: grady raynor
## 572                                                                                                                        01/17/2003 10:11 am (fblackmo) employee states he experienced pain in his lower back while exiting his pick-up truck. Supervisor: j. F. Sloop
## 573                                                                                          01/17/2003 10:30 am (fblackmo) employee was responding to a signal trouble call while attempting to un-plug the detector he burned his left hand. Supervisor: j. D. Edwards
## 574                                                                                                                          01/17/2003 10:41 am (fblackmo) employee was using drill when his finger got caught between the wrench and drill rig. Supervisor: w. D. Frye
## 575                                                                                                                       01/17/2003 10:55 am (fblackmo) employee was dragging limbs to the chipper when, he felt pain in his back and hip. Supervisor; willie h. Monroe
## 576                                                                                              01/17/2003 11:05 am (fblackmo) employee states while removing branches from shoulder of road, one of the branches hit him in his right eye. Supervisor: sarah g. Foster
## 577                                                                                                                           01/17/2003 11:17 am (fblackmo) employee was picking up fall tree limbs when, he felt pain in his abdomen area. Supervisor: sarah g. Foster
## 578                                                                                                                    01/17/2003 11:27 am (fblackmo) employee had both hands on door board when, he felt a sharp pain in his left shoulder. Supervisor: brian k. Clover
## 579                                                                                                            01/17/2003 11:38 am (fblackmo) employee states she has experienced pain in both of her hands and wrists due to repetitive motion. Supervisor; leondas guy
## 580                                                              01/17/2003 11:57 am (fblackmo) employee stated, after climbing into cab the door was about to slam shut, he threw his left arm in the door to keep the glass from breaking. Supervisor; steve a. Hardin
## 581                                                                                               01/17/2003 12:11 pm (fblackmo) employee states while trying to place bag of asphalt in the oven it slipped causing the bag to fall on his hand. Supervisor; Jan wobble
## 582                                                                                                     01/17/2003 12:29 pm (fblackmo) employee was pulling limbs from under tree. A limb fell striking employee on the his left side back area. Supervisor: glenn koepp
## 583                                      01/18/2001 08:43 am employee was hanging salt spreader on racks; when the chains on the racks slipped causing a cut to his forehead and bruising his arm. Supervisor: mark e. Stafford 04/19/2001 04:59 pm (sjerniga) lost time
## 584                                   01/18/2001 08:49 am employee bent over to lift a piece of broken asphalt to throw into backhoe bucket on 1/5/01. Mr. Pollock felt pain in his lower left back area. Supervisor: leon ross 04/19/2001 04:58 pm (sjerniga) lost time
## 585                                                      01/18/2001 08:55 am employee was placing a stick of wood into truck; when another piece of wood rolled onto her left hand. The piece of wood bruised her left middle and ring fingers. Supervisor: s. M. Lemons
## 586                                  01/18/2001 09:17 am employee was helping slide a 4 x 8 nailers onto steel beams; when he got his right index finger caught in between nailer and the end of the steel beam. Supervisor: j. C. Gunter 06/05/2002 04:29 pm (hoxendin)
## 587            01/18/2001 09:24 am employee was flagging traffic on highway work zone nc 177 north on 1/4/01. A vehicle entered the work zone and failed to stop striking employees stop/slow paddle. The employees left hand struck windshield causing a contusion on h
## 588            01/18/2001 09:31 am employee was working in signal cabinet with wires on 1/12/01. He was holding a wire in one hand and reached down to get second wire. While reaching down to get wire; first wire popped out of his hand striking him in his right eye
## 589                   01/18/2001 09:48 am employee was cutting logs into sections on 1/5/01. He had his foot in between two logs; when one log rolled on his right foot pinning it in between the logs. Supervisor: t. L. Hall 04/19/2001 04:57 pm (sjerniga) prescripti
## 590                     01/18/2001 09:55 am employee was taking grader chains apart with pliers on 1/3/01. While he was clamping on chains; he felt a sharp pain in his upper back shoulders area. Supervisor: r. E. Bennett 04/19/2001 04:50 pm (sjerniga) prescription
## 591                                                                                                                    01/18/2001 10:01 am employee was cutting up (destroying) drivers licenses; when scissors slipped slicing her left thumb. Supervisor: gary lovette
## 592            01/19/2001 10:31 am employee was removing debris from work area on 1/3/01. He was walking in slightly bent over position due to lack of walking space. Mr. Steinmeyer lost his balance and caught himself from falling completely with his right foot/ank
## 593                                                                                                                 01/19/2001 10:39 am employee was placing mortar around three concrete pipe joints; when a piece of glass cut his left thumb. Supervisor: p. C. Casas
## 594                                                                01/19/2001 10:47 am while getting out of truck (at job site) on 1/2/01; employee right hand was caught in the door. Mr. Crisco's right little finger was cut. Supervisor: j. C. Pruitt/r. A. Mccarley
## 595                                                                                    01/19/2001 10:54 am employee strained his left shoulder and left knee on 12/31/00. Mr. Cobb slipped on curb and was lifting a scale at time of incident. Supervisor: sgt. Nichols
## 596                              01/19/2001 12:02 pm employee was giving driver road test on 1/11/01; when the customer jumped a curve and hit building. Mr. Potter's jammed fingers on his right hand and strained/sprained his right wrist. Supervisor: patricia glenn
## 597                                                                 01/20/2000 01:19 pm Mr. Hancock sprained his right ankle on 1/5/2000m when he stepped into a grass covered wheel rut, loss his balance and fell heavily onto the ground. Supervisor: william h. Lotz
## 598                                                                          01/20/2000 01:34 pm Mr. Martin was helping pick up a piece of old carpet weighing 100 to 150 pounds from shoulder of road, when he pulled a muscle in lower back. Supervisor: m. D. Warwick
## 599                                                                                                                                    01/20/2000 03:34 pm Ms. Adams has pain in right elbow and left forearm due to repetitive motion on keyboard. Supervisor: pam lett
## 600                                                                                      01/20/2000 03:40 pm Ms. Carpenter has two knots on the back of both hands that are very painful due to repetitive motion keyboarding over the years. Supervisor: m. D. Fletcher
## 601                                                                                                        01/20/2000 12:24 pm Mr. Ragland was removing an engine cover, when the cover slipped cutting the tip of his right ring finger. Supervisor: t. D. Clement, jr.
## 602            01/20/2000 12:29 pm Ms. Hiatt was operating a loaded swb dump truck, when a strong gust of wind struck the truck broadside and pushed the wheels onto shoulder of the road. The load shifted causing the operator to lose control of the truck. Ms. Hiatt
## 603                                                                                                                       01/20/2000 12:46 pm Mr. Pittman came in contact with poison ivy/oak while cutting brush. He has rash on both arms. Supervisor: j. C. D' arruda
## 604                                                                                                01/21/2003 12:16 pm (fblackmo) employee states while on construction project in columbus county he was bitten by a tick on his right knee. Supervisor: w. R. Marsh pe
## 605            01/22/2002 03:50 pm (fblackmo) the asphalt crew finished a patching operation and stopped at the store. Two private vehicles collided at the intersection of nc 27 and 1238. One of the vehicles slid out of control into the parking lot of the store an
## 606                                                                01/22/2002 04:08 pm (fblackmo) employee was stepping out of generator building in back of operations and stepped into a pot hole, causing employee to injure his right foot. Supervisor: j. W. Cahoon
## 607                                                                                                                                   01/22/2002 04:38 pm (fblackmo) employee states that during p. T. Training he started having chest pains. Supervisor: keith e, king
## 608                                                                                                                                  01/22/2003 02:19 pm (fblackmo) employee was moving a cinder-block when he felt pain in his right shoulder. Supervisor: c. W. Vestal
## 609                                                                                                                                         01/22/2003 02:37 pm (fblackmo) employee was coming out of her office when she slipped on the floor. Supervisor: j. M. Kinlaw
## 610                                                                                                    01/22/2003 02:49 pm (fblackmo) employee was reaching into the tool box on the back of a flatbed truck when the lid fell on his left wrist. Supervisor; d. L. Lane
## 611                                                                                      01/22/2003 03:02 pm (fblackmo) employee was un-hooking the mulch blower when something flew out striking employee on the mouth, breaking front tooth. Supervisor: s. T. Hammond
## 612                                         01/23/2002 08:47 am (fblackmo) employee was moving parts containers in stock room. Pallets were on the floor, he stepped on the edge of one and fell to the floor twisting his left leg and knee. Supervisor: james a. Cowan
## 613             01/23/2002 09:00 am (fblackmo) employee was walking pamlico river ferry operations site during a inspection. Employee stepped over a temporary construction net fence when, his foot got caught in the fencing twisting his knee. Supervisor; david king
## 614             01/23/2002 09:15 am (fblackmo) employee had been sawing trees on back side of ditch. Employee was crossing back across the ditch to the road when he slipped on the wet snow and fell. Employees' left hand landed on the chain saw bar cutting his ring
## 615                                      01/23/2002 09:26 am (fblackmo) employee states that while walking from the maintenance building to dump truck, he slipped on the snow and ice. Employee states that he caught himself before falling. Supervisor: ronnie powell
## 616            01/23/2002 09:40 am (fblackmo) employee was standing on truck steps provided to add height to reach grease fittings on truck body. While, greaseing the fittings the truck steps tipped over and employee fell to concrete and metal drain grate. Supervi
## 617            01/23/2002 09:55 am (fblackmo) employee was traveling east on bringle ferry road, operating a dump tuck that had plow and inbody spreader on. Employee was in the process of clearing the roads from the snow storm. Employee entered a sharp curve when,
## 618            01/24/2002 02:55 pm (fblackmo) employee states that, a heavy object had fallen off a truck and was laying in the travel-way of I-40 on a bridge. Employee dragged object out of the roadway, in the process employee injured his arm and shoulder. Superv
## 619             01/24/2002 03:10 pm (fblackmo) employee was hauling stones. Employee picked up a load and was going to let the trap back to cover the load. The trap frame got hung up. Employee then pushed on the trap frame with his hand, his finger got caught betw
## 620                                                                                                                  01/24/2002 03:25 pm (fblackmo) employee was going under the bridge when, he slipped on a slick slopping area of the ground. Supervisor: l. R. Brown
## 621             01/24/2002 03:37 pm (fblackmo) employee was helping in moving supplies. He picked up a gaurdrail post 69 x 6 and 40lbs. Employee felt pain and burning in his arm and shoulder. Employee states that, his right arm and shoulder was injured also on 7/5
## 622                                                                                  01/25/2002 10:20 am (vsulliva) sov (flatbed section truck) was going around a curve and met a pov truck. Mirrrors hit, caused glass from the mirror to break the glass in the door.
## 623                                                                                                                                                                                                                   01/25/2010 08:40 am (slee) pov struck side of sov.
## 624             01/26/2001 09:04 am employee has acute cervical strain to his back and cephalsis to his head. Employee was parking motor grader when he started to dismount the grader; a bolt in the step came out causing him to fall out on his back. Supervisor: jim
## 625                                                                                                                                            01/26/2001 09:52 am employee stated he thought the fertilizer caused his hands to crack and peel. Supervisor: tim simpson
## 626                          01/26/2001 10:13 am employee was leaving a wooded area; when his face brushed against a tree branch. The branch protruded inside his left ear causing ear drum damage. Supervisor: w. H. Draper 04/24/2001 04:14 pm (sjerniga) prescription
## 627                                                                                                                                01/26/2001 10:21 am employee was filing bushaxe; when the file slipped causing him to cut his left wrist. Supervisor: terry l. Harris
## 628                01/26/2001 10:26 am employee was using a power hedge trimmer; when he cut the tip of his right index finger. Mr. Foran was in the process of putting the trimmer down when he cut his finger on the blades. Supervisor: david king 04/19/2001 04:56 p
## 629                                       01/26/2001 10:39 am employee was approaching dump truck to give some instructions to employees; when he stepped into a ditch twisting/sprain his right ankle. Supervisor: j. A. Cowan 04/19/2001 05:00 pm (sjerniga) lost time
## 630                                                  01/26/2001 11:05 am employee went to use the restroom in the woods; when he bent down to pick up toilet paper a stick stuck him in his right eye. Supervisor: rick neal 04/24/2001 04:20 pm (sjerniga) prescription
## 631                          01/26/2001 11:14 am employee was lifting (replacing) I/m gas cylinder in his patrol vehicle when he strained/sprained muscles in his lower and mid back areas. Supervisor: lt. T. S. Collins 04/23/2001 01:12 pm (sjerniga) restricted duty
## 632                                             01/26/2001 11:21 am employee was trying to loosen pipe with a pipe wrench; when the wrench slipped causing the handle to hit him in his forehead. Supervisor: r. T. Brim, jr 04/24/2001 04:14 pm (sjerniga) steri-strips
## 633                                                                                                                                                          01/26/2001 11:27 am employee was sharpening a bushaxe; when he cut his left thumb. Supervisor: a. J. Mcneil
## 634                                                                                                                           01/27/2003 03:12 pm (fblackmo) employee states while picking up tree limbs, he experienced pain in his lower back. Supervisor: jerry keene
## 635                                                                                               01/27/2003 03:27 pm (fblackmo) employee states while walking in a pasture area on job site on level ground he felt pain in his right ankle. Supervisor: h. M. Thompson
## 636                                                                                                                     01/27/2003 03:40 pm (fblackmo) employee states he has experienced pain and numbness in his hands. Carpal tunnel syndrome. Supervisor: jeff hardy
## 637                                                                                                                                                         01/27/2003 03:52 pm (fblackmo) employee states he came into poison oak while mowing. Supervisor: k. R. Davis
## 638                                                                                                             01/28/2003 07:18 am (fblackmo) employee states while pulling bushes out of road way, he felt pain in his lower back. Supervisor: ralph thomas mcmanus jr
## 639                                                                                                                01/28/2003 07:40 am (fblackmo) employee states while pulling cart to the forklift he, experienced pain in his lower back. Supervisor: michael simmons
## 640                                                                                                                    01/28/2003 07:51 am (fblackmo) employee was putting limbs into chipper when, some of the debris flew into his right eye. Supervisor: david lowery
## 641              01/29/2002 03:38 pm (sshort) employee was walking into the hearing office in newton, nc; when he dropped some papers out of a file. Mr. Phillips then slipped and fell breaking/fracturing both ankles and his right leg. Supervisor: c. H. Matthews 02
## 642                                                                                01/29/2003 02:12 pm (slee) Mr. Hodgin was salting I-85 due to snow storm when private vehicle struck back of his truck due to excessive speed by private vehicle for road conditions.
## 643                                                                                                01/30/2003 02:34 pm (fblackmo) employee was pulling limbs and logs to be loaded. One of the logs fell and hit employee on his right little toe. Supervisor: g. Vinson
## 644                                                                                                        01/30/2003 02:48 pm (fblackmo) employee states he lost his balance on the water rip-rap which caused the injury to his left hand. Supervisor: william h. Lotz
## 645                                                                            01/30/2003 03:02 pm (fblackmo) employee was attempting to get into a dump truck when, his right foot slipped causing the injury to his left knee and calf. Supervisor: w. E. Mcclendon jr
## 646                                                             01/30/2003 03:15 pm (fblackmo) employee was attempting to fasten a binder securing spreader in body of tandem truck when, the chain slipped hitting employee on his forehead. Supervisor: robert winslow
## 647                                                                                                          01/30/2003 03:28 pm (fblackmo) employee was attempting to lift one side of a snow plow when, he felt pain in his lower back. Supervisor: w. E. Mcclendon jr
## 648                                                                                            01/30/2003 07:30 am (fblackmo) employee states that while spraying brake cleaner on snow plow fittings, some of the spray went into his eyes. Supervisor: johnny ransdell
## 649                                                                                                                                       01/30/2003 08:07 am (fblackmo) employee states while shutting the truck door he, hit his right elbow. Supervisor: a. S. Bailey
## 650                           01/31/2001 03:29 pm employee was catching keys thrown by john polk on 1/12/01. Mr. Adams twist/strained his upper back between his shoulder blades while reaching to catch keys. Supervisor: ronald lee 04/24/2001 04:13 pm (sjerniga) pre
## 651                                          01/31/2001 03:41 pm employee fell and fractured his right tibia (shin) on 1/16/01. Mr. Pittman's left foot got caught under the door causing him to fall. Supervisor: j. D. Edwards 04/24/2001 04:15 pm (sjerniga) fracture
## 652                              01/31/2001 04:09 pm employee was trying to unhook tailgate; when chain came loose causing the tailgate to fall on Mr. Stump. Mr. Stump has a cut on top of his head, cracked ribs and a bruised right side. Supervisor: james f. Bishop
## 653            01/31/2001 04:19 pm officer hyde was riding in front passenger seat; when officer shackelford (the driver) stepped on the brakes hard and startled Mr. Hyde. This action caused him to jerk and try to catch the dashboard of the vehicle. Employee has a
## 654                                                                                                         01/31/2002 10:30 am (sshort) employee states that he was using the crack pour wand; when he injured/strained his left shoulder. Supervisor: larry j. Jackson
## 655            01/31/2002 10:39 am (sshort) employee was attempting to close the tailgate on pickup truck; when a bundle of silt fence posts fell against the tailgate. The tailgate bounced back against him causing him to feel sharp pains in his lower back. Supervi
## 656                                                                                                            01/31/2002 10:54 am (sshort) employee was unloading road closed barricades off trailer; when he felt a pain in his left shoulder. Supervisor: mike ennett
## 657              01/31/2002 11:02 am (sshort) employee was struck from behind on I-40 @ 7. 5 mile marker in haywood county on 1/19/2002. Mr. Barnes was sitting in state owned vehicle on shoulder of road. He has pain in his neck, back and leg. Supervisor: ssg. H. C
## 658                                                                                                                             02/01/2000 01:20 pm employee was removing a fallen tree off the road, when debris flew into his left eye. Supervisor: c. N. Edwards, jr.
## 659                                                                02/01/2000 01:52 pm employee was trying to stop air conditioner from hitting the concrete at the davidson county landfill. Mr. Wilson pulled a muscle in back of his left leg. Supervisor: mark crook
## 660                                                                                                                 02/01/2000 02:00 pm Mr. Lewis was attempting to raise the hood on dump truck when he felt something pull in his lower back. Supervisor: c. M. Walker
## 661             02/01/2002 10:10 am (sshort) employee was running from the file room to the office to answer the telephone; when she hit her desk, fell into the door frame and onto the floor. Mrs. Roberts has strain to her neck and severe headaches. Supervisor: pa
## 662                                                                                       02/01/2002 10:17 am (sshort) employee was feeding a tree limb into the chipper; when the chipper caught his right hand bruising his left ring finger. Supervisor: r. H. Brazil
## 663                                                                                                                    02/01/2002 10:24 am (sshort) employee cut left index finger while trying to replace a safety chain requiring 6 sutures. Supervisor: gary d. Nance
## 664                                                                                 02/01/2002 10:32 am (sshort) employee noticed her left eye was hurting after coming back from a road test. A foreign object blew into her upper left eye lid. Supervisor: devin drye
## 665                   02/01/2002 10:35 am (sshort) employee strained his upper left leg while placing portable scales under tractor trailer on 1/9/02. Officer anders was in the process of weighing a tractor trailer at time of injury. Supervisor: ssg. R. P. Brigman
## 666                                                              02/01/2002 10:41 am (sshort) employee was cutting tree limbs; when he came in contact with poison ivy plants. He has contact rash on face, arms, and upper part of his body. Supervisor: c. D. Mcduffie
## 667                                 02/01/2002 10:51 am (sshort) employee was getting into loader; when he missed a step causing him to fall. All of his weight went down as he caught himself. Mr. Coward strained his left forearm and hand. Supervisor: clifton mills
## 668              02/02/2000 02:30 pm Mr. Jenkins was called by graham county sheriff dept on 1/16/2000. While walking to his ncdot truck he slipped on ice on his sidewalk. Mr. Jenkins has three separate breaks in his right wrist due to this fall. Supervisor: w. D.
## 669                        02/02/2000 02:36 pm Mr. Mabe fell forward when his wrench slipped while leaning over a wheel guard. He was trying to loosen bolts and was on his knees at the time. He has injuries to chest and under his right arm. Supervisor: r. E. Joyce
## 670                                                                                                                                   02/02/2000 02:44 pm Mr. Elliott was moving logs to uncover survey reference point when he injured his back. Supervisor: damom webb
## 671                                                                                         02/02/2000 02:48 pm while working on bridge # 91 in nash county, Mr. Holland came in contact with poison ivy. He has contact rash on face and back. Supervisor: l. E. Cotton
## 672             02/02/2000 04:03 pm Mr. Wallace was pushing snow with a tandem truck/snow plow, when the truck overturned. Mr. Wallace broke his ribs on the left side and has a 2 inch cut to left elbow, and a knot on his head from this incident. Supervisor: dennis
## 673                                                                                                  02/02/2000 05:01 pm Mr. Austin was changing blades on a snow plow with an air wrench. While removing bolts, trash fell into his right eye. Supervisor: r. P. Aswell
## 674                    02/02/2001 02:23 pm employee was returning from a road test on 1/19/01. When she got out of the car; the wind caught the door and struck her left elbow. Ms. Robbins has pain and numbness in her left elbow and hand. Supervisor: michael jarman
## 675            02/03/2000 03:32 pm a private vehicle pulled out in front of Mr. Bullock on 1/14/2000 causing state vehicle to hit/knock private vehicle in ditch. The state vehicle (dump truck) also slid into the ditch. Mr. Bullock was checked out (first aide only)
## 676                                                                                                                                                       02/03/2000 03:48 pm Mr. Myers was entering a truck when he slipped bruising his shins. Supervisor: j. W. Dyson
## 677                                                                                                      02/04/2000 11:35 am Mr. Fender slipped and fell on left wrist on 1/20/00. He had just checked bed of truck for balance of sand. Supervisor: james allen medford
## 678                                                                                                     02/04/2000 11:42 am Mr. Hipps was loading signs onto a pickup truck, when signs began to fall off dock and landed on his left leg. Supervisor: roger l. Arrowood
## 679                                                                                                 02/04/2003 08:10 am (fblackmo) employee entered conference room (via hall area) to retrieve a cart when, she tripped over the un-even carpet. Supervisor: carl goode
## 680                                                                                                         02/04/2003 08:59 am (fblackmo) employee was driving his crew cab truck when he felt a needle like sharp pain in his left shoulder. Supervisor: r. D. Holland
## 681                                                                                     02/04/2003 09:16 am (fblackmo) employee states while putting in his ear plugs another employee that was pulling limbs accidentally hit him in his head. Supervisor: david lowery
## 682                                                                                                     02/04/2003 09:29 am (fblackmo) employee states while changing blades on dump truck, some of the snow and ice went into his right eye. Supervisor: k. L. Anderson
## 683                                                                                                              02/04/2003 09:40 am (fblackmo) employee states while bending to cut tree with chain-saw, he experienced pain in his lower back. Supervisor: donald king
## 684                                                                               02/04/2003 09:51 am (fblackmo) employee was attempting to make repairs to a motor grader tire, while lifting the tire he experienced pain in his rectum area. Supervisor: l. D. Greene
## 685                                                                                                              02/04/2003 10:40 am (fblackmo) employee states, while walking to her car she fell in the parking lot caused by the snow and ice. Supervisor: henry moon
## 686                                                                                                                                  02/04/2003 10:54 am (fblackmo) employee was walking down hill when, he slipped and twisted his right ankle. Supervisor: b. J. Vance
## 687                                                                                                          02/04/2003 11:05 am (fblackmo) employee states, while lifting bag of cold mix asphalt he felt pain in his lower back. Supervisor: w. J. Turner & g. F. Neal
## 688              02/05/2000 09:30 am Mr. Lutz has a laceration to the back of head due to falling on ice on 1/22/2000. I-40 was blocked by a pick-up truck on ice. Mr. Lutz got out of his truck to help when he fell hitting his head on concrete. Supervisor: max aber
## 689                                                                           02/05/2000 09:35 am Mr. Mccrary left hand hit exhaust pipe on crack sealing machine. He was checking the tar level when his hand slipped causing a 2 degree burn. Supervisor: r. L. Adcock
## 690                                                                              02/05/2000 09:41 am Mr. Blankenship slipped in bed of truck while trying to remove snow from tool box and cab of truck. He has injuries to his left shoulder. Supervisor: cliff mcneill
## 691                                                                                                             02/05/2000 09:50 am employee was grinding on marine vessel silver lake when foreign object (metal) flew into his left eye. Supervisor: kevin lamar cooke
## 692                           02/05/2000 09:57 am Mr. Biles suffered head trauma on 1/23/2000. Employee was cutting tree hanging over the road, when the limb bounced back knocking off his hat. (tree was covered with ice during the storm) supervisor: m. L. Thompson
## 693                                        02/05/2000 10:07 am Mr. Hancock pulled ligaments in his right leg when he slipped on gravel on 1/3/2000. He was getting out of his truck to sweep dirt off his spreader at the time of incident. Supervisor: tommy kilpatrick
## 694              02/05/2000 10:17 am Mr. Wright was installing 36 inch pipes in 20 foot sections; while moving joints he lost his footing in the mud causing him to fall landed on his right wrist. Supervisor: t. A. Woody note: Mr. Wright works in cherokee county 31
## 695                                                                                                                   02/05/2000 10:27 am employee was unloading cold mix from the rear of truck, when he felt a sharp pain in his lower back. Supervisor: willie monroe
## 696           02/05/2000 10:47 am officer summerlin was involved in a vehicle pursuit of a tractor trailer truck on 1/20/2000. The tractor trailer hit officer summerlin in the rear when he passed the trailer truck. He has injuries to the left side of his neck, lef
## 697           02/05/2000 10:58 am Mr. Smith was driving north bound on I-95; when a private vehicle came over in his lane, hitting his vehicle on the left side. (Mr. Smith was doing the posted speed limit of 70 mph) he suffered injuries to his neck, left shoulder,
## 698               02/05/2000 11:09 am employee parked state vehicle on shoulder of highway 70 east in newport, nc to switch drivers on 1/19/2000. A private pick-up truck slid on snow/ice and ran into the rear of state vehicle. Supervisor: charles utz note: charles
## 699                                                                                        02/05/2000 11:21 am employee slipped on ice ( injury-back) while attempting to remove two dump trucks that was stuck in a ditch on 1/25/2000. Supervisor: marty craig tillman
## 700                                                                                                             02/05/2000 11:29 am employee was removing chains off of a grader when he hit and chipped a bone in his right elbow on 11/30/1999. Supervisor: j. L. Lane
## 701                                                                                                                    02/05/2002 11:12 am (fblackmo) employee was hanging signal head while in aerial device when he felt a pull in his back. Supervisor: j. D. Edwards
## 702                                                    02/05/2002 11:27 am (fblackmo) employee was getting onto the backhoe trailer and slipped on the step of the trailer, which had grease on it. Employee hit his left knee on the trailer. Supervisor: j. E. Walters
## 703                                                                              02/05/2002 11:42 am (fblackmo) employee states that, while stepping off the first floor elevator and slipped on slippery floor falling on right hip and side. Supervisor: g. W. Zeigler
## 704                                                                                        02/05/2002 12:05 pm (fblackmo) employee states that, while using a sledge hammer to drive a post into the ground he felt a sharp pain in his back. Supervisor: barry t. Coble
## 705                                                                                                                    02/05/2002 12:17 pm (fblackmo) employee slipped on hydraulic fluid on side of the road after tractor-trailer accident. Supervisor: charles narron
## 706                                                                                                                           02/05/2002 12:28 pm (fblackmo) employee was shoveling slyvex off back of pickup truck when he felt pain in his back. Supervisor: jack belk
## 707                                                            02/05/2002 12:42 pm (fblackmo) employee was conducting right of way vegetation clearing on the back side of a ditch along state road 1004 (old hwy) when, he lost his footing. Supervisor: mark e. Cooney
## 708                                                                                                          02/05/2003 02:12 pm (fblackmo) employee states, while bending to replace blades on snow plow he felt pain in his groin area. Supervisor: b. J. Berryhill jr
## 709                                                     02/05/2003 02:23 pm (fblackmo) employee was conducting a road survey, he went to cross a fence and his boot got caught on the top, causing him to fall and dislocate his left ankle. Supervisor: richard hensley
## 710                                                                                                                 02/05/2003 02:39 pm (fblackmo) employee states while exiting truck she, mis-stepped causing the injury to her right knee. Supervisor: johnny coleman
## 711                                                                                                                                 02/05/2003 02:51 pm (fblackmo) employee states, he felt a pop in his lower back while lifting tire chains. Supervisor: g. G. Caudill
## 712                                                                                            02/05/2003 03:03 pm (fblackmo) employee states while loading plain registrations onto flat cart she, felt a pop in her lower back and hip area. Supervisor: jamy cummings
## 713                                                       02/06/2001 10:08 am Mr. Cox did not know he was responding to a damaged power pole sign, once on the scene he was exposed to intense flashes of light causing irritation to both eyes. Supervisor: b. T. Coble
## 714            02/06/2001 10:41 am employee momentarily took his eyes off the road while driving on friendship road on 1/17/01. The vehicle he was driving traveled across the centerline, striking an oncoming vehicle on its side. Mr. Sharp has cuts to his face, and
## 715                                                                    02/06/2001 10:53 am employee picked up spindle pin to put into spindle; when he felt pain in his lower back and right leg. Supervisor: conrad d. Watkins 04/24/2001 04:27 pm (sjerniga) lost time
## 716                                                      02/06/2001 10:57 am employee was weighing a 3 axle dump truck on 1/22/01. When he placed a scale under the second axle on the left he struck his head causing a small abrasion. Supervisor: 2lt. W. E. Thompson
## 717                                                                                     02/06/2001 11:04 am employee was cutting log into blocks to remove it from the road; when the log rolled over striking him on his right leg and ankle. Supervisor: a. R. Hensley
## 718              02/06/2001 11:24 am employee was crossing the street to the state parking lot; when her foot went into a hole. Ms. Milligan lost her balance and fell on her face scraping her cheek. She also has a black eye and her mouth is swollen and lip bruised
## 719                               02/06/2001 11:35 am employee was using a weed eater cutting around pipes; when the blade picked up a piece of metal. The metal struck him and cut him on his face (right side) and beneath his right ear. Supervisor: quindale bullard
## 720                                                                                                         02/06/2001 11:40 am employee was trimming tress with chain saw; when he stepped on hawthorne cutting/puncturing his lower left leg. Supervisor: b. G. Herron
## 721            02/06/2001 11:45 am employee states she has excruciating pain in her thumb, center of right hand from wrist area up to her shoulder blades. She states she has chest pain up to the point of hyperventilating. She states she has swelling of the fingers
## 722                                                                                  02/06/2001 12:00 pm employee picking up paper from roadway; when he lost his footing, slipped and fell down embankment. Mr. House sprain his left wrist. Supervisor: d. T. Cottrell
## 723                                                                                               02/06/2001 12:06 pm employee was moving a box from one place to another; when he felt pain and stiffness in his left leg and lower back area. Supervisor: k. M. Hughes
## 724                                                       02/06/2001 12:12 pm employee was measuring and inspecting pipe; when he stepped on a ice covered rock and lost his balance. He fell and hit his left elbow (contusion) on a rivet. Supervisor: jerry f. Shuler
## 725                                                                                         02/06/2003 07:52 am (fblackmo) employee lost his footing and slipped while climbing into cab of a tandem dump truck. Supervisor: l. O. Ethridge 04/12/2004 11:59 am (gwhite)
## 726                                  02/06/2003 08:24 am (fblackmo) employee was in the process of helping another employee (Mr. Hargrove) remove a snow plow from the back of a dump truck. Employee was struck in the hip area by the plow. Supervisor: d. T. Cottrell
## 727                                                                                                                  02/06/2003 08:40 am (fblackmo) employee states he experienced shoulder pain while lifting 17 pounds of weight continually supervisor: j. L. Lindsey
## 728            02/06/2003 11:36 am (fblackmo) employee states. As I was getting ready to turn my water control knob on and release my automatic jaws on the drill rig, my partner was tightening my adapter that goes to my drill pipe. My arm accidently hit the clutch
## 729                                                       02/06/2003 11:52 am (fblackmo) employee was chipping brush from ice storm. Limbs had poison ivy on them and wind blew sawdust from chipper, causing rash on face and into eyes. Supervisor: l. S. Carpenter jr
## 730                                                                                                                                                     02/06/2003 12:04 pm (fblackmo) employee slipped on ice while going to the parking lot. Supervisor: roger s. Deal
## 731            02/06/2003 12:15 pm (fblackmo) employee had stopped on the road with his state crew cab truck to ask a motorist, who had run off the road into a ditch if he needed some type of assistance. Walking back to his state vehicle, he slipped on the roadway
## 732                                                                                     02/07/2000 03:05 pm employee was cutting trees and rolling big section of tree off the guardrail, when a limb broke off striking him on the left knee. Supervisor: mark stafford
## 733                                                                                                                                                     02/07/2000 03:09 pm employee was bitten by an unknown insect on left shoulder/arm. Supervisor: c. N. Edwards, jr
## 734           02/07/2000 04:09 pm Mr. Mcneill was walking into shop to open up on 1/24/2000, when he stepped into some clear substance and fell cutting above his left eye and bruising his left hip. The clear substance was hydraulic oil that had leaked from a truck
## 735                                                                02/07/2000 04:19 pm employee was traveling south on nc 50 in wake county when he lost control on ice/snow covered roadway. The rear of his car struck the ditch bank. Supervisor: capt. E. C. Bristle
## 736                                                                                                                  02/07/2000 04:30 pm employee mashed left hand little finger while removing a shield off a spreader on 1/20/2000. Supervisor: jerry marshall bradley
## 737                                                                                                         02/07/2000 04:40 pm employee was cutting tree limbs with chainsaw, when a limb fell on saw causing it to push/cut into his left leg. Supervisor: m. J. Namin
## 738            02/07/2002 03:47 pm (fblackmo) employee was repairing washout on shoulder of the road where the dirt had slid and covered a pipe. While looking for inlet end of pipe the backhoe struck a 4'' gas line. Employee was standing on the shoulder @ e/p when
## 739           02/07/2002 04:15 pm (fblackmo) employee was loading sand-blasting hoses from the back of storage building near lumber shed. Employee was walking to the truck when, he stepped on a nail (roofing felt tack) 1 1/4" with square flat washer. Supervisor: j
## 740            02/07/2002 04:38 pm (fblackmo) employee was moving plywood(fall protection) which was cut and placed in between the beams and laying in the bottom flange. Employee had already moved some of the plywood when, he stepped back to move some more. Employ
## 741                                                                                  02/07/2002 04:53 pm (fblackmo) employee was using a bush axe to clear brushes when a thorn struck his right little finger causing redness and swelling. Supervisor: tim k. Southard
## 742                                                                                                                        02/08/2000 04:17 pm employee was changing motor grader blades when blade fell striking him on his left knee and foot. Supervisor: tom huskins
## 743                                                                                                                            02/08/2000 09:17 am employee was trying to repair a tarp, when the tarp bar broke cutting him on his right hand. Supervisor: r. E. Austin
## 744                                                                                                                      02/08/2000 09:44 am Mr. Narron states he has loss of hearing due to working around noisy equipment for 10 years. Supervisor: charles whitfield.
## 745                                                                                                                                     02/08/2000 09:50 am employee was bending and turning to chock a vehicle, when he strained his lower back. Supervisor: t. L. Gray
## 746           02/08/2000 10:05 am Mr. Lusk was traveling east on highway 70 when a van pulled out in front of him without yielding the right of way. Officer lusk attempted to go the the right lane to avoid the collision, but struck the van in the side at the rear.
## 747                                                              02/08/2000 10:17 am employee was working with a crew digging property corners, when he went to uncover dirt with his hands a crepe myrtle tree limb hit him in his left eye. Supervisor: mike motsinger
## 748          02/08/2000 10:25 am employee was waiting at the red light on the I-95 off ramp (exit 49), when a cement truck traveling on nc 53 passed throwing a rock up breaking the drivers side glass. Mr. Ellington has an irritation to his left eye, possibly cause
## 749                                                                      02/08/2000 10:34 am employee was parking a truck in designated area beside the shop office, when on the way back he slipped and fell on ice injuring his lower back. Supervisor: t. C. Privette
## 750                                                                                                                        02/08/2000 10:40 am employee slipped and fell on ice when coming out of building injuring his left hip and shoulder. Supervisor: r. D. Peeler
## 751                                                 02/08/2001 04:21 pm employee was using a chainsaw to cut down trees on sr 1303; when the tree split and hit Mr. Snell on his right arm and hand. He required 6 stitches in his right thumb. Supervisor: c. S. Mebane
## 752            02/08/2001 04:37 pm officer thomas was stopped at the intersection of strickland bridge road and raeford road; when driver of a commercial vehicle tried to make a right turn. While making her turn, she struck the officer car on the left side. Office
## 753                                                      02/08/2002 04:19 pm (fblackmo) employee was throwing sandbags from one man to another to place at a bridge. The bags are used in a stack to contain flowable fill that was being poured. Supervisor: r. E. Ball
## 754            02/08/2002 04:38 pm (fblackmo) employee fell off of trailer while planting seeds. Employee was sitting on a bucket on a trailer operating a seed sower when the tractor pulling the trailer moved off of the path and hit a hole. Employee lost balance a
## 755                                                                                                                                                02/08/2002 04:55 pm (fblackmo) employee injured his left knee while stepping off work ladder. Supervisor: b. R. Moore
## 756                                                                                       02/09/2000 03:20 pm employee sprain his left wrist when he slipped and fell on ice on 1/27/2000. He was walking back to his truck at time of incident. Supervisor: a. L. Smith
## 757                                   02/09/2000 03:30 pm Mr. Gay told his supervisor that his left arm was sore and swollen due to the tetanus shot in October. The tetanus shot was given while working during hurricane floyd clean-up work. Supervisor: h. V. Inscoe
## 758                     02/09/2000 03:36 pm employee was carrying records to put on closet shelf, when she tried to grab falling files and hit the door knob. She has a contusion @ right wrist and swelling in lower right arm and hand. Supervisor: b. R. Trivette, jr
## 759                                                                                                                                                                               02/09/2000 03:43 pm employee was attempting to locate a vin number on the under frame.
## 760                                                                                                                              02/09/2000 03:56 pm Mr. Whitfield states he has hearing loss due to working around noisy equipment for 20 years. Supervisor: ricky bell
## 761                                                                                                                            02/09/2000 04:00 pm Mr. Morgan states he has hearing loss due to working around noisy equipment for 19 years. Supervisor: luther thompson
## 762                                                                                                  02/09/2000 04:26 pm employee was fixing pot holes, when a tractor trailer ran over a cold patch shooting gravel into employee's right eye. Supervisor: r. T. Vestal
## 763                                                         02/09/2000 04:33 pm employee was getting out of vehicle (parked on 4th floor deck at courthouse), when she slipped and fell on ice injuring her left hip and lower back. Supervisor: william m. Wilhelm, jr.
## 764                            02/09/2001 04:13 pm employee was repairing guardrails on 1/29/01. Mr. Arnett went to the crewcab to get tools; when he stepped into a hole and sprained his right ankle. Supervisor: j. N. Mixon 04/24/2001 04:28 pm (sjerniga) lost time
## 765            02/09/2001 04:20 pm employee was weighing a truck and returning the portable scale to the patrol car; when a cord broke loose and struck Mr. Davis in the mouth. The blow broke his right front tooth and cut his lip. Mr. Davis was unable to find tooth
## 766                                                                                                                     02/09/2001 04:29 pm employee was grinding a piece of steel; when a piece flew under safety glasses into his right eye. Supervisor: w. D. Watkins
## 767                                                                         02/09/2001 04:35 pm employee was organizing storage area on 1/19/01. She was lifting heavy boxes of brochures and tapes when she felt a sharp pain in her lower back. Supervisor: bill stout
## 768            02/09/2001 04:42 pm employee was pouring concrete repairing a crack on 2/1/01. Mr. Williams was standing about 10' from the travel lane; when a tractor trailer passed by at a high rate of speed. A foreign object blew into his face cutting his left c
## 769                                                                                                            02/09/2001 04:55 pm employee was cutting wedges for bushaxe handle; when the hack saw slipped cutting his left index finger. Supervisor: l. R. Absher, jr
## 770                                                                             02/09/2001 09:36 am employee was sitting at her desk on 1/17/01. She reached with her right hand to open bottom drawer; when she felt a sharp in her right arm. Supervisor: james taylor
## 771               02/09/2001 09:45 am employee was traveling south on highway 16 on 1/24/01. A private vehicle (gmc truck) crossed the center line and struck employees diesel tandem truck. Mr. Smith suffered muscle strain to his lower back. Supervisor: c. B. Lunsf
## 772           02/09/2001 09:54 am employee was lifting a reported stolen and recovered motorcycle engine into patrol vehicle on 1/25/01. Officer medlin legs gave out while lifting the engine. He has possible left and right knee and lower leg fractures. Supervisor:
## 773               02/09/2001 10:18 am employee was sitting at stop light when he was rear-ended by another vehicle on 1/29/01. Driver of the private vehicle foot slipped off the brakes. Mr. Hayes has closed head injuries due to this accident. Supervisor: cpt. E. C
## 774               02/09/2001 10:34 am employee was cleaning out choke from main pump on 1/20/01. He was engaging the pump to loosen up the choke; when the pry bar fell in pump. The pry bar struck him and cut him over his right eye requiring 8 stitches. Supervisor:
## 775                                                                                                                                            02/10/2000 03:18 pm employee was shoveling gravel when he strained his lower back on 12/28/99. Supervisor: d. T. Childrey
## 776                                                                                                02/10/2000 03:24 pm employee was using a pry bar to put snow plow on truck, when the pry bar slipped hitting him on neck and right shoulder. Supervisor: j. P. Ingram
## 777                                                                                         02/10/2000 03:31 pm employee cut his right hand between the thumb and first finger while trying to remove a hunk of salt off salt spreader slinger. Supervisor: r. T. Vestal
## 778            02/10/2000 03:40 pm employee was removing hydraulic line to repair the bond, when line was re-installed incorrectly causing the oil to reheat and separate. He suffered 2nd degree burns to his face, nose, forehead and also top of his head. Supervisor
## 779                                                   02/10/2000 03:54 pm Mrs. Johnson has pain in both arms, which radiates up into shoulders and upper back area. She has a cold sensation in arms and hands due to repetitive motion on the job. Supervisor: ann self
## 780                                                                                                         02/10/2000 04:06 pm employee was detaching a snow plow from dump truck, when the plow tipped over and fell on his lower right leg. Supervisor: j. K. Murdock
## 781                                                                                02/10/2000 04:11 pm employee was attempting to open grate to beat out frozen sand, when he lost his balance and fell forward hitting his head on the grate. Supervisor: r. D. Holland
## 782                                                                                                                02/10/2000 04:23 pm employee was getting out of truck when he closed the door on his left hand breaking his little finger. Supervisor: c. W. Burleson
## 783                                       02/10/2001 10:05 am employee was getting on asphalt roller and reached for the steering wheel to pull up on. The steering wheel turned and caused him to twist/pull muscles in his right lower back. Supervisor: j. D. Hensley
## 784                                                                              02/10/2001 10:12 am employee was trying to start tar kettle; when the battery burst causing acid to get into his eyes. Supervisor: r. W. Lewis 04/24/2001 04:31 pm (sjerniga) lost time
## 785           02/10/2001 10:24 am employee operating broom tractor traveling down sr 1112 on 1/31/01. He ran off the right side of the roadway and while trying to recover he flipped/turned the equipment over. Mr. Smith has an abrasion to his right wrist and left e
## 786                                  02/10/2003 02:22 pm (fblackmo) employee was putting up parts and failed to see a brake chamber shaft protruding from a floor level bin. Employees' leg struck shaft causing a laceration and contusion. Supervisor: michael simmons
## 787                                                                                                                                    02/10/2003 12:42 pm (fblackmo) employee states he hit his right knee on the corner of door on vehicle. Supervisor: russell ramsey
## 788                                                                                                                                               02/10/2003 12:54 pm (fblackmo) employee states while clearing brushes he, tripped and fell. Supervisor: c. S. Mcdonald
## 789                          02/11/2002 02:27 pm (fblackmo) employee was cutting survey line when he came into contact with poison oak. Employee was unaware that he had gotten poison oak on his hands and he rubbed his face during the day. Supervisor: t. K. Wheeler
## 790                                                                                                                  02/11/2002 02:41 pm (fblackmo) employee was pulling brushes off of the right of way when, he lost his footing and fell. Supervisor: d. L. Carpenter
## 791                                                                                     02/11/2002 02:56 pm (fblackmo) employee was pulling bushes and feeding into the chipper when, he stepped on a small limb and twisted his right knee. Supervisor: d. L. Carpenter
## 792          02/11/2002 03:03 pm (slee) broom came out of gear and began rolling downhill backwards on a steep section of sr 1107, east fork road. Operator attempted to stop by braking then steered broom into ditch to stop. Broom overturned when steered into ditch
## 793          02/11/2002 08:37 am (slee) vehicle #1 was traveling south on I-85, vehicle #2 and vehicle #3 were also. Vehicle #1 failed to reduce speed and struck vehicle #2 in the rear with it's front end and this impact then forced vehicle #2 to strike vehicle #3
## 794                                                                02/11/2002 10:25 am (fblackmo) employee was conducting a road-test when, customer hit accelerator all of a sudden running into the porch at the drivers license office. Supervisor: michael g. Jarman
## 795                                                                                                                                  02/13/2001 02:42 pm employee was erecting/replacing signs on 2/2/01; when he strained his left shoulder. Supervisor: johnny coleman
## 796                                                                                                02/13/2001 02:47 pm employee was blowing loose aggregates from cracks on the roadway; when he strained his left knee while walking backwards. Supervisor: r. W. Lewis
## 797                02/13/2001 02:59 pm employee was taking a sample of concrete for testing out of truck; when he strained his mid-body area while handed sample to co-worker. This action resulted in a hernia. Supervisor: marvin wayne currie 04/24/2001 04:17 pm (sj
## 798          02/13/2002 07:56 am (slee) sov was stopped for road work, sov #1 was heading down the hill to the low lands of ne cape fear river when sov #2's brake lights came on. Sov #1 applied brakes to slow down and the truck started to skid 96 feet on the new a
## 799                                                 02/13/2003 02:55 pm (slee) Mr. Lewis reached down to answer his cell phone and ran off the roadway. He steered to the left and over steered to the right, locked up the brakes sliding into the bridge rail head on.
## 800                                                                                      02/13/2003 09:26 am (fblackmo) employee was using pipe wrench to tighten drain plugs on cooling tower when, the wrench slipped causing a cut on his hand. Supervisor: h. Magnum
## 801                             02/13/2003 09:44 am (fblackmo) employee was shoveling asphalt from the back of a flatbed truck when, his left foot slipped on the asphalt release and fell over the edge causing the injury to his lower back. Supervisor: harvey watson
## 802                                                                                                                     02/13/2003 10:19 am (fblackmo) employee states he pulled his left leg muscle while dragging and lifting storm debris. Supervisor: marty f. White
## 803                                                                                                                                02/13/2003 11:09 am (fblackmo) employee states while stepping off mower he experienced pain in his left foot. Supervisor: rodney wood
## 804           02/13/2003 11:56 am (fblackmo) employee was hooking a chain to a piece of pipe to unload it from the back of a tandem truck. The excavator jumped and swung open causing employees leg to be caught between the pipe and the truck. Supervisor: w. Herring
## 805              02/14/2000 04:10 pm Mrs. Smith and a co-worker were moving a desk to the center of the room, when the desk top fell off landing on Mrs. Smith right foot. She didn't seek treatment at that time, but now a knot has risen from incident. Supervisor: d
## 806                                           02/14/2000 04:17 pm employee grabbed the top of fence post to steady it for his partner, when the needle stuck in his left hand near his thumb. They were trying to nail the wire to the post. Supervisor: johnny r. Price
## 807                                                                                                  02/14/2000 04:34 pm employee was lifting/loading 4 bales of straw into bed of dump truck, when he strained his lower back on 1/7/00. Supervisor: t. D. Clement, jr.
## 808              02/14/2000 04:40 pm Mr. Fields (and co-worker lynn hayes) was removing used tandem snow plow blades and transporting to the scrap metal area on 2/2/00. The blade slipped out of the bucket, striking Mr. Fields on right thigh/knee. Supervisor: eugen
## 809                                                                                                       02/14/2000 04:53 pm Mr. Mersch was going outside to get supplies for the lab, when he slipped and fell twisting his left wrist. Supervisor: michael t. Beasley
## 810         02/14/2002 01:50 pm (fblackmo) employee states, the d. O. T. Crew was replacing pipe line on burningtown road. Removing the old pipe the employee hooked a chain around the old pipe to pull it out. The operator to the trachhoe picked up the pipe and the
## 811            02/14/2002 02:05 pm (fblackmo) employee entered the front door of the office, she tripped over a rug that had a pucker in its border. Employee lost her balance and stumbled into a table and computer printer, striking her forehead on the printer, her
## 812                                                                                          02/14/2002 02:20 pm (fblackmo) employee states that, while reaching up to pull a file (shoulder high) he felt a sharp pain in his right hip area. Supervisor: l. M. Barbour
## 813                                                         02/14/2002 02:55 pm (fblackmo) employee was exiting off tractor mower when he noticed a spider on his arm. Employee removed the insect, insect had bitten him on left arm and elbow. Supervisor: b. F. Sloan
## 814                                                                                                           02/14/2002 03:08 pm (fblackmo) employee states that while handling materials that she experienced pain in her right arm and hand. Supervisor: shane murray
## 815                                      02/14/2002 03:25 pm (fblackmo) employee got out of truck to inspect crossline pipe and left truck door open. Pipe was in a hole and when employee came up, he hit his head on the lip of the door. Supervisor: kevin r. Hedrick
## 816                                              02/14/2002 03:37 pm (fblackmo) employee was removing bolts from a old stop sign when the bolts freed from the sign. Employees hand came down onto the sr metal plate cutting the right thumb. Supervisor: steve clayton
## 817               02/14/2002 03:48 pm (fblackmo) employee was riding to the job site. Employee was sitting in the front passager seat. The vehicle failed to stop and ran into the back of another truck. Employee states that, her seat belt caused a fracture sternum.
## 818                                                                                                                                            02/14/2002 11:54 am (fblackmo) repetitive motion doing daily job description. Supervisor: r. M. Huffman (senior examiner)
## 819             02/14/2002 12:25 pm (fblackmo) employee was riding to the job site. Employee was seated in passager seat. A private vehicle had stopped in front of them. The driver of the state vehicle truck failed to stop and ran into the back of the private vehi
## 820                                                                                                     02/15/2001 09:13 am employee was picking up a stack of file folders; when a brown spider bit his right hand near the base of his thumb. Supervisor: r. G. Watson
## 821                                    02/15/2001 09:21 am employee was cutting trees on 2/6/01; when a tree limb struck him in his face/head. Mr. Hossley has facial lacerations and a concussion. Supervisor: d. M. Pressley 04/24/2001 04:44 pm (sjerniga) concussion
## 822                                                                                                                                     02/15/2001 09:32 am employee strained his right hip while entering and exiting motor grader on 1/22/01. Supervisor: m. H. Brewer
## 823                                                                02/15/2001 09:36 am employee was working near the back of asphalt kettle on 1/24/01. A backhoe backed into him striking him in the back and knocking him against the kettle. Supervisor: d. E. Taylor
## 824                                                                    02/15/2001 09:41 am employee has injuries due to repetitive motion while using keyboard, mouse, etc. Mr. Beverly has pain/strain to his right wrist, arm and elbow. Supervisor: clinton b. Little
## 825           02/15/2001 10:35 am employee was clearing trees on construction project; when a co-worker cut a tree to fall away from crew members. A strong gust of wind turned the tree back and fell onto Mr. King right shoulder causing pain in his back. Supervisor
## 826                                                                                                                            02/15/2001 10:52 am employee was cutting trees from the right of way; when a tree fell onto his right shoulder. Supervisor: kent d. Boyer
## 827                        02/15/2001 10:56 am employee came in contact with poison ivy plants while checking markers on right of way. She has contact rash on face, neck, chest, and stomach. Supervisor: r. Sutton 04/24/2001 04:32 pm (sjerniga) rash from vegetation
## 828           02/15/2002 07:45 am (fblackmo) employee states that another employee (Mr. Ervin) went in the office to use the telephone. Employee(Mr. Mcdowell) was already on the phone, so he closed both doors for the employees' privacy. Employee (Mr. Ervin) left t
## 829             02/15/2002 08:03 am (fblackmo) employee was traveling south on state road 1532(dirt part) in swb dump truck. Part of the snow plow bracket ( part that the hydraulic arm is attached) fell off, went back under the truck causing the injury to his left
## 830                                02/16/2000 10:33 am employee was struck from behind by a private vehicle on highway 11, south in pitt county on 1/25/00. Mr. Jones has injuries to his head (concussion), neck (whiplash) and upper back. Supervisor: grady c. Raynor
## 831                                                                           02/16/2000 10:53 am employee was removing a 24" flag and stick from the snow plow corner, when it came out and struck employee in his right eye(contusion). Supervisor: roy donald pittman
## 832                                                                                 02/16/2000 10:56 am employee was trying to start up chainsaw when it jammed and flew back hitting him on his left knee. (post traumatic patella tendonitis) supervisor: j. S. Walker
## 833                                                                                                                 02/16/2000 11:02 am employee slipped and fell on ice/snow in parking lot on dot property and landed on his right knee. Supervisor: bobby john howell
## 834                                                              02/16/2000 11:08 am employee was using an air wrench to remove blade bolts, when bolts started spinning cutting through his glove cutting him on his left middle finger. Supervisor: michael l. Parsons
## 835                                                                                            02/16/2000 11:14 am employee got out of his truck to check snow plow, when he slipped and fell on ice injuring his right elbow and shoulder. Supervisor: jerry m. Bradley
## 836                                                                                                                 02/16/2000 12:28 pm employee was helping change blades on snow plow, when he strained and twisted his lower back. Supervisor: jerry marshall bradley
## 837                                                    02/16/2000 12:32 pm employee was walking off the back slope of a sand pile, when he loss footing and slid down slope (frozen section on the slope) injuring his left hip and lower back. Supervisor: g. A. Burton
## 838                                                                                                                    02/16/2000 12:40 pm employee was attempting to tighten hydraulic hose, when wrench slipped smashing his right thumb. Supervisor: cecil bowser, jr
## 839                                                                             02/16/2000 12:45 pm employee was doing survey work on project 8. U492304 on I-85 in guilford county, when he came in contact with poison oak. (rash on both arms) supervisor: doug kimes
## 840                                                                                 02/17/2000 03:44 pm employee was changing rear tire on passenger side, when the jack handle slipped out smashing his left thumb against the fender. Supervisor: ssgt. Steve williams
## 841            02/17/2000 08:49 am employee was chopping limbs on sr 1228 in pitt county on 6/10/99, when he lost his balance and fell backwards into the ditch. He was feeding the limbs into chopper, when the limb turned towards him causing him to step back. Mr. T
## 842            02/17/2000 08:57 am Mr. Mecimore was bruised under left side of his ribs on 2/8/00, when mowing on highway 16. Mower#1- Mr. Mecimore mowing southern direction and mower#2- Mr. Parker mowing northern direction. Mower#2 threw a large rock striking mow
## 843            02/17/2000 09:13 am Mr. Friday strained his neck and upper back on 1/25/00 while pushing snow on nc highway 62. Vehicle #1 was pushing snow when he lost control of truck, sliding sideways and stopped in middle of roadway. Vehicle #2 (Mr. Friday) was
## 844                                                                            02/17/2000 09:22 am employee was walking toward dump truck to assist another employee preparing his salt spreader, when he slipped and fell on ice. Supervisor: william e. Mcclendon, jr.
## 845                                          02/17/2000 09:29 am employee was removing snow with truck and snow plow off roadway, when he hit concrete median. The median was not visible at time of incident (snow covered and no markers up). Supervisor: m. D. Brooks
## 846                                    02/17/2000 09:35 am employee was getting ready to give a road test to a customer, when she tripped and fell over telephone cord on the floor. When she fell her left hand hit the corner of the desk. Supervisor: virginia monroe
## 847              02/18/2000 09:40 am employee was using a string trimmer to clear roadside when he cut into some poison ivy. Mr. Lewis has contact rash on both arms, chest, stomach, back and both legs. Supervisor: james barnes note: workers' comp. Section never re
## 848               02/18/2000 09:47 am employee was driving when mirror came off windshield by the right air bag and hit Mr. Horne in the head. Supervisor: p. Korey newton note: workers' comp. Never received this claim (form 19). Safety received the form, therefore
## 849                02/18/2000 09:59 am employee was loading concrete blocks on truck, when he felt pain in his lower back. Supervisor: w. E. Evans note: workers' comp. Section never received this claim (form 19). Safety received this form, therefore we are setting
## 850                                                                                                                                02/18/2002 02:11 pm (fblackmo) employee was in his state truck when a dump truck hit the rear of his truck. Supervisor: chris kirkman
## 851                                                                                                                       02/18/2002 02:24 pm (fblackmo) employee states that while blowing pine straw, wind blew debris into his right eye. Supervisor: brian k. Glover
## 852                                                                                 02/18/2002 02:34 pm (fblackmo) employee was walking up a bank to get some tools from the tool truck. While walking up the bank employee right knee gave way. Supervisor: t. J. Davis
## 853             02/19/2001 09:39 am employee stated he injured his back while assistant a mechanic change motor grader tire on 6/14/00. He stated he was holding down tire with his foot on the rim; when his foot slipped off tire causing a 12' drop. He didn't report
## 854                                                                                      02/19/2001 09:48 am employee was climbing down from excavator on 2/12/01; when he stretched out too much causing him to pull a muscle in his lower back. Supervisor: bill boone
## 855                                                                                                               02/19/2001 10:13 am employee was reaching to get a bucket of soap; when he strained muscles in his upper mid-back area. Supervisor: jonathan rinehardt
## 856                                                                                                                                02/19/2001 10:18 am employee was unpluging wire on thermolay truck; when she twisted/sprained her left wrist. Supervisor: c. D. Cloud
## 857                                                                       02/19/2003 11:54 am (fblackmo) employee states that for the last three to four months, she has been experiencing pain in both hands and arms due to repetitive motion. Supervisor: gary wilson
## 858                                   02/20/2001 03:02 pm employee was pulling a bent screw out of reflectometer; when the screw came loose causing the employee to cut/scrape her left hand (left little finger) on aluminum stripping floor. Supervisor: w. K. Brazell
## 859                                                       02/20/2001 03:10 pm employee was climbing up an embankment between a pipe; when a large log rolled out from under Mr. Davis. The log rolled over his right ankle and lower right leg. Supervisor: r. L. Bowers
## 860                                                                                                                                             02/20/2001 03:24 pm employee was leaving the job site; when debris blew into his left eye. Supervisor: robert d. Simpson
## 861                                                                                          02/20/2001 10:56 am employee was assisting co-workers pick up a hand tiller and put it in the back of truck; when he strained his left lower back. Supervisor: greg rayburn
## 862            02/20/2001 11:02 am employee was traveling south on dutch road on 2/12/01; when he saw another state dump truck approaching him on a narrow 19' roadway. Mr. Paige veered over to the shoulder of road' when the load shifted due to the soft shoulder. T
## 863                                                                                                                  02/20/2001 11:12 am employee states he has hearing loss due to excessive noises from electrical machinery on the job. Supervisor: t. W. Whittington
## 864                                  02/20/2001 11:19 am another employee was demonstrating a weedeating technique; when Mr. Cochran was moved the other employee did not see him. Mr. Cochran was struck in the right leg by the weedeater. Supervisor: doug h. Johnson
## 865          02/20/2003 08:59 am (fblackmo) employee was exiting the truck, (0209) on passenger side, front seat landing on one foot. Employee states the pain in his left leg proceeded to get worst through out the day, along with numbness in foot. Supervisor: rodn
## 866                                                                                                                        02/20/2003 09:22 am (fblackmo) employee states while un-loading scrap tires he experienced pain in his lower back. Supervisor: e. M. Presnell
## 867                                                                                 02/20/2003 09:33 am (fblackmo) employee was loading steel h-piles on trailer when, he stepped over the pile he slipped causing the injury to his left leg. Supervisor: gerald messer
## 868                                                                                                         02/20/2003 10:17 am (fblackmo) employee states while pulling limbs to chipper, one of the limbs fell hitting him on his right foot. Supervisor: david lowery
## 869                    02/20/2003 10:28 am (fblackmo) employee states while loading and un-loading the supply truck she, experienced pain in her left shoulder. Supervisor: r. D. Markham 4/11/2005 10:30 am (gwhite authorized tens unit through empi medical supplies)
## 870                                                                    02/21/2000 02:33 pm employee was driving on us 21, bus. Highway when he was struck from behind by a private vehicle. Mr. Spurlin has strain to his neck and lower back. Supervisor: r. M. Freeman
## 871                                                                      02/21/2000 02:57 pm Mr. Shepard was cutting back trees on roadway, (clean-up work after snow storm) when he came in contact with poison ivy -rash all over his body. Supervisor: d. T. Childrey
## 872                                                                                              02/21/2000 03:10 pm employee was walking down the steps to administer a road test, when she turned (twisted/sprain) her right ankle over. Supervisor: michael g. Jarman
## 873                                                        02/21/2000 03:19 pm Ms. Jarman was plowing snow off bridges, when the plow caught expansion joint causing the truck to come to an abrupt stop. Her chest wall hit the steering wheel. Supervisor: d. C. Kimes
## 874                                                                    02/21/2000 03:31 pm employee was removing the lid on oil drum with a hammer and screwdriver, when the screwdriver slipped causing him to cut his left ring finger on lid. Supervisor: f. E. Floyd
## 875                                                                             02/21/2000 03:41 pm employee was using pressure hose to wash salt from truck and spreader, when water & salt splashed back into his face and into left eye. Supervisor: g. E. Strickland
## 876           02/21/2003 08:33 am (fblackmo) employee was operating front end loader during snow storm loading trucks with salt. Employee exited the loader and slipped on the bottom step due to the ice. Employee states that both his hands were still holding the lo
## 877                                                    02/21/2003 08:50 am (fblackmo) employee states he was stepping into truck when, he felt a pop in his right knee causing him to fall forward into front seat. Supervisor: rodney wood 09/05/2003 08:30 am (gwhite)
## 878                                                                                                 02/21/2003 09:01 am (fblackmo) employee tripped over boxes in the hallway when exiting stockroom and landed directly on his left knee cap. Supervisor: d. Chad kimes
## 879            02/21/2003 09:14 am (fblackmo) the asphalt cold mix pile at buncombe maintenance is covered with plastic. Old tires are placed on top of the plastic to hold it in place. Employee was removing the tires in order to access the cold mix when the injury
## 880                                                                                                                                        02/21/2003 09:30 am (fblackmo) employee states while lifting carton he felt pain in his groin area. Supervisor: william stone
## 881                                                                                                                                02/21/2003 10:33 am (fblackmo) employee was unloading a piece of equipment when, felt pain in her lower back. Supervisor: bruce myers
## 882                                                                                                     02/21/2003 10:45 am (fblackmo) employee states while changing grader blades, the blade slipped causing a cut to his right index finger. Supervisor: cleve barton
## 883                                                                                                        02/21/2003 10:58 am (fblackmo) employee was helping install a set of tire chains on dump truck when, he felt pain in his lower back. Supervisor: w. H. Adkins
## 884          02/21/2003 11:08 am (fblackmo) employee states, while standing on a stepladders using a screwdriver to turn the electrical wires to a terminal block in a flasher, he experienced intense pain in his right upper shoulder area. Supervisor: jerry w. Porte
## 885                                                                             02/21/2003 11:28 am (fblackmo) employee states while cutting trees on state road 1821 in moore county. One of the limbs fell hitting him on his left shoulder. Supervisor: willie monroe
## 886                                                                                                                                   02/21/2003 12:33 pm (fblackmo) employee states while sharing mower blades, debris went into his right eye. Supervisor: s. R. White
## 887                                                                                                                                                            02/22/2002 01:55 pm (fblackmo) employee was trying to keep a desk from falling over. Supervisor: tex kidd
## 888                                                                                              02/22/2002 02:08 pm (fblackmo) employee was attempting to pull onto amboy road in asheville when, his vehicle was struck by a private vehicle. Supervisor: g. P. Ramsey
## 889                                                      02/22/2002 02:23 pm (fblackmo) employee was using a prybar to move a bracket out of the way so he could get a socket wrench on it. The bar slipped to hit his hand on the transmission. Supervisor; j. E. Adams
## 890                                                                          02/22/2002 03:35 pm (fblackmo) employee was attempting to cut plastic ties from a set of booster cables, knife being used slipped and left wrist was injured. Supervisor: thomas g. Huskins
## 891               02/22/2002 03:58 pm (fblackmo) employee was picking up trash on I-85 and had to run across I-85 to get a piece of tire rubber. While coming back across the road, he tripped on the piece of rubber falling to the pavement. Supervisor; d. R. Summers
## 892                                                                                                    02/22/2002 04:11 pm (fblackmo) employee was helping move a large sign. Employee slipped and fell in a hole that was covered with grass. Supervisor; w. S. Richard
## 893                          02/22/2002 04:22 pm (fblackmo) employee was removing hydraulic motor from chipper spreader. Employee was in an awkward position, he lost his grip and motor fell on his left hand. Supervisor: j. P. Hoffman 09/19/2005 01:44 pm (kbarefoo)
## 894             02/22/2002 08:05 am (fblackmo) employee was giving road test. The customer was making a left turn into the parking lot. A van that was following to close ran into the back of the vehicle when, the customer hit the brakes suddenly. Supervisor: winda
## 895            02/22/2002 08:25 am (fblackmo) crew was holding a tubular guardrail 25" in length. Employee was trying to stabilize it with a piece of 2 x 6 x 5 wood. As the crew let the guardrail down trying to re-position it the weight was more than employee anti
## 896                                                                                                                      02/22/2002 09:48 am (fblackmo) employee was driving swb dump truck hauling stones. Employee ran off road and wrecked. Supervisor: r. E. Langley
## 897                                                                                                                      02/22/2002 10:01 am (fblackmo) employee was raising tailgate latch on truck when he felt a sharp pain in his right side. Supervisor: l. C. Bass
## 898            02/22/2002 10:32 am (fblackmo) employee was working on a w guardrail on us421 r/l north bound at the end of the bridge. Employee was jacking a guardrail post in place, re-aligning it with the bolt holes. Employee bent over to put the jack lever into
## 899                                                                               02/22/2002 10:54 am (fblackmo) employee was leaving one office and headed to her office when, she tripped on a wood storage box that was placed in the hallway. Supervisor: randy wise
## 900             02/23/2000 01:10 pm employee was in route to the bus garage, when she slowed down for a patch of ice on 1/31/00. A private vehicle hit her from behind pushing her vehicle into a ditch causing her injuries to the neck, back, chest and left shoulder.
## 901                                                                                                        02/23/2000 01:26 pm employee was in route to work, when he hit icy spot and slid into a ditch injuring his neck, back, and right arm. Supervisor: d. C. Kimes
## 902                                     02/23/2000 01:34 pm employee was holding a pipe wrench for another employee to loose bolts on a strainer. He lost his footing, slipped and fell on his left side injuring his left ankle and knee. Supervisor: d. E. Hoggard, jr
## 903                                                                                                                               02/23/2000 12:59 pm employee banged her left knee on desk while in the process of sitting down at her desk. Supervisor: pamela guptill
## 904           02/23/2001 12:14 pm employee states while inspecting culvert on 2/23/00; he loss his footing due to fill material breaking loose. He grabbed stump with right arm to avoid falling into the creek. Mr. Wiggins strained/sprained his right shoulder. Super
## 905                                                                                                                                                                02/23/2001 12:22 pm employee has cumulative trauma to both hands and wrists due to repetitive motion.
## 906                                                    02/23/2001 12:28 pm employee strained his lower back while using a bush axe on 11/16/00. He was cutting a line in order to bridge reference points on bridge project in franklin county. Supervisor: r. J. Downes
## 907                                                       02/23/2001 12:36 pm employee has loss of hearing in his right ear and partial loss in the left ear. This was caused by prolonged exposure to harmful noise during his employment. Supervisor: thomas henderson
## 908                                               02/23/2001 12:49 pm Mr. Cunningham was struck by a tree on his right arm. He was assisting/pulling the end of a tree to get it low enough for another employee to cut at the time of incident. Supervisor: w. H. Lynch
## 909                                                                     02/23/2001 12:55 pm employee was changing tire on tire machine when his right leg got caught in between the machine and the end tool. The rim fell causing this injury. Supervisor: t. C. Harris
## 910                                                                                                                                                02/24/09 during crdt standing break fall, felt a muscle pull, again on 3/3/09 during a warm up feltlike a tore muscle
## 911             02/24/2000 08:47 am employee lost footing causing him to fall in the driveway at equipment shop on 2/11/00. He injured his left wrist, left ribs, and left knee. The employee was carrying a glass jar in his lunch bag at time of incident. The jar bro
## 912                                                   02/24/2000 09:41 am employee stepped off back of truck and slipped on snow/ice twisting his left ankle. When foot slipped employee grabbed back of truck, strained his right elbow. Supervisor: c. L. Watkins ----
## 913                                                                   02/24/2000 09:53 am employee stepped from bumper of equipment utility truck using three point contact, but slipped and twisted his knee on the wet concrete floor. Supervisor: marty craig tillman
## 914                                                                                                            02/24/2000 10:06 am employee was trying to retrieve signs on the bottom of pile, when the sign rack fell on top of her right foot. Supervisor: jerry pate
## 915                                      02/24/2003 02:37 pm (fblackmo) employee states, while removing log drift on bridge 40 along with two other employees rowing an aluminum boat he, complained of shortness of breath and chest pain. Supervisor: k. T. Stephenson
## 916                                                                                                                                     02/24/2003 02:59 pm (fblackmo) employee tripped over water line causing the injury to his right wrist. Supervisor: john thompson
## 917                                                                                                                        02/24/2003 03:27 pm (fblackmo) employee states, while cutting brushing he came into contact with poison oak. Supervisor: timothy k. Southward
## 918                                                                                           02/24/2003 03:39 pm (fblackmo) employee states w while walking across parking lot on ice, he slipped and fell catching his finger in the gate. Supervisor: d. L. Carpenter
## 919            02/24/2003 11:27 am (slee) vehicle #3 lost control on ice and crossed centerline and struck vehicle #3 on drivers side of snow plow then struck truck on drivers side. Vehicle #3 then came to rest on shoulder of road south bound. Vehicle #3 stopped I
## 920                                                                02/25/2003 07:38 am (fblackmo) employee was cutting right of way when a rock hit the window causing it to shatter. Fragments from the window went into employees right eye. Supervisor: r. E. Metcalf
## 921                                                                             02/25/2003 09:17 am (fblackmo) employee states w while bushing pipes on old mill road he became sick. Employee felt pain in his left side and back area. Supervisor: timothy k. Soughard
## 922                                                                                                                02/26/2001 04:54 pm employee was adjusting weight scales in trunk of patrol car; when the scale hit/bruised left foot. Supervisor: cpt. E. C. Bristle
## 923                                                                                            02/26/2001 05:00 pm employee was working in an asphalt patch crew on location; when a passing 18 wheeler truck blew debris into his left eye. Supervisor: d. L. Carpenter
## 924                                                                              02/26/2001 05:05 pm employee shoe hit the edge of the door while taking boxes to trash can. Mrs. Trantham fell on concrete patio twisting her right ankle. Supervisor: tommy kilpatrick
## 925                                                                                                                                             02/26/2002 02:58 pm (fblackmo) employee bent over in her chair to turn on heater when, she fell. Supervisor: anthony law
## 926                                             02/26/2002 03:09 pm (fblackmo) employee was cutting dead pine tree which fell on a dead limb. The tree rolled and hit the employee on the leg causing him to fall. Supervisor; peggy acuff 03/05/2002 11:02 am (twerner)
## 927            02/26/2002 03:19 pm (fblackmo) employee state that, she went to Dr. Mcginnis at hickory orthopaedic for re-occuring pain in left elbow. Doctor mcginnis treated the employee with a wrist splint for carpal tunnel also, a splint for right wrist. Superv
## 928                                                          02/26/2002 08:03 am (fblackmo) employee states that left wrist is swollen and has lumps on left side that hurts up and down the arm. Repetitive motion. Supervisor; tom clark 03/05/2002 10:57 am (twerner)
## 929                                                   02/26/2002 08:31 am (fblackmo) employee was on cdl lot conducting the pretrip inspection when, she tripped over a piece of concrete injuring her left toe. Supervisor; troy gurganus 03/05/2002 10:57 am (twerner)
## 930                                                        02/26/2002 08:55 am (fblackmo) employee was reaching under the seat to retrieve a personal item. Employee cut his left thumb on a piece of broken glass that was under the seat. Supervisor: c. N. Edwards jr
## 931                                                  02/26/2002 09:18 am (fblackmo) employee and inmates was changing tailgate on truck using a chainhoist. The chain slipped out of one of the inmates hand, hitting employee in the right eye. Supervisor: j. C. Mundy
## 932                                                                                  02/26/2002 09:29 am (fblackmo) employee was removing snow equipment from the state truck. Employee failed to hook the chains allowing the spreader to fall. Supervisor: w. H. Lynch
## 933            02/26/2002 11:31 am (fblackmo) employee was driving dump truck hauling stone to grader operator. Grader operator had windrow in middle of road, truck crossed over and hit rock causing steering wheel to spin. Employee grabbed the wheel and his hand g
## 934                                                                                                                    02/27/2001 02:45 pm employee bent down to pick up a tar bucket; when she felt a sharp pain/pull in her right lower back. Supervisor: j. J. Garris
## 935                                                         02/27/2001 02:50 pm employee was cutting trees in concrete ditches on us 220 bypass; when he came in contact with poison ivy plants. Foreign object (poison plants) in left eye. Supervisor: robert g. Davis
## 936                              02/27/2001 02:57 pm employee fell out of chair while attempting to sit down on 2/21/01. The faulty chair has poor hydraulics; when the chair quickly bottomed out and jarred her spine/lower back area. Supervisor: wiley daniel thomas
## 937                                  02/27/2001 03:29 pm employee was cutting trees on 2/7/01; when he came in contact with poison ivy plants. Mr. Gaylean has contact rash/swelling around his eyes. Supervisor: t. J. Spicer 04/24/2001 04:45 pm (sjerniga) vegetation
## 938                                                                                                                 02/27/2002 11:29 am (fblackmo) employee was exiting a front-end loader, missing the last step employee, fell to the ground. Supervisor: m. H. Brewer
## 939                                                                                                           02/27/2002 11:41 am (fblackmo) employee was walking on shoulder of nc37 to load up signs. Employee stepped into a hole and fell. Supervisor: david l. Lane
## 940                                                                      02/27/2002 11:55 am (fblackmo) employee was attempting to remove fittings from water pipe using a pipe wrench, when the wrench slipped hitting employees finger. Supervisor: daniel d. Holdeman
## 941             02/27/2002 12:07 pm (fblackmo) employee was operating chainsaw as part of right-of-way cleaning operation on adcock road. Employee was cutting down a fill slope as he moved the saw, the edge of the chaps cut employees leg. Supervisor: trent cothran
## 942                                                                                                                02/27/2003 10:15 am (fblackmo) employee states while walking along the edge of pavement, he felt pain in his left foot. Supervisor: e. R. Gurganus jr
## 943                                                                                                                                   02/27/2003 10:26 am (fblackmo) employee was installing a light when, something fell into his left eye. Supervisor: jackie lunsford
## 944                                                                                                                                                                              02/27/2003 10:38 am (fblackmo) employee slipped on wet floor. Supervisor: e. C. Bristle
## 945                                                                            02/27/2003 10:49 am (fblackmo) employee was using a pocket knife to hold down one end of a measuring tape when, the knife slipped causing a cut to his hand. Supervisor: j. H. Freeman jr
## 946                                                                                                            02/27/2003 10:59 am (fblackmo) employee was shutting spreader gate when, he mashed his finger between the gate and auger cover. Supervisor: d. R. Summers
## 947                                                                                                                              02/27/2003 11:24 am (fblackmo) employee states, while attempting to load a snow plow he felt pain in his back. Supervisor: m. B. Taylor
## 948                                                                                                                 02/28/2000 03:55 pm employee was bending over to pick up tire off the floor, when he pulled muscle in groin area (hernia). Supervisor: leroy farrish
## 949                                                                                                                       02/28/2000 04:02 pm employee was using chain saw to cut trees, when he strained his neck and back (cervical strain). Supervisor: bruce k. Dyer
## 950                                                            02/28/2000 04:14 pm employee was hammer drilling in concrete, when the drill hit a piece of reinforcing steel. Mr. Lail has broken bones in his right hand due to this injury. Supervisor: k. E. Anderson
## 951                                                                       02/28/2001 03:57 pm employee twisted/sprained his left knee as he got up from his desk on 2/13/01. He felt a sharp pain and heard a popping sound in his knee. Supervisor: capt. E. C. Bristle
## 952                                                                                                                      02/28/2001 04:12 pm employee was walking up a steep embankment and tripped on loose stones and twisted his left ankle. Supervisor: e. C. Thomas
## 953                                                                                                                                                                 02/28/2001 04:28 pm employee was lifting boxes on 11/9/99; when he strained/sprained his lower back.
## 954                                                                                                               02/28/2002 02:39 pm (fblackmo) employee was walking near catch basin when the ground gave way causing him to fall into a hole. Supervisor: donald king
## 955                                                                                                                          02/28/2002 02:55 pm (fblackmo) employee went to restroom, entering the room employee slipped on the wet floor. Supervisor: w. J. Timberlake
## 956             02/28/2002 03:14 pm (vsulliva) employee backing sov away from bridge work to turn around and from that point, he does not remember anything until waking up in hospital. Vehicle ended upside down in median. (road was under construction - no traffic.
## 957                                                                                                   02/28/2002 03:20 pm (fblackmo) employee was sharpening bush axe when the file slipped cutting his left hand. Supervisor: a. L. Clark 03/05/2002 11:01 am (twerner)
## 958             02/28/2002 10:36 am (fblackmo) employee was inspecting a 5-section traffic signal head at the depot with another employee. Both employees started to lifting the sign when employee(masiewicz) felt a sharp pain in his right hand. Supervisor: kelvin p
## 959                                                 02/28/2003 07:28 am (fblackmo) employee was removing snowplow from single axle dump truck. Employee was turning the bolt with a wrench when he slipped striking his head on the snowplow. Supervisor: r. I. Matthews
## 960                                                                                                                                            02/28/2003 07:43 am (fblackmo) employee states while shoveling ice he felt pain in his lower back. Supervisor: j. L. Bobo
## 961                  02/28/2003 08:53 am (fblackmo) employee was plowing, hit manhole ring over, and broke blade. The manhole was not level with the pavement. Employee states that due to the sudden stop he experienced pain in his neck area. Supervisor: s. W. Nance
## 962           02/28/2003 09:12 am (fblackmo) employee was operating front -end loader with pavement breaker mounted to the front. During operation, front end loader was rocking from side to side. Employee was leaning to the left to see operation and his face struc
## 963                                                                                                                                                        02/29/2000 04:15 pm employee was moving 50 pound bags of glass material into hopper when he injured his back.
## 964                                                                                                                          02/29/2000 04:28 pm employee twisted his left knee when he slipped and fell on steps of rosco spreader machine. Supervisor: charles spencer
## 965                                                                                                                              02/29/2000 04:34 pm employee has pain in left hand, wrist, shoulder and neck due to repetitive keying at work. Supervisor: brenda crump
## 966                                                                                                                       02/29/2000 08:47 am employee was using shovel removing snow and ice from bridge when he felt pain in his lower back. Supervisor: f. W. Huffman
## 967                                                                                                                         02/29/2000 08:54 am employee was stepping down from his backhoe trailer when he twisted/strained his right knee. Supervisor: johnny r. Price
## 968                                                                                                       02/29/2000 09:01 am employee was feeding brush into chipper, when brush twisted around and struck employee on his right cheek/face. Supervisor: c. B. Lunsford
## 969                                                                                                             02/29/2000 09:08 am employee was stepping down off flat bed crew truck onto uneven ground, when he twisting his left ankle. Supervisor: k. T. Stephenson
## 970                                                                                                                                  02/29/2000 09:15 am employee was picking up a 12x 12 piece of timber, when he strained his lower back. Supervisor: barry f. Kizziah
## 971                                                       02/29/2000 09:21 am employee slipped and fell bruising his left hip/thigh and back areas. Mr. Estep slipped on a temporary floor/deck pallet rack while preparing to move a drill rig. Supervisor: r. E. Irwin
## 972                                                                       02/29/2000 09:28 am employee walked into an open window frame while washing truck with steam cleaner hose. He has lacerations on the left side of forehead. Supervisor: jerry marshall bradley
## 973            02/29/2000 09:36 am employee lowered truck tailgate to enter truck to get a wrench from the tool box. He was on his knees lifting the lid of the box not feeling any discomfort at the time. The next morning 2 knots were visible one on each side of hi
## 974                                                                                                                                            02/29/2000 09:52 am employee was pulling tire off the rim when he felt pain in his lower back. Supervisor: james e. Isaac
## 975                                                  02/29/2000 09:58 am employee was walking toward truck shed to assist in putting on chains, when he slipped and fell on snow/ice covered pavement. Mr. Hill injured his right shoulder. Supervisor: gary r. Spangler
## 976                                                                                                                          03/01/2000 05:00 pm employee was dismounting from vehicle when he felt a pulling sensation in his lower back. Supervisor: michael g. Jarman
## 977                                                                 03/01/2000 05:06 pm employee fell down stairs after missing the step coming out of the school bus parking lot. Mr. Guyer sprained his right ankle when he fell on 2/22/00. Supervisor: james hartley
## 978                                                                                        03/01/2000 05:13 pm employee was moving file cabinets from on building to an outside building using a handcart, when he pulled muscle in lower back. Supervisor: e. M. Farrow
## 979             03/02/2001 01:54 pm employee and co-worker was traveling south on 501 checking signs; when a blazer hit the drivers side front tire and bumper. Mr. Hammonds was slowly turning around (with signal on) when the accident happened. Mr. Hammonds has a b
## 980                                                                                                                                          03/02/2001 02:15 pm employee was getting off of trailer when he struck his left knee on the trailer. Supervisor: d. L. Dean
## 981                                                                            03/02/2001 02:26 pm employee was sleeping when he rolled and fell out of the bunk bed on 2/4/01. Mr. Thomas had a nightmare causing him to injury his left knee. Supervisor: h. F. O'neal
## 982             03/02/2001 02:55 pm while walking into the lobby on 2/14/01; when she slipped and fell down in front of the elevators on her left side. She twisted/sprained her left ankle, struck her left knee and shoulder on floor. Supervisor: col. D. C. Richards
## 983                                    03/02/2001 03:37 pm employee was carrying a 60 pound tree with root ball attached; when he stepped into a crevice and strained is right side muscles. He strained his right side of his abdomen muscles. Supervisor: doug johnson
## 984                                                    03/02/2001 04:08 pm employee was entering the break room on 2/21/01; when he pushed on the door with his fingertips. He felt something pull in his left hand and sprained his left thumb. Supervisor: keith smith
## 985             03/02/2001 04:16 pm employee was transporting paper work from the first floor to the second floor; when she slipped and fell on the waxed floor. She has bruises to her head/face and chin and she sprain/strained her chest area. Supervisor: diane joh
## 986                 03/04/2003 02:14 pm (fblackmo) form 18 states, occupational lung disease caused by dust particles, pitch, and tar inhaled while working on delivering asphalt. Supervisor: n/a 11/6/2006 01:32 pm (fblackmo) claim closed. Clinched on 04/22/2005. D
## 987             03/05/2002 10:34 am (sshort) employee was traveling north on vestal road driving a ford ranger pickup. Mr. Hutchens crossed the centerline and ran off the roadway on the left. He struck several small trees before coming to a stop. Mr. Hutchens died
## 988                                                                                    03/05/2003 07:10 am (fblackmo) employee states he twisted his left shoulder while attempting to enter a commercial vehicle to conduct a cdl road test. Supervisor: michael jarman
## 989                                                                              03/05/2003 07:23 am (fblackmo) employee states while bending down to pick up a pile of debris his right leg slipped into a hole causing the fall and injury. Supervisor: k. L. Anderson
## 990                                                                                                                                 03/05/2003 07:35 am (fblackmo) employee states while un-loading lumber a splinter punctured his left hand. Supervisor: c. C. Coggins
## 991                                                                                              03/05/2003 08:36 am (fblackmo) employee stated that he was pulling him self up into a loader when he felt the muscle in his right bicep pull. Supervisor: t. W. Edwards
## 992                                                                                                      03/05/2003 09:22 am (fblackmo) employee states he felt pain in his back while picking up trash and tires. Supervisor: b. W. Whitaker * show all bills to joyce*
## 993                                                                                                                                   03/05/2003 10:55 am (fblackmo) employee was exiting bathroom stall when she slipped and fell near sink. Supervisor: edith mcdaniel
## 994                                                                 03/05/2003 11:19 am (fblackmo) employee was working on state road helping to remove a tree from roadway when slipped and fell causing the injury to his right leg and ankle. Supervisor; m. L. Smith
## 995                                                                  03/06/2002 01:36 pm (fblackmo) employee was changing handle on bush axe using a small sledge hammer and grabbed back of blade to see how loose and blade cut right hand. Supervisor: christy wright
## 996                                                                                                                             03/06/2002 10:32 am (fblackmo) employee was attempting to get off truck when, he tripped over a pallet and fell. Supervisor; walter bell
## 997                                                                    03/06/2002 10:51 am (fblackmo) employee was sawing limb off when, it fell about 12' striking the pavement. The limb bounced up and struck employee in the facial area. Supervisor: d. M. Pressley
## 998                                                                                                               03/06/2002 11:03 am (fblackmo) employee was trying to pull sign out of island that was broken when, he felt pain in his back. Supervisor: robby taylor
## 999                                            03/06/2002 11:15 am (fblackmo) employee was filling hydroseeder with water, fertilizer, seeding, and moving hose. While doing the general loading activities employee felt pain in his back. Supervisor: ronnie e. Warren
## 1000           03/06/2003 02:46 pm (fblackmo) employee was hooking chains to remove salt spreader, employee attempted to climb down off truck bed. As he was turning his left foot slipped causing his right leg to twist, resulting in the injury to his right knee. Su
## 1001                                                                                                                                     03/06/2003 02:59 pm (fblackmo) employee states while returning from road test she, slipped on steps. Supervisor: mike salisbury
## 1002                                                                                                                 03/06/2003 03:18 pm (fblackmo) employee states while taking salt spreader off the back of a dump truck he slipped and fell. Supervisor: r. W. Lewis
## 1003                                                                                                      03/07/2000 08:51 am Mr. Smitherman was lifting signs to be installed on posts when he strained muscles in his lower back (right side). Supervisor: c. R. Sharp
## 1004           03/07/2000 08:58 am employee was trying to slow truck down to make a left turn onto gene martin road, when truck and roller overturned. He geared down and applied brakes, but realized his speed was still too fast for the turn. Mr. Richardson has a s
## 1005                                                                                                                 03/07/2000 09:08 am employee was lifting (removing) scales from trunk of vehicle, when he strained his mid-back area. Supervisor: sgt. R. A. Powell
## 1006                                                                                                                                 03/07/2000 09:25 am employee was pulling nails from boards when he stepped on a nail puncturing his foot. Supervisor: e. W. Huffman
## 1007                                                                                        03/07/2000 09:39 am employee was working with crew cleaning up and chipping brush, when debris fed into the chipper flew into left eye. Supervisor: ralph thomas mcmanus, jr
## 1008                                                                                               03/07/2000 09:55 am employee was twisting (moving parts) I-beams suspended from the boom truck, when he felt a sharp pain in his lower back. Supervisor e. W. Huffman
## 1009                                                                                    03/07/2000 10:02 am employee was on motor grader reaching down to get his work gloves, when he was bit by a spider on the tip of his left ring finger. Supervisor: d. W. Woolard
## 1010                                                            03/07/2002 01:58 pm (fblackmo) employee was walking by equipment trailer to load concrete form on truck, he struck trailer on corner cutting his right hand through his glove. Supervisor: j. L. Cornell
## 1011            03/07/2002 02:10 pm (fblackmo) employee was holding handle of pick axe trying to wedge it under manhole lid. Employee struck the metal end of pick with a three pound hammer. Employee held jaded end of wood handle in left hand. The jolt of the hit c
## 1012                                                                                                                              03/07/2002 02:25 pm (fblackmo) employee was loading cement on the bed of truck when, he felt pain in his back. Supervisor: w. M. Tosto
## 1013           03/07/2002 02:35 pm (fblackmo) employee was performing digital terrain modeling surveys on rail road track while walking on uneven terrain causing him to sprain his mcl on his left knee on 2/19/2002. Employee continued to work thinking that this spr
## 1014                                                                                       03/07/2002 07:21 am (fblackmo) employee is/was experience pain in wrist area. Had an old injury to right wrist while playing basketball years ago. Supervisor: patsy champion
## 1015           03/07/2002 12:29 pm (fblackmo) employee was traveling north on highway 17 when, his vehicle left the roadway. Upon returning to the roadway the vehicle overturned and employee was ejected from the vehicle resulting in death. Supervisor: thomas johns
## 1016                                                                                       03/07/2003 06:56 am (fblackmo) employee states he experienced pain in his back while install the hydrolic lines from the snow hopper to the truck. Supervisor: t. J. Burchell
## 1017                   03/07/2011 07:23 am (slee) pov struck imap truck in the rear. 03/07/2011 07:34 am (slee) other person: eddie arrington, mt. Airy, nc, 336-351-4687. 3/8/2011 02:47 pm (fblackmo) employee felt pain in his head and neck area. Supervisor: michae
## 1018          03/07/2011 11:39 am (vyount) private vehicle hit state vehicle. Employee coy aundre hill was driving ncdot tool truck. Private vehicle attempted to pass in a no passing zone and struck the left door of the ncdot truck causing injury to employees left
## 1019               03/09/2000 02:09 pm employee was driving on highway nc 18, s checking slick spots/icy roads; when his pickup truck hit slick spot spinning around in the road hitting a bank. Employee has a contusion to his scalp, bruised left knee and left shin.
## 1020                                                                                                       03/09/2000 02:17 pm employee was bending over to pick up tree limb, when he felt something pull in his lower back (sciatica) area. Supervisor: d. T. Childrey
## 1021                                                                                                                                        03/09/2000 08:51 am employee has binaural hearing loss due to acoustic trauma, chronic exposure to noise (excess of 90 dbs.)
## 1022                                                                                                                              03/09/2000 09:00 am employee has chronic obstructive pulmonary disease from repeated exposure to hazardous chemicals (lung irritants).
## 1023                                                                                            03/09/2000 09:31 am employee was climbing into truck to conduct a cdl road test, when she heard her left knee pop causing her pain and swelling. Supervisor: connie wray
## 1024                                                                                                                 03/09/2000 09:39 am employee was getting ferry power cable off the ferry to tie up slip, when he strained his left shoulder. Supervisor: t. L. Gray
## 1025                                                            03/09/2000 10:24 am employee was removing old bolts from nailers with an air wrench, when the bolt twisted causing his left thumb to get caught between steel and wrench. Supervisor: steven alan hardin
## 1026                                                                                                           03/09/2000 10:32 am employee has tingling and pain in her right hand, arm up to the elbow joint due to repetitive keying on job. Supervisor: v. E. Barham
## 1027           03/09/2001 02:16 pm sanding flooring to prepare for tile when nail was not set. Another employee hit nail with hammer to set it and went to hit it again when william moved his hand across to see if nail was set. Hammer struck williams left 5th finge
## 1028                                                                                                                                          03/09/2001 02:27 pm leads diesel hammer fell approximately 2' striking randy on hard hat. Causing impact to neck and back.
## 1029                                                                     03/09/2001 02:53 pm while leaving her desk employee was in a hurry and hit her right knee on the darwer pull. Her normal duty. Show all bills to joyce before paying. 2/8/2005 08:09 am (mpark)
## 1030                        03/09/2001 03:06 pm employee was painting steel beams under a bridge in an enclosed area. The inhalation of dust/paint fumes caused tightness in chest area making it difficult to breathe. Tightness in chest area and shortness of breath.
## 1031            03/09/2001 03:34 pm employee pulled up on pto lever of the dump truck with her right hand to dump a load. The employee felt a shrp pain in her back between her shoulder blades. The employee claims the pto lever was very stiff. The truck has been wr
## 1032                                                                   03/09/2001 03:47 pm dot employee was working on a pipe installation project when he lost his footing and fell into a drainage ditch fracturing his ankle. 04/24/2001 04:54 pm (sjerniga) fracture
## 1033                                                         03/11/2002 02:12 pm (fblackmo) employee had completed a road test in a private vehicle 4 x 4 pick up truck when, exiting the vehicle employee had to jump out because of the height. Supervisor: ava parker
## 1034                                                                                                03/11/2002 02:40 pm (fblackmo) employee states that her hand was on the chain fall. Employee then pulled the chain, hitting her finger. Supervisor: ronnie d. Powell
## 1035                                                          03/11/2002 02:53 pm (fblackmo) employee was removing hydro oil return tube form hud fitting inside of tank. The tube retaining nut broke loose pinching employees right thumb. Supervisor; danny r. Parker
## 1036                                                                                                  03/11/2002 03:07 pm (fblackmo) employee finger was caught between crescent wrench and steel beam. Employee was taking nailers off steel. Supervisor: c. C. Coggins
## 1037                                                                                    03/11/2002 12:59 pm (fblackmo) employee was lifting a metal trash can with supplies in it from the back of the state truck onto the deck of the ferry. Supervisor: charlie piner
## 1038                                                                                                         03/11/2003 02:27 pm (fblackmo) employee states while pulling brushes from the shoulder of the road he felt pain in his stomach area. Supervisor: sg. Dillon
## 1039                                                                                                 03/11/2003 02:39 pm (fblackmo) employee was picking up brushes to put in chipper when, he tripped and fell hitting his left knee on a rock. Supervisor: w. H. Lynch
## 1040                                                                                             03/11/2003 02:49 pm (fblackmo) employee was exiting from the back of a pickup when he slipped and fell causing the injury to his right wrist. Supervisor: shelton james
## 1041                                                                                                                                    03/11/2003 10:41 am (fblackmo) employee was driving on 440 when, his vehicle was hit by another vehicle. Supervisor: ron hancock
## 1042                                                                                                           03/11/2003 10:57 am (fblackmo) employee was traveling back to state yard when his vehicle was struck by a private owned vehicle. Supervisor: doug mizelle
## 1043                                                              03/11/2003 11:18 am (fblackmo) employee was riding in a vehicle after lunch when, he became upset and stated beating on the door and other objects which lead to the injury. Supervisor: jerry bagwell
## 1044                                                                                                                                 03/11/2003 11:35 am (fblackmo) employee states while lifting rocks he felt pain in his lower abdomen area. Supervisor: frank rector
## 1045                                                                                               03/11/2003 11:57 am (fblackmo) employee was helping a mechanic wire a truck when he bent over he passed out and hit his right side. Supervisor: michael lyman(acting)
## 1046                                                                                                                        03/11/2003 12:13 pm (fblackmo) employee was trying to open tailgate when he felt pain in his lower back area. Supervisor: robert a. Mccarley
## 1047                                                 03/11/2003 12:32 pm (fblackmo) employee states because of the overflow with installation of software and the stress, he has experienced pain and numbness in his right hand, arm, and wrist. Supervisor: don conner
## 1048                                                                       03/12/2001 01:24 pm employee was putting guard rail up that had been taken down to dump material in a fill. When he finished he felt a sharp pain in his lower back. Supervisor: v. G. Scales
## 1049                                                       03/12/2001 01:50 pm employee was sitting in her chair with rollers when she reached to get something behind printer and chair slipped out from under her, bruising her right arm. Supervisor: alan fitzgerald
## 1050                      03/12/2001 02:02 pm employee was cutting r/r on secondary road. As he was coming down a back his foot became caught in vines causing him to fall, twisting his left ankle. Supervisor: d. M. Pressley 04/24/2001 04:58 pm (sjerniga) lost time
## 1051                                                                                                                                                                                     03/12/2001 02:14 pm numbness and tingling in left hand. Supervisor: jilda mcgee
## 1052                                                             03/12/2001 02:26 pm employee was walking through office and slipped on a spot where material had been sprayed in order to remove adhesive on floor. She fell twisting her back. Supervisor: derek smith
## 1053                            03/12/2001 02:36 pm employee was leaving building for a doctor's appointment when she fell down steps. She had a glass bottle in her hand that shattered causing her to get cut on her left hand and right cheek. Supervisor: lynn chalk
## 1054                                                                             03/12/2001 02:45 pm employee was in process of conducting a cdl road test and lifted traffic cones and felt a pull across the back on her neck and shoulder. Supervisor: michael jarman
## 1055                                                                                                           03/12/2001 08:12 am stepping down on back of handpaint truck, hand slipped off the hand bar. Employee landed on knee and elbow. Supervisor: mike carriker
## 1056                                   03/12/2001 08:38 am employee was cutting a limb that was laying on the ground. A gust of wind blew a piece of sawdust in the side of his eye. Employee was wearing his safety glasses and face shield. Supervisor: c. E. Thompson
## 1057          03/12/2001 09:12 am officer corbett was performing an inspection on a cmv(roadside). He was checking the brake lights, turn signals on the trailer and as he stepped to his rear, his right foot went down in a pothole causing his right knee to twist. S
## 1058          03/12/2001 09:27 am employee was removing a wooden pallet from roadway that had fallen off truck. Employee was walking across roadway that had traffic stopped by winston-salem police and turned his ankle, breaking left ankle at top. Supervisor: l. L.
## 1059                                                                                                                                    03/12/2001 09:40 am employee was attempting to pull out a sign post by hand and strained his groin area. Supervisor: chuck sharp
## 1060         03/12/2001 09:54 am employee was working in the engine room of the m/v pamlico. He stepped on a deck frame which bent; under his weight, as he went to take a step to stop from falling, a yellow cord caught his left foot causing him to fall into the bi
## 1061                                                                                                                03/12/2001 11:05 am employee was hit from behind by a private vehicle while stopped at a red light. Muscles strain in neck. Supervisor: r. J. Nelson
## 1062                                                                                                                                         03/12/2001 11:47 am employee cut his right thumb while cleaning film roller on processing machine. Supervisor: bruce mclamb
## 1063                                                 03/12/2002 01:39 pm (fblackmo) employee was walking by trackhoe that was pulling logs off the bank. Log struck employee in the legs, chest and face when he walked between the log and bank. Supervisor; t. L. Hall
## 1064                                                                                             03/12/2002 11:05 am (fblackmo) employee was loading a block of paraplastic into back of pickup truck when he felt pain in his lower back. Supervisor: richard w. Baucom
## 1065                                                                                                                               03/12/2002 11:41 am (fblackmo) employee was bending over greasing fittings when he felt a pain in his side. Supervisor: george morris
## 1066                                                                                     03/12/2002 12:11 pm (fblackmo) employee states that he experienced pain in his shoulder area while climbing up and down ladder of m/v beaufort. Supervisor: benjamin p. Wilkins
## 1067                                                                                                               03/13/2003 09:19 am (fblackmo) employee states while unlocking door ice fell from the roof causing him to slip and fall. Supervisor: charles e. Jones
## 1068                                                                                                                                                              03/13/2003 09:55 am (fblackmo) employee slipped and fell on wet slope on I-40. Supervisor: donald king
## 1069                                                                                                     03/13/2003 10:27 am (fblackmo) employee states while cutting a wet plastic pipe his knife slipped causing the cut to his right thumb. Supervisor: w. T. Parrish
## 1070                                                                                           03/13/2003 10:46 am (fblackmo) employee was loading traffic cones onto a moving trailer on I-85 when, his left foot got caught under the wheel. Supervisor: m. S. Venable
## 1071                        03/13/2003 11:15 am (fblackmo) employee states while removing pins he slipped and fell causing the injury to his left hip. Supervisor: a. L. Wetherington jr 11/6/2006 01:37 pm (fblackmo) claim closed. Clinched on 11/14/2005. Do not use.
## 1072                                                      03/14/2000 10:07 am employee was pulling/lifting brush from the roadside; when he tripped and fell over a cut tree stump down a slope. Employee injured his lower back, leg, and ankle. Supervisor: keith hill
## 1073                                                                                  03/14/2000 10:18 am employee was walking beside tractor trailer truck; when he stepped on clump of grass, loss footing/fell twisting his right knee. Supervisor: charles f. Teague
## 1074                                                         03/14/2000 10:29 am employee was shoveling dirt on shoulder of road; when he felt a sharp pain underneath his right ribs. He has a knot underneath ribs and soreness in that area. Supervisor: c. W. Phelps
## 1075                                                                               03/14/2000 10:43 am employee was using a saw cutting trees; when air borne poison ivy vine settled on his hands and lower part of left leg causing a rash. Supervisor: w. D. Laughter
## 1076                                                                                                                        03/14/2000 11:05 am employee was cutting lines and hit a tree limb; when a piece of the limb flew into his left eye. Supervisor: j. B. Price
## 1077                        03/14/2001 02:46 pm employee was loading trash bags filled with debris from ditch cleanout, into body of swb dump truck. The bags were very heavy and he strained his back when lifting. Lower back and neck strain supervisor: c. W. Phelps
## 1078                                                              03/14/2002 10:19 am (fblackmo) employee was at a stop light waiting on light to change when, a private party ran into the back of ford ranger causing the injury to employee. Supervisor: m. Oliverson
## 1079                                                                                    03/14/2002 10:32 am (fblackmo) employee states that while given a road test a private vehicle hit them in the rear while trying to make a left turn. Supervisor: sylvia r. Spain
## 1080                                                                                                                        03/14/2002 10:44 am (fblackmo) employee was changing truck tire when he felt pain in his neck and shoulder area. Supervisor: a. David morton
## 1081                                                                                                          03/14/2002 10:57 am (fblackmo) employee states that while traversing in heavy terrain that he came into contact with poison ivy. Supervisor: r. D. Walston
## 1082           03/14/2002 11:09 am (fblackmo) employee was measuring pipe on nc 28 project no. 63939001b. Employee was pulling the tape across the road when a vehicle came by and jerked the tape out of employee hand. Vehicle involved was a sub-contractor(dadco). S
## 1083                                                                                          03/14/2003 09:32 am (fblackmo) employee was using a air wrench to tighten a bolt when, the bolt slipped causing the injury to his right hand. Supervisor: samuel j. Gupton
## 1084                                                                                                               03/15/2000 03:15 pm employee was standing beside pickup truck; when another employee shut tailgate on his left index finger. Supervisor: a. S. Bailey
## 1085                                                                                        03/15/2000 03:20 pm employee was cutting trees on right of way with a chainsaw; when the tree snapped back striking him on his right forearm. Supervisor: charles frank vick
## 1086                                                                                                                             03/15/2000 03:25 pm employee was moving a log from travel lanes on us 64; when he twisted his right knee. Supervisor: j. F. Bailey, jr.
## 1087                                                                                                        03/15/2000 03:51 pm employee was lifting portable pat scales weighing trucks; when her back became stiff causing muscle spasms. Supervisor: ssg. D. C. Smith
## 1088                                                                                        03/15/2000 04:23 pm employee was cutting trees with a chainsaw; when tree kicked back towards him causing chainsaw to cut his left index finger. Supervisor: merle s. Sasser
## 1089                                                                                                                           03/15/2000 04:33 pm employee was unloading a sand blaster from truck; when he pulled muscles in lower back. Supervisor: eric allen schenz
## 1090                           03/15/2001 01:20 pm employee had climbed onto the tire of the truck to get to the truck bed. He slipped from the tire and fell to the ground bruising his right elbow. Supervisor: ralph thomas mcmanus jr. 04/10/2001 08:48 am (twerner)
## 1091            03/15/2001 03:47 pm examiner frick returned from giving a road test. She opened the car door to get out of vehicle and the wind was blowing very hard. The wind blew the car door shut and she raised her foot to keep the door from closing on her leg.
## 1092                                                                                                                                                             03/15/2001 09:36 am repetitive motion. Carpel tunnel 03/15/2001 09:40 am supervisor: cpt. E. C. Bristle
## 1093           03/15/2001 09:58 am employee was exiting his vehicle around 7:55 am in the office parking lot. He had books and other items in his hand. When he went to catch what was falling and tried to step down out of the vehicle at the same time, his right kne
## 1094          03/15/2001 10:10 am employee was on back of spreader cleaning out frozen salt using a silt fence post. After cleaning out spreader employee threw the post down and started to descend off of spreader. Employee lost his footing on the ladder and fell I
## 1095                                                                                                                                            03/15/2001 10:23 am employee twisted left knee while pivoting leg on combat firearms range. Supervisor: cpt. B. A. Riggs
## 1096                                                                                                          03/15/2001 10:39 am employee was placing work area signs when balance was lost and he fell to the ground spraining left wrist. Supervisor: d. L. Carpenter
## 1097                                                                                                                              03/15/2001 11:19 am injured occurred from repetitive motion of hands such as typing, and answering phone. Etc. Supervisor: r. A. Vause
## 1098                                                             03/15/2001 11:30 am employee was processing mail when she backed up into a mail cart causing her to lose her balance and fall. Sprained lower back and fractured tailbone. Supervisor: larry strickland
## 1099                                                                                                         03/15/2002 07:52 am (fblackmo) employee was cutting down a tree when the base of the tree kicked back causing the injury to his ankle. Supervisor: joe ross
## 1100                                                                                                        03/15/2002 08:05 am (fblackmo) employee was cutting right of way on nc 64 when the limb kicked back hitting employee in the mouth. Supervisor: lynn marshall
## 1101                                                             03/15/2002 08:34 am (fblackmo) employee was loading aerial cameras on to airplane when the steps on the plane came apart causing the employee to fall to the concrete surface. Supervisor: dan spurling
## 1102                                                                                                              03/15/2002 09:10 am (fblackmo) employee was crossing street to exit out of the way on traffic when she fell on the sidewalk. Supervisor: l. M. Barbour
## 1103                                                                                        03/15/2002 09:51 am (fblackmo) employee was attempting to latch tailgate on dump truck when her finger was pinched between the latch and tailgate. Supervisor: c. L. Edwards
## 1104                                                                                                      03/16/2000 10:06 am employee has pain and numbness in right wrist, elbow, fingers, and arm due to repetitive keying motion on job. Supervisor: helen whitehead
## 1105                                            03/16/2001 08:03 am employee was nailing 2x4's on the roof of the new salt bin in the vanceboro yard. The wind was blowing and blew saw dust inside of his safety glasses into his right eye. Supervisor: darrell parson
## 1106                                                                                03/16/2001 08:13 am employee was operating kettle to tack hay on the south side of sr 1201. The wind was blowing and tar blew in both eyes of employee. Supervisor: alonza b. Sawyer
## 1107                            03/17/2000 09:13 am employee was doing a density test on soil; when he was bitten on his back, neck, and left arm by several mosquitoes. He had an allergic reaction to bites and has swelling in those areas. Supervisor: chris kirkman
## 1108                                                                                                                 03/18/2003 07:41 am (fblackmo) employee was conducting a road test when the driver ran a red light striking another vehicle. Supervisor: pat. Glenn
## 1109                                                                                               03/18/2003 07:55 am (fblackmo) employee states while stopped a traffic light a private vehicle collided into the rear of his state vehicle. Supervisor: j. S. Holland
## 1110                                                                                                                                   03/18/2003 08:11 am (fblackmo) employee was picking up trash when he experienced pain in his back. Supervisor: b. J. Berryhill jr
## 1111                                                                                                              03/18/2003 08:24 am (fblackmo) employee states while helping contractors with tree removal, he came into contact with poison ivy. Supervisor; al smith
## 1112                                                                                                                                 03/18/2003 08:37 am (fblackmo) employee was checking fluids in truck when, he hit his right knee on snow plow. Supervisor: al smith
## 1113                                                                                                        03/18/2003 09:03 am (fblackmo) employee was patching potholes when, he stepped on one of the holes causing the injury to his back. Supervisor: j. D. Shelton
## 1114                                                                           03/18/2003 09:21 am (fblackmo) employee was pulling brush off of guard rail on us 220 to be placed in chipper when, he felt a sharp pain in his right shoulder. Supervisor: g. W. Johnson
## 1115                                                                         03/18/2003 09:41 am (fblackmo) employee was clearing road way by placing debris in chipper when, on of the logs rolled off his stack striking him on his right leg. Supervisor: j. R. Deese
## 1116                                                                                      03/18/2003 09:54 am (fblackmo) employee was moving brush from roadside to chipper when the limb struck him on the left shoulder causing him to fall. Supervisor: don carpenter
## 1117          03/19/2002 02:35 pm (fblackmo) employee states that, the state vehicle was traveling east on carmon road when, a private vehicle traveling west crossed center line. The employee swerved to the right to Miss The private vehicle and hit the mailbox the
## 1118          03/19/2002 07:20 am (fblackmo) employee was helping load 16 x 25 long I beam from stack in bridge yard to the flatbed trailer. The beam being moved caught lip on a beam that was already seated on flatbed trailer causing it to hit employees right hand
## 1119                                         03/19/2002 07:35 am (fblackmo) employee was walking down a cut slope on the project at edwards mill exit. Construction site. Employee slipped and fell down slope landing on his left knee. Supervisor: marvin wayne currie
## 1120                                                                                                              03/19/2002 07:51 am (fblackmo) employee was pulling up mailboxes when, dust or dirt from the broom tractor flew into his eye. Supervisor: t. H. Swayne
## 1121                                                                        03/19/2002 08:02 am (fblackmo) employee was clearing roadway on state road 1432 with a chainsaw. Employee came into contact with poison oak and developed a rash. Supervisor: k. L. Anderson
## 1122                                                                                        03/19/2002 08:20 am (fblackmo) employee developed an umbilical hernia while assisting another crew member on the m/v bonnier pull the mooring line. Supervisor: s. H. Kinner
## 1123                                                                                                     03/19/2002 08:35 am (fblackmo) employee was supervisoring right of way operation on us 19 & 23 when, debris got into his right eye. Supervisor: d. L. Carpenter
## 1124           03/19/2002 08:50 am (fblackmo) employee had been using a crack sealing machine for the last six weeks. Employee states that, because of the repetitive use of the machine he experience pain in his right elbow. Supervisor: j. E. Burieson 09/08/2003 01
## 1125           03/19/2002 09:07 am (fblackmo) employee had dived out of harms way as a farm tractor and equipment was being struck by a train. While lying on the ground, the employee was struck by a piece of debris flying off the tractor. The metal debris struck e
## 1126            03/20/2000 02:02 pm employee was traveling south on nc 11 at 35 mph, when private vehicle (clementine taylor) hit employee on left side of vehicle. Employee had the right of way, Ms. Taylor pulled from stop sign. Ms. Taylor stated the sun was in he
## 1127                              03/20/2000 02:25 pm employee was working on 18" aluminum pipe on 3/8/00. He stepped in a deep rut while walking around the pipe; twisting his right ankle. He was able to catch himself before he fell. Supervisor: w. L. Saunders, jr
## 1128          03/20/2000 02:33 pm employee bruised cartilage on left side of rib cage while drilling holes in angle iron. He was using a magnetic drill, when the drill bit hung up causing the bit to twist and break. The drill motor swung around hitting him on left
## 1129                                                                                                                              03/20/2000 02:42 pm employee sprain/twist his right ankle while stepping off the running board of dump truck. Supervisor: s. G. Dillon
## 1130                                                                03/20/2000 02:50 pm employee slipped and fell off patch roller steps straining lower left side of his back. Mr. Wilbourne was stepping off the machine at time of incident. Supervisor: j. D. Fuller
## 1131                                                                                               03/20/2002 11:46 am (fblackmo) employee is having severe acid reflux due to the stress and tension involved in her dailey duties on the job. Supervisor: j. M. Searcy
## 1132                                                                                                 03/20/2003 02:25 pm (fblackmo) employee was handling a spacer board when, his hand became wedge between the spacer and the forklift frame. Supervisor: mike jeffery
## 1133                                                                                                       03/20/2003 02:39 pm (fblackmo) employee states while sharping a axe with hand file, his hand slipped causing the cut to his finger. Supervisor: gary mahaffey
## 1134                                                                                                      03/20/2003 11:23 am (fblackmo) employee was hold a chain in place when his finger was caught between the chain and he pin hammer. Supervisor: henry sturdivant
## 1135                                                                                                                                             03/20/2003 11:51 am (fblackmo) employee was lifting backhoe ramp when he felt pain in his back. Supervisor: john howell
## 1136                                                                              03/21/2000 02:57 pm employee was driving state vehicle when a private vehicle collided with him. Mr. Reske has bruises on the left side of his head (temple). Supervisor: g. A. Fuller
## 1137                                                                                                                    03/21/2000 03:20 pm employee was attempting to pick up end of 24" plastic driveway pipe when he strained his lower back. Supervisor: c. L. Cooke
## 1138                                                                                                                                                                              03/21/2000 04:01 pm employee was driving diesel truck when it overturned into a ditch.
## 1139                                                                                                                            03/21/2000 04:04 pm employee has pain in right hand, wrist, and arm due to repetitive motion keyboarding. Supervisor: renaldo lovisa, jr
## 1140                                                                                       03/21/2000 04:14 pm employee states that it is getting difficult to key, left and write effectively at work due to repetitive keyboarding on the job. Supervisor: judith bell
## 1141           03/21/2000 04:22 pm employee was lifting boxes (previous back problems existing) against supervisors will. Supervisor states she told Mrs. Mithcell not to lift boxes; to wait for mailroom personnel to pick up boxes. Employee ignored supervisor and r
## 1142                                                03/21/2002 01:46 pm (fblackmo) employee was helping d. O. T. Crew remove tree from ditch line. Employee was lifting cut section of the tree when he felt pain in his neck and shoulder area. Supervisor: w. H. Lynch
## 1143                                                  03/21/2002 01:58 pm (fblackmo) employee was pulling limbs off of cut trees, operation clearing right of way for new road construction. A limb fell hitting employee on his right wrist. Supervisor: c. H. Winstead
## 1144          03/21/2002 02:10 pm (fblackmo) employee was repairing office door hanging door on hinges. Employee closed the door and the speaker that was on the shelf above the door fell hitting employee on the head and causing a cut along the right side of his fa
## 1145                                                             03/21/2002 02:23 pm (fblackmo) employee was dismounting truck and right knee buckled under him. Employee was holding onto truck door and did not fall, but knee gave way. Supervisor: james e. Burleson
## 1146                            03/21/2002 02:37 pm (fblackmo) employees states that, while attempting to install a 12 x 12 x 72" timber beneath the bridge his hand got caught between the steel and the timber while sliding it into place. Supervisor: terry j. Davis
## 1147           03/21/2002 02:58 pm (sjerniga) employee was traveling north on us 17, when Ms Kelly, driving private vehicle, pulled in front of the state vehicle. Damaged left front driver's side of state vehicle. Private vehicle's right panel on driver's side was
## 1148                   03/21/2002 07:56 am (fblackmo) employee was operating jack hammer and cutter bit became lodged inc concrete. A hard pull on the jack hammer by employee dislodged the cutter bit quickly and struck employees' left foot. Supervisor; a. T. Cagle
## 1149          03/21/2002 08:19 am (fblackmo) employee was moving a small motorless roller by backing up while pulling the roller with both hands. Employee let go of the handle with his left hand, while continuing to pull the roller with his right hand, and began t
## 1150                                                      03/21/2002 08:41 am (fblackmo) employee was flagging traffic on us 158 in guilford county when a private vehicle came towards him so employee jumped into the ditch to avoid contact. Supervisor: s. G. Dillon
## 1151                                                                                                                    03/21/2002 09:31 am (fblackmo) employee was picking up mail baskets when she felt a pull in her shoulder, neck, and arm. Supervisor: dean alston
## 1152            03/22/2000 10:11 am employee was walking with a plastic pipe; when he stepped into a hole. He lost his balance and took his right hand off pipe to balance himself again. His left arm snatched downward due to the weight of the pipe injuring his left
## 1153                                                          03/22/2000 10:19 am employee was climbing over the rail of forklift cage; when his foot opened the door latch causing him to fall. He slammed his leg on the bottom of the basket. Supervisor: s. R. White
## 1154                                                                                            03/22/2000 10:36 am employee was pulling on tree limbs to put into the wood chipper; when limb got caught on stump injuring his lower back. Supervisor: james d. Shelton
## 1155                                                                                                          03/22/2000 10:41 am employee was lifting a barricade that was knocked over by the wind; when he felt a pull in his lower back. Supervisor: robert t. Moore
## 1156                                                                                                                03/22/2000 10:47 am employee was putting basket into a hole; when he raised up he hit his head on the corner of the footjack. Supervisor: keith hill
## 1157                        03/22/2000 10:59 am employee was getting a form off the side of hand paint truck; when he stepped in a ditch causing his left leg to pop. He also felt pain in his left foot and his back at time of the incident. Supervisor: mike carriker
## 1158                                         03/22/2000 11:04 am employee was hit in the head with a piece of wood. Employees was throwing sticks of wood into bucket of a loader. Mr. Kline was hit by accident by another employee. Supervisor: herschel g. Timberlake
## 1159            03/22/2000 11:20 am employee was struck by a tree limb being pulled with a dump truck. The tree limb practically pinned Mr. Wagoner to the truck causing bruises, scratches, and swelling to the left side of his face. Supervisor: ralph thomas mcmanus
## 1160                                                                                  03/22/2000 11:31 am employee was picking up trash along the banks when he came in contact with poison ivy in. Employee has irritation in both eyes. Supervisor: eddie d. Zimmerman
## 1161                                                                                                                                           03/22/2000 11:37 am employee strained his lower back while digging a hole to bury a dead animal. Supervisor: r. D. Peeler
## 1162               03/23/2011 02:36 pm (slee) employee was stopped at traffic light awaiting to make a left turn onto 14th st. From greenville blvd. When she was hit in the rear pushing her into vehicle in front of her. 03/23/2011 02:47 pm (slee) other person: lor
## 1163               03/24/2000 10:46 am employee and inmate was getting supplies from tool box on truck; when inmate slammed box on employees right hand. Mr. Richardson has contusion on his right ring finger due to accident. Supervisor: d. E. Taylor & kent d. Boyer
## 1164                                                                                                                03/24/2000 10:54 am asphalt anti-strip agent splashed in employees eyes causing a burning discomfort on 3/13/00. Supervisor: jing-shyan (annie) jeng
## 1165                                                                                                                                       03/24/2000 11:07 am employee strained his lower back while bending over to lift shop door on 3/13/00. Supervisor: a. D. Cloer
## 1166                    03/24/2000 11:13 am employee fell injuring his left shoulder, lower back, and neck while trying to pull grates up with a pry bar. Employee was standing on sideboard of truck and fell onto concrete slab on 1/31/00. Supervisor: p. H. Brittain
## 1167                                                                         03/24/2000 11:21 am employees left eye was bruised by brush while sloping ditch with a motorgrader on 3/13/00. The brush came through door striking him in his eye. Supervisor: j. W. Pipes
## 1168                                                                                                                 03/25/2002 02:33 pm (fblackmo) employee was stepping up onto running board when, his feet slipped causing him to fall. Supervisor: tommy kilpatrick
## 1169             03/25/2002 02:48 pm (fblackmo) employee was cutting and piling up trees and bushes. Employee kim turned the backhoe around with the bushes and bucket on it. A tree limb had employee pinned against another tree and between brushes. Supervisor: tomm
## 1170                                                                                                                                     03/25/2002 03:18 pm (fblackmo) employee states that he slipped on steep bank and turned his left foot. Supervisor: doug johnson
## 1171            03/26/2001 09:15 am (pward) while working on the m/v pamlico, employee was working on a door knob hole in the engine room door. The door is made of aluminum. He was using an electrical drill and bit, as he proceeded to reamout the bolt hole, he was
## 1172          03/26/2001 09:29 am (pward) employee has been experiencing pain in his shoulders and both elbows for the past 2-3 months, especially when operating gun on hydroseeder. After a full day ( 3/15/01) of hydroseeding and not being able to sleep same night
## 1173                                  03/26/2001 09:52 am (pward) employee was removing a traffic signal cabinet under windy conditions. Once cabinet was removed from concrete pad wind gust blew metallic debris into employee's left eye. Supervisor: john paul couch
## 1174                                                                                                  03/26/2001 10:09 am (pward) crew had installed driveway pipe and employee felt stiffness and pain in back while shoveling dirt over pipe. Supervisor: j. W. Mclean
## 1175                                                                               03/26/2001 10:18 am (pward) employee was assisting another employee lift and reattach truck tailgate. Employee lost footing and fell injuring his left arm. Supervisor: d. J. Shepard
## 1176                                                                              03/26/2001 10:41 am (pward) employee was mowing with slope mower. Mower threw stick through wire mesh striking employee above his glasses on his right eye. Supervisor: c. B. Lunsford
## 1177                                                                                              03/26/2001 10:48 am (pward) employee was coming down stairs and turned ankle. Fell approximately 3 to 4 stairs. Supervisor: s. H. Kinner 04/10/2001 08:58 am (twerner)
## 1178                                                                       03/26/2001 10:59 am (pward) employee was working inside of a pipe job and was climbing up and down the bank when a tree limb swung back and hit him in the left eye. Supervisor: tim southard
## 1179                                                                                03/26/2001 11:07 am (pward) while out staking a future resurfacing project employee got out of the vehicle to mark a station and twisted her right ankle. Supervisor: d. W. Jernigan
## 1180                                                                                       03/26/2001 11:14 am (pward) employee was helping fuel the trackhoe and while getting on trackhoe, he lost his balance and twisted his right elbow. Supervisor: benny f. Sloan
## 1181                                                                                                03/26/2001 11:20 am (pward) employee was exiting boat after inspection and a gust of wind blew him down. Left knee and right middle finger. Supervisor: r. H. Mercer
## 1182                                                                                                                        03/26/2003 02:22 pm (fblackmo) employee states while pulling broken limbs he felt pain in his left shoulder. Supervisor: l. S. Carpenter, jr
## 1183                                                                                                                                             03/26/2003 02:34 pm (fblackmo) employee was put tailgate back on when, he smashed his finger. Supervisor: harvey watson
## 1184                                                                                                                   03/26/2003 02:48 pm (fblackmo) employee was chipping brush off right of way when, he came into contact with poison ivy. Supervisor: r. E. Metcalf
## 1185                                                                                                                            03/26/2003 02:57 pm (fblackmo) employee states while using hand saw, some of the matter went into his left eye. Supervisor: s. U. Farrar
## 1186                                                                                                                               03/26/2003 10:05 am (fblackmo) employee states she slipped and fell on ice while taking fuel to the ferry. Supervisor: jeff m. Credle
## 1187                                                                                                                     03/26/2003 10:57 am (fblackmo) employee was removing a hood from a motor grader and debris got into his right eye. Supervisor: wayne r. Meadows
## 1188                                                                                                                              03/26/2003 11:08 am (fblackmo) employee states while sweeping gravel he felt something pop him in his back. Supervisor: tommy cottrell
## 1189                                                                                                   03/26/2003 11:20 am (fblackmo) employee states while stepping off back of crane she stepped wrong causing the injury to her left ankle. Supervisor: gerald messer
## 1190                                                                                                                    03/26/2003 11:30 am (fblackmo) employee was exposed to poison ivy while measuring various trees for select tree removal. Supervisor: kelly spitz
## 1191                                                                                    03/26/2003 11:39 am (fblackmo) employee states while trying to retreive straw from dump truck he felt something pop in his right arm/shoulder area. Supervisor: marcus h. Thomas
## 1192                                                                                                                                    03/26/2003 11:51 am (fblackmo) employee states while moving old computers he felt pain in his lower back. Supervisor; danny king
## 1193                                                                                           03/26/2003 12:11 pm (fblackmo) employee states while lighting a burner the propane build up and splashed outward causing the burns to his skin. Supervisor: mike carriker
## 1194                                                                                                                  03/26/2003 12:22 pm (fblackmo) employee states while climbing down ladder she mis-step causing the injury to her right knee. Supervisor: jim evans
## 1195                                                                                                                                                       03/26/2003 12:53 pm (fblackmo) employee states while she slipped on icy truck steps. Supervisor: grady hurley
## 1196                                                     03/27/2000 02:47 pm employee was trying to remove small fence posts by hand; when he felt a pull/pain in his back. Employee states he has a bulging disk in his back due to incident. Supervisor: r. M. Freeman
## 1197                                    03/27/2000 02:59 pm employee was lining up steel face plates on engine bed on ferry vessel; when he felt a pull in his abdomen and legs. Mr. Ward has a double hernia on each side of his abdomen. Supervisor: kevin lamar cooke
## 1198                                                                                                        03/27/2000 03:06 pm employee was lifting wood panels off a saw bench and lowering them to the ground; when he felt pain in his back. Supervisor: r. J. Terry
## 1199             03/27/2000 03:32 pm employee was lifting the hatch on a tug boat; when the hatch came loose striking him on the left hand/arm causing him to fall onto the deck. Mr. Hawkins sprain his left middle finger at the time of incident. Supervisor: b. R. M
## 1200                                                                                                       03/27/2000 04:57 pm employee was unloading/lifting explosive matts; when he reached to pick up a chain he felt pull/pain in his back. Supervisor: w. H. Lynch
## 1201                                                        03/27/2001 09:18 am (pward) employee was cutting brush(bushing) at bridge 60-154 on I-85 and came into contact with either poison oak or poison ivy. Supervisor: g. David fine 04/10/2001 08:59 am (twerner)
## 1202          03/27/2001 09:40 am (pward) employee was drilling with a jackhammer when the drilling steel broke causing him to fall off of the rock he was on. His finger was caught where the air line from compressor hooks to the jackhammer, crushing the end of ind
## 1203                                                                                                        03/27/2001 09:49 am (pward) employee was removing cutter blades from side mower. Pliers slipped causing employee to cut right thumb. Supervisor: j. C. Sloan
## 1204                                                                                                                               03/27/2001 09:55 am (pward) employee was connecting spreader to rear of truck and she pinched her 5th finger. Supervisor: j. W. Dyson
## 1205                                                                                                                     03/27/2003 02:45 pm (fblackmo) employee was pulling stop sign out of box when, the injury occurred to his left wrist. Supervisor: jonnie gradle
## 1206                                                                             03/27/2003 02:57 pm (fblackmo) employee states while pulling cord on gasoline motor, the cord pulled his center finger on his left hand causing the injury. Supervisor; w. T. Lowery jr
## 1207                                                                                                                    03/27/2003 12:04 pm (fblackmo) employee was lifting bales of straw onto a flatbed when, he felt pain in his back. Supervisor: w. David prestwood
## 1208                                                                                                                       03/27/2003 12:15 pm (fblackmo) employee was operating a dump truck when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon jr
## 1209                                                                                                                         03/28/2000 02:24 pm employee was leaving bathroom when another person pushed door open striking her right eye. Supervisor: b. E. Eatmon, jr
## 1210                                                                                                                                            03/28/2000 02:29 pm employee was using an air grinder when debris got into his left eye. Supervisor: richard f. Jernigan
## 1211                                                                                                         03/28/2000 02:39 pm employee was walking down slope after cutting trees; when he slipped and fell injuring his right elbow. Supervisor: marty craig tillman
## 1212                                                 03/28/2000 02:50 pm employee was clearing the right of way when he felt pain in his right shoulder. Mr. Hunt was lifting/tossing 3' chunk of wood at the time of the incident. Supervisor: ralph thomas mcmanus, jr
## 1213                                                                                                     03/28/2000 04:11 pm employee was lifting/loading equipment and luggage into vehicle, when he felt severe pain in his lower back. Supervisor: capt. G. P. Ramsey
## 1214           03/28/2001 08:17 am (pward) employee was clearing line for outdoor advertising came in contact with poison. Employee arms came in contact with vines while crossing fence to cut brush. Poison spread from forearms to wrist and hands, also stomach area
## 1215                                                              03/28/2001 08:28 am (pward) employee was flagging traffic on nc 18 when employee stepped on roadway to pick up a limb and hurt left leg. Employee had not been hit by limb. Supervisor: b. W. Whitaker
## 1216                                                           03/28/2002 10:10 am (fblackmo) employee states that, while climbing onto walkway to secure the load on back of truck his right foot slipped striking the edge of the walkway. Supervisor: mark turlington
## 1217          03/28/2002 10:26 am (fblackmo) employee had gone to move truck up while filling in driveways and mailbox turnouts. He proceeded to walk back to assist the other employee when, he mis-stepped falling on the shoulder of the road. Supervisor: c. M. Conn
## 1218            03/28/2002 10:47 am (fblackmo) enlarging post driver post holder employee had holder in vise upside down cutting hole bigger with torch. The flame from the torch was bouncing off back of driver towards the glove. Employee did not feel the heat from
## 1219                                                                                              03/28/2002 11:19 am (fblackmo) employee was opening dumpster lid when the wind caught lid and closed on employees right hand little finger. Supervisor: a. M. Lewis jr
## 1220                                                                                                         03/28/2002 11:38 am (fblackmo) employee was lifting grate and frame when she felt a pull in her back. Supervisor; r. G. Crews 04/02/2002 11:32 am (twerner)
## 1221                                                                                                                        03/28/2002 11:49 am (fblackmo) employee stepped off of equipment trailer, injured his left ankle on a loose rock. Supervisor: mcarthur baker
## 1222                                                                           03/28/2002 12:18 pm (fblackmo) employee was removing plant growth from around stop signs when he came into contact with poison ivy. Supervisor; barry coble 04/02/2002 11:34 am (twerner)
## 1223                                                                                                                   03/28/2002 12:40 pm (fblackmo) employee was banding materials to a pallet using metal bands when he cut his right hand. Supervisor: mike jefferys
## 1224                                                                                              03/29/2001 08:11 am (pward) employee was walking down a bank when he slipped and fell, he tried to catch himself and landed on his left arm. Supervisor: john thomason
## 1225                                                                                                                            03/29/2001 09:25 am (pward) employee stepped down from the cab of the truck and pulled a muscle in right leg. Supervisor: m. B. Meizelle
## 1226                                         03/29/2001 10:14 am (pward) employee was dumping at landfill when tailgate fell off truck, employee and other employee with him tried to lift it up to get it back on when jarrett's back popped. Supervisor: john thomason
## 1227                                              03/29/2001 10:22 am (pward) employee was putting chock block back in tool box on side of truck. Block caught bottom of tool box. This forced his wrist back. He felt a tearing on left wrist. Supervisor: larry koontz
## 1228                                                                                                                           03/30/2000 02:10 pm employee was inspecting drain pipes on lipscomb road; when debris blew into his right eye. Supervisor: kevin g. Bowen
## 1229                     03/30/2000 02:12 pm employee bruised his right index finger when he accidentally hit switch on console in the sweeper. The steering wheel turned in one direction hitting his index finger next to the first joint. Supervisor: johnny r. Price
## 1230                               03/30/2000 02:30 pm employee was sitting in a chair in break room area; when the chair broke causing him to hit the floor and back of chair. Mr. Hough strained the back of his neck due to this incident. Supervisor: marc p. Morgan
## 1231            03/30/2000 04:57 pm employee was pulling a limb from shoulder of road to be chipped; when limb broke causing him to fall backward onto pavement. Mr. Hogan has a bruised buttocks which caused cyst to swell and get infected. Supervisor: brain k. Marl
## 1232                                                                03/31/2000 10:30 am jackhammer became wedged in pavement while cutting out failed area of asphalt for repairs. Employee lifted to free the jackhammer, he strained his abdomen. Supervisor: al smith
## 1233                                  03/31/2000 10:46 am employee was walking through the parking lot; when his right foot slipped out from under him causing him to fall. Mr. Gaddy fell backward on his back hitting his head on pavement. Supervisor: marc p. Morgan
## 1234                                                                                                                03/31/2000 10:52 am employee was lifting tire chains (approx. 100 pounds) when he felt pull/pain in his lower back and neck. Supervisor: m. E. Brady
## 1235            04/02/2002 10:14 am (fblackmo) employee was repairing a stop sign. Employee pulled on the post and a bolt popped off the bottom hitting employee on the head. Bolt was below ground level employee states he did not see the bolt in the stub. Superviso
## 1236                                    04/02/2002 10:30 am (fblackmo) employee states that, while walking on concrete slope under bridge he slipped on some wet debris and fell causing the injury to his right knee. Supervisor: mark wade 6/16/2004 03:27 pm (gwhite)
## 1237                                                                                                04/02/2002 11:54 am (fblackmo) employee was helping motorist fix a flat tire. Employee picked up the tire and felt a sharp pain in his back. Supervisor: jeff corley
## 1238                                                                                                                        04/03/2000 04:13 pm employee was helping change cover on dump truck; when the bar came apart cutting his left arm. Supervisor: j. A. Medford
## 1239                                                                                                                    04/03/2000 04:23 pm employee was shoveling asphalt for several days; when his right wrist became extremely sore. Supervisor: marty craig tillman
## 1240          04/03/2000 04:29 pm employee was performing an equipment p. M. And trying to remove oil filter with a wrench. He twisted his left hand, burning his left forearm on hot exhaust catalytic converter. He has first and second degree burns due to incident.
## 1241                          04/03/2000 05:05 pm officer hester was traveling on us 401; when private vehicle tried to occupy same lane causing a collision with state vehicle. Officer hester has a broken left arm due to this accident. Supervisor: ssg. T. R. Jones
## 1242                                                                                           04/03/2001 08:36 am (pward) employee was knocking out the bottom pins when he knocked out the last pin the boom dropped and landed on tom's foot. Supervisor: a. L. Bundy
## 1243                                                                                        04/03/2001 09:28 am (pward) employee was driving a flatbed crew cab and ran into the rear end of a privately owned vehicle causing a chain reaction. Supervisor: c. I. Lucas
## 1244                                                                                               04/03/2001 10:35 am (pward) employee was digging out when the glass fell, hitting employee on the head and shoulders and cutting both hands supervisor: john thomason
## 1245                                                                                                               04/03/2001 10:47 am (pward) employee was putting scales under truck when he felt something pull in his left lower back. Supervisor: d. R. Shackelford
## 1246                                                                        04/03/2001 10:59 am (pward) employee stated he was driving truck and pushed in clutch to change gears and that's when injury occurred. Supervisor: johnny price 10/06/2003 10:15 am (gwhite)
## 1247                  04/03/2001 12:06 pm (pward) employee was loading falsework materials onto a flatbed truck. He picked up a 12" x12" block of wood to load onto truck and felt stinging pain in lower back supervisor: steve a. Hardin 04/10/2001 09:00 am (twerner)
## 1248                                                                            04/03/2003 08:33 am (fblackmo) employee states while conducting a road test, the driver back up into a parked car causing the injury to his lower back area. Supervisor: brenda p. Grady
## 1249                                                                                                        04/03/2003 08:50 am (fblackmo) employee states while responding to an accident his vehicle was hit in the rear by a private vehicle. Supervisor: jeff corley
## 1250                                                                                          04/03/2003 09:02 am (fblackmo) employee states she has experienced pain in her right hand and elbow due to typing. Supervisor: hope mozingo 04/03/2003 09:15 am (kbarefoo)
## 1251                                    04/03/2003 09:15 am (fblackmo) employee was trying to nail a pk nail into concrete with a mallet to be used for a reference point when, he missed the nail striking his index finger on his left hand. Supervisor: jeremy delapp
## 1252                                                                                                                        04/03/2003 11:04 am (fblackmo) employee states while lifting a board, he punctured his left hand on a rusty nail. Supervisor: c. E. Dumas jr
## 1253                                                04/05/2000 01:02 pm employee was knocking out rivets under bridge; when divot ricocheted off a bean hitting Mr. Knowles in the mouth. His right middle tooth was injured due to this incident. Supervisor: r. E. Cox
## 1254                                              04/05/2000 01:11 pm employee was cleaning out bed of dump truck; when he came in contact with poison oak from belt loader. Mr. Wooten has contact rash on both arms, legs, and his abdomen. Supervisor: d. M. Pressley
## 1255                                                                              04/05/2000 12:23 pm employee was sweeping off sidewalk when she stepped into a dip causing her to fall off the curb. Mrs. Morris injured her right ankle. Supervisor: mike d. Presnell
## 1256          04/05/2000 12:38 pm employee strained muscles in his lower back while putting up tailgate on dump truck. He was lifting up the tailgate while the other employee reached to hook the chain, the weight shifted causing the pain to Mr. Douthit back. Super
## 1257                                                                                         04/05/2000 12:46 pm employee got smoke from brush fire in his eyes; causing irritation to his left eye. The brush had poison oak plants in it. Supervisor: tommy kilpatrick
## 1258                                                                                                                    04/05/2000 12:54 pm employee was cleaning out end of driveway pipe when he felt a pain in his right shoulder and neck. Supervisor: jerry l. Lane
## 1259                                                                                                                  04/07/2000 02:14 pm employee was lifting wood chipper that had fallen off its stand; when he felt pain in his lower back. Supervisor: cleve barton
## 1260           04/07/2000 02:22 pm employee was walking out back door of maintenance building when she stepped and turned sideways. She fell and caught herself on her right knee and hands. She sprained her right thumb, wrist and has a right knee contusion. Supervi
## 1261                                                                                                                             04/07/2000 02:32 pm employee was putting trash into bag from a container; when he felt pain in his lower back. Supervisor: c. M. Walker
## 1262                                                                                                                       04/07/2000 02:42 pm employee was tightening a nylon strap; when he pushed on the rachet he strained his lower back. Supervisor: mark stafford
## 1263                                                                                                                   04/07/2000 02:48 pm employee was helping to remove existing pipe from ditch; when he strained his lower back. Supervisor: j. A. Medford/a. Biddix
## 1264                                                                                          04/07/2000 03:01 pm employee was getting up on backhoe; when he slipped and fell against the fender and tire. Mr. Chambers injured his lower back. Supervisor: allen nance
## 1265                                                                        04/07/2000 03:06 pm employee was passing another state vehicle; when vehicles tagged driver mirrors. Mr. Fivecoat got glass in his neck, right ear, and face area. Supervisor: john thompson
## 1266                               04/07/2000 03:12 pm employee was working on back of truck shoveling mulch. Mr. Dellcona turned into another employee who was also shoveling; when he was stabbed (puncture) in his right arm by a pitchfork. Supervisor: j. D. Tucker
## 1267                                                                                                                       04/07/2000 04:03 pm employees right little finger got caught between truck bed and chain while raising the truck bed. Supervisor: d. N. Brann
## 1268                                 04/07/2000 04:09 pm employee has pain in his lower back after doing a road test. Customer was told to do a 3 point turn, so Mr. Bates had to stop car for him. The car jumped the curb and hit a tree. Supervisor: sandra n. Harris
## 1269                                        04/07/2000 10:17 am employee was flagging traffic when traffic stopped. A driver of a private vehicle became impatient and drove by Mrs. Blaker striking her causing bruises on her left arm. Supervisor: dwayne a. Bauguess
## 1270          04/07/2000 10:26 am while removing a brace from the head wall, another employee hit brace with a hammer. Employee was hit in the back of his head by a 2x2 that had a nail sticking out of the end. Mr. Miller has a small puncture wound on his head. Sup
## 1271                                                                    04/08/2002 09:33 am (fblackmo) employee was driving in a state vehicle on us 421 s. B. In winston salem when a private vehicle merging into traffic hit the state vehicle. Supervisor: jim allen
## 1272                                                                                                  04/09/2001 03:05 pm (pward) while driving down the road something flew in employee's right eye causing it to be blood shot and irritated. Supervisor: j. W. Stiles
## 1273                                                                                       04/09/2001 03:10 pm (pward) employee was pushing a small pickup truck out of the roadway when he lost his footing and fell to pavement on left elbow. Supervisor: c. E. Dumas
## 1274                                                                   04/09/2002 01:27 pm (fblackmo) employee was traversing rough terrain crossing ditches, fallen trees and vines. Since that day employee had experience pain in his back. Supervisor: emory kincaid
## 1275                                                       04/09/2002 01:39 pm (fblackmo) employee was near another employee while he was grinding when a piece of rust flew up hitting the employee in the left eye with safety glasses on. Supervisor: tim k. Southard
## 1276                                               04/09/2002 01:49 pm (fblackmo) employee was cutting a board which was suspended and attached to a pile. Employee cut the board and it fell, hitting employee on the top of his left foot. Supervisor; j. P. Callicutt
## 1277                                                            04/09/2002 02:12 pm (fblackmo) employee was strapping canvas down prior to hauling abc stone out of yard. Employee stepped down form the truck and felt pain in his left knee. Supervisor; r. L. Winslow
## 1278                                                                                            04/09/2002 12:18 pm (fblackmo) employee had a build up of degrease under his right thumb nail, over a period of time it lead to blood poisoning. Supervisor; mike gibson
## 1279                                                                                 04/09/2002 12:33 pm (fblackmo) employee was lifting shredded mulch from the flatbed truck when he experienced pain in his lower back on the right side. Supervisor; p. P. Mansfield
## 1280                                                           04/09/2002 12:47 pm (fblackmo) employee was dismounting a cco206 ford medium duty truck, steps were wet when his foot slipped causing employee to land wrong on his right foot. Supervisor; quince watson
## 1281                                                                                                                              04/09/2003 02:04 pm (fblackmo) employee was bending over to lift tool box when, he felt pain in his lower back. Supervisor: m. J. Gray
## 1282                                                                                                             04/09/2003 08:05 am (fblackmo) employee states while lifting up an automobile part when, he felt pain in his upper back area. Supervisor: bobbie bowden
## 1283                                                                                                                                           04/09/2003 08:23 am (fblackmo) employee was operating a chain saw when, he felt pain in his back. Supervisor: w. H. Lynch
## 1284                                                                      04/09/2003 08:49 am (fblackmo) employee states while cutting trees off of a wet bank, his foot slipped from under him causing him to fall and injury his right knee. Supervisor; l. J. Mathias
## 1285                                                                                       04/09/2003 09:06 am (fblackmo) employee was struck in the head by a limb while trying to move a piece of machinery from a wooded populated tree area. Supervisor: clay murray
## 1286                                                                     04/09/2003 10:45 am (fblackmo) employee was function was to be a member of the office surveying party when, he slipped on a muddy service area landing on his back. Supervisor: jeffery j. Kidd
## 1287                                                                                  04/09/2003 11:21 am (kbarefoo) employee was driving a swb truck hauling gravel. Truck ran off road and crossed ditchline, hitting a tree. Employee had a dislocated right shoulder
## 1288                                                                                                                                            04/09/2003 11:24 am (fblackmo) employee found a tick on his back when, he finished conducting a survey in a wooded area.
## 1289                                                                                              04/09/2003 11:35 am (fblackmo) employee was lifting a water cooler from the ground to the back of the truck when, he felt pain in his lower back. Supervisor: al smith
## 1290                                                                             04/09/2003 11:44 am (fblackmo) employee was attempting to drive a nail in the ground when, the hammer slipped striking employee on his right index finger. Supervisor; frank j. Gioscio
## 1291                                                                                                                   04/09/2003 11:54 am (fblackmo) employee was cutting trees and cleaning driveway pipes when, his nose started to bleed. Supervisor: w. L. Thompson
## 1292                                             04/10/2001 04:41 pm (sshort) employee stepped down from equipment roller when he twisted his left ankle. Mr. White had on foot on step and the other on the ground at the time of the incident. Supervisor: s. R. White
## 1293                                                                                   04/10/2001 04:50 pm (sshort) employee was reaching for the faucet in employee breakroom; when she stuck herself with a knife cutting her left forearm. Supervisor: david chadwick
## 1294                                                04/10/2002 01:08 pm (fblackmo) employee dislocated his left shoulder while trying to start the pavement marking grinder. The grinder is equipped with a recoil pull type starting device. Supervisor; joe. S. Parker
## 1295                                                                                                                        04/10/2002 01:20 pm (fblackmo) employee came into contact with poison ivy while investigating a drainage complaint. Supervisor: j. P. Ingram
## 1296                                                  04/10/2002 01:34 pm (fblackmo) employee was picking up trash bags on hunt road when, one of the bags busted open and debris flew in his left eye. Employee was wearing his safety glasses. Supervisor: a. L. Smith
## 1297                                                                                                               04/10/2002 01:48 pm (fblackmo) employee was flagging traffic when a rock flew up from sweeper and hit him in the right eye. Supervisor: d. R. Summers
## 1298                                                                                                                                                     04/10/2002 12:55 pm (fblackmo) employee got off tractor to pickup rocks and passed out. Supervisor: t. R. Burns
## 1299           04/11/2000 03:11 pm employee was removing (pulling) nylon cargo strap when strap became wedge causing a whiplash effect. Kinetic energy traveled down the strap to the cargo hook. The airborne hook struck employee causing cuts and bruises to his nose
## 1300                                                                                                 04/11/2000 03:28 pm employee was getting off of diesel distributor when he heard and felt a pop in his left knee. Supervisor: c. N. Edwards, jr 04/18/2000 08:55 am
## 1301               04/11/2000 11:53 am employee jumped off the end bent #2 on structure #2 and landed on the ground. He landed on the edge of a fin slope and fell backward landing on his head. Mr. Fulghum has head, neck, and upper back injuries. Supervisor: michae
## 1302                                                                            04/11/2001 01:22 pm (sshort) employee felt pain/pull in his lower right back on 4/3/01. Mr. Willis was turning to put mop bucket back when incident happened. Supervisor: r. E. Hamilton
## 1303                                                                                          04/11/2001 01:37 pm (sshort) employee felt sharp pain/pull in lower back; when he bent down to pick up an oil cooler on 3/26/01. Supervisor: t. E. Deans, jr. & zeb narron
## 1304           04/11/2001 01:45 pm (sshort) employee was throwing away debris on shoulder of roadway; when a motorist assaulted him on 3/28/01. Mr. Kimball states for no apparent reason the motorist got out of his vehicle and begin striking him in the face. Superv
## 1305          04/11/2001 02:00 pm (sshort) employee was removing a multi-flora rose brush from roadway on 3/19/01; when a thorn penetrated through his leather work glove. Mr. Mcclung has a puncture wound in his left ring finger. Doctor seems to think puncture site
## 1306                                                            04/11/2001 02:39 pm (sshort) employee was riding in truck with window down; when debris blew into his right eye. Mr. Wilkerson had just finished cutting down trees on sr 1306. Supervisor: a. S. Bailey
## 1307          04/11/2002 02:01 pm (fblackmo) employee was helping another employee to the state vehicle to be transported to nearest medical center. Employee was caring his and the other employees equipment when he mis-step in a terrain causing the injury to his b
## 1308                                                                                                                                       04/11/2002 02:16 pm (fblackmo) employee leaned into the saw as it was idling, reaching for a tree. Supervisor: patrick tuttle
## 1309                                                                              04/11/2002 02:33 pm (fblackmo) employee was getting out of the vehicle after conducting a road test when, his foot got caught in the carpeting of the van. Supervisor: joan j. Holland
## 1310                                                                     04/11/2002 03:07 pm (fblackmo) employee states, that while responding to a trouble call at nc 191 @biltmore square mall, a piece of a glass lense fell and hit his leg. Supervisor: gene allman
## 1311                                                                                  04/11/2002 03:18 pm (fblackmo) employee was taking down a bulletin board when, she bent over to pick up the new board she fell hitting her head and neck. Supervisor: linda battle
## 1312                                                                                                                          04/11/2002 03:29 pm (fblackmo) employee was shoveling asphalt when he felt pain in his lower back and left hip area. Supervisor: doug hill
## 1313                                               04/11/2002 03:45 pm (fblackmo) employee was working on state road 1412 and felt something hit right ear, employee tried to brush if off the object(bug) went into the ear canal causing pain. Supervisor: r. W. Lewis
## 1314        04/11/2002 04:00 pm (fblackmo) employee was standing beside paver in work zone. A johnston county maintenance flatbed crew cab came by too close and too fast striking employee with the side of the truck knocking employee down. Supervisor: c. H. Holloma
## 1315                                                                                                                            04/11/2002 04:23 pm (fblackmo) employee was lifting instrument out of vehicle when he felt pain in his back area. Supervisor: bill price
## 1316                        04/11/2002 12:35 pm (fblackmo) employee was helping employees change blade on moldboard of grader. Employee picked up one end of the blade and felt a sharp pain in his lower back. Supervisor; c. F. Edwards 02/19/2003 11:45 am (kbarefoo)
## 1317                              04/11/2002 12:50 pm (fblackmo) employee was sliding a scale under the tire of a vehicle to be weighed for possible overload violation. Employee experienced pain in his lower back and right leg. Supervisor: ssg. Douglas shackelford
## 1318                                                                                                              04/12/2000 09:19 am employee was using a pitch fork to load leaves into back of dump truck; when he strained his lower back. Supervisor: j. V. Riddick
## 1319                                                                                                                       04/12/2000 09:24 am employee complains of right thumb swelling, right arm and hand pain while keying on the computer. Supervisor: anita smith
## 1320                                                                                          04/12/2000 09:30 am employee came in contact with poison ivy while sawing down a tree with poison plants on it. He has contact rash all over body. Supervisor: troy keener
## 1321                                                                                                                    04/12/2000 09:37 am employee stepped on the edge of raised concrete slab near equipment shop twisting his left ankle. Supervisor: d. T. Childrey
## 1322                        04/12/2000 09:48 am employee was installing a stop sign on 3/28/00. He was using a pick axe to pry broken stump out of ground, when the axe struck a rock causing the axe to bounce back striking his right knee. Supervisor: g. W. Williams
## 1323                                                                                                                                04/12/2000 09:56 am employee was moving a traffic control sign in the wind; when she sprained her back. Supervisor: thomas l. Bohrer
## 1324                                                                                                                               04/12/2000 10:05 am employee complains of pain in both ankles due to running during physical training. Supervisor: ssg. T. I. Hickman
## 1325                                                                                            04/12/2000 10:20 am employee has a bruised left side rib from another employee falling onto his chest during a defensive tactic training. Supervisor: ssg. T. I. Hickman
## 1326                                                                                                                               04/12/2000 10:28 am employee complaining of leg pains due to a formation run during physical training. Supervisor: sst. T. I. Hickman
## 1327                                                                                                                   04/12/2000 10:36 am employee got sand in both eyes during a driver training exercise on the tracks of the academy. Supervisor: ssg. T. I. Hickman
## 1328                                                                                                               04/12/2001 09:23 am (sshort) employee was installing and lifting the end of a pipe; when he injured/strained his right wrist. Supervisor: w. H. Lynch
## 1329                                                                                                                                      04/12/2001 09:33 am (sshort) employee strained muscles in his lower back while lifting boxes on 3/29/01. Supervisor: r. E. Cox
## 1330             04/12/2001 10:05 am (sshort) employee bruised her left knee while climbing into tandem truck to check mileage on 4/3/01. Her right foot slipped on a mud covered step; while she was lifting her left foot up to the next step. Supervisor: k. R. Davis
## 1331                           04/12/2001 10:15 am (sshort) employee injured/sprained his right ankle while being pulled from the water into a dive boat. He was participating in a routine underwater bridge inspection at time of incident. Supervisor: glenn williams
## 1332            04/12/2001 10:27 am (sshort) employee was performing a comparative density test on construction project on 4/6/01. Mr. Lowrance picked a 50 pound saddle weight and placed on the volumeter causing him to strain/sprain his right shoulder. Supervisor:
## 1333                                                                                                                         04/12/2001 10:56 am (sshort) employee strained his lower back while lifting scales to weigh a truck on 4/4/01. Supervisor: ssg. D. C. Smith
## 1334            04/12/2001 11:05 am (sshort) employee was working on mounting a tire on a rim. When the rim moved; the tire tool slipped causing him to loose his balance and fall onto the concrete floor. Mr. Johnson has contusions on both arms. Supervisor: d. R. P
## 1335                                                                           04/12/2001 11:15 am (sshort) employee was clearing right of way on sr 1149. While he was walking back to his truck; the wind blew dirt/sawdust into his left eye. Supervisor: b. F. Sloan
## 1336                                                                                                04/12/2001 11:32 am (sshort) employee was cutting a 1 inch expansion joint material with a pocket knife; when he cut his left index finger. Supervisor: t. J. Brooks
## 1337                                                            04/12/2002 07:19 am (fblackmo) employee was operating a mower on March 14, 2002. Employee came in on March 15, 2002 and reported that he removed a tick off his right shoulder. Supervisor: larry koontz
## 1338                                 04/12/2002 08:00 am (fblackmo) employee was standing on the roadway inspecting the bridge project when the contractor backed his truck into him. Employee rolled out of the way to avoid being ran over. Supervisor: o. T. Anderson
## 1339                                04/12/2002 08:16 am (fblackmo) employee ran off right side of road ad crossed back across roadway, going into ditch and under-pending truck. Hot asphalt spilled out of truck and burned employees left arm. Supervisor: j. R. Myers
## 1340                                                 04/12/2002 08:40 am (fblackmo) employee was told to pull down on the counter weight. The cable had slack and the slack came out and the counter weight fell hitting employee on left hand. Supervisor: t. H. Swayne
## 1341                                          04/12/2002 08:52 am (fblackmo) employee states that while unloading supplies he stepped down from the rear bumper of the van placing all his bodyweight on his leg. Employee felt pain in his knee. Supervisor: capt. Keel
## 1342                                                     04/13/2000 03:13 pm employee using a post hole digger when he felt a pop/pain in his lower back. He was digging hole down into clay when the digger clamped down causing the injury. Supervisor: darrell parson
## 1343                                                                                                                                   04/13/2000 03:26 pm employee was feeding brush into chipper when piece of chip blew into his right eye. Supervisor: r. E. Bennett
## 1344                     04/13/2000 03:33 pm employee was driving dot vehicle when a private vehicles utility trailer became loose in employees lane. Employee could not avoid the trailer so he hit the trailer, and came to an abrupt halt. Supervisor: d. W. Jernigan
## 1345                                                                                                                                                       04/13/2000 04:02 pm employee was lifting heavy objects when he strained his left arm. Supervisor: bobby sloan
## 1346                                                                                                                                  04/13/2000 04:19 pm employee was loading boxes of rubberized asphalt when he felt pains in his lower back. Supervisor: w. G. Wrenn
## 1347                                                                                                                                            04/13/2000 04:29 pm employee turned around to get a bucket when he felt pain in his lower back. Supervisor: l. T. Griggs
## 1348                                                                                                                           04/13/2000 04:51 pm employee was removing debris from the highway when he cut his left index finger. Supervisor: 2nd lt. D. R. Brookshire
## 1349                                                                                                                  04/14/2003 01:34 pm (fblackmo) employee states that the injury occurred to his back while, trying to move a swing anchor. Supervisor: m. J. Morris
## 1350                                                                                                                  04/14/2003 01:48 pm (fblackmo) employee was exiting vehicle when, he slipped on steps causing the injury to his left knee. Supervisor: dale loflin
## 1351                                                                               04/14/2003 01:57 pm (fblackmo) employee states while hooking up an air tool to the air hose when, the tool slipped striking employee on his right wrist. Supervisor: samuel j. Gupton
## 1352                                                                                                                        04/14/2003 02:09 pm (fblackmo) employee states his land hand middle finger was mashed while driving baseline irons. Supervisor: l. R. Absher
## 1353                                                                             04/14/2003 02:41 pm (fblackmo) employee states while moving a 55 gallon drum of orange degrease some of the materials splatter on his stomach and right leg. Supervisor: perry mitchell
## 1354                                                                                                                                04/14/2003 03:38 pm (fblackmo) employee found two ticks on his left shoulder, the area became red and sore. Supervisor: kenneth redd
## 1355                                                                     04/14/2003 11:41 am (fblackmo) employee was cutting a stick with a pocket knife when, the knife slipped causing a laceration to the fourth finger on his left hand.. Supervisor: a. W. Childers
## 1356                                                   04/16/2002 02:08 pm (fblackmo) employee states that while, under bridge #11 in vance county checking creosote timber piles with hammer, slipped on mud and left leg came out from under. Supervisor: r. L. Bowers
## 1357           04/16/2002 02:22 pm (fblackmo) employee was driving state vehicle while crossing nc 24 on dunn road when, a private vehicle failed to stop at red light and hit state vehicle in right rear of truck. Private vehicle left scene of accident. Supervisor:
## 1358                                                                                                                04/16/2002 02:36 pm (fblackmo) employee complained of left knee and right ankle pain after doing physical training was complete. Supervisor: k. King
## 1359                                                                                                 04/16/2002 02:50 pm (fblackmo) employee came into contact with poison oak while pulling brushes and trees off webb road in rutherford county. Supervisor: r. Powell
## 1360                                                                                     04/16/2002 03:06 pm (fblackmo) employee states that while working with another employee that was pushing a tree over, it fell hitting her in the head. Supervisor: m. E. Greene
## 1361                                                                                                             04/16/2002 03:27 pm (fblackmo) following constant movement of arm in operation of a mover, experiencing pain in right arm. Supervisor: r. T. Mcmanus jr
## 1362         04/16/2002 03:41 pm (fblackmo) employee was prying down on a 5"nail bar when, bar slipped and employee fell forward striking underarm on 6x12 joist with all weight on joist causing the injury to his right underarm and shoulder. Supervisor: hugh c. Wil
## 1363                                                                                                     04/16/2002 11:44 am (fblackmo) employee was a passenger in a state vehicle when something flew in the window into his left eye. Supervisor: william rod friddle
## 1364                                                                                                            04/16/2002 11:59 am (fblackmo) employee was lifting a metal grate into truck when he felt pain in his lower back on right side. Supervisor: j. D. Fuller
## 1365                                                                                                              04/16/2002 12:16 pm (fblackmo) employee slipped on soapy water on concrete floor causing the injury to his left knee and ankle. Supervisor: r. Pittman
## 1366                         04/16/2002 12:34 pm (fblackmo) employee was trying to unhook chain that attached asphalt edger to truck. Truck bed was up, but started coming down and finger was caught between chain and truck. Mashing finger. Supervisor: w. R. Loyd jr
## 1367                                                                                  04/16/2002 12:46 pm (fblackmo) employee was putting old bent post on sign truck when employee dropped the post and metal chip flew into employees eye. Supervisor: jerome locklear
## 1368                                                                                                           04/16/2002 12:56 pm (fblackmo) employee was straightening post with twisting bar, bar slipped hitting employee in his right knee. Supervisor: b. T. Coble
## 1369                                                                                                                   04/16/2003 09:33 am (fblackmo) employee came into contact with poison ivy while, cutting limbs on state road 2263. Supervisor: l. S. Carpenter jr
## 1370                                                                                                    04/16/2003 09:44 am (fblackmo) employee was working near another welder when, the flash from the welding causing his eyes to burn. Supervisor: kevin lamar cooke
## 1371                          04/17/2002 07:16 am (fblackmo) employee was standing in front of bathroom door with a data collector in hand when, door opened striking collector which hit employee in the mouth chipping large tooth in front. Supervisor: m. E. Plummer
## 1372                                                                                               04/17/2002 08:03 am (fblackmo) employee was operating a steel wheel roller over and asphalt patch when it overturned, injuring his right leg. Supervisor: r. L. Joyce
## 1373                                                                                  04/17/2002 09:03 am (fblackmo) employee was cleaning steel plate with wire brush, plate slipped causing employees hand to strike the edge of the table. Supervisor: r. D. Sherrill
## 1374                                                                                  04/17/2002 09:12 am (fblackmo) employee states, while chipping a weld piece of slag popped up hitting him on his left eye behind his safety glasses. Supervisor: kevin lamar cooke
## 1375                                                                                                           04/17/2002 09:22 am (fblackmo) employee states that he came into contact with poison oak while cutting a tree out of road way. Supervisor: norris cutrell
## 1376           04/17/2002 09:34 am (fblackmo) employee was tugging on a mail box trying to pull it up so ditch could be pulled by motor grader in order to install a driveway pipe. Motor grader was straddling the ditch adjacent to the mail box. Motor grader operato
## 1377                                                              04/17/2002 10:59 am (fblackmo) employee was on a rock pile running a trackhoe, routine work caused him to experience pain in his back, neck, and affected his left shoulder. Supervisor: j. C. Perland
## 1378                                             04/17/2002 11:51 am (fblackmo) employee was attempting to put rubber track back on track drill while using an aw rod for prying. The track was engaged, the aw rod hit employee in left shin. Supervisor: t. P. Shelton
## 1379                                                                                                                            04/17/2002 12:03 pm (fblackmo) employee states that while working in office yard, wind blew dust into her eyes. Supervisor: ken anderson
## 1380                  04/17/2002 12:15 pm (fblackmo) employee was removing nails from hand rial boards. He was pulling a nail out of a board when, the bar slipped off nails causing him to lose his balance and stepped backwards on the nail. Supervisor; earl d. Bell
## 1381                                                                                                       04/18/2000 08:53 am employee was lifting 4 x 8 decking from back of a truck and laying sandbags; when he felt pain in his right side. Supervisor: a. W. Smith
## 1382                 04/18/2000 09:10 am employee dropped an item and bent over to pick it up while closing truck door. The wind blew the door open and Mr. Price raised up striking his head on the door. He has a laceration on top of his head. Supervisor: arnold b.
## 1383                                                                                            04/18/2000 09:15 am employee was lifting a 48 x 48 metal sign to put in back of truck when he pulled muscles in his lower back. Supervisor: william edward mcclendon, jr
## 1384                                                                                                                              04/18/2000 09:21 am employee was unloading a truck when a foreign object flew into his right eye. Supervisor: ralph thomas mcmanus, jr
## 1385                                                                                                   04/18/2000 09:26 am employee has strain to right wrist and forearm due to repetitive motion on keyboard and mouse (cadd related injury). Supervisor: c. B. Little
## 1386                                                                                                               04/18/2000 09:41 am employee was doing field work surveying when he came in contact with poison oak on face, hands, and arms. Supervisor: david chang
## 1387                                                                                                                             04/18/2000 09:45 am employee was loading appliances onto flatbed truck when he felt pain in his lower back. Supervisor: johnny r. Price
## 1388                                                                04/18/2000 09:50 am employee was trying to dislodge wedged tailgate by pulling on it; when gate came loose pulling his left middle finger between the tailgate and chain. Supervisor: c. B. Lunsford
## 1389                                04/18/2000 10:03 am employee was drilling a hole in concrete when the drill got hung, twisted out of his hands, and hit him in the face. Mr. Woody a laceration to his lip and a bruised right jaw bone. Supervisor: wayne l. Miller
## 1390            04/18/2000 10:08 am employee was trying to dislodge trash bags hung in bed of a dump truck. He pulled the tailgate open with his right hand using his left to grasp bags. The tailgate shut catching his left middle finger on bed of truck. Supervisor:
## 1391                                                                                               04/18/2001 08:52 am (sshort) employee bent down to get something off the bottom shelf in ship store; when she heard a pop in his right knee. Supervisor: r. H. Mercer
## 1392              04/18/2001 08:59 am (sshort) employee was walking into the restroom; when she slipped and fell on wet floor. An inmate had just mopped the floor and failed to put "caution wet floor" signs down. Mrs. Harris sprained her left elbow. Supervisor: m.
## 1393                                                      04/18/2001 09:07 am (sshort) employee was walking to unhook chain; when he stepped in mud and slipped/fell on a piece of glass. His left hand was cut on the outside of palm area. Supervisor: thomas burchell
## 1394                                                                                                                               04/18/2002 02:37 pm (fblackmo) employee states that she slipped down stairs from were water has been spilled. Supervisor: pam guptill
## 1395     04/18/2002 03:19 pm (fblackmo) employee was operating a hot air lance in a crack pouring operation for the n. C. D. O. T. A lady driving through the work zone veered over into the lane where employee was working and the passenger side mirror struck his le
## 1396                                                                                                                              04/18/2002 12:53 pm (fblackmo) employee states that he came into contact with the dust and fumes from asbestos. Supervisor: not stated
## 1397                                                   04/19/2000 02:15 pm employee was walking across parking lot; when he felt something on his neck. He reached to feel his neck and found a spider. (spider bite to right back side of neck) supervisor: I. L. Baker
## 1398                                                                                                                                                  04/19/2000 02:36 pm employee stepped from edge of roadway twisting his right knee. Supervisor: marty craig tillman
## 1399                                                     04/19/2000 02:43 pm employee was on a hill inspecting bridge; when his foot got caught on a vine causing him to trip and fall on a rock. He injured his right knee at time of incident. Supervisor: don welborn
## 1400                                                                   04/19/2000 03:17 pm employee was entering the building when she slipped and fell on rubber mat. She has abrasions on her left leg, left arm and a bruise on her left jaw. Supervisor: tola bailey
## 1401                                                                               04/19/2002 07:11 am (fblackmo) employee states that while surveying a wooded area adjacent to I 77 and nc 73, unknowingly came into contact with poison oak. Supervisor: matt lauffer
## 1402          04/19/2002 07:23 am (fblackmo) employee was walking in front of state truck making a left turn to get in truck when toe part of employees' right shoe got tangled up with the back of his left shoe causing employee to fall on pavement. Supervisor: maxi
## 1403                                                                    04/19/2011 04:44 pm (slee) pov ran under sov. (single axle dump truck), between the front and rear tires. The rear tires ran up on the hood of the pov causing the sov to turn over on its side.
## 1404                                                                                         04/21/2003 02:33 pm (fblackmo) employee was cutting and chipping brushes on embankment when, a rock fell striking employee in the back of the head. Supervisor: kim kephart
## 1405                                                                                       04/21/2003 02:48 pm (fblackmo) employee was climbing up embankment, pulling trees, and brushing off chipper when, he felt pain in his lower back. Supervisor: j. C. Palmer jr
## 1406                                                                                                                           04/21/2003 03:00 pm (fblackmo) employee states while working in a wooded area, he found a tick on his navel area. Supervisor: clay murray
## 1407                                                                                                           04/22/2003 02:34 pm (fblackmo) employee states while sitting in traffic at intersection a private vehicle hit him in the rear. Supervisor: o. T. Anderson
## 1408                                                                                                              04/22/2003 02:48 pm (fblackmo) employee states while walking she felt a sharp pain in her right knee and was unable to move. Supervisor: chris peoples
## 1409                                                                                                                    04/22/2003 03:58 pm (fblackmo) employee was sitting at intersection when, his vehicle was struck by another vehicle. Supervisor: kevin h. Sebold
## 1410                                                       04/23/2001 11:59 am (sshort) employee was loading bands for pipe operator loader on 3/23/01. The loader bucket tilted causing Mr. Dowdle's left foot to get caught under the bucket. Supervisor: a. E. Pruitt
## 1411           04/23/2001 12:06 pm (sshort) employee strain/sprain his left wrist while pushing himself across seat in truck on 4/5/01. The handle was broken and he was moving across the seat to open the door for the mechanic at time of incident. Supervisor: j. E.
## 1412             04/23/2001 12:11 pm (sshort) employee was delivering equipment to basic training dmv site on 3/26/01. Ms. Johnson pulled the classroom door open; when the edge of the door struck her in the right kneecap. She refused medical treatment. Supervisor:
## 1413                                                                                        04/23/2001 12:18 pm (sshort) employee sprained his left wrist on 3/12/01. Mr. Thagard failed to reduce speed while operating a state work vehicle. Supervisor: randy k. Wise
## 1414                04/23/2002 07:38 am (fblackmo) employee was installing a pine on the new construction site on state road 1599 a. Employee was straightting the pipe in the ditch when, he felt pain in his lower back on the right side. Supervisor: larry lovingood
## 1415                                                                                          04/23/2002 08:18 am (fblackmo) employee was driving state vehicle along us 74 eastbound, near us 19 when, a private vehicle struck him in the rear. Supervisor: scott cook
## 1416                                   04/23/2002 08:31 am (fblackmo) employee was walking in warehouse when, he tripped over a platform to the loading dock causing him to fall. Employee states that the platform was higher than the floor. Supervisor: b. F. Kizziah
## 1417                                                                                               04/23/2002 08:56 am (fblackmo) employee was mowing around the paw creek facility using a tractor mower when, he was bitten by a n insect. Supervisor: c. D. Childress
## 1418                                                               04/23/2002 09:10 am (fblackmo) employee states that by removing the weight scale out of his patrol vehicle on various occasion has caused the injury to his right shoulder. Supervisor: c. T. Everett
## 1419                                                                                          04/23/2002 09:29 am (fblackmo) employee states that while removing weight scale in and out of patrol car caused the injury to his right shoulder. Supervisor: ssg. Quigley
## 1420                                   04/23/2002 09:39 am (fblackmo) employee states that while walking up stairs to the back office entrance of the building, she tripped over the door mat, causing her to fall hitting the back of the door. Supervisor: judy arnold
## 1421                                                                                                   04/23/2002 09:50 am (fblackmo) employee was working on bridge number 178, moore county, when he was bitten by a tick on his left leg. Supervisor: j. P. Callicutt
## 1422           04/23/2002 10:34 am (fblackmo) employee was holding his flashlight with his left hand in a cradling position. Employee placed his left hand over the top of his weapon hand instead of underneath. Upon firing the first round, the slide came back and s
## 1423          04/23/2002 10:57 am (fblackmo) employee was welding on a mower deck, he left and went home. In the middle of the night he felt like something was in his eyes. Alamance county regional hospital found eyes burned from the welding. Supervisor: c. A. Owe
## 1424           04/23/2002 11:39 am (fblackmo) employee was cutting a tree for mudbug access. As the tree began to fall, a rotten dead tree directly behind it became entangled in the branches. The dead tree was pulled down and struck employee in the back of the hea
## 1425                                                                                04/23/2002 12:14 pm (fblackmo) employee states that while installing a sign on lynch store road in orange county he found a tick attached to his right side. Supervisor: b. T. Coble
## 1426                                                                                                           04/23/2003 07:30 am (fblackmo) employee was moving boxes of manuals for re-shipment when, she experienced pain in her back. Supervisor: c. W. Bridgers jr
## 1427                                         04/23/2003 07:42 am (fblackmo) employee was trying to dis-lodge rocks from the bed of a dump truck by shaking the body of the bed while it was being raised when, he hit his head against the cab. Supervisor: robby taylor
## 1428                                                                                                     04/23/2003 08:03 am (fblackmo) employee was operating a backhoe when, he felt pain in his neck area from all the turning and twisting. Supervisor: m. H. Thomas
## 1429                 04/24/2001 01:43 pm (sshort) employee was helping rebuild a front end loader bucket in an enclosed area. Mr. Jones was welding on 1/11/01; when he burnt his eyes from the welding rays. Supervisor: a. D. Cloer 04/24/2001 04:48 pm (sjerniga) los
## 1430           04/24/2001 01:55 pm (sshort) employee was making repairs to a signal controller on 4/11/01. He was attempting to step out of pickup bed; when his foot slipped causing him to fall. Mr. Batchelor broke his teeth, bruised his lip, hit his head, and str
## 1431                                                      04/24/2001 02:06 pm (sshort) employee states she is having pains in her left arm/elbow, but no pains in her fingers. She believes the pain is a result of repetitive keying at work. Supervisor: tracey dorsey
## 1432                                04/24/2001 02:17 pm (sshort) employee stated that he was seated at computer and stretched his arms striking fish hook that was hanging on the wall. The fish hook became embedded in his left little finger. Supervisor: j. H. Moore
## 1433                                                                                                                   04/24/2003 02:31 pm (fblackmo) employee states while jumping a ditch, he fell causing the injury to his right hip area. Supervisor: m. E. Plummer
## 1434            04/25/2000 02:22 pm Mr. Smith was acting as a spotter for an operator of a dump truck. The driver had lowered the bed when he felt the truck slip. He put the truck in reverse by accident striking Mr. Smith causing injuries to his left ribs and ches
## 1435                                                                                                                                              04/25/2000 12:49 pm employee was stepping down out of truck when he sprained his right ankle. Supervisor: j. D. Fuller
## 1436           04/25/2001 02:42 pm (sshort) employee was conducting a road test on 2/6/01. While turning off 71st school road onto media drive he was rear ended by another vehicle. The impact made the seat break into a reclining position causing pain and stiffness
## 1437                                                                                                              04/25/2001 02:52 pm (sshort) employee was walking to close cabinet door on 4/9/01; when dust particles flew into his right eye. Supervisor: danny king
## 1438                                    04/25/2001 03:05 pm (sshort) employee has pain in upper back, left shoulder, forearm, and sternum due to repetitive motion work on job. She also has pain/stiffness in her fingers and both wrists. Supervisor: marlene fletcher
## 1439                                                                                         04/25/2001 03:13 pm (sshort) employee was pushing carryall door on 4/11/01; when his left wrist popped because the handle on the door was jammed. Supervisor: steve gosnell
## 1440                                                                                                                                    04/25/2001 03:21 pm (sshort) employee bruised his right knee/leg while climbing scaffolding on job site. Supervisor: t. R. Smith
## 1441           04/25/2001 03:27 pm (sshort) employee was loading plywood on flat bed truck on 4/10/01. Mr. Smith placed a piece of wood on stack to count; when the plywood flipped back and struck him on his right shin/ankle area causing bruising. Supervisor: r. P.
## 1442                                           04/25/2001 03:33 pm (sshort) employee has continuous pain in right hand/wrist and shoulder due to repetitive motion at work. Ms. James has uses the mouse nonstop while working on cadd drawings. Supervisor: gary parker
## 1443                                                                                                             04/25/2001 04:17 pm (sshort) employee was fixing antenna on crew cab truck; when he struck/bruised his left elbow on the door. Supervisor: a. S. Bailey
## 1444                                                     04/25/2001 04:24 pm (sshort) employee was removing a sign from post on 4/19/01. He struck the sign with a hammer to loosen it; when the sign flew up and hit/cut his right thumb. Supervisor: thomas e. Johnson
## 1445                                                                              04/25/2001 04:29 pm (sshort) employee was working under bridge in person county on 3/19/01; when he fell off scaffolding bruising and sprained his left leg. Supervisor: elton stewart
## 1446                                                                                   04/25/2002 02:17 pm (fblackmo) employee was picking up litter when the pallet slid, hitting him in the leg. A splinter stuck into employees right thigh. Supervisor: t. J. Spicer
## 1447        04/25/2002 03:17 pm (fblackmo) employee was doing pre trip inspection on c. D. L. Rt. Test while, walking around the truck marking the test sheet she tripped over the orange cone and fell to the ground on her hands and knees. Supervisor: julia b. Harri
## 1448                                                                                                                      04/25/2002 03:27 pm (fblackmo) employee was raking asphalt on union church road when, he felt pain in his back. Supervisor: l. S. Carpenter jr
## 1449                                                                                                  04/25/2002 09:11 am (fblackmo) employee was operating front end loader on the yard. Employee went to exit when he felt pain in his back. Supervisor: r. E. Langley
## 1450                                                                                                                  04/25/2002 09:32 am (fblackmo) employee states that he pinched his left hand center finger while trying to un-jam chute. Supervisor: d. A. Hensley
## 1451                                                                                                                                04/25/2002 09:47 am (fblackmo) employee was digging hole with post hole digger and jammed right wrist. Supervisor: roger l. Arrowood
## 1452                                                                                                                   04/25/2002 09:58 am (fblackmo) employee states that while setting slope stakes he came into contact with poison oak. Supervisor: w. T. Grindstaff
## 1453           04/25/2002 11:15 am (fblackmo) employee was standing on a metal catch basin grate, cleaning off debris with a shovel. One of the rung of the grate was missing. Employee stepped back and his right leg slipped thru the opening in the grate and his rig
## 1454                                                                04/25/2002 11:31 am (fblackmo) employee states that he came into contact with poison oak while cutting brushes with an axe on the outer loop project in cumberland county. Supervisor: m. E. Plummer
## 1455                                                                                        04/26/2000 08:46 am employee was stepping into a two foot deep trench to check for stability of soil; he slipped he strained his lower back. Supervisor: david b. Harrington
## 1456                                               04/26/2000 08:58 am employee was reaching for an object in a desk drawer; when he struck his middle finger on a piece of wood chisel. He has a laceration (deep cut) requiring sutures. Supervisor: john t. Stallings
## 1457                                                                                                        04/26/2000 09:38 am employee was cutting wood when his left foot slipped, causing the chain from the chainsaw to cut his left knee. Supervisor: c. B. Little
## 1458          04/26/2000 10:07 am employee was cleaning out hopper of a lee boy paving machine; when the auger caught a piece of rebar knocking him off balance catching his foot in the auger. His coworkers shut off the machine before the auger went to discharge ar
## 1459                                                                                                                                           04/26/2000 10:15 am employee fell and twisted/sprained his right knee while climbing steps. Supervisor: lt. T. S. Collins
## 1460                                                                      04/26/2000 10:33 am employee was in the bottom of a ditch working on a construction project; when he was bitten by fire ants (hymenoptera stings) on his left hand. Supervisor: g. L. Rogerson
## 1461                                                                    04/26/2000 10:38 am employee was driving moving equipment traveling on nc 17, n with the window down. A bee flew into the truck causing him to jump hurting his back. Supervisor: b. W. Whitaker
## 1462          04/26/2002 07:16 am (fblackmo) employee was cutting open bags of calcium chloride to spread on unpaved road for dust control. Wind blew some material into his eye or some of the material might have been on gloves and went into his eye while pushing g
## 1463           04/27/2000 08:46 am employee was hit by a private driver on sr 1326 in cherokee county on 4/10/00. Employee was moving debris from road when a driver hit him knocking him into the windshield and over the car. Mr. Chastain has a fractured/chipped lef
## 1464                                                                       04/27/2000 08:54 am employee was sawing a tree and removing it from the roadway; when he came in contact with poison ivy plants. He has contact rash on both arms. Supervisor: w. D. Laughter
## 1465               04/27/2000 09:03 am employee was flagging traffic when he notices a tick on his left arm. He removed the tick and later a spot appeared which he treated with first aid. After no improvement employee felt medical treatment was needed. Supervisor:
## 1466                                                                           04/27/2000 09:11 am employee was clearing trees from right of way when he came in contact with poison ivy. He has contact rash on his right forearm. Supervisor: ralph thomas mcmanus, jr
## 1467                                                                             04/27/2000 09:15 am employee was stepping down from dump truck; when his foot slipped he fell on his left leg and felt pain in his lower back. Supervisor: william edward mcclendon, jr
## 1468                                                                                            04/27/2000 09:21 am employee was loading straw onto a truck; when his foot slipped between two bales of straw causing strain to his lower back. Supervisor: g. M. Fisher
## 1469                                                                  04/27/2000 09:27 am employee was cutting trees when she came in contact with poison ivy plants. She has contact rash on both arms, back of shoulders and her buttocks. Supervisor: alvin e. Pruitt
## 1470                                                                                                   04/28/1999 01:08 pm employee was cleaning tar kettle when spring popped off front wheel stand of the kettle. This caused it to fall on employees front right leg.
## 1471                                                                04/28/1999 01:21 pm air entraining agent was placed in the tool box of another employee's vehicle on March 11. On March 17, eht employee (Mr. Lange) consumed the agentt when he thought it was tea.
## 1472                                    04/28/1999 03:18 pm employee was lifting freight as usual and later experienced some hip pain not associated with lifting. Employee went home and was informed by employee of physicians analysis on April 14, 1999 at 67:00 pm.
## 1473                                                                                                             04/28/1999 03:34 pm employee was loading grader on the lowboy trailer when his foot slipped on wet metal. This caused him to fall and sprain his wrist.
## 1474                                                                                                                                              04/28/1999 03:46 pm employee stepped into hole and lost his balance. He was reaching for metal pipe to regain balance.
## 1475                                                      04/28/1999 04:02 pm injured employee was helping unload 12" rcp. The pipe had to be rolled over so the backhoe could pick it up. The pipe shifted and caught the employee's finger between two pieces of pipe.
## 1476                                                                             04/28/1999 04:17 pm employee was walking in grass and kicked a slope stake. His foot was caught in the guard stake and the slope stake while stepping. He tripped, fell, and hit elbow.
## 1477                                                                                                                                                                               04/28/1999 04:34 pm employee was flagging traffic when object blew into her left eye.
## 1478                                                                          04/28/1999 10:10 am employee was standing on a fourteen foot fiberglass ladder at the six foot level removing a panel of an overhead door. Possible injury to shoulder, back, and/or ribs.
## 1479            04/28/1999 10:36 am employee was manually shoveling asphalt on a primary road when he noticed something in his left eye. He ignored it for several hours, but after it persisted he reported it to his supervisor. The supervisor took him for treatment
## 1480                                                                                                                               04/28/1999 11:00 am employee was loosening bolts and opening paint barrels. Employee felt a sharp pain in the lower half of his back.
## 1481                                                                          04/28/1999 11:59 am employee was setting slope stakes outside on a bank. As he walked up slope he soil gave way, causing him to fall. He then grabbed a tree branch straining his forearm.
## 1482                                         04/28/1999 12:34 pm employee was going to wash his windshield and the handle that he was using to pull himself up on the tandem broke. The employee fell in the engine area of the tandem, the hood was raised at the time.
## 1483                     04/28/2003 02:49 pm (fblackmo) employee was working on hydro seeder taking control valve off. Employee was climbing down ladder caring the valve when, he mis-judge his step causing the injury to his abdominal area. Supervisor: g. E. Morris
## 1484                                                                                                                                  04/28/2003 03:07 pm (fblackmo) employee states that, he cut his thumb on left hand while using a bush axe. Supervisor: h. R. Boles
## 1485           04/28/2003 03:33 pm (fblackmo) employee was helping to hold the jackhammer up against side of bridge rail while another employee was operating hammer. The bit went through the rail, hammer slammed against rail and mashed employees left thumb. Superv
## 1486                                       04/28/2003 11:33 am (fblackmo) employee was a passenger in dot pick-up that had stopped on us 401 by pass awaiting traffic when, a private vehicle failed to stop striking dot pick up in the rear. Supervisor: r. D. Pittman
## 1487                                                                                                        04/28/2003 12:07 pm (fblackmo) employee was struck in the rear by a private vehicle while waiting for mobile home to cross bridge. Supervisor: r. D. Pittman
## 1488                                                                                            04/29/1999 02:11 pm employee was assisting mechanic in loading a tractor tire on a service truck. On a later date, (March 20th), he felt a sharp pain in his lower back.
## 1489                                                                                                                             04/29/1999 02:34 pm employee was trying to release a jack hammer from the concrete. He was pulling up and down when he sprain his back.
## 1490                                                           04/29/1999 03:00 pm employee was operating a pan and was backing up onto a slope, when weight shifted. This caused the pan to rollover. The employees shoulder struck the top of cab and rearview mirror.
## 1491            04/29/1999 03:11 pm employee was walking down an embankment when his foot slipped. Employee sat down on the ground for a while and was unable to get up immediately. He then felt a sharp pain in the middle of his back. There was loose dirt on the em
## 1492                                                                                                                                            04/29/1999 03:23 pm employee reached up with left hand to get a pen from sun visor felt sharp pain in his left shoulder.
## 1493                                                                                                                                     04/29/1999 09:46 am possible carpal tunnel syndrome caused by writing daily diaries and signing tickets over the past 35 years.
## 1494                                                                                                                                     04/29/1999 10:07 am while employee was cutting up old carteret wheel house with a torch, a metal object fell into his left ear.
## 1495                                                               04/29/1999 10:28 am employee was climbing up the side of a dump truck to put pins in the tailgate. His right foot slipped and he lost his balance. He fell on pavement hitting his head and his back.
## 1496                                                                             04/29/1999 10:44 am employee was checking linkage at the air cylinder for loose play (the tailgate would not open). The cylinder released and pinched, mashed, cut right little finger.
## 1497                                                                                     04/29/1999 10:57 am employee was using a shovel; when he reached back with it and cut his left pinky finger on a bush ax. The ax was held by another employee standing near by.
## 1498            04/29/2010 10:59 am (slee) employee was operating broom sweeper on sr 1912, blind bridge road. Pov traveling 50-60 mph crashed into back of sweeper. Pov knocked sweeper into the ditch. Other person involved was isabed dominquez, 1401 blind bridge r
## 1499                      04/30/1999 03:48 pm employee was riding in rear bed of a kawasaki mule. He crossed a bad rut throwing the employee against metal frame. This caused him pain in lower back with a possible occult rib fracture. 03/25/2003 10:36 am (kbarefoo)
## 1500                                                                                                                 04/30/1999 04:08 pm employee was on the maintenance yard. The employee stepped backward, tripped over the edge of the sidewalk and fell on her hip.
## 1501                                                     04/30/1999 10:07 am employee was in stock room and bent over to pick up a test on the floor. When she stood up (with the aid of the shelf), she felt pain and heat underneath my arm and her fingers went numb.
## 1502                                                                        04/30/2001 02:51 pm (sshort) employee was struck on his left knee on 4/23/2001. He was cutting trees with chainsaw; when the tree kicked back striking Mr. Blanton. Supervisor: m. H. Brewer
## 1503                                                                                                                      04/30/2002 07:31 am (fblackmo) employee was going to sit on lounge couch and mis-judged location and fell to the floor. Supervisor: t. L. Gray
## 1504                      04/30/2002 07:44 am (fblackmo) employee was brushing around culvert number 101 in cumberland county. Employee stepped in unseen hole that had grass growed over it, causing employee to twist and hurt left knee. Supervisor: keenie covington
## 1505                                               04/30/2002 08:33 am (fblackmo) employee in the stockroom getting broom to sweep the floor. Employee got his foot tangled with the broom, causing him to fall to the floor, cutting left eye. Supervisor: c. C. Denton
## 1506                                                                                                                               04/30/2002 08:44 am (fblackmo) employee stepped on uneven surface in parking lot. Twisted ankle on left foot. Supervisor: d. I. Clapp
## 1507            04/30/2002 09:14 am (fblackmo) employee has experienced a chronic dermatitis over his entire body. The cause is unknown and the of contact is also unknown. As a result it is also unknown if this is a job related incident. Employee routinely works I
## 1508                         04/30/2002 09:28 am (fblackmo) employee was helping move extension ladder that was in upright position. Ladder got over-balanced and employee strained muscle in his neck trying to keep the ladder from falling. Supervisor: w. D. Watkins
## 1509                                           04/30/2002 09:37 am (fblackmo) employee states that, lost footing while on top on high bank and slid down embankment for about 20' then rolled 20' feet end over end to bottom landing on rear. Supervisor: r. D. Hensley
## 1510                                                                                                                                    04/30/2003 02:08 pm (fblackmo) employee was working with ground wire when, the hit him in his left eye. Supervisor: marty headen
## 1511                                                                                                                   04/30/2003 02:18 pm (fblackmo) employee was exiting truck when, he slipped and fell causing the injury to his right knee. Supervisor: greg godwin
## 1512           04/30/2003 04:20 pm (slee) employee was operating a pan on a grading project. He was driving down a dirt road when the hydraulic hose on the right steering column busted. He lost control, running off of the road, to the right hitting the ditch and e
## 1513                                                                                                 04/30/2003 11:08 am (fblackmo) employee states, she was conducting audits in concord and kannapolis nc area when, she slipped and fell. Supervisor: will williamson
## 1514                                                                                                                               04/30/2003 11:58 am (fblackmo) employee states while repairing leaks he, felt pain in his left shoulder area. Supervisor; d. Ferguson
## 1515                                                                                                        04/30/2003 12:41 pm (fblackmo) employee was lifting steel post into back of pick up truck when, he experienced pain in his lower back. Supervisor; ray smith
## 1516                                                                                                                              05/01/2000 02:25 pm employee was operating a jackhammer when he felt a sharp pain in his lower back (right side). Supervisor: al smith
## 1517                                   05/01/2000 02:32 pm employee was moving the fork on the forklift; when he mashed his left middle finger causing his nail to be removed. In order to lift the fork, he had to shake it and then pick it up. Supervisor: j. D. Bell
## 1518                                                                                                                           05/01/2000 03:00 pm employee was operating a pan on a grader job; when he stepped off he sprain his left knee. Supervisor: davis c. Diggs
## 1519                                                        05/01/2000 03:16 pm employee was installing a boom to lift tack tank up; when an inmate pulled the hose to fast causing the handle to hit employee in his right wrist (contusion). Supervisor: bruce k. Dyer
## 1520                                                    05/01/2000 04:07 pm employee was using utility knife to cut tape when the blade was pulled across the left ring finger. Employee was not firmly holding or securing the item being cut. Supervisor: dan spurling
## 1521                                                                                                              05/01/2000 04:13 pm employee was picking up a bale of straw under a shoot; when bale came down striking employee on right knee. Supervisor: keith hill
## 1522                                                                  05/01/2000 04:20 pm employee was cutting a 3" tree that was leaning into right of way with a bush axe. The bush axe twisted causing pain in his right shoulder and arm. Supervisor: k. L. Anderson
## 1523         05/01/2001 10:29 am (sshort) employee was on back of spreader cleaning out frozen salt using a silt fence post on 3/6/01. After cleaning the spreader, Mr. Welch threw the post down and started climbing off the spreader. The employee lost his footing o
## 1524                                                           05/01/2001 10:40 am (sshort) Mr. Dawkins was diagnosed with an allergic conjunctivitis in his left eye; due to irritation while operating a mower while cutting rye grass. Supervisor: charles frank vick
## 1525           05/01/2001 10:48 am (sshort) employee was removing a rusted, frozen nut with a hammer and chisel on 4/23/01. The nut broke free with great speed, and it became airborne. It glanced off of metal rail striking employee in the mouth breaking his left f
## 1526                                                                                                                 05/01/2001 11:01 am (sshort) employee was on pipe trying to unhook cable; when he felt pain in his right lower back. Supervisor: coleman c. Coggins
## 1527                             05/01/2001 11:07 am (sshort) employee was operating a boom mower; when he experienced total body numbness. He stopped the mower and attempted to dismount when he lost consciousness and fell onto roadway. Supervisor: r. D. Smith, jr
## 1528                                05/01/2001 11:21 am (sshort) employee sprain/twisted his left knee while turning towards gas pumps on 4/25/01. Officer vinson has just stepped out of his patrol car to pump gas at time of incident. Supervisor: sgt. Cynthia floyd
## 1529                                                                                                      05/01/2001 11:28 am (sshort) employee was walking on boardwalk; when he tripped and fell on warped board and fractured his left finger. Supervisor: t. L. Gray
## 1530                                                                                      05/01/2003 02:24 pm (fblackmo) employee was giving a drivers' exam when, the customer hit the brake instead of the gas causing the injury to his back. Supervisor: penny boren
## 1531                                                                                                                               05/01/2003 02:41 pm (fblackmo) employee states while lifting bag of lime he, felt pain in his lower back area. Supervisor: keith hill
## 1532                                                                                                             05/01/2003 02:53 pm (fblackmo) employee states his left hand became injured while cleaning the top of a tandem dumb truck. Supervisor: archie lee smith
## 1533                                                                                                         05/01/2003 03:08 pm (fblackmo) employee was stepping across a pipe when, he slipped and fell causing the injury to his right knee. Supervisor: h. E. Worley
## 1534                 05/01/2003 03:18 pm (fblackmo) employee states while conducting a cdl skills exam, he injured his right hand. Supervisor: gerald r. Holland 09/17/2003 10:53 am (gwhite) doctor's urgent care referring bryant matthewson to cape fear ortho for ev
## 1535                                 05/02/2001 08:46 am (sshort) employee cut his right index finger, while qualifying with off duty and shooting weak handed slide. The weapon and struck his finger. Requiring 4 stitches to close laceration. Supervisor: lt. Snypes
## 1536                                                                                            05/02/2001 09:00 am (sshort) while cutting brush from right of way on 4/24/01, Mr. Hildreth was bitten by a bee or fire ants on his left leg. Supervisor: h. M. Thompson
## 1537                                                                                                                   05/02/2001 09:20 am (sshort) employee was operating a jackhammer on hard asphalt; when he felt a sharp pain in his groin. Supervisor: a. L. Smith
## 1538                                                                                 05/02/2001 09:25 am (sshort) employee has pain and swelling in both wrists/hands and she has numbness in her right hand due to repetitive typing at work. Supervisor: jere e. Hyder
## 1539                         05/02/2001 09:31 am (sshort) employee was removing a radiator from bulldozer on 4/19/01. He placed his foot on the track pad to pull himself up; when his foot slipped causing him to scrap his lower left leg. Supervisor: r. W. Feher, jr
## 1540            05/02/2001 09:43 am (sshort) employee was staking radius on us 70; when a foreign object blew into his left ear. The wind was blowing extremely hard on 4/17/01. Mr. Daniels states his left ear became uncomfortable and could not hear as well. Superv
## 1541                                                                                               05/02/2002 01:12 pm (fblackmo) employee states that while shoveling rocks out of road on state road 1768 he, felt pain in his lower back. Supervisor: noel a. Chilton
## 1542                                                                                                                     05/02/2002 01:24 pm (fblackmo) employee was working on road and noticed 2 ticks on his left upper back and right side of chest. R. A. Ellington
## 1543            05/02/2002 11:54 am (fblackmo) employee was working on state road 1193 dot crew was cutting right of way. Tree had been felled across the road with cut end on top of bank. Employee was acting as ground guide for dump truck towing brush chipper. A 1
## 1544                                                                       05/03/1999 01:30 pm employee holding steering wheel for long lengths of time caused carpal tunnel in both hands and wrists. Machines/vehicles used: trackhoe, backhoe, grader, pan (scraper).
## 1545          05/03/1999 01:58 pm examiner garrett was sitting at her desk, customer walked over to her asking for a road test. Upon inspecting customers insurance form, examiner garrett explained the form was no good since it was dated 11/98. Customer snatched fo
## 1546                                                                                                                   05/03/1999 02:53 pm employee was tapping a grade stake with bush axe, employee hit short splitting grade stake and cutting his left index finger.
## 1547                                                                                                                              05/03/1999 08:25 am employee was delivering warrants when Mr. Orr (who is know to have hepatitis c); deliberately coughed in his face.
## 1548                                                                                     05/03/1999 08:41 am employee was giving a driving test to a customer (in order to prevent an accident), Mr. Lanier grabbed the steering wheel, twisting his left arm and elbow.
## 1549        05/03/1999 12:56 pm while attempting to put some equipment from one side of fence to another, I lifted a bush axe up and it caught on some vines and slipped out of my hand and then the axe landed on the fence and bounced off the fence and the handle hi
## 1550                     05/03/2011 11:57 am (slee) when sov slowed down for traffic, pov failed to slow down it hit sov in the rear. 05/03/2011 02:56 pm (slee) other person: marget francisco, winston-salem, 27127, 336-201-2666. 5/3/2011 06:07 pm (barnes) employee
## 1551                                                                                      05/04/1999 03:15 pm employee was getting into a trac-hoe, when he lost his footing and fell to the ground, hitting a rock. Neck and middle of back injury. 02/01/2000 01:11 pm
## 1552                                                                                                                                                    05/04/1999 04:20 pm employee reached to turn on light switch and struck metal cover cutting right little finger.
## 1553           05/04/2001 09:28 am (sshort) employee was helping put up concrete forms for a pipe headwall; while standing on 2x6's not nailed down. The 2x6 slipped when he stepped on it, causing him to lose his balance and fall 4-5 feet. Mr. Ervin fractured his r
## 1554                                                                                           05/04/2001 09:34 am (sshort) employee was cutting down trees with a chainsaw on 4/24/01; when the tree kicked back and fell on Mr. Fox's left leg. Supervisor: bill boone
## 1555                                                                               05/04/2001 09:43 am (sshort) employee was performing surveying activities (walking up and down slopes) when he strained his right achilles tendon/ankle. Supervisor: kelly a. Elliott
## 1556           05/04/2001 09:58 am (sshort) employee has second degree burns on his right hand due to an accident on 4/9/01. Someone put a strap from the lumber on back of the crew cab; and it fell on the battery of the generator. He automatically grabbed the stra
## 1557                                                05/04/2001 10:09 am (sshort) state truck was turning left on highway 19; when a summit truck truck it from behind. Mr. Byrd was a passenger and sustained multiple contusions on his body. Supervisor: r. E. Bennett
## 1558            05/04/2001 10:15 am (sshort) employee slipped and fell at work on 4/20/01. Ms. Turner was entering room 108 when she lost her balance. She grabbed the wall for protection and cut her hand, and fell on her left side. Ms. Turner has injuries to her h
## 1559                                                                                                                 05/06/1999 03:22 pm employee was cutting a top from a plastic bottle when the knife slipped and cut two fingers. (left thumb and left index finger)
## 1560                                                                                                               05/06/2003 02:16 pm (fblackmo) employee was picking up trash from beside the road when, he felt pain in his lower back area. Supervisor: j. P. Ingram
## 1561                                                                                                 05/06/2003 08:30 am employee states while leaning over to lift sign he, felt pain in his lower back area. Supervisor: todd f. Whitaker 04/08/2004 01:48 pm (gwhite)
## 1562                                                                                                            05/06/2003 09:01 am (fblackmo) employee states while trimming and clearing bushes one of the limbs poked him in his right eye. Supervisor: t. K. Wheeler
## 1563                                                                                                                  05/06/2003 09:11 am (fblackmo) employee states the injury occurred to his right thumb while trying to un-stop the chipper. Supervisor; w. H. Lynch
## 1564                                                                                                                    05/06/2003 09:21 am (fblackmo) employee was repairing a loop for traffic sign when, he came into contact with poison ivy. Supervisor: c. D. Rice
## 1565                                                     05/06/2003 09:33 am dot crew was picking up debris on us 501 north in right lane when, a private vehicle struck the attenuator causing the injury to employees neck and back area. Supervisor: clyde h. Wintead
## 1566                                                                                                              05/06/2003 09:46 am (fblackmo) employee was cutting hedges and weeds around bridge when, he came into contact with poison ivy. Supervisor: t. J. Davis
## 1567                                                                                                                               05/06/2003 10:14 am (fblackmo) employee states while shoveling cold mix she, felt pain in her right leg. Supervisor: r. J. Hollifield
## 1568          05/06/2003 10:53 am employee was straightening bent sign post in front of asphalt storage tank. While pulling post by hand, post broke off at ground level, causing employee to fall backwards, striking head on rear bumper of pick up truck. Supervisor:
## 1569                                                                                                                05/06/2003 11:50 am (fblackmo) employee states while operating a dump truck something bit him on his left elbow area. Supervisor: w. E. Mcclendon jr
## 1570                                                                                                                                                      05/06/2003 12:04 pm (fblackmo) employee states his right arm struck the chain saw. Supervisor: jack l. Matheny
## 1571                                                           05/06/2003 12:20 pm (fblackmo) employee was adjusting coulter on a no-till grain drill when, the gears in the ratchet he was using slipped causing the injury to his right thumb. Supervisor; glenn koepp
## 1572                                                  05/06/2003 12:30 pm (fblackmo) employee was cutting a pine tree as other employees was pushing the tree. The tree went to the ground, hit a log and striking employee in his chest area. Supervisor: g. W. Johnson
## 1573                                                                                                                                   05/07/2001 01:52 pm (sshort) employee slipped off bumper of truck and sprained/twisted his right knee. Supervisor: kenny williams
## 1574                               05/07/2001 02:00 pm (sshort) employee was struck by a private vehicle on 4/26/01. The employee was inside a parked van when the accident happened. Mr. Adams has several injuries to his head and back. Supervisor: douglas r. Mcneal
## 1575                 05/07/2001 11:21 am (slee) while entering curve employee met oncoming car taking evasive action he went to left side of road running into ditch, trying to regain control, came back on road causing vehicle to turn on its side in center of road.
## 1576           05/07/2002 07:11 am (fblackmo) employee was riding in the right front passengers seat while conducting a road test. The driver of another vehicle failed to yield the right of way of an oncoming vehicle and struck the vehicle in the passenger side. S
## 1577                                                                                                 05/07/2002 07:31 am (fblackmo) employee was taking sign post apart when he dropped the post causing the injury to fingers on left hand. Supervisor: jerome locklear
## 1578                                                                                                                                  05/07/2002 07:47 am (fblackmo) employee was struck in chest by stabilizers machine while setting up. Supervisor: charles whitfield
## 1579                                                                                  05/07/2002 08:04 am (fblackmo) employee put right root on the tailgate of truck to get in bed. Foot slipped off causing the injury to his right knee. Supervisor: michael e. Brady
## 1580           05/07/2002 08:29 am (fblackmo) centerline truck was traveling south on nc 94 in tyrrell county when it met a eastern fuels tanker truck heading north, when passing each other the mirrors struck breaking both mirrors causing glass to fly back hitting
## 1581                                                                                              05/07/2002 08:42 am (fblackmo) employee states that while loosening bolts on mold board motor grader, the wrench slipped mashing his right thumb. Supervisor: s. Stepp
## 1582                                     05/07/2002 08:54 am (fblackmo) employee was removing a bundle of thread rods with another employee. Employee squatted and lifted one end of the bundle when he felt pain in his chest on the left side. Supervisor: t. J. Davis
## 1583                                                                                                05/07/2002 09:05 am (fblackmo) employee states that while cutting brushes around sign post that she came into contact with poison oak. Supervisor: roger l. Arrowood
## 1584                                                                                                   05/07/2002 09:16 am (fblackmo) employee was using a handsaw while repairing a gate stand operator when something flew into his left eye. Supervisor: nils l. Long
## 1585                                                 05/07/2002 09:26 am (fblackmo) employee was unloading pipe pulled pipe off trailer with chain resulting in hand being caught between pipe. One pipe loaded inside larger diameter pipe. Supervisor: greg g. Caudill
## 1586                                                                                                      05/07/2002 09:37 am (fblackmo) employee was walking down a small hill when he slipped on some debris left by a road patching crew. Supervisor: mojdeh mashpour
## 1587                                                                                                             05/07/2002 09:49 am (fblackmo) employee was covering asphalt with canvas, rubber strap slipped hitting employee in the face. Supervisor: prentice grady
## 1588                                                                                             05/07/2002 11:26 am (fblackmo) employee states that while weighing truck, right foot caught pavement causing him to twist his right knee. Supervisor: ssg. G. B. Warren
## 1589                                                                           05/07/2002 11:41 am (fblackmo) employee was qualifying for firearms on a combat course. Employee was running and stepped in a hole and twisted his right knee. Supervisor: sgt. R. Powell
## 1590                                                                     05/07/2002 11:52 am (fblackmo) employee was putting new canvas on his truck. Employee hit the rail and a object flew under his glasses and lodged in his left eye. Supervisor: r. T. Mcmanus jr
## 1591                                                                              05/07/2002 12:10 pm (fblackmo) employee was working in file cabinet, raised head hitting corner of an open drawer, causing laceration of right side of nose. Supervisor: henry t. Moon
## 1592                                                                                                                     05/07/2002 12:22 pm (fblackmo) employee was dumping bags at landfill when she felt something bite her on the right ear. Supervisor: h. M. Coats
## 1593           05/07/2002 12:34 pm (fblackmo) employee was standing on a foote of an embuttment, putting whaler onto wallties while another employee on the other side was doing the same. The wall-ties was sticking through the wall. The person on the other side pus
## 1594                                                                                                                             05/07/2002 12:47 pm (fblackmo) employee was lifting blade on motor grader and pulled tendons on left forearm. Supervisor: j. D. Shelton
## 1595                                                                                                                              05/07/2002 12:55 pm (fblackmo) employee was attempting to open a box with a knife when he cut his right hand. Supervisor: j. A. Dodson
## 1596                                                                                                                                                    05/08/2000 04:19 pm employee was mowing slope when trash flew into his eyes on 4/20/00. Supervisor: d. W. Knight
## 1597                                                                                     05/08/2000 04:28 pm employees left thumb was mashed while repairing sideboards on flatbed truck. The sideboard fell down on top of his fingernail. Supervisor: hugh c. Williams
## 1598                                                                                       05/08/2000 04:37 pm employee was lifting a large piece of lumber onto truck; when he got his left thumb caught between lumber and the truck bed. Supervisor: hugh c. Williams
## 1599                                                          05/08/2000 08:57 am employee was taping off windows to prepare for a painting job. As he reached to continue taping off windows; he felt a sharp pain in his left shoulder. Supervisor: william loch weems
## 1600             05/08/2000 09:02 am employee was mowing grass on an wet embankment; when mower started spinning and slid over edge of embankment. Employee was thrown off the mower onto the ground where he injured his right wrist (broken bone). Supervisor: d. E. B
## 1601                                                                                                       05/08/2000 09:14 am employee was pushing a mower up the ferry ramp; when he turned his left ankle over while stepping on the ramp. Supervisor: ben p. Wilkins
## 1602                                                                                                                                               05/08/2000 09:20 am employee was lifting a pole trailer when he injured his lower back. Supervisor: eric allen schenz
## 1603                 05/08/2000 11:09 am employee was doing a level 1 inspection on tt driver; when the driver handed him bills with blood on it. The driver was cut on his hands causing Mr. Anders exposure to blood on his right hand. Supervisor: sgt. R. P. Brigman
## 1604                                                                                                             05/08/2000 11:22 am employee was working on barricades; when he stepped on nail inside of barricade injuring his right foot. Supervisor: johnny coleman
## 1605                                                                                                            05/08/2000 11:27 am employee was giving a road test; when she stepped up into truck to sit on passenger seat injuring her left leg. Supervisor: tex kidd
## 1606          05/08/2000 11:33 am employee left hand was caught between umbrella support post and the stone spreader machine on 4/18/00. He was operating the belts on the machine; when the wind started to blow causing the injury to his hand. Supervisor: david hens
## 1607                                          05/09/2001 02:06 pm (sshort) employee was driving a truck on sr 2028; when she hit a rough spot in the road. She bruised the top of her head, jammed her neck and strained her right shoulder. Supervisor: sarah g. Foster
## 1608                                                          05/09/2001 02:12 pm (sshort) employee twisted/sprain his right ankle while hopping over fallen trees on 4/30/01. He twisted his right ankle on a branch hidden by leaf litter. Supervisor: andy spielvogel
## 1609            05/09/2001 02:20 pm (sshort) employee was trimming hedges around building and loading trimmings on front end loader; when he cam in contact with poisonous plants. He has contact rash on both arms/shoulders and his back. Supervisor: terri lynn poppe
## 1610                   05/09/2001 02:29 pm (sshort) employee was conducting a pre-trip inspection for a tractor trailer cdl license. Mr. Stofford was attempting to clim into tractor trailer; when he pulled a muscle in his mid-back area. Supervisor: josephine lewis
## 1611                                                                       05/09/2001 02:48 pm (sshort) employee was walking to gas island; when she tripped and fell on debris/rocks. She has multiple injuries to ankles, shoulders, and knees. Supervisor: jerry lane
## 1612                                          05/09/2001 02:59 pm (sshort) employee was pulling on a nylon mooring line on marine vessel; when he noticed a stinging pain on his left side groin. Mr. Williams suffers from an inguinal hernia. Supervisor: k. J. Morris
## 1613                                             05/09/2001 03:06 pm (sshort) employee is not sure how she got a foreign object in her right middle finger, causing it to become infected. (employee had been to the warehouse getting supplies) supervisor: r. A. Mason
## 1614                                                                                                   05/09/2001 04:36 pm (sshort) employee was working on sr 1631 in anson county on 4/30/01; when he was bitten by a tick on his left leg. Supervisor: h. M. Thompson
## 1615                                                                                                                05/09/2001 04:47 pm (sshort) employee states while driving state vehicles; he experienced numbness and pain in both wrists. Supervisor: joyce wilson
## 1616                                                                                                05/09/2001 05:07 pm (sshort) employee was surveying on reedy creek road in wake county; when he was bitten by a tick on his left hip. Supervisor: larry t. Williford
## 1617                                                                                                      05/09/2001 05:16 pm (sshort) employee was operating motor grader; when foreign object flew into his right eye causing irritation. Supervisor: tommy kilpatrick
## 1618                                                                                                                                                                       05/10/1999 09:18 am employee stepped out of a gang truck onto the ground & twisted his ankle.
## 1619                                            05/10/2000 09:54 am employee sprained both ankles when he opened garage door a motor fell from the roof striking his right ankle. He fell against a truck causing him to sprain his left ankle. Supervisor: z. R. Knight
## 1620           05/10/2000 10:09 am employee was taking off a strap that was holding a clamshell bucket on back of boom truck. The bar he was using slipped causing him to lose his balance and fall against tool box on truck. Employee has a cut on his left eyebrow re
## 1621                                                                                                                       05/10/2000 10:22 am employee was hand loading blasting sand; when he felt a sharp pinching pain in his chest area. Supervisor: s. B. Hudspeth
## 1622                              05/10/2001 12:44 pm (sshort) employee states his right leg/knee started bothering him while getting off of slope mower machine on 4/27/01. The pain continued to get worse over the weekend and began to swell. Supervisor: jerry pate
## 1623                                                              05/11/1999 10:54 am employee stated while moving a 4 x 8 timber (the other man dropped his end); causing all the weight on the injured employees end. This caused his back strain. 02/01/2000 12:59 pm
## 1624                                                                             05/11/2000 03:06 pm employee was swinging a sledge hammer while tapping generator to line up bolt holes to an anchor; when he pulled muscles in his lower back. Supervisor: a. L. Clark
## 1625                                                                                                                 05/11/2000 03:17 pm employee is experiencing swelling/pain in right wrist and hand due to cutting licenses up at dmv office. Supervisor: k. C. Mayo
## 1626                                                                                                                                    05/11/2000 03:29 pm employee states he has hearing loss due to loud noises from diesel trucks at work. Supervisor: d. A. Rackley
## 1627                                                                                                                     05/11/2000 03:50 pm employee was hit by a 7" nail that flew up and punctured his chin after another employee hit it. Supervisor: t. K. Southard
## 1628                                                                                      05/11/2000 04:01 pm employee was struck from behind by a private vehicle while sitting at a traffic light. Mr. Eudy neck and upper back was injured. Supervisor: t. E. Simpson
## 1629                                                                                                                                05/11/2000 04:11 pm employee was moving (throwing) rip-rap on jobsite; when he felt pain in his lower back. Supervisor: l. E. Cotton
## 1630                                                                                                                                                                          05/11/2010 10:28 am (vyount) private vehicle crossed center line and struck state vehicle.
## 1631           05/12/1999 10:23 am employee caught his foot in air hose while changing motorgrader blades. His hands were full of bolts and he probably fell on them when he hit the concrete floor. Injured was his ribs on the right side, strained back, and abrasion
## 1632                                                                                                                                       05/12/1999 10:33 am employee was manually lifting tires to the bed of a dump truck. Employee strained his back while lifting.
## 1633                                                                                                       05/12/1999 10:43 am employee was loading 4 x 8 pieces of lumber onto the back of dump truck. Employee strained his left shoulder and arm. 02/04/2000 03:05 pm
## 1634                                                                                                                               05/12/1999 10:49 am employee struck the door of a wood locker and a splinter stuck in his left arm from the door. 02/01/2000 12:55 pm
## 1635                                                                                                                                          05/12/1999 11:01 am employee was injured while lifting a hammer to place in compaction machine. His right arm was injured.
## 1636           05/13/2002 01:33 pm (slee) employee was traveling on rp 1156 when another driver failed to see right of way and pulled out in front of employee. Driver who failed to see right of way was attempting to cross employees lane, to travel either direction
## 1637                              05/13/2002 02:07 pm (fblackmo) employee states that, while starting to sit back down in her chair from checking customers height she, missed the chair and fell to the floor causing the injury to her back. Supervisor: ava b. Parker
## 1638         05/13/2002 03:01 pm (fblackmo) on April 29, 2002 employee was marching and running in army boots to stop traffic at an intersection when she experienced pain in her right knee. Employee states that on April 30, 2002 her knee and ankle became tight and
## 1639              05/13/2002 03:17 pm (fblackmo) employee was using jack hammering in basket cement. Cement had hard and soft spots. Jack hammer hit one of the soft spots, forcing body to hit hammer and basket hard on right side area. Supervisor: charlie watson jr
## 1640                                                                                                                          05/13/2002 03:30 pm (fblackmo) employee states that while unloading straw and feeding blower straw mites bite him. Supervisor: t. R. Burns
## 1641                                                                                                           05/13/2002 03:47 pm (fblackmo) employee states that while lifting lime to put in hydro seeder, felt a pop in his right side. Supervisor: wm. David silver
## 1642                                                                        05/13/2003 02:15 pm (fblackmo) employee was picking up litter along the shoulder of the road when, a bottle shattered causing a laceration to his right arm area. Supervisor: r. I. Matthews
## 1643                                                                                                                                    05/13/2003 02:26 pm (fblackmo) employee experienced pain in his right ankle after he stepped in a hole. Supervisor: marty headen
## 1644                                                                                                                                05/13/2003 02:39 pm (fblackmo) employee was trying to catch a falling sign when, she cut her left hand. Supervisor: mark l. Fogleman
## 1645                                                                                                                05/13/2003 02:47 pm (fblackmo) employee was walking on deck when, he slipped and fell causing the injury to his left elbow. Supervisor: r. J. Downes
## 1646                                                                                                                     05/13/2003 03:44 pm (fblackmo) employee slipped off the back of a truck causing the injury to his head and shoulder. Supervisor: thomas johnson
## 1647                                                                                                       05/13/2003 09:56 am (fblackmo) employee was riding in backseat of crew cab truck when, it was hit in the rear by a private vehicle. Supervisor: cleve woodard
## 1648                                                                                             05/13/2003 10:13 am (fblackmo) employee was reaching to catch falling object when, he felt pain in his back area. Supervisor: mike perkins 11/07/2003 10:06 am (gwhite)
## 1649                                                                                                                                     05/13/2003 10:23 am (fblackmo) employee was walking across kitchen floor when, she slipped and fell. Supervisor: r. E. Hamilton
## 1650                                                                                                                05/13/2003 10:36 am (fblackmo) employee was operating a tractor for several hours when, he felt pain in his lower left leg. Supervisor: r. L. Taylor
## 1651                                                                                                                                                  05/13/2003 11:06 am (fblackmo) employee cut right index finger while setting up a tripod. Supervisor: jeffery kidd
## 1652                                                                                                                            05/13/2003 11:22 am (fblackmo) employee was climbing onto machine when, his foot slipped causing him to fall. Supervisor: andrew costner
## 1653                                                                                                                                       05/13/2003 11:42 am (fblackmo) employee was moving ac unit when, he felt pain in his lower back area. Supervisor: b. R. Moore
## 1654                                                                                                                                                       05/13/2003 11:53 am (fblackmo) employee states she slipped while exiting crew truck. Supervisor: l. W. Sehorn
## 1655                                                                                                                05/13/2003 12:06 pm (fblackmo) employee states he was loading 50lb bag of fertilizer when, he felt pain in his abdomen area. Supervisor: j. F. Sloop
## 1656                                                                                                                                                  05/14/1999 08:39 am employee was loading a push mower onto the rear of a pickup and felt a pain in his lower back.
## 1657                                                                                                                            05/14/1999 09:25 am employee was using a power saw to cut a tree, when the wind caused a tree limb to hit employee in he head and chest.
## 1658                                                                                                                          05/14/1999 09:31 am employee was cutting right of way, when employee came into contact with poison oak covering most of the body and face.
## 1659                                                                                   05/14/2001 03:33 pm (sshort) employee stepped out of truck to stretch his legs; when one leg gave way. Mr. Slaughter fell and dislocated his right knee. Supervisor: r. N. Harden
## 1660                                                        05/14/2001 11:39 am (sshort) employee was operating dozer on 5/3/01. He began to dismount the dozer when his knee gave way. He fell against the dozer's track and fractured 2 ribs. Supervisor: t. J. Wilcox
## 1661                                                                             05/14/2003 07:20 am (fblackmo) employee was conducting a driving test when, the customer slammed on brakes and hit a mailbox causing the injury to his neck. Supervisor: heather broome
## 1662                                                                                                                 05/14/2003 07:33 am (fblackmo) employee was climbing up on forklift when, his center finger was caught in a hole on handle. Supervisor: keith smith
## 1663                                                                                                                                                05/14/2003 08:16 am (fblackmo) employee was removing sign when, dust flew into his left eye. Supervisor: chris baker
## 1664                                                                                                                        05/14/2003 08:28 am (fblackmo) employee was performing work inside a junction box when, the lid hit him on his head. Supervisor: will simons
## 1665                                                                                                                      05/14/2003 08:59 am (fblackmo) employee was installing a bed spreader when, he pinched his ring finger on right hand. Supervisor: r. E. Austin
## 1666                                                                                                   05/15/2000 04:57 pm fellow employee was brushing rust & paint chips from beam; when a gust of wind blew trash in Mr. Deaver's left eye. Supervisor: c. G. Woodley
## 1667                             05/15/2000 05:00 pm employees left middle finger was pinched and caught between tailgate of truck and chain. He was in the process of dumping stones when he grabbed the tailgate chain to open the tailgate. Supervisor: david l. Lane
## 1668                                                                05/15/2000 05:05 pm employee was painting hand rails on bridge when he felt something bite his right hand. He took off his gloves and saw nothing at the time until later. Supervisor: c. G. Woodley
## 1669                                              05/15/2000 05:13 pm employee was standing on sidewalk curb getting supplies out of trunk of car; when she turned to step down twisting/sprain her left ankle and feel down on her right knee. Supervisor: joyce wilson
## 1670                                                                                                                                      05/15/2000 05:22 pm employee was loading bale of straw; when he twisted/strained muscles in his back. Supervisor: g. M. Fisher
## 1671                          05/15/2002 07:59 am (fblackmo) employee states that while completing daily duties working with maps and performing data entry on computer keyboard, has experienced pain in her right wrist and hand repetitively. Supervisor: kent taylor
## 1672                                                                           05/16/2001 08:59 am (sshort) employee was putting paper in printer and didn't realize she was that close to the table. Employee struck her right elbow on table. Supervisor: bobbie clark
## 1673           05/16/2001 10:21 am (sshort) employee was unscrewing latch to dump trailer on 4/26/01; when he mashed two fingers on his left hand and one finger on his right hand. Employee released tailgate before the latch was pulled down in the correct position.
## 1674                                                                              05/16/2001 10:29 am (sshort) employee was checking a commercial vehicle; when the driver applied brakes causing debris (dirt) to blow into his left eye. Supervisor: capt. J. F. Jones
## 1675            05/16/2001 10:37 am (sshort) employee was on a road construction project cutting dead trees limbs on 5/8/01. The tree limbs was thrown away from employees; when the limbs sprung back (flew) and struck Mr. Walker's left hand. Supervisor: t. L. Pucke
## 1676                                                      05/16/2001 10:46 am (sshort) employee was painting heat numbers on piles; when he lost his balance and fell on piles. Mr. Leggett injured his right arm, left wrist, and both legs. Supervisor: e. E. Gurganus
## 1677           05/16/2001 10:55 am (sshort) employee was carrying several bush axes into the wood on 5/4/01. Employee loss control of axes as they began to slip. Ms. Whitehurst tried to grab one bush axe with one hand and then another axe slid down her left arm. E
## 1678                                   05/16/2001 11:04 am (sshort) employee cut his upper lip while splicing a u-channel steel post on 5/3/01. Employee was using a ratchet wrench and socket to tighten bolt nuts when the injury occurred. Supervisor: wayne williams
## 1679                                                                05/16/2001 11:10 am (sshort) employee came in contact with poison plant while doing road work on sr 1434. Mr. Mclaughlin has contact rash on his upper body, face and arms. Supervisor: e. W. Spivey
## 1680          05/16/2001 11:16 am (sshort) employee was a passenger in state dot truck; when he was involved in an accident on latta road on 5/7/01. Mr. Leroy hutchins (driver) struck the back of a city waste truck after it pulled out and stopped suddenly for a pi
## 1681                                                                                                                                            05/16/2002 04:07 pm (fblackmo) employee was outside when the wind blew debris in his right eye. Supervisor: jack rollins
## 1682         05/16/2002 04:17 pm (fblackmo) employee was performing a cvsa level one inspection at the camden welcome center, employee asked the driver of the vehicle to apply the brakes, the brakes was released a loud pop occurred that caused the injury to employ
## 1683                                                                05/16/2002 04:33 pm (fblackmo) employee states that while crossing a muddy ditch on a construction project to make repairs to an excavator he felt a pain in his left leg. Supervisor: d. E. Clapton
## 1684            05/16/2002 07:21 am (fblackmo) employee was asked to crush boxes in back of swb dump truck which took about 3 minutes. Another employee asked employee to do a karate drop; he proceeded to do this, a corner of a box hit him in his side and he got up
## 1685                                                                                                  05/16/2002 08:13 am (fblackmo) employee was walking in high grass under pine trees when he found three ticks on his feet and stomach area. Supervisor: donald king
## 1686                                                                                                                                                          05/16/2002 08:26 am (fblackmo) employee was moving furniture around to paint. Supervisor: henry sturdivant
## 1687           05/16/2002 08:38 am (fblackmo) employee was helping with traffic control on us 321 southbound bridge for bridge department, bridge department crews were welding on expansion joints. Employee stated that he was not looking at welder, but they were to
## 1688                                                                       05/16/2002 10:06 am (fblackmo) employee was positioning joist for placement in a sitting position and left hand was caught between float and pile at bent number one. Supervisor: s. R. Davis
## 1689                                                                                                                  05/16/2002 10:30 am (fblackmo) employee was cutting a tree on state road 1937 when he came into contact with poison oak. Supervisor: danny worrell
## 1690                                                                                                                            05/16/2002 11:03 am (fblackmo) employee was cutting bushes around a bridge with a bush axe when, his back pop. Supervisor: j. Ronald lee
## 1691                                                                            05/16/2002 11:13 am (fblackmo) employee states that he found a tick bite on his upper right leg, approximately 2 weeks ago and the area became red and swollen. Supervisor: j. W. Marler
## 1692           05/16/2002 11:27 am (fblackmo) employee was filing when she stuck her finger with a staple that was attached to a file. By friday night 5/3/2002 employee states that her right index finger showed signs of infection. Employee went to the doctor satur
## 1693                                                                    05/16/2002 11:40 am (fblackmo) employee was cleaning off truck seat with towel, rubbed his eyes with the same cloth and materials from the towel went into his eyes. Supervisor: lonnie barefoot
## 1694                                                                                                         05/16/2002 11:51 am (fblackmo) employee fell when climbing down from tractor trailer causing the injury to his left side and arm. Supervisor: v. D. Summers
## 1695                                                                                                                                     05/16/2002 12:00 pm (fblackmo) employee was using desk saw when something got into his right eye. Supervisor: roger l. Arrowood
## 1696                                               05/16/2002 12:24 pm (fblackmo) employee was cutting trees on I-40. He was struck behind another tree causing him to lose control while trying to keep his balance, ran saw into his left leg. Supervisor: gary cooper
## 1697                                                                               05/16/2003 09:51 am (fblackmo) employee was attending concrete certification training class. Performing the test employee experienced pain in his back area. Supervisor: r. R. Fuller
## 1698                                                                                   05/16/2003 10:01 am (fblackmo) employee was picking up cones on roadway when, the drive hit the brakes to hard causing employee to fall to the ground. Supervisor: c. H. Winstead
## 1699                                                                                                                  05/16/2003 10:41 am (vsulliva) pov pulling tobacco rig crossed over the centerline and the back of tobacco rig stuck the sov driver's side mirror.
## 1700                                                                                                                 05/16/2003 10:48 am (fblackmo) employee was crossing gulley underneath bridge when, he slipped and fell hitting bridge beam. Supervisor; ricky ball
## 1701                                                                                            05/16/2003 10:59 am (fblackmo) employee was setting slope stakes on embankment when, he slipped and fell causing the injury to his back area. Supervisor: wanda h. Roach
## 1702                                                                                          05/16/2003 11:11 am (fblackmo) employee was using a drill to connect water cooler when, the drill jammed up causing the injury to his right hand. Supervisor: k. E. Morris
## 1703                                                                                                                                                     05/16/2003 11:21 am (fblackmo) employee was cutting plastic when, the injury occurred. Supervisor: pam carriker
## 1704                                                                                                                                  05/16/2003 11:42 am (fblackmo) employee was lifting up spreader lip when, he felt pain in his back area. Supervisor: don carpenter
## 1705                                                                                                   05/16/2003 11:53 am (fblackmo) employee was lifting a 95 pound hammer when, he felt pain in his back area. Supervisor: f. E. Roberts 09/08/2003 04:37 pm (gwhite)
## 1706                                                                                05/16/2003 12:35 pm (fblackmo) employee was tossing logs off of right of way when, he felt pain in his left shoulder area. Supervisor: r. W. Rhodes, jr 09/08/2003 12:49 pm (gwhite)
## 1707                                                                                 05/17/1999 11:11 am employee was driving post on u. S. 74 with hand driver, when driver caught top of post. This caused driver to kick back striking me (the employee) in the head.
## 1708                      05/17/1999 11:23 am employee was under vehicle removing snow plow frame with a hydraulic jack. After removing bracket around the axle, the plow frame slid off hydraulic jack. The jack landed on employee left hand causing a painful injury.
## 1709                                                                                                                                  05/17/1999 11:32 am employee was cutting a piece of lumber with the sill saw, when saw dust blew into his eye. 02/04/2000 09:42 am
## 1710                                                                                                                                         05/17/1999 11:40 am employee was grinding weld bead from side of truck body, when a piece of metal flew into his right eye.
## 1711                                                                                                        05/17/1999 11:48 am employee picked up steel drilling rod (which slipped out of his hands), this trapped his fingers between a steel post and the drill rod.
## 1712                                                                                                                                                                                            05/17/1999 11:56 am employee twisted knee while running across the road.
## 1713                                                                                                          05/17/1999 12:10 pm employee was lifting a case of printer paper that was stacked against a metal fence. Employee scrapped finger against the metal fence.
## 1714                                                                                                                     05/17/1999 12:18 pm employee knocked teeth off the loader bucket, when a piece of the punch broke off and hit employee in lower abdominal area.
## 1715                                                                                             05/17/1999 12:26 pm employee was working in the head of the m/v drink water with his hand in the door frame, when the door shut on his right hand (injuring 3 fingers).
## 1716                                                                                                                                                                           05/17/1999 12:54 pm employee came into contact with poison ivy while cutting survey line.
## 1717                                                                                         05/17/2001 10:48 am (sshort) employee states he has hearing loss in both ears due to working around loud equipment over his 38 years of service. Supervisor: r. F. Barnette
## 1718                                                                                                    05/17/2001 11:27 am (sshort) employee was pulling on pto shaft knob to put it in gear; when his left shoulder popped out of socket. Supervisor: tommy kilpatrick
## 1719                                                                                  05/17/2001 11:33 am (sshort) while cutting limbs with hand saw; a thorn lodged in Mr. Marion's right hand (middle knuckle area) causing a puncture wound. Supervisor: steve ingold
## 1720           05/17/2001 11:42 am (sshort) employee was working on repairing damaged bridge on 4/25/01. Mr. Covington was bitten by an unknown insect on his upper right arm. Mr. Covington noticed the pain and a red spot on his arm immediately after bite occurred.
## 1721                    05/17/2001 11:48 am (sshort) employee was drilling a hole with gas auger; when the blade became hung in the hard clay. This action caused Mr. Amic to twist/sprain his left knee. Supervisor: henry rich 8/11/2004 08:58 am (gwhite) 11/6/2006 0
## 1722            05/18/2001 09:41 am (sshort) employee was traveling west on nc highway 55, e; when he met a private vehicle that pulled out in front of him. The private vehicle apparently was trying to pass in a curve on double yellow line. Mr. Ward tried to avoid
## 1723            05/18/2001 09:57 am (sshort) employee stated he was putting out signs in work zone on 5/9/01. He went to take the sign out of the rack on truck; when it slipped out of his hand and fell on his left big toe (broke/fractured). Supervisor: l. W. Curri
## 1724                                                                                       05/18/2001 10:14 am (sshort) employee was attempting to lift a five (5) gallon water cooler full of bolts; when he strained his lower back muscles. Supervisor: ivy g. Morgan
## 1725            05/18/2001 10:33 am (sshort) employee stepped on a bottle and slipped and fell into a ditch. Employee fell onto some weeds and brush and came in contact with poisonous plants. Mr. Bostic has contact rash on both arms/shoulders and back. Supervisor:
## 1726                                                                                                        05/19/1999 03:39 pm employee was pulling a piece of rip rap between truck body and tailgate, when tailgate shut and smashed middle finger on the right hand.
## 1727              05/19/1999 03:47 pm employee was coming down the left side of a dump truck (feet was on the ground), when he took a step backwards and tripped over an out rigger on backhoe. Employee hit the ground and head hit the lower part of the backhoe boom.
## 1728                                                                                                                            05/19/1999 03:55 pm employee was using a chain saw to cut a tree with no safety chaps on, when chain struck right leg causing an injury.
## 1729                                                                     05/19/1999 04:05 pm employee was removing scale from trunk of patrol car, when scale got hung by the rubber at the bottom. This caused officer smith to pull a muscle in her neck and right arm
## 1730           05/19/1999 04:17 pm employee was cutting a 4-6 inch dead oak tree limb using a gas powered pole prunner. He was standing on the ground 10-12 feet from the limb with the prunner extended 11 feet. He made the proper preliminary cuts and then cut the 3
## 1731                                                                                                                     05/20/1999 03:45 pm employee was doing physical fitness training, when he slipped off the monkey bars to the ground and twisted his right knee.
## 1732                                                                                                    05/20/1999 04:12 pm employee was attempting to pull drift at bridge 60-042, when the hook on snatch block broke hitting him on his left leg just below the knee.
## 1733                                                                                                     05/20/1999 11:53 am employee stepped off of asphalt roller onto high grass and shoulder. Ridge of dirt had been left causing employee to twist his right ankle.
## 1734                                                                                                 05/20/1999 12:02 pm employee was jumping down on front left side of trailer, when his ring caught in the ladder of the trailer. This caused his ring to cut finger.
## 1735                                                                                                                                           05/21/1999 09:39 am employee injury is in his right forearm, elbow due to repetitive motion throughout daily job routine.
## 1736                                                                                                                                                                               05/21/1999 09:48 am employee was lifting tailgate causing pain in his right shoulder.
## 1737                         05/21/2001 02:06 pm (sshort) employee was checking the oil on a tractor (loaded on a trailer) on 5/9/01. Mr. Tedder dismounted the truck and stepped wrong when he pulled muscles in his lower right side of back. Supervisor: randy raynor
## 1738              05/21/2001 02:21 pm (sshort) employee right ring finger was caught in tripod while putting it in the ground to gather other equipment. The tip of his finger was cut and he went to the emergency facility that same day. Supervisor: mojdeh masihpour
## 1739           05/21/2001 04:50 pm (sshort) employee was operating a skid loader; when a private vehicle ran into the loader on 5/10/01. Mr. Moore was knocked onto safety cage from the impact of the accident. He has a soreness/bruised left elbow was was seen at al
## 1740                                                                                                                                                             05/21/2001 05:10 pm (sshort) employee states he has pain in his lower back. Supervisor: a. B. Slaughter
## 1741            05/21/2001 09:43 am (sshort) employee was in a single vehicle accident on 4/27/01. Mr. Langley was driving a dump truck on sr 1329; when he lost control and overturned the vehicle. Mr. Langley has minor abrasions on body from the broken glass and a
## 1742                                            05/21/2001 09:51 am (sshort) employee was gathering up hay to put on trailer for the seeding process on 5/01/01. Mr. Reaves had an allergic reaction to the hay; causing a rash on both legs. Supervisor: c. H. Winstead
## 1743                                                                     05/21/2002 02:24 pm (fblackmo) employee was walking on shoulder of I-40 near a tunnel and three tractor trailers went by causing dust and grit to get in employees eyes. Supervisor: ron turpin
## 1744             05/21/2002 03:12 pm (fblackmo) examiner conducting a road test in a motor vehicle. Examiner was secured by the seatbelt on the passenger side. When accident occurred, the restraint of seat belt pulled tight across examiners neck, shoulder and arm.
## 1745                     05/21/2002 09:35 am (fblackmo) employee states that while conducting a road test the customer was to back up but instead put the vehicle in drive hitting the curb at high speed causing the injury to her lower back. Supervisor: sylvia spain
## 1746          05/21/2002 10:12 am (fblackmo) employee states, a lane closure was implemented to do maintenance on the highway. Employee was sitting still at the beginning of the taper with the arrow board. Traffic approached the taper an accident among several veh
## 1747          05/21/2002 10:32 am (fblackmo) employee states, doing daily duties such as writing, typing, operating computer, calculator, filling, lifting boxes of supplies, and other general office duties has caused pain in her right and left hands. Supervisor: c
## 1748                 05/21/2002 10:47 am (fblackmo) employee was helping another employee remove pins from tailgate when his right thumb got caught between the backhoe tailgate causing the injury to his finger. Supervisor: a. L. Smith 05/29/2002 10:09 am (twerner)
## 1749          05/21/2002 11:11 am (fblackmo) employee was driving steel pins in aggregate base course for nuclear densities using an 8lb sledge hammer. Employee states he felt pain in his lower back which grew worse and spread to the back of his left leg as the da
## 1750                                                                                                                05/21/2002 11:25 am (fblackmo) employee was driving a dump truck, when she shifted gears she felt pain in her lower back. Supervisor: k. L. Anderson
## 1751                                                                               05/21/2002 11:36 am (fblackmo) employee states that while exiting his state vehicle he felt pain on his right hand. Employee right center finger was swollen. Supervisor: jeff drayer
## 1752                                               05/21/2002 12:08 pm (fblackmo) employee was working on state road 1315, cutting bushes around bridge number 8, when he came in contact with poison ivy plants. Supervisor: j. B. Creech 05/29/2002 10:07 am (twerner)
## 1753                                                                                                                                   05/21/2002 12:39 pm (fblackmo) employee was shoveling gravel and experienced pain in his lower back. Supervisor: r. T. Mcmanus jr
## 1754           05/21/2002 12:48 pm (fblackmo) employee climbed out of the passenger-side of a small dump truck to remove a tree limb from state road 2044. Employee stepped on a soft spot on the steeply slope shoulder which, caused his right ankle to twist. Supervi
## 1755                                                     05/21/2002 12:59 pm (fblackmo) employee was climbing out of backhoe the area where he placed his foot was lower than he thought and he felt a pull across the lower part of his back. Supervisor; john thomason
## 1756                                                                                                05/21/2003 08:01 am (fblackmo) employee states; numbness in both hands from operating heavy equipment for thirty years. Repetitive motion. Supervisor: j. Mark crook
## 1757                                                                                         05/21/2003 08:32 am (fblackmo) employee was sanding the edge of plexy-glass when, the sander came off hitting employee between the eyes. Supervisor: james willis twiddy sr
## 1758                                                                                                                             05/21/2003 09:04 am (fblackmo) employee was pushing asphalt rake when, he felt pain in his rib cage area. Supervisor: stephen g. Dillon
## 1759                                                                                                                                 05/21/2003 09:20 am (fblackmo) employee was shoveling stones when, he hit his right elbow on side of truck. Supervisor: k. R. Davis
## 1760                                                                                                                                       05/21/2003 09:50 am (fblackmo) employee was lifting a sign when, he felt pain in his lower back area. Supervisor: j. A. Ridge
## 1761                                                                                                                                                05/21/2003 11:25 am (fblackmo) employee experienced wrist pain while typing on computer. Supervisor: michelle hinton
## 1762                                                                                                           05/21/2003 11:47 am (fblackmo) employee was cutting logs on secondary road project when, one of the logs hit him in his back area. Supervisor: t. L. Hall
## 1763                                                                                                                                          05/21/2003 11:58 am (fblackmo) employee was rolling stones when, foreign matter flew into his eyes. Supervisor; mike brady
## 1764                                                                                05/22/2003 02:47 pm (fblackmo) employee was walking around vehicle to put up scraper when, she was hit on her right arm by the mirror of a private vehicle. Supervisor; h. M. Coates
## 1765                  05/22/2003 03:11 pm (fblackmo) employee was preparing to knock a bearing off a counter shaft with a punch and hammer. He place the punch on bearing and hit the punch causing a small piece to hit him in his abdomen area. Supervisor: joseph lee
## 1766                                                                                                                             05/22/2003 03:26 pm (fblackmo) employee was surveying on state road when, he came into contact with poison ivy. Supervisor; phil manley
## 1767                                                                                               05/22/2003 03:36 pm (fblackmo) employee states he experienced pain in his right arm and shoulder area while, lifting boxes of license plates. Supervisor: lois warren
## 1768                                                                                                                  05/22/2003 12:44 pm (fblackmo) employee was trying to push a stick into the ground when, the edge cut his right hand. Supervisor: r. J. Hollifield
## 1769                                                                                                                       05/22/2003 12:53 pm (fblackmo) employee was supervising inmates on state road when, he found a tick on his waist area. Supervisor: d. L. Lane
## 1770                                                                                     05/23/2000 01:02 pm employee was crossing the guardrail when his pants caught on sharp edge of steel post. Employee fell and twisted/hit his left knee. Supervisor: a. E. Moore
## 1771                                                                                                                05/23/2000 01:10 pm employee was trying to pull a float under the ferry ramp; when a grain of sand blew into his left eye. Supervisor: c. G. Woodley
## 1772                                                                                                               05/23/2000 01:15 pm employee was moving a weedeater; when he came in contact with poison ivy on entire left side of his body. Supervisor: r. E. Queen
## 1773                                                                                        05/23/2000 01:36 pm employee was flagging traffic on sr 1941, later that day he found a tick embedded in his private area. He reported it first thing the following morning.
## 1774                                                                                                                                                                  05/23/2000 01:55 pm employee was getting out of truck and made a wrong step and twisted left knee.
## 1775                                                                05/23/2000 02:15 pm pressure release from valve on sewage utility, forced employee off balance and fell onto rocks hurting right hip, deep cut on right knee, and cuts and scrapes on right forearm.
## 1776                                                                                        05/23/2000 02:17 pm employee was dismounting from a truck; when he stepped down on concrete curb causing him to twist/sprain his right ankle. Supervisor: larry s. Carpenter
## 1777                                                                                                                         05/23/2000 02:35 pm employee was working on new construction at approximately 08:30 am on 5/4/00 and was bitten or stung on his left wrist.
## 1778                              05/23/2000 10:30 am Mr. Smith was in straw shed getting ready to load truck with straw. When Mr. Smith bent over to lift the bale of straw, he grabbed the bale of straw and started to lift it when he felt a sharp pain in his side.
## 1779                                                           05/23/2000 10:55 am steel container fell off psssing truck into travel lane. Employee stopped torremove off road to prevent traffic accident. Edges were cut and employee cut right index finger on edge.
## 1780                                         05/23/2000 12:23 pm employee was cut on his right hand above his thumb on 5/5/00. Employee was sharpening a bush axe; when he put the axe on table beside him it slipped off causing the injury. Supervisor: stephen sparks
## 1781                                                                                             05/23/2000 12:29 pm employee was holding a grade rod in a ditch; when he turned to climb up steep ditch he pulled muscles in his lower back. Supervisor: w. T. Mckenzie
## 1782                05/23/2000 12:36 pm employee was operating a patch roller machine on a steep hill; when the roller lost traction and flipped over on its side. Mr. Finney has injuries to his chest, ribs, and scratches on his left leg. Supervisor: b. W. Whitaker
## 1783                                                                                                                                              05/23/2000 12:41 pm employee was cutting trees when he felt a sharp pain behind his left knee. Supervisor: h. F. Spain
## 1784                                                                                                                            05/23/2000 12:48 pm employee was using an eight pound hammer, when the hammer slipped and hit his right foot. Supervisor: k. E. Anderson
## 1785                                                                                                      05/23/2000 12:53 pm employee was driving a map unit on I-40; when a private vehicle went by blowing dust and debris into his right eye. Supervisor: s. L. Hall
## 1786           05/23/2001 10:26 am (slee) employee in vehicle #1 was traveling north on hwy. 49 in cabarrus county when the vehicle #2 in front slowed quickly. Employee did not see the brake lights of vehicle #2 and swerved to right in an attempted to Miss Vehicle
## 1787                                                                                                                                                                                                   05/24/1999 03:44 pm employee sneezed and felt pain in lower back.
## 1788                                                                                                                                                                          05/24/1999 09:33 am employee was hit when wind caught ferry door, bruising his left ankle.
## 1789                                                                          05/24/2001 09:00 am (sshort) employee was crossing a log when he lost his balance and fell. Mr. Brigmon twisted/sprain his left knee when he struck the ground. Supervisor: o. T. Anderson
## 1790            05/24/2001 09:05 am (sshort) employee was driving state vehicle when he swerved to avoid hitting dogs in the road on 3/6/01. Mr. Stewart loss control of the vehicle and hit a light pole causing injuries to his head and neck. Supervisor: d. L. Bagwe
## 1791                  05/24/2001 09:13 am (sshort) the wind blew debris off flatbed trailer and into employees eyes on 5/14/01. The employee continued his run to winston salem and back to raleigh when he had to seek medical assistance. Supervisor: william t. Stone
## 1792                                                       05/24/2001 09:24 am (sshort) employee was picking up trash on 5/14/01; when he stepped in a grass covered deep hole. This misstep caused pain in Mr. Candler's neck and left shoulder. Supervisor: keith hill
## 1793                                            05/24/2001 09:33 am (sshort) employee was using improper lifting/posture procedures while operating a forklift machine on 5/7/01. Mr. Singh has pain in his upper torso (back) and right side. Supervisor: mike jefferys
## 1794                                05/24/2001 09:41 am (sshort) employee was mowing in ditch line on sr 1177 on 4/30/01. He turned around to motion a motorist by; when a tree limb struck his nose causing a fracture and mild concussion. Supervisor: d. L. Carpenter
## 1795                                                            05/24/2001 09:46 am (sshort) employee was securing down backhoe on 5/16/01; when she stretched the chain & binder causing her to strain/sprain her chest area and left arm/hand. Supervisor: j. F. Walls
## 1796                                                     05/24/2001 10:10 am (sshort) employee was mowing right of way on us 64 on 5/17/01. A private vehicle approached/passed employee causing debris to blow into Mr. Walston's left eye. Supervisor: p. P. Mansfield
## 1797                                       05/24/2001 10:39 am (sshort) employee was cutting brush from right of way; when he came in contact with poison ivy plants and insects. Mr. Gibbons has contact rash and bites on both arms and legs. Supervisor: s. G. Dillon
## 1798                                                                                05/24/2001 10:44 am (sshort) employee was using hammer to drive survey stakes into ground; when he missed the stake and struck his lower left leg (shin). Supervisor: j. K. Bartlett
## 1799                                                                                             05/24/2001 10:51 am (sshort) employee has pain in her right arm and hand due to repetitive motion while keying, adding cards, etc... On the job. Supervisor: lynn chalk
## 1800                                                                                                           05/24/2001 11:02 am (sshort) employee was lifting a beam to put it in place underneath bridge; when he strained muscles in stomach. Supervisor: r. E. Cox
## 1801             05/24/2001 11:08 am (sshort) employee was setting right of way points near an electric fence on 5/17/01. Mr. Carter backed into it, resulting in a temporary lapse of unconscious. Mr. Carter sustained an electric shock to his back. Supervisor: davi
## 1802                                                     05/24/2010 07:22 am (slee) employee was traveling in backhoe on nc 210, when tandem truck came up behind and hit backhoe in the rear. Other person involved: john a. Temple, 142 cove side lane, hampstead, nc.
## 1803                                                                                                       05/25/1999 03:42 pm employee was standing in work zone, when truck came through knocking cones protecting work zone over and into him injuring his right leg.
## 1804                                                                                                      05/25/1999 03:57 pm employee was exiting water, when wave and tide action caused hardhat to hit side of ship. This action chipped his bottom left molar tooth.
## 1805                                                                                                                                                    05/25/1999 04:07 pm employee was cutting bushes, when his pants leg became caught on branch causing him to fall.
## 1806                                              05/25/1999 04:17 pm employee was going to move router. While moving router, he stepped into the path of a pickup towing another router on a trailer. The fender contacted his left leg and the tire ran over his foot.
## 1807                                                                           05/25/1999 04:27 pm while surveying in tall grass in the median of us 1. Employee was bitten (infected) by a tick bite on his lower abdomen/upper groin area. (approx. 50mm below navel).
## 1808                                                                                                                                               05/26/1999 01:47 pm employee was putting scale back into truck of patrol car, when he hurt his left shoulder and arm.
## 1809            05/26/1999 01:55 pm employee developed scoliosis and a pinched nerve in lower back and bottom vertebra. Employee has been sitting in an uneven chair/uneven floor over a period of 4 plus years. Note: reported injury because actual cause of injury is
## 1810              05/26/1999 02:04 pm an accident occurred while employee was helping load sandbags on a hand truck. The hand truck was leaned forward so that it could be jerked from under the bags and the handle struck the employee on his left elbow. 02/01/2000 1
## 1811                                                                            05/26/1999 02:15 pm employee was out on a road test when he told customer to do a three point turn. The customer hit brakes really hard causing him to twist his back causing bad pains.
## 1812                                                                                                                                                                             05/26/1999 02:25 pm employee experiencing pain in hands, fingers, wrists and shoulders.
## 1813                                                                                                         05/26/1999 02:40 pm employee states shoulders and neck pain everyday. Pain is constant and only occurs after sitting for a period of tim keying title work.
## 1814                                                   05/26/1999 03:17 pm employee was removing shaft from drive unit flywheel with hammer & brass drift. He hit the brass drift, but did not make good contact and struck left hand fifth finger against the flywheel.
## 1815           05/26/1999 03:38 pm employee was unloading a joint router from trailer. As the router started down the trailer ramp it was pulled tight quickly causing crank handle winch strap feed to get away from him. This handle struck employee on his right arm.
## 1816                                                                                                                                                  05/26/1999 03:50 pm employee was cutting top out of a card board box when knife slipped and cut his middle finger.
## 1817                                                                                                                                                       05/26/1999 04:07 pm employee thinks he May have scratched his index finger while putting his hand into glove.
## 1818                                                                                                                                                                         05/26/1999 04:19 pm employee was measuring pipe when he slipped and fell injuring his back.
## 1819                                                                                               05/26/1999 04:33 pm employee was removing trash from roadway, when he threw hub cap in truck it struck a bottle. A piece of glass from bottle flew into his left eye.
## 1820                                                            05/26/1999 09:02 am employee was heating asphalt at tailgate to get it to close properly, when hot asphalt dropped on right hand holding the torch. Employee dropped torch receiving third degree burns.
## 1821                                                                                                            05/26/1999 09:14 am employee stated he was loading trash bags into truck, when something sharp stuck through the bag cutting the palm of his right hand.
## 1822                                                                                                                   05/26/1999 09:21 am while employee was moving gasoline dispenser, his left thumb got pinched between the take up real post and dispenser housing.
## 1823                                          05/29/2002 01:02 pm (fblackmo) employee was preparing to work on a motor grader blade when the locking pin released, causing the blade to shift and knocked employee down hitting his right leg. Supervisor: m. B. Mizelle
## 1824                                                                      05/29/2002 01:30 pm (fblackmo) employee was closing tailgate on spreader when he hit his ring finger on left hand, causing a tear in his gloves and cutting his finger. Supervisor: d. Chapman
## 1825                                                                                                   05/29/2002 01:43 pm (fblackmo) employee states, using computer and talking with customers on the phone, repetitive motion in both arms. Supervisor: paula windley
## 1826                                                                                                          05/29/2002 01:54 pm (fblackmo) employee was driving pan going to spread dirt on road when, his left elbow h it against the cab. Supervisor; curtis harrell
## 1827                                                                                                                                            05/29/2002 02:05 pm (fblackmo) employee was attempting to cross cable when, he tripped and fell. Supervisor: jerry snead
## 1828                                                               05/29/2002 02:32 pm (fblackmo) employee states, while bending over to pick up large stone his foot got caught between the hole and hand rail causing his left knee to twist. Supervisor; d. C. Gordon
## 1829          05/29/2002 10:18 am (fblackmo) employee states, this is a carpal tunnel syndrome injury in both wrists and developed over the past years due to secretarial work, typing repetitive computer input and calculator. Supervisor: j. F. Sloop 05/29/2002 10:3
## 1830                                                                                               05/29/2002 10:38 am (fblackmo) employee was dragging and lifting vacuum hoses to load on truck when he felt something pull in his lower back. Supervisor: w. E. Evans
## 1831          05/29/2002 10:52 am (fblackmo) employee was under bridge working on beam using a socket and a wrench to loosen bolts. Employee placed wrench on beam so that he could relocate his position, shifting of weight caused the wrench to fall from beam striki
## 1832                                                                                                                                05/29/2002 11:15 am (fblackmo) employee was scrubbing when his skin became irritated, itching and swelling. Supervisor: dale bullard
## 1833                                                                                                                  05/29/2002 11:27 am (fblackmo) employee was closing the vehicle door when he got his left small finger caught in the door. Supervisor: j. N. Mixon
## 1834                                                                                                           05/29/2002 11:43 am (fblackmo) employee states that while performing routine sign maintenance, came into contact with poison ivy. Supervisor; j. A. Ridge
## 1835                      05/29/2002 11:53 am (fblackmo) employee was using a bush axe on state road 2424 butler dairy road cutting a limb, the limb hung on some briar, and swung back and hit him in the right eye, causing a corneal abrasion. Supervisor; t. F. Bray
## 1836                                                                                                     05/29/2002 12:48 pm (fblackmo) employee was removing tailgate to dump a load of trash when something bite him on his right ring finger. Supervisor: w. E. Evans
## 1837                                                                                               05/30/2002 01:24 pm (fblackmo) employee was sliding a piece of concrete off tailgate of truck when, he felt something pop in his right elbow. Supervisor: a. L. Clark
## 1838                                                                                                               05/30/2002 01:35 pm (fblackmo) employee states that he was bitten by a spider on the chest area while work on state road 1665. Supervisor: floyd mull
## 1839                                                                                                        05/30/2002 01:45 pm (fblackmo) employee states that while clearing intersection on state road 1136 a limb hit him in his left eye. Supervisor; j. C. Penland
## 1840                05/30/2002 01:56 pm (fblackmo) employee was helping clean dirt, grass, and weeds off concrete island in roadway with a shovel. Employee hit a crack in concrete with shovel causing the end to hit employee in the ribs. Supervisor: anthony edwards
## 1841                                                               05/30/2002 02:07 pm (fblackmo) employee was mowing and weed eating in different locations. Several days later employee reported allergic reaction to poisonous plant. Supervisor: johnny m. Brown cme
## 1842           05/30/2002 02:23 pm (fblackmo) employee was using a hammer to remove an auger head from a hollow-stem auger when, a piece of metal flew off and cut his right index finger. Employee treated the cut with a banadaid, x-rays taken six weeks later showed
## 1843                                                                                                                      05/31/2000 10:33 am employee was stepping off/climbing down off tractor broom when he twisted/sprain his right knee. Supervisor: larry koontz.
## 1844                                                                                                                       05/31/2000 10:37 am employee was stepping down out of truck into a hole; when he pulled muscles in his lower back. Supervisor: marc p. Morgan
## 1845                                                                                                       05/31/2000 10:44 am employee was stepping out/climbing down out of his truck; when he hit his right leg on running board of truck. Supervisor: marc p. Morgan
## 1846                             05/31/2000 10:47 am employee was loading stone machine binding the chains; when he strained his right shoulder, arm and neck. Supervisor: david hensley 11/6/2006 01:33 pm (fblackmo) claim closed. Clinched on 06/14/2005. Do not use.
## 1847                                                                         05/31/2000 10:54 am employee was lifting/moving 55 gallon drum of waste water to a pallet to raise with fork lift; when he pulled muscles in his right groin area. Supervisor: don ferguson
## 1848                                                                                                       05/31/2000 11:45 am employee was standing watching a bridge concrete pouring; when flying object punctured his right arm (triceps). Supervisor: tawana brooks
## 1849                                         05/31/2000 11:54 am employee was operating steel wheel roller on steep grade; when roller began to vibrate and roll backwards. The employee jumped from the roller and bruised her upper right leg. Supervisor: r. B. Hardy
## 1850                                                                                                                     05/31/2000 12:08 pm employee was bending a bent frame on mower; when his hand slipped causing him to cut his left hand. Supervisor: w. H. Lynch
## 1851                                                                                                      05/31/2000 12:12 pm employee was setting up survey signs on rack; when he turned and twisted the wrong way straining his back. Supervisor: larry r. Absher, jr
## 1852          05/31/2000 12:26 pm Mr. Suebert was driving/returning from division shop when traffic stopped on west bound market street. A private vehicle failed to stop rear ending Mr. Suebert. Employee suffered contusions, bruises and neck and back strain due to
## 1853                                                                                                                 05/31/2001 09:06 am (sshort) employee was removing tree branches from roadway; when he felt a pain in his lower back area. Supervisor: n. S. Gibson
## 1854                        05/31/2001 09:12 am (sshort) employee states he hit something on shoulder or road while mowing on 5/15/01. When he hit the object it caused the steering wheel to spin around and jam his left little finger. Supervisor: thomas j. Burchell
## 1855                                                                                          05/31/2001 09:17 am (sshort) employee was pulling lever to spray tar on roadway; when he pulled it back his right elbow struck another lever. Supervisor: j. M. Leatherman
## 1856                                                                                                              05/31/2001 09:23 am (sshort) employee was walking on project to check the grand when he twisted/sprain his right knee. Supervisor: marvin wayne currie
## 1857                           05/31/2001 09:29 am (sshort) employee was retrieving an accident victim from a vehicle under water on 5/14/01. The victims blood and bodily fluids came in contact with Mr. Carlisle's body and clothes. Supervisor: l. Michelle podeszwa
## 1858           05/31/2001 09:37 am (sshort) employee was repairing a sign post that had been struck by a vehicle on 5/21/01. When Mr. Harrison pushed the post back up to its upright position; the post sprang back and struck him on top of his head. He was using a p
## 1859                                                                                                           05/31/2001 10:23 am (sshort) employee was installing a keyboard tray under desk; when a sliver of metal fell into his left eye. Supervisor: j. A. Medford
## 1860           05/31/2001 10:29 am (sshort) employee was pulling a tractor that was stuck using a 20' chain with her tractor on 5/22/01. The chain broke under the stress and flew into webber's windshield causing it to shatter. Several shards of glass cut her on he
## 1861           05/31/2002 03:17 pm (fblackmo) employee states, injured was traveling east on us 644/264 when a private vehicle was traveling in opposite direction and swerved when he met injured vehicle. The mirrors on both vehicles hit and broke. Glass from mirro
## 1862                                                                                                                                 05/31/2002 03:36 pm (fblackmo) employee was lifting augers when he felt a sharp pain in his chest area. Supervisor: robert r. White
## 1863                                                                                                      05/31/2002 03:55 pm (fblackmo) employee states that doing a road test on statesville roadway a private vehicle hit them in the rear. Supervisor: vernon canady
## 1864                                                                                                                     05/31/2002 10:15 am (fblackmo) employee states loss hearing from working with continuios operations of heavy equipment. Supervisor: matt taylor
## 1865                                                                 06/01/1999 02:00 pm employee and others were lifting tile ( about 2 inches from the ground) to put a chain under it to remove tile from ditch. Employee injured left lower muscle in back. (strain)
## 1866                                                                                                 06/01/1999 02:07 pm employee was operating wand of sealant kettle using the shoulder strap provided, when he injured his right shoulder, arm and leg strain/sprain.
## 1867                                                                                                                                                      06/01/1999 02:14 pm employee injured left ringer finger, when loading 100 pound cylinder onto a flatbed truck.
## 1868                                                                                                                06/01/1999 02:22 pm employee was dropping fertilizer tablets and using foot to force them into wetlands soil, when employee felt pain in right knee.
## 1869                                                                                                  06/01/1999 02:50 pm employee was pulling plastic coating off electric wire, when piece of the inner wire popped off and stuck in left eye making a small puncture.
## 1870            06/01/1999 03:01 pm employee experienced numbness to arms, fingers, hands, neck pain, and lumbar strain, when brakes on vehicle failed. Employee was descending a long steep grade, when brakes failed. He was carrying 12 tons of asphalt in his truck.
## 1871                                                                                                        06/01/1999 03:09 pm employee was changing tire when he injured his right wrist. While applying pressure, lug nuts finally popped loose and injured employee.
## 1872                                                                                                                                                                           06/01/1999 03:20 pm employee was shoveling dirt, when he felt a pop in his left shoulder.
## 1873                                                                                     06/01/1999 03:31 pm employee was cutting a tree in half to place it in the chipper, when the chipper was engaged the end of log swung towards him striking him in the left leg.
## 1874                                                                                                            06/01/1999 04:10 pm employee had been grinding with a portable grinder, when something scratched his left eye. Employee was wearing uvex safety glasses.
## 1875                                                                                                                                                                                                         06/01/1999 11:18 am verbal abuse mental stress and anguish.
## 1876           06/02/1999 08:39 am employee was assisting a customer when she turned to go to the office she fell over a chair. She hit her left arm below the wrist trying to break her fall and hit her head between the eyes on the printer table. This caused swelli
## 1877                                                                                                         06/02/1999 08:48 am employee was using a sledge hammer on scaffold (33'' off ground), when he lost footing and fell on his right elbow. 02/01/2000 01:24 pm
## 1878                                                              06/02/1999 08:54 am employee was preparing to unload the backhoe off of a trailer, when he loosened the binder to release the chain. The employees hand flew up causing him to mash right ring finger.
## 1879                                                                                      06/02/1999 09:01 am employee was moving hose from kettle back to crs-2 tank, after filling kettle he was handing hose to another employee who when he injured his right wrist.
## 1880          06/02/2000 01:56 pm employee was slowing down to pull off the roadway; when a private vehicle was coming along behind employee. The private vehicle was unable to stop, causing the employee to hit his head on the back of glass in pickup truck. Supervi
## 1881          06/02/2000 02:07 pm enforcement officer baker was attempting to pull a pickup for speeding; when he approached an intersection a van pulled out in front of him. Officer baker hit van (he did everything he could and was following all policies and proc
## 1882                                                                                                                           06/02/2003 02:12 pm (fblackmo) employee was helping to load a back hoe when, the lever hit him on his right arm. Supervisor: jack rollins
## 1883                                                                                                          06/02/2003 02:28 pm (fblackmo) employee was walking to give road test when, she stepped off the curb wrong twisting her left ankle. Supervisor; gail smith
## 1884                                                                                                          06/02/2003 02:39 pm (fblackmo) employee was leaving the building and tripped on the floor mat causing the injury to her left knee. Supervisor; linda brown
## 1885                                                                                                                              06/02/2003 02:56 pm (fblackmo) employee was on ladder using painter when, he lost his foot causing him to fall. Supervisor; ron turpin
## 1886                                                                                              06/02/2003 11:31 am (fblackmo) employee states a private vehicle struck his dot truck on the right side while truing to make a right turn. Supervisor: iris h. Mccombs
## 1887            06/02/2003 11:48 am (fblackmo) employee was traveling on state road when a private vehicle pulled out in front of him. Employee ran off the road to keep from hitting the private vehicle which caused the injury to his abdominal area. Supervisor: s.G
## 1888                                                                                       06/02/2003 12:03 pm (fblackmo) employee was shoveling asphalt from the back of the crew cab when, he lost his balance causing him to fall backwards. Supervisor; wayne knight
## 1889                                                                                           06/02/2003 12:15 pm (fblackmo) employee was using a air wrench when, the bolt hit him on his finger causing a laceration to his center finger. Supervisor: russell ramsey
## 1890                                                                        06/02/2003 12:28 pm (fblackmo) employee was using an axe to drive stakes into the ground when, the stake broke causing employee to hit his right leg with the axe. Supervisor; gerald harris
## 1891                                                                                                               06/02/2003 12:44 pm (fblackmo) employee lost his footing while pulling panels up from the floor to the top of the spreader. Supervisor; james hoffman
## 1892                                                                                                                                                                 06/02/2003 12:58 pm (fblackmo) employee was bitten on his left hand by a dog. Supervisor; ed craver
## 1893           06/03/1999 10:05 am employee was leaving sun deck walking down to the vehicle deck, when he slipped and fell off the last step injuring his right ankle. Steps were believed to be wet. 5/25/99 a new non-skid tread plate was installed as a result from
## 1894                                                                             06/03/1999 10:46 am employee was removing chain from tailgate of truck, when he pulled tailgate back with right hand. The tailgate slipped and struck his left hand bruising 3 fingers.
## 1895                                                                     06/03/1999 10:54 am employee was checking air hose under water tank, when he raised up striking his head on the handle of the spray bar end cap. The employee cut his scalp receiving stitches.
## 1896                                                                                                                                                                             06/03/1999 11:11 am employee came in contact with poison ivy while cutting survey line.
## 1897                                                                  06/03/1999 11:25 am employee was getting ready to install a driveway pipe, when he stepped on a board with a nail in it. He was walking through tall grass when the nail punctured his right foot.
## 1898                                                                                                                                          06/03/2002 11:11 am (fblackmo) bilateral hearing loss, result of exposure to loud noises. Supervisor: not given on form 18
## 1899                                                                                                                                 06/03/2003 09:25 am (fblackmo) employee was working on state road when, he pulled a tick off his back. Supervisor: jeremy b. Creech
## 1900                                                                                                                06/03/2003 09:37 am (fblackmo) employee stepped on the sidewalk from running when, he felt pain in his right ankle. Supervisor; s. I. C. Tim collins
## 1901                                                                                                    06/03/2003 09:51 am (fblackmo) employee was using a knife to cut open a box when, the knife closed on his right finger causing a cut. Supervisor: a. M. Lewis jr
## 1902                                                                                                  06/03/2003 10:06 am (fblackmo) employee was walking along property line through the woods along the river line when, he twisted his knee. Supervisor; d. B. Henson
## 1903                                                                                                           06/03/2003 10:18 am (fblackmo) employee was spraying weeds on embankment when, he lost his footing causing the injury to his hip. Supervisor; bruce myers
## 1904                                                                                                                              06/03/2003 10:34 am (fblackmo) employee states while typing continuously she felt pain in her right wrist. Supervisor; michelle hinton
## 1905                          06/03/2003 11:29 am (fblackmo) employee was working on sheepfoot tractor where the switch on the clutch was broken when, another employee mashed his finger between the clutch and metal piece on floorboard. Supervisor; danny williamson
## 1906                                                                                                                                            06/03/2003 11:42 am (fblackmo) employee was pulling power cable when, he felt pain in his neck. Supervisor; (not stated)
## 1907                                                                                                                    06/03/2003 11:53 am (fblackmo) employee was removing old jack to put into dumpster when, he felt pain in his lower back. Supervisor: a. R. Wells
## 1908                                                                    06/03/2003 12:23 pm (fblackmo) employee was cleaning around asphalt storage tanks when, his finger was caught between the wall and a bucket of asphalt material. Supervisor: tommy f. Richardson
## 1909                                                                                                                                   06/03/2003 12:37 pm (fblackmo) employee states the brakes locked up on his truck while trying to stop. Supervisor: roger faulkner
## 1910             06/04/1999 04:10 pm employee was tapping cases of paper to be shipped. She was picking them up and moving onto a flat bed cart, when she pulled a muscle in back. Note: this event was made non-reportable on 10/04/99 and was previously entered as an
## 1911                                          06/04/2001 05:15 pm (sshort) employee was on her way to lunch while walking down the steps her ankle popped causing her to fall. She severely sprained her left ankle and was seen at rex hospital. Supervisor: alex price
## 1912                               06/04/2001 05:22 pm (sshort) employee was setting up traffic control area on 5/21/01; when he sprain/strained his lower back. Mr. Mcfalls was picking up a 4' sign to place it in easel at time of incident. Supervisor: m. D. Brooks
## 1913            06/05/2001 09:18 am (sshort) employee was struck by a private vehicle on 5/29/01. Mr. Starnes has strain to his neck and upper back area stiff and sore. {vehicle #1 was attempting to go straight across the intersection; while Mr. Starnes was making
## 1914           06/05/2001 09:28 am (sshort) examiner taylor was on a road test with a customer on 5/21/01. The customer backed into a mailbox and onto a curb while making a 3 point turn. Examiner taylor was in the passenger seat; when the seat fell all the way bac
## 1915           06/05/2001 09:37 am (sshort) employee stated he placed rip rap stones around pipe on work site project; when fingers got caught between two rocks. Mr. Jordan has abrasions, contusions and strains/sprains to his right middle and ring fingers. Supervi
## 1916           06/05/2001 10:17 am (sshort) employee stepped backwards off pavement while flagging and twisted/strain/sprain her right leg on 5/7/01. A vehicle failed to step for stop sign, causing Ms. Lambdin to drop flagging sign and step back. Supervisor: j. N.
## 1917                                                                                            06/05/2001 10:24 am (sshort) employee was working on sr 1309 when he came in contact with poison ivy plants and has contact rash on his neck. Supervisor: larry n. Helms
## 1918                                    06/05/2001 10:29 am (sshort) employee was trying to move discharge chute of a chipper machine; when his foot slipped off fender. His left lower leg scraped the side of the fender causing a laceration. Supervisor: glenn koepp
## 1919                                                                      06/05/2001 10:37 am (sshort) employee hit his right elbow on the step of a truck on 5/16/01. Mr. Powell turned and moved too quickly causing him to strain his elbow. Supervisor: mark hartman
## 1920                06/05/2002 07:15 am (fblackmo) employee stopped to assist a motorist while on shoulder of I-40, employee was stung by a bee. Employee had an allergic reaction and had to be transported by ambulance to duke medical center. Supervisor: t. W. Kirk
## 1921                                              06/05/2002 07:28 am (fblackmo) employee was putting up red top survey stakes to mark a washout using a 4lb hammer. The top of the red top stake broke, causing him to strike his left hand. Supervisor: rodney c. Wood
## 1922                                                                                     06/05/2002 07:40 am (fblackmo) employee lifted his right leg to push down a support handle on a crane while lifting his leg he felt a sharp pain. Supervisor: thomas e. Johnson
## 1923                                                                                     06/05/2002 08:11 am (fblackmo) employee was cutting away brush from a construction easement, a portion of a tree limb struck him above the right eye. Supervisor: j. E. Johnson
## 1924                                                                                                06/05/2002 08:30 am (fblackmo) employee states while attempting to get a 10 x 12 timber unstuck, it swung around and struck his right leg. Supervisor: r. L. Johnson
## 1925            06/05/2002 08:57 am (fblackmo) employee was cutting dead pin trees on state road 1412 (n. Turnpike road). Employee removed a tick on friday 5/24/2002 from his right forearm. The head of the tick remained embedded in his forearm. Supervisor: william
## 1926                                                                                                             06/05/2003 02:16 pm (fblackmo) employee state his vehicle was struck by a side mirror from an on coming tandem dump truck. Supervisor: c. W. Wethington
## 1927                                                                                                                                 06/05/2003 03:01 pm (fblackmo) employee states while pulling on mail box she, felt pain in her neck area. Supervisor; b. R. Knowles
## 1928                                                                                                                                06/05/2003 03:28 pm (fblackmo) employee was removing the cover of a ceiling light when, he cut his finger. Supervisor; harvey magnum
## 1929                                                                                                           06/05/2003 12:06 pm (fblackmo) employee was climbing out of rescue boat when, his finger was caught between the rail and ladder. Supervisor: k. J. Morris
## 1930                                                                                                                                  06/05/2003 12:43 pm (fblackmo) employee was walking down a slope when, he felt pain in his right ankle. Supervisor: h. W. Hicks jr
## 1931                                                 06/06/2000 01:01 pm employee strained his lower back while raising tailgate lever on truck on 5/22/00. Mr. Helms states his back and his right leg has been hurting ever since incident. Supervisor: marc p. Morgan
## 1932                                                               06/06/2000 02:17 pm employee was getting into vehicle after assisting a motorist; when he slipped on wet step injuring his left shoulder. Supervisor: don l. Carpenter 06/05/2002 03:42 pm (hoxendin)
## 1933                                                                                                          06/06/2000 02:23 pm employee was walking into foyer; when she slipped and fell on the floor injuring her left side and lower back. Supervisor: tina varney
## 1934                                                                                                                    06/06/2000 02:35 pm employee found a tick embedded in his scalp while working on guardrails on I-40/buncombe county. Supervisor: wayne l. Miller
## 1935         06/06/2000 02:50 pm employee was sitting on nc 58 with traffic stopped both directions waiting for paint truck to turn into sr 1102, when a dump truck went around the stopped traffic in south bound lane. Crossing on a double yellow line gong approx. 6
## 1936                                    06/06/2000 02:55 pm employee was driving sign truck when vehicle ran off road. The right front tire went down in a hole causing employee to injured right knee and strain/twisted left side of back. Supervisor: f. E. Faircloth
## 1937            06/06/2000 03:22 pm the driver of the dump truck forgot to pull the latch to unlock the tailgate. Employee climbed on the side board to pull the latch. When the tailgate opened, someone yelled, "let it down. " the bed came down striking Mr. Willett
## 1938                                         06/06/2000 03:36 pm passenger was locked in bathroom on ferry vessel. Mr. Scarborough gained access through rusted door vent to assist passenger; when he received cuts/scrapes to his left hand. Supervisor: terry l. Gray
## 1939                                                                                                                                                06/06/2000 12:56 pm employee strained his lower back while lifting dredge pipes on 5/15/00. Supervisor: h. F. O'neal
## 1940                     06/06/2001 01:56 pm (sshort) employee was cleaning vines and debris from the paddles on the athey loader on 5/16/01. He came in contact with poison ivy/oak plants and has contact rash on his left arm and left side. Supervisor: r. D. Powell
## 1941                                           06/06/2001 02:01 pm (sshort) employee was chopping/clearing bushes on 5/17/01; when he came in contact with poison ivy plants. Mr. Hughes has contact rash on both legs, arms and his face. Supervisor: wesley grindstaff
## 1942                                                                                               06/06/2001 02:17 pm (sshort) employee was mowing grass when mower hit dirt and gravel, causing foreign matter to enter Mr. Roper's right eye. Supervisor: w. H. Lynch
## 1943                                       06/06/2001 02:22 pm (sshort) employee was reaching for a shovel off back of pick up truck; when his right hand was punctured by a splinter. (on webbing of right hand between thumb and fore finger) supervisor: r. D. Powell
## 1944           06/06/2001 02:37 pm (sshort) during lunch Mr. Brown decided to get on broom tractor to sit down on 5/21/01. While getting on tractor, he struck his head on a piece of metal that holds the mirror. Mr. Brown has a cut requiring 3 stitches on top of hi
## 1945                                                                                                    06/06/2001 02:48 pm (sshort) employee was using grout material working on bridge #156 on 5/22/01; when material got into his left eye. Supervisor: ronald canady
## 1946                                                                                                                                   06/06/2002 10:41 am (fblackmo) employee was mowing grass when some foreign matter landed in his left eye. Supervisor: carl vestal
## 1947                                                                                                                                                       06/06/2002 11:01 am (fblackmo) employee states that wind blew debris into his right eye. Supervisor: b. Moore
## 1948                                                                                                            06/06/2002 12:56 pm (fblackmo) employee was climbing stairs and knee buckled causing employee to fall injuring left knee. Supervisor: jamie c. Duckworth
## 1949                                                                                                 06/06/2003 08:56 am (fblackmo) employee states while lifting a set of 11x17 set of plans she, felt pain in her right hand and wrist. Supervisor; kimberly l. Canady
## 1950                                                                                                       06/07/1999 02:25 pm employee was driving a steel post into asphalt with 8 pound sledge hammer, when he felt something pull on his left side, lower back area.
## 1951                                                                                                                                                                  06/07/1999 02:30 pm employee was walking by a bay door, when the wind blew trash in his right eye.
## 1952                                                                                                                            06/07/1999 02:37 pm employee was sharpening a bush axe with a file, when his hand slipped and he cut his left thumb. 02/01/2000 01:01 pm
## 1953                                                                                                        06/07/1999 03:26 pm employee was removing a lid off a 55 gallon drum to place a sample of aggregate inside, when he cut his right small finger on sharp lid.
## 1954                                                                                             06/07/1999 03:35 pm employee was lifting density weight from storage box, when her right thumb caught between edge of box and weight. The box sharp edge cut her thumb.
## 1955                                                                                                                                                                                        06/07/1999 03:58 pm employee was exposed to poison oak plants on lower legs.
## 1956                                                                                                     06/07/1999 09:37 am employee was lifting a heavy piece of scrap metal, when he felt a twitch in his lower back. The twitch went away, but came back on 5/27/99.
## 1957                                                 06/07/1999 09:49 am employee was driving a post into the ground. When he lifted the hand driver too high, it deflected off top of the post and hit his head. The right side top of head was cut requiring stitches.
## 1958                                                                                                            06/07/1999 09:57 am employees right middle finger was caught between the tailgate and the dump body. He was removing a piece of rip rap that was lodged.
## 1959            06/07/1999 10:04 am employee was loading hydraulic pump in the back of pickup truck. He lifted the pump over the side and laid it on bed. When he let go of the pump; he twisted to find a different way to lay in in the bed of pickup. When the pump t
## 1960               06/07/1999 11:26 am employee had backed under hopper to get a load of asphalt. The hopper doors were not closed, when the operator of the asphalt plant dumped 9 tons of asphalt into truck. This caused the truck to bounce injuring employees back.
## 1961                                                                                    06/07/2000 10:21 am while working with patch crew laying stabilization fabric, employee stepped into a hole under fabric twisting his right ankle/foot. Supervisor: d. L. Parson
## 1962          06/07/2002 09:01 am (fblackmo) employee found a tick on his left arm while doing patch work on state road 1753. Employee states that later that night before taking shower he found a tick embedded under the skin and had to go to the hospital to get it
## 1963                                                                                                                                                          06/08/1999 03:21 pm employee was mixing concrete when the wind blew sand into his eye. 02/01/2000 12:52 pm
## 1964                                                                                                                                              06/08/2000 01:01 pm employee was using a weed eater when something flew into his right eye. Supervisor: g. R. Mcginnis
## 1965                                                                                                06/08/2000 10:43 am employee was putting up traffic signs with a gasoline hole digger (auger); when he broke and cut his right middle finger. Supervisor: r. D. Bass
## 1966                                                         06/08/2000 10:49 am employee fell over a cigarette butt container injuring his right elbow. The employee was leaving the building through a garage door at time of incident. Supervisor: capt. G. P. Ramsey
## 1967                                                                    06/08/2000 10:56 am employee was assisting motorist load a utility trailer; when he heard his right wrist pop. Mr. Bobbitt has a fractured bone above his right thumb. Supervisor: steve clayton
## 1968                                                                   06/08/2000 11:03 am employee was removing a keel cooler from the dredge merritt. He was leaning on his left side removing nuts; when he felt pain in his lower back. Supervisor: richard dewhurst
## 1969                                                                                             06/08/2000 11:08 am employee was picking up trash bags on sr 1933 and tossing them into dump truck; when she felt pain in her right shoulder. Supervisor: r. D. Holland
## 1970             06/08/2000 11:12 am employee had just finished a road test with a customer on 6/2/00. While in parking lot, customer stamped on brakes causing examiner to go back and forth several times in vehicle. Ms. Young injured her neck and upper back. She a
## 1971                                                                                         06/08/2000 11:33 am employee was installing a door on a tractor; when the door slipped off the hinge pulling him forward and twisted his left knee. Supervisor: j. C. Sloan
## 1972                                                                                                      06/08/2000 11:39 am employee was helping two other employees push the tailgate up on dump truck; when he felt pain in his right hand. Supervisor: p. M. Barnes
## 1973                                                                   06/08/2000 11:44 am employee was lying his head against the wall to install pipe; when he came in contact with poison ivy. He has contact rash on arms, legs, and eyes. Supervisor: z. D. Metcalf
## 1974                                                                                                               06/08/2000 12:15 pm employee was putting down asphalt strips; when he came in contact with a tick on his upper right thigh. Supervisor: terry j. Shaw
## 1975                                      06/08/2000 12:55 pm employee was standing on top of gas tank of dump truck pushing limbs; when limbs moved the canvass became free, snapped back in position striking him in his left shoulder. Supervisor: arthur glenn short
## 1976           06/08/2010 08:19 am (slee) employee's were stopped on I-40 at mm 365 to put out signs for grouting project, a tractor trailer traveling west at 70 mph drifted onto paved shoulder, struck arrow board being pulled by dot truck and hit the truck. 06/08
## 1977            06/09/1999 05:01 pm employee had his hearing checked at the wellness fair by beltone representative. He had a follow up appointment on 11/04/98. The examination indicated hearing loss that May require a hearing aid. Employee states he thinks the ca
## 1978                                                                                                                     06/09/1999 10:28 am employee slipped and fell on wet grass while contacting property owner. She injured her left leg as a result from the fall.
## 1979                                         06/09/2010 08:30 am (slee) sov operated by employee traveling north on new alignment unpaved roadway when vehicle lost control, hitting median embankment causing vehicle to roll several times coming to rest on its side.
## 1980            06/10/1999 10:34 am employee was riding back to duty station with r. L. Cartrette (driver of the state vehicle). Traveling west on us 74/76 when a vehicle traveling on sr 1740 ran a stop sign at the intersection and collided with the state vehicle.
## 1981                                                                     06/10/1999 10:44 am employee was guiding concrete pipe into place by pushing and pulling on chain holding the pipe. Employee has an old lower back injury which flared up during this incident.
## 1982                                                                                                         06/10/1999 10:49 am employee was using a welding torch to burn with, when it struck his coveralls and caught fire. Employee suffered burns to his left leg.
## 1983                                                                                                    06/10/1999 11:07 am employee was cutting limbs off of bradfrod pear trees when limb fell against base of tree. The limb bounced trunk and struck his left wrist.
## 1984                                                                                                                                        06/10/1999 11:25 am employee was inspecting a truck tractor, when wind blew door shut on his left hand bruising his fingers.
## 1985                         06/10/1999 11:40 am employee was assisting in operating a two-man auger, when the auger struck a rock causing the employees right hand to come in contact with fence rail. Employee has cuts and abrasions on upper side of his right hand.
## 1986                                                                          06/10/1999 11:50 am employee was walking to parking lot to give a motorcycle road test, when she tripped over cement block in pathway injuring her right hand, left wrist, and both knees.
## 1987            06/10/1999 12:16 pm employee was cutting right of way with a chainsaw and pulling/chipping brush on sr 1314. The employee did not have any pain on 5-28-99, but the next morning did experience pain in left lower back. Employee went to emergency room
## 1988                                                                                                                     06/10/1999 12:26 pm employee was trying to pry apart a table using a pry bar. He was prying upwards lifting a heavy load and strained his back.
## 1989                                                                                                  06/10/2003 02:00 pm (fblackmo) employee jerk back to get out of the way of a falling log when, he felt pain pain in his lower back area. *show all bills to joyce*
## 1990                                                                              06/10/2003 02:21 pm (fblackmo) employee was working in the engine room removing water with an eliminator when, foreign object went into his left eye. Supervisor: thomas foster bowser
## 1991                                                                                                                                 06/10/2003 02:42 pm (fblackmo) employee was working in high grass when, she found a tick on her right knee. Supervisor: kevin bowen
## 1992                                                                06/10/2003 03:40 pm (fblackmo) employee was hitting the pin with a hammer when, paint went into his right eye. Supervisor: randall jackson 08/29/2003 11:42 am (gwhite) 09/08/2003 10:48 am (gwhite)
## 1993                                                                                                      06/10/2003 03:55 pm (fblackmo) employee was putting tailgate on up on dump-truck when, he slipped and hit his right hand on the gate. Supervisor; dennis brann
## 1994                                                                                                                                      06/10/2003 09:36 am (fblackmo) employee states while walking to go home she, fell on the sidewalk. Supervisor: michelle hinton
## 1995                                                                                                         06/10/2003 09:59 am (fblackmo) employee stepped on a running board to adjust a mirror when, he felt pain in his lower back area. Supervisor: stephen dillon
## 1996                                                                                                                    06/10/2003 10:42 am (fblackmo) employee states he found a tick on his head while doing his daily sign maintenance duties. Supervisor; tim foster
## 1997                                                                                         06/10/2003 11:27 am (fblackmo) employee was conducting a bridge inspection when, he slipped on a vine causing him to fall. And injury his right foot. Supervisor: e. Guerra
## 1998                                                                                                                                           06/10/2003 11:38 am (fblackmo) employee states while lifting a tire he, felt pain in his back. Supervisor: russell ramsey
## 1999                                                                                                  06/10/2003 11:47 am (fblackmo) employee states he was picking up cleaner to clean bathroom when, some of the cleaner caught on his hands. Supervisor: master avery
## 2000                                                                            06/10/2003 12:02 pm (fblackmo) employee was driving a dump truck when, a private vehicle caused him to lose control of the truck and overturned his equipment. Supervisor; don carpenter
## 2001                                                                                            06/11/2001 01:48 pm (pward) employee's finger was caught in the steering wheel when the right rear brakes locked up. Jammed left ring finger. Supervisor: rudy batchelor
## 2002                                                06/11/2001 01:56 pm (pward) employee was cleaning up dump truck, which was parked on the maintenance yard. He turned the wrong way while shoveling towards the back of the truck. Twisted back supervisor: h. Watson
## 2003          06/11/2001 02:03 pm (pward) employee was working in bucket truck with 3/8" wire, making a grounding connection, when bending span around clamp connection span slipped out of employee hands and hit him on the chin. It cut his chin, doctor put in 5 sti
## 2004                        06/11/2001 02:53 pm (sshort) employee was trying to free wire rope from between a bean and the pile; when the rope struck Mr. O'neal's right hand and thumb. He fractured his right thumb and bruised his right hand. Supervisor: m. J. Gray
## 2005                                06/11/2001 03:05 pm (sshort) employee was sitting in driver's seat of vehicle; when it was struck in the rear by a private vehicle. Mr. Cash has stiffness and pain in his back, neck, and shoulder areas. Supervisor: melvin dorsey
## 2006                                                                                                                                 06/11/2001 04:17 pm (pward) employee was either bitten or stung by a insect while operating a truck. Supervisor: c. N. Edwards, jr.
## 2007                                                                        06/11/2001 11:36 am (pward) employee was moving several hundred feet of metal pipe with forklift, but had to move some by manual arrangement. Pain in back and leg. Supervisor: s. G. Dillon
## 2008         06/11/2001 11:52 am (pward) ofc. R. B. Baker was inspecting number 2 & 3 axle springs when his hard hat fell off. He started out from under truck and hit the left side of his head on bottom of trailer causing a laceration to his scalp. Supervisor: ssg
## 2009         06/11/2001 12:03 pm (pward) inspector lilley was getting out of the patrol vehicle in the rain and twisted his body which caused a sprain to his left lower calf and knee causing him to fall backward hitting his right forearm and elbow causing contusio
## 2010          06/11/2001 12:14 pm (pward) employee was on her way to restroom and around the corner are cubicles stacked against the wall to be installed. One of the workers was doing something with the cubicle and one slipped out and fell toward employee.. She le
## 2011                                                                                     06/11/2002 01:37 pm (fblackmo) employee states while conducting a road test the customer hit a concrete wall while trying to turn in to park to car. Supervisor: lorrie sineath
## 2012                                                                                                                     06/11/2002 01:51 pm (fblackmo) employee states that while giving road test the customer ran into a parked car. Supervisor: teresa h. Clodfelter
## 2013                                              06/11/2002 02:06 pm (fblackmo) employee walked out of engine room as engineer was pulling electrical shore tie cable causing employee to trip and fall, watching weight on left hand and wrist. Supervisor: t. L. Gray
## 2014                                                                                               06/11/2002 02:16 pm (fblackmo) employee states that while working on mower the jack stand slipped causing the mower to fall on his right arm. Supervisor: w. M. Horne
## 2015                                                 06/11/2002 02:34 pm (fblackmo) employee states had an reaction to grinder on trailer. Medical notes states that contact dermatitis likely was due to hair dye, non-work related condition. Supervisor: hosea blount
## 2016         06/11/2002 02:51 pm (fblackmo) employee was returning home from performing fabrication plant audits. Employee states while in the east bound side of I-40 in knoxville, tn, following a group of tracker trailers when some objects came out from under one
## 2017                                                                                                                                       06/11/2002 03:19 pm (fblackmo) employee states while doing survey a tick bite him on his right leg. Supervisor: jerry lindsey
## 2018                                                                                 06/11/2002 03:39 pm (fblackmo) employee was running a chainsaw when a woodchip flew into his left eye. Chip was lodged between upper eyelid and eyeball. Supervisor: j. B. Campbell
## 2019                                                                                                                          06/11/2002 03:49 pm (fblackmo) employee was weedeating bridge rails and guard rails when he came into poison oak. Supervisor: w. T. Teague
## 2020                                                                                  06/12/2000 05:15 pm employee stated he was in a squatted position placing boards under a snow plow hook up; when he felt a pull pain in his lower back. Supervisor: w. L. Thompson
## 2021                                                                                                           06/12/2000 05:18 pm employee was working on bridge # 17 in scotland county; when he was stung by a wasp on his left forearm. Supervisor: w. T. Lowery, jr
## 2022                                                                                                                    06/12/2000 05:23 pm employee found a tick on his right arm while putting down stakes on a construction sight on 5/26/00. Supervisor: r. A. Vause
## 2023                                                                                                                                       06/12/2000 05:28 pm employee was shoveling asphalt; when he felt a pop/pain in his right shoulder. Supervisor: k. L. Anderson
## 2024                                                                                                  06/12/2000 05:36 pm employee stepped off a curb, causing him to suffer traumatic events injuring his lower back, neck and both hips. Supervisor: michael g. Jarman
## 2025                                                                       06/12/2001 04:57 pm (sshort) employee was sweeping off peedee river bridge on 5/24/01; when a vehicle passing by caused debris to blow into Mr. Gathings left eye. Supervisor: h. M. Thompson
## 2026                 06/12/2001 05:02 pm (sshort) employee was finishing up doing a digout with jackhammer on 5/31/01. The jackhammer was on the bumper of air compressor to do the next dig; when it slipped and fell on top of his right foot. Supervisor: a. L. Smith
## 2027                                                              06/12/2001 05:09 pm (sshort) employee was welding on side of road with safety shield on; when a large truck passed by causing gravel/debris to blow into Mr. Bivins left eye. Supervisor: r. L. Tipton
## 2028            06/12/2001 05:14 pm (sshort) employee was operating backhoe; when the hydraulic hose busted loose. The hose sprayed fluid into his face and left eye. He immediately used eye wash from first aide kit and went for medical attention on 5/24/01. Superv
## 2029                                                                                                  06/12/2001 05:19 pm (sshort) employee was removing brakes with a hammer on 5/30/01; when debris fell from truck frame into his left eye. Supervisor: d. E. Francis
## 2030            06/12/2001 05:23 pm (sshort) employee was working on sr 1435 near sturgeon creek on 6/4/01; when he removed a seized tick from his right side. The site became red and swollen overnight causing employee to seek treatment for tick bite. Supervisor: r
## 2031                                                                                      06/12/2001 05:31 pm (sshort) employee was working on chip spreader operating belt; when he was stung by a bee on his upper right arm on 5/30/01. Supervisor: t. E. Johnson, jr
## 2032           06/12/2002 07:14 am (fblackmo) employee was moving cut up and decayed wingwall boards form the back of the truck bed to the front to keep pieces from falling off during transport and to make room to load additional materials. Employee was walking on
## 2033          06/12/2002 07:32 am (fblackmo) employee was clearing scrubbing a sight distance on state road 1805 in lenoir county. Employee was swinging the bush axe with one hand cutting the brush and weeds close to ground level, when the axe struck a stub causin
## 2034                                                06/12/2002 07:44 am (fblackmo) employee bent down to cut string to put on weedeater, tried to cut four strings at a time and knife slipped hitting employee in right leg around knee area. Supervisor: hugh williams
## 2035                                                 06/12/2002 08:58 am (fblackmo) employee was cutting steel plate with torch. Piece of steel did not fall off. Employee struck plate with left hand causing plate to fall on left forearm. Supervisor: r. D. Sherrill
## 2036                                                                                                                     06/12/2002 09:17 am (fblackmo) employee was stepping up steps to the tractor and pulled something in his right knee. Supervisor: t. J. Burchell
## 2037                                             06/12/2002 09:43 am (fblackmo) employee was operating weed eater along guardrail on hwy 168. Employee stopped for a few minutes, put his arm down and burned his arm on the weed eater motor. Supervisor: r. E. Langley
## 2038                                                                                      06/12/2003 10:53 am (fblackmo) employee was lifting on bar to place plate for bolts to be inserted on the lee-boy when, his right ankle gave away. Supervisor: randall jackson
## 2039                                                                                                      06/12/2003 11:36 am (fblackmo) employee was walking on shoulder of road when, he stepped into a trench causing the injury to his back. Supervisor; l. W. Lyall
## 2040                                                                                                               06/12/2003 11:55 am (fblackmo) employee found a tick on his groin area which, caused employee to experience pain and swelling. Supervisor; jeff allen
## 2041                                                                                               06/13/2000 02:25 pm employee was knocking scarefire points off to change them; when a piece of metal hit him on the left side of his chin. Supervisor: c. B. Lunsford
## 2042          06/13/2000 02:34 pm employee was operating a sheepfoot roller (packing dirt); when he pulled a muscle in his right leg and hip. Roller was rolling backwards and ran over a big rock, causing machine to jolt his leg causing the injury. Supervisor: mark
## 2043                                                                                                                               06/13/2000 02:42 pm employee was lifting burlap bags; when sand from the bag flew into employees left eye. Supervisor: r. D. Sherrill
## 2044                                                                                06/13/2000 03:50 pm employee was manually loading wood from a fallen tree into a backhoe front bucket; when he twisted/strained his lower back (left side). Supervisor: m. H. Brewer
## 2045                                                                                                                  06/13/2000 03:57 pm employee was repairing guardrails on I-40; when he was bitten by a tick on his right leg above ankle. Supervisor: vernon smith
## 2046                                                                                                          06/13/2000 04:05 pm employee was loading a dump truck with the front end loader; when a gust of wind blew dirt into his right eye. Supervisor: mike ennett
## 2047                                                                                                                    06/13/2000 04:15 pm while adjusting timber post, the bolt being used for a hand hold slid causing his left thumb sprain. Supervisor: glenn crews
## 2048                   06/13/2002 02:06 pm (fblackmo) employee was clearing right-of-way on state road 1605, running chainsaw and pulling brushes. Working 30 to 45 minutes employee complained of being too hot and was sick on the stomach. Supervisor: d. M. Pressley
## 2049          06/13/2002 02:18 pm (fblackmo) employee was helping remove old deteriorated nail boards from bridge floor, he tripped over debris falling off board that he and another employee was removing. The fall caused pain in his lower left side. Employee did n
## 2050                                                                       06/13/2002 02:33 pm (fblackmo) employee was bending down and twisted back while holding a hand held calculator to retrieve data from a water level monitor gauge. Supervisor: clint b. Little
## 2051                                                                                                                                 06/13/2002 02:45 pm (fblackmo) employee states while lifting a box of hand books, felt pain in right arm. Supervisor: terry blevins
## 2052                                                                                          06/13/2002 02:57 pm (fblackmo) employee was working with crew clearing the right of way around bridges when, came into contact with poison oak. Supervisor: terry j. Davis
## 2053                                                                                                            06/13/2002 07:35 am (fblackmo) employee was weed-eating around bridges on us 23-74 by pass, came into contact with poison ivy. Supervisor: hugh williams
## 2054                                                                06/13/2002 07:50 am (fblackmo) employee was driving back to asphalt plant, fumes from the truck caused him to become sick on the stomach, headache, and felt light headed. Supervisor: d. A. Hensley
## 2055                                                                                                                                                   06/13/2002 08:21 am (fblackmo) employee states he was bitten by a tick on his left ankle. Supervisor: r. G. Crews
## 2056          06/13/2002 09:50 am (fblackmo) employee states the truck he was riding in was traveling on (old 75) the car in front of them made a sudden stop to make a left turn onto hebron road. The driver of their truck applied his brakes to avoid a rear-end col
## 2057                                                                                                                                     06/13/2002 10:46 am (fblackmo) employee states that while keying, felt pain in right hand and arm. Supervisor: phillip carlisle
## 2058                                                                      06/13/2002 12:25 pm (fblackmo) employee was taking disinfectant off shelf and bottle was punctured causing liquid to fall into employees left eye and down his neck. Supervisor: e. F. Goodwin
## 2059                                                                                                                                              06/13/2003 07:50 am (fblackmo) employee fell off the back of a truck while loading equipment. Supervisor: tim southard
## 2060                                                                                                 06/13/2003 08:07 am (fblackmo) employee states that he was the passager in front seat of vehicle when, the vehicle was hit in the rear. Supervisor: teddy l. Greene
## 2061                                                                                                                                  06/13/2003 08:22 am (fblackmo) employee cut his forehead while cutting a new edge on backhoe bucket. Supervisor: james keith smith
## 2062                                                                                                                    06/13/2003 08:34 am (fblackmo) employee felt pain in his back while trying to pick up a pipe to line a driveway. Supervisor; lindsey o. Ethridge
## 2063                                                                                  06/13/2003 08:52 am (fblackmo) employee states while working on road project, he slipped and fell on a wet rock causing the injury to his right thumb. Supervisor: teddy l. Greene
## 2064                                                                                    06/13/2003 11:27 am (fblackmo) employee was caring new battery down to engine room when, he felt pain in his lower back. Supervisor: jeff m. Credle 10/29/2003 07:43 am (gwhite)
## 2065          06/14/2000 09:20 am employee was climbing ladder while carrying items in his right hand. When he reached the top he reached for the hand rail and missed; causing him to fall backwards landing on deck of boat. Mr. Howell bruised his left leg/thigh. Su
## 2066                                                        06/14/2000 09:25 am employee was going down steps; when her foot slipped and missed a step. She tried to catch herself causing her to bruise her left elbow and left knee contusion. Supervisor: pam guptill
## 2067                                                                     06/14/2000 09:31 am employee was trimming scrubery around power poles in chowan county on 5/15/00. Later that night he noticed and removed a tick from his stomach area. Supervisor: d. L. Lane
## 2068                                                                                          06/14/2000 09:37 am employee was driving down a rough, bumpy road on 5/25/00. She states when she shifted gears she felt a pain in her lower back. Supervisor: tim simpson
## 2069                                                                                                                                                       06/14/2000 10:00 am employee was raking asphalt when he pulled muscles in his stomach. Supervisor: jerry pate
## 2070                                                                                                                 06/14/2000 10:30 am employee found a tick in his groin area after working in a pasture erecting a fence on 5/23/00. Supervisor: marty craig tillman
## 2071                                                           06/14/2000 10:35 am employee was climbing out of motor grader; when he struck his left elbow on the mirror. The mirror cut him requiring six stitches to close the wound. Supervisor: marty craig tillman
## 2072                         06/14/2000 10:45 am employee was climbing down on wet ladder on marine vessel; when he slipped and fell on the deck below. Mr. Sawyer sprained his right hand, left elbow and has several lacerations and abrasions. Supervisor: t. L. Gray
## 2073                                                                    06/15/1999 03:56 pm employee was driving in state vehicle to a project site, when a private vehicle hit vehicle in rear. This accident caused the employee back and middle shoulder area strain.
## 2074                    06/15/1999 04:12 pm employee was installing wheel on truck on 6-4-99, when tire being aired up in cage behind the employee exploded. The employee twisted to see what happened and felt mild to sharp muscle pains and discomfort in lower back.
## 2075                                                                                                                                         06/15/1999 04:34 pm employee hit right knee on edge of truck door, when he turned to secure a utility bin on side of truck.
## 2076                                                   06/16/2000 09:49 am employee was driving us 52 south on 6/2/00; when he was struck from behind by a private vehicle. Mr. Sandoval has injuries to his lower and upper back from accident. Supervisor: r. D. Brown
## 2077                                                                                       06/16/2000 09:57 am employee was moving/lifting a road barrier; when the wood of the cross barrier broke/slipped and struck employee in his nose. Supervisor: colby flaherty.
## 2078          06/16/2000 10:00 am employee suffered from heat exhaustion on 5/31/00 while working on katie court in forsyth county. She states she got out of truck experiencing feelings of dizziness, nausea, faintness, clammy skin, and a really sick feeling. Super
## 2079                                                        06/16/2000 11:52 am employee was stepping down off the back of a truck; when his left foot landed in a hole in the ground. He lost his balance and fell sprained his left ankle. Supervisor: f. E. Faircloth
## 2080                                                                                                                  06/16/2000 12:14 pm employee was working on a piece of steel plate; when it slipped and fell on his left shin/ankle. Supervisor: kevin lamar cooke
## 2081           06/18/1999 04:24 pm employee was cutting bushes around bridges with a brush cutter, when he came in contact with poison plants. Both arms and under his neck was injured. Note: employee was wearing a long sleeve shirt, gloves, and using poison preven
## 2082                                                                                                      06/18/2001 01:44 pm (sshort) employee was lowering his welding shield over his face; when a piece of metal got in his right eye. Supervisor: kevin lamar cooke
## 2083                                                                                              06/18/2001 01:48 pm (sshort) employee was picking up diskettes that fell on the floor; when she sat up and struck her right elbow on countertop. Supervisor: rosa gill
## 2084                                                                                                   06/18/2001 02:35 pm (sshort) employee was driving pickup truck on 6/6/01; when he felt something (an insect) bite him twice on his back. Supervisor: w. J. Turner
## 2085                            06/18/2001 02:52 pm (sshort) employee was working on mechanical cutter on 6/7/01; when a piece of material came off cutter bit when he struck it with a hammer. The material struck Mr. Light in his left eye. Supervisor: robert graham
## 2086                                                                                             06/18/2001 10:47 am (sshort) employee was picking up a load binder from the floor of trailer; when a splinter entered his right little finger. Supervisor: s. E. Propst
## 2087           06/18/2001 10:56 am (sshort) employee was working on laurel fork road on 5/30/01; when a piece of fence wire struck him in the forehead above his right eye. He was standing by state vehicle when object flew through the air and struck him. Supervisor
## 2088                                                                                                 06/18/2001 11:02 am (sshort) employee pulled muscles in chest area while trying to move barricade hanging on top of tandem truck tailgate. Supervisor: jack rollins
## 2089                                                                                                                     06/18/2001 11:07 am (sshort) employee was exiting tractor on 6/7/01; when he pulled muscles in his lower back area. Supervisor: j. G. Cloninger
## 2090            06/18/2001 11:17 am (sshort) employee was walking to the back of tandem truck to check if load had been completely dumped. He stepped on the edge of some solid and soft mixed material and strain/sprained his right ankle. Supervisor: j. Dennis harre
## 2091                                                                      06/18/2001 11:25 am (sshort) employee was climbing down ladder into the engine room on ferry vessel; when his foot slipped on step. He fell and strained his left knee. Supervisor: r. E. Hill
## 2092                                                                                                     06/18/2001 11:43 am (sshort) employee was putting signs up in work zone on 5/25/01; when he got a splinter in his little right finger. Supervisor: b. K. Glover
## 2093           06/18/2001 11:49 am (sshort) employee was weighing a truck on 6/4/01; Mr. Posey was struck on forehead by a front end loader of dump truck. The loader made a small chip in his tooth when it struck him in the mouth. No vehicle was involved or propert
## 2094           06/18/2002 02:00 pm (fblackmo) employee had opened truck door to enter, holding to bar inside cab to pull up onto seat. Employee turned away from truck to speak to another employee but continued to hold bar. Wind blew door and slammed employees righ
## 2095                                                                                                            06/18/2002 02:12 pm (fblackmo) employee removed tick from light hip. Rash developed along with joint pain, fatigue and headache. Supervisor: j. G. Nance
## 2096                                                                                                                                   06/18/2002 02:51 pm (fblackmo) employee was removing portable scales when he felt pain in his lower back. Supervisor: sgt. Powell
## 2097           06/18/2002 03:03 pm (fblackmo) employee states that on 6/11/02 she had to slam on brakes very hard to avoid a collision with another vehicle. She seemed to be okay the rest of the day. Employee complained of soreness in her right side and leg on 6/1
## 2098                                                                                          06/18/2002 10:37 am (fblackmo) employee was walking next to half buried aluminum pipe when, ground gave way causing injury to his left knee. Supervisor: e. R. Gurganus jr
## 2099                                                                                                     06/18/2002 10:50 am (fblackmo) adjusting tailgate on dump truck when tailgate slipped pinning his right hand between tailgate and chain. Supervisor: george coe
## 2100                                                                                                      06/18/2002 11:31 am (fblackmo) employee was under flat bed truck hooking up the pole trailer when he was bitten on the left temple. Supervisor: w. L. Saunders
## 2101                                                                                                    06/18/2002 11:52 am (fblackmo) employee was working on a clearing operation on blackrock ranch road, came into contact with poison oak. Supervisor: r. E. Austin
## 2102                                                                                                                06/18/2002 12:08 pm (fblackmo) employee was walking up a flight of stairs and she slipped and fell down about 3 or 4 stairs. Supervisor: john carter
## 2103                           06/18/2002 12:55 pm (fblackmo) employee was scrubbing on the top half slope it had dirt on the bottom half concrete. The concrete was covered with dirt and leaves causing employee feet to slip from under him. Supervisor: dale bullard
## 2104                                                      06/18/2003 02:02 pm (fblackmo) employee was removing a rack from the back of the truck when, she slipped and fell in a ditch. Supervisor: danny a. Worrell 7/5/2007 03:55 pm (lvaughan) per #19 injured l-knee
## 2105                                                                                                                                            06/18/2003 02:15 pm (fblackmo) employee was building a fence when he stepped on a rusty nail. Supervisor: n. C. Mckinney
## 2106                                                                           06/18/2003 02:33 pm (fblackmo) employee was in a hole when another employee passed his a sheet of plywood, plywood slipped falling on employees right foot. Supervisor: timothy. Southard
## 2107                                                                                                                       06/18/2003 02:44 pm (fblackmo) employee was shoveling cold mix when, he slipped and fell off the back of the truck. Supervisor: d. R. Summers
## 2108                                                                                         06/18/2003 02:58 pm (fblackmo) employee was cutting with die grinder when, a piece of steel went into his right eye. Supervisor: d. E. Clapton 08/29/2003 11:40 am (gwhite)
## 2109                                                                                                                               06/18/2003 09:10 am (fblackmo) employee was hit in the rear by a tractor trailer while stopping on I-40 east. Supervisor: j. E. Stepp
## 2110                                                                                                                                           06/18/2003 09:34 am (fblackmo) employee was hit in the rear while trying to make a left turn. Supervisor: teddy l. Greene
## 2111                                                                                                                          06/18/2003 09:49 am (fblackmo) employee states a private vehicle backed into him while walking along project line. Supervisor: b. V. Smith
## 2112                                                                                                                                         06/18/2003 10:16 am (fblackmo) employee felt pain in his lower back while, unhooking a water pump. Supervisor: t. A. Temple
## 2113                                                                                                                 06/18/2003 10:50 am (fblackmo) employee states while working with laurel ticket the wire flag struck him in his left eye. Supervisor: paul r. White
## 2114                                                                                                         06/18/2003 11:02 am (fblackmo) employee states while walking into building she, slipped and fell on wet floor due to the rain. Supervisor: albert e. Joyner
## 2115                                                                                                                                                    06/18/2003 11:12 am (fblackmo) employee came into poison ivy while classifying photos. Supervisor: t. K. Wheeler
## 2116                                                                                        06/18/2003 11:23 am (fblackmo) employee was using a grinder for welding when, the disc on the grinder came apart causing the injury to his arm. Supervisor: samuel j. Gupton
## 2117                                                                                                                        06/18/2003 11:40 am (fblackmo) employee was lifting a computer monitor when, he felt pain in his lower back area. Supervisor: c. S. Mcdonald
## 2118                                                                                                                                                           06/18/2003 11:55 am (fblackmo) employee found a tick on his upper left thigh are. Supervisor: w. E. Price
## 2119                                                                                                     06/18/2003 12:09 pm (fblackmo) employee was getting her belongs out of dump truck when, the wind blew the door close on her left leg. Supervisor: shelton james
## 2120                                                                                                                                                            06/19/2001 10:12 am (sshort) employee jumped off porch and sprained her ankle. Supervisor: mary ann buck
## 2121                                                                                              06/20/2001 12:24 pm (fblackmo) employee barringer was at digitized station taking customers picture and hit right knee on cabinet door.: supervisor: vivian gail beck.
## 2122                                                                                                         06/20/2002 07:18 am (fblackmo) employee states that while leave form third floor walking down stairs, fell down at least two steps. Supervisor: pam guphill
## 2123                                                          06/20/2002 07:47 am (fblackmo) employee states that due to repetitive motion of daily duties at computer work station and the office furniture, caused pain to back and shoulders. Supervisor: chuck dumas
## 2124                                                                   06/20/2002 08:04 am (fblackmo) employee was taking hoses off skid steer loader. The hose popped loose and struck the end of his finger and tore the finger nail off. Supervisor: r. T. Mcmanus jr
## 2125                                                                                                                  06/20/2002 08:33 am (fblackmo) employee was walking down slope of ditch under construction causing injury to left ankle. Supervisor: e. E. Simmons
## 2126                                                                               06/20/2002 09:15 am (fblackmo) employee states that while performing field work on the shoulder of us 64 in rocky mount, found tick on inner thigh area. Supervisor: gregory a. Smith
## 2127                                                                                                       06/20/2002 09:28 am (fblackmo) employee states that while leaving the office for the day she felt a twitch under her buttocks area. Supervisor: susan stewart
## 2128                                                                                     06/20/2002 09:48 am (fblackmo) employee was attempting to pull herself up on roller when, she felt a sharp pain in her right shoulder and arm area. Supervisor: c. D. Childress
## 2129                                                                                                                                                06/21/1999 03:00 pm employee bruised head on wooden ovehang of bridge while inspecting erosion control on a project.
## 2130                                                                                           06/21/1999 03:06 pm employee was loading p. V. C. Pipe from a state vehicle when a bee stung him on back of his neck. The employee had an allergic reaction to the sting.
## 2131                                                                          06/21/1999 03:40 pm employee injured lower back while supervising paving operations on nc 51. A car drove too close to the cones and the driver side mirror hit her across her lower back.
## 2132                                                                         06/21/1999 03:48 pm employee was changing a flat tire on carryall vehicle, when he pulled muscle in right shoulder. Employee was tightening the lug nuts on the wheel when injury occurred.
## 2133                                                                                                    06/21/1999 03:54 pm employee was loading a sign onto a truck, when he cut his left wrist. He was reaching out to pull the sign into place when his hand slipped.
## 2134                                                                                                          06/21/1999 04:01 pm employee was removing old boards from building, when he steeped off bucket truck. When this occurred he punctured left foot with nail.
## 2135                                                                                                                                              06/21/1999 08:34 am employee came in contact with poison ivy while clearing survey line. The rash is on his right arm.
## 2136                                                                                                                                              06/21/1999 08:42 am employee was using weedeater to cut bushes and weeds, when he injured his right shoulder. (strain)
## 2137                                                                                                                                                    06/21/1999 08:48 am employee was bitten by a tick during survey work. Tick back occurred on his upper back area.
## 2138                                                          06/21/1999 08:53 am employee was walking out of the office, when her left foot slipped out from underneath her. This caused her to fall on her left side, injuring her left index finger and left arm pit.
## 2139                                                                                                                                               06/21/1999 09:31 am employee has repetitive usage injury to right wrist by performing office procedures. (tendonitis)
## 2140                                                                          06/21/1999 09:43 am employee was checking air hose under water tank, when he struck his head on handle of spray bar end cap. This caused the employee to cut his scalp receiving stitches.
## 2141                                                             06/21/1999 09:55 am employee slid when soil gave out while climbing down steep river bank. He reached out to catch himself causing him to cut his right ring finger on metal scrap piece in the ground.
## 2142                          06/21/1999 10:01 am employee was using chainsaw to cut right of way, when he stood up and swung chainsaw around it struck him on back of his left leg behind the knee cap. (the throttle did not cut back and the chain was still running)
## 2143            06/21/1999 10:22 am employee was pushing hinge pin into boom, when pin became stuck. Employee then took a hammer to pound/drive it in place, when hammer blow broke piece of steel from the pin. A fragment struck and embedded in her forehead one inch
## 2144         06/21/2000 08:50 am employee sprained his right elbow when rip rap rock rolled out of tailgate causing the injury. Other employees had loaded the tailgate full of the rock, so when Mr. Martin tried to open the tailgate to let some out, he could not ho
## 2145                                            06/21/2000 08:54 am employee state vehicle was struck by a private vehicle that had ran a stop light on 6/13/00. Mr. Couch has cervical (upper back) and shoulder strain due to this accident. Supervisor: sean sizemore
## 2146                06/21/2000 09:01 am employee strained his left knee on 6/7/00; when he stepped down off the back of a truck onto a gravel parking lot. His foot hit the gravel and rolled over to one side, throwing his knee out of socket. Supervisor: arnold cabe
## 2147          06/21/2000 09:14 am employee strained lower back area while cleaning his tracks with a bush axe on 6/8 & 6/9/00. He was required to climb up and down from his dozer at least fifty times a day. Mr. Smith was directing trucks to dump dirt at time of in
## 2148                                                                      06/21/2000 09:40 am employee strained/sprained his left ankle while walking through tall grass. He was assisting a stranded motorist when he stepped in a hole on 5/9/00. Supervisor: roy long
## 2149                                                                                                                                    06/21/2001 10:32 am (sshort) employee was welding steel plate; when the the wind blew debris into his eye. Supervisor: r. E. Cox
## 2150                                                                      06/21/2001 10:47 am (sshort) Mr. Whitaker cut his left knee on a chainsaw on 6/11/01. He had just put a new chain on saw; when he walked by it snagged/cut his knee. Supervisor: stan pararone
## 2151                                                                               06/21/2001 10:55 am (sshort) employee was walking on a slop checking for broken water lines; when his right foot became stuck in mud causing him to fall. Supervisor: b. G. Bumgarner
## 2152                                                                  06/21/2001 11:00 am (sshort) employee was help another person lift a barrel to stack on top of other barrels on 6/5/01. Mr. Alston strained/pulled muscles in his abdomen. Supervisor: c. E. Moore
## 2153                                                                                                        06/21/2001 11:34 am (sshort) employee was trying to lift a jogger off machine when she strained muscles in her lower back area. Supervisor: richard holloman
## 2154                           06/21/2001 11:46 am (sshort) employee was operating a pick up truck; when her vehicle was struck by a private vehicle on 6/5/01. She has a bruise on her upper chest area due to the activation of the air bag. Supervisor: r. M. Freeman
## 2155          06/21/2001 11:54 am (sshort) employee was traveling east on queen street on 5/8/01; when a private truck ran a stop sign on mosley street. The employee crashed into side of truck and caused Mr. Terry to have strains/bruises to his back, neck and left
## 2156                                                                                                       06/21/2002 01:49 pm (fblackmo) employee was picking up limbs from the road when, the limb hit his right middle finger breaking tip. Supervisor: j. V. Riddick
## 2157                                                                                                06/21/2002 02:01 pm (fblackmo) employee states that while climbing out of dump truck, heard left knee pop. Employee had severe pain in left knee. Supervisor: d. S.L
## 2158           06/21/2002 02:12 pm (fblackmo) employee was attempting to climb over to weed around bridge culvert. Employee put weight on his leg to step over the rail when the road caved in under him causing employee to fall into a cavity. Supervisor: hugh willia
## 2159                                                                                                                   06/21/2002 02:23 pm (fblackmo) employee was lifting 14 x 24 motor grader tire when he felt intense pain in his right side. Supervisor: joyce brim
## 2160                                                                                                          06/21/2002 02:35 pm (fblackmo) employee acquired poison oak when he was driving r/w stakes and cutting brush on secondary roads. Supervisor: andrew murphy
## 2161                                                                                                          06/21/2002 02:49 pm (fblackmo) employee acquired poison oak when he was driving r/w stakes and cutting brush on secondary roads. Supervisor: andrew murphy
## 2162                                            06/21/2002 03:00 pm (fblackmo) employee was sitting in front passenger side of vehicle and had right hand extended outside window above his head. Co-worker closed door on right index finger. Supervisor: d. R. Roberts
## 2163                                                                                                                                 06/21/2002 03:09 pm (fblackmo) employee was conducting a field investigation when he was bitten by a tick. Supervisor: randy turner
## 2164                                                                                                                       06/21/2002 03:27 pm (fblackmo) employee states while under tuck checking transmission something blew in his right eye. Supervisor; f. M. Burk
## 2165                                                06/22/1999 02:16 pm employee was driving front end loader to the job site, when a private vehicle hit him in the rear causing him to be thrown around inside of cab. He strained his muscles in lower back and neck.
## 2166                                                                06/22/1999 02:30 pm employee inured his lower back while lowering machine leads and pile hammer. He was holding the lead straight when the cable came loose and struck employee. 02/01/2000 12:47 pm
## 2167                                                      06/22/1999 02:56 pm employee was working with patching crew on sr 2271 in robeson county, when he fainted. The rescue unit was dispatched to the work site, he was not injured on the job. 01/11/2000 01:33 pm
## 2168                                                                         06/22/1999 03:25 pm employee was walking to the back of truck to check spreader gate, when he stepped on a board with nails in it. A nail penetrated his boot and punctured his right foot.
## 2169                                                                                                                                                              06/22/1999 03:32 pm employee was working under a lowboy trailer, when dirt/trash got in his right eye.
## 2170                                                                                              06/22/1999 03:37 pm employee was working with a co worker, when fiber glass particle got into his right eye. They were pushing back insulation to wire a water heater.
## 2171                                                                                                                                      06/22/1999 04:39 pm employee was helping co workers pick up signs, when center pole of sign rack hit employee on his left leg.
## 2172                                                                                                                                  06/22/1999 04:48 pm employee was climbing into cab of scraper, when he hit the top of his head on the rear view mirror on scraper.
## 2173                                           06/22/1999 11:21 am employee was trying to free a limb from the bed of a dump truck, when it came loose causing him to fall backward into a pile of tree limbs and debris. He has a small laceration on his left forearm.
## 2174                                                                                    06/23/1999 03:44 pm employee states he loss hearing due to operating motor grader machine. For the past 24 years working on dirt roads and on construction projects when needed.
## 2175                                                                                                  06/23/1999 09:58 am employee was supervising crew on sr 2019 in surry county, when she was bitten on the chin by an unknown insect. She has rash to chin and neck.
## 2176                                                                                                                                                            06/23/1999 10:05 am employee was bite on the right hand by a brown spider while operating tractor mower.
## 2177                                                                                                                                                             06/23/1999 10:11 am employee was hit by tree on top of his hard hat, this caused a cut on his left ear.
## 2178                                                                                06/23/1999 10:21 am employee was involved in vehicle accident on 5-26-99. He was struck in the rear by private vehicle. He sustained muscle soreness and strain in his lower strain.
## 2179                                                                                               06/23/1999 10:42 am employees left forearm was injured while holding a metal can. He struck the can to put a hole in it when the chipping hammer bounced off the can.
## 2180          06/23/1999 10:56 am employee was lifting limbs (approx. 8' in length, 75-100 lbs. ) when he injured his lower back. He was dragging the limb from 2 travel lanes onto the shoulder of road. He twisted to swing the limb off shoulder guardrail when injur
## 2181                                                                                             06/23/2003 02:16 pm (fblackmo) employee fell over guard rail while helping another employee lift a grate into the back of a pick-up truck. Supervisor: william e. Berry
## 2182                                                                                                     06/23/2003 02:32 pm (fblackmo) employee was lifting a roadway light when, his finger was caught in between the edge of the truck bed. Supervisor: a. C. Culpper
## 2183                                                                                                              06/23/2003 03:15 pm (fblackmo) employee was standing outside of vehicle reaching in when, the door slammed on his left hand. Supervisor: j. M. Laviner
## 2184                                                                                                                                    06/23/2003 03:25 pm (fblackmo) employee was putting up a fence when, he hit his finger on metal post. Supervisor: j. L. Mckinney
## 2185                                                                                                                       06/23/2003 03:38 pm (fblackmo) employee was exiting vehicle when, the door swung back striking him on his right knee. Supervisor: derek smith
## 2186                                                                                                                 06/23/2003 03:49 pm (fblackmo) employee was cleaning windows when, he lost his footing causing the injury to his left hand. Supervisor: jerry green
## 2187                                                            06/23/2003 12:58 pm (fblackmo) employee states while assisting other crew members pump water, the hose locked up causing him to fell pain in his neck and right shoulder area. Supervisor: h. D. Wiggins
## 2188            06/24/1999 08:28 am employee was standing on the ground on drivers side of flatbed crew cab. He was preparing to raise the hood for inspection, when he felt a sharp pain in the middle of his back. He also heard a loud pop causing severe pain in his
## 2189                                                                          06/24/1999 08:41 am employee was a passenger in vehicle accident. They were hit from behind by a private vehicle. Mr. Morgan's injuries involved strain in the neck and between shoulders.
## 2190                                                                        06/24/1999 09:02 am employee was clearing bush for the purpose of slope-staking, when he came in contact with poison ivy. He broke out with the rash on his face, neck, both arms and hands.
## 2191                                                                                                                                                           06/24/1999 09:11 am employee twisted his right knee, while climbing up steep slope taking cross sections.
## 2192                                                                 06/24/1999 09:20 am employee was setting up stakes on roadway, when he was bit by a dog on his right thumb. The employee had a stake in his hand and the dog lunged for the stake and bit his hand.
## 2193                                                                                                                                                                                           06/24/1999 09:27 am employee came in contact with poison ivy in the field
## 2194                                                                06/24/1999 09:40 am employee was tightening down clamp on tension spring while co worker was holding wrench. The wrench slipped off the spring bolt end striking his right hand on back of knuckles.
## 2195                                                                                06/24/1999 09:47 am employee was operating a belt loader, when dust and debris consumed his body given him a rash on entire body. Dust and debris was in the air due to the weather.
## 2196                                                                                                                  06/24/1999 09:56 am employee was hit on top of head with the handle of a powered post. The employee turned the handle to the inside while driving.
## 2197                                                                        06/24/1999 10:10 am employee was s passenger in state vehicle, when employees head struck the top of truck injuring his neck. The accident happened at muddy creek bridge in forsyth county.
## 2198                                  06/24/2002 03:49 pm (fblackmo) employee was driving a broom tractor on us 301 pulled off shoulder of road to let traffic by. Tractor was shaking back and forth causing pain to left shoulder and neck. Supervisor: t. J. Burchell
## 2199                                                                                               06/24/2002 10:51 am (fblackmo) employee was flagging, he blacked out and fell. Employee hit right elbow on pavement causing a laceration. Supervisor: ronald e. Joyce
## 2200                                                                                                              06/24/2003 11:12 am (fblackmo) employee came into contact with poison ivy while surveying for highway construction project. Supervisor: w. T. Anderson
## 2201                                                                                                                06/24/2003 11:30 am (fblackmo) employee states while loading steel, his finger became caught between the pile and the lead. Supervisor: dale bullard
## 2202                                                                                             06/24/2003 11:42 am (fblackmo) employee fell from dump truck while repairing a tare, causing the injury of his neck, shoulder, and left elbow. Supervisor: q. M. Watson
## 2203                                                                                                    06/24/2003 12:01 pm (fblackmo) employee was cutting tree limbs when, one of the trees twisted and fell on employee's head and chest area. Supervisor: t. Cothran
## 2204                 06/24/2010 09:57 am (slee) sov was struck by pov on the front driver's side and was spun around. Sov rolled several times along us hwy. 117. 06/24/2010 04:19 pm (slee) other person: jeremy truzy, 110 e. Williamson st., mt. Olive, nc. 07/26/201
## 2205                                                                                 06/25/1999 02:39 pm employee was drilling out hydraulic fitting, when the drill bit grabbed causing the drill to rotate. This caused the drill to slam and fracture his right hand.
## 2206                                                                                                                        06/25/1999 03:18 pm employee came into contact with poison ivy while surveying in mecklenburg county. The rash is located in various places.
## 2207                                                                                                                                                               06/25/1999 03:29 pm employee was bitten by a spider on her right thigh, while moving old fence posts.
## 2208                                                                                                       06/25/1999 03:36 pm employee struck his right knee on canvas rail bolt, while mounting side of dump truck body. He has bruises and an abrasion on right knee.
## 2209                                                                                                               06/25/1999 03:42 pm employee was walking on shoulder of road, when he slipped and fell striking a guardrail. He cut his right ear from this incident.
## 2210                                                                                                             06/25/1999 04:00 pm employee was loading straw on truck while lifting bale of straw he felt a sharp pain in his left side. Hernia on left side of body.
## 2211                                                                         06/25/2001 02:35 pm (fblackmo) the employee was cleaning around bridge, pulled on a vine with pitchfork, wasp came out of vines and stung the employee on the nose. Supervisor: a. W. Smith
## 2212                06/25/2001 03:00 pm (fblackmo) the employee was dismounting vehicle and when he stepped onto the pavement his weight shifted and he turned his ankle. Doctor determined it to be a sprained ankle of moderate severity. Supervisor: travis j. Spicer
## 2213                                                                                                                                             06/25/2001 03:20 pm (fblackmo) the employee was cutting right of way and was in poison oak. Supervisor: j. D. Hazelwood
## 2214                                                                                  06/25/2001 04:24 pm (fblackmo) the employee was mowing grass. He apparently breathed in some type of fumes, causing irritation to throat and lungs. Supervisor: charles frank vick
## 2215          06/25/2001 12:01 pm (fblackmo) employee had gotten out of truck and was walking toward the work area to help with shoveling rocks of asphalt, thats when a private vehicle struck him from behind. Employee states that he did not fill any pain until app
## 2216                                                                                                                                              06/25/2003 02:32 pm (fblackmo) employee was pulling tree limbs when, the limb hit her leg. Supervisor: eddie guganious
## 2217                                                                                                                                 06/25/2003 02:47 pm (fblackmo) employee was walking across parking lot when, he was stung on his right arm. Supervisor: victor long
## 2218                                                                                        06/25/2003 03:22 pm (fblackmo) employee states he felt pain in his lower back area while, handing a 50lb bag of fertilizer from the back of a truck. Supervisor: j. F. Sloop
## 2219                                                                        06/25/2003 03:34 pm (fblackmo) employee was using a chainsaw to clear right of way when, the tree snapped and kicked back striking employee on his lower left leg. Supervisor: mark williams
## 2220                                       06/26/2001 09:06 am (fblackmo) the employee was welding hinge onto dump truck frame. When the employee started to get up he used his left hand to pull himself up and he felt pain in his shoulder. Supervisor: k. R. Burrell
## 2221                       06/26/2001 09:36 am (fblackmo) the employee, while running the long arm (mower), his left foot pressing on the clutch caused a blister to form. The blister did not bust until friday when he pulled his boot off. Supervisor; marc p. Morgan
## 2222                                    06/26/2001 10:13 am (fblackmo) the employee, Mr. Floyd had to remove brush from bridge in order to complete the bridge inspection. During the removal of the brush he came into contact with poison ivy. Supervisor; w. L. Hicks
## 2223                                                                             06/26/2001 10:21 am (sshort) employee was trying to get in truck to turn on pto; when the step split/broke causing Mr. Jarrett to sprain/strain his right knee. Supervisor: r. D. Isley
## 2224                                                                                               06/26/2001 10:26 am (sshort) employee was getting off loader machine on 6/20/01; when he turned to walk away he twisted his left ankle. Supervisor: c. N. Edwards, jr
## 2225                                                                                                                                     06/26/2001 10:34 am (fblackmo) the employee walked into the holder for cones on front of carryall. Supervisor; mark l. Fogleman
## 2226                          06/26/2001 10:40 am (sshort) employee was getting off roller machine; when he missed a step and fell backwards onto leeboy paver. Mr. Adams strain/sprained his left shoulder and injured his back and right ear. Supervisor: r. D. Peeler
## 2227            06/26/2001 10:46 am (sshort) employee was waiting on forklift driver to bring her supplies to be loaded onto truck on 6/15/01. When her right foot was accidentally run over by forklift. Mrs. Jackson 3rd toe on her right foot was crushed and her 2nd
## 2228             06/26/2001 10:54 am (sshort) employee stated on or about 6/1/01 her right elbow began to hurt. Ms. Burris went to the doctor on 6/13/01 and was diagnosised with epicondylitis (tennis elbow) and was restricted to modified duty. Supervisor: roger l.
## 2229           06/26/2001 10:55 am (fblackmo) the employee, officer christopher newbern injury occurred as his right hand was holding the pocket knife and he was forcing the blade toward his left hand area. The knife slipped and caused the blade to strike the left
## 2230                                                               06/26/2001 11:01 am (sshort) employee was getting off motorgrader machine; when he lost his balance and fell to the ground. Mr. Sizemore sprained his right ankle on 6/18/01. Supervisor: t. M. Smith
## 2231                                                                                                               06/26/2001 11:08 am (sshort) employee was picking up roadside litter on 6/6/01; when he was bitten by a tick on his back. Supervisor: joe h. Mckinney
## 2232                                                                                                             06/26/2001 11:19 am (fblackmo) the employee was operating chainsaw and cut into a stump that was covered in poison ivy. Supervisor; l. S. Carpenter, jr
## 2233                                          06/26/2001 11:21 am (sshort) employee was using a bushaxe to cut trees around bridge on 6/12/01. When he hit a small tree the bushaxe twisted and sprained Mr. White's left wrist and forearm. Supervisor: steve a. Hardin
## 2234                                                  06/26/2001 11:41 am (fblackmo) the employee was trying to load steel wheel roller in rain. Roller started to slide on wet trailer and tilted over. Bruised right knee and left wrist. Supervisor; mark l. Fogleman
## 2235          06/26/2001 11:55 am (fblackmo) the employee was exposed to poison ivy while manually clearing vegetation along a fence line on state road 1324. Clearing of the right of way was being conducted in preparation of secondary road improvements on this unp
## 2236                                                                                    06/26/2001 11:56 am (sshort) employee was dragging and chipping a brush that had poison ivy plants on it; when he got contact rash on both of his arms. Supervisor: m. H. Brewer
## 2237                                                                                                               06/26/2001 12:02 pm (sshort) employee was unloading traffic cones in warehouse; when he fractured his right wrist/hand. Supervisor: charles whitfield
## 2238          06/26/2002 02:34 pm (fblackmo) employee states while pulling an asphalt sled with a dump truck, the chain attaching to the truck came a loose. The sled was spinning around when it struck employee on his left side, causing him to fall in the road. Sup
## 2239                                                                                                                             06/26/2002 02:44 pm (fblackmo) employee states he was bitten by a tick on his left leg while doing surveying. Supervisor: jerry lindsey
## 2240                                                                                            06/26/2002 02:55 pm (fblackmo) employee was working on gallimore dairy road in guilford county when a unknown insect bite him on his upper lip. Supervisor: s. G. Dillon
## 2241                                                                                                         06/26/2002 03:10 pm (fblackmo) employee was directing vehicle onto ferry, dog bite employee through the rear window on his left arm. Supervisor: t. L. Gray
## 2242                                                           06/26/2002 03:22 pm (fblackmo) employee was in truck that was being loaded by excavator. Employee states the excavator hit the truck causing the injury to his right shoulder. Supervisor: kenny w. Smith
## 2243                                                                                              06/26/2002 03:33 pm (fblackmo) employee was leaving office for parking lot. Stepped in a pot hole causing her foot to turn, hitting the pavement. Supervisor: jo lewis
## 2244                                                                                06/27/2000 11:54 am Mr. Cogdell was driving a truck assisting with the clean up of flooded areas; when began to have chest pain and numbness in his limbs. Supervisor: max abernethy
## 2245                                                                                                                          06/27/2000 12:13 pm employee has pain in her right hand, right shoulder and neck from entering data on keyboard. Supervisor: james w. Rand
## 2246                  06/27/2000 12:19 pm employee was operating concrete saw when it got hung in the concrete. Employee was pulling on saw while using a jackhammer to loosen the saw. Mr. Coghill strained his back at the time of incident. Supervisor: j. A. Hobgood
## 2247            06/27/2000 12:27 pm employee was responding to an emergency traffic signal call on 6/14/00. Employee was in the process of changing out a malfunctioning monitor shorten out causing an electric surge to wound his left hand. Supervisor: james d. Edwa
## 2248            06/27/2000 12:43 pm employee was in state vehicle and in the process of setting up traffic control signs; when he was struck from behind and the left side by a private vehicle on 6/6/00. Mr. Faircloth has pain in neck and upper back areas. Supervis
## 2249                                          06/27/2001 03:55 pm (fblackmo) the employee was driving a stake with an axe. The corner of the stake broke. The employee lost his grip on the axe, the axe hit the employee in his right ankle. Supervisor: o. T. Anderson
## 2250                                                                                                         06/27/2001 04:25 pm (fblackmo) the employee was cutting trees covered in poison ivy. The chainsaw threw the leaves and bark on him. Supervisor: p. J. Acuff
## 2251            06/27/2001 04:50 pm (fblackmo) the employee was trying to push a rock out of the ground. The blade from the drill slipped up, the rock caught onto other piece of rock, throwing him forward and twisting his shoulder. Supervisor: robert w. Rodes, jr.
## 2252                                                                     06/27/2001 05:08 pm (fblackmo) the employee was driving one of the two dump trucks, the two trucks struck each others mirrors causing small pieces of glass to fall. Supervisor: c. W. Burleson
## 2253                                                                                                                                                         06/27/2002 03:20 pm (vsulliva) private vehicle drove through work zone hitting left rear of asphalt hopper.
## 2254                                                       06/27/2002 07:14 am (fblackmo) employee was working on state road 1803, decomposing of a deer carcass. The next evening employee removed a tick from his upper right thigh area. Supervisor: james m. Tyndall
## 2255                                                                                                              06/27/2002 07:28 am (fblackmo) employee was walking across yard when he stepped on a rock, left foot turned causing the injury. Supervisor: r. C. Wood
## 2256                                                                                                                                   06/27/2002 07:39 am (fblackmo) employee did not wait for table saw blade to stop before moving wood. Supervisor: henry sturdivant
## 2257                                                                        06/27/2002 07:49 am (fblackmo) employee was with crew installing driveway pipe. Employee started to get in ditch, slipped on mud and fell twisting right knee. Supervisor: robert l. Winslow
## 2258                                                                                                                06/27/2003 11:02 am (fblackmo) employee was hooking up a hoses on a snow plow when, he felt pain in his right wrist. Supervisor: b. J. Berryhill, jr
## 2259                                                                                                                                                       06/27/2003 11:24 am (fblackmo) employee came in from lunch break when, he passed out. Supervisor: c. E. Moore
## 2260                                                                                                              06/27/2003 11:36 am (fblackmo) employee came into contact with poison ivy while surveying for highway construction project. Supervisor: w. T. Anderson
## 2261                                                                                                                                                 06/27/2003 12:10 pm (fblackmo) employee was using restroom when, he felt pain in his back. Supervisor: shawn mebane
## 2262                                                         06/28/2000 01:01 pm employee was assisting bridge maintenance unit in installing 142' x 91' cspa; when a tick bit him on the right hip. Mr. Baker has a severe rash on his back. Supervisor: elpidio guerra
## 2263                                                                                                    06/28/2000 10:10 am employee was cutting brush with a bush axe; when she started having pain in her left wrist (repetitive motion). Supervisor: m. R. Hollifield
## 2264                                                                                            06/28/2000 10:15 am employee was grinding brush when he came in contact with poison ivy. He has contact rash on left forearm and in his left eye. Supervisor: g. D. Fine
## 2265                                                                                                                     06/28/2000 10:27 am employee was inspecting a support bracket; when dust/dirt particle blew into his left eye. Supervisor: chester e. D. Gartin
## 2266                                              06/28/2000 10:32 am employee stepped off a backhoe trailer and lost his footing/balance on 5/26/00. He landed on the tire rim causing his weight to shift and his left knee to twist/strain. Supervisor: r. P. Griffin
## 2267                                                                                                             06/28/2000 10:37 am employee was removing a nut with a wrench; when the wrench spun catching his right little fingernail. Supervisor: david leon pruitt
## 2268                                                                                                                                       06/28/2000 11:02 am employee was raking asphalt; when he felt pain in his chest area on 2/22/00. Supervisor: howard v. Inscoe
## 2269                             06/28/2000 11:10 am employee was using a shovel to remove reflective pavement markers form asphalt pavement on 5/30/00. After bending and stooping all day he began to feel pain in his neck and back areas. Supervisor: l. O. Ethridge
## 2270                                                                                                                                     06/28/2001 08:59 am (fblackmo) the employee got hit on I-85 north by a private vehicle in the rear. Supervisor: wayne childress
## 2271                                                                                      06/29/1999 01:57 pm employee was cleaning out a pipeline with a shovel, when he stepped down in the ditch and his foot slipped. He bruised his right knee at time of incident.
## 2272                                                                                                                        06/29/1999 02:09 pm employee was working in the office, when he banged his right knee against the desk while attempting to walk by the desk.
## 2273                                                                                   06/29/1999 02:21 pm employee was walking down the stairs from the 4th floor taking work to the 3rd floor, when she stepped wrong causing her left ankle to pop and start hurting.
## 2274            06/29/1999 02:53 pm employee was getting out of truck at the time of injury. He had his hand on the handle behind the door of the truck. He shut the door and caught his fingers between door and frame of the truck. He cut and bruised his left little
## 2275                                                                                                                             06/29/1999 03:07 pm employee was clearing right of way on I-40 in haywood county, when he came in contact with poison oak on both arms.
## 2276                                                                                                                                            06/29/1999 03:13 pm employee was painting bridge rails, when a tick was found in the employees head. 02/01/2000 12:43 pm
## 2277                                                                                                                   06/29/1999 03:21 pm employee was clearing right of way on I-40 in haywood county, when he came in contact with poison oak on both arms and hands.
## 2278                                                                                                06/29/2001 02:58 pm (fblackmo) the employee was sharping his bush axe when he missed the blade and cut the fore part of his right arm. Supervisor: j. W. Sutton, jr.
## 2279                                                                                             06/29/2001 03:18 pm (fblackmo) the employee was removing vegetation from beside the highway with his bush axe and walked into poison ivy. Supervisor: j. W. Sutton, jr.
## 2280                                                                                                                      06/29/2001 03:33 pm (fblackmo) the employee was doing work in sampson county when a tick got on his left shoulder. Supervisor: b. D. Underwood
## 2281                                                        06/29/2001 03:50 pm (fblackmo) the employee strain his back lifting and replacing bolts and bearings on a disc harrow. He felt a sharp pain in his lower back as he was getting up. Supervisor: j. D. Tucker
## 2282                                                   06/29/2001 04:07 pm (fblackmo) the employee attempted to lift a heavy box full of paper. When she tried to flip the box over the incident occurred, causing severe pain to the chest. Supervisor: alan fitzgerald
## 2283                      06/30/1999 08:38 am employee was placing pipe hooks in a pipe, while lifting the pipe hook, the employee strained his lower back. 01/14/2002 10:04 am (kbarefoo) *show all bills to joyce* 11/6/2006 01:39 pm (fblackmo) claim closed. Clinche
## 2284                                          06/30/1999 08:48 am employee received blister on outside of his left heel, when sparks of molten steel drops was falling around him. A piece of molten steel got into his shoe past tongue and laces. His foot was burned.
## 2285          06/30/1999 09:06 am employee was setting right of way monuments (which required cutting bushes with bush axe), when the rebar fell into poison ivy bushes. The employee reached in to get instrument out of bushes when he became affected with rash on bo
## 2286                                      06/30/2000 04:34 pm employee twist/strained his lower back and left leg when he stepped into a hole covered with grass. Employee was attempting to conduct a cvsa inspection on a stopped vehicle. Supervisor: ssg. M. A. Dunn
## 2287                                                    06/30/2000 05:07 pm employee was using a drilling into a wooden desk; when the bit slipped off the screw and caught his left index finger. (puncture wound and possible tissue damage) supervisor: harvey mangum
## 2288                                                                                   06/30/2000 05:08 pm employee was trying to tighten a large nut on end of blade shaft; when the pipe wrench twisted causing him to cut his right foot. Supervisor: d. M. Honeycutt
## 2289                                                                                       06/30/2000 05:26 pm employee was picking up litter on shoulder of highway; when he stepped on a nail in a board causing a puncture to his left foot. Supervisor: s. E. Propst
## 2290                                                                                                                            06/30/2000 11:44 am employee stepped down out of truck into a hole on shoulder of roadway twisting his right knee. Supervisor: g. C. Dry
## 2291                                                                                        06/30/2003 03:48 pm (fblackmo) employee was riding in state vehicle when, something hit the window striking employee over his right eye. Supervisor: charles david childress
## 2292                                                                                                                    07/01/1999 01:16 pm employee was hit from behind in a car accident. The car behind him failed to stop causing muscle strain and lower back pain.
## 2293                                                                                                                                07/01/1999 01:54 pm employee was cutting cross sections sheets at the layout table with an x-acto knife, when he cut his left thumb.
## 2294                                                                    07/01/1999 02:01 pm employee came in contact with poison oak while clearing overgrowth around bridges. The rash/allergic reaction is over large part of upper body and arms. 02/01/2000 10:57 am
## 2295                                                                        07/01/1999 02:10 pm employee was backing up grader when rear wheels hit an obstruction an bounced over it. He turned to see what was behind him, when he felt a pop in his middle back area.
## 2296                                                                                         07/01/1999 03:10 pm employee was cleaning debris off a bolt with grinding wheel, when grinder grabbed bolt and left index finger. This incident tore skin off index finger.
## 2297                                                                                  07/01/1999 03:23 pm employee was cutting right of way at the intersection when he came in contact with poison ivy. Contact of poison plant was on face, neck, both hands and back.
## 2298                                                                                                                       07/01/1999 03:30 pm employee was removing handrail from bridge, when a board with a nail in it fell on top of right foot. 02/01/2000 01:07 pm
## 2299                                         07/01/1999 03:37 pm employee was bitten on the left thumb, while trying to remove a stray kitten off the bus. Note: due to severe cases of rabies the doctor (mary k. Tucker) recommended he take a series of rabies shots.
## 2300                                                                            07/01/1999 04:04 pm employee was given a diagnosis of carpal tunnel syndrome on 5-26-99 due to repetitive motion (keying, writing, filling). Both hands, wrist, and 3 fingers and thumb.
## 2301                                                                                                                                            07/01/1999 04:13 pm employee was cutting brush around bridge, when he cut skin on left index finger. 02/01/2000 01:27 pm
## 2302             07/01/2002 01:50 pm (fblackmo) employee was in dare co. Planting grass on a mitigation site. The job called for her to be squatted over and moved forward by shuffling her feet. The job had her in this position for around six hours. On the way back
## 2303                                                                                                                  07/01/2002 02:10 pm (fblackmo) employee states that unhooking a safety lanyard form sign, cut hand on a rigged strap. Supervisor: patti g. Newsome
## 2304                                                                                       07/01/2002 02:22 pm (fblackmo) employee was adjusting brakes on tandem dump truck. Employee changed position, hit head on hydraulic tank brackets. Supervisor: sanford barton
## 2305                                                                                                         07/01/2002 02:31 pm (fblackmo) employee was drilling on a catch basin form and a piece of metal came off and went into his eye. Supervisor: r. A. Ellington
## 2306                                                                                                                    07/01/2002 02:41 pm (fblackmo) employee was walking across flower bed to get to roadway and got bit by a spider on leg. Supervisor: gene johnson
## 2307          07/01/2002 02:52 pm (fblackmo) employee was operating a chainsaw cutting a tree from travel way when, came into contact with poison ivy. A rash occurred on 6/21/02 but employee did not seek medical attention until 6/25/2002. Supervisor: f. E. Roberts
## 2308           07/01/2002 03:08 pm (fblackmo) employee was truck spotting on state road 1005 for paving machine. Employee was sitting on top of the paving machine when a private vehicle hit the asphalt and slid into the paving machine. Supervisor: alonza b. Sawyer
## 2309                                                                                        07/01/2002 10:09 am (fblackmo) employee states while assisting another employee lift a water buffalo to truck, he felt pain in his lower back. Supervisor: thomas ray twiddy
## 2310                                                                                                               07/01/2002 10:33 am (fblackmo) employee stated that he developed a sore lower back caused by shoveling and raking asphalt. Supervisor: s. D. Chandler
## 2311                                                                                         07/01/2002 10:51 am (fblackmo) employee was scraping clay of the fin of his truck when he struck the jagged fin and injured his right pinky finger. Supervisor: j. R. Price
## 2312                                                                                        07/01/2002 12:15 pm (fblackmo) employee was painting boxing outside of maintenance building with a roller when, felt sudden pain in his chest area. Supervisor: c. M. Conner
## 2313                                  07/01/2002 12:36 pm (fblackmo) employee states while bending rebar with pipe to shape it, rebar broke pinning middle finger on right hand between workbench and pipe causing injury to finger and wrist. Supervisor: j. L. Cornell
## 2314                                                                 07/01/2002 12:47 pm (fblackmo) employee was helping unload pallet of silt fence. Top layer shifted, employee lost footing and hit left knee on remaining stack of pallet. Supervisor: j. D. Shelton
## 2315                                                                                                               07/02/2002 01:48 pm (fblackmo) on 6/15 employee was conducting a field investigation when, found tick bite on back and hip area. Supervisor: hal bain
## 2316                                                                                                                                07/02/2002 02:02 pm (fblackmo) employee was walking to visit another employee when, slipped on wet floor. Supervisor: charles burton
## 2317                                                                                                                                           07/03/07 supv. Work detail eci firing range all day, got home to shower, tick on neck, got sick 07/10/07, Dr On 07/11/07.
## 2318                                                                  07/03/2000 04:30 pm employee was cutting bushes around bridge when he came in contact with poison ivy on 6/8/00. He has contact rash on both arms, legs, stomach and face. Supervisor: r. J. Terry
## 2319                                                                      07/03/2000 04:35 pm employee was driving a diesel pan loader moving soil on 6/1/00. The pan bounced up causing him to bump his left knee on signal light switch. Supervisor: james e. Burleson
## 2320                                                                                              07/03/2000 04:45 pm employee was trying to get pipe out of dump truck; when he pulled disc in his lower back by lifting up on the tailgate. Supervisor: terry a. Woody
## 2321                     07/03/2000 04:50 pm employees right index finger was caught between truck tailgate and chain on 6/8/00. Employee didn't realize other employee had released the tailgate, causing his finger to be mashed. Supervisor: ralph thomas mcmanus, jr
## 2322                                                                                                            07/03/2000 04:55 pm employee was working with asphalt crew on us highway 117 when he was bitten by a tick on his upper left leg. Supervisor: joe justice
## 2323                                                                                                                                            07/03/2000 05:00 pm employee was mowing grass when debris flew up from mower into his left eye. Supervisor: t. C. Tilley
## 2324                                                          07/03/2000 05:15 pm employee came in contact with poison ivy while waiting for a load of material at jobsite on 6/9/00. He has contact rash on both arms, ears, neck, and face. Supervisor: w. D. Laughter
## 2325             07/03/2000 08:29 am a car had stopped to make left turn was rear ended and knocked into the path of state vehicle, causing $4000. 00 damages to state vehicle. 08/02/200 09:00 am employee was traveling east on us 117 when a private vehicle struck a
## 2326                                                                                                                                      07/03/2003 10:10 am (fblackmo) employee was opening pain when, paint and fumes hit him in his eyes. Supervisor: roger pulcheon
## 2327                                                                                                                     07/03/2003 10:24 am (fblackmo) employee states while driving down road, he struck another vehicle that was turning. Supervisor: jerome lcoklear
## 2328                                                                      07/03/2003 10:54 am (fblackmo) employee was preparing to put fuel in a compactor when, he placed his left hand on the hot muffler resulting in a burn to his fingers. Supervisor: b. Singleton
## 2329                                                                                                                    07/03/2003 11:12 am (fblackmo) employee was cutting a pipe when, the pipe twisted causing a cut to his little finger. Supervisor: jackie matheny
## 2330                                                                                                                                               07/03/2003 11:20 am (fblackmo) employee tripped over gas pump hose while fueling up vehicle. Supervisor; t. M. Mckeel
## 2331                                                                                            07/03/2003 11:36 am (fblackmo) employee was cutting right of way for road construction project when, he felt pain in his right hand and wrist. Supervisor: a. R. Hensley
## 2332                                                                                                                        07/03/2003 11:51 am (fblackmo) employee was picking up old bed frame from out of the road when, he cut his finger. Supervisor: r. D. Pittman
## 2333                                                                                                              07/03/2003 12:03 pm (fblackmo) employee was walking between two microfilm readers when, she tripped over some exposed wires. Supervisor: paula windley
## 2334                         07/05/2000 03:44 pm customer was on a road test when he pulled into traffic in front of tractor trailer. The tractor hit state vehicle on the front passenger side. Mr. Moxley strained muscles in his upper back. Supervisor: t. M. Bailey
## 2335                      07/05/2000 03:51 pm employee was driving down highway 74 on 6/22/00; when an inmate hit him in the head twice with a ball peen hammer. Supervisor: m. D. Warwick 09/08/2004 03:51 pm (kbarefoo) Dr. Rao has requested that an ambulatory eeg 1
## 2336                                                                                                                                       07/05/2000 04:00 pm employee states she has stress and anxiety-related conditions on the job. Supervisor: timothy v. Rountree
## 2337                                                                                                        07/05/2000 09:15 am employee was driving a wooden survey stake into the ground with a 4 pound hammer; when she bruised her left hand. Supervisor: tom bohrer
## 2338                                          07/05/2000 09:20 am employee was feeding brush into chipper; when a limb became jammed in the chipper. When he jerked the limb his hand hit the flap of the chute cutting his right middle finger. Supervisor: j. N. Mixon
## 2339                                                                                     07/05/2000 09:25 am employee was inspecting crossing pipes when he came in contact with poison ivy. He has contact rash on both arms, legs and face. Supervisor: k. L. Anderson
## 2340                                           07/05/2000 09:30 am employee scraped/cut his right forearm from his elbow to back of hand on 6/13/00. He was holding end of lumber with one hand when it rolled over and slid down his forearm. Supervisor: gerald messer
## 2341                                                                                                       07/05/2000 09:37 am employee was in a wooded area locating survey points; when he was stung by a bee/wasp underneath his left eye. Supervisor: o. T. Anderson
## 2342                                                                                             07/05/2000 09:50 am employee was answering phones on 6/14/00; when lightning struck into phone system causing damage to her left ear. Supervisor: tracey conrad-pittman
## 2343                                                      07/05/2000 10:00 am employee pulled muscles in his right shoulder on 6/15/00. He was dragging tree limb to chipper; when glove hung up on tree limb causing him to twist his shoulder. Supervisor: j. W. Dyson
## 2344                                07/05/2000 10:05 am employee was sitting in pickup truck on 6/16/00; when the driver of the truck backed into a tree. Ms. Riddle sprained/strained her neck and upper back (cervical) due to this incident. Supervisor: g. M. Taylor
## 2345                                                                                                                       07/05/2000 10:20 am employee was stung by a wasp while loading state vehicle on 6/19/00. Unknown location of sting. Supervisor: j. E. Beverly
## 2346                                                                                            07/05/2000 10:30 am employee was driving a metal fence post with a t-post driver; when he struck post the driver struck him in his head. Supervisor: l. S. Carpenter, jr
## 2347                                                                07/05/2000 10:36 am employee cut her right knee requiring a tetanus shot on 6/20/00. She picked up a metal trash can with a rusted bottom causing the injury to her leg. Supervisor: rebecca simpson
## 2348                                       07/05/2001 02:45 pm (fblackmo) the employee was driving fence stakes on steep using a hand held driver which slides up and down. The driver came off the stake striking the employee in the head. Supervisor: d. L. Carpenter
## 2349                                                                                                                                      07/05/2001 03:11 pm (fblackmo) the employee was working with a patching crew, and was bit by a tick. Supervisor: r. E. Bennett
## 2350          07/05/2001 03:34 pm (fblackmo) the employee was cutting a rope on the emergency generator stair on the m/v chicamacomcio, while cutting the rope the employee lost his balance and fell on the stairs causing the injury to his leg. Supervisor: thomas fo
## 2351                                                07/05/2001 03:58 pm (fblackmo) the employee was cleaning the stopped up chipper by hand. The employee cut his finger when he caught it between the wheel and metal cover on the machine. Supervisor: d. L. Carpenter
## 2352                                                                                                                                07/05/2001 04:16 pm (fblackmo) the employee was lifting a piece of guard railing and strained his back. Supervisor: barry f. Kizziah
## 2353                                                                                             07/05/2001 04:31 pm (fblackmo) the employee was removing a 8'' diameter 4' long tree limb from the roadway when he felt a pain in his back. Supervisor: prudencio casas
## 2354                                                                                                                07/05/2001 04:54 pm (fblackmo) the employee was on job site refueling tractor. Insect bit employee on left side of arm. Supervisor: t. A. Harrington
## 2355                                                                                                                                              07/05/2001 05:15 pm (fblackmo) the employee hurt his hand at work station while on the ferry. Supervisor: e. M. Farrow
## 2356                                                                  07/05/2001 05:42 pm (fblackmo) the employee stepped into the channeled out area, he placed his foot onto an area that was not level, which caused his left ankle to twist. Supervisor: d. R. Bryan
## 2357           07/06/1999 03:56 pm employee was mounting a sign onto a u-channel galvanized post. He was drilling a bolt hole with a hand held drill, when drill bit became lodged causing the drill to spin into the employee right hand. His right wrist was twisted a
## 2358                                                                                                               07/06/2001 09:32 am (fblackmo) the employee states she has numbness in all fingers on left hand and extreme pain in left arm. Supervisor: teresa cone
## 2359                                                                                           07/06/2001 09:58 am (fblackmo) the employee states his right shoulder has been bothering him since he was racking asphalt on May 24, 2001. Supervisor: charles frank vick
## 2360                                                                     07/06/2001 10:31 am (fblackmo) the employee was assaulted by an another employees wife. The employee was hit with a telephone handset, fist, and knocked to the floor. Supervisor: richard bass
## 2361                                                      07/06/2001 10:52 am (fblackmo) the employee was running tractor broom when dump truck came through work zone passing a flagman holding a stop sign and hit the tractor in the rear. Supervisor: steve w. Davis
## 2362                                                                                                 07/07/1999 01:50 pm employee was entering data into computer, when she turned left in her chair she striking her left hand on back of computer. 02/01/2000 11:33 am
## 2363                                                                                                                                                          07/07/1999 01:58 pm employee was surveying for a bridge project, when she found a tick lodged in her head.
## 2364                                         07/07/1999 02:12 pm employee was standing on office table to open air conditioning vent, when her left foot turned causing her right knee to bend inward. She fell approx. 2 1/2 feet to the floor injuring her right knee.
## 2365                                                                                                                             07/07/1999 08:44 am employee was getting down from back of a truck, when his foot slipped and hit his left arm on the bed of the truck.
## 2366                                                                                              07/07/1999 09:09 am employee was using an electric drill to install a window screen in a van, when drill slipped causing a drill bit to poke him in left lower eyelid.
## 2367                                                                                                                 07/07/1999 09:17 am employee was walking across bluebell lot performing a pre-trip inspection, when he stepped in a hole and twisted his left foot.
## 2368                                                                                                                        07/07/1999 09:30 am employee squatted down to move a 12" x 12" timber block, when his lower back popped. At this time he felt a lot of pain.
## 2369                                                          07/07/1999 09:41 am employee was bending over to look in a pipe, when an otter jumped out of water into his face. The employee jumped and fell on his hands hurting his left shoulder. 02/04/2000 10:10 am
## 2370                07/07/2000 02:30 pm employee was conducting a road test when customer failed to stop at sign. He jammed the brakes causing the vehicle to stop abruptly. This caused pain in her neck and upper back (cervical) strain. Supervisor: sylvia r. Spain.
## 2371                  07/07/2000 02:41 pm employee climbed on wet bulwarks on port bow of marine vessel to remove a mooring line from hook. She slipped and fell back on deck, fracturing her left elbow and sprain/twist her right ankle. Supervisor: kenneth j. Morris
## 2372                                                                                                     07/07/2000 02:48 pm employee has carpal tunnel syndrome in both hands due to the vibration from progressive use of chainsaw on job. Supervisor: roger d. Peeler
## 2373                                                                                                                         07/07/2000 02:52 pm employee was under bridge loosening a bolt; when a chunk of asphalt fell on his left forearm. Supervisor: w. D. Watkins
## 2374                                                                                                                                                         07/08/1999 09:34 am employee was getting out of a truck, when a bee stung him on the left side of his head.
## 2375                                     07/08/1999 09:59 am employee was in a 30' rcp grouting up a hole, when he felt a pull and slight pain in his chest. The employee went to the next job and the pain became severe. Pulled a muscle in upper right side of chest.
## 2376                                                                                                        07/08/1999 10:26 am employee was mowing around bridges with a weed eater, when he came in contact with poison ivy on both arms and face. 02/01/2000 01:27 pm
## 2377                                                                        07/08/1999 10:33 am employee was spraying roundup herbicide in heavy vegetation area, when he tripped and fell due to uneven terrain. He bruised/sprained his back at the base of his spine.
## 2378                                                                                                                   07/08/1999 10:40 am employee was clearing right of way on I-40 in haywood county, when he came in contact with poison oak on both arms and hands.
## 2379                      07/08/2003 01:42 pm (fblackmo) employee was giving road test when, the driver ran off road striking traffic control box. Supervisor: lorrie sineath 10/27/2003 11:25 am (kbarefoo) 8/2/2005 02:13 pm (fblackmo) show all bills to joyce before
## 2380                                                                                  07/08/2003 01:53 pm (fblackmo) employee hit a private vehicle in the rear when, the private vehicle slammed on its brakes to turn into a service station. Supervisor: r. J. Downes
## 2381                                                                                                                                           07/08/2003 02:06 pm (fblackmo) employee felt pain in his back while, lifting a paint barrel. Supervisor: franklin bullock
## 2382                                                                                                                                     07/08/2003 02:17 pm (fblackmo) employee was climbing down ladder when, he felt pain in his left knee. Supervisor: leonard dills
## 2383                                                                                                                                 07/08/2003 02:28 pm (fblackmo) employee was walking down trailer ramp when, he felt pain in his left foot. Supervisor: r. S. Burton
## 2384                                                                                                          07/08/2003 02:43 pm (fblackmo) employee was loading limestone into hydro seeder when, his foot became hung underneath the pallet. Supervisor; r. E. Warren
## 2385                                                                                                                                               07/08/2003 03:27 pm (fblackmo) employee was putting in drain pipe when, he cut his left hand. Supervisor: r. D. Davis
## 2386                                                                                                        07/08/2003 03:45 pm (fblackmo) employee was helping another employee who was stuck in the mud when, he felt pain in his left knee. Supervisor: d. Chad kimes
## 2387                                                                                                                          07/08/2010 03:07 pm (slee) employee became disoriented while setting at asphalt loading scales and struck sidewall of scales when leaving.
## 2388                                                                                                                                            07/09/2001 03:16 pm (fblackmo) the employee was lifting an a/c condenser to set in place. Supervisor: donald l. Ferguson
## 2389                                        07/09/2001 03:41 pm (fblackmo) the employee was clearing r/w on new grade project. Removed a tick off himself on thursday 6/28/01. On monday the tick bite was red, the employee was sent to doctor. Supervisor: w. H. Lynch
## 2390                                                                                          07/09/2001 04:13 pm (fblackmo) the employee started down the steps of loading dock to go to the dumpster, he missed his step causing him to fall. Supervisor: t. M. Boland
## 2391                                                                                   07/09/2001 05:08 pm (fblackmo) the employee was using water pump with gas engine. Employee removed gas line, line came loose gas got into employees eyes. Supervisor: w. H. Lynch
## 2392                                                                                                                                        07/09/2001 05:28 pm (fblackmo) the employee was walking beside road, grass and weeds was high. Supervisor: thomas b. Johnson
## 2393                                                                                                        07/09/2002 01:28 pm (fblackmo) employee was sitting in d. O. T. Vehicle when it was struck in the rear by an oncoming private vehicle. Supervisor: jim allen
## 2394                                              07/09/2002 01:40 pm (fblackmo) employee was giving road test when the customer of the vehicle failed to yield to on coming traffic, private vehicle struck the car on the left side. Supervisor: l. Moose and tex kidd
## 2395                                                              07/09/2002 02:01 pm (fblackmo) employee was lifting ramps off trailer floor and felt sharp pain in lower right side. Another employee(t. T. Holifield)witnessed the incident. Supervisor: l. D. Greene
## 2396                                                                                                                07/09/2002 02:19 pm (fblackmo) employee was walking across parking lot when he made a Miss-Step and twisted his left ankle. Supervisor: r. M. Marion
## 2397                                            07/09/2002 02:52 pm (fblackmo) employee was using a two pound maul to hammer nails into the pavement for surveying purposes. Employee missed the nail and hit his ring finger on left hand. Supervisor: boyd tharrington
## 2398                                                                       07/09/2002 03:05 pm (fblackmo) employee was using hand saw or head to cut down limbs. The repetitive motions from the saw caused him to experience pain in left arm. Supervisor: james isaac,
## 2399                                                                                                                              07/09/2002 03:20 pm (fblackmo) employee states while doing surveying in wooded area, tick bite on groin area. Supervisor: r. J. Downes
## 2400                                                                                                                         07/09/2002 03:40 pm (fblackmo) employee tripped while exiting building and fell through glass window pane in door. Supervisor: s. H. Kinner
## 2401                                                                                                                 07/09/2002 03:56 pm (fblackmo) employee was cutting trees with poison oak on them and around them when he came into contact. Supervisor: t. L. Hall
## 2402                                                                                                                                  07/09/2003 07:27 am (fblackmo) employee was loading trash in bin when, he cut his arm on a piece of metal. Supervisor: chris baker
## 2403                                                             07/09/2003 08:03 am (fblackmo) employee was stripping the outer jackets off traffic signal wiring with a electric knife when, the knife slipped causing a cut to his finger. Supervisor: james g. Tyler
## 2404                                                                                                                          07/09/2003 08:23 am (fblackmo) employee states he cut his right arm while installing a tool box on flat bed truck. Supervisor: a. B. Davis
## 2405                                                                                                             07/09/2003 08:38 am (fblackmo) employee stated dust flew into his eyes while completing repairs on a lowboy trailer outside. Supervisor: charles hatley
## 2406                                                                   07/09/2003 08:54 am (fblackmo) employee states while driving in center lane she met a school bus; mirrors hit causing glass to fly cutting employees face and neck area. Supervisor: w. D. Silver
## 2407                                                                                                                                                   07/09/2003 09:46 am (fblackmo) employee states he struck his right lower leg on guardrail supervisor: m. L. Smith
## 2408                   07/10/2000 05:25 pm employee noticed on 5/16/00 his hands were numb and ache after drilling all day. He went to orthopaedic on 6/12/00 and was told he has carpal tunnel syndrome. Supervisor: e. A. Witort 10/21/2003 03:09 pm (gwhite) 11/24/20
## 2409                                                                                   07/10/2000 05:29 pm employee was rolling a piece of 18" pipe along level ground; when he felt a sharp pain in his lower back, left hip and thigh area. Supervisor: w. D. Laughter
## 2410                                                                                                                           07/10/2000 09:57 am employee was fueling diesel truck; when foreign object (fuel) splashed up into his left eye. Supervisor: alvin davis.
## 2411            07/10/2002 03:01 pm (fblackmo) employee was flagging for patching operation. When relieved for water break, employee approached the crew cab door on the ditch side of the cab. Employee slipped and tried to catch himself on the steps. Supervisor: r.
## 2412                                                                                                                  07/10/2002 03:14 pm (fblackmo) employee was bitten by a tick from being in a grassy and wooded area in granville county. Supervisor: d. L. Bagwell
## 2413                                                                                                                                    07/10/2002 03:28 pm (fblackmo) employee was clearing brush when came into contact with poison oak plant. Supervisor: doug mcneal
## 2414                                                                                                                                 07/10/2002 03:36 pm (fblackmo) employee was clearing brush on us 70 when came into contact with poison ivy. Supervisor: doug mcneal
## 2415                                                                                                                               07/10/2002 03:55 pm (fblackmo) employee was clearing brush when she came into contact with poison ivy planet. Supervisor: doug mcneal
## 2416                                                                                                                           07/10/2002 07:25 am (fblackmo) employee states that while doing bridge work, came into contact with poison plant. Supervisor: a. L. Clark
## 2417                      07/10/2002 07:37 am (fblackmo) employee states that he was working on the m/v roanoke when he began to feel light headed, weak, and vomiting. Employee was taken to supervisor and then to outer banks hospital. Supervisor: kevin lamar cooke
## 2418                                                                                                                          07/10/2002 07:50 am (fblackmo) employee was exiting truck, foot slipped off side step causing the injury to knee. Supervisor: thomas cruse
## 2419                                                                                                                            07/10/2002 08:03 am (fblackmo) employee was operating sheepfoot roller when he felt a sting to his left hand. Supervisor: marc p. Morgan
## 2420                                                                                                                    07/10/2002 08:49 am (fblackmo) employee was working on patch crew when she felt something bite her below her right eye. Supervisor: david lowery
## 2421                                                                                    07/10/2002 08:57 am (fblackmo) employee states while installing signs to paint road and working on special marking crew, was stung by bees on right hand. Supervisor: w. R. Wall
## 2422                                                                                                  07/10/2002 09:14 am (fblackmo) employee was working on gaillimore dairy road in guilford county when something bite him on his upper lip. Supervisor: s. G. Dillon
## 2423                                                                  07/10/2002 09:22 am (fblackmo) employee was walking out of the equipment department when he stepped on a bolt causing him to fall scraping the skin on right forearm. Supervisor: r. T. Mcmanus jr
## 2424                    07/10/2002 09:36 am (slee) employee was stopped in the southbound lane of us 117 waiting for another vehicle to make a left turn. Private individual was traveling southbound on us 117 also. Private vehicle failed to stop and rear-ended sov.
## 2425                                                                                                                                              07/10/2003 03:12 pm (fblackmo) employee experienced heat exhaustion while working on pavement. Supervisor: greg godwin
## 2426                                                                                                                    07/11/2000 08:52 am employee was picking up a 12 foot sign post from the ground; when he sprained/strained his lower back. Supervisor: j. L. Day
## 2427           07/11/2000 08:56 am employee was left hanging in safety bucket of a truck; when the hydraulic valve struck the boom. This caused the bucket to slam into the utility bed of the truck. Mr. Miller has soreness to his abdomen due to this incident. Super
## 2428                                                              07/11/2000 09:04 am employee was picking up debris on the sides of the road on 4/26/00. He stepped in a hole that was covered by grass and sprain/strained his left knee. Supervisor: mark e. Stafford
## 2429                                                                                         07/11/2000 09:10 am employee was trying to put chain on power saw; when his hand slipped causing a laceration to his right ring and little fingers. Supervisor: w. H. Lynch
## 2430                                                                                                             07/11/2000 09:16 am employee was building a fence; when he bent over to pick up a post he strained his lower back (right side). Supervisor: d. C. Capps
## 2431                                                                                                  07/11/2000 09:21 am employee was trimming around bridge #144; when he came in contact with poison ivy. He has contact rash on both arms. Supervisor: e. W. Huffman
## 2432          07/11/2000 09:28 am employee was performing sign maintenance on various roads in chatham county on 6/13/00. This task required him to walk in tall grass along the roadside; when later that day he found a tick on his left leg seeking medical attention
## 2433                              07/11/2000 09:36 am employee strained his lower back while loading a truck on 6/13/00. A rock got hung in truck bed causing the truck to go up in the air. When the truck came back down he injured his back. Supervisor: leoda mathis
## 2434                                                              07/11/2000 11:16 am employee was cutting down dead trees and pushing the trees so they could fall in the right position; when he was bitten by an insect on his left thigh. Supervisor: c. H. Winstead
## 2435                                                                                   07/11/2000 11:22 am employee was working on a patch crew shoveling/raking asphalt on 6/14/00. The next morning he had numbness in his left arm and hand. Supervisor: a. S. Bailey
## 2436                                                                              07/11/2000 11:28 am employee was cutting down a tree on 6/15/00; when he came in contact with poison ivy. Employee has contact rash on his left forearm. Supervisor: c. N. Edwards, jr
## 2437                                                   07/11/2000 11:40 am employee was clearing the right of way on lake view drive when he came in contact with poison ivy. He has contact rash on his face, right hand, and right wrist. Supervisor: mark e. Stafford
## 2438                                        07/11/2000 11:45 am employee was trying to get back into truck when his foot slipped and he fell landing on pavement. He hit a brick wall first and then fell to the ground injuring his lower back. Supervisor: r. D. Brown
## 2439                                                     07/11/2000 11:52 am employee stated that he was standing in one place while flagging on 6/14/00. He decided to move around and when he took a step he turned/twisted his right ankle. Supervisor: j. E. Corbett
## 2440             07/11/2000 11:58 am employee became nauseated and vomit twice after eating lunch on 5/18/00. After he vomit the second time, employee fell backwards bruising his elbows. Supervisor: r. W. Lewis note: employee brought a sandwich from home for lunch
## 2441            07/11/2000 12:23 pm employee was hauling abc aggregate stone to a work site project on 6/9/00. As he was approaching the intersection a private vehicle pulled out in front of him. This caused his vehicle to collide into the private vehicle. Mr. Aur
## 2442                                                                                                                                 07/11/2002 07:29 am (fblackmo) employee was clearing brush on us 70 when came into contact with poison ivy. Supervisor: doug mcneal
## 2443                                                                                                                                              07/11/2002 07:45 am (fblackmo) employee was assisting sheriff officer with h. I. V. Patient. Supervisor: e. C. Bristle
## 2444                                                                                                                                            07/11/2003 04:34 pm (fblackmo) employee was stacking oak boards when, he felt pain in his back. Supervisor: dennis baker
## 2445                                                                                       07/12/1999 08:22 am employee was working on the top of passenger lounge of m/v hunt, when a gust of wind blew foreign object into his right eye. Supervisor: david l. Pruitt.
## 2446                                                                                         07/12/1999 08:29 am employee was welding/needle gunning metal in hull shop, when a piece of hot slag (foreign object) flew into his left eye. Supervisor: richard dewhurst.
## 2447                                                                                                                                    07/12/1999 08:34 am employee was shoveling asphalt, when he strained his right arm from pushing shovel. Supervisor: j. S. Walker
## 2448              07/12/1999 08:42 am employee was traveling in denver colorado when he was injured in a rented vehicle. Employee was on passenger side while going to the airport in colorado. The car was struck on that side injuring his right hip. Supervisor: davi
## 2449                                     07/12/1999 08:51 am employee was working with a ditching crew on sr 1434 in halifax county. The employee went to the bathroom in woods, when he found a tick in his right groin area late the next day. Supervisor: t. J. Shaw.
## 2450                  07/12/2010 10:30 am (slee) sov was headed north on us 401 and pov was headed east on forrestville road.. Both vehicles entered the intersection at the same time and collided. Red light violation on the sov. 07/21/2010 12:22 pm (slee) other pe
## 2451                                                                                                  07/13/1999 09:06 am employee was lifting guardrail with another employee, when he felt pain in his lower back. Supervisor: w. L. Saunders, jr. 02/01/2000 12:50 pm
## 2452                                                                                07/13/1999 09:15 am employee pulled on string attached to a nail in the wall of building, when nail came out and struck his left arm near his wrist. Supervisor: roy donald pittman.
## 2453             07/13/1999 09:20 am employee was pulling heater hose from engine, when anti-freeze splashed into trache tube and into his face. He inhaled small amount of anti-freeze into his lungs. The hose would not come off easily. The anti-freeze went through
## 2454                                                                     07/13/1999 09:29 am employee was cutting right of way with a frail mower, when he came in contact with chiggers insects. Chigger bites throughout body and all limbs. Supervisor: m. H. Brewer.
## 2455                                                                                 07/13/1999 09:36 am employee was operating an asphalt roller, when he lost control of the machine injuring and bruising his right side and mid back area. Supervisor: m. H. Brewer.
## 2456                                                                                                             07/13/1999 09:55 am employee lost footing while standing on concrete wall. He fell on wall bruising his sternum (chest area). Supervisor: c. R. Styles.
## 2457                                                     07/13/2000 09:13 am employee was removing a rear spring on truck; when the spring slipped and caught his right little finger. He has a mashed off portion underneath the finger nail. Supervisor: c. D. Watkins
## 2458                                     07/13/2000 09:55 am employee was removing brush from right of way (trimming trees); when he came in contact with poison ivy. He has a severe contact rash on both legs and the back of his heels. Supervisor: arthur glen short
## 2459                                       07/13/2000 10:00 am employee states he has been having problems with his hands due to repetitive motion from working 13 years. Both wrists falls to sleep and has been occurring over period of time. Supervisor: r. D. Isley
## 2460             07/13/2000 10:33 am employee was welding metal catch basin lid on 6/28/00. The lid was propped up with a piece of angle iron. A tractor trailer passed by causing the ground to shake and the lid to fall on both of his legs. He has a deep cut on his
## 2461                                                                                                                                      07/13/2000 10:40 am employee hit his head when he walked into dump truck side view mirror on 6/26/00. Supervisor: j. S. Walker
## 2462                  07/13/2000 10:47 am employee was mowing with a long arm attachment when the tractor became hooked on pine logs and threw the tractor side ways. She has injuries to her upper back (cervical & thoracic strain). Supervisor: k. R. Davis 08/03/200
## 2463              07/14/1999 01:13 pm employee was flagging traffic standing on side of the road, when a van hit her right hand. She turned the paddle slow to allow van to go through the workzone area, when the van got to close to her. Supervisor: w. E. Newton jr.
## 2464                                                                                         07/14/1999 01:40 pm employee was lifting timber to throw onto the scrap pile, when employee felt his back pop in lower back. Supervisor: hugh williams. 02/01/2000 01:20 pm
## 2465                                                                                                                                                                                                  07/14/1999 01:48 pm employee found a tick stuck on center of back.
## 2466                                                                                                   07/14/1999 01:55 pm employee was removing old brake shoe rollers on rear of truck, when hammer chipped roller piece of steel went in his left leg. Supervisor: ne
## 2467                                                                                                                                         07/14/1999 02:06 pm employee was stung by a bee on his right hand while working in the field. Supervisor: v. Marcus lowery.
## 2468                                                                                 07/14/1999 02:59 pm employee was checking oil in a truck. While lifting the hood, he experience pain between shoulder blades causing his arms to seem numb. Supervisor: j. E. Belk.
## 2469                                                                          07/14/1999 08:47 am employee was pushing stones on jobsite (yard), when he slipped in loose stones hurting his left leg and back. He was trying to get off dozer. Supervisor: hazel hough.
## 2470                                                                        07/14/2000 09:53 am employee suffered heat exhaustion on 6/16/00 while working on dry creek road in montgomery county. He was shoveling asphalt at time of injury. Supervisor: d. J. Shepard
## 2471                                                                                                        07/14/2000 09:58 am employee was pushing crash cushion to line up holes for a locking pin; when he strained his left side area. Supervisor: charles r. Sharp
## 2472                                                                                   07/14/2000 10:04 am employee was walking into the woods to use the bathroom; when he came in contact with poison ivy. He has contact rash on both arms. Supervisor: d. R. Chapman
## 2473                                                          07/14/2000 10:13 am employee was hauling gravel on 6/26/00. He got out to push tarp back on truck and let it go, causing him to hit his left elbow on the step on the trucks bed. Supervisor: r. D. Peeler
## 2474                                                        07/14/2000 10:25 am employee was bit by a spider on her right buttocks on 6/27/00. Employee was spraying cleaner on asphalt distributor (backpack sprayer) at time of the incident. Supervisor: j. D. Tucker
## 2475                       07/14/2000 10:31 am employee was transporting stones in a tandem; when he ran off the shoulder of road losing control. The vehicle slid sideways and overturned causing injuries to his head, chin, right leg and arm. Supervisor: mike brady
## 2476                                                                                                       07/14/2000 10:39 am employee was driving a post into the ground with a sledge hammer; when he missed the post hitting his left leg. Supervisor: mike campbell
## 2477                                                                                          07/14/2000 10:45 am employee was turning clamshell bucket to straighten the cable; when his fingers on his right hand got mashed in the bucket. Supervisor: r. F. Barnette
## 2478                                                                                                                                   07/15/1999 04:33 pm employee was trying to pull up a sign post by hand we he injured his lower back. Supervisor: f. E. Faircloth.
## 2479                                                                                                                   07/15/1999 04:41 pm employee was traveling in state vehicle, when hit by a private vehicle injuring his lower back. Supervisor: tommy kilpatrick.
## 2480               07/15/1999 04:54 pm Mr. Perry was operating his patrol vehicle in the south bound lane of capital blvd., in raleigh. He stopped due to traffic, when he was hit on the rear of vehicle injuring his neck and shoulders. Supervisor: lt. Isaiah green.
## 2481                               07/15/1999 08:35 am employee was walking to vehicle across a wet parking lot, when he slipped on pavement twisting his left knee. This caused sharp pain and some swelling developed in that late afternoon. Supervisor: a. W. Roper.
## 2482                                                                                             07/15/2002 10:27 am (fblackmo) employee came into contact with poison oak while helping crew clearing a beaverdam from a pipe culvert. Supervisor: robert junior ingram
## 2483            07/15/2002 10:43 am (fblackmo) employee was using a pipe wrench to hold bra out of drilled hole. Pipe wrench was caught on rod, when rods was lifting, employees right hand was caught between the pipe wrench and steal piece of the drill. Supervisor:
## 2484                                                                                              07/15/2002 10:57 am (fblackmo) employee was cutting bushes and vines from a pipe and telephone box when he came into contact with poison ivy. Supervisor: a. S. Bailey
## 2485           07/15/2002 12:36 pm (fblackmo) employee was assisting an inmate to place corrugated aluminum pipe in a ditch. The inmate dropped his end without warning, as the pipe fell, employees fingers were cut by the end he was holding. Supervisor: r. G. Davis
## 2486                                                                                       07/15/2003 01:25 pm (fblackmo) employee was struck by backhoe bucket and fell off the side of bridge causing the injury to her elbow and shoulder. Supervisor: s. B. Hudspeth
## 2487                                                                                                                    07/15/2003 02:10 pm (fblackmo) employee was conducting a drivers test when, the customer closed the door on her arm. Supervisor; marcia l. Smith
## 2488                                                                                                                                 07/15/2003 03:08 pm (fblackmo) employee states while fabricating sheet metal pans he, cut his right hand. Supervisor; bobby thrower
## 2489                                                                                                                               07/15/2003 03:45 pm (fblackmo) employee was pulling a post that was split when, he felt pain in his back. Supervisor; donald griffith
## 2490                                                                                                               07/15/2003 11:05 am (fblackmo) employee states while using a bar to operate a tire machine, he experienced pain in his right hip. Supervisor; ray gay
## 2491                                                           07/15/2003 11:30 am (fblackmo) employee states that he and another employee was taking a propane tank off the back of a flat bed truck when, he felt pain in his stomach area. Supervisor: h. M. Thompson
## 2492                                                                       07/15/2010 07:13 am (slee) sov was traveling east on hwy. 70 when pov struck front end of sov. Pov ran a stop sign. 07/15/2010 08:02 am (slee) other person: julia mclaughlin, -828-632-0307.
## 2493                                          07/16/2002 10:36 am (fblackmo) employee states, using the computer keyboard and mouse for extended periods of time and on a routine basis has caused carpal tunnel syndrome in both wrists. Supervisor: Dr. Mrinmay biswas
## 2494                                                                                                                           07/16/2002 11:19 am (fblackmo) employee was shoveling abc stone at driveway when he started having chest pains. Supervisor: j. V. Riddick
## 2495           07/16/2002 11:34 am (fblackmo) supervisor states, employee s must have hurt his foot at work on May 23, 2002. Employee said he had been operating a tractor mower the whole day and with the clutch a lot with his left foot or stepped wrong. Employee s
## 2496                                                                                                                                         07/16/2003 07:35 am (fblackmo) employee was bitten by ticks on his left knee and hip area. Supervisor: njoroge w,. Wainaina
## 2497                                                                                       07/16/2003 08:46 am (fblackmo) employee was weed eating when, he hit old metal sign post causing a piece of the metal to hit him in his stomach area. Supervisor: w. M. Tosto
## 2498                                                                               07/16/2003 08:59 am (fblackmo) employee was climbing off the back of a truck from cleaning amber light when, she hit her tooth on the end of the screwdriver. Supervisor; john farrow
## 2499                                                                                               07/16/2003 09:19 am (fblackmo) employee was loading trash bags onto a dump truck when, she felt pain in her back. Supervisor: eddie surganious *show joyce all bills*
## 2500                                                                                                         07/16/2003 09:33 am (fblackmo) employee was assisting mechanic jump start vehicle battery when, he inhaled fumes from the battery. Supervisor: marty morris
## 2501                                                                                                                                                                                             07/16/2003 10:38 am (fblackmo) heat exhaustion. Supervisor: dale loflin
## 2502                                                                                                07/17/2000 04:09 pm employee was cutting the right of way when he came in poison ivy on 6/29/00. He has contact rash on neck and his face. Supervisor: w. D. Watkins
## 2503                                                                                                        07/17/2000 04:19 pm employee was working on a signal head that had corrosion on 6/29/00. The wind blew dirt or grime into his left eye. Supervisor: tim bell
## 2504                                                                                 07/17/2000 04:27 pm employee stopped on us highway 74 to move a block of wood in the road. When he lifted the wood, he felt a pain in his lower back. Supervisor: james e. Burleson
## 2505            07/17/2000 04:36 pm employee was sitting on tailgate of truck when the driver began to back up. Employee was telling the driver to "woe", but the driver thought the employee was saying"go". The driver continued to back crushing her left leg between
## 2506                                                                          07/17/2000 04:49 pm employee was helping unload a stack of lumber off a truck using a boom truck. A bee flew up from lumber hack and stung him on his right hand. Supervisor: j. C. Gunter
## 2507                                                                                                                07/17/2001 02:04 pm (fblackmo) employee was operating a chain saw in the chipping procedure, when poison oak contact occurred. Supervisor: todd bray
## 2508                      07/17/2001 02:20 pm (fblackmo) employee was cutting trees when one tree did not fall immediately causing it to jump back. The branch struck the employee on the back of his head. Employee was thrown approx. 20 feet. Supervisor: coy griffin
## 2509                                                                                                                        07/17/2001 02:40 pm (fblackmo) employee was removing battery box cover, cover came off suddenly causing the injury. Supervisor: edison tripp
## 2510                                                                                                                        07/17/2001 02:59 pm (fblackmo) employee jumped off of swivel boom truck and landed on left leg causing the injury. Supervisor: w. D. Watkins
## 2511                                                                                                                           07/17/2001 03:19 pm (fblackmo) employee bumped back of head while retrieving parts stored under steel stairwell. Supervisor: don ferguson
## 2512                                                                                                                                                    07/17/2001 03:36 pm (fblackmo) employee was cutting wooded area, employee stung by bees. Supervisor: steve brown
## 2513                                                                                                                          07/17/2001 03:49 pm (fblackmo) employee was mowing on I-85 and cut over a bees nest, bees stung him on the head. Supervisor: d. R. Summers
## 2514                                                                                                                                                                               07/17/2001 04:02 pm (fblackmo) employee was mowing on I-85. Supervisor: d. R. Summers
## 2515                                                                                                              07/17/2001 04:12 pm (fblackmo) employee loaded excavator onto lowboy trailer. As employee stepped off trailer, left leg twisted. Supervisor: d. S. Lee
## 2516                                                                                                                                 07/17/2001 04:25 pm (fblackmo) employee was cutting post bolts under bridge when stung by bee/spider. Supervisor: eric allen schenz
## 2517                                                                                                                     07/17/2001 04:38 pm (fblackmo) employee was working with survey party staking road way. Employee fell down incline. Supervisor: steven w. Nance
## 2518                                                                                 07/17/2001 10:40 am (fblackmo) employee was driving to job site. Employee blacked out and lost control of the pick up truck. Employee is a diabetic. Supervisor: h. L. Silverthorne
## 2519                                                                                     07/17/2001 11:04 am (fblackmo) employee was using a backhoe to pick up roller. The roller came unhooked and the handle struck him on the foot. Supervisor: bobby wayne flinchum
## 2520                                                  07/17/2001 11:32 am (fblackmo) employee rolled front end loader onto left side. Employee pulled himself up to exit right door of loader. While pulling up, he felt a pop in right shoulder. Supervisor: d. L. Lane
## 2521                                                                              07/17/2003 09:33 am (fblackmo) employee states he injured his left wrist while lifting a cardboard box from a traffic signal cabinet to perform a inspection. Supervisor: kelvin peele
## 2522                                                                                                                           07/17/2003 09:47 am (fblackmo) employee was jogging in the hallway when, she tripped on her sandles and fell. Supervisor: angela williams
## 2523                                                                                                                     07/17/2003 10:02 am (fblackmo) employee was lifting and replacing a grate that was broken when, he felt pain in his back. Supervisor; t. Jordan
## 2524                                                                                                                     07/17/2003 10:12 am (fblackmo) employee states he experienced pain in his lower back while moving topping from sled. Supervisor; stephen dillon
## 2525                                                                                                                   07/17/2003 11:23 am (fblackmo) employee was pulling hose when, he tripped and fell causing the injury to his right knee. Supervisor: g. K. Dozier
## 2526           07/18/2000 08:57 am employee was fixing washout along the shoulder of I-40 on 3/27/00. At some point, while riding on the trunk she aggravated her neck due to the banging/jerking of the truck tailgate (truck movement). She has moderate severe cervic
## 2527                                                                  07/18/2000 09:07 am employee told his supervisor that his left upper arm was sore and swollen around a tetanus shot area. He received the tetanus shot in September 1999. Supervisor: h. V. Inscoe
## 2528                                                                                                           07/18/2001 08:56 am (fblackmo) employee was working on state road, buried a dead deer, cat, and dog came into contact with ticks. Supervisor: r. A. Lewis
## 2529                                                                                     07/18/2001 09:12 am (fblackmo) employee, while probing muck in the woods and along the roadside came into contact with chiggers causing the injury. Supervisor: robert r. White
## 2530                                                           07/18/2001 09:32 am (fblackmo) employee was in bucket of state owned bucket truck changing bulb in signal head on us 70. Privately owned vehicle struck bottom of bucket. Supervisor: charles durwin rice
## 2531                                                                                                                        07/18/2002 02:48 pm (fblackmo) employee states while handling renewal cards had an allergic reaction to the material. Supervisor: lynn chalk
## 2532                                                                                                                    07/18/2002 03:38 pm (fblackmo) employee was shoveling asphalt when he turned, felt pain in his lower back on right side. Supervisor: greg vinson
## 2533                                                                           07/18/2002 03:50 pm (fblackmo) employee was loading truck with pellets and old wooden blocks slipped and lost it balanced, hitting employee in his ribs and head. Supervisor: r. W. Feher
## 2534                                                                                             07/19/1999 11:05 am employee was lifting a box of mapping paperwork files to place it on a cart, when employee experienced lower back pain. Supervisor: c. A. Nedwidek.
## 2535                                                                                                            07/19/1999 11:09 am employee injured right knee by repeatedly getting off bed of pickup truck while operating a gps rover. Supervisor: mojdeh masihpour.
## 2536            07/19/1999 11:18 am employee was clearing right of way, when he came in contact with bees. He was trying to get out of the way and tripped/fell off the bank onto the road. He injured his left knee, and has contusion on left side of chest. Superviso
## 2537                                                                                     07/19/1999 11:25 am employee fell backwards while trying to remove a limb from the bed of a dump truck. He has small lacerations on left forearm. Supervisor: johnny r. Kriner.
## 2538                                                                              07/19/1999 11:31 am employee slipped and bruised his right shoulder. Employee was walking in the entrance of shop area, when hydraulic oil seeped under rug. Supervisor: d. J. Staley.
## 2539                                                                                                        07/19/1999 11:37 am employee was clearing out underbrush while surveying, when he came in contact with poison ivy on his right arm. Supervisor: t. L. White.
## 2540                                                         07/19/1999 11:43 am employee exposed to poison ivy while staking right of way easement on us 70 in iredell county. Contact rash is on arms, chest, and other areas on body. Supervisor: b. R. Trivette, jr.
## 2541                                                                                        07/19/1999 11:50 am employee came in contact with poison ivy, while cutting brush on survey line in johnston county. Rash on left arm and shoulder. Supervisor: a. K. Alford
## 2542                                                                                                           07/19/1999 11:56 am employee came in contact with a bees nest and poison ivy, while clearing the right of way in jackson county. Supervisor: m. G. Wilkes
## 2543                                                  07/19/1999 12:03 pm employee was staking on sr 1354 on c. Fowler road, when he noticed a red bump with a dot in center on his upper right thigh. He believes he was bitten by a spider. Supervisor: david b. Clay.
## 2544                                                    07/19/1999 12:21 pm employee was fueling equipment on main road of job site, when he was bitten by a tick on upper right thigh. This bite caused numbness and weakness in right thigh. Supervisor: c. H. Bennett
## 2545                            07/19/1999 12:27 pm employee was working on a slope mower on job site on 6-25-99. He found a tick on his left side. He then began to fell weakness, numbness around his face, neck and arms over the weekend. Supervisor: c. H. Bennett.
## 2546                                           07/19/2002 07:22 am (fblackmo) employee was assisting welder by holding the rebar in place on bridge number 409 in pitt county. Later into the night employee experienced discomfort to his eyes. Supervisor: chris bland
## 2547            07/19/2002 07:39 am (fblackmo) employee states, while beginning to conduct a cdl road test he reached up to grab a handle to help pull himself into the cab of the vehicle. Employee felt something pull in his right shoulder area. Supervisor: joan j.
## 2548                                                                                   07/19/2002 08:19 am (fblackmo) employee was picking up a long base signal cabinet and while trying to load on truck his right hand twisted causing pain. Supervisor: marty headen
## 2549                                                 07/19/2002 08:32 am (fblackmo) employee was chipping tree limbs and brush on state road 2226 in cleveland county. Limbs was covered with poison ivy and made contact with employees skin. Supervisor: d. R. Roberts
## 2550                                                                                                           07/19/2002 08:46 am (fblackmo) employee states, while getting off back of flat bed truck, left arm hit the crash attenuator. Supervisor: franklin bullock
## 2551                                                                                                        07/19/2002 08:58 am (fblackmo) employee was cutting bushes under bridge # 32 when, wasp flew up and stung him on his right hand. Supervisor: w. T. Lowery jr
## 2552                                                                                                                                              07/19/2002 09:37 am (fblackmo) employee was crossing highway when he felt pain in right knee. Supervisor: r. A. Brower
## 2553                                                                                                               07/19/2002 09:57 am (fblackmo) employee was going to lunch when she stepped down off curb, missed the step causing the fall. Supervisor; sharon clark
## 2554           07/20/1999 04:00 pm employee was involved in vehicle accident while driving a state vehicle pulling trailer load of lumber. The truck jack-knife and laid over on the driver side. The employee suffered injury to his contusions left shoulder, left hip
## 2555             07/20/1999 04:12 pm employee was a passenger in state vehicle that was pulling a trailer load of lumber, when accident happened. The truck jack-knife and laid over on driver side. The employee suffered injury to right forearm. Supervisor: terry l.
## 2556               07/20/1999 04:44 pm employee injured right side of groin, while operating tamp to compact backfill material around storm drainage pipe. After he completed the task and shut off tamp, he felt a severe pain in his groin. Supervisor: roger elliott.
## 2557                                                                       07/20/1999 04:51 pm employee was assisting driller with lowering drill string onto bridge deck, when he injured finger on left hand and bruised his left thigh. Supervisor: stuart s. Bowman.
## 2558                                                                                                                                07/20/1999 05:00 pm employee was knocking pin out of tailgate, when foreign matter fell into his left eye. Supervisor: h. L. Carter.
## 2559                                                                                                                                      07/20/2001 10:32 am (fblackmo) employee was lifting u-channel post off truck that was stuck together. Supervisor: ronnie isley
## 2560                                                                                                                          07/20/2001 10:54 am (fblackmo) employee injury occurred while installing an 18'' aluminum pipe on state road 1314. Supervisor: r. E. Brake
## 2561                                                                07/20/2001 11:14 am (fblackmo) employee wiped his face off with a terry cloth, minutes later the employee experienced itching, burning, and his eye became swollen. Supervisor: l. Michelle podeszwa
## 2562                                                                         07/20/2001 11:46 am (fblackmo) employee was loading empty paint barrels onto truck when, one barrel fell and caught his fingers between it and another barrel. Supervisor: franklin bullock
## 2563           07/20/2001 12:02 pm (fblackmo) employee was trying to break loose a rusted bolt on a sign using his cordless drill and turned up the speed. When the employee went back to install the new sign he forgot about the speed of the drill, which jerk his wr
## 2564                 07/21/1999 10:02 am employee was in the process of bending over to put the state money into safe, when she felt something give in her lower back. She has a hard time standing up straight. Supervisor: dwight godwin. 04/08/2004 01:56 pm (gwhite)
## 2565                                                                                                                        07/21/1999 10:15 am employee cut his head on scalp while trying to go under a protruding tree limb while surveying. Supervisor: h. R. Boles.
## 2566                                                                   07/21/1999 10:49 am employee left eye was injured while working outside doing an evaluation study for replacement housing. A hard shell bug flew into his left eye. Supervisor: donald e. Mauldin
## 2567                                                                                                                                                   07/21/1999 10:56 am employee injured his left elbow while shoveling asphalt off a truck. Supervisor: j. S. Walker
## 2568                                                                                         07/21/1999 11:01 am employee injured her right shin (front part of lower leg) while stepping over a pipe. She slipped in mud and fell on the pipe. Supervisor: adam biddix.
## 2569              07/21/1999 11:10 am employee was picking up a piece of 4"x 6' x 14" lumber, when five pieces of the lumber fell and hit his right leg, pinching leg against metal sign post. He has a contusion on right lower leg. Supervisor: terry l. Harris. 02/01
## 2570                                                                                                 07/21/1999 11:16 am employee came in contact with poison ivy while clearing brush and overgrowth. Contact rash on right arm and right leg. Supervisor: r. E. Joyce.
## 2571                                                                                                                                                07/21/1999 11:34 am employee was cleaning debris from bridge, when he hurt his right shoulder. Supervisor: r. E. Cox
## 2572           07/21/1999 11:41 am employee left shoulder was injured while operating slope mower. Two slope mower were operating on dirt road, when the first mower picked up and threw a piece of wire into the second mower. The wire entered through a safety fence.
## 2573                                                                                                    07/21/1999 11:49 am employee came in contact with poison ivy on both hands, while checking the width of fill section with cloth tape. Supervisor: wilkes county.
## 2574                                                                                                                                               07/22/1999 10:18 am employee was bitten by a tick near his ground area. Supervisor: r. L. Bowers. 02/01/2000 11:06 am
## 2575                                                                                                                    07/22/1999 10:24 am employee cut left index finger while moving air hose causing the welding box to fall on hi finger. Supervisor: d. R. Foster.
## 2576                                                                                                           07/22/1999 10:28 am employee came into contact with poison ivy all over her body, while cutting right of way in burke county. Supervisor: e. D. Zimmerman
## 2577                                                                                                                                     07/22/1999 10:33 am employee injured her left wrist due to repeatedly keying and writing on her job. Supervisor: paula windley.
## 2578                                                                                                                  07/22/1999 10:40 am employee was helping pull a water line hose to drill on a location, when he injured his left shoulder. Supervisor: f. R. Glass
## 2579                                                             07/22/1999 10:45 am employee was working in pipe shop using a pipe threader, when something got in his right eye. The foreign object made a scratch to his right eyelid. Supervisor: david leon pruitt.
## 2580                                                                                     07/22/1999 10:53 am employee was using a pocket knife to trim wood for deck awning, when knife slipped and cut his third knuckle on his left hand. Supervisor: charles r. Sharp
## 2581                                                                                      07/22/1999 11:02 am employee was driving stake 48" with an axe, when top broke on stake, causing the axe to slip and hit him on the right shin. Supervisor: stonie d. Woolard.
## 2582                                                                                                            07/22/2002 02:04 pm (fblackmo) employee was exiting the building when, her foot got caught in the doormat injuring her left knee. Supervisor: john wells
## 2583                                                                                  07/22/2002 02:27 pm (fblackmo) employee was hammering a hub and as the hammer hit the concrete caused employee to experience sharp pain in his chest area. Supervisor: a. C. Mccoy
## 2584                                                                                          07/22/2002 02:55 pm (fblackmo) employee was loading boxes onto a pallet when the handle from the pallet fell hitting employee on the head. Supervisor: william h. Williams
## 2585                                                                               07/22/2002 03:25 pm (fblackmo) employee states that while, digging a hole to bury a large animal he hit his hand on the shovel causing pain to finger. Supervisor: b. J. Berryhill jr
## 2586            07/22/2002 12:37 pm (fblackmo) employee was placing a bag of asphalt in his truck when the bag of asphalt slipped off the bumper. Employee naturally responded by trying to catch catch the bag when he felt a sharp pain in his groin area. Supervisor:
## 2587                                                                                                                                    07/22/2002 12:52 pm (fblackmo) employee states while running a weedeater debris got into his right eye. Supervisor: c. W. Vestal
## 2588                                                                                                                  07/22/2003 01:58 pm (fblackmo) employee stated he lost his balance on rip rap. Which caused the injury to his lower back. Supervisor: alan hancock
## 2589                                                                                                                              07/22/2003 07:29 am (fblackmo) employee was walking on deck to un-tie line when, he felt pain in his left knee. Supervisor: r. E. Hill
## 2590                                                                                                                                                 07/22/2003 07:47 am (fblackmo) employee was directing traffic when, he was hit by a vehicle. Supervisor; j. R. Bell
## 2591                                                                                                                                                                              07/22/2003 08:20 am (fblackmo) employee fell off back of truck. Supervisor: d. R. Ross
## 2592                                                                                                                                                       07/22/2003 08:33 am (fblackmo) employee states he found a tick on his right ankle. Supervisor: c. E. Lassiter
## 2593                                                                                                                                             07/22/2003 08:55 am (fblackmo) employee was shoveling concrete when, he felt pain in his back. Supervisor; c. E. Watson
## 2594                                                                              07/22/2003 09:14 am (fblackmo) employee was shoveling dirt to cover manhole when, he lost his balance and fell into the hole causing the injury to his back. Supervisor; w. R. Friddle
## 2595                                                                                                                                                07/22/2003 10:04 am (fblackmo) employee experienced pain in her wrist while and elbow area. Supervisor: george tatum
## 2596                                                                                                                             07/22/2003 10:22 am (fblackmo) employee was cleaning out pipe when, foreign matter hit him on his right knee area. Supervisor: b. Boone
## 2597                                                                                                                                            07/22/2003 10:33 am (fblackmo) employee was shoveling asphalt when, felt pain in his chest area. Supervisor: j. R. Clark
## 2598                                                                                                                         07/22/2003 11:01 am (fblackmo) employee was operating a motor grading machine on secondary road when, he was shot. Supervisor: e. C. Thomas
## 2599                                                                                                           07/22/2003 11:44 am (fblackmo) employee was working in a heavy wooded area when, he found ticks on multiple areas on his body. Supervisor; c. S. Mcdonald
## 2600                                                                                             07/22/2003 11:58 am (fblackmo) employee was walking out of warehouse at loading dock area when, he slipped on water from a leaking ice machine. Supervisor: bruce myers
## 2601                                                                                                               07/22/2003 12:11 pm (fblackmo) employee experienced muscle and joint pain after removing a tick from his arms and legs. Supervisor: michael e. Lemons
## 2602                                                              07/23/1999 02:39 pm employee injured his left knee while trying to avoid/run from a snake. The employee was working in a swamp with rubber boots on when he twisted his knee. Supervisor: t. L. Godwin
## 2603                                                             07/23/1999 02:46 pm employee injured his back while repairing cable on nc 403 in duplin county. He was holding one end of the cable, while the other end was being rethreaded. Supervisor: dean meacer.
## 2604                                                                                                                07/23/1999 02:54 pm employee injured lower back while strapping 2" metal shovel handles together with plastic tie straps. Supervisor: j. V. Riddick.
## 2605                                            07/23/1999 03:34 pm employee and coworker were lifting a bundle of burlap bags on to back of a flat-bed truck. Employee said he felt a sharp pain in lower back and left leg. Supervisor: j. M. Tant 02/01/2000 12:50 pm
## 2606                                                                                                                                                     07/23/1999 04:01 pm employee injured right wrist and hand due to repetitive use of hands tool ie. Shovel, rake.
## 2607           07/23/1999 04:10 pm employee has pain/soreness in right shoulder and areas on his chest due to a vehicle accident on 1/05/99. The employee was driving a state pickup truck, when he was hit from behind. The person failed to stop hitting state vehicle
## 2608           07/23/1999 08:25 am employee was a passenger in a imap truck, when driver hit the brakes to avoid hitting a vehicle in front of him. The driver veered to the right on wet pavement, which caused the vehicle to slid into the vehicle in front of him. T
## 2609          07/23/2002 09:04 am (fblackmo) employee was doing an inspection on bridge number 193 in gaston cont on 06/26/2002 when he felt something on his left side around his rib area. A tick was found and removed causing the area to become a red and infected.
## 2610                                                                                    07/23/2002 10:16 am (fblackmo) employee complained to his supervisor of pain in right hand and finger when operating impact gun and tire changing tools. Supervisor: keith smith
## 2611                                                                                                                  07/24/2000 03:11 pm employee was climbing down off a truck; when he lost footing and fell twisting his right ankle. Supervisor: walter b. Crumpler
## 2612                                                                      07/24/2000 03:30 pm employee was placing traffic cones on the back of a truck and proceeded to climb down; when she twisted her left knee upon jumping off the truck. Supervisor: d. W. Rascoe
## 2613                                                                                                                   07/24/2000 03:36 pm employee was walking in high grass; when his right foot went into a hole turning/twisting his ankle. Supervisor: r. N. Wright
## 2614                                                                      07/24/2000 03:45 pm employee was clearing brush while surveying on 6/20/00; when the crew disturbed a yellow jackets nest. Mr. Broome was stung on his left ankle. Supervisor: l. T. Williford
## 2615                                                                                          07/24/2000 04:29 pm employee was working on ferry vessel when he slipped and sprained his left foot while stepping over the bilge on 7/12/00. Supervisor: richard dewhurst
## 2616           07/24/2000 04:35 pm employee customer was giving a road test; when customer turned right too fast and ran off the road. The customer ran down an embankment and struck a tree causing injuries to her chest, arm, shoulder. She has several bruises, scra
## 2617          07/24/2001 08:51 am (fblackmo) employee was unloading sod from flatbed truck. Truck was parked on slight incline and body of truck was wet because sod had been watered. Employee picked up a roll of sod, his foot slipped causing the injury. Supervisor
## 2618                                                                                                                                       07/24/2001 09:18 am (fblackmo) employee contacted poison oak while cutting a tree off interstate 26. Supervisor: m. H. Thomas
## 2619                                                      07/24/2001 09:35 am (fblackmo) employee was putting in right of way monuments, and temporary construction easement flags on bank side cut of nc 294 project. Employee came into contact with poison oak vines.
## 2620                                                                                                                  07/24/2001 09:55 am (fblackmo) employee was putting lug-hook back into trailer when, his hand slipped causing the injury. Supervisor: c. N. Vaughn
## 2621                                                                                                          07/24/2003 02:33 pm (fblackmo) employee was operating a hydro seeder when, he was struck in the jaw by the handle of the machine. Supervisor: f. K. Blazer
## 2622                                                                                                                   07/24/2003 02:49 pm (fblackmo) employee was cutting undergrowth under bridges when, he came into contact with poison ivy. Supervisor: r. E. Joyce
## 2623                                                                                                                                  07/24/2003 03:17 pm (fblackmo) employee was moving from between two cars when, he felt pain in his ankle. Supervisor: master avery
## 2624                                                                                                                                             07/24/2003 03:37 pm (fblackmo) employee was carrying a 48" sign when, he felt pain in his neck. Supervisor: j. A. Ridge
## 2625                                                                                                                   07/24/2003 03:53 pm (fblackmo) employee was moving office furniture when, desk fell of hand truck striking his left foot. Supervisor: cecil jones
## 2626                                                                                                                                      07/24/2003 04:06 pm (fblackmo) employee was weed-eating when, he was bitten by a spider on left leg. Supervisor: d. H. Johnson
## 2627                          07/25/2000 09:45 am employee was standing in front of file cabinet pulling out a file drawer; when he felt a pop in his right wrist. He was diagnosed with a ganglion cyst caused from the trauma to his wrist. Supervisor: chris corriher
## 2628                                                                                                                                 07/25/2000 10:00 am employee was walking into the edge of woods when a bee stung employee on his left leg. Supervisor: james spivey
## 2629                                     07/25/2000 10:10 am employee was cutting grass on sr 1500 in robeson county. When he flipped the sickle blade to clean off the grass, debris (poison ivy particles) flew up landing on his right arm. Supervisor: w. D. Pittman
## 2630                                                                                                                                07/25/2000 10:17 am employee was cleaning out plant beds when he was stung by fire ants on his left hand. Supervisor: hardie tillett
## 2631                                                                                                         07/25/2000 10:25 am employee was mowing around an explosive shed on 7/6/00; when he was stung by an insect on his left upper arm. Supervisor: kent d. Boyer
## 2632           07/25/2001 03:57 pm (fblackmo) employee was giving road test when, customer lost control of the vehicle and ran across the road median and hit the tree. Customer was driving to fast to make right turn, and was not paying attention to the examiners p
## 2633                                         07/25/2001 04:27 pm (fblackmo) employee, while attempting to remove a ncdot sign form the sign rack, grabbing the bottom. The bottom of the sign slipped and fell on employees left hand middle finger. Supervisor: c. Tapp
## 2634                                                                  07/25/2001 04:39 pm (fblackmo) employee was cutting wire on fence when a section of the fence broke his finger nail. Three days later the area became sore and infected. Supervisor: c. L. Edwards
## 2635                                              07/25/2001 04:56 pm (fblackmo) employee was attempting to dig hole with shovel when, shovel slipped on hard ground. Employees right foot extended to far causing the pain in his right leg. Supervisor: e. J. Anderson
## 2636                                    07/25/2001 05:22 pm (fblackmo) employee was working on the rear mower of ford tractor. When pushing roller upward roller slipped and bent employees left wrist backwards. Supervisor: lee patrick 07/26/2001 08:44 am (fblackmo)
## 2637         07/25/2001 12:52 pm (sshort) employee was installing pc's and crawling underneath desks to connect power plugs, when she injured her left knee (baker's cyst). Ms. Burton installs pc's regularly on her job, therefore her injury May be caused by repetit
## 2638                                                                                               07/26/1999 02:51 pm employee came in contact with poison ivy while cutting brush to clear paths. Contact rash is on his forearms and hands. Supervisor: r. P. Hunter.
## 2639                                                                                                 07/26/1999 02:55 pm employee came in contact with poison ivy while cutting brush to clear paths. Contact rash is on face, legs, and arms. Supervisor: r. P. Hunter.
## 2640                                                           07/26/1999 03:00 pm employee stepped out of wrecker truck and slipped on loose gravel in bridge yard. He fell on his left wrist trying to break his fall. Supervisor: r. F. Barnette. 02/04/2000 09:46 am
## 2641                                                                                                                                   07/26/1999 03:16 pm employee pulled muscle in back while helping unload silt fence material on 7/20/99. Supervisor: j. S. Walker.
## 2642                                07/26/1999 03:35 pm employee was assisting another employee putting pins back into tailgate, when the other employee hand slipped and jerked her arm back striking her elbow against the bed of tailgate. Supervisor: j. D. Andrews.
## 2643                                                                                                                              07/26/1999 03:40 pm employee was bitten on his right hip by a tick while checking bench mark in the woods. Supervisor: jackson provost
## 2644                                                                                                                                                          07/26/1999 03:45 pm employee was bitten by a tick on the right side of lower back. Supervisor: a. L. Smith
## 2645                                     07/26/2000 09:00 am employee was helping install a six way plug in bumper of truck on 7/6/00. A co-worker was cutting a hole in bumper with a saw; when a metal particle entered employees right eye. Supervisor: d. C. Sherrod
## 2646                              07/26/2000 09:04 am employee was showing the backhoe operator the end of pipe was; when he was struck on top of his head with the rear bucket. Employee was trying to get out of the way at time of incident. Supervisor: r. L. Adcock
## 2647                                                                                   07/26/2000 09:08 am officer lee strained/twisted his lower back and his left leg on 7/10/00. He had just stopped a vehicle when this injury occurred. Supervisor: lt. G. F. Inman
## 2648          07/26/2000 09:11 am employee lifted the tailgate to remove a rake hung up in the tailgate; when she lost her grip causing the tailgate to fall on her left hand. She has a cut and bruised little left finger requiring 7 stitches. Supervisor: t. C. Till
## 2649                     07/26/2000 09:17 am employee was conducting a road test on 7/10/00. He was climbing/stepping down when he missed a step causing him to catch himself on door. He has injuries to his left index and middle fingers. Supervisor: joan j. Holland
## 2650                                                                                                            07/26/2000 09:25 am employee was installing rock guard using an air wrench; when a piece of metal fell on his right eye. Supervisor: cecil w. Bowser, jr
## 2651                                                                                                       07/26/2000 09:42 am employee had his left hand on tailgate when another employee threw a tree limb in the truck on top of his hand. Supervisor: floyd roberts
## 2652                                                                     07/26/2000 09:49 am employee found a tick attached to the top of his head. Employee had previously worked on job sites in guilford county picking litter in weed areas. Supervisor: a. L. Smith
## 2653                                                                      07/26/2000 10:00 am employee was cutting trees around poison ivy with a weed eater; when he came in contact with poison plants. He has contact rash all over his body. Supervisor: a. L. Smith
## 2654                                            07/26/2001 02:28 pm (fblackmo) employee, while inspecting parcels for review on nc 11 in lenoir county got out of the vehicle that was parked on the shoulder of road and twisted his back. Supervisor: fred n. Davis jr
## 2655                                                                                                                              07/26/2001 08:45 am (fblackmo) employee slipped and fell in main lobby causing the injury to her left hand. Supervisor: edith mcdaniel
## 2656           07/26/2001 09:05 am (fblackmo) employee complains of pain in right shoulder, arm, and wrist when operating the remittance processors. Operating the processors consist of inserting a stack of checks and cards into an automatic feed. The processor the
## 2657                                                                07/26/2001 09:24 am (fblackmo) employee was dumping brushes and weeds from truck hauling away from jobsite when branches became tangled in tailgate. Employee then removed the branches. Supervisor:
## 2658                                                                                                                                           07/26/2001 09:41 am (fblackmo) employee is experiencing pain and swelling in left wrist and hand. Supervisor: linda davis
## 2659           07/26/2001 10:14 am (fblackmo) employee was leaving the crew cab pickup after returning to the maintenance yard, when he twisted to get out of the truck he felt a sharp pain in his back. He told his supervisor at that time employee began to walk aro
## 2660                                                                         07/26/2001 11:13 am (fblackmo) employee was ministering a road test when customer got her foot tangled up in gas paddle. Vehicle hit guard rail and bounced off. Supervisor: patricia glenn
## 2661            07/26/2001 11:37 am (fblackmo) employee stopped moving paint operation to clear obstruction from bead gun. Employee opened side bin for piers to remove bead gun nozzle. When the door opened an aerosol can of brake cleaner fell from shelf and landed
## 2662                                                                                        07/26/2002 01:10 pm (fblackmo) employee was attempting to retreive stock in the warehouse. Ladder slipped causing the employee to fall to the floor. Supervisor; tim roberts
## 2663                                                                                                                   07/26/2002 01:21 pm (fblackmo) employee was getting u-channel off the back of truck when she lost her footing and fell. Supervisor: doug anderson
## 2664                                                                    07/26/2002 01:33 pm (fblackmo) employee was putting floor down on bridge and pulled a grab hook to move a 3x6 when he felt pain in his right side and lower back area. Supervisor: hugh williams
## 2665                                                                                                                                           07/26/2002 01:56 pm (fblackmo) employee was walking down steps when she fell on her right side. Supervisor; shawn a. Troy
## 2666                                                                                                                   07/26/2002 09:11 am (fblackmo) employee stop to use bathroom when he felt something bite him on his lower right leg. Supervisor: charles e. Moore
## 2667                                                                  07/26/2002 09:25 am (fblackmo) employee was giving a road test when the driver was pulling into parking spot instead of braking, customer accelerated hitting two cars. Supervisor: dwight langley
## 2668            07/26/2002 10:11 am (fblackmo) employee states that while trying to explain the proper paper work to a customer that she became anger and grabbed the paper work out of employees hand. Employees' hand became twisted in the ordeal. (see form 19). Sup
## 2669                                                                                                                         07/26/2002 10:27 am (fblackmo) employee was removing trees from job site when he came into contact with poison ivy. Supervisor: a. L. Smith
## 2670                                                                                                                                  07/26/2002 10:38 am (fblackmo) employee was clearing fence line when he came into contact with poison ivy. Supervisor: a. L. Smith
## 2671                                                                             07/26/2002 11:04 am (fblackmo) employee was doing an inspection of contractor paving operation on groomtown road when he found ticks on his neck and buttocks. Supervisor: david crotts
## 2672                                                                                                                    07/26/2002 11:17 am (fblackmo) employee was removing barricade stands and boards when a nail penetrated his shoe. Supervisor: dwayne a. Bauguess
## 2673                                                                                                                               07/26/2002 11:28 am (fblackmo) employee was adjusting burner on asphalt tanker when the injury occurred. Supervisor: r. L. Supervisor
## 2674                                                                                                            07/26/2002 11:40 am (fblackmo) employee was bitten by ticks while working on bridge replacement project site in nash county. Supervisor: k. E. Honeycutt
## 2675                                                                        07/26/2002 11:52 am (fblackmo) employee was attempting to make an arrest when the suspects' sister jumped on his back, pulling him by his neck causing the injury. Supervisor: m. L. Harrell
## 2676                                                             07/27/2000 03:46 pm employee was performing a road test; when client pulled out in front of a semi-truck and was struck from behind. Employee has neck and upper back strain/pain. Supervisor: jo lewis
## 2677                                                                              07/27/2000 03:59 pm employee was performing routine office duties; when she noticed numbness, tingling in her left wrist. Employee has carpal tunnel syndrome. Supervisor: chuck white
## 2678                                   07/27/2000 04:13 pm employee was operating swb dump truck on 7/17/00. The truck went over an embankment when the shoulder gave way under the truck. Mr. Clark has pain/soreness in his left shoulder. Supervisor: greg g. Caudill
## 2679                            07/27/2000 04:19 pm employee was investigating roadway project; when he was attacked by a swarm of yellow jackets. He has multiple stings over his entire body, above his knees and excessive swelling and pain. Supervisor: steve brown
## 2680                                                              07/27/2000 04:25 pm employee was struck by a tree and then fell on his left ankle on 7/17/00. He was across the road; when a track hoe swung a tree across the road to be cut. Supervisor: k. R. Davis
## 2681                                                                                                                                             07/28/2003 02:47 pm (fblackmo) employee was pushing on beams when, he felt pain in his back. Supervisor: mason thompson
## 2682                                                                                                                        07/28/2003 02:57 pm (fblackmo) employee states he felt pain in his back while lifting a post onto the back of truck. Supervisor: j. A. Ridge
## 2683                                                                                                               07/28/2003 03:08 pm (fblackmo) employee states while inspecting columns under bridges he, came into contact with poison oak. Supervisor: greg johnson
## 2684                                                                                                  07/28/2003 03:24 pm (fblackmo) employee was flagging traffic when, he was bitten by a tick on his right leg. Supervisor: w. T. Teague 10/02/2003 04:09 pm (gwhite)
## 2685                                                                                                                                                   07/28/2003 03:34 pm (fblackmo) employee was moving straw when, found rash on his lower arm. Supervisor: van ellis
## 2686                                                                                                                  07/28/2003 03:45 pm (fblackmo) employee states he felt pain in his back while trying to replace a pin in tractor broom. Supervisor: d. T. Cottrell
## 2687                                                                                                                                           07/28/2003 04:04 pm (fblackmo) employee was using water pump when, he hit his head on truck. Supervisor: w. J. Timberlake
## 2688                                              07/29/1999 02:25 pm employee was trying to install a trailer tongue on a message board, when he picked up the tongue he heard his back pop. He has pain in lower back-lumbosacral strain. Supervisor: jerry w. Linder.
## 2689            07/29/1999 02:34 pm employee was traveling west on us 74 on his way in from rest area, when a private vehicle hit him in the rear. This knocked him into the guardrail several times and he sustained injuries to his face and neck. Supervisor: danny b
## 2690           07/29/1999 03:15 pm employee was changing tires on a 1 ton truck, when tire slipped out of his hands pulling him to the left side. The tire hit his left foot while his right hand was still holding the tire. He sprained his lower back and his left wr
## 2691                                                                                                                                                         07/29/1999 11:15 am employee came in contact with poison ivy and has rash on arms. Supervisor: allan nance.
## 2692                                                     07/29/1999 11:20 am employee came in contact with poison ivy while loading tree limbs into a dump truck. Affected areas are his eyes, right arm, behind his right ear, and groin area. Supervisor: t. H. Swayne
## 2693                                                     07/29/1999 11:27 am employee suffered bee stings, 2 to his lower back area and 1 on upper right arm. He was taking dtm shots on a hillside, when he stepped into a yellow jacket nest. Supervisor: ricky tipton
## 2694                                                                                     07/29/1999 11:33 am employee was sliding a form from back of truck, when a 2x6 with an exposed nail came loose puncturing his left index finger. Supervisor: ernest w. Huffman.
## 2695                                                                                                         07/29/1999 11:45 am employee was surveying wooded area in cumberland county, when he found a tick around front waistline area. Supervisor: lisa m. Privette
## 2696                                                                              07/29/1999 12:02 pm employee injured fingers on his right hand when he jerked a limb down. He had cut the limb with a bush axe blade while on survey project. Supervisor: h. R. Boles.
## 2697                                                                                                 07/29/1999 12:10 pm employee came in contact with poison ivy while cutting right of way trees. Contact rash on face, neck and both arms. Supervisor: alan e. Brown.
## 2698                                                                            07/29/1999 12:35 pm employee and an inmate was handling buckets of stone down from bed of dump truck, when Mr. Church pulled a muscle in his left upper arm. Supervisor: c. B. Lunsford.
## 2699                                                                                                                                       07/30/2001 02:08 pm (fblackmo) employee was conducting a wetland investing and was stung by a wasp. Supervisor: gordon cashin
## 2700           07/30/2001 02:32 pm (fblackmo) employee was loading the lowboy grader. When the employee started to put the chains on the grader, one chain came loose and hit the back of the trailer causing the chain to pull the employee arm and shoulder. Superviso
## 2701                                                                                                                             07/30/2001 04:50 pm (fblackmo) employee was cutting bushes over pipe when a bee stung him on his right hand. Supervisor: charlie watson
## 2702                                                                                                        07/30/2001 05:00 pm (fblackmo) employee was burying a dead animal on I-95. He hurt his back while shoveling dirt to cover up the hole. Supervisor: h. Watson
## 2703                                                                                                                         07/30/2001 05:13 pm (fblackmo) employee became dizzy and disoriented while operating belts on a chip spreader. Supervisor: j. W. Weatherman
## 2704                                                                                                                   07/30/2001 09:34 am (fblackmo) employee was on ridding mower and was backing up the mower when his back started to hurt. Supervisor: jack rollins
## 2705                                                                             07/30/2001 10:01 am (fblackmo) employee bent over to pick up bag of asphalt when he stood up to pick up the bag he felt his shoulder pop causing severe pain. Supervisor: Jan t. Womble
## 2706                                                                                                                                       07/30/2001 10:21 am (fblackmo) employee moved to answer telephone and hit knee on the desk cabinet. Supervisor: j. Scott cole
## 2707                                                                                                              07/30/2001 10:48 am (fblackmo) employee was bite by a tick on his upper left arm. Bite area became inflamed and itchy. Supervisor: marvin wayne currie
## 2708                                                                  07/30/2001 12:05 pm (fblackmo) employee was using weedeater to clear weeds from bank when he struck a yellow jackets nest, resulting in bee sting to ear, arm, and legs. Supervisor: steven cannon
## 2709                                                                        07/30/2001 12:27 pm (fblackmo) employee was trying to open a 5 gallon paint can with knife. Knife slipped and closed up on employee right index finger causing a cut. Supervisor: jim craven
## 2710                                                       07/30/2002 09:04 am (fblackmo) employee was taking a log chain back to the top of a truck when he stepped into a hole or an uneven ground causing him to fall hurting his left foot. Supervisor: w. T. Teague
## 2711                                                                                                                      07/30/2002 09:17 am (fblackmo) employee was helping with repairs to bridge when he came into contact with poison ivy. Supervisor: t. L. Harris
## 2712                 07/30/2002 09:30 am (fblackmo) employee was loading batteries into the back of a pickup truck when one fell off the truck onto another battery causing some of the battery acid to fly up hitting employee in both eyes. Supervisor: arlene mozingo
## 2713                                                                                                                             07/30/2002 09:43 am (fblackmo) employee was lifting front wheel off truck when he felt pain in his lower back. Supervisor: edison tripp
## 2714           07/30/2002 10:15 am (fblackmo) employee was working on a piece of equipment that required he be up in the cab area. Employee was dismounting the equipment when he stepped down off the equipment and felt pain in his left knee. Supervisor: russell ram
## 2715                                                                                                                                      07/30/2002 10:39 am (fblackmo) employee was tighten down mooring lines when he felt pain to his back. Supervisor: s. H. Kinner
## 2716                                                                                                                                          07/30/2002 11:20 am (fblackmo) employee was welding on truck body when he was bitten by a insect. Supervisor: hays bennett
## 2717                                                  07/31/2000 03:13 pm employee was lowering side of a tractor mower; when his hand slipped off the lever and hit the hydrolic box. He sprained his right index finger at time of incident. Supervisor: r. E. Burnett
## 2718                                                                                                             07/31/2000 03:23 pm employee was taking down and putting up new signs when he pulled a muscle in his left shoulder. Supervisor: roger lawrence arrowood
## 2719                                                                07/31/2000 03:31 pm employee was struck by a piece of bark hitting the employee in the head and lodged in his right ear. (two employees where involved in horseplay) supervisor: lindsey o. Ethridge
## 2720                                                                          07/31/2000 03:48 pm employee was inspected pavement operation and was walking in grassy area; when he noticed ticks on his clothing, tick bites on his torso. Supervisor: d. A. Poindexter
## 2721                                                             07/31/2000 03:59 pm employee was in a ditch line installing pipes; when he came in contact with poison ivy on 7/14/00. He has contact rash on both arms and face areas. Supervisor: lindsey o. Ethridge
## 2722                                                                                                                         07/31/2000 04:13 pm employee was trying to turn key in a hard to open lock; when his left hand thumb was injured. Supervisor: j. Scott cole
## 2723                                                                                                                                             07/31/2000 04:22 pm employee was lifting up cones; when he felt severe pains in his lower back. Supervisor: r. L. Joyce
## 2724             07/31/2000 04:29 pm employee was mowing grass on sr 1510; when a towel became tangled in side mower deck. Employee raised the deck to try to remove the towel by pulling on it. Employee then felt a pop in his right shoulder. Supervisor: k. L. Ander
## 2725                                                                                                            07/31/2001 09:27 am (fblackmo) employee suffered from heat exhaustion due to extreme temperatures while working on kivett drive. Supervisor: a. L. Smith
## 2726                                                 07/31/2001 09:42 am (fblackmo) employee was mowing on state road 1229. He had his right hand on the levers of the tractor when he hit a hole. Employee felt a pop in his right shoulder. Supervisor; k. L. Anderson
## 2727           07/31/2001 10:54 am (fblackmo) employee was helping to hook up the messageboard to the pickup truck assigned to take the board. Employee relizedthe messageboards hook up was lower than the truck he tried to lift the board with his hands, causing him
## 2728                                                                                              07/31/2003 01:29 pm (fblackmo) employee was installing silt fence when, the ground gave way causing employee to fall and injury his left hand. Supervisor: m. B. Smith
## 2729                                                                                                                                                     07/31/2003 01:44 pm (fblackmo) employee was moving jacks when, he felt pain in his back. Supervisor: ricky ball
## 2730                                                                                                                                  07/31/2003 01:56 pm (fblackmo) employee was moving a 21'' monitor when, he felt pain in his lower back. Supervisor; john pilipchuk
## 2731                                                                         07/31/2003 02:07 pm (fblackmo) employee states a truck hit a cone knocking him down, causing the injury to his legs and hip area. Supervisor: t. F. Rhodes, jr 08/29/2003 12:17 pm (gwhite)
## 2732                                              07/31/2003 02:20 pm (fblackmo) employee was walking back to his vehicle from conducting a audit when, he slipped and fell causing the injury to his left leg, right knee, back, and nose. Supervisor: w. T. Ballentine
## 2733                                                                                                                                          07/31/2003 02:35 pm (fblackmo) employee was stung by a bee while setting up traffic signal lights. Supervisor: victor long
## 2734                                                                                       07/31/2003 02:43 pm (fblackmo) employee was pruning around signs when, he stepped into a hole when the injury occurred to his right ankle and foot. Supervisor: jason leonard
## 2735                                                                                                                                                                  07/31/2003 02:53 pm (fblackmo) employee was bitten by a tick while mowing. Supervisor: greg jordan
## 2736                                                                                                                   07/31/2003 03:01 pm (fblackmo) employee was trying to lift a barrel when, he felt pain in his chest and right shoulder. Supervisor; mark anderson
## 2737                                                                                          07/31/2003 09:15 am (fblackmo) employee was bolting up a sign when, the sign slipped causing employee to experience pain in his right shoulder. Supervisor: roger faulkner
## 2738                                                                           07/31/2003 09:26 am (fblackmo) employee was getting out of motor grader when, he slipped causing the injury to his right shoulder. Supervisor: j. E. Walters 04/08/2004 01:45 pm (gwhite)
## 2739                                                                                      07/31/2003 09:50 am (fblackmo) employee was driving the attenvator on I-40 when, he was struck in the rear by a car causing the injury to his back. Supervisor: corey sudderth
## 2740                                                                                                                    07/31/2003 10:37 am (fblackmo) employee states she was having breathing problems because of another employees cologne. Supervisor: dorene creech
## 2741                                                                                                    07/31/2003 11:12 am (fblackmo) employee jump off beam and landed wrong on his feet causing the injury to his knee and right shoulder. Supervisor: h. M. Thompson
## 2742                                                                              07/31/2003 11:27 am (fblackmo) employee was in the process of calling a customer when, she tripped and stumbled hitting her head and shoulder on the wall. Supervisor: brenda p. Grady
## 2743                                                                         07/31/2003 11:42 am (fblackmo) employee was walking on edge of woods when, briar penetrated his pants leg causing a cut on his knee. Supervisor: d. R. Summers 12/05/2003 11:09 am (gwhite)
## 2744                                                                                                        07/31/2003 11:57 am (fblackmo) employee was climbing out of backhoe when, he lost his footing causing the injury to his left ankle. Supervisor: dennis brann
## 2745                                                                                                                            08/01/2001 03:16 pm (fblackmo) employee strained his back while loading boxes onto shelf in supply building. Supervisor: h. L. Rollinson
## 2746              08/01/2001 03:31 pm (fblackmo) employee was in the process of unloading a motor grader off the back of the trailer. He had removed the exhaust cap and was moving down off the equipment when, he lost his balance and fell. Supervisor: charles jones
## 2747                                                                    08/01/2001 04:29 pm (fblackmo) employee was exiting kitchen when she tripped over the twisted door mat, causing her to fall and twist right ankle and scrap left knee. Supervisor: s. D. Padgett
## 2748                                                                         08/01/2001 04:45 pm (fblackmo) employee was working around a high grassy area when a tick attached itself to the employee just below his belt line on right side. Supervisor: john thomason
## 2749                                                                                08/01/2002 02:32 pm (fblackmo) employee found three ticks, one attached to his neck(left side below hair line) and others in his hair while working on I-85. Supervisor: chuck white
## 2750                                                                                                          08/01/2002 02:45 pm (fblackmo) employee was cutting around bridge #275 in burke county when he came into contact with poison ivy. Supervisor: ken anderson
## 2751                                                                                       08/01/2002 03:02 pm (fblackmo) employee states that while walking across a bridge holding onto the wood handrail, a splinter got into his right hand. Supervisor: c. M. Rhyne
## 2752                                                                                                                                    08/01/2002 03:20 pm (fblackmo) employee was removing bulb when he cut his hand on the detector shield. Supervisor; jimmy paschal
## 2753                                                                                        08/01/2002 07:11 am (fblackmo) employee was stepping off tailgate of pickup truck when, he stepped into a hole causing the injury to his left ankle. Supervisor: chris crump
## 2754                                                                                            08/01/2002 07:30 am (fblackmo) employee was putting on a backpack sprayer when, the sprayer shifted causing the injury to his left shoulder. Supervisor: brian k. Glover
## 2755                                                              08/01/2002 07:51 am (fblackmo) employee was lifting and pulling brushes during a road clearing operation(davis chapel road) when, he felt pain in his lower abdomen area. Supervisor: r. J. Hollifield
## 2756               08/01/2002 08:06 am (fblackmo) employee states that while doing filing the file cabinet starting tipping over. Employee tried to catch the tipping file cabinet when the injury occurred to his ring finger on right hand. Supervisor: trice craddock
## 2757                                                                                                                            08/01/2002 08:25 am (fblackmo) employee was cleaning out refrigerator when, she hit her head on the door handle. Supervisor: doyle lytle
## 2758                                                                                                         08/01/2002 08:43 am (fblackmo) employee was cutting bushes on state road 1637 when, he felt something bite him on his left hand. Supervisor: tim b. Elliott
## 2759                                                                                  08/01/2002 08:58 am (fblackmo) employee states that while retrieving her keys to assigned equipment she, felt something sting her on the back of her neck. Supervisor: d. R. Bryan
## 2760                                                                                                      08/01/2002 09:14 am (fblackmo) employee states that while attempting to open a paint can by the taps, cut right index finger. Supervisor: thomas foster bowser
## 2761                                                                                                                         08/01/2002 09:46 am (fblackmo) employee was walking to gas pump when he slipped on loose rock and concrete. Supervisor: joseph c. Pruitt jr
## 2762                                                                                                                                               08/01/2002 10:02 am (fblackmo) employee states she was bitten by a tick under her right arm. Supervisor: randy turner
## 2763           08/01/2002 10:15 am (fblackmo) employee was standing on the side of a steep bank cutting a tree. The ground gave away causing feet to slide. Employee caught his right leg on a rock causing the injury to his knee. Supervisor: p. J. Acuff *show all bi
## 2764                                                                                                                                 08/01/2002 10:48 am (fblackmo) employee was bending over rinsing out bucket when he felt pain in his back. Supervisor: chris rainey
## 2765           08/02/2000 08:45 am employee was placing pin in a chute of mulch blower preparing it for transport; when the chute broke off and hit him on top of his head. He has a 2 inch cut on head and soreness in his neck and shoulders. Supervisor: t. E. Simpso
## 2766                                                                                                                   08/02/2000 08:50 am employee has carpal tunnel syndrome in right hand due to daily use of computer keyboard at work. Supervisor: lisa m. Privette
## 2767           08/02/2001 03:22 pm (fblackmo) employee was conducting a vehicle road test. When they entered the parking lot of the driver license office she observed a private vehicle backing out and informed the customer of it. The customer failed to stop and bo
## 2768                                                                08/02/2001 03:41 pm (fblackmo) employee was between the girder on nc 65-62036 jobsite. He twisted around to nail some boards in place when he felt a pull in his lower back. Supervisor: r. E. Joyce
## 2769           08/02/2001 08:42 am (fblackmo) on 7/11/01, employee was performing subsurface investigation for proposed infiltration basins near wilmington. The next morning 7/12/01, he found a tick seized to his left hip which later became swollen and red. Superv
## 2770           08/02/2001 09:19 am (fblackmo) employee was working on highway right of way putting up signs. When he went to the back of the truck to pick up the sign he stepped on some loose rocks causing him to slide down and twist his left knee. Supervisor: leo
## 2771           08/02/2001 09:39 am (fblackmo) employee was driving dump truck west on tickle road. Reaching down to answer the radio he ran off the edge of the road and went into a ditch, turning roller over. The truck finally stopped and employee hit his leg on t
## 2772                                                                                                                                08/02/2001 10:10 am (fblackmo) employee came in contact with poison ivy while surveying for property irons. Supervisor: iris mccombs
## 2773                                                                                   08/02/2001 10:27 am (fblackmo) employee received scheduled hearing test and was subsequently refined to a hearing specialist for further evaluation. Supervisor: james h. Trogdon
## 2774                                                                            08/02/2001 11:27 am (fblackmo) employee had been driving dump truck daily for a period of over two weeks, he began to have pain and swelling in his left knee. Supervisor: d. M. Baynard
## 2775                                                                                              08/02/2001 11:44 am (fblackmo) employee was getting out of truck, when she turned around to close the door she hit her left elbow on the door. Supervisor: p. J. Acuff
## 2776                                                                         08/03/1999 03:42 pm officer was making an arrest, when the subject resisted giving him scratches and cuts on both arms. Also the subjects blood got on officer. Supervisor: r. N. Mitchell.
## 2777                                                                                                         08/03/1999 03:53 pm employee was mowing the right of way when he came in contact poison ivy. Contact rash to arms and trunk. Supervisor: robert dale loflin
## 2778                                                                                                                       08/03/1999 04:01 pm employee was stepping off back of truck when he lost his balance and sprain his right ankle. Supervisor: charles r. Sharp
## 2779          08/03/1999 04:10 pm employee was using the band saw to cut an oak board, when the blade grabbed the board slamming it down on his fingers. Lacerations to 3rd, 4th, and 5th fingers on his right hand. Also cracked bone of index finger, sutures required
## 2780                                                                                                             08/03/1999 09:22 am employee suffered hearing loss in both ears due to operating different types of equipment over the years. Supervisor: earl d. Bell.
## 2781                                                                                                    08/03/2000 03:25 pm employee was trying to release clogged dirt from tailgate of dump truck; when his left hand got caught in tailgate. Supervisor: w. H. Adkins
## 2782                                                                                          08/03/2000 03:30 pm employee was attempting to close tailgate on dump truck; when he cut his right little finger on a metal spur. Supervisor: william edward mcclendon, jr
## 2783                                                                                                                                         08/03/2000 04:00 pm employee fell and twisted his left knee on pile of dirt and rocks on 7/10/00. Supervisor: g. W. Mcguire
## 2784                                                                                                                            08/03/2000 04:11 pm employee was operating asphalt patching machine; when an insect stung him on his left forearm. Supervisor: h. L. Cox
## 2785          08/03/2000 04:55 pm employee was pre-lining turn lanes for an entrance into a new driveway on 7/17/00. The crew was moving a vehicle with braided nylon rope on a spool. The rope caught between the front tire of a parked dot vehicle and asphalt and wr
## 2786                                                                                         08/03/2000 05:00 pm employee was putting down asphalt when she came in contact with poison ivy plants. She has contact rash over most of her body. Supervisor: r. D. Peeler
## 2787                                                          08/03/2000 05:05 pm employee was cutting bushes around bridge; when he came in contact with poison ivy plants. He has contact rash on right arm, wrist, face and in his right eye. Supervisor: r. J. Terry
## 2788                                                                                      08/04/1999 03:39 pm employee injured his left knee, when his left foot slipped off the bumper of truck. He was stepping out of the truck and fell out. Supervisor: bill moyers
## 2789           08/04/1999 03:44 pm employee was trying to get by another employee, when co-worker slid his chair back causing his left foot to hit chair. He tried to avert the collision and twisted his left knee in the process. His knee is swollen and painful. Sup
## 2790                                               08/04/1999 04:02 pm employee suffered scratches on head and right shoulder due to falling to the ground. He was attempting to lower tailgate when another worker knocked out the pins. Supervisor: c. N. Edwards, jr.
## 2791                                                                                                                                 08/04/1999 04:15 pm employee stepped out of truck onto a running board, when her left knee popped. Supervisor: archie francis smith
## 2792                                                                                                                                     08/04/1999 09:29 am employee bent down to pick up a shovel, when he raised up, his lower back popped. Supervisor: t. D. Clement
## 2793                                          08/04/1999 09:43 am employee was cutting asphalt with saw, when the machine jammed on him. He had to use excessive force to correct the problem causing him to bruise his ribs on the left side. Supervisor: j. S. Walker.
## 2794              08/04/1999 09:53 am employee was assisting paving crew shoveling asphalt, when he suffered from heat exhaustion. He was hot and briefly fainted, upon regaining consciousness he experienced numbness in both hands. Supervisor: robert junior ingram.
## 2795                                                                                      08/04/1999 10:30 am employee was fitting a plate on dredge schweizer on the port side, when he was bitten by a spider on his left middle finger. Supervisor: david leon pruitt
## 2796            08/04/1999 10:38 am employee strained back, left shoulder and left wrist while switching chairs in office. She lifted the chairs one at a time over her head and other equipment in the office. In just a few minutes she started having pain. Superviso
## 2797                                                                                                                                                               08/04/1999 10:43 am employee injured left index finger while closing door. Supervisor: tola m. Bailey
## 2798                                                                                                                                08/04/1999 10:50 am employee suffered bee stings to right arm and left hand while working in the field. Supervisor: v. Marcus lowery
## 2799                                                                                                                                         08/04/2000 10:00 am employee was getting out of truck when he felt sharp pain in lower back. Supervisor: michael s. Venable
## 2800                                                              08/04/2000 10:06 am employee was operating a dynamic cone penetrometer when his hand slipped off the weight. He smashed his right middle finger causing a partial amputation. Supervisor: l. T. Packer
## 2801                                                                                                    08/04/2000 10:34 am employee was retrieving a box of paper towels when he felt pain in his neck and down in his right arm and hand. Supervisor: charles r. Sharp
## 2802                                                                                                                                    08/05/2003 02:51 pm (fblackmo) employee was raking asphalt when, she became overheated. Heat exhaustion. Supervisor: p. J. Acuff
## 2803                                                                                                              08/05/2003 03:28 pm (fblackmo) employee was operating a backhoe when, he twisted his back because the seat would not move. Supervisor: leslie reynolds
## 2804                                                                                                    08/05/2003 03:46 pm (fblackmo) employee was removing a engine when, he cut his finger on his left hand. Supervisor: charles watkins 09/12/2003 12:12 pm (gwhite)
## 2805                                                                                                       08/05/2003 03:59 pm (fblackmo) employee states while lifting a four gallon bucket from the platform he, felt pain in his lower back. Supervisor: d. W. Rascoe
## 2806                                                                                                 08/05/2003 04:11 pm (fblackmo) employee states while inspecting the ed braswell utility worksite, foreign matter went into his right eye. Supervisor: anthony roper
## 2807                                                                               08/05/2003 04:22 pm (fblackmo) employee states while installing mowing deck on tractor he, lost his balance and hit his right side with the lift bar. Supervisor: richard f. Jernigan
## 2808                                                                                                                     08/05/2003 12:33 pm (fblackmo) employee was taking fuel tank off dozer with hoist when, he felt pain in his groin area. Supervisor: j. C. Sloan
## 2809                                                                                                                    08/06/1999 03:10 pm employee was changing a. C. Filter, when right foot slipped and he hit his hip on the right side. Supervisor: edision tripp.
## 2810                                                 08/06/1999 03:23 pm employee suffered a contusion on his left foot while climbing down off vibratory roller. His foot slipped off the bottom step which had mud on it. Supervisor: c. E. Moore. 10/05/1999 10:59 am
## 2811                                08/06/1999 03:35 pm employee bruised his left foot while unhooking a water pump trailer from dump truck. The tongue of trailer hit the frame of truck, which caused the tongue to fall and hit his foot. Supervisor: k. B. Whitmore.
## 2812                                                                 08/06/1999 03:46 pm employee was pulling himself up onto running board of truck to enter cab, when he injured his right little finger. He also has pain in his right wrist. Supervisor: j. K. Smith
## 2813                                                                                                                   08/06/1999 04:35 pm employee was cleaning up on the dredge schweizer, when a spider bit him on his left hand palm. Supervisor: david leon pruitt.
## 2814                                                                                                                  08/06/1999 04:44 pm employee was using a bar to change a tire, when he suddenly lost feeling in his left arm and hand. Supervisor: james e. Isaac.
## 2815          08/06/2001 03:15 pm (fblackmo) employee was working on state road 1789 with a grader. It had started to rain, therefore, employee stopped the grader to close the doors. The right door was unable to be closed from the ground because the handle was bro
## 2816                                                                                     08/06/2001 03:38 pm (fblackmo) employee came into contact with poison ivy while cutting trees and chipping them on a state force construction program. Supervisor: w. H. Adkins
## 2817                                                                                                                            08/06/2001 03:50 pm (fblackmo) employee stepped on fire ant hill. Employee has allergic reactions to wasp bites. Supervisor: jim cravens
## 2818                                     08/06/2001 04:04 pm (fblackmo) employee was trimming bushes on us 17 bypass right/way on thursday 7/26/2001. Employee found tick friday 7/27/2001. Tick had bitten employee on left leg behind his knee. Supervisor; d. L. Lane
## 2819                                                                                                                                                   08/06/2001 04:19 pm (fblackmo) employee was stung by a wasp when he entered his vehicle. Supervisor: vermon smith
## 2820                                                                                   08/06/2002 07:13 am (fblackmo) employee was cutting grass on state road 1556. Employee turned around to check the traffic when, he felt pain in his back. Supervisor: c. I. Lucas
## 2821                                                                                                     08/06/2002 07:30 am (fblackmo) employee was working on a paving repair operation on state road 1527 when, he found a tick on his arm. Supervisor: c. S. Johnson
## 2822                                                                                                                      08/06/2002 08:16 am (fblackmo) employee states he was bitten by a tick while completing mussel surveys in chatham county. Supervisor: hal bain
## 2823             08/06/2002 08:28 am (fblackmo) employee states that while conducting a road test customer hit the gas to hard causing the car to jump a curb hitting a sign. Employees' seat belt lock up causing the injury to her shoulder. Supervisor: dwight godwin
## 2824                                                                                                                                  08/06/2002 08:51 am (fblackmo) employee states while pulling up weeds, came into contact with poison ivy. Supervisor: brian herron
## 2825                                                                                                              08/06/2002 09:23 am (fblackmo) employee was sharpening bush axe when. His hand slipped off of file causing a cut to his wrist. Supervisor: d. C. Kimes
## 2826                                                                                                                        08/06/2003 07:56 am (fblackmo) employee was mowing on state road when, he found a tick on the middle of his back. Supervisor: anthony harris
## 2827                                                                               08/06/2003 09:22 am (fblackmo) employee was removing a pin from a trackhoe using a short steel rod as a punch; in process he struck his thumb with hammer. Supervisor: ernest simmons
## 2828                                                                                                    08/06/2003 09:37 am (fblackmo) employee was moving a tamp when, it road up on his foot causing a contusion and punctured his toenail. Supervisor; roy d. Pittman
## 2829                                                                                                                            08/06/2003 10:56 am (fblackmo) employee was pulling a tree with a rope when, he felt pain in his left shoulder. Supervisor: r. E. Austin
## 2830             08/06/2003 11:07 am (fblackmo) employee was pulling asphalt when, his brakes locked up and sent the truck into a spin. The roller caused the truck to jack knife and employee to hit his head on the cab. Supervisor; h. D. Wiggins * let joyce see all
## 2831                                                                                        08/06/2003 11:17 am (fblackmo) employee was picking up pieces of steel-belted radial tires from roadway when, a piece of steel went into his thumb. Supervisor: s. E. Propst
## 2832                                                                    08/06/2003 11:29 am (fblackmo) employee was getting out of excavator(drott) and slipped on steps due to mud causing him to slip and strain his left wrist and shoulder. Supervisor: wayne knight
## 2833                                                                                                              08/06/2003 11:52 am (fblackmo) employee states while bending to fill gallon of cleaning supplies she, felt pain in her back. Supervisor: ellen goodwin
## 2834                                                                                                 08/07/2000 04:13 pm employee was hitching neck back to lowboy supply line when it came out causing him to mash his right index finger. Supervisor: tommy kilpatrick
## 2835                                                                                     08/07/2000 04:30 pm employee was pouring a 5 gallon can of part a resin into a 1 gallon can; when some of the material splashed into his left eye. Supervisor: larry d. Woodard
## 2836                                                                                              08/07/2000 04:38 pm employee was getting out of pickup truck to assist a motorist; when the truck door closed catching his right thumb. Supervisor: timothy e. Simpson
## 2837                                                                       08/07/2000 04:45 pm employee was sealing roads in guilford county; when he came in contact with poison ivy. He has poison ivy contact rash on both arms and his neck. Supervisor: a. L. Smith
## 2838                                                                                              08/07/2000 04:57 pm employee was pulling down a limb for supervisor to cut it with chainsaw; when the limb glazed him on his left forearm. Supervisor: v. Dean summers
## 2839                                                                                  08/07/2001 02:27 pm (fblackmo) employee was standing in road on construction site waiting for excavator to be fueled 100' down road. Debris blew into eye. Supervisor: r. E. Brake
## 2840                                                                        08/07/2001 02:42 pm (fblackmo) employee was unclogging pressurized bead line. Hose slipped back in hand when clog came out causing air and beads to hit hand. Supervisor: dwayne a. Bauguess
## 2841                                                                                                                   08/07/2001 02:55 pm (fblackmo) employee was picking up a dead beaver with his pitch fork when he felt a pain in his back. Supervisor: donald king
## 2842          08/07/2001 10:33 am (fblackmo) employee was inspecting the existing condition of soil at a cut section (8. 1943601) I-40. Employee became light headed and dizzy when climbing down from cut. Employee experienced nausea and his hands and feet felt numb
## 2843                             08/07/2001 10:52 am (fblackmo) employee was cutting diaphragms out of bridge, when sparks fell on pants leg causing it to catch a fire. Employee ran off bridge and jumped in the water to put the fire out. Supervisor: horace s. Huff
## 2844                                                                                                                     08/08/2000 02:19 pm employee shut tailgate with his right hand on top of truck and pinched/cut his right index finger. Supervisor: j. P. Ingram
## 2845                                                                                        08/08/2000 02:45 pm employee was sharpening bush ax; when it started falling. He tried to grab the blade to catch it; when he cut his left thumb. Supervisor: k. E. Anderson
## 2846                                                                                                                   08/08/2000 03:01 pm employee was clearing/grubbing slope with an excavator; when a foreign object blew into his left eye. Supervisor: t. B. Adams
## 2847                                                                                                                                           08/08/2000 03:15 pm employee went into pipe on sr 1104; when he was bitten by insects on both legs. Supervisor: r. E. Cox
## 2848                                                                                                08/08/2000 03:20 pm employee slipped and fell off back of pickup truck while unloading plywood on 7/20/00. Mr. Knowles injured his lower back. Supervisor: r. E. Cox
## 2849                                                                                  08/08/2000 03:35 pm employee was moving a wooden block from forklift. While putting block down, his right middle finger was caught under the block. Supervisor: charles f. Spencer
## 2850                                                          08/08/2000 03:47 pm employee was replacing timber caps and I-beams on bridge #402 in chatham county. He was struck by post and has abrasions to his right leg and left shoulder. Supervisor: j. L. Cornell
## 2851                                                                    08/08/2000 03:55 pm employee was using a shovel to clear broken pavement from edges of stump hole; when he felt pain in his left hip causing his knees to buckle. Supervisor: arthur glenn short
## 2852                                                                                                          08/08/2000 04:05 pm employee was cutting bolts out of an old backhoe blade; when a portion of the blade fell and cut his left foot. Supervisor: f. M. Bush
## 2853                                                                                                                    08/08/2000 04:15 pm employee was loading oxygen tanks on side of truck; when the tank slipped and fell on his left foot. Supervisor: a. E. Moore
## 2854         08/08/2000 12:15 pm employee was in bucket of truck working on signal heads; when the bucket was struck by a log truck. This caused the bucket to turnover and employee fell to the ground. He fractured his right hip, ribs, collapsed right lung, cervica
## 2855                                                                                        08/08/2002 02:13 pm (fblackmo) employee was cleaning tar kettle with big orange, a liquid used for cleaning. The liquid splashed into employee eyes. Supervisor: doug mcneal
## 2856                                                                                                         08/08/2002 02:22 pm (fblackmo) employee was clearing vegetation away from road signs when, he was stung on his left hand finger. Supervisor: n. C. Mckinney
## 2857                                                                                                                             08/08/2002 02:32 pm (fblackmo) employee was loading limbs on truck, limbs scraped and bruised his left hand. Supervisor: r. L. Faulkner
## 2858                                                                                                               08/08/2002 02:44 pm (fblackmo) employee was using a weed eater on us 401 when, he came into contact with poison ivy. Supervisor: william t. Lowery jr
## 2859                                                                                                     08/08/2002 09:27 am (fblackmo) employee was bitten by a tick on July 17, 2002 while standing on shoulder of the road flagging traffic. Supervisor: l. C. Mckeel
## 2860                                                                                                                08/08/2002 09:57 am (fblackmo) employee states he has experienced loss of hearing in both ears caused by prolonged noise. Supervisor: d. E. Williams
## 2861                                                                                                                         08/08/2002 10:09 am (fblackmo) employee states, he experienced hearing loss in both ears caused by prolonged noise. Supervisor: s. L. Emory
## 2862                                                                                          08/08/2002 10:22 am (fblackmo) employee was operating a weed eater when, he stepped into a hole causing the injury to his left knee. Supervisor: c. E. Watson/b. D. Burton
## 2863                                                                                                              08/08/2002 10:35 am (fblackmo) employee states that while cleaning a pipe on state road 1135 was stung by a insect on his back. Supervisor: l. C. Bass
## 2864                                             08/08/2002 10:46 am (fblackmo) employee states while pulling on a box to move it out of the way to reach another box that contained the drivers license handbooks, she felt pain in her shoulder. Supervisor: pat glenn
## 2865           08/08/2002 11:00 am (fblackmo) employee was standing in the hall near the supply room at the buncombe maintenance office building. Another employee (Mr. Buckner) came up behind employee picked him up, and squeezed him causing pain in his chest area.
## 2866                                                                                                          08/08/2002 11:13 am (fblackmo) employee states he came into contact with poison ivy while conducting surveys in a wooded work site. Supervisor: jeff allen
## 2867                                                                                                                                                   08/08/2002 11:29 am (fblackmo) employee states she was bitten by a tick on her left side. Supervisor: brice ellis
## 2868                              08/08/2003 08:25 am (fblackmo) employee was in a motor vehicle accident with another vehicle when, the injury occurred to multiple body parts. Supervisor: matthew oliverson 08/28/2003 03:32 pm (gwhite) 09/05/2003 02:28 pm (gwhite)
## 2869                                                                                             08/08/2003 08:40 am (fblackmo) employee was repairing road signs with a post driver sledge hammer when, he felt pain in his lower back area. Supervisor: roger faulkner
## 2870                                                                                                                                     08/08/2003 08:53 am (fblackmo) employee was clearing survey line when, he was stung between the eyes. Supervisor: t. K. Wheeler
## 2871                                                                                                                                          08/08/2003 09:04 am (fblackmo) employee was struck by the door on his truck while retrieving tools. Supervisor: danny king
## 2872                                                                                                                                08/08/2003 09:15 am (fblackmo) employee was working on the lcu when, something flew into his left eye. Supervisor: kevin lamar cooke
## 2873                                                                                                        08/08/2003 09:39 am (fblackmo) employee was working under bridge lifting a joist overhead when, he felt pain in his abdomen area. Supervisor: kevin d. Smith
## 2874                                                                              08/08/2003 09:50 am (fblackmo) employee was a passenger of vehicle that ran off road and coming to rest on passenger side, causing the injury to his back. Supervisor: iris h. Mccombs
## 2875                                                                                                                         08/08/2003 10:03 am (fblackmo) employee was picking up a piece of plywood when, he felt pain in his left shoulder. Supervisor: dennis baker
## 2876                                                                                                                     08/08/2003 10:10 am (fblackmo) employee was surveying on new construction project when, he was bitten by ticks. Supervisor: marvin wayne currie
## 2877                                                                                                                              08/08/2003 10:37 am (fblackmo) employee was clearing survey line when, he came into contact with poison ivy. Supervisor: t. K. Wheeler
## 2878                                                                                                                     08/08/2003 11:37 am (fblackmo) employee was walking down slope when, he slipped and fell causing the injury to his back. Supervisor: j. Ahimark
## 2879                                                                                          08/09/1999 09:35 am employee slipped on oily deck while cleaning bilges on ferry vessel in hyde county. He has bruises and a cut to right leg. Supervisor: cliff swindell.
## 2880                                                                                08/09/1999 09:42 am employee slipped and fell going down a creek bank at bridge site in wayne county. Mr. Fuquay injured his left knee. Supervisor: r. L. Bowers 02/01/2000 01:19 pm
## 2881                                                                                                       08/09/1999 09:50 am employee was operating a chain saw removing debris from us 421, when he felt pain in lower back and his left hip. Supervisor: j. N. Mixon
## 2882                                                                              08/09/1999 10:09 am employee was securing backhoe to trailer with chain and binder, when chain slipped causing employee to hit his right wrist on trailer. Supervisor: d. M. Pressley.
## 2883                              08/09/1999 10:19 am employee was working next to asphalt paver, when he got nauseated, lost his balance, and stepped back. Mr. Armstrong suffered from heat exhaustion and he drove himself to the doctor. Supervisor: o. T. Anderson.
## 2884                                                                                                                           08/09/1999 10:27 am employee strained lower back while assisting another employee into their diving equipment. Supervisor: glenn williams
## 2885            08/09/2001 02:51 pm (fblackmo) employee was assisting in installing an oil pan on generator tightening bolts. Employee was laying on side turning and twisting bolts. Was put on light duty on May 15, 2001 not to lift over 10lbs. Supervisor: don ferg
## 2886                                                                                                                                                            08/09/2001 03:13 pm (fblackmo) employee found a tick bite under his right arm. Supervisor: c. C. Coggins
## 2887          08/09/2001 03:27 pm (fblackmo) employee was assisting his supervisor and an inmate in cutting a dead tree on road way. The tree fell opposite of intended fall. The limbs struck the employee in the back knocking him into the road. Supervisor: a. T. Ca
## 2888                                                          08/09/2001 03:40 pm (fblackmo) employee pulled up to gas pumps, when she opened the door she fell landing on her knee. Employee was having trouble adjusting to her new bifocals. Supervisor: larry sehorn
## 2889                                                                                                 08/09/2001 03:56 pm (fblackmo) employee is slowly losing his hearing while working with equipment. Test results from last test enclosed. Supervisor: terry j. Davis
## 2890                                                                                                                            08/09/2001 07:59 am (slee) vehicle #1 was stopped at the end of the ramp waiting for traffic to clear. Vehicle #2 rear ended vehicle #1.
## 2891                                                                                 08/09/2001 09:22 am (fblackmo) employee was test driving truck, had windows down. The dirt from the floor board of the vehicle blew into employees eyes. Supervisor: h. D. Buchanan
## 2892            08/09/2001 09:42 am (fblackmo) employee was conducting a state road test. The employee instructed the driver to make preparations for a left turn. Employee informed the driver to slow down, driver continued at normal speed. The vehicle struck a tre
## 2893                                                                                                       08/09/2001 10:25 am (fblackmo) employee was cutting a piece of cloth and the blade slipped, causing a cut on his right middle finger. Supervisor: gary morris
## 2894                                                                                                      08/09/2001 10:35 am (fblackmo) employee was clearing work area from debris, stepped on a nail protruding from a piece of plywood. Supervisor: t. P. Moorefield
## 2895                                                                 08/09/2001 11:10 am (fblackmo) employee was working with patch crew, went to pick up road sign and passed out. Employee was admitted to hospital and stayed in until 6/17/01. Supervisor: as bailey
## 2896                                                                                                                                                 08/09/2002 12:53 pm (fblackmo) employee states while lifting boxes, felt pain in his back. Supervisor: dennis baker
## 2897          08/11/1999 08:36 am employee was traveling east on market street when he was hit by another person driving north on elm street. The light was red when the person at fault hit Mr. Mcadams. He has a bruised upper left arm, and pain in left side of neck
## 2898            08/11/1999 08:54 am employee was doing a road test with a customer, when the vehicle left the road and hit curb and a bush. The vehicle came to a sudden stop, making her entire body sore and stiff. Examiner morton was seated in the front seat durin
## 2899                                                                                                                    08/11/1999 09:27 am employee was putting up mail boxes and became too hot. Mr. Oxendine suffered from heat exhaustion. Supervisor: j. E. Spivey.
## 2900                                              08/11/1999 09:34 am employee sprained his left ankle when he stepped off a trailer. The trailer was 3 feet above the ground, when his ankle went out. Later he experienced pain and swelling. Supervisor: k. R. Davis.
## 2901                                                                                                                 08/11/1999 09:45 am employee had given a cdl road test when she jumped out of large vehicle injuring her right ankle. Supervisor: sheila b. Mcadams
## 2902                                                 08/11/1999 11:43 am employee was underneath truck unhooking tar kettle. Employee reached to pull himself out from under the truck, he hit his mouth on back of truck chipping his tooth. Supervisor: j. D. Hensley.
## 2903                                                                                                                       08/12/1999 08:36 am employee was bitten on the back of his left knee by an insect causing redness and swelling. Supervisor: hugh s. Matthews.
## 2904                                                               08/12/1999 08:46 am employee was outside painting, when he found ticks crawling all over his body. He found at least four ticks that had already stuck to his skin. Supervisor: charlie e. Watson jr.
## 2905                                                                                               08/12/1999 08:57 am employee was putting a plow bolt on plow point with an air wrench, when the bolt turned and cut his left middle finger. Supervisor: k. R. Burrell
## 2906                                                              08/12/1999 09:00 am employee was standing in doorway, as he turned, his left middle finger got caught in the door. He has contusions on left hand and fingers became swollen. Supervisor: h. C. Barton
## 2907                                                                                                                                 08/12/1999 09:39 am employee was lifting a tire into bin location, when he strained his mid back area. Supervisor: william t. Stone
## 2908                                                                                                     08/12/1999 09:52 am employee was driving back to the office, when a black hornet stung his left hand between thumb and index finger. Supervisor: david b. Black
## 2909                                                                                                 08/12/2003 04:42 pm (fblackmo) employee stepped into a hole while walking on shoulder of highway, causing the injury to his right knee. Supervisor: mark turlington
## 2910                                                                                                                      08/12/2003 04:55 pm (fblackmo) employee was rear ended by a private vehicle, causing the injury to her neck and back. Supervisor: eric boyette
## 2911                                                                                                                      08/12/2003 05:10 pm (fblackmo) employee was tightening chain crank and while lifting he felt pain in his lower back. Supervisor: neil roberson
## 2912                                                                                08/13/1999 02:08 pm employee injured his back while drilling holes in passenger lounges inside of m/v hunt for rivets. He felt back fatigue and aching. Supervisor: richard dewhurst
## 2913                                                   08/13/1999 02:23 pm employee was struck in the head by a backhoe. The employee jumped across a hole that was being dug to unhook lumber from the boom of truck. Supervisor: eric allen schenz 02/04/2000 03:07 pm
## 2914                                                                                                08/13/1999 03:05 pm employee experienced back pain after lifting tailgate on dump truck. He also was shoveling and raking asphalt that day. Supervisor: e. W. Spivey
## 2915                                                                                                         08/13/1999 03:17 pm employee stepped on a piece of insulation board that had a nail in it, which penetrated through his left foot. Supervisor: b. L. Myers.
## 2916                                                                   08/13/2001 02:17 pm (fblackmo) employee stated, that he was getting out of his truck and his hand slipped off the handrail. Employee fell on his right elbow and hip. Supervisor: robert w. Ipock
## 2917                                                                                        08/13/2001 03:23 pm (fblackmo) employee was drilling holes for diaphragm bolts when plywood liner flew up and hit him in mouth, chipping tooth. Supervisor: larry d. Woodard
## 2918                                                                                                                             08/13/2001 03:50 pm (fblackmo) employee was lifting dynamite out of truck bed when he felt a pull in his back. Supervisor: r. E. Austin
## 2919         08/13/2001 04:06 pm (fblackmo) employee was stung by a wasp on his left thumb while, he was clearing right-of-way bruch with bush axe. Employee became concerned when the area continued to swell with increased pain the next day. Supervisor: k. R. Davis
## 2920           08/13/2001 04:21 pm (fblackmo) employee was traveling back to maintenance facility when a private car ran a stop sign. Employee tried to avoid the accident and edged to the shoulder of the road but, the car kept coming toward him. Employee crossed t
## 2921                                                                                              08/13/2001 04:59 pm (fblackmo) employee was climbing into the back of truck, when he was pulling himself up he felt a pop in his lower back. Supervisor: todd whitaker
## 2922                                                                      08/13/2001 05:13 pm (fblackmo) employee was helping replace bridge floor. Employee picked up 4'x8'x20' timber when, he twisted to the side he injured his back. Supervisor: h. L. Silverthorne
## 2923            08/13/2001 11:25 am (fblackmo) employee was working on state road 1127 ( massey road) with grade crew. Employees supervisor instructed employee to get the crane (boom) truck to put some fence post back in the ground. While employee was walking back
## 2924                                         08/13/2001 12:04 pm (fblackmo) employee was welding on an exhaust pipe on the rv long bay, as he finished welding, he began to chip with his hammer and a piece of hot slag got into his eye. Supervisor: kevin lamar cooke
## 2925            08/13/2001 12:26 pm (fblackmo) employee was cracking jack on 10 ton trailer when she felt a pull in her lower right back area. Employee was adjusting height of trailer in order to attach to flatbed. A tractor 0301 was on the trailer at the time she
## 2926                                                                                                    08/13/2001 12:42 pm (fblackmo) employee was putting roll out matting in a ditch line and stepped on a rock causing him to twist his foot. Supervisor: sam wilson
## 2927                                                 08/13/2002 02:58 pm (fblackmo) employee states, while exiting toll booth at the southport operation, ran into the yellow caution pole. Employee experience pain in her back from the fall. Supervisor: k. J. Morris
## 2928                                                                                                 08/13/2002 03:36 pm (fblackmo) employee was leaving work for the day when, she stepped in a hole, causing the injury to her right ankle. Supervisor: peggy barnhill
## 2929                                                                                                             08/13/2002 03:52 pm (fblackmo) employee was cutting vegetation from around bridge when, he came into contact with poison ivy. Supervisor: j. Ronald lee
## 2930                                                                                                08/14/2000 04:55 pm employee was checking and reinforcing steel; when he struck his right foot while stepping over concrete formwork. Supervisor: b. R. Trivette, jr
## 2931                                                                   08/14/2000 05:00 pm employee was climbing off rock spreader; when he missed the bottom step and fell to the ground. He injured his left elbow due to the fall on 7/24/00. Supervisor: s. R. White
## 2932                                                                           08/14/2000 05:06 pm employee was trimming under brush while walking on rip rap; when he stepped/lost his balance/ and fell bruising and twisting his left knee. Supervisor: e. W. Huffman
## 2933                                                                      08/14/2000 05:11 pm employee was working with crew cutting back trees from right of way; when he came in contact with poison ivy. He has contact rash on both arms. Supervisor: marc p. Morgan
## 2934                                        08/14/2000 05:18 pm examiner drake was conducting a road test; when the customer slammed on brakes while backing. Employees head jerked back and forward, causing him to experience pain in his neck. Supervisor: k. C. Mayo
## 2935                                                                                                                                 08/14/2001 08:42 am (fblackmo) employee mashed thumb while loading concrete median on tractor and trailer. Supervisor: r. E. Austin
## 2936                                                                          08/14/2002 01:59 pm (fblackmo) employee lost control of vehicle wheel trying to avoid an accident. Employees vehicle overturned causing, laceration on left arm. Supervisor: m. S. Venable
## 2937                                                                                                                 08/14/2002 02:11 pm (fblackmo) employee came into contact with poison ivy while, conducting highway survey in macon county. Supervisor: t. B. Adams
## 2938                                                                                                                   08/14/2002 02:30 pm (fblackmo) employee states while cutting brushes with axe he came into contact with poison ivy/oak. Supervisor: m. E. Plummer
## 2939                                                                                                                            08/14/2002 07:19 am (fblackmo) employee was lifting straw when, he felt a sharp pain in his left shoulder area. Supervisor: w. D. Silver
## 2940                                                                                                                                     08/14/2002 07:38 am (fblackmo) employee struck her right elbow while unhooking air lines from truck. Supervisor: w. L. Thompson
## 2941                                                                        08/14/2002 08:08 am (fblackmo) employee was walking to put up lane closing sign when, he stepped in a hole. Employee states, has pain in his neck and shoulder area. Supervisor: ray warlick
## 2942                                                                                                                                                               08/14/2003 02:33 pm (fblackmo) employee slipped on grass from pulling brushes. Supervisor: a. O. Eply
## 2943                                                                                                                   08/14/2003 02:44 pm (fblackmo) employee states while weed-eating he was stung by a bees on his lip, hand, leg, and back. Supervisor: b. G. Herron
## 2944                                       08/14/2003 02:58 pm (fblackmo) employee states, while holding a cable that was being cut with a torch, the cable coiled wand struck his forearm. Employee received 2nd degree bruns and laceration. Supervisor: gerald messer
## 2945                                                                                                                                    08/14/2003 08:16 am (fblackmo) employee was stepping up into truck when, he felt pain in his left knee. Supervisor: jack rollins
## 2946                                                08/14/2003 08:28 am (fblackmo) employee was using a screw driver to support an engine while removing bolts. The screw driver slipped and caught his finger between the engine and support. Supervisor: leroy farrish
## 2947                                                     08/14/2003 08:46 am (fblackmo) employee was stepping up to a higher elevation on embankment when, his foot slipped causing the injury to his right knee. Supervisor: tim k. Southard 12/01/2009 04:29 pm (slee)
## 2948                                                                                                                08/14/2003 09:10 am (fblackmo) employee was exiting vehicle when, she twisted her left knee. Supervisor: lydia kimbrough 6/23/2004 10:26 am (sshort)
## 2949                                                                                                   08/14/2003 10:31 am (fblackmo) employee was stepping off embankment at pipe installation location when, he felt pain in his right knee. Supervisor; j. Ronald lee
## 2950                                                                                                                                       08/14/2003 10:49 am (fblackmo) employee states when he sat down he, felt pain in his lower back area. Supervisor: larry young
## 2951                                                                                                               08/14/2003 11:06 am (fblackmo) employee states, the pain in his left wrist occurred while performing inspection duties. Supervisor: stephen c. Walton
## 2952                                                                                                         08/14/2003 11:19 am (fblackmo) employee states he went to lunch from doing field inspection and felt pain in his left knee area. Supervisor: clark morrison
## 2953                                                                               08/14/2003 11:34 am (fblackmo) employee was driving a stop sign post into the ground when, the bolts in the post broke causing the injury to his left hand. Supervisor: r. L. Johnson
## 2954                           08/15/2000 04:00 pm employee was cutting limbs hanging over road and blocking view of stop light. Employee picked up a piece of limb and threw it into back of truck. He then felt pain in his lower back. Supervisor: anthony e. Edwards
## 2955                                                                                       08/15/2000 04:11 pm employee injured his neck while scrubbing deck plates in engine room on 7/24/00. His head struck a vent duck causing the injury. Supervisor: e. M. Farrow
## 2956                                                                                                 08/15/2000 04:25 pm employee has multiple chest contusions; when ferry vessel shifted catching her between ramp and the ferry vessel. Supervisor: donald f. Meekins
## 2957                                                                                                            08/15/2000 04:37 pm employee was removing deck hatch for access to the steering compartment; when he injured his right shoulder. Supervisor: b. R. Moore
## 2958                                                                                                                    08/15/2001 01:57 pm (fblackmo) employee was lifting hollow augers for subsurface investigation and hurt left shoulder. Supervisor: t. P. Shelton
## 2959          08/15/2001 02:42 pm (fblackmo) employee state that while, lowering life boat during a uscg drill the brake failed to hold life boat and winch handle came around and hit him on his right wrist. After they winced the boat back up, the brake started wor
## 2960                                                       08/15/2001 03:00 pm (fblackmo) employee felt pain after shoveling, sweeping and bending placing cones on interstate assisting bridge department in traffic control on August 1, 2001. Supervisor: k. R. Davis
## 2961                                                                                                               08/15/2001 03:18 pm (fblackmo) employee was mowing around bridge when, his foot got tangled in the vines causing him to fall. Supervisor: t. J. Davis
## 2962                            08/15/2001 03:51 pm (fblackmo) employee was removing wailers from form, and the top wailer on the front wall broke while removing rolled out of other employees hands and fell on the back of left knee. Supervisor: james calvin bostic
## 2963                                                  08/15/2001 04:09 pm (fblackmo) employee was opening gate to enter cdl test rile and the gate jammed causing employee to twist back. Employee had immediate pain and burning in lower back. Supervisor: g. L. Stout
## 2964                                                                                                                                    08/15/2001 04:23 pm (fblackmo) employee stepped on a rusty nail while trying to read heating tar gauge. Supervisor: j. D. Tucker
## 2965                                                          08/15/2001 04:48 pm (fblackmo) employee was walking in a wooded area, tripped and fell. His hand slid down a wooden stake he was carrying and a piece of wood stuck in his hand. Supervisor: a. C. Cochran
## 2966                                                                 08/15/2001 05:02 pm (fblackmo) employee was putting a radiator on a grader, stepped off to get a wrench and slid when feet touched the ground he twisted his right knee. Supervisor: rufus c. White
## 2967                                  08/15/2001 05:15 pm (fblackmo) employee came back into office at end of working day feeling dizzy, headache, and flushed. Employee was also weak in both legs. Employee had operated dump truck all day. Supervisor: s. G. Dillion
## 2968                                                                      08/15/2001 12:39 pm (fblackmo) employee states, muscles in neck and shoulder area were strained while moving a small table from room 107 down the hall to room 334. Supervisor: brenda freeman
## 2969           08/15/2002 02:15 pm (fblackmo) employee noticed on June 05, 2002 that his hands were ache and numb feeling at the end of the day. Employee went to doctor on July 30, 2002 and was told that he has carpal tunnel syndrome. In 1993 employee was original
## 2970                                                                                                   08/15/2002 02:38 pm (fblackmo) employee states while walking down embankment, misjudged the distance causing, pain to his neck and back. Supervisor: d. L. Cr0tts
## 2971          08/15/2002 02:53 pm (fblackmo) employee was driving a dump truck (0205) that was towing a patch roller, employee was stopped on nc 8 (winston road) due to traffic waiting for signal to change. The driver of a private vehicle failed to reduce speed an
## 2972                                                                                                08/15/2002 03:28 pm (fblackmo) employee was using a rake to pull and level materials on the shoulder of road. Supervisor: r. E. Langley 08/27/2002 04:05 pm (sshort)
## 2973                                                                            08/16/1999 09:42 am employee came in contact with poison ivy in the woods while clearing area for survey. Contact rash on forearms, legs, stomach, and hands. Supervisor: d. W. Jernigan
## 2974              08/16/1999 09:52 am employee sprain/strained his right hand and thumb, while cutting cement with a hammer drill. The bit in the drill got caught between the cement and steel bar. The drill locked and twisted the employees hand. Supervisor: willia
## 2975                                                                                                                    08/16/1999 10:02 am employee was replacing a hose, when the hose slipped causing the employee to hit his left elbow. Supervisor: michael rhodes.
## 2976                                                                                                                                       08/16/2000 09:30 am employee was changing and replacing blades when he cut his right middle finger. Supervisor: j. E. Walters
## 2977                                                                                                                           08/16/2000 09:38 am employee was pulling a log from truck tailgate when he strained his lower back and left leg. Supervisor: e. W. Spivey
## 2978                                          08/16/2000 09:43 am employee was evaluating ways to clear under brush from an equipment path to gain access for drilling. As he turned to walk out, a pine branch caught him in his left eye. Supervisor: neil t. Roberson
## 2979                                                                                        08/16/2000 09:50 am employee was in the process of pulling a sign post; when the hydraulic line on the puller ruptured and lacerated his right hand. Supervisor: c. R. Woody
## 2980                08/16/2001 03:37 pm (sshort) employee was rear-ended while driving state vehicle on 8/8/01. Mr. Conner has pain/strain to his mid back area. The accident happened at the intersection of us 117 and nc 53 in pender county. Supervisor: k. T. Cross
## 2981                                                                                                               08/16/2001 03:46 pm (sshort) employee was cutting limbs on sr 1142; when he was stung by bees on the left side of his neck. Supervisor: r. E. Langley
## 2982                                        08/16/2001 03:52 pm (sshort) employee was flagging traffic on hart road; when he passed out (fainted) from heat exhaustion. Mr. Shelton sprain/strained his right hand when he fell to the ground. Supervisor: j. D. Shelton
## 2983                                                                                                    08/16/2001 03:58 pm (sshort) employee was spraying herbicides around sign posts on primary roads; when he felt pain in his right eye. Supervisor: a. L. Lassiter
## 2984                                                                                                                                              08/17/2001 04:42 pm (fblackmo) employee was surveying near us 70. Found tick in left ear. Supervisor: d. C. Bodenhamer
## 2985                                                             08/18/1999 02:04 pm Mr. Leonard punctured his right hand palm while collecting water drippings from the ac unit into cab of athey loader. A piece of wire punctured his palm. Supervisor: s. G. Dillon.
## 2986                                                                                                 08/18/1999 02:21 pm employee twisted his right ankle, when he stumbled as he walked in the parking lot of restaurant during his lunch area. Supervisor: a. L. Smith
## 2987                        08/18/1999 02:35 pm employee was bitten by a copperhead snake, while waiting on job site for the next asphalt truck. Mr. Rogers put his hand on rock while sitting in the shade with contractor. Supervisor: nathan k. Turner/w. K. Brazell.
## 2988                                                  08/18/1999 04:22 pm employee was climbing upon trailer/tractor to pull harrow further up on disc, when he lost his balance. He put his hand down to catch himself bending his left thumb. Supervisor: j. D. Tucker
## 2989                                                                         08/18/1999 04:44 pm employee came in contact with poison ivy while cutting bushes around bridges. Contact rash various parts of the body. Supervisor: lemuel e. Cotton. 02/04/2000 11:01 am
## 2990                                                                                                                      08/18/1999 04:51 pm employee injured his right shoulder rotator cuff, when he slipped of step of mower tractor. Supervisor: c. N. Edwards, jr.
## 2991           08/18/1999 04:56 pm employee injured right index finger while closing lid to box on a truck. The chains broke causing the lid to drop. The lid latch was hard to close, so employee had to slam the lid down, catching his finger in the process. Supervi
## 2992                                                           08/18/1999 05:13 pm Mr. Cantrell was bushing under brush, when he slipped and fell into a bunch of blackberry briars. The briars stuck in his left eye lid, scratching his eye. Supervisor: j. C. Gunter.
## 2993                                           08/18/1999 05:18 pm employee punctured left foot while walking on bank below a bridge. There was a board hidden in the grass that had a nail in it penetrating through his shoe to his foot. Supervisor: wayne l. Miller.
## 2994                                                                                                  08/18/1999 05:26 pm employee suffered second degree burns to left forearm. Mr Brantley tripped and fell into hot asphalt burning his arm. Supervisor: a. L. Smith.
## 2995                                                                  08/18/1999 10:27 am employee hit his head and re-injured his right knee when he tripped on loose rug used to cover electrical outlet and fell. Supervisor: c. E. Lassiter, jr. 10/05/1999 11:29 am
## 2996                                                                                  08/18/1999 10:52 am employee bruised left rib cage while exiting a truck from the passengers side. He slipped on the running board, hitting his ribs. Supervisor: b. D. Underwood.
## 2997                                           08/18/1999 11:05 am employee injured his back while cutting trees off right of way. The saw was caught in the tree, when Mr. Rowland tried to remove the saw he felt his back catch (pain). Supervisor: tommy kilpatrick.
## 2998                     08/18/1999 11:18 am employee was flagging traffic in work zone, when he became nauseous and fatigued. He was treated for heat exhaustion on 7/23/99 and diagnosed with kidney stones on 7/24/99. Supervisor: f. L. Wiggins. 02/04/2000 10:05 am
## 2999                                                                                                                  08/18/2000 01:33 pm employee was walking out the door; when he slipped and fell on rainy wet steps injuring his left knee. Supervisor: mehdi haeri
## 3000                                          08/18/2000 10:50 am employee was laying on bridge deck with his left leg over the edge of form spreading concrete. When he stood up his left leg was numb on inside of thigh to below the knee. Supervisor: emmitt bullman
## 3001                                                                                      08/18/2000 10:56 am employee was spraying herbicide when he developed an allergic reaction over his body and face. He has watery eyes and itching. Supervisor: steven p. Adams
## 3002                                                                                                 08/19/2003 02:19 pm (fblackmo) employee states while keying on a daily basis she experienced pain in both hands. Carpal tunnel syndrome. Supervisor: scott matthews
## 3003                                                                                                                      08/19/2003 02:38 pm (fblackmo) employee was operating a long arm mower when, he came into contact with poison oak. Supervisor: leslie reynolds
## 3004                                                                                                                  08/19/2003 03:54 pm (fblackmo) employee was dis-mounting from front end loader when, he felt pain in his right ankle. Supervisor: paul. R. Draughn
## 3005                                                                                                                        08/19/2003 12:10 pm (fblackmo) employee states while stepping out of vehicle he, felt pain in his left knee. Supervisor; brandon w. Whitaker
## 3006                                                                                                                              08/19/2003 12:41 pm (fblackmo) employee states, he was thrown from a tractor that was hit by a motor vehicle. Supervisor: g. M. Taylor
## 3007                                                                                          08/19/2010 09:13 am (slee) pov rear-ended sov while traveling at a slow speed. 08/19/2010 09:35 am (slee) other person: james tuttle, 3442 nc hwy. 135, stoneville, 27048.
## 3008                                                                     08/20/1999 08:48 am employee was working near the intersection of overby & sizemore road on 8/2/99, when the wind blew a piece of trash in his right eye. Supervisor: d. E. Taylor/k. D. Boyer.
## 3009                     08/20/1999 09:20 am employee was getting out of grader, when he experienced a sharp pain. This pain caused the employee to fall and sprain left ankle. Mr. Thomas had surgery on January 28, 1999 on his right knee. Supervisor: d. A. Hensley.
## 3010                                           08/20/1999 09:47 am Mr. Corn was waiting to turn at a stop light in patrol car, when he was struck from behind by a one ton truck. He suffered pain in his neck, back, and upper shoulders. Supervisor: lt. D. L. Austin.
## 3011           08/20/2001 10:09 am (fblackmo) employee took the customer on a road test, customer attempted to make a 3 point turn. At the time of the turn the customer pushed the gas pedal instead of the brake pedal and drove over two hedge bushes and hit a tree.
## 3012                                                                                                                                                 08/20/2002 03:12 pm (fblackmo) employee was lifting a sign when, he felt pain in his chest. Supervisor: a. L. Smith
## 3013                                                           08/20/2002 03:25 pm (fblackmo) employee was operating metal hook-up on the back of athey loader on the morning of 08/12/2002 when, he complained of pain in his lower right arm. Supervisor: j. D. Wilson
## 3014                                                                                                                     08/20/2002 03:36 pm (fblackmo) employee was walking down in a ditch, stepped on a pile of dirt twisting is right foot. Supervisor: j. E. Spivey
## 3015                                                                                                                      08/20/2002 03:48 pm (fblackmo) employee started to sit in a seat by the side of state road 1448 when, the seat broke. Supervisor: w. D. Silver
## 3016                                                                             08/20/2002 07:14 am (fblackmo) employee was driving spikes and wooden stakes into ground. Employee attempted to stand up when, he felt a pain in his lower back. Supervisor: doug kimes
## 3017                                                                                                                              08/20/2002 07:39 am (fblackmo) employee states she is experiencing carpal tunnel syndrome in her left hand. Supervisor: mike salisbury
## 3018                        08/20/2002 08:14 am (fblackmo) employee was checking construction site at turtle creek sub-division on old salisbury road. Employee was walking beside construction work when, his right leg fell in utility hole. Supervisor: robert mcmath
## 3019                                                                                                       08/20/2002 08:29 am (fblackmo) employee was unloading mud off the back of his pick up truck when, he felt pain in his left eye. Supervisor: clinton b. Little
## 3020                                                                                                                        08/20/2002 08:55 am (fblackmo) employee was moving 55 gallon drum of alcohol when, he felt pain in his side. Supervisor: francis n. Champion
## 3021                                                                                          08/20/2002 09:17 am (fblackmo) employee was cutting right of way on state road 1433 in alleghany county when, he came into contact with poison ivy. Supervisor: roger todd
## 3022                                                                                    08/20/2002 09:30 am (fblackmo) employee was helping unload fuel drop into tanks when, his hand slipped off the handle causing pain in his right hand. Supervisor: sanford barton
## 3023                                       08/20/2002 10:20 am (fblackmo) employee was dismounting wooden fence when, he stepped on a board that had a nail in it. The nail penetrated through his boots and into his left foot. Supervisor: william edward mcclendon jr
## 3024                                                                                                        08/20/2003 02:59 pm (fblackmo) employee was exiting vehicle when, he stepped on uneven ground causing the injury to his right ankle. Supervisor: ron bennett
## 3025                                                                                                                          08/20/2003 03:18 pm (fblackmo) employee ran off the road due to heavy rain which, caused the injury to his back. Supervisor: j. A. Medford
## 3026                                                                                                                                  08/20/2003 03:34 pm (fblackmo) employee states she mashed her finger when, the air cylinder did not open. Supervisor: j. F. Bishop
## 3027                                                                                                  08/20/2003 03:44 pm (fblackmo) employee was flagging on a leeboy paving operation when, the hot asphalt caused employees feet to blister. Supervisor: t. F. Rhodes
## 3028                                                                                                               08/20/2003 03:55 pm (fblackmo) employee went into the woods when, he was bitten by a bug or spider on his right lower leg. Supervisor: evarick thomas
## 3029                                                                                                       08/20/2003 07:24 am (fblackmo) employee states, that a chip spreader ran into the back of his truck causing the injury to his neck. Supervisor: w. T. Garrett
## 3030                                                                                                                         08/20/2003 08:43 am (fblackmo) employee was bitten by a tick on his left leg while weed eating and cutting grass. Supervisor: h. D. Wiggins
## 3031                                                                                    08/20/2003 09:00 am (fblackmo) employee was clearing brush along right of way when, he came into contact with poison ivy. Supervisor: c. E. Moore 10/27/2003 08:27 am (kbarefoo)
## 3032                                                                                                                                08/20/2003 09:10 am (fblackmo) employee was mowing right of way when, he stung by a bee above his left eye. Supervisor; s. G. Dillon
## 3033                                                                                                                   08/20/2003 09:37 am (fblackmo) employee was stepping out motor grader when, he slipped causing pain in his back and neck. Supervisor: m. B. Smith
## 3034                                                                                                                                                  08/20/2003 10:12 am (fblackmo) employee states he fell on left knee at the loading dock. Supervisor; donna beasley
## 3035                                                                                                        08/20/2003 10:52 am (fblackmo) employee was driving the tandem dump truck when, he felt pain in his knee while pushing in clutch. Supervisor: k. L. Anderson
## 3036                               08/21/2000 02:52 pm employee stated while he was cutting bolt from caps he was laying face down on the bridge deck. He felt something snap in his right rib while reaching under bridge with the torch. Supervisor: eric allen schenz
## 3037                                                                                                                    08/21/2000 03:00 pm employee was driving down chub lake road when he felt something bite him on center of his back. Supervisor: j. W. Oliver, jr
## 3038                                                                                                                                             08/21/2000 03:11 pm employee suffered heat exhaustion while cleaning weeds on I-95 on 8/1/00. Supervisor: j. E. Walters
## 3039                                                      08/21/2000 03:30 pm employee jumped off of truck to keep from falling off. As he jumped he hit his arm and knee on the truck. He landed hard on his feet hurting his back as well. Supervisor: roger d. Peeler
## 3040                                                                                               08/21/2000 04:00 pm employee was carrying supplies into work area; when he slipped and fell on a slick tree limb injuring his right knee. Supervisor: ricky a. Tipton
## 3041                                                                                                  08/21/2000 04:35 pm employee was driving a truck when he felt a sting on his upper back. He also felt pain in his chest/shoulder area. Supervisor: charles f. Vick
## 3042                                                         08/21/2000 04:40 pm employee was working at a worksite in randolph county on 8/4/00; when he found a tick on groin area. Mr. Epps has aches, pains, and fever due to the tick bite. Supervisor: a. L. Clark
## 3043                                                                                                                              08/21/2001 03:40 pm (fblackmo) employee was weeding plants by hand when, bees flew on his arms and head. 08/27/2001 02:54 pm (twerner)
## 3044                                                                             08/21/2001 03:54 pm (fblackmo) employee was walking over to file cabinet to set down a small piece of wood, as he twisted he felt a catch in his lower back. Supervisor: t. C. Privette
## 3045                                                    08/21/2001 08:44 am (fblackmo) employee was working with crew on state road-1528. Employee began having trouble breathing, called 911, employee was transported to hospital in franklin. Supervisor: w. H. Lynch
## 3046                                                                            08/21/2001 09:17 am (fblackmo) employee, while walking/climbing up a hill, developed a pain in chest. The pain caused a shortness of breath and some dizziness. Supervisor: gary crowder
## 3047                                                                                                                                        08/21/2001 09:42 am (fblackmo) employee came into contact with poison oak while cutting right of way. Supervisor: t. L. Hall
## 3048                                                                                                 08/21/2001 10:03 am (fblackmo) employee stepped on a nail which penetrated the sole of his right shoe and then entered into his foot. Supervisor: r. Preston hunter
## 3049                                     08/22/2001 01:47 pm (fblackmo) employee was cutting plastic from around wood stakes. The plastic was on right but, a small wood splinter was thrown into employees eye when he cut off the plastic. Supervisor: michael biedell
## 3050                                                                                                               08/22/2001 02:00 pm (fblackmo) employee was working on the drott when he crawled under and came in contact with poison ivy. Supervisor: m. B. Mizelle
## 3051            08/22/2001 02:18 pm (fblackmo) employee was traveling on us 264 when a rock from a dump truck hit his windshield. The employee notice that the tailgate from the truck was not latched so he flagged the driver and help to latch his tailgate. The rock
## 3052                                                                      08/22/2001 02:56 pm (fblackmo) employee was pulling a piece of 50 pound density equipment toward the tailgate of a pick-up truck when he felt a pull in his shoulder. Supervisor: danny wrench
## 3053                   08/22/2002 09:52 am (fblackmo) employee had been advised by his doctor approximately one year ago that he had a small hernia, while at work on tuesday 08/06/2002, he turn around causing the hernia to pop out. Supervisor: thomas foster bowser
## 3054                                                                                                                      08/22/2002 10:18 am (fblackmo) employee states while pulling herself up into the truck, she felt a pull in her back. Supervisor: dwight godwin
## 3055                                                                             08/22/2002 10:47 am (fblackmo) employee was working on asphalt crew on state road 1336 shoveling and raking asphalt when, starting experiencing heat exhaustion. Supervisor: s. R. Ross
## 3056            08/24/1999 09:11 am two employees had a conflict which turned physical on 7/27/99. One employee pushed the other and Mr. Hunter ended up with a cut on his head. He hit his head on the front of a crew cab causing a four inch laceration. He also brui
## 3057                                                                                       08/24/1999 09:23 am employee was stung by bees when he stepped on a yellow jacket nest. He fell when running from the bees injuring his left thumb. Supervisor: ricky tipton.
## 3058                                                                                                                    08/24/1999 09:32 am employee experienced pain in lower back and right hip while pulling wrench repeatedly and drilling. Supervisor: d. P. Murphy
## 3059                                                                                                                                                  08/24/1999 09:36 am employee cut his right index finger while cutting belt with a knife. Supervisor: j. D. Shelton
## 3060                                                                08/24/1999 09:45 am employee was driving truck to the job site, when a car pulled out in front of Mr. Gleason. He suffers cervical strain to his neck due to this accident. Supervisor: jimmie evans
## 3061                                                                                     08/24/1999 09:53 am employee sprained her left ankle, when she stepped off truck step. She lowered herself too quickly while getting out of the truck. Supervisor: james taylor
## 3062                                             08/24/1999 09:58 am employee fractured her right hand when she fell on 8/17/99. Employee was walking on cemented area, when she tripped over a raised slab of cement 1 and 1/2 inches higher. Supervisor: c. F. Edwards
## 3063                                                              08/24/2000 09:54 am Mr. Harrison supervisor told him to take the asphalt pouring pot on 8/1/00. Employee did not have on gloves when he burnt tow fingers on his right hand. Supervisor: h. D. Wiggins
## 3064                                                                                                                    08/24/2000 10:00 am employee was removing signs from right of way; when he pulled muscles in his neck and shoulders. Supervisor: j. B. Hunsinger
## 3065                                                              08/24/2000 10:53 am car in front of employee stopped. Employee was almost stopped when a truck behind him failed to stop, hitting employee from behind pushing employee's truck into car ahead of him.
## 3066                                                               08/24/2000 12:25 pm employee was flagging for road crew patching sr 2105; when he came in contact with poison ivy. He has poison ivy contact rash on both arms and legs. Supervisor: mark e. Stafford
## 3067                                                                          08/24/2000 12:38 pm employee was removing dead trees on sr 1307; when he came in contact with poison ivy plants. He has contact rash on his left arm and his back. Supervisor: keith lance
## 3068                                                                                                            08/24/2000 12:43 pm employee was chipping brush when he came in contact with poison ivy plants. He has contact rash on both arms. Supervisor: alan brown
## 3069                                                                                                            08/24/2000 12:48 pm employee was cleaning asphalt off the patch roller, when she came in contact with chemical on her right leg. Supervisor: a. L. Smith
## 3070                                                                                                          08/24/2001 02:01 pm (fblackmo) employee was clearing weeds off of I-240 in buncombe county when, came into contact with poison oak. Supervisor: keith hill
## 3071                                                                                                           08/24/2001 02:15 pm (fblackmo) employee came into contact with poison oak while clearing weeds off highway 240 in buncombe county. Supervisor: keith hill
## 3072                                                                                                                08/24/2001 02:28 pm (fblackmo) employee was clearing weeds from around scrub beds when, he came into contact with poison oak. Supervisor: keith hill
## 3073                                                        08/24/2001 02:40 pm (fblackmo) employee was pouring used oil from catch pan into used oil tank, when he bent over to start pouring the oil, he felt a sharp pain in his lower back. Supervisor: d. R. Parker
## 3074                              08/24/2001 02:56 pm (fblackmo) Mr. Wilkins was closing the lounge door behind him but did not notice that employee quidley was behind him. Employee quidley right middle finger was caught between the door. Supervisor: b. P. Wilkins
## 3075                                                                         08/24/2001 03:14 pm (fblackmo) employee was showing another employee a tree limb to be cut and stepped into a hole causing him to twist his ankle and fell down. Supervisor: marc p. Morgan
## 3076                                                                                           08/24/2001 03:27 pm (fblackmo) employee was cleaning piping between sea chest and cooling pump when he stood up he felt a pop in his lower back. Supervisor: s. H. Kinner
## 3077                                                    08/25/1999 10:03 am employee was climbing off of a scaffold, when he twisted his right ankle. The cinder block was kicked out from under his foot, when he stepped down on the ground. Supervisor: ken anderson.
## 3078                           08/25/1999 10:17 am employee suffered from heat exhaustion and dehydration on 8/18/99. Air conditioner unit was broken and the temperature that day was over 100. Unknown location of injuries to report. Supervisor: robert e. Bell, jr.
## 3079                                                                   08/25/1999 10:30 am examiner robbins was getting out of car when she felt her lower back pop causing her pain. She had just completed giving a customer a driving test. Supervisor: reba mitchell
## 3080                                         08/25/1999 10:48 am employee was removing brush when he stepped in to a yellow jackets nest causing them to sting him six times. Later he started having chest pains. Was stung on head/face, arm wrist, leg, thigh, waist.
## 3081                                                                                           08/25/1999 11:06 am employee was cutting undergrowth in bridge right of way and got into a nest of yellow jackets. Was right ear, right arm/shoulder. 02/01/2000 10:54 am
## 3082                                                                                                            08/26/1999 02:40 pm employee hit left hand on tailgate latch trying to break fall, after dislodging rock from tailgate. Left hand, 4th finger fractured.
## 3083                                                                                    08/26/1999 02:56 pm employee was filling a spray bottle with asphalt release(zep 004) turned off tank, set bottled down when the liquid splashed in his face. Eyes were injured.
## 3084                                                     08/26/1999 10:02 am employee was helping set a fence off the right of way, when later in the day he noticed he had red bugs on him. Red bugs found on both legs, stomach, and back. Supervisor: j. D. Cabaniss.
## 3085                       08/26/1999 10:10 am Mr. Sawyer was clearing survey area, when he found a tick attached on the inside of his left leg below his calf. He found several ticks on his body, but missed the one already attached on leg. Supervisor: a. K. Alford
## 3086                                                                                                                                                                                   08/26/1999 10:25 am constantly working on heavy equipment. Lateral epicondylitis.
## 3087                                                                                       08/26/1999 10:55 am employee was removing timber 12 x 12 x 3' from top of timber pile, timber 12 x 12 fell catching his hand between bracing. Right hand. 02/01/2000 01:23 pm
## 3088                                                                                      08/26/1999 11:12 am employee was painting a timber bridge handrail and put his hand back behind the rail to paint the post when he was struck a wasp nest. 02/01/2000 11:28 am
## 3089                                                                                                                                08/26/2003 01:48 pm (fblackmo) employee was shoveling gravel on shoulder of road when he became over heated. Supervisor: c. E. Moore
## 3090                                          08/26/2003 02:32 pm (fblackmo) employee lost his balance and fell from the back of a truck. Employee grabbed the sign post but the shaking caused the brace to unbolt striking his head. Supervisor: charles m. Jackson jr
## 3091                                                                                                                             08/26/2003 02:44 pm (fblackmo) employee was lifting metal sign from back of truck when, he felt pain in his left shoulder: sarah foster
## 3092                                                                             08/26/2003 07:39 am (fblackmo) employee states while assisting another employee in pushing a pilot truck out of a ditch he, felt pain in his back area. Supervisor; archie lee smith jr
## 3093                                08/26/2003 07:55 am (fblackmo) employee was spraying around planting projects using a backpack sprayer. The straps was adjusted to tight causing bruising on his right shoulder and a minor back strain. Supervisor: brian k. Glover
## 3094                                                                                                                   08/26/2003 08:38 am (fblackmo) employee was pulling up mailboxes when, his hemorrhoids starting giving him problems. Supervisor: eddie gurganious
## 3095                                                                                                                 08/26/2003 09:01 am (fblackmo) employee was helping another employee lift a chipper on truck when, he felt pain in his back. Supervisor: t. J. Shaw
## 3096                                         08/26/2003 09:10 am (fblackmo) employee was attempting to roll a loader tire off the truck when, he lost his balance and fell off the back of the truck causing the injury to his right wrist. Supervisor: d. Shane edwards
## 3097                                                                                                                08/26/2003 09:27 am (fblackmo) employee was working on aggregated spreader when, a rock flew up from the belts into his eye. Supervisor: m. V. Price
## 3098                                                                       08/26/2003 09:36 am (fblackmo) employee had an allergic reaction to some insects and vegetation while working in the field causing a rash to form all over his body. Supervisor: jeffery kidd
## 3099                                                                                                               08/26/2003 09:52 am (fblackmo) employee was walking down steps when, her foot slipped causing the injury to her chin and lip. Supervisor: joe lockamy
## 3100                                                                                                                          08/26/2003 10:23 am (fblackmo) employee was stepping off of back hoe when, he felt pain in his left shoulder area. Supervisor: jimmy walls
## 3101                                                                                                     08/26/2003 11:01 am (fblackmo) employee was using bar to reposition form when, he hit his arm on pipe causing a cut to his right arm. Supervisor: c. C. Coggins
## 3102                                                                                                08/26/2003 11:11 am (fblackmo) employee was drilling through two pieces of metal when, metal kicked sideways injuring employees left hand. Supervisor: d. M. Presley
## 3103                                                                                                                                               08/26/2003 11:31 am (fblackmo) employee stepped up on cross-tie and twisted his left ankle. Supervisor: j. D. Shelton
## 3104                                              08/26/2003 11:44 am (fblackmo) employee was pulling on tailgate on tandem dump truck so that the mud could fall out, he slipped in mud and tailgate slammed on two fingers on his left hand. Supervisor: b. W. Jackson
## 3105                                                                                                                                            08/26/2003 11:56 am (fblackmo) employee pulled muscle in his neck while working with drill crew. Supervisor; r. R. White
## 3106                                                                                       08/26/2003 12:07 pm (fblackmo) employee sustained a tick bite on the calf of his left leg while working with paint gun on the shoulder of the road. Supervisor: joe s. Parker
## 3107                                                                                                       08/26/2003 12:25 pm (fblackmo) employee was removing a license plate light bulb, bulb broke causing a cut to his left index finger. Supervisor: d. C. Sherrod
## 3108                                                                                          08/26/2003 12:35 pm (fblackmo) employee tripped over a stack of lumber, he used his arm to break his fall causing the injury to his right wrist. Supervisor: b. W. Jackson
## 3109                                                                                            08/26/2003 12:45 pm (fblackmo) employee was inspecting paving operations when, he collapsed falling into asphalt causing burns to his elbows. Supervisor: stephen sparks
## 3110                                                                         08/27/2002 01:10 pm (fblackmo) employee was trying to cut a tree that had fallen; on slope mower tractor with bush axe that had no handle cutting his right hand. Supervisor: w. R. Loyd jr
## 3111                                                                                                                                08/27/2002 01:24 pm (fblackmo) employee was pulling brush when, he came into contact with poison ivy/oak. Supervisor: marc p. Morgan
## 3112                                                                                                                                 08/27/2002 01:34 pm (fblackmo) employee was climbing up the side of a creek bank when, he lost his footing. Supervisor: ken presson
## 3113                                                                                                                                    08/27/2002 01:46 pm (fblackmo) employee tripped on weeds and brushes while going down embankment. Supervisor: w. D. Frye jr tegs
## 3114                                                                                                                        08/27/2002 01:57 pm (fblackmo) employee was replacing tool handles when, he took a step back he fell over push mower. Supervisor: d. L. Lane
## 3115                                                                                                         08/27/2002 03:28 pm (fblackmo) employee was clearing right-of-way on state road 1565 when, he came into contact with poison/oak. Supervisor: k. L. Anderson
## 3116                                                                                                                             08/27/2002 03:44 pm (fblackmo) employee was loading a density testing gauge into the back of his dot van. Supervisor: phil l. Stanberry
## 3117                                                                                                     08/27/2002 09:57 am (fblackmo) employee was putting stanchion into place when; his right hand was caught between the ramp and stanchion. Supervisor: t. L. Paul
## 3118           08/27/2002 10:12 am (fblackmo) employee and inmate was shoveling asphalt from the back of pickup truck. Inmate hit employee on his right arm(elbow area) with a shovel full of hot asphalt when, employee turn around to refill his shovel. Supervisor: w
## 3119                                                                                                                   08/27/2002 10:47 am (fblackmo) employee was at rest area on I-95 south when, and insect bite him on his right eye. Supervisor: sgt. Cynthia floyd
## 3120                                                                                                            08/27/2002 11:01 am (fblackmo) employee was loading a signal cabinet onto a truck. Employee felt pain in his lower back area. Supervisor: johnny coleman
## 3121                                                                                                            08/27/2002 11:14 am (fblackmo) employee was inspecting dot state project in a wooded area when, a tick bite him on his left arm. Supervisor: k. T. Cross
## 3122                                                                                     08/27/2002 11:27 am (fblackmo) employee was lifting a stack on cones to load onto truck to be transported to job site when, he felt pain in his back. Supervisor: hugh williams
## 3123                                                                                                                         08/27/2002 11:39 am (fblackmo) employee states while spraying straw with a tack wand he, felt pain in right wrist. Supervisor: h. M. Coates
## 3124                                                                                                           08/27/2002 11:51 am (fblackmo) employee was chaining backhoe down on trailer when, the chain slipped causing injury to his hand. Supervisor: n. S. Gibson
## 3125           08/27/2002 12:52 pm (fblackmo) employee states, the compressor cut off and he climbed up on the pickup to check for the mile-function. Employee lost his balance, grabbing the exhaust pipe of the compressor to keep from falling. Supervisor: charles m
## 3126                                                                                                                  08/28/2002 07:05 am (fblackmo) employee states that while pulling tree limbs out of median of road, caused injury to back. Supervisor: donald king
## 3127                                                                                                            08/28/2002 07:23 am (fblackmo) employee states while lifting up ramp for rock spreader, he felt pain in his lower back area. Supervisor: mm. I. Fogleman
## 3128                                                                                                               08/28/2002 07:36 am (fblackmo) employee states came into contact with poison ivy while, removing a fallen tree out of roadway. Supervisor: ken pruett
## 3129                                                                                                                   08/28/2002 08:02 am (fblackmo) employee states while removing fallen tree from roadway, came into contact with poison ivy. Supervisor: ken pruett
## 3130                    08/28/2002 09:27 am (fblackmo) employee was servicing a large tandem truck on a lift. The lift does not go high enough for employee to walk under. Employee bumped his head(left side of forehead) on the main rail. Supervisor: d. E. Bowers jr
## 3131                                                                               08/28/2002 09:42 am (fblackmo) employee states while bending over for a long period of time removing survey nails from roadway, experienced pain in his back. Supervisor: c. D. Kimes
## 3132                                                                                                                                                08/28/2002 09:53 am (fblackmo) employee was loading straw when, a rash broke out on his arms. Supervisor: sam wilson
## 3133                                                                                                       08/28/2002 10:06 am (fblackmo) employee was inspecting bridge 44 in moore county when, his foot slipped off a barrier rail at pier # 3. Supervisor: mark wade
## 3134                                                                                                          08/28/2002 10:49 am (fblackmo) employee was using a hammer to drive a hub into the ground when, he felt pain in his lower back. Supervisor: ruxton bobbitt
## 3135                                                                      08/28/2002 11:00 am (fblackmo) employee was loading nuclear gauge into storage box on bed of pickup and pinned left hand between storage box door and nuclear gauge. Supervisor: e. A. Burwell
## 3136           08/28/2002 11:21 am (slee) Mr Hess was driving a single axle dump truck along hurdle mills road traveling east when a private tandem double axle crossed the center line. Mr. Hess slowed down and tried to avoid the private party by drifting towards t
## 3137                                                                                                                               08/28/2002 12:55 pm (fblackmo) employee was getting out of dump truck and twisted his left ankle. Supervisor: ralph thomas mcmanus jr
## 3138                                                                                                                     08/29/2000 04:23 pm employee felt sharp pain in his lower back while attempted to swing a surveying instrument case. Supervisor: phil d. Manley
## 3139                                                                                                                         08/29/2000 10:29 am employee got out of cart to walk into the building when he twisted/sprained his left leg. Supervisor: desmond r. Foster
## 3140          08/29/2000 10:44 am employee was brazing a steel hydraulic pipe on excavator boom; when the heat from the brazing process ignited the oil vapor. Employee has 2nd degree burns to legs (between his knees and groin) and 2nd degree burns to both hands. S
## 3141           08/29/2000 10:56 am employee was coming back from weigh station from checking a vehicle; when he stepped back from a truck. He missed the curb and started to fall. He caught himself and then heard his back pop and immediately started having pains in
## 3142           08/29/2000 11:16 am employee was preparing his crew to pull asphalt sled onto sr 1956 on 8/16/00. A private vehicle came through work zone striking Mr. Walker from behind and knocking him onto the pavement. He has injuries to his upper and lower bac
## 3143                                                 08/29/2001 01:00 pm (fblackmo) employee was dumping trash cans into dumpsters and was bitten by a spider. Trash cans were stationed on island at fuel pumps. Supervisor: t. C. Tilley 09/07/2001 08:29 am (twerner)
## 3144            08/29/2001 02:07 pm (fblackmo) employee was loading steel wheel roller on trailer. Trailer was wet from rain. The roller began to slide, employee jumped off the roller and struck the railer with the left side of his buttocks. Supervisor: robert hol
## 3145                               08/29/2001 02:31 pm (fblackmo) employee was using the weedeater around bridge when a nest of ground bee swarmed out at him and stung him on the hand and back several times. Employee was taken to doctor. Supervisor: gerald woodley
## 3146                                                                08/29/2001 03:02 pm (fblackmo) employee was walking in the rear parking lot area of dmv( close to back door entrance) when she was hit in the head by a falling object. Supervisor: jennifer johnson
## 3147               08/29/2001 03:20 pm (fblackmo) employee was moving ramps on trailer when his finger got caught in ramp. Supervisor: b. G. Herron 08/29/2001 03:25 pm (fblackmo) later in the evening, employee was mowing on exit ramp I-40 when, the wind blew trash
## 3148                                                                                                                               08/29/2001 03:39 pm (fblackmo) employee was stacking steel on racks when he was stung by wasp multiple times. Supervisor: w. E. Evans
## 3149          08/29/2001 10:44 am (fblackmo) employee was driving broom tractor back to maintenance yard from work site when, it was struck by a tractor trailer. Employee was thrown from the tractor in impact and suffered various injuries. Supervisor: r. W. Baucom
## 3150                                                                                                                                            08/29/2001 11:31 am (fblackmo) employee was cutting down trees and got exposed to poison oak. Supervisor: k. L. Anderson
## 3151           08/29/2001 11:50 am (fblackmo) employee was clearing road way on state road 1401 with the trackhoe. One of the branches of the tree he was taking down broke and a piece of it flew in his eye through the opened side door. Employee stopped his operati
## 3152                                                                                                           08/29/2001 12:33 pm (fblackmo) employee was walking down hall and fell. Not sure if she slipped on something or ankle gave way. Supervisor: paula windley
## 3153                                                                    08/29/2001 12:45 pm (fblackmo) employee fractured left pinkie finger while trying to secure driller platform. His hand slipped while securing locking mechanism. Supervisor: dean n. Argenbright
## 3154                                                                                                                                                                                                      08/30/1999 04:55 pm employee has tenderness in his lower back.
## 3155                                                                                                            08/30/1999 11:50 am employee was driving a stake in the ground when side of stake broke off causing sledge hammer to glance off stake and hit left hand.
## 3156                                                                                           08/30/1999 12:08 pm employee was putting watering radiator of a tandem truck when foot slipped from tie rod he was standing on causing him to fall and injury lower back.
## 3157                                                                                                                                        08/30/2000 03:58 pm employee states she injured her back unloading several dump trucks. (March 1999) supervisor: b. L. Jones
## 3158                                                                                     08/30/2000 04:00 pm employee was trying to help another employee stand up after situp exercises; when he felt a pulling pain in his right ankle. Supervisor: sgt. T. I. Hickman
## 3159                                                                                          08/30/2000 04:15 pm employee was clearing work site project when he came in contact with poison ivy. He has contact rash on both arms and legs. Supervisor: christy wright
## 3160                                                                                                               08/30/2000 04:42 pm employee was inspecting a bridge; when his foot slipped on a large rock causing his left leg to hit a rock. Supervisor: mark wade
## 3161                                                                                                                08/30/2000 04:52 pm employee was cutting and welding steel sheeting on 8/8/00; when flying debris got in his right eye. Supervisor: e. L. Taylor, jr
## 3162                                                          08/30/2000 05:00 pm employee was inspecting paving jobs and walking along shoulder of road; when he felt a tick crawling on his leg and back. He was bitten on his back and leg. Supervisor: john whisnant
## 3163              08/30/2000 05:07 pm employee lost balance and fell onto pavement after stepping out of mobile unit on 8/11/00. She has injuries to her right elbow, left knee, left ankle and her whole body was jarred from the fall. Supervisor: linda c. Moose 02/2
## 3164                                   08/30/2000 09:16 am employee cut his left index finger through the bone on 8/21/00. Mr. Clayton was trying to release truck cover that was hung up by pushing the bar, causing his finger to get caught. Supervisor: jack rollins
## 3165                                                                                                                                      08/30/2000 09:24 am employee was stepping up into truck when he felt a pulling pain in his left foot. Supervisor: l. E. Cotton
## 3166                                                                                           08/30/2000 09:29 am employee was cutting trees off right of way; when he came in contact with red bugs. He has bites and blisters on both legs. Supervisor: shelton james
## 3167                                                                                                                 08/30/2000 09:38 am employee was operating a sweeping vehicle repetitively pulling its lever; when she injured her back. Supervisor: james w. Dyson
## 3168                                                                               08/30/2000 09:51 am employee was trying to pull hydraulic cable to re align it; when the cable slipped causing injuries to his right ring and little fingers. Supervisor: r. D. Isley
## 3169                                                                                                                                08/30/2000 10:08 am employee suffered heat exhaustion from working extended hours in the heat on 8/9/00. Supervisor: k. C. Batchelor
## 3170                                                                      08/30/2000 10:22 am employee was cutting trees with chainsaw on 8/1500; when he came in contact with a bees nest. Mr. Courts was stung on the right side of his face. Supervisor: w. H. Adkins
## 3171                                                                                              08/30/2000 10:27 am employee was moving a sign rack back on top of fender to get another sign; when the rack fell off striking his right hand. Supervisor: c. R. Woody
## 3172                                                        08/30/2001 02:05 pm (fblackmo) employee was lifting an office chair onto the file cabinets in the file room so that the floors could be clean when he felt a pull in his groin area. Supervisor: dean harris
## 3173           08/30/2001 02:34 pm (fblackmo) employee was chipping limbs with wood chipper, wood chipper clogged up with chips, employee turned off the machine in order to clean out the hopper where the cutter wheel turns. Employee rotated the wheel with his left
## 3174                                                                    08/30/2001 02:50 pm (fblackmo) employee was getting into truck-pickup stick was laying in seat, employee hit stick with her leg, penetrating it. Supervisor: a. T. Rose *show all bills to joyce
## 3175                                                                            08/30/2001 03:25 pm (fblackmo) employee was shoveling asphalt from rear of truck when, he felt something pop in left arm near the elbow and felt severe pain. Supervisor: h. Southerland
## 3176                                                08/30/2001 03:40 pm (fblackmo) employee was using the foot of a barricade to dislodge the foot of another barricade. Employee missed the barricade and hit his own foot during the process. Supervisor: t. J. Brooks
## 3177                                                                                                      08/30/2001 03:52 pm (fblackmo) employee states she has pain and swelling from repetitive movements due to typing and keying duties. Supervisor: c. T. Corriher
## 3178                                                                                                                                                                            08/30/2002 03:25 pm (vsulliva) employee driving a fuel truck pulled in front of a train.
## 3179                                                                                                 08/30/2002 07:22 am (fblackmo) employee was lifting road closed sign to put on back of truck when; he felt pain in his middle back area. Supervisor: barry t. Coble
## 3180                                                                                       08/30/2002 07:42 am (fblackmo) employee was going into the bathroom and became light headed. Employee tried to brace herself but fell on the floor. Supervisor: e. A. Burwell
## 3181                                                                        08/31/1999 02:20 pm employee was taking the form off and went to push the stud down with his foot and lost his balance and fell off the head wall spraining right wrist. 02/01/2000 01:16 pm
## 3182                                                               08/31/1999 02:35 pm while helping a diver pull logs out of channel, employee needed to cut a rope into. Seas were very choppy and knife slipped and cut the top of his index finger on his left hand.
## 3183         08/31/1999 03:19 pm employee was holding a 3' long 2x6 block against a wedge being driven; under joist. While the block was being hit, it ricocheted off the wedge and caught employees finger between 2x6 and another joist. It fractured finger on left h
## 3184                                                                                                                08/31/1999 03:56 pm employee was shoveling asphalt and turning to throw the asphalt, when he felt strain in his lower back. Supervisor: m. H. Thomas
## 3185                                                                                                                   08/31/1999 08:42 am employee stepped on uneven terrain while inspecting newly-erected work zone signs. Strained ligament or tendon on right knee.
## 3186                                                                                     08/31/1999 10:04 am employee relining brakes on kodiak dump truck. Installing cam roller when pry-baring down the shoe slipped pinching left index finger between shoe and cam.
## 3187                                                         08/31/1999 10:08 am employee injured the right side of his back while picking up parts of trees. He was throwing tree parts back in the woods when he pulled a muscle in his back. Supervisor: steve dillon
## 3188                                                                                                                               08/31/1999 10:18 am employee was bending down to pick up a computer when he felt something pop in his neck. Supervisor: brian watkins
## 3189                          08/31/1999 10:28 am employee was using a bush axe to clear a path for radar equipment. This was for radar survey of a bridge over tar river. As he was doing this water was splashing and he accidently swallowed some of the river water.
## 3190                                                    08/31/1999 10:32 am employee was assisting an inmate when he got blood on his arm. Mr. Lowe requested to be tested. The inmate cut his arm on chainsaw causing him to bleed on Mr. Lowe. Supervisor: c. J. Hardy
## 3191         08/31/1999 11:08 am employee stopped in maint. Yard, open door to ask employee to help unload truck-turned sharply to right causing door to open wider, grabbed door which pulled employee out of truck onto asphalt pavement. Fell on back and scraped lef
## 3192                                           09/01/1999 08:48 am employee was operating the loader at the nc 901 stockpile (campbell's) loading sone into the tandem dump trucks and injured his back with the vibration of the loader. 12/05/2001 11:35 am (kbarefoo)
## 3193                                                                                                                          09/01/2000 12:45 pm employee was attempting to cross an unsignalized divided highway, when he was struck in the side by a private vehicle.
## 3194                                                                              09/02/1999 01:08 pm climbing down side of truck on the ladder when left foot slipped and went to the ground while right leg was still in the air. It was raining and the step was wet.
## 3195                                                                                                                                     09/02/1999 01:19 pm employee was returning to truck and stepped on a hypodermic needle which stuck thru his shoe and into foot.
## 3196                   09/02/1999 10:19 am employee stated on friday afternoon at job site in tyrrell county, at the end of the work day he was cleaning sand from chip spreader using a shovel he hurt his back. Employee has muscle strain in lower left side of back.
## 3197             09/02/1999 10:30 am concrete was being discharged into a 5 gal. Bucket from the truck. The asst. Superintendent handed the bucket to employee. Employee grabbed the handle with his right hand, as it was handed to him he attempted to support it with
## 3198                                                                                                             09/02/1999 11:10 am employee was flagging traffic on sr 1222. Employee passed out. Employee was taken to hospital. Doctor said employee was dehydrated.
## 3199                                                          09/02/1999 11:21 am employee was fueling up a backhoe when he felt something in his shirt. Employee was stung twice- once on his chest and once on his abdomen, before the bee was removed from his shirt.
## 3200                                    09/02/1999 12:47 pm employee was working his way thru wooded area to get beneath bridge. He came upon a steep bank. He slipped, landing on his right ankle. Spraining and fracturing it. 10/05/1999 10:08 am 02/01/2000 12:38 pm
## 3201              09/03/1999 02:34 pm Mr. Roof is suffering from post traumatic stress syndrome since May 19, 1999. Mr. Roof filed a form 18, on May 21, 1999 due to job related stress arising from multiple traumatic situations in law enforcement. Note: Mr. Roof ha
## 3202                                                                                                                                                 09/03/1999 08:35 am employee was positioning lumber to be cut and strained back causing injury. 02/01/2000 11:09 am
## 3203                                                                                                                                        09/03/1999 08:41 am employee punctured his left foot when he lost balance and stepped on a nail. Supervisor: r. D. Sherrill.
## 3204                            09/03/1999 08:46 am employee stated her right hand has been hurting, cramping and she has stabbing pains in the palm of her right hand. She also complains of having pain in her arms, shoulders, and back areas. Supervisor: lynn chalk
## 3205                                                                                                                     09/03/1999 08:48 am employee was setting slope stakes in heavy undergrowth. A lot of cutting & chopping was involved which included poison oak.
## 3206                                                                       09/03/1999 08:54 am employee was in state vehicle when he was hit from behind by a private vehicle. Employee has pain in his neck and shoulders since the accident. Supervisor: t. E. Simpson
## 3207           09/03/1999 09:01 am employee was struck from behind by a private vehicle while driving in state vehicle. The employees truck went off the road and across a deep hole causing him and another employee to bounce. Mr. Moss received a cut on the top of h
## 3208                                                                      09/03/1999 09:14 am Mr. Chavis injured his back while mowing grass on sr 1004. Employee was operating a ford tractor when he hit a hole on the shoulder of the road. Supervisor: harvey watson
## 3209                                                                                                                                          09/03/1999 10:31 am employee was bushing culvert, steppedin hole in deep grass and twisted left ankle. 02/01/2000 01:06 pm
## 3210                                                                                                                                                    09/03/1999 10:54 am employee was using the asphalt lute when he felt pain in is lower back. Strain of lower back
## 3211                                 09/03/2002 10:00 am (slee) employee was traveling south on us 17 heading towards shallotte when he blacked out and his vehicle ran into the ditch on the opposite of the road. Test results made at the hospital are still pending.
## 3212          09/03/2002 11:44 am (fblackmo) employee states, because of the constant use of keying each day pain has developed in both hands and wrist. The original date of injury was not know, but was reported to supervisor on July 10, 2002. Supervisor: pat glen
## 3213                                                                                                            09/03/2003 02:20 pm (fblackmo) employee was breaking loose bolts on guardrail when, he felt pain in his right shoulder area. Supervisor: ronnie woodcock
## 3214                                                                                                   09/03/2003 02:38 pm (fblackmo) employee was pushing a limb back on a tree to tie a r/w monument when, limb struck him in his left eye. Supervisor: robert walston
## 3215                                                             09/03/2003 02:54 pm (fblackmo) employee was opening some cardboard secured boxes with shipping tape. He pulled the tape to open the box and the tape hit him in his left eye. Supervisor: w. S. Richard
## 3216                                                                                                                                     09/03/2003 03:19 pm (fblackmo) employee had been operating a weed-earter all day when, he passed out. Supervisor: mike carriker
## 3217                                                                               09/03/2003 03:31 pm (fblackmo) employee was operating a chain/pole saw cutting a right of way when, he had an allergic reaction to the technetium on his arms. Supervisor: s. R. Ross
## 3218                                                                                                                   09/03/2003 03:43 pm (fblackmo) employee was walking in tall grass to get on truck when, he found a tick on his right hip. Supervisor: c. L. Lucas
## 3219                                                                   09/03/2003 03:55 pm (fblackmo) employee was traveling on I-40 when, a rock from a tractor trailer hit the windshield causing a foreign matter to go into his right eye. Supervisor: c. L. Edwards
## 3220                              09/03/2003 11:02 am (fblackmo) employees state vehicle was parked on the shoulder of the road in work zone when, a private vehicle struck his causing the injury to his neck. Supervisor: j. S. Tomlinson 11/21/2003 11:02 am (gwhite)
## 3221                                        09/03/2003 11:24 am (fblackmo) employee was conducting a road test when, the customer put the car in reverse and stepped heavily on the gas causing the injury to employees neck and left shoulder. Supervisor: t. M. Bailey
## 3222                                                                                   09/03/2003 11:49 am (fblackmo) employee was giving a road test when, the customer backed into the car beside them causing the injury to her lower back. Supervisor; terry blevins
## 3223                                                                                                                        09/03/2003 12:04 pm (fblackmo) employee was taking spring lines off of ferry when, he felt pain in his groin area. Supervisor: ellen goodwin
## 3224                                                                                                      09/03/2003 12:28 pm (fblackmo) employee caught his right index finger between a class b stone and pipe while loading concrete pipes. Supervisor: j. H. Freeman
## 3225                                                                                         09/03/2003 12:40 pm (fblackmo) employee was using a sledge hammer at a broken wheel axle when, he hit his elbow on the corner of the bed of truck. Supervisor: jimmy creech
## 3226                                                                                                                 09/04/2001 10:21 am (fblackmo) employee was operating chainsaw, gas came out of saw and ignited, catching employee on fire. Supervisor: j. W. Dyson
## 3227                                                                                                             09/04/2001 10:37 am (fblackmo) employee fell while getting trash out of truck. Employee lost balance and fell off the bumper. Supervisor: e. F. Goodwin
## 3228                                                                                       09/04/2001 10:49 am (fblackmo) employee was scrubbing around bridge when, an insect bit/stung him on his left hand. Supervisor: w. T. Lowery jr 09/11/2001 01:36 pm (twerner)
## 3229                                                                                                       09/04/2001 11:02 am (fblackmo) employee was raking asphalt with a rake that had been laying in poison oak and got infected. Supervisor: delores m. Sturdivant
## 3230                                                                                                                 09/04/2001 11:42 am (fblackmo) employee was completing paperwork on a concrete test when he began to experience chest pains. Supervisor: randy wise
## 3231                                                                  09/04/2002 08:46 am (fblackmo) employee was leaving the spruce pine equipment shop when he tripped and fell over a small drainage incline at the exit to the shop bay. Supervisor: joe h. Mckinney
## 3232          09/04/2002 09:12 am (fblackmo) employee was rolling, using a steel wheel roller on a steep hill incline on state road 2429(long branch road) in buncome county. Rolling on inside of the curve; roller flipped over onto its' side causing the injury to h
## 3233                                                                                               09/04/2002 09:29 am (fblackmo) employee states that while working on state road 1710 doing pipe replacement, he was bitten by an insect. Supervisor: jeremy b. Creech
## 3234                                                                                                                                  09/04/2002 11:17 am (fblackmo) employee was assisting in pumping grout, when dust went into his left eye. Supervisor: jude pfeufer
## 3235                                                                           09/04/2002 11:31 am (fblackmo) employee was stung behind his right ear while exiting his truck. Employee experience swelling and broke out in a rash. Supervisor: ralph thomas mcmanus jr
## 3236                                                                                                                    09/04/2002 11:43 am (fblackmo) employee was feeding brush chipper when he came into contact with poison ivy/oak. Supervisor: joe hilliard cinney
## 3237                                                                                                                                                09/04/2002 11:56 am (fblackmo) employee was walking on lose dirt when, he lost his footing. Supervisor; r. E. Austin
## 3238                                                                                                                             09/05/2000 02:54 pm employee was digging a hole to put sign in the ground; when he sprain/strained his right arm. Supervisor: jim evans
## 3239                                                                                  09/05/2000 03:00 pm employee was removing an illuminated sign form a shipping box; when he was bitten by a black widow spider on top of his left hand. Supervisor: john paul couch
## 3240                                                                              09/05/2000 03:06 pm employee was clearing right of way; when he found a tick on his right leg. A few days later he noticed a red spot on his leg. Supervisor: ralph thomas mcmanus, jr
## 3241                                                                                                                  09/05/2000 03:11 pm employee was mowing rest area; when the mower hit the dirt causing particles to enter his left eye. Supervisor: carl w. Church
## 3242                                                     09/05/2000 03:27 pm employee was pushing rocks with bull dozer on 8/16/00. He backed up to change angle of approach to remove rocks; when he hit a rock causing pain in his lower back. Supervisor: d. N. Brann
## 3243                                                                                                                     09/05/2000 03:34 pm employee was walking down a creek bank; when he slipped and fell on rip rap injuring his right knee. Supervisor: g. D. Fine
## 3244                             09/05/2000 03:39 pm employee slipped and fell on pallet beads on floor on 8/18/00. His feet slid out from under him and he fell on his tailbone. He has soreness to lower back, and numbness in his left leg. Supervisor: mike carriker
## 3245                                                                    09/05/2000 04:10 pm employee had just stepped out of pick up truck and started walking towards coworkers; when he noticed something had bitten him on his right leg. Supervisor: terry v. Leazer
## 3246                                                                                                                      09/05/2000 04:16 pm employee was performing an on-site inspection; when a piece of debris flew into his left eye. Supervisor: brandon h. Jones
## 3247                 09/05/2000 04:25 pm employee was holding bolts on motor grader blade with his bare hands; while another employee was loosening nuts on air wrench. The bolt turned into Mr. Disney's hand, cutting his left middle finger. Supervisor: e. W. Spivey
## 3248           09/05/2001 02:05 pm (fblackmo) employee was pressure washing on the syncrolift, while removing his safety shield something entered into his eye. Employee states that on the next day(friday) his eye became irritated and informed his supervisor. Super
## 3249               09/05/2001 02:22 pm (fblackmo) employee was conducting a road test in a rough riding commercial vehicle. Vehicle jarred employee in a manner that he felt pain and discomfort in his lower back to the neck area. Supervisor: j. M. Searcy 09/11/2001
## 3250                                                     09/05/2001 02:40 pm (fblackmo) employee was coming in office from road test, he turned his ankle when stepping up on the curb causing him to fall face down on the curb striking his face. Supervisor: tex kidd
## 3251                                                                             09/05/2001 03:06 pm (fblackmo) employee was moving tree limbs along road side in grassy area when he found a tick on his leg. Tick bite caused an infection. Supervisor: c. H. Winstead
## 3252                 09/05/2001 03:26 pm (fblackmo) employee was moving potted daylillies when she noticed what she thought were mosquito bites. Bites began to burn and enlarge and ache. Within a few hours bites had become raised. Supervisor: patricia p. Mansfield
## 3253            09/05/2001 03:49 pm (fblackmo) employee was cleaning out a pipe outlet on state road 2021 whit a shovel. The area had small bushes nd trees on the back of the ditch. Employee was stung by an insect on his left hand and chest. Employee states that h
## 3254                                                                     09/05/2001 04:05 pm (fblackmo) employee, while trying to remove a dog from the roadway that was blocking traffic, employee was bitten on the right index finger. Supervisor: ervin featherstone
## 3255                                                        09/05/2001 04:18 pm (fblackmo) employee was working on a construction project hauling dirt when dust from the roadway blew into both his eyes. Employee was wearing safety glasses. Supervisor: j. D. Wilson
## 3256          09/05/2001 04:56 pm (fblackmo) employee was operating amz equipment with all warning devices in place, when motorist passing at high rate of speed swerved into work zone. The mirror on the vehicle struck upper right arm of employee spinning her aroun
## 3257                                                                                                                            09/05/2001 11:43 am (fblackmo) employee states that while lifting tire up from vehicle he injured his right arm. Supervisor: w. E. Evans
## 3258          09/05/2001 12:01 pm (fblackmo) employee pulled shoulder while getting out of truck, misjudged distance to ground. Employee, while still holding on to door handle had trouble closing the tailgate because of the pain in his shoulder. Supervisor: l. Mic
## 3259                              09/05/2001 12:27 pm (fblackmo) employee was filling water tank when hose came out of tank. Employee lost footing on wet tank and slipped off tank catching himself by the leg between the tank and truck. Supervisor: herbert mcdowell
## 3260                                                          09/05/2001 12:42 pm (fblackmo) charlie hardy told paul r. Draughn at 5. 00 pm that on 8-16-2001 that he had pulled something in his back while setting posts on armsworthy road. Supervisor: p. R. Draughn
## 3261                                                                   09/05/2001 12:53 pm (fblackmo) employees' knee buckled when he was attempting to get out of tractor broom. When falling employee hit the fender above the left back tire. Supervisor: j. W. Dyson
## 3262                                                                                             09/05/2003 01:45 pm (fblackmo) employee was passing a bucket of sand and water to the employee beside him when, he felt pain in his lower back. Supervisor: jack tanner
## 3263                                                                                                09/05/2003 01:59 pm (fblackmo) employee was shifting gears in dump truck when, she felt pain in her right wrist. Supervisor: eddie gurganious *show joyce all bills*
## 3264                                                                                                            09/05/2003 07:42 am (fblackmo) employee states he found a tick on his right knee while inspecting rest area at division one. Supervisor: p. P. Mansfield
## 3265            09/05/2003 07:56 am (fblackmo) employee was flagging traffic for ditch operation and was standing in hot asphalt pavement for most of the day. Employees feet got really hot and sweaty causing the injury to both of his feet. Supervisor: c. W. Phelps
## 3266                                                                                                                 09/05/2003 08:10 am (fblackmo) employee was pulling weeds out of flower bed when, he came into contact with poison ivy. Supervisor: p. P. Mansfield
## 3267                                                                                                               09/05/2003 08:31 am (fblackmo) employee was working on the patching crew when, he broke out in a rash on multiple body parts. Supervisor: m. B. Smith
## 3268                                                                                                                              09/05/2003 08:46 am (fblackmo) employee was climbing down ladder when, he struck his left elbow on beam. Supervisor: ronald e. Speight
## 3269                                               09/05/2003 09:04 am (fblackmo) employee was flagging traffic when a modular home came by struck the sign; causing employee to lose his balance and fall to the ground injuring his left hip. Supervisor; t. F. Rhodes
## 3270                                                                                                                                   09/05/2003 09:20 am (fblackmo) employee was tossing drums from dock when, he felt pain in his right wrist. Supervisor: w. R. Wall
## 3271                                                                                            09/05/2003 10:45 am (fblackmo) employee jumped off back of flat bed truck when, he finished loading pipes causing the injury to his right ankle. Supervisor: a. L. Clark
## 3272                                                                                                                           09/05/2003 10:55 am (fblackmo) employee came into contact with poison ivy while cutting access to bore holes. Supervisor: robert r. White
## 3273                                                     09/05/2003 11:07 am (fblackmo) employee was standing on back of truck when, the driver put the truck in motion. Employee fell of the back of truck causing injury to his arm/wrist. Supervisor: iris h. Mccombe
## 3274                                                                                                                                   09/05/2003 11:18 am (fblackmo) employee was installing a fence when, the injury occurred to his right wrist. Supervisor: b. Boone
## 3275                                                                                           09/05/2003 12:57 pm (fblackmo) employee was climbing into back of state pickup and slipped and hit his right knee on the bumper of the truck. Supervisor: iris h. Mccombs
## 3276                                                                                                         09/06/2000 10:21 am employee was attempting to open a can of peas and carrots for lunch; when he cut his left hand on the lid. Supervisor: mark e. Stafford
## 3277                                                                                 09/06/2000 10:26 am employee was sitting in class on 4/24/00; when he started feeling bad. He passed out striking his head against a table in the room. Supervisor: will williamson
## 3278                                          09/06/2000 10:35 am employee was walking down the hall when she tripped and fell. As she fell, she caught herself with her left hand. At that time she broke 2 bones in her left middle finger. Supervisor: rodney jenkins
## 3279                                              09/06/2000 10:42 am employee sustained a back injury on 6/15/00; while running over railroad tracks. The cause of the injury was the sudden and unexpected jerks while crossing the tracks. Supervisor: darrell parson
## 3280                                                                                                                          09/06/2000 10:52 am employee states he has hearing loss due to the results of bilateral noise in the workplace. Supervisor: r. I. Matthews
## 3281                                       09/06/2000 10:58 am employee was removing chains from load of u-channel post on 8/21/00. He took a step back to get the next chain, when he stepped on uneven ground turning/sprained his left ankle. Supervisor: r. D. Isley
## 3282                                                                                                    09/06/2001 12:06 pm (fblackmo) employee states that while pulling stick from blade dirt flew into his eye. Supervisor: b. J. Vance 09/11/2001 01:40 pm (twerner)
## 3283                                                          09/06/2002 08:14 am (fblackmo) employee was bending over to check the weight of a truck. Employee hit his head on a piece of plywood that was hanging over the tailgate. Supervisor; 1st sgt. D. B. Stamey
## 3284                                                                                                                 09/06/2003 08:20 am (fblackmo) employee states he came into contact with poison ivy while removing a tree out of road. Supervisor: d. Shane edwards
## 3285                                                                                                                 09/06/2003 08:31 am (fblackmo) employee was loading a arrow sign on back of truck when, he felt pain in his upper back area. Supervisor: ron turpin
## 3286                       09/06/2003 08:40 am (fblackmo) employee had his arm behind the cab of the mudbug while backing onto the boring location. He turned the wheel to sharp and pinched his right wrist between the cab and the water tank. Supervisor: r. R. White
## 3287          09/06/2003 08:58 am (fblackmo) employee was attempting to cut a tree on steep slope of roadway. After cutting the tree he leaned out to observe and ensure the proper angle the tree was cut when, he fell down the embankment causing the injury to his l
## 3288                                                                                                 09/06/2003 09:11 am (fblackmo) employee was surveying through brushes when, he was bitten by a unknown insect on his right ring finger. Supervisor: l. T. Williford
## 3289                                                                                                               09/06/2003 09:25 am (fblackmo) employee states he acquired tick bites on his hip area while walking on b-4113 project site. Supervisor: j. D. Bradner
## 3290                                                                                 09/07/1999 03:24 pm employee was working on r/w patching roadway with asphalt. He stepped into a bed of fire ants and did not realize it until the began crawling up his pants leg.
## 3291                                                                                   09/07/1999 03:38 pm employee was surveying project in brushy ground area. Assumes he had tick attach to his leg while in this area. Tick embedded on upper back part of left leg.
## 3292            09/07/1999 03:57 pm Ms. Arthur is suffering from acute stress/ traumatic stress syndrome since November 8, 1997. Ms. Arthur filed a form 18, on August 17, 1999 due to sexual harrassment and threatening comments while employed with dot. She suffered
## 3293                                                                                                                                         09/07/2001 04:54 pm (fblackmo) employee suffered chest pains and dizziness while flagging traffic. Supervisor: s. G. Dillon
## 3294               09/07/2001 05:05 pm (fblackmo) employee stated that she strained her back sometime during the week of 8-20-2001 thu 8-24-2001. Due to heavy workload of processing mail and mail delivery. Supervisor: johnathan reed (acting) 09/11/2001 01:39 pm (t
## 3295                                                      09/07/2001 05:17 pm (fblackmo) employee was climbing slope to measure the seedling on project replacement on moores' creek bridge. The rip rap gave way and he twisted his right knee. Supervisor: k. T. Cross
## 3296              09/07/2001 08:47 am (fblackmo) employee was cutting a forked tree. The tree he was cutting had a limb hung in another tree. The tree was hung up and when he went to cut it some more, it kicked off of the stump and fell on the employees left foot.
## 3297                                                                                                         09/07/2001 09:11 am (fblackmo) employee came into contact with a poisonous plant while cutting cross section in cumberland county. Supervisor: mike plummer
## 3298                                                                                                                            09/07/2001 09:27 am (fblackmo) employee was installing a crossline pipe and came into contact with poison oak. Supervisor: c. E. Jenkins
## 3299                                                                                          09/07/2001 09:41 am (fblackmo) employee was unloading a sign delivery when his foot slipped off the edge of flatbed. Supervisor: r. T. Moore 09/11/2001 01:37 pm (twerner)
## 3300                                                                                                                 09/08/1999 07:50 am employee twisted back on right side and left knee while unloading supplies for driver license. Apparently twisted when turning.
## 3301                                                                                  09/08/1999 08:05 am employee was cleaning out auger headstem when he felt a sharp pain in his upper right chest. A small 1/4 th inch hole was observed and bleeding became perfuse
## 3302                                                                                                                                                            09/08/1999 09:07 am employee was bit in middle of back by a spider on 8/12/99. Supervisor: wayne knight.
## 3303                                                                          09/08/1999 09:19 am employee slipped on muddy stream bank while inspecting underside of a bridge. Mr. Hicks injured his right wrist and arm. Supervisor: john jefferys 02/01/2000 01:21 pm
## 3304                                                 09/08/1999 09:32 am employee injured his right index finger when the fork of a forklift machine dropped on his finger. His finger was crushed and caught between the fork and the flatbar. Supervisor: david pharr.
## 3305                                          09/08/1999 09:44 am employee suffered from heat exhaustion on 7/21/99. He got overheated and broke into a cold sweat. Mr. Brown became dizzy and weak in the knees when he collapsed to the ground. Supervisor: terry shaw
## 3306                                                                                               09/08/2000 03:28 pm employee was stepping down off a lead; when his harness cut the right side of his neck. Supervisor: t. K. Southard 10/26/2001 11:13 am (lwilliam)
## 3307           09/08/2000 03:36 pm employee was flagging traffic when an automobile pulled up to him and cursed at Mr. Montgomery. The driver then drove through the work zone striking employee and a trash can on the road side. Mr. Montgomery bruised right hip. Sup
## 3308                                                   09/08/2003 10:51 am (slee) sov proceeded into intersection to make a left turn and was hit in left front corner by pov that ran through a red light. Pov driver said he did not see the red traffic signal light.
## 3309                                                         09/09/1999 05:18 pm Mr. Corbin was attempting to arrest a combative dwi suspect, when he was tackled by suspect. He dislocated his left shoulder when they fell to the ground. Supervisor: d. R. Brookshire
## 3310                     09/09/1999 05:26 pm employee suffered a head injury while working on the grade crew pulling up fence posts. The grader was in the process of pulling up a post, when it snapped into hitting the employee on his head. Supervisor: wayne knight
## 3311                                                09/09/1999 09:54 am a piece of concrete flew off cap into Mr. Jacobs right eye. Employee was chipping concrete cap with a hammer drill when the incident occurred. Supervisor: derwin strickland 02/01/2000 12:52 pm
## 3312                                                  09/09/1999 10:04 am employee injured right hand middle finger while unloading oil drums from a truck. Mr. Ramsey hand was caught in between the hand truck and the wall of the building. Supervisor: c. W. Collins
## 3313                                                                                    09/09/1999 10:11 am a particle of dust/trash blew into Mr. Kerr's left eye. The particle eventually worked its way out of his eye, but left a scratch. Supervisor: mike jefferys
## 3314                                                                                                                              09/09/1999 10:20 am employee injured his lower back while adjusting a screed on widener to move machine parts. Supervisor: h. A. Moore
## 3315           09/09/1999 10:28 am employee was driving a pickup truck and failed to stop at stop sign. Upon entering the intersection, the truck collided with a private automobile resulting in the deployment of safety devices. Ms. Gillette suffered minor abrasion
## 3316                                                            09/09/2003 02:12 pm (fblackmo) employee was cutting a branch to release vines and limbs when, the branch struck him on his right arm causing a cut. Supervisor: w. H. Moore 10/13/2003 11:26 am (gwhite)
## 3317                                                                                                                                     09/09/2003 02:42 pm (fblackmo) employee was removing a rock when, he came into contact with poison ivy. Supervisor: s. W. Nance
## 3318                   09/09/2003 02:52 pm (fblackmo) employee states while keying work on daily basis she, experienced pain in her left wrist. Supervisor: susan stewart 09/26/2003 12:11 pm (gwhite) 3/22/2004 03:29 pm (fblackmo) continuation to right hand injury o
## 3319                                                                                               09/09/2003 03:09 pm (fblackmo) employee was reaching in trunk to turn on pressure gas tank when, he felt pain in his right elbow area. Supervisor: william ballentine
## 3320                                                                                    09/09/2003 03:18 pm (fblackmo) employee states, because a bolt was missing out of toilet seat she felt pain in his back while reaching for tissue. Supervisor: kevin whittington
## 3321                                                                              09/09/2003 10:23 am (fblackmo) employee states he experienced anxiety, ptsd, and emotional distress because of harrassment by his superior(captain keeler). Supervisor: captain keeler
## 3322                                                                                                             09/09/2003 10:39 am (fblackmo) employee was walking down hall when, she fell causing the injury to her right hip and shoulder. Supervisor: alison roach
## 3323                                                          09/09/2003 10:54 am (fblackmo) employee had his hand on the trailer gooseneck while turning off mudbug when, his right middle was caught between the mudbug and trailer frame. Supervisor: robert r. White
## 3324                                                                                                          09/09/2003 11:37 am (fblackmo) employee was opening imaging machine when, the back plated of desk fell on her left knee and ankle. Supervisor: j. B. Dills
## 3325                                                                                                    09/09/2003 11:47 am (fblackmo) employee was attempting to remove a kitten from shop area when, kitten bit employee on his left thumb. Supervisor: charles hatley
## 3326                                                                                                   09/09/2003 12:17 pm (fblackmo) employee was pulling on scale when, the scale fell on his hand causing a cut to his knuckles on left hand. Supervisor: ben wilkins
## 3327                                                                                                              09/09/2003 12:28 pm (fblackmo) employee was working controls on the case excavator when, she felt pain in her left wrist. Supervisor; henry sturdivant
## 3328                                                                                                               09/09/2003 12:43 pm (fblackmo) employee was trying to catch a falling paint can when, he cut his right index finger. Supervisor: thomas foster bowser
## 3329                                                                                  09/10/1999 09:10 am on 8/30/1999 employee must have pulled or strained a muscle during his work hours. He was operating the lowboy on 08/30/1999. He lifted ramp up on the lowboy.
## 3330                                                                      09/10/1999 09:32 am employee was removing old joist using a crowbar when crowbar slipped and employees hand struck drain pipe with enough force to cut two fingers. Cut left 2nd & 3rd finger.
## 3331                                                                                                                   09/10/1999 09:44 am employee states that he was unloading a backhoe while standing on a hill and on wet grass, when his feet slipped and he fell.
## 3332                                                                                                                                                                           09/10/1999 10:40 am employee was cutting brush around bridges and got poison ivy on legs.
## 3333                                                                                                                           09/10/2002 02:18 pm (fblackmo) employee was working on state road 1125 in tall grass when, he was bitten by a tick. Supervisor: j. M. Hux
## 3334                 09/10/2002 02:55 pm (fblackmo) employee was helping to adjust trap bar on tandem dump truck, when his right hand was caught between the bar and bed. Employee pull his hand out cutting three of his fingers on his hand. Supervisor: j. D. Shelton
## 3335                                                                                                                 09/10/2002 07:38 am (fblackmo) employee states that while mowing on state road 1103 in pender, grass got into his left eye. Supervisor: r. G. Crews
## 3336           09/10/2002 07:55 am (fblackmo) employee was sitting in a chair in the ticket booth. She went to roll the chair backwards when, a rag was caught between the wheels of the chair. Employee tumbled backwards hitting another chair, and falling to the flo
## 3337                                                                                                                   09/10/2002 11:52 am (fblackmo) employee was pulling on tail gate to dislodge debris when, he felt pain in his lower back. Supervisor: r. G. Crews
## 3338                                                                                                          09/10/2002 12:17 pm (fblackmo) employee states that while pulling wheelbarrow off the back of his truck, he felt pain in his back. Supervisor: joe justice
## 3339                                                                                                                 09/10/2002 12:31 pm (fblackmo) employee was using a chisel to cut a piece of plywood when, he cut his thumb on right hand. Supervisor: dennis baker
## 3340                                                                                                    09/10/2002 12:46 pm (fblackmo) employee was flagging traffic in macon county when he felt something bite him on his right leg near knee. Supervisor: w. H. Lynch
## 3341                                                                                             09/10/2003 02:45 pm (fblackmo) employee states while moving a pipe hook from trailer to installed a driveway he, felt pain in his right arm. Supervisor: k. L. Anderson
## 3342                                                                                                          09/10/2003 02:58 pm (fblackmo) employee states while laying pipes his foot got stuck in some mud causing pain to his left knee. Supervisor: r. D. Sherrill
## 3343                                                                                                                     09/10/2003 11:09 am (fblackmo) employee states while walking to his truck he, felt a sharp pain in his right foot. Supervisor: lindsey ethridge
## 3344                                                                                    09/11/2000 05:00 pm employee was using hammer to remove housing from an engine; when a small piece of housing came off puncturing his left hand. Supervisor: thomas e. Deans, jr
## 3345                                                                                                               09/11/2000 05:04 pm employee was climbing over guardrail; when he lost his footing and hit his right leg on the edge of rail. Supervisor: r. D. Queen
## 3346                                                                          09/11/2000 05:08 pm employee was helping another employee check for noise in a vehicle (transmission); when he fell hitting the floor on his left hip and hand. Supervisor: james e. Isaac
## 3347                                                                   09/11/2000 05:15 pm employee was lifting and restacking steel guardrail posts; when he bent over to let go of the posts feeling a stretching pain in upper back area. Supervisor: charles f. Vick
## 3348                                                                  09/11/2000 05:20 pm employee was cleaning/clearing tree debris; when his skin came in contact with poison ivy. He has contact rash on neck, face, and right forearm. Supervisor: stephen g. Dillon
## 3349                                                                                                                              09/11/2000 06:01 pm employee was walking when she fell on broken pavement straining/sprained her right hand. Supervisor: gail g. Smith
## 3350                                                                              09/11/2001 08:32 am (gsimmons) employee was pulling a u-channel sign out of the ground utilizing a hydraulic puller. The puller slipped off the post and struck employee in lower leg.
## 3351                                                                                                                                                09/12/2000 09:55 am employee was stepping down from truck; when he twisted his right knee. Supervisor: hugh williams
## 3352                                         09/12/2000 10:00 am employee was putting fuel in backhoe on back of trailer; when he stepped down he slipped on trailer step. Mr. Chappell strained/sprained his lower back, hips and pelvis areas. Supervisor: r. G. Davis
## 3353                                                                           09/12/2000 10:07 am employee was moving wooden pallets on 8/18/00. Mr. Bostic stepped on a nail in the pallet causing the nail to puncture his right foot. Supervisor: arthur glenn short
## 3354                                                                                                                           09/12/2000 10:45 am employee was assisting in a driving training course; when he noticed pain in his neck. Supervisor: sgt. R. P. Brigman
## 3355                                                                                             09/12/2000 10:56 am workers were clearing us 421 with weedeaters; when debris struck employee causing a deep cut on Mr. Wilkins right hand. Supervisor: ronnie woodcock
## 3356                                                                              09/12/2000 11:16 am employee was shoveling cold patch from truck bed on 8/28/00. He apparently twisted the wrong way and strained his lower back. Supervisor: ralph thomas mcmanus, jr
## 3357                             09/12/2000 11:29 am employee was clearing brush to set a slope stake; when he stepped on an underground yellow jacket nest. He was stung several times while trying to escape on his right arm and left ear. Supervisor: stephen sparks
## 3358                                                      09/12/2000 11:35 am employee was stepping out of vehicle to pick up a sign; when his ankle doubled up under him causing him to fall backward. Mr. Rominger sprained his left ankle. Supervisor: james n. Mixon
## 3359                                                       09/12/2000 11:40 am employee was putting down asphalt with box sled; when he got his right foot jammed between railroad ties and asphalt sled. Mr. Anderson sprained his right ankle. Supervisor: j. C. Mundy
## 3360                                                 09/12/2001 09:00 am (fblackmo) employee was working with crew installing rip rap fixing washout on the shoulder of the road. Bending over picking up rocks, employee strain his lower back. Supervisor: s. L. James
## 3361             09/12/2001 09:18 am (fblackmo) employee was conducting a road test. Employee asked the driver to pull over and stop the vehicle. The driver was doing about 40 mph in a 35 mph speed zone. The driver hit the gas peddle hard causing employee to slide
## 3362              09/12/2001 09:38 am (fblackmo) employee was loading a piece of equipment. While chaining down the equipment on trailer his co-worker pulled the chain tighter causing employee to mash his finger in rear wheel of tractor. Supervisor: m. L. Thompson
## 3363                                                            09/12/2001 09:52 am (fblackmo) employee was loading straw onto truck when a few hours had passed employee began to start itching and breaking out with whelps on his upper body. Supervisor: c. C. Crump
## 3364                                                                                                              09/12/2001 10:22 am (fblackmo) employee was stacking empty paint drums(3 drums high) one fell and hit employee in the back. Supervisor: thomas johnson
## 3365                                                                                                                                                  09/12/2001 10:53 am (fblackmo) employee was racking asphalt and felt a sting on left arm. Supervisor: r. L. Tipton
## 3366                                                                                                     09/12/2002 02:00 pm (fblackmo) employee stated while working on a cross line on state road 1556, came into contact with poison ivy. Supervisor: c. R. Whitfield
## 3367                                                                                                                                            09/12/2002 02:10 pm (fblackmo) employee stated debris form mowing tractor blew in his right eye. Supervisor: r. G. Crews
## 3368                                                                                                                              09/12/2002 02:23 pm (fblackmo) employee was moving office files, and furniture when he felt pain in his back. Supervisor: r. D. Peeler
## 3369            09/12/2002 02:36 pm (fblackmo) employee was pulling a carton form a pallet with the use of a safety ladder. Employee did not see the carton on top of the one being pulled. The unseen carton fell causing a cut to his forehead. Supervisor: mike jeffe
## 3370                                                                                                                               09/12/2002 02:47 pm (fblackmo) employee was picking up sign post when, splinter lodged in right forearm. Supervisor: arthur slaughter
## 3371            09/12/2002 02:58 pm (fblackmo) employee was performing inspection on concrete patching operation. Employee exited vehicle and closed drivers door with left hand. Employees right index and middle fingers were caught between truck cab and door. Super
## 3372                                                                                                                       09/12/2002 03:08 pm (fblackmo) employee was sitting in training room when he was bitten by an insect on his ankle. Supervisor: russell ramsey
## 3373                                                                                                                     09/12/2002 03:17 pm (fblackmo) employee stated he was checking fence when he stepped on a rock twisting his right knee. Supervisor: b. J. Vance
## 3374                                                                                                                                                 09/12/2002 12:05 pm (fblackmo) employee slipped on outside deck while leaving crew lounge. Supervisor: e. M. Farrow
## 3375                                                                                                 09/12/2002 12:21 pm (fblackmo) employee was injured by having a unknown object strike his left eye while traveling on I-40 to a job site. Supervisor: il. D. Greene
## 3376                                                                                  09/12/2002 12:33 pm (fblackmo) employee stated that he was walking to begin flagging and fell in a hole, which caused him to injury his right ankle. Supervisor; charlie e. Watson
## 3377                                                                                                                                09/12/2002 12:52 pm (fblackmo) employee stated while bending over to pick up a u-post felt pain in his back. Supervisor: b. T. Coble
## 3378                                                                                                                                            09/13/1999 02:46 pm while tearing out old fence on sr 1433 employee came in contact with poison oak. Whole body covered.
## 3379                                                                                                                                                                09/13/1999 03:19 pm employee came in contact with poison oak while tearing out old fence on sr 1433.
## 3380            09/13/1999 03:28 pm assisting geotechnical unit setting a barge in richmond county, got into a nest of ticks. (very small) did not see tick until I got back into the office that afternoon, starting feeling sick 08-18-199, went to doctor 09/03/1999.
## 3381                                                                                                            09/13/1999 03:47 pm employee was cutting brush & weeds at an intersection for sight distance and received several bee stings on the arms, neck and face.
## 3382                                                                                                                               09/13/2000 03:31 pm employee was cutting trees when he lost his footing and twisted/sprain his right ankle. Supervisor: j. D. Shelton
## 3383                                                                                                            09/13/2000 03:42 pm employee and coworker was installing broom core; when Mr. Raynor felt pain in his left arm/shoulder muscle. Supervisor: r. M. Taylor
## 3384                                                                                                             09/13/2000 03:48 pm employee was lifting/moving heavy boxes off truck and stacking them; when he strained muscles in his neck. Supervisor: e. M. Farrow
## 3385                                 09/13/2000 03:58 pm employee was removing equipment from rear of vehicle; when he stepped up on rear tire he lost his footing. Mr. Price fell across the window ledge bruising the right side of his ribs. Supervisor: billy godwin
## 3386                                                                                                         09/13/2000 04:30 pm employee was trying to flip a pipe over; when his glove got caught on end of pipe cutting his right thumb. Supervisor: tommy kilpatrick
## 3387                                                                                                 09/13/2000 04:38 pm employee was studying when he noticed his left ankle starting to swell. He's not sure on the cause. Supervisor: r. W. Barney (sgt. Tim hickman)
## 3388                                          09/13/2000 04:48 pm employee was removing fallen trees when he came in contact with poison ivy. He has contact rash on various parts of his body including his forearms and in his right eye. Supervisor: ronald p. Wilson
## 3389                                                                                                                                              09/13/2000 04:55 pm employee was working in the attic when cut his right shoulder on a nail. Supervisor: m. S. Venable
## 3390                                                                                     09/13/2000 05:06 pm employee was cleaning auger on leeboy paver with a bush axe; when the axe got caught by the auger and hit his right index finger. Supervisor: kent d. Boyer
## 3391                                                                                                                                    09/13/2000 05:10 pm employee was clearing road with a weedeater; when he got stung 3 to 4 times by bees. Supervisor: a. L. Smith
## 3392                                                                 09/13/2000 10:17 am employee was in ditch cleaning out cross line pipe; when he climbed out of ditch he fell on a piece of broken glass. Mr. Nooney cut his right arm. Supervisor: howard v. Inscoe
## 3393                                                                                                                   09/13/2000 10:22 am employee was cutting tree limbs; when the limb sprang back pulling his right wrist and shoulder. Supervisor: richard d. Queen
## 3394                                                                 09/13/2000 10:27 am employee and coworker was carrying a 20' section pipe; when the pipe bumped the backhoe bucket causing the pipe to strike Mr. Phelps in his left leg. Supervisor: david l. Lane
## 3395                                                                                                                                 09/13/2000 10:34 am employee stepped on piece of lumber when a nail punctured his right foot on 8/11/00. Supervisor: t. K. Southard
## 3396                                                                                                    09/13/2000 10:41 am employees were cutting guardrails with a saw; when the rail jumped outward and struck Mr. Swaim's right thigh. Supervisor: eric allen schenz
## 3397                                                                                                                  09/13/2000 10:56 am employee slipped and fell off wet fender on a boat trailer on 8/9/00. He bruised his right lower leg. Supervisor: r. L. Bowers
## 3398           09/14/1999 02:18 pm karyn was searching through boxes in 2lt patterson's closet for specific supplies. Set on box outside closet to give more room to search closet. Came out of closet, forgetting about box, and tripped on box and fell backwards. Bro
## 3399              09/14/1999 02:40 pm employee injured his right wrist while crossing the road. He felt his ankle give way causing him to fall to the ground. He did not feel pain in his arm/wrist until lunch time. He has two broken bones in the right wrist. Superv
## 3400                                               09/14/1999 02:46 pm employee was using a chemical called "o s-2", to clean the restroom, when the bottle dropped from the sprayer. The bottle hit the toilet and splashed into his eyes. Supervisor: randall ashmore.
## 3401                                                                                                          09/14/1999 03:02 pm employee cut his right thumb while sharpening a bush axe with a file. The axe slipped causing this injury. Supervisor: f. E. Faircloth
## 3402                                                                                                                                                                                     09/14/1999 03:37 pm repairing bridge handrail got tick bite 02/04/2000 09:34 am
## 3403                                                                                                                                                                                                       09/14/1999 04:00 pm repetitious keying all day 8 hours a day.
## 3404                                                                                                                                                                                                  09/14/1999 04:10 pm employee stepped down off truck hurt left leg.
## 3405                                                                               09/14/1999 09:12 am employee was riding in ncdot truck, no air conditioning in truck, therefore, windows rolled down, bee flew in stung randy on right upper arm. 02/01/2000 01:26 pm
## 3406         09/14/1999 10:19 am employee started to go up steps at warehouse, wooden bench had been pulled from against wall and was in the way. Employee picked up bench to move it out of way and dropped bench on top of left foot. Employee experienced pain, sough
## 3407                                                                         09/14/1999 11:22 am walking down hill, stepped on board with a nail sticking up in it. Board was covered with leaves. Punture in ball of left foot. 10/05/1999 10:15 am 02/01/2000 01:17 pm
## 3408                                                                                                                                                          09/15/1999 08:29 am employee was tightening nut on mower, pulled up too hard causing strain in lower back.
## 3409                                                                                               09/15/2000 09:06 am employee was repairing street lights climbing on cabinets to replace photo cell; when he strained his left shoulder. Supervisor: sharon pitchford
## 3410                                                                     09/15/2000 09:10 am employee was attempting to clean out tar kettle with open flame; when the spray hose caught fire. Employee arms and face has second degree burns. Supervisor: r. E. Langley
## 3411                                                                                   09/15/2000 09:18 am employee was weedeating on 8/31/00; when he came in contact with poison ivy plants. Mr. Cloninger has contact rash all over his body. Supervisor: a. L. Smith
## 3412                                                                              09/15/2000 09:22 am employee was clearing brush around bridge; when she came in contact with poison ivy plants. She has contact rash on face and both arms. Supervisor: k. E. Anderson
## 3413                                                                                                                          09/15/2000 09:27 am employee was cutting boards on tablesaw; when his left little finger was cut by the saw blade. Supervisor: john farrow
## 3414                                                                                                                    09/15/2000 09:38 am employee was driving on sr 1719 in union county; when debris blew into his left eye on 9/7/00. Supervisor: chris w. Burleson
## 3415                                                                                                                  09/15/2000 09:42 am employee was attempting to enter state vehicle; when he struck his left knee on the fuel tank step. Supervisor: michael holmes
## 3416                                                                                                                  09/15/2000 09:46 am employee was working in the field on 9/6/00; when he was stung by a bee on his left hand and arm. Supervisor: mojdeh masihpour
## 3417                                                                                                                   09/15/2000 09:51 am employee was walking through sand dunes on 8/21/00; when he was bitten by a spider on his right ankle. Supervisor: joe thomas
## 3418                                           09/15/2000 10:10 am employee was trying to take out radiator while standing on a step. He stepped on bracket where he had to remove the bumper and loss his footing falling on his right knee. Supervisor: james e. Isaac
## 3419            09/16/2003 07:24 am (slee) vehicle #1 was traveling south on nc 125, the driver ran off the road on the right losing control of vehicle. Vehicle crossed the center line and ran off the road on the left. Vehicle struck a ditchbank and came to rest n
## 3420                                                                                                                                    09/16/2003 09:35 am (fblackmo) employee states while cutting a tree stumps, tree fell on his right leg. Supervisor: e. R. Elders
## 3421                09/16/2010 08:29 am (slee) employee was traveling north on hwy. 13/17 in the far right lane, when pov was crossing from e. Main st. And collided with Mr. Wiggin's vehicle. 09/16/2010 02:06 pm (slee) other person: portia c. Sherrod, williamston,
## 3422                                09/17/2002 08:13 am (fblackmo) employee was conducting a road test. The customer was attempting to park the vehicle, but hit and drove over the curb onto the sidewalk causing the injury to her neck area. Supervisor: nikki broome
## 3423                                                                                                      09/17/2002 08:32 am (fblackmo) employee stated while weed eating on bridge, slipped on some mulch causing the injury to his right ankle. Supervisor: van ellis
## 3424                                                                                                             09/17/2002 08:58 am (fblackmo) employee stated he was climbing up onto dump truck when, he felt something pop in his left knee. Supervisor: joe justice
## 3425                                                                                                             09/17/2002 09:11 am (fblackmo) employee was shoveling cold patch into a pothole when he felt pain in his left knee. Supervisor: ralph thomas mcmanus jr
## 3426                                                                      09/17/2002 09:51 am (fblackmo) employee was disconnected the sweeper from the pickup truck and twisted his back causing pain in the lower back area and left side. Supervisor: iris h. Mccombs
## 3427                          09/17/2002 10:14 am (fblackmo) employee was inspecting a structure purchased by the department of transportation in an area to be used for a future highway. Employee stepped on a nil that was hidden by debris. Supervisor: r. D. Tuttle
## 3428                                                                                                             09/17/2002 10:43 am (fblackmo) employee was stepping out of truck on state road 1710 when, he felt pain in his left ankle. Supervisor: jeremy b. Creech
## 3429                                                                                                                            09/17/2002 11:00 am (fblackmo) employee was performing regular surveying duties when, he was bitten by a tick. Supervisor: a. R. Kozusko
## 3430                                                                                                         09/18/2000 03:10 pm employee has hearing loss in both ears due to exposure to high noise levels while operating shop machinery. Supervisor: dennis w. Baker
## 3431                                                              09/18/2000 03:15 pm employee was stepping out of truck; when he heard a pop in his left foot. Supervisor: s. G. Dillon 11/6/2006 01:27 pm (fblackmo) claim closed. Clinched on 02/25/2005. Do not use.
## 3432                                                                               09/18/2000 03:26 pm employee was working on dot project; when he walked through a shallow ditch into a hole. Mr. Charlton strain/sprained his left foot. Supervisor: mojdeh masihpour
## 3433                                               09/18/2000 03:31 pm employee was examining possible flood vehicles, (which consisted of lifting spare tires & personal belongings inside of trunks), when he sprain/strain his right wrist. Supervisor: e. C. Bristle
## 3434           09/18/2000 03:39 pm employee was giving a road test on 8/30/00. Customer pulled into parking space and hit the gas instead of brakes and struck a tree. This action jerked the employee three times pulling muscles in his chest and shoulders. Superviso
## 3435        09/18/2002 01:54 pm (fblackmo) keyed from 18b form. Plaintiffs asbestosis was injurious and aggravated and/or accelerated other pulmonary and cardiac problems. Supervisor: not stated employee dates(charlotte location) January 1, 1988 - October 15, 200.
## 3436                                          09/18/2002 02:23 pm (fblackmo) employee was on back side of ditch cutting a tree, he spotted a snake an starting running. Employee slipped and fell into ditch causing his injury to his ankle. Supervisor: l. O. Ethridge
## 3437                                                                                                   09/18/2002 02:35 pm (fblackmo) employee was making modifications to guard rail when a piece of sharp metal cut his fingers on left hand. Supervisor: hosea blount
## 3438                                                                                                        09/18/2002 02:47 pm (fblackmo) employee was cutting brush around bridge on us 19 & 23 when, he came into contact with poison oak. Supervisor: terry j. Davis
## 3439                                                              09/18/2002 03:08 pm (fblackmo) employee stated slipped on engine room entry stairs which were wet and oily. Employee grabbed handrail with left hand & twisted left shoulder. Supervisor: e. M. Farrow
## 3440                09/18/2002 10:13 am (fblackmo) employee stated that during a storm with high winds he went to open the front end of a loader. Wind caught the door, breaking the gas cylinder and smashed his left hand in between the door. Supervisor: r. T. Bland
## 3441          09/19/2000 02:49 pm employee was helping shrub site distance at 701 by-pass and west frink in whiteville. Employee claims that a limb from a tree was hung up in a vine. He claims he cut the vine so he could get limb. Mr. Long claims that when he went
## 3442                                                                       09/19/2000 03:42 pm employee was driving iron pin into stone with a sledge hammer; when the hammer slipped off the head causing him to twist/sprain his right elbow. Supervisor: r. J. Downes
## 3443                                                                         09/19/2000 03:47 pm employee was removing construction signs from truck (by mounting the truck from the side); when he slipped and sprained his right thumb. Supervisor: dwayne a. Bauguess
## 3444                                                                                                        09/19/2000 03:52 pm employee was working near another welder on 9/6/00; when the arc from the welder irritated Mr. Reynolds eyes. Supervisor: r. D. Sherrill
## 3445                                                                                                             09/19/2000 04:01 pm employee was climbing down off a athey loader; when his right little finger became caught on mirror brace. Supervisor: r. S. Minton
## 3446                                                                                                        09/19/2000 04:10 pm employee was working in a ditch laying driveway pipes; when he was bitten on the left foot by an unknown insect. Supervisor: s. W. Nance
## 3447                                                                          09/19/2000 04:18 pm employee was cutting brush on right of way; when he came in contact with poison ivy plants. He has contact rash on face, neck and both arms. Supervisor: w. D. Watkins
## 3448                                                                                                      09/19/2000 04:26 pm employee was disconnecting trailer; when the trailer raised up causing employee to fall on his left leg and ankle. Supervisor: j. C. Sloan
## 3449                        09/19/2000 04:34 pm employee lost his footing when sign bounced off guardrail and struck his right hand chipping the bone in his thumb. Employee was helping relocate signs on steep embankment at overhead passes. Supervisor: t. J. Brooks
## 3450                                                                                                                              09/19/2000 04:43 pm employee strained/sprained his right ankle while walking along ditch on construction site. Supervisor: steve gibbs
## 3451           09/19/2001 02:10 pm (fblackmo) employee was driving dump truck along highway 75 with his window down when, something flew into his left eye under his glasses. Employee had to pull over because he could not see. Employee was hauling dirt off the grad
## 3452                       09/19/2001 02:28 pm (fblackmo) employee was removing signs from right of way and placing them in back of pickup truck. Employee had to twist some signs to get out of ground and lift them into back of pickup truck. Supervisor: e. A. Green
## 3453                                                                         09/19/2001 02:42 pm (fblackmo) employee and crew were clearing brush from bridges in buncombe county. While hedging, employee came into contact with poison ivy. Supervisor: terry j. Davis
## 3454                                                                                                                    09/19/2001 02:58 pm (fblackmo) employee was climbing a ladder to change a sign when he felt pain in his left knee. Supervisor: timothy m. Foster
## 3455                                                                                      09/19/2001 03:12 pm (fblackmo) employee was carrying supplies into the office when he tripped on the edge of the sidewalk and twisted his left knee. Supervisor: l. J. Cordell
## 3456                                                                                                   09/19/2001 03:23 pm (fblackmo) employee was nailing a ramp for ferry docks with a 4 lb hammer. He pulled the ligaments in his right arm. Supervisor: morris jones
## 3457            09/19/2001 03:41 pm (fblackmo) employee was cleaning up the ground at the elwell ferry. Employee was in the parking area near the ferry house. Employee had just parked and exited his vehicle. As he was walking, he stepped into a hole. The holes wer
## 3458                                                                                                                                    09/19/2001 04:02 pm (fblackmo) employee was lifting trash bags out of truck bed and strained lower back. Supervisor: carl church
## 3459            09/19/2001 04:14 pm (fblackmo) employee stated she fell on the stairs going from the first floor to the fourth floor. She fell on both knees and skinned the knuckles on her right hand. Employee stated her knees were hurting the following day. Super
## 3460                                                                                 09/19/2001 04:26 pm (fblackmo) employee was operating a motorgrader, when employee got bitten by a spider on the upper backwhile driving motorgrader. Supervisor: matthew oliverson
## 3461                                              09/19/2001 04:39 pm (fblackmo) employee was trimming a tree when the back hoe pushed another tree down. Employee didn't have enough time to move. The tree struck employee on his right side. Supervisor: jack rollins
## 3462                                                                                                                      09/19/2001 04:54 pm (fblackmo) employee requested his blood pressure to be checked. Employee pressure was normal. Supervisor: james m. Laviner
## 3463                                                                                                                             09/19/2001 09:26 am (fblackmo) employee was moving truck into shop to make repairs when he injured his knee. Supervisor: gerald brabble
## 3464                               09/19/2001 09:39 am (fblackmo) employee was arranging erosion control stone on a temporary check dam. Stone had been dumped in ditch and employee was arranging stone by hand to bring dam into compliance. Supervisor: m. R. Nichols
## 3465                                                                    09/19/2001 09:54 am (fblackmo) employee was lifting a cylinder form a cart on one side of him moving it to the other side of the floor causing the injury to his back. Supervisor: chris peoples
## 3466                    09/19/2001 10:27 am (fblackmo) employee stated he was lifting a stack of rebar on one end to put in backhoe bucket so it could be loaded onto truck when, something pulled in his lower back causing instant pain. Supervisor: eric allen schenz
## 3467           09/19/2001 10:40 am (fblackmo) the vibratory roller was being transported on the low-boy. During transport the load shifted causing additional tension on the flip-type binder. While attempting to release the binder, the employee felt a sharp pain in
## 3468                          09/19/2001 10:54 am (fblackmo) employee was operating a boom mower cutting bace slopes of ditch. The right rear of tractor fell into a hole, dropping tractor down and causing a jarring motion to employees back. Supervisor: c. L. Lucas
## 3469                                                                                            09/19/2001 11:13 am (fblackmo) employee had climbed chute on athey loader to grease top fittings, lost footing and struck knee on chute frame. Supervisor: david shepard
## 3470                                                           09/19/2001 11:28 am (fblackmo) employee was helping change wooden pile under bridge. He felt a pain in his back. He was helping pull old pile up from under bridge with a rope. Supervisor: w. D. Watkins
## 3471                                                                                                                                  09/19/2001 11:41 am (fblackmo) employee was stepping out of truck when the door slammed shut on his finger. Supervisor: a c powell
## 3472                                                                               09/19/2001 12:05 pm (fblackmo) employee was shoveling mud out of the wash rack when he slipped and fell, hitting the lower part of his back on a hump of mud. Supervisor: c. R. White
## 3473                                                            09/19/2001 12:17 pm (fblackmo) employee was operating a two man post hole auger with an inmates help, the auger hit a root or rock causing employee to injure his lower back. Supervisor: john w. Stiles
## 3474           09/19/2001 12:41 pm (fblackmo) employee was processing license(taking pictures) when she tripped on chair provided for digital work station. The trip caused immediate back pain. After the incident was reported, employee was offered medical attention
## 3475           09/19/2001 12:56 pm (fblackmo) while slope staking on state road 1394 in haywood county a dog came up to employee. The dog did not seem like it was going to bite, but when employee walked pass the dog, it lunged for his leg and bite him. Supervisor:
## 3476             09/19/2003 02:12 pm (fblackmo) employee state that during 12/4/02 ice storm, he was working with a crew on old charlotte road, cutting and pulling limbs out of roadway to clear travel lanes. During the process, he felt a sting in his stomach area.
## 3477                                          09/19/2003 03:34 pm (fblackmo) employee was standing at rear of dump truck directing the driver to dump a load when, a private vehicle past by work site causing debris to fly into his left eye. Supervisor: w. H. Monroe
## 3478                                                                                                                                                  09/19/2003 03:44 pm (fblackmo) employee was moving a box when, she felt pain in her back. Supervisor: wayne hurder
## 3479                                                                                               09/19/2003 04:00 pm (fblackmo) employee was driving a survey stake into road when, he struck his left index finger causing a laceration. Supervisor: r. J. Hollifield
## 3480                                             09/19/2003 04:22 pm (fblackmo) employee stop to fuel up the tractor when, he stepped down from the truck he turned to closed door and twisted his right ankle. Supervisor: gene strickland 10/03/2003 11:49 am (gwhite)
## 3481                                                                                                                                     09/19/2003 04:33 pm (fblackmo) employee was stepping out of truck when, he felt pain in his left foot. Supervisor; a. S. Bailey
## 3482                                                                                                                            09/19/2003 04:43 pm (fblackmo) employee states while mowing rig a piece of debris flew into his right eye. Supervisor; clinton b. Little
## 3483                                                                   09/19/2003 07:38 am (fblackmo) employee states while operating a rubber tire excavator he, felt pain in his back, neck, head, and eyes due to the motion of the machine. Supervisor: ken a. Mason
## 3484                                                                                  09/19/2003 07:59 am (fblackmo) employee states while cleaning a cement mixer the top of the mixer slammed down striking him on his left arm and chest area. Supervisor: d. R. Ross
## 3485                                                                                        09/19/2003 08:22 am (fblackmo) employee was flagging traffic when, he felt very weak and dizzy. Employee states he slightly passed out twice. Supervisor; james van ridddick
## 3486                                                    09/19/2003 08:42 am (fblackmo) employee was loading distributor from tanker. Employee was removing filler hose from distributor, asphalt was blown form filler spout out onto employee. Supervisor: steve milton
## 3487                                                     09/19/2003 09:51 am (fblackmo) employee was operating a rubber tire roller when, he lost control and ran off the road hitting a tree causing the injury to his right arm and right knee. Supervisor: henry kirk
## 3488                                                                         09/19/2003 10:02 am (fblackmo) employee was using loader to load concrete slab when, he shut the door on his right hand causing the injury to his center finger. Supervisor; patrick norman
## 3489                                                                                                                           09/19/2003 10:10 am (fblackmo) employee was cleaning out a driveway pipe when, he became dizzy and nauseated. Supervisor: robert g. Davis
## 3490                                                                                        09/19/2003 10:24 am (fblackmo) employee was conducting a site inspection when, he tripped and fell causing the injury to his left shoulder and side. Supervisor: ted sherrod
## 3491                                                                                                                                  09/19/2003 10:37 am (fblackmo) employee was lifting a jacking block when, he felt pain in his lower back. Supervisor: c. K. Woodby
## 3492                                                                                                               09/19/2003 10:47 am (fblackmo) employee states while conducting a inspection he, found a tick on his lower back on right side. Supervisor: e. J. Bunn
## 3493                                                                                                                      09/19/2003 11:41 am (fblackmo) employee was cutting weeds around bridge when, he found a tick on his upper thigh area. Supervisor: j. E. Smith
## 3494                                                                                                                       09/19/2003 11:50 am (fblackmo) employee was cutting right of way with chain saw when, he felt pain in his back area. Supervisor: r. E. Austin
## 3495                                                                          09/19/2003 12:12 pm (fblackmo) employee was conducting a inspection when, a private owned vehicle stuck his vehicle causing the injury to his left elbow and neck. Supervisor: tim jackson
## 3496                                                                                                                                     09/20/2000 03:23 pm employee was removing life jackets from box; when the lid fell on her left hand. Supervisor: jeff m. Credle
## 3497                                                                                                 09/20/2000 03:33 pm employee was driving a frontend loader on 8/23/00; when he strained his back while bouncing up and down on loader. Supervisor: tommy kilpatrick
## 3498                                                                               09/20/2000 03:48 pm employee was working on acorn drive on 9/6/00; when a twig entered his ears. He was bending down to drive a wooden stake in the ground. Supervisor: c. N. Edwards
## 3499                                        09/20/2000 03:59 pm employee was weighing a truck on us 1 @ spring forest road on 8/1/00. As he attempted to remove scale between tires it got caught causing him to strained his right shoulder. Supervisor: lt. E. Coleman
## 3500                                                                                                   09/20/2000 04:11 pm employee was putting rocks under pipe to level it; when the rock and pipe caught ring on his left middle finger. Supervisor: tommy kilpatrick
## 3501                                                                                                            09/20/2000 04:17 pm employee was getting into truck; when the door slammed back and bent his left thumb back toward his wrist. Supervisor: j. D. Hensley
## 3502                                                                                                    09/20/2000 04:33 pm employee was mowing around plant bed when she put her left hand up on rollbar she pinched her left little finger. Supervisor: k. B. Williams
## 3503                                                                                            09/20/2000 04:47 pm employee was tightening bolt on bridge handrail; when the socket slipped off and struck his right hand and right index finger. Supervisor: r. E. Cox
## 3504                                                   09/20/2000 04:56 pm employee was attempting to hook up a tow type air compressor; when dump truck rolled backwards causing his right arm to become wedged between truck and compressor. Supervisor: c. N. Edwards
## 3505                                                                  09/20/2001 10:04 am (fblackmo) employee was changing a tire on a truck rim, when completed he picked up tire to place in tire cage to pump air and strained lower back. Supervisor: gary m. Wilson
## 3506                                 09/20/2001 10:16 am (fblackmo) employee was transferring a 35 pound scale from one vehicle to another, in his attempt to lift the scale in a awkward manner, employee pulled muscles in his right biceps. Supervisor: kathy vollert
## 3507                                                                                                         09/20/2001 10:29 am (fblackmo) employee was loosening a hydraulic hose with an adjustable wrench and separated his shoulder joint. Supervisor: r. N. Wright
## 3508                                   09/20/2001 10:41 am (fblackmo) employee was trying to remove historical marker form post, set screw was stripped out. Employee tried to loosen it by shaking and picking up on sign, pulled muscle in back. Supervisor: jim evans
## 3509            09/20/2001 11:05 am (fblackmo) employee was getting a piece of cable from under the shed. The cable was beside a ladder. When he attempted to move the ladder to get the cable the wasp started swarming and stung employee on his arms and head. Superv
## 3510           09/20/2001 11:17 am (fblackmo) employee was stepping up into the cab, when his right foot slipped off the bottom step and hit the ground. As this happened the jolt of hitting the ground caused his jaw to slam together causing damage to a tooth. Supe
## 3511                                                09/21/1999 01:39 pm employee was directing truck into stone spreader. Employee had free hand resting on spreader when dump truck backed into spreader pinching employees fingers on right hand requiring 7 stitches.
## 3512                                                                                                           09/21/1999 01:52 pm employee was operating tandem at the time of accident. Dump truck flipped over and injury occurred. Left elbow broke in three places.
## 3513                                                                                                     09/21/1999 03:24 pm employee injuries is in his right shoulder due to repetitive movement while doing test densities on projects. Supervisor: frank j. Gioscio.
## 3514            09/21/1999 03:33 pm while driving north on stevens mill road, a private vehicle crossed yellow center line, striking Mr. Marsh's driver side mirror on state truck. The broken glass came inside the truck, getting in employees eyes and hair. Supervis
## 3515            09/21/1999 03:43 pm employee injured his left hip and lower back while carrying planting bags of day lillies. Mr. Wilkins was walking along I-40 dropping plants in holes, when he later complained of lower back and hip pain. Supervisor: mark conner.
## 3516                                                                                              09/21/1999 03:52 pm employee was lifting tv from a cart to move into another office, when she injured her shoulder, neck, and back strain. Supervisor: dempsey miller.
## 3517                                                                                                                09/21/1999 03:58 pm Mr. Kamil has injuries to his right hand and wrist due to repetitive motion while using the computer. Supervisor: gary e. Parker
## 3518                                                                                                     09/21/1999 04:13 pm employee was putting up signs for a storm, when he sat down in his pickup truck a bee stung him on his lower back. Supervisor: t. C. Tilley
## 3519                                                                                                                              09/21/1999 04:17 pm Mr. Stepp injured his right forearm while pulling brush, when he cut his arm with chainsaw. Supervisor: t. L. Hall
## 3520                                                                                                                   09/21/2000 09:08 am employee states she has pain in both wrists due to repetitive motion caused by keyboarding on the job. Supervisor: j. P rhyne
## 3521                                                            09/21/2000 09:30 am employee was bending down to inspect a weld on bridge deck. While bending he twisted slightly for a closer look when he pulled muscles in his lower back. Supervisor: l. L. Mitchell
## 3522                                                                                                                                        09/21/2001 02:42 pm (jgibson) accident occurred on nc 182 in fallston (cleveland co. ), nc on September 12, 2001 at 4:08 pm.
## 3523           09/21/2001 09:22 am (fblackmo) employee was mowing subdivision when a copper ground rod got caught in the blades of the mower. When employee tired to pick the rod out it burnt through his gloves an onto his hand and fingers. Supervisor: steve dillon
## 3524            09/21/2001 09:40 am (fblackmo) employee was in a designated work zone rolling asphalt. Traffic had been shifted to one lane. Two people were on the roller. One employee got off the roller to set up cones and as he did so, he went into the path of o
## 3525          09/21/2001 10:00 am (fblackmo) employee was passenger in vehicle that ran off the road while traveling south on 41-111. As the driver attempted to steer back onto pavement, he hit a driveway which caused the truck to skid across the northbound land a
## 3526             09/21/2001 10:24 am (fblackmo) employee was working on night-time concrete deck, on us 85 business. Employee attempted to pass the contract worker on narrow overhang. Employee and the contractor miscommunicated and bumped into each other. Employee
## 3527                                                                          09/21/2001 10:50 am (fblackmo) employee was cutting a log off a tree. When he was finished, he stepped back and tripped over the brush and fell and hit his elbow. Supervisor: w. H. Lynch
## 3528                                                                                                  09/22/1999 03:31 pm employee was setting up water pump for storm cleanup in kill devil hill & he injured his rt. Shoulder when he was moving the hose to the pump.
## 3529              09/22/2000 10:26 am employee made wrong judgement call by riding in a car with a broken seat. He could not get the seat to push back away from the dash in order to give road test. Mr. Bates strained his lower back on 9/8/00. Supervisor: sandra n.
## 3530                                                                                                                               09/22/2000 10:32 am employee slipped and fell in a ditch straining muscles in his groin area on 8/2/00. Supervisor: lt. C. E. Coleman
## 3531                                                                                   09/22/2000 10:44 am employee was clearing work sites when he came in contact with poison ivy plants. He has contact rash on both arms and his right leg. Supervisor: eric midkiff
## 3532                                                                                    09/22/2000 10:52 am employee was attaching an orange marker flag to corner of blade; when the strap broke striking him in his left eye and forehead. Supervisor: d. L. Carpenter
## 3533                                                                            09/22/2000 10:57 am employee was pulling weeds and vines; when he came in contact with poison ivy plants. Mr. Farrington has contact rash on both arms and face. Supervisor: c. C. Crump
## 3534                                                                                                                                   09/22/2000 11:02 am employee was using a grinder on jobsite; when dust particles blew into his right eye. Supervisor: a. D. Cloer
## 3535                                                                                                                               09/22/2000 11:17 am a coworker dropped an aluminum pan of soil on Mr. Fenner's left middle finger on 8/18/00. Supervisor: mehdi haeri
## 3536                                                                               09/22/2000 11:29 am employee was working on a herbicide truck when he jumped off a two foot ladder. Mr. Farner felt a sharp pain in his right groin area. Supervisor: c. H. Sneed, jr
## 3537               09/23/2002 03:25 pm (fblackmo) employee was preparing to move to next asphalt patch. Employee leaned forward to place rake against the front rail, driver accelerated the spreader throwing employee backwards into the rail. Supervisor: r. E. Brake
## 3538                                                                                                                                                     09/23/2002 03:42 pm (fblackmo) employee was walking toward ferry when, his foot slipped. Supervisor: t. L. Gray
## 3539                                          09/24/1999 10:28 am Mr. Wilder slipped and fell off the back of dot truck while removing debris from highway and rescuing a man from rising flood water. Mr. Wilder was swept away by water and drowned causing his death.
## 3540            09/24/1999 11:00 am Mr. Summerlin was attempting to go in to work following hurricane floyd (essential employee), when his private vehicle was swept off the road from high water. He subsequently drowned causing his death. Supervisor: dennis ezzell.
## 3541                         09/24/2002 02:12 pm (sshort) employee was using the weed eater on 8/29/02, when something flew under his safety glasses and struck his left eye. This caused the intraocular implant in his left eye to dislocate. Supervisor: j. C. Gunter
## 3542                                                      09/24/2003 02:21 pm (fblackmo) employee was returning to her office form another part of the building when, she slipped and fell on the marble floor. Supervisor: bonnie f. Tripp 10/16/2003 09:24 am (gwhite)
## 3543                                                                      09/24/2003 02:31 pm (fblackmo) employee was performing inspection duties when, he stepped into a ditch and lost his footing causing the injury to his upper back. Supervisor: frank j. Gioscio
## 3544                                                                                                                            09/24/2003 02:44 pm (fblackmo) employee fell on riprap while brush-cutting causing the injury to his left hand. Supervisor: robbie beach
## 3545                                                                                                                                      09/24/2003 03:24 pm (fblackmo) employee was climbing into motor-grader and hit his elbow on the handrail supervisor: t. Jordan
## 3546                                                                            09/24/2003 03:35 pm (fblackmo) employee was cleaning out the inside of asphalt tank when, climbing down his ring finger got caught between a piece of metal. Supervisor: leslie reynolds
## 3547                                                                                             09/24/2003 03:45 pm (fblackmo) employee was attempting to dislodge blade with a hammer when, the blade fell off striking him on his right foot. Supervisor: j. R. Riley
## 3548                                                                                                                                                      09/24/2003 04:01 pm (fblackmo) employee states he cut his finger while removing bolts. Supervisor: derek smith
## 3549                                                                           09/24/2003 04:12 pm (fblackmo) employee was working with a sledge hammer to break the bead of a flat tire when, he pulled back to far striking his right ankle. Supervisor; leroy farrish
## 3550           09/24/2003 08:50 am (fblackmo) on tuesday 08/19/03 employee was working on state road 1100 when, he was bitten by a tick on his left shoulder. On 08/26/03 employee was told he had an infection due to a tick bite. Supervisor: t. A. Woody 5/27/2004 10
## 3551                                                                                                             09/24/2003 09:05 am (fblackmo) employee states while shoveling asphalt from a dump truck he, felt pain in his lower right arm. Supervisor: j. D. Holton
## 3552                                             09/24/2003 09:28 am (fblackmo) employee was stacking bags of concrete mix when, the concrete shifted and fell on him. Employee braced himself with his hand causing pain in his right wrist/hand. Supervisor: d. S. Lee
## 3553                                                                                      09/24/2003 09:41 am (fblackmo) employee was attempting to pull up signs to remove them form roadway when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon jr
## 3554                                                                                                         09/24/2003 09:50 am (fblackmo) employee states while sitting at her desk a insect of some kind bite her on the left wrist. Supervisor: pamela g. Harrington
## 3555                                                                                                                    09/24/2003 10:26 am (fblackmo) employee sustained a cut under his right eye from the use of a five gallon plastic bucket. Supervisor; henry kirk
## 3556                                                                                                     09/24/2003 10:40 am (fblackmo) employee trip while walking up stairs after giving a road test causing the injury to his left shoulder. Supervisor: s. N. Harris
## 3557                                                                                                                                09/25/2000 10:49 am employee was picking up a 25 pound rock in roadway; when he strained his lower back. Supervisor: d. L. Carpenter
## 3558                                  09/25/2000 10:56 am employee was walking around building when he tripped and fell over mower safety shield onto tractor tire injuring his lower back. Mr. Blount was scared by a cat causing this injury. Supervisor: s. E. Watson
## 3559                     09/25/2000 11:21 am employee was moving a piece of lumber; when loose dirt particles gave way underneath her feet. Her right foot slipped down the bank causing her to twist the left knee. Supervisor: james calvin bostic 10/13/2000 09:06 am
## 3560          09/25/2001 03:10 pm (slee) employee was traveling south o nc 41/111 when he ran off the road. As he was attempting to steer back onto pavement he hit a driveway which caused the truck to skid across the northbound lane, which resulted in the truck ro
## 3561                                                                            09/25/2001 09:04 am (fblackmo) employee strain his back because, he was holding onto a cable connected to a pipe as it rolled from the backside of the ditch. Supervisor: r. A. Mccarley
## 3562          09/25/2001 09:22 am (fblackmo) employee was placing hydraulic motor onto spline of rear roller. Employee was supporting it with one hand as he was reaching for some attachments with the other, the motor slipped and fell onto left hand mashing ring fi
## 3563                                                                09/25/2001 11:13 am (fblackmo) employee was on 4th floor leaving office 418 to go to office 415. Floor was wet. Employee slipped on wet floor and fell onto her shoulder. Supervisor: c. H. Matthews
## 3564                                                                           09/25/2001 11:27 am (fblackmo) employee standing inside the guardrail, large truck moved toward employee, backed, fell over guardrail, landing on tail bone. Supervisor: mark e. Stafford
## 3565                                            09/25/2002 10:17 am (sshort) employee was removing tree limbs from right of way, when she came in contact with poison ivy plants. She has contact rash on face, neck, and her left arm. Supervisor: w. E. Mcclendon, jr.
## 3566                09/25/2002 10:27 am (sshort) employee was holding bucket on the backhoe so a shop employee could drive a pin back in place. While hitting the pin part of it; a piece of metal flew off and hit him in his left forearm. Supervisor: k. J. Hazelwood
## 3567              09/25/2002 10:51 am (sshort) employee has bruises and cuts to both arms and face. Mr. Mitchell was traveling east on memorial highway, when his private vehicle ran off the right side of the road. His car came to rest on an embankment. Supervisor:
## 3568                                                                                                                      09/25/2003 08:31 am (fblackmo) employee states while stepping up into truck, she jabbed down to hard on her right foot. Supervisor: m. Venable
## 3569                                                                                                                                   09/26/2000 04:42 pm employee stated that she pulled muscles in her back while loading straw onto truck. Supervisor: j. D. Houston
## 3570                                                                                                                         09/26/2000 04:57 pm employee was clearing vegetation with a bushaxe; when a thorn stuck into his left middle finger. Supervisor: mark crook
## 3571                                                                                                                                        09/26/2000 05:03 pm employee was climbing off backhoe; when he felt a sharp pain in his right knee. Supervisor: n. S. Gibson
## 3572                                      09/26/2000 05:10 pm employee tripped over a laptop bag in her office while trying to get up from chair. The handle caught her foot and made her fall against the desk. Ms. Jones bruised her left hip. Supervisor: tony spence
## 3573           09/26/2001 10:28 am (fblackmo) employee was loosening a hydraulic hose fitting underneath a wood chipper, fitting broke loose suddenly, causing the wrench employee was using to slip off fitting striking employee in mouth. Cracked upper teeth. Superv
## 3574           09/26/2001 10:55 am (fblackmo) employee states that when using computer to issue and retreive records and giving information to customers her hands and wrist hurt. Fingers have been numb feeling for the past four months, the pain has been running up
## 3575                                                                                09/26/2001 11:13 am (fblackmo) employee was working on lonnie walker road clearing the right-of-way cutting trees when, he came into contact with poison ivy. Supervisor: rick helms
## 3576                                                                                                                                                 09/26/2003 11:42 am (fblackmo) employee was weedeating on parkway when, he was stung by bees. Supervisor: ted burns
## 3577                           09/26/2003 11:51 am (fblackmo) employee was driving a state vehicle and made a lane change when, another driver blew his/her horn, employee jerked his head to look and felt a sharp pain in his neck area. Supervisor: j. J. Anderson jr
## 3578                                                                                                                                    09/27/1999 02:39 pm employee pulled a muscle in her lower back while lifting picnic table onto the truck. Supervisor: t. L. Gray
## 3579                                                                                    09/27/1999 08:55 am employee tried to get into passenger side of vehicle. Got halfway onto seat, lost balance, and fell to the ground. Struck his right hand on a rock or brick.
## 3580                                                                                                    09/27/1999 09:17 am employee was cutting right of way on sr 1152 and liquid from poison oak flew from brush and came in contact with skin. Both arms and stomach
## 3581         09/27/1999 09:31 am employee states that he was standing near catch basin while prot-rooter was pumping out basin, hose came out and started spraying water everywhere. Employee says he started running to get out of the way, when he turned to run he ra
## 3582                                                 09/27/1999 10:12 am employee was exiting the cab of dot pick-up truck to do inspection on project. As she stepped on her left foot, her leg twisted slightly, causing the back of the lower left leg to be in pain.
## 3583          09/27/1999 12:04 pm Mr. Honaker was traveling southbound in the right lane of us 220, when his vehicle was hit from the rear by a tractor trailer. The employee had the left arrow board flashing, strobing lights activated and attenuator in position in
## 3584                                                                                                                        09/27/2001 04:30 pm (fblackmo) employee went to move saw and as he turned, he felt a pain in his back and had some leg numbness. Supervisor:
## 3585                                                                                                          09/27/2001 04:46 pm (fblackmo) employee was operating a dump truck, ran off onto shoulder, truck over-turned and rolled over. Supervisor: c. N. Edwards jr
## 3586           09/27/2002 01:16 pm (sshort) employee was getting into pickup truck on 9/5/02; when he saw the toolbox open. Mr. White shut the toolbox and as he started to step back his left hand was in the door track. The wind blew the door shut crushing his left
## 3587                                                                                                   09/27/2002 01:30 pm (sshort) employee stated when trying to disconnect the roller form his truck, he felt a pain in his neck on 9/17/02. Supervisor: wayne knight
## 3588            09/27/2002 10:34 am (sshort) employee was driving a dump truck on a two-lane road. When a privately owned flatbed truck passed him on the road. The truck was hauling brush, when a limb busted the mirror on his truck. His window was down and glass f
## 3589          09/27/2002 10:43 am (sshort) employee was working in a pavement widening crew on sr 2695 (wheeler road), when he came in contact with poison ivy plants. Mr. Presnell has contact rash on both arms, left wrist, in both eyes, on his back and also his he
## 3590                                                                                                              09/27/2002 10:50 am (sshort) employee was operating belts on a spreader on 5/3/02, when he later found a tick on his left hip. Supervisor: w. G. Wrenn
## 3591                                                                                      09/27/2002 11:03 am (sshort) employee was dismounting from a tandem dump truck on 8/6/02. His foot slipped, causing him to fall striking his right knee. Supervisor: d. S. Lee
## 3592                                                                  09/27/2002 11:10 am (sshort) employee stated he has numbness in his left leg and left arm. It was thought at the time of these symptoms, that it was because of the heat. Supervisor: a. S. Bailey
## 3593                                                                                                    09/27/2002 12:13 pm (sshort) employee was helping push a railing post back, when he stuck his left hand palm on a broken rusty nail. Supervisor: terry l. Harris
## 3594                                                                       09/27/2002 12:20 pm (sshort) Mr. Macemore right eye began bothering him on 9/17/02. Mr. Macemore thinks a foreign object entered his eye on 9/16/02 while working. Supervisor: s. B. Hudspeth
## 3595                     09/27/2002 12:26 pm (sshort) employee had just finished cutting several tree limbs from roadway, when he used his t-shirt to wipe sweat from his face. Foreign objects from the limbs and sawdust got into his right eye. Supervisor: m. L. Poe
## 3596            09/27/2002 12:32 pm (sshort) employee was getting off of scaffold when he fell to the ground. His pants pocket got caught on the walk board on 9/12/02. When Mr. Mcintyre returned to work on 9/16/02, he was complaining about his back and knees hurti
## 3597                                                                                                    09/27/2002 12:41 pm (sshort) employee was placing rocks around pipes, when an inmate dropped a rock on his right hand middle finger. Supervisor: mark turlington
## 3598                                                    09/27/2002 12:47 pm (sshort) employee was checking work area where pipe was to be laid on 9/5/02. Mr. Baucom stepped into a hole covered with high grass and strained his lower back. Supervisor: jerry hildreth
## 3599                                09/27/2002 12:53 pm (sshort) employee was picking up tree limbs to put into the chipper machine, when a limb got hung on another limb. When the limb jerked free, it struck him back in his right testicle. Supervisor: a. S. Bailey
## 3600             09/28/1999 01:38 pm employee was attempting to apply brakes on mower, when the brakes failed. A state crew cab pickup coming westbound on the same road avoided the cab. The mower flipped over in the ditch scratching Mr. Williams arm. Supervisor: a
## 3601                                                                                                 09/28/1999 01:47 pm Mr. Musselwhite turned to run to truck to get his hard hat, when he tripped and fell. He sprained his left ankle. Supervisor: derwin strickland
## 3602             09/28/1999 01:54 pm Mr. Crocker sprain/strain his right knee and ankle while attempting to step over guard rail. He also hit his right shoulder, arm, left hand and his head. His foot hung on to the top of guard rail causing him to fall. Supervisor
## 3603             09/28/1999 02:02 pm Mr. Turner was driving on sr 1940 too fast for conditions. He lost control of the vehicle leaving the road and hitting a telephone pole. His mouth-bottom lip was split requiring 2 stitches. He also fractured his right knee cap.
## 3604                                                                                          09/28/1999 04:07 pm employee was getting out of tantum dump truck and slid off top step and knocked breath out of him hurting his back and neck. Step was wet due to rain.
## 3605                                                                09/28/1999 11:19 am employee injured his left index finger while installing erosion control devices. He was placing stones, when another stone hit him on his index finger. Supervisor: l. W. Currin
## 3606                                                                                                                         09/28/2000 11:01 am employee was eating lunch outside on 8/31/00 and fainted falling back hitting his left temple. Supervisor: m. W. Little
## 3607                                                                                                                                    09/28/2000 11:35 am employee has pain in her right wrist due to repetitive motion in keyboarding. Supervisor: lyndia dianne rowe
## 3608                                                                                         09/28/2000 11:45 am employee was working on 8/15/00; when he had an allergic reaction to herbicides. Mr. Dew has rash and welts on both arms. Supervisor: robert d. Simpson
## 3609                                                                                            09/28/2000 12:03 pm employee fell against anchor on port bow, striking her right cheek on the anchor stock. Employee was working on ferry vessel. Supervisor: t. L. Gray
## 3610                                                    09/28/2000 12:07 pm employee was loading dirt onto trucks with a frontend loader; when the truck backed into the loader jerking the wheel. Employee pulled muscles in his left arm. Supervisor: eddie gurganious
## 3611                                                                                                              09/28/2000 12:15 pm employee was using a chain saw clearing roadways (repetitive motion) causing tendonitis in his left wrist. Supervisor: m. S. Reese
## 3612                                                                                                                     09/28/2000 12:19 pm employee was preparing to operate a carry all truck on 9/21/00; when a fly flew into his right ear. Supervisor: h. E. Allen
## 3613                                                                                            09/28/2000 12:35 pm employee stepped out of vehicle just when a truck was passing by. The truck blew a foreign object in Mr. Saunders right eye. Supervisor: kevin bowen
## 3614                                                                                                09/28/2000 12:41 pm employee was cutting trees when the wind blew the tree back; pinning employee left arm between bucket and the tree. Supervisor: marty c. Tillman
## 3615             09/28/2000 12:59 pm employee was walking down slope at bridge replacement site on 9/26/00. Mr. Lambert boot was caught on a rock that caused him to fall and hit his forehead on a rock. He has abrasions on hand, legs, and shoulders. Supervisor: gre
## 3616                                                             09/28/2001 08:42 am (fblackmo) employee was struck/ran over by a backing excavator operated by a contractor (Mr. Hinton). Supervisor: c. F. Edwards, cme 4/20/2007 11:17 am (fblackmo) *has a attorney*
## 3617                                                                                                                         09/28/2001 09:19 am (fblackmo) employee, officer knight was on patrol, he was struck in the rear by a pickup truck. Supervisor: sgt. Henson
## 3618                                                                                                              09/28/2001 09:37 am (fblackmo) employee was exiting a vehicle at work site, when stepping out employee twisted his right ankle. Supervisor: h. L. Rich
## 3619                                             09/28/2001 09:55 am (fblackmo) employee was spreading rebar at the location of a future bridge column. While pulling the rebar employee felt a pain in his back under his right shoulder blade. Supervisor: k. T. Cross
## 3620                                                                                     09/28/2001 10:14 am (fblackmo) employee was rolling tarp up on truck when the bar used to crank it slipped off and struck employee above left eye. Supervisor: henry sturdivant
## 3621                                                                                                         09/29/1999 08:04 am employee was unloading flatbed when a piece of lumber came down on his leg causing a laceration on right lower leg. 02/01/2000 01:04 pm
## 3622                                                                                                                             09/29/1999 08:19 am as employee opened entrance door to building, employee caught left foot on bottom corner of door. Left toe bruised.
## 3623                                                                                 09/29/1999 08:58 am employee was rolling a tire to be put on equipment when rolling tire over a drop cord he lost balance of tire. Trying to catch tire he strained his groin area.
## 3624              09/29/1999 10:09 am Mr. Sharpe strained muscles in his neck, back, and right forearm on May 5, 1999. His patrol car was stopped in traffic and it was rear-ended by another private vehicle. Supervisor: g. J. Woodard note: Mr. Sharpe is a police of
## 3625                                 09/29/1999 10:16 am Ms. Fisher has injuries due to carpal tunnel syndrome in 6th & 7th vertebrae and across both shoulders. She stated the injury occurred from taping, binding and moving adt books. Supervisor: cassandra sherrod
## 3626                                                                                                                                          09/30/1999 08:10 am employee has a swollen left ring finger due to keyboarding on jobsite. Supervisor: lyndia dianne rowe.
## 3627                                                                                                                      09/30/2003 09:30 am (slee) while the dot vehicle was parked on the shoulder it was rear ended by a private vehicle moving west bound on I-485.
## 3628                                                                                               09/30/99 08:00 am employee was swinging a brush ax cutting a hedgebush, when he felt a slight pain in his lower back and left upper hip area. Supervisor: e. M. Hagan
## 3629                                                                                                                                 1 pt attacked another & EE went to break them up, pt & EE went to the floor. EE landed on his rt side. Bruised rt front lower ribs.
## 3630                                                                                                                                     1/10/2008 03:02 pm (blgay) employee was working on pipe replacement and got poison ivy on his left arm. Supervisor: e. L. Hager
## 3631                    1/10/2008 03:19 pm (blgay) employee was reaching to flip the petrosonic switch in the main office. As employee reached she felt a pull in her right lower back and started feeling pain in her right leg three days later. Supervisor: mark ross
## 3632              1/10/2008 08:19 am (blgay) employee was sitting down on the bridge floor with his feet in a hole putting in stripping. When employee got up, his right foot got caught between the joist causing him to twist his right knee. Supervisor: w. T. Lowery
## 3633                                                  1/10/2008 08:28 am (blgay) employee was putting wood in wood stove at haywood maint. Shed and his left hand got caught between the stove door and wood. Mashing his left middle finger. Supervisor: greg mccracken
## 3634           1/10/2008 08:42 am (blgay) employee was putting on snow equipment. Employee was taking the rubber boots off of the hydraulic lines, two came off freely, but the others were stuck. He had on oily gloves, which kept sliding off, so employee took his g
## 3635                                                                                                1/11/2005 09:22 am (fblackmo) employee states a private vehicle pulled out into the path of his vehicle causing the injury to his lower back. Supervisor: t. Huskins
## 3636                                                      1/11/2005 09:37 am (fblackmo) employee states while approaching intersection his vehicle was struck in the rear by a private vehicle. Employee experience pain in his neck area. Supervisor: louis l. Mitchell
## 3637                                                                                           1/11/2005 09:58 am (fblackmo) employee has performed data entry for several years. Employee has been diagnosed with carpal tunnel syndrome. Supervisor: robert k. Andrews
## 3638                                                                                                                       1/11/2005 10:11 am (fblackmo) employee was stacking trash bags on overhead shelf when, he felt pain in his back. Supervisor: franklin bullock
## 3639                                                                                                                               1/11/2005 10:21 am (fblackmo) employee was moving a five gallon water jug when, he felt pain in his lower back. Supervisor: dan cumbo
## 3640                                                                                                              1/11/2005 10:30 am (fblackmo) employee was pushing a piece of ice with his right foot when, he felt pain in his right hip area. Supervisor: greg burns
## 3641                                    1/11/2005 10:39 am (fblackmo) employee was walking out to get courier mail when, she lost her balance and fell on asphalt. Employee injured right side of face and knee. Supervisor: j. Scott cole 3/11/2005 03:09 pm (kbarefoo)
## 3642                                                                                                    1/11/2007 02:17 pm (fblackmo) employee felt pain in her arms and knees when, the elevator dropped from the third floor to the first. Supervisor: lisa j. Carroll
## 3643                                                                                                 1/11/2007 02:45 pm (fblackmo) employee was carrying a roll of matting when, she fell over a clump of dirt and twisted her right ankle. Supervisor: henry sturdivant
## 3644                                                                            1/11/2007 10:54 am (fblackmo) employee was hauling rip rap when, he was moving the rocks his ring finger on right hand was caught between the rock and tailgate. Supervisor: larry brown
## 3645                                                                                                                                         1/11/2007 12:12 pm (fblackmo) employee was pulling a water hose when, he felt pain in his upper back. Supervisor: guy white
## 3646         1/11/2010 03:56 pm (blgay) employee was operating loader for snow and ice removal. After loading dump truck with salt for snow and ice removal, employee began to exit loader. Employees foot got entangled in rusty broke area of loader steps. This cause
## 3647         1/11/2010 04:13 pm (blgay) employee was working snow and ice removal. Snow plow struck patch of ice, pulling truck into left lane. Truck was struck by private vehicle. In trying to regain control of dump truck, employees left hand was injured with ste
## 3648                                                        1/11/2010 05:00 pm (blgay) employee was cutting tree on frozen bank, when feet slipped causing the employee to pitch forward off of bank and landed on chest in frozen ditch line. Supervisor: james lambert
## 3649                                                           1/12/2006 10:56 am (blgay) employee was leaning over pickup bed to move traffic cone out of his work space, when he felt a sharp pain and heard a pop on the right side rib cage. Supervisor: danny lewis
## 3650           1/12/2006 11:32 am (blgay) employee was drilling holes into metal that was positioned on saw horses, while leaning into drill to apply pressure, the drill motor blew metal shavings into his right eye. Supervisor: franklin granda 10/1/2009 10:38 am (
## 3651                                 1/12/2006 11:53 am (blgay) employee was adjusting a floor jack under a truck. Employees hand was on the metal plate of the jack when the handle of the jack fell on his hand, mashing right middle finger. Supervisor: mark huffman
## 3652                                                                    1/12/2007 09:14 am (fblackmo) employee was cutting backslopes when wire got caught in mower. Employee was cutting wire when, it flew back striking him in corner of eye. Supervisor: r. G. Crews
## 3653                                                                                1/12/2010 01:21 pm (blgay) employee was pushing snow. Truck started sliding and continued until truck over. Employee was struck in head by unknown object. Supervisor: w. R. Tippett
## 3654                                                                                                      1/12/2010 01:33 pm (blgay) employee was checking hydraulic lack of salt spreader, when rust was blown into eye from back of truck. Supervisor: johnny ransdell
## 3655         1/12/2010 03:53 pm (fblackmo) employee states he had a physical reaction to mold in the workplace. Employee was performing his duties as a drivers license examiner. This has been a continuous problem. Did not know the results of testing of air quality
## 3656                                                                                                                         1/12/2010 11:59 am (fblackmo) employee bent down to paint the leg of a table and felt a pull in his lower back. Supervisor: johnnie bullock
## 3657                  1/12/2010 12:08 pm (fblackmo) employee had ended work for the day at 4:00p. M.. Employee used the stairway to exit the building missing last step and falling to the ground. Employees left knee was swollen and bruised. Supervisor: amanda olive
## 3658                                                                1/13/2004 01:51 pm (fblackmo) employee was walking down shoulder of roadway and shoulder gave way due to a cavity and employee fell causing the injury to his ankle. Supervisor: lindsey o. Ethridge
## 3659                                                                                                     1/13/2004 02:04 pm (fblackmo) employee was climbing down out of dump truck when, his foot slipped causing the injury to his left ankle. Supervisor: j. E. Adams
## 3660                                                                1/13/2004 02:22 pm (fblackmo) employee was helping other employees load plywood when his finger was caught between two boards causing the injury to his finger on left hand. Supervisor: rodney byrd
## 3661                                                                                            1/13/2004 02:38 pm (fblackmo) employee was shoveling asphalt when he stepped into the path of another employee causing the injury to his finger. Supervisor: a. O. Epley
## 3662                                                                                                                                               1/13/2004 03:54 pm (fblackmo) employee was lifting wet logs when one fell on his right foot. Supervisor: t. F. Rhodes
## 3663                                                                                            1/13/2004 04:04 pm (fblackmo) employee was cutting a tie warp with pocket knife when, the knife slipped causing the injury to his left thumb. Supervisor: g. J. Liverman
## 3664                                                                                                             1/13/2004 04:18 pm (fblackmo) employee was stepping out of truck to remove debris when the injury occurred to his left ankle. Supervisor: h. D. Wiggins
## 3665                                                                                                  1/13/2004 04:28 pm (fblackmo) employee was walking on shoulder of road when he stepped in a hole causing the injury to his right ankle. Supervisor: w. L. Thompson
## 3666                                                                                                                                1/13/2004 11:15 am (fblackmo) employee was crossing ditch and stepped into low place twisting his left knee. Supervisor: l. W. Lyall
## 3667                       1/13/2004 11:29 am (fblackmo) employee was at the land field unloading tires and rubber. Employee climbed over side of truck to get into trailer when foot slipped off railing causing employee to fall to the ground. Supervisor: t. J. Shaw
## 3668                                                                    1/13/2005 09:11 am (fblackmo) employee fell on fence and the top fence rail struck employee on his head requiring 7 stitches. Employee is also having severe headaches. Supervisor: reece howard
## 3669                                                                                                                          1/13/2005 09:23 am (fblackmo) employee states while stepping up into dump truck he, felt pain in his left knee. Supervisor: j. M. Campbell
## 3670                                                                                                                        1/13/2005 09:34 am (fblackmo) employee was standing behind broom tractor when, a rock struck him in the left eye. Supervisor: j. M. Campbell
## 3671                                                                                                   1/13/2005 09:54 am (fblackmo) employee was working on guard rail removing bolts when, rail snapped apart striking him on his left leg. Supervisor: a. W. Childers
## 3672                                                                                                                              1/13/2005 10:08 am (fblackmo) employee states she is pain, numbness, and tingling in right hand and arm. Supervisor: stephanie benarao
## 3673                                                          1/13/2005 10:53 am (fblackmo) employee was in a hole shoveling dirt to replace a cross line. Employee was pulling up on the shovel when, he felt a sharp pain in his lower back. Supervisor: leon saunders
## 3674         1/13/2005 11:55 am (fblackmo) employee experience numbness in right arm, hand, and fingers, stiffness and swelling in neck and back. Occupational medical condition caused by operation of heavy equipment, using a repetitive arm motion for years. Superv
## 3675          1/13/2009 03:33 pm (blgay) employee was riding in a dot pickup truck. The driver tried to avoid a pack of dogs in the road, lost control of the vehicle and crashed into a creek. A tree limb penetrated the cab of the truck striking the employee on the
## 3676         1/13/2010 03:03 pm (blgay) employee climbed up the bank of a tandem dump truck to check the amount of salt in the spreader. When he took hold of the grate on top of the spreader it was loose, causing him to loose his balance and fall. During fall, emp
## 3677              1/13/2010 08:40 am (blgay) employee was in her normal operation of mowing highway right of way with long arm mower. She stated that she was using the clutch a lot to back up and go forward, causing pain in her left knee. Supervisor: lawrence long
## 3678                      1/13/2010 11:42 am (fblackmo) employee was installing eight inch sea chest value on port side of auxiliary machine space when his right index finger got caught between the handle of valve and deck plate frame. Supervisor: marshall coleman
## 3679                                                                                                                                                  1/13/2010 12:04 pm (fblackmo) employee states rock fell off truck hitting his left foot. Supervisor: clifton mills
## 3680                                                                                                1/13/2010 12:13 pm (fblackmo) employee was walking through water tight door when, he hit his head. Employee felt pain in his head and neck. Supervisor: s. H. Kinner
## 3681                                                                                    1/13/2010 12:36 pm (fblackmo) employee slipped and fell while walking down hill to office building. Contusion to her knees and elbows. Twisted ankle. Supervisor: victor barbour
## 3682                                                               1/14/2008 03:14 pm (fblackmo) employee was pulling limbs out of the roadway so that the road could be open and traffic could pass safely when, he felt pain in his left knee. Supervisor: wade harper
## 3683                     1/14/2008 09:47 am (blgay) employee was raising the truck bed, a rock was blocking the tailgate. When employee reached up to remove the rock, the tailgate closed on his right hand. Cutting the top of right hand. Supervisor: thomas brackett
## 3684                                                                       1/14/2008 10:02 am (blgay) employee was cutting trees from right of way. The trees were covered in poison ivy, causing employee to get poison ivy over entire body. Supervisor: dewey houston
## 3685          1/14/2008 11:54 am (fblackmo) employee was helping build shelves in bolt house and stepped back onto a roofing nail (two inches long). Roofing nail went through employees shoe and stuck into right foot under the bottom of the toes. Supervisor: albert
## 3686                                                                        1/14/2008 12:16 pm (fblackmo) employee was helping an elderly gentleman out of a chair after having his photo taken when, he felt pain in her lower back area. Supervisor: dolphus marshburn
## 3687         1/14/2008 12:27 pm (fblackmo) employee was in her office when down the hall about 15 ft. A community service worker was cleaning the mens restroom. He sprayed vitaphene (disinfectant) causing employee to start coughing, watery eyes and shortness of br
## 3688                                                                                                      1/14/2009 02:52 pm (fblackmo) employee was going down the hall in front of break room, left foot slid and causing injury to left knee. Supervisor: becky white
## 3689                                                                         1/14/2009 05:23 pm (fblackmo) employee was walking down a ditch slope when, his foot slipped and fell, folding his left leg underneath him. Left knee injured. Supervisor: phillip gurganus
## 3690         1/14/2009 12:30 pm (fblackmo) employee was unloading salt and sand-stepped out on running board to see how much was left on truck and bar came backwards and caught finger between arm that works the bed cover and metal bar. Body injuries listed was rig
## 3691                                                                                                                    1/14/2010 05:20 pm (blgay) employee was shoveling out pipe and hurt lower back and right hip. Supervisor: wes jamison 4/8/2011 12:29 pm (barnes)
## 3692                                                                                             1/14/2011 02:57 pm (fblackmo) employee was lifting snow plow blades to install on equipment when, he felt pain in the back of his right leg. Supervisor: e. L. Mckethan
## 3693                   1/14/2011 03:17 pm (fblackmo) employee had secured a briefcase on dolly when the bungee cord slipped causing the metal hook to striking his face. Employee experienced a laceration to his forehead area(above eyebrow). Supervisor: maude creech
## 3694                                                                                          1/14/2011 03:35 pm (fblackmo) employee was walking down corridor when, she slipped and fell. Employee felt pain in her right shoulder and hip area. Supervisor: mark tyler
## 3695         1/14/2011 03:56 pm (fblackmo) employee was assisting in hooking up snow plows to equipment for upcoming snow and ice event. He was down on the ground under dump truck hammering pin into place; as he turned and attempted to get up he felt a pull in his
## 3696                                                                                                            1/14/2011 04:16 pm (fblackmo) employee was moving boxes from floor to counter when she felt pain in the right side of her neck. Supervisor: jilda mcghee
## 3697                            1/14/2011 04:33 pm (fblackmo) employee was exiting utilities vehicle when, he slipped and fell down embankment causing injury to his upper left leg. Employee also felt pain in his lower back area. Supervisor: richard t. Poythress jr
## 3698         1/14/2011 12:07 pm (fblackmo) employee was changing blades on grader (955-0540) when, he climbed on the mold board to connect chain hoist for safety the pin came out causing him to fall to the floor. Employee fracture his right leg. Supervisor: sterli
## 3699                                            1/14/2011 12:26 pm (fblackmo) employee was operating a grader when he struck a cement column that was covered with snow. The impact threw him on the arm rest causing pain to his right side. Supervisor: e. L. Mckethan
## 3700                                                                                   1/14/2011 12:54 pm (fblackmo) employee slipped and fell into the bottom of the boat (a end shaped vessel). Employee felt pain in his lower back area. Supervisor: david mutschler
## 3701                                                                                                   1/15/10: chg. Resident then pulled resident up in bed-felt back pop with pain. 1/26/10: made residents bed-radio fell- bent to pick up batteries-pain in back. ()
## 3702                                                                                              1/15/2004 10:43 am (fblackmo) employee was lifting bags of grout and putting them into a hopper when, he experienced pain in his lower back. Supervisor: w. D. Watkins
## 3703                                                                                               1/15/2004 12:05 pm (fblackmo) employee was cutting logs when the saw kicked back causing him to fall on road injuring his hand and neck. Supervisor: wendell chastain
## 3704                                                                                    1/15/2004 12:18 pm (fblackmo) employee was getting back into truck from checking cable when, he slipped on icy road causing the injury to his neck. Supervisor: wendell chastain
## 3705          1/15/2008 12:51 pm (blgay) employee was getting on equipment trailer to chain down tractor, when he was getting up off of his knees, he reached up to pull him self up and felt pain immediately on the right side of shoulder, neck and right side. Super
## 3706         1/15/2009 08:13 am (fblackmo) employee was working at the copart auto salvage yard in dunn. He was exposed to airborne particles in and around motor vehicle that he was working on. During the course of the day the wind picked up causing particles to b
## 3707         1/15/2009 10:25 am (blgay) employee was removing tree debris from the right of way and had bent over to remove a section that had been cut when a limb broke against another limb and struck employee in the face, injuring his right eye. Supervisor: dere
## 3708         1/15/2009 10:46 am (blgay) employee was pulling a metal tape to measure hardware cloth at structure 116 on our lewisville-clemmons road construction project. Keeping tension on the tape, while pulling the edge of the tape, removed a piece of skin to t
## 3709         1/15/2010 02:57 pm (fblackmo) employee was attempting to secure a digging bucket with a tie down strap on the back of a flatbed. While throwing the tie down strap over the bucket, the strap got hung in his jacket and the strap came back striking him I
## 3710                                                                                            1/16/2009 03:35 pm (fblackmo) employee ran her hand down a fiberglas stick while reaching back for the seatbelt while doing a cdl skills test. Supervisor: heather broom
## 3711                  1/17/2006 11:29 am (blgay) employee was driving crew cab pick up that crew was getting cold mix from to repair potholes. Employee looked in rear view mirror and saw a brown car at the same time the car hit the truck. Supervisor: stan paramore
## 3712                                                                                                       1/17/2007 02:12 pm (fblackmo) employee is experiencing pain in her right hand, wrist, arm, and shoulder due to frequent keyboard use. Supervisor: gail sheets
## 3713                                 1/17/2007 10:55 am (fblackmo) employee states no strainious work was done on date of accident he was only driving dump truck when he felt pain in lower back (pinched nerve). Supervisor: jeremy delapp 1/31/2007 03:09 pm (gwhite)
## 3714                                                                                                   1/17/2007 11:12 am (fblackmo) employee was removing salt spreader from truck when, he fell on wet sand causing injury to his lower back. Supervisor: chris taylor
## 3715                                                                                                                                                         1/17/2007 11:21 am (fblackmo) employee injured lower back while moving a copier. Supervisor: marvin shelton
## 3716                                                                                                              1/17/2007 11:34 am (fblackmo) employee was walking down embankment when, he slipped and fell causing injury to left leg/knee. Supervisor: t. B. Daniel
## 3717                                                             1/17/2007 11:51 am (fblackmo) employee was removing toilet in womens restroom when, pipe released gases hitting him in the face causing him to feel nauseated and light headed. Supervisor: ricky daves
## 3718         1/18/2006 11:17 am (blgay) employee was helping to pull cut trees and debris from plant bed. Crew was chipping cut plant material, when employee got some dirt or debris in his left eye while cutting and chipping project was on going. Employee was wear
## 3719          1/18/2006 11:30 am (blgay) employee was driving a motor grader on sr 1589 to a project, when a red ford pickup crossed the center line and struck the motor grader head on. The motor grader was entirely in the proper travel lane. Neither vehicle could
## 3720                                                                                            1/18/2008 12:30 pm (fblackmo) employee was removing a christmas wreath from grill on front of truck using a knife when, he cut his left hand. Supervisor: terry barnette
## 3721                       1/19/2005 02:53 pm (fblackmo) employee was repairing crossline pipe with backhoe. Backhoe tilted while crossing ditch. Employee tired to catch himself by putting hand on window frame, window closed on his hand. Supervisor: randy anderson
## 3722                                                                                                                      1/19/2005 03:21 pm (fblackmo) employee was digging to uncover a property corner and felt a tingle in his lower back. Supervisor: t. K. Wheeler
## 3723                                                                                          1/19/2005 03:46 pm (fblackmo) employee stated that he was operating a front end loader when, he injured his face, scalp, neck, and wrist. Supervisor: dallie bagwell supt.
## 3724                                                       1/19/2005 12:30 pm (fblackmo) employee reached into trunk of a bmw 740 that was on a jack. The owner had car jack up. The car rocked off the jack striking employee on his right knee. Supervisor: t. W. Kirk
## 3725           1/19/2011 03:16 pm (barnes) employee was feeding brush into the chipper. The chipper caught a limb that was on the brush, causing the brush to hit the employee in his back. Employee injured his back, hands and left shoulder. Supervisor: d. M. Pressl
## 3726          1/19/2011 03:56 pm (barnes) employee was cutting & grinding the cutting edge off of a loader bucket. After completing the job, he felt something in his right eye. Due to adverse weather conditions, employee had to wait to see eye doctor on monday, ja
## 3727          1/19/2011 04:33 pm (barnes) employee (Mr. Richmond) was helping others change snow plow blades. As he and another employee lifted up the blade, the other employee let go without Mr. Richmond knowing. When the bade dropped, it pulled on Mr. Richmond's
## 3728                                                  1/19/2011 05:09 pm (barnes) employee was treating roads for icy conditions. While traveling down a hill, he hit a patch of ice and ended up in a ditch. Employee injured lower abdomen. Supervisor: r. A ellington
## 3729                             1/19/2011 12:14 pm (barnes) employee was pushing dump truck door shut and the wind caught the door, causing it to swing open hitting employee in the mouth breaking her tooth. Employee injured top front tooth. Supervisor: j. C mundy
## 3730                         1/19/2011 12:42 pm (barnes) employee was applying salt to iced road, when he stepped out of truck and fell on ice causing pain to chest and right shoulder. Employee injured left rib and had shoulder contusions. Supervisor: f. E roberts
## 3731         1/2/2008 01:24 pm (fblackmo) employee was conducting road test. Driver of vehicle steered vehicle sharply to right to return to his lane and avoid oncoming traffic. Driver ran over curb and hit a light pole. Employee felt pain in his back. Supervisor:
## 3732          1/2/2008 02:01 pm (fblackmo) employee was prepping deck of the m/v fort fisher. An air hose was being used to clean dirt from the beck of the boat. Another employee was controlling the air flow. Wind blew paint chips into employees left eye. Employee
## 3733         1/2/2008 02:12 pm (fblackmo) employee was running advance warning turck for herbicide operation. Employee parked truck on incline on shoulder of the road. Employee was exiting the truck when, the door closed on her left center finger causing injury. S
## 3734          1/2/2008 02:39 pm (fblackmo) employee had the grade stick in his hand. The grade stick is in three sections, and when he tried to extend it, something caught his fingernail. Fingernail was not pulled completely pulled off. Supervisor: e. Wayne wooten
## 3735                                                                                                                                1/2/2008 10:36 am (blgay) employee was trapping a load of mulch and lost balance and fell off back of truck. Supervisor: c. H. Sneed
## 3736                            1/2/2008 10:43 am (fblackmo) employee was on project having a discussion with contractor personnel when a vehicle lost control and vehicle jump curb, causing mirror of the vehicle struck employee on right hip. Supervisor: jeff allen
## 3737          1/2/2008 10:51 am (blgay) employee was loading tailgate apron into bed of dump truck. Employee was holding on to bed of truck with left hand and he took his right hand to lift apron further into bed of truck. Apron fell and landed on employees left h
## 3738                                                                                                      1/2/2008 11:03 am (blgay) employee was cutting a block of wood, when the saw kicked back cutting the left side of his right forefinger. Supervisor: doug eller
## 3739         1/2/2008 11:13 am (fblackmo) employee states that the injury to her back occurred while taking out an overly large bag of trash on 9/11/07. Injury was not reported to supervisor on 9/11/07. Supervisor states that "employee was only present at work for
## 3740           1/2/2008 11:29 am (fblackmo) employee was walking on shoulder of the road picking up signs from re-surfacing project when, he stepped onto unstable terrain causing him to twist his left ankle, knee, and hip. Supervisor: greg vinson 1/11/2008 05:08 p
## 3741          1/20/2004 10:51 am (slee) state vehicle was traveling on wilmington st. In burgaw, nc. Private vehicle was at stop sign on dickerson street, failed to yield the right of way and drove into the path of the state vehicle. The state vehicle struck the p
## 3742         1/20/2005 01:11 pm (fblackmo) employee was operating offset press and used cotton pad to clean edge of plate with equipment running. Cotton pad got caught between the blanket and plate cylinder pulling his hand into the equipment causing the injury to
## 3743                                                                                1/20/2005 01:22 pm (fblackmo) employee was in the process of pulling on the wings of the asphalt paver when, he felt a sharp pain in his lower abdomen. Supervisor: dannie tomberlin
## 3744                                                                                                            1/20/2005 12:17 pm (fblackmo) employee was pushing a broom while sweeping road when, he felt pain in his back, wrist, and legs. Supervisor: r. E. Austin
## 3745         1/20/2006 08:44 am (blgay) employee was performing activities during the time period that included: lifting ltl test set to read pavement markings, on and off pickup truck, sampling and testing concrete for pour, moving weights used for soil density t
## 3746         1/20/2006 09:06 am (blgay) employee was tying down the backhoe to the trailer on sr 2026, when he returned to the cab of the flatbed he started having severe pain starting at his left shoulder going down his arm to his elbow. Supervisor: ricky blalock
## 3747         1/20/2010 01:19 pm (blgay) employee was blowing out a hole that had been jack hammered out. The employee got something in his right eye. Employee washed out the eye with solution, when he returned to the office that afternoon. Supervisor: ronald joyce
## 3748         1/20/2010 12:18 pm (blgay) employee was night riding and stepped out of the truck to check a sign. Sign was on slight incline (bank) right ankle gave way. Ankle popped two or three times and employee went down. Bank was uneven and damp. When ankle gav
## 3749         1/20/2010 12:38 pm (blgay) employee was plowing snow and the truck exhaust system broke off. The fumes from the exhaust came into the cab of the truck. This made the employee sick, causing headache, lungs, nausea on stomach and sleepy. Supervisor: kev
## 3750         1/20/2011 10:16 am (barnes) employee was pushing snow on 4 lane us 321 south towards hwy 10 west. As employee approached the bridge over jacob fork river, his plow blade hit a metal plate that had been welded over the expansion joint. It caused the tr
## 3751                                                                             1/21/2010 08:58 am (fblackmo) employee was getting out of pickup truck, planted his feet on the ground, stood up and turned when, he heard his right knee pop. Supervisor: carlis smith
## 3752           1/21/2010 09:14 am (fblackmo) employee was conducting road test when customer slammed brakes and accelerated causing the vehicle to turn right towards curb. Employee grabbed the steering causing discomfort to her back and neck. Supervisor: lorie can
## 3753                                                                           1/22/2008 01:02 pm (fblackmo) employee states she was having pain in her right wrist, hand, and arm (trouble grasping objects) while typing and using a mouse. Supervisor: angela fanelli
## 3754                                  1/22/2008 10:41 am (blgay) employee got out of truck, turned and twisted to rear of truck, felt a little pain in back. Employee walked about 20 yards to flag traffic, then could hardly walk back to truck. Supervisor: w. Teague
## 3755               1/22/2008 10:49 am (blgay) employee was sharpening a power hedge trimmer when the file he was using slipped and the little finger of his right hand hit the blade of the trimmer, cutting the little finger of the right hand. Supervisor: david hall
## 3756                                                                                 1/22/2008 10:57 am (blgay) employee was climbing onto truck to check sander, very windy conditions and wind blew large amount of sand and salt into eyes. Supervisor: frank ruppard
## 3757                                       1/22/2008 11:05 am (blgay) employee was lifting a metal bumper on I-240, a piece of metal cut finger when employee threw the bumper into another scrap pile, cutting little finger on left hand. Supervisor: r. J. Hollifield
## 3758         1/22/2009 01:59 pm (blgay) employee was cutting a plastic tape off a roll of cable on the woodlawn yard with a pocket knife. The knife cut employees left hand between his thumb and forefinger. Employee received three stitches. Supervisor: robert denni
## 3759                      1/22/2009 02:16 pm (fblackmo) employee got up to give copy of handbook to customer when, her pants leg cuff got hung up in the desk causing her to fall backwards on the floor. Employee felt pain in lower back area. Supervisor: m. L. Smith
## 3760                                                                                                                       1/22/2009 02:38 pm (fblackmo) employee was picking up a bag of stones when, he felt pain in his left shoulder area. Supervisor: brooks pearce
## 3761                                 1/22/2009 06:26 pm (fblackmo) employee was walking off elevator through art museum when she slipped and fell in the hallway. Employee felt pain in her neck, both shoulders, right foot, and back area. Supervisor: sonya v. Beatty
## 3762                                                                                            1/23/2006 03:33 pm (blgay) employee was loading sprayer on flat bed truck, when he hit his hand between side board of truck and sprayer. Supervisor: e. R. Gurganus, jr.
## 3763                                                                                                                                  1/23/2006 03:43 pm (blgay) employee was pulling brush from roadway, stepped in a hole and twisted knee. Supervisor: patrick norman
## 3764         1/23/2006 04:00 pm (blgay) employee was working alone blading a dirt road with a motorgrader. Employee pulled to side of the road to take a break, when he noticed small package lying on the ground. Employee picked up package to investigate and realize
## 3765                                                                                                     1/23/2007 01:06 pm (fblackmo) employee was organizing cleaning supplies in warehouse when, foreign matter got into her left eye. Supervisor: franklin s. Granda
## 3766                   1/23/2007 01:24 pm (fblackmo) employee states while replacing a wooden pile under bridge for a prompt action it slipped on bank catching his left hand under pile. Employee fractured his little finger and ring finger. Supervisor: john kearney
## 3767                                                                           1/23/2007 01:38 pm (fblackmo) employee was lifting boom with left hand to fill equipment with tack material causing pain to his hand, arm, shoulder, and neck. Supervisor: alton thornton
## 3768                                                                                                                  1/23/2007 03:31 pm (fblackmo) employee was lifting the loading ramp of a tow type trailer when, he felt pain in his back. Supervisor: carlis smith
## 3769                                                                                                                                            1/23/2007 03:41 pm (fblackmo) employee was moving fire extinguisher when, he felt in his elbow. Supervisor: albert oneal
## 3770          1/23/2007 11:47 am (fblackmo) employee was helping to replace a battery in a loader. In order to gain access to the battery he had to stand on the tire. Employee was stepping down off tire when, he felt pain in his back area. Supervisor: l. T. Garner
## 3771         1/23/2007 12:09 pm (fblackmo) employee was in the process of helping another employee put a tailgate on the #3 sterling tandem truck. He climbed up the side of the truck using the wheel hub, wheel, and foot rail. As he got to the top he threw his left
## 3772         1/23/2007 12:23 pm (fblackmo) employee was standing on side of truck holding onto tarp rack and trying to get salt/san mixture to go down (it was frozen). The bar he was holding onto broke causing him to fall about 6ft. Landing flat on his back. Emplo
## 3773                         1/23/2007 12:33 pm (fblackmo) employee was inspecting a large pipe. Employee was walking down slope when, his foot got tangled up in vines which caused him to fall, striking his lower left leg against a rock. Supervisor: kevin d. Smith
## 3774                                                                                                                    1/23/2007 12:42 pm (fblackmo) employee was lifting general inventory items when, he felt pain in his lower back area. Supervisor: charles vinson
## 3775                                                           1/23/2007 12:54 pm (fblackmo) employee was removing trash bag from can at fuel island when, he felt pain in his upper/lower back, right hip, and leg. Supervisor: j. E. Stepp 5/28/2009 11:32 am (sshort)
## 3776                                                                                                                        1/23/2008 02:02 pm (blgay) employee was returning to bridge yard from a job, when lady ran red light and hit them. Supervisor: herbert ramey
## 3777                                                                                                                                     1/23/2009 05:34 pm (fblackmo) employee was shoveling rocks when, he felt pain in his upper back area. Supervisor: j. T. Wiggins
## 3778                                                                                                                           1/24/2006 09:32 am (blgay) employee was loading wooden stakes into carryall and felt pull in upper left shoulder. Supervisor: l. E. White
## 3779          1/24/2006 09:43 am (blgay) employee was loading a office chair in the back of a pickup truck that was already partially full of furniture, while standing on the rear bumper he lost his balance. Employee fell to the ground and the chair hit him in the
## 3780                                        1/24/2006 09:54 am (blgay) employee was mopping office floor, when she went out of office to rinse and wring out mop, she came back in office and slipped on wet floor, bumping her head on floor. Supervisor: h. D. Wiggins
## 3781                         1/24/2006 10:03 am (blgay) employee was driving north on nc 209 when a private citizen pulled into oncoming traffic causing sv to collide with pv, causing employee to hit his right knee against dashboard in truck. Supervisor: chris lee
## 3782         1/24/2006 10:16 am (blgay) employee was attempting to stand up from sitting position out of a chair, when he lost his balance and fell to the floor. Employee fell and landed on his right writ and suffered a compound fracture. Supervisor: barry s. Moos
## 3783                                                                                                                      1/24/2008 10:16 am (blgay) employee was trying to get to her chair and either fainted or fell, employee doesn't know. Supervisor: lavonne reed
## 3784         1/25/2005 10:13 am (fblackmo) employee was operating a diesel powered atv mounted drill machine advancing an 8-inch diameter flighted auger into the ground with rotation. Roots and vines became entangled and began pulling other vines and employee into
## 3785         1/25/2005 10:28 am (fblackmo) employee was lowering tailgate on truck standing on the side when, tailgate started coming dow to fast catching his left hand between the chain and bed of truck. Employee cut left hand across the top. Supervisor: dennis g
## 3786                                                                                                  1/25/2005 10:40 am (fblackmo) employee was opening gate to facility yard when, he slipped and fell on ice causing injury to his left ankle. Supervisor: don staley
## 3787                                                                                                                                             1/25/2005 12:11 pm (fblackmo) employee was pulling nails when, he felt pain in his neck area. Supervisor: f. T. Killian
## 3788        1/25/2005 12:30 pm (fblackmo) william felts and charlie johnson was joking around. William felts ran from charlie johnson tripping and falling on the ground. Charlie johnson fell on william felts causing a bruise on his left shoulder. Supervisor: c. E.
## 3789         1/25/2005 12:42 pm (fblackmo) employee was attempting to remove aggregate from roadway that was packed by traffic using shovel. Employee used foot to push shovel into pile of aggregate when, he felt pain in his lower back. Supervisor: l. W. Lyall 4/3/
## 3790          1/25/2005 12:57 pm (fblackmo) employee was placing sandbag under a bridge that had a washout from under the abutment. This involved kneeling down and twisting to place the sandbag. The bags weighted 35 lbs. The next day employee was bushined and felt
## 3791                        1/25/2007 11:07 am (fblackmo) employee stopped at scene of a accident, he was blocking the ramp. One car stopped, second car hit first car pushing it into imap truck. Employee felt pain in his neck and right knee. Supervisor: t. W. Kirk
## 3792                                                                                                     1/25/2007 11:30 am (fblackmo) employee was working around truck and snow plow when, he walked into spreader causing a cut to his head. Supervisor: r. E. Austin
## 3793         1/25/2007 11:40 am (fblackmo) two employees were removing the polo trailer attachment that acts like a fifth wheel from the flat bed truck. One employee dropped his end of the attachment causing the attachment to strike the other employee in the groin
## 3794          1/25/2008 01:43 pm (blgay) employee in the past 2 - 3 months has been experiencing numbness, tingling and locking down of some fingers on both hands due to consistent use of hands, wrists and fingers with computers, filing and writing in office work.
## 3795                                     1/25/2008 11:46 am (blgay) employee was pulling brush to a chipper. Employee bent down, took a step forward and felt a sharp pain in right foot. Pain persisted and employee asked to go to doctor. Supervisor: bobby berryhill
## 3796        1/25/2008 12:09 pm (blgay) employee was measuring the width of a median ditch on I-40. While attempting to cross from the median back to the outside shoulder of the road, he reached down to pick up and remove a 40 foot long piece of tie down strap that
## 3797                                                                                   1/25/2008 12:22 pm (blgay) employee was trying to get chain and binders out of storage compartment of the low boy when he felt pain in his lower back. Supervisor: jamie robinson
## 3798                                                                               1/25/2008 12:30 pm (blgay) employee was operating state owned vehicle. Employee was stopped at a traffic light when struck from behind by another motorist. Supervisor: t. S. Collins
## 3799                                                                                                         1/26/2005 01:12 pm (fblackmo) employee was bushing and going up and down slopes when, the injury occurred to his left foot. Supervisor: timothy k. Southard
## 3800                                                                     1/26/2005 01:51 pm (fblackmo) employee was loading a pipe band into a tandem over his head. Band caught on bed of truck and came back striking employee on the head. Supervisor: patrick norman
## 3801                                                               1/26/2005 02:16 pm (fblackmo) employee was going to truck to change job sites when, he stumbled over frozen ruts in road. Employee fell on ground striking his left shoulder. Supervisor: d. C. Capps
## 3802                                                 1/26/2005 02:27 pm (fblackmo) employee was walking away from a tree that was being cut when, he stepped in a stump hole that was covered by pine straw causing the injury to his left knee. Supervisor: kevin baker
## 3803                                                                                                                  1/26/2005 02:42 pm (fblackmo) employee was cleaning out the end of a pipe with a shovel when, debris got into his left eye. Supervisor: bill price
## 3804                                                                               1/26/2005 03:01 pm (fblackmo) employee was inspecting a svr cutting davidson co. Saw dust from the cutting got on employee face and he has contact poison ivy. Supervisor: jeff hardy
## 3805                                                                                                                             1/26/2005 03:22 pm (fblackmo) employee was moving rolls of matting when, he felt pain in his left side and back. Supervisor: ar hensley
## 3806         1/26/2005 03:55 pm (fblackmo) employee was hooking brush chipper back to the truck at the end of the day when, it started rolling. Employee grab the tongue of the chipper and placed it back on tuck causing him to twist and pull his stomach /groin area
## 3807                                                                                                                                         1/26/2005 04:24 pm (fblackmo) employee states that another employee knocked the chair from under him. Supervisor: sg dillon
## 3808                                                           1/26/2009 11:36 am (blgay) employee was in the process of leaving building, went to refrigerator to get bottle of water, slipped and fell on wet floor: supervisor: ken pruett 1/26/2009 11:44 am (blgay)
## 3809                                                     1/26/2009 11:51 am (blgay) employee was getting up a dead deer, when his right foot slipped out from under him. As employee was falling, he tried to catch himself with his right arm. Supervisor: j. M. Delapp
## 3810                                            1/27/2005 08:33 am (fblackmo) employee was installing a hyd. Hose on a long arm tractor. Employee was pulling in two different directions at the same time when, he felt pain in his lower back. Supervisor: steve smith
## 3811                                                                    1/27/2005 08:51 am (fblackmo) employee had a sharp pain in left wrist, fingers, and swelling of hand. Employee states she could not use her arm, pain ran to her elbow. Supervisor: angela faulk
## 3812          1/27/2006 02:02 pm (blgay) employee was traveling north on us 301 when another vehicle ran a red light and was struck by a third vehicle. The van crossed the median and struck state vehicle driven by employee. The impact caused the air bag to deploy,
## 3813         1/27/2006 09:26 am (blgay) employee was on flat bed truck pulling canvas over mulch, when the mulch shifted and caused the employee to fall. As employee was falling, he extended his left arm downward to break his fall. The impact injured his left shou
## 3814                                                                        1/27/2006 09:42 am (blgay) employee was loading cones into the back of pick-up truck. Employee states " I was properly lifting and felt the muscle pull in my back". Supervisor: greg vinson
## 3815                     1/27/2010 10:58 am (fblackmo) employee was conducting road test when, customers vehicle was struck from behind. Employee felt pain in her neck and left leg. Supervisor: wayne davis 02/23/2010 09:14 am (lvaughan) per #18: injured neck, back
## 3816                                                               1/27/2010 11:12 am (fblackmo) employee was loading plastic crate of case files into car from drivers side to place on passenger seat. Employee felt pain in her lower back. Supervisor: r. K. Andrews
## 3817                                                                                                           1/27/2010 11:22 am (fblackmo) employee was pushing wheel barrow loaded with mulch downhill, employee felt pop in lower back area. Supervisor: chris vause
## 3818                                 1/27/2010 11:45 am (fblackmo) employee was hauling debris to the landfill, while raising the tailgate with assistance from inmate, inmate lost his grip causing tailgate to pinch employees right thumb. Supervisor: h. L. Thompson
## 3819                                                                                                                               1/28/2009 03:55 pm (blgay) employee walked out the front door and slipped on ice, fell striking his left side. Supervisor: doug eller
## 3820               1/28/2009 09:42 am (blgay) employee was clearing the right of way on kendall's church road and came in contact with poison ivy/oak. Employee was wearing gloves while working and was unaware of being exposed to the poison. Supervisor: k. R. Davis
## 3821         1/28/2010 01:09 pm (blgay) employee was using the roto rooter to clean out pipe. The flexible rod was bumping up against employees left leg. The employee reached down to move the rod, when the rod caught his glove on his left hand and hurt hand and ri
## 3822                                                                                                         1/28/2010 02:25 pm (fblackmo) employee was clearing brush with a bush axe when, branch from tree hit him in the right eye. Supervisor: joseph m. Parker, jr
## 3823         1/28/2010 12:26 pm (blgay) employee was following co-worker who was pulling a backhoe on a trailer. The trailer brakes locked up on nc 191, they pulled over and go the trailer brakes freed up and headed to the shop. On their way the brakes started smo
## 3824                                           1/28/2010 12:48 pm (blgay) employee was cleaning tailgate of dump truck, when tailgate closed on his right ring finger. Employees right ring finger was broken and had lacerations to right hand. Supervisor: r. A. Baker
## 3825          1/28/2010 12:57 pm (blgay) employee was in the process of rotating the vertical pole for the hoisting apparatus that holds the crs2 hose. The temps had been in the teens during the past week in the am hours. As he applied pressure, the handle that he
## 3826                                                                                                                                                      1/29/2004 01:59 pm (fblackmo) employee states he closed the car trunk on his left hand. Supervisor: joseph lee
## 3827                                                                                                                                      1/29/2004 02:14 pm (fblackmo) employee was lifting cones when he felt sharp pains in his lower back. Supervisor: t. W. Edwards
## 3828                                                                         1/29/2004 02:30 pm (fblackmo) employee was cutting down daylilies with gas power string trimmer when, a rock kicked up by the string hitting employee in the mouth. Supervisor: john farrow
## 3829                                                                                                                   1/29/2004 02:39 pm (fblackmo) employee was unloading limbs and debris from right of way when, debris flew into his eyes. Supervisor: r. A. Brower
## 3830                                                                                                              1/29/2004 02:48 pm (fblackmo) employee was removing old shrubs from roadside planting when, a thorn punctured left forearm. Supervisor: a. L. Lassiter
## 3831                                                                                              1/29/2004 03:15 pm (fblackmo) employee had parked truck on bridge yard when, he went to get down out of cab he felt pain in his left knee area. Supervisor: ronald lee
## 3832                                                                                                               1/29/2004 03:27 pm (fblackmo) employee was directing traffic to slow down when, the backhoe struck him on his left hand. Supervisor: wright r. Archer
## 3833                                                            1/29/2004 03:40 pm (fblackmo) employee states prior to kneeling down on his right knee to attach a chain to facilitate pulling out stuck vehicle he felt pain in his back. Supervisor: william r. Briley
## 3834                                                                                                              1/29/2004 03:57 pm (fblackmo) employee was cutting a brush when, a piece of sawdust came off saw and got into his right eye. Supervisor: harold howard
## 3835                                                                                                                                                1/29/2004 04:07 pm (fblackmo) employee was using grinder when, he cut his right index finger. Supervisor: b. R. Webb
## 3836                                                                                                      1/29/2004 04:56 pm (fblackmo) gate misaligned and while closing gate, employees thumb got caught between clasp and gate causing injury. Supervisor: t. L. Gray
## 3837                                                                                              1/29/2004 05:08 pm (fblackmo) employee states while cleaning frost off of truck windows he, lost his footing on ice and fell on his back. Supervisor: frank j. Gioscio
## 3838                                                                                        1/29/2004 11:15 am (fblackmo) employee states while picking up dead animals from roadway he, could have gotten the tinea manuum and tinea corporis. Supervisor: n. S. Gibson
## 3839                            1/29/2004 11:44 am (fblackmo) employee attempted to slide sheeting off of the forks to stack the sheeting. Sheeting slipped and his finger was pinched between two pieces of sheeting cutting his finger off. Supervisor: a. L. Bundy jr
## 3840                                                                                                  1/29/2004 12:27 pm (fblackmo) employee lost control after stepping on iron object on ground causing bar to fall on top of his right foot. Supervisor: r. L. Tanner
## 3841                                                             1/29/2007 02:58 pm (fblackmo) employee was sitting in parked vehicle at intersection waiting for the just paint lines to dry when, a bee stung him on the left side of his neck. Supervisor: ira harris
## 3842                                                            1/29/2007 03:07 pm (fblackmo) employee was installing tarp roller. Employee was trying to align bolt holes in tarp bracket, bracket slipped out of roller and fell on left hand. Supervisor: j. E. Stepp
## 3843                                                                                                    1/29/2007 03:31 pm (fblackmo) employee was up under a pickup truck removing the gas tank band straps. Rust fell into his right eye. Supervisor: scott r. Hancock
## 3844                                                                      1/29/2007 03:41 pm (fblackmo) employee was walking through office when, she tripped over loose phone lines on floor and fell. Employee felt pain in her right knee. Supervisor: d. E. Dunnagan
## 3845                                                                                                                                                                                                      1/29/2008 03:04 pm (fblackmo) duplication of claims do not use
## 3846                                  1/29/2008 11:27 am (fblackmo) employee was carrying a herbicide container to fill spray truck when, putting them on the ground he stepped in a small drainage ditch. Employee felt pain in his lower back. Supervisor: mark conner
## 3847                                          1/29/2008 11:51 am (fblackmo) employee was moving a drillmat onto the temporary bridge deck. His foot slipped on the wet surface and fell backwards causing the injury to his lower back. Supervisor: thomas p. Moorefield
## 3848                                                                                     1/29/2009 02:17 pm (fblackmo) employee was sitting in his vehicle when, he was car jacked. Employee experience soreness in left arm down to his hand. Supervisor: kenneth houck
## 3849                                                                                                         1/29/2009 10:43 am (fblackmo) employee pinched his left hand between the bucket and the pipe hook during pipe replacement project. Supervisor: carlis smith
## 3850                                                           1/29/2009 11:32 am (fblackmo) employee was getting out of her husbands car and began to walk up pavement when, she slipped on black ice causing injury to her back and arm. Supervisor: ronnie l. Higgins
## 3851                         1/29/2009 11:42 am (fblackmo) employee was laying on a creeper cutting bolts from a snow plow when, metal slag dropped to the floor spattering back upward and fell under safety eye wear getting into left eye. Supervisor: r. R. Bissette
## 3852                                                                                                                                  1/29/2009 11:51 am (fblackmo) employee was climbing onto ferry when, he struck his lower leg on gang way. Supervisor: s. H. Kinner
## 3853                                                                                                 1/29/2009 12:02 pm (fblackmo) employee slipped and fell in engine room due to condensation on bilge. Employee felt pain in lower left leg. Supervisor: s. H. Kinner
## 3854                                                                                                                                            1/29/2009 12:13 pm (fblackmo) employee was placing sign in hole when, sign struck him on the head. Supervisor: jim dilda
## 3855         1/29/2009 12:31 pm (fblackmo) employee was performing final bed check on pre-stressed concrete box beams. Inspection platform was wet due to rain and employee slipped while holding on to bars attached to top of beam thus twisting his arm/elbow. Superv
## 3856          1/29/2009 12:43 pm (fblackmo) employee was walking into breezeway at dmv when, she slipped on floor that was covered in condensation. Employee fell onto right knee that she had surgery on about six to seven weeks ago. Supervisor: preston cudd 2/18/20
## 3857                                                1/29/2010 11:27 am (fblackmo) employee was walking along a gravel roadway when, he stepped on some stones and lost his footing. Employee fell to the ground causing injury to left ankle. Supervisor: retha l. Leigh
## 3858                                                                                                                                      1/29/2010 11:42 am (fblackmo) employee was repairing fuel pump when, fuel splashed into his left eye. Supervisor: harold white
## 3859                                                1/3/2006 03:46 pm (blgay) employee was swiveling rescue boat towards cradle, bow of rescue boat pushed against left ring finger; crushing same between metal support of lift and rescue boat. Supervisor: harry sell
## 3860              1/30/2006 09:15 am (blgay) employee was going down the steps on the front of the production office trailer and missed the bottom step and fell to the pavement. Supervisor: charles e. Jones 3/6/2006 12:29 pm (fblackmo) *do not pay any bills see jw
## 3861                1/30/2008 02:57 pm (fblackmo) employee was standing on a raised floor in engine room (making rounds) when, he missed a step on the deck. The hatch plate was not supported correctly, employee felt pain in his left ankle. Supervisor: cindy austin
## 3862                                                                                               1/30/2008 03:11 pm (fblackmo) employee was chipping up branches from trees. Employee was exposed to something that caused a rash on face. Supervisor: steven c. Blake
## 3863                  1/30/2008 03:19 pm (fblackmo) employee was in the paint shop getting ready to go to lunch. He began to remove his steel toe shoes when, he lost his balance, and fell into metal locker causing injury to left wrist. Supervisor: thomas f. Bowser
## 3864                                                                              1/30/2008 03:38 pm (blgay) employee was going outside to conduct a cdl pre-trip and the sidewalk was icy. Employee fell and hit right elbow, wrist and hip. Supervisor: lorrie sineath
## 3865                                                                                                                                                1/30/2008 03:47 pm (blgay) employee was grinding on beam and flying debris got in right eye. Supervisor: r. E. Joyce
## 3866         1/30/2008 03:58 pm (blgay) employee was performing his pre-trip on his imap truck. At the time of the incident, employee was checking the oil and fluid levels and the hood fell from an upright position striking his hand breaking his right ring finger.
## 3867                                                                    1/30/2009 11:05 am (fblackmo) employee was reporting to work. Parking lot was icy. Employee slipped and landed on her back causing her shoulders and neck to be sore. Supervisor: paulette smith
## 3868                                                                                                 1/31/2005 03:02 pm (fblackmo) employee was securing backhoe bucket on a lowboy when, bucket shifted causing the injury to his left hand. Supervisor: r. L. Faulkner
## 3869                                                                                                                                                     1/31/2005 08:31 am (slee) dot vehicle was stopped at the stop light. Pov hit sov in the rear. Pov was reckless.
## 3870          1/31/2005 11:55 am (fblackmo) employee was using a hand compactor to build up a fill section along the shoulder of the roadway. Employee was attempting to bring lifts up in 6' layers and step 1 foot in on each lift to cerat a stair-step fill section.
## 3871               1/31/2005 12:08 pm (fblackmo) employee was removing a spreader from the back of dump truck. Employee finished hooking up the chains to the top of the spreader when, he lost his footing causing the injury to his left ankle. Supervisor: bill price
## 3872         1/31/2005 12:18 pm (fblackmo) employee was driving truck during snow removal operation. Truck started to slide on ice and he was going to downshift it quickly when, his right hand hit the gearshift causing the injury to his right hand. Supervisor: w.R
## 3873          1/31/2006 02:59 pm (blgay) employee was driving a dump truck when an animal ran out in front of him. He ran off the right side of the road to avoid the animal, when he came back onto the road the back end of the truck swerved around, causing the truc
## 3874                                 1/31/2006 03:12 pm (blgay) employee tripped on sidewalk while walking around park statues after photographing them. Injured right middle finger and right ring finger. Swollen and bruised, but no cuts. Supervisor: julie whichard
## 3875                                      1/31/2006 03:30 pm (blgay) employee was squatting down, positioning jack stand under truck. The pry bar that was standing against work bench fell, striking employee on the right side of his neck. Supervisor: e. D. Quintana
## 3876                                                            1/31/2007 02:03 pm (fblackmo) employee was removing blades from a boom mower. While driving the bolts out of the stump the hammer missed the punch striking top of his left hand. Supervisor: a. R. Pate
## 3877                                                                                          1/31/2007 02:15 pm (fblackmo) employee tripped on pipe laying on uneven ground while working on site at norfolk southern railway facility. Supervisor: a. R. (drew) thomas
## 3878                                                                                         1/31/2007 02:33 pm (fblackmo) employee was stepping across ditch when, his foot became entangled in a vine, causing him to fall on his right arm. Supervisor: leonard dills
## 3879                                                                                                 1/31/2007 11:29 am (fblackmo) employee was leaving his office when, he slipped on steps, caught himself on hand rail, and injured his back. Supervisor: j. F. Hiatt
## 3880                          1/31/2007 11:44 am (fblackmo) employee was standing at an open tailgate at back of a crew cab truck. When employee flexed to lift the box straight up he, felt pain and heard a popping sound in his lower back. Supervisor: bobby robbins
## 3881                                              1/31/2007 11:53 am (fblackmo) employee was cutting chain shield inside salt spreader and had grate propped open when, prop moved letting grate close hitting employee in the top of the head. Supervisor: james conner
## 3882                                                                                                                             1/4 employee was evaluated at ueohc for possible ill health issues which she attributes to construction dust in her work environment ()
## 3883                                                                                                                                                                                                                                  1/4 inch rod poked EE in the head.
## 3884                                                                                                                                     1/4/2005 07:41 am (fblackmo) employee was pulling on hose on snow plow when, he felt pain in his back. Supervisor: larry sawyer
## 3885                                                                  1/4/2005 07:52 am (fblackmo) employee was helping change blades on motorgrader following snow storm. Employee slipped and fell hitting his head on the edge of blades. Supervisor: george liverman
## 3886                                                                                       1/4/2005 08:02 am (fblackmo) employee was spraying off top of spreader with pressure washer when, washer ran across his left foot causing burns. Supervisor: thomas h. Swayne
## 3887                                                                                                                         1/4/2005 08:17 am (fblackmo) employee states while picking up plywood he, felt pain in his left shoulder and back. Supervisor: dennis baker
## 3888                                                                                                                                 1/4/2005 08:26 am (fblackmo) employee was changing snow plow blades when, something flew into his left eye. Supervisor: m. B. Smith
## 3889                                                                                                       1/4/2005 08:53 am (fblackmo) employee was getting highway work signs out of pickup when, he felt a sharp pain in his lower back. Supervisor: james d. Shelton
## 3890                                                                                                                                                       1/4/2010 04:26 pm (blgay) employee was cutting a tree, when limb hit him in the head. Supervisor: doug mcneal
## 3891                                                          1/4/2010 04:36 pm (blgay) employee was replacing trap in oil/water separator at equipment wash bay. Employee began to bend over to place trap in floor, when left shoulder popped. Supervisor: b. K. Hamby
## 3892         1/4/2010 04:50 pm (blgay) employee was closing the tool box on a crew cab truck and employee must have hit the latch with her hand while closing for it to stay latched. In doing so, employees right wrist popped as if sprained. Employee has been in pai
## 3893         1/4/2010 11:12 am (blgay) employee was in bed of dump truck removing in bed spreader, hooking chains to the beams, when he was walking around in bed of truck. He turned his right ankle and felt something pop. No pain until a few hours later and his an
## 3894                                  1/4/2010 11:28 am (blgay) employee was getting ready to step into loader and used 3 point stance. When stepping up employee felt something pop in his left knee and then felt a sharp pain in left knee. Supervisor: f. E. Roberts
## 3895         1/4/2010 11:43 am (blgay) employee arrived for work. Employee parked her car in employee parking area. As she was exiting her vehicle, she slipped and fell on ice, landing on left hip. Employee said she felt fine and refused medical treatment. Employe
## 3896              1/4/2011 02:11 pm (fblackmo) employee jackson was backing across the road during flagging operation when employee chavis was bumped with the pilot car (passenger side). Employee states "no one was injured in this incident". Supervisor: henry kirk
## 3897                                  1/4/2011 02:25 pm (fblackmo) employee was walking on the concrete parking lot to retrieve something from state vehicle when, he slipped on slippery chemical substance causing injury to his back. Supervisor: e. Boyd tharrington
## 3898                                                                       1/4/2011 02:38 pm (fblackmo) employee was removing limbs from the shoulder of the road when, he stepped on broken pavement edge causing injury to his right ankle. Supervisor: ronald whitley
## 3899                                                                        1/4/2011 02:51 pm (fblackmo) employee was using the gun on the crack sealing machine when, he returned from lunch he felt pain in his lower back on the right side. Supervisor: wayne wooten
## 3900                                                                                                1/4/2011 03:31 pm (fblackmo) employee was walking outside of building to wash out a trash can when, something flew into his right eye. Supervisor: chris pendergraph
## 3901                                                                                     1/4/2011 03:47 pm (fblackmo) employee was washing off a truck using a pressure washer when, the nozzle struck him on the forehead above the left eye. Supervisor: shelton james
## 3902                                                                                                                                                    1/5/2004 03:50 pm (slee) private vehicle failed to stop and yeild at stop sign, pulled into path of dot vehicle.
## 3903                                                                                                                               1/5/2005 02:12 pm (fblackmo) employee uses computer 75% of time. Employee experience pain in right wrist. Supervisor: greg y. Stevens
## 3904                                                                                                                                       1/5/2006 04:10 pm (blgay) employee was walking to office when she slipped in the hallway and fell. Supervisor: todd honeycutt
## 3905         1/5/2006 04:21 pm (blgay) employee was bending down to pickup something, as she straightened back up she hit her head on the corner of a shelf and fell backward, hitting her left hand on the base of a chair, causing sprain to hand and fingers. Supervi
## 3906                                      1/5/2010 10:39 am (blgay) employee was walking thru gate into truck lot to warm up truck. Employee made a few steps thru gate and slipped on ice, causing him to fall hitting right shoulder and head. Supervisor: cole gurley
## 3907                                                                                                1/5/2011 03:55 pm (fblackmo) employee was boarding m/v at southport when, he slipped on icy steel deck causing injury to his right shoulder. Supervisor: david james
## 3908                            1/6/2004 02:25 pm (fblackmo) employee was placing excelsior matting on backslope of ditch, matting slipped out of hand, he bent down to pick it up and while straightening up a small limb puncturing ear drum. Supervisor: marty morris
## 3909                                                                                                                 1/6/2004 02:40 pm (fblackmo) employee was pouring concrete when, the spring on the handle flew up striking him on his lip. Supervisor: dale bullard
## 3910                                                                                                                  1/6/2004 02:52 pm (fblackmo) employee was climbing out of truck when, his foot slipped causing the injury to his left knee. Supervisor: d. L. Dean
## 3911                                                   1/6/2004 11:03 am (fblackmo) employee was operating a motor grader when, he felt cramps in his right foot. Supervisor: jay sutton 11/6/2006 01:26 pm (fblackmo) claim closed. Clinched on 02/25/2006. Do not use.
## 3912                                                                                                       1/6/2004 11:41 am (fblackmo) employee was struck from behind while traveling on highway 64 causing the injury to his neck and back. Supervisor: c. W. Mcadams
## 3913                                                                                                      1/6/2004 11:52 am (fblackmo) employee was walking to truck when, he stepped in a hole causing him to fall and injure his left knee. Supervisor: r. D. Mcintyre
## 3914                                                                    1/6/2004 12:07 pm (fblackmo) employee was moving bags of fertilizer from front and back of truck to unload. While lifting bags, employee felt pain in his back and hip. Supervisor: r. C. Harris
## 3915                                                                                                  1/6/2004 12:46 pm (fblackmo) employee states while driving stakes into the ground the hammer slipped striking him on his right knee. Supervisor: stonie d. Woolard
## 3916                                                                                               1/6/2005 02:57 pm (fblackmo) employee was attempting to dump concrete out of forney air pressure when, he felt pain in his lower back. Supervisor: bobby l. Norris jr
## 3917                                                                                                        1/6/2005 10:38 am (fblackmo) employee states that her table is to long therefore, she is experiencing pain in her right shoulder. Supervisor: michele bailey
## 3918                                                                                                             1/6/2005 10:52 am (fblackmo) employee was helping remove dirt from around culvert when, he came into contact with poison ivy. Supervisor: j. Ronald lee
## 3919           1/6/2005 11:07 am (fblackmo) employee was placing traffic cones for lane closer on I-240. A tractor trailer truck struck a metal object on the roadway, causing object to be airborne and striking him on his right knee area. Supervisor: terry j. Davis
## 3920                                                                                                             1/6/2005 11:17 am (fblackmo) employee was stepping off of loader when, he fell to the ground because bottom step was missing. Supervisor: d. S. Edwards
## 3921         1/6/2009 04:39 pm (fblackmo) employee stepped out of flat bed truck (1215-6381-0206) missed step and fell to gravel ground. Employee hit back of head on gravel breaking skin, causing bleeding and pain in lower back. Employee also felt pain in neck and
## 3922                                                                                                                          1/6/2010 08:09 am (blgay) employee was walking across parking lot, when he slipped on ice and fell on his back. Supervisor: ronnie brigmon
## 3923         1/6/2010 12:20 pm (fblackmo) employee was attempting to load metal sign posts onto truck. They are stacked on top of each other for transport. While sliding a post onto the stack, the post grabbed the one underneath it (metal to metal) and stopped cau
## 3924         1/6/2011 03:43 pm (barnes) employee was working in the bucket of a bucket truck (aerial lift) performing emergency maintenance on a traffic signal. When he reached down to get a led to put in the signal head, he twisted the wrong way and pulled a musc
## 3925                                                                             1/7/2004 02:15 pm (fblackmo) employee had just sat down in a pickup truck after putting up signs for the centerline paint crew when, he experience chest pains. Supervisor: greg godwin
## 3926                                                                                                           1/7/2004 02:26 pm (fblackmo) employee states possible carbon monoxide poisoning after inhalation of pressure washing fumes. Supervisor: russell I. Ramsey
## 3927                                                                                              1/7/2004 02:37 pm (fblackmo) employee states while doing daily duties (filing and keying) she experienced pain in left elbow, wrist, and hand. Supervisor: tina varney
## 3928                                                                                                                            1/7/2004 11:53 am (fblackmo) employee was lifting in a bucket of concrete when, he felt pain in his right hand. Supervisor: j. W. Downer
## 3929                                                                                            1/7/2004 12:11 pm (fblackmo) employee was lifting air compressor up to place on pennel hook on truck when, he felt pain in his lower back area. Supervisor: p. M. Parker
## 3930              1/7/2004 12:21 pm (fblackmo) employee was helping load lumber when, the other employee drop his/her end to fast causing pain to employees right shoulder. Supervisor: tim k. Southard 11/6/2006 01:29 pm (fblackmo) claim closed. Clinched on 03/17/20
## 3931                                                                                            1/7/2004 12:30 pm (fblackmo) employee was putting a white top stake in silk fence when, a splinter punctured his little finger on left hand. Supervisor: larry cavenaugh
## 3932                                                                                           1/7/2004 12:40 pm (fblackmo) employee was pulling on boards of bridge deck when, he felt a sharp pain under his right arm and in his chest area. Supervisor: p. M. Parker
## 3933                                                                                                                        1/7/2004 12:49 pm (fblackmo) employee jumped off trailer and landed on trailer jack causing lacerations to left leg. Supervisor: j. R. Price
## 3934                                                                                              1/7/2005 03:00 pm (fblackmo) employee was de-icing vehicle and conducting daily check when, he slipped and fell on his right arm/shoulder. Supervisor: dewey f. Pierce
## 3935                                                                                                         1/7/2005 03:10 pm (fblackmo) employee was starting to use air compressor when, glass bottom boast sprayed motor oil in his face. Supervisor: stephen dillon
## 3936                                                                      1/7/2008 11:43 am (blgay) employee was bending over to pick up some money she had dropped, when her chair flipped out from under her. Employee fell on top of her back. Supervisor: gail smith
## 3937        1/7/2009 09:56 am (blgay) employee was walking in parking lot and fell. Employee put both hands out to catch fall, felt pain in left hand with four cuts. Pain continued along left side of hand from little finger toward wrist. Supervisor: b. J. Berryhil
## 3938                                                                                                    1/7/2009 10:13 am (blgay) employee was picking up a large cardboard box on us 74-a, when he stepped in a hole, injuring his right knee. Supervisor: r. D. Powell
## 3939                         1/7/2009 10:23 am (blgay) employee was driving 1/2" steel rod into ground with a 15lb collar hammer. Collar cleared rod and left hand was impaled on down strike by rod through thumb and index finger on left hand. Supervisor: jody kuhne
## 3940                                                  1/7/2009 10:37 am (blgay) employee was sawing up a fallen tree out of the road. The tree was covered in kudzu and didn't see the poison ivy, which got on employees arms and stomach. Supervisor: wendell chastain
## 3941         1/7/2009 10:45 am (blgay) employee was holding a driving rod for a co-worker because of the short space, trying to get a bolt out of a cap under the bridge. While holding the rod, the co-worker was hitting the driving rod, when the hammer came off and
## 3942                                                                                                                                             1/7/2009 10:55 am (blgay) employee was splitting wood and felt a sharp pain in lower back. Supervisor: l. Michael burke
## 3943         1/7/2011 05:20 pm (barnes) employee was called to work at ashe maintenance. He was to operate a salt truck. As he was walking out into the lot, he slipped on snow and ice. Employee's right leg bent back and out to the side and he injured his right kne
## 3944                                                                                                     1/8/2004 02:42 pm (fblackmo) employee was installing belts on mower when, his finger was caught between the frame and the tension belt. Supervisor: c. R. Tyson
## 3945                                                                                                                                                                                 1/8/2004 02:51 pm (fblackmo) repetitive motion. Supervisor is not stated on form 18
## 3946                                                                                                                              1/8/2007 04:11 pm (fblackmo) employee was trying to set up ladder when, he felt a sharp pain in his back. Supervisor: jeremy b. Creech
## 3947                          1/8/2009 03:22 pm (fblackmo) employee had just finished patching a pothole on state road 1666 with cold patch. While he was driving back to the office, his hands began to feel numb and later began to ache. Supervisor: william randolph
## 3948                                                                                               1/8/2010 05:01 pm (fblackmo) employee was walking across parking lot (coming in to work) when, she stepped on a rock twisting her left knee. Supervisor: jeanine cook
## 3949                                                                       1/9/2006 03:16 pm (blgay) employee was stopped at a red light, when he was rear ended by a pov. Supervisor: tasha n. Johnson 4/16/2007 11:14 am (lvaughan) per #19 - cervical & lumbar strain
## 3950          1/9/2006 08:26 am (blgay) employee was stepping down from spreader and got his left foot hung on bottom step. The in-body spreader had a ladder equipped, but due to height of truck the bottom of ladder is 3 1/2 feet to the ground. Supervisor: russell
## 3951                                                                                             1/9/2006 11:29 am (blgay) employee was changing the cutting edge on the loader, when bolt slipped out of blade and cut his left middle finger. Supervisor: james conner
## 3952                                                                                               1/9/2007 02:35 pm (fblackmo) employee was climbing down a ladder in the radio room when, he stepped on the floor his right knee gave away. Supervisor: b. Steven sisk
## 3953                                                                                                                            1/9/2007 02:44 pm (fblackmo) employee was loading marine batteries when, he felt pain in his right elbow. Supervisor: donald l. Ferguson
## 3954                                                                                                   1/9/2007 02:58 pm (fblackmo) employee was pulling and handling brush that had poison ivy on it caused an allergic reaction. Supervisor: b. Will/gregory mccracken
## 3955                                                                                                     1/9/2007 03:18 pm (fblackmo) employee was taking roll up signs out of tube rack to put signs out when, she felt pain in left forearm/elbow. Supervisor: m. Tapp
## 3956              1/9/2007 03:30 pm (fblackmo) employee was called out to clean up tree that was blocking one lane of traffic. Employee was pulling tree limb when, limb broke, employee fell back on pavement causing injury to her lower back. Supervisor: david capps
## 3957                                                                                                                 1/9/2007 03:47 pm (fblackmo) employee was cleaning dirt from trench with a shovel when, he felt pain in his left shoulder. Supervisor: clyde mauney
## 3958                                                                                                                                   1/9/2007 04:16 pm (fblackmo) employee was loading straw in back of truck when, he felt pain in his back. Supervisor: david mccray
## 3959                                                                                                               1/9/2007 05:07 pm (fblackmo) employee is deceased. Lung cancer death claim due to asbestos exposure. Keyed from form 18b. Supervisor: ronald j. Terry
## 3960                                                                                                                    1/9/2007 11:18 am (fblackmo) employee re-aggravated his back sprain from a previous injury while operating a chain saw. Supervisor: edwin austin
## 3961                                                                     1/9/2007 11:29 am (fblackmo) employee was crossing intersection when, he struck on coming private vehicle. Employee experienced pain in his shoulder and neck area. Supervisor: mark turlington
## 3962                                                                                                                                                      1/9/2007 11:42 am (fblackmo) employee cut left index finger while closing cabinet door. Supervisor: h. B. Rash
## 3963         1/9/2007 11:58 am (fblackmo) employee was holding a gate in position while the backhoe operator was filling around the gate post. Employee was standing on the opposite side of the gate from the backhoe and 8' away from back bucket. Backhoe rear bucket
## 3964                                                                                                              1/9/2007 12:09 pm (fblackmo) employee was climbing down from top of load on lowboy when, he felt pain in his left shoulder. Supervisor: russell ramsey
## 3965                                                                                                                      1/9/2007 12:18 pm (fblackmo) employee was working under trailer when, debri fell behind safety glasses into right eye. Supervisor: danny lewis
## 3966                                                                        1/9/2007 12:31 pm (fblackmo) employee was leaning over the side of a truck bed to repair an air compressor that was in the back when, he felt pain in his lower back. Supervisor: d. W. Ashe
## 3967                       1/9/2007 12:40 pm (fblackmo) employee was picking up a piece of brush that was being thrown down from a bank and at the same time another piece of brush fell down the bank and struck employee on the right hand. Supervisor: j. Leatherwood
## 3968                                                                                               1/9/2007 12:49 pm (fblackmo) employee was helping an inmate load asphalt chunks into a backhoe bucket when, he felt pain in his left shoulder. Supervisor: ken pruett
## 3969                                                      1/9/2008 05:08 pm (fblackmo) employee was securing his load when he noticed a vine hanging over his side board, employee reached up and pulled it down causing a rash on his left arm. Supervisor: j. M. Ellis
## 3970                1/9/2008 05:19 pm (fblackmo) employee were putting a salt spreader on a tandem dump truck. Mr. Vick was unbinding the binder for the salt spreader using a pipe for leverage when the pipe recoiled and hit him in the mouth. Supervisor: terry shaw
## 3971                                                                                                                                                  1/9/2009 01:56 pm (fblackmo) employee was operating a blower when sand blew into his eye. Supervisor: archie smith
## 3972          1/9/2009 02:10 pm (fblackmo) employee was cutting and removing debris from us 64 in gore area. While pulling a limb back into the woods, it hung up, then broke loose, twisted, and hit his side of his face (left). A small piece of the limb entered his
## 3973                                                                                                                                                          1/9/2009 03:35 pm (fblackmo) employee twisted right knee when getting out of truck. Supervisor: t. W. Kirk
## 3974                                                                                                                     10 days post vee vaccination, EE suffered acute vee-like symptoms. Headache, fever, joint pain, chills, sore throat, vomiting--recurrin symtoms
## 3975                                                                                                                                               10/01/1999 03:01 pm Mr. Hepler injured his lower back while digging a hole with a pick axe. Supervisor: j. D. Bradner
## 3976               10/01/1999 03:09 pm Mr. Hamdan complained of injuries to his right arm near the shoulder joint on September 27, 1999. He stated he has been experiencing this pain since October 4, 1999. Supervisor: jesse w. Gilstrap. Note: first date of doctors'
## 3977                                                                                                                         10/01/1999 03:27 pm employee was driving on us 701 in columbus county, when a wasp stung him on his left hand. Supervisor: jeffrey robinson
## 3978           10/01/1999 03:34 pm Mr. Daughtrey sprained his neck and hurt his left arm on September 16, 1999. He was traveling north on us 13, when a mud slide came down in front of his vehicle. Mr. Daughtrey hit the brakes, but still ran through the mud and the
## 3979                                                      10/01/1999 03:44 pm Mr. Vann was working on a radio, when he tried to remove microphone from the clip holder. The microphone came loose and hit him in the mouth breaking his tooth. Supervisor: m. B. Mizelle
## 3980                                                                 10/01/1999 03:59 pm employee was standing on the bumper of crew cab, when his foot slipped causing him to slide off the bumper. He bruised ribs and contusion on his lung. Supervisor: n. S. Gibson
## 3981                                                                                                                                   10/01/1999 04:29 pm employee was getting out of truck, when he slipped off step injuring his left knee. Supervisor: d. E. Francis
## 3982                                                                                                       10/01/2003 02:04 pm (fblackmo) employee was cutting a limb with a chainsaw when, the limb flew around striking him on his left knee. Supervisor: archie smith
## 3983                                                                                                                         10/01/2003 02:14 pm (fblackmo) employee was lifting a bale of straw when, he felt pain in his lower back area. Supervisor: terry van leazer
## 3984                                                                                                  10/01/2003 11:42 am (fblackmo) employee states while bending over to pick up files from file cabinet she, felt pain in her lower back. Supervisor: loretta johnson
## 3985                                                                                  10/01/2003 11:54 am (fblackmo) employee states while pulling out from a dollar general he, failed to see a private vehicle and drove into his/her path. Supervisor: keith anderson
## 3986                                                                                           10/01/2003 12:07 pm (fblackmo) employee was driving a medium dump truck that over turned when, the injury occurred to his right shoulder. Supervisor: lindsey o. Ethridge
## 3987                                                  10/01/2003 12:20 pm (fblackmo) employee states while riding in truck limbs from a tree fell on cab. Employee bent over quickly to avoid limbs when, he felt pain in his lower back area. Supervisor: w. R. Loyd jr
## 3988                                                                                                                     10/02/2000 02:18 pm employee was operating forklift moving heavy items; when he mashed left index and middle fingers. Supervisor: m. S. Venable
## 3989                                                                        10/02/2000 02:26 pm employee was driving to the quarry on 9/14; when sun visor fell down striking him in the mouth knocking out (two top front teeth implants). Supervisor: j. W. Weatherman
## 3990                                        10/02/2000 02:39 pm employee was clearing vegetation underneath bridge #143; when he had an allergic reaction causing both of his eyes to burn, swell, and water. Reaction cause to dust or pollen. Supervisor: tim southard
## 3991                                                                                                                              10/02/2000 02:47 pm employee was bending over to look at cable on the floor; when he strained his lower back. Supervisor: j. Brad wall
## 3992                                                                     10/02/2000 02:54 pm employee pulled muscle in her lower back; when the bottom fell out of her desk drawer. Employee was trying to open the drawer at time of incident. Supervisor: t. H. Swayne
## 3993                                                                                                     10/02/2000 03:01 pm employee was sharpening chainsaw; when the file slipped off the chain causing a laceration to right index finger. Supervisor: t. L. Puckett
## 3994                                         10/02/2000 03:08 pm employee was hauling a water tank in a dump truck; when the load shifted resulting the truck to rollover. Mr. White has contusions to head, left hip and his left shoulder. Supervisor: j. B. Abernathy
## 3995                                                                                                10/02/2000 03:14 pm employee was loading metal pipes on back of a truck on 9/21/00; when the pipe fell on/struck his right hand and thumb. Supervisor: m. S. Venable
## 3996                                                             10/02/2000 03:19 pm employee was trying to open a window; when she pushed her right hand through the glass. She cut the right side of her hand and her right little finger. Supervisor: barbara lotharp
## 3997             10/02/2000 03:35 pm employee was pushing a wheel barrow full of concrete; when he felt a burning sensation in his lower right side of abdomen. Supervisor: c. D. Moorefield note: this claim sent/received in our office on Sept. 19, 2000 and remained
## 3998                            10/02/2000 03:49 pm employee was trying to locate right of way monuments in woods/project site. He stepped on unlevel ground causing him to twist his right ankle and fall. He also injured his lower back. Supervisor: s. E. Cruthfield
## 3999                                                                                                                 10/02/2000 04:06 pm employee was walking to throw away trash; when she tripped on torn carpet and sprain her left ankle. Supervisor: david chadwick
## 4000                                                                                                     10/02/2001 08:45 am (fblackmo) employee was moving desk on cart. An object from the desk fell onto employees foot. Supervisor: pat mitchell (acting supervisor)
## 4001          10/02/2001 09:05 am (fblackmo) employee was helping danny stevens in the equipment department to remove grader chains from the chain rack on the back of the grader so the rack could be repaired. Employee picked up the end of one chain to try and help
## 4002                                                                                                                                                        10/02/2001 09:34 am (fblackmo) employee came in from lunch and slipped on wet floor. Supervisor: linda hyder
## 4003        10/02/2001 09:50 am (fblackmo) employee was cutting up trees that had already been layed down by the hydraulic excavator on state road 1401. Employee asked the excavator operator ( w. J. Mcmillan) to pull one of the trees out of the limb pile so he cou
## 4004                                                                                                      10/02/2001 10:09 am (fblackmo) employee was coming in from road test when he slipped in water on the floor causing him twist his knee. Supervisor: tola bailey
## 4005                                                                                     10/02/2001 10:22 am (fblackmo) employee was driving nails in forms when he went to drive the nail with hammer, the nail flew up and hit him in the eye. Supervisor: a. L. Clark
## 4006                                                                                                 10/02/2001 10:42 am (fblackmo) employee was standing in ditch lining up pipe for driveway, twisted and felt pain in upper part of back. Supervisor: sarah g. Foster
## 4007                                                                                10/02/2001 11:09 am (fblackmo) employee was stepping into tool truck to get safety lens when he started to step down, slip causing him to fall to ground. Supervisor: h. M. Thompson
## 4008                                                                                                                 10/03/2001 02:40 pm (fblackmo) employee was backing up, looking toward back, another employee backed into his vehicle. Supervisor: henry sturdivant
## 4009                                      10/03/2001 11:53 am (fblackmo) employee bent down to pick up a piece of broken asphalt and strained his lower back. Employee worked for several days, started having bad back pains over the weekend. Supervisor: c. W. Phelps
## 4010                                                                                                                    10/03/2001 12:10 pm (fblackmo) employee was sitting on a concrete wall and lost his balance. Employee fell on his back. Supervisor: steve dillon
## 4011                                                                                              10/03/2001 12:20 pm (fblackmo) employee was getting in and out of basket on platform truck several times, causing his lower back to have pain. Supervisor: b. T. Coble
## 4012                                                                                                         10/03/2001 12:33 pm (fblackmo) employee was attempting to climb onto flatbed truck to load straw when he fell and hit his leg. Supervisor: richard l. Icard
## 4013                                                                                                    10/03/2001 12:47 pm (fblackmo) employee met another vehicle in a curve and mirrors hit each other. Broken glass cut employees left arm. Supervisor: e. W. Spivey
## 4014                                                                                                                                10/03/2002 11:59 am (fblackmo) employee was shoveling asphalt manually and felt a pull in his right upper arm. Supervisor: ke pruett
## 4015                                                                                                                                        10/03/2002 12:12 pm (fblackmo) employee was sawing logs when, he came into contact with poison ivy. Supervisor: jeff huffman
## 4016                                      10/04/1999 10:41 am employee was riding on dump truck entering the maintenance yard, when something came out of the air conditioning vent. This object caused his right eye to become irritated. Supervisor: mark e. Stafford.
## 4017             10/04/1999 10:56 am employee injured his left knee while climbing down off bucket truck. His hand and foot slipped causing him to fall about 5 to 5. 5 feet to the ground. He landed on his feet and fell back onto the guardrail. Supervisor: w. S. Ri
## 4018                                       10/04/1999 11:04 am employee injured his left knee when he tripped on a piece of wire, hitting his knee on the concrete. Mr. Cribb was walking from dozer to the pickup truck during time of injury. Supervisor: j. E. Spivey
## 4019          10/04/2002 07:33 am (fblackmo) employee reported on 08/12/2002 that she found two ticks on he head area, one behind her ear and one on her temple. Employee reported that she was having symptoms from the bites and went to the doctor. Supervisor: r. G.
## 4020                                                                          10/04/2002 07:51 am (fblackmo) employee was assisting in the removal of a 24'' concrete pipe form truck bed, a crowbar fell striking employee on his right foot. Supervisor: j. K. Murdock
## 4021                                                                                                                  10/04/2002 08:19 am (fblackmo) employee attempted to jump across ditch and upon landing he felt pain in his left ankle. Supervisor: o. T. Anderson
## 4022                                                                                                10/04/2002 08:32 am (fblackmo) employee was removing weight scale from the trunk of his patrol car, when he felt pain in his right arm. Supervisor: ssgt. D. Quigley
## 4023                                                                     10/04/2002 08:47 am (fblackmo) employee stated that while taking measurements for a commercial driveway on nc 211, she was bitten by a red bug on her abdomen area. Supervisor: iris h. Mccombs
## 4024                                                                                                                          10/04/2002 09:03 am (fblackmo) employee was exiting building when he missed a step, causing pain to his left ankle. Supervisor; t. L. Gray
## 4025                                                                                                            10/04/2002 09:22 am (fblackmo) employee stated she is experiencing tingling and numbness in her left hand. Repetitive motion. Supervisor: richard howard
## 4026                                                                                                                       10/04/2002 10:58 am (fblackmo) employee was checking for bottom of pipe when, he cut his index finger on left hand. Supervisor: james spender
## 4027                                                                                                       10/05/2000 02:07 pm employee was removing paint strainer from machine; when the wrench slipped pinching off his right index finger. Supervisor: w. S. Richard
## 4028                                                                                                                 10/05/2000 02:25 pm employee was installing nuts and bolts; when he bumped/bruised his right elbow on the end of guardrail. Supervisor: s. R. Davis
## 4029                                                                                         10/05/2000 02:32 pm employee came in contact with poison ivy while working in a ditch on 8/8/00. He has contact rash on both ankles and both legs. Supervisor: l. W. Currin
## 4030             10/05/2000 02:43 pm employee was standing on the left side of brush chipper when limb struck him in the face. The limb was being feed through the chipper at time of incident. Mr. Cooper suffered a broken nose and lacerations to his face. Superviso
## 4031                10/05/2000 02:53 pm employee was running to make a connecting flight at atlanta airport on 7/30/2000. He was carrying his luggage and wearing leather sole shoes when he tripped and fell on concrete injuring both knees. Supervisor: steven hulsey
## 4032                                              10/05/2000 03:37 pm employee came in contact with poison ivy plants while cutting trees on sr 1910 in burke county. She has contact rash on neck and all over body. Supervisor: r. D. Peeler *show all bills to joyce*
## 4033           10/05/2001 02:26 pm (fblackmo) employee was putting 48 x 48 signs in proper bin, had left hand on the backside of the signs while pushing with right hand. Employee did not move his left hand out of the way fast enough. Employees little finger on lef
## 4034           10/06/1999 09:17 am employee injured lower back while working with a power saw. He pulled the cord to crank the saw, a few minutes later he got sick and thought he had kidney stones. He went to the doctor, and at that time the doctor told him it was
## 4035                                                    10/06/1999 09:38 am employee was inspecting a construction project when he found a tick around his waist/right front side. He noticed a small red bump after he removed the tick. Supervisor: s. Stephen daniel.
## 4036                                                                                      10/06/1999 09:47 am employee came in contact with poison oak and has a rash on his face and arms. He was removing downed trees at time of incident. Supervisor: d. A. Hensley.
## 4037                                                             10/06/1999 09:55 am employee suffered a contusion to his left foot, while cutting trees with a chain saw. The tree gave way trapping his foot between the ground and the tree. Supervisor: nate simmons
## 4038                                   10/06/1999 10:02 am Mr. Clemmer suffered injuries to his left leg below his knee while using a 4 pound sledge hammer. The hammer bounced off the back of dump truck causing a deep small cut on his leg. Supervisor: j. W. Stiles
## 4039                                                                                       10/06/1999 10:09 am employee was using a pry bar to dislodge mud in ather when the machine auger started up turning the bar striking him on his head. Supervisor: k. R. Davis
## 4040                                                                                                                                            10/06/1999 10:21 am employee was stepping onto mower, when she felt her right knee pop. Supervisor: sarah gardner foster
## 4041                                                                                                           10/06/1999 10:27 am employee was stung by a yellow jacket on his upper right arm on 9/20/99. Mr. Bucher is allergic to bee stings. Supervisor: g. D. Fine
## 4042                          10/06/2003 02:02 pm (fblackmo) employee was mounting cup dispenser in a new mobile office unit when, his hand slipped causing a cut to his right hand. Supervisor: g. R. Sproles 10/21/2003 12:16 pm (gwhite) 10/21/2003 12:16 pm (gwhite)
## 4043                                                                                                                 10/06/2003 02:16 pm (fblackmo) employee was lifting lid to catch basin when, he felt pain in his groin area. Supervisor: o. D. Sparks and gary neal
## 4044                                                                                             10/06/2003 02:27 pm (fblackmo) employee cut her pinkie finger on left hand on the tape dispenser while reaching for something off the printer. Supervisor: renee sutton
## 4045                                                                                                                                        10/06/2003 02:37 pm (fblackmo) employee stepped over a guardrail when, he twisted his right knee. Supervisor: t. A. Edgerton
## 4046                         10/06/2003 02:50 pm (fblackmo) employee was participating in an outdoor group activity as part of a management training seminar when, he landed on the log his left foot slipped causing the injury to his ankle. Supervisor: j. R. Hopkins
## 4047           10/06/2003 03:00 pm (fblackmo) employee was moving a large tire to the door to use the forklift to bring it into the garage. The tire started to fall and employee reached out to catch it causing the injury to his left shoulder and elbow. Supervisor:
## 4048                                                                                                                                      10/06/2003 03:11 pm (fblackmo) employee went to the woods to use bathroom when, he was stung by a bee. Supervisor: a. O. Epley
## 4049                                                                                                            10/06/2003 03:22 pm (fblackmo) employee was operating a chain/pole saw on right of way when, he felt pain in his upper back. Supervisor: d. W. Parkinson
## 4050                                                                                                                                           10/06/2003 03:47 pm (fblackmo) employee states while cutting plywood a splint flew into his eye. Supervisor: dennis baker
## 4051                                                                    10/06/2003 11:34 am (fblackmo) employee was driving a state pick up when, a private vehicle pulled out in front of him causing truck to run off the road hitting a tree. Supervisor: m. B. Smith
## 4052                                                                                10/06/2003 11:59 am (fblackmo) employee was cutting limbs off the back of a truck when, he lost his footing falling on his left arm causing the injury. Supervisor: p. E. Williamson
## 4053                                                                                                                                       10/06/2003 12:09 pm (fblackmo) employee was lifting pain drums when, he right index finger was mashed. Supervisor; w. R. Wall
## 4054                                                                                                       10/06/2003 12:18 pm (fblackmo) employee was going to get sand off the back of truck when, he stepped in a hole turning his left ankle. Supervisor: f. C. Tapp
## 4055                                                                                                                              10/06/2003 12:48 pm (fblackmo) employee was clearing survey line when, he came into contact with poison ivy. Supervisor; t. K. Wheeler
## 4056                                                                                                                           10/06/2003 12:56 pm (fblackmo) employee was working in tall grass when, he found a tick on his left upper thigh. Supervisor: t. H. Swayne
## 4057                                                                 10/07/1999 01:45 pm employee stated he sprained his back when loading straw bales onto a truck. Employee did not notify supervisor until next day. Did not go to doctor until 2nd day after injury.
## 4058                                                                                                                                                       10/07/1999 01:57 pm employee was chaining down backhoe when particles of dust fell off backhoe into left eye.
## 4059           10/07/1999 09:00 am Mr. Wright along with a fellow employee were lifting a plastic table into bed of a dump truck, when Mr. Wright's left leg gave out. He fell backwards over the guardrail landing face down on his right side. Mr. Wright tried to get
## 4060                                                                10/07/1999 09:07 am Mr. Olive injured his left forearm, when he tripped on uneven pavement in his office parking lot. He fell against the curb and landed on his forearm. Supervisor: michael jarman
## 4061                                                     10/07/1999 09:16 am employee was getting up brush and debris from hurricane floyd when some kind of unknown insect bit him near his right eye and on his left and right cheeks. Supervisor: thomas j. Burchell.
## 4062           10/07/1999 09:29 am employee was standing outside welcome center, when she suddenly felt dizzy and fainted. She struck her face on the walk way when she fell; bruising her under the left eye. The cause of the incident was... Her white blood count wa
## 4063                                                                                            10/07/1999 09:37 am Mr. Hemric was lifting a eight foot light fixture onto a basket with a fork lift, when it slipped cutting his left thumb. Supervisor: mark y. Walker
## 4064                             10/07/1999 09:47 am Mr. Peoples was unloading pipes off a trailer, when the pipe hook slipped and swung the pipe around striking him. The pipe pushed him into the trailer causing a cut to his left elbow. Supervisor: r. A. Ellington
## 4065           10/07/1999 09:56 am Mr. Deese was removing scrapes from day lilies, when he touched a guy wire. He was shocked and transported by ambulance to mission st. Joseph's emergency room. His left hand and groin areas were affected by electrical shock. Supe
## 4066                                                                      10/07/1999 10:15 am Mr. White was pulling himself into dump truck by grabbing the steering wheel with his right hand, when he felt something pull in his right wrist. Supervisor: c. M. Walker
## 4067                                                                                 10/07/1999 10:22 am Mr. Gray tripped and fell from loading ramp while loading oil on 9/26/99. He cut his nose, hands and scratched the lenses in his glasses. Supervisor: d. Foster
## 4068                                                                                                                   10/07/2003 07:34 am (fblackmo) employee was exiting truck when, he stepped into a hole causing the injury to his left knee. Supervisor: ray smith
## 4069                                                                                                                                   10/07/2003 08:03 am (fblackmo) employee states while inspecting bridge he came into contact with poison ivy. Supervisor: tim earp
## 4070                                                                                                10/07/2003 08:41 am (fblackmo) employee states he fell while participating in a unit activity which caused the injury to his left shoulder. Supervisor: dave vanpelt
## 4071                                                                                                     10/07/2003 08:55 am (fblackmo) employee states while pushing on a tree to remove a saw he, felt his left shoulder pop out of place. Supervisor; larry lovington
## 4072                                                                                  10/07/2003 09:07 am (fblackmo) employee was walking back to truck after cutting trees when, he stepped on a branch causing the injury to his right ankle. Supervisor; ben williams
## 4073                                                                                                                   10/07/2003 09:18 am (fblackmo) employee was cutting a piece of line when, the knife slipped causing a cut on his left leg. Supervisor: r. E. Hill
## 4074                                                                       10/07/2003 10:25 am (fblackmo) employee was climbing out of bed and stepped on a wet tire, slipped and fell on truck, causing a bruise on his chest and abdomen area. Supervisor: t. M. Smith
## 4075                                                                                                                       10/07/2003 10:37 am (fblackmo) employee was cutting limbs on right of way when, he came into contact with poison ivy. Supervisor; benny sloan
## 4076                                                              10/07/2003 11:30 am (fblackmo) employee was conducting a road test when, the drivers car was hit in the rear by another private vehicle causing the injury to her back/neck area. Supervisor; tex kidd
## 4077                                10/08/2001 02:01 pm (fblackmo) employee was putting air hammer drill back into building. When employee went to sit it down, the pinch point between the bit and drill mashed employees right ring finger. Supervisor: h. M. Thompson
## 4078          10/08/2001 02:19 pm (fblackmo) employee was standing near the edge of pavement facing the roadway ditch talking to a property owner about the drop off at the edge of the pavement. A motor grader was operating on the opposite side of the roadway almos
## 4079                                                    10/08/2001 02:37 pm (fblackmo) employee states that while adjusting clutch on dump truck he felt a muscle pull in the middle of his back. While giving road test the pain became severe. Supervisor: w. E. Evans
## 4080                                                                                                   10/08/2001 02:52 pm (fblackmo) employee had moved brush from a tree that had been sowed up. Employee began to itch and a rash broke out. Supervisor: r. D. Powell
## 4081                                                                                                            10/08/2001 03:04 pm (fblackmo) employee was waiting for equipment to move out of the way when a bee stung him on his right arm. Supervisor: steve dillon
## 4082                                                                                                                                                                              10/08/2003 08:19 am (gwhite) 05/12/2004 02:12 pm (gwhite) 05/12/2004 02:12 pm (gwhite)
## 4083          10/09/2000 03:51 pm employee was hanging scaffold when another employee jumped down onto the scaffold. The scaffold broke loose from the crane causing Mr. Gregory to fall into the water injuring his left shoulder, left elbow, and abdomen. Supervisor:
## 4084                                                                                                                                     10/09/2000 04:04 pm employee was bitten by a tick on 8/1/00 on his chest area while working in rolesville. Supervisor: hal bain
## 4085                                                                        10/09/2000 04:10 pm employee tripped and fell as he stepped into a hole while getting cleaning supplies. He twisted/sprained his right ankle and bruised his ribs. Supervisor: mike presnell
## 4086           10/09/2000 04:17 pm employee was traveling east on sr 1112 when he was struck on his right front side by a motor cycle. Mr. Wilkins pulled out in front of motor cycle throwing the cycle driver onto the roadway. There are no physical injuries, but em
## 4087           10/09/2001 01:03 pm (fblackmo) employee passed out during a safety meeting prior to starting work. Medical staff from raleigh ems came to the work site and checked the employee and found no obvious problems. He was taken to concentra and then to his
## 4088                                                                                           10/09/2003 02:25 pm (fblackmo) employee states while taking down zone signs he, stepped into a hole causing the injury to his left hip area. Supervisor; larry j. Jackson
## 4089                                                                10/09/2003 02:36 pm (fblackmo) employee was sitting in back of state vehicle when it was hit in the rear by a private vehicle. Employee experience pain in his back area. Supervisor: t. J. Burchell
## 4090                                                                                                                                             10/09/2003 02:51 pm (fblackmo) employee lost her balance and fell on basement hallway floor. Supervisor: edith mcdaniel
## 4091                                                                                                                                             10/09/2003 03:19 pm (fblackmo) employee slipped in hallway upon exiting kim blasings office. Supervisor: richard howard
## 4092                                                                                                                                  10/09/2003 03:34 pm (fblackmo) employee was lifting pump out of truck when, he felt pain in his lower back. Supervisor: m. J. Gray
## 4093                                       10/1/2008 01:17 pm (blgay) employee was cutting trees out of ditch line on nc 18 north. A limb brushed the front of lincoln co. Inmate bus, bounced back and struck employee on left side of rib cage. Supervisor: roger wray
## 4094                                                                                           10/1/2008 01:25 pm (blgay) employee stated he was driving a sign post with a 12lb sledge hammer, he felt something pop in his back, causing pain. Supervisor: eric schenz
## 4095         10/1/2008 01:34 pm (blgay) employee was helping crew clear r/w to take bank off. Using trax to push against tree so it would fall in road while employee was cutting tree. Tree split from stump up causing employee to jump off bank to keep from being hi
## 4096         10/1/2008 02:00 pm (blgay) employee was observing paving operations and taking up asphalt tickets. An employee working for the paving crew was getting out of the way of the asphalt trucks and backed into our employee with a pickup truck which tossed h
## 4097                                                                                10/1/2008 11:48 am (fblackmo) employee was walking out of wooded area when, tree branch struck him in his left eye. Did not have eye proctors/shields on. Supervisor: logan williams
## 4098                                                                                                                                 10/1/2008 12:08 pm (fblackmo) employee was stepping out of truck when, he strain his right knee. Supervisor: bn braswell / gl baker
## 4099                                                                                                            10/1/2008 12:22 pm (fblackmo) employee was cutting grass on a down hill slope, hit bump and felt sharp pain in left lower back. Supervisor: denny finner
## 4100         10/1/2009 03:17 pm (blgay) employee was conducting a road test. While the customer was waiting to make a left turn on county home road from hwy 87, the vehicle they were riding in was struck from behind by another vehicle. Employee has pain in neck an
## 4101                                                                                                        10/1/2009 03:31 pm (fblackmo) employee was moving a piece of concrete while inspecting bridge when, he felt pain in his groin area. Supervisor: w. S. Joyner
## 4102                                                                                           10/1/2009 03:34 pm (blgay) employee was spraying wooded areas to take out weeds and under growth. Yellow jacket stung employee on his right ear. Supervisor: r. A. Brower
## 4103                                                                                                                                                 10/1/2009 03:45 pm (fblackmo) employee was exiting bathroom when, door closed on his hand. Supervisor: k. Dale gray
## 4104          10/1/2009 03:47 pm (blgay) employee was unloading equipment and supplies to be used in the newland office. While taking the box from the rear of car, employee turned to close hatch and walked away. Employees foot slipped, causing a popping noise with
## 4105                                                                                                                                10/1/2009 12:25 pm (fblackmo) employee was walking down the road, turned and twisted right knee. Supervisor: e. Boyd tharrington, pe
## 4106                                                                                     10/1/2009 12:37 pm (fblackmo) employee was driving when, bee flew into the window and stung him on his right hand. Employee experienced chest pain. Supervisor: t. E. Davenport
## 4107                                                                                                           10/10/2000 04:35 pm employee was replacing cap on bridge in close quarters; when the cap rolled off and fell on his left forearm. Supervisor: a. W. Smith
## 4108                                                                                                                10/10/2000 04:41 pm employee was picking up trash in the median; when a passing truck blew debris in employees left eye. Supervisor: j. B. Abernathy
## 4109                                                                                                                           10/10/2000 04:49 pm employee was cutting limbs from trees with a chainsaw; when saw dust blew into his left eye. Supervisor: r. S. Minton
## 4110                                                                                                                                10/10/2000 04:58 pm employee was helping contractor move pipes when he felt intense pain in his lower back. Supervisor: c. R. Styles
## 4111                                                           10/10/2000 05:03 pm employee was clearing brush on various bridges in buncombe county when he came in contact with poison ivy plants. Employee has contact rash on both arms. Supervisor: wayne l. Miller
## 4112                                                                     10/10/2000 05:09 pm employee was working with patch crew on 4/14/00; when he had an allergic reaction while spraying asphalt. Mr. Turpin has a rash all over his body. Supervisor: r. E. Austin
## 4113           10/10/2001 02:54 pm (fblackmo) employee cut his right hand with a brush axe while clearing brush on project corridor. The cut required four stitches to close. Employee was attempting to move a limb with his left hand, the bush axe slipped and the bl
## 4114                                                                               10/10/2001 03:11 pm (fblackmo) employee was working under bridge when he felt a pull in his back. Employee had stiffness while returning to the bridge yard. Supervisor: c. N. Vaughn
## 4115                                                                                              10/10/2001 03:23 pm (fblackmo) employee was giving a road tests while getting in and out of the vehicle she felt a pull in her stomach area. Supervisor: vernon canady
## 4116                                                                              10/10/2001 04:19 pm (fblackmo) employee was getting off of the loader and stepped on last step when his foot slipped out and fell and turned his right ankle. Supervisor: m. H. Thomas
## 4117                                                                                             10/10/2001 04:35 pm (fblackmo) employee was cutting down a tree on a secondary road with a chain saw when he came in contact with poison ivy. Supervisor: terry j. Shaw
## 4118                      10/10/2001 05:12 pm (fblackmo) employee was lifting a chair off the m/v silver lake and putting into the state truck when he felt a twinge around the navel. Upon examination he noticed a protrusion on the navel. Supervisor; r. E. Hamilton
## 4119                                                                                                                          10/10/2002 02:27 pm (fblackmo) employee was rolling a rock out of the roadway when he felt a pian in his rib area. Supervisor: b. J. Vance
## 4120           10/10/2002 02:42 pm (fblackmo) employee states, he was hauling gravel to the work site on bald mtn. When, he met an oncoming car. Employee moved to the right side of the roadway the shoulder of the road broke off, causing the truck to turn over. Sup
## 4121                                                                                                                                                            10/10/2002 03:06 pm (fblackmo) employee fell out of fire truck after road test. Supervisor: marsh harris
## 4122                                                                                                                                   10/10/2002 09:53 am (fblackmo) employee was stepping off truck when he felt a pop in his right knee. Supervisor: richard dewhurst
## 4123                                                                                10/10/2002 10:34 am (fblackmo) employee stated she was flagging traffic on state road 1972 when she was from behind from the driver operating the machine. Supervisor: steve clayton
## 4124                                                                                                                   10/10/2002 10:58 am (fblackmo) employee was working with crew members on state road 1007 when he was bitten by fire ants. Supervisor: jerry keene
## 4125                                                                                                                  10/10/2002 11:25 am (fblackmo) employee states his left foot slipped while attempting to climb into the cab of the backhoe. Supervisor: t. F. Bray
## 4126                                                                                10/10/2002 12:05 pm (fblackmo) employee stepped on the vessel deck, skid plates caused his foot to shift to one side causing the injury to his right ankle. Supervisor: e. M. Farrow
## 4127                            10/10/2005 02:32 pm (blgay) employee was working under bridge #143 - wilson county cutting out decayed joist. When joist was cut out employee was cleaning up debris when he felt a sting in his right glove. Supervisor: elipidio guera
## 4128                                                                                                                      10/10/2005 02:44 pm (blgay) employee was bitten by an unknown insect or spider while performing surveying duties. Supervisor: c. E. Dumas, jr.
## 4129                                                                                                                                                  10/10/2005 02:55 pm (blgay) employee was picking up debris and felt pain in right thumb. Supervisor: b. R. Knowles
## 4130                           10/10/2005 03:05 pm (blgay) employee was putting lug nuts on wheel while mounting rim. Employee was using air wrench & socket. While tightening lug nut, socket slipped off nut pinching right thumb, cutting it. Supervisor: j. D. Lewis
## 4131                                           10/10/2005 03:20 pm (blgay) employee fell getting up out of a chair in his office. Employee caught himself with his left hand on the floor. Hand started swelling around lunch time. Supervisor: b. L. Norris, jr., p. E.
## 4132                                                                                                                                      10/10/2005 03:32 pm (blgay) employee was weed eating and came into contact with poisonous vegetation. Supervisor: m. P. Newman
## 4133                                                                                                                                                           10/10/2005 03:43 pm (blgay) employee was bush axing and got into poison ivy. Supervisor: lawrence n. Long
## 4134                                                                                                                                10/10/2007 02:43 pm (fblackmo) employee was keying when her center left finger locked up causing pain. Supervisor: stephanie benares
## 4135                                                                                                                              10/10/2008 03:22 pm (fblackmo) employee stated he was walking across metal floor and felt his left knee twist. Supervisor: a. W. Cooke
## 4136                                                                      10/10/2008 08:11 am (blgay) employee was stepping out of the crew cab truck onto the shoulder of us 220 bypass and fell. As he fell, he landed on his right shoulder. Supervisor: jimmy maness
## 4137                                                                                                                            10/10/2008 10:03 am (fblackmo) employee was flagging traffic when, wind gust blew sand into her left eye. Supervisor: d. T. Cottrell, sr
## 4138                               10/10/2008 10:15 am (fblackmo) employee was switching rescue boats between two ferries lupton and southport. During the movement of the equipment, his hands slipped causing injury to right center finger. Supervisor: adron g. Wade
## 4139                                                                                                                               10/10/2008 11:17 am (fblackmo) employee was stung by a hornet after getting out of pickup in parking lot. Supervisor: walter crumpler
## 4140                                                                                                              10/10/2008 11:29 am (fblackmo) employee was getting out of dump truck when, his foot slipped causing him to fall to the ground, and hit his left knee.
## 4141                                                                    10/11/1999 01:01 pm standing on top of the safe trying to reach box of rubber bands on top self. I stepped off the back lost balance and fell. Caught shelf with left hand pulled left shoulder.
## 4142                                                                                                            10/11/1999 01:39 pm employee was digging out asphalt with a pick ax when a piece of steel from the pick broke hitting and lodging in employees left arm.
## 4143                                                                                                                                                                        10/11/1999 01:49 pm employee picked up tick in field on August 31, fount it embedded Sept. 1
## 4144          10/11/1999 01:58 pm employee was operating a mowing machine. When he realized he had a poisonous rash he treated it at home and a fellow employee gave him some medicine he had gotten from the doctor. The rash continued to get worse and medical treatm
## 4145            10/11/1999 09:26 am while working in dare county following hurricane dennis, employee became ill. On 09/03/1999 had headache and stiffness in neck. On 09/05/1999 rash developed on ankles. On 09/05/1999 rash spread over most of body and he developed
## 4146           10/11/1999 09:43 am during debris removal operation employee walked behind chainsaw operator without making his presence known to operator. Employee reached for a limb while in the operators blind side. Saw came in contact with employee's right thum
## 4147         10/11/1999 10:54 am employee states that he flagging traffic on bunce rd. (sr1411) when a lady in small refused to move into other lane until she got 15-20 feet away from employee. Employee states that he dove out of the way, twisting and spraining hi
## 4148                                                 10/11/1999 11:16 am employee states that he was pulling cord on chainsaw to start the machine when the cord jerked back on him. Employee states that he noticed his right wrist started hurting a short time later.
## 4149                                                                                                  10/11/1999 12:34 pm employee was mounting dump truck step and his foot slipped. The employee's right shin hit the step and was scraped approximately 4' in length.
## 4150                                                                                                                                          10/11/2000 04:01 pm employee was removing bolts when the wrench slipped bruising his right wrist. Supervisor: ken anderson
## 4151                                                           10/11/2000 04:09 pm employee along with a co worker was carrying/holding plate steel out of a metal bin; when the plate slid out causing it to fall on Mr. Jarman's left foot. Supervisor: kenneth morris
## 4152                                                                                    10/11/2000 04:14 pm employee was cutting trees when he came in contact with poison ivy plants. He has contact rash on both arms and on his right hand. Supervisor: t. L. Puckett
## 4153                                                           10/11/2000 04:19 pm employee was removing alternator from motor grader when the battery wire caused an electrical shortage. This caused a second degree burn to his left hand. Supervisor: e. M. Presnell
## 4154                                                                                      10/11/2000 04:29 pm employee was feeding tree limbs into chipper; when the chipper jerked causing the limb to strike and cut Mr. Hall's right hand. Supervisor: d. M. Pressley
## 4155                                                                                                          10/11/2000 04:35 pm employee was pulling brush and feeding it into the chipper; when he felt pain/pop in his left mid-back area. Supervisor: t. L. Puckett
## 4156                10/11/2000 04:45 pm employee was dismounting mower to pick up trash on 9/20/00. When he attempted to get back onto mower he strained muscles in his right groin area. Supervisor: j. K, rhyne note: form 19 sent to our office and stampted 10/11/00
## 4157                                                   10/11/2000 05:02 pm employee was performing a unit weight concrete test in class on 10/3/00. He lifted concrete bucket (proper lifting technique) when he felt pain in his right hip. Supervisor: kelly a. Linton
## 4158                                                                                                            10/11/2000 11:07 am employee states she has pain in her right forearm and wrist due to repetitive motion from keying on the job. Supervisor: addie avery
## 4159           10/11/2001 03:42 pm (fblackmo) employee was giving a road test when, he informed the customer to stop because of backing crooked. The customer stepped on the accelerator instead of the brake causing, the vehicle to go into a ditch. Supervisor: dougl
## 4160                                                                                         10/11/2001 04:12 pm (fblackmo) employee was reaching for a 10ft. Post when, he turned employee felt a pop in his back. Supervisor: gene johnson 11/23/2004 08:44 am (mpark)
## 4161                                        10/11/2001 04:26 pm (fblackmo) employee was cutting the top of a wooden plate off the dyno building with a reciprocating saw. The saw jammed and kicked back pinning his left hand between the saw and the 2x8 wooden plate.
## 4162           10/11/2001 04:39 pm (fblackmo) employee was hauling stone on secondary road construction project. Employee got out of truck and stepped onto form. Employee did not see rock in dirt and stepped on it causing him to hurt his foot. Supervisor: archie c
## 4163          10/11/2001 04:55 pm (fblackmo) employee, while crossing over a guardrail the wooden piece between the rail and the post that he was standing on moved causing him to loose footing and he fell striking his knee on the guardrail. Supervisor: david playe
## 4164                                                                                                                                                        10/11/2001 05:19 pm (fblackmo) repetitive motion with 3lb. Hammer, driving rivets. Supervisor: james hoffman
## 4165                                                                                                                                                  10/11/2001 05:32 pm (fblackmo) employee was jumping into a trench and hurt his right foot. Supervisor: david pharr
## 4166                                                                                                                       10/11/2001 08:48 am (fblackmo) employee was crossing ditch to go up incline and pulled muscle in back of right leg. Supervisor: j. D. Shelton
## 4167          10/11/2001 09:05 am (fblackmo) employee was cutting vines when chainsaw chain grabbed protective chaps, twisting them around his left leg, exposing the shin area. The chain bounced down his shin causing 5 - 6 small lacerations that required 9 stitche
## 4168                                                                                                                           10/11/2005 02:03 pm (blgay) employee was walking to fast and was not using her cane when she tripped and fell. Supervisor: richard howard
## 4169          10/11/2005 02:22 pm (blgay) employee was pumping excess tack back into storage tank. Employee removed hose from tank when he thought truck was empty. Valve on truck was closed causing pressure to build up. Hose blew off tank and tack sprayed all over
## 4170         10/11/2005 02:47 pm (blgay) employee was driving in the outside lane of cumberland road. Second vehicle was traveling on the inside lane of cumberland road going in the same direction. Pv vehicle cut across the roadway in front of employee. Employee w
## 4171                                                                                                                        10/11/2005 08:41 am (blgay) employee had bent down to pull loose post out of ground and felt pain in lower back. Supervisor: donald griffith
## 4172                                                                                                     10/11/2005 08:50 am (blgay) employee was loading concrete debris by hand onto backhoe and hurt area between left leg and groin area. Supervisor: lawrence marks
## 4173                                                                                           10/11/2005 09:02 am (blgay) employee was helping to build a barricade, while lifting a sign he hit burr on the sign with his elbow, cutting it. Supervisor: r. D. Summers
## 4174                                                                                    10/11/2005 09:24 am (blgay) employee was using backhoe when he stepped off to use bathroom. Employee stepped on uneven shoulder turning his left ankle. Supervisor: chris taylor
## 4175                                                                                                       10/11/2005 09:37 am (blgay) employee was squatting down to start chainsaw when he stood up he felt a burning pain between his legs. Supervisor: rodney tanner
## 4176                                                                                                                    10/12/2004 08:58 am (fblackmo) employee states that he was bending to look at serial numbers when he injured his back. Supervisor: t. S. Collins
## 4177                                                                                                 10/12/2004 09:13 am (fblackmo) employee was helping move and load surplus items on trailer when, he felt pain in his groin area. Supervisor: william h. Williams jr
## 4178                                                                                         10/12/2004 09:26 am (fblackmo) employee mashed right ring finger between two rollers and a tarp while trying to free grass debris in bed of truck. Supervisor: chris mccall
## 4179                                                                                                                              10/12/2004 09:40 am (fblackmo) employee was walking around dump truck when, he hit his head on the tailgate. Supervisor: ralph murdock
## 4180                                                                                                                10/12/2004 10:37 am (fblackmo) employee was changing tire when, he felt pain in his lower back. Supervisor: james conner 11/30/2004 10:27 am (mpark)
## 4181                                                                                                    10/12/2004 10:48 am (fblackmo) employee states that a ball of concrete came out of shoot striking him on his right hand and wrist area. Supervisor: greg johnson
## 4182                                         10/12/2004 11:28 am (fblackmo) employee states she was crossing over lines in johnston county. The contractor put to much base course asphalt in hole causing her to get in fumes to measure depth. Supervisor: kevin bowen
## 4183                                                                                                    10/12/2004 11:43 am (fblackmo) employee was in service training when, he was stung by a bee under his left eye. Employee fainted. Supervisor: timothy s. Collins
## 4184                                                                                                                              10/12/2004 12:03 pm (fblackmo) employee states while keying in daily work she, felt pain in her right elbow. Supervisor: susan stewart
## 4185                                                                                     10/12/2004 12:32 pm (fblackmo) employee states he bent over to pick up a piece of angle iron when, he heard and felt something pop in his lower back. Supervisor: bobby thrower
## 4186                                                     10/12/2006 01:51 pm (fblackmo) employee fell while stepping in ditch causing injury to his left knee. Supervisor: thomas baldwin 10/12/2006 02:02 pm (fblackmo) can only pay bills up to 10/12/2006 *see corr.*
## 4187          10/12/2006 02:07 pm (fblackmo) employee was returning from post office to pick up office mail when, private vehicle failed to yield right of way hitting employees vehicle. Employee experienced shoulder, upper pelvic area pain, soreness in neck, back,
## 4188                                                                                                        10/12/2006 03:20 pm (fblackmo) employee was flagging traffic on state road 1112 when, he was bitten by an insect on left arm. Supervisor: gene e. Strickland
## 4189                                                                              10/12/2006 03:31 pm (fblackmo) employee was working with another employee positioning poles when, his right little finger was caught between mast and cradle. Supervisor: cindy austin
## 4190                                                                                                            10/12/2006 03:43 pm (fblackmo) employee was adjusting a clutch with pry bar when, the bar slipped striking employee on the lip. Supervisor: w. J. Krider
## 4191          10/12/2006 03:57 pm (fblackmo) employee was carrying a box of files and was reaching to open the back door to the office. The files in the box shifted and she reacted to the movement in an attempt to avoid dropping the box. She felt immediate pain in
## 4192                                                                                                                  10/12/2006 04:11 pm (fblackmo) employee was using a rod catcher to hold rods in casing and strained his abdomen area. Supervisor: dean argenbright
## 4193                                                                    10/12/2007 02:19 pm (fblackmo) employee was walking on curve when, she tripped in parking lot causing injury to her hands, arms, and knees. Supervisor: steven hulsey 12/01/2009 04:35 pm (slee)
## 4194         10/12/2007 02:24 pm (mdsloan) employee was changing the ink refill in a pen and noticed that the end of the refill was bent and so she attempted to straighten it out so it would go in the pen when the refill broke causing the end with the ink to jab I
## 4195                                                                                                                        10/12/2007 02:32 pm (fblackmo) employee was walking out of bathroom when, she fell on wet floor on her left knee. Supervisor: james g. Tyler
## 4196                                                  10/12/2007 02:43 pm (fblackmo) employee was helping employee remove vines off the new traffic service building when, he came into contact with poison ivy on his neck, chest, and arms. Supervisor: james g. Tyler
## 4197                                                                                                                  10/12/2007 02:53 pm (fblackmo) employee was working in pile driving operation when, a small object got into his left eye. Supervisor: james zepeda
## 4198                                 10/12/2007 09:44 am (mdsloan) employee was cutting branches off of a tree that was blocking road sight and on the tree limbs was poison oak. Employee was infected with poison on his back and right arm. Supervisor: eddie l cagle
## 4199         10/12/2007 11:20 am (mdsloan) employee was installing some pipe for a stone heater when he had to cut a piece of pipe the piece that he had cut slipped and he grabbed it and as he did he received a cut to his left thumb from a small burr that was loca
## 4200         10/12/2010 11:31 am (barnes) employee states that she was in the restroom, when another employee "Ms. Wojcik" who is a larger sized lady than she is, bumped into her shoulder. (shoulder bumped). States that this was the second encounter with this empl
## 4201          10/12/2010 12:12 pm (barnes) employee " w. C. Ritter" was filling in for skid steer operator. Mr. Ritter was instructed by Mr. Michael beane (tsi) how to operate the skid steer, prior to milling potholes. During milling operation, the milling attachm
## 4202                                                                                                                                   10/13/2000 03:02 pm james t. Perry was cleaning around a crosspipe when a minivan crossed the center line and struck the backhoe.
## 4203                         10/13/2000 09:40 am employee stepped on end of hand cart handle on 9/25/00 while working in equipment shop. The handle hit Mr. Vann in his face causing a laceration above his right eye. Supervisor: gerald e. Brabble 10/13/2000 10:19 am
## 4204                                                                                  10/13/2000 10:50 am employee was weedeating on sr 1406 when the blade struck the sign post. The tip of the blade broke and cut him on his lower right arm. Supervisor: a. W. Smith
## 4205                                                                                                   10/13/2000 11:27 am employee was cutting down metal pin for equipment using a metal lathe; when metal particles flew into his left eye. Supervisor: m. B. Mizelle
## 4206                       10/13/2004 02:40 pm (fblackmo) employee was putting a strap on pipe that he was going to haul. When pulling the strap to tighten, employee felt a pop in his lower, right abdomen. Supervisor: william t. Lowery jr *show all bills to joyce*
## 4207                                                                                                                               10/13/2004 03:53 pm (fblackmo) employee was changing a motorists flat tire when, he felt pain in his chest. Supervisor; melvin dorsey
## 4208                                                                                                10/13/2004 12:37 pm (fblackmo) employee was passed out in dump truck. Employee came through he felt a sharp pain in his right shoulder. Supervisor: r. J. Hollifield
## 4209                                                    10/13/2005 09:25 am (blgay) employee was blowing straw at the clay hill mitigation wetlands site. When another employee threw a bale of straw to him causing his wrist to bend backward. Supervisor: walter bell
## 4210                                                                                                                     10/13/2005 09:51 am (blgay) employee was weed eating around the maintenance yard and came into contact with poison ivy. Supervisor: retha leigh
## 4211                                                                                                                                                       10/13/2005 09:59 am (blgay) employee was welding and glare from welder burnt eyes. Supervisor: carlton jarman
## 4212                                                                                                          10/13/2005 10:17 am (blgay) employee was descending stairs while carrying a tube and misjudged the last step causing him to stumble. Supervisor: len white
## 4213                                                                                       10/13/2005 10:29 am (blgay) employee was getting out of truck and stepped on a rock causing him to twist his left ankle. Supervisor: donald king 10/28/2005 11:30 am (sshort)
## 4214         10/13/2006 08:58 am (fblackmo) employee stated that he was helping lower a steel beam that was on blocks. While the blocks were being removed the beam fell on its side. The beam hit employee on the leg and slid over his left knee, causing injury. Supe
## 4215        10/13/2006 09:12 am (fblackmo) employee was sitting as a member of the division safety sub committee in the division conference room. Bill stephenson noticed Mr. Mintz had gone into an appearence of sleep but, his eyes were wide open. Employee was laid
## 4216                                                                                                    10/13/2009 02:25 pm (fblackmo) employee was attempting to remove a sign rack from trailer when, he felt pain in his upper left arm. Supervisor: ricky w. Blalock
## 4217                                                                                      10/13/2009 02:41 pm (fblackmo) employee was lifting post when, he felt pain in his upper back area. Supervisor: todd whitaker 10/13/2009 02:46 pm (fblackmo) see red note book
## 4218                                                              10/13/2009 02:57 pm (fblackmo) employee was closing window on mower when, glass broken causing cut to his right hand. Supervisor: travis mintz 10/13/2009 02:58 pm (fblackmo) see notebook for address
## 4219                                                                                   10/13/2009 10:51 am (fblackmo) employee was moving motor grader for dump truck to get in driveway when, he stepped from grader he turned his left ankle. Supervisor: j. W. Oliver
## 4220                                                                     10/13/2009 11:28 am (fblackmo) employee was walking down stairs when she slipped and fell. Employee tired to brace herself when injury occurred to her left wrist. Supervisor: steve piotrowski
## 4221           10/13/2010 10:07 am (barnes) employee was unloading surplus tires at the county landfill. As the truck was dumping tires they became stuck, and the employee unstuck the tires by pushing open the tailgate. Two tires came out suddenly. One tire landed
## 4222                                                                                                               10/14/1999 10:17 am employee was sitting at her desk in the field office when she was bitten on her left arm by an insect. Supervisor: d. L. Ferguson
## 4223                                                                           10/14/1999 10:25 am employee hurt his tailbone when he slipped and fell on a slick place on ditch bank. Mr. Moser was measuring to check the level of the ditch. Supervisor: d. W. Knight
## 4224                                                                 10/14/1999 11:01 am employee was trying to (push) force a 3x8 board into position, when the board popped out striking him on the left hand ring finger. Supervisor: steve davis 02/04/2000 11:06 am
## 4225                                                                                                      10/14/1999 11:07 am employee is having problems with pain in her left hand and wrist, also fingers tingle due to keying on her job. Supervisor: richard howard
## 4226                                                          10/14/1999 11:26 am employee became ill while working on clean up efforts of hurricane floyd. Mr. Earwood suffered stomach cramps, diarrhea, vomiting and has intestinal infection. Supervisor: floyd mull
## 4227                                                                                                                10/14/2005 01:36 pm (blgay) employee was using a sledge hammer on the backhoe bucket when he felt a sharp pain in his back. Supervisor: m. H. Thomas
## 4228                                                                                                                                                 10/14/2005 01:49 pm (blgay) employee was stepping off work platform and twisted right knee. Supervisor: keith smith
## 4229                                                    10/14/2005 02:17 pm (blgay) employee was erecting high water signs due to flooding. Employee was driving sign post with a sledge hammer. While doing so a piece of metal flew in eye. Supervisor: s. D. Gurganus
## 4230         10/14/2005 02:29 pm (blgay) employee was on top of a step patcher truck pushing asphalt down in bed of the same. As he stepped down to put a steel bar in a side bin, another employee accidentally hit the switch to close the doors to hopper as he was p
## 4231                                                                      10/14/2005 02:44 pm (blgay) employee was using a shovel when he felt a sharp stinging pain in his shoulder. A knot came up on top of his shoulder over the weekend. Supervisor: kenneth horton
## 4232                                                                                                                   10/14/2005 02:57 pm (blgay) employee was unloading barricade from truck when it slipped smashing and cutting his finger. Supervisor: ken anderson
## 4233                                                                                                                     10/14/2005 03:07 pm (blgay) employee states "both hands go numb during day and extreme pain when numbness stops". Supervisor: dolphus marshburn
## 4234                                                                                             10/14/2010 09:55 am (fblackmo) employee was inspecting pipe for erosion control after much rain. He slipped in mud and twisted his left knee. Supervisor: ronald canady
## 4235                                                                                 10/14/2010 10:07 am (fblackmo) employee was installing sediment fence along ditch bank when he was stung on the face. Employee had an allergic reaction. Supervisor: ronald stanley
## 4236         10/14/2010 11:09 am (barnes) employee was dismounting kodiak truck. He had one foot on the wheel and one foot on the ground. He turned his hand a loose and his ankle that was on the ground gave way, causing employee to fall backwards onto the concrete
## 4237            10/14/2010 11:32 am (barnes) employee was operating a rubber tire loader. He had gotten down out of the loader and was standing on the ground. He turned to walk away. Upon turning, his ankle twisted and he started falling. As he fell, he caught him
## 4238         10/14/2010 12:16 pm (barnes) employee and crew was in the process of patching a pothole on nc 24/27 wb when a private vehicle driving at least 55-mph drove past the flagger and hit the back of the crew cab dump truck at full speed. It caused a tire to
## 4239                                                                                                                       10/15/2001 02:03 pm (fblackmo) employee was shoveling asphalt from the back of truck when he felt pain in his back. Supervisor: m. J. Tyndall
## 4240           10/15/2001 02:17 pm (fblackmo) employee states that injury occurred do to prolonged intentional related conditions form July 9, 2001 to August 28, 2001. The employee has soft tissue, muscles and joints of the knee pain from a strain and stress. Empl
## 4241                                                                                                                                                         10/15/2001 02:43 pm (fblackmo) employee states, years of mental stress from the job. Supervisor: not stated
## 4242           10/15/2001 02:59 pm (fblackmo) employee was dismounting a backhoe which had been loaded on a trailer. As employee was attempting to step out onto the trailer platform, his foot missed the trailer, he slipped down to the ground, bruising his left arm
## 4243                                                                                                  10/15/2001 03:17 pm (fblackmo) employee was removing old light fixtures when, a broken floresent tube broke and cut employees right arm. Supervisor: harvey magnum
## 4244                                 10/15/2001 12:44 pm (fblackmo) employee was conducting a road test. During the three point turn customer ran into curve causing the vehicle to jerk. The customer jammed on the brake and the car slid. Supervisor: sylvia r. Spain
## 4245                                                                                                               10/15/2002 01:10 pm (fblackmo) employee was drilling steel when the drill hung up, spun around and hit employee on the arm. Supervisor; c. C. Coggins
## 4246                                                                                        10/15/2002 02:00 pm (fblackmo) employee was conducting a c. D. L. Skills, while pulling himself up into the cab he hurt his left index finger. Supervisor: gerald r. Holland
## 4247                                                                                10/15/2002 02:15 pm (fblackmo) employee was burning off welding area when some of the molten metal fell onto his left boot causing the injury to his ankle. Supervisor: hosea blount
## 4248            10/15/2002 08:24 am (fblackmo) employee was traveling south on state road 1002. At the intersection of central drive a private owned vehicle failed to yield at the intersection. Employee struck the private vehicle on drivers right side. Supervisor:
## 4249                                                                     10/15/2002 08:42 am (fblackmo) employee was delaminating a counter top by sliding a knife between the formica. The knife slipped causing the injury to his left hand. Supervisor: melvin newton
## 4250                                                                                                        10/15/2002 09:00 am (fblackmo) employee twisted his right arm while climbing off of truck after spraying tuck bed with orange juice. Supervisor: b. J. Vance
## 4251                                                                                                            10/15/2002 09:36 am (fblackmo) employee was exiting off the back of truck when his foot slipped causing the injury to his knee. Supervisor: a. S. Bailey
## 4252                                                                      10/15/2002 09:54 am (fblackmo) employee was flagging traffic when he turned around he stumbled over his feet causing him to fall hitting his right knee on the pavement. Supervisor: jim evans
## 4253                                                                                                                   10/15/2002 10:10 am (fblackmo) employee was working with patch crew on hwy 62 when he found a tick on his right leg. Supervisor: r. T. Mcmanus jr
## 4254                                                                                                                                              10/15/2002 10:27 am (fblackmo) employee was doing physical training when he felt pain in his knee. Supervisor: k. King
## 4255                                                                                                                                        10/15/2002 10:59 am (fblackmo) employee was doing physical training when he felt pain in his right knee. Supervisor: k. King
## 4256                                                                                                                  10/15/2002 11:11 am (fblackmo) employee was walking back from physical training when he felt sharp pain in his left knee area. Supervisor; k. King
## 4257                                                                                                      10/15/2002 11:21 am (fblackmo) employee was cutting bushes with an axe. While swinging the axe he felt pain in his right wrist. Supervisor: larry t. Williford
## 4258                                                                                                       10/15/2002 11:38 am (fblackmo) employee was sharpening a blade when his hand slipped causing a cut to his thumb on his right hand. Supervisor: t. J. Burchell
## 4259             10/15/2002 11:50 am (fblackmo) employee was installing a flared end to pipe on state road 1819. The pipe was unusual and awkward in size and weight. A chain was used to lift the pipe. While leveling the pipes employee felt pain in his back. Superv
## 4260                                                                                                                         10/15/2003 02:04 pm (fblackmo) employee was clearing bridges on I-40 when, he came into contact with poison ivy. Supervisor: r. D. Robinson
## 4261                                     10/15/2003 02:46 pm (fblackmo) employee was driving paint truck in center lane on highway when, a garbage truck stuck the mirrors on employees truck causing the injury to his elbow and shoulder. Supervisor: franklin bullock
## 4262                              10/15/2003 02:58 pm (fblackmo) employee was clearing debris from right of way when, the limb from the backhoe knocked him into another tree causing the injury to his back, legs, and finger. Supervisor; len bass & ronnie wainwright
## 4263                                                                                             10/15/2003 03:11 pm (fblackmo) employee was inspecting guard rails for damage when, he stepped in a hole causing the injury to his left knee. Supervisor: j. Mark crook
## 4264                                                                                                   10/15/2003 03:28 pm (fblackmo) employee was installing light fixture when, the cover fell causing a cut to his right and left wrist. Supervisor; c. N. Edwards jr
## 4265                                         10/15/2003 03:37 pm (fblackmo) employee was removing debris from right of way using a backhoe when, he accidently knocked the backhoe into gear causing it to roll down the hill injuring his back. Supervisor: derek dixon
## 4266                                                           10/15/2003 09:00 am (fblackmo) employee was conducting a road test when, the driver of the vehicle over compensated hitting the median. Employee states on 19 he was not injured. Supervisor: l. C. Moose
## 4267                                                                                                                       10/15/2003 09:35 am (fblackmo) employee bent over to place sign rack on us 220 when, he felt pain in his lower back. Supervisor; archie smith
## 4268                                                                                                                  10/15/2003 09:44 am (fblackmo) employee was running a rubber tire roller when, foreign matter went into his left eye. Supervisor: benton g. Jordan
## 4269                                           10/15/2003 09:55 am (fblackmo) employee was dragging tree limbs away from roadway that had fallen due to the hurricane damage when, he encountered a yellow jacket that stung him on both arms. Supervisor: benton jordan
## 4270                                                                    10/15/2003 10:21 am (fblackmo) employee was bent over using a chainsaw clearing debris from hurricane isabel when, he felt pain in his left side and upper left hipp area. Supervisor: e. Guerra
## 4271                                                                                                                               10/15/2003 11:09 am (fblackmo) employee was welding bracket when, the flash caused burns to both his eyes. Supervisor: russell ramsey
## 4272                                                                                                                       10/15/2003 11:20 am (fblackmo) employee was driving a dump truck when, he was stung by bees on his head and neck area. Supervisor: andy davis
## 4273                                                                                                          10/15/2003 11:40 am (fblackmo) employee was loading boards when, a splinter stuck in his right hand between thumb and fore finger. Supervisor: j. A. Ridge
## 4274                                                                                                                                  10/15/2003 11:50 am (fblackmo) employee stepped into a hole on judson road causing pain to his right knee. Supervisor; j. R. Price
## 4275                                                                                                                                     10/15/2003 12:03 pm (fblackmo) employee was working under bridge when, he was bitten by a yellow jacket. Supervisor; ricky ball
## 4276                                                                                                                  10/15/2003 12:14 pm (fblackmo) employee was dragging tree limbs away from roadway when, he was stung by a yellow jacket. Supervisor: benton jordan
## 4277                                                     10/15/2003 12:25 pm (fblackmo) employee was participating in recreational games at the employees appreciation day function, while playing volleyball he felt pain in his right ankle. Supervisor: bobby thrower
## 4278         10/15/2004 03:55 pm (fblackmo) employee was placing a ladder under bridge to cut bolts on post blocks. When setting ladder in creek the water current swept bottom of ladder causing it to start falling. Employee was trying to keep ladder from falling s
## 4279           10/15/2007 08:53 am (fblackmo) employee west states examiner tyndall followed her into a dark closet, while in the closet" examiner tyndall startled, frightened, and threatened her". Employee states she slightly turned causing pain to her lower back
## 4280                  10/15/2007 09:17 am (fblackmo) employee was dismounting truck and struck his left elbow on the edge of the door. Employee made supervisor aware of incident on 8/31/07 and did not seek medical treatment until 9/18/07. Supervisor: frankie davis
## 4281                                                                                               10/15/2007 09:37 am (fblackmo) employee was using a hand driver to drive a sign post when, he heard a pop and felt pain in his right elbow. Supervisor: todd whitaker
## 4282                10/15/2007 09:47 am (fblackmo) employee was cleaning off a drop inlet. While standing on the grate, the grate broke causing him to fall into drainage structure. Employee felt pain in his chest and left shoulder area. Supervisor: ronnie woodcock
## 4283          10/15/2008 01:31 pm (blgay) employee was sitting on the asphalt maintainer with his left leg on the platform, when a co-worker dumped the asphalt in and climbed back on the machine and lifted the screed box to move up the road to patch. Employees leg
## 4284                                                                                                       10/15/2009 08:28 am (fblackmo) employee was lifting rubber tires to place on back of truck when, he felt pain in his lower back area. Supervisor: greg vinson
## 4285                                       10/15/2009 08:41 am (fblackmo) employee walked to trash dumpster at edge of parking lot when, walking back she stepped on loose rocks causing her to fall and injury right hand, wrist, and knee. Supervisor: l. L. Upole, jr
## 4286                                                          10/15/2009 08:55 am (fblackmo) employee reach into a tool box when, a piece of wire punctured his left ring finger. Supervisor: b. L. Wade 10/15/2009 09:03 am (fblackmo) see notebook for mailing address
## 4287                                                                    10/15/2009 09:28 am (fblackmo) employee was assisting with loading bridge decks on flat bed trailer when, he missed a step causing fall, and injured to his back. Supervisor: louis wetherington
## 4288         10/15/2009 10:07 am (blgay) employee was stopped on the paved shoulder of I-77, while co-worker retrieved some debris from the shoulder of the roadway. While parked on the shoulder of the roadway, a tractor trailer struck the state vehicle, causing ab
## 4289                                                                                                                                        10/16/2001 02:07 pm (fblackmo) employee was setting up signs when a sign fell on his left shoulder. Supervisor: s. G. Dillon
## 4290                                                                                                                                          10/16/2001 02:15 pm (fblackmo) employee was weed eating and received foreign chemical in his eye. Supervisor: david silver
## 4291          10/16/2001 02:40 pm (fblackmo) employee was using a gas power auger to make hole for planting daylilies when he hit hard ground which caused the auger to twist and the augers safety bar(the safety bar knocks the auger out of gear when the blade is in
## 4292            10/16/2001 02:58 pm (fblackmo) employee was raising and lowering the tailgate by hand to remove debris caught in the tailgate. He also helped remove debris from another truck using the same method. Employee pulled muscle in the lower lumbar region.
## 4293           10/16/2001 11:33 am (fblackmo) mower number one was stuck in ditch. Mower number two was attempting to pull mower number one out of the ditch. The chain broke flying back onto mower number ones windshield causing it to break and throw glass on the e
## 4294                                                                                                10/16/2001 12:17 pm (fblackmo) employee had finished a road test in a small vehicle when stepping out, employee felt a pop in her lower back. Supervisor: ava parker
## 4295           10/16/2001 12:35 pm (fblackmo) employee was sitting in dump truck waiting to be loaded with dirt. When loader operator loaded it onto truck, bees swarmed into truck and stung driver on neck and ear. Employee exited the truck, started running and fel
## 4296                                                                      10/16/2001 12:49 pm (fblackmo) employee was loading a sandblaster onto truck from the loading dock. Employee lost balance and the sandblaster fell on employee. Supervisor: robert d. Sherrill
## 4297                                                                                                               10/16/2001 12:58 pm (fblackmo) employee was loading straw on truck and during mulching operation he was bitten by grain mites. Supervisor: ken taffer
## 4298                                 10/16/2002 02:53 pm (fblackmo) employee was setting up an oxygen and acetylene bottle for some workers, as he took one down, he went to reach for another, one tipped over and fell on his right arm. Supervisor: kevin lamar cooke
## 4299                                                                         10/16/2002 03:17 pm (fblackmo) employee arrived at work at 6:30 am. He entered office front door and lost his balance, falling to the floor he hit his left knee. Supervisor: r. E. Langley
## 4300         10/16/2006 02:28 pm (fblackmo) employee was flagging traffic when, a lady in private vehicle pull up. Employee looked toward the other flagman to see if it was clear. Private vehicle did not stop and her mirror struck employee on his left arm. Supervi
## 4301                                                                                                                                   10/16/2006 02:40 pm (fblackmo) employees fingers were caught in tailgate chain on dump truck. Supervisor: william e. Mcclendon jr
## 4302                                                                                                           10/16/2006 02:54 pm (fblackmo) employee was cutting back a line of sight in curve when, he came into contact with poison oak. Supervisor: robert g. Davis
## 4303         10/16/2006 03:08 pm (fblackmo) employee was pulling rope to small engine. The handle on the pull rope was in the employees right hand, with his left hand resting on the motor. The handled slipped out of the employees right hand, and struck his left on
## 4304                                                                                                                                 10/16/2006 03:20 pm (fblackmo) employee was hit in the head/eye while passing the paint hose to each other. Supervisor: chuck sharp
## 4305         10/16/2007 02:18 pm (fblackmo) employee was removing handcuffs from a individual in custody. Upon removal of the handcuffs, inspector smith noticed blood on his handcuffs which apparently got there by a small nick on the suspects arm. The blood was tr
## 4306                                                                                             10/16/2007 02:31 pm (fblackmo) employee attempted to pick up barrel when, weight shifted and caused his arm to twist causing injury to elbow. Supervisor: j. T. Wiggins
## 4307          10/16/2007 02:43 pm (fblackmo) employee walked over to the side of the paint dock and reached over to get something out of the tool box located on the paint truck and slipped and fell between the dock and the paint truck. Employee hit his head, back,
## 4308         10/16/2007 12:02 pm (fblackmo) employee was attempting to remove a stump with the hydualic excavator. The stump suddenly broke loose causing employee and excavator to jerk back violently. Employee hit neck and head on the seat and back glass of excava
## 4309                                                                                     10/16/2007 12:14 pm (fblackmo) employee was driving state own vehicle when, it was hit in the rear by a private vehicle. Employee felt pain in his neck. Supervisor: john rouse
## 4310                                                                                                                         10/16/2008 08:16 am (fblackmo) employee states he experienced hearing loss from "the impact of noise exposures". Supervisor: perry mitchell
## 4311                                          10/16/2008 08:38 am (fblackmo) employee was pulling fence wire that wrapped around mower when, wire stuck into his left hand. Employee was wearing gloves but removed them to pull on the wire. Supervisor: b. N. Braswell
## 4312                                                                                      10/17/2000 01:20 pm employee complains of numbing pain in both hands and left elbows due to repetitive motion from using chainsaw use over the years. Supervisor: n. S. Gibson
## 4313           10/17/2000 01:24 pm placed white top on property line. The top of a poison ivy plant had been cut off and employee did not know what he was touching until he saw the leaves on the ground. Has contacted rash on both arms and legs. Supervisor: joe cur
## 4314                                                                                                                                  10/17/2000 01:32 pm while putting bowls in cupboard pulled muscle in left shoulder. Strained left shoulder. Supervisor: t. L. Gray
## 4315                           10/17/2000 01:39 pm employee was cutting trees on sr 1157 on 10/4/00. The tree started to fall, so she pulled chainsaw back and stepped back. The saw swung around cutting her on her right leg behind her knee. Supervisor: r. D. Peeler
## 4316                                                                                      10/17/2000 01:54 pm employee was getting tire out of bed truck to change a flat; when he jammed his left ring finger while putting tire on the ground. Supervisor: m. S. Reese
## 4317           10/17/2000 10:35 am employee was driving truck while crew was building shoulders (normal procedures) when right rear tire dropped off hidden headwall covered by grass and shrubs forcing tires to slide of asphalt and turning over. Note: no signs mark
## 4318                                                                                                                                    10/17/2001 04:33 pm (fblackmo) employee was walking down hill, he stepped in a hole and twisted his ankle. Supervisor: wes miley
## 4319                                                         10/17/2001 04:48 pm (fblackmo) employee climbed from under water tank on patch roller when, he dismounting he fell on slick surface of trailer hitting right arm on trailer bar. Supervisor: b. W. Whitaker
## 4320           10/17/2001 05:07 pm (fblackmo) employee was traveling in the east bound travel lane on us 70 when a tractor trailer truck abruptly stopped to make a right turn. The vehicle being driven by the employee collided with a vehicle between his and tractor
## 4321                                                                                                                                       10/17/2001 05:22 pm (fblackmo) employee began having numbness and pain in her fingers and wrist. Supervisor: phillip carlisle
## 4322                                                                                                                10/17/2002 09:24 am (fblackmo) employee was walking into building when, she slipped on the wet floor( from the rain). Supervisor: sec. Lyndo tippett
## 4323                                                                                                 10/17/2003 07:33 am (fblackmo) employee states while mowing around a hawthorn tree he got a thorn in his finger from holding limbs back. Supervisor; david pestwood
## 4324                                             10/17/2003 08:51 am (fblackmo) employee states while using computer mouse in her everyday job performance she experience pain in her right hand, wrist, and arm. Supervisor: jerry gaskill 04/07/2004 12:23 pm (gwhite)
## 4325                                                                                                                               10/17/2003 09:36 am (fblackmo) employee was moving boxes when, he was bitten by a spider on his finger. Supervisor: chris pendergraph
## 4326                                                                             10/17/2003 09:46 am (fblackmo) employee encountered trees across road. Stopped to help fire dept. With tree when, another tree fell across cab of truck. Supervisor: cecil w. Bowser jr
## 4327                                                                   10/17/2005 02:34 pm (blgay) employee was flagging traffic at the scene of an accident, when employee raised left arm to stop traffic and felt shoulder pop out of place. Supervisor: robert vause
## 4328                                10/17/2005 02:47 pm (blgay) employee was sweeping the roadway on nc731 in mt. Gilead when a large commercial truck passed the job site and blew debris into face causing the debris to enter his left eye. Supervisor: david shepard
## 4329                                                                                                    10/17/2005 10:07 am (fblackmo) employee was inspecting hdpe pipes when, he tripped and fell causing the injury to his left knee. Supervisor: samuel j. Frederick
## 4330                                                                                                                       10/17/2006 03:50 pm (fblackmo) employee was running during physical training when, injury occurred to his right knee. Supervisor: lt. Watkins
## 4331         10/17/2006 04:02 pm (fblackmo) employee was attempting to clean out pump on asphalt tank and turned the handle in the opposite direction. This caused the asphalt to blow back onto employee, covering him with asphalt. He was taken to the medical center
## 4332                                                                                     10/17/2006 04:13 pm (fblackmo) employees were unloading a sheet of plywood off a pickup when, it slipped out of other employees hand causing it to fall on Mr. Strickland wrist
## 4333                         10/17/2006 09:14 am (fblackmo) employee had just loaded pipe on a trailer. Employee secured the pipe with a ratchet strap. Employee attempted to secure the end of the strap when, he hit his left knee on trailer. Supervisor: r. A. Baker
## 4334                                                                                                        10/17/2006 09:27 am (fblackmo) employee was tossing a bag of recyclables into the bed of pickup truck when, he felt pain in his back. Supervisor: keith hill
## 4335                                                                                    10/17/2006 09:37 am (fblackmo) employee was driving metal silt fence post in ground with sledge hammer when, he felt pain in his right forearm and hand. Supervisor: t. M. Smith
## 4336           10/17/2007 01:02 pm (mdsloan) employee was picking up trash bags that were already filled, when he picked up a trash bag that contained broken glass. While attempting to place the bag into the back of the tandem dump truck the broken glass caused th
## 4337          10/17/2008 09:15 am (blgay) employee was attempting to insert the fiber glass frame slat into back of the sign, employee felt a tearing sensation in his right shoulder. Employee reported the incident on the 7th, and wanted to see if the pain would go
## 4338         10/17/2008 09:28 am (blgay) employee was assisting survey party in staking project on sr 1562a (old hwy 16) in wilkes county. The work environment had not changed from all previous jobs. Employee stated he had a bad case of poison oak on monday and by
## 4339                                                                                                                                                          10/18/1999 02:00 pm employee stepped into flower bed instead of going around and tripped and cut left leg.
## 4340                      10/18/1999 02:29 pm Mr. Brantley was behind dump truck dumping asphalt into paving sled. Bungee cord was attached to tailgate chains. Bungee cord separated as tailgate opened and bed was raised. Hook struck Mr. Brantley's chin cutting it.
## 4341                                                                                          10/18/1999 02:44 pm while helping with hurricane floyd cleanup, another employee's chain saw got humg up. He got it unhung and log rolled over and hit Mr. Blalock 's leg.
## 4342                                                                                          10/18/1999 03:04 pm employee in vehicle chase while on routine duty. Attempted to make right turn into a parking lot after suspect vehicle brakes failed hit 2 other cars.
## 4343                       10/18/1999 09:46 am employee was driving a dump truck ran off road and lost control on a curve. Truck rolled over three times and the employee was thrown from the truck causing multiple bruises and lacerations. Supervisor: r. A. Mccarley
## 4344                                                 10/18/1999 12:06 pm Mr. Walker injured his left knee when his shoulder gave way causing his entire left leg to fall into a hole. He realized sunday that his knee was stiff and very sore. Supervisor: j. W. Mclean
## 4345                10/18/2001 02:59 pm (fblackmo) employee was working on marion lee road helping to clear right of way when, a tree that was being cut by another employee fell on him. Supervisor: dannie tomberlin 10/24/2001 11:49 am (roldham) the tree hit him in
## 4346          10/18/2001 03:12 pm (fblackmo) employee was attempting to loosen the end of the water pump with a 36' pipe wrench while standing on the casing rack and water tank. Employee was applying pressure, his foot and/or the pipe wrench slipped causing him to
## 4347                                                                                                     10/18/2001 03:33 pm (fblackmo) employee stated that he strain his back while moving concrete from one side to the other with a shovel. Supervisor: jude pfeufer
## 4348                                                                                                 10/18/2001 03:58 pm (fblackmo) employee was running on the side walk during physical training. Employee stepped in a storm drain on the side walk. Supervisor: keel
## 4349                                           10/18/2002 07:30 am (fblackmo) employee was on us 74/23 for a paving project. He was standing in between the closed lane and orange cones when, a private vehicle struck him on his right side. Supervisor: ronnie sutton
## 4350                                10/18/2002 08:35 am (fblackmo) employee was working on us 74/23 paving project. Employee was standing in between the closed lane and orange cones when, a private vehicle struck him on his left shoulder. Supervisor: ronnie sutton
## 4351                                                     10/18/2002 08:48 am (fblackmo) employee was entering his vehicle after sweeping roadway when, a pepsi truck hit his side mirror. Glass from the mirror struck him on the forehead. Supervisor: r. J. Hollifiled
## 4352                   10/18/2002 09:03 am (fblackmo) employee states while mowing right of way on state road 1934, a tree limb struck him in the right eye. Employee was wearing eye protection but the impact from the limb broke his goggles. Supervisor: k. R. Davis
## 4353                                                                                                                                    10/18/2002 11:22 am (fblackmo) employee was struck on the forehead by a piece of equipment machinery. Supervisor; w. L. Thompson
## 4354                                          10/18/2002 11:37 am (fblackmo) employee states that after chaining down equipment on back of trailer, he went to step down. Employee stepped in a hole which caused the injury to his right ankle. Supervisor: w. G. Wrenn
## 4355                                                                                                              10/18/2002 11:48 am (fblackmo) employee was exiting vehicle to pick up mattress when, he hit his left elbow on the door frame. Supervisor: j. R. Price
## 4356                                               10/18/2002 12:05 pm (fblackmo) employee was caring air compressor to truck. Employee was sitting compressor down when, his left little finger got caught between the truck and compressor. Supervisor: eric a. Schenz
## 4357                                                                                                                              10/18/2002 12:16 pm (fblackmo) employee was feeding brushes with chipper when, he felt pain in his groin area. Supervisor: doug mcneal
## 4358               10/18/2004 08:26 am (fblackmo) employee was leaving for lunch when, she slipped and fell breaking her little toe on left foot. Supervisor: doumit ishak 10/26/2005 11:01 am (fblackmo) can not pay bills past 10/15/04. See corr. In file. Per: joyce
## 4359                                                                                              10/18/2004 08:40 am (fblackmo) employee states while raking asphalt from shoulder of road he stepped in a hole causing the injury to his back. Supervisor: jack tanner
## 4360                                                                                       10/18/2004 09:23 am (fblackmo) employee states that while welding and grinding on a snow plow and trailer a piece of metal got into his right eye. Supervisor: tom collins jr
## 4361                                                                                              10/18/2004 09:35 am (fblackmo) employee states while cutting and chipping brushes he came into contact with poison ivy on multiple body part. Supervisor; mike mcswain
## 4362                             10/18/2005 01:24 pm (blgay) employee was removing pins from hydraulic tank on a mowing tractor. Employee was standing on the front tire when he lost his balance and fell backwards onto his back in the gravel. Supervisor: d. W. Ashe
## 4363                                                                                   10/18/2005 01:44 pm (blgay) employee was trying to remove a catch basin grate that had rusted closed. When jerking on gate, he strained his lower back. Supervisor: fatina beaver
## 4364                                                                        10/18/2006 01:44 pm (fblackmo) employee was using bushaxe to clean out roadside ditch. He swung bushaxe back to make a cut when, he felt pain in his left shoulder. Supervisor: carlis smith
## 4365                                                                                   10/18/2006 02:41 pm (fblackmo) employee had cut a tree in an outfall ditch. He was moving some of the logs by hand when, he felt pain in his lower back. Supervisor: carlis smith
## 4366                                             10/18/2006 02:56 pm (fblackmo) employee was assisting with erosion control around a slit hole. While walking around the silt fence, the employee stepped in a hole and twisted her left ankle. Supervisor: l. C. Pierce
## 4367                                                                10/18/2006 03:16 pm (fblackmo) employee was lifting a container of chemical (2. 5 gallon) over boom of spray truck. During the loading process, he felt pain in his back. Supervisor: r. Kevin baker
## 4368                                                                 10/18/2006 03:29 pm (fblackmo) employee was using the restroom when she, heard a spraying noise and felt mist coming down, she looked up and the mist got into her eyes. Supervisor: dolphine clark
## 4369                                                                                                                    10/18/2010 10:03 am (slee) pov pulled out in front of sov. 10/18/2010 10:48 am (slee) other person: michael b. Murray, clayton nc, 919-989-6067.
## 4370                                                     10/19/1999 02:25 pm employee was involved in automobile accident on September 11, 1997. Mr. Anders suffered injuries to his neck, back and eyes. A form 18 was completed on September 3, 1999 with ag's office.
## 4371                 10/19/1999 02:35 pm employee injured his left foot when he stepped on a broken tree stump causing him to fall. Mr. Tyler was walking behind a utility pole to get to an electrical panel box at the time of the incident. Supervisor: joseph james.
## 4372                                                       10/19/1999 03:41 pm employee injured his lower back, shoulder, and wrist while mowing back slope with a tractor mower. The tractor went over a void causing the tractor to fall down. Supervisor: c. I. Lucas
## 4373                                                                                                         10/19/1999 07:20 am Mr Linville was in process of removing trash from building at sandy ridge. He cut little finger on left hand while handling trash bags.
## 4374                                                                          10/19/1999 07:50 am employee started hurting in chest during the afternoon. Earlier in the morning she had used the asphalt loop which May have caused strain. Strain upper chest muscles.
## 4375                                                                                                                             10/19/1999 08:00 am employee was operating chainsaw during debris removal. Employee came in contact with poison ivy while cutting tree.
## 4376           10/19/1999 08:13 am employee was wrapping a wire rope sling around a piling and pulling on it. There was not enough room for him to get his hand with gloves on, so he removed his gloves. The sling slipped, as he was pulling it, and pinched hid right
## 4377                                              10/19/1999 08:28 am employee was removing dirt from the side of a sign post in order to straighten the post. While using the post hole digger, he hit the side of the sign and cut the little finger on his left hand.
## 4378                                                                                                                                                               10/19/1999 08:39 am working on the paint dock employee felt something bite on his left middle finger.
## 4379                                                                       10/19/1999 08:50 am employee was showing surplus equipment to potential bidder when he walked between two pieces of equipment, his boot scraped the motor grader blade and scraped his ankle.
## 4380                                                   10/19/2001 02:10 pm (fblackmo) employee filled a zippo lighter with fluid, spilling some on his right hand. The lighter was lit and the fluid ignighted causing him to burn three fingers. Supervisor: jeff allen
## 4381                                                                   10/19/2001 02:27 pm (fblackmo) employee twisted left ankle when she stepped in hole getting out of her van. Supervisor: david w. Chapman ) 10/16/2003 02:25 pm (gwhite) *show all bills to joyce*
## 4382                                                                           10/19/2001 02:46 pm (fblackmo) employee re-injured his left hand/wrist while laying rip rap on joe johnson mountain road. Hand was operated on in 1998. Supervisor: bobby j. Berryhill jr
## 4383         10/19/2001 03:50 pm (fblackmo) employee was walking back to the station and looking over his shoulder talking to a truck driver when, he misjudged the steps up to a curb and tripped and fell causing the injury to his hand. Supervisor: 2nd lt. W. E. Th
## 4384                                                                              10/19/2005 11:18 am (fblackmo) employee was working on shoulder of roadway when, he slipped and fell on wet grass striking his left arm against chainsaw. Supervisor: linwood reynolds
## 4385                                                                                                                       10/19/2005 11:52 am (fblackmo) employee was running during training when, he felt pain in his right leg/groin area. Supervisor: keith e. King
## 4386           10/19/2007 06:41 am (mdsloan) employee was trying to move chair closer to the work station (desk) on a new floor mat, new floor mat is very bumpy, and as employess was grabbing seat to move it up employee felt a pain go through right side. Superviso
## 4387                                                                                      10/19/2007 07:02 am (mdsloan) employee was unloading garbage bags when he threw a bag in the dumpster and employees right shoulder came out of place. Supervisor: cr mcconnell
## 4388         10/19/2009 10:21 am (blgay) employee was cutting a tree from the right of way and came into contact with poison vines that were entangled on the tree. A back hoe was used to push back vegetation and employee did apply barrier cream before starting wor
## 4389           10/19/2009 10:52 am (blgay) employee was unloading signs and had placed a steel post against the side of the truck. As employee moved on the tommy lift, the post slid, caught in the chain and struck employee in the left shin. Supervisor: clyde scott
## 4390         10/19/2009 11:02 am (blgay) employee was cutting a tree from the right of way and came into contact with the poison vines that were entangled on the tree. A back hoe was used to push back vegetation and employee applied barrier cream before starting w
## 4391         10/19/2010 03:43 pm (barnes) employee was picking up a recliner near the jersey wall on I-40 eastbound at wendover avenue. He felt a sharp pain form his neck down to the bottom of his back. He also felt pain in his right arm. Employee injured his righ
## 4392                                                                    10/19/2010 11:59 am (slee) employee was operating a new type of rubber tire excavator. He ran off the asphalt, the excavator slid down the front slope of the ditch and rolled over on its side.
## 4393                       10/2/2006 02:26 pm (fblackmo) employee was getting sign out of the sign bin on truck, got sign out of bin, placed it in bed of truck. Employee stepped out of the back of truck, felt sharp pain in his right knee. Supervisor: todd whitaker
## 4394                                                                                                       10/2/2007 02:16 pm (fblackmo) employee was paddling boat that was stuck in shallow water, when he felt pain in his right shoulder. Supervisor: logan williams
## 4395                                                                                                        10/2/2007 03:14 pm (fblackmo) employee was spraying paint on panel when, wind blew causing mist from the paint to irritate his eyes. Supervisor: eben miller
## 4396                                                           10/2/2007 10:25 am (mdsloan) employee was driving nails helping the bridge crew with putting bracing forms on footing of bridge when employee hit his left thumb with the hammer. Supervisor: alan levens
## 4397         10/2/2008 07:58 am (blgay) employee was getting on tractor when he felt pain in his right arm. Employee looked down and a caterpillar was stuck to his arm. He knocked the caterpillar off and his arm started burning and broke out with a rash that start
## 4398                        10/2/2008 11:37 am (fblackmo) employees carlos armstrong and john wad removing jack form under girder. John placed hand under plate at same tim e carlos struck the plate with hammer striking his right index finger. Supervisor: guy white
## 4399                                                                    10/2/2008 11:44 am (blgay) employee was attempting to get a rock unstuck on the athey loader, which was covered in poison oak, causing poison oak on face and both arms. Supervisor: leon sayles
## 4400                                                                                                                       10/20/1999 02:53 pm employee injured the left side of her lower back, hip and leg while attempting to move a desk. Supervisor: r. D. Chandler
## 4401                          10/20/1999 03:49 pm employee injured lower back and hips while unloading cases of handbooks from vehicle. Mr. Lanier states his pain is a continuation of a past injury which "flares up" from time to time. Supervisor: michael g. Jarman
## 4402                          10/20/1999 03:57 pm employee was driving state dump truck on 9/24/99, when a private vehicle failed to yield at a stop sign. Ms. Horne bumped her head and strained her neck when private car hit the driver side. Supervisor: c. I. Lucas
## 4403                                                                                        10/20/1999 04:46 pm employee was stepping off of a track hoe when his right knee popped out of joint and fell down. He dislocated his right knee. Supervisor: michael rhodes
## 4404                                                                                               10/20/2003 10:13 am (fblackmo) employee was trying to free trap on dump truck when, his finger was caught between the trap and bed of truck. Supervisor: r. L. Taylor
## 4405                                                                       10/20/2004 02:01 pm (fblackmo) employee was driving truck when, truck spun out of control landing down an embankment on it's side. Employee is experiencing back pain. Supervisor: ricky ball
## 4406                                                                                                           10/20/2004 02:38 pm (fblackmo) employee states while helping another employee carry a ice cooler she, felt pain in her lower back. Supervisor: pat boykin
## 4407         10/20/2004 10:29 am (fblackmo) employee was driving a swb dump truck north on us 321 when, a piece of rip rap fell off of a privately own dump truck in front of her, hit a pick up truck heading in the opposite direction, and was then propelled into he
## 4408                                                                                                                               10/20/2004 10:42 am (fblackmo) employee was clearing right of way when, he came into contact with poison ivy. Supervisor: a. T. Ellis
## 4409                                                 10/20/2004 10:52 am (fblackmo) employee was hauling debris in a tandem dump truck from state road 1220 to the landfill. Employee hit a dip in the road which caused him to jam his neck. Supervisor: k. L. Anderson
## 4410                                          10/20/2004 11:01 am (fblackmo) employee states that over a period of time she has experienced pain in her left wrist, elbow, and shoulder while reforming daily duties. Supervisor: charlie utz 4/14/2005 10:27 am (mpark)
## 4411                                                  10/20/2006 10:11 am (fblackmo) employee was walking from office into the hall when, the leather sole of her shoe got caught between the threshold causing her to fall an injure right knee. Supervisor: beth mckay
## 4412                                                                                                                                10/20/2006 10:21 am (fblackmo) employee was shoveling asphalt when, he felt a sharp pain in his lower back. Supervisor: a. L. Person
## 4413                                                                                        10/20/2008 03:41 pm (blgay) employee was changing light bulbs, when she stepped off ladder she turned and was jabbed in the right eye with limb. Supervisor: curtis barnhill
## 4414                                                                                                          10/21/1999 03:21 pm Mr. D'jernes was bitten by a tick on his right buttocks while performing a drainage investigation on 5/12/99. Supervisor: max s. Price
## 4415                                             10/21/1999 03:31 pm Ms. Petit is experiencing problems with her hands breaking out into a rash. The rash is itching, blistering, cracking and bleeding. (unknown causes) *****dermatitis problem supervisor: lynn chalk
## 4416           10/21/1999 03:45 pm Mr. Litchfield was taking dive gear to a boat, when he stepped on a loose board with his right leg. The board flew up and caused him to twist his right knee. The board would have hit him in the face if he wouldn't have avoided th
## 4417                                                                                       10/21/1999 04:05 pm Mr. Walker twisted his right knee when his foot slipped on moldboard. He was exiting a grader at the time of the incident. Supervisor: gene e. Strickland
## 4418                                                                            10/21/1999 04:14 pm Mr. Watson was cutting up trees and loading onto a truck after hurricane floyd, when he came in contact with poison ivy on both arms. Supervisor: thomas j. Burchell
## 4419                                                                                                                                   10/21/1999 04:25 pm Ms. Branch was walking down the hall when she slipped and twisted her left ankle. Supervisor: patrick simmons
## 4420                                                                                                                   10/21/1999 05:19 pm Mr. Mccraw was cutting brush on a steep bank, when he turned to get down he twisted his right ankle. Supervisor: m. H. Thomas
## 4421                                                                                                                                                                                               10/21/1999 08:23 am employee hurt lower back installing roadway sign.
## 4422                                                                                          10/21/1999 12:26 pm employee was returning to his vehicle from doing a traffic stop, when he shut the door on his left index finger. Supervisor: capt. Michael e. Sizemore
## 4423                                                              10/21/1999 12:33 pm Mr. Baxley stepped out on motor grader blade wrong on 9/25/99 and also slipped off of a wet tire while checking fuel. He injured his left foot and ankle. Supervisor: oscar ratley
## 4424                                                                                                                                   10/21/1999 12:47 pm Mr. Savage injured his right knee when he stepped over a guardrail on us 264 bridge. Supervisor: grady raynor
## 4425                                                                                                                                                                                           10/21/2002 11:16 am (slee) tree came through bottom of glass breaking it.
## 4426         10/21/2005 09:56 am (blgay) employee was loading road signs into sign truck and was standing on ground rear of truck. A sign being placed into the rack hit metal frame on rack and kicked back toward employees face chipping front tooth. Supervisor: cha
## 4427          10/21/2005 10:38 am (blgay) employee was inside cab or work truck filling out calculations of areas measured for payment of contractors work. Door was open on operators side, when reaching for calculator, located in door panel of truck, employee lost
## 4428                        10/21/2005 10:55 am (blgay) employee was carrying a hammer and wedge to two other employees, when going down a steep hill he slipped and fell forward and large end of wedge came down on right side of his head. Supervisor: mike motsinger
## 4429                                                                                                               10/21/2005 11:45 am (blgay) employee was adjusting the back deck of tractor, twisted left ankle. Supervisor: w. D. Pittman 11/1/2005 08:10 am (mpark)
## 4430                                                                                                      10/21/2005 11:53 am (blgay) employee was loading pipe at hubbards supply when the pipe slipped and mashed his left hand middle finger. Supervisor: j. R. Price
## 4431                                                                                                                               10/21/2008 02:23 pm (blgay) employee was getting out of a pick-up truck and shut the door on his left thumb. Supervisor: charles vick
## 4432         10/21/2008 10:18 am (fblackmo) employee was conducting a road test, customer was returning from road test and parking. Customer engaged gas instead of brake causing her car to hit the car that was parked across from where she was parking. Employee fel
## 4433                                                                                             10/21/2008 10:45 am (fblackmo) employee was coming out of building at south dock facility, steps were slippery and employee slipped down stairs. Supervisor: t. L. Gray
## 4434                                                                              10/21/2008 11:35 am (fblackmo) employee was walking down hallway when, she slipped and fell causing injury to left shoulder, wrist, ankle, and both knees. Supervisor: canales theresa
## 4435         10/21/2008 11:59 am (fblackmo) employee was cutting cores on roanoke ave with coring machine when, the coring bit seized in the hole causing machine to rotate and strike him on the inside of left knee. The impact lifted employee off the ground. He lan
## 4436         10/21/2008 12:26 pm (fblackmo) employee was on state road 1328 (white road) where the paint crew as grinding of the roadway and using a blower. Employee walked by and some of the debris flew into his right eye causing swelling. Supervisor: douglas dow
## 4437                                          10/21/2008 12:53 pm (fblackmo) employee was driving to meeting at highway building when, her vehicle was struck from behind by private vehicle. Employee felt pain in hier neck and back area. Super visor: elizabeth lusk
## 4438        10/21/2010 02:21 pm (barnes) employee stated that due to a shortage of personnel, no district or emissions sec. And no emissions ads, she had to prepare all paperwork that had to be typed. Some days employee would have to type 6 to 8 hours while at wor
## 4439          10/21/2010 03:26 pm (barnes) employee was traveling west on rp 1120 clemmons rd. She was following a group of cars lead by a pilot car. Employee stopped for traffic and was rear ended by the vehicle behind her. This area was a traffic controlled work
## 4440         10/21/2010 04:16 pm (barnes) employee reported to supervisor at 3:00pm on 9-28-10 that when he climbed in motor grader after lunch, his back hurt. He wanted to wait over night to see how it felt. On 9-29-10 he went to the doctor with back injury. On 1
## 4441         10/21/2010 12:38 pm (barnes) employee was mapping a creek bank. He had a prism pole in his left hand and a brush axe in the right hand. Employee feet slipped on the muddy bank of the creek. Employee stuck the axe in the ground to catch his fall. Howev
## 4442                                                                                               10/22/2001 10:21 am (slee) employee was sweeping off rock screening on sr 1600 that was recently split sealed. A private vehicle ran in the rear of the boom tractor.
## 4443                                                               10/22/2002 02:13 pm (fblackmo) employee was driving a 2" nail into asphalt using a carpenters hammer. The hammer slipped off the top of nail, striking employee on his finger. Supervisor: max potter
## 4444                                                                                                                        10/22/2002 02:31 pm (fblackmo) employee felt pain in his lower back after completing the field test with concrete. Supervisor: ken batchelor
## 4445                                                                                                                                 10/22/2002 02:52 pm (fblackmo) employee was using pick fork to dig up asphalt when, he felt pain in his back. Supervisor: as bailey
## 4446             10/22/2002 03:17 pm (fblackmo) employee was pre-lining road oil roads in robeson county. He was flushing system with water. Employee leaned over the side of truck to close valve for paint gun when he felt a burning in his back area. Supervisor: fr
## 4447                                                                                                                      10/22/2002 03:34 pm (fblackmo) employee was cutting trees out of road way when, he came into contact with poison oak. Supervisor: g. R. Cooper
## 4448                                                                  10/22/2002 03:47 pm (fblackmo) employee, stepped from traffic coordinator building to the ground when a gust of wind blew the door open. Employee twisted his left ankle. Supervisor: j. W. Cahoon
## 4449           10/22/2007 02:29 pm (mdsloan) employee was standing out on the albermarle bridge maintenance yard near the corner of the lumber shed by a security light pole when another employee in a state pickup truck was attempting to turn right at the corner of
## 4450                                    10/22/2007 03:02 pm (mdsloan) employee was squatting to rest during a break from I-2 patching operations and as employee was rising to the upright position he noticed some discomfort in his right knee. Supervisor: joel riley
## 4451                                                                              10/22/2007 03:24 pm (mdsloan) employee was lifting sign rack to place onto the back of a boom tractor and felt pain along left side of neck back and left arm. Supervisor: milton tapp
## 4452                                                                                                                      10/22/2008 08:58 am (fblackmo) employee was walking to her car when, she twisted her ankle and fell in parking lot. Supervisor: barry bridgers
## 4453                                                                                                10/23/2000 03:51 pm employee was working in the project amber building on 10/6/00; when he hit his left knee against a piece of steel. Supervisor: kevin lamar cooke
## 4454                                                                  10/23/2000 03:57 pm employee was putting out traffic counters on 10/11/00; when he came in contact with a chemical poison. He has contact rash on both arms and hands. Supervisor: phillip johnson
## 4455                                                                                                    10/23/2000 04:05 pm employee was flagging during the removing of limbs on sr 1700; when he was bitten by a tick on the back of his head. Supervisor: greg vinson
## 4456                                                                                                          10/23/2000 04:39 pm employee was cleaning rip rap off of tailgate truck; when a large piece fell and hit his right little finger. Supervisor: cleve barton
## 4457                                                                                                         10/23/2000 12:03 pm employee was participating in defensive tactics exercises when he complained of pain in his right shoulder. Supervisor: ssg. T. Hickman
## 4458                                                            10/23/2000 12:25 pm employee was clearing brush (weedeating) around lake when he came in contact with poison ivy plants. Mr. Craig has contact rash on both hands and arms. Supervisor: h. Howard-acting
## 4459                                                                                                                                  10/23/2000 12:33 pm Mr. Whitt sprain/strained his left knee while walking down fill slope on sr 1402. Supervisor: kenneth t. Hicks
## 4460                                                                   10/23/2001 03:41 pm (fblackmo) employee was standing on ground lifting a bale of straw onto back of lwb dump truck, while unloading employee felt a pain in his groin area. Supervisor: p. D. Fox
## 4461                                                                        10/23/2001 03:53 pm (fblackmo) employee lifted a full file drawer off the rollers when placing the cabinet back down employee felt a pain in his lower back. Supervisor: william m. Wilhalam
## 4462                                                                                            10/23/2001 04:06 pm (fblackmo) employee was exiting backhoe which was still on trailer. Employee missed step onto trailer and fell to asphalt. Supervisor: c. C. Coggins
## 4463                                           10/23/2001 10:00 am (fblackmo) employee was transferring tar from the contract tanker to the d. O. T. Tanker when, the hose came a loose causing some of the matter to get into employees eye. Supervisor: c. W. Burleson
## 4464                                                                                                                                                     10/23/2001 10:16 am (fblackmo) employee was walking and tripped on carpet in office. Supervisor: edith mcdaniel
## 4465                                                                                                               10/23/2002 07:21 am (fblackmo) employee was mowing shoulder of road when, a rock flew up hitting him under his left eye. Supervisor: r. J. Hollifield
## 4466                     10/23/2003 02:19 pm (fblackmo) employee pulled chair out from under desk to have a seat when, the chair rolled back farther than employee thought. Employee fell to the floor hitting his head on the file cabinet. Supervisor: r. W. Rhodes jr
## 4467                                                                                                              10/23/2003 02:31 pm (fblackmo) employee was working on survey project u-2107d when, he was bitten by a tick on his left arm. Supervisor: darren howell
## 4468                                                                                                                                   10/23/2003 02:46 pm (fblackmo) employee was using drill when, foreign matter flew into his right eye. Supervisor: charles watkins
## 4469                                                                                     10/23/2003 02:57 pm (fblackmo) employee states while carring equipment and walking form one point to another, stepped wrong and twisted right ankle. Supervisor: c. S. Mcdonald
## 4470                                                                                           10/23/2003 03:07 pm (fblackmo) employee was unlocking paper towel dispenser in restroom when, the top fell down on her right arm causing a cut. Supervisor: harvey magnum
## 4471                                               10/23/2003 03:21 pm (fblackmo) employee was walking cross a ditch looking down when, he ran into the tailgate of a tandem dump truck causing the injury to his head, neck, and shoulder. Supervisor: d. M. Livingston
## 4472                                                                                    10/23/2003 03:35 pm (fblackmo) employee was cutting debris from the storm when, he was stung multiple times on his head, back, chest, arms, and legs. Supervisor: archie coghill
## 4473                                                                                                                                       10/23/2003 03:45 pm (fblackmo) employee was washing hydro-seeder when, debris flew into his left eye. Supervisor: a. J. Mintz
## 4474            10/23/2007 01:09 pm (mdsloan) employee was carrying new blades to be uput on grader and as he leaned down under the grader and laid the blades on ground underneath the grader and as he raised back up his back brushed the circle on the grader. Later
## 4475                                                                                                       10/23/2007 08:32 am (mdsloan) employee was looking for a frame number under a vehicle when either rust or dirt fell in left eye. Supervisor: antonio caldwell
## 4476                                                                                 10/23/2007 09:01 am (mdsloan) employee was putting a pin back in the cylinder of thumb on the backhoe, when the thumb pivoted and hit employee in the side. Supervisor: greg jordan
## 4477                                                                                           10/23/2007 10:40 am (mdsloan) employee was shoveling and raking asphalt from a pile on the ground when he felt a sharp pain in his right elbow. Supervisor: bobby leonard
## 4478                                                           10/23/2007 11:39 am (mdsloan) employee had been cutting and pulling limbs and had finished the job and as he was removing his hat and safety glasses some debris fell into his eye. Supervisor: jp ingram
## 4479                                                                                           10/23/2008 04:26 pm (fblackmo) employee was placing cones on the wet yellow paint lines on forestville road when, he was stung by a yellow jacket. Supervisor: ira harris
## 4480                                             10/23/2009 09:51 am (bhenders) employee was traveling east on nc 92 at approximately 5:15 p. M. When a vehicled slowed to turn into a driveway. As employee was slowing down, employee was struck from behind by a pov.
## 4481                                                                                                               10/24/2000 10:06 am employee stepped down from asphalt kettle on 10/10/00. He slipped and twisted/strained his left knee. Supervisor: larry carpenter
## 4482                                                                            10/24/2001 11:07 am (fblackmo) employee was putting a tarp over I-2 asphalt in dump truck, his foot slipped and he fell hitting his left side on bed of truck. Supervisor: alan e. Brown
## 4483                                        10/24/2001 11:24 am (fblackmo) employee states that, injury occurred while shoveling asphalt and gravel. Employee experienced a great amount of pain in back when shoveling that day on June 11, 2001. Supervisor: not given
## 4484           10/24/2002 08:15 am (fblackmo) employee was flagging traffic, the first vehicle stopped, the second vehicle failed to stop and knock the first vehicle into employee. Employee was knocked 8 feet into the air before landing on the surface. Supervisor:
## 4485                                                                                                                                      10/24/2002 08:49 am (fblackmo) employee stated that while exiting van, he felt pain in his right hip area. Supervisor: k. King
## 4486           10/24/2002 09:31 am (fblackmo) employee was assisting another employee with the installation of a new cutting blade on the motor grader outside of the equipment shop. Employee had completed lifting one end of the approximate 80lbs motor grader blade
## 4487                                                                                                            10/24/2002 09:48 am (fblackmo) employee was traveling north on us 17 near us 17 business in shallotte when, he passed out. Supervisor: thomas e. Johnson
## 4488                                                                            10/24/2003 07:14 am (fblackmo) employee was changing a tire on a multi-piece rim with a hammer. Employee states afterwards he felt pain in his right hand. Supervisor: james keith smith
## 4489                                                                   10/24/2003 07:27 am (fblackmo) employee was removing harmonic balancer form the front of engine. Balancer came forward and jammed thumb between balance and truck frame. Supervisor: jimmy ammons
## 4490                                                                                                     10/24/2003 07:38 am (fblackmo) employee was using a stake puller when, the puller slipped off stake and struck employee across the nose. Supervisor: b. R. Webb
## 4491                                                                   10/24/2003 07:50 am (fblackmo) employee was operating a bulldozer pushing storm debris in stockpile pit when, the end of a limb struck employee on his left calf muscle. Supervisor: r. L. Taylor
## 4492                                                                                                                    10/24/2003 08:36 am (fblackmo) employee was exiting his dump truck when, he fell causing the injury to his left foot. Supervisor: johnny murdock
## 4493                                 10/24/2003 09:31 am (fblackmo) employee had stopped truck on shoulder of road to check for a possible anti-freeze leak. A private truck passed and wind blew truck hood down and struck employees nose. Supervisor: robert g. Davis
## 4494                   10/24/2005 04:20 pm (fblackmo) employee states while hauling stumps over rough terrain the truck hit a hump causing it to jerk employee around inside the truck. Employee injured his back and experienced some leg pain. Supervisor: ronnie king
## 4495                                                              10/24/2005 09:27 am (fblackmo) employee was cutting bushes on side of bridge. His foot slipped, he fell, and his hand fell on bush axe causing injury to his right thumb. Supervisor: jeremy b. Creech
## 4496                           10/24/2005 10:49 am (fblackmo) employee was flagging traffic in work zone when, a car ran stop paddle coming in his direction. Employee attempted to jump guardrail when, the injury occurred to his arm and leg. Supervisor: ronnie king
## 4497                                                                            10/24/2005 11:01 am (fblackmo) employee parked truck on edge of road at job site. Employee was exiting truck when, his arm brushed against tree with poison ivy. Supervisor: rick gordon
## 4498                                        10/24/2007 10:36 am (mdsloan) employee was attending the yearly employees appreciation picnic and after lunch employees play a game of softball when employee sustained laceration to his right hand. Supervisor: mark davis
## 4499                                                    10/24/2008 01:13 pm (blgay) employee was trying to load angle iron on to forklift. Angle iron rolled onto employees hand, causing a chipped bone and torn tendon in right middle finger. Supervisor: chad dennis
## 4500         10/24/2008 03:09 pm (fblackmo) employee was riding with another employee checking bridge clearance and felt a sharp pain that went from his stomach, to chin, and down his back. When he stepped out of the vehicle the pain hit him again and it was unbea
## 4501                              10/24/2008 12:59 pm (blgay) employee was waiting on next load of asphalt, when he walked over to stand beside another employee, bee stung him on his left forearm. Employee had an allergic reaction to sting. Supervisor: brian smith
## 4502                                                                  10/25/1999 02:50 pm employee was hooking cable from the wrecker to an h-pile. The cable did not have enough slack and as he hooked the cable he mashed his finger. Contusion on left index finger.
## 4503                                                                                                                                                  10/25/1999 03:13 pm employee lifted a bag of mortar mix. As she turned to put it on the truck she pulled her back.
## 4504                                                                                                                       10/25/1999 09:04 am employee was walking across barge and toe of shoe caught cable and employee fell fracturing left arm. 02/04/2000 10:16 am
## 4505        10/25/1999 09:17 am suck hose was not properly secured in mud tub causing shells & sand to be pulled into drill string & clog the rods. As m. B. Oliver attempted to clear the blockage, he was hit in the face by a blast of mud, sand & shells which scrat
## 4506                                                                                                                                                      10/25/1999 09:32 am employee was pulling tree limbs off right of way on sr 1102 when his right knee gave away.
## 4507                                                                                                 10/25/1999 09:45 am employee was issuing driver license. She has issued driver license for 15 years. Right hand carpel tunnel, tendonitis, rt. Elbow & rt. Shoulder
## 4508                                                                                   10/25/2000 02:43 pm employee was crossing the road carrying cones to put down on roadside. Employee stepped and fell into a hole and strained his back. Supervisor: w. S. Richard
## 4509           10/25/2000 09:33 am employee sat down for lunch in a patch of poison ivy plants and was unaware of the poison plants. Mr. Craig has contact rash on the right side of his face and both eyes are swollen. Mr. Craig is highly allergic to this plant. Sup
## 4510                                                                                                          10/25/2000 09:45 am employee stepped down off roller and lost his footing. Mr. Watkins fell to the ground bruising his right heel. Supervisor: t. Cottrell
## 4511                                                                                                                                   10/25/2000 09:53 am employee was clearing brush when the bushaxe broke causing him to cut his left forearm. Supervisor: john abel
## 4512                                                               10/25/2000 09:59 am employee was lifting scales from trunk of patrol car to weigh a truck on 7/31/00. He pulled muscles in his neck and both shoulders (upper back area). Supervisor: sgt. D. L. Reid
## 4513          10/25/2000 10:07 am employee stated that he was standing on truck bed loading barrels of paint; when he turned to climb off the truck he lost footing and jumped to the ground. Mr. Parham has a contusion on his left heel due to this incident. Supervis
## 4514                                                                  10/25/2000 10:34 am employee stated she has carpal tunnel pains in her right shoulder. She states she has too much typing on this job and the work load is heavy. Supervisor: shandee ruffin-perry
## 4515            10/25/2000 10:42 am employee was sitting in truck adding totals up; when the tire on trailer blew out (exploded). Mr. Crumpler's car was positioned beside the trailer. Mr. Crumpler has had hearing problems in the past, so this exploding tire irrate
## 4516              10/25/2000 10:55 am employee along with a coworker was lifting tailgate so that the fork lift could get under it on 9/15/00. Mr. Faircloth was using proper lifting techniques when he felt muscles pull in his left knee. Supervisor: luther thompson
## 4517                                                                           10/25/2000 11:02 am employee was climbing down stairs on ferry vessel when his left foot slipped. Mr. Piner fell striking the handrail with his left upper arm. Supervisor: jerry gaskill
## 4518                                                   10/25/2000 11:54 am employee was just beginning a road test when his head struck the window giving him a concussion. The customer pulled into the street and collided with another car. Supervisor: jere e. Hyder
## 4519                                                                                                     10/25/2001 03:08 pm (fblackmo) employee was surveying in a wooded area and turned his right ankle, causing the injury to his foot. Supervisor: d. C. Bodenhamer
## 4520                                                                                                   10/25/2001 09:48 am (fblackmo) employee was checking under hood of truck, tried to remove wild cat, cat bit employee on right thumb. Supervisor: c. N. Edwards jr
## 4521                                                                                                                                                 10/25/2001 10:03 am (fblackmo) employee states that wind blew debris into his left eye. Supervisor: brian k. Glover
## 4522            10/25/2001 10:16 am (fblackmo) employee was strapping down wooden bin boxes on flatbed truck the binder hook was hung on the top box. Trying to get the strap over the four boxes, employee climb up to the top box to free the strap and while climbing
## 4523                                   10/25/2001 10:28 am (fblackmo) employee was picking up debris from cleaning off a fence on the right of way. Employee picked up a piece of wood and felt a pain in his left arm and wrist. Supervisor: kw shifflett and ke pruett
## 4524                                            10/25/2001 11:08 am (fblackmo) employee cut right hand on sharp edge of metal from clutch housing, bolt broke loose and wrench came up and hand came into contact with edge of metal edge. Supervisor: gerald e. Brabble
## 4525                                                                               10/25/2001 11:25 am (fblackmo) employee was unloading a desk from the back of a pickup truck while lifting the desk employee felt a pull in his lower back. Supervisor: j. D. Tyndall
## 4526                                                                                                 10/25/2002 10:03 am (fblackmo) employee was adjusting fuel injector on diesel hammer, when misfire causing explosion near face and eye. Supervisor; steve h. Taylor
## 4527                                                               10/25/2002 10:20 am (fblackmo) employee was loosening tie-down from a trackhoe on a low-boy. The low-boy operator lowered the trailer on to the right foot of the employee. Supervisor: v. D. Summers
## 4528                                                                                                                                  10/25/2004 02:59 pm (fblackmo) employee states a chain hoist broke striking him on his right forearm. Supervisor: g. J. Von suskil
## 4529                                                                                            10/25/2004 03:09 pm (fblackmo) employee was getting out of truck when, he slipped and fell causing the injury to his lower back and right knee. Supervisor: j. H. Ensley
## 4530                                                                                                                                                10/25/2004 03:22 pm (fblackmo) employee was bitten by an unknown insect on his right hand. Supervisor: t. S. Collins
## 4531                                                                                                                              10/25/2004 11:35 am (fblackmo) employee states while doing daily duties she experience pain in her right hand. Supervisor: anthony law
## 4532                                      10/25/2005 03:29 pm (blgay) employee was in truck bed spraying liquid wrench on nuts and bolts on a sign post, when he stepped on a metal rod causing right foot to slip and twisted his right leg. Supervisor: roderick wyatt
## 4533                                                                                               10/25/2005 03:45 pm (blgay) employee was trying to get on the lawn mower and his hand slipped off the seat causing his shoulder to pop. Supervisor: reuben e. Blakley
## 4534                                                                                                 10/25/2005 08:14 am (fblackmo) employee had been grinding metal when, he stopped to rub his eye, a foreign matter entered into his eye. Supervisor: franklin granda
## 4535                                                                                                                    10/25/2005 08:27 am (fblackmo) employee was putting in road pipe when, he came into contact with poison ivy on both arms. Supervisor: greg ruppe
## 4536                                                                                                     10/25/2005 08:41 am (fblackmo) employee was delivering a message to another employee when, she was stung by a bee on her finger/hand. Supervisor: j. B. Hampton
## 4537                                                    10/25/2005 09:39 am (fblackmo) employee was going to a wc conference. Coming off of I-40 onto page road, was hit in rear at stop light. Employee experienced pain in back and neck area. Supervisor: bob andrews
## 4538                                                                                          10/25/2005 09:50 am (fblackmo) employee was conducting a road test when, the vehicle was hit in the rear. Employee felt pain in back and neck area. Supervisor: g. Sheldon
## 4539                     10/25/2007 02:05 pm (mdsloan) employee was standing in the door of a truck working on the tarp when employee felt foot starting to slip and he grabbed the band rail with his left hand and he felt a pull in his back. Supervisor: keith rhyne
## 4540                                                                                                                                     10/25/2007 02:40 pm (mdsloan) employee stepped on uneven surface and as a result twisting right ankle. Supervisor: clyde mauney
## 4541           10/25/2007 03:41 pm (mdsloan) employee had been working with an inmate who had stated that he was taking medication for MRSA. Since the employee has diabetes and had visible sore on his skin. We requested that he be tested to insure that the problem
## 4542           10/25/2007 04:21 pm (mdsloan) employee was getting a sample of concrete from a 1 yd concrete bucket employee was holding bucket under chur. The operator of truck discharged to much concrete at one time causing bucket that employee was holding to ove
## 4543                                                                                                            10/25/2007 04:44 pm (mdsloan) employee was cutting trees on right of way on gold hill road when he encountered poison ivey (oak). Supervisor: e. Foreman
## 4544                                                                                                    10/25/2007 10:39 am (mdsloan) employee was in chair and bent over trying to plug in an electrical device when back muscle was pulled. Supervisor: patrick clancy
## 4545             10/25/2007 11:42 am (mdsloan) employee was rolling barrels of oil up the a ramp to put into the contaminant area when the barrel went over the side of the ramp and the employee reached to catch it straining left groin area. Supervisor: keith hutch
## 4546         10/25/2008 09:12 am (fblackmo) employee was trying to break a casing adapter from the casing using 36" wrench with a 4" cheater bar. Employee was standing on the wrench when it broke and snapped upward causing injury to his right foot. Supervisor: jar
## 4547                                                                    10/25/2008 11:43 am (fblackmo) employee was repairing tire on broom tractor. While exiting rear of truck his foot slipped off bumper causing pain to his lip hip area. Supervisor: m. B. Mizelle
## 4548             10/26/1999 03:45 pm Mr. Boddie suffered bruised to his head while tightening wing nuts on trailer. Another employee lowered the front bucket down causing the bucket to hit Mr. Boddie's head. Supervisor: jimmie evans. Note: this claim was entered I
## 4549                                                                                                                                               10/26/1999 07:26 am repairing guardrail lifting and pulling at some point and began to hurt. Groin area in upper leg.
## 4550                                                                                                                                                                                        10/26/1999 07:36 am lifting sign post off the ground. Hernia in lower abdon.
## 4551          10/26/1999 07:45 am walser was picking up cone in preparation to clear an accident scene on I-85 shp trooper backed his car around imap truck without blowing horn. Walser picked up cones turned to put in truck and walked into moving troopers vehicle.
## 4552                                                                                                             10/26/1999 08:28 am employee was helping to remove an injured and trapped man from a burning car. During the retrieval he inhaled smoke into his lungs.
## 4553                                                                                                                                        10/26/2000 04:29 pm employee was lifting (moving) lumber when he twisted/strained his lower back. Supervisor: t. K. Southard
## 4554                                                                             10/26/2000 04:37 pm employee was trying to get on a stool. She placed her hands on the counter to lift herself when her right shoulder (dislocated) popped. Supervisor: rebecca simpson
## 4555              10/26/2000 04:46 pm employee was removing a projector from a storage shelf; when the projector fell striking him in the nose and mouth. He has lacerations to his nose and 2 front teeth were knocked out of his bridge. Supervisor: john t. Stallings
## 4556                                                                                  10/26/2000 04:54 pm employee pulled up to asphalt loader with flat bed truck to get mix; when the mix came out of the bin and burnt his left arm and hand. Supervisor: terry woody
## 4557            10/26/2001 03:27 pm (fblackmo) employee walked in office, stood in front of desk and placed daily road list on desktop. He turned to leave when his left foot got caught in the phone cord. As he made his turn, the phone cord pulled tight and he fell
## 4558                                           10/26/2001 03:54 pm (fblackmo) employee was using cool tool while cutting a pipe. When he stepped from the shaft guard he slipped on the cool tool that dripped on the center vertical keel. Supervisor: richard dewhurst
## 4559                                                                 10/26/2001 04:10 pm (fblackmo) employee was repairing a leaking air line to the drivers seat, when he removed the line and the air came out the seat fell on his hand. Supervisor: george e. Morris
## 4560          10/26/2004 08:13 am (slee) traffic was backed up from a different wreck and employee was sitting still. Two tractor-trailers were approaching on the left side of the sov. The truck in the rear hit the truck in front of it causing the trailer to jack-
## 4561                                                                                                                               10/26/2004 09:59 am (fblackmo) employee was raking asphalt when, he felt pain in his back, hip, and leg. Supervisor: r. J. Hollifield
## 4562                                                                                                           10/26/2004 10:46 am (fblackmo) employee was stepping out of truck when, he stepped onto uneven pavement twisting his left ankle. Supervisor: s. G. Dillon
## 4563                                                                                                                      10/26/2004 10:59 am (fblackmo) employee states while leaning over desk to answer phone she, felt a pop in her back. Supervisor: dallie bagwell
## 4564                                                                   10/26/2010 03:54 pm (fblackmo) employee was walking behind the tractor when, he saw a snake. Employee jumped out of the way and hit his buttocks/tail bone on the tractor. Supervisor: gordy eure
## 4565                                                                             10/27/1999 03:44 pm employee was standing on tire of lube truck checking oil, feet slipped & he grabbed the rail on side of truck to keep from falling to ground and strained shoulder.
## 4566          10/27/1999 03:54 pm employee was removing parts of fallen tree from road after this tree had been sawed up by another employee. There was a poisonous plant grown around tree & injured could have been caused by handling said tree or by airborne saw du
## 4567                                                                                                      10/27/2000 09:09 am employee cut his left knee when a bush ax came out of a piece of wood. Employees was trying to remove a beaver dam. Supervisor: ronald lee
## 4568                                                                                                                10/27/2000 09:17 am employee was pushing/raking asphalt when he felt a sharp pain in his left side (ribs) on 10/18/00. Supervisor: c. N. Edwards, jr
## 4569                                      10/27/2000 09:25 am employee was assisting another employee carry a 4" x 8" x 18" board; when the other person stumbled and dropped the board. Mr. Cantrell's muscles in his lower back was strained. Supervisor: j. C. Gunter
## 4570                                          10/27/2000 09:32 am employee was on his way to clean out the end of a concrete pipe; when he slipped on loose sand and fell into a ditch. Mr. Gore sprain/twisted his right knee. Supervisor: william edward mcclendon, jr
## 4571          10/27/2003 07:27 am (slee) employee was parking in parking lot of the economy inn at corner of us 17 and henderson drive in jacksonville. He pulled forward to get closer to work area and struck metal pole painted yellow in corner of parking lot, dama
## 4572                                                                                                                                                                10/27/2003 09:07 am (slee) pov failed to reduce speed to avoid rear -end collision with dot vehicle.
## 4573                                                                                                      10/27/2004 02:45 pm (fblackmo) employee was working on road construction when a tree sprung around striking him on his lower right leg. Supervisor: c. F. Vick
## 4574                                                                                              10/27/2004 02:57 pm (fblackmo) employee was clearing trees on right of way when, one of the limbs snapped back striking him in the face. Supervisor: perry u. Mitchell
## 4575                                                                                                                     10/27/2004 03:08 pm (fblackmo) employee states while climbing down ladder he, missed his step falling to pavement. Supervisor: william t. Stone
## 4576                                                             10/27/2004 04:07 pm (fblackmo) employee was removing nails from boards, and stacking them in a pile. Employee states he twisted the wrong way causing pain to his lower back. Supervisor: r. D. Pittman
## 4577                                                                                               10/27/2004 11:34 am (fblackmo) employee states he was stepping off a tire after inserting a tire tool when, he felt pain in his right knee. Supervisor: jesse hansley
## 4578                                                                                     10/27/2004 11:49 am (fblackmo) employee states fumes got into the cab of pickup from loader. Employee experienced chest pains, and trouble breathing. Supervisor: w. A. Russell
## 4579                                                                                  10/27/2005 02:27 pm (blgay) employee was rearranging some boxes in the state issued van, when he lifted a heavy box felt a sharp pain in neck and upper back. Supervisor: pat ivey
## 4580                                                                 10/27/2005 02:40 pm (blgay) employee was cutting bushes on bridge right of way and came in contact with a nest of yellow jackets, stinging him on the chest and stomach. Supervisor: david l. Moore
## 4581                                                                                                                                  10/27/2005 02:50 pm (fblackmo) employee hit her right wrist on sharpe edges of machinery in storage room. Supervisor: angie sawyer
## 4582                             10/27/2005 09:38 am (fblackmo) employee was turing imap truck into parking lot when, he was hit in the rear by a private vehicle(driver was on cell phone). Employee felt pain in his back and neck area. Supervisor: r. Steven bridges
## 4583                                   10/27/2005 09:51 am (fblackmo) employee was installing a engine in van, he was having trouble clearing frame and mounts, he pulled on the engine in a awkward position causing pain to his back area. Supervisor: keith hutchison
## 4584                                                                   10/27/2005 10:05 am (fblackmo) employee was fabricating a wrench for the paint machine grinding the edges to make smooth when, foreign matter got into his right eye. Supervisor: d. W. Burchette
## 4585         10/27/2005 11:05 am (fblackmo) employee was fertilizing daylily beds with a tractor and fertilizer spreader on the slopes when, he hit a hole and the fertilizer hopper shifted and flipped tractor over. Employee felt pain in his back and left leg. Supe
## 4586                    10/27/2005 11:19 am (fblackmo) employee picked up a tamp and lifted it out of a ditch. After lifting out of the ditch tamp slipped and started to fall back into the ditch. Employee grabbed the tamp twisting his back. Supervisor: keith smith
## 4587                                                                                                                 10/27/2005 11:30 am (fblackmo) employee was pulling himself up into road tractor when, he felt pain in his right shoulder. Supervisor: h. E. Worley
## 4588                                                        10/27/2005 11:39 am (fblackmo) employee was sitting in his truck filling out paper work when, he heard a fire arm discharge. Shotgun pellets struck employee on left cheek and ear. Supervisor: r. D. Powell
## 4589                                                                                                       10/27/2006 01:55 pm (fblackmo) employee was clearing brush from under bridge with chainsaw when, he came in contact with poison oak. Supervisor: g. Todd cole
## 4590                                                                                                                        10/27/2006 02:05 pm (fblackmo) employee was pulling asphalt with rake and felt something pull in his right shoulder. Supervisor: rick gordon
## 4591                                                                                                                             10/27/2006 02:13 pm (fblackmo) employee was cutting broken gate arm with saw when, wind blew matter in his eyes. Supervisor: niles long
## 4592                                                                                                                               10/27/2006 02:30 pm (fblackmo) employee was operating a jack hammer when, he felt pain in left shoulder. Supervisor: t. G. Culbertson
## 4593                                                                                                                                           10/27/2006 02:38 pm (fblackmo) employee turn to answer phone when, she felt pain in left hand. Supervisor: connie bullock
## 4594         10/27/2006 10:00 am (fblackmo) employee was conducting a road test when, customer failed to straighten steering wheel after making right turn. Customer hit the gas pedal causing the car to hit a tree on right side of road. Employee felt pain in his ne
## 4595          10/27/2006 10:22 am (fblackmo) employee was using backhoe to clean up a fallen tree when, branch rolled forward causing the backhoe to slip over embankment and turn over. Employee felt pain in back, left ankle, and rib area. Supervisor: james r. Ashe
## 4596                                                                                                                                      10/27/2006 11:03 am (fblackmo) employee twisted back while cleaning out the end of a driveway pipe. Supervisor: w. Q. Liverman
## 4597                                                                                  10/27/2006 11:13 am (fblackmo) employee was installing culvert on state road when, lifting on end placing it in a ditch he, felt pain in right shoulder. Supervisor: james r. Ashe
## 4598                                                                                                     10/27/2006 11:24 am (fblackmo) employee was attempting to lower the ramps on a trailer (3201 cc) when, he felt a pop in his left wrist. Supervisor: r. A. Baker
## 4599                                                                                            10/27/2006 11:34 am (fblackmo) employee was shoveling concrete out of rubber tire loader bucket when, he felt pain in his lower back area. Supervisor: william r. Briley
## 4600          10/27/2008 05:09 pm (fblackmo) employee was throwing tires on tarp to cover sand pile on maintenance yard when, he strain his right shoulder. Employee also states that he "thought he slept on his shoulder wrong" and needed to get off work on 9/29/08.
## 4601                 10/27/2008 08:43 am (blgay) employee was attempting to return to vehicle he had been operating, as he turned to got o the truck, he lost his footing on some loose gravel in the parking area and turned his right ankle. Supervisor: mark williams
## 4602                                                                   10/27/2009 02:16 pm (fblackmo) employee was loading tamp in back of flat bed truck when, his right ring finger got mashed between side rial of truck and foot of tamp. Supervisor: herman futrell
## 4603                                                                                                                                      10/27/2009 02:39 pm (fblackmo) employee was weed eating when, a piece of plant went into his left eye. Supervisor: mark conner
## 4604                                                                                          10/27/2009 03:07 pm (fblackmo) employee was working on storm drainage installation project in chadbourn when, he found a tick under left arm. Supervisor: kenneth l. Clark
## 4605                                                                                    10/27/2009 03:21 pm (fblackmo) employee was cutting steel with chop saw when, a piece of met got into his left eye. Supervisor: robert w. Norwood 08/24/2010 09:26 am (lvaughan)
## 4606         10/27/2009 08:02 am (blgay) employee was changing cutting blade on backhoe. Bucket bolt dropped and employee reached up to adjust bolt and continue to tighten bolt. Bolt spun cutting ring finger and middle finger on left hand, causing stitches to both
## 4607                                           10/27/2009 09:25 am (blgay) employee was walking to the excavator that was parked off the roadway and stepped on a small tree stump that had been cut low to the ground, twisting his left ankle. Supervisor: kevin smith
## 4608         10/27/2009 09:35 am (blgay) employee was cutting a tree from the right-of-way and came into contact with the poison vines that were entangled on the tree. A backhoe was used to push back vegetation and employees did apply barrier cream before starting
## 4609                                                                                                                     10/27/2009 11:21 am (fblackmo) employee informed her supervisor that she hurt her back lifting motor cycle cones. Supervisor: vickey s. Bridges
## 4610                                                                                              10/27/2009 11:37 am (fblackmo) employee had finish sanding when, he removed his mask he felt a large lump on the right side of his forehead. Supervisor: thomas bowser
## 4611                                                                                                                                10/27/2009 12:35 pm (fblackmo) employee states alleged hearing loss due to on the job continuous noise. Supervisor: richard dewhurst
## 4612                                                                                              10/27/2010 08:57 am (fblackmo) employee was helping clear a tree from the right of way when he came in contact with poison ivy on both arms. Supervisor: stan paramore
## 4613            10/27/2010 09:27 am (barnes) employee was working on snow equipment on the yard. While he was working, he was stung by a yellow jacket. Employee started having breathing problems and went to the er for treatment. Employee injured his right wrist. S
## 4614                                                                                                      10/27/2010 09:50 am (fblackmo) employee was removing a tree from right of way when, he came into contact with poison ivy on both arms. Supervisor: nick bryant
## 4615                                                                                                            10/27/2010 09:54 am (barnes) employee was getting into dump truck and twisted his right ankle. Employee injured right ankle. Supervisor: harold williams
## 4616                                  10/27/2010 10:19 am (barnes) employee was shoveling to remove a pile of rock in the road. He twisted to empty the shovel and felt a sharp pain in his lower back. Employee injured right lower back. Supervisor: jennie weatherman
## 4617           10/27/2010 10:44 am (barnes) employee was hooking a utility trailer. The trailer slipped off the hook and hit employee on right foot behind the steel on his boot. Employee injuries are foot contusion, bruising and swelling of distal right foot. Supe
## 4618                                                                                10/27/2010 11:06 am (fblackmo) employee was exiting truck after getting to the jobsite. Employee cut his left hand on a piece of metal hanging off the truck. Supervisor: w. D. Lane
## 4619                                                                                                            10/27/2010 11:19 am (fblackmo) employee was stacking wattle rolls when he became hot and had trouble breathing. Heat exhaustion. Supervisor: chris vause
## 4620         10/27/2010 11:32 am (fblackmo) employee was working on installing a driveway pipes in a large ditch. There was a wooden walk bridge across the ditch approximately 100' down form the pipe location. Employee used the bridge to line up the pipes. While w
## 4621                                                                                                    10/27/2010 11:42 am (fblackmo) employee was walking to position sign beside road when, he stepped in a hole and twisted his right knee. Supervisor: eugene autry
## 4622          10/27/2010 12:04 pm (fblackmo) employee was standing adjacent to excavator when the excavator move forward; the track rolled over his right calf, pressing it down over his foot. The operator did not see employee standing close to the machine. Supervi
## 4623                                                                              10/28/1999 07:36 am employee received a tetanus shot due to possibility of working in a flooded area in another county. Swelling, redness and fever in right shoulder almost to elbow.
## 4624                                                                                10/28/1999 07:49 am removing grader tire from rear of truck. Tire became over balanced, falling and catching employees finger between tire & truck body. Cut middle finger rt. Hand.
## 4625                             10/28/2002 02:18 pm (fblackmo) employees' vehicle and the private vehicle behind him had come to a complete stop at perdistrain crossing. Third vehicle failed to stop knocking second vehicle into employee. Supervisor: henry t. Moon
## 4626                                                                    10/28/2002 02:33 pm (fblackmo) employee was pulling pipe from back of flatbed truck when, his left arm scraped against a piece of metal causing a cut on his forearm. Supervisor: a. M. Lewis jr
## 4627           10/28/2002 02:45 pm (fblackmo) employee was attempting to empty the cuttings from the mud tub when, it slipped off the platform. Employee fell into the drilling cutout of the platform striking his lower back on the casing that was protruding thought
## 4628                                                                                                                          10/28/2002 03:02 pm (fblackmo) employee was working off I-95 when, two trucks came by blowing debris into his eyes. Supervisor: m. S. Wade
## 4629                                                                                                        10/28/2002 03:13 pm (fblackmo) employee was lifting metal vise when he lost his grip, metal fell striking employee in his left knee. Supervisor: b. R. Moore
## 4630                                                                                         10/28/2002 03:23 pm (fblackmo) employee was drifting toward the right edge of the road to let a car pass when, loose rock caused him to overturn. Supervisor: john w. White
## 4631                                                                                                                             10/28/2002 03:38 pm (fblackmo) employee was lifting a bale of straw when he felt stinging in his left upper leg. Supervisor; keith hill
## 4632           10/28/2002 03:54 pm (fblackmo) employee stated that he was unloading straw form a trailer. The first stack of straw was packed very tightly. Attempting to remove the first bale, the string on the bale broke causing him to fall from the rear of the t
## 4633                                                                                                                                  10/28/2003 02:07 pm (fblackmo) employee was helping install a 24" pipe when, he felt pain in his back. Supervisor: george w. Price
## 4634                                                                                                                                10/28/2003 08:26 am (fblackmo) employee was picking up asphalt by hand when, he felt pain in his left wrist. Supervisor; k. R. Davis
## 4635                                                                                                                        10/28/2003 08:48 am (fblackmo) employee states while stepping up into motor grader he, felt pain in his right knee. Supervisor: thomas deans
## 4636            10/28/2003 08:58 am (fblackmo) employee was driving state vehicle when, a private vehicle crossed the center line and struck employee head on. Employee veered to the right and applied the brakes prior to impact. Supervisor: d. R. Summers 04/12/2004
## 4637         10/28/2003 09:18 am (fblackmo) employee was walking down embankment at job site, he stepped on loose rock and lost his balance. He was carrying an oil can, a gas in one hand and a potato digger in the other hand when he fell. Supervisor: w. D. Watkins
## 4638                                                                                                             10/28/2003 09:34 am (fblackmo) employee was leaving building to move his vehicle when, he slipped and fell on the steps. Supervisor: christopher oliver
## 4639                                                 10/28/2003 09:45 am (fblackmo) employee was assisting in the removal of a damaged sign support (u-channel posts) when, a short piece of x bracing broke loose striking him on the head. Supervisor: j. S. Tomlinson
## 4640                                                                                                                            10/28/2003 10:39 am (fblackmo) employee was working under vehicle when, he raised up he hit his head on a bar. Supervisor; m. W. Perkins
## 4641                                                                                                                     10/28/2003 10:54 am (fblackmo) employee states while working on patching operation he, was stung by a bee on his neck. Supervisor: k. F. Hughes
## 4642                                                                                                                                       10/28/2003 11:22 am (fblackmo) employee states he was driving down the road when, he blacked out. Supervisor: jerome locklear
## 4643                                                                                                                   10/28/2003 11:57 am (fblackmo) employee states while burning msd pipeline a piece of steel flew into his right eye. Supervisor; kevin lamar cooke
## 4644         10/28/2004 08:57 am (fblackmo) employee was installing metal stakes for silt fence installation. He was positioning the stakes with his hands and using his foot to drive the stakes into the ground by forcing his foot down on the guide plate of the sta
## 4645                                                                                     10/28/2004 09:08 am (fblackmo) employee states while walking back to truck to pick up led he, stepped in a hole causing the injury to his right knee. Supervisor: rudy bachelor
## 4646         10/28/2008 02:17 pm (blgay) employee was attending a self defense class and they were doing practical portion of class work. A partner that he was working with attempted a take down on this employee. In so doing, the partner hit employees knee with hi
## 4647                        10/28/2008 03:07 pm (blgay) employee was leaving asphalt plant when spray bottle fell on floor of truck. Employee leaned over to pick up bottle, veered off shoulder of road and truck flipped over on its side. Supervisor: willie robinson
## 4648                                                                                     10/28/2009 03:18 pm (fblackmo) employee was shutting off water value while walking back up incline he lost his footing striking left knee on the ground. Supervisor: k. D. Gray
## 4649                                                                                                                                      10/28/2009 03:30 pm (fblackmo) employee was raking hot asphalt when, he fell causing burn to left elbow. Supervisor: ben nelms
## 4650                                                                                             10/28/2009 04:22 pm (fblackmo) employee was climbing through the void from bay to bay on ferry when, he felt a sharp pain in his right wrist. Supervisor: thomas bowser
## 4651         10/28/2010 02:18 pm (fblackmo) employee was trying to install a fan; fan clutch assembly on dump truck. Employee was on the right side while another employee was helping lift the clutch into place. Employees foot slipped and he fell on his chest acros
## 4652         10/28/2010 02:32 pm (fblackmo) employee stated that while lifting augers, he felt and heard something pop in his abdomen area. Employee decided after he was off duty that the pain was severe enough to require medical attention and went to the er at re
## 4653           10/28/2010 02:45 pm (fblackmo) employee was helping another employee chain down a piece of equipment in a borrow pit area when, his foot got stuck in a small wheel rut resulting in a pulled groin. Supervisor: jonnie barefoot 11/19/2010 03:41 pm (lva
## 4654      10/29/1999 01:01 pm employee was helping set up the water pump for the city of washington to help lower jack's creek at the pumping station. The p. T. O. Broke a bolt in the p. T. O. Shaft. Employee was trying to replace the bolt when he struck his elbow
## 4655                                              10/29/1999 01:25 pm employee was climbing down from truck using hand hold and steps provided on truck. Foot slipped from bottom step and shoulder twisted as weight was taken up by hand hold. Strained right shoulder
## 4656                                                                                                                                   10/29/1999 02:14 pm lifting sign post and operating pole setter equipment over a protracted period of time. Right elbow and hand.
## 4657                                                                                10/29/1999 02:33 pm employee was scraping on the portside of the m/v conrad wirth. While performing this duty, some debris flew into the employees' safety glasses and into his eye.
## 4658                      10/29/1999 03:17 pm while measuring for seeding on a steep slope in project area, Mr. Bowes slipped and twisted his right knee. His right knee had previously been injured on 6-16-1999 while performing the same duties. Sprained right knee.
## 4659                            10/29/1999 08:17 am injured was wearing helmet and making diaphrams while using welder. Mig welders have a brighter flash than regular welders causing a greater risk of eye injury. Employee needs to keep eyes protected at all times.
## 4660                                                                                                                          10/29/1999 08:49 am employee working with survey party, was walking in woods putting in centerline. Must have walked into some poison ivy.
## 4661                                                                                                                                          10/29/1999 09:10 am employee was cutting grass on sr 1513 and the shoulder of road caved in causing a fractured left elbow
## 4662          10/29/1999 09:21 am employee was helping to lift sheet pile boards in place to be driven by jack hammer when he felt a sharp pain in the lower right side of back and the pain ran down his right leg to his knee. The crew was driving sheeting when inju
## 4663                                                  10/29/2001 12:46 pm (slee) private party and dot employee were traveling west down nc 97, dot employee made a u-turn and private party it the drivers side of dot vehicle and pushed it several feet after impact.
## 4664         10/29/2007 02:28 pm (fblackmo) employee was lifting a bag of asphalt from a pre-heating oven to a table where the sample was reduced in size for further testing. Employee felt pain in his lower back. (form 19 states not work related). Supervisor: todd
## 4665                                                                  10/29/2007 02:44 pm (fblackmo) employee fell backwards onto pavement as he was dismounting trailer that was towing equipment. Employee did not go to doctor until 10/08/2007. Lead worker: s. Bell
## 4666                                                                                               10/29/2007 02:55 pm (fblackmo) employee states after surfacing from a routine underwater inspection, he complained of throat irritation. Supervisor: james f. Ahlmark
## 4667                                                                     10/29/2007 03:16 pm (fblackmo) employee was in back seat of truck when, truck was struck in the left side by a private own vehicle. Employee felt pain in his neck. Supervisor: mark turlington
## 4668                                                                                                                                           10/29/2007 03:30 pm (fblackmo) employee was working in the woods when, he was bitten by ticks. Supervisor: c. S. Mcdonald
## 4669                                                                             10/29/2007 03:43 pm (fblackmo) employee was getting filters out of cab. He was standing on running boards when, he slipped and fell causing injury to his back. Supervisor: albert vann
## 4670                                                                                                 10/29/2007 04:00 pm (fblackmo) employee and co-worker were disassembling a damper and pulley when, employee was caught between pulley. Supervisor: richard dewhurst
## 4671                                                                                    10/29/2007 11:24 am (fblackmo) employee was climbing down off of truck from unloading metal hopper when, he felt pain in his lower back and right leg. Supervisor: elpidio guera
## 4672                                                                                                                       10/29/2007 11:51 am (fblackmo) employee tripped over a computer cord causing injury to her right ear and temple area. Supervisor: linda jones
## 4673                                                                                                              10/29/2007 12:06 pm (fblackmo) employee was dragging crepe myrtle limbs to chipper when, an insect bit him on the left thumb. Supervisor: brian glover
## 4674                                                                                                               10/29/2008 10:31 am (fblackmo) employee was stepping down from the cab of truck to the ground when, she twisted her left knee. Supervisor: hank bowie
## 4675                                            10/29/2010 02:55 pm (barnes) employee was removing a tree from right of way, when he came in contact with a large amount of poison ivy. Employee had poison ivy on his hands, arms and face. Supervisor: darrell l. Dean
## 4676                                                          10/29/2010 04:23 pm (fblackmo) employee was taking a break outside the main dmv building, she stood up to return back to work, and tripped over the curb causing multiple injuries. Supervisor: mike mayes
## 4677                                                                                10/29/2010 04:38 pm (fblackmo) employee was trying to shut the door to the engine room booth when the door slammed on his little finger on right hand. Supervisor: steven j. Goodwin
## 4678          10/29/2010 12:45 pm (barnes) employee states that while he was maneuvering the boom to better reach a signal head on a mast arm pole, the bucket moved quicker than expected, catching his hand between a sign and the top of the bucket. Employee injured
## 4679               10/3/2006 02:18 pm (fblackmo) employee was filling a stock order in the parts section of shop and tripped over a broken slat sticking off of a pallet. Supervisor: maurice ring 3/8/2007 12:11 pm (lvaughan) per #19 injury to: r-knee, wrist; l-side
## 4680          10/3/2006 02:31 pm (fblackmo) employee was helping co worker load 4x8 sign panels (weighed 55-60lbs each) when, he went to pick up one of the panels his feet slid a little but he caught his balance & placed panel onto trailer. He felt nothing unusual
## 4681          10/3/2006 02:49 pm (fblackmo) employee was in a loaded swb international hauling stones. He was traveling up the right side of the road to avoid the wind row stone on the left side and to allow room for cars to pass. The soft shoulder gave away under
## 4682                                                                            10/3/2006 12:11 pm (fblackmo) employee was picking up bags of litter and throwing them into back of medium dump truck when, he felt sharp pain in his sternum. Supervisor: j. D. Harrell
## 4683                                                                                                                    10/3/2006 12:23 pm (fblackmo) employee stepped into a hole that was obscured by vegetation and twisted his left ankle. Supervisor: johnie marion
## 4684                                             10/3/2008 08:12 am (blgay) employee was removing tree limbs from across the road. The tree limbs were covered in poison ivy, resulting in employee breaking out on arms. Back and shoulders. Supervisor: stephen dillon
## 4685                                                          10/3/2008 08:21 am (blgay) employee was handing rip rap out of bed of dump truck to other employee for placement at pipe. The next day employee had pain in his right shoulder. Supervisor: d. M. Pressley
## 4686                                10/3/2008 09:06 am (blgay) employee was flagging at a work zone when private vehicle went through work zone without stopping, hitting flagman and the backhoe, resulting in sprain left knee and left wrist. Supervisor: jerry parks
## 4687                                                                                                                          10/3/2008 09:31 am (blgay) employee was lifting up on dump truck tailgate and felt something pull in his stomach. Supervisor: cleve barton
## 4688                                                                                                                  10/3/2008 10:37 am (fblackmo) employee was weed eating and stepped on unknown object when, he felt pain in both legs. Supervisor: jeremy b. Creech
## 4689                                                                         10/30/2000 03:59 pm employee was using spray cleaner on mower; when the water splashed back on his arm. A couple of hours later his arm was itching and irritated. Supervisor: r. H. Brazil
## 4690                                                                                                                10/30/2000 04:11 pm employee was picking up trash; when a thorn went through his work glove into his right middle finger. Supervisor: jerry l. Green
## 4691                                                                      10/30/2000 04:21 pm employee was pouring concrete when he was exposed to the sun for long periods of time. He has sunburn to his right side and the back of his neck. Supervisor: t. B. Brooks
## 4692                                   10/30/2000 11:14 am employee was inspecting some prestressed concrete cored slabs; when he slipped and fell off the edge of a slab. Mr. Brannan has significant lower back pain due to this incident. Supervisor: p. Korey newton
## 4693         10/30/2001 09:56 am (fblackmo) employee slipped on top step of back hoe while dismounting equipment after performing daily inspection of equipment. Employee fell onto step, bruising both knees on impact and landed on his feet. Supervisor: r. N. Harden
## 4694                                       10/30/2001 10:21 am (fblackmo) employee was removing pins from loader bucket with a hammer. The hammer hit the arm of the loader, glanced off the arm, hitting inside of employees left foot. Supervisor: richard lichtenhahn
## 4695                                                                                                                                         10/30/2001 10:46 am (fblackmo) employee slipped on rip rap causing the injury to his left ankle. Supervisor: steve r. Davis
## 4696                                                                                            10/30/2001 11:11 am (fblackmo) employee was standing behind his partner when hi was pulling vines from a sign, vine hit employee in the eye. Supervisor: robert t. Moore
## 4697                                                                                       10/30/2002 07:30 am (fblackmo) employee was working in the bow thruster compartment of the m/v pamlico when, something blew into his right eye. Supervisor; kevin lamar cooke
## 4698                                                                                                                      10/30/2002 09:08 am (fblackmo) employee was removing limbs from road way when, he came into contact with poison oak. Supervisor: b. D. Johnson
## 4699                                                                                          10/30/2002 09:22 am (fblackmo) employee was returning from lunch when, she stepped on a rock and lost her balance. Supervisor: c. W. Bridgers jr *let joyce see all bills*
## 4700                                                                                                                   10/30/2002 09:37 am (fblackmo) employee stated that while bending to change tire he felt pain in his left knee and wrist. Supervisor: jeff corley
## 4701                                                                                                   10/30/2002 11:07 am (fblackmo) employee was using hydraulic wood splinter when, his left thumb became lodged between the wedge and wood. Supervisor: robert payne
## 4702                                                                   10/30/2002 11:58 am (fblackmo) employee was assisting technicians in work area of uneven terrain at job site when, he started experiencing sharp pain in his abdomin area. Supervisor: w. D. Frye
## 4703                                            10/30/2002 12:10 pm (fblackmo) employee was entering truck when, the driver of the truck pulled off before he could get completely in. Employees' leg got caught and was pulled under the truck. Supervisor: d. L. Irvin
## 4704                                                                                                          10/30/2003 02:42 pm (fblackmo) employee was picking up tree limbs form right of way when, he came into contact with poison ivy. Supervisor: robert winslow
## 4705                                                                                                    10/30/2003 02:53 pm (fblackmo) employee states while cutting limbs on the ground one of the limbs twisted, causing a cut to his back. Supervisor: robert winslow
## 4706                                     10/30/2003 09:41 am (fblackmo) employee states while operating a chain saw cutting trees to be removed from right of way when, a limb popped back striking employee across his knuckles on left hand. Supervisor: f. L. Wiggins
## 4707                                                                                                                           10/30/2003 09:55 am (fblackmo) employee states while cutting trees he, came into contact with poison ivy. Supervisor; b. J. Berryhill, jr
## 4708                                                                                                       10/30/2003 10:06 am (fblackmo) employee states a tool box lid fell on his hand causing a cut to his center finger on right hand. Supervisor; r. J. Hollifield
## 4709                                                                      10/30/2007 10:06 am (fblackmo) employee was standing on motor grader when, he slipped and fell causing injury to his right elbow, left arm, back, and rib cage area. Supervisor: jesse hansley
## 4710                                             10/30/2007 10:19 am (fblackmo) employee was assisting another employee at the asphalt plant banding tow big exhaust pipes together when, the pipe twisted and mashed his fingers on right hand. Supervisor: ricky feher
## 4711         10/30/2009 10:52 am (fblackmo) employee had the truck backed up to the loading dock preparing o load seed. He stepped from the truck to the loading dock when, his foot slipped. Employee put his hand out to catch himself causing injury to his right thu
## 4712                                                                                         10/30/2009 11:16 am (fblackmo) employee was cleaning up debris when, he hit a limb that was on tarp causing injury to his right index finger. Supervisor: chris pendergraph
## 4713          10/30/2009 11:46 am (fblackmo) employee was on top of salt spreader unhooking chains that was suspended from rack when, he slipped between gap in grate. Employee tired to catch himself causing injury to left palm and hand. Supervisor: luther thompson
## 4714                                                                                                   10/31/2000 09:17 am employee was throwing class b stones under bridge for slope protection; when he strained muscles in his groin area. Supervisor: r. P. Bennett
## 4715                                                                                                                10/31/2000 09:24 am employee was loading drain pipes on trailer; when the pipe slipped cutting employees left wrist and arm. Supervisor: m. M. Solon
## 4716                                                                                                                        10/31/2000 09:43 am employee was getting weighing scales out of car when he strained his lower and upper back. Supervisor: lt. T. S. Collins
## 4717                       10/31/2000 12:06 pm employee was using chainsaw when the chain came loose. Mr. D'arcy turned the saw off to tighten the chain and began to loosen the nuts; when the wrench slipped cutting his left index finger. Supervisor: k. L. Anderson
## 4718         10/31/2000 12:13 pm employee was riding with another employee; when the driver of the truck drove over a drop in the pavement. Mrs. Corbett was thrown in the air and came down hard causing injuries (strain/sprain) to her neck and lower back. Superviso
## 4719                                                                                  10/31/2001 02:55 pm (fblackmo) employee was operating a backhoe digging out pavement he turned his head to the left, employee lost vision in his left eye. Supervisor: donald king
## 4720               10/31/2001 03:13 pm (fblackmo) employee walked around on the outside of the bulwark to retrieve the starboard sterm line when, he stepped back he was caught between the vessel and piling. Supervisor: s. H. Kinner *show all bills to joyce wilson*
## 4721                                                                                           10/31/2001 03:31 pm (fblackmo) employee states that while digging in ditch to locate fiber optic phone lines he felt a pain in his back. Supervisor: l. Michelle podeszwa
## 4722                       10/31/2001 03:42 pm (fblackmo) employee was entering into the engine room escape hatch on the m/v southport, the hatch is spring loaded, as the hatch opened it pinned his finger between the hatch and the fan vent. Supervisor: david pharr
## 4723         10/31/2001 03:54 pm (fblackmo) employee was laying under vehicle on creeper tighting brake caliper when he went to stand up he felt a sharp pain in his lower back. Employee experienced discomfort in walking and other movements. Supervisor: a. C. Hende
## 4724                                                                                      10/31/2001 04:10 pm (fblackmo) employee was walking to get into truck and stepped on a rock. The rock turned causing the employee to injury his ankle. Supervisor: m. S. Reese
## 4725                                    10/31/2001 04:21 pm (fblackmo) employee was placing rip rap in a ditch around a driveway pipe by hand. Employee was picking up a piece of rip rap when another piece rolled down smashing left thumb. Supervisor: archie coghill
## 4726                                                                                                                                     10/31/2001 04:42 pm (fblackmo) employee was hammering nails into deck when his back started to hurt. Supervisor: k. E. Anderson
## 4727                                          10/31/2001 05:01 pm (fblackmo) employee states that while unloading a desk during moving a spring loaded drawer used to hold a typewriter, sprung up and broke the ring finger on his right hand. Supervisor: m. G. Mercer
## 4728                                                                                      10/31/2006 02:56 pm (fblackmo) employee was putting silfax in a pothole in heavy traffic causing gravel to fly up striking him in the face and arms. Supervisor: w. R. Friddle
## 4729                                                                                                                                                 10/31/2006 03:06 pm (fblackmo) employee was loading straw when, he was bitten by straw mite. Supervisor: sam wilson
## 4730                                                                                                                                   10/31/2006 03:51 pm (fblackmo) employee was loading and unloading straw when, he was bitten by straw mite. Supervisor: lee gerson
## 4731                                                                                                                                                 10/31/2006 09:10 am (fblackmo) employee experienced numbness in left thumb and index finger. Supervisor: randy wise
## 4732                                                                                                                                        10/31/2006 09:20 am (fblackmo) employee experienced pain in both hands and wrist while doing typing. Supervisor: don l. Rich
## 4733                                                                                                               10/31/2006 09:30 am (fblackmo) employee was helping lifting work materials when, he had pain in his groin and back area. Supervisor: jeremy b. Creech
## 4734                                                                          10/31/2006 09:40 am (fblackmo) employee was feeling weak and hot. His blood pressure was high. Employee was transported to concentra for treatment of condition. Supervisor: mike jefferys
## 4735          10/31/2006 09:57 am (fblackmo) employee claims he started having chest pains as he was helping shanon eiben lift a metal drain cover (grate). The rest of the crew claims he had not done any work yet and that he had complained of chest pains when they
## 4736                                                                                                    10/4/2004 02:26 pm (fblackmo) employee states while stopping to pick up trash his fingers was mashed between the door of the dump truck. Supervisor: r. D. Davis
## 4737                                                                                                                    10/4/2004 02:41 pm (fblackmo) employee was getting out of vehicle and slammed right index finger in drivers side door. Supervisor: t. K. Wheeler
## 4738                                                                                                                                                       10/4/2004 03:43 pm (fblackmo) employee stepped on a nail while walking at job site. Supervisor: m. E. Plummer
## 4739                                                                                                                                       10/4/2004 03:55 pm (fblackmo) employee was cutting brush when, he came into contact with poison ivy. Supervisor: n. S. Gibson
## 4740         10/4/2004 11:37 am (fblackmo) employee felt sharp pain in the mid point of his back while removing drift and debris at a culvet. Employee was moving a log by hand in the water that was 5 feet deep. Employee was on top of the drift pile when injury occ
## 4741                                                                                      10/4/2004 12:03 pm (fblackmo) employee was cutting underbrush when, he was stung several times on his right hand, leg, and back by a yellow jacket. Supervisor: roy d. Pittman
## 4742                                                                                                                           10/4/2004 12:14 pm (fblackmo) employee was spraying bug spray on hat when, spray got into employees eyes and face. Supervisor: t. L. Hall
## 4743                                                                                                                          10/4/2005 02:57 pm (fblackmo) employee was replacing hydcylinder on backhoe when, he felt pain in his left knee. Supervisor: scott hancock
## 4744                                                                                                  10/4/2005 03:22 pm (fblackmo) employee was lifting a computer monitor off desk setting it on the floor when, he felt pain in his back. Supervisor: willie bradwell
## 4745                                                                                                   10/4/2005 03:32 pm (fblackmo) employee was tightening bolts on bush axe handle when, the wrench slipped causing a cut to his right thumb. Supervisor: david moore
## 4746                                               10/4/2005 03:49 pm (fblackmo) employee was using a weedeater cutting down weeds and grass when, he hit unknown object. The object flew up hitting him on his right forearm causing a cut. Supervisor: ronald e. Joyce
## 4747                                                                                                                                       10/4/2005 04:58 pm (fblackmo) employee was sharpening his bush axe when, he cut his right thumb. Supervisor: lawrence n. Long
## 4748                                                                              10/4/2005 05:07 pm (fblackmo) employee was using shovel to uncover a sanitary sewer manhole to check invert elevations when, he felt pain in his lower back. Supervisor: j. D. Bradner
## 4749                                                                                                            10/4/2005 11:30 am (fblackmo) employee was raking abc stone level by using a garden ranke when, he felt pain in his groin area. Supervisor: carlis smith
## 4750         10/4/2005 11:44 am (fblackmo) employee was leaving work for the day from main building when, he twisted right ankle causing him to fall. Employee fell were the cement was broken and orange cone was sitting at the side of the break near grass. Supervis
## 4751          10/4/2007 03:10 pm (mdsloan) employee was sitting in truck slumped over in truck when the supervisor was told that he thought the employee might have had a heart attack. The county maintenance engineer was informed of the situation and the 911 was ca
## 4752                                                                                                                  10/4/2010 09:27 am (fblackmo) employee was flagging traffic for road oil operation when, his eyes became irritated/red. Supervisor: alton thornton
## 4753          10/4/2010 09:58 am (barnes) employee along with another employee were pushing a thermo cart from an asphalt roadway onto a grass shoulder. While pushing the cart, the employee felt a sharp pain in the left heel of his foot. Employee hurt left heel. S
## 4754                                                                        10/5/2004 10:07 am (fblackmo) employee states that another employee next to him was cutting lines when, the axe glanced off and struck him on his upper right arm. Supervisor: m. E. Plummer
## 4755                                                                                          10/5/2004 10:34 am (fblackmo) employee was trying to lower the tailgate when, his finger was mashed between the tailgate and the bed of the truck. Supervisor: terry davis
## 4756                                                                                                                          10/5/2004 10:57 am (fblackmo) employee states while pulling limbs out of plant bed he, felt pain in his back. Supervisor: kenneth williams
## 4757                                                                            10/5/2006 09:39 am (fblackmo) employee was conducting exercise training when, he made contact with suspects legs his left shoulder became dislocated sightly. Supervisor: capt. Callahan
## 4758                                                                                10/5/2006 10:36 am (fblackmo) employee was making repairs to a truck when, his right index finger was pinched between air brake chamber and hold back bolt. Supervisor: daylon lynch
## 4759         10/5/2006 10:58 am (fblackmo) employee was getting out of truck to pick opossum off road. While stepping out of truck her foot slipped on new pavement. The truck did not pull off road due to the fact road had just been paved and there was not enough r
## 4760                                                                              10/5/2007 08:18 am (mdsloan) employee was throwing away paint can liners into dumpster when he stepped on an old 4x4 wood sign post and twisted his left foot. Supervisor: p. L. Eaker
## 4761                                                                                                                    10/5/2007 09:31 am (mdsloan) employee was working on the side of the road when employee encountered some poison ivy. Supervisor: d. Brett henson
## 4762         10/5/2007 11:54 am (mdsloan) employee states that he strained his right side while performing concrete tests, which requires moving concrete from a chute on concrete truck to test area using a five gallon bucket full of concrete and as he was doing th
## 4763        10/6/2005 08:39 am (fblackmo) top two drawer of the lateral file cabinet were opened while employee was working. The cabinet fell down and to avoid being hit by the cabinet, employee fell down on the ground and bruised his right hand and wrist. Supervi
## 4764                                                                                                                          10/6/2006 09:41 am (fblackmo) employee came into contact with poison ivy while pulling vines off athey loader. Supervisor: robert g. Davis
## 4765         10/6/2009 10:16 am (blgay) employee was checking mix, stepped down onto fuel tank of truck. While holding handle bar, turned left and grabbed tarp rail and stepped onto the lowest rail. Foot slipped on icy rail, causing both feet to come loose and all
## 4766                                                                                                                                    10/7/2004 02:12 pm (fblackmo) employee was picking up tailgate when, his right index finger was pinched. Supervisor: k. R. Davis
## 4767                                                                                                                        10/7/2004 02:24 pm (fblackmo) employee stepped into hole on roadway construction project and injured his left heel. Supervisor: e. L. Sexton
## 4768                                 10/7/2004 02:36 pm (fblackmo) employee states while rounding a curve the rear of the truck slid to the right causing the truck to turn over in a ditch. Employee states he received cuts to his left arm. Supervisor: chad franklin
## 4769                                                                                                                            10/7/2004 03:32 pm (fblackmo) employee was cutting a tree in roadway when, foreign matter got into his left eye. Supervisor: k. R. Davis
## 4770                                                                               10/7/2004 03:53 pm (fblackmo) employee was working in yard loading steel. Employee was getting out of the excavator when, he felt pain in his left foot. Supervisor: jeremy b. Creech
## 4771                                                    10/7/2008 03:20 pm (blgay) employee was reaching for pin that holds jersey barriers together when barrier shifted, pinning employees right middle finger between the bolt and concrete. Supervisor: ken anderson
## 4772         10/7/2008 03:51 pm (fblackmo) employee was climbing on the rip rap stone stockpile with the prism pole. The survey party was taking shots on the pile to verify the current inventory level. Employee slipped and fell on the rocks, injuring his left knee
## 4773                                                                                                                10/7/2009 04:17 pm (fblackmo) employee fell down stairs in highway building, she felt pain in her right elbow and hip area. Supervisor: michael dail
## 4774         10/7/2010 02:14 pm (barnes) employee responded to an oil spill located on I-40 business (us 421) at mm 9 near linville road. As the employee was spreading an absorbent material onto the oil spill, some of the material blew into his eyes due to passing
## 4775         10/7/2010 02:37 pm (barnes) employee was checking the gvw(gross vehicle weight) on a tractor trailer. As he stepped down, he missed the last step, causing him to fall on the cement ground on his back. Employee had injuries to his right side, wrist spr
## 4776        10/7/2010 03:00 pm (barnes) employee was assisting with tree removal and came in contact with poison ivy. He was sent to concentra medical. Without a doctors note, employee chose to go home for the rest of the day. He was paid for 2. 5 hours for the da
## 4777                                                      10/7/2010 09:16 am (barnes) employee was shoveling next to a pipe looking for a fiberoptic line and he twisted his foot. Employee injured right foot, from ankle to ball of foot. Supervisor: wendell chastain
## 4778         10/7/2010 12:42 pm (barnes) employee was assisting an injured "phillips & jordan" employee who had fallen off track hoe and could not get up. Employee was bent over helping the gentleman up, when he felt something pull in his lower back. Employee inju
## 4779                                                                       10/8/2008 02:56 pm (blgay) employee was flagging for a patch crew operation. Employee said that he felt a sudden jolt of pain go through the right side of his body. Supervisor: b. G. Jordan
## 4780         10/8/2008 10:12 am (fblackmo) employee was attending a safety meeting when, he started to feel weak and light headed. He went to the office and laid his head down and began sweating profusely. Emergency unit was called. Dehydrated. Supervisor: jeff mi
## 4781                                                                                                                       10/8/2008 10:27 am (fblackmo) employee was putting trash in bag when, he cut his index finger on left hand on lid. Supervisor: bobby lewis jr
## 4782                                                           10/8/2008 10:36 am (fblackmo) employee was performing a/c repair, he was inspecting the lines for leaks when the radiator fan clutch engaged, blowing debris into his right eye. Supervisor: ricky rogers
## 4783         10/8/2010 08:34 am (fblackmo) employee was working on paving operation when the driver that was intoxicated pulled off into the work site. Employee was directing the driver out of work zone when, the driver struck from behind with his vehicle. Employe
## 4784                     10/8/2010 09:02 am (fblackmo) employee was inspecting erosion control at pump outlet area that was approximately three inches high with weeds and brush when, he was bitten by un-known insect on his left forearm. Supervisor: d. J. Underwood
## 4785                                                                                                                     10/8/2010 09:49 am (fblackmo) employee was dumping asphalt when breeze blew foreign matter into his left eye. Supervisor: james darrell wilkins
## 4786                                                                                                  10/8/2010 10:07 am (fblackmo) employee was holding rail as bolt was being cut with a torch when, the hot railing hit his right forearm. Supervisor: randy williams
## 4787                                                                                        10/9/2006 01:46 pm (fblackmo) employee was removing signs from the shoulder of road with another employee when, he felt pain in his left shoulder. Supervisor: m. Vann price
## 4788                                        10/9/2006 02:12 pm (fblackmo) employee was securing backhoe to trailer with chain and load binder, the pin broke out of the chain and hook, which flew back and hit left thumb causing the break. Supervisor: greg mccracken
## 4789                                                                10/9/2006 02:25 pm (fblackmo) employee was working on the asphalt patching crew while in the process of smoothing the asphalt he felt pain in his right side/rib area. Supervisor: kevin whittington
## 4790         10/9/2006 12:18 pm (fblackmo) employee was traveling west on penderlea road (state road 1332) in pender county. At the intersection of new savannah road a van ran a stop sign. The two vehicle collided causing injuries to employee and the woman driving
## 4791          10/9/2008 02:28 pm (fblackmo) employee was getting out of short wheel base truck and lost his footing on the steps. Employee felt pain in his right foot/large toe. Employee had two surgical procedures on right foot prior to this injury in the last th
## 4792                                                                                 10/9/2009 02:59 pm (blgay) employee was conducting a test drive, when customer was pulling into a parking space and hit parked car on the rear left side. Supervisor: phyllis young
## 4793         10/9/2009 03:15 pm (blgay) employee was working on construction project sr 1201, peoria road. On monday after getting home he began to itch and notice a rash on neck, face, arms, stomach, legs and eyes were irritated and red. On tuesday he went to the
## 4794                                                                                               10/9/2009 03:33 pm (blgay) employee was climbing up a slope to set right-away monument and turned his left ankle causing the ankle to swell. Supervisor: c. R. Styles
## 4795                                                                        11/01/2000 10:41 am employee states exposure to high noise levels while working around large saws in equipment shop; May have decreased employees hearing ability. Supervisor: j. D. Everett
## 4796                    11/01/2000 10:46 am employee slipped and fell off trailer while trying to read vin numbers from vehicles. He has injuries to his left arm (wrist, elbow, shoulder); his left lower leg/knee and right leg and ankle. Supervisor: lt. G. F. Inamn
## 4797             11/01/2000 10:57 am employee was giving a road test and waiting to make a left turn onto main street on 7/13/00; when she was struck from behind by a private vehicle. Ms. Tilley has soreness/pain in her neck due to the accident. Supervisor: sylvia
## 4798           11/01/2000 11:10 am employee was giving a road test; when his customer stepped on the gas instead of the brakes. The customer was backing out of parking place and struck another examiner's car. Mr. Shehdan strained his right arm/shoulder and neck. S
## 4799            11/01/2001 01:59 pm (fblackmo) employee was on port bow of ferry at ramp. Employee threw his tag line to shoreman, but he did not catch it. Employee threw it again while ferry was slow backing up. Employee leg got caught between the ramp and bulkhe
## 4800                                                                                                           11/01/2001 02:17 pm (fblackmo) employee states pain in hands and shoulders has gotten worst due to constant keyboard strokes. Supervisor: gwendolyn smith
## 4801                                                                                           11/01/2001 02:34 pm (fblackmo) employee was loading supplies for job assignment when he felt something pull. From left elbow to his fingers hurt. Supervisor: r. E. Joyce
## 4802                                                                                                                  11/01/2001 02:49 pm (fblackmo) employee states that she is experiencing chronic ear infection from the use of her headset. Supervisor: pam guptill
## 4803                                            11/01/2001 08:51 am (fblackmo) employee states that while operating various pieces of equipment for extended periods of time has caused permanent hearing loss in both right and left ears. Supervisor: wendell chastain
## 4804                                                                  11/01/2001 12:11 pm (fblackmo) employee was unloading flashing signs off back of the trailer when, he jumped off to finish unloading the signs his left knee buckled. Supervisor: tommy kilpatrick
## 4805                                                                                                                   11/01/2001 12:24 pm (fblackmo) employee was loading a form on the truck when he experienced pain in his lower back. Supervisor: derwin strickland
## 4806                                                                                                                                            11/01/2002 10:24 am (fblackmo) employees' foot slipped on the stairs; caused by rainy weather. Supervisor: harvey mangom
## 4807                      11/02/1999 08:25 am employee was hooking up 15' steel sheet piling when another employee stepped on the opposite end then walked up piling causing the sheeting to fall on employee's right foot. Contusion on right foot. 02/04/2000 09:43 am
## 4808         11/02/1999 08:39 am control unit for computers is 3 to 4 feet off the floor. Unit is mounted from wall. The control box is at least 8 feet off the floor. Ex. Pollard has to stand on a ladder to reach the box. The ladder slipped, causing ex. Pollard to
## 4809                               11/02/1999 08:50 am crew unloading steel plates for bridge repair. Employee grabbed steel plate to guide it to work area and was electrocuted due to booms proximity to power line. Electocution through hands causing heart failure.
## 4810                                   11/02/1999 09:06 am employee injured his right little finger while unloading the skid loader from trailer. He crushed his finger when he unlocked the pentle hook latch, causing the trailer to raise up. Supervisor: f. E. Ford.
## 4811                                                                     11/02/1999 09:14 am employee injured his lower back while shoveling rock on austin chaney road in union county. Mr. Tucker stepped back into a hole twisting his back. Supervisor: david lowery
## 4812                                              11/02/1999 10:20 am employee broke his left arm on the job the summer of 1994. He has been diagnosed with carpal tunnel syndrome in his left arm and it is believed this is a result of the break he received in 1994.
## 4813                                                                                                   11/02/1999 10:31 am starting itching after bushing 2 bridges, eyes began to swell overnight. Both eyes and both arms below elbow. Poison oak. 02/01/2000 01:03 pm
## 4814                                                                    11/02/1999 10:48 am employee was riding in the back seat of crewcab when it was struck in the rear by a private vehicle. Employee struck his head on the stud for the seatbelt cutting his head.
## 4815             11/02/2000 09:54 am employee was stopped in roadway making a left turn into parking area on 9/29/00. He was struck from behind by a private vehicle (holley jo ritchie). Mr. Boan has strain to his back due to the impact. Supervisor: capt. J. S. Kee
## 4816                                         11/02/2000 10:05 am employee was riding in dump truck when the employee driving swerved to Miss A vehicle that pulled out in front of them. Mr. Devane was jerked and strained his lower back. Supervisor: e. L. Gurganious
## 4817                                                                                      11/02/2000 10:11 am employee came in contact with poison ivy plants while mowing on sr 1140. Mr. Wiggins has contact rash on both arms and chest area. Supervisor: a. E. Brown
## 4818                                                                                       11/02/2000 10:18 am employee strained his lower back while moving two large logs off right of way. Pain radiates down into his right leg and foot. Supervisor: d. T. Childrey
## 4819                                                                                           11/02/2000 10:22 am employee came in contact with poison ivy plants while working on 10/27/00. She has contact rash on both arms, legs, and face. Supervisor: tom padgett
## 4820                                                                11/02/2001 02:05 pm (fblackmo) employee was on creeper under rear differential, when differential fell on employees right hand severely cutting fingers and thumb on hand. Supervisor: w. M. Harrell
## 4821                                                                                                                                  11/02/2001 02:33 pm (fblackmo) employee stepped in a hole and twisted knee. Supervisor: a. E. Brown 06/05/2002 04:05 pm (hoxendin)
## 4822                                                                                                            11/02/2001 02:45 pm (fblackmo) employee was bending down to look through a driveway pipe, a blade of grass stuck him in the eye. Supervisor: patty eason
## 4823                                                                 11/02/2001 03:09 pm (fblackmo) employee was using a crow bar prying concrete from bridge peephole when shoulder blade got a catch and started hurting like a pull muscle. Supervisor: w. D. Watkins
## 4824                                                                            11/02/2001 12:41 pm (fblackmo) employee was getting out of the motor grader when, his foot slipped off of the step causing him to land in a awkward position. Supervisor: darrell parson
## 4825                                                                                                          11/02/2001 12:54 pm (fblackmo) employee step in a pot hole while walking in a fast pace to answer the telephone in the shop yard. Supervisor: a. W. Keeton
## 4826                                                                                                                         11/03/1999 10:41 am employee was in snack bar going to get a can drink and fell when passing chair. Broke two small bones above left ankle.
## 4827                                                                                             11/03/1999 10:56 am employee has been using a computer keyboard for 10 years with dmv started. Having hand wrist pain, numbness in hands. Signs of rms or cts in wrist.
## 4828                                                                               11/04/1999 04:43 pm Mr. Bass was unloading items off a truck, when his left ring finger got caught between the hot water heater and the truck tool box. Supervisor: robert d. Simpson
## 4829         11/04/1999 04:56 pm Mr. Siler was assisting in loading signs, traffic cones, etc. Onto a truck when he felt a pain in his lower back. Note: Mr. Siler went to the emergency room at randolph hospital the next morning and was diagnosed with kidney stones
## 4830                                                                                                                11/04/2003 01:56 pm (fblackmo) employee states that due to repetitive motion he is experiencing pain in his center finger. Supervisor: w. L. Hampton
## 4831                                                                                      11/04/2003 02:34 pm (fblackmo) employee was attempting to unhang trap form brace on dump truck when, his finger was caught between the brace and trap. Supervisor: m. V. Price
## 4832                                                                                                                                          11/04/2003 03:17 pm (fblackmo) employee was rip raping a ditch when, he felt pain in his back. Supervisor: larry lovingood
## 4833                                                                                     11/04/2003 03:34 pm (fblackmo) employee states she fell over boxes of paper towels that was stacked in the walkway causing the injury to her upper back. Supervisor: k. W. Ivey
## 4834                                                                        11/04/2003 08:17 am (fblackmo) employee was helping a mechanic with placing chains on the sprockets of the pan when, he slipped and fell into the bowl of the pan. Supervisor: john thompson
## 4835                                                                                            11/04/2003 08:37 am (fblackmo) employee state while helping to clear right of way he, was stung multiple times on his head, face, and abdomen. Supervisor: g. W. Johnson
## 4836            11/05/2001 04:56 pm (fblackmo) employee was helping to load empty 55 gallon drums onto the back of a truck. There was several drums sitting on the rear of the truck. The truck operator was in the back of the truck arranging the drums and the drum n
## 4837                                                                                                  11/05/2003 10:17 am (fblackmo) employee was going to move truck when, he stepped on loose asphalt causing the injury to his right ankle. Supervisor: w. S. Richard
## 4838                                                                                          11/06/2000 04:14 pm employee was walking in newfound creek when he slipped and fell on slick rocks. He has pain in lower back and his left leg. Supervisor: roger d. Woods
## 4839                                                                                       11/06/2000 04:21 pm employee was loading grader blades into back of dump truck on 10/27/00. Mr. Murray tripped and fell on his back and right elbow. Supervisor: jack rollins
## 4840                                                                                                                     11/06/2000 04:27 pm employee was removing fence wire; when razor wire became entangled puncturing his left lower leg. Supervisor: j. A. Hobgood
## 4841                                                                                                                    11/06/2000 04:33 pm employee was entering door when venetian blind swung back striking Ms. Bullock in her right breast. Supervisor: sylvia spain
## 4842                       11/06/2000 04:43 pm employee was climbing into tractor to conduct a pretrip inspection; when his right foot slipped off the step causing him to grab to prevent from falling. Mr. Coleman strain/sprain his left arm. Supervisor: tola bailey
## 4843                                                                 11/06/2000 05:01 pm employee was pulling on a load binder to release the binder on tractor trailer. Mr. White started experiencing extreme pain in his upper chest area. Supervisor: hardie tillett
## 4844                     11/06/2000 05:07 pm employee was loading paint machine with beads. The pressure wasn't released from the bead tank causing a heavy spray of beads. Mr. Womack turned to avoid beads and twisted/sprained his right knee. Supervisor: ron turpin
## 4845                                                                                                                11/06/2000 05:13 pm employee was bushing bridge when he fell over a bush. The bush sprang back hitting him in his left eye. Supervisor: j. C. Gunter
## 4846           11/06/2000 05:17 pm employee was weighing an axle log truck on 11/01/2000. As he was taking the scales back to patrol car, Mr. Morrow twisted his left ankle on some loose gravel. The weight of the scales caused him to lose his balance and fall landi
## 4847                                                                                                                   11/06/2000 05:27 pm employee stopped to assist a stranded motorist; when tractor trailer blew debris into his left eye. Supervisor: melvin dorsey
## 4848                                                                                                                 11/06/2000 08:40 am employee was coming down steps on a loader; when his foot slipped striking his right knee on the step. Supervisor: s. Ray white
## 4849                                               11/06/2001 01:59 pm (fblackmo) employee was cleaning up brushes behind the office building when yellow jackets came out of the ground. One stung the employee on his eye lid. Supervisor: archie smith and r. D. Bass
## 4850                                                                                                                   11/06/2001 02:11 pm (fblackmo) employee was flagging traffic on state road 1520 when a bug/insect flew into his left eye. Supervisor: b. F. Sloan
## 4851                      11/06/2001 02:24 pm (fblackmo) employee was operating an auger when the auger stalled and the handle continued to turn causing the handle to pull employees shoulder and arm suddenly. Supervisor: e. R. Gurganus 04/07/2004 09:56 am (gwhite)
## 4852                 11/06/2001 02:35 pm (fblackmo) employee was sitting in vehicle #1 parked on road in line to load from athey loader. Employee in vehicle #2 pulled in front of vehicle #1. Vehicle #2 proceeded to back hitting vehicle #1. Supervisor: r. C. Murray
## 4853                                                                 11/06/2001 02:48 pm (fblackmo) employee was walking across the shop when he tripped over a block of wood. Falling and bursting open his chin area and breaking his tooth. Supervisor: m. B. Mizelle
## 4854            11/06/2001 03:03 pm (fblackmo) employee was clearing roadway on state road 1520 using a chainsaw. Employee came into contact with dead vines on a tree in the morning. Employee noticed small bumps on his arms that were itching that afternoon. The em
## 4855                                                                                    11/06/2001 03:18 pm (fblackmo) employee was performing density tests and b required to lift 50 lb weights. Employee pulled right shoulder lifting weight. Supervisor: e. J. Bunn
## 4856                                                                                                                                   11/06/2001 03:29 pm (fblackmo) employee was placing fertilizer into hydroseeder when lid closed on hand. Supervisor: keith blazer
## 4857                           11/06/2001 04:39 pm (fblackmo) employee was reaching in back of pickup truck to remove floor jack. When lifting jack over the side of the pick up, twisted lower back. Getting jack to assist with a tire change. Supervisor: a. R. Wells
## 4858             11/06/2001 12:07 pm (fblackmo) employee was on back of paint machine during normal painting operation. Traveling to a new work site about a mile away. Employee had seatbelt on loosely to enable him to operate paint machine. Traveling 30 to 40 mph,
## 4859            11/06/2001 12:26 pm (fblackmo) employee was marking 4 x 8 x 20' timbers to be bored. Employee had marked and was turning the timber over to see the marks and to bore when, he felt a pop in his back. Employee had on a back brace. Supervisor: steve a
## 4860                                                                                                    11/06/2001 12:38 pm (fblackmo) employee felt a pain in his lower abdomen while moving a wood lock. Pain has persisted for two weeks. Supervisor: robert r. White
## 4861            11/06/2001 12:50 pm (fblackmo) employee was in the bucket of a backhoe cutting a fallen limb with a chainsaw. The limb was entangled in some utility cables. The limb twisted when, a smaller limb struck employee in the top of the head, causing lacer
## 4862                                                                                                                             11/06/2002 02:06 pm (fblackmo) employee was shoveling stone from truck when, he felt pain in his lower back. Supervisor: lawrence marks
## 4863                                                                      11/06/2003 02:14 pm (fblackmo) employee states he experienced pain in his lower back while bending over to examine the serial number on the engine of a motorcycle. Supervisor: j. D. Coltrane
## 4864                                                                                                                                    11/06/2003 02:25 pm (fblackmo) employee states he experienced pain in his back while lifting brake drum. Supervisor: james stepp
## 4865                                                     11/07/2002 07:26 am (fblackmo) employee was participating in mandatory baton training at gtcc. Employee was involved in a training scenario when, he tripped backwards landing on his back. Supervisor: watkins
## 4866                                                                                                                           11/07/2002 07:45 am (fblackmo) employee was getting off truck when, he stumbled catching his finger in the truck. Supervisor: l. A. Marks
## 4867                                                                                                   11/07/2002 08:14 am (fblackmo) employee was bending over planting flowers when, he went to stand up felt a pulling sensation in his back. Supervisor: derek smith
## 4868                                                            11/07/2002 08:32 am (fblackmo) employee was using a small pavement breaker to drive large nails into bridge flooring when, the breaker broke striking employee on his left leg. Supervisor: j. C. Gunter
## 4869                                                                                               11/07/2002 08:50 am (fblackmo) employee was using cutting torch to cut bolt when slag blew back behind safety glasses and went in left eye. Supervisor; c. C. Coggins
## 4870                                                                                                 11/07/2002 09:03 am (fblackmo) employee was walking to the raleigh window at dmv when, she slipped on wet floor from leaking refrigerator. Supervisor: brenda crump
## 4871                                                                                                        11/07/2002 09:16 am (fblackmo) employee was throwing a log onto the back of a dump truck when, he felt pain in his right shoulder. Supervisor: w. R. Friddle
## 4872                                                                                                          11/07/2002 09:46 am (fblackmo) employee stated he experienced heat exhaustion from working in several different temperatures. Supervisor: mojdeh masihpour
## 4873                                                                         11/07/2002 10:27 am (fblackmo) employee was helping put together a structural steel pipe when, a bucket full of bolts and nuts fell hitting employee in his back. Supervisor: gerais messer
## 4874                                                                                                       11/07/2002 10:39 am (fblackmo) employee was unloading materials at hot springs fuel site when, he felt pain in his right shoulder. Supervisor: gary m. Wilson
## 4875                                                                                                         11/07/2002 10:50 am (fblackmo) employee picked up a 5 gallon can filled with cleaner fluid when, he felt pain in his left shoulder. Supervisor; jerry keene
## 4876         11/07/2002 11:00 am (fblackmo) employee stated he got his dot truck hung up in the median of I-85 while conducting a inspection of the guardrails. Trying to rock the truck out of median employee felt pain in his right upper arm. Supervisor: j. D. Lusk
## 4877           11/07/2002 11:21 am (fblackmo) employee was driving to wayne county register of deeds office. Employee stopped on us 117 in fremont for a car turning left across traffic. A produce truck was coming up behind employee and fell to stop, hitting employ
## 4878                                                                                                                     11/08/1999 09:26 am Mr. Cook injured his lower back on 10/25/99 while attempting to pickup small branches from roadway. Supervisor: j. M. Brown
## 4879                                                                                                                                  11/08/1999 09:41 am Mr. Roberts cut his lower lip while chaining tie down spreader. The tie down slipped hitting him in the mouth.
## 4880                                          11/08/1999 09:46 am Mr. Forgay was struck by a tree limb while cutting trees on right of way on sr 1261 in guilford county. He was hit on his left hand and had a splint put on his hand 10/27/99. Supervisor: a. L. Smith
## 4881                                                   11/08/1999 09:56 am Mr. Angel came in contact with poison ivy/oak plants while helping shrub and bushout ditches with bush axe on 10/15/99. A rash appeared on his arms and chest area. Supervisor: d. W. Woodard
## 4882                11/08/1999 10:03 am Ms. Godwin has carpal tunnel syndrome in left hand and wrist. Cts is caused by repetitive motion of the wrist while using keyboards. Ms. Godwin has pain, numbness and tingling in her left hand and wrist. Supervisor: tim litt
## 4883          11/08/2001 02:11 pm (fblackmo) employee went into welcome center and put her hand on the counter. Employee noticed she had laid her right hand, which she had wounded just before going to the welcome center, into a puddle of fresh blood on the counter
## 4884                                                                                                                                11/08/2001 02:27 pm (fblackmo) employee was hammering on a tie rod when the hammer slipped and hit his hand. Supervisor: a. D. Cloer
## 4885          11/08/2001 02:43 pm (fblackmo) employee was breaking down rods with a pipe wrench when the driller attempted to lift the rods by use of the wrench. As the rods were raised, his finger became caught between the wrench and the bottom of the hammer resu
## 4886           11/08/2001 03:53 pm (fblackmo) employee was raking out material in a driveway. Shortly after he finished, he felt a sharp pain in his lower back. Employee continued to work the rest of the day and the pain worsened over night. Supervisor: k. L. Ande
## 4887                                                                                                            11/08/2001 09:37 am (fblackmo) employee tripped over a loaded pallet while trying to brake his fall, his right upper arm popped. Supervisor: w. E. Evans
## 4888           11/08/2001 10:01 am (fblackmo) crew leader was cutting a cedar tree along fence line, tree started to falling in the wrong direction. Employee and another worker tried to re-direct the falling tree. The tree shifted causing the limbs to hit employee
## 4889            11/08/2001 10:20 am (fblackmo) employee injured her left ankle by stepping in a ditch at the edge of a driveway. There was no driveway pipe at the location as stated by the employee. The ditch was shallow but employee fell to the ground. She also s
## 4890            11/08/2001 10:55 am (fblackmo) employee was removing wheels from trailer. A wheel was hung up and would not come off. Employee went under the trailer to see if the brakes was the cause. While under the vehicle something fell into the employees left
## 4891                                                                                                         11/08/2001 11:07 am (fblackmo) employee tripped on carpet edge at the point were the carpet and tile meet in the hallway. Supervisor: charles m. Timberlake
## 4892                                                                    11/08/2001 12:46 pm (fblackmo) employee was standing up resting behind a guardrail, he passed out falling backwards hitting his head over a rock. Employee cut his head. Supervisor: calvin peed
## 4893                                                                                                                     11/09/1999 02:37 pm employee was stepping over alum. Pipe; slipped off pipe striking left hand on galv. Bolt, lacerations to palm of left hand.
## 4894                                                                                                                              11/09/1999 03:00 pm employee was watching fuel-man refuel his mowing tractor when a yellow jacket stung said employee under right eye.
## 4895                                                                             11/09/1999 04:19 pm Mr. Sharpe injured his left hand thumb while making repairs to broken wires. He pushed the insulation off the wire causing the injury. Supervisor: jerry w. Porter.
## 4896                                                                                                11/09/1999 09:47 am Mr. Anderson was loading paint barrels onto a hand truck, when the barrel slipped off hitting the top of his left foot. Supervisor: clyde carter
## 4897                                                                        11/09/2000 02:06 pm employee was attempting to cross a steam at starmount park project. Mr. Case lost his footing on loose rocks and twisted/sprain his right ankle. Supervisor: c. D. Kimes
## 4898                                                                          11/09/2000 02:17 pm employee was walking down front slope of ditch when he lost his footing and fell on rip rap stones. Mr. Clay strained his mid and lower back. Supervisor: r. R. Fuller
## 4899                    11/09/2000 02:37 pm employee was providing a ride and assisting an injured employee to doctors appointment. She was lifting wheel chair to put into the truck when she felt pain/pull in her mid and lower back areas. Supervisor: tania sanders
## 4900                                                     11/09/2000 02:50 pm employee was changing tractor tire when the bead breaker slide came out of the tube. His right index finger was caught between the tube and the slide hammer handle. Supervisor: l. M. Hair
## 4901                                                                                                                          11/09/2000 03:19 pm Mr. Dollar hit his right elbow on electronic console when snow plow frame fell off dump truck. Supervisor: j. N. Mixon
## 4902                                                                          11/09/2000 03:32 pm employee was grinding on tailgate of truck; when he stepped off stool and tripped over air hose. Mr. Bedsaul twisted/sprain his right ankle. Supervisor: j. D. Shelton
## 4903              11/09/2000 05:04 pm a private truck came through work zone and its back tire was on fire. Mr. Watson started spraying tire with the extingisher, when the tire suddenly blew out. Extingisher chemicals and rubber blew into both eyes. Supervisor: a.
## 4904                                                                                                                                                     11/1/2005 08:34 am (fblackmo) employee was using chain saw when, he cut his left knee. Supervisor: david silver
## 4905                                                                                                                      11/1/2005 08:47 am (fblackmo) employee was attempting to clean a lit touch when, he burned his left ring finger. Supervisor: kevin lamar cooke
## 4906                                          11/1/2005 09:12 am (fblackmo) employee was performing a survey at a safety inspection station. Employee tripped on a low step, falling to the floor hitting her head, left elbow, and both knees. Supervisor: ben a. Riggs
## 4907         11/1/2005 10:09 am (fblackmo) employee was walking back from mail box when, she stumped her toe in the parking lot and fell on hands and knees. Employee fractured her left elbow, and had scratches/abrasions to both knees, hands, and left shoulder. Sup
## 4908         11/1/2005 10:33 am (fblackmo) employee was conducting an inspection on csx transportation of crossing signals at state road 1509 when, a motorcycle struck the crossing gate. The gate broke away from the mounting bracket striking employee on right side
## 4909                                                                  11/1/2006 01:12 pm (fblackmo) employee was getting out of dump truck, holding onto door and ring got caught on a bolt on the door, causing laceration to left ring finger. Supervisor: ronnie king
## 4910                                                                                                                                      11/1/2006 08:59 am (fblackmo) employee was loading and blowing straw when, he was bitten by straw mite. Supervisor: sam wilson
## 4911        11/1/2006 09:27 am (fblackmo) employee reported that while assisting a fellow employee fill a piece equipment (kettle, leeboy 500) he lifted his left leg onto the equipment; followed by his right leg when he heard his right knee pop. Supervisor: robert
## 4912         11/1/2010 10:07 am (barnes) employee was hooking an equipment trailer to a tandem truck. When employee attempted to step over the tongue of the equipment trailer, his right foot slipped and his right knee hit the trailer. Employee injured his right kn
## 4913                                                                       11/10/1999 01:04 pm after removing material from inside of ring. I was twisting and pulling up on the ring to remove it from gravel and twisted my right wrist. Caused a sprain to the wrist.
## 4914                                                                                      11/10/1999 01:24 pm employee was removing sign from ditch, sign was still covered with dew, she slipped and the sign came up and the post hither on the left knee as she fell.
## 4915           11/10/1999 01:40 pm employee was driving north on beatties ford road. A car in front of the car that was in front of the employee stopped to make a right turn into a driveway. The car in front of the employee stopped and the employee stopped also. T
## 4916                                                                                                                                     11/10/1999 01:54 pm employee standing in stack of wood pallets, pallets shifted employee fell on right elbow, jamming shoulder.
## 4917            11/10/1999 02:14 pm employee was stopped for a vehicle turning left, when the 1994 ford pickup struck him in the rear of his vehicle causing him to strike the vehicle in front of him. Neck and back are sore vehicle #1 was stopped behind vehicle #3.
## 4918                                                                 11/10/1999 02:44 pm Mr. Mcpherson injured his left arm/shoulder while sitting on the passengers side in an attenuator with Mr. Josephus baum wc # 16674 on 9/29/99. Supervisor: w. L. Saunders, jr.
## 4919                                                                                       11/10/1999 03:36 pm Ms. Wheeler strained her right ankle when she slipped out of truck. She missed the first step pulling her ligaments in her foot. Supervisor: j. J. Garris
## 4920                                                                       11/10/1999 10:39 am Mr. Wooten pulled a sign out of the box part of the way, he place the pliers on side of box to give other employee time to get red flag and was hit on left side of face.
## 4921                                                                                    11/10/1999 10:54 am employee was on lunch break, sitting in the truck and stretched hand out of the truck window and the wind caused the rear door to close on his right finger.
## 4922                                                                                              11/10/1999 12:35 pm employee was repairing a broken sickle knife in the bar. He was placing rivets in the bar, when he struck thumb with the hammer causing fractures.
## 4923                                                                   11/10/1999 12:39 pm Mr. Dixon suffered a hernia in his lower extremities on 10/28/99. He was moving timbers on dump truck when the incident occurred. Supervisor: a. E. Moore 02/01/2000 01:28 pm
## 4924                                                                                       11/10/1999 12:46 pm employee was cutting dead tree off road right of way that had poison oak vines all over it creating dust when being cut. Inhaled dust particles in lungs.
## 4925           11/10/1999 12:48 pm Mr. Baum injured his left shoulder/arm on 9/29/99 when involved in auto collision. He was sitting in the driver's seat operating an attenuator with arrow board running at the time. The dump truck could not get over into passing l
## 4926                                                  11/10/2005 04:04 pm (fblackmo) employee was flagging traffic and fell to the ground complaining of pain in left side. Emergency medical service was called, employee was taken to hospital. Supervisor: ira harris
## 4927          11/10/2008 03:08 pm (fblackmo) employee was talking with other employees when he felt abdominal hernia suddenly protrude. He attempted to manually replace the strangulated hernia, but phone wife to take him to the emergency room where surgical repair
## 4928                                                                   11/10/2008 03:19 pm (fblackmo) employee was conducting a training dive with a new employee, after dive he had fluid trapped in ear which later turned into an infection. Supervisor: brad cleaver
## 4929                      11/10/2008 03:30 pm (fblackmo) employee was lifting a battery for the m/v ocracoke when, he felt a sharp pain in his lower back area. Employee was standing approximately 10 inches below normal standing height. Supervisor: richard dewhurst
## 4930                                                                                                                                         11/10/2008 03:42 pm (fblackmo) employee was flagging traffic when, truck blew debris into his eyes. Supervisor: jim wiggins
## 4931                                                  11/10/2008 04:06 pm (fblackmo) employee was trying to adjust the chain on the tailgate, and the tailgate was lowered. His finger was caught between the tailgate and the end of the chain. Supervisor: ernest pitt
## 4932                                                                                                                                            11/12/2003 02:18 pm (fblackmo) employee was lifting ice cooler when, he felt pain in his back. Supervisor: d. C. Sherrod
## 4933                                                                                                                                         11/12/2003 02:47 pm (fblackmo) employee was taking apart a sign when, he was struck in the head. Supervisor: johnny coleman
## 4934          11/12/2003 03:01 pm (fblackmo) employee was assisting with yard clean up operations, loading a pile of brush onto a dump truck. Employee picked up a limb that had fallen from a tree onto a snow plow. He drag the limb to the brush pile and while doing
## 4935                                                                                                                                           11/12/2003 03:42 pm (fblackmo) employee fell over guardrail causing the injury to his fingers. Supervisor: johnny coleman
## 4936                                                                                   11/12/2003 11:37 am (fblackmo) employee was installing a snow plow on a tandem truck when, the plow fell over causing a laceration to his center finger. Supervisor: wayne currin
## 4937                                                                                                          11/12/2003 11:49 am (fblackmo) employee was driving a dump truck when, he ran off the road causing the injury to his left arm. Supervisor: mark turlington
## 4938                                                                                                                   11/12/2003 11:59 am (fblackmo) employee states while climbing down salt spreader he, felt pain in his right knee area. Supervisor: d. M. Pressley
## 4939                                                                                11/12/2003 12:31 pm (fblackmo) employee states she is experiencing pain in her back and right side area due from ranking and lowering a mechanical tamp down. Supervisor: c. F. Vick
## 4940                11/12/2003 12:51 pm (fblackmo) employee states, while cutting bushes from around a road sign using a weedeater with a bush blade attachment the, weedeater kicked back causing handle to come out and cut his right wrist. Supervisor: todd whitaker
## 4941         11/12/2008 08:44 am (fblackmo) employee was preparing for putting in a crossline when a gas line was hit by the backhoe. The gas escaped knocking employee down. It knocked the breath out of him and caused his eyes to be irritated. The gas line was not
## 4942                                                       11/12/2008 08:55 am (blgay) employee with e&h mowing contractors, inc. Was mowing grass on a tractor on I-40 in haywood county when he was hit by a u-haul truck. Not a ncdot employee - ic requiring to pay.
## 4943                                  11/12/2009 01:34 pm (blgay) employee was pulling guard rail cable, when the turn buckle came loose, causing him to fall backwards into the anchor unit. Employee has pain in his right hip and pelvic area. Supervisor: mark crook
## 4944         11/12/2009 01:51 pm (blgay) employee was returning survey equipment to carryall. When he laid level on top of other equipment, it rolled off and mashed his left thumb between the metal box and level, causing it to pinch or hyper extend his left thumb.
## 4945          11/12/2009 02:04 pm (blgay) employee was going to repair a broken water line, where the tackhoe had been digging, causing the land to be uneven. As employee was going to the water line, he took a step and rolled his right knee. Supervisor: mark crook
## 4946                                                                                         11/12/2009 02:05 pm (fblackmo) employee states something is in the air that is affecting her physically. Neurological (breathing) facial twitches. Supervisor: jimmy hawley
## 4947                                                                    11/12/2009 12:00 pm (fblackmo) employee was mowing shoulder of the road when, private vehicle hit the mower on the left side near tire. Employee felt pain in his back. Supervisor: carlis smith
## 4948                                                                                                             11/12/2009 12:20 pm (fblackmo) employee was adjusting driveway pip during installation when, he felt pain in his lower back. Supervisor: w. T. Mckenzie
## 4949         11/12/2009 12:50 pm (blgay) employee was cutting a tree down. He began limbing the tree. Employee stopped to allow other co-workers to catch up on chipping and clean up and set his saw down. When others caught up, employee bent down to pick up saw and
## 4950                                                                                11/13/2000 05:15 pm during a road test the customer lost control of the vehicle slamming on the brakes. Mr. Conley has pain in his lower back and neck. Supervisor: charlene johnson
## 4951                                                                               11/13/2000 05:28 pm employee was running during pt training phase and was tripped by another classmate. She fell striking her left knee on the pavement. Supervisor: ssg. Tim hickman
## 4952                                                                    11/13/2001 10:54 am (fblackmo) employee was walking across rebar carrying a bucket of concrete for testing and slipped on rebar and pulled right shoulder and groin. Supervisor: r. Mark freeman
## 4953                                                                                                   11/13/2001 11:08 am (fblackmo) employee was loading signs into truck when the wind caught hold to sign causing employee to hurt his back. Supervisor: b. J. Vance
## 4954                                          11/13/2001 11:21 am (fblackmo) employee lifted carrying case for nuclear gauge off the back of pickup bed. Employee turned to enter garage area and felt pull in lower abdomen on right side. Supervisor: frank j. Gioscio
## 4955                                    11/13/2001 11:44 am (fblackmo) employee was loading nail spikes into the bed of his truck. He was standing on the dock, bending down into the truck when he felt a pull on the left side of his back. Supervisor: terry j. Davis
## 4956           11/13/2002 01:23 pm (slee) employee was driving a crew cab pickup on sr 2306 in chatham co. And was following another traffic services pickup in route to a job site. A deer ran onto the roadway in a curve from the woods on the left side of the road.
## 4957                                                                                           11/13/2002 07:36 am (fblackmo) employee was standing on the left front tire when the operator moved the boom causing employee to fall backwards. Supervisor: ronald peace
## 4958                                                                                                                11/13/2002 08:28 am (fblackmo) employee stated that while stepping out of truck his right foot slipped causing him to fall. Supervisor: w. H. Monroe
## 4959                                                                                                                                       11/13/2002 08:43 am (fblackmo) employee stated while walking towards the elevator he stumped his toe. Supervisor: tony spence
## 4960          11/13/2002 09:04 am (fblackmo) employee was straightening a tarp arm using a wood block as a wedge and a chain hoist as leverage when, he released the pressure form the wedge and leverage the wood fell and struck him on his left shoulder. Supervisor:
## 4961                                                                                                             11/13/2002 09:24 am (fblackmo) employee was taking off light fixture cover when, it fell striking employee on his right hand. Supervisor: o. J. Whitney
## 4962                                                                                        11/13/2002 09:37 am (fblackmo) employee was tying done signs to the back of truck with a rope. The rope broke causing him to fall on the asphalt. Supervisor: jimmie sessoms
## 4963                                                                                   11/13/2002 09:52 am (fblackmo) employee was bending over looking under his truck for an oil leak. Employee went to stand up, felt pain in his right leg. Supervisor: joe r. Myers
## 4964                                                                                               11/13/2003 03:05 pm (fblackmo) employee states while filling truck with gas he, got in truck right foot first and felt pain in his left knee. Supervisor: r. D. Isley
## 4965                                                                                                            11/13/2003 03:41 pm (fblackmo) employee states he tripped over a slurry line while carrying a table causing pain to his back. Supervisor; mark e blalock
## 4966                                                                                                                                                 11/13/2003 04:04 pm (fblackmo) employee is experiencing pain in her left hand and wrist. Supervisor: lorrie sineath
## 4967                                                                                                   11/13/2006 02:25 pm (fblackmo) employee fell in ditch while searching for end of cross link under road. Employee felt pain in lower back. Supervisor: c. I. Lucas
## 4968                                                                                                                       11/13/2006 12:26 pm (fblackmo) employee was brush cutting in tall grass and bumped into an unseen protruding object. Supervisor: robbie beach
## 4969                                                                                                                              11/13/2006 12:39 pm (fblackmo) employees hand was cut while cutting plastic securing tie from boat hook. Supervisor: h. C. Scarborough
## 4970                                       11/13/2006 12:49 pm (fblackmo) employee was putting salt spreader on swb truck. He was getting up on truck to unhook spreader when his foot slipped off the side causing pain to his right shoulder. Supervisor: henry worley
## 4971             11/13/2007 02:41 pm (mdsloan) employee was cutting trees on the right of way and came into contact with poison ivy. Employee did have on long sleeves, gloves, mask and safety glasses. Employee was effected on both arms, neck, torso, and both legs.
## 4972                                                                                                                                      11/13/2007 03:06 pm (mdsloan) employee caught a grader tire that was falling and twisted his lower back. Supervisor: jc cooper
## 4973          11/13/2007 03:51 pm (mdsloan) employee was running the buttons on the stone spreader and the driver was hooking the spreader to the truck when the driver noticed that the spreader started rolling forward and he saw that the spreader was not hooked up
## 4974                                                                                                                                 11/13/2008 01:24 pm (blgay) employee was riding in state vehicle east on hwy 78 when it was rear ended. Supervisor: johnny ransdell
## 4975                                                                                                                                                 11/13/2008 01:41 pm (blgay) employee was driving east on hwy 78 when he was rear ended. Supervisor: johnny ransdell
## 4976                                                                                                           11/13/2008 02:50 pm (fblackmo) employee stepped on a board that had a nail sticking up while moving out of the way of a spreader. Supervisor: jerry keene
## 4977         11/13/2008 09:54 am (blgay) employee was climbing up the fill face of end bent #2 on bridge construction project. Large rip rap was placed on fill face and the contractor had laid h beam on top of cap of end bent #2. Employee was bending over to go un
## 4978         11/13/2008 10:24 am (blgay) employee was trying to adjust the chains on the tailgate of his swb dump truck. He pushed on the tailgate, but could not get enough slack in the chains to make the adjustments due to milling debris. He pulled the tailgate b
## 4979                                         11/13/2008 10:44 am (blgay) employee had to pick up a heavier than normal cart with lots of notebooks in it, due to the fact the elevator did not work. Employee strained lower back in doing so. Supervisor: lane mallonee
## 4980          11/13/2008 11:07 am (fblackmo) employee was using drill to mix concrete when he went to reposition hand toward bottom of drill to mixing motion his glove got caught on drill chuck and pulled his arm and hand. The machine ripped the glove off his hand
## 4981                                                                                                                11/13/2009 03:31 pm (fblackmo) employee was getting something out of storage locker when, he cut his right arm on sharp edge. Supervisor: j. D. Baum
## 4982                                                           11/13/2009 09:10 am (fblackmo) employee was working in tall grassy area when, he was bitten by a tick on his left calf. Supervisor: rod wyatt 03/14/2011 02:37 pm (jwilson) 03/14/2011 02:39 pm (jwilson)
## 4983                                                                            11/13/2009 09:23 am (fblackmo) employee was racking a storm water device retaining wall when his foot slid on loose dirt. Employee felt pain in his left knee. Supervisor: john b. Adams
## 4984                               11/14/2002 09:17 am (fblackmo) employee stated he injured his right knee when, he slipped and fell on his hands and knees while attempting to step down from a one foot elevated shoulder slope to the road. Supervisor: wayne currin
## 4985                                                                                                11/14/2002 09:33 am (fblackmo) employee states that while lifting a trailer tongue to hook up on the back of truck, he felt pain in his back. Supervisor: ken masson
## 4986                                 11/14/2002 10:46 am (fblackmo) employee was standing on bumper of sign truck replacing a missing bolt on previously installed sign. Employee went to step down hitting his right elbow on the sign post. Supervisor; g. W. Williams
## 4987                                                                       11/14/2002 11:14 am (fblackmo) employee states while cutting down a 8" hickory tree a limb from the tree struck him on his left arm. Supervisor; l. T. Williford 09/22/2003 04:25 pm (gwhite)
## 4988                                                             11/14/2003 07:42 am (fblackmo) employee was stretching on brick heat shield behind wood stove when, top four rows of bricks collapsed causing the injury to his right ankle. Supervisor: d. M. Pressley
## 4989                                                                   11/14/2003 08:23 am (fblackmo) employee felt pain in his neck and shoulder muscles while operating grader clearing debris form roadway the day after hurricane isabel. Supervisor: cola m. Conenr
## 4990            11/14/2003 08:50 am (fblackmo) employee was assisting with roadway debris removal after hurricane isabel. Employee states he twisted his knee while trying to step out of tree branches while cutting trees. Employee went to doctor on 10/1/2003. Super
## 4991                                                                                                                 11/14/2003 09:27 am (fblackmo) employee was entering vehicle from picking up trash when, he finger was slammed in the door. Supervisor: tom huskins
## 4992                                                                                                                                                       11/14/2003 09:45 am (fblackmo) employee was bitten by insect while flagging traffic. Supervisor; r. L. Taylor
## 4993                                                                                               11/14/2003 10:28 am (fblackmo) employee was flagging and walking backwards and tripped over small limb causing injury to buttocks area. Supervisor: c. Gerald woodley
## 4994             11/14/2007 02:15 pm (fblackmo) employee was in the process of putting a utility body on f-350 truck and while working up under the bed of the truck with safety glasses on a small amount of metal got into his left eye. Supervisor: james bell 1/14/2
## 4995                                                                                                            11/14/2007 02:37 pm (fblackmo) employee was cutting a piece of boat line when, knife slipped cutting his right index finger. Supervisor: susan h. Kinner
## 4996                                                                                                                             11/14/2007 03:03 pm (fblackmo) employee was cutting iron when, plate fell on his lower left arm causing a burn. Supervisor: kevin cooke
## 4997                      11/14/2007 03:14 pm (fblackmo) employee sat down in pick up truck and noticed a spider on the window. Employee knocked spider out the window, when he reached to get some water he noticed a bump on his right arm. Supervisor: dennis stewart
## 4998                                                                11/14/2007 03:44 pm (fblackmo) employee was replacing clogged tip on crack sealing machine when, hot sealant escaped and got into employees glove, burning his right hand. Supervisor: terry j. Shaw
## 4999                                        11/14/2007 03:52 pm (fblackmo) employee stated while bending over to help lower a jack into another jack ram position, he hit his back on the corner of the fire extinguisher causing scratch. Supervisor: albert strickland
## 5000                                                                         11/14/2007 12:05 pm (fblackmo) employee reported to her supervisor that her thumb starting going numb, felt tingling in hand, and arm (left). Cause was unknown. Supervisor: michele bailey
## 5001                                                                                                                                                      11/15/2001 08:52 am (fblackmo) employee re injured his knee during p. T. Session training. Supervisor: k. King
## 5002        11/15/2001 09:10 am (fblackmo) on 9-21-2001 employee was doing physical fitness training and felt pain in both of her knees. Employee states that the pain started on 9-20-2001 while the 39th basic academy was doing the mile and a half p. T. Assessment.
## 5003                                                                                                   11/15/2001 09:26 am (fblackmo) employee stepped out of backhoe onto the shoulder of roadway while stepping his left foot turned over. Supervisor: steve a. Hardin
## 5004                                   11/15/2001 09:38 am (fblackmo) the crew was surveying in a new centerline in a brier thicket. Employee was using a machete to help clear the line of sight when he caused the injury to his left shoulder. Supervisor: s. W. Tate
## 5005            11/15/2001 09:54 am (fblackmo) employee was dumping a load of tree limbs. A limb was wedged between the top of tailgate and under the loader causing the tailgate not to open. Employee stepped out of truck and attempted to open open tailgate by hand
## 5006                                                                       11/15/2001 10:40 am (fblackmo) employee and four other employees was lifting the cab of a truck when something pulled in right shoulder causing a burning feeling. Supervisor: mark y. Walker
## 5007                                    11/15/2002 08:18 am (fblackmo) employee states holding the door while another co-worker was killing a spider, the noise from the broom hitting the door caused her to experience ringing in both ears. Supervisor; wendi johnson
## 5008                                                                                                                              11/15/2002 08:36 am (fblackmo) employee states his left hand was caught in door when the wind blew it closed. Supervisor: marc pollard
## 5009                                                                                                             11/15/2002 08:48 am (fblackmo) employee states when he bent over to get paper from behind the desk, he hit his head on a nail. Supervisor: t. M. Bailey
## 5010                                                                                                                     11/15/2004 02:55 pm (fblackmo) employee states while clearing vegetation with bush axe he, felt pain in his groin area. Supervisor: d. C. Diggs
## 5011                                                                                                         11/15/2004 03:07 pm (fblackmo) employee closed door on hand. Bruised center finger. Cut ring finger. Broke ring finger on left han. Supervisor: don ferrier
## 5012                                                                                                                                       11/15/2004 03:26 pm (fblackmo) employee states while shoveling rocks he, felt pain in his lower back. Supervisor: greg vinson
## 5013                                                                                                  11/15/2004 04:28 pm (fblackmo) employee was stepping onto main car deck, when heel caught edge of last step causing left ankle to twist. Supervisor: s. J. Goodwin
## 5014                                                                                            11/15/2004 11:36 am (fblackmo) employee was replacing damaged guard-rails and cleaning out drop inlet boxes when, he felt pain in his back. Supervisor: wendell chastain
## 5015         11/15/2005 02:49 pm (fblackmo) employee was cutting off the top excess of one post when, the wind blew the sign which suspended from the truck and hit the ladder. Employee grab the ladder to catch himself and released the chain saw which fell on his a
## 5016                                                                 11/15/2005 11:43 am (fblackmo) employee was cutting right of way on secondary road when, he slipped and fell over fallen tree. Employee felt pain in his left knee/leg area. Supervisor: t. L. Hall
## 5017                                                                                            11/15/2006 10:36 am (fblackmo) employee was rear ended on grader when a private vehicle failed to yield causing pain to his head and neck area. Supervisor: r. N. Harden
## 5018                                                                                                                     11/15/2006 10:48 am (fblackmo) employee was shoveling asphalt off of pavement when, he felt something in his left eye. Supervisor: c. W. Garris
## 5019                                                                                         11/15/2006 10:57 am (fblackmo) employee was walking across unfinished bypass project when, he stepped in a soft spot and felt pain in lower right leg. Supervisor: r. Vause
## 5020                               11/15/2006 11:11 am (fblackmo) employee was checking exhaust system while performing a routine pm. A piece of metal fell from the exhaust system, went behind his safety glasses and got into his left eye. Supervisor: alvin w. Ball
## 5021                                                                                                                        11/15/2006 11:21 am (fblackmo) employee hit his left knee on guardrail post while trying to climb over the guardrail. Supervisor: david hall
## 5022                                                                                                          11/15/2006 11:31 am (fblackmo) employee went to change rock guard, slipped and fell down embankment causing pain to lower back. Supervisor: greg mccracken
## 5023                                        11/15/2006 12:12 pm (fblackmo) employee was walking behind the barrier wall to survey pipe line when, a semi truck passed by throwing debris in the air causing a object to strike him in left eye. Supervisor: c. R. Styles
## 5024                              11/15/2007 01:08 pm (mdsloan) employee was climbing on grader when his foot slipped off of blade and his leg struck blade employees leg slid down length of blade causing a cut and bruising on his left leg. Supervisor: r. L. Adcock
## 5025           11/15/2007 08:44 am (mdsloan) employee was drilling holes in a 3x3 plates with a drill press then the glove on the left hand got caught on the drill bit and pulled employees hand and arm around the drill press tearing a gash in the left index finger
## 5026                                                                    11/15/2007 09:02 am (mdsloan) employee was cleaning a tree from the right of way when the employee got into some poison oak/ivey on his back and left and right arm. Supervisor: travis l morgan
## 5027           11/15/2007 09:49 am (mdsloan) employee on 9-25-2007 was milling and patching on I-40 near mm39. She was sweeping millings up and as she did this she felt her shoulder pop she reported this to robert hollifield that afternoon and employee approximate
## 5028                                                             11/15/2007 11:18 am (mdsloan) employee was installing pipe and went tot he truck to get a water pump and stepped his right foot in a small drainage ditch and injured his back. Supervisor: garry moore
## 5029                  11/15/2007 11:58 am (mdsloan) employee was fueling up the motor grader when he started to get off his foot slipped and he lost footing and employee fell landing on the outside of his right foot and twisting his ankle. Supervisor: stacy miller
## 5030                                                                                                                                                    11/16/1999 02:15 pm employee was walking around motel for exercise when he slip and fell braking his right ankle
## 5031                                                                                                                                                                    11/16/1999 07:27 am employee hit elbow on the tailgate and broke the skin, causing an infection.
## 5032                                                                                 11/16/1999 08:35 am employee was getting out of beltloader had water jug in one hand and the other hand on step to step to ground. Ring finger of left hand got caught on top step.
## 5033                                                                                                                      11/16/1999 08:48 am employee was stepping down off running board on dump truck stepped on rock or bolt laying on ground causing knee to twist.
## 5034                                                                                                                               11/16/1999 08:59 am employee was struck in his right eye by a flying object, wearing safety glasses, when a private vehicle drove by.
## 5035                                                                            11/16/1999 09:08 am employee was cutting off sheet foot pile. He was leaning around corner and cutting it off with a torch, a hot piece of metal went into left ear. 02/04/2000 09:56 am
## 5036                                                                                                     11/16/1999 09:21 am employee was cutting a tree, a vehicle entered the work zone. He tried to stop the tree. The tree kicked back striking him in the left leg.
## 5037                                                                                                         11/16/1999 09:31 am getting into tandem using 3-point method, left foot slipped on step, pushing foot back, injuring left foot and toes. Sprained left foot
## 5038            11/16/2000 10:35 am employee was directing the backing of a dump truck; when left foot was run over by vehicle. His left elbow hit the hood and his left hip was hit by the passenger side mirror. The driver fled the scene. Mr. Tucker tried to step b
## 5039                                                     11/16/2000 10:43 am employee was walking to her car when she stepped in a hole and fell to the ground. Ms. Floyd strained/sprained her right foot, left knee, and lower back areas. Supervisor: lucille clemons
## 5040              11/16/2000 10:52 am employee was securing a power line on boat cleat. She was not aware of her surroundings when she raised up from being bent over. Ms. Wilkins struck the top of her head and strained her neck as well. Supervisor: capt. E. N. Wat
## 5041                                                                                                                                     11/16/2000 11:01 am employee was picking up loads of asphalt; when dust debris flew into his left eye. Supervisor: s. G. Dillon
## 5042                                                                                            11/16/2000 11:05 am employee bent over to move a small stool out of the way; when she bumped her head (right eye) against file drawer. Supervisor: charles m. Timberlake
## 5043                                                                                                           11/16/2000 11:11 am employee was putting bush axe in vise and sharping the axe; when the file slipped and cut his left hand. Supervisor: quindale bullard
## 5044                                                11/16/2000 11:17 am employee was entering the building opening the door with his right hand on 10/30/00. His right hand slipped off the handle and the door slammed shut on his left hand. Supervisor: kent d. Boyer
## 5045                                                                                                     11/16/2000 11:21 am employee was lying on mechanical creeper (push type leaf blower) when he stood up he felt a pain in his lower back. Supervisor: j. K. Rhyne
## 5046                                                                             11/16/2000 11:27 am employee was spraying herbicides when he came in contact with the chemical. He has a rash on both hands up to his elbows and on both knees. Supervisor: steve blake
## 5047                              11/16/2000 11:32 am employee was assisting the dumping of dirt from a single axle dump truck on 11/2/00. While holding the tailgate chain to allow a lodged tire to be removed he cut his right middle finger. Supervisor: k. T. Hicks
## 5048           11/16/2000 11:38 am employee was reaching behind the passenger seat to grab a set of plans. He lifted the plans over the seat and felt a pain in his right arm. He mentioned his arm was feeling numb earlier in the month, but didn't tell how it happen
## 5049                                                  11/16/2001 03:15 pm (fblackmo) employee had ended her work day and was headed for her vehicle when she tripped over a rock causing her to fall face down on the pavement in the state parking lot. Gwendolyn smith
## 5050                                                                                                                              11/16/2001 03:30 pm (fblackmo) employee was racking concrete and pulled muscle in right shoulder and back. Supervisor: johnny ransdell
## 5051                                                                         11/16/2001 04:01 pm (fblackmo) employee was loading pipe on dump truck. Employee lost his footing when climbing off dump truck and hit his knee on side of dump bed. Supervisor: t. L. Hall
## 5052                                                                                                            11/16/2001 04:10 pm (fblackmo) employee lifted a piece of steel out of the steel rack and injured his left knee in doing so. Supervisor: d. E. Bowers jr
## 5053                                     11/16/2001 04:22 pm (fblackmo) employee was using a hedge trimmer cutting down lilies when he felt a burning feeling on his leg. Thats when employee realized that he had cut himself with the trimmer. Supervisor: steve blake
## 5054                                                        11/16/2004 08:07 am (fblackmo) employee was exiting back stairwell when, she slipped and fell due to wet steps from rain. Employee experienced pain in left ankle and right knee area. Supervisor: don davis
## 5055                                       11/16/2004 09:05 am (fblackmo) employee was operating tractor when he experienced pain in his lower back. Employee states after working for the next two days a knot formed in center part of back. Supervisor: napoleon barr
## 5056                                                                                                                         11/16/2004 09:18 am (fblackmo) employee was reaching to open bottom tailgate when, he cut his right ring finger. Supervisor: robert winslow
## 5057                                                  11/16/2004 09:29 am (fblackmo) employee was walking behind a road maintenance machine that was spreading dirt on the shoulder of road. The operator of a crewcab pickup struck employee. Supervisor: shelton james
## 5058                                                                                                                                 11/16/2004 09:41 am (fblackmo) employee states while lifting blocks he, felt pain in his right side area. Supervisor: r. L. Cochran
## 5059                                                                                                                    11/16/2004 09:50 am (fblackmo) employee states while eating lunch in truck he, was stung by a bee on left side of neck. Supervisor: j. F. Bishop
## 5060                                                                                                                               11/16/2004 10:02 am (fblackmo) employee was exiting bathroom when, she slipped and fell due to water on floor. Supervisor: linda hill
## 5061         11/16/2005 02:24 pm (fblackmo) employee was showing injured employee a new route to rock quarry. The first employee put on his signal and the injured employee looked over the the left to see the quarry location. When injured employee looked back at th
## 5062                                                                                                       11/16/2005 10:49 am (fblackmo) employee was walking to vehicle when, she tripped and fell causing the injury to her right wrist. Supervisor: stephanie branch
## 5063                                                                                                   11/17/1999 10:17 am officer caldwell was traveling on nc 55 when a vehicle cross centerline of highway striking officer caldwell's car. Neck, back and left knee.
## 5064           11/17/1999 10:35 am employee was working with crew using amz patch machine on sr 1005. Employee was using push broom to push loose gravel back onto asphalt patch. Employee a. Stanley came up behind m. Jacobs and bumped the back of m. Jacobs left kne
## 5065                                                                                                                                                                             11/17/1999 11:06 am employee was shoveling gravel off intersection. He ruptures a disc.
## 5066                                                                                                                                     11/17/1999 11:19 am employee was helping put plastic tarps on stock piles of sand when piece of sand became lodged in left eye.
## 5067                                                                                                    11/17/2003 10:37 am (fblackmo) employee states while walking up steps to ferry office when, he tripped and fell due to poor lighting. Supervisor: cliff swindell
## 5068                                                                                                                                 11/17/2005 01:12 pm (blgay) employee was stepping out of dump truck and left knee popped out of joint. Supervisor: robert d. Loflin
## 5069                                                                                                                                              11/17/2005 01:31 pm (blgay) employee was surveying when he came in contact with poison ivy. Supervisor: bethany elmore
## 5070                                                                                                                                                          11/17/2005 01:48 pm (blgay) employee was surveying when he got into poison ivy. Supervisor: bethany elmore
## 5071                                                                                                                   11/17/2005 01:58 pm (blgay) employee was reaching for apiece of steel, when it slipped in hand and cut his right thumb. Supervisor: alfred wilson
## 5072                                     11/17/2005 08:20 am (fblackmo) employee was conducting a road test when, the driver drove off the road, ran over large rocks, went through shrubbery, and landscaping. Employee felt pain in her back. Supervisor: anthony lowe
## 5073         11/17/2005 08:33 am (fblackmo) employee was in the back of the asphalt truck pushing down asphalt that was stuck on the sides. Employee told another employee not to cut the auger on, other employee thought he said to cut it on. Employees left ankle/fo
## 5074                                                                                                         11/17/2005 08:46 am (fblackmo) employee was trying to remove jack hammer blade when, he felt pain in his back and right leg. Supervisor: gene e. Strickland
## 5075                                                   11/17/2005 08:57 am (fblackmo) employee was installing metal pipe when, one of the bands caught his glove pulling him into the ditch. The pipe landed on employees left arm and hand. Supervisor: larry cavenaugh
## 5076                                                                                                     11/17/2008 02:14 pm (blgay) employee was trying to break up a fight between a cat and a dog, when the cat bit her on the right hand. Supervisor: lanny hathcock
## 5077                                                                 11/17/2008 10:49 am (blgay) employee was chipping and cutting trees. After they finished, they were standing there and employee felt something fly and hit his right eye. Supervisor: warren brooks
## 5078                                                                   11/17/2008 11:00 am (blgay) employee was placing tree debris in a chipper, when his left arm became twisted in the tree, causing a sharp pain. Supervisor: terry pugh 11/17/2008 11:03 am (blgay)
## 5079         11/17/2008 12:21 pm (blgay) employee was using a hand held auger to bore holes for tree planting, the left handle on the auger broke, causing the right handle to jerk free, spun around and struck employees left hand. The impact broke a bone in employe
## 5080                                                               11/17/2009 08:44 am (blgay) employee and supervisor were lifting grates off drop inlet box. When employee lifted the grate, it caused a sharp burning pain in his lower back. Supervisor: adam biddix
## 5081       11/17/2010 02:43 pm (fblackmo) employee was at a complete stop when a private vehicle ran into the back of her vehicle. The impact caused her head to jerk suddenly striking the head rest. Employee experienced neck and back pain. Supervisor: r. E. Flaher
## 5082                                                                                                        11/17/2010 03:14 pm (fblackmo) employee was walking down slop when he fell and tried to catch himself. Employee injured left writs. Supervisor: wayne currie
## 5083                                                                                                            11/17/2010 03:45 pm (fblackmo) employee was lifting a bag of potatoes and sugar when she felt pain in her lower back area. Supervisor: h. C. Scarborough
## 5084                                                                     11/17/2010 04:59 pm (fblackmo) employee was pulling on the tie down rope when it broke causing him to fall to the ground. Employee felt pain in his lower back area. Supervisor: daniel t. Moss
## 5085                                        11/18/1999 01:19 pm the injury was caused by fumes from a primer being applied by painters on walls in offices across the hall from the office of the injured. Constricted breathing passages, congestion, headache, nausea.
## 5086           11/18/1999 10:08 am Mr. Clendenin was traveling southbound on us 1 in the city limits of sanford, when his vehicle left his lane hitting the median guardrail. After the impact the vehicle overturned and ended up on its top. Mr. Clendenin sustained c
## 5087                                                                                                               11/18/1999 10:33 am Ms. Edwards injured her lower back while assisting to load community service bags into a car on 11/10/99. Supervisor: a. L. Smith
## 5088                                                                                                                       11/18/2003 02:16 pm (fblackmo) employee was bending over to at fire hydrant when, he felt pain in his lower back area. Supervisor: rick leard
## 5089                                                                                                 11/18/2003 03:06 pm (fblackmo) employee states while drilling holes in metal, drill kicked back hitting knuckles on employees right hand. Supervisor: d. E. Clapton
## 5090                                                                                               11/18/2003 10:48 am (fblackmo) employee was helping carry a 6x6x20 wheel guard when, he slipped and fell over the block to lay the guard on. Supervisor: r. F. Minton
## 5091                                                                                                                                           11/18/2003 11:03 am (fblackmo) employee was flagging traffic when, he was hit by a private vehicle. Supervisor: d. S. Lee
## 5092                                                                                                            11/18/2003 11:13 am (fblackmo) employee was working with freight when, he finger was caught between the boxes. Supervisor: william stone & mike jefferys
## 5093                                                                                                              11/18/2003 11:22 am (fblackmo) employee was loading signs on pick up when, he finger was caught between the tailgate and sign. Supervisor: b. G. Heron
## 5094                                                                                         11/18/2003 11:47 am (fblackmo) employee states while flagging in work zone a large truck came through blowing debris into the air and in left eye. Supervisor: wayne knight
## 5095                                                                                                                             11/18/2003 12:04 pm (fblackmo) employee states while working with asphalt he, felt pain in his right shoulder. Supervisor: wayne knight
## 5096                                                                                                             11/18/2003 12:12 pm (fblackmo) employee was pulling water pump when, he stepped in a hole causing the injury to his right leg. Supervisor: daylon lynch
## 5097                                                                                    11/18/2003 12:42 pm (fblackmo) employee was checking tailgate after clearing material when, he stepped in a hole causing the injury to his right ankle. Supervisor: a. L. Sharpe
## 5098                                                                                                                                                           11/18/2003 12:51 pm (fblackmo) employee states while seeding he was stung by bees. Supervisor: jerry pate
## 5099         11/18/2004 02:30 pm (fblackmo) employee was traveling south on state road when, he ran off the road on right side. Employee went back across road and hit trees on left side of road. Employee has cuts and contusions to both arms and head concussion. Su
## 5100                                                                                                                                                11/18/2004 03:48 pm (fblackmo) employee was bitten by a dog while walking to state truck. Supervisor: stephen dillon
## 5101                                                                        11/18/2004 04:01 pm (fblackmo) employee was using a hydraulic post puller. Holding the puller during operation puller slipped causing the amputation (incomplete). Supervisor: todd whitaker
## 5102                                                                                                                       11/18/2004 04:51 pm (fblackmo) employee was reaching behind bookshelf when, a wood splinter stuck in his left forearm. Supervisor: andy brown
## 5103                                                                                                               11/18/2004 05:02 pm (fblackmo) employee was closing the door when, his hand was struck causing the injury to his right hand. Supervisor: jimmie evans
## 5104                                                                                    11/18/2008 04:03 pm (blgay) employee was inspecting the outside of a vehicle, when she stepped into a large drain hole. Employee twisted her left ankle. Supervisor: judy rogers
## 5105        11/18/2008 04:21 pm (fblackmo) employee fainted/passed out after turing onto roscoe trail. Employee struck a phone box, small pine tree, and three parked ncdot trucks while unconscious. Listed injuries: scratched left hand, neck, and shin. Heart condit
## 5106                                                                                                                                           11/18/2008 05:06 pm (fblackmo) employee was stung by ground bees while he was cutting vegetation. Supervisor: ernest pitt
## 5107                                        11/18/2008 05:26 pm (fblackmo) employee was walking up the steps to the loading dock and tripped on the fourth step, he stumbled forward and fell causing injury to lower back and left wrist. Supervisor: jeffery s. Farrow
## 5108                                               11/18/2008 12:51 pm (blgay) employee was on the maintenance yard and passed out. Employee hit his head and shoulder. Shoulder was dislocated in the fall and his head was treated for a cut. Supervisor: dean baynard
## 5109                                                                           11/18/2009 08:52 am (fblackmo) employee was on the way to the gates shop when he ran the stop light striking a private vehicle. Employee cut his right lower leg. Supervisor: albert vann
## 5110                                                                                                    11/18/2010 09:40 am (fblackmo) employee was stepping off truck when his ring finger got caught on a ladder that was back of the truck. Supervisor: melvin newton
## 5111           11/19/2002 02:25 pm (fblackmo) employee was inspecting a paving operation at station 840 in martin county. Employee walked in the median to find out what station to write on the asphalt ticket when, he was struck by a truck with the tailgate down. E
## 5112               11/19/2002 03:07 pm (fblackmo) employee was removing debris from roadway. Private vehicle did not stop for traffic and hit state vehicle and guard-rail. Employee jumped guard rial to avoid being struck by private vehicle. Supervisor; jeff corley
## 5113                                                                                            11/19/2002 03:21 pm (fblackmo) employee was cutting vines off sing on state road in burke county when, she came into contact with poison ivy. Supervisor; roger arrowood
## 5114                                                                        11/19/2002 03:30 pm (fblackmo) employee was pushing dirt with backhoe when the front bucket dug into pavement, throwing him into the windshield hitting his head. Supervisor; r. D. Mcintyre
## 5115                                                                                                            11/19/2002 03:48 pm (fblackmo) employee went to road side to show were to dump rocks when a insect flew into his right ear. Supervisor; bubba r. Johnson
## 5116                                                                   11/19/2002 12:43 pm (fblackmo) employee states that she was at a class in oklahoma city, she began feeling bad. Employee passed out in restroom causing injury to face area. Supervisor: don nail
## 5117                                                                                         11/19/2004 02:16 pm (fblackmo) employee states while loading steel blocks onto trailer, one of the blocks fell off striking him on his left foot. Supervisor: mark c. Smith
## 5118                                                                                                                                   11/19/2004 02:23 pm (fblackmo) employee stepped down off the forklift and felt a catch in lower back. Supervisor: j. P. Callicutt
## 5119                                                                                                     11/19/2004 02:31 pm (fblackmo) employee was helping to put in a inbody spreader when, the 4 x 6 support beam fell and hit him in the face. Supervisor: al smith
## 5120                         11/19/2007 07:50 am (mdsloan) employee was loading a pump onto the bed of a pick-up truck when employee felt a burning sensation in employees lower abdomen. Later on employee discovered a lump had appeared. Supervisor: wendell chastain
## 5121                                                                        11/19/2008 04:14 pm (fblackmo) employee injured right shoulder while climbing into dump truck. Supervisor: w. D. Lane 11/19/2008 04:25 pm (fblackmo) cover bills only up to 11/18/2008. Only
## 5122           11/19/2008 11:03 am (fblackmo) employee was walking across street while coming in from lunch when, she stumbled (did not fall). Employee braced herself onto her left foot and shifted her weight when she felt pain in her ankle. Supervisor: mary avery
## 5123          11/19/2008 11:16 am (fblackmo) employee was unloading signs and cones out of the back of a crew cab truck. After the signs were unloaded he went to climb down from the bed and stepped on tire when, the wood railing broke causing him to land hard on b
## 5124         11/19/2009 02:51 pm (blgay) employee had picked up a deer carcass and was stepping onto lift gate. As employee raised his right foot to step onto gate, it got caught under the lift gate and he tripped. Employee felt something pop in his right ankle. H
## 5125                            11/19/2009 03:49 pm (blgay) employee was hauling a load of dirt back to camp to dump it. While on west harrell road, employee ran off the right side of the roadway, over corrected, then rolled dump truck. Supervisor: kevin hazelwood
## 5126                                                                                                           11/19/2009 04:00 pm (blgay) employee was getting into a state vehicle and was stung by bee inside the vehicle on his right arm. Supervisor: melvin dorsey
## 5127                11/19/2010 10:32 am (barnes) employee was laying and lifting eighteen inch pipe. While working with the pipe, employee felt a burn in his chest and the next day he started having spasms. Employee injured chest/ abdomen. Supervisor: marc pollard
## 5128         11/19/2010 10:58 am (barnes) employee was walking the cutting line in a wooded area. He was holding a bush axe and began to slip. He realized that he was slipping and tried to throw the bush axe away from him. However, he was unable to do so. Therefor
## 5129                                                                                    11/2/2004 02:26 pm (fblackmo) employee was working on state road 1200 guy ford road in watauga and with no prior warning fell to the ground twice. Supervisor: kevin whittington
## 5130                                                                 11/2/2004 02:36 pm (fblackmo) employee stepped from truck and reached back and shut the truck door. As employee shut the door he felt a sharp pain in his right shoulder. Supervisor: m. S. Johnson
## 5131                                            11/2/2004 08:13 am (fblackmo) employee was loading tires onto pickup using a liftgate. While closing liftgate the employees right ring finger was caught in the scissor action of the liftgate. Supervisor: dennis brann
## 5132                                                                                                         11/2/2004 08:40 am (fblackmo) employee states while using pry bars and air hammer he, experienced pain in his left wrist and hand. Supervisor: hosea blount
## 5133         11/2/2004 08:55 am (fblackmo) employee was working on a maintenance project due to hurricane ivan. He was placing rock at the outlet of a pipe when a rock from the top of outlet slid down hit his hand against another rock causing injury to right littl
## 5134         11/2/2004 09:18 am (fblackmo) employee was returning to bridge yard at the end of day. Employee was driving down state road when the side mirror of his vehicle and school bus collided causing shattered glass to cut his left cheek area. Supervisor: k.E
## 5135                                                                                                                 11/2/2004 09:40 am (fblackmo) employee states while cutting trees and chipping brush he came into contact with poison oak. Supervisor: a. S. Bailey
## 5136                                                           11/2/2004 09:53 am (fblackmo) employee was removing part of a joist using a hatchet and sledge hammer when, his right index finger was pinched between the hammer and hatchet. Supervisor: d. R. Alligood
## 5137                                                                                              11/2/2006 11:50 am (fblackmo) employee was bending over to pick up stop sign on 7 ft.. U-channel post when, he felt pain in his lower back. Supervisor: barry t. Coble
## 5138                                                                   11/20/2001 02:18 pm (fblackmo) employee was in ditch getting it ready for new piping. The crew was removing big rocks by hand, employee felt pain in his lower back. Supervisor: tommy kilpatrick
## 5139            11/20/2001 02:31 pm (fblackmo) employee was helping the equipment shop to change a hydraulic line on his equipment. Employee laid wrench on drott while climbing down the ladder. Employee slipped and the wrench hit him on top of his head. Supervisor
## 5140                                                                                                                                  11/20/2001 02:48 pm (fblackmo) employee was painting timber bridge rail when the wind blew debris in eyes. Supervisor: s. R. Davis
## 5141                                                                                                                 11/20/2001 03:00 pm (fblackmo) employee was unloading cannie tops with out gloves when a splinter went under fingernail. Supervisor: c. H. Sneed jr
## 5142                                                                                                                                  11/20/2001 03:12 pm (fblackmo) employee was pulling weeds off truck and came into contact with poison oak. Supervisor: j. E. Royal
## 5143           11/20/2001 10:09 am (fblackmo) employee was installing rear spring on tamdom dump truck. Employee stuck his finger(left middle) into the spring shackle hole to check the alignment of the pen. The spring fell and the employees finger got caught causi
## 5144           11/20/2001 10:22 am (fblackmo) employee was checking for loose stone with a pole on the back of his dump truck. The quarry had sprayed water on the ground to keep the dust down. Employee had mud on shoes and when he stepped on the tire of the truck,
## 5145                                                                     11/20/2001 10:38 am (fblackmo) employee was trying to get the bar loose to uncover spreader. The bar being spring loaded came loose sticking the employee on the elbow. Supervisor: a. O. Epley
## 5146                                                                        11/20/2002 07:38 am (fblackmo) employee states while picking up sign on us 29-70, he stepped on a bottle causing the injury to his knee. Supervisor: mark crook 05/14/2004 11:44 am (gwhite)
## 5147                                                                                     11/20/2002 08:24 am (fblackmo) employee was picking up stones off of state road 1113. The repetition of movements caused his shoulder to become sore. Supervisor: shelton james
## 5148           11/20/2002 08:37 am (fblackmo) employee states she was walking out the front door to go to her car when, another employee (shane) had a toy rubber snake and threw it in her direction. Employee starting to running and fell on concert. Supervisor: mik
## 5149                                                                                                11/20/2002 08:54 am (fblackmo) employee was picking up broken barricade on state road 1150 when, a rusted nail punctured his right hand. Supervisor: larry lovingood
## 5150                                                                                                       11/20/2003 10:45 am (fblackmo) employee was stepping out of tandem when, he stepped on a twig causing the injury to his right ankle. Supervisor: jesse mercer
## 5151           11/20/2003 10:57 am (fblackmo) employee was checking the grade for unstable material under the haul trucks. He was struck by a dozer that was leveling out material that was being dumped form the haul trucks. The dozer pushed over and pinned his legs
## 5152                                                                                                                11/20/2003 11:14 am (fblackmo) employee was cutting hole in 3x8 timber when, saw kicked back striking him on his left foot. Supervisor: r. F. Minton
## 5153           11/20/2003 11:44 am (fblackmo) employee states building demolition project wall fell in unexpected direction hitting a power pole. Employee was running out of the way of the fall pole when, he tripped and injured his elbow and left shoulder. Supervi
## 5154                                                                                                                           11/20/2003 11:57 am (fblackmo) employee was installing fence when, he slipped and fell on his right hand and arm. Supervisor: donald king
## 5155                                                                                          11/20/2003 12:11 pm (fblackmo) employee was participating in a workshop when the injury occurred to his right arm. Supervisor: jim kellenberger 7/7/2004 04:06 pm (gwhite)
## 5156                                                                                             11/20/2003 12:29 pm (fblackmo) employee states while cutting trees off the road after hurricane isabel he, felt pain in his leg and knee. Supervisor: james van riddick
## 5157                                11/20/2008 06:10 pm (fblackmo) employee was un-hooking a chain from the rubber tire backhoe when, she stood up from squatting position she heard and felt a snap. Employee felt pain in middle of her back. Supervisor: david carter
## 5158                                                                                       11/20/2009 10:11 am (fblackmo) employee was bitten on top of left hand by fire ants while working underneath bridge pressure washing steel beams. Supervisor: t. E. Davenport
## 5159                                                                                                       11/20/2009 10:21 am (fblackmo) employee was helping to install a driveway when he was bitten by ants on his hands and stomach area. Supervisor: shelton james
## 5160                                                                                                   11/20/2009 10:32 am (fblackmo) employee was seeding in a ditch when, he was climbing out the ditch he felt pain in his lower left leg. Supervisor: robert winslow
## 5161                                                                                                                                 11/21/2000 04:05 pm employee struck (broke) his nose on a steel beam when he stood up from bending down. Supervisor: w. L. Saunders
## 5162                                                                       11/21/2000 04:21 pm employee was sweeping leaves in loader bucket to clear roadway. The broom hit the front loader bucket causing him to strain muscles in his back. Supervisor: r. S. Burton
## 5163                                         11/21/2000 04:30 pm employee was pushing tree while another employee was using the chain saw. The employee cut the tree and the saw came back hitting/cutting Mr. Dixon's right leg above the knee. Supervisor: a. E. Moore
## 5164            11/21/2000 09:19 am employee was parked in work zone (as far off the road as possible); when a contractor truck backed into and struck Mr. Fairley in the right rear quarter of truck. Mr. Fairley has strain to his upper back and neck areas. Supervis
## 5165                                                                   11/21/2000 09:31 am employee slipped and fell down the stairs holding onto the rails. Ms. Williams fractured her right hand (little finger metacarpal midshaft fracture). Supervisor: david fitts
## 5166                                                                                                    11/21/2000 09:40 am employee was in the steam pit cleaning the equipment; when asphalt degreaser mixed with water and got into her eyes. Supervisor: j. V. Boles
## 5167                                           11/21/2000 09:46 am employee was loosening bolts on hollow auger adapter, when his right hand was caught between the drill and socket wrench. Mr. Bailey broke three fingers on his right hand. Supervisor: t. P. Shelton
## 5168                                                                                           11/21/2000 10:00 am employee was moving road signs for a ditching operation. Employee felt pains in his lower back after moving signs that day. Supervisor: r. L. Winslow
## 5169            11/21/2001 02:56 pm (fblackmo) employee was traveling east on firestone parkway(rp 1328) in wilson county. Employee clocked a silver vehicle operated by a white make headed west. Employee immediately activated by blue lights and heard three beeps w
## 5170                                                                       11/21/2006 02:04 pm (fblackmo) employee was hauling dirt on dot yard when she ran over a large rock causing her to bounce in the seat causing pain to her lower back. Supervisor: t. M. Smith
## 5171                                                                                 11/21/2006 02:33 pm (fblackmo) employee was fueling up tractor and mower when, he tripped and fell over the fuel hose causing injury to right knee. Supervisor: richard f. Jernigan
## 5172          11/21/2006 02:44 pm (fblackmo) employee had hauled a tractor from greenville to wilson for an upcoming equipment sale. He unloaded the tractor and was driving across the parking lot when a hose burst and sprayed fluid into both eyes. Supervisor: jeff
## 5173                                                                                              11/21/2006 02:54 pm (fblackmo) employee was pulling hose on salt spreader. H hose was tight, employee hit left arm scraping arm above elbow. Supervisor: h. D. Wiggins
## 5174                                                                                             11/21/2006 03:32 pm (fblackmo) employee was in flatbed truck loading limbs when, he came into contact with poison ivy on both arms and face. Supervisor: hardie tillett
## 5175                                                                                                                             11/21/2006 03:45 pm (fblackmo) employee was putting brush in the chipper when, he felt pain in his lower back. Supervisor: l. R. Vaughn
## 5176                                          11/21/2006 04:08 pm (fblackmo) employee went to change rock guard when, he slipped and fell down embankment causing injury to lower back. Supervisor: greg mccracken 11/29/2006 12:17 pm (fblackmo) do not use this claim.
## 5177                        11/21/2006 04:15 pm (fblackmo) employee was attempting to unhook chain that holds spreader to truck bed. Truck bed was raised catching his hand under chain side and pinning hand between spreader and bed of truck. Supervisor: tom huskins
## 5178                                                                                                                        11/21/2006 04:23 pm (fblackmo) employee stepped into a hole that was covered by leaves causing injury to his back. Supervisor: leonard dills
## 5179                                          11/21/2006 04:46 pm (fblackmo) employee was operating a state own vehicle (pickup truck) exiting us 70 onto glenburnie road in new bern when, truck was struck in the rear by private own vehicle. Supervisor: r. Mckenzie
## 5180                                                                                                               11/21/2006 05:11 pm (fblackmo) employee was cleaning out a ditch line for water runoff when, he felt pain in his lower back. Supervisor: mark pickens
## 5181         11/21/2006 05:21 pm (fblackmo) employee was observing contractor install 2' csl tubes. One employee was having trouble holding one end of pipe & employee reached in to help hold the end when, employee on opposite end dropped his end causing pipe to tw
## 5182                                 11/21/2006 05:32 pm (fblackmo) employee was walking the ramp to count passengers when, he turn to look behind him his, foot slipped off the uneven blacktop twisting left ankle, knee, and felt back pain. Supervisor: s. A. Willis
## 5183           11/21/2007 01:30 pm (mdsloan) employee was unhooking a widening machine from the pintle hook on a dump truck so employee unlatched the hook and placed his hand on top of the hook. A second employee proceeded to raise the tongue of the widening machi
## 5184                                                                                            11/21/2008 02:06 pm (blgay) employee was bushing and grubbing and was believed to have been bitten by a spider or other insect on left hand. Supervisor: joseph e. Smith
## 5185         11/21/2008 02:17 pm (blgay) employee was changing right rear tire on dot vehicle. Lowering spare tire from underneath truck and it would not release. Instructions stated there was a secondary release, hit bracket under spare tire with tire tool and it
## 5186                                                                                                                                      11/21/2008 03:44 pm (fblackmo) employee states hearing loss was identified after testing at the depot. Supervisor: mark walker
## 5187                         11/21/2008 09:49 am (blgay) employee was traveling south on nc 251, when he met another large truck. The trucks hit mirrors causing glass to shatter, sending it through the window and cutting him above the eye. Supervisor: mike johnson
## 5188                                                                          11/21/2008 10:22 am (blgay) employee was cutting bolt off of post on bridge, when post swung down and hit him in the lower right leg shim bone, cutting his leg. Supervisor: herbert ramey
## 5189         11/21/2008 10:57 am (blgay) employee informed supervisor on 11/10/2008 that he had some results from his mri, which was not on a previous mri that he had received. Employee feels that the hip pain from the compressed discs that is noted in the new mri
## 5190                                                                                                                         11/22/1999 03:14 pm leaving the rear of the truck to flag a stake. Stepped on a rock cropping that collapsed; therefore rolling left ankle.
## 5191                                                                                                     11/22/1999 03:21 pm Ms. Bell slipped on steps twisting her left knee while stepping out of newly constructed office in clinton nc. Supervisor: daniel r. Cumbo.
## 5192                                                                                                             11/22/1999 03:27 pm an unknown type of insect stung Ms. Bell on her left upper arm causing an allergic reaction on 11/03/99. Supervisor: r. A. Mccarley
## 5193                                                                                                11/22/1999 03:35 pm Mr. Mintz was climbing onto the back of a truck to get a sign, when he felt a pull in his left hip and left ankle. Supervisor: thomas e. Johnson
## 5194                                                                                                                                               11/22/1999 03:37 pm employee was getting out of truck while doing so he turned twisting his back. Strained lower back
## 5195                                                                                                                                     11/22/1999 03:52 pm employee was loading straw as he walked on bales his foot slipped between two bales and he twisted his knee
## 5196          11/22/1999 04:28 pm Mr. Wille strained his left arm on 11/11/99 while obtaining samples of concrete from concrete bucket. He received his injury due to lifting shovels of concrete and bending his arm. Mr. Wille has sharp pains in arm and also heard a
## 5197                                                                                                                       11/22/1999 09:20 am Mr. Gibson left leg was cut due to a tree limb falling to the ground and kicking back on his leg. Supervisor: k. R. Davis
## 5198                                                                                            11/22/2000 09:00 am employee was sloping a bank on sr 1749 when he unearthed a yellow jackets nest. He was stung on top of his head on 11/02/00. Supervisor: r. W. Hoyle
## 5199                                                                                                                       11/22/2000 09:06 am employee stepped on running board and lost his footing causing pain in his right lower back area. Supervisor: c. D. Cloud
## 5200                                                            11/22/2000 09:39 am employee injured his left shoulder, left knee, back and left index finger while trying to catch himself from falling. His foot slipped on rung of ladder. Supervisor: jimmy g. Dyson
## 5201                                                  11/22/2000 10:43 am employee was attempting to tie tailgate chain in order to put the hoist in. There was a broken wire in chain he didn't see causing the wire to puncture his left thumb. Supervisor: d. L. Dean
## 5202                                                                                                                                   11/22/2000 10:51 am employee was picking up trash bags when he strained/sprain his right arm/shoulder. Supervisor: h. L. Mcdowell
## 5203         11/22/2000 10:58 am employee was cutting down dead trees when he received an abrasion above his right eye and a bruised right cheek. The tree fell and struck the back of his leg and knocked him down falling against the limb of another tree causing the
## 5204                                                                                                    11/22/2002 01:03 pm (fblackmo) employee was steam cleaning a tractor transmission bell when, the hot water fell over the top of his foot. Supervisor: h. M. Hamm
## 5205                                                       11/22/2002 01:18 pm (fblackmo) employee was trying to open the door of a burned vehicle to identify it. He was using a crow bar to pull door when, he injured his left wrist and hand. Supervisor: s. A. Hall
## 5206                       11/22/2002 01:32 pm (fblackmo) mechanic was jump starting truck using carryall for battery source. Employee had his hand on the carrall fender when, the mechanic closed the hood it pinched employees finger. Supervisor; l. C. Carpenter jr
## 5207          11/22/2002 01:47 pm (fblackmo) employee was operating a contour mower cutting high grass and weeds behind a guardrail. Rotary blade of mower caught a piece of steel cable and whipped it up into the right side glass, causing the laceration to his face
## 5208                                                                                                               11/22/2002 01:57 pm (fblackmo) employee was trying to start chainsaw, after several attempts he felt pain in his left elbow. Supervisor: rodney hardy
## 5209                                                                                               11/22/2002 10:56 am (fblackmo) employees vehicle was struck by an oncoming vehicle while sitting in a turning lane on nc 42 project in wilson. Supervisor: e. J. Bunn
## 5210          11/22/2004 02:39 pm (fblackmo) employee was driving when, a box truck crossed the center line in his direction. Employee states to avoid a collision he drifted towards the shoulder of the road, ran off of asphalt pavement, over corrected and rolled d
## 5211                                                                                                                11/22/2004 03:19 pm (fblackmo) employee states while raking asphalt from paving machine he, felt pain in his shoulder area. Supervisor: william nall
## 5212                                                                                                                          11/22/2005 08:37 am (fblackmo) employee was cutting oak trees when, he was bitten by an insect on his left leg. Supervisor: g. J. Liverman
## 5213                                                                         11/22/2005 08:49 am (fblackmo) employee was pulling grass that had built up between roller and cutter shaft when, he felt pain in his left shoulder area. Supervisor: william j. Woodard jr
## 5214                    11/22/2005 09:01 am (fblackmo) employee states the tag a long trailer has a box at the tongue of the trailer with a metal lid. Employee was getting a chain out of the box and the metal lid came down on his hand. Supervisor: james d. Wilkins
## 5215                                                                                                                      11/22/2005 09:13 am (fblackmo) employee was lifting a 50lb saddle weight when, he felt pain in his right shoulder. Supervisor: p. L. Stanberry
## 5216                                                                                            11/22/2005 09:26 am (fblackmo) employee was trying to remove small portion of toilet paper roll that was stuck in holder when, he cut his finger. Supervisor: t. L. Gray
## 5217                                                                                                           11/23/1999 02:54 pm while operating backhoe my back started hurting due to seat in my backhoe. It doesn't have any springs or cushions at all. Lower back
## 5218                                                              11/23/1999 03:04 pm employee was removing pocket book(large purse) and shoulder bag of equipment from personal auto to take onto company vehicle, employee lost balance and fell breaking right ankle.
## 5219                                                                     11/23/1999 04:19 pm employee was operating a track excavator loading stumps and debris into truck, when his left eye started itching, became swollen, sore, and red. Supervisor: darrell parson
## 5220                                                                                                11/23/1999 04:27 pm Mr. Finney strained the left side of his lower back while shoveling asphalt into back of tailgate truck on 11/10/99. Supervisor: walt d. Bennett
## 5221                                                                     11/23/1999 04:33 pm Mr. Wyckoff was struck in the abdomen while cutting down trees from hurricane floyd on 10/13/99. The tree was under stress-the tree trunk snapped. Supervisor: d. R. Bryant
## 5222                                                                                                         11/23/1999 04:41 pm Ms. Whitt was walking/working in tall grass checking guardrails, when she was bit on her right leg by a spider. Supervisor: j. R. Clark
## 5223          11/23/1999 04:49 pm Mr. Wynn injured his right hand middle finger while reaching to flip over a foot pad on backhoe stabilizer on 11/18/99. The left stabilizer foot pad had flipped over and was stuck when his finger was caught between pad and the sup
## 5224                                                          11/23/1999 05:02 pm Mr. Parrish was working beside roadway when a truck passed by blowing grit into his left eye. Mr. Parrish was wearing safety glasses at time of incident. Supervisor: larry m. Dehart.
## 5225         11/23/2004 04:28 pm (fblackmo) employee was driving an asphalt distributor and towing a mulch blower on a secondary road in stokes county. The employee states he lost control going around a curve when the brakes locked and he wrecked the vehicle. Vehi
## 5226                                                                                                                                    11/23/2004 08:18 am (fblackmo) employee states while conducting test he, experienced pain in his back. Supervisor: phil stanbery
## 5227                                                                11/23/2004 11:05 am (fblackmo) employee states two dump trucks were hauling on narrow road when, mirrors struck each other causing glass to shatter in employees face. Supervisor: harley cunningham
## 5228                                                                                11/23/2004 11:23 am (fblackmo) employee was cutting a tree for debris removal out of right of way when, tree sprung back striking him on his left knee area. Supervisor: tim simpson
## 5229                                                                                             11/23/2004 12:20 pm (fblackmo) employee was cleaning off work bench in warehouse and hit his right elbow on drill that was laying on work bench. Supervisor: d. S. Eudy
## 5230                                                                   11/23/2009 08:56 am (blgay) employee was putting equipment away for next day, employee stepped in a hole and twisted his left knee, causing him to fall to the ground. Supervisor: william batton
## 5231                                                                                                                                      11/24/2003 02:34 pm (fblackmo) employee was bitten on left side of stomach by a brown recluse spider. Supervisor: c. R. Styles
## 5232                                                                                   11/24/2003 03:24 pm (fblackmo) employee was changing a flat tire on pick up truck when, the jack fell trapping his hand between the tire and the fender. Supervisor: james conner
## 5233                                                                                                                          11/24/2003 04:14 pm (fblackmo) employee states he came into contact with poison ivy while working on right of way. Supervisor: keith lance
## 5234                                                                                                       11/24/2003 04:26 pm (fblackmo) employee was installing hyd. Hose on snow plow when, hose struck employee in the mouth breaking teeth. Supervisor: j. E. Stepp
## 5235          11/24/2003 09:33 am (slee) traveling westbound 98, eastbound vehicle did not signal nor stop to make left turn on to adams st. There two cars turning left at adams st., employee put foot on brake but vehicle #2 turned right in front of him, failing t
## 5236                                                                                                                           11/24/2008 10:33 am (blgay) employee was using chain saw cutting tree when he came into contact with poison oak. Supervisor: paul collins
## 5237                                                                                                 11/24/2008 10:42 am (blgay) employee was loading boxes of rubber seal onto bed of pickup, causing him to pull a muscle in his stomach. Supervisor: jerry williamson
## 5238                                                                                                                 11/24/2008 12:11 pm (blgay) employee was climbing into front end loader, when employee felt and headed his left knee snap. Supervisor: charles vick
## 5239                                                                                 11/24/2009 02:22 pm (fblackmo) employee was climbing down from mowing tractor when his foot slipped off the pedal causing injury to his left shoulder. Supervisor: james strickland
## 5240                                         11/24/2009 02:40 pm (fblackmo) employee was removing tailgate off the back of truck and stepped backwards, tripping over a roll of matting. Employee fell to the ground striking his right knee. Supervisor: t. L. Barnette
## 5241                                                                                        11/24/2009 02:52 pm (fblackmo) employee was moving bulldozer when he hit his head. Employee felt pain in his neck and had a laceration to his head. Supervisor: j. W. Sutton
## 5242                                                                                                       11/24/2009 03:05 pm (fblackmo) employee was climbing down from tractor when he stepped in a hole causing injury to his left ankle. Supervisor: dennis stewart
## 5243                                                                        11/24/2010 10:40 am (fblackmo) employee injured his left arm while chipping rust out of overhang. Employee was using needle gun to remove the rust. Supervisor: ray bailey and thomas bowser
## 5244                                                                                                           11/25/2003 02:40 pm (fblackmo) employee states he came into contact with poison ivy while throwing limbs on back of dump truck. Supervisor: david l. Lane
## 5245                                                                                                      11/25/2003 09:02 am (fblackmo) employee states while exiting dump truck he, stepped into a hole causing the injury to his right ankle. Supervisor: a. L. Smith
## 5246                                                             11/25/2003 11:38 am (fblackmo) employee was conducting road repair when, he brushed up against a small tree causing a limb to enter into his right ear. Temporary hearing loss. Supervisor: m. B. Smith
## 5247                                                                                                                                       11/25/2003 11:53 am (fblackmo) employee was unloading truck when, tail gate hit him in the back. Supervisor: daniel e. Styron
## 5248                                                                                                                                 11/25/2003 12:08 pm (fblackmo) employee was cutting trees when, one of the limbs struck him on the head. Supervisor: jamie mckinney
## 5249                                                                                                11/25/2003 12:17 pm (fblackmo) employee was working with geo tech unit drilling holes when, his hand came into contact with the machine. Supervisor: e. L. Taylor jr
## 5250                                                                                                                                   11/25/2003 12:29 pm (fblackmo) employee states while working on I-85 something flew into his right eye. Supervisor: tim southhard
## 5251                                                           11/25/2008 04:16 pm (blgay) employee was helping take a spreader off of a dump truck. Employee climbed up on top of spreader and his back popped, causing pain in the upper back. Supervisor: david capps
## 5252                               11/25/2008 10:16 am (blgay) employee was driving a form pin with a hammer. Employee was moving out of the way, in doing so, tripping over other employees foot causing him to fall and hurt his right hand. Supervisor: shannon woody
## 5253                                                    11/25/2008 12:15 pm (fblackmo) employee was moving truck over out of the way of a larger truck when, he lost control causing truck to overturn. Employee cut left side of face. Supervisor: alton h. Thornton jr
## 5254                                11/25/2008 12:27 pm (fblackmo) employee was unloading truck at eaa air venture 2008 trade show in oshkosh, wisconsin when, she felt pain in her left shoulder. There as exhibitors for the show. Supervisor: william h. Williams, jr
## 5255                                                                                                           11/25/2009 08:13 am (blgay) employee was loading culvert on to truck. Culvert mashed right thumb, between pipe and truck bed. Supervisor: steven buchanan
## 5256                                                                                                                      11/25/2009 09:45 am (fblackmo) employee was participating in wellness fair jog when, she felt pain in right hip. Supervisor: jimmie massengill
## 5257         11/25/2009 12:40 pm (fblackmo) based on the doctors report the injury allegedly occurred six days prior to the November ninth doctors appointment. The employee stated to the doctor the he "doesn't remember any incident that May have caused the problem
## 5258          11/26/2001 03:08 pm (fblackmo) employee pulled his backhoe off the road. The employee exited the backhoe he lost his footing due to the ground giving away which caused the employee to fall back and land on the steps of the backhoe and injured his low
## 5259                                                                                                                 11/26/2001 12:47 pm (fblackmo) employee stepped from the bow of the boat and fell causing the injury to his left leg. Supervisor: c. E. Lassiter jr
## 5260                                                                                                                  11/26/2002 02:03 pm (fblackmo) employee states while heating a locking pin, the pin shot out striking employee on his arm. Supervisor: j. C. Sloan
## 5261                                                                             11/26/2002 09:37 am (fblackmo) employee was cleaning paint board. The board was dropped on ground to loosen paint, paint chip went into his right eye. Supervisor: harvey dean johnston
## 5262                                                                                                           11/26/2002 09:56 am (fblackmo) employee was rolling patch with roller, when he stopped to switch seats he felt pain in his back. Supervisor: w. T. Teague
## 5263                                                                                                                              11/26/2002 10:13 am (fblackmo) employee was getting into backhoe when, he felt pain in his lower back area supervisor: johnny ransdell
## 5264                                                                                                                     11/26/2002 10:38 am (fblackmo) employee was bushing around bridge when, his left knee gave way causing him to fall. Supervisor: tim k. Southard
## 5265                                                                                                                           11/26/2002 12:27 pm (fblackmo) employee states injury occurred from the repetitive motion of using her keyboard. Supervisor: larry daniel
## 5266                                                                                                                                   11/26/2002 12:39 pm (fblackmo) employee states he twisted his left knee while tieing up line on starboard. Supervisor: r. E. Hill
## 5267                                                          11/26/2007 02:58 pm (fblackmo) employee had performed the daily inspection and was attempting to climb into the cab of the dump truck when, he felt a sharp pain in his lower back. Supervisor: david lane
## 5268         11/26/2007 03:10 pm (fblackmo) employee was showing a visitor to someone office when, he tripped over a tree root, and fell on his right arm. Employee had an ice pack on that shoulder at work for approximately one week and said " that it was injured t
## 5269         11/26/2007 03:31 pm (fblackmo) employee was removing an intermediate shaft from the port side in the void of the m/v pamlico. No deck plates had been placed in that area. Employee lost his balance and tried to catch himself with his right hand, thus c
## 5270                                                                          11/26/2007 03:42 pm (fblackmo) employee was attempting to lift a rear tractor tire off the ground with three other employees when, he felt stinging in his neck. Supervisor: william riggs
## 5271                                     11/27/2000 02:25 pm employee was riding inside of tractor cab sweeping the road; when he was hit from behind by a private vehicle. Mr. Carter has bruises to his chest, arm and shoulder areas. Supervisor: lindsey o. Ethridge
## 5272                                                                  11/27/2000 02:40 pm employee was putting strap guardrail into metal scrap bin; when the guardrail shifted and hit his left hand cutting it to the bone (tendon damage). Supervisor: jimmy l. Price
## 5273                                                                                                               11/27/2000 02:47 pm employee was moving a pallet with electric jack when he ran into the wall fracturing his right thumb. Supervisor: shane j. Murray
## 5274                         11/27/2000 02:54 pm employee was helping another employee secure piles of boards into a hole. Mr. Gathings took a step back onto a board with a nail sticking out of it. He punctured his left foot on 11/17/00. Supervisor: h. M. Thompson
## 5275                                                                                                     11/27/2000 03:01 pm employee was making number blocks for stop signs; when he lost his footing and struck his left hand with a hammer. Supervisor: mickey jones
## 5276                     11/27/2000 03:08 pm employee was bolting a sign onto a metal u-channel sign post on 11/15/00. The sign post had a sharp metal spur on it and it stuck in employees right thumb. The spur was removed from his thumb. Supervisor: wayne williams
## 5277                                                                                                                                                11/27/2000 03:16 pm employee was changing a tire when he strained/sprained his lower back. Supervisor: steve bridges
## 5278                                                                                                                                        11/27/2001 09:52 am (fblackmo) employee was operating the coring rig when the injury occurred. Supervisor: judith corley lay
## 5279                                                                  11/27/2002 12:21 pm (fblackmo) employee was lifting chainsaw from bed of truck. Employee turned to placed it on the trailer when, he felt pain in his right leg and back. Supervisor: r. S. Burton
## 5280                                                                            11/27/2002 12:36 pm (fblackmo) employee states, while loading ferry for departure he hit his head on a piece of metal that was hanging from a tractor trailer. Supervisor: s. J. Goodwin
## 5281                                                11/28/2006 12:26 pm (fblackmo) employee was standing in back of swb dump tuck removing tailgate when, the tailgate fell against the loader bucket trapping his hand & fingers on left hand. Supervisor: j. S. Roller
## 5282                                                                     11/29/1999 01:15 pm employee was checking to see if lip leading into woods needed to be paved. He stepped into a hole on the shoulder of the road. Pain in right knee -pulled or torn ligament.
## 5283                                                                                                                                                                               11/29/1999 01:53 pm stepped onto running board of truck and hit left knee on muffler.
## 5284                                                                                                                                                                                    11/29/1999 02:37 pm cutting tree, limb hit left hand and arm causing a contusion
## 5285                                                                                                        11/29/1999 02:50 pm employee was helping to put a tandem tailgate on and when he pulled from right to left, he felt a stinging sensation in left groin area.
## 5286                                                                                                              11/29/1999 02:58 pm employee had been assisting with the application of coastal bermuda hay on wild flower beds and started having breathing problems.
## 5287                                                                                                                                 11/29/1999 12:04 pm Mr. Hill strained his right shoulder while putting away stock in lower cabinet on ferry. Supervisor: h. L. Gray
## 5288                                                                                                              11/29/1999 12:10 pm Mr. Palmer strained his lower back while rolling and pulling on barbwire on new construction project. Supervisor: tommy kilpatrick
## 5289                                                11/29/1999 12:18 pm Mr. Cole sprained his right knee when he stepped in a hole at the end of a bridge. He was repairing the bridge handrail at the time of incident. Supervisor: wayne l. Miller 02/01/2000 12:48 pm
## 5290                                                                                           11/29/1999 12:24 pm Mr. Weiner was cutting dead trees off road that had poison oak on the vines. Mr. Weiner inhaled dust particles in his lungs. Supervisor: m. H. Thomas
## 5291            11/29/1999 12:32 pm Mr. Greene was working on a transmission on truck, when a man helping him was knocking out an old u-joint. A piece of metal flew out and hit Mr. Greene in the chin. The metal piece was embedded in skin and became infected. The m
## 5292               11/29/1999 12:46 pm Mr. Healy was looking through survey equipment, when a pov ran off the road striking his right leg and foot. The man driving the pov had a epileptic seizure at time of incident. Mr. Healy has bruises on right leg. Supervisor:
## 5293                                                                                                  11/29/1999 12:53 pm Mr. Helms left ring finger was caught between guardrail and plywood while loading plywood on mine creek road. Supervisor: joe hillard mckinney
## 5294            11/29/2000 03:48 pm employee pulled off the travel portion or roadway onto the shoulder to remove a sign. He was struck from behind by a log truck on nc highway 403. Mr. Tucker has strain/sprain to his right arm/shoulder and contusions to his neck,
## 5295                                                               11/29/2000 04:01 pm employee was holding on to side of truck and stepped up on wheel hub. He was doing his pre-trip inspection when he strained/sprained his right hand/wrist. Supervisor: r. D. Bass
## 5296                                                                                                 11/29/2000 04:07 pm employee was putting tire chains on dump truck; when the tire tool slipped, striking him in his face cutting his jaw. Supervisor: t. G. Huskins
## 5297                                                                                          11/29/2000 04:13 pm employee was attempting to load pavement breaker onto truck when he strained his left abdominal muscles while lifting tools. Supervisor: hugh williams
## 5298                                                                                                                                     11/29/2000 10:46 am employee was stepping down from a 6' step; when he twisted/sprained his left knee. Supervisor: a. S. Bailey
## 5299                                                                     11/29/2000 10:51 am employee was putting samples into chute; when his hand got caught on a nail that holds the bag for the chute. He has a cut on his right hand palm. Supervisor: m. D. Burley
## 5300           11/29/2001 02:06 pm (fblackmo) employee was working in shop area. Another employee sprayed wd-40 on valve, this caused the employee to sneeze and his top denture fell out to the pavement and broke. Supervisor: m. O. Anderson 10/23/2003 09:44 am (gwh
## 5301                                   11/29/2001 02:39 pm (fblackmo) employee was cutting down a 1' limb using a bush axe. While swinging bushaxe to make a second swing at limb bushaxe handle broke and axe fell onto back of employees head. Supervisor: k. R. Davis
## 5302                                                                                             11/29/2001 03:50 pm (fblackmo) employee was standing sideways, employee was pushing a pallet jack into a storage room and injured his right knee. Supervisor: clay tyre
## 5303            11/29/2001 04:03 pm (fblackmo) employee was operating long arm mower. Employee pulled off the road to let traffic pass. The mower hit a low shoulder causing a jerking movement which lead to the injury to employees back. Supervisor: r. J. Hollifield
## 5304                                                                                                                           11/29/2001 10:05 am (fblackmo) employee experienced pain and discomfort in right wrist while typing repetitively. Supervisor: dennis vick
## 5305                                                                                                                    11/29/2001 10:55 am (fblackmo) employee was bushing around bridge and stepped in a hole and twisted his left knee. Supervisor: c. Gerald woodley
## 5306                                                         11/29/2001 11:10 am (fblackmo) employee was dismounting from the dump truck when his foot slipped out from under him causing him to fall. Employee hit his back on the fuel cap. Supervisor: w. L. Thompson
## 5307            11/29/2001 11:30 am (fblackmo) employee stated that he was lifting a barricade into a trailer and felt pain in his left arm and shoulder. Employee did not think that he needed to see a doctor at that time. Employee started to have pain in his shoul
## 5308                                                                                                               11/29/2001 12:12 pm (fblackmo) employee bumped head bending down to get around another worker and hit head on spreader. Supervisor: charles whitfield
## 5309           11/29/2001 12:35 pm (fblackmo) employee states that while typing reports on computer felt a sharp pain in right side of back, with numbness and tingling in right arm. Employee experienced severe back spasms after cleaning and sweeping office. Superv
## 5310                                                                                                       11/29/2001 12:57 pm (fblackmo) employee was unhooking salt spreader debris from the chain being used went into employees right eye. Supervisor: j. S. Justice
## 5311                                                                                                        11/29/2005 03:16 pm (fblackmo) employee was shoveling asphalt off the back of flatbed truck when, he felt pain in his back area. Supervisor: w. C. Kincannon
## 5312                                           11/29/2005 03:29 pm (fblackmo) employee was watching paint truck when, contractors supervisor backed into employee who was on foot. Employee felt pain in his right leg, mid back area, and neck. Supervisor: j. R. Clark
## 5313                                            11/29/2005 03:43 pm (fblackmo) employee was working in some tall grass. Afterward he began itching around his ankles. The itching continued up his legs and form welts over most of his body. Supervisor: stonie woolard
## 5314         11/29/2005 04:22 pm (fblackmo) employee was using a limb saw to cut a limb from the trunk of tree that was blocking the view of a stop sign. The limb hit the ground, it kicked back toward employee and the large end of the limb hit his right index fing
## 5315                                                                                                                                    11/29/2005 04:33 pm (fblackmo) employee was helping to pick up dear when, he felt pain in his back. Supervisor: henry sturdivant
## 5316                                                                                                                       11/29/2005 04:43 pm (fblackmo) employee was warming up motor grader machine when, he was bitten by insect on neck. Supervisor: g. J. Liverman
## 5317         11/29/2005 05:20 pm (fblackmo) employee was spraying water from a garden sprayer onto a concrete girder to inspect it for damage. The sprayer leaked some of its contents onto the employees clothing. The sprayer apparently contained residue form previo
## 5318                                                                                                                                               11/29/2005 05:32 pm (fblackmo) employee was eating lunch when, a bee stung him on the neck. Supervisor: john hilliard
## 5319         11/29/2006 10:48 am (fblackmo) employee stated injury to his left knee happened while pushing clutch in and pulling up pto lever while working on hwy 73. Employee did not report problem to supervisor until 11/20/06. Employee worked full day and also d
## 5320                                                                                                    11/29/2007 01:33 pm (fblackmo) employee was dismounting a motorgrader and twisted his right knee as he placed his foot on uneven ground. Supervisor: keith mccoy
## 5321                                                                                                            11/29/2007 01:50 pm (fblackmo) employee was working at a job site when, she came into contact with poison ivy on both legs. Supervisor: dean argenbright
## 5322                                                                                    11/29/2007 02:02 pm (fblackmo) employee was cutting band around nylon strap when, the knife cut through the zip tie, the blade stuck into left thumb. Supervisor: jim t. Wiggins
## 5323         11/29/2007 02:14 pm (fblackmo) employee was walking around corner of bsip building. He walked under the window air condition unit that is attached to the building. There was not enough clearance for his height. Employees head struck bottom of steel fr
## 5324                   11/29/2007 10:05 am (fblackmo) employee moved a box when, the metal shelving case shifted and began to fall. Employee placed herself under the shelf to keep it from falling when, she felt pain in her right hip area. Supervisor: nadine barnes
## 5325          11/29/2007 10:16 am (fblackmo) employee was unloading pick up when, his feet slipped out from under him. Employee grabbed steering wheel to break his fall when, he felt pain in his right shoulder. Supervisor: gordon creech & russell ramsey 10/22/2008
## 5326                                                                                                        11/29/2007 10:27 am (fblackmo) employee was grinding when, a piece of debris entered his right eye while wearing safety glasses. Supervisor: franklin granda
## 5327                                                                                                       11/29/2007 10:39 am (fblackmo) employee was inspecting guardrails when, he was bitten by fire ants and suffered an allergic reaction. Supervisor: bruce payne
## 5328                                                                      11/29/2007 11:28 am (fblackmo) employee was conducting a road test when, driver crossed the yellow line striking another vehicle. Employee felt pain in her back. Supervisor: joseph jefferson
## 5329                                                       11/29/2007 12:05 pm (fblackmo) employee was dismounted the rental broom tractor and was walking around behind it when, he stumbled and fell hitting his right knee on the pavement. Supervisor: clifton mills
## 5330                                                                                                          11/29/2010 03:36 pm (barnes) employee was shoveling out a ditch and twisted his back pulling a muscle. Employee injured his back. Supervisor: jimmy maness
## 5331               11/29/2010 04:48 pm (barnes) employee was getting out of the dump truck and was stepping down to the second step when he heard a pop in his left knee and could not put pressure on the knee. Employee injured left knee. Supervisor: james m. Gibson
## 5332          11/29/2010 05:20 pm (barnes) employee was removing traffic cones one by one from the center of the road onto the shoulder. Employee turned and proceeded to the next cone, as he turned quickly to grab a cone he felt a cold tingle at his right hip area
## 5333                                                                                                                                 11/3/2005 03:52 pm (blgay) employee was using post hole digger, when back locked up and fell to ground. Supervisor: jerome locklear
## 5334        11/3/2005 04:04 pm (blgay) employee was involved in a traffic accident in which he rear ended another vehicle. The other vehicle was driven by someone determined to be under the influence of alcohol (. 18) and stopped very abruptly in front of him as h
## 5335                                                                                                                                            11/3/2009 05:47 pm (fblackmo) employee tripped on sidewalk while walking back into building. Supervisor: miriam s. Perry
## 5336                                                         11/3/2009 10:50 am (fblackmo) employee was doing routine trash pick up and proceeded to lift trash bag into the back of truck when, he felt a burning sensation in his navel area. Supervisor: cindy austin
## 5337                                                                                                          11/3/2010 01:31 pm (fblackmo) employee was refueling vehicle when he tripped over the hose. Employee felt pain in his left knee. Supervisor: bryan edwards
## 5338                                                                                                                                     11/3/2010 10:56 am (fblackmo) employee was flagging traffic when a bee stung him on his right forearm. Supervisor: eugene autry
## 5339                                                                                                                    11/30/1999 09:08 am pain and stiffness in thumb of right hand, also pain in right shoulder and lower part of neck. Repetitive motion on keyboard
## 5340                                                                                                                              11/30/1999 09:15 am carol was stamping the date on in coming salvage work and then processing the work on computer. Repetitive motion.
## 5341            11/30/2001 03:42 pm (fblackmo) employee was making a wooden wedge to put into the lock of his cash box to keep it from locking when he put the lid down and his knife slipped and cut his finger. Supervisor: s. N. Harris 12/04/2001 03:16 pm (twerner)
## 5342                  11/30/2004 09:23 am (fblackmo) employee states that while stopped to avoid hitting white van driving down ramp the wrong way, ncdot pickup was struck in the rear by another vehicle. Employee experienced pain in neck. Supervisor: j. A. Finnell
## 5343                                                                                                                                                     11/30/2005 01:01 pm (fblackmo) employee was cutting trees when, he cut his finger. Supervisor: d. Shane edwards
## 5344                                                                      11/30/2005 01:11 pm (fblackmo) employee was shoveling asphalt. Inmate accidentally struck employee with shovel causing laceration to little finger on right hand. Supervisor: r. J. Hollifield
## 5345         11/30/2005 01:20 pm (fblackmo) employee was reaching up into the bed of crew cab dump truck to get out a bush axe. Employee grabbed bush axe and while lowering the bush axe out of the bed of the crew cab dump truck he, felt something pull in his right
## 5346                                                                        11/30/2005 01:42 pm (fblackmo) employee was in on of the two dump trucks that hit each other. The glass from the mirror caused the cut to employees left cheek area. Supervisor: tim buckenr
## 5347                                                                                                                              11/30/2005 02:03 pm (fblackmo) employee lifted box, box slipped and bent pinkie finger on left hand backwards. Supervisor: libby allen
## 5348               11/30/2005 05:30 pm (fblackmo) employee was cleaning out salt brine storage tank and lost his footing causing him to fall. As he fell he tried to catch his self by grabbing the cross-members causing his thumb to bend back. Supervisor: jeff allen
## 5349                                                                 11/30/2005 08:54 am (fblackmo) employee was cutting brush off right of way when, he lost his footing and fell in brush causing foreign object to enter into his right eye. Supervisor: m. H. Thomas
## 5350                                                                                                                    11/30/2005 09:05 am (fblackmo) employee was climbing onto asphalt roller when, he hit his right knee on fuel tank filler. Supervisor: alan brown
## 5351                                                                       11/30/2005 09:20 am (fblackmo) employee was walking across the deck in the engine room when, he stepped into a hole. Employee felt pain in his left knee and foot. Supervisor: j. J. Ferguson
## 5352                                                                                                        11/30/2005 09:32 am (fblackmo) employee went to stand and walk to the file cabinet when, she twisted her left knee due to basket. Supervisor: richard howard
## 5353                                                                                                11/30/2005 11:36 am (fblackmo) employee was folding tarpoulines form ferry to load on pallet when, he felt pain in his left shoulder. Supervisor: donald l. Ferguson
## 5354         11/30/2010 01:42 pm (barnes) employee was working on the bridge at us 74. Employee was shoveling asphalt and throwing it back to the level man who was spreading it on the asphalt that was already down. As he was shoveling, he felt a pop in his right s
## 5355           11/30/2010 02:03 pm (barnes) employee "Mr. Messer" was engaged in horseplay with another employee. The other employee picked Mr. Messer up, but when he let go, Mr Messer fell and cracked a bone in his left arm. Employee injured his left arm. Supervi
## 5356         11/30/2010 05:36 pm (barnes) employee was mowing on sr 1239 (joe farthing rd) when the wheel of his tractor knocked down the mowing sign. Employee cut the bush hog button off leaving the boom up. As he was walking down the road to pick up the sign, th
## 5357          11/30/2010 06:10 pm (barnes) employee was driving state vehicle home and hit the rumble strips on the side of the highway. He over corrected and lost control of his vehicle causing it to over turn. Employee injured his left hand and sustained a cut o
## 5358          11/30/2010 06:40 pm (barnes) employee was conducting a road test. While riding with the customer, customer lost control of the vehicle as he/she tried to make a right turn into a residential area. The customer drove the vehicle into a brick wall sign
## 5359           11/30/2010 11:57 am (slee) employee states that he was making a left turn onto n. Tryon st. From lambeth st., when a car making the same movement whipped around him trying to beat him to the curb lane, side swiping the sov in the process. 11/30/2010
## 5360                              11/30/2010 12:53 pm (barnes) employee was cutting a tree with a lot of vines in it. He notched the tree. He stepped back. However, as the tree was falling, it struck his hard hat. Employee injured his neck. Supervisor: adam biddix
## 5361                                                                                                         11/4/2004 02:54 pm (fblackmo) employee states while lifting lumber into the back of tandem truck he, felt pain in h is lower back. Supervisor: jack rollins
## 5362                                                                                                       11/4/2004 12:02 pm (fblackmo) employee states while stepping up into truck his foot slipped causing the injury to his knee. Supervisor: not stated on form 18
## 5363                                      11/4/2004 12:12 pm (fblackmo) employee states while getting in position to cut a fallen tree, a small twig hit him in the face. The twig went under his safety glasses striking him in the left eye. Supervisor: j. Mark crook
## 5364          11/4/2005 09:28 am (fblackmo) employee was exiting from crew cab truck, the bottom of his left shoe caught in between the grid plate and the step. At the same time his left arm pulled off the armrest on the drivers side door. He fell to the ground on
## 5365                                                                                                         11/4/2005 11:47 am (fblackmo) employee was tightening screws in cabinets doing preventive maintenance and felt pain in right hand. Supervisor: n. S. Gibson
## 5366                                                                                                              11/4/2005 12:02 pm (fblackmo) employee was cutting tension cable using a grinder when, foreign matter got into his left eye. Supervisor: ronald canady
## 5367                                                                                            11/4/2008 03:05 pm (fblackmo) employee was cutting site distance using a chain saw, employee relaxed saw, and saw hit top of right left thigh. Supervisor: leon saunders
## 5368                11/4/2008 12:34 pm (blgay) employee was using jack hammer to bust concrete and the concrete broke off, causing the jack hammer to bounce and hit right foot of employee behind steel toe boot. Supervisor: c. R. Stephens 11/4/2008 12:36 pm (blgay)
## 5369         11/4/2008 12:45 pm (blgay) employee was reaching to pull chain to open tail gate of dump truck to control the amount of gravel being dumped. Tail gate opened and caught little finger on right hand, fracturing little finger on right hand. Supervisor: e
## 5370         11/4/2008 12:57 pm (blgay) employee was dismounting from astron mower holding on to the handle with her left hand. As she was stepping down to the ground, the ground was further than she thought. Employee pulled herself back up and felt a burning sens
## 5371       11/4/2009 04:08 pm (fblackmo) employee was sweeping state road in tyrrell county when, a private vehicle rear ended sweeper in operation. Vehicle pushed sweeper across road into ditch. Employee felt pain in neck, back, right knee, and forearm. Superviso
## 5372                                                                                                                                           11/4/2009 04:21 pm (fblackmo) employee was stepping out of truck when, he twisted his right knee. Supervisor: mike rogers
## 5373                                                               11/5/2008 02:21 pm (blgay) employee was loading a 150 pound cast iron grate for use on I-40 paving project. When he picked up on the grate, he injured his right shoulder. Supervisor: b. T. Williams
## 5374                                                                           11/5/2009 08:27 am (slee) a loaded banks tri-axle dump truck failed to reduce speed when seeing first sign in work zone and slid approximately 200' and hit the dot crew cab in the rear.
## 5375         11/5/2010 05:28 pm (barnes) employee was getting out of the dump truck. As he backed down the steps, his hand slipped off the grab bar causing him to twist and fall off the step. He fell backwards into roadway. Employee's left leg folded under him cau
## 5376                               11/5/2010 10:00 am (barnes) employee was taking difficult bolts off a turbo. While he was pushing and pulling trying to get it off, his left elbow started hurting and swelling. Employee injured left elbow. Supervisor: larry tibbs
## 5377                  11/5/2010 10:31 am (barnes) employee was walking down a slope at 4:30 am, when a tree branch went through the top part of his glasses and went into his left eye. Employee injured left eye. Supervisor: shannon woody 3/22/2011 10:43 am (sshort)
## 5378                                      11/5/2010 11:07 am (barnes) employee was completing an inspection on a salvage vehicle. As he placed the tarp back on the vehicle, his right knee popped out of socket. Employee injured right knee. Supervisor: g. A mcintyre
## 5379                                     11/5/2010 12:55 pm (barnes) employee was taking a strobe light off a vehicle. As he was cutting the wire, the knife slipped and cut his left index finger. Employee injured his left index finger. Supervisor: ronnie c. Minton
## 5380                                                                11/6/2006 12:07 pm (fblackmo) employee was in the trackhoe pulling up big rocks. He was having to pull levers back and forth a lot causing injury to his left hand & wrist. Supervisor: a. B. Harris
## 5381                                                                                                                 11/6/2007 01:30 pm (mdsloan) employee was traveling south on nc281 when struck by vehicle traveling left of center line. Supervisor: roger hamilton
## 5382            11/6/2007 01:47 pm (mdsloan) employee was stacking nw casing on storage racks when adding another piece he knocked off one of the previously stacked on top when he knocked it off and tried to catch it before it hit the ground. Straining his back. E
## 5383                                                                                                     11/6/2007 02:31 pm (mdsloan) employee was chiseling when it was hit with the hammer it flaked off cutting the employees left hand. Supervisor: larry huntsinger
## 5384                                 11/6/2007 02:50 pm (mdsloan) employee was driving a dump truck and was going up a gravel road and met a car. Employee pulled to side of shoulder of road and the shoulder gave way and the truck flipped over. Supervisor: jim ashe
## 5385          11/6/2007 03:35 pm (mdsloan) employee was in a closed off work zone on the bridge that a contractor is replace on us 74 in anson county and as he was shoveling material cleaning out a hole that was approximately 6' inside workzone when a commercial v
## 5386                                               11/6/2007 08:19 am (mdsloan) employee was unloading pipe off of a truck without wearing his work gloves and cut his right pointer finger below the middle knuckle. Supervisor: r. E. Austin 8/8/2008 02:50 pm (blgay)
## 5387           11/6/2007 10:26 am (mdsloan) employee was driving an empty dump truck when a dog ran out into road. Employee applied brakes the truck went onto the shoulder, came back onto the road, crossed the centerline, went off onto left shoulder and overturned
## 5388                                                                11/6/2007 11:00 am (mdsloan) employee was shrubbing bridges and as he was walking down a wet, slippery hill, employee slipped and fell injuring his right knee and thigh. Supervisor: larry r goines
## 5389                                                                                                                11/6/2007 11:22 am (mdsloan) employee was moving an I-beam with bar, when an I-beam next to him fell against his right leg. Supervisor: ken anderson
## 5390                                                                                     11/6/2007 11:42 am (mdsloan) employee was changing a tractor tire when a metal tire pry bar hit the employee on his right cheek, nose and forehead. Supervisor: james a paschal
## 5391                 11/6/2007 12:40 pm (mdsloan) employee was cutting brush on a survey line when employee encountered poison oak. Irritation and swelling began in the pm of 10/11/2007. This affected left eyelid. Supervisor: ca guffey 4/2/2008 09:42 am (sjerniga)
## 5392         11/6/2008 09:59 am (blgay) employee was standing beside a tree when a backhoe was moving the tree from the road. Employee was standing to close to the tree and when the backhoe operator clamped tree with his bucket, the tree swung and employee was str
## 5393                                11/6/2008 10:15 am (blgay) employee was applying ditch stabilization material in the bottom of the ditch. Employee slipped on the wet soil as he was stepping out of the ditch, falling on his right thumb. Supervisor: steve ingold
## 5394                                                                    11/6/2009 09:15 am (fblackmo) employee along with tow other employees were lifting up a floor saw into the back of a pick up when, he felt pain in his upper back area. Supervisor: c. E. Mclean
## 5395                                                                                  11/6/2009 10:02 am (fblackmo) employee was driving dump truck when, he ran off the road flipping truck over. Employee felt pain in his head and neck area. Supervisor: clyde scott
## 5396                                                                       11/7/2005 11:47 am (blgay) employee was reaching to pull the hood release, he cut his left hand on a piece of rough fiberglas under the hood requiring six stitches. Supervisor: carlis smith
## 5397                                                                               11/7/2006 02:11 pm (fblackmo) employee was walking in front of the crash truck when, a personal vehicle passed the truck and hit employee with side mirror. Supervisor: shelton james
## 5398                                                                                                               11/7/2006 02:23 pm (fblackmo) employee was moving debris while cleaning up equipment on dot yard when, he stepped on a nail. Supervisor: d. F. Pierce
## 5399              11/7/2006 10:05 am (fblackmo) employee fell in the parking lot while walking from his car to the office. He developed cuts and scrapes with bleeding to his hands, arms, and legs. Supervisor: kelvin peele 11/7/2006 10:32 am (fblackmo) can pay up t
## 5400                                             11/7/2006 10:36 am (fblackmo) employee was turning into ncdot facility when, he was hint in the rear by another dot employee driving his personal vehicle. Employee felt pain in his neck & back. Supervisor: rod wyatt
## 5401                                                                                      11/7/2006 10:47 am (fblackmo) employee was trying to put the tractor in gear when, he pulled the shifter back, his arm hit the seat causing pain. Supervisor: james d. Wilkins
## 5402                                                                                           11/7/2007 02:58 pm (fblackmo) employee was helping clean out the end of driveway when, he stepped in a bed of fire ants. Ant bites to right leg. Supervisor: carlis smith
## 5403                                                                   11/7/2007 03:07 pm (fblackmo) employee was conducting a road test when, driver lost control of the vehicle and hit a tree. Employee felt pain in his right knee. Supervisor: catherine t. Bagwell
## 5404                                                                                                                 11/7/2007 03:19 pm (fblackmo) employee was leaving out of building when, her right ankle/foot twisted causing her to fall. Supervisor: cathy holder
## 5405         11/7/2008 03:24 pm (blgay) employee was operating a single axle dump truck, when his right wheels dropped off the edge of the pavement. Employee jerked the wheel to the left and over corrected. Vehicle went left of the center and slid sideways down th
## 5406                                                                                                                                                           11/8/2004 02:19 pm (fblackmo) employee was walking into his cubical and blacked out. Supervisor: tom koch
## 5407                                                                                                                                      11/8/2004 02:33 pm (fblackmo) employee was pulling on shore power cable when, he felt pain in his back. Supervisor: t. L. Gray
## 5408                                                                                                          11/8/2004 02:56 pm (fblackmo) employee states while picking up survey stakes a splinter got into his right hand center finger. Supervisor: paul j. Vorwerk
## 5409                                                 11/8/2004 03:13 pm (fblackmo) employee was cutting pine tree, two limbs fell from tree, first one struck employees hard hat knocking it off, second struck his head causing a laceration. Supervisor: b. R. Knowles
## 5410                    11/8/2004 03:24 pm (fblackmo) employee states while working with marking crew on us 74a, he was struck by a private vehicle on his wrist. Employee states the impact twisted his back. Private vehicle left the scene. Supervisor: mark anderson
## 5411                                                                                                                          11/8/2004 12:07 pm (fblackmo) employee found a ticks on both ankles while working with road crew in sampson county. Supervisor: l. C. Bass
## 5412                                                                                                    11/8/2005 05:59 pm (fblackmo) employee states she experienced a shortness of breath due to allergic reaction from pest control spray. Supervisor: beverly lafone
## 5413                                                         11/8/2006 01:17 pm (fblackmo) employee was driving west on hwy 70 in james city nc in left lane when, he was rear ended by a private vehicle causing pain to his upper back area. Supervisor: adron g. Wade
## 5414                                                                                                                                              11/8/2006 01:30 pm (fblackmo) employee stepped out of dump truck and twisted his left knee. Supervisor: greg mccracken
## 5415                                                                                                                   11/8/2006 02:17 pm (fblackmo) employee was removing a sign rack from truck bed when, he felt pain in his right shoulder. Supervisor: keith blazer
## 5416                                                                                                                                                  11/8/2006 02:25 pm (fblackmo) employee was bitten by a spider while sleeping on the dredge. Supervisor: m. J. Gray
## 5417             11/8/2007 01:05 pm (mdsloan) employee started operating "pan" when he felt burning/hurting in left groin area. Employee reported it to his supervisor that afternoon. Employee went to the doctor on 10/24/2007 and received diagnosis of having a hern
## 5418              11/8/2007 02:30 pm (mdsloan) employee were ripping 2x4 into 1/4" strips. Guard was in place until last cut was made. As last cut was being made employees push stick got caught in a bud with the saw blade, and the push stick was kicked out and was
## 5419             11/8/2007 03:23 pm (mdsloan) employee was helping another employee lift the rear ramp on the stone spreader trailer while a third employee hook a chain to hold it up. After getting the ramp chained in place, employee felt pain in his back and leg.
## 5420                                                                                    11/8/2007 03:55 pm (mdsloan) employee was climbing onto roller had foot on step and employees foot slipped off step causing him to hit his right leg. Supervisor: david c. Capps
## 5421                                                                                                                                  11/9/2004 01:23 pm (fblackmo) employee was injured while pulling and lifting on a shouldering attachment. Supervisor: jimmy ammons
## 5422         11/9/2004 01:37 pm (fblackmo) employee states while traveling down state road driving boom truck he, ran off the side of the road. Employee struck cure ahead signal sign shattering side mirror, mirror swung inward striking him on side of face. Supervi
## 5423                                                                                          11/9/2004 01:47 pm (fblackmo) employee was dismounting excavator, when he stepped onto ground his back twisted causing pain in right lower back. Supervisor: r. R. Fulghum
## 5424                                                                                                                             11/9/2004 02:36 pm (fblackmo) employee states while driving with window down a bee flew into his right eye. Supervisor: iris h. Mccombs
## 5425                                                                                                    11/9/2004 08:39 am (fblackmo) employee states while stepping down off the truck he, stepped on a piece of wood twisting his left ankle. Supervisor: w. D. Silver
## 5426                                                                                                                              11/9/2004 08:53 am (fblackmo) employee states while cutting down trees he, came into contact with poison ivy. Supervisor: todd hammond
## 5427                                                                                                 11/9/2005 01:14 pm (fblackmo) employee was cutting trees with a chainsaw when, he came into contact with poison ivy on multiple body parts. Supervisor: rick gordon
## 5428                                                               11/9/2005 01:26 pm (fblackmo) employee was preparing to measure for seed and mulch quantities when, he lost his footing in loose soil causing the injury to his left knee. Supervisor: david b. Moore
## 5429                                                                                                 11/9/2005 02:01 pm (fblackmo) employee got out of dump truck to clean off grates when, he lost his footing causing the injury to his back. Supervisor: r. S. Ramsey
## 5430                                                                                                                                                       11/9/2005 11:30 am (fblackmo) employee cut his left thumb while cutting string. Supervisor: stonie d. Woolard
## 5431                                                                                                         11/9/2005 11:48 am (fblackmo) employee was unloading cones from bed of truck and jumped down from truck and hurt left knee. Supervisor: tommy f. Richardson
## 5432         11/9/2009 01:08 pm (blgay) employee was shoveling gravel around bridge. Employee went to assist another employee cutting boards. When employee tried to crank the power saw, he felt a sharp pain in his arm, running up towards his shoulders. Supervisor:
## 5433                                                                                                                                 11/9/2009 01:19 pm (blgay) employee was stepping up into a trackhoe and something in his right leg popped. Supervisor: jimmy maness
## 5434                                                                                         11/9/2009 01:38 pm (blgay) employee was opening lower drawer of file cabinet and felt pain in lower back. Pain progressed the following day. Supervisor: c. N. Edwards, jr.
## 5435                                                                        11/9/2009 01:59 pm (blgay) employee had completed a road test in a suv and upon exiting the vehicle, she felt a sharp pain in the lower left side of her back. Supervisor: pamela harrington
## 5436         11/9/2009 08:27 am (blgay) employee was driving a pickup truck. Employee came upon a tree limb lying in the roadway and as he attempted to dodge tree limb, he struck it and jerked the steering wheel left. Employee over corrected to the right, striking
## 5437                                                          11/9/2009 08:40 am (blgay) employee was working on us 441. He picked up a large piece of a truck tire to load into the back of his pickup and felt a sharp pain in his lower back. Supervisor: wes jamison
## 5438                                                  11/9/2009 08:52 am (blgay) employee was laying 16" concrete blocks, while building a drainage box wall. Employee picked up one of the blocks and felt pain and burning in his left wrist. Supervisor: k. B. Bowman
## 5439         11/9/2009 09:01 am (blgay) employee was removing a muffler from underneath a dump truck. He was holding and twisting it back and forth to remove it from the pipe. Suddenly it gave way, pinching employees finger between the muffle and pipe. Supervisor:
## 5440         11/9/2010 02:22 pm (barnes) employee was driving a metal "t" post with a metal hand drive post driver. Employee raised the driver too high, and the edge of the driver struck top of the "t" post causing the top of the driver to strike employee on the r
## 5441         11/9/2010 11:44 am (barnes) employee was removing interior walls in warehouse to increase storage area. Employee stepped on a nail that was protruding from the debris that was laying on the floor in work area. The nail went through the sole of his rig
## 5442          11/9/2010 12:12 pm (barnes) employee was working on grade crew, stepped around behind loader and his foot slipped on a muddy spot. He tried to catch himself and hit his left hand on loader, causing finger to jam. Employee injured his left finger cont
## 5443         11/9/2010 12:38 pm (barnes) employee was in the process of performing a 30 day inspection on a dot facility generator. He had opened the doors on each side and checked the oil. He was standing beside the generator, and as he turned on the switch to st
## 5444                                                                                                                                          12-17-05: stated "unknown origin" noted swelling in rt wrist. 12-20-05: client pulled arm down and out in a jerking motion
## 5445     12-8-11 was the first day I experienced left-sided neck and back pain, after spending 1207011 working at my desk in my office, using the computer; my injuries seem to be a result of an occupational disease, I. E. Sitting and working on a computer; I've ha
## 5446           12/01/1999 01:45 pm employee was restaking sr 1412 he was in briars and brush waist high, when he felt pain in left lower leg. He though he had kicked a small stump, a few minutes later while in roadway he looked at leg and an area was very swollen.
## 5447                                                                                                                                              12/01/1999 07:56 am continuous keying of salvage work. Pain on both sides of neck and both arms experiencing swelling.
## 5448                                                                                                                                                                                       12/01/1999 08:04 am pain and swelling of left wrist due to repetitive motion.
## 5449                                                                                                                                        12/01/1999 08:10 am employee came in contact with poison ivy while clearing the right of way on sr 1508. Right and left arms
## 5450                                                               12/01/1999 11:18 am Mr. Overman picked up a 75-80 lb. Density ring. He did not feel his back spasm until 2 days later. Mr. Overman was running a density test on soil. Left lower back muscle strain.
## 5451                                                     12/02/1999 01:18 pm Mr. Ledford was cutting and chipping brush in right of way, when a thorn stuck in his left knee. He sought treatment the next day because area became infected. Supervisor: d. L. Carpenter
## 5452           12/02/1999 01:25 pm Mr. Hardee injured his right side of neck on 11/22/99 requiring surgery. He was cutting vegetation on a slopped area with gas weedeater, when the blade hit an object and embedded a puncture wound to Mr. Hardee's neck. Supervisor:
## 5453                                                                                                                           12/02/1999 01:31 pm Mr. King was climbing over a barrier when he injured his upper back (cervical) on 11/15/99. Supervisor: steve bridges
## 5454                                               12/02/1999 01:40 pm Mr. Call fractured his left foot while stepping down of the bed of truck on 11/18/99. His foot slipped off the tongue of asphalt kettle as he fell landing on his foot. Supervisor: jeff robinson
## 5455                                                                                                                     12/02/1999 03:26 pm Mr. Williams strained his right shoulder and neck while removing tree limbs from roadway jobsite. Supervisor: j. V. Riddick
## 5456                                                                                                  12/02/1999 03:48 pm employee is a truck driver and possibly the repetitious motion driving all day has caused a problem. Pain in left wrist shooting to the elbow.
## 5457                                                                              12/02/1999 03:52 pm Mr. Combs was climbing out of fuel tank void, when he tripped on hoses causing him to fall. Mr. Combs has a 1" cut to his forehead. Supervisor: william loch weems
## 5458                                                                                                                            12/02/1999 11:18 am Ms. Thomas has pain in her right hand due to repetitive motion while performing office tasks. Supervisor: lynn chalk
## 5459                                                                                                                                                                                     12/02/2003 10:27 am (slee) operator of pov pulled into the path of dot vehicle.
## 5460                                                                                                                                                     12/03/1999 08:11 am on October 26, 1999 employee picked up bucket of concrete and pulled something in her back.
## 5461                                                                                                 12/03/1999 08:27 am was in the process of rearranging a classroom (moving and breaking down folding tables). I wrenched my right shoulder. Strained right shoulder.
## 5462                                                                                                         12/03/1999 12:29 pm employee stated he put inmates in van, when he shut the door it shut on his little finger on left hand. Contusion on left pinky finger.
## 5463                                                                                                                      12/03/1999 12:41 pm crawling under bridge working, felt burning, stinging, tingling, & tightening in right knee. Torn cartilage in right knee.
## 5464                             12/03/1999 12:49 pm noticed a few small areas with rash while working in greenville. Assumed it was a mosquito or something but since then area has gradually grown and rash has gotten worse. Rash on chest, shoulders, neck and head.
## 5465             12/03/2001 05:37 pm (fblackmo) employee was conducting a road test. The customer approached a stop sign and made no indication to stop. Customer slammed on brakes and came within inches from hitting another vehicle in the rear. Employee felt a pop
## 5466                                                                                                                  12/03/2002 11:33 am (fblackmo) employee states, he was bitten by a spider while working on pipe line in craven county. Supervisor: g. J. Vonsuskil
## 5467                                                                                 12/03/2002 12:10 pm (fblackmo) employee states while bending to show another employee how to un-hook a piece of equipment, he felt pain in his lower back. Supervisor: g. R. Cooper
## 5468         12/03/2002 12:50 pm (fblackmo) employee was checking out her tractor to begin the daily mowing. Employee stepped up on the bush hog, she lost her footing causing her to fall hitting her left arm against the bach of the bush hog. Supervisor: t. J. Burc
## 5469                                                                         12/03/2003 02:01 pm (fblackmo) employee states while securing his truck load he, slipped and fell off the back of the truck causing the injury to his right ankle. Supervisor: d. W. Fowler
## 5470                                                                                                                   12/03/2003 02:29 pm (fblackmo) employee was closing gate when, truck struck him causing the injury to his chest and knee. Supervisor: donald king
## 5471                                                                                                                                12/03/2003 02:43 pm (fblackmo) employee was stepping down from truck when, he felt pain in his lower back. Supervisor: w. S. Richard
## 5472                                                                                                    12/03/2003 02:56 pm (fblackmo) employee stepped into a hole while going down an incline when, he felt pain in his right knee. Supervisor: j. L. Brown/g. F. Neal
## 5473                                                                                                             12/03/2003 03:36 pm (fblackmo) employee was installing breaks when, the tool he was using slipped causing the cut to his hand. Supervisor; david bowers
## 5474                                                                                                                                          12/03/2003 04:02 pm (fblackmo) employee was ranking asphalt when, he felt pain in his groin area. Supervisor: m. H. Thomas
## 5475                                                                                                               12/03/2003 04:13 pm (fblackmo) employee was lifting pallet when, the pallet slipped causing the injury to his little finger. Supervisor; keith wilder
## 5476                                                                                                              12/04/2000 02:23 pm employee was dismounting truck when he misjudged his last step causing him to fall on his right shoulder. Supervisor: s. D. Hinson
## 5477                                                      12/04/2000 02:31 pm employee was helping load a metal grate into back of flat bed squad truck on 11/17/00. Employee did not move his right arm and laid the grate onto his arm. Supervisor: anthony e. Edwards
## 5478                                                                     12/04/2000 02:35 pm employee was operating a long arm mower on 8/31/00. He started pulling cable controlled levers on mower when he strained/sprained right hand palm. Supervisor: r. D. Peeler
## 5479               12/04/2000 02:42 pm employee was a passenger in dot vehicle on 11/15/00. Driver of the vehicle tried to Miss A vehicle turning when the vehicle overturned. Accident happened at the intersection sr 1146 and us421 in sampson county. Supervisor: a.
## 5480                             12/04/2000 02:50 pm employee was getting out of dump truck on 11/17/00, when he stepped back onto step twisting his left knee. This caused him to fall dislocating his right shoulder to catch himself. Supervisor: b. J. Berryhill, jr
## 5481                                                                                                                                 12/04/2000 02:56 pm employee was conducting a interm review when she noticed her left thumb was hurting. Supervisor: pamela mckelvy
## 5482                               12/04/2001 10:54 am (fblackmo) employee states that while walking off board walk onto the parking lot, employee stepped onto yellow road reflector. Employees ankle twisted causing him to fall to the ground. Supervisor: t. L. Gray
## 5483                                                        12/04/2001 11:08 am (fblackmo) employee was working in drop box on us 74 with a pipe washer when he lost his grip on the fire hose, causing him to twist his right wrist and thumb. Supervisor: m. H. Thomas
## 5484                                                                       12/04/2001 11:27 am (fblackmo) employee was cutting tree out of road. The tree was up on bank when the log was cut. The log slipped down bank onto employees foot. Supervisor: d. M. Pressley
## 5485  12/04/2001 11:39 am (fblackmo) m. A. Jones was pulling car forward as employee w. L. Squirrell was walking between a parked carry all and the car m. A. Jones was driving. M. A. Jones struck w. L. Squirrell in the right knee with the bumper of the car. Superv
## 5486                                                                                      12/04/2001 11:56 am (fblackmo) employee was attempting to remove pin from rubber tire excavator when, metal sheered off going into his left upper arm. Supervisor: r. W. Feher
## 5487                                                                                                                            12/04/2003 01:05 pm (fblackmo) employee states while ranking asphalt he, felt a sharp pain in his lower back. Supervisor: lawrence marks
## 5488                                                                                        12/04/2003 01:15 pm (fblackmo) employee was pushing stones down in hopper with his foot when, his foot slipped causing him to fall on the machine. Supervisor: jimmy shelton
## 5489                                                                                                              12/04/2003 01:25 pm (fblackmo) employee states he lifted a 55 gallon drum full of oil from horizontal to vertical position. Supervisor: ben p. Wilkins
## 5490                                                                                                              12/04/2003 01:40 pm (fblackmo) employee was inspecting jacking operation of pipe when, he came into contact with poison ivy. Supervisor; keith brazell
## 5491                                                                                                            12/04/2003 10:45 am (fblackmo) employee was moving out of the way of a falling log when, the injury occurred to his right knee. Supervisor; r. D. Jordan
## 5492                                                                                                         12/04/2003 11:05 am (fblackmo) employee was pulling tailgate back to clean loose stones off when, the injury occurred to his right leg. Supervisor: lee dry
## 5493                                                                      12/05/2000 03:07 pm employee was unloading leaves in a wooded area on 11/17/00. He stepped down off bed of truck; he slipped causing him to turn/twist his left ankle. Supervisor: j. K. Rhyne
## 5494                                                                       12/05/2000 03:15 pm employee and inmate was closing tailgate on dump truck; when Mr. Bucher lower back began to hurt. Supervisor: j. D. Lusk 01/08/2001 06:59 am 04/12/2004 11:08 am (gwhite)
## 5495                                 12/05/2000 03:25 pm while conducting a road test on 11/15/00, a customer backed out of parking lot and struck a parked vehicle. Mr. Huskett has injuries to his head, neck, arms& legs and back areas. Supervisor: sylvia r. Spain.
## 5496             12/05/2000 03:35 pm employee was operating a front end loader on 9/13/00; when he got to close to the edge of the pond and fell in. The operator exited the loader through the window. The employee got sand in his eyes, nose, mouth and ears. He also
## 5497                                                                                                                                  12/05/2000 04:32 pm employee was lifting a piece of asphalt on 6/30/00; when he strained his lower back. Supervisor: john galloway
## 5498                                                                                                             12/05/2000 04:38 pm employee bent over to remove two empty beverage cans from roadside; when he strained his lower back area. Supervisor: j. C. Jenkins
## 5499                                12/05/2001 03:57 pm (fblackmo) employee was attending a training class. Employee took a set in a fold down desk. Employee was pulling the desk up when it slipped out of his hand pinching his little finger. Supervisor: tim harris
## 5500                                                                    12/05/2001 04:18 pm (fblackmo) employee was pushing 30 gallons paint drums filled with paint together so they would not move around when he felt a pull in his groin area. Supervisor: jim evans
## 5501                                                                       12/05/2001 04:34 pm (fblackmo) employee was in hole at bridge putting in bulkhead when a board was slid into hole, hitting a rock and striking employee in left leg. Supervisor: d. R. Fiscus
## 5502                                                                                                        12/05/2001 04:48 pm (fblackmo) employee was sawing tree, tree started to fall kicking back and hitting employee in the right knee. Supervisor: r. G. Presley
## 5503          12/06/1999 10:04 am Mr. Pierce has hearing loss in both ears due to incidents occurring while using jackhammer and compressor. He stated they (employees) have been using equipment for cutting pavement for 3 weeks without hearing protection nor eye pr
## 5504                                                                                                    12/06/1999 10:14 am Mr. Hewett states he has hearing loss in both ears due to noise from engines that powered the bridge over time. Supervisor: a. M. Lewis, jr.
## 5505            12/06/1999 10:25 am Mr. Shipman was lifting up on an aluminum boat to put in the back of a truck, when he felt pain in back and groin area. Mr. Shipman has a hernia on his left side of groin area and is scheduled for surgery on 12/3/99. Supervisor:
## 5506                             12/06/2000 03:17 pm employee bent over to pick up a steel post driver that was on bed of sign truck; when he strained his lower back and right side. He has pain in his back and down into his right leg. Supervisor: thomas e. Johnson
## 5507                                                                              12/06/2001 04:03 pm (fblackmo) employee lifted portable scale to put in patrol car and felt a pulling and burning sensation in his lower right abdomen. Supervisor: 2lt. B. N. Stewart
## 5508                                                                                                                                                      12/07/1999 03:32 pm walking through lobby with tile floor, slipped and fell hurting left ankle and right knee.
## 5509                                                                                             12/07/1999 03:41 pm pulling small trees off of road bank by hand the pine tree spun around and big end of the tree hit my neck and shoulder. Strained neck and shoulder
## 5510          12/07/1999 03:50 pm employee was buffing down the inside of a tire with a buffing tool. Getting ready to install a patch on a tire. Employee was pulling the buffing tool out of tire and bumped the tool on tire causing tool to jump and cut right index
## 5511                                                                                                                                                                            12/07/1999 09:10 am repetitious keying of salvage work. Right hand, wrist, and shoulder.
## 5512                                                                                             12/07/1999 09:16 am employee bumped hard hat on diaphragm. Hard hat tilted and strucked safety glasses. Safety glasses cut employees left eye brow. 02/01/2000 01:08 pm
## 5513              12/08/1999 03:48 pm employee was dismounting a paint machine by using a ladder. While he was grasping the ladder rails to come down off the ladder, his finger got hung on rails. Mr. Staley strained his right hand tendons. Supervisor: l. W. Lashle
## 5514                                                                                12/08/1999 04:00 pm Mr. Stewman cut his left leg above the knee on 12/02/99 while grinding paint off the floor. The grinder kicked back causing the injury. Supervisor: d. E. Bowers
## 5515                                                                                                                                        12/08/1999 04:12 pm Mr. Miller was unloading traffic control devices/signs, when one slipped cutting his right index finger.
## 5516           12/08/1999 09:44 am Ms. Newton was doing her normal job duties on 11/19/99, when she started experiencing lower back pain the next day. She doesn't know what caused the pain. On 11/22/99 she informed her supervisor and stated she wanted to see if th
## 5517                                   12/08/2000 08:52 am employee was beginning to perform soil tests; when he picked up scales he felt a stinging sensation in his back. The following morning he had pain in his upper (cervical) back. Supervisor: b. F. Strickland
## 5518                                          12/08/2000 08:58 am employee has pain in joints of her left thumb and pain in both middle fingers. Possibly caused by keying on computer, grasping and picking up work (repetitive motion). Supervisor: lyndia dianne rowe
## 5519           12/08/2000 09:06 am employee was walking down a rip rap slope, going under the bridge; when he lost his balance and fell forward on his right side. He tried to break his fall with his right hand causing pain to his right shoulder/arm. Supervisor: ja
## 5520                                                                                                12/08/2000 09:17 am employee was lowering a route marker sign to the ground to relocate and removing bolts; when he strained his lower back. Supervisor: c. R. Woody
## 5521                                                                                             12/08/2000 09:24 am employee was pulling a scale from truck of patrol car to weigh a truck; when he sprained/strained his left shoulder. Supervisor: fsgt. D. B. Stamey
## 5522                                                                                                            12/08/2000 09:29 am employee was walking around the truck to pick up bolts; when he struck (cut) his left ear on pipe of truck. Supervisor: r. F. Minton
## 5523                                  12/08/2000 09:45 am employee was removing (throwing) trash from truck bed on 11/22/00. He was attempting to step on concrete wall to get off truck and struck the wall. He has bruises to his lower back. Supervisor: r. S. Burton
## 5524                                                                                                               12/08/2000 09:54 am employee was operating a dump truck hauling stones; when she noticed a pain/strain in her right forearm. Supervisor: r. S. Minton
## 5525           12/08/2000 10:02 am employee was clearing right of way when he displaced his vertebrae. He had wedged a tree and was dropping it to the ground; when and inmate stepped into the work area. In an attempt to protect the inmate, the tree kicked back kno
## 5526                                                                                            12/08/2000 10:20 am employee was installing u-joints in hydraulic pump drive shaft; when he felt pain in his neck and right shoulder areas. Supervisor: r. Milton taylor
## 5527                                                               12/08/2000 10:58 am employee was walking downhill and slipped and fell on grass. He scratched and strained both knees, ankle, legs and strained/sprained his lower back area. Supervisor: joyce evans
## 5528                                                                                                                        12/08/2000 11:30 am employee was shoveling dirt around guardrail posts; when he felt a sharp pain in his lower back. Supervisor: j. N. Mixon
## 5529                                                                                                                                 12/08/2000 11:35 am employee was helping load truck when foreign object debris/grit scratched his left eye. Supervisor: donald king
## 5530                                                              12/08/2000 11:40 am employee was working on grader pulling ditches, hitting stumps, and twisting and turning all day on 8/17/00. This caused him pain in his lower back area. Supervisor: j. C. Pruitt
## 5531                                                                                                                                                                                   12/08/2003 11:25 am (slee) sov stopped at intersection and was rear ended by pov.
## 5532                                                                                                          12/09/2003 02:45 pm (fblackmo) employee was operating a rammax vibratory roller at jobsite when, he felt pain in his left wrist. Supervisor; j. Ronald lee
## 5533                                                                                                                       12/09/2003 02:57 pm (fblackmo) employee was opening window in bathroom when, he mashed his ring finger on left hand. Supervisor: david styron
## 5534                                                                                                                                         12/09/2003 10:22 am (fblackmo) employee was pulling paper clips when, she felt pain in her fingers. Supervisor: sylvia hall
## 5535                                                                                                                                                                                        12/09/2003 10:33 am (fblackmo) repetitious movement. Supervisor: jilda mcgee
## 5536                                                                                                                           12/09/2003 11:25 am (fblackmo) employee was stopped in the roadway when, her vehicle was struck from behind. Supervisor: r. J. Hollifield
## 5537                                                                                    12/09/2003 11:37 am (fblackmo) employee was stepping out of a dump truck and slipped when, he landed on the ground causing the injury to his lower back. Supervisor: g. W. Price
## 5538                                                                                                    12/1/2004 02:12 pm (fblackmo) employee was throwing a piece of asphalt on back of truck when, it flew back striking him in the face. Supervisor: iris h. Mccombs
## 5539                                                                                              12/1/2004 12:28 pm (fblackmo) employee states while stepping over a wall he, stepped into wet concrete causing the injury to his right ankle. Supervisor: aaron powell
## 5540                                                                                                                               12/1/2004 12:41 pm (fblackmo) employee states while cutting trees he, came into contact with poison ivy. Supervisor: r. L. Warlick jr
## 5541                                          12/1/2009 11:46 am (fblackmo) employee states while participating in wellness training he felt pain in his back. The injury is from a pre-existing condition prior to date of this accident. Supervisor: jimmie massengill
## 5542                                                          12/10/1999 04:19 pm Mr. Lane states he has hearing loss due to working in construction for 16 years. Safety appliance/regulation was provided and in use at time of the incident. Supervisor: t. M. Mckeel
## 5543                                                                                                    12/10/1999 04:31 pm Mr. Woodard states he has hearing loss due to working 22 years. Safety appliance/regulation was provided and in use at time of the incident.
## 5544                                                                                                        12/10/1999 08:41 am examiner marshburn was attempting torepair a wire attached to the digital license station. He accidentally cut his right pointer finger.
## 5545                                                                                                     12/10/1999 09:06 am one employee was passing a piece of plywood to Mr Teague and it slipped and landed on Mr. Teague's right middle finger. 02/01/2000 01:30 pm
## 5546                                                                                                           12/10/1999 09:50 am employee was shoveling asphalt off the bed of a dump truck when he twisted and felt something pull in his lower stomach. Right hernia
## 5547                                                                                                                  12/10/2002 08:34 am (fblackmo) employee states he was using a machete to cut brushes when, he felt pain in his right wrist. Supervisor: brent cork
## 5548                                                                                  12/10/2002 08:54 am (fblackmo) employee was walking down aisle when, she stepped on the wheel on chair. Employee states she injured her right ankle and back. Supervisor: pam lett
## 5549                                                                                                                                                                                           12/10/2002 09:04 am (fblackmo) repetitive keying. Supervisor: sylvia hall
## 5550                                                                                                    12/10/2002 09:32 am (fblackmo) employee was removing a cover to gain access to frame. The frame fell hitting employee on his right foot. Supervisor: c. R. Tyson
## 5551                                                        12/10/2002 09:47 am (fblackmo) employee states while shrubing he slipped on the slope. Trying to catch his balance he put his right hand on the ground and jammed his middle finger. Supervisor: w. M. Tosto
## 5552         12/10/2004 03:23 pm (fblackmo) employee experienced pain in his left hand from pulling cables on sunday (was not approved by supervisor). Stated on form 19 employees right hand surgery is pending, left hand is getting better. (see correspondence). Sup
## 5553                                                           12/10/2007 01:09 pm (blgay) employee was at desk and her chair rolled into a place where the tile was chipped away from an outlet in the floor, causing the chair to turn over. Supervisor: d. M. Buffkin
## 5554                                                                                                     12/10/2007 01:33 pm (blgay) employee was walking up a steep bank after taking photos of bridge, when he felt a sharp pain in right leg. Supervisor: mark callis
## 5555                                                                                                                       12/10/2007 02:03 pm (blgay) employee was helping take photos of customers at the dmv office, when employee fainted. Supervisor: dwight godwin
## 5556         12/10/2008 01:48 pm (blgay) employee was picking up sand bags. Water began flowing over the bags and then employee had to pick them up and restack on the side. Afterwards employee says back was sore and left leg was numb below the knee. Supervisor: w.
## 5557         12/10/2010 10:31 am (fblackmo) employee was in a ditch preparing the bottom for driveway pipe to be placed. Went to exit the ditch by backing up the slope and slipped backwards landing on his right elbow. Employee fracture right elbow. Supervisor: ral
## 5558                                12/11/2001 01:58 pm (fblackmo) employee climbed on side of dump truck to remove debris (piece of wood 3 x12) off canvas so it could be rolled back to cover load. Shoulder popped when pulling on the log. Supervisor: david l. Lane
## 5559            12/11/2001 02:11 pm (fblackmo) employee was walking through the state employees' parking lot upon arrival to work. At the exit/entrance of parking lot 19, he stepped on some wet leaves in the walkway. Employee slipped, hitting his left knee, and en
## 5560                                           12/11/2001 02:29 pm (fblackmo) employee was using a drill press to make a bigger hole in angle iron. Pressure of clamp came lose, causing the angle iron to turn hitting employees' left finger. Supervisor: wallace laws
## 5561                                                                                                                        12/11/2001 02:41 pm (fblackmo) employee was installing pipe and does not know when exactly the injury happened. Supervisor; kennie covington
## 5562                                          12/11/2001 02:54 pm (fblackmo) employee was climbing over girder while holding onto the stirups. Employee left foot slipped, while holding onto the stirrup causing a cut to his left arm. Supervisor: k. C. Batcherlor jr
## 5563                                                                                                                                         12/11/2001 03:09 pm (fblackmo) employee was helping load motor grader tires into a pickup. Supervisor: ralph thomas mcmanus
## 5564                                                                     12/11/2001 03:26 pm (fblackmo) employee states that while climbing up steps off road truck (steps connected by cables) cable shifted causing foot to turn awkwardly. Supervisor: darrell parson
## 5565                                                                                      12/11/2001 04:12 pm (fblackmo) employee was carrying a portable traffic sign. Employee stepped off roadway onto the shoulder and twisted his ankle. Supervisor: dennis r. Ross
## 5566                                              12/11/2001 04:33 pm (fblackmo) employee was trying to remove a rock that was lodged in the tailgate. Employee pulled the gate to dislodge the rock when his hand got caught in the tailgate. Supervisor: j. C. Penland
## 5567                                    12/11/2001 04:45 pm (fblackmo) employee was mounting equipment using 3pt. Mount when his foot slipped from the ladder causing his arm to extend to a straight position. Employee arm was cut as he fell. Supervisor: janice bobo
## 5568                                              12/11/2001 05:51 pm (fblackmo) employee was stepping up onto fuel truck when his foot slipped and his knee hit the tank on the truck. Supervisor: m. O.. Anderson 1/26/2005 09:16 am (mpark) *show all bills to joyce*
## 5569                                                        12/11/2001 12:15 pm (fblackmo) employee was picking up chain off the ground. Employee went to stand up and felt a catch in his lower back causing him to fall back on the ground. Supervisor: h. M. Thompson
## 5570             12/11/2001 12:36 pm (fblackmo) employee was cutting the limbs of of a downed tree. He turned and began walking away from the tree. The tree rolled on the ground and a large limb struck employee in the back of his head. The limb forced him down and
## 5571                                                                                           12/11/2002 01:22 pm (fblackmo) employee states while sitting at red light on new hope road, he was struck in the back by a private vehicle. Supervisor: sgt. J. T. Burgin
## 5572                                                                          12/11/2002 01:40 pm (fblackmo) employee states while driving tandem dump truck during snow and ice, the body of the truck came up causing pain in his back area. Supervisor: w. R. Loyd jr
## 5573                                                                                                               12/11/2002 01:51 pm (fblackmo) employee states, she was returning to her hotel after having dinner when, she slipped and fell. Supervisor: b. S. Sisk
## 5574                                                                                         12/11/2002 02:02 pm (fblackmo) employee states while lifting and pulling open the warehouse garage door, experienced pain in his lower back all day. Supervisor: keith hill
## 5575                                                                                                 12/11/2002 03:44 pm (fblackmo) employee states he was reaching down to pick up lid for paint drum when, he felt pain in his back area. Supervisor: franklin bullock
## 5576          12/11/2002 10:38 am (fblackmo) employee was looking at a "ditch witch" that the contractor had recently brought to the project. After noticing that equipment was leaking anti-freeze, the operator reached into the cab and accidentally dropped the blad
## 5577                                                                                                               12/11/2003 01:46 pm (fblackmo) employee was qualifying with is issued service weapon when, he felt pain in his right wrist. Supervisor: t. S. Collins
## 5578                                                             12/11/2003 01:56 pm (fblackmo) employee was picking up a deer when, he felt pain in his back. Supervisor: g. G. Caudill 11/6/2006 01:30 pm (fblackmo) claim closed. Clinched on 04/12/2005. Do not use.
## 5579                                                                                                             12/11/2003 02:10 pm (fblackmo) employee was working on project u-2107d when, he jumped a ditch causing pain to his left knee. Supervisor: darren howell
## 5580                                                                                              12/11/2003 02:20 pm (fblackmo) employee was pulling a deer off the back of his truck when, he fell in ditch causing pain to his lower back. Supervisor: g. J. Liverman
## 5581                                                                              12/11/2008 05:04 pm (fblackmo) employee was going through some things inside vehicle when, something inside the vehicle she touched cut her right hand. Supervisor: robert e. Flaherty
## 5582                                                                                                         12/11/2009 09:34 am (fblackmo) employee was climbing into the cab of the tractor trailer when, she felt pain in her lower back area. Supervisor: p. Sheldon
## 5583                                                                                                   12/12/2000 03:05 pm employee was loading barrels on truck; when his work vest got caught on bracket causing him to fall on his left arm. Supervisor: d. D. Austin
## 5584                                         12/12/2000 03:13 pm employee was removing tool from truck; when the weight of the dcp (dynamic cone penetrometer) dropped and mashed his right little finger. Supervisor: christopher gilliam 01/09/2002 10:43 am (twerner)
## 5585                                                                                           12/12/2005 03:25 pm (blgay) employee lifted 19. 5 wheel from tire changer after repairing tire. Employee felt a little burning between legs. Supervisor: james a. Paschal
## 5586                                                                                                     12/12/2006 03:51 pm (fblackmo) employee lost balance while squatting down cleaning guides on scanner, she hit her head on cubical. Supervisor: wilma dale ellis
## 5587                                                                                                                                                   12/12/2006 08:03 am (fblackmo) employee states he experienced occupational hearing loss. Supervisor: tommie peace
## 5588         12/12/2006 08:50 am (fblackmo) employee was attempting to turn left onto unpaved road when private vehicle passed grader on left side, struck front blade of grader, skidded 389 feet, and landed in farm field. Employee suffered cervical strain from imp
## 5589         12/12/2006 09:42 am (fblackmo) employee was standing on running board of tandem truck (passenger side). Employee was adjusting side mirror on truck when, he lost his footing and fell on asphalt. He hit asphalt on his right side and arm. Employee did n
## 5590                                       12/12/2006 10:05 am (fblackmo) employee was using penmul asphalt release and a steam genny to clean equipment. Employee stated that the fumes from the penmul caused him to get a server headache. Supervisor: k. D. Register
## 5591                                  12/12/2006 10:25 am (fblackmo) employee was lighting burners on asphalt tanker to heat asphalt for bst operation. While lighting one of the burners the raw fuel and fire blew back on employees right arm. Supervisor: kelly perr
## 5592                                                    12/12/2006 12:19 pm (fblackmo) employee was attempting to straighten a sign on state road 1722, the splicing bolts sheared and the sign post struck him in the upper right side of head. Supervisor: p. L. Eaker
## 5593                                                                                                                     12/12/2006 12:48 pm (fblackmo) employee experienced pain in her right wrist due to repetitive typing and mouse use. Supervisor: t. Lane mallone
## 5594           12/12/2006 12:59 pm (fblackmo) employee was working with shoulder crew performing curb and gutter operations. Employee was shoveling grass and dirt when, his shovel hit a joint in the cement causing injury to his right wrist. Supervisor: j. W. White
## 5595                                                                         12/12/2007 01:39 pm (blgay) employee was driving a tri-axle dump truck to his job, when a private vehicle pulled out in front of him causing a head on collision. Supervisor: jimmy whitman
## 5596                                                                                                                                         12/12/2008 02:59 pm (fblackmo) employee fell off chipper machine striking his head on pavement. Supervisor: d. M. Honeycutt
## 5597                                                                                                                           12/12/2008 03:28 pm (fblackmo) employee was changing tip on pressure washer when, he cut his right index finger. Supervisor: dustin smith
## 5598         12/13/1999 07:55 am employee was lifting oak boards, cutting the boards to size, placing the boards on the trailer frame, drilling holes in the boards from the top side, then installing the nuts and washers while laying on a creeper under the equipmen
## 5599                                                                                                                         12/13/1999 08:03 am john was digging a hole with posthole diggers and later complained that his hand was sore. Tenosynonitis on right hand.
## 5600                                               12/13/1999 08:12 am employee was hooking salt spreader to back of truck. When he raised up, he bumped his head on the corner of salt spreader cutting a gash in the top of his head. Laceration on right tip of head.
## 5601                                                                                             12/13/1999 08:19 am employee was lifting crs-2 hose over his head while letting product drain into tar kettle for a prolonged period casing strain to left middle back.
## 5602                                                                                                                                          12/13/2000 08:57 am employee was lifting a ram to the scaffolding, when he strained his lower back. Supervisor: g. D. Fine
## 5603                                                                                                                  12/13/2000 09:01 am employee was loading spreader on truck; when the spreader came back striking/bruising his left elbow. Supervisor: j. F. Bishop
## 5604                                                                        12/13/2000 09:11 am employee was setting a traverse point on shoulder of road and stepped into a hole covered with grass and strained/sprained his right knee. Supervisor: phillip d. Manley
## 5605                                                                                                        12/13/2000 09:20 am employee was attempting to release a chain binder on a sand spreader; when he mashed his right middle finger. Supervisor: claude edwards
## 5606                                                                                  12/13/2000 09:30 am employee was changing blades on brush chipper with a wrench; when the wrench slipped off the nut cutting his right thumb (4 stitches). Supervisor: f. E. Floyd
## 5607          12/13/2000 09:38 am employee states he climbed up on truck to check inside bed to make sure all asphalt was clean/cleared. He stepped down on tire and lost his footing striking the inside of the rim. He bruised his left foot and strained/sprained his
## 5608             12/13/2001 02:14 pm (slee) employee was stopped, waiting to turn left, with his turn signal on into the job. He looked into his rear view mirror and saw a truck approaching fast. The private vehicle tried to slow down at the last minute but he hit
## 5609                    12/13/2001 04:51 pm (fblackmo) employee had stepped up on athey loader to grease conveyor belt. When finished, he stepped down off the loader, then stepped backwards into a hole, causing the injury to his ankle. Supervisor: g. E. Strickland
## 5610                                                                                                                                         12/13/2001 12:40 pm (fblackmo) employee was climbing onto roller when he lost his footing and fell. Supervisor: gary morris
## 5611                                                                                                                                12/13/2002 01:23 pm (fblackmo) employee was shoveling asphalt from back of truck when, he slipped and fell. Supervisor: david lowery
## 5612                                                                           12/13/2002 01:35 pm (fblackmo) employee was removing trees from roadway with plow. Tree sprung over plow striking windshield, glass went into employees eye. Supervisor: j. P. Ingram, pe
## 5613              12/13/2002 01:46 pm (fblackmo) employee was cutting debris on side of road that had fallen because of snow and ice. Employee touched limbs with the chainsaw blade, the limb broke, striking employee in his left knee area. Supervisor: roger s. Deal
## 5614                                              12/13/2002 01:58 pm (fblackmo) employee was laying on his stomach of bed of trailer, he was pulling a load binder to tighten down a front end loader when, he felt pain in his stomach area. Supervisor: roger s. Deal
## 5615             12/13/2002 12:53 pm (fblackmo) employee states, he was driving a low boy when, a private vehicle pulled out into his path. Employee hit private vehicle on drivers side. Supervisor: s. R. White 11/6/2006 01:36 pm (fblackmo) claim closed. Clinched o
## 5616                                                                                                                                                        12/13/2004 03:37 pm (slee) vehicle fish tailed out of control and went into the path of an oncoming vehicle.
## 5617                                                                                                              12/13/2004 10:26 am (fblackmo) employee was attempting to close tailgate on dump truck when, he mashed his right little finger. Supervisor: c. F. Vick
## 5618                                                                                                          12/13/2004 10:45 am (fblackmo) employee states while leaving building spray from pest control got into her eyes, face, and lips. Supervisor: r. M. Huffman
## 5619                                                       12/13/2004 11:26 am (fblackmo) employee was installing loader bucket. While installing first pin, the bucket shifted causing employee to strike his left middle finger breaking it. Supervisor: carlton inman
## 5620       12/13/2004 11:39 am (fblackmo) employee was removing old bush axe from a work truck and swapping them out for new bush axes. In the process of removing one of the old bush axes, the bush axe slipped casing a cut to his right wrist. Supervisor: j. H. Fre
## 5621                                                                                                             12/13/2005 02:02 pm (fblackmo) employee was clearing right of way when, he came into contact with poison ivy on arms and face. Supervisor: bruce branch
## 5622                                                                                                                                           12/13/2005 02:13 pm (fblackmo) employee had garage door open when, saw dust blew into his eyes. Supervisor: david findley
## 5623                                                                                                                      12/13/2005 02:22 pm (fblackmo) employee was inspecting shipment of plow bolts when, he felt pain in his back. Supervisor: patricia a. Mitchell
## 5624          12/13/2005 02:42 pm (fblackmo) employee stated he was sliding a 6x12x9 timber along the top of jacks to get it out from under bridge when, it slid off of the second jack, mashing his right hand and injuring his middle finger. Supervisor: eric allen s
## 5625                                                                                                                               12/13/2005 02:57 pm (fblackmo) employee twisted his left hand when, he slipped off the step of dump truck. Supervisor: a. H. Thornton
## 5626                                                                                                       12/13/2005 06:20 pm (fblackmo) employee was loading buckets of asphalt waste into the back of truck when, he felt pain in his back. Supervisor: Jan t. Womble
## 5627                                                                                                     12/13/2005 09:32 am (fblackmo) employee states he had a migraine, felt dizzy, experienced slurred speech, cold chills, and sweating. Supervisor: a. J. Crumpler
## 5628                                                                                                    12/13/2005 09:49 am (fblackmo) employee was slowing down for traffic at traffic light when, private vehicle hit him in the rear. Supervisor: c. W. Wethington jr
## 5629                                              12/13/2005 10:09 am (fblackmo) employee was waiting in line for a wreck to be cleared when, he was struck in the rear by a private vehicle. Employee complained of a bad headache and was sore. Supervisor: andy heath
## 5630                                                                                                              12/13/2005 10:27 am (fblackmo) employee was clearing right of way when, he came into contact with poison ivy on arms and face. Supervisor: james smith
## 5631                         12/13/2006 09:44 am (fblackmo) employee was transferring tools, etc. From pick up truck to work box on rig and the wind blew the lid of box down and it landed on his head causing a laceration to his scalp area. Supervisor: m. R. Holmes
## 5632                                                                                                             12/13/2007 12:53 pm (blgay) employee was installing a 5' post for a stop sign and caught left thumb between hammer and post. Supervisor: roger arrowood
## 5633                      12/14/1999 04:28 pm Mr. Pritchard was using jackhammer on east fork road in guilford county on 12/8/99, when jackhammer blade got stuck. A co-worker tried to help him pull it out when he felt a pain in his lower back. Supervisor: al smith
## 5634                   12/14/1999 09:33 am Mr. Goodwin strained his lower back on 11/10/99. Mr. Goodwin states he stepped in a hole and had to jump the ditch in order to avoid falling. When he jumped the ditch he twisted/strained his back. Supervisor: t. M. Little
## 5635                                           12/14/1999 09:41 am employee was using chain saw to cut flooring boards at a bridge site, when a piece of metal came in over his safety glasses and lodged in his left eye. Supervisor: w. D. Watkins 02/01/2000 11:03 am
## 5636                                                                                                       12/14/1999 09:47 am Mr. Havard was coming off of ferry to answer phone in the office, when he felt and heard a "pop" in his left knee. Supervisor: t. L. Gray
## 5637           12/14/1999 09:58 am Mr. Johnson was struck by a private vehicle while flagging traffic on nc 210 on 10/28/99. Two private vehicles had stopped and was waiting to be flagged through, when another private vehicle came behind them and could not stop. O
## 5638           12/14/2001 08:51 am (fblackmo) employee was working on "dog wagon" with another employee. The crew was responding to a report of a dead deer in the roadway on state road 1111. During the process of picking the deer up loading it onto the truck the e
## 5639                                                                                   12/14/2001 09:07 am (fblackmo) employee was sawing limb from tree with power saw and as the limb fell it stuck employee on his left foot causing pain. Supervisor: fred street jr
## 5640                               12/14/2001 09:35 am (fblackmo) employee was climbing onto squad truck. Employees foot slipped causing him to lose his balance and fall. Employees hand was caught in bed rail of truck causing the injury. Supervisor: d. M. Pressley
## 5641                                                                                                                                12/14/2006 11:07 am (fblackmo) employee was walking when, she tripped on sidewalk causing injury to her elbows. Supervisor: andy gay
## 5642         12/14/2007 03:25 pm (fblackmo) employee was removing vegetative debris during a right of way clearing operation and was stung multiple times by a swarm of yellow jackets. Employee was stung on his upper and lower back, both legs, arms, head, neck, and
## 5643                                                                                                                    12/14/2007 03:42 pm (fblackmo) employee was going to the bathroom when, he was bitten by a spider on his upper left leg. Supervisor: mark conner
## 5644                                                                                                             12/14/2007 04:05 pm (fblackmo) employee was lifting fifty pound weights (volumeters) when, he felt pain in his lower back area. Supervisor: joe lockamy
## 5645                                                                                   12/14/2007 04:33 pm (fblackmo) employee went to check the coding tower in fenced area when, he was grabbed and fell back into the chili room onto a pump. Supervisor: ricky davis
## 5646                            12/14/2007 07:28 am (blgay) employee was tapping a retaining pin back into place after lubricating an auger on a tailgate spreader. A piece of rust or metal hit employee in his left eye as he tapped the pin. Supervisor: dwayne blake
## 5647         12/14/2007 07:52 am (blgay) employee was removing a sign rack from the bed of a pickup by holding to one support leg. The lock clip simultaneously released allowing the sign rack to fall on employees left hand that was resting on the top of the closed
## 5648          12/14/2007 11:10 am (fblackmo) employee was walking up and fell on an embankment on the west side of the dmv headquarters parking lot (state street). The incident did not occur on state property, by the paved area. Employee complained of hip and back
## 5649         12/14/2007 12:25 pm (fblackmo) employee began to experience weakness, numbness, tingling, and pain in her right wrist and forearm while typing on the computer, using the mouse, and working with the mail. Employee states that due to the repetitious act
## 5650                                                                                                                 12/14/2009 10:45 am (blgay) employee was traveling in ncdot truck, when a pv ran stop sign and hit the front of ncdot truck. Supervisor: stan young
## 5651                                        12/14/2009 11:32 am (blgay) employee was a passenger in crew cab truck. When driver applied brakes, employee went forward and hit right side of head on windshield, causing windshield to break. Supervisor: tommy culberson
## 5652                                                                                                              12/14/2010 02:43 pm (fblackmo) employee was using a wrenching bolt, wrench slipped off bolt crushing ring finger on right hand. Supervisor: terry gray
## 5653                                                 12/14/2010 03:13 pm (barnes) employee was digging crosslines on sr 1132 roaring creek rd. He put his arm down by his side and was stung on his forearm. Employee injured right forearm. Supervisor: robert k. Payne
## 5654          12/14/2010 03:41 pm (barnes) employee picked up a piece of wood from bridge#151 in guilford county that had a bolt in it. The bolt was cut off with a torch. Employee burnt his left hand on the bolt that was cut off. Employee injured his left hand. Su
## 5655                                                                                                                       12/15/1999 01:56 pm employee was walking through a pipe when he stepped on a bolt that was holding the pipe together hurting his right ankle.
## 5656                                                                                                                    12/15/1999 02:02 pm employee was changing tire on backhoe, reached to remove tire & tractor chassis trapped finger cutting left hand 4th finger.
## 5657                    12/15/1999 02:32 pm employee was repairing damaged road signs on 10/21/99 in watauga county. Mr. Faw stated when he pulled a broke 4x6 post from the ground, he stepped in the post hole straining his right leg. Supervisor: dwayne a. Bauguess
## 5658                                                                        12/15/2005 03:07 pm (fblackmo) employee was using a fence driver to install roadway fence when, driver slipped mashing employees finger between fence and driver. Supervisor: greg mccracken
## 5659                                                                            12/15/2005 04:11 pm (fblackmo) employee was cutting trees when, branch fell striking him on his left side and knocking him to the ground hitting his right side. Supervisor: c. R. Adams
## 5660                                                                                                                12/15/2005 10:41 am (fblackmo) employee was getting out of his vehicle and coughed. He felt a sharp pain in his right side. Supervisor: j. M. Delapp
## 5661                                                                                                                 12/15/2006 04:34 pm (fblackmo) employee was lifting trailer tongue of arrow panels to truck when, he felt pain in his back. Supervisor: joe justice
## 5662                                                                                                                      12/15/2006 04:45 pm (fblackmo) employee was stepping out of cab of truck when, he felt pain in his left knee area. Supervisor: mary elle white
## 5663               12/15/2006 05:08 pm (fblackmo) employee was rolling 18' pipe on trailer and turning pipe on trailer. A mild pain came in back, as day went by more pain and stiffness in back and later the evening severe pain in lower back. Supervisor: t. F. Bray
## 5664        12/15/2006 05:23 pm (fblackmo) employee was standing on the side rail on the drivers side of a tandem dump truck bed. He raised the back screen of a good roads spreader to open position which is approx. 1 1/2 inches past vertical. He lifted and dropped
## 5665         12/15/2006 05:39 pm (fblackmo) employee states that a wall fell on another employee and while lifting wall off employee he felt pain in right shoulder. Employee states it has only been one month since he had rotator cuff surgery on right shoulder. Sup
## 5666                                               12/15/2006 11:26 am (fblackmo) employee was stationary at stop sign when, his state owned vehicle was struck in the rear by a suv. Employee complained of neck and upper shoulder soreness. Supervisor: t. S. Collins
## 5667                                                                             12/15/2006 11:37 am (fblackmo) employee was stepping down off a front end loader when, his boot got hung on step causing him to fall and injure his right arm. Supervisor: chip speight
## 5668                                                                                        12/15/2009 01:47 pm (blgay) employee was sweeping under the drive on life in the shop and he raised up hitting his head on the ramp of the life. Supervisor: richard freeman
## 5669                                                                                                       12/15/2009 02:20 pm (blgay) employee was pulling a nylon rope connected to a chain through a cross-line pipe to clean out the pipe. Supervisor: thomas chavis
## 5670         12/15/2009 11:27 am (blgay) employee had been clearing trees and brush from right of way. While riding to lunch employee noticed a tick embedded in his left arm. Employee attempted to remove by conventional methods, but tick was to deeply embedded and
## 5671                                                                                                                                                               12/16/1999 08:47 am employee stepped on nail covered by leaves in woods. Puncture wound in left foot.
## 5672                                                                                                                     12/16/2003 03:53 pm (fblackmo) employee was shoveling rock to repair a driveway when, he felt pain in his chest. Supervisor: robert a. Mccarley
## 5673                                                                                                                     12/16/2003 04:07 pm (fblackmo) employee was stepping down off vehicle and hit his face on the hay mulcher chute. Supervisor: robert a. Mccarley
## 5674                                                                                                   12/16/2003 04:16 pm (fblackmo) employee was standing on truss when it gaveway causing the injury to his ankle, knee, and cuts to face. Supervisor: a. W. Childres
## 5675                                                                                             12/16/2003 04:28 pm (fblackmo) employee was coducting a basic inspection when, she stepped off the curb causing the injury to her right ankle. Supervisor: sylvia spain
## 5676                                 12/16/2003 10:38 am (fblackmo) employee was sitting at computer keying when, she felt something on her leg. Employee didn't realize that something had bitten her on lower left leg until the next morning. Supervisor: sylvia hall
## 5677                                                                                                                                     12/16/2003 11:15 am (fblackmo) employee states while cutting trees she came into contact with poison ivy. Supervisor: k. Blazer
## 5678                                                                                                                                     12/16/2003 12:26 pm (fblackmo) employee was loading wood into loader, wood fell and hit right hand. Supervisor: johnny ransdall
## 5679                                                                                         12/16/2005 04:31 pm (fblackmo) employee was getting out of truck during drill when, he slipped on slope causing the injury to his left ankle. Supervisor: clinton b. Little
## 5680                                                                                                           12/16/2005 04:51 pm (fblackmo) employee was pushing ice chest full of ice when, it slipped off the cart striking his left leg. Supervisor: alicia simmons
## 5681                                                                                                                                       12/16/2008 01:07 pm (blgay) employee was hit in the rear and pushed into another car in front of him. Supervisor: mark thomas
## 5682          12/16/2008 01:20 pm (blgay) employee was walking to the back of truck to get chaps for chain saw and tripped on a small stump that was covered with grass. Employee fell on another stump injuring his ribs. Employee thought he was okay, but realized he
## 5683                                                                    12/16/2008 03:06 pm (fblackmo) employee was walking from his grader to fellow employee when, he stepped on uneven ground, turing his right ankle, can causing fracture. Supervisor: r. N. Harden
## 5684         12/16/2009 03:08 pm (blgay) employee was crack pouring on sr1533. While operating spray wand on the back of the machine, employee started having pain between his shoulder blades. Employee stated as the morning progressed, it gradually got worse. Super
## 5685                       12/16/2009 03:37 pm (blgay) employee climbed out of a truck and took one step back and tripped over a block of wood used to prop up a snow plow. Employee fell back and injured his left hip when he hit the ground. Supervisor: edwin austin
## 5686                            12/16/2009 04:07 pm (blgay) employee was conducting a criminal interview at 58 lindsey lane in nebo, nc 28761. Employee was bitten by a small white dog. The dog bite was on the right leg, close to the shin. Supervisor: gary mcintyre
## 5687                                                   12/16/2009 04:27 pm (blgay) employee was emptying trash cans off the back of a pickup truck. One of the cans slipped on the tailgate causing him to get off balance and strain his back. Supervisor: danny parker
## 5688                                                                                                            12/16/2009 08:48 am (fblackmo) employee was pulling limbs up slope to fed in chipper when, he felt pain in his abdomen area. Supervisor: d. M. Honeycutt
## 5689              12/17/2001 04:15 pm (fblackmo) employee states that, while checking grade stakes on job site edge of pavement the asphalt gave way and he slid down the side of the embankment. Employees left leg slid down hillside causing his left knee to hurt. S
## 5690           12/17/2001 04:41 pm (fblackmo) employee was attempting to remove the salt sprayer from the back of a dump truck. The chain hoist hook slipped off of the sprayer safety latch causing the sprayer to fall and, in doing so, it hit the employee on his le
## 5691                                                                        12/17/2001 05:15 pm (fblackmo) employee strained a groin muscle while pulling on asphalt tank suction hose trying to free it from the bottom of the asphalt tank. Supervisor: l. O. Ethridge
## 5692           12/17/2002 02:24 pm (jgibson) employee was heading north on us 21 when he saw a vehicle with 2 hispanic males lose control and start to slide toward him. He stopped, hoping they would Miss Him or get stopped. They struck his truck then turned and sp
## 5693              12/17/2002 02:27 pm (fblackmo) employee was operating a chainsaw cutting a falling tree from the ice storm on us 64. The broken part of the tree fell toward employee striking him on his back, causing him to twist his foot. Supervisor: bobby lewis
## 5694                                                                     12/17/2002 03:41 pm (fblackmo) employee states he had walked off right of way to the edge of woods when, he stepped into a hole causing the injury to his right ankle. Supervisor: carlis smith
## 5695                                                                                                                                    12/17/2002 03:51 pm (fblackmo) employee states while exiting a ladder, felt pain in his left ankle. Supervisor: william t. Stone
## 5696         12/17/2002 09:57 am (fblackmo) employee states, on I-40 west in a 1999 dodge mini-van (91741) around mile marker 301, a black 1997 ford explorer was in the passing line when, it hit a patch of ice. The driver of the ford explorer struck employee on Dr
## 5697                                                                                                                         12/17/2002 10:20 am (fblackmo) employee was walking on steep slope when, the injury occurred to his right ankle. Supervisor: j. L. Mcdonald
## 5698                                                                                                                               12/17/2003 09:31 am (fblackmo) employee states file boxes fell on her arm while trying to update calendar. Supervisor: ann strickland
## 5699                                                                                                                      12/17/2003 09:46 am (fblackmo) employee stepped in a hole while flagging traffic causing the injury to his right leg. Supervisor: r. E. Austin
## 5700                                                                                                                                          12/17/2003 09:57 am (fblackmo) employee was using a bush axe when he cut his finger on right hand. Supervisor: a. J. Mintz
## 5701                                                                                                                                       12/17/2003 11:23 am (fblackmo) employee slipped and fell on wood ramp causing the injury to his back. Supervisor: a. R. Wells
## 5702                                                                                                         12/17/2003 11:46 am (fblackmo) employee was stepping out of truck when, his foot slipped causing the injury to his left arm. Supervisor: b. J. Berryhill jr
## 5703                             12/17/2003 12:09 pm (fblackmo) employee was operating a dump truck when he pulled off the to the shoulder of road to let a over-sized mobile home go by he, hit something that caused pain to his lower back. Supervisor: j. E. Walters
## 5704                                                                          12/17/2004 10:11 am (sshort) employee strained his lower back, side soft tissue area (flank) while moving office furniture from the office to a storage container. Supervisor: mike mckeel
## 5705         12/17/2007 02:13 pm (fblackmo) employee was mixing procreate to repair bridge deck. He heated the procreate and was pouring part a in a five gallon bucket to be mixed. When he went to pour it, it spilled on his and and glove causing a burn to his righ
## 5706                                                                                 12/17/2007 02:24 pm (fblackmo) employee was waking back into the building after giving a road test when, her left ankle turned over causing her to fall. Supervisor: debbie hubbard
## 5707                        12/17/2007 11:21 am (fblackmo) employee states that her shoe got caught on the bottom of the visage cabinet which caused her to fall on the floor. Employee felt pain in her left foot, right knee, and right arm. Supervisor: sandra harris
## 5708                                                                                                               12/17/2007 11:58 am (fblackmo) employee was clearing brush around flower bed when, he was bitten by a tick on his chest area. Supervisor: chris vause
## 5709          12/17/2007 12:08 pm (fblackmo) employee was on his way from the office to the project site when, private party ran stop sign and hit employee. Employee was sore and went to the doctor to get checked out. Employee was not injured. Supervisor: jason sa
## 5710                                                                                                                                     12/17/2007 12:41 pm (fblackmo) employee was stepping off of a jack block and twisted his right ankle. Supervisor: anthony cooke
## 5711                                                                                            12/17/2008 10:56 am (fblackmo) employee was taking personnel hiring packages out of file drawer when, she was bitten by an insect on left hand. Supervisor: amanda olive
## 5712                                                                                                                   12/17/2009 01:26 pm (blgay) employee was stepping down from the tailgate on the crew cab, when his right knee gave way. Supervisor: tammy johnson
## 5713                                                                                    12/17/2009 07:05 pm (fblackmo) employee got his finger caught between the lifting gate and truck causing a deep laceration to the right pinky finger. Supervisor: roger pulcheon
## 5714                                                                                                                             12/18/2000 02:36 pm employee was installing starter on truck; when a foreign object fell into his left eye. Supervisor: david e. Bowers
## 5715                                                   12/18/2000 02:41 pm employee was attempting to jump a ditch; when his left foot hit the top of the ditch bending his foot backwards. He fractured the second and fourth toes on his foot. Supervisor: m. S. Reese
## 5716                                                                              12/18/2000 02:46 pm employee slipped and fell striking his tailbone on dump truck bed on 11/30/00. Mr. Marks was exiting the truck at time of incident. Supervisor: roy donald pittman
## 5717                                                                                                           12/18/2000 02:52 pm employee was pulling on plastic pipes; when he slipped and fell on deck straining his lower back (left side). Supervisor: b. R. Moore
## 5718          12/18/2000 02:58 pm employee was driving on I-85 north in gaston county; when his vehicle was struck from behind by a tractor trailer truck. Mr. King was hospitalized and has injuries to his vertabae in his neck, left shoulder and both hands (numbnes
## 5719           12/18/2000 03:06 pm employee was struck in the rear while assisting a disabled vehicle on 12/8/00. A private vehicle struck imap truck pushing it into the disabled vehicle and striking Mr. Brown. Mr. Brown has bruises and contusions to his right arm
## 5720                12/18/2001 02:03 pm (fblackmo) employee was climbing out from back of dump truck when he missed his step causing employee to fall striking upper shoulder and neck on the body of the truck. Supervisor: b. R. Knowles 01/09/2002 10:36 am (twerner)
## 5721                                                               12/18/2001 02:22 pm (fblackmo) employee states that he was scrubbing on a slope when his feet slipped, employee tried to stop his fall causing the injury to his left hand. Supervisor: ronald canady
## 5722            12/18/2001 02:44 pm (fblackmo) the crew was in the process of installing pipe with backhoe but could not get the joints to close with the equipment. Therefore, a pry bar was used to close the joints. Employee was in the process of adjusting the end
## 5723                                                                                                     12/18/2001 03:11 pm (fblackmo) employee states that while working in the warehouse and while turning left his back started to hurt. Supervisor: terry l. Harris
## 5724           12/18/2001 03:30 pm (fblackmo) employee states that a piece of rope used to operate a drop hammer became embedded in the center of his right eye. It could not be removed by a q-tip or tissue. Once the doctor removed the object it left a scratch on e
## 5725                                                                                                  12/18/2001 03:58 pm (fblackmo) employee was lifting dead animal from roadside and loading in truck when he felt a sharp pain in left side. Supervisor; r. D. Davis
## 5726                              12/18/2001 04:22 pm (fblackmo) employee was putting sandbag on road closed barricades on state road 1300 when sand and other particles from the bags went up employees nose and eyes causing much discomfort. Supervisor: o. D. Marcer
## 5727          12/18/2001 04:52 pm (fblackmo) employee was standing behind a swb dump truck while dumping asphalt out to fill a drop off. The asphalt was rather cold and a large chunk came out of the body while it was being dumped and struck employee on the left sh
## 5728                                                                                12/18/2001 12:46 pm (fblackmo) employee was putting bolts in a road closing sign when the post came a lose hitting the employee in the face and on left ear. Supervisor: horace huff
## 5729                                 12/18/2002 07:30 am (fblackmo) employee states, snow plow on front of truck caught onto rail road tracks. The jerking motions caused employee to experience pain in his right shoulder and rib area. Supervisor: j. Mark leatherman
## 5730                                                                                                                12/18/2002 07:43 am (fblackmo) employee was cutting tree with chain saw when, tree swung around hitting employee in back. Supervisor: h. Southerland
## 5731                                                                                                                          12/18/2002 07:57 am (fblackmo) employee was typing data entry information when, a staple hit her in the left eye. Supervisor: brian hunter
## 5732                                                                                                                                          12/18/2002 08:39 am (fblackmo) employee was lifting sign rack when, felt pain in his right wrist. Supervisor: carlis smith
## 5733                                                                                                                 12/18/2002 08:52 am (fblackmo) employee states while retrieving equipment from bin, the top of the bin fell on his left hand. Supervisor: jim allen
## 5734                                                                                                                                     12/18/2002 12:06 pm (fblackmo) employee states while getting tool out of box, lid fell on his hand. Supervisor: j. T. Honeycutt
## 5735                                                                                       12/18/2002 12:16 pm (fblackmo) employee was removing seat from motor grader (equipment #948-6789) when, he felt pain in his shoulder and neck area. Supervisor: danny clapton
## 5736                                                                                                    12/18/2002 12:27 pm (fblackmo) employee was removing a plumbing fitting inside vault, using pipe wrench employee felt pain in his back. Supervisor: lee garrison
## 5737                                                                                                                                  12/18/2002 12:37 pm (fblackmo) employee states while moving materials to wood chipper, felt pain in his left shoulder. A. L. Smith
## 5738                                                                              12/18/2002 12:48 pm (fblackmo) employee was lifting forks form one backhoe to another when, the fork slipped catching his fingers between the bucket and fork. Supervisor: donald king
## 5739           12/18/2007 10:05 am (fblackmo) employee allege that an illness/injury occurred on/about 12/25/2005 due to his lungs being exposed to asphalt chemicals. The time, actual date, and location of the event is not known. Supervisor: gordy eurr 2/5/2008 09
## 5740                                                                                 12/18/2009 01:11 pm (fblackmo) employee was shoveling millin off the back of crew cab truck when, she hit a piece of milling causing pain to her lower back. Supervisor: gordy eure
## 5741             12/18/2009 11:32 am (bhenders) road oil employee was on loan to craven maintenance. Employee was driving a loaded tandem truck. While driving through some curves in the road, the load in his truck shifted causing the truck to lean. As the employee
## 5742                                                                                                12/19/2000 09:30 am employee was unloading hay from truck when the truck took off. This caused Mr. Hines to slip and fall on his left knee. Supervisor: clay p. Tyre
## 5743                                                                                         12/19/2000 09:36 am employee was mowing the grass on sr 1133; when he hit a hole on shoulder of road. Mr. Dail left hip was jarred causing pain. Supervisor: carroll thomas
## 5744                                                                                      12/19/2000 09:44 am employee came in contact with poison ivy plants while using chain saw on sr 1421 on 11/22/00. Mr. Weatherman has poison in both eyes. Supervisor: b. Boone
## 5745                                12/19/2000 09:49 am employee was removing chunks of frozen salt on top of spreader; when he lost his footing on the snow/ice. Mr. Warf caught himself on bar and pulled/strained muscles in his lower back. Supervisor: s. G. Foster
## 5746                12/19/2000 09:55 am employee slipped and fell when he stepped on a patch of ice near steps of trailer. His feet slipped out from under him landing flat on his back. He also hit his right elbow and jarred his neck and head. Supervisor: ray stone
## 5747                                                                                                       12/19/2000 10:04 am employee was taking off tailgate spreader; when the pin came out striking Mr. Tabron on his left cheek bone. Supervisor: charles e. Moore
## 5748                                            12/19/2000 10:10 am employee was pulling a heavy object up to top of scaffold with a rope; when he lost his hold on the rope. Mr. Mahaffey caught the rope causing pain in his lower back. Supervisor: eric allen schenz
## 5749                                                                          12/19/2000 10:14 am employee was throwing trash off back of flat bed dump truck; when his foot slipped causing him to fall and twist/sprain his right ankle. Supervisor: clyde h. Winstead
## 5750                            12/19/2000 11:19 am employee was driving past intersection and was hit by another vehicle on drivers side. The impact caused Mr. Pike to hit his head on the door. Mr. Pike also has pain in neck and shoulders. Supervisor: j. B. Dills
## 5751                                                                           12/19/2000 11:29 am employee states her injury has been progressive. Her hands started bothering her due to repetitive motion while working on keyboard computer. Supervisor: tim jackson
## 5752                                                                                                     12/19/2000 11:34 am employee was walking through work project and misstepped into a hole causing him to twist/sprain his left knee. Supervisor: michael biedell
## 5753            12/19/2001 04:02 pm (vsulliva) two large vehicles passed on road in opposite directions. Mirrors of the two vehicles struck, resulting in both mirrors being damaged. Driver of sov was injured by flying glass from the mirror hitting him in the face.
## 5754                                                                           12/19/2006 01:11 pm (fblackmo) employee was laying pipes when, h is finger got caught between the pipe and hook causing a fracture & cut to finger on left hand. Supervisor: sarah foster
## 5755          12/19/2006 01:22 pm (fblackmo) employee was placing tools inside the tool box of the pick up truck. His hand was on top of the truck bed beside the tool box. Another employee was placing a mail box and post in the back of truck when, the post fell on
## 5756                                                                                                    12/19/2006 01:30 pm (fblackmo) employee moved over to let another vehicle pass when, he ran in the ditch causing injury to his head. Supervisor: darrell wilkins
## 5757                                                   12/19/2006 01:41 pm (fblackmo) employee has worked for the highway division for five years repairing equipment. He is experiencing numbness in his hands and lost strength in his hands. Supervisor: harold white
## 5758                                                                                                                      12/19/2006 01:58 pm (fblackmo) employee was loading and unloading hvac equipment when, he felt pain in his lower back. Supervisor: jeff drayer
## 5759                           12/19/2006 02:23 pm (fblackmo) employee tripped on cables under his desk, hitting toe/foot on corner of desk. Employees toe is now red, swollen, and causes discomfort while walking and wearing closed shoes. Supervisor: tammy montanez
## 5760                                         12/19/2006 11:12 am (fblackmo) employee was operating a motor vehicle and was involved in a accident. Upon impact, employees knee struck the dashboard, breaking his kneecap in three places. Supervisor: w. Trent anderson
## 5761                                  12/19/2006 11:25 am (fblackmo) employee has worked for the division of highways for twenty plus years repairing equipment, he is experiencing numbness in his hands and has lost strength in his hands. Supervisor: mark y. Walker
## 5762                                                          12/19/2007 01:17 pm (blgay) employee was in the process of repairing a missing stop sign. Employee walked around behind truck and stepped on uneven pavement, turning right ankle. Supervisor: j. A. Ridge
## 5763                                                                                             12/19/2007 03:47 pm (blgay) employee was examing on a road test. Customer turned into the far lane into traffic, causing employee to tense up. Supervisor: anthony lowe
## 5764                                         12/19/2007 04:05 pm (fblackmo) employee was getting out of her car when her left foot (shoe heel) got caught in the storm drain beside her car. Employee felt pain in her left foot/ankle/and leg. Supervisor: norma hodges
## 5765         12/19/2007 04:15 pm (fblackmo) employee parked truck at the end of the day to go home. While exiting the cab he saw the radio was still on so he turned around on the step of the truck entered the cab, cut the radio off, and while stepping on the groun
## 5766                                                                                                                             12/19/2008 01:52 pm (fblackmo) employee was stepping down from truck when, she felt pain in her lower back area. Supervisor: hank bowie
## 5767                                                                                            12/19/2008 04:28 pm (fblackmo) employee was a passenger in car when, vehicle was struck on left side by private vehicle. Employee felt pain in neck area. Supervisor: jr
## 5768                                                                                      12/19/2008 12:12 pm (blgay) employee was existing inmate bus, when he slipped down steps injuring his left knee and ankle. Supervisor: mike walden 12/19/2008 12:17 pm (blgay)
## 5769                                                                                                                                 12/2/2004 01:37 pm (fblackmo) employee was getting into loader when, he caught his left hand in the door. Supervisor: john thomason
## 5770                                                                       12/2/2004 01:51 pm (fblackmo) employee was climbing out of tandem dump truck when, his foot slipped causing him to fall on the ground. Supervisor: c. L. Lucas 12/21/2004 06:41 am (kbarefoo)
## 5771                                                                                                                   12/2/2004 02:00 pm (fblackmo) employee was dismounting a steel wheel roller when, she hit her right elbow on the roller. Supervisor: darrell dean
## 5772                                                                                             12/2/2004 02:15 pm (fblackmo) employee was mowing on the right of way when, he hit a wash out causing tractor to fall forward, jerking employee. Supervisor: bob ramsey
## 5773                                                                                                       12/2/2004 03:23 pm (fblackmo) employee was stepping out of loader when, he stepped in a hole causing the injury to his left ankle. Supervisor: gerald brabble
## 5774                                                                                                                                                       12/2/2004 10:23 am (fblackmo) employee was bitten by a dog while eating on job site. Supervisor: a. S. Bailey
## 5775                                                                               12/2/2004 10:36 am (fblackmo) employee was using a pry bar to lift snow plow to attach brace when, he felt pain in his upper left arm and shoulder area. Supervisor: doug williams jr
## 5776                                                                                                                                   12/2/2004 11:02 am (fblackmo) employee was driving a tandem dump truck when, it flipped onto its side. Supervisor: w. L. Thompson
## 5777          12/2/2008 01:00 pm (blgay) employee was inspecting a new surface paving at industrial access road located off nc hwy 10 near newton nc, in catawba county. A truck empty a load into the paver, truck pulled forward a small amount of asphalt dropped and
## 5778                                                                                                                                  12/2/2008 04:04 pm (blgay) employee was working with patch crew and stepped into a hole and hurt back. Supervisor: shelia chandler
## 5779         12/2/2008 04:15 pm (blgay) employee was dragging brush and backpack spraying on an incline. At the time of the accident she was operating a power trimmer in a daylily bed on a slope. Employee stated that her back began to hurt at that time. Supervisor
## 5780                                                     12/2/2008 11:40 am (blgay) employee was putting out signs and one of the folding legs of the sign stand did not latch properly, causing it to fold up on employees left pinky finger. Supervisor: larry scruggs
## 5781                                  12/2/2009 02:10 pm (blgay) employee was putting asphalt packer onto patch pro packer slid off patch pro and ended up in the ditch. Employee tried to pull it out of the ditch and strained his upper back. Supervisor: david capps
## 5782                                                                                 12/20/1999 01:07 pm employee was walking to truck on unpaved parking area and stepped on loose gravel; resulting in a fall which twisted employee's left ankle. Sprained left ankle
## 5783                                     12/20/1999 01:24 pm pushing 4 foot long timber into bed of truck. Timber had split end that caught on rough truck bed. Timber rolled over and crushed finger against tailgate. Little finger of left hand cut stitches applied.
## 5784                                                                                                  12/20/1999 01:34 pm employee was walking back to his pickup parked in the edge of a field. It was raining and employee's footing slipped and sprained right ankle.
## 5785         12/20/1999 01:43 pm injured employee was feeding brush into a chipper. Another employee was cutting a tree. Injured employee began walking towards the falling tree. Other employees tried to warn injured employee, but he did not hear them. Tree fell st
## 5786                                                                         12/20/1999 02:38 pm employee was helping to cut a tree on secondary road construction project. Most debris was loaded by backhoe. A few small limbs were loaded by hand. Pain in lower back
## 5787           12/20/1999 02:55 pm slipped off of truck hub while removing broom from truck bed. Fell over guardrail hit box culvert and fell into creek on highway 801 south. He landed on face on a steep bank and had to be removed from the creek bed. Inmates ayers
## 5788                                     12/20/1999 03:08 pm employee was pushing against chain to adjust height of spreader to align up with hookup of truck during snow drill, employee felt burning sensation in back. Pulled muscle and punched nerve in lower back.
## 5789                                                                                                                                                 12/20/1999 03:15 pm employee was sawing board with circular saw. Wind was blowing and saw dust blew into right eye.
## 5790                                                                                                                     12/20/1999 12:41 pm employee was in a crew cab, with the window down, pan truck came by causing dust and dirt to fly into employee's right eye.
## 5791         12/20/1999 12:53 pm employee was in bed of sign truck unhooking post driver attachment from hydraulic boom and was preparing to hook up post puller attachment. As employee pressed button on the hand held control to raise boom, the boom dropped and hit
## 5792                                         12/20/2000 03:51 pm employee was climbing down off welder truck on his way to get chainsaw from warehouse on 12/6/00. His legs collapsed causing him to fall to the ground injuring his back area. Supervisor: d. W. Fowler
## 5793                                12/20/2000 03:57 pm employee was lifting one end of a 9' snow plow blade; when the bolts fell out causing the blade to drop. Mr. Vandiford has strain in his right lower back due to the fall of the blade. Supervisor: e. C. Thomas
## 5794                                                                                                                12/20/2000 04:06 pm employee was picking up pieces of lumber and throwing them onto bridge; when he strained his lower back. Supervisor: a. L. Clark
## 5795           12/20/2000 04:12 pm employee was enroute to accident scene on I-77 in mecklenburg county on 11/22/00. As he was slowing down, he was struck from behind by another vehicle. Mr. Bryant suffered bruises, a concussion and strains/sprains to his back are
## 5796         12/20/2001 02:36 pm (slee) employee was driving a backhoe when he decided to make a u-turn. Employee was going to turn his backhoe around in the road while waiting for a lane closure to be set up for a full depth patching operation. When he started to
## 5797                                                          12/20/2002 01:51 pm (fblackmo) employee was assisting equipment personnel in installing a battery in the motor grader. Employees elbow hit grill causing the injury to his head. Supervisor: r. E. Langley
## 5798                                                                                                                                         12/20/2002 02:03 pm (fblackmo) employee states while changing pipes, felt pain in his right shoulder. Supervisor: s. Kinner
## 5799                                                                                           12/20/2002 02:13 pm (fblackmo) employee was cutting trees when, the tree kicked back it hit him on his left leg. Supervisor: p. R. Draugh jr 10/16/2003 09:39 am (gwhite)
## 5800                                                                                                                                                                                 12/20/2002 09:43 am (fblackmo) carpal tunnel syndrome. Supervisor: eula m. Williams
## 5801                                                                                                         12/20/2002 10:20 am (fblackmo) employee states while retrieve anti-freeze from top shelf, something flew into his right eye. Supervisor: jonathan rinehardt
## 5802                                                                                                          12/20/2002 10:33 am (fblackmo) employee states his thumb on left hand was smashed between the wood chipper and tree branch. Supervisor: l. S. Carpenter jr
## 5803                                                                                                                          12/20/2002 10:44 am (fblackmo) employee was using a wrench when it slipped causing the injury to his thumb. Supervisor: l. S. Carpenter jr
## 5804                                                                                                        12/20/2002 11:05 am (fblackmo) employee was reaching to clean dirt off back of truck when the injury occurred to his left shoulder. Supervisor: grady hurley
## 5805                                                                                                     12/20/2002 12:46 pm (fblackmo) employee states while putting tree limbs into wood chipper, one of the limbs hit him on the nose. Supervisor; w. E. Mcclendon jr
## 5806                                                                    12/20/2002 12:58 pm (fblackmo) employee states while cutting a tree during the ice storm, one of the branches hit him in the head causing the injury. Supervisor: w. Herring (acting supervisor)
## 5807                                                                                                                           12/20/2005 09:54 am (fblackmo) employee was cleaning a ditch with shovel when, foreign matter got into his eyes. Supervisor: j. S. Roller
## 5808                                                                                                                       12/20/2005 11:19 am (fblackmo) employee was conducting surveys when, he was bitten by a tick on his right thigh area. Supervisor: mark taylor
## 5809                                                                                                                         12/20/2005 11:33 am (fblackmo) employee was stepping out of pickup when, he felt burning in his lower back area. Supervisor: patrick norman
## 5810         12/20/2006 10:32 am (fblackmo) employee was working on his knees cutting off of the bridge floor. While cutting steel he started feeling pain in his right knee. When he came back to work the next day, he reported his his knee was hurting. He went to t
## 5811                                              12/20/2006 11:14 am (fblackmo) employee was proceeding to leave the maintenance yard after dump truck was loaded. As he mounted the second step to enter the truck, he twisted his left knee. Supervisor: c. M. Conner
## 5812                                                                                                       12/20/2006 11:44 am (fblackmo) employee was exiting the ladies restroom when she slipped causing injury to her right ankle and hip. Supervisor: t. S. Collins
## 5813                             12/20/2006 12:05 pm (fblackmo) employee was measuring pipes when, he crossed over a fence he got his feet tangled in vines causing injury to his left shoulder and elbow. Supervisor: william l. Thompson 3/21/2007 07:56 am (lvaughan)
## 5814                                                                12/20/2007 07:30 am (blgay) employee was pulling hose off of tar kettle and tripped over a limb that was lying in a gully, causing a broken and dislocated right ankle. Supervisor: james winebarger
## 5815         12/20/2007 12:54 pm (blgay) employee was parked on the shoulder of the road and was getting into vehicle in a hurry to avoid getting hit by oncoming traffic. When employee closed door, the door hit his left thigh, causing his thigh to move to the righ
## 5816            12/21/1999 07:21 am employee was working on an old herbicide spray truck, converting the truck to a guard rail sprayer. Employee came in contact with herbicide residue that can and did cause a skin irritation and infection on both arms, midsection,
## 5817                  12/21/1999 09:03 am working with the platform truck finishing up and Mr. Mitchell was putting rag away inside panel of control box, and closed door. When he was walking away, he felt a sharp pain in his lower back between his shoulder blades.
## 5818                                                        12/21/1999 09:36 am Mr. Lanier pulled/twisted his right side of lower back while dismounting from vehicle on 11/30/99. He has pain in lower back and right hip area and thigh. Supervisor: michael g. Jarman
## 5819                              12/21/1999 09:45 am Mr. Douglas was driving on sr 1549 picking up litter and dead animals, when he failed to see a car coming in his direction. He pulled out in front of car receiving injuries to his head. Supervisor: r. T. Vestal
## 5820                                                                          12/21/1999 09:52 am Mr. Dixon was lifting/carrying equipment up and down steep hills on 12/15/99, when he pulled muscles in lower extremities. Supervisor: a. E. Moore 02/01/2000 01:29 pm
## 5821                                                                                                                    12/21/1999 10:01 am Ms. Edwards noticed a sharp pain in her right arm and wrist while using her computer on 12/15/99. Supervisor: j. Paul ingram
## 5822                                                                                                                          12/21/1999 10:07 am Mr. Narron has carpel tunnel syndrome caused by repetitive motion to his right hand/wrist. Supervisor: c. R. Whitfield
## 5823                                       12/21/1999 10:15 am Mr. Bennekin stepped on a nail hidden beneath thick grass and leaves on 12/15/99 while doing road work. The nail punctured his right boot pricking the skin of his foot. Supervisor: thomas p. Moorefield
## 5824                                                                                                            12/21/1999 10:42 am Mr. Leger strained his lower back while lifting a piece of steel (weighing appox. 100 pounds) on 12/14/99. Supervisor: r. H. Waldeck
## 5825                                                                  12/21/1999 10:59 am Mr. Laviner strained his lower and mid-back area while attempting to unload a portable asphalt compactor from pick-up truck on 11/29/99. Supervisor: william e. Mcclendon, jr.
## 5826                                                                           12/21/2000 09:05 am employee was pulling u-channel post by hand; when he strained his lower back, right leg and he has a compressed fracture of the 5th vertbrae. Supervisor: r. D. Isley
## 5827                                                     12/21/2000 09:21 am employee was tearing down a building on 12/8/00. While removing tension springs on the bay door; a tool slipped cutting the back of his right hand (18 stitches). Supervisor: jesse hensley
## 5828                                                          12/21/2000 09:31 am employee was cutting off a mud flap; when the utility knife exited the mud flap cutting two fingers (left index and ring) on his left hand requiring stitches. Supervisor: c. D. Cloud
## 5829                                                                                                               12/21/2000 09:41 am employee was stepping out of dump truck; when he stepped into a hole twisting/sprained his right ankle. Supervisor: terry j. Shaw
## 5830                      12/21/2000 09:45 am employee was assisting in emptying garbage cans into dumpster; when the contents of the can came out. Sawdust billowed out into a cloud of dust causing foreign material to lodge in both eyes. Supervisor: c. S. Overcash
## 5831                                                                                                                                12/21/2000 09:54 am employee was picking up large stones; when she strained muscles in her upper back area. Supervisor: tom burchell
## 5832                                                                                                       12/21/2000 10:01 am employee was walking behind guardrail; when he stepped on a board with nails in it. He punctured his right foot. Supervisor: s. G. Dillon
## 5833                     12/21/2001 07:44 am (fblackmo) employee was handling barrels of paint to ready paint truck for painting. The barrel came loose from the top hook and the barrel shifted pushing employee into ceiling support I-beam. Supervisor: steve clayton
## 5834                                                                              12/21/2001 08:45 am (fblackmo) employee was working on a beaver dam at a culvert on us74 when he was bitten by an insect on right ear and broke out in a rash. Supervisor: l. R. Brown
## 5835                    12/21/2001 11:45 am (fblackmo) employee was struck on the right thumb by a sign post while trying to free post that was caught between the bumper and the truck. Employee was attempting to straighten the sign post. Supervisor: charles reaves
## 5836                                                                                                                                            12/21/2004 01:03 pm (fblackmo) employee states he twisted his right knee while crossing fence. Supervisor: m. E. Plummer
## 5837                                                                            12/21/2004 02:42 pm (fblackmo) employee was holding the hood to keep it from hitting the snow plow frame. Employee turned his ankle on the hydraulic lift slide. Supervisor: steve smith
## 5838                                                                                 12/21/2004 02:59 pm (fblackmo) employee was tightening a bolt on the front end of a mower tractor, ratchet slipped causing pain to his left shoulder area. Supervisor: g. K. Dozier
## 5839                                                    12/21/2004 03:10 pm (fblackmo) employee was tightening the bolts on guardrail with a wrench. The wrench slipped causing employee to fall into the guardrail chipping his front tooth. Supervisor: roger pulcheon
## 5840                                                                                                                                                                      12/21/2004 04:24 pm (fblackmo) employee experienced pain in his knee. Supervisor: keith blazer
## 5841                                                                    12/21/2004 09:55 am (fblackmo) employee was stopped in traffic when, a private vehicle hit his truck in the rear. Employee experienced pain in his neck and shoulders. Supervisor: t. W. Simpson
## 5842                                                                                                               12/21/2004 10:07 am (fblackmo) employee was lifting a handheld bed of a dump truck when, he felt pain in his lower back. Supervisor: r. J. Hollifield
## 5843                                                                                                                         12/21/2004 10:17 am (fblackmo) employee was cleaning brush off fence when, he came into contact with poison ivy. Supervisor: william dodson
## 5844                                                                                                                                            12/21/2004 10:38 am (fblackmo) employee states he experienced pain in both wrists while keying. Supervisor: brenda crump
## 5845                                                                                                                          12/21/2004 10:51 am (fblackmo) employee was picking up a 5 gallon can of oil when, he felt pain in his lower back. Supervisor: gary wilson
## 5846                                                                                                                                   12/21/2004 11:03 am (fblackmo) employee was measuring silt fence when, stick went into his left eye. Supervisor: david poindexter
## 5847                                                                                                           12/21/2004 11:26 am (fblackmo) employee was cleaning out driveway pipe, throwing dirt on shoulder when, he felt pain in his back. Supervisor: r. G. Crews
## 5848                                                                                                             12/21/2004 11:36 am (fblackmo) employee was installing a driveway pipe when, ditch gave away causing his left knee to twist. Supervisor: patrick norman
## 5849                                                                                                                      12/21/2004 11:47 am (fblackmo) employee states while lifting rocks and cement bags he, felt pain in his naval area. Supervisor: emmitt bullman
## 5850                                                                                                                        12/21/2004 12:01 pm (fblackmo) employee was walking to another dump truck when, he slipped and fell on fuel hose. Supervisor: randy anderson
## 5851                                                                                                               12/21/2004 12:14 pm (fblackmo) employee was shifting vegetation while surveying when, he puncture his knuckles on left hand. Supervisor: m. Masihpour
## 5852                                                   12/21/2005 02:58 pm (fblackmo) employee was bending down to pick up something when, he felt pain in his left knee. Supervisor: victor buzard 12/21/2005 03:10 pm (fblackmo) can not pay any medical bills, see jw
## 5853         12/21/2007 12:53 pm (blgay) employee was finished bushing and was coming up bank on top of rocks. The vine that was grown over the rocks slipped out from under employees foot causing employee to lose footing and fell backward on rocks. Supervisor: tim
## 5854                                                                                                    12/21/2009 05:14 pm (fblackmo) employee was removing bolts from guard rail when, he went to stand up, he felt pain in his left knee area. Supervisor: tony cooke
## 5855                                                                                                                                12/21/2009 05:39 pm (fblackmo) employee was climbing down off ladder when, he felt pain in his left ankle. Supervisor: wendy fridley
## 5856          12/21/2010 04:32 pm (barnes) employee was running her snow and ice route. She stopped to check how much salt/mix she had left in the spreader. As she was climbing down the side of the truck bed, she extended her leg far as she could but was unable to
## 5857                                                                                       12/22/1999 12:17 pm Mr. Bell was cutting branches on 11/16/99, when a branch went inside of his glove cutting his left hand palm 1/2' below his thumb. Supervisor: sue kinner
## 5858                                                                                                           12/22/1999 12:36 pm Ms. Lawson was assisting the sign erector in unloading a 4' x 8' sign when she strained her lower back. Supervisor: thomas e. Johnson
## 5859                  12/22/2000 09:09 am employee was enroute to begin snow/ice operation; when a private vehicle slid out of control and hit his truck. Mr. Roach has neck pain (extent unknown) and was seen at sampson regional medical center. Supervisor: v. Smith
## 5860                                       12/22/2000 09:22 am employee was loosening band clamp with an air impact wrench on 12/15/00. He was holding the clamp when the bolt started vibrating causing the clamp to cut his left index finger. Supervisor: lewis baker
## 5861                                        12/22/2000 09:30 am employee was lifting latch on tractor trailer door to unlock it; when the latch swung out striking his lip. He has a laceration to his lip and chipped his front right tooth. Supervisor: kenny williams
## 5862                                                                                             12/22/2000 10:02 am employee was helping load the hydro seeder with 50 pound bags of fertilizer on 12/13/00. Mr. Calvert strained his left arm. Supervisor: m. S. Reese
## 5863                                                                                                                                                     12/22/2000 10:16 am employee complains of repetitive motion pain in right arm/shoulder. Supervisor: joyce evans
## 5864           12/22/2000 10:25 am employee was inspecting drainage inlets on roadway construction project on six forks road on 12/18/00. While attempting to cross the road he stepped into an oncoming vehicle. Mr. Baker was struck on his left side causing major in
## 5865                                                                                                                                                12/22/2000 11:25 am employee complains of repetitive motion pain in right and left hands. Supervisor: tola m. Bailey
## 5866                                                                                                                          12/22/2003 02:10 pm (fblackmo) employee was reaching over to get shovel when, he felt pain in his right shoulder. Supervisor: w. H. Monroe
## 5867                                                                                                                                 12/22/2003 02:20 pm (fblackmo) employee was lifting boxes in file room when, she felt pain in her back. Supervisor: lynette parrish
## 5868                                                                                                                                  12/22/2003 02:32 pm (fblackmo) employee was shoveling when, he was bitten on his left hand by a insect. Supervisor: charlie watson
## 5869                                                                                                 12/22/2003 02:42 pm (fblackmo) employee was installing an end on a tow way radio antenna cable when, he cut his index finger on left hand. Supervisor: david bowers
## 5870                                                                                                                          12/22/2003 02:51 pm (fblackmo) employee was blowing off deck when, foreign matter flew into his left eye. Supervisor: thomas foster bowser
## 5871                                                                                            12/22/2003 12:40 pm (fblackmo) employee was conducting a road test when the driver hit a embankment causing the injuries to her neck and back. Supervisor: becky huffman
## 5872                                                                                                                      12/22/2004 08:19 am (fblackmo) employee cut his left wrist with knife while cutting strings on bales of wheat straw. Supervisor: hardie tilett
## 5873                                                                                                                           12/22/2004 08:34 am (fblackmo) employee was laying and mixing cement and rocks when, he felt pain in his back. Supervisor: emmitt bullman
## 5874                                                                                  12/22/2004 08:53 am (fblackmo) employee was putting in gabions on state road 1200, guy ford road. The area was muddy and slick. Employee fell into a hole. Supervisor: m. B. Smith
## 5875                                                                                                                              12/22/2004 09:20 am (fblackmo) employee was performing weapons inspection when, he felt pain in his left shoulder. Supervisor: k. King
## 5876                                                                        12/22/2004 09:43 am (fblackmo) employee states his leg was caught between another employees legs while conducting training drills. Employee felt pain in his groin area. Supervisor: k. King
## 5877                     12/22/2005 08:18 am (fblackmo) employee was salting the road when, truck slid on ice and hit the embankment causing him to be thrown forward and sideways. Employee felt pain in his neck, back, and right side of face. Supervisor: d. E. Goss
## 5878                                  12/22/2005 08:48 am (fblackmo) employee was working on the turck dock recycling center lifting and rolling tires into trailer when, his right foot slipped in water causing the injury to his right ankle. Supervisor: keith smith
## 5879                                                                                 12/22/2005 09:48 am (fblackmo) employee was walking back into office when, she caught her foot on carpet causing her to fall on both knees on tile floor. Supervisor: beverly brown
## 5880                                                                                                   12/22/2005 10:38 am (fblackmo) employee was walking along a ditch line covered with leaves when, he stepped in a hole and twisted his ankle. Supervisor: al smith
## 5881         12/22/2008 11:20 am (blgay) employee was cutting a piece of plywood using left hand. The plywood pinched the saw blade causing the skill saw to kick back and the employee was unable to hold on to the saw. The saw landed on the employees right ring fin
## 5882         12/22/2008 11:28 am (blgay) employee was removing stop sign on shoulder to do work and was carrying it to side of ditch, when employee lost his footing and fell on stop sign, causing him to sprain right thumb and right leg contusion. Supervisor: sarah
## 5883         12/22/2008 11:38 am (blgay) employee was surveying climbing up a bank with stake bag in one hand, when he slipped and lost his footing, both feet flew out from under him. Employee landed on his right wrist, causing him to sprain his right wrist. Super
## 5884         12/22/2009 04:15 pm (blgay) employee was climbing through a tree, cutting it and it was dark and rainy. As employee stepped on a limb and lost his balance and it throwed his back. Employee was holding a chain saw, but jeff davis was with him and helpe
## 5885                                                                            12/22/2009 04:26 pm (blgay) employee was exiting n. Patterson street at dmv. It was raining very hard with high winds. Employee fell going down front steps. Supervisor: julia swicegood
## 5886                                                      12/22/2010 03:43 pm (fblackmo) employee was in town to take injured employee to doctor. While on lunch at chick-fil-a she slipped and fell causing injuries to both elbows and knees. Supervisor: cindy austin
## 5887                                                    12/22/2010 04:56 pm (fblackmo) employee was stepping over "do not enter" caution tape when, his leg got caught up in the tape causing him to fall. Employee felt pain in his left knee. Supervisor: cindy austin
## 5888          12/22/2010 05:27 pm (fblackmo) employee was assisting with loading the truck for the days work. He was picking up 50lbs of fertilizer. As hew was picking up the 7th bag with both hands, as he straightened up, he felt a jerk in his right hip joint. He
## 5889         12/22/2010 09:40 am (barnes) employee was removing tree from right of way. He and another employee was pushing a tree that had vines wrapped up in it. The tree broke loose and the employee did not get clear before the tree fell. The tree hit him on th
## 5890          12/22/2010 11:01 am (fblackmo) employee operating mulch blower. Truck driver stopped suddenly throwing employee onto roll back. Employee felt pain on right side (upper body) and his right arm. Employee did not seek medical attention until 12/16/2010.
## 5891                                       12/22/2010 11:46 am (fblackmo) employee was walking to the back of shop when he stepped on floor lift lid. The lid shifted, employee slipped in hole, and the lid top struck him in his groin area. Supervisor: wesley powell
## 5892         12/22/2010 11:59 am (fblackmo) employee lorenz was helping employee eason (pat) remove a tailgate from a swb truck. Employee pat turn to pass the tailgate so that pins can be removed the tailgate fell striking her on the back of the head. Employee exp
## 5893                                                                                                                               12/22/2010 12:11 pm (fblackmo) employee was installing tailgate when it slipped falling on his right hand. Supervisor: james campbell
## 5894                                                                           12/22/2010 12:24 pm (fblackmo) employee was helping disable motorist when he slipped on wet roadway (oil & antifreeze). Employee felt discomfort in his neck area. Supervisor: k. E. King
## 5895                                                                                            12/22/2010 12:37 pm (fblackmo) employee was cleaning the ledge of the tailgate with a shovel when the shovel slipped striking his right hand. Supervisor: b. N. Braswell
## 5896                                                                                                                        12/22/2010 12:56 pm (fblackmo) employee was retrieving barricade from trailer when he felt pain in his upper left arm. Supervisor: jim evans
## 5897                                               12/23/2010 10:19 am (barnes) employee was cleaning asphalt maintainer and the auger caught his pant leg and then caught his right foot in the equipment. Employee injured his right foot. Supervisor: warren anderson
## 5898                                                                              12/23/2010 11:02 am (barnes) employee was giving a road test, and client turned too fast to the right and hit a row of brick pillars. Employee hurt left hand. Supervisor: dean almond
## 5899                                      12/23/2010 11:43 am (barnes) employee was on her way to pick up keys from property owner when she was rear ended by private vehicle. Employee injured her neck and back. Also complained of headaches. Supervisor: lois little
## 5900                                                                                                                  12/28/1999 10:45 am Mr. Sessoms slipped on 12/14/99 while cutting a canvas on a steep slope (35 degrees) injuring his back. Supervisor: d. T. Moss
## 5901                                                                                                                    12/28/1999 10:53 am Mr. Main injured his lower back and right leg while bending down to place a computer on the floor. Supervisor: randy k. Pace
## 5902          12/28/1999 11:00 am Mr. Harrison was sitting on a running board of flatbed truck on 12/07/99, when he fainted and fell forward onto a rock surface of a parking lot. The left side of his forehead and left ring finger was scraped and bruised. Superviso
## 5903                                                                                 12/28/1999 11:06 am Ms. Sovereign was getting into a truck when her foot slipped and fell. She sprained on left ankle at time of the incident on 12/16/99. Supervisor: e. W. Spivey
## 5904                                                                                                                                      12/28/2005 02:18 pm (fblackmo) employee was working at the sawmill when, dust got into his eyes. Supervisor: reuben e. Blakley
## 5905                                                12/28/2005 02:27 pm (fblackmo) employee was unloading driving equipment when, he forgot to put the man lift in front of the wheels. Employee felt pain in his rib cage and right thigh area. Supervisor: kathy lewis
## 5906         12/28/2005 02:40 pm (fblackmo) employee was attempting to walk down a fill section to inspect a cross line pipe culvert. Employee was walking through some brush when, he stepped off of the fill slope. The sudden drop caused the employee to pull a musc
## 5907                                                  12/28/2005 02:53 pm (fblackmo) employee was walking into building when, he slipped and fell on ice causing the injury to his right elbow, back of head, lower back, and right hip area. Supervisor: tola m. Bailey
## 5908       12/28/2005 03:05 pm (fblackmo) employee was driving around curve when, the rear end of the truck went into a spin and ended up in the ditch turned over on drivers side. Employee felt pain in his lower back and left groin area. Supervisor: r. D. Mcintyre
## 5909                                                                                                                           12/28/2005 03:13 pm (fblackmo) employee was unloading signs and stepped on a piece of wood and fell on his wrist. Supervisor: w. G. Wrenn
## 5910                                                                                      12/28/2005 04:19 pm (fblackmo) employee was prying with a crowbar in order to remove a section of joist under the bridge when, he strain his shoulder. Supervisor: j. L. Cheek
## 5911          12/28/2010 01:24 pm (barnes) employee was carrying a 10 lb. Drop hammer. Due to the ground being frozen, his feet sipped out from under him. When employee fell down, he was struck on the top of his head by the drop hammer. Employee injury consisted o
## 5912            12/28/2010 01:52 pm (barnes) employee was sitting in her seat in her cubicle, when a guy installing security cameras, moved the tile in the ceiling above her, causing wires to fall and hit her in the face. Employee injured right side of face. Super
## 5913         12/28/2010 03:12 pm (barnes) employee was putting signs together at the rear of his sign truck. He was parked next to a sidewalk with curbing. He stepped backwards off the curb pulling something in his lower back. Employee injured lower back. Doctor t
## 5914                                        12/28/2010 12:04 pm (barnes) employee was walking to building from vehicle. Before reaching the sidewalk, he stepped on a patch of ice and fell to the pavement. Employee injured his right ankle. Supervisor: r. David beal
## 5915            12/28/2010 12:56 pm (barnes) employee was walking on sidewalk to his assigned vehicle. Employee slipped on ice and fell. Employee failed to notice the ice in order to take proper action to avoid falling. Employee stated that "he saw stars" employee
## 5916                                                                                                       12/29/1999 08:52 am Mr. Hunsucker was checking grade and metallic particles on 12/14/99, when foreign object got in right eye. Supervisor john r. G. Olinger.
## 5917            12/29/1999 09:08 am Mr. Chavis was performing inspection duties when a private owned vehicle tire blew-out on I-95. The car struck a temporary concrete barrier, causing debris from the impact to cut the upper left thigh of Mr. Chavis. Supervisor: l
## 5918                                                        12/29/1999 09:14 am Ms. Rose was picking up glass on I-40 on 12/16/99, when a piece of glass punctured her right hand. Ms. Rose was wearing gloves at the time of incident. Supervisor: b. J. Berryhill, jr.
## 5919                                                                 12/29/1999 12:12 pm Mr. Moree was unhooking water pump from the back of a truck, when the pump fell and twisted away, causing the employee to feel pain in his lower back. Supervisor: wayne knight
## 5920                                                       12/29/2000 08:56 am employee was climbing down off truck bed; when his foot slipped causing him to catch himself with his right arm. Mr. Dement has a contusion of the right elbow. Supervisor: j. A. Hobgood
## 5921           12/29/2000 09:02 am officer jonathan cabe was attempting to stop traffic on I-40 where he came upon an accident. Officer cabe got back in his vehicle to obtain assistance from highway patrol; when another motorist struck his vehicle from behind. Off
## 5922                                                                                                      12/29/2000 11:46 am employee was loading pine straw on flatbed truck; when he bent over to pick up bale he strained his lower back. Supervisor: kenny williams
## 5923           12/29/2000 11:50 am employee was trying to remove a rock that was stuck between rotor and brake caliper. He was turning the rotor with his right hand and holding a flash light with his left. His right hand was mashed and index finger was cut between
## 5924                                                                                                12/29/2000 11:56 am employee was unhooking spreader; when he pulled the chain from the top rail it came back hitting him in the head. Supervisor: j. Mark leatherman
## 5925                         12/29/2000 12:08 pm employee was clearing the right of way on sr 1333 on 12/12/00. Employee was felling a tree; when the tree fell on another tree causing limb to sprang back striking employee in his left eye. Supervisor: r. D. Holland
## 5926                                               12/29/2000 12:13 pm employee was sitting on bench in assembly room on 12/21/00. Mrs. Bowen slid over to make room for someone else; when a large splinter stuck in her left hip area. Supervisor: l. S. Carpenter, jr
## 5927                                                                                             12/29/2004 10:22 am (fblackmo) employee states that due to continuous use of hand held power tools he, experience pain in both hands and wrists. Supervisor: wayne king
## 5928                                                                                                         12/29/2004 10:51 am (fblackmo) employee was stepping out of truck when, she slipped and fell causing the injury to her right ankle. Supervisor: chuck sharp
## 5929                                                                                                                                12/29/2004 11:04 am (fblackmo) employee was stuck by private vehicle causing the injury to his lower back. Supervisor: ronald canady
## 5930                                                                              12/29/2004 11:16 am (fblackmo) employee was stopped at traffic light when, he was struck from behind. Employee experienced no injury stated on form 19 line 12. Supervisor: b. W. Drye
## 5931                                                                        12/29/2005 05:12 pm (fblackmo) employee was climbing embankment to check for erosion when, he slipped and fell causing the injury to his right hand and shoulder. Supervisor: l. H. Hathcock
## 5932                                                                               12/29/2006 01:34 pm (fblackmo) employee was holding onto the spreader when, he stepped down onto tire his foot slipped causing injury to his right shoulder. Supervisor: jack r. Fone
## 5933                                                                                                                                   12/29/2006 01:43 pm (fblackmo) employee lost footing on embankment and fell twisting his right ankle. Supervisor: jamie r. Wilson
## 5934                                                                                                       12/29/2006 02:00 pm (fblackmo) employee slipped on rain water that was tracked in from outside causing injury to buttocks & left leg. Supervisor: ken cassidy
## 5935                                                             12/29/2006 11:34 am (fblackmo) employee experienced pain in left wrist and arm when a private vehicle struck front left wheel of dump truck while turning left into driveway. Supervisor: j. T. Wiggins
## 5936                                                12/29/2006 11:53 am (fblackmo) employee was attempting to control a grass fire on the shoulder of I-40 until emergency personnel arrived. In doing so employee felt pain in his lower back. Supervisor: john finnell
## 5937                                                      12/29/2009 10:24 am (fblackmo) employee was welding a piece of flat bar when it started to fall off the table. Employee reached to catch it causing the injury to his lower back. Supervisor: marshall coleman
## 5938                                                                                                                    12/29/2009 10:38 am (fblackmo) employee was pulling on tail gate when, he mashed his center finger on his left hand. Supervisor: darrell wilkins
## 5939                                                             12/29/2009 11:04 am (fblackmo) employee was driving a tractor trailer when the right front tire blew out causing him to hit a guardrail. Employee had a bump on his forehead. Supervisor: william stone
## 5940                                                                                  12/29/2009 11:54 am (blgay) employee was traveling to the mitchell county equipment shop, when private vehicle pulled out into path of state vehicle. Supervisor: rick lichtenhahn
## 5941                                                                   12/29/2009 12:10 pm (blgay) employee was removing snow and lost control of truck, rear end slid around, causing plow to hit side of ditch and turn truck over on its side. Supervisor: joel riley
## 5942                                                                                         12/3/2008 02:31 pm (blgay) employee was cutting right of way when he became exposed to poison oak on both arms, legs, stomach, back and groin area. Supervisor: adam biddix
## 5943         12/3/2010 11:27 am (barnes) employee was observing paving operations on city street col-de-sac. He attempted to move out of oncoming trucks way, but boot was firmly stuck to the tack coat that had been applied to road. As he turned, he twisted his rig
## 5944          12/3/2010 12:20 pm (barnes) employee was working with another coworker setting a frame into catch basin. Prior to frame being secure, the coworker let it go and it caused the frame to pinch two of the employee's fingers. Employee injured his right ha
## 5945                                                                                         12/30/2004 10:51 am (fblackmo) employee twisted his left knee while trying remove a saw that was stuck in a tree. Supervisor: k. L. Anderson 01/03/2005 10:47 am (kbarefoo)
## 5946                                                                  12/30/2008 02:26 pm (blgay) employee was giving a road test. Customer gave a right turn signal, turned right and was rear ended by another car, causing a lumbar sprain. Supervisor: theodore gray
## 5947         12/30/2008 02:57 pm (blgay) employee was removing tailgate from truck with help of 2nd employee. Employee was on the ground hooking chain to tailgate and 2nd employee was unhooking pins from tailgate, when 2nd employee removed pins, chains were not ho
## 5948         12/30/2009 02:50 pm (fblackmo) employee was traveling west toward pembroke in the middle of a heavy rain storm. Employee was coming out of a curve when the rear end of the vehicle hydrophane. Employee tired to correct the vehicle, crossed center lane,
## 5949                                                                                                                 12/30/2009 03:08 pm (fblackmo) employees right hand was injured while loading an asphalt plate tamp onto a flatbed truck. Supervisor: doug williams
## 5950                                                                                  12/30/2009 03:20 pm (fblackmo) employee was tightening a binder on lowboy when, he lost his foot due to snow and ice causing injury to his right shoulder. Supervisor: h. A. Moore
## 5951                                                                                                                 12/30/2009 03:30 pm (fblackmo) employee was replacing sections of a damaged guardrail when, he felt pain in his lower back. Supervisor: w. T. Mintz
## 5952                                                                                                                  12/30/2009 04:14 pm (fblackmo) employee was cutting a piece of rope when, the knife slipped cutting his left index finger. Supervisor: norris reed
## 5953                                                       12/31/2001 02:16 pm (fblackmo) employee was working in survey party taking back shots on bridge project located on sloans mill road when he came into contact with poison oak. Supervisor: m. E. Stafford, pe
## 5954           12/31/2001 02:40 pm (fblackmo) employee was heading south on 111 when he came across a gallon jug in the road. Employee went to see the name of the chemical in the gallon jug. Employee immediately began to develop itching to the face, legs and arms.
## 5955                                                                       12/31/2001 02:55 pm (fblackmo) employee stopped to investigate a discarded jug and upon reading label and leaving employee started to itching on face, legs and arms. Supervisor: r. W. Lewis
## 5956                                                       12/31/2001 03:06 pm (fblackmo) employee was doing a road test she was checking the vehicles brake lights and when she stepped back she lost her footing and fell to the pavement. Supervisor: julia b. Harris
## 5957                                                                                      12/31/2002 03:09 pm (fblackmo) employee was assisting other employees with lower of a tailgate after completion, felt pain in his lower back area. Supervisor: d. W. Perkinson
## 5958                                                                                                                                12/31/2002 03:42 pm (fblackmo) employee states while spraying tack straw on roadway. Felt pain in his back. Supervisor: j. D. Fuller
## 5959                                                                          12/31/2002 03:55 pm (fblackmo) employee was hauling trees when one of the trees hit him on the shoulder knocking him to the ground. Supervisor: m. H. Stegall 09/09/2003 08:19 am (gwhite)
## 5960                                                                                         12/31/2002 04:08 pm (fblackmo) employee was moving debris from ice storm when, log rolled onto left leg resulting in puncture to calf on left leg. Supervisor: greg caudill
## 5961                                           12/31/2002 08:46 am (fblackmo) employee was helping cleaning up trees due to ice storm on us 64 when, he stepped on a limb. Employee experienced pain in his back due to mis-step on limb branch. Supervisor: bobby lewis
## 5962                                                                                                                          12/31/2002 09:06 am (fblackmo) employee was bending to loosen pipe fitting when, felt pain in his lower back. Supervisor: c. H. Bennett jr
## 5963                                                                                 12/31/2002 09:14 am (fblackmo) another employee was cutting a pipe with a cut off saw. Employee walked by and a piece of the metal flew into his right eye. Supervisor: w. H. Lynch
## 5964                                                                                                                     12/31/2008 02:04 pm (fblackmo) employee was participating in oc spray training when pepper spray went in her right eye. Supervisor: barry cross
## 5965                                            12/31/2008 02:16 pm (fblackmo) employee was cutting sapling around road signs with a bush axe. As he struck the sapling with the bush axe, the sapling sprung up hitting him in his right eye. Supervisor: a. C. Coghill
## 5966                                                                                                                12/31/2009 11:36 am (fblackmo) employee states the injury occurred while running back hoe. Employee felt pain in both hands. Supervisor: a. B. Davis
## 5967                                                                        12/4/2006 02:38 pm (fblackmo) employee was climbing on back of pickup, he was not able to make it all the way up, he came down causing injury to his right knee/leg. Supervisor: r. A. Baker
## 5968                                                                                                   12/4/2006 02:48 pm (fblackmo) employee was assisting in the removal of shrubby & vine debris when, she came into contact with poison ivy. Supervisor: r. J. Brown
## 5969         12/4/2006 10:10 am (fblackmo) employee was stopped at intersection when, she was struck from behind by another pickup truck which pushed her vehicle into the rear of the vehicle in front of her. Employee felt pain in her neck and right hip area. Super
## 5970         12/4/2006 10:27 am (fblackmo) employee was removing fittings from a transmission valve body, he was bent over at the waist, he was putting pressure on the fitting with the assistance of another co-worker, as he straighten up, he felt pain in his chest
## 5971                                              12/4/2006 11:41 am (fblackmo) employee was attempting to remove broken post from asphalt with pry bar (post was too short for post puller). Bar slipped causing pain to left elbow and forearm. Supervisor: tim foster
## 5972                                                             12/4/2006 11:56 am (fblackmo) employee stopped to help a truck driver on side of road when, he stepped in a man hole and fell in causing injury to face, right knee, and leg. Supervisor: sean epperson
## 5973         12/4/2006 12:13 pm (fblackmo) employee were chasing a deer across 343 north, as the dogs were crossing, bryan lightly tapped the brakes to warn the driver behind him, he heard the air alarm come on. He down shifted and hit the brakes two more times wh
## 5974          12/4/2006 12:24 pm (fblackmo) employee was helping the crew load the broom tractor while chaining the tractor down, employee grabbed the chain out from around the jack handle, employees right thumb got caught between the tongue and chain. Supervisor:
## 5975                                                                                                  12/4/2006 12:52 pm (fblackmo) employee was at the loading ramp, vehicle crossed the ramp, causing ramp to come down on employees foot. Supervisor: hal scarborough
## 5976                                                                                                                           12/4/2009 05:25 pm (fblackmo) employee injury his right leg when he stepped in a hole while serving a warrant. Supervisor: r. E. Flaherty
## 5977                                                                                            12/6/2004 08:52 am (fblackmo) employee was working with another employee passing sheets of plywood when, his right index finger was punctured. Supervisor: j. Ronald lee
## 5978                                                             12/6/2005 02:29 pm (fblackmo) employee states that this is a reoccurence of carpal tunnel symptoms brought on by continuous use of crutches after fall occurred on 12/23/04. Supervisor: gary m. Wilson
## 5979                                                                    12/6/2005 09:15 am (fblackmo) employee was getting out of a dump truck and started walking to another truck to look for some hand tools when, felt pain in his neck. Supervisor: charles f. Vick
## 5980                                                   12/6/2005 09:37 am (fblackmo) employee was raising the hood of a school bus for demonstration of the pre-trip inspection when, she felt pain in her right & left shoulder, arm, and hands supervisor: don johnson
## 5981                                                                                                                                              12/6/2005 10:04 am (fblackmo) employee was exiting backhoe when, he felt pain in left elbow. Supervisor: bobby leonard
## 5982                                                 12/6/2005 10:52 am (fblackmo) employee was performing routine cleaning in the engine room, he wiped down white works and bent his knees when, he began to stand up he felt pain in his back. Supervisor: t. L. Gray
## 5983                                                                                                                                 12/6/2005 11:05 am (fblackmo) employee was unloading barrels with cart when, he felt pain in his back. Supervisor: franklin bullock
## 5984                                                                                                                        12/6/2005 11:18 am (fblackmo) employee was trimming trees with pole saw when, debris from tree got into his eyes. Supervisor: patrick norman
## 5985                                                                           12/6/2005 11:30 am (fblackmo) employee was in the median of us 64 taking field shots when, he stepped into a hole causing the injury to his right ankle. Supervisor: jennifer brandenburg
## 5986                                                                                       12/6/2005 11:44 am (fblackmo) employee was helping to unload a wood slab when, he bent over to pick up the slab, the slab hit him in the mouth. Supervisor: reuben e. Blakley
## 5987                                                                                                     12/6/2005 11:55 am (fblackmo) employee was fueling up truck when, a leak developed causing burns to his right index and ring finger. Supervisor: a. E. Griffith
## 5988                                                                                                                         12/6/2005 12:07 pm (fblackmo) employee was winding down trailer stand when, he felt pain in his left shoulder. Supervisor: henry sturdivant
## 5989                                         12/6/2005 12:18 pm (fblackmo) employee was hooking asphalt edgar up to the small dump truck and didn't move his finger in time. Employee mashed his right thumb between iron brace and tailgate. Supervisor: kenneth horton
## 5990                                                                                        12/6/2005 12:30 pm (fblackmo) employee was pulling on barricade when, the rope slipped causing him to fall backwards striking his leg on a rock. Supervisor: donald griffith
## 5991                                                              12/6/2007 01:36 pm (blgay) employee was dumping load of material at dump site. Load got hung and employee had to pull material out of truck, causing contact with poison oak. Supervisor: j. F ruppard
## 5992                                                                                                                                                   12/6/2007 01:56 pm (blgay) employee was moving oxygen tank, when he injured his stomach. Supervisor: ken anderson
## 5993                                                               12/6/2007 02:09 pm (blgay) employee was helping crew members unload a sled off of trailer when sled got stuck. Employee was pulling when he felt a miscle pull in his back. Supervisor: t. W. Edwards
## 5994                          12/6/2007 02:23 pm (blgay) employee was cutting line and moving under old cedar trees in woods, brush and old logs. Tree brush and old sticks went down his shirt off cedar trees. Supervisor: andrew murphy 3/13/2008 12:30 pm (sjerniga)
## 5995                                                                                                       12/6/2007 02:35 pm (blgay) employee was repositioning I beam and a piece of metal fell and mashed tip of middle finger of right hand. Supervisor: david moore
## 5996                                                                                     12/6/2007 02:46 pm (blgay) employee was working under dump truck. When getting up he hit his head under edge of dump bed, cutting the top of his head. Supervisor: james conner
## 5997                                             12/6/2007 02:57 pm (blgay) employee was working on asphalt paver. It had a pile of asphalt beside it. Employee was standing on pile when it shifted under his foot and injured his right knee. Supervisor: james conner
## 5998                                                                                                                    12/6/2007 03:06 pm (blgay) employee was mowing and was bitten by a bug or insect, causing rash on right arm and back. Supervisor: greg mccracken
## 5999         12/6/2007 03:21 pm (blgay) employee was unloading a roller off a tag along trailer when the plywood decking gave way. The roller slipped from the trailer, overturned and threw employee to the ground, bruising his right side of torso. Supervisor: w. R.
## 6000                                                            12/6/2007 03:30 pm (blgay) employee tripped on vines and briars on backside of ditch and fell striking his head on the back bucket of the backhoe, cutting the top of his head. Supervisor: ronald grier
## 6001                         12/6/2010 11:55 am (barnes) employee was looking in the warehouse to see if there were any safety vests. Upon closing the door, the wind caused the door to close on his hand. Employee injured his left hand. Supervisor: nanette fogleman
## 6002                                                                                                                   12/7/2004 08:44 am (fblackmo) employee states while shoveling out a culvert due to flood he, felt pain in his lower back. Supervisor: tom huskins
## 6003         12/7/2004 09:06 am (fblackmo) employee was going to clean the lee boy paver. The seat was in the auger bin. Employee reached down to get the seat out, it was lodged in the bin. Employee was pulling against the seat when, he felt pain in his left groin
## 6004                                           12/7/2004 09:22 am (fblackmo) employee was moving boards off of trailer so he could turn it into shop for service when, he stepped off trailer and landed wrong causing pain to his lower back. Supervisor: don carpenter
## 6005                                                                                                                             12/7/2004 09:32 am (fblackmo) employee was pushing asphalt with rake when, he felt pain in his chest area. Supervisor: r. L. Warlick jr
## 6006                                                          12/7/2004 09:46 am (fblackmo) employee was traveling southbound in his state vehicle. Employee stopped for traffic jam when, his vehicle was hit in the rear by another vehicle. Supervisor: t. S. Collins
## 6007                                                                                                                                   12/7/2004 10:04 am (fblackmo) employee was unloading timber when, a splinter punctured his stomach area. Supervisor: earl d. Bell
## 6008                                                                                                         12/7/2004 10:14 am (fblackmo) employee was helping to set gabion basket when, he stepped on a rod that punctured his right foot. Supervisor: arthur hensley
## 6009                                                                                                     12/7/2004 10:56 am (fblackmo) employee was picking up steel plate to move outside of shop when, the plate fell striking his right foot. Supervisor: b. E. White
## 6010                                                                                           12/7/2004 11:12 am (fblackmo) employee was checking clients documents when, client struck employee with a closed right fist on his left ear area. Supervisor: linda moose
## 6011                                                                    12/7/2005 03:51 pm (blgay) employee was helping another employee remove brake drums from a tamdon truck, when he pulled drum off and turned to sit it down pulled back. Supervisor: dayton lynch
## 6012                                                                                                              12/7/2005 04:18 pm (blgay) employee was coming in the back door, fell and hit head, back and right side on a file cabinet. Supervisor: joan j. Holland
## 6013                                                                            12/7/2005 04:32 pm (blgay) employee was cutting tree on sr 1210 hoover road when the chain saw became caught in the tree and kicked back causing wrist to jam. Supervisor: robert ramsey
## 6014                                                       12/7/2005 04:42 pm (blgay) employee was removing tailgate latch pin with a chisel and hammer. After hitting pin the hammer glanced off and hit right thumb against the tailgate body. Supervisor: lewis baker
## 6015                                                                                                             12/7/2005 04:52 pm (blgay) employee was attempting to step down from trailer, tripped and fell landing on his right shoulder. Supervisor: charles jones
## 6016          12/7/2007 01:01 pm (blgay) employee was compacting dirt material to rebuild shoulder section. Material was dry and hard to achieve density. Material was statically rolled and when roller was switched to vibratory, materials shifted, causing roller to
## 6017                                                                                 12/7/2007 01:17 pm (blgay) employee was bending over to pick up a silt fence post and felt a sharp pain. Pain worsened and employee sought medical attention. Supervisor: tony east
## 6018        12/7/2007 01:29 pm (blgay) employee went to the hendersonville shop to get a 11r22. 5 truck tire. Employee loaded tire without assistance. Employee reported to his supervisor the next day that he had strained his back loading the tire. Supervisor: bobb
## 6019                                                                     12/7/2007 01:48 pm (blgay) employee felt a pain in his back after he dismounted a dump truck. The employee had helped lift a heavy piece of equipment earlier in the day. Supervisor: sg dillon
## 6020                                                                                                 12/7/2007 02:03 pm (blgay) employee was conducting road test and while backing up, driver gunned the gas to floor and hit 2 parked cars. Supervisor: lorrie sineath
## 6021                      12/7/2007 02:16 pm (blgay) employee was driving an imap truck on interstate 85 business, traffic was slowing due to congestion, pov struck imap truck from behind. Driver of pov was cited for a moving violation. Supervisor: sam whittington
## 6022                                                                      12/7/2007 12:51 pm (blgay) employee was cutting stumps on slope sr 1432, when chain saw kicked back striking leg and cutting right leg that required medical attention. Supervisor: joel riley
## 6023         12/7/2010 06:32 pm (barnes) employee was loading a spreader. When he unhooked the chain from the spreader he used it to pull himself up. The chain came unhooked from the top of the beam falling and hitting him in the head. He went to urgent care and r
## 6024         12/7/2010 11:52 am (fblackmo) employee was helping nail down metal roof on top of storage facility when, he got to close to the edge and slipped off. Employee fell approximately ten feet to the ground causing injury to his right ankle. Supervisor: mic
## 6025                                                                          12/8/2004 08:59 am (fblackmo) employee was inspecting a bridge concrete pouring when, he stepped onto uneven asphalt roadway and fell down and twisted right ankle. Supervisor: ron graham
## 6026                                                                                           12/8/2004 09:20 am (fblackmo) employee was laying on tracks of crane removing bolts when he got up off the track he, felt pain in his back. Supervisor: h. Mason thompson
## 6027                                                                                                              12/8/2004 09:34 am (fblackmo) employee was putting up the warning that goes with the air compressor when, he burnt his arm on the hot end of the ward.
## 6028                                                                                                12/8/2005 09:38 am (fblackmo) employee was getting out of vehicle at maintenance shope when, the wind blew foreign matter into his eyes. Supervisor: maurice e. Ring
## 6029                                                                     12/8/2005 09:52 am (fblackmo) employee was walking on rip rap under bridge to do an inspection when, he tripped over a rock causing the injury to his right shoulder. Supervisor: dan holderman
## 6030         12/8/2008 02:32 pm (blgay) employee was in the crew cab dump truck on nc 73 east with left turn signal on and waiting for traffic to clear in order to make a left turn on to hahn road. A pick up truck that was hauling a car on a trailer struck the cre
## 6031         12/8/2008 02:50 pm (blgay) employee was in the crew cab dump truck on nc 73 east with left turn signal on and waiting for traffic to clear in order to make a left turn on to hahn road. A pick up truck that was hauling a car on a trailer struck the cre
## 6032                                                                                          12/8/2009 03:37 pm (blgay) employee was entering dmv headquarters and slipped on wet floor, injury his right ankle. Supervisor: julia swicegood 12/8/2009 04:14 pm (blgay)
## 6033                                                                                     12/8/2010 09:56 am (barnes) employee was working on shoulder machine lifting flap and felt his right shoulder pop. Employee injured his right shoulder. Supervisor: mike walden
## 6034                                                                                                                       12/9/2004 03:12 pm (fblackmo) employee was exiting flatbed truck without using handrail when, he twisted left knee. Supervisor: I. H. Mccombs
## 6035                                                                                                     12/9/2004 03:22 pm (fblackmo) employee was inspecting patching operations when, he stepped on fire ant hill causing a allergic reaction. Supervisor: ron graham
## 6036                                                                                                                             12/9/2004 03:38 pm (fblackmo) employee was lifting hood on dump truck when, he felt pain in his lower back. Supervisor: james f. Bishop
## 6037                                                                                                                                    12/9/2004 03:46 pm (fblackmo) employee was clearing brush when, he came into contact with poison ivy. Supervisor: william dodson
## 6038                                                                                                                                        12/9/2004 03:56 pm (fblackmo) employee was closing tailgate on truck when, he felt pain in his back. Supervisor: r. G. Crews
## 6039                                                                                                                                    12/9/2004 04:09 pm (fblackmo) employee was clearing brush when, he came into contact with poison ivy. Supervisor: william dodson
## 6040                                                                                                                    12/9/2004 04:19 pm (fblackmo) employee was pulling bag of fertilizer off back of truck when, he felt pain in his back. Supervisor: richard ieard
## 6041                                                                                                           12/9/2004 04:28 pm (fblackmo) employee states while standing on ladder reaching around to work on duck he, felt pain in his back. Supervisor: jeff dreyer
## 6042         12/9/2005 02:40 pm (blgay) employee was helping another employee unload 24" aluminum pipe from trailer. Pipe slipped out of other employees hand and hit the roadway surface, which caused it to bounce up and strike employees right hand, which was locat
## 6043                                                                                      12/9/2005 02:55 pm (blgay) employee was conducting pretrip inspection on a cdl vehicle, slipped on gumball in parking lot and sprained right ankle. Supervisor: lorrie sineath
## 6044         12/9/2005 03:11 pm (blgay) employee was working as a deckhand and in putting mooring lines on cleat he mentioned he felt something in his groin area. When asked if employee was ok he said there didn't seem to be a problem and he would continue to work
## 6045                                                                                                         12/9/2008 02:15 pm (fblackmo) employee was reaching up to close bed cover on pick up when, he felt pain in his lower back area. Supervisor: archie r. Wells
## 6046                                                                                                                             12/9/2008 02:36 pm (fblackmo) employee was getting up out of desk chair when, he felt pain in right knee area. Supervisor: w. I. Watson
## 6047                           12/9/2008 02:50 pm (fblackmo) employee was transporting inmates from newport to onslow county when, private felled to yield causing collision. Employee felt pain in shoulder, neck, and right side of body. Supervisor: c. W. Wethington
## 6048                                                                                                                                 12/9/2008 03:04 pm (fblackmo) employee was walking through debris when, nail went into his right foot. Supervisor: dean argenbright
## 6049                                                                                                                                  12/9/2008 03:15 pm (fblackmo) employee was climbing down out of truck when, he felt pain in his back. Supervisor: dean argenbright
## 6050         12/9/2008 03:51 pm (fblackmo) employee was having blood drawn for lead testing at the nash county facility. Employee stated that the needled had been inserted and about half of a tube was filled when blood stopped flowing. Technician switched tubes an
## 6051                                                                      12/9/2008 04:04 pm (fblackmo) employee was checking tire on piece of equipment, he placed his hand on the ground to look closer at tire, and bee stung his left wrist. Supervisor: robert stox
## 6052                                                                                                                                      12/9/2008 04:13 pm (fblackmo) employee was pushing on a tile when, he felt something pop in his back. Supervisor: wayne wooten
## 6053                                                                                                                                                 12/9/2009 03:46 pm (fblackmo) employee was jumping a ditch and injured her left ankle. Supervisor: dean argenbright
## 6054                                                                                                                                                       1994 distal right fibulator fx, pain and tendernesselbow for 10 weeks, tender over ?? ??, pain with evirsion.
## 6055                                                                                                                                                                                     1:1 patient leaped up from bed and started punching staff on the head and face.
## 6056                                                                                                                                                                             1:1 w client-redirected another client around west end doors-turned twisting l knee. ()
## 6057                                                                             1:1 w resident-resident attempted to punch another resident and employee (kept going back/forth btw. Resident and employee)-employee blocked punches-later in day noted pain in back ()
## 6058                                                                                                                                                1:1 w resident-resident started to stumble- employee caught - in process resident bent/pushed r. Thumb backwards. ()
## 6059                                                                                                                                                                                                           1:1 with patient-had to ease to floor-pain in low back ()
## 6060                                                                                                                                                                                                                    1:1 with patient-kicked foot hitting l. Wrist ()
## 6061                                                                                                                                               1:1 with patient. Walked with patient to med room, patient suddenly turned and struck staff 4-5 times on the face. ()
## 6062                                                                                                                                     1:1 with pt. Pt leaning forward in geri-chair. EE attempted to assist pt to sit back in chair, felt pain in his back. Low back.
## 6063                                                                                                                                                                                                      1st and 2nd thermal burns to index finger and left shoulder ()
## 6064                                                                                                                                                                                  1st veh slammed on brakes -EE hit 1st veh in rear then 3rd veh hit EE veh in rear.
## 6065                                                                                                                            2 arms outstretched in front of body lifting water from waist high. Utility care for water filtration. Water bottle wt is 10 1/2 lbs. ()
## 6066                                                        2 choral risers were up and worker was trying to raise the third riser. It was close to the upright ones and while raising the third riser the employee's hand was caught between the risers and smashed. ()
## 6067                                                                                                                                                                                                                            2 dogs approached EE and bit at his legs
## 6068                                                                                                                                                                                            2 dogs in a fight, tried to pull dogs apart and one dog bit the employee
## 6069                                                                                                                                                                                                2 drawer file cabinet began to tip over, caught itto prevent falling
## 6070                                                                                                                                                                                                    2 ees moving file cabinet, r hand last finger severe laceration.
## 6071                                                                                                                                                                                                            2 employees removing door; door popped loose and dropped
## 6072                                                                                                                                                                    2 employees were fighting and EE pulled on of the people fighting struggling out of the building
## 6073                                                                                                                              2 employees were loading a ups crate into a car when the protective plastic corner popped off. The exposed metal cut 1 employee's leg.
## 6074                                                                                                                                                       2 hct's went into resident room to do adl care & while transferring resident hct left shoulder was pulled. ()
## 6075                                                                                                                                2 inmates began fighting and he tried to break it up in process of doing this, he was hit in nose bya punch was thrown during fight.
## 6076                                                                                                                                2 inmates in physical confrontation, EE assisting breaking up fight, inmates were bleeding, exposed blood to EE, both hands and arms
## 6077                                                                                                                                2 inmates in physical confrontation, EE assisting to break up fight, inmates were bleeding, exposed blood to EE, both hands and arms
## 6078                                                                                                                        2 inmates involved in physical confrontation, EE assisting to break up fight, exposed to blood, inmates were bleeding, both hands, both arms
## 6079                                                                                                                                                                                          2 inmates were fighting. EE received small cut on finger from a bed spring
## 6080                                                                                                                                                       2 juveniles fighting and employee was hit in mouth& strained lower back, also 2 bottom front teeth are loose.
## 6081                                                                                                                                                                      2 juveniles were fighting, while restraining one juvenile employee injured left side and chest
## 6082                                                                                                              2 officer takedown c/o jones was being placed on the ground one officer was guiding her to the ground with one hand and another wrapped up her legs an
## 6083                                                                                               2 officers were putting inmate in full restraints. They entered the cell to put on waist chain and inmate charged at c/o sparks, hitting him in the face and nose. ()
## 6084                                                                                                                                                    2 patients fighting staff attempt to intervene & patient yanked left arm resulting in left shoulderand neck pain
## 6085                                                                                                                                                                                                2 patients fighting; employee intervened; EE and pt fell to floor ()
## 6086                                                                                                                        2 patients were fighting & staff intervened & put patient in pic hold & tood to floor in process patient was jerking & EE twisted left ankle
## 6087                                                                                                                                                                                2 patients were fighting, EE was scratched on r wrist while trying to break fight up
## 6088                                                                                                                             2 person /kneeling reload) using police ballistic shield during active shooter training. (annual in srv/training. In jury to r knee. ()
## 6089                                                                                                                                    2 person assist-resident to stand from sitting-resident started to sit back down-pulling employee down-strain mid/upper back. ()
## 6090                                                                                                                                                                                              2 pts fighting, attempting to put pt in manual hold, twisted ankle. ()
## 6091                                                                                                                                                           2 pts were about to fight, EE intervened, slipped, pt/EE fell to floor, pt continued to fight, bite EE ()
## 6092                                                                                                                                                 2 pts were fussing, EE tried to break up, pt tried to hit EE, pt shoved EE, EE fell to floor, pts fell on top of EE
## 6093                                                                                                                                                    2 students were arguing over a basketball EE went over to students and one student accidently poked EE in lt eye
## 6094                                                                                                                    2 students were at bus stop in frt on p2p. I was walking toward them to ask where they were going watching them when I tripped over vehicle stop
## 6095                                                                                                                                                                    2 students were fighting & EE went to restrain thestudent who had been the aggressor & hurt back
## 6096                                                                                                                                      2 students were fighting. EE was trying to break them up when arm got caught between student and plexi-glass**sal contin EE***
## 6097                                                                                                                                   2-man take down in training, 3rd officer didn't follow instructor's directions, resulting her arm injuring my l/thigh and knee ()
## 6098                                                                                                                                               2/1/2005 08:45 am (fblackmo) employee was lifting platform when, he heard a pop in his back. Supervisor: dennis baker
## 6099                                                                                                                                 2/1/2005 08:55 am (fblackmo) employee was walking into ladies restroom when, she slipped on slick floor. Supervisor: gary m. Wilson
## 6100         2/10/2006 11:10 am (blgay) employee was coming through the back door of the office and slipped on wet floor that had just been mopped by the janitor. Employee fell on her knees, caught herself with her right hand and wrist, then fell completely on the
## 6101          2/10/2006 11:23 am (blgay) employee was climbing into loader, he was holding on to right grasp bar and reaching for the left one, when employee slipped on iced over step, causing him to swing around and hit the middle of his back on the wheel fender.
## 6102                                                                                        2/10/2006 11:37 am (blgay) employee was cutting trees and dragging the bruch to the chipper. Thought the poison oak was dormant. Poison oak reaction. Supervisor: keith hill
## 6103                                                                                                  2/10/2006 11:46 am (blgay) employee was removing piece of lumber from roadway, when he fell back on elbow and hip, after losing balance. Supervisor: sean epperson
## 6104                                                                                                 2/10/2009 03:03 pm (fblackmo) employee was cooking, lifted a large heavy pot from counter to stove when, she felt pain in left wrist. Supervisor: h. C. Scarborough
## 6105          2/10/2009 03:16 pm (fblackmo) employee was working with crew chopping, sawing brush, and trees from sides of slope shoulders behind guard rail. Employee used bush axe in the morning and chainsaw in the afternoon on slope with severe washout. Employee
## 6106                                                                                                  2/10/2009 03:31 pm (fblackmo) employee was pulling bushes, limbs, and vines off fence when, he felt something giveaway in his left foot. Supervisor: dwayne warner
## 6107                                                        2/10/2009 03:32 pm (blgay) employee was trying to a clogged material wand. Hot material blew back on right hand when tip was removed from material wand, causing burn on right hand. Supervisor: j. W. Brown
## 6108         2/10/2009 03:44 pm (fblackmo) employee had parked dump truck in parking area and was walking to the office (ground was covered with snow) when, he stepped off curb his feet slid out from under him causing him to fall landing on his lower back. Supervi
## 6109          2/10/2010 01:05 pm (blgay) employee was traveling home on us 421 south in the right lane, when a private vehicle began to spin out of control heading north on the snow covered road. The private vehicle continued to spin out of control and crossed the
## 6110         2/10/2010 01:48 pm (blgay) employee was working on the side of the dump truck helping to remove the salt out of the salt spreader. As he was trying to break the last portion of salt, the grate over the salt spreader hit him on the head. Supervisor: fr
## 6111                                                                                                        2/10/2010 02:00 pm (blgay) employee was walking across the parking lot at the equipment yard and slipped on an icy spot and fell down. Supervisor: reid rich
## 6112         2/10/2010 02:11 pm (blgay) employee was lifting dead animal to put onto the trash truck and heard a popping noise in his back. Employee stated that it did not bother him at that time. Employee did not report this until the end of working day on wednes
## 6113         2/10/2011 03:20 pm (barnes) employee was operating a grader. He brought it to a complete stop. As he exited the grader on level ground, he slipped on ice and snow. He fell and struck his head on the grader blade. He also struck his back, ribs and shou
## 6114        2/10/2011 10:09 am (barnes) employee was replacing a fuel line on a dump truck on 1/5/11. He strained his right arm and shoulder. The next day on 1/6/11, he mentioned the pain. After trying to relieve the pain with icy heat and alleve, the pain still d
## 6115                                                                                                                              2/10/2011 10:28 am (barnes) employee was loading para-plastic boxes into pickup truck and injured his neck. Supervisor: anthony bostic
## 6116                                                            2/10/2011 10:46 am (barnes) employee was driving plow truck when a private own vehicle crossed the center line and slid into the plow truck. Employee injured his right elbow. Supervisor: d. M pressley
## 6117                                                                                          2/10/2011 11:04 am (barnes) employee was moving a large crate of road signs by pushing it across the floor. Employee injured his lower abdomen. Supervisor: wayne williams
## 6118                                                                   2/10/2011 11:38 am (barnes) employee was sitting in chair at his desk. Chair turned over causing employee to fall to the floor. Employee injured his shoulder and hip. Supervisor: clyde e. Scott
## 6119         2/10/2011 12:11 pm (barnes) employee was traveling north on nc 194 pushing snow. A tractor trailer truck that was traveling in front of him jackknifed, causing the employee to hit brakes to avoid an accident. However, this caused the truck that employ
## 6120                                                                                                                                    2/10/2011 12:33 pm (barnes) employee was operating the amz patcher machine. Employee injured his back. Supervisor: michael burke
## 6121                                                                                                                                 2/11/2004 05:05 pm (slee) employee was pushing snow on 70 bus. With motorgrader. He hit a manhole cover causing head to hit mirror.
## 6122                                                                      2/11/2004 8:00 am (kbarefoo) employee was walking across parking lot when, he slipped on the ice causing the injury to his wrist. Supervisor: jackie s. Holland 03/12/2004 08:17 am (kbarefoo)
## 6123                                                                                                                            2/11/2004 employee was shoveling rocks into a drop off at the edge of pavement when, she felt pain in her chest. Supervisor: joe justice
## 6124                                                                                                                                     2/11/2005 07:52 am (fblackmo) employee was removing a "t" post stake when, he felt pain in his left hand. Supervisor: alvie lee
## 6125                                                                                                         2/11/2005 08:09 am (fblackmo) employees center finger on right hand was caught in between the door of a dump truck. Supervisor: william edward mcclendon jr
## 6126                                                                                                                        2/11/2005 09:08 am (fblackmo) employee was breaking up large chunks of salt when, a piece of salt hit him in the head. Supervisor: sg dillon
## 6127                                                                                                                                          2/11/2005 09:20 am (fblackmo) employee stepped out of dump truck when, he felt pain in his left knee. Supervisor: al smith
## 6128                                                                                                                               2/11/2005 09:33 am (fblackmo) employee was exiting van when, he tripped over rubber threshold on van steps. Supervisor: I. H. Mccombs
## 6129                                                                                                                    2/11/2005 10:08 am (fblackmo) employee was checking chains on tires when, he was bitten by a dog on his right hand. Supervisor: james d. Shelton
## 6130                                                  2/11/2005 10:31 am (fblackmo) employee was moving furniture from the hendersonville field office to asheville district. While loading a computer, he felt a pain in his right shoulder. Supervisor: g. V. Mckinney
## 6131                                                                                                                              2/11/2005 11:15 am (fblackmo) employees vehicle was struck on the left side while trying to pass a snow plow. Supervisor: darrell dean
## 6132                                                                                              2/11/2009 04:04 pm (blgay) employee was getting into truck that was sitting on a drive on lift, when he twisted his left knee and injured it. Supervisor: jeff whitney
## 6133                                                                        2/11/2009 09:38 am (blgay) employee was cutting a tree on asheville hwy nc 280 and tree had poison oak vine attached to it. Poison oak on several areas of the body. Supervisor: david capps
## 6134                                                   2/11/2009 09:55 am (blgay) employee was trying to install tailgate on truck, tailgate slipped off hook on hoist, fell to floor, and bounced up striking employee in face on right cheek. Supervisor: s. G. Foster
## 6135                                       2/11/2009 10:46 am (blgay) employee was cutting right of way on cornelius road and bluefield road, came in contact with poison oak. Poison oak on face, neck, hands, arms, head, legs and fingers. Supervisor: jamie robinson
## 6136                                                                                  2/11/2009 11:23 am (fblackmo) employee was involved in auto accident while on his way to a project work site. Employee is experiencing pain in his back. Supervisor: dough a. Ashe
## 6137                                                                                  2/11/2009 11:48 am (fblackmo) employee was traveling south on nc 11 when, sport utility ran into back of crew cab truck. Employee felt pain in lower back. Supervisor: kenny dixon
## 6138                                                                              2/11/2009 12:03 pm (fblackmo) employee was digging a hole to bury a dead animal, she stepped on shovel to dig in hard dirt, slipped and fell down on her back. Supervisor: jackie fone
## 6139                                                                                                                              2/11/2009 12:22 pm (fblackmo) employee was packing concrete in hole when, he jammed his left center finger. Supervisor: randy williams
## 6140                                                                    2/11/2010 02:18 pm (fblackmo) employee was conducting a road test when, driver ran into the back of a stopped vehicle. Employee felt pain in her left shoulder and side. Supervisor: lorie cantu
## 6141              2/11/2010 02:33 pm (fblackmo) employee was carrying box of parts across parking lot when, he slipped and fell due to snow and ice. Employee felt pain in right shoulder and right ankle. Supervisor: larry lewis 03/05/2010 10:38 am (lvaughan) fx r-s
## 6142                      2/11/2010 02:47 pm (fblackmo) employee was stepping out of his vehicle when, he slipped and fell due to snow and ice. Employee felt pain in his left arm and elbow. Supervisor: david moore 03/04/2010 10:44 am (lvaughan) l-elbow dislocation
## 6143                                                                                                                                 2/11/2010 08:30 am (fblackmo) employee was walking to truck and slipped on ice causing injury to right hip. Supervisor: mike rogers
## 6144                                                                                                                          2/11/2010 08:42 am (fblackmo) employee struck his head on the ground when he slipped and fell due to snow and ice. Supervisor: jerry keene
## 6145                     2/11/2010 12:56 pm (blgay) employee was getting down the motor grader blades from the racks. The blades are very heavy and thick. The blade slipped out of employees hand and caught left hand between blade and board. Supervisor: rick jordan
## 6146                                                                                                                              2/12/2004 02:03 pm (fblackmo) employee states she is experiencing pain in her left arm, shoulder, and neck. Supervisor: patsy champion
## 6147                                                                                                   2/12/2004 02:15 pm (fblackmo) employee states that due to daily exposure to various types of equipment he lost hearing in both ears. Supervisor: bubba r. Johnson
## 6148                     2/12/2004 02:28 pm (fblackmo) employee was sitting in chair during lunch hour in the office. Another employee approached Mr. Bennett and opened a soda can in the proximity of his left ear causing his ear to go numb. Supervisor: c. D. Cloud
## 6149                                                                        2/12/2004 02:42 pm (fblackmo) employee was trying to lift a mailbox post that was attached to a five gallon bucket of cement when, he felt pain in his groin area. Supervisor: william cooke
## 6150                                                                                                               2/12/2004 02:57 pm (fblackmo) employee states that, both left and right ear suffered hearing loss due to equipment noise. Supervisor: iris h. Mccombs
## 6151                                                                                                2/12/2004 03:09 pm (fblackmo) employee was walking on icy covered parking lot when, she slipped and fell causing the injury to her wrist. Supervisor: w. B. Crumpler
## 6152                                                                                                                       2/12/2004 03:36 pm (fblackmo) employee was cutting trees when, on fell striking him on his lower left leg and knee. Supervisor: r. D. Pittman
## 6153                                                            2/12/2004 04:01 pm (fblackmo) employee states while looking the the storage building he tripped over a wire fence causing a cut to his left hand. Supervisor: r. D. Isley 05/24/2005 02:26 pm (kbarefoo)
## 6154                                                         2/12/2004 04:12 pm (fblackmo) employee was moving truck when, she set off the fire extinguisher. Inhaled the contents of the extinguisher causing pain to lungs and a headache. Supervisor: randall jackson
## 6155                                                                                                                 2/12/2004 04:33 pm (fblackmo) employee was pulling pins from gate when, his hand and elbow was caught between the two gates. Supervisor: r. H. Rich
## 6156                                                                                                                                        2/12/2004 09:17 am (gsimmons) employee was pulling limbs into woods, limb flew back hitting employee in corner of right eye.
## 6157                                                                                                                                    2/12/2004 10:52 am (gsimmons) employee says that he is not sure but could be due to excessive keyboarding. Pain in both hands. 2
## 6158                                                                2/12/2007 02:46 pm (speedin) employee was assisting crew to attach snow plow to dump truck. While employee was levering snow plow with a steel post, he strained his ankle. Supervisor: danny fuller
## 6159                                                                                                                2/12/2007 04:46 pm (fblackmo) employee states that he was exposed to loud noises over a period of 23 years. Hearing loss. Supervisor: dennis bennett
## 6160         2/12/2008 09:00 am (blgay) employee was loading parts truck with heavy box. When arriving in alexander county shop, employee was unloading truck chains from front of the truck to the back of the truck. When employee got home that evening he felt a pai
## 6161                         2/12/2008 09:11 am (fblackmo) employee was patching potholes in new hanover county on 1/16/2008. Employee complained that left hand was hurting. Later, employee stated that the pain had moved to his left thumb. Supervisor: travis mintz
## 6162        2/12/2008 09:29 am (fblackmo) employees truck hydroplane and ran off on ramp. The truck continued to slide, hit the grass until the front tires dug in, and rolled over. Employee felt pain in his lower back, right shoulder, and ankle. Supervisor: bill w
## 6163                                                                                           2/12/2008 09:43 am (fblackmo) employee was cutting cabbage for the cook in the kitchen, knife slipped cutting left thumb, requiring four stitches. Supervisor: t. L. Gray
## 6164                                                                                                          2/13/2004 02:12 pm (fblackmo) employee was using a hammer to beat in a tank guard that had been bent and slipped and hit his hand. Supervisor: g. W. Price
## 6165                                                                                                                           2/13/2004 02:52 pm (fblackmo) employee lost his balance while exiting ferry, causing the injury to his left elbow. Supervisor: m. J. Gray
## 6166                                                                                                   2/13/2004 03:06 pm (fblackmo) employee was clearing ice and snow from sidewalk when, he slipped and fell causing the injury to his ear. Supervisor: melvin newton
## 6167                                                                                                                                      2/13/2004 08:40 am (fblackmo) employee was using a screwdriver when it slipped and punctured his hand. Supervisor: roger ayers
## 6168                                                                          2/13/2004 08:54 am (fblackmo) employee was walking outside to going to the cafeteria when, she slipped and fell on the ice causing the injury to her left knee. Supervisor: susan jernigan
## 6169           2/13/2004 09:10 am (fblackmo) employee stated that he pulled up a wood post with post puller. He stated that he then grabbed it to put it in the back of the truck when, he felt pain in his right arm. Employee requested to go home on 12/23/2003 becau
## 6170                                                                                                                     2/13/2004 09:27 am (fblackmo) employee slipped on ice while attempting to get into truck, causing the injury to his head. Supervisor: mark wade
## 6171                                                                                   2/13/2004 09:37 am (fblackmo) employee was installing a brake tube for air brakes when, the socket flew off air wrench striking him on his forehead. Supervisor: donald e. Rector
## 6172                                                                                                                          2/13/2004 09:51 am (fblackmo) employee was attempting to remove a key when, the struck him above his right eye. Supervisor: j. W. Lassiter
## 6173                                                   2/13/2004 10:02 am (fblackmo) employee was hooking up chains between wrecker and truck when, he lost his footing on the ice causing him to fall striking his face and wrist on pavement. Supervisor: j. W. Marler
## 6174                                                                                                                                 2/13/2004 10:12 am (fblackmo) employee states that a beam fell over striking him on his lower right leg. Supervisor: david l. Moore
## 6175                                                                       2/13/2004 10:25 am (fblackmo) employee stopped to clear snow form the windshield wipers when, he slipped and fell on the ice causing the injury to his left shoulder. Supervisor: scott capps
## 6176                                                                                                                                                 2/13/2004 11:23 am (fblackmo) employee ran over a bottle of urine that splashed on his face. Supervisor: jeff hardy
## 6177                                                                                                                                                                                            2/13/2004 11:48 am (fblackmo) repetitive motion. Supervisor: mike ennett
## 6178           2/13/2006 01:07 pm (blgay) employee was unloading tamp. When employees pinkie finger on right hand was cut. Employee had a gash on his finger and first aid was applied. Employee started feeling weak and then passed out, at this time an ambulance was
## 6179                                                                                                                                     2/13/2006 03:09 pm (blgay) employee was performing routine sign maintenance and was bitten by insect. Supervisor: todd whitaker
## 6180                                 2/13/2006 04:07 pm (blgay) employee was turning into driveway and hit a hole that he was unaware of. The truck bounced and he hit his head on the top of the cab, leaving a bump on the top of his head. Supervisor: tommy cottrell
## 6181                                                                                    2/13/2006 04:15 pm (blgay) employee had climbed up on side boards to clean dirt off side board, when a rock rolled down, hitting the right index finger. Supervisor: r. F. Minto
## 6182                                          2/13/2006 04:24 pm (blgay) employee was in the engine room of the m/v stanford white installing a valve, using a wrench. The wrench slipped causing her to fall backwards on her left wrist. Supervisor: kevin lamar cooke
## 6183                             2/13/2006 08:46 am (blgay) employee was driving state issued vehicle and pulled out at intersection nc 39 and nc 97. Employee was struck in drivers door by pv vehicle, crash impact caused death of employee. Supervisor: b. K. Bozard
## 6184                                                         2/13/2007 02:26 pm (speedin) employee was getting a flag out of back of crew cab. He was standing on bumper of crew cab. He stepped off of bumper to ground and turned his ankle. Supervisor: james r. Ashe
## 6185         2/13/2007 09:37 am (speedin) employee conducted road test. Customer was attempting to drive through a 90 degree curve. Customer did not turn steering wheel and drove into ditch. Head & neck snapped backwards upon vehicle's impact in ditch. Supervisor:
## 6186                                                                                                             2/13/2007 10:47 am (speedin) employee slipped in mud while inspection of traffic signal cabinet. Employee twisted right knee. Supervisor: j. D. Edwards
## 6187        2/13/2007 11:14 am (speedin) employee was helping a fellow employee and injured his back. Sign rack fell off of backhoe truck, stopped on sr 2127 to pick it up. Bonford was helping s. F. Jenkins pick it up when he stepped wrong and hurt his back. Emplo
## 6188         2/13/2007 11:49 am (speedin) employee was getting in the sign truck, he stepped on the step of the sign truck with his right foot, pushed off the ground with his left foot and something popped in his left knee which caused sharp pain to the knee area.
## 6189         2/13/2008 03:10 pm (blgay) employee was assisting with chipping brush. Employee bent over to pick up more brush, when a limb caught hold in the roller wheels of the chipper, causing it to whip around and it made contact with employees forehead, causin
## 6190         2/13/2008 03:28 pm (blgay) employee was pulling a roll of wire off top of crate. Realizing it was to heavy to handle, employee threw wire to ground, causing roll of wire to bounce and hit right hand, fracturing middle finger on right hand. Supervisor:
## 6191                                     2/13/2009 01:40 pm (blgay) employee was getting into dot truck. Employee had a chain saw file in his right hand. While getting into truck file hit steering wheel of truck, forcing it into right hand. Supervisor: j. W. Brown
## 6192                 2/13/2009 01:57 pm (blgay) employee was parking the motor grader and exited the grader. Employee exited the last step from the top of the blade to the ground, as he stepped down he hyperextended his right leg and knee. Supervisor: r. W. Rhodes
## 6193                                 2/14/2005 10:12 am (fblackmo) employee was crossing us-1 on galary drive truck headed south on us-1 ran stop light hitting state vehicle on passenger side. Employee experienced pain in his right shoulder. Supervisor: eddie bunn
## 6194                                                            2/14/2005 10:31 am (fblackmo) employee was jumping up and down on bed of tilt trailer in order to level trailer bed. Employee felt pain in upper back and left shoulder area. Supervisor: j. M. Mitchell
## 6195                                                                                                                                  2/14/2005 10:51 am (fblackmo) employee was exiting state vehicle when, he slipped and fell due to ice. Supervisor: robert g. Davis
## 6196                                                                                                2/14/2007 09:54 am (fblackmo) employee was walking through wooded area placing clearing limits when, he felt pain in his right calf muscle. Supervisor: wayne currie
## 6197                 2/14/2007 10:20 am (fblackmo) employee was working the m/v cedar island, as he attempted to remove a section of bulwark he had just burned, he pulled on one section causing it to tip over bending his left wrist. Supervisor: marshall c. Coleman
## 6198                                2/14/2007 11:36 am (fblackmo) employee was boring a hole with a hand held hydraulic auger with another employee when, they lost control of the auger causing it to pin employees left ankle to the ground. Supervisor: jason leonard
## 6199                      2/14/2008 07:00 am (slee) employee overturned a dump truck into an adjacent ditch while traveling westbound on sr 1443. A personal vehicle in front of employee abruptly applied their brakes to make a turn without the use of a turn signal.
## 6200         2/14/2008 12:40 pm (blgay) employee was on a road test. Customer was approaching an yield sign and instead of yielding, customer accelerated and turned vehicle into the middle lane where she hit a nissan altima in the rear end. Supervisor: phyllis you
## 6201                                                                                        2/14/2011 03:38 pm (fblackmo) employee was helping move a two drawer filing cabinet when it slipped causing laceration to third finger on left hand. Supervisor: steve adams
## 6202                                                                                                              2/14/2011 11:49 am (fblackmo) employee was removing an oil filter, filter slipped and cut his third finger on left hand. Supervisor: robert w. Norwood
## 6203                                                                                                                                       2/14/2011 12:06 pm (fblackmo) employee was testing/swinging davit during uscg drill when, he felt pain in his right shoulder.
## 6204                                                                                                          2/14/2011 12:43 pm (fblackmo) employee was using a bush axe to cut trees on roadway when one of the limbs hit him in his right eye. Supervisor: s. R. Ross
## 6205                  2/15/2005 02:27 pm (fblackmo) employee was removing drifts form beneath a bridge by attaching nylon rope to truck winch cable. When wincing began tight, rope was overloaded and broke, striking employee on left forearm. Supervisor: j. D. Crank
## 6206                                                                                                                  2/15/2005 02:46 pm (fblackmo) employee was replacing tailgate onto the truck when, the tailgate dropped on his left thumb. Supervisor: j. R. Price
## 6207        2/15/2005 03:49 pm (fblackmo) employee was bending over the tire of an international dump truck changing the fuel filter. Employee was twisting and trying to break the filter loose when, he stood up he felt pain in his back area. Supervisor: keith smit
## 6208                                                                                                                     2/15/2005 12:18 pm (fblackmo) employee states she slipped on slick floor. Employee experienced pain in her left arm. Supervisor: lee r. Johnson
## 6209                                                                                               2/15/2006 01:30 pm (blgay) employee was bending down to work on a signal cabinet in the signal shop and felt pain in the right knee area. Supervisor: james g. Taylor
## 6210         2/15/2006 01:38 pm (blgay) employee was picking up trash bags off of shoulder of road after a rain. In the process of throwing the bags into truck bed, a liquid got onto the arm of the employee. Later that night he noticed a rash began showing up on h
## 6211         2/15/2006 11:29 am (blgay) employee was driving van, when he ran off the road as he entered a curve, went through a couple of yards and clipped the corner of a porch, hitting an utility trailer. Van came to rest in a yard facing in the opposite direct
## 6212                                   2/15/2006 11:40 am (blgay) employee was standing behind the ncdot maintenance office, when another employee approached him and placed his arm around employees neck, placing him in a headlock type hold. Supervisor: joe justice
## 6213                                                                      2/15/2006 11:56 am (blgay) employee was raking stone on a driveway with a large asphalt rake. Employee pulled shoulder while raking. Supervisor: d. R. Arrington 2/14/2008 04:31 pm (lvaughan)
## 6214                                                             2/15/2006 12:06 pm (blgay) employee was walking along side 15/501 project when an insect entered boot and around 10:00 am that morning it had bitten him on the pinky toe. Supervisor: marty c. Tillman
## 6215         2/15/2006 12:17 pm (blgay) employee was walking to the dumpster from the brown storage building to empty trash. On the way back to the building, employee tripped on the form board of the recently poured concrete apron. This caused him to fall, scrapin
## 6216              2/15/2006 12:27 pm (blgay) employee was cutting trees during an ice strom. Employee slid down a 10 foot slope, after losing his footing. Employee hooked a tree with his left arm to prevent falling, injuring his left elbow. Supervisor: m. M. Solon
## 6217                                                                                                                     2/15/2006 12:36 pm (blgay) employee was sitting on side of the road looking at plans, when his truck was hit by a pv. Supervisor: m. C. Tillman
## 6218               2/15/2007 02:58 pm (speedin) employee was putting pin into snow plow attachment to correct snow plow. Employees glove got stuck between washer and pin. Employee pulled his hand back and hit it on part of plow attachment. Supervisor: r. D. Powell
## 6219          2/15/2007 12:04 pm (speedin) employee was cutting a small saplings along the right of way with a chain saw. After the employee completed cutting he turned and a limb from the sapling gouged his left eye thus causing a abrasion to the left eye cornea.
## 6220                                                   2/15/2010 08:54 am (blgay) employee was unpluging wires from truck and salt spreader, when he had to pull hard and it came unplugged and he hit his right elbow on the salt spreader. Supervisor: kevin hazelwood
## 6221                                                                                                                           2/15/2010 09:07 am (blgay) employee was exiting tow truck, he stepped on running board and twisted right knee. Supervisor: clyde mckinney
## 6222                                                                                                                 2/15/2010 09:29 am (blgay) employee slipped on ice during early morning hours on maintenance yard, landing on left hip. Supervisor: a. K. Henderson
## 6223          2/16/2005 10:46 am (fblackmo) employee was at new hanover correctional facility for inmate training class. While climbing stairs his foot caught the step causing him to trip and fall on left knee. Employee said he tried to brace his fall by using his
## 6224                                     2/16/2005 11:01 am (fblackmo) employee was using heat from a torch to extract seized dram plug form tar kettle when, a piece of rust from the plug hit employee in his right eye under safety glasses. Supervisor: jimmy creech
## 6225                                                                                                                                       2/16/2005 11:12 am (fblackmo) employee was lifting a pan of stone when, he felt pain in his back. Supervisor: francis lockamy
## 6226                                                                                              2/16/2005 12:30 pm (fblackmo) two employees were wrestling when, employee lost his footing on curb and fell toward truck hitting his rib cage. Supervisor: j. R. Price
## 6227                                       2/16/2006 02:52 pm (blgay) employee was stopped at a stop sign, when employee pulled out in front of a pv. Employee stated"his vision was apparently blocked by a tractor/trailer that was turning". Supervisor: r. D. Tuttle
## 6228                                                                            2/16/2009 03:01 pm (blgay) employee was pushing up dirt at stock pile and backed over uneven spot. The loader jerked and she pulled a muscle in her upper back. Supervisor: sarah foster
## 6229                                                                               2/16/2009 03:15 pm (blgay) employee was getting into undercover jeep after getting gas and hit his left knee on side rail, causing a contusion of the knee. Supervisor: b. K. Hawkins
## 6230                                                      2/16/2010 10:30 am (blgay) employee was drilling a hole in a snow plow frame, when the drill bit got caught and he twisted his right hand, resulting in a spiral break on right hand. Supervisor: jimmy ammons
## 6231           2/16/2011 02:45 pm (barnes) employee(Mr. Hutchens) saw a fellow employee's truck starting to roll. He ran after the truck trying to catch it before it ran through the fence. Mr Hutchens injured his knee while jumping into the truck. Supervisor: clyd
## 6232          2/16/2011 03:49 pm (barnes) employee was stopped at the traffic signal on old charlotte road at rocky river road in monroe. Private vehicle failed to stop for red traffic signal and rear ended employee. Employee injured his neck. Supervisor: sean epp
## 6233         2/16/2011 04:08 pm (barnes) employee was picking up cases of antifreeze and moving them to a different location. He felt a sharp pain in his lower back. Employee did not got to the doctor on date of injury. He went to doctor on 2/3/2011. Employee inju
## 6234                                                                                 2/17/2005 02:13 pm (fblackmo) employee was hanging signs when, sign dislodged and fell with one post hitting employee in the neck and chest area. Supervisor: charles m. Jackson jr
## 6235                                                                                                                                    2/17/2005 02:38 pm (fblackmo) employee was laying pipes in wet ditch which, caused the rash on his feet. Supervisor: joe justice
## 6236                                                                                                         2/17/2005 10:48 am (fblackmo) employee was climbing down ladder to cut off paint pump when, he struck his left hand on the platform. Supervisor: w. R. Wall
## 6237                                                                                                                                                                         2/17/2005 10:56 am (fblackmo) employee fell and fractured left hip. Supervisor: k. R. Davis
## 6238            2/17/2005 11:11 am (fblackmo) employee was talking to co-workers behind him while going down steps from building. Employee slipped on top step, landing on his left knee. Supervisor: t. L. Gray 2/18/2009 02:31 pm (lvaughan) ic ordered us to cover th
## 6239                                                                                                                2/17/2005 12:03 pm (fblackmo) employee was lifting a wooden seat onto a flat bed truck when, he felt pain in his right wrist. Supervisor: b. R. Webb
## 6240         2/17/2006 09:57 am (blgay) employee was helping unload 50-56 lb bags of fertilizer, seed, and hydromulch bales passed down from flatbed truck. When turning and lifting over head to pass to another employee, employee felt pain in his left shoulder. Sup
## 6241                                                                                                                   2/17/2006 10:45 am (blgay) employee was changing position of thumb on excavator, when thumb fell on employees left arm. Supervisor: alan e. Brown
## 6242                                                                    2/17/2006 10:57 am (blgay) employee was going up a bank, when his foot became caught on a vine, causing him to fall off the wing of the bridge wall; injuring his back. Supervisor: ken anderson
## 6243                                                                                                             2/17/2010 05:17 pm (fblackmo) employee stepped on pallet when the wooden slant broke causing employee to twist his left foot. Supervisor: mike jefferys
## 6244         2/17/2010 10:45 am (fblackmo) employee injured his right bicep while shoveling rocks on driveway. Employee had pain during the night and had trouble flexing bicep muscle. Employee did not seek medical attention following incident. Employee continues t
## 6245                                                                                                         2/17/2010 10:57 am (fblackmo) employee was working on the computer while typing he felt pain in his right wrist down to his thumb. Supervisor: ben a. Riggs
## 6246                                                                   2/17/2010 11:11 am (fblackmo) employee states injured occurred when a private vehicle struck them in the rear. Employee felt pain n his neck, shoulder, and back area. Supervisor: elizabeth lusk
## 6247         2/17/2010 11:25 am (fblackmo) employee was driving dot vehicle when it was hit on the front left side by private vehicle. Employee was the passenger in the back set of the dot crew cab pickup truck. Employee felt pain in his lower back. Supervisor: w.
## 6248                                                                                                                 2/17/2010 11:38 am (fblackmo) employee complained of catch and tightness in his back during mandated in service training. Supervisor: steve watkins
## 6249                                                               2/17/2011 10:51 am (fblackmo) employee was helping other employees remove barrels of salt brine from trailer and forklift when, he felt pain in his right shoulder area. Supervisor: jeremy b. Creech
## 6250                                                                          2/17/2011 11:05 am (fblackmo) employee was pouring cracks on state road when three dogs ran at him; startled him. Employee fell causing injury to his right calf. Supervisor: archie smith
## 6251                 2/17/2011 11:45 am (fblackmo) employee was torquing cylinder head bolts on an international truck engine. His socket slipped causing his hand to hit engine accessories resulting in a cut thumb and mashed ring finger. Supervisor: t. L. Jernigan
## 6252                                                                    2/18/2008 11:29 am (blgay) employee was reaching under dash of his work truck, attempting to release a faulty emergency brake peddle, cutting his middle right finger. Supervisor: leonard dills
## 6253        2/18/2009 10:08 am (fblackmo) employee was the passenger in a state vehicle when it was involved in a traffic accident. He was sore and spent thursday 8/7/08 at home. He was back to work on 8/8/08 at 8:00 a. M. Employee complained of pain in his left k
## 6254                    2/18/2009 10:21 am (fblackmo) employee stepped through an opening on the deck of the m/v pamlico while removing equipment that was being used to change the oil in the vessel. Employee had cut to lower left leg. Supervisor: robert w. Norwood
## 6255         2/18/2009 10:33 am (fblackmo) employee was performing a density test on soil. The injury occurred while lifting a 50lb saddle weight from the ground onto the test apparatus. Employee felt a sharp pain in lower lumbar area on his back. Supervisor: broo
## 6256                       2/18/2010 01:13 pm (blgay) employee was driving parts delivery truck on us 421 toward boone. A private vehicle crossed center line and hit ncdot parts truck in left front drivers side. The road was snow covered. Supervisor: j. D. Nichols
## 6257         2/18/2010 01:46 pm (blgay) employee was reporting to work; was transported by her husband due to winter weather conditions. Entering building from front entrance, slipped on ice on sidewalk, right knee struck steps, right shoulder struck adjacent shor
## 6258                                                                                                  2/19/2004 01:54 pm (fblackmo) employee states while climbing down off a spreader, his foot slipped causing the injury to his right knee. Supervisor: royce bennett
## 6259                                                                                                                                                2/19/2004 02:03 pm (fblackmo) employee was helping hook up snow plow when, he hit his knee. Supervisor: c. M. Taylor
## 6260                                                                                                     2/19/2004 02:12 pm (fblackmo) employee was climbing down out of truck when, his foot slipped causing the injury to his right shoulder. Supervisor: l. D. Greene
## 6261                                                                                                                        2/19/2004 02:26 pm (fblackmo) employee was walking down to office when, he slipped and fell due to the snow and ice. Supervisor: l. W. Lyall
## 6262                                                                                                                2/19/2004 02:36 pm (fblackmo) employee was replacing a broken crossline pipe when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon
## 6263                                                                                                         2/19/2004 02:46 pm (fblackmo) employee was walking across the parking lot when, he slipped and fell due to snow and ice. Supervisor: o. D. Sparks/gary neal
## 6264                                                                                                 2/19/2004 02:57 pm (fblackmo) employee was kneeling while sanding a fender when, he stood up he felt a sharp pain in his left knee. Supervisor: richard f. Jernigan
## 6265         2/19/2004 10:31 am (fblackmo) employee was operating a motor grader all day long. He did a lot of bouncing and had to hold the steering wheel tight, plus at one time had to pull off the road quickly to let an emergency vehicle pass. Employee states he
## 6266                                                                                                                                  2/19/2004 10:44 am (fblackmo) employee was installing exit sign when, he felt pain in his lower back area. Supervisor: b. T. Coble
## 6267          2/19/2008 03:00 pm (fblackmo) employee was delivering work to third floor of annex building and tripped over the metal piece that keeps the double doors in place. Employee landed on her left side but injured her right shoulder and arm while trying to
## 6268                                                                             2/19/2008 03:17 pm (fblackmo) employee was reaching for a metal locator on a slope and fell down bridge slope protection, tripped and landed on his wrists. Supervisor: larry williford
## 6269                                                                                                              2/19/2008 04:56 pm (fblackmo) employee was loading hay bails onto truck when, wind blew foreign matter into his right eye. Supervisor: charles francka
## 6270                                       2/19/2008 05:07 pm (fblackmo) employee was using a hand driver to drive sign post in ground, felt tingling in his shoulder. Later that same evening he started to feel pain in the shoulder (left). Supervisor: todd whitaker
## 6271         2/19/2009 05:37 pm (fblackmo) employee was stopped at a traffic light when another vehicle failed to stop. The other vehicle hit a delivery truck, side swiped a car, and hit the state own vehicle head on. Employee felt pain in his neck and back. Super
## 6272         2/19/2009 08:54 am (fblackmo) employee travel to worksite to diagnose equipment failure on backhoe. He got down on one knee and looked up under the rear axle at which time dirt fell from the machine striking his face. Debris got between his safety gla
## 6273                                                                                                                      2/19/2009 09:08 am (fblackmo) employee was climbing up stairs on m/v hyde and missed a step. Felt pain in left ankle. Supervisor: cindy austin
## 6274             2/19/2010 02:20 pm (fblackmo) employee was assisting with sewer rodder operator. A vacuum truck was operating above employee; vacuum pump operator was assembling the vacuum tubes when tube fell on employee back. Supervisor: brian harper 03/02/2011
## 6275                                                                                                                           2/19/2010 02:32 pm (fblackmo) employee was using wire brush to clean parts when his index finger was punctured. Supervisor: alfred wilson
## 6276                                                                                   2/19/2010 11:52 am (fblackmo) employee was driving d. O. T. Truck when it was struck in the rear at intersection. Employee felt pain in her neck. Supervisor: rachelle beauregard
## 6277                                                          2/19/2010 12:07 pm (fblackmo) employee was turing off water value when he tripped over a cement block fall back on a brick building. Employee felt pain in his right knee. Supervisor: billie l. Poole, jr
## 6278                                                                                       2/2/2005 02:32 pm (fblackmo) employee was coming into the building from the back loading dock when, he tripped over a raised area in the sidewalk. Supervisor: richard howard
## 6279                                                      2/2/2005 02:42 pm (fblackmo) employee was attempting to remove a small tree from the right of way. Tree was on a incline and employee fell causing the injury to his back. Supervisor: william edward mclendor
## 6280                                                                                                 2/2/2005 02:55 pm (fblackmo) employee was bringing a load of mail into the building and tripped and fell on a raised concrete pad at the door. Supervisor: ed raube
## 6281                       2/2/2005 03:08 pm (fblackmo) employee was moving forks closer together on a loader to pick up beam. Another employee picked up the forks as employee was moving them mashing his finger between the fork and frame. Supervisor: jm leatherman
## 6282                                                                                                                        2/2/2005 03:17 pm (fblackmo) employee was bending over getting money from the safe when, he felt pain in his back. Supervisor: marsha harris
## 6283                                                                                                                                       2/2/2005 03:59 pm (fblackmo) employee was changing a tire when, the tire fell over on his right foot. Supervisor: steve smith
## 6284                                                                                                                       2/2/2005 04:18 pm (fblackmo) employee states repetitive use of keyboard during the insurance of driver license. Supervisor: dolphus marshburn
## 6285                            2/2/2005 11:16 am (fblackmo) employee stated that she had been having trouble with her right hand and fingers for some time, but the pain has gotten worst for the past few months. Employee works on computer. Supervisor: angela faulk
## 6286                                                                            2/2/2005 12:17 pm (fblackmo) employee states injury occurred to his lower back while reaching into the passenger side of the patrol vehicle to remove a clipboard. Supervisor: gf butler
## 6287                                                     2/2/2005 12:28 pm (fblackmo) employee was coming back to the yard with a loaded dump truck, attempted to stop to make left turn, truck slid in ditch causing the injury to his back. Supervisor: c. E. Thompson
## 6288                                                                                           2/2/2005 12:38 pm (fblackmo) employee was pulling on a wire that was stuck in the ground when, he felt a pop in the center part of his back. Supervisor: wendell chastain
## 6289                                                                                                                        2/2/2005 12:51 pm (fblackmo) employee climbed into truck bed, and twisted his back in the process of climbing down. Supervisor: darrell dean
## 6290                                                                                                             2/2/2007 01:44 pm (fblackmo) employee was flagging traffic when a transfer truck kicked up dirt causing it to go into her left eye. Supervisor: m. Tapp
## 6291                 2/2/2007 01:59 pm (fblackmo) employee was assisting in binding a load of limbs and branches on to the flatbed with ratchet straps. The "hook end" of strap was thrown over the load and struck employee on top of her head. Supervisor: r. J. Brown
## 6292                                                                                          2/2/2007 11:24 am (fblackmo) employee was conducting a road test when, a private vehicle rear ended customers truck causing injury employees neck. Supervisor: dean almond
## 6293                                                                                            2/2/2007 11:33 am (fblackmo) employee was trying to lift a heavy rock from roadway construction project when, he felt pain in lower groin area. Supervisor: ben williams
## 6294         2/2/2007 11:42 am (fblackmo) employee removed bent sign post from ground and removed sign from post. Soil was lodged in u-channel of post and employee attempted to removed the soil by dropping post on pavement. Post hit pavement and sprung back striki
## 6295                                                         2/2/2007 11:56 am (fblackmo) employee was hooking trailer to dump truck when, he put his finger under the pendal, the pendal fell, his finger was caught between hook and pendal. Supervisor: mark c. Smith
## 6296                                                                                                 2/2/2009 09:52 am (blgay) employee was cutting weeds around bridge when he slipped and fell into creek, catching barbed wire on the way down. Supervisor: joe smith
## 6297         2/2/2009 10:00 am (blgay) employee was investigating an equipment accident involving a private vehicle and a dot dump truck on roadway that was solid ice. Employees feet went out from under him, causing him to hit head and back. Supervisor: h. B. Rash
## 6298                                                                                     2/2/2009 10:09 am (blgay) employee was loading post and turned over a stack of post and mashed his left pointer finger. He was separating the post. Supervisor: michael dearing
## 6299                 2/2/2009 10:18 am (blgay) employee was picking up tires on I-40. Employee rolled a piece of recap form a truck. Employee lifted the tire and felt a pop in her hand/wrist. Employee went to doctor and had a pulled tendon. Supervisor: c. E. Bandy
## 6300                           2/2/2010 01:41 pm (blgay) employee was setting up lane closure on left lane 485 outer. Employee was in crash truck protecting crew. Private vehicle hit crash truck in the rear, while setting up closure lane. Supervisor: mike campbell
## 6301                                                                  2/2/2010 10:43 am (blgay) employee slipped while lowering door on supply truck. Employee was holding the strap on the door, causing it to jerk his right arm and shoulder. Supervisor: j. R. Roper
## 6302                                                                                                                           2/2/2011 04:49 pm (fblackmo) employee was picking up a bottle of water when, he felt pain in his lower back area. Supervisor: dawn godwin
## 6303                                                                                         2/20/2004 07:39 am (fblackmo) employee was making repairs on a droit excavator when, he slipped on frost and fell causing the injury to his back. Supervisor: m. B. Mizelle
## 6304                                                                2/20/2004 07:52 am (fblackmo) employee was moving equipment from out side before it was covered with snow and ice when, the injury occurred to his lower back and neck area. Supervisor: james isaac
## 6305                                                                               2/20/2004 08:05 am (fblackmo) employee was getting papers out of state truck when, he slipped on ice hitting head and shoulder area on another parked truck. Supervisor: b. L. Norris
## 6306                                                                2/20/2004 08:28 am (fblackmo) employee was changing blades on the snow plow using the bar to get the blade off when, the blade slipped causing the injury to his right hand. Supervisor: gary darden
## 6307                                                                                                                                 2/20/2004 08:41 am (fblackmo) employee was sprayed with asphalt while trying to unload the distributor. Supervisor: robert k. Payne
## 6308                                                                                                                                        2/20/2007 03:56 pm (fblackmo) employee was pruning tree branches when, he cut his left index finger. Supervisor: r. J. Brown
## 6309                                                                                 2/20/2007 04:11 pm (fblackmo) employee was loading a five gallon bucket of stone into the back of pickup truck when, he felt pain in his right shoulder. Supervisor: r. E. Capehart
## 6310                                                                                               2/20/2008 11:39 am (fblackmo) employee was shoveling topsoil out of the rear of the dump truck when, he felt pain in his lower back area. Supervisor: r. W. Shoemaker
## 6311                                                                                                       2/20/2009 09:59 am (blgay) employee was helping cut trees on a bank off hwy 74 when he slipped and fell on his left shoulder and arm. Supervisor: mike walden
## 6312                                                              2/21/2006 01:03 pm (blgay) employee was breaking bolt loose on motor grader, socket slipped off bolt and right hand hit frame, wrench cut inside middle finger on right hand. Supervisor: mike perkins
## 6313                                                                2/21/2006 01:15 pm (blgay) employee was stopped in traffic on patton avenue, when he was rear-ended by pv. Employee experienced blurred vision and subsequent neck pain. Supervisor: ds peter w. Wan
## 6314                                                                                   2/21/2006 12:52 pm (blgay) employee was descending a slope, near the bottom he had to jump over a ditch of 2 feet. When employee landed he injured knee. Supervisor: charles hunt
## 6315                         2/21/2007 08:09 am (fblackmo) employee was putting up a sign when, the staff that holds the flags and the top part of the sign came down on his right hand causing a cut between the thumb and finger on right hand. Supervisor: ira harris
## 6316                                                                                 2/21/2007 08:53 am (fblackmo) employee was moving a steel plate out of the way for a co-worker to pass by when, the plate fell over on his right foot. Supervisor: jeremy b. Creech
## 6317                                                                                                        2/21/2007 10:20 am (fblackmo) employee was placing an empty trash can under desk when, he felt a sharp pain in his lower back. Supervisor: c. W. Bridgers jr
## 6318                                                               2/21/2007 10:33 am (fblackmo) employee was walking down stairs to go to a meeting when, she slipped and fell causing injuries to her right hand, left knee, and left ankle. Supervisor: brenda franks
## 6319                                             2/21/2008 01:20 pm (blgay) employee was checking force feed loader when he stepped back and tripped over the front wing of loader. Employee fell and landed on his left shoulder and back. Supervisor: h. G. Timberlake
## 6320         2/21/2008 01:32 pm (blgay) employee was repairing the tailgate on a dump truck. The latch was jammed and would not close. The employee pushed on the latch and it closed catching his index finger of his right hand, causing the fingertip to be pinched o
## 6321                                                                                                                                         2/21/2008 12:55 pm (blgay) employee was returning from a road test, tripped on a crub and fell. Supervisor: carolyn ritchie
## 6322                                                                                                                     2/22/2005 02:17 pm (fblackmo) employee fell backwards striking his head on tractor. Employee experienced a cut to head. Supervisor: c. R. Tyson
## 6323                                                                                                                                 2/22/2005 02:26 pm (fblackmo) employee came into contact with poison ivy while cutting and chipping trees. Supervisor: keith blazer
## 6324                    2/22/2005 02:34 pm (fblackmo) employee was driving down silt fence post with 4 lb. Sledge hammer when, the embankment caved in causing him to Miss The post and hit himself on the left knee. Supervisor: j. C. Gunter 8/9/2005 08:24 am (mpark)
## 6325                                                                                                                                                2/22/2005 03:19 pm (fblackmo) employee states she was diagnosed with carpal tunnel syndrome. Supervisor: helen landi
## 6326                                                                                                   2/22/2005 03:35 pm (fblackmo) employee was loading sign on truck when his finger became caught between the railing on trailer and hook. Supervisor: todd whitaker
## 6327                                                                                                                 2/22/2005 04:11 pm (fblackmo) employee was moving and installing carpet when, he felt pain in his back and right shoulder. Supervisor: eric boyette
## 6328                                2/22/2005 11:38 am (fblackmo) employee was on a ladder in stock room when, he slipped and fell causing the injury to his right hip area. Supervisor: chris taylor 2/22/2005 11:44 am (fblackmo) doctors notes states injury to back.
## 6329                                                                                                                       2/22/2005 11:50 am (fblackmo) employee was climbing down off of flatbed truck when, he felt pain in his left leg. Supervisor: scott cornatzer
## 6330                                                                             2/22/2005 12:20 pm (fblackmo) employee was stacking cones on back of pickup truck when, driver stopped suddenly causing him to fall onto the road fracturing rib. Supervisor: fred king
## 6331                                                                        2/22/2005 12:55 pm (fblackmo) employee was leaving dredge when, he slipped and fell on concrete due to slippery walkway. Employee felt pain in his right shoulder. Supervisor: jerry gaskill
## 6332                                                                                                                      2/22/2007 04:02 pm (speedin) employee was operating a chainsaw and stepped in a ditch improperly and hurt lower back. Supervisor: v. C. Staley
## 6333         2/22/2007 04:31 pm (speedin) employee was feeding brush into a chipper. The employee had his safety glasses during this operation. When the employee fed a piece of brush into the chipper, it abruptly twisted in him, and struck the employee in the face
## 6334                                                                                                                      2/22/2008 10:43 am (blgay) employee was shoveling gravel on parker street when he felt a sharp pain in his right hand. Supervisor: dale loflin
## 6335                                                                                               2/22/2008 11:00 am (blgay) employee was using a chainsaw, when it kicked back popping right wrist several times causing sprain to right wrist. Supervisor: mike evans
## 6336                                                   2/22/2008 11:11 am (blgay) employee was loading brush on a dump truck, when a branch struck window of loader causing the glass to shatter and glass flew into right eye of employee. Supervisor: h. G. Timberlake
## 6337                                                         2/23/2005 08:17 am (fblackmo) employee was putting oil can into side compartment of lube truck. The wind was blowing and blew something into left eye causing a corneal abrasion. Supervisor: carlton inman
## 6338                                2/23/2005 08:31 am (fblackmo) employee was operating a jack hammer cutting asphalt when, jack hammer got hung in road. Employee was pulling on jack hammer when it kicked back striking him on his left knee. Supervisor: terry shaw
## 6339                                    2/23/2005 08:44 am (fblackmo) employee was removing a salt spreader. Employee was on top of the spreader hooking the chains and fell between the gates causing injury to his right leg and left shoulder. Supervisor: bill price
## 6340                                                             2/23/2005 09:46 am (fblackmo) employee was removing swivel cylinder from back hoe bucket. Metal swivel fell on air line cutting it off. The air blew dirt into employees eyes. Supervisor: l. T. Garner
## 6341             2/23/2006 02:19 pm (blgay) employee was walking through equipment shop, when his right foot struck against a three step stool that was stored in work bay. Employee lost his balance and fell, striking face on concrete floor. Supervisor: danny lewis
## 6342                           2/23/2006 03:33 pm (blgay) employee was driving a bearing on a mowing machine, while holding punch with left hand hammer glanced off, causing right thumb to come in contact with punch, cut thumb on right hand. Supervisor: g. D. Nance
## 6343                                                                                                2/23/2006 03:44 pm (blgay) employee was attempting to lay driveway pipe and pulled his back the wrong way. Employee now has lower back pain. Supervisor: g. D. Dowdy
## 6344                                                                   2/23/2006 03:52 pm (blgay) employee was dragging cut brush to a chipper, when lifting up to place on chipper, some limbs fell and poked into lower right arm below elbow. Supervisor: r. E. Joyce
## 6345         2/23/2006 04:02 pm (blgay) employee was driving swb dump truck, when outside wheel ran off road. Employee slowed to pull vehicle back on to pavement and suddenly lost control of vehicle. Vehicle spun and flipped, landing on the north bound shoulder, v
## 6346                                                                                                                         2/23/2006 11:42 am (blgay) employee was hit in the eye by strap while she was stabilizing boxes that were falling. Supervisor: maude creech
## 6347                                                                     2/23/2006 11:55 am (blgay) employee was working in shop, when an unpredictable wind gust blew through open shop doors, blowing a small piece of metal into the right eye. Supervisor: glen wade
## 6348         2/23/2006 12:07 pm (blgay) employee raised the screen on the salt spreader to shovel salt from the side of the spreader. Employee was standing on the side rail of the dump bed when the screen fell and hit him on the right arm from the elbow to the wri
## 6349         2/23/2007 09:28 am (speedin) employee was at quarry to be loaded with class b stone. A stone fell off the loader as his truck was being loaded. The stone hit the roof of the truck and bounced into the drivers side window and hit him on his left arm. S
## 6350          2/23/2007 09:51 am (speedin) employee was picking up brush from a ditch to put into the chipper, when a stick hit him in the right eye. Employee had previously been wearing his safety glasses, but glasses fogged up, and employee put glasses on top of
## 6351                                  2/23/2007 10:10 am (speedin) employee was cutting tree off r-o-w when chainsaw became lodged in tree. Employee attempted to pull chainsaw free from the tree and in doing so pulled a muscle in his back. Supervisor: scott gibson
## 6352                                                                                                                                                                       2/23/2007 11:40 am (speedin) employee was picking up ramp on trailer supervisor: john edmonds
## 6353                                                                                                2/23/2007 12:02 pm (speedin) employee bent over to pickup concrete test cylinders and pulled lower back when twisting to place in truck. Supervisor: darin l. Waller
## 6354                     2/23/2011 02:01 pm (fblackmo) employee was repairing a work float. As he stepped onto the float to take a measurement a board gave way and his left leg went through and scraped a nail tearing a part of his skin. Supervisor: franklin granda
## 6355                                                                                                                          2/23/2011 02:16 pm (fblackmo) employee was walking up steps into the building when, she fell forward causing the injury to her right knee.
## 6356                                                                                                                                2/23/2011 03:59 pm (fblackmo) employee was removing hoses from truck when wind blew dust into his left eye. Supervisor: brady fisher
## 6357                                                        2/23/2011 12:05 pm (fblackmo) employee was cutting a 3 x12 inch piece of metal and while attempting to adjust metal, he stuck his hand into the shear while it was in operation. Supervisor: david mutschler
## 6358                                                                                                  2/24/2004 02:58 pm (fblackmo) employee was cleaning out file cabinets when, the overhead light fell striking her on the top of her head. Supervisor: h. D. Wiggins
## 6359                                                                                                                2/24/2004 03:08 pm (fblackmo) employee was tightening bolt when, the ratchet slipped causing the injury to his center finger. Supervisor: t. L. Gray
## 6360                                                                                                                                           2/24/2004 03:58 pm (fblackmo) employee was moving equipment when, she felt pain in her back. Supervisor: michelle g. Long
## 6361                                                                                           2/24/2004 10:00 am (fblackmo) employee states he slipped on ice and fell causing the injury to his left leg/ankle. Supervisor: kent d. Boyer 04/19/2004 07:38 am (gwhite)
## 6362                                                                                              2/24/2004 10:11 am (fblackmo) employee states while getting kitty liter off back of truck h, slipped and fell causing the injury to his back. Supervisor: r. J. Monroe
## 6363                                                                            2/24/2004 11:08 am (fblackmo) employee was walking across the parking lot in bridge yard when, he slipped and fell due to ice. Supervisor: jeremy b. Creech 7/8/2004 07:50 am (kbarefoo)
## 6364                                                                                                             2/24/2004 11:18 am (fblackmo) employee was lifting hay from trailer to truck when, he felt pain in his right shoulder area. Supervisor: w. W. Childress
## 6365                                                                                                                 2/24/2004 11:27 am (fblackmo) employee was walking toward the maintenance building when, he slipped and fell on the ice. Supervisor: w. L. Thompson
## 6366          2/24/2004 11:37 am (fblackmo) employee was operating a dump turck hauling material to a pipe replacement job site on an unpaved road. The truck hit a hole in the road bouncing employee up and down causing him to strike his head on the top of the cab.
## 6367                                                                                                2/24/2004 11:47 am (fblackmo) employee states while exiting truck she, slipped and fell on ice causing the injury to her back and elbow. Supervisor: b. J. Berryhill
## 6368                                                                                                                                      2/24/2004 11:58 am (fblackmo) employee was picking up mail bin when, she felt pain in her back. Supervisor: kimberly l. Canady
## 6369         2/24/2006 12:36 pm (blgay) employee was in the process of breaking the drill bit from the rod, when the split o ring holding the rod slipped. In doing so, it caused the rod to drop, which caught his finger between the clutch handle assembly on the mac
## 6370         2/24/2006 12:45 pm (blgay) employee was doing maintenance on 441. The sidewalk on the road is lower than the pavement and when he stepped onto the road, he tripped over the crub and fell on his arm, dislocating his left elbow. Supervisor: james r. Ash
## 6371          2/24/2009 12:21 pm (blgay) employee was unloading a spreader from a truck. The chain broke causing him to fall to the ground. Later that night employee went to the hospital and they said he was bruised and would be sore. Supervisor: robert hollifield
## 6372         2/24/2009 12:32 pm (blgay) employee was bent over fastening his chainsaw chaps, when a tree limb struck his head. A co-worker was clearing brush from a slope above the injured employee. A gust of wind blew the tree limb that struck the employee, causi
## 6373                                                                                               2/24/2010 02:41 pm (fblackmo) employee was working with another co-worker carrying plow blades to truck when, he felt a pop to his right knee. Supervisor: joyce brim
## 6374                                                                                             2/24/2010 02:54 pm (fblackmo) employee was helping another employee pick up snow plow cylinder when, his right hand thumb got caught in hole. Supervisor: mike jefferys
## 6375                                       2/25/2004 01:27 pm (slee) mechanical failure- steel pin in the swing arm broke causing the boom to fall and strike an employee. The steel pin is located in a housing bearing where it cannot be checked or seen for defects.
## 6376                                                                                                               2/25/2004 04:10 pm (fblackmo) employee was climbing out of dump truck when, she slipped causing the injury to her left knee. Supervisor: w. T. Teague
## 6377                                                                    2/25/2004 04:32 pm (fblackmo) employee was walking to parking lot when, she stepped up on the curb she lost her footing and fell causing the injury to her left foot. Supervisor: dolphine clark
## 6378                                                                                  2/25/2004 04:44 pm (fblackmo) employee was dismounting form the bed of a tandem dump truck when, his foot slipped causing the injury to his lower back. Supervisor: t. W. Anderson
## 6379                                                      2/25/2004 04:52 pm (fblackmo) employee was assisting wrecker operator pull a small dump truck out of ditch when, he lost his footing causing the injury to his back and ribcage area. Supervisor: g. K. Dozier
## 6380                                                                                                                                               2/25/2005 10:35 am (fblackmo) employee was cutting limbs when, twig went into his right eye. Supervisor: van b. Ellis
## 6381                                                                                                  2/25/2008 10:54 am (blgay) employee had returned form lunch and was talking on the phone, when she passed out and hit her head on the floor. Supervisor: gary neal
## 6382          2/25/2009 11:01 am (blgay) employee was replacing a sign on sr 3452. He had both hands on a hammer and was knocking bolts off so that the old damaged sign could be replaced. Employee swung hammer and missed the bolt, hitting the edge of the sign with
## 6383         2/25/2009 11:11 am (blgay) employee was cleaning a spreader and putting it back on track. Employee was pushing on it to align it into position, when he felt a pain in right shoulder from twisting the wrong way and applying too much pressure. Superviso
## 6384         2/25/2010 07:22 am (blgay) employee was repairing a restricted shop air line. Employee was opening the cut off valve when suddenly air shot out with rust. This caused a bad abrasion and embedded rust into the tissue on his left hand above the thumb. S
## 6385         2/25/2010 07:34 am (blgay) employee was riding with single axle dump truck with salt spreader and plow to green river cove, sr 1151 to push snow off and get stranded motorist off of roadway. When truck got to the motorist, they got out to look and emp
## 6386                                                                 2/25/2010 07:44 am (blgay) employee was keeping the suction hose free from debris, to keep the pump going. The next day employee had a knot come up on his right hand. Supervisor: wendell chastain
## 6387         2/25/2011 01:04 pm (fblackmo) employee was reinstalling electrical control cabinet for the void propulsion unit which is a confided space with limited overhead hight. While handling the control cabinet, employee strain right side of rib area. Supervis
## 6388                                                                          2/25/2011 01:34 pm (fblackmo) employee was carrying material not used back up the 30 degree incline to the truck. Employee felt pain in his abdominal area. Supervisor: louis wetherington
## 6389                                                                                   2/25/2011 01:47 pm (fblackmo) employee was driving dump truck (hauling) to project site and jammed his lower back on the hard seat due to bouncing movements. Supervisor: j. Long
## 6390                                    2/25/2011 03:07 pm (barnes) employee was removing a hydraulic hose. While pulling on it, the fitting came a loose and the employee hit his left shoulder on the plow. Employee injured his shoulder. Supervisor: floyd e. Conner
## 6391         2/25/2011 03:59 pm (barnes) employee had a piece of metal lodged in his eye while he was changing a tire. Employee attempted to wash the metal out of his eye and he felt better. That night employee experienced more pain. When the employee came to work
## 6392                                                                                                           2/25/2011 10:05 am (fblackmo) employee states while spraying his foot slipped on mulch causing minor pain in his lower back area. Supervisor: chips vause
## 6393         2/26/2008 07:52 am (blgay) employee was working in a closed off work zone on hwy us 74 in the medium in front of preachland polkton school picking up rip rap by hand that the back hoe couldn't get up. When he picked it up, he felt a little sting in hi
## 6394                                                                                           2/26/2009 06:37 pm (fblackmo) employee was removing broke 4x4 wooden sign post from ground by hand when, he felt pain in his lower back area. Supervisor: dewey f. Pierce
## 6395                                                                                                                 2/26/2009 08:29 am (fblackmo) employee fell from body of truck onto the ground. Employee felt pain in his right elbow area. Supervisor: kevin baker
## 6396         2/26/2009 08:43 am (fblackmo) employee had delivered ncdot vehicle to dot equipment depot for pm. While walking around parked vehicle to leave keys to rail division vehicle, employee stepped on a section of uneven concrete pavement, turn left ankle, a
## 6397                                  2/26/2009 09:02 am (fblackmo) employee was leaving driver license office to conduct a road test when, she stepped off curb, lost balance, and fell face first to ground. Employee felt pain in right ankle. Supervisor: lori cantu
## 6398                                                                                2/26/2009 09:16 am (fblackmo) employee was walking down a slope coming from the railroad tracks when, he slipped on some loose rocks falling on his back. Supervisor: g. J. Liverman
## 6399                                                                      2/26/2010 03:03 pm (blgay) employee was exiting vehicle to help flag, when he stepped down, loss his footing and slipped on some ice causing him to fall in roadway. Supervisor: john springer
## 6400         2/26/2010 03:39 pm (blgay) employee was in the bucket truck cutting trees from right of way. As employee started down to refuel the chainsaw, he was holding onto the hand rail. His left middle finger got caught between the cut limb and hand rail, pinn
## 6401                                                                                                                     2/27/2008 02:39 pm (fblackmo) employee felt ringing in both ears while entering the engine room-returned to main deck. Supervisor: albert oneal
## 6402                                                                                                                               2/27/2008 03:01 pm (fblackmo) employee threw three limbs into truck bed and felt pain in his right shoulder. Supervisor: iris mccombs
## 6403                                                  2/27/2008 03:18 pm (fblackmo) employee has begun to experiencing neck / shoulder pain while working at her desk. Pain has increased, and now includes some numbness on her right side. Supervisor: p. P. Mansfield
## 6404                                                                             2/27/2008 04:18 pm (fblackmo) employee was hauling rocks when, he ran off the shoulder of the road into a creek. Employee had lacerations to face and right arm. Supervisor: vann price
## 6405                                                     2/27/2008 04:39 pm (fblackmo) employee was attempting to adjust forks on loader to fit lift points on salt tanks when, he mashed his right center finger between the rods on the fork. Supervisor: chris taylor
## 6406         2/27/2009 09:37 am (blgay) employee was using the tractor sweeper when something blew into employees right eye. Employee thought nothing about it until next morning when it was irritated and red. Employee reported incident to Mr. Cochran the next morn
## 6407           2/27/2010 09:23 am (fblackmo) employee was plowing snow on state road when he failed to stop at a stop sign; private own vehicle struck employees plow. Employee felt pain in his lower back and left shoulder. Supervisor: michael j. Vann 03/03/2010 09
## 6408                                                                                                                            2/27/2010 09:39 am (fblackmo) employee was opening a box when he punctured his left center finger on a staple. Supervisor: mike jefferys
## 6409                                                                                                                                 2/28/2005 02:33 pm (fblackmo) employee was stepping from the truck when, she felt pain in her right knee. Supervisor: glenn barnett
## 6410                                                                                      2/28/2005 10:38 am (fblackmo) employee was moving out of the way of a falling tailgate when, he struck his knee against the air compressor hitch. Supervisor: doug williams jr
## 6411                                                                                                           2/28/2005 11:19 am (fblackmo) employees fingers was caught between the bin box door while climbing down off of utility truck. Supervisor: d. M. Honeycutt
## 6412                                                                                                                          2/28/2005 11:33 am (fblackmo) employee was unloading buckets of grass seeds when, trash went into his left eye. Supervisor: william dodson
## 6413                                                                                                                             2/28/2005 11:46 am (fblackmo) employee was moving boxes full of chemical when, she felt pain in her left wrist. Supervisor: chris vause
## 6414                                                                                                                                        2/28/2005 12:11 pm (fblackmo) employee was lifting concrete when, he felt pain in his lower back. Supervisor: k. C. Bachelor
## 6415         2/28/2007 04:13 pm (speedin) employee was driving a tande dump truck on his way back to the office. A private vehicle pulled out in front of him at a intersection, employee hit vehicle. Employee's left shoulder, elbow and knee struck nsided of the tru
## 6416         2/28/2007 04:33 pm (speedin) employee was cleaning his boots off on a boot brush outside the office door. The boot brush is not mounted down, when employee pushed his boot across brush it caused brush to slide and employee twisted his left knee. Super
## 6417          2/3/2006 10:01 am (blgay) employee was trying to tighten a plow bolt, to attach a blade on a loader bucket. The employee was wearing mechanic gloves, while using an air gun that was in the right hand and the left hand was holding pressure on top of b
## 6418                                                                                         2/3/2009 12:12 pm (fblackmo) employee was trying to unscrew a cap to a filter on the salt brine applicator when, he felt something pop in his elbow. Supervisor: tim raynor
## 6419                                                                                            2/3/2011 03:15 pm (fblackmo) employee was reaching back to get sprayer with his left hand when, the weight turned his left wrist causing pain. Supervisor: shelton james
## 6420                                                 2/3/2011 03:29 pm (fblackmo) employee was changing marker light on truck that had been left on when, he stepped off the lift falling into the wall. Employee fractured his left collarbone. Supervisor: r. W. Feher
## 6421                                                                                                                2/3/2011 03:57 pm (fblackmo) employee was bending over to pick up a piece of trash when a tree limb went into his right eye. Supervisor: mark conner
## 6422                                                                                                                               2/3/2011 04:07 pm (fblackmo) employee stepped out of vehicle onto uneven pavement twisting his left ankle. Supervisor: t. L. Jernigan
## 6423                                                                                                                     2/3/2011 06:26 pm (fblackmo) employee slipped on the decline of the aft ballast tank void and bumped his right elbow. Supervisor: thomas bowser
## 6424         2/3/2011 11:36 am (fblackmo) employee stated that he was traveling east on deep bottom road (snow packed roadway) when, he lost control of the vehicle. Employee experienced a bump on the right side of his head and scratches to his left ring finger. Su
## 6425                                                                                                           2/3/2011 11:56 am (fblackmo) employee was cutting tree limb due to snow when the limb fell striking him on his upper right leg. Supervisor: dwayne warner
## 6426         2/3/2011 12:11 pm (fblackmo) employee was removing snow and ice from state road with snow plow. Plow began to slide sideways on the ice coming to a stop on the shoulder of the road. The plow was immobilize due to ice on the roadway. Employee exited th
## 6427         2/3/2011 12:56 pm (fblackmo) employee walking in parking lot at maintenance yard. Even though he was aware of some spots that were extremely slippery, his feet slipped out from under him. While falling, he tried to catch himself with his hands. In doi
## 6428                                                    2/4/2004 01:04 pm (fblackmo) employee was driving when he lost control of the vehicle due to ice on the road causing the injuries to his neck and shoulder. Supervisor: capt. J. S. Keeter and lt. G. J. Woodard
## 6429                                                                                                                       2/4/2004 01:17 pm (fblackmo) employee slipped while working in a ditch on us 64 causing the injury to his left ankle. Supervisor: l. W. Lyall
## 6430                                                                                                                       2/4/2004 01:27 pm (fblackmo) employee tried to straighten his fall from truck when, he felt pain in his groin area. Supervisor: r. H. Rich jr
## 6431                                                                                                                2/4/2004 01:37 pm (fblackmo) employee was removing front tire when, his fingers was caught between the wheel and brake drum. Supervisor: j. E. Stepp
## 6432                                                                                     2/4/2004 01:51 pm (fblackmo) employee was driving stake in the ground with a brush axe when, the axe slipped causing the injury to his right lower leg. Supervisor: w. H. Roach
## 6433                                                                                                                                         2/4/2004 02:04 pm (jgibson) vehicle 1 was spreading salt. Truck went into a curve and slid off road and down an embankment.
## 6434                                                                                                         2/4/2004 02:10 pm (fblackmo) employee was standing on dump truck when, he lost his grip causing the injury to his left shoulder. Supervisor: t. W. Anderson
## 6435                                                                                                                                                    2/4/2004 02:37 pm (fblackmo) employee hit his right little finger on file cabinet. Supervisor: thomas e. Johnson
## 6436                                                                                                                                2/4/2004 02:59 pm (fblackmo) employee was changing tire on dump truck when, he felt pain in his lower back. Supervisor: james conner
## 6437                                                                                                                       2/4/2004 03:36 pm (fblackmo) employee was picking up trash when, he stumbled and fell causing the injury to his arm. Supervisor: v. G. Scales
## 6438           2/4/2004 03:45 pm (fblackmo) employee was clearing right of way. As he was walking down off slope, he tripped over brush that had been cut and hit his knee over a piece of wood and his right prosthetic arm hit ground causing a crack in the fiberglas
## 6439                                                                                                   2/4/2004 04:03 pm (fblackmo) employee was standing on salt spreader when, he slipped and fell causing the injury to multiple body parts. Supervisor: james conner
## 6440                                                                                        2/4/2004 04:12 pm (fblackmo) employee states he was climbing overhead sign to do inspection. The next morning he started to have pain in his right arm. Supervisor: tim earp
## 6441                                                             2/4/2004 04:18 pm (fblackmo) employee was in the parking lot and was attempting to get to his vehicle to make bank deposit when, he slipped and fell on ice in parking lot. Supervisor: brenda p. Grady
## 6442                                                                                                               2/4/2004 04:24 pm (fblackmo) employee slipped on icy ferry dock causing the injury to his back. Supervisor: k. J. Morris 04/15/2004 09:23 am (gwhite)
## 6443                                                                                                                      2/4/2004 05:05 pm (fblackmo) employee was using a hammer to beat on tailgate when, he lost hearing in his left ear. Supervisor: s. D. Chandler
## 6444                                                                                            2/4/2004 10:39 am (fblackmo) employee was getting materials off the back of truck when, he slipped and fell causing the injury to his left foot. Supervisor: greg godwin
## 6445                                                                                                                              2/4/2004 10:52 am (fblackmo) employee was changing snow blades on motor grader when, felt pain in right shoulder. Supervisor: al smith
## 6446                                                                    2/4/2004 11:12 am (fblackmo) employee was operating state vehicle and left the roadway striking a concrete pillar. The air bag deployed hit employee in his chest area. Supervisor: n. S. Gibson
## 6447                                                                                                             2/4/2004 11:36 am (fblackmo) employee was working with hydraulic jack when, the jack fell striking him on his right hand. Supervisor: kevin lamar cooke
## 6448          2/4/2008 09:53 am (fblackmo) employee reported that while moving the jlg aerial lift to another location onto the shipyard, it became stuck in the sand and while being towed out of the sand, it hit the ledge of concrete causing the lift to shade from
## 6449          2/4/2008 10:13 am (fblackmo) employee wyatt and downey were setting traffic control out for a lane closure on us 421 hwy. Employee downey was standing behind the pickup truck that had the arrow board attached to it when, he answered his nextel phone.
## 6450         2/4/2008 11:16 am (fblackmo) employee was standing by the paint truck watching for traffic when another employee (charles gerganous) fell and rolled into employees right knee causing the injury. Kathy barefoot was contacted on 1/28/07 and has schedule
## 6451      2/4/2008 11:33 am (fblackmo) employee was loading a broken post into bed of pick up. The post slipped from employees hands and he made a quick move to try to catch the post. Employee later informed crew leader that his back was hurt. Supervisor: r. G. Cr
## 6452                                                                                          2/4/2008 11:42 am (fblackmo) employee was putting sign rack into back of 4wd pickup. He turned and hit left knee on pintle hook on back of truck. Supervisor: e. L. Sexton
## 6453                                                                                    2/4/2008 11:51 am (fblackmo) employee was hooking up chain that holds the salt spreader and accidentally hit his hand on the muffler causing a burn. Supervisor: darrell wilkins
## 6454                                                                                                          2/4/2010 01:45 pm (blgay) employee was pulling brush out of packed snow, when limb broke and right knee twisted and he fell down. Supervisor: henry worley
## 6455         2/4/2010 01:59 pm (blgay) employee was bent over picking up a rock to place in the backhoe bucket (ext weight 50-60 pounds). The employee stated the his back became tight at this time. Returning to the shed in a flat dump, employees back became very s
## 6456                                                                2/4/2010 02:10 pm (blgay) employee was installing a snow plow on a truck using a pry bar to align plow pin. Pry bar slipped and hit him in the mouth, chipping two teeth. Supervisor: charles hatley
## 6457                                                           2/4/2010 02:27 pm (blgay) employee started to slide while plowing road. Snow plow grabbed and jerked employee forward, causing him to hit his left knee of dashboard of truck. Supervisor: harry williams
## 6458                                                                                        2/4/2010 02:46 pm (blgay) employee was going to hang up rubber boots in boat house and pulled door open and felt a sharp pain in right shoulder. Supervisor: tommy culberson
## 6459         2/4/2010 02:54 pm (blgay) employee was cutting a tree limb on sr 11130 and as he was pulling down the limb while other employee was sawing. When employee cut the limb all the way through, employee holding the limb did not get out of the way in time an
## 6460                                                                  2/4/2010 09:03 am (fblackmo) employee was working on ramp light when, he cut electrical tape off the connection the knife slipped causing cut to left center finger. Supervisor: robert w. Norwood
## 6461                                                                                                                           2/4/2010 09:27 am (fblackmo) employee was picking up bags of concrete when, he felt pain in his lower back area. Supervisor: carlis smith
## 6462          2/4/2010 12:41 pm (blgay) employee was driving north on pine hill road, when pov started pulling out of driveway. Employee hit brakes and swerved to Miss Pov. Employee lost control of vehicle, crossed center line, hit embankment and truck rolled over
## 6463                                                                                                              2/4/2011 01:45 pm (fblackmo) employee was moving limbs from snow storm when one of the limbs struck him in his left eye. Supervisor: ronnie wainwright
## 6464                                                                    2/4/2011 02:00 pm (fblackmo) employee and crew was trimming trees on state road when the ground caved in. Employee fell in a hole causing injury to his lower back area. Supervisor: john farrow
## 6465         2/4/2011 02:21 pm (fblackmo) employee was going across intersection when private vehicle struck the passenger side of the his vehicle. Employee stated no physical injuries and have refused medical treatment at the time of accident. Supervisor: cathy h
## 6466         2/4/2011 03:57 pm (barnes) employee was attempting to make a left hand turn onto purley church road when a private citizen passed several cars that were behind the salt truck and struck the plow of the truck. Employee reported to work the next day wit
## 6467          2/4/2011 04:36 pm (barnes) employee was jacking a tractor up to change a flat tire. While installing another jack to raise the tractor higher, something slipped and caught his thumb on right hand between the tractor and the jack. Employee injured his
## 6468                                          2/4/2011 10:29 am (fblackmo) employee was getting out of car when his foot slipped on ice causing him to lose his footing. Employee fell back onto the car causing pain to his lower back. Supervisor: samuel j. Frederick
## 6469                                                                                                                                               2/4/2011 10:44 am (fblackmo) employee was stepping off cap when he turned his left ankle. Supervisor: james m. Rogers
## 6470                      2/4/2011 10:55 am (fblackmo) employee was leaving work for the day when he slipped on ice that was remaining on steps from earlier in the week. Employee injuries consists of lacerations to his right arm and hand. Supervisor: david hinnant
## 6471                                                                                                                                                           2/4/2011 11:10 am (fblackmo) employee bumped his right elbow on fuel tanker. Supervisor: richard dewhurst
## 6472         2/4/2011 11:31 am (fblackmo) employee was leaving office area to assist with removal of snow plows from trucks. At the corner of office under the canopy there is a raised sidewalk. Employee walked from the raised sidewalk toward the parking area and s
## 6473                                           2/4/2011 11:44 am (fblackmo) employee was exiting rear entrance door and slipped on ice that accumulated at entrance way. Employee twisted while falling and hit his head on corner of doorway. Supervisor: ronald norris
## 6474                                                                                                              2/4/2011 12:52 pm (fblackmo) employee was tighting a nut with the socket wrench when it slipped and struck him on the nose. Supervisor: bradley burton
## 6475                                                                                                                                         2/5/2007 04:01 pm (fblackmo) employee was moving filing cabinet when, he felt pain in his lower back. Supervisor: c. D. Lee
## 6476                                                                         2/5/2007 04:27 pm (fblackmo) employee got of truck and was walking over to sign at intersection when, he stepped in a deep hole causing injury to his right leg. Supervisor: barry t. Coble
## 6477                                2/5/2008 03:48 pm (blgay) employee was tightening ratchet strap, when strap popped off of hooking position. End of strap struck employee in the face, cutting his right eye lid and requiring 4 stitches. Supervisor: gary r. Cooper
## 6478                                                                                                                                  2/5/2008 09:25 am (fblackmo) employee was picking up tool box when, he felt pain in his right shoulder. Supervisor: jim t. Wiggins
## 6479                                                                                                 2/5/2009 01:12 pm (blgay) employee was loading calcium chloride and the hose burst and threw calcium back into employees face and eyes. Supervisor: ronald lisenbee
## 6480        2/5/2009 08:01 am (blgay) employee was making repairs to spinner extension frame on salt spreader. A piece of rusty metal flaked off falling into employees left eye. Employee was wearing safety glasses at the time of incident. Supervisor: d. J. Johnson
## 6481          2/5/2009 08:12 am (blgay) employee was cutting limbs from a downed tree. The tree rolled toward employee when he cut a limb. While attempting to move backward away from the tree, his foot became tangled in briars and honeysuckle vines, causing him to
## 6482         2/5/2009 08:27 am (blgay) employee stated that he pulled a muscle in his left shoulder while pulling on a bale of hydromulch that had become stuck when pallet of lime had shifted against the hydro mulch during transport to the job site at phillipsvill
## 6483         2/5/2010 10:27 am (fblackmo) employees' bucket of boom truck was struck by "renewal onsite trucking company". Employee was thrown form bucket onto the top of trailer and left hanging form the safety harness that was attached to the boom. Employee felt
## 6484                                                                                                                                2/5/2010 10:50 am (fblackmo) employee was loading bags of ice melt when, he felt pain in his lower back. Supervisor: brian k. Glover
## 6485                                                                                                         2/5/2010 11:01 am (fblackmo) employee was leaving office when, he slipped and fell on ice causing injury to right side chest wall. Supervisor: c. N. Vaughn
## 6486         2/6/2006 01:49 pm (blgay) employee was performing an emissions audit at the above listed station as part of job responsibilities. Employee was walking to office when she slipped on oil and oil residue on the floor of the garage, injuring left knee. Su
## 6487                                                                                                       2/6/2006 01:59 pm (blgay) employee was walking into the rear of the building when she missed the step up to the sidewalk and fell. Supervisor: richard howard
## 6488         2/6/2006 02:05 pm (blgay) employee was putting tarp on the tandem. He had his left leg in the truck bed and sitting on the rail. He swung his right leg over and hit the tarp bar on the rail on the steps. It threw him off balance and he came down in th
## 6489         2/6/2006 08:37 am (blgay) employee was cutting vegetation off a slope on freeway drive, when a limb got hung up in kudzu and came down on his head hitting him in the eye through his glasses. Employee has pain in the cornea area of eye. Supervisor: r.L
## 6490                                                               2/6/2006 08:48 am (blgay) employee was putting up temporary signs on side of the road. When employee stepped out of the truck and stepped in a hole, twisting his ankle. Supervisor: james d. Wilkins
## 6491         2/6/2006 09:00 am (blgay) employee was in bed of dump truck adjusting office debris so tarp could be extended over bed without getting caught. Employee was getting down and slipped, causing him to fall against side of truck. This caused a shoulder inj
## 6492                                    2/6/2006 09:13 am (blgay) employee was walking down steps from 2nd floor, when left foot didn't make the step, causing employee to fall against step. Lower back hit the step and landed sitting on step. Supervisor: linda hill
## 6493                                                                                  2/6/2006 09:25 am (blgay) employee was checking heater in bus for inmates, when he stuck his hand down toward heater motor, the sheet metal cut his hand. Supervisor: w. J. Krider
## 6494                                                                                                   2/6/2006 09:50 am (blgay) employee was picking up dead animals on wildlife road, when employee slipped on mud and twisted left knee. Supervisor: l. Michael burke
## 6495                                                                              2/6/2007 02:58 pm (fblackmo) employee was driving imap truck to debris site when, truck was rear ended by a private vehicle. Employee felt pain in his back. Supervisor: sean epperson
## 6496                        2/6/2007 03:47 pm (fblackmo) employee was opening a tailgate. When he pulled the pin, the weight of the mulch pushed the tailgate down causing the chain to catch thumb between the chain and the bed of the truck. Supervisor: h. E. Worley
## 6497         2/6/2007 09:01 am (fblackmo) employee was spreading salt on us 25. When he entered onto an elevated bridge the rear truck started sliding on the ice. When the truck reached dry pavement, it caught and turned over on the drivers side. Employee felt pai
## 6498                                                                                                      2/6/2007 09:21 am (fblackmo) employee was hanging salt spreader on rack. Employee fell off rack and landed on his left side on gravel. Supervisor: t. M. Smith
## 6499                                                                                                                            2/6/2007 09:32 am (fblackmo) employee was carrying gun on crack sealing machine when, he felt pain in h is back. Supervisor: kelly perry
## 6500                                                                           2/6/2008 03:58 pm (blgay) employee tripped over camera station, causing employee to fall on left knee and divider, injuring knee and cutting back of left leg. Supervisor: b. Darryl pike
## 6501                                                  2/6/2008 04:09 pm (blgay) employee was driving a dump truck, spreading sand. Employee hit a patch of black ice, causing truck to over turn on the drivers side, injuring employees back. Supervisor: ranette davis
## 6502                                                                                                 2/7/2005 02:24 pm (fblackmo) employee was picking up trash bags along side of the road when, he felt pain in his lower back & right leg. Supervisor: patrick norman
## 6503                   2/7/2005 03:09 pm (fblackmo) employee was removing tailgate from truck with electric chain fall. Tailgate became lodged in truck. As employee tried to pry tailgate out, it came unhooked, falling on employee right hand. Supervisor: m. R. Ward
## 6504         2/7/2005 03:47 pm (fblackmo) employee was attempting to lift the hood of the tandem dump truck and hood became difficult. Employee jerk harder to lift hood, causing injury to left shoulder, upper left forearm and lower left forearm feeling a sharp pai
## 6505                                                                                                              2/7/2005 04:02 pm (fblackmo) employee was standing on top of brick head wall, stepped off onto ground and turned ankle over. Supervisor: b. R. Knowles
## 6506                                                                            2/7/2005 04:12 pm (fblackmo) employee was distributing rip/rap in plant bed on 485, a piece of rock was blown into her eye by swirling winds, caused by traffic. Supervisor: tim simpson
## 6507                                                                                              2/7/2005 04:21 pm (fblackmo) employee states while going down the ladder to car deck he, slipped and fell on ice causing injury to his back. Supervisor: donald austin
## 6508                                                                                                          2/7/2005 12:31 pm (fblackmo) employee was closing tailgate when, he caught his center finger between the gate and locking pins. Supervisor: emmitt bullman
## 6509          2/7/2006 03:16 pm (blgay) employee was loading a water tank, when other employee he was helping dropped his end of the water tank, all the weight shifted to to Mr. Watson. Employee stated "he felt sharp pain in his back. " supervisor: iris h. Mccombs
## 6510                                                                                                                                                  2/7/2006 03:27 pm (blgay) employee unsure of what happen. Twisted ankle picking up boxes. Supervisor: wayne currie
## 6511                                                                                                            2/7/2006 03:38 pm (blgay) employee was installing work zone signs and he turned around, lost his balance and fell into sign rack. Supervisor: joel riley
## 6512                                                                         2/7/2006 09:11 am (blgay) employee was working in polk county on debris removal, when he stepped in a ditch to remove limbs and debris and slipped on the wet leaves. Supervisor: don smith
## 6513                                                                  2/7/2006 09:22 am (blgay) employee was picking up a piece of deteriorated cement; when he lifted it, it fell apart and struck the employee on the top of his right foot. Supervisor: j. E. Chapman
## 6514                                                                               2/7/2007 08:06 am (fblackmo) employee was removing cones from accident when, his foot slipped out from under him causing the injury to his left foot/ankle. Supervisor: sean epperson
## 6515                                2/7/2007 08:29 am (fblackmo) employee was changing tire, stood up, bumped his back on cabinet causing him to loose balance and fall. Employee tired to catch himself causing injury to his right hand/wrist. Supervisor: mick duncan
## 6516                                                                                  2/7/2008 03:13 pm (blgay) employee was driving a bolt out of a wheel guard. The hammer glanced off the driving pin, striking first finger on left hand. Supervisor: terry j. Davis
## 6517                             2/7/2008 03:25 pm (blgay) employee was removing flooring from a lowboy trailer. Employee was removing a board with a pry bar. The board broke and mashed his finger between pry bar and metal frame of trailer. Supervisor: j. E. Stepp
## 6518                                                                      2/7/2008 03:40 pm (blgay) employee was cutting trees from right of way and the trees were covered with poison ivy, causing poison ivy to cover employees entire body. Supervisor: bill tippett
## 6519                                                                             2/7/2008 08:51 am (fblackmo) employee was monitoring a stream for on-site mitigation project and slipped and fell on a rock causing injury to his right hand. Supervisor: leilani paugh
## 6520                                                                                                          2/7/2008 09:09 am (fblackmo) employee was removing bearings from ring gear, missed chisel with hammer and hit thumb on left hand. Supervisor: daylon lynch
## 6521         2/8/2005 08:58 am (fblackmo) employee was removing a block and tackle hoist, the clip on the hook released swinging the block out. The block swung back striking employee in the face. Employee experience a cut on nose, knocked out one of his upper teet
## 6522                                                                                                                                           2/8/2005 09:15 am (fblackmo) employee was getting into dump truck when, he felt his right knee pop. Supervisor: ed adcock
## 6523                                                     2/8/2005 09:25 am (fblackmo) employee was cleaning shredder when, it began smoking. Employee states the smoke and flames from the machine caused irritation her eyes, nose, and throat. Supervisor: kevin bowen
## 6524          2/8/2007 02:42 pm (fblackmo) employee was using post digger to install a sign, when he felt stiffness & numbness in his left shoulder area. Form 19 was not completed because we thought it would be charged to a previous claim per: kathy barefoot. Afte
## 6525          2/8/2007 03:04 pm (fblackmo) employee was assisting district office move furniture when, he went to the restroom he observed a substantial amount of blood in his stool/toilet. Employee contacted supervisor and was advised to seek medical attention at
## 6526                                                                          2/8/2007 10:11 am (fblackmo) employee was clearing trees and brush from right of way when, he came into contact with poison ivy. Rash developed on face and neck. Supervisor: w. D. Phipps
## 6527                                                                                                                     2/8/2007 12:27 pm (fblackmo) employee was lifting plants and a trailer onto truck when, he felt pain in his lower back. Supervisor: mark conner
## 6528                                                                                2/8/2008 12:41 pm (blgay) employee was giving a driving test. Customer hit a house while backing. At the end of the day, employee said shoulder was stiff. Supervisor: dwight godwin
## 6529                                                                                             2/9/2005 07:18 am (slee) sov was struck in the rear by a tractor-trailer. The impact caused the dump truck to cross the north bound lane coming to a rest in the ditch.
## 6530                                                                                            2/9/2010 02:25 pm (blgay) employee was flagging traffic, when he stepped in a hole on the shoulder of the road and pulled a muscle in his back. Supervisor: edwin austin
## 6531                                                                           2/9/2010 02:52 pm (blgay) employee got out of pickup on icy secondary road while performing debris removal and fell due to slick conditions, injuring his back. Supervisor: k. H. Johnson
## 6532                 2/9/2011 01:02 pm (barnes) employee was working at the salt brine machine. He had to climb onto the machine to push salt down into the holding tank and slipped while doing so. Employee injured his right leg - shin. Supervisor: nanette fogleman
## 6533         2/9/2011 02:20 pm (barnes) employee was pushing salt up in a pile in the salt dome, so that he could load it onto some trucks. While doing so, the front end- loader turned over on its side inside the dome. Employee was visibly shakened and was taken b
## 6534          2/9/2011 03:20 pm (barnes) employee was operating a dump truck plowing the roadway and applying salt/sand due to snow & ice. Vehicle hit an icy patch on a steep roadway. Truck slid and hit guardrail and overturned onto passenger side. Employee compla
## 6535         2/9/2011 04:17 pm (barnes) employee (Mr. Shoaf) was helping chip brush. Another employee was pulling a limb that was leaning against a tree. Employee shoaf moved too close to the tree, and when the other employee pulled the limb, it rolled to the left
## 6536          2/9/2011 04:40 pm (barnes) employee was driving a snow plow. While she was pushing snow, she hit a manhole cover. The truck bounced and her body bounced with it. When her body came back down in the seat, her knee hit the metal gear box. Employee inju
## 6537          2/9/2011 05:09 pm (barnes) employee backed his snow truck#9 into the salt dome on hodges gap road(sr1104). Employee opened spreader screen propping it open with a 4 ft. Handle. Employee proceeded into the spreader to remove clumps of the frozen salt.
## 6538                                                          2/9/2011 05:31 pm (barnes) employee was removing sign from rack. Rack was stuck and when it came a loose, the rack fell on left forearm. Employee had contusion on left forearm. Supervisor: shane edwards
## 6539         2/9/2011 12:24 pm (barnes) employee returning from lunch. When he got out of his car, his left foot slipped on ice causing employee to fall on his left knee. Once left knee slipped, it caused his left elbow to be injured. He also strained his neck. Em
## 6540                                                                                                                                                                                     20 minutes after received required flu vaccine, employee broke out in hives. ()
## 6541                                                                                                                                                                                                                           20% formic acid drop splashed into rt eye
## 6542                                                                                                                                                                                                                        2x6was partially secured causing it to fall.
## 6543                                                                                                                                             3 1/2 weeks ago EE experienced sharp back pain pulling patient to assist getting up, currently has continued back pain.
## 6544                                                                                                                               3 EE's were in transit to a meeting in purchasing when leaving stop sign, the van jerked upon acceleratin throwing her seat to floor.
## 6545                                                                                                                         3 inmates were in a physical confrontation, EE wasassisting breaking up fight, inmates were bleedingand EE was exposed, both hans and r arm
## 6546                                                                                                                                                                                                      3 to 5 sms chemical #4 on hands broke out. Left & right hands.
## 6547                                                                                                                             3 wks of demanding physical work shoveling out plants, tilling, grading, planting, mulching resultedin pain fr rt shoulder down to hand
## 6548                                                                                                                                                                                                                                 3-person carry, injured right wrist
## 6549         3/1/2006 10:26 am (blgay) employee was repairing a door closure, while standing on a ladder. When coming down from ladder, employee missed bottom step. Employee didn't have any pain until later that night, now he has lower back pain. Supervisor: w. S.
## 6550                                     3/1/2006 11:05 am (blgay) employee was stepping out of the blood mobile bus, when employee stepped out, all his weight was on his right leg and his knee bent backward, hyper-extending his right knee. Supervisor: phil manley
## 6551                                                                                                                       3/1/2006 11:22 am (blgay) employee has carpal tunnel in both left and right wrist, caused by using office equipment. Supervisor: c. M. Taylor
## 6552                                                                                                           3/1/2007 02:36 pm (speedin) employee was removing forms from concrete wing on knees when felt pain in radiate from right knee. Supervisor: mason thompson
## 6553                        3/1/2007 03:08 pm (speedin) employee was attempting to identify a motor and transmission that was lying on the ground. When employee attempted to turn the motor and transmission on its side, he stained his back. Supervisor t. S. Collins
## 6554                                                                                                              3/1/2007 03:34 pm (speedin) employee was pulling brush to the chipper when turned and/or twisted causing pain in his lower back. Supervisor: jd tucker
## 6555                                                                                    3/10/2004 08:05 am (fblackmo) employee states while lifting a peace of angle iron to cut he, felt pain in his lower back. Supervisor: mark c. Smith 05/14/2004 11:48 am (gwhite)
## 6556                                                                                                     3/10/2004 09:07 am (fblackmo) employee was stepping out of truck (already had a broke foot) when, her foot gave way causing her to fall. Supervisor: devin drye
## 6557                                                                                                          3/10/2005 02:04 pm (fblackmo) employee states while pulling brush out of road, he slipped on the wet grass and fell in the ditch. Supervisor: r. D. Powell
## 6558                                                                                                             3/10/2005 02:22 pm (fblackmo) employee preformed concrete testing on wednesday. Employee experienced pain in his lower back. Supervisor: trey dickerson
## 6559                                                                                                                       3/10/2005 02:31 pm (fblackmo) employee states while keying medical reports she, felt pain in her both hands & wrist. Supervisor: lisa carroll
## 6560                                                                                                                        3/10/2005 02:47 pm (fblackmo) employee was stepping off the side of dump truck when, he felt pain in his left ankle. Supervisor: c. R. White
## 6561                                                         3/10/2005 02:55 pm (fblackmo) employee and another employee was holding the door while another employee was removing jackhammer. Wind blew the door striking employee in the head. Supervisor: s. G. Dillon
## 6562                                                                3/10/2005 04:20 pm (fblackmo) employee states while installing shore cable on the brow at extreme low tide the cable broke causing him to fall. Supervisor: ron mercer 3/16/2005 08:41 am (kbarefoo)
## 6563                                         3/10/2005 12:40 pm (fblackmo) employee states while working on a tile installation job, the adhesive caused him to loose his sense of smell and taste. The following week he started having headaches. Supervisor: vern lee
## 6564         3/10/2006 09:25 am (fblackmo) employee was driving to the pit for a load of material when, a private vehicle approaching the intersection failed to stop. The private vehicle struck the dump truck causing employee to fell pain in his lower back and ank
## 6565                                                                                                   3/10/2006 09:42 am (fblackmo) repetitive motion of handling concrete cylinders over the years. Carpal tunnel syndrome in right wrist. Supervisor: johnny hammonds
## 6566                 3/10/2006 09:59 am (fblackmo) employee was helping to carry a concrete lid to place over a drop inlet on vickers store road when, he stepped in a low area and the weight of the lid shifted causing pain in his arm/elbow. Supervisor: k. R. Davis
## 6567         3/10/2006 10:16 am (fblackmo) employee was replacing right rear tire on f150 in squatted position when he placed the tire on truck. Employee stated he also assisted in removing side boards from a flatbed the same day. Employee felt pain in left side a
## 6568                                                                                                                              3/10/2006 10:50 am (fblackmo) employee was picking up rack off of sign when he felt pain in his right forearm. Supervisor: kelly perry
## 6569         3/10/2008 11:37 am (blgay) employee was loading staging on hangers attached to beams under bridge. Employee moved under staging to slide it over to the other side of hanger and hit his head, causing a cut to the top of head requiring 6 stitches. Super
## 6570                                                                      3/10/2009 02:40 pm (fblackmo) employee was performing bridge survey when, he pick up a piece of wood and threw it out of his way. Employee felt pain in left elbow. Supervisor: roger d'jernes
## 6571                                                                                           3/10/2009 02:59 pm (fblackmo) employee was pothole patching when, he got out of the truck, he stepped in a small hole, and twisted h is left ankle. Supervisor: ben nelms
## 6572                                                 3/10/2009 11:37 am (blgay) employee was prying a pilot bearing and the bearing came out and struck the employee on the head, causing a cut to the left side of his face above the eye. Supervisor: robert d. Graham
## 6573                                                                                                                                  3/10/2010 02:21 pm (fblackmo) employee was shoveling dirt for plants when, he felt pain in his lower back. Supervisor: mary frazer
## 6574                                                                                                        3/10/2010 10:54 am (fblackmo) employee states she was leaving out of the restroom when she hit her nose on the corner of the door. Supervisor: tracy hawkins
## 6575          3/10/2010 11:13 am (fblackmo) employee was assisting with loading (small) spreader in back of crew cab single axle dump truck. Employee climbed on top of spreader to remove chains. After employee removed chains, the truck driver began lowering bed of
## 6576                                                                                                    3/10/2010 12:48 pm (blgay) employee claims work related hearing loss during employment at ncdot, without access to hearing protection. Supervisor: k. H. Johnson
## 6577                                                                                                                                               3/11/2004 02:24 pm (fblackmo) employee was exiting vehicle when, he slipped and fell on ice. Supervisor: s. U. Farrar
## 6578                                                          3/11/2004 02:38 pm (fblackmo) employee was removing a rubber tie straps form a load of taped grain straw when, he was hit under the chin by the hook. Supervisor: bill dobson 04/06/2004 01:04 pm (gwhite)
## 6579                                                              3/11/2004 02:49 pm (fblackmo) employee was replacing a nut on blade of motor grader. The wrench slipped causing right thumb to get caught between blade and ratchet handle. Supervisor: jabbo pressley
## 6580                                                                                                                                                  3/11/2004 11:35 am (fblackmo) employee complain of pain in left arm. Repetitive motion. Supervisor: patsy champion
## 6581                                                                                 3/11/2008 07:40 am (blgay) employee was installing sign post on shoulder of road. Weight of post driver shifted, causing him to strain his left shoulder. Supervisor: jason leonard
## 6582                                                                                     3/11/2008 07:54 am (blgay) employee was putting limbs in chipper when log bounced out of chipper, pinching finger between log and chipper hopper frame. Supervisor: m. A. Quick
## 6583                                                                                                            3/11/2009 05:17 pm (fblackmo) employee was walking to maintenance yard when, he tripped (hole) and fell on right knee and side. Supervisor: t. H. Swayne
## 6584                                                                                                              3/12/2004 08:27 am (fblackmo) employee states that she experienced pain in her right arm while performing her daily duties. Supervisor: patsy champion
## 6585                                                                                                                         3/12/2008 02:40 pm (fblackmo) employee was digging a hole with a mattock when, he felt pain in his left shoulder. Supervisor: anthony jones
## 6586         3/12/2008 02:54 pm (fblackmo) employee (green) was standing on one side of hwy 11/55 and another employee (killingsworth) was standing on the opposite side. Both were holding opposite ends of measuring tape when, a vehicle drove across the tape causin
## 6587                                                 3/12/2008 04:15 pm (fblackmo) employee was going to use the weed eater to clear vegetation. She was walking across parking lot when, she stumbled and felt pain in her right upper leg. Supervisor: franklin granda
## 6588                                                                                                                                                               3/12/2008 04:44 pm (fblackmo) employee fell on pvc pipe and cut his upper lip. Supervisor: james bell
## 6589               3/12/2008 04:52 pm (fblackmo) employee was removing a window ac unit from an old building. The window was stuck. Employee pushed up on window, frame broke, and employees hand went through the glass cutting his right hand. Supervisor: j. R. Price
## 6590                                         3/12/2008 05:01 pm (fblackmo) employee was pulling and stretching to remove old timber to replace with new timber when, he felt pain in his stomach area due to being in a awkward position. Supervisor: alton l. Bundy, jr
## 6591                          3/12/2008 05:12 pm (fblackmo) employee was removing a wheel barrow from his pick up to test concrete when, he pinched his right thumb between the wheel barrow and the tailgate causing a cut to his right thumb. Supervisor: shawn mebane
## 6592          3/12/2008 05:18 pm (fblackmo) employee was shoveling asphalt, he stopped to put some asphalt release agent on his tools, in the process of replacing the spraying on the truck. Employee accidentally hit the bottom, spraying Mr. Shearing in the face an
## 6593                                                                          3/12/2008 12:09 pm (fblackmo) employee was walking down stairs on her way to lunch when, she slipped and fell causing the injury to her legs, arms, and knees. Supervisor: neal strickland
## 6594         3/12/2008 12:24 pm (fblackmo) employee went to remove can from the edge of the road with right foot. His right foot struck the can, hot rubber which had been placed in the can by another employee, the tar spout out of the can causing burns to his fore
## 6595                                                        3/12/2008 12:35 pm (fblackmo) employee was working with sealant machine. While holding the sealant wand he turned to the right, felt pain in his back that went down his right leg. Supervisor: a. G. Hunter
## 6596          3/12/2008 12:47 pm (fblackmo) employee and co-worker were taking flange bolts off of a voit unit on the m/v neuse. An impact wrench was being utilized to perform the task. As employee continued to perform the task the threads on the bolts were burned
## 6597         3/12/2009 03:35 pm (blgay) employee and his crew were replacing a cross pipe on sr 1560. Employee was back filling pipe with dirt, using the backhoe. As he was scooping up dirt on the shoulder he struck a rock buried in the shoulder, causing the backh
## 6598                                                                           3/12/2009 04:41 pm (fblackmo) employee was lifting frozen 50lb asphalt bags over his head to dump into a heated trailer. Employee felt pain in his groin area. Supervisor: g. J. Liverman
## 6599                                                                                               3/12/2009 04:53 pm (fblackmo) employee went to step up on porch of facility and tripped on step. Employee fell on right knee and wrist. Supervisor: h. C. Scarborough
## 6600         3/12/2009 05:57 pm (fblackmo) employee was conducting a road test, upon completion of the chest, the customer turn into parking lot traveling approximately 5-10mph striking wooden pole in front of office building. Employee felt pain in shoulders, cent
## 6601                             3/12/2009 09:29 am (blgay) employee was using an air grinder to sharpen and polish mower blades on a work bench locked in a vice. The grinding disc came apart, hit employees left wrist and cut into his skin. Supervisor: melvin furr
## 6602                        3/12/2011 02:14 pm (fblackmo) employee had stopped at burger king to get breakfast. He got out of his truck and walked to the icy sidewalk. He stepped on the sidewalk and slipped and fell on his right shoulder. Supervisor: t. S. Bozeman
## 6603                                                                                 3/12/2011 02:33 pm (fblackmo) employee was walking from the building to the state pick up truck when, he slipped on ice causing injury to his left side. Supervisor: cameron murphy
## 6604                                                                                                              3/12/2011 02:53 pm (fblackmo) employee was walking to her car when, she fell on black ice causing the injury to her hip. Supervisor: renita kaczkowsky
## 6605                                     3/12/2011 03:08 pm (fblackmo) employee was dismounting loader properly when his right leg buckled causing his left leg to swing around and hit a bolt on the right fender bruising his left knee. Supervisor: charles w. Garris
## 6606                                                                                           3/12/2011 05:38 pm (fblackmo) employee started to stand when the chair rolled from under her causing her to lose balance and twist her right knee. Supervisor: mary avery
## 6607        3/13/2006 02:04 pm (fblackmo) employee was working in plant bed, on a slope having to help clear the slope of trees and shrubs. While handling the cut material, the employee was struck repeatedly by limbs, debris, briars, etc... All over, including the
## 6608                                                                                                                    3/13/2007 11:09 am (fblackmo) employee was walking into building when, she slipped and fell causing injury to her knees. Supervisor: todd morgan
## 6609                                                                              3/13/2007 11:49 am (fblackmo) employee was pulling a pull cord on the auger when, the cord stop suddenly causing a jerking affect to right finger and lower arm. Supervisor: jim evans
## 6610                                                        3/13/2008 01:31 pm (blgay) employee was getting chemicals from self in cabinet and a chain saw fell from the self above, when trying to catch the saw it cut employees left hand. Supervisor: roger t. Moore
## 6611                                                  3/13/2008 12:53 pm (blgay) employee was helping to install a tailgate on a tandem dump truck. Employee looked up from the ground to help line up the pins and felt something enter his eye. Supervisor: r. L. Ford
## 6612                                                                            3/14/2006 03:00 pm (fblackmo) employee was talking to trackhoe operator. When finished talking he turned to walk away, stepping in a hole twisting left ankle. Supervisor: bobby leonard
## 6613                                                                                                        3/14/2006 03:23 pm (fblackmo) employee fell while attempting to climb onto the back of a flatbed truck, causing the injury to back. Supervisor: j. D. Tucker
## 6614                                                                                                                                  3/14/2007 02:32 pm (fblackmo) employee was walking in building when, she tripped/slipped on wet pavement. Supervisor: marian perry
## 6615                                                                                                        3/14/2008 01:28 pm (blgay) employee was sawing on a tree that was in a bind, when tree kicked back and hit him in the right knee. Supervisor: david c. Capps
## 6616         3/14/2008 01:40 pm (blgay) employee was driving out ball joints with a drift and hammer. Employee was wearing safety shoes, glasses and had gloves on. Employees middle finger on the left hand came between the hammer and drift tool, causing a laceratio
## 6617         3/14/2008 01:55 pm (blgay) employee was cleaning up debris from the wind the night before. Employee was picking up a heavy log, when he felt something pull in his back. Employee went to grab another limb he felt it again and it hurt even to pick it up
## 6618           3/14/2011 03:58 pm (barnes) employee was filling a tire with air on a backhoe trailer. He noticed a black discolored area on his left ring finger, with no pain and just a bump. The next morning his finger was dark colored more. He was concerned that
## 6619               3/14/2011 05:00 pm (barnes) employee was in door way talking to traffic signal supervisor. Employee had hand resting on door frame. The door was accidently shut, crushing right little finger between door and door frame. Supervisor: phillip eaker
## 6620                                                                          3/15/2006 08:33 am (fblackmo) employee was feeding brush into the chipper when, limbs rolled to the other side of the opening striking the employees right hand. Supervisor: john thomason
## 6621                                                                                                     3/15/2006 08:44 am (fblackmo) employee felt pain in the lower back as he lowered a traffic signal cabinet in the bed of the pickup truck. Supervisor: ken morge
## 6622         3/15/2010 01:04 pm (blgay) employee saw a private citizen hand a cigarette to the inmate flagger. Employee was on the back side of the ditch and stepped to cross the ditch to approach the inmate. The shoulder at the top of the ditch slope collapsed ca
## 6623                                                                                                3/15/2010 01:31 pm (blgay) employee was hooking chains and bunjie cords on a dump truck. When employee stood up, he felt a pop in his back. Supervisor: danny keever
## 6624                                                                                                        3/15/2010 01:56 pm (blgay) employee was working on chipping crew, bent down to pick up a tree limb and lower back started to hurt. Supervisor: c. S. Johnson
## 6625         3/15/2010 02:32 pm (blgay) employee was working on chipping crew, picking up limbs to put in chipper, when he felt a tree limb hit the top of his head. The next thing employee remembered was laying face down in the road, with lacerations to his face a
## 6626                                               3/15/2010 02:54 pm (blgay) employee was in the watauga maintenance yard checking spreader, when he was coming back down his left arm slipped and hit the corner of the bed on the truck. Supervisor: michael b. Smith
## 6627          3/15/2010 12:34 pm (blgay) employee was performing normal job duties. Employee didn't stumble, trip or fall. Employees left knee buckled. Employee went to medical facility on his own, wasn't told to go, but went without ncdot knowledge or approval. S
## 6628                                                                                  3/15/2011 10:40 am (barnes) employee was watching a video in a scheduled first aide class---video viewing caused employee to pass out. Employee injury---na supervisor: ken pruett
## 6629          3/16/2005 08:42 am (fblackmo) employee got in dump body to secure truck cover damaged by high winds. When getting out of the body he placed his right foot on the side rail and shifted all his weight on it. He lifted his left leg over the rail and his
## 6630                                                                                          3/16/2005 09:01 am (fblackmo) employee was unloading backhoe. His hand was between the backhoe and trailer. He mashed his thumb on his right hand. Supervisor: greg jordan
## 6631               3/16/2005 09:24 am (fblackmo) employee states when, completing cdl road test she, hurt her left foot while stepping out of truck. Supervisor: lorrie sineath 3/28/2006 09:15 am (fblackmo) *see claim #41787, get bill approval before paying under t
## 6632                                                                                                                    3/16/2005 09:36 am (fblackmo) employee states while getting out of vehicle during road test she, twisted her left knee. Supervisor: jerry sawyer
## 6633        3/16/2005 11:21 am (fblackmo) employee was driving s. On n. Tryon street at mellow drive. Another vehicle cut in front of him, causing collision with employees car. Employees car impacted other vehicle on right side near the center pillar. Employee exp
## 6634                                                                                               3/16/2005 11:37 am (fblackmo) employee was driving personal pick up in route to job assignment when, he hit a car in the rear due to fog. Supervisor: alvie e. Lee jr
## 6635         3/16/2006 08:51 am (fblackmo) employee were attempting to reset sign. Employee was holding post while employee was removing rusted and branded bolts with hammer and chisel. When last bolt was cut top post with signs dropped, catching employees right t
## 6636                                                                                                                   3/16/2006 09:08 am (fblackmo) employee was walking up steps on m/v southport when, wind blew something in his right eye. Supervisor: jud ferguson
## 6637                                                                                         3/16/2006 09:54 am (fblackmo) employee was sitting at stop red light when, a private vehicle ran into the back of her car. No injuries stated. Supervisor: w. M. Ballentine
## 6638                                                                            3/16/2006 10:31 am (fblackmo) employee was putting a swing post pin in backhoe frame to check the fit when, he moved the pin to align it his fingers was mashed. Supervisor: buddy dixon
## 6639                                                                                           3/16/2007 02:30 pm (speedin) employee was entering office and slipped on a slick area on the floor. Fall caused employee to spain her left ankle. Supervisor: linda hyder
## 6640                                      3/16/2007 02:58 pm (speedin) employee was sawing down a tree that was leaning over road with a chain saw. The chainsaw kicked back, knocking his helmet off, and making a large laceration on his head. Supervisor: j. D. Lusk
## 6641                                                                       3/16/2007 04:37 pm (speedin) employee got sawdust in his left eye while flooring a trailer he was underneath trailer tightening bolts. Employee was wearing goggles. Supervisor: d. F. Holman
## 6642                                                                                        3/16/2007 12:43 pm (fblackmo) employee was loading brake drums onto fork lift when, he caught his left ring finger between the drum and fork lift. Supervisor: d. C. Sherrod
## 6643                                                              3/16/2009 12:08 pm (fblackmo) employee was attempting to help the sign erector to lift the hydraulic post puller from off the truck when, he felt pain in his left shoulder. Supervisor: todd whitaker
## 6644                                                                                                    3/16/2009 12:44 pm (fblackmo) employee was moving tree out of road when, he slipped on straw causing injury to his right shoulder. Supervisor: james van riddick
## 6645         3/16/2011 10:04 am (barnes) employee (Mr. Deese) was part of a crew which had been cleaning snow and ice off of the parking lots in the madison county nc I-26 rest area. He was walking away from a tractor driven by another employee (they had been talk
## 6646                                                                                              3/16/2011 11:35 am (barnes) employee was dragging brush and feeding it into chipper when he felt a pain in his back. Employee injured back. Supervisor: michael wilson
## 6647                                                                      3/17/2004 01:08 pm (fblackmo) employee was driving a dump truck when, he lost control and ran off the shoulder of the road causing the injury to his back and neck. Supervisor: j. E. Burleson
## 6648          3/17/2004 02:22 pm (fblackmo) employee was plowing snow when he met an oncoming vehicle that was over the center line. The employee pulled over the shoulder to avoid a collision. The plow dug into the shoulder and caused truck to spin around in he ro
## 6649                                                                                                                  3/17/2004 02:41 pm (fblackmo) employee states while shoveling dirt to clear curb and gutters he, felt pain in his back. Supervisor: c. H. Winstead
## 6650                                                                                                           3/17/2004 02:50 pm (fblackmo) employee was pulling limbs when, the limb broke causing employee to fall and injure his left hip. Supervisor: b. R. Knowles
## 6651                                                                                                                            3/17/2004 03:00 pm (fblackmo) employee states while bending over to pick up box she, felt pain in her lower back. Supervisor: cliff rudd
## 6652                                                                                                                                      3/17/2004 03:11 pm (fblackmo) employee states while pulling tree limbs he, felt pain in his hands. Supervisor: ronnie woodcock
## 6653                                                                       3/17/2004 04:00 pm (fblackmo) employee reached over from the right side of truck to pull pallet closer to him to pick them up when, he felt pain in his left side. Supervisor: a. L. Smith jr
## 6654                                                                                                                   3/17/2004 04:11 pm (fblackmo) employee was was stepping out of crash truck when, the injury occurred to her left shoulder. Supervisor: ray garren
## 6655                                                                                                  3/17/2004 04:21 pm (fblackmo) employee was tightening nuts on a 3 in valve when, the wrench slipped causing the injury to his left wrist. Supervisor: l. D. Greene
## 6656                                                                           3/17/2004 12:56 pm (fblackmo) employee was loading beads from bags into the tank on a flatbed truck when, the bag slipped causing injury to his right wrist. Supervisor: franklin bullock
## 6657                                                                                                                                        3/17/2006 03:09 pm (fblackmo) employee was climbing in tractor when, he felt pain in his lower back. Supervisor: g. L. Baker
## 6658                                                                      3/17/2006 03:20 pm (fblackmo) employee was using a pocket knife to pry out a parking light on rear of truck when, blade fold up on employees index finger on right hand. Supervisor: mike hamm
## 6659         3/17/2009 03:12 pm (blgay) employee was delivering and picking up mail for office. Driving back from asheville, stopped by flagman in construction site and was hit from rear by private vehicle, causing contusions on head, right shoulder and right knee
## 6660                                                                                                     3/17/2009 03:23 pm (blgay) employee was walking back to pickup and stepped in a hole he didn't see, causing him to twist his left knee. Supervisor: clay murray
## 6661                                                                                                                         3/17/2010 10:46 am (fblackmo) employee claims that he he hurt himself while straining to install a cross line pipe. Supervisor: g. L. Baker
## 6662                                                                 3/17/2010 10:59 am (fblackmo) employee stepped off of m/v buxton jr onto the dredge carolina when, he slipped and bell on the bit causing injury to back and right wrist. Supervisor: albert o'neal
## 6663                          3/17/2010 11:31 am (fblackmo) employee was putting up a road closed sign when he noticed a dog approaching. Employee rush to put the sign post in hole when splinter from wood punctured his left index finger. Supervisor: roderick wyatt
## 6664          3/17/2010 11:43 am (fblackmo) employee was demonstrating to his supervisor how he used a wooden red top stake to measure a pipe diameter. During the demonstration, a splinter punctured his right hand between his thumb and index finger. Supervisor: an
## 6665                                                                                            3/17/2010 11:58 am (fblackmo) employee was inspecting project when stepping out of the vehicle door struck him on top of his head on left side. Supervisor: w. S. Joyner
## 6666                                                                                                                                        3/17/2010 12:54 pm (fblackmo) employee was unloading trash at land field when, he stepped on nail. Supervisor: alfred wilson
## 6667                                                                                                                                  3/18/2004 09:10 am (fblackmo) employee states while operating a loader the door, closed on his left hand. Supervisor: david bowers
## 6668                                                                              3/18/2004 09:21 am (fblackmo) employee was helping another employee lower a tailgate when, he caught his right index finger between the gate and chain. Supervisor: lindsey o ethridge
## 6669                                                                                                                                    3/18/2004 09:37 am (fblackmo) employee was putting sign on truck when, a splinter went into his finger. Supervisor: b. K. Marley
## 6670                                                                                                    3/18/2004 09:50 am (fblackmo) employee was lifting a cardboard box from traffic signal cabinet when, he felt pain in his left shoulder. Supervisor: kelvin peele
## 6671                                                                                3/18/2004 11:19 am (fblackmo) employee was holding a chain used to bind down a spreader to truck bed when, his finger was caught between the chain and truck. Supervisor: d. L. Dean
## 6672                                                          3/18/2005 01:27 pm (fblackmo) employee states she had finished cleaning her desk. She was sitting straddled to open the bottom felt drawer when, the entire left side collapsed. Supervisor: mike campbell
## 6673                                                                                                                                                     3/18/2005 01:39 pm (fblackmo) employee was loading signs when, he slipped and fell. Supervisor: donald griffith
## 6674                                                                                                   3/18/2005 02:13 pm (fblackmo) employee states while loading packages of stop signs into rear of vehicle he, felt pain in his lower back. Supervisor: david greene
## 6675         3/18/2005 03:37 pm (fblackmo) employee was traveling on river road when, the vehicle went off side of road. Employee tried to correct the vehicle when, it over turned. Employee experience a cut over left eye, felt pain both his back and neck area. Sup
## 6676                                                      3/18/2005 04:01 pm (fblackmo) employee was pumping with mud pump out of footing. Hose sunk in mud and would not pump. Employee tried to pull it up when, he felt pain in his back. Supervisor: tim k. Southard
## 6677                  3/18/2005 04:20 pm (fblackmo) employee slipped on ditch bank while exiting ditch, falling on elbow and injuring shoulder. Supervisor: c. M. Conner 3/3/2006 10:03 am (sshort) 3/13/2006 09:58 am (fblackmo) *can not pay any bills containing to t
## 6678                                                                                                                                          3/18/2005 10:34 am (fblackmo) employee states while walking down hallway to cafeteria she, fell. Supervisor: donna brandis
## 6679                  3/18/2005 10:45 am (fblackmo) employee was turning off water valve on the water line running to salt brine tank. Employee was using a vise grip when, vise grips slipped off causing him hand to strike the pressure flange. Supervisor: greg frye
## 6680         3/18/2008 08:40 am (fblackmo) employee states the chute on the chipper was stopped up and employee was using a pipe bar to clean out and the employees foot slipped and his left hand hit the housing blade cutting his thumb on the left hand. Supervisor:
## 6681                                                                             3/18/2008 09:37 am (fblackmo) employee was stepping down from engine compartment and missed his step, causing him to fall backwards, and hitting head on table. Supervisor; albert vann
## 6682         3/18/2009 10:17 am (blgay) employee was loading debris in a dump truck which had been removed from the roadway ditch. The employee heard a pop in his right knee accompanied by intense pain as he was loading a piece of debris by swinging it upward over
## 6683                                                                                                            3/18/2009 10:27 am (blgay) employee was checking for outlet end of culvert pipe, employee slipped and fell, spraining left wrist. Supervisor: wayne king
## 6684                                                    3/18/2009 10:38 am (blgay) employee was changing nozzle on a crack pouring wand, when hot liquid asphalt splattered on employees right hand, resulting in 2nd degree burns to the hand. Supervisor: charles vick
## 6685                                                       3/18/2009 10:43 am (fblackmo) employee was running tree chipper machine when, another employee threw a branch striking Mr. Herring in the head. Employee felt pain in head and neck. Supervisor: steven blake
## 6686                       3/18/2009 10:48 am (blgay) employee went to tighten hose reel by using the hydraulics. Hose slipped out of fitting, striking employee in the mouth busting lips, knocking out one tooth and loosened five other teeth. Supervisor: t. L. Hall
## 6687                                                                                                           3/18/2009 11:01 am (blgay) employee was picking up a block of wood, when employee threw the block of wood, he felt his back pop. Supervisor: j. L. Yelton
## 6688           3/18/2009 11:14 am (blgay) employee was cutting a piece of rope preparing to work with a tree. When cutting the rope the knife slipped through the rope, cutting left middle and ring finger, severing tendons in ring finger. Supervisor: greg mccracken
## 6689           3/18/2010 08:55 am (blgay) employee was walking thur wooded, leaf covered area. His feet slipped out from under him (uneven ground). Employee landed on exposed concrete slab on back, hurting his back. Supervisor: david black 04/13/2010 10:14 am (mem
## 6690              3/18/2011 03:18 pm (fblackmo) employee ran into the back of a tractor while in route to statesville maintenance. Employee received multiple contusion and lacerations. Supervisor: mike jefferys 03/25/2011 03:30 pm (lvaughan) abdomen/intestines, r-
## 6691                                                                                                        3/18/2011 05:46 pm (barnes) employee was doing hand construction, lifting rip rap when he strained his back. Employee injured back. Supervisor: darrell dean
## 6692                                                                                                      3/18/2011 10:32 am (fblackmo) employee was helping another employee (kelly) lift tailgate when, he felt pain in his right shoulder. Supervisor: kelly f. Perry
## 6693                                                                                                      3/18/2011 10:51 am (fblackmo) employee was setting up computer lines for mobile unit when, he was bitten by a spider on his left hand. Supervisor: dean almond
## 6694                                                                                                                3/18/2011 11:18 am (fblackmo) employee states he injured the top of his left foot while running during inspector training. Supervisor: s. M. Watkins
## 6695                                                                                                              3/18/2011 11:52 am (fblackmo) employee smashed his left hand center finger between the drill rig and a rod while welding. Supervisor: jaime love pedro
## 6696                                                                                                                                   3/19/2009 02:58 pm (fblackmo) employee was cutting through brush when, he cut his left pinky finger. Supervisor: terry k. Wheeler
## 6697                              3/19/2009 03:17 pm (fblackmo) employee was using auger to make holes for post ( to mark off reforestation area) when, auger hit something hard in ground causing the handle to striking employee in the mouth. Supervisor: john farrow
## 6698                                                                                            3/19/2009 03:40 pm (fblackmo) employee was reaching into cash drawer to give customer change when, she hit her hand on corner of drawer (metal). Supervisor: donna boone
## 6699                                                                                                       3/19/2010 08:09 am (blgay) employee was cutting wiring harness protector with his knife. Knife slipped out and cut palm of left hand. Supervisor: james stepp
## 6700                                                                                                      3/2/2004 01:20 pm (fblackmo) employee was stepping down inside the bed of a dump truck when, the injury occurred to his right ankle. Supervisor: leroy farrish
## 6701                                                                                                         3/2/2004 01:30 pm (fblackmo) employee was walking down sidewalk when, he slipped and fell causing the injury to his right knee. Supervisor: jackie crumpler
## 6702                                                                                                                  3/2/2004 01:39 pm (fblackmo) employee was using hammer to install mold board when, the injury occurred to his left thumb. Supervisor: a. W. Keeton
## 6703                                                                                                      3/2/2004 01:53 pm (fblackmo) employee was getting out of truck when, he slipped and fell on ice causing the injury to his left hip area. Supervisor: d. S. Lee
## 6704                                                                                                           3/2/2004 09:08 am (fblackmo) employee states he was exposed to carbon monoxide fumes for a period of two years. Supervisor: not stated keyed from form 18
## 6705                                                                                                                                                 3/2/2004 09:19 am (fblackmo) bi-lateral carpal tunnel. Repetitive typing. Supervisor: not stated keyed from form 18
## 6706                                                                                                                                  3/2/2004 09:28 am (fblackmo) employee slipped and fell on ice at the back of shop while coming to work. Supervisor: terry r. Yates
## 6707                                                                                                                       3/2/2004 09:38 am (fblackmo) employee states while sweeping out backhoe a piece of debris blew into his right eye. Supervisor: robert winslow
## 6708                                                                                                 3/2/2004 09:50 am (fblackmo) employee was walking up bridge to complete a inspection when, right foot slipped causing the injury to his back. Supervisor: mark wade
## 6709                                                                                                                            3/2/2004 11:07 am (fblackmo) employee was walking to his vehicle when, he slipped and fell due to snow and ice. Supervisor: kelvin peele
## 6710                                                                          3/2/2004 11:18 am (fblackmo) employee was helping to lift a propane tank into back of dump truck when, he slipped causing the tank to fall on his right hand. Supervisor: w. H. Draper, jr
## 6711                                                                                               3/2/2004 12:52 pm (fblackmo) employee was re-moving a deer from right of way when, he jumped back over the ditch he felt pain in his left knee. Supervisor: d. S. Lee
## 6712                                                                                                                             3/2/2005 02:06 pm (fblackmo) employee states that he twisted his right knee while handing out traffic cones. Supervisor: abdul h. Kalam
## 6713                                              3/2/2005 03:03 pm (fblackmo) employee was sitting at picnic table eating lunch when, another employee kicked the bottom of his seat. Employee states he felt pain in his right upper leg. Supervisor: j. R. Williamson
## 6714         3/2/2005 03:16 pm (fblackmo) employee was forcing leg (12 x 12 treated timber) between cap and mud sill with 16 lb.. Hammer. Employee was swinging at shoulder level causing twisting motion of body when, he felt pain in his left shoulder. Supervisor: n
## 6715                                                                                                              3/2/2005 03:27 pm (fblackmo) employee was sliding guardrail post off of flatbed truck when, he felt pain in his left forearm. Supervisor: g. Todd cole
## 6716                                                                  3/2/2006 03:47 pm (blgay) employee was cleaning up brush, when backhoe dragging brush, pulled employees feet out from under him, causing him to fall. Bruising left hip. Supervisor: r. E. Metcalf
## 6717                                                                                    3/2/2006 04:06 pm (blgay) employee was cleaning brush and trees from the ice strom on a steep bank when he slipped and turned his left foot and ankle. Supervisor: r. E. Metcalf
## 6718                                                                                                    3/2/2006 04:15 pm (blgay) employee was pulling and pushing on a binder on the salt spreader, when employee felt a pop in right shoulder. Supervisor: rick jordan
## 6719          3/2/2006 04:26 pm (blgay) employee was working on a crack sealing operation in left lane of I-85, when a tractor trailer ran into the hot rubber sealant, splashing it onto employee, burning him on his face and neck in four small locations. Approx. 1"
## 6720                                                                                                                           3/2/2006 04:39 pm (blgay) employee was pulling brush off bank, when he felt like he pulled a muscle in his back. Supervisor: t. F. Rhodes
## 6721                                                                                                         3/2/2010 11:35 am (fblackmo) employee was using pressure washer to clean salt spreader when, foreign matter got into his right eye. Supervisor: a. B. Davis
## 6722                                                                                                   3/20/2006 09:56 am (fblackmo) employee was removing desk from office when, the door slide out of shelf catching his fingers on right hand. Supervisor: w. D. Lane
## 6723                                                                                                                                 3/20/2006 10:28 am (fblackmo) employee was mounting swb dump truck when, he felt a twinge in left side hip. Supervisor: m. A. Quick
## 6724          3/20/2007 01:37 pm (speedin) employee was washing out bed of dump truck, while climbing down ladder on side of truck, foot got caught on step causing him to slip and fall into a sit position and elbow cam straight down causing shoulder injury. Superv
## 6725                                                                                    3/20/2007 03:06 pm (speedin) employee was rolling over a log and pulled in his back, while working on I-40 west bound m. M 27 cutting trees and brush. Supervisor greg mccracken
## 6726                                                                                                                    3/20/2007 04:04 pm (fblackmo) employee was conducting an inspection when he found a tick on his left thigh area. Supervisor: rachella beauregard
## 6727                                                                                                                   3/20/2007 10:31 am (speedin) employee slipped on top stop of mobile unit and hit wall with left hand. Exiting mobile unit. Supervisor: b. D. Pike
## 6728                                          3/20/2007 11:47 am (speedin) employee was searching in a supply closet for a tube of grease, and was bitten on the right hand, middle finger. Employee was unaware a t that time he was bitten. Supervisor: jerry l. Green
## 6729                                                              3/20/2007 12:21 pm (speedin) employee lifted and pushed a tire from the top of a pile that were in inventory. Employee stated she felt something pull in her right wrist. Supervisor: steven l. Bullis
## 6730         3/20/2008 01:02 pm (blgay) employee was spreading stone when his almost empty bed caught a telephone line. The line went at an approx. 45-degree angle across the road. With the bed fully extended and empty, when the slack came out of the line, it caus
## 6731         3/20/2008 01:17 pm (blgay) employee was pushing snow and ice on nc 80 in mitchell county when the front tire dropped off the edge of pavement. Employee stopped on the shoulder and opened the door to exit the vehicle, when the truck began to turn over.
## 6732                                                                                                           3/20/2008 01:48 pm (blgay) employee was working around salt/sand spreader and walked into one, causing a cut on top of his head. Supervisor: doug metcalf
## 6733         3/20/2008 01:57 pm (blgay) employee was attempting to measure pavement markings by rolling a tape from truck window. Employee was struck in the rear by a private vehicle. Employee stated he hurt his shoulder and needed to go to doctor on 2/25/08. Empl
## 6734                       3/21/2005 02:39 pm (fblackmo) employee states while traveling on us 421 two tires blew out causing employee to lose control of vehicle. Vehicle turned over causing employee to injury his right leg and shoulder. Supervisor: k. D. Register
## 6735                                                3/21/2005 03:04 pm (fblackmo) employee was backing up dirt ramp when, truck overturned. Employee injuries include contusion of right leg, cervical strain, laceration to right forearm. Supervisor: j. W. Weatherman
## 6736        3/21/2005 04:05 pm (fblackmo) employee was working on the m/v lupton, he tried to move an eliminator (similar to a vacuum cleaner - weighs approximately 60-80 lbs. ) by himself. Employee felt something pop in his lower back. Supervisor: thomas foster b
## 6737                                                                                              3/21/2005 04:16 pm (fblackmo) employee was putting laptop into vehicle. She twisted her left wrist while lifting the care into the vehicle. Supervisor: jerry jennings
## 6738                                           3/21/2006 03:19 pm (fblackmo) employee was removing a skid mounted sprayer from bed of truck when, he stood up from a bend position he, hit his head on sharp object connected to the sprayer. Supervisor: corey sudderth
## 6739                                                        3/21/2006 03:31 pm (fblackmo) employee was replacing a leaking wheel seal on truck with dual wheels when, he swung hammer, he missed striking thumb and finger on left hand. Supervisor: richard f. Jernigan
## 6740            3/21/2006 03:45 pm (fblackmo) employee was working on roadside when, he stepped backwards on to the ditch bank due to loose debris. As he fell, he tired to catch himself with his left hand causing the injury to his wrist. Supervisor: chuck mcdonald
## 6741                                                                                                                                                 3/21/2006 09:23 am (fblackmo) employee was chipping brush when, brush struck him in right eye. Supervisor: jim ashe
## 6742         3/21/2006 09:37 am (fblackmo) employee ran into a 12 x 12 steel h-pile that was driven into ground and was protruding above bridge deck. Employee states he pulled his little finger on right hand backwards, popping finger out of socket. Supervisor: j.R
## 6743                    3/21/2007 03:45 pm (fblackmo) employee was pulling on telephone line so the backhoe bucket could excavate earth material between the two line. Employees fingers were struck by backhoe while he was holding the line. Supervisor: arthur person
## 6744                                                                                               3/21/2007 08:52 am (fblackmo) employee was taken empty oil drums to the trailer when, he stepped into a hole causing injury to his left foot. Supervisor: danny lewis
## 6745         3/22/2005 08:35 am (fblackmo) employee jump a ditch early in the day. Later in the afternoon he was pulling himself up on equipment trailer. Employee believes during one of these events lead to the pain he experienced in his back area. Supervisor: nei
## 6746                                                                                  3/22/2005 08:51 am (fblackmo) employee was conducting a road test. Driver failed to stop for red light. Seatbelt pulled tight across chest on impact. Supervisor: vickey s. Fields
## 6747                                                      3/22/2006 02:41 pm (fblackmo) employee was traveling on us 276 north when, a golf ball struck upper right windshield on motor grader, causing glass to go into employees right eye. Supervisor: david c. Capps
## 6748           3/22/2006 03:39 pm (fblackmo) employee was performing the normal duties and tasks of his job when, he complained about a constant tingling and numbness in his right hand and arm while using computer keyboard and mouse. Supervisor: jackie ruffin 3/22
## 6749         3/22/2006 04:06 pm (fblackmo) employee was walking between customers chairs while conducting a road test when, she tripped over the one of the chairs. Employee fell striking her head on a table causing a cut above her right eye. Supervisor: stacy woot
## 6750            3/22/2007 04:09 pm (speedin) employee was holding a 7 inch piece of h-pile steel for track-hoe operator to push into ground, when h-pile struck solid soil or rock, causing the pile to turn out while I was still holding it. It struck my right thumb.
## 6751                                                                               3/22/2007 04:37 pm (speedin) employee was loosening strap on flat bed truck. Went to push down on bar to release strap and heard and felt pop in right hip. Supervisor: mark c. Smith
## 6752         3/22/2007 09:36 am (speedin) employee was repairing an oil furnace and was bleeding air from fuel lines. He was pushing reset button to bleed lines an prime pump. Smoke was building in firebox and employee opened sight hole to firebox to draw smoke ou
## 6753                                                                                                                          3/22/2007 10:53 am (speedin) employee walked around trachoe, tripped on rocks and fell injuring his back, and arm. Supervisor: tom huskins
## 6754                                                                                                    3/23/2004 08:59 am (fblackmo) employee was walking back to parked pickup truck when, he slipped and fell due to icy conditions on highway. Supervisor: d. S. Lee
## 6755                                         3/23/2004 09:14 am (fblackmo) employee was assisting in replacing a man hole cover that had been knocked off by a snow plow. The cover slipped, pinching employees hand between the cover and ring. Supervisor: gary darden
## 6756                                                        3/23/2004 09:26 am (fblackmo) employee states while holding property sticker and trying to cut tape from the package the, box cutter slipped causing the injury to her left hand. Supervisor: thomas johnson
## 6757                                                                               3/23/2004 09:39 am (fblackmo) employee was using a shovel handle to prop up a tailgate when, the tailgate gave way causing a splinter to puncture left thumb. Supervisor: a. F. Smith
## 6758                                                                         3/23/2004 09:53 am (fblackmo) employee was replacing a trap on the dump truck when, he hit the rod with a hammer the rod popped back striking him on his right arm. Supervisor: l. D. Lucas
## 6759          3/23/2004 10:35 am (fblackmo) employee states, crew was working on a bridge damage repairing the guardrail. They had cut the rail but it was still in a bind. Employee bent over to pick up a sledge hammer when, another employee kicked the rail causing
## 6760                                                 3/23/2004 11:01 am (fblackmo) employee was pulling plastic off of window seal when, his right hand went across a piece of glass stuck in the frame causing the injury to his right hand. Supervisor: a. L. Smith jr
## 6761                                                                                                                                         3/23/2004 11:12 am (fblackmo) employee was exiting dot truck when, she felt pain in left knee. Supervisor: henry sturdivant
## 6762           3/23/2004 11:32 am (fblackmo) employee states while standing on back of duro-patcher truck racking rocks he felt discomfort just below his belly button area. At the time there were no signs of a injury; however, on 3/13/2003 employee had severe pain
## 6763         3/23/2004 12:18 pm (fblackmo) crews were cleaning up storm debris form 3/7/04 along I-95. They were moving from one location to another in the south bound lane on shoulder. The lead traffic slowed due to the state equipment on the shoulder when, a pow
## 6764                                                                                                3/23/2004 12:33 pm (fblackmo) employee states while helping shoveling and raking concrete slab he, experienced pain down his left leg. Supervisor: dennis l. Johnson
## 6765         3/23/2009 08:22 am (blgay) employee was preparing to remove batteries from pallet. Batteries were wrapped in shrink wrap. When employee was unaware that one of the batteries had leaked acid on to the wrap. When employee cut the wrap, the tension on th
## 6766         3/23/2009 08:34 am (blgay) employee was bringing pallet jack down to lower level of parts department. Employee lifted the 200lb jack onto the conveyor belt and attempted to lower it by sliding it down with a rope. Employee was bent over holding load o
## 6767                                                                                                              3/23/2010 08:08 am (blgay) employee was on a high slope cutting tree, when employee took step and left knee gave out on him. Supervisor: k. H. Johnson
## 6768                                         3/23/2010 08:21 am (blgay) employee and co-worker were moving a piece of steel. Co-worker let go of his end before employee was ready, causing piece of steel to land on both hands of employee. Supervisor: herbert ramsey
## 6769         3/23/2011 04:03 pm (fblackmo) employee begin to experience pain in his arm and neck after eating lunch. He advised his supervisor he needed to go to the doctor because of the pain. The supervisor took the employee to the er for medical attention. Earl
## 6770         3/23/2011 04:16 pm (fblackmo) employee was trying to remove old county paddle sign off of post to replace with a new one. The hammer slipped causing his hand to hit the corner of the sign, cutting through the glove, and cutting his middle finger above
## 6771                                                                                                              3/23/2011 04:28 pm (fblackmo) employee was removing vines from signs off state road when, he came into contact with poison ivy. Supervisor: leon gross
## 6772                                                                                 3/23/2011 04:46 pm (fblackmo) employee was getting into dump truck and grabbed steering wheel to pull himself up when, something popped in his right hand. Supervisor: jeff radford
## 6773         3/24/2010 04:06 pm (blgay) employee was sitting in chair and leaned over to pick up a piece of paper from the floor. Chair went out from under her and as she fell, her right arm hit the metal sliding bracket that holds the printer. Supervisor: mary el
## 6774                                                                                                                                   3/25/2004 03:42 pm (fblackmo) employee was exiting motor grader when, he felt pain in his lower back area. Supervisor: j. L. Tuck
## 6775                            3/25/2004 03:59 pm (fblackmo) employee was filling holes in driveway with abc stone. While pulling stone toward himself with rake, he felt a sharp pain run from lower back to right leg causing him to fall. Supervisor: j. W. Lassiter
## 6776                                                                                                          3/25/2004 04:09 pm (fblackmo) employee was lifting a heavy ramp on trailer when, he felt a burning sensation in left groin area. Supervisor: wesley powell
## 6777                                                                                                                     3/25/2004 04:18 pm (fblackmo) employee states while lifting his tool box to back of truck he, felt pain in his back. Supervisor: d. L. Ferguson
## 6778                                                                                                 3/25/2010 08:54 am (fblackmo) employee claims repetitive motion in right arm due to keying data entry work over a number of years. Supervisor: terry schoonderwoerd
## 6779         3/25/2010 09:12 am (fblackmo) employee was replacing a fuel line when diesel spilled out into area were employee was working. Employee tired to grab onto inmate (jimmy) to keep from falling. Jimmy end up falling onto employee causing injury to employe
## 6780                                                                                                                                            3/25/2010 09:30 am (fblackmo) employee was getting out of truck when he turned his left ankle. Supervisor: ray sanderson
## 6781                                                                                                            3/25/2010 09:55 am (fblackmo) employee was sweeping engine room; while bending over to pick up trash he felt a pop in his back. Supervisor: s. H. Kinner
## 6782                   3/25/2010 10:07 am (fblackmo) employee was carrying a bundle of stakes from the shed; there are no steps in front of the shed only stones. Employee missed stones and fell on the ground causing injury to left ankle. Supervisor: steve edgerton
## 6783          3/25/2011 02:43 pm (barnes) employee was cutting trees on a slope. He had cut several trees down when he began walking across the slope and down a hill with a saw in his hand. His foot slipped just a few inches and stopped. The sudden stop caused him
## 6784            3/25/2011 03:39 pm (barnes) employee was cleaning the chipper. The back hoe started moving brush and a limb fell and hit the employee across his hard hat and head. Employee injured top of head, nose and loose front tooth. Broken nose. Supervisor: e
## 6785         3/25/2011 04:34 pm (barnes) employee was removing signs from state property. After removing the signs, the employee felt a burning sensation in both hands. Employee went to the hospital and the diagnosis is contact dermatitis. This occurred due to rem
## 6786         3/25/2011 09:30 am (barnes) employee was checking to see if a driveway pipe was stopped up when the ground under his foot gave way. He used a shovel to keep from falling in a creek. Employee thought he would be okay and did not seek medical attention.
## 6787                          3/25/2011 10:05 am (barnes) employee was picking up the trailer ramp after the backhoe was unloaded. As he lifted the ramp, he felt a pop and a tear in his left shoulder. Employee injured his left shoulder. Supervisor: richard roberts
## 6788         3/25/2011 12:22 pm (barnes) employee had just cleared debris from grate surrounded by a concrete apron, and was attempting to return to the truck. As employee stepped away, his left foot and leg dropped into a void that was next to the concrete apron.
## 6789                                  3/26/2004 02:20 pm (fblackmo) employee was un-latching tailgate to swing open when, the tailgate fell striking employee on his head and slid down his body and landed on his left foot causing the injury. Supervisor: s. W. Nance
## 6790                                                                                          3/26/2004 09:31 am (fblackmo) employee was working on lights on back of tractor when, he slipped and fell causing the injury to his left side area. Supervisor: sam wilson
## 6791                                                                                3/26/2004 11:00 am (fblackmo) employee was picking up a guardrail to attach a bolt when, the guardrail slipped causing the injury to his back area. Supervisor: charlie e. Watson jr
## 6792                              3/26/2004 11:14 am (fblackmo) employee was trying to remove axle from axle housing on right rear of truck by using a sledge hammer. The hammer head slid off handle causing the injury to employees left hand. Supervisor: j. C. Sloan
## 6793                                                                                        3/26/2004 11:29 am (fblackmo) employee was getting out of dump truck and stepped on a piece of class b stone causing the injury to his right ankle. Supervisor: s. E. Propst
## 6794                                                                                                                               3/26/2004 12:47 pm (fblackmo) employee was stacking tires on pallet when, he felt pain in his back area. Supervisor: william t. Stone
## 6795          3/26/2007 02:10 pm (speedin) employee was lifting tailgate on trash and animal truck to place a dead animal on truck. He caught his thumb between the door and the lift tailgate as it was raising, injuring the thumb on his right hand. Dr Sherrill jr w
## 6796         3/26/2007 02:42 pm (speedin) employee was cutting trees with a boom truck operated by jeff leonard. As Mr. Lee was climbing approximately 40 feet in the air, another tree that was behind this tree fell pinning Mr. Lee in the bucket by his right arm an
## 6797         3/26/2009 06:20 pm (fblackmo) employee began experiencing chest pains on thursday and left early sick. The next day, she came back in feeling light headed with re-occuring chest pains. Employee began feeling woozy, shortness of breath, and could not s
## 6798            3/26/2009 09:28 am (blgay) employee has worked on the asphalt patch crew for over twenty years. During this time she has shoveled and ranked asphalt, causing serve shoulder and upper back pain due to repetitive motion. Supervisor: robert hollifield
## 6799         3/26/2009 09:58 am (blgay) employee was cutting a limb off of a downed pine tree. As he cut the limb, the tree started to roll toward him. Employee tried to step back away from the tree. His foot slipped on the pine needles causing him to sit down. Hi
## 6800          3/26/2009 10:12 am (blgay) employee was lowering jack stand. He pulled pin out and the center of the jack fell, severing the left middle finger at the first joint and severing top of left ring finger through the finger nail. Supervisor: robert graham
## 6801                                                                                                                  3/27/2006 03:06 pm (fblackmo) employee was cutting limbs from fallen trees when, limb fell striking him on his left wrist. Supervisor: t. S. Allen
## 6802                                                                           3/27/2006 03:17 pm (fblackmo) employee was walking down embankment when, he stepped on a piece of wood with a nail in it. Wood and nail was covered by leaves. Supervisor: j. W. Robinson
## 6803                                                                                                                           3/27/2006 03:28 pm (fblackmo) employee was releasing asphalt agent when, it splattered going into his right eye. Supervisor: brian harper
## 6804                                                              3/27/2006 03:38 pm (fblackmo) employee was working in dare county assisting in the building of a bike trail bulkhead when, he struck his left foot with the post hole digger. Supervisor: h d. Wiggins
## 6805                                                                                                                                       3/27/2006 03:53 pm (fblackmo) employee was shoveling asphalt when, he felt pain in his left wrist. Supervisor: j. M. Campbell
## 6806                                                             3/27/2006 11:41 am (fblackmo) employee was had stop to make a left turn when, he was hit in the rear by a private vehicle. Employee felt pa in in his back and shoulder area. Supervisor: melvin dorsey
## 6807                                                                                                                                 3/27/2006 12:08 pm (fblackmo) employee was changing blades on grader when, debris went into his right eye. Supervisor: james conner
## 6808                                3/27/2006 12:25 pm (fblackmo) employee was climbing up onto flatbed truck to release overhead crane from tank. Employee felt pain and burning in his left sided area when, he reached to pull himself up. Supervisor: james e. Stepp
## 6809         3/27/2006 12:38 pm (fblackmo) employee was holding a stop/slow paddle performing flagging duties. As a state vehicle entered the work zone, employee lost control of the paddle and struck the mirror on state truck. The paddle was pulled out of employee
## 6810                                                             3/27/2008 10:31 am (blgay) employee was attempting to remove a glass globe off the back porch light, when the globe shattered cutting his right hand and requiring 6 stitches. Supervisor: j. P. Ingram
## 6811         3/27/2009 01:09 pm (blgay) employee had notched a tree and returned to back side to cut. Employee looked up to see where tree was falling. Employee fell on rocks. Employee looked up again and tried to get out of way, but couldn't get up and twisted ba
## 6812         3/27/2009 01:41 pm (blgay) employee was shoveling a curb when he pushed his left foot on the shovel and twisted his left knee. Employee went to doctor and was diagnosed with a torn acl left knee, requiring surgery. Supervisor: a. D. Lafacle 11/30/2009
## 6813         3/27/2009 02:00 pm (blgay) employee was in the process of clearing an area for silt fence installation. They were working on an uneven grade at an approved waste site. Employee bent over to remove some limbs, twisted and felt a sharp pain in his back.
## 6814                                   3/27/2009 10:32 am (bhenders) sov (inmate bus) was stopped at railroad crossing to check for train. When bus driver started to take off, pov struck bus in the rear. Driver of the bus had all of flashing lights on at the time.
## 6815                                                                                                                                                                      3/27/2009 12:32 pm (blgay) employee has been typing for the state for 15 years. Carpal tunnel.
## 6816                                                                             3/27/2009 12:58 pm (blgay) employee missed the bottom step on the way down to the district office jammimg his left knee, causing something to pop in his knee. Supervisor: henry worley
## 6817       3/28/2005 01:25 pm (fblackmo) employee was riding as a passenger in state dump truck when, a private vehicle crossed the highway and struck the snowplow attached to the truck on the drivers side. Several hours after the accident Mr. Ryan complained of b
## 6818                                                                                                                           3/28/2005 01:42 pm (fblackmo) employee was loading boxes of paraplastic onto truck when, he felt pain in his back. Supervisor: terry shaw
## 6819                                                                                                                                      3/28/2005 01:55 pm (fblackmo) employee was opening a file drawer when, she cut her right index finger. Supervisor: ron w. King
## 6820                        3/28/2007 08:24 am (bhenders) employee was driving a tandem dump on sr 1762 (avon road). Employee met a tractor trailer in a curve and their mirrors hit. The mirror shattered into pieces and flew into the window cutting employee's face.
## 6821                                                                                                 3/28/2007 10:19 am (fblackmo) employee was stretching to turn on power lever for shore when, he felt something pull in his groin area. Supervisor: sherry hollowell
## 6822                                                                                               3/28/2007 10:30 am (fblackmo) employee was entering building when, she slipped and fell causing injury to her right shoulder and left ankle. Supervisor: barbara webb
## 6823                                                   3/28/2007 10:43 am (fblackmo) employee slipped on wet grass and he reached to catch himself when, his right hand struck a piece of metal on the running board causing a cut on his hand. Supervisor: d. W. Fowler
## 6824                                                                                                                                     3/28/2007 10:56 am (fblackmo) employee was carrying truck maps to car when, he pain in his lower back. Supervisor: maude creech
## 6825                                                                                                              3/28/2008 01:28 pm (blgay) employee was driving swb dump truck hauling asphalt, when his arm locked up and began hurting. Supervisor: h. G. Timberlake
## 6826                                      3/28/2011 04:34 pm (barnes) employee was entering building from the parking lot, carrying a cpu when she tripped and fell. Employee injured her left hand, bumped her knee and hurt right elbow. Supervisor: cheryl m. Leonard
## 6827                              3/28/2011 05:22 pm (barnes) employee was cutting dead trees in the right of way when he came in contact with some poison oak/ivy that spread all over both his arms, his left side, chest area and left leg. Supervisor: john springer
## 6828                                                                                                                  3/28/2011 05:52 pm (barnes) employee, while getting ready for work, discovered an embedded tick on his back on 7/14/2010. Supervisor: mike johnson
## 6829                                                                                     3/29/2005 08:36 am (fblackmo) employee was walking down stairs when, she tripped and fell causing the injury to her left knee, ankle, and right hand. Supervisor: helen dickens
## 6830         3/29/2006 09:08 am (fblackmo) employee was giving a road test to a customer. While going pass a cvs pharmacy a private vehicle pulled out and hit the car employee was in on the right front fender and bumper. Employee felt pain in her back and neck are
## 6831                 3/29/2006 09:29 am (fblackmo) employee was leaving work when, exiting the building his foot missed block used for step at road oil facility causing him to fall on his right side injuring his right wrist and right ankle. Supervisor: kelly perry
## 6832                                                                                     3/29/2006 09:38 am (fblackmo) employee was helping to open battery box lid of dozer when, lid flipped down scraping the skin off top of his left hand. Supervisor: s. G. Foster
## 6833          3/29/2006 09:46 am (fblackmo) employee was dumping dirt into the backhoe bucket when a clog of dirt got caught in the tailgate. Employee started pulling on the tailgate with both hands and lost his grip. While trying to regain balance his hand became
## 6834                                                                       3/29/2006 09:56 am (fblackmo) employee was attempting to pull up sign on shoulder of road and backhoe bucket hit employee in his left shoulder/arm and wrist area. Supervisor: k. L. Anderson
## 6835                                                                                                    3/29/2006 10:09 am (fblackmo) employee was cleaning bed of dump truck when, he slipped and fell causing the injury to his left shoulder. Supervisor: l. D. Lucas
## 6836         3/29/2010 10:44 am (fblackmo) employee was conducting a road test when customer vehicle was struck by another vehicle. Employee experiences right shoulder pain, lower back pain, head contusion, rib pain, and front tooth damage. Supervisor: dale rankin
## 6837         3/29/2011 04:33 pm (barnes) employee was attending a class at the division office. The class took a break at 10. 00 a. M. While exiting the building, the employee stepped out onto the walkway and missed the last step down. His ankle twisted, and all o
## 6838                                                      3/29/2011 05:35 pm (barnes) employee was getting out of the dump truck using 3 points of contact. His left ankle rolled getting out of the truck. Employee injured his left ankle. Supervisor: tommy culberson
## 6839          3/29/2011 12:14 pm (barnes) employee was flagging on us 220, when he suddenly felt like he was going to pass out. He called his crew leader and immediately hit the ground face first causing a bloody nose and mouth. The doctor found an abnormal ekg. E
## 6840                                                                                                                      3/3/2004 09:02 am (fblackmo) employee was pushing asphalt into pothole and felt a sharp pain in lower abdomen. Supervisor: l. S. Carpenter, jr
## 6841                                                                                                                           3/3/2005 08:27 am (fblackmo) employee was filling potholes on us 19e when, he fell over timber in parking area. Supervisor: t. G. Huskins
## 6842                                                                                                                                   3/3/2005 08:48 am (fblackmo) employee was bending over fence picking up trash when, he cut his forehead. Supervisor: o. D. Sparks
## 6843                                                                                      3/3/2005 09:23 am (fblackmo) employee ran off side of road, into a ditch, driveway through yard, and sapling. Employee experienced pain in his back. Supervisor: a. C. Coghill
## 6844                                                                                                                           3/3/2005 09:40 am (fblackmo) employee was lifting wheelbarrow loaded with dirt when, he felt pain in his back. Supervisor: k. L. Anderson
## 6845                                                                                                 3/3/2005 09:48 am (fblackmo) employee was removing a valve from the m/v carteret when, he bumped his right elbow on a bulkhead frame. Supervisor: kevin lamar cooke
## 6846                                                                                 3/3/2005 10:43 am (fblackmo) employee was reaching to pick up a piece of wood off pintle hook when, the hook came loose pinching her left hand ring finger. Supervisor: t. M. Smith
## 6847                                                                3/3/2005 10:53 am (fblackmo) employee was trying to find damaged places in windshield washer hose with the motor arm when, it hit the side of his hand causing a laceration. Supervisor: c. R. Tyson
## 6848                                                                                      3/3/2005 11:03 am (fblackmo) employee was using hand crank to raise step due to power failure when, the handle broke striking him on his left hand. Supervisor: n. L. Hunnings
## 6849                                                                                  3/3/2006 02:41 pm (blgay) employee was loading backhoe and when he bent his knees to left the trailer ramp, his back caught with a sharp pain. Lumbar strain. Supervisor: j. Parks
## 6850                                                                                     3/3/2006 02:51 pm (blgay) employee was using a rake to help repair unpaved shoulder on pipe replacement project, when the wind blew sand into right eye. Supervisor: tim finger
## 6851                             3/3/2006 03:03 pm (blgay) employee was doing a driving test, when customer came to a sudden stop with great force, causing employee to fall forward and back. Employee in having pain in her upper right arm. Supervisor: phyllis young
## 6852                                                                                                            3/3/2007 01:12 pm (fblackmo) employee was carrying a table top with another co-worker when, his right pinky finger got smashed. Supervisor: dennis baker
## 6853                                                        3/3/2007 01:32 pm (fblackmo) employee was attempting to remove a connecting pin on the excavator bucket when, the pin came out by force and struck hand, causing injury to finger. Supervisor: j. T. Wiggins
## 6854                                                                              3/3/2007 10:37 am (fblackmo) employee was coming down steps when, she slipped and fell causing injury to her left hip and arm, right wrist, and lower back. Supervisor: jerry jennings
## 6855          3/3/2007 10:48 am (fblackmo) employee was driving flat bed truck when, the trailer started to slide on black ice. Employee had to use a lot of effort to hold the truck/trailer from causing a accident. Employee felt pain in his neck, lower back, and a
## 6856                                            3/3/2007 11:05 am (fblackmo) employee was hooking chains on a salt spreader when, he was climbing down the spreader shifted mashing his right center finger between the spreader and dump truck. Supervisor: greg vinson
## 6857                                                                                                      3/3/2007 11:19 am (fblackmo) employee was trying to get bolts in the blade of snow plow when, he felt something in is groin area. Supervisor: doug williams jr
## 6858                                                                                                                                                3/3/2007 11:50 am (fblackmo) employee was stepping on deck when the step shifted causing him to fall. Robert e. Hill
## 6859                                                                                                               3/3/2007 12:17 pm (fblackmo) employee was walking when, she tripped and fell causing the injury to her left knee and left elbow. Supervisor: pam lett
## 6860         3/3/2007 12:48 pm (fblackmo) employee was in the passenger seat of a dump truck. Dirt got hung on the tailgate of the truck so the driver pulled forward then hit the brakes attempting to lossen the material. The employee was leaning forward looking ou
## 6861                                                                                                                                3/3/2009 05:10 pm (fblackmo) employee was driving a rebar into ground and pinched skin on left hand between the hammer and the rebar
## 6862                           3/3/2010 02:20 pm (fblackmo) employee was supervising work being done on a 3' water line that had busted. He wanted to be sure that the union was tight. When he pulled on the pliers, he felt his left knee pop. Supervisor: wade harper
## 6863                                                                            3/3/2010 10:56 am (fblackmo) employee was entering building when, she slipped in the hallway in front of restroom causing injury to her right knee and wrist. Supervisor: ashley dawless
## 6864                                                                                                3/3/2010 11:10 am (fblackmo) employee slipped and fell while coming in office door. Employee felt pain in her left ankle, back, and neck. Supervisor: becky s. White
## 6865                                                                  3/3/2010 11:21 am (fblackmo) employee had cut his co-worker a piece of plywood. While passing the plywood to his co-worker it stuck him in his right arm leaving a splinter. Supervisor: guy white
## 6866            3/30/2004 01:24 pm (slee) employee was operating his assigned state vehicle. He stopped at the end of the drive. A blue car was attempting to make a right turn into the drive. The operator motioned for the employee to proceed so he could make the t
## 6867                                                                                                3/30/2006 09:00 am (fblackmo) employee was installing spare tire on vehicle when, jack slipped striking him on his back and right arm. Supervisor: ann lorscheider )
## 6868         3/30/2006 09:11 am (fblackmo) employee was standing on a ladder cutting a u-channel post with a skill saw. Employee reached up to break the post off when it was almost cut through. Employee right arm hit the broken post causing a cut to his elbow. Sup
## 6869         3/30/2007 01:51 pm (speedin) employee was raking asphalt, when he started to feel faint. He went to crew cab to get some water, it did not help, he got weak, light headed, and incoherent. So we transported him to morehead hospital and was diagnosed wi
## 6870          3/30/2007 02:10 pm (fblackmo) employee was assisting the asphalt patching crew repair the asphalt kettle. He placed the hand wand in the top of the tank for circulation of the crs-2 when, his right wrist came into contact with opening of the tank cau
## 6871                                                                       3/30/2007 02:31 pm (speedin) employee was getting off tractor when he stepped down to the ground he shifted all of his weight to his left knee and the knee twisted. Supervisor: r. E. Austin
## 6872         3/30/2007 10:58 am (speedin) employee had stepped off the ladder. His foot slipped and he tripped over a vine causing employee to fall. He strained his wrist trying to catch his falll. The embankment was a 1 to 1 slope with very little room to work du
## 6873                                                                                        3/30/2007 11:22 am (fblackmo) employee was helping another employee carry a tree when, he slipped causing the tree to fall on his right shoulder. Supervisor: c. E. Thompson
## 6874                                                                                   3/30/2007 12:04 pm (speedin) employee was bending over on boat, pulling 4" by 12" boards back into the boat when he felt pain in his right hip. Supervisor william t. Lowery, jr.
## 6875         3/30/2011 09:40 am (barnes) employee was helping to form a storm drain. The form was full of concrete. While employee was holding it in place, the form broke loose. Employee felt something in the palm of his left hand followed by a stinging sensation.
## 6876                                                        3/31/2004 02:32 pm (fblackmo) employee was using equipment when, his finger was caught between the machine, causing the injury to his left ring finger. Supervisor: j. D. Shelton 6/7/2004 01:44 pm (gwhite)
## 6877                                                                                                         3/31/2004 09:38 am (fblackmo) employee states while loading pipes' he, stepped in a hole causing the injury to his left knee area. Supervisor: j. F. Bishop
## 6878                            3/31/2004 09:55 am (fblackmo) employee states while pulling out of parking lot a private citizen waved him out when, he was struck on the left front side of truck causing the injury to his left side area. Supervisor: w. D. Prestwood
## 6879                           3/31/2004 11:21 am (fblackmo) employee states while finishing a road test she jumped out of the truck, causing the injury to her left leg. Supervisor: lorrie sineath 8/2/2005 02:11 pm (fblackmo) show all bills to joyce before paying!
## 6880                                                     3/31/2004 12:28 pm (fblackmo) employee states the fluorescent lighting in his office does not have covers on them. The light from the exposed bulbs has caused the injuries to his eyes. Supervisor: randy wise
## 6881                                                                                                                  3/31/2005 02:07 pm (fblackmo) employee was lifting steel beam over his head when, dust from the steel went into his eyes. Supervisor: hosea blount
## 6882                                                                                             3/31/2005 02:19 pm (fblackmo) employee was hanging bucket of release agent on side of truck when, the strap broke splashing fluid in his eyes. Supervisor: chip speight
## 6883        3/31/2005 02:53 pm (fblackmo) employee was going down a hill as he proceeded down the backhoe he was pulling a tree around. The tree struck him in the back of the leg which pushed him to the ground causing him to twist his right knee. Supervisor: d. M.
## 6884                                 3/31/2005 03:11 pm (fblackmo) employee states that his vehicle and a gas truck swiped side mirrors while traveling down state road. Employee experience pain in his left ear. Supervisor: terry woody 1/10/2007 09:02 am (lvaughan)
## 6885                                                                                                         3/31/2005 03:33 pm (fblackmo) employee burned his arm with a acetylene torch while cutting a hole in a h-pile to insert a bolt. Supervisor: ronald j. Terry
## 6886                                                                                                                3/31/2005 03:43 pm (fblackmo) employee states wile changing blade on scraper, blade slipped and cut his left index finger. Supervisor: k. R. Burrell
## 6887                                                                                                                      3/31/2005 04:02 pm (fblackmo) employee states that while in warehouse to pick up a battery he, tripped over a pallet. Supervisor: d. L. Carter
## 6888                                                                                                          3/31/2005 12:51 pm (fblackmo) employee states while trying to catch a falling spreader he, felt pain in his left shoulder area. Supervisor: g. Milton tapp
## 6889                                                                                 3/31/2008 08:58 am (blgay) employee was grabbed by another employee to prevent him from being hit by a log on the back of a log truck, hurting his back. Supervisor: anthony bostic
## 6890                                                  3/31/2008 09:12 am (blgay) employee was trying to unstop chipper. Employee was on top cleaning it out, when an inmate turned the wheel and caught his thumb between the wheel and housing. Supervisor: cole gurley
## 6891         3/31/2009 02:38 pm (blgay) employee was traveling on interstate 40/85, he reached over to pickup a water bottle, taking his eyes off the road, ran off the right side of road. Vehicle traveled approximately 500 feet on wet dirt and hit a culvert, causi
## 6892         3/31/2009 03:06 pm (blgay) employee was walking downhill around bridge wing wall to get a marking chalk. He slipped and fell landing on his back. Employees right elbow broke his fall and the right elbow made contact with a piece of concrete, causing s
## 6893                                                                                                                                             3/4/2004 01:51 pm (fblackmo) employee was helping put up tailgate when, his finger was mashed. Supervisor: a. S. Bailey
## 6894                                                                                                                       3/4/2004 02:19 pm (fblackmo) employee was walking down a hill when, he slipped and fell causing the cut to his hand. Supervisor: c. R. Styles
## 6895                                                                                                               3/4/2004 02:31 pm (fblackmo) employee was climbing out of truck when, he slipped and fell causing the injury to his head. Supervisor: jerome locklear
## 6896          3/4/2004 04:33 pm (fblackmo) employee was operating a state vehicle in cumberland county returning form a job site in roberson county. The roadway was icy and employee was traveling at a slow speed due to the weather conditions. Vehicle # 2 was trave
## 6897                                                                                              3/4/2004 08:59 am (fblackmo) employee was lifting anti-freeze when, he felt pain in his lower back and right leg. Supervisor: w. E. Evans 04/15/2004 09:34 am (gwhite)
## 6898                                                                                                                                    3/4/2004 09:13 am (fblackmo) employee was stepping down out of dump truck when, he felt pain in his back. Supervisor: j. R. Cook
## 6899                                                                                             3/4/2004 11:54 am (fblackmo) employee was walking up to office when, he slipped and fell due to ice causing the injury to his right shoulder. Supervisor: michael kozak
## 6900                                                                             3/4/2008 01:54 pm (fblackmo) employee was stacking tractor trailer tires 3-4 high in a trailer at johnston county landfill when, he felt pain in his lower back. Supervisor: lee holley
## 6901                                                                                         3/4/2008 02:07 pm (fblackmo) employee states he became aware of bumps and blisters on his left index finger. The area became sensitive and painful. Supervisor: danny lewis
## 6902                                                                                    3/4/2008 02:33 pm (fblackmo) employee was stacking tractor trailer tires in a trailer at the landfill. Employee felt pain n his lower back on right side. Supervisor: lee holley
## 6903                                               3/4/2008 02:44 pm (fblackmo) employee was pulling four plastic drilling mats from rear of utility truck when, he felt pain in his lower back on left side. Supervisor: j. Milkovits, jr 5/12/2009 01:51 pm (sjerniga)
## 6904         3/4/2008 02:54 pm (fblackmo) employee was using a binder to secure a roller to a trailer. As he was applying pressure in a downward motion, the binder slipped, and caused his hand to hit the trailer, injuring his hand and palm. Supervisor: ronald whit
## 6905         3/4/2009 04:05 pm (blgay) employee was unloading equipment from low boy. While low boy operator was lowering ramp, employee went to put flags back into tubes on gooseneck of truck, when he stepped back another employee was letting down the ramp and it
## 6906                                                                         3/4/2009 04:13 pm (blgay) employee was removing sign post with a pry bar. The bar slipped out of the post as employee stepped on it, causing his left knee to jam. Supervisor: andrew helms
## 6907                                          3/4/2010 09:44 am (blgay) employee had returned to the newton office and when entering the building she slipped and fell. It was raining this date and her shoes and the floor could have been wet. Supervisor: j. W. Hill
## 6908                                                                                                           3/5/2008 10:01 am (fblackmo) employee hit right index finger with hammer while trying to start lag bolt to attach floats to pontoon. Supervisor: don rich
## 6909                                                                              3/5/2008 10:23 am (fblackmo) employee turned around to start walking and walked into a metal post filled with concrete. Employee felt pain in his chest area. Supervisor: steven blake
## 6910                                                          3/5/2008 10:41 am (fblackmo) employee was cutting bushes around the bridge with a weed eater when, he was hit in the right eye by debris. Employee was wearing safety glasses. Supervisor: ronald j. Terry
## 6911                                                                          3/5/2008 12:01 pm (fblackmo) employee injured right wrist while helping mail person with delivery by pushing a box through doorway and moving a chair out of the way. Supervisor: e. Mckay
## 6912         3/5/2009 03:22 pm (blgay) employee was moving a work zone sign further away from the edge of the road on sr 2168 goodman lake road. He was concerned about traffic blowing the sign down. In the process of moving the sign, employee stepped into a hole a
## 6913                                                                                                        3/5/2009 03:34 pm (blgay) employee was pouring clorox in the back of the tank of the commode and it slashed back into his left eye. Supervisor: james brooks
## 6914                                                                  3/5/2009 07:56 am (blgay) employee was on a road test with client. The client drove his vehicle into a parked car in the dmv parking lot, causing neck sprain (whiplash). Supervisor: anthony lowe
## 6915            3/5/2010 08:50 am (fblackmo) employee reports she was removing a container of hot soup from the microwave in the break room. The container was hot, she dropped it, and the hot soup spilled burning her right hand. Supervisor: elizabeth leonard mckay
## 6916                                                                              3/5/2010 09:35 am (fblackmo) employee was pulling on cable when he felt pain in his right shoulder while trying to tighten a cable line due to hydraulic leak. Supervisor: r. G. Crews
## 6917                                                                                        3/5/2010 10:08 am (fblackmo) employee was washing sand out of a pipe with a fire hose when he pulled on the hose he felt a pop in his upper back area. Supervisor: guy white
## 6918                                                                                                                               3/5/2010 10:22 am (fblackmo) employee was loading material onto truck when he felt pain in his lower back. Supervisor: w. B. Crumpler
## 6919                                                                     3/6/2006 03:04 pm (fblackmo) employee was unloading new truck wheel from service truck when, his foot slipped causing him to pinch left thumb between bed and wheel. Supervisor: t. M. Griffith
## 6920                                                                            3/6/2009 03:47 pm (fblackmo) employee was retrieving mail from division office. Leaving the building employee missed final step and fell landing on left elbow. Supervisor: jason hedley
## 6921                                                                                                              3/6/2009 09:35 am (fblackmo) employee was getting sign from sign rack. Sign slipped down and jarred his left hand and wrist. Supervisor: h. D. Wiggins
## 6922                                         3/6/2009 09:49 am (fblackmo) employee was cutting the top of dead tree when, top fell striking the platform basket, breaking the hydraulic hose, and basket. Employee felt pain in his rightarm. Supervisor: roderick wyatt
## 6923         3/6/2009 11:11 am (blgay) employee was standing on a 2' retaining wall beside truck attempting to tighten chains holding spreader in truck. The retaining wall had ice on it and he was holding on to truck as he was working with the chains. Employee los
## 6924          3/6/2009 12:30 pm (blgay) employee was responding to a highway patrol call about a deer carcass in the center lane of the roadway on I-40 eastbound near harper road. He put on his flashers and arrow board as he approached the carcass in an attempt to
## 6925         3/7/2005 01:05 pm (fblackmo) employee was eating in truck. While attempting to exit vehicle, he began to choke on the food he was chewing. Employee lost his three point of contact, slipped and fell, striking the concrete. Employee experienced un-consc
## 6926          3/7/2005 01:19 pm (fblackmo) employee was standing in a chair to reach an area on the wall to pass something off to another employee when, the chair fell out from under him. Employee landed on his lower back area and buttocks. Supervisor: g. W. Price
## 6927                                                             3/7/2005 01:29 pm (fblackmo) employee came down ramp at rear door of the office trailer, he did not see the ice on last four bands. Employee slipped and fell on his left wrist. Supervisor: d. R. Ross
## 6928          3/7/2005 04:04 pm (fblackmo) employee was conducting a road test. She was checking brake lights and signals of car when, another car was backing out of parking lot struck her from behind. Employee fell forward and her knees hit the pavement. Supervis
## 6929                                3/7/2006 12:12 pm (blgay) employee was climbing on platform of excavator to close compartment door, while closing door, employee lost balance and fell 4 ft. To concrete floor, fracturing his left wrist. Supervisor: danny clapton
## 6930                                                                                                               3/7/2006 12:27 pm (blgay) employee was stopped due to traffic and was rear ended by pv, straining his neck and back. Supervisor: ardell m. Lewis, jr.
## 6931                                                                                            3/7/2006 12:37 pm (blgay) employee was installing a transmission, when the employee pushed on the transmission, he had pain in right groin. Supervisor: robert d. Graham
## 6932                                                         3/7/2007 02:50 pm (fblackmo) employee was carrying a 702 instrument and tce data collector when he fell in a hole on the shoulder of road, causing injury to his left knee and arm. Supervisor: jason smith
## 6933         3/7/2007 03:05 pm (fblackmo) employee was sitting in chair while steering the ferry, seas where rough, and the ferry took a roll. Employees chair flipped over causing him to hit his head the cover on a water line. Employee felt pain in his head and ba
## 6934                           3/7/2007 03:17 pm (fblackmo) employee was walking out the automated door when, she slipped on brown title, twisted her ankle and hit her head. Supervisor: anita smith 3/12/2007 09:14 am (lvaughan) also seen for upper back & neck area
## 6935         3/7/2008 01:26 pm (blgay) employee was carrying glass table top out of building. Employee struck step with back of glass top. Glass broke and fell against back of employees leg, causing a laceration on back of left leg. Employee returned to work immed
## 6936                                                            3/7/2008 01:40 pm (blgay) employee was using grinder to remove old weld from mower frame, when debris went under safety glasses into right eye, causing a scratched right eye. Supervisor: s. R. Hancock
## 6937                                    3/7/2008 01:57 pm (blgay) employee was stepping down out of pickup truck, when employee twisted left knee slightly. Employee noticed some discomfort at the time and next day knee was swollen and sore. Supervisor: davis diggs
## 6938                                               3/7/2008 02:10 pm (blgay) employee was putting rebar in the shelter, when it rolled. Employee bent over to stop it and lifted the rebar. Employee felt sharp pains in lower left back area. Supervisor: w. D. Watkins
## 6939                                                                                    3/8/2005 09:01 am (fblackmo) employee states that while maneuvering hand truck to delivery supplies he, jammed his left thumb between the handle and door. Supervisor: pat glenn
## 6940                                                                                      3/8/2007 04:13 pm (bhenders) employee was driving 6 wheel dump truck west on nc 33. Driver ran over yellow line, hit ditch with truck. (employee blacked out or went to sleep)
## 6941                                                  3/8/2010 04:52 pm (blgay) employee was holding a sign post to be drove into the ground, when the post driver came apart. The part that fell out of the driver, hit employee in the head. Supervisor: clint stanley
## 6942         3/8/2010 10:09 am (blgay) employee was conducting a road test. The customer made a wrong turn, driving down the wrong side on english street, when he got on the correct side of the street he hit a car in front of him in his lane. Supervisor: teresa pa
## 6943        3/8/2010 10:29 am (blgay) employee was unloading a used motor grader moldboard. After employee hooked the lifting chain, he turned to get off the trailer and his left foot and leg fell between center boards and metal side frame. Supervisor: j. E. Adams
## 6944         3/8/2010 10:44 am (blgay) employee was operating machine lathe, chuck was not turning. Employee reached to remove a finished piece and while removing the piece, he hit his right hand on tooling bit, cutting the backside of his right hand between finge
## 6945        3/8/2010 10:57 am (blgay) employee was cleaning up truck after snow storm. Employee climbed into his truck, when he felt his left knee pop and hurt, this was near quitting time. The next morning employee reported to b. L. Sapp and went to doctor with a
## 6946            3/8/2011 03:02 pm (fblackmo) employee states that a private vehicle was merging into traffic when, vehicle went off the side of the road and hit the dot vehicle in the rear. Employee experience soreness in his chest area. Supervisor: tommy moss 04/
## 6947                                                                                                           3/8/2011 03:17 pm (fblackmo) employee was pulling on tree limbs when, he slipped and fell causing injury to his lower back area. Supervisor: jeff radford
## 6948                                                                                 3/8/2011 03:32 pm (fblackmo) employee was walking to her vehicle when, she slipped and fell on icy pavement. No physical injury was stated. Supervisor: kristen erin roberts brissm
## 6949                                        3/8/2011 03:46 pm (fblackmo) employee was walking to the engine room when, he fell on steps. Employee states the deck plate frame was removed. Employee felt pain in his left shoulder and leg. Supervisor: richard dewhurst
## 6950                                                        3/8/2011 04:58 pm (fblackmo) employee was surveying the bottom of a box culvert to obtain the vertical elevation. A bamboo stem punctured his right leg at a point above his boot. Supervisor: stephen coats
## 6951                                                                          3/9/2004 02:15 pm (fblackmo) employee was helping change blades on snowplow. He was lifting blade to mount on snowplow hen, he felt a sharp pain in his back. Supervisor: lindsey ethridge
## 6952                                                                                                                           3/9/2004 02:33 pm (fblackmo) employee was lifting a 10 x 12 x 20 piece of timber when, he felt pain in his back. Supervisor: d. F. Mikeal
## 6953                                                                                                3/9/2004 02:46 pm (fblackmo) employee states he was helping two other employee put a tailgate up when, he felt a pain in his lower back. Supervisor: randall jackson
## 6954          3/9/2004 03:12 pm (fblackmo) on 2/25/2004 at 11:45 am employee was helping another employee unload a catch basin grate off a utility truck bed and placing it on a catch basin. Employee never reported that anything was wrong until 7:55 am on 03/02/200
## 6955                                                         3/9/2004 03:44 pm (fblackmo) employee was plowing snow when, he hit a icy spot and lost control of the vehicle. Vehicle slid off road down the embankment and landed on it's side. Supervisor: s. G. Foster
## 6956               3/9/2004 03:59 pm (fblackmo) employee stepped up on a crack sealing machine to check material level. While stepping down off of the machine, he stepped on the edge of the pavement and twisted his right ankle. Supervisor: william edward mcclendon
## 6957                                                                                                                                             3/9/2004 04:17 pm (fblackmo) employee was pulling up a silt fence post and heard his back pop. Supervisor: w. T. Lowery
## 6958                                                                                  3/9/2004 04:27 pm (fblackmo) employee was walking to her vehicle when, she lost her foot and fell causing the injury to hier left ankle and right elbow. Supervisor: wright archer
## 6959                                                            3/9/2004 10:29 am (fblackmo) employee states a private vehicle ran a stop sign striking dot vehicle on passenger side door at a full rate of speed. Supervisor: t. F. Welch 11/12/2008 02:29 pm (sshort)
## 6960                                                                    3/9/2004 10:40 am (fblackmo) employee was washing out salt spreader, the augar was turning and caught the end of the hose pulling employees right hand into the auger. Supervisor: d. R. Summers
## 6961                                                                                             3/9/2004 10:50 am (fblackmo) employee was working on steep incline when, he felt pain in his left calf and ankle. Supervisor: randy pace 06/21/2005 09:47 am (kbarefoo)
## 6962                                                                                                                                        3/9/2004 11:06 am (fblackmo) employee states while moving timber he, felt pain in his lower back. Supervisor: a. W. Childers
## 6963         3/9/2006 08:25 am (fblackmo) employee was hauling asphalt in a tandem truck when a toyato celicia crossed the yellow line, causing truck to skid when it hit the dirt and overturned. Employee experienced pain to his left shoulder area. Supervisor: eric
## 6964                                                                                        3/9/2006 08:49 am (fblackmo) employee was walking on deck of ferry when, she slipped on wet deck, on oil spot. Employee felt pain in left knee area. Supervisor: jeff credle
## 6965                                                                                                                                  3/9/2006 09:17 am (fblackmo) employee was raking leaves when, he was bitten by a spider on lower leg. Supervisor: terrell r. Smith
## 6966                                                                                                          3/9/2006 09:32 am (fblackmo) employee was welding on a pump frame and stepped on a welding rod, puncturing his right foot. Supervisor: richard f. Jernigan
## 6967                                                                                                                             3/9/2006 09:43 am (fblackmo) employee was painting over graffiti with concrete when, debris got into right eye. Supervisor: abdul kalam
## 6968                                                                                          3/9/2006 10:12 am (fblackmo) employee was inspecting a bridge when rocks he was standing on moved causing him to fall on his left shoulder. Supervisor: dalton r. Alligood
## 6969         3/9/2010 04:50 pm (blgay) employee was removing brush, when he felt a pulling sensation in his back and sides. Employee thought the pain would diminish over the weekend, but by monday he had to leave work early due to pain and go see doctor. Superviso
## 6970          3/9/2011 02:40 pm (barnes) employee was test driving a pick-up to set readiness for an emission inspection. In the meantime, his vehicle was struck in the rear by another vehicle that left the scene of accident. Employee did note any injuries at time
## 6971          3/9/2011 02:51 pm (fblackmo) employee was cleaning the face of a sign. Standing on a post (to attach sign) his safety belt came a loose causing step to fall. Employee grabbed for post as he was falling causing injury to the palm of his left hand. Sup
## 6972                             3/9/2011 03:05 pm (fblackmo) employee was performing coast guard man overboard drill when he leaned over the side to pull the training dummy back into the boat he felt pain in his right side (rib cage area). Supervisor: kirk pistel
## 6973                                               3/9/2011 03:18 pm (fblackmo) employee was driving steel wedge between cap and piling. Sledge hammer handle hit ground causing fingers to be mashed between sledge hammer and steel wedge. Supervisor: james m. Rogers
## 6974         3/9/2011 03:44 pm (barnes) employee was getting materials to repair a hole on motsinger road. He shoveled and loaded 5 gallon buckets of abc rock into the bed of the truck. He then unloaded the buckets and poured the rock into the hole. On the way bac
## 6975           3/9/2011 04:18 pm (barnes) employee was giving road test to a customer. The customer maneuvered an emergency stop. This caused the employees neck to severely extend forward causing radiating pain down left arm. Employee injured his neck. Supervisor:
## 6976                                                                                                               3/9/2011 04:47 pm (fblackmo) employee was using a cart that had three boxes of plates in it when it fell over on his left leg. Supervisor: lynn chalk
## 6977          3/9/2011 05:43 pm (barnes) employee was working in a crew that was responsible for removal of vegetation. Employee was dragging brush and feeding material into the brush chipper. Employee stopped to wait while a tree was being cut down. Employee re-e
## 6978                                                                                     3/9/2011 09:07 am (fblackmo) employee was loading roll paper into the oce860 plotter when, she struck the side of the plotter with her right hand. Supervisor: larry strickland
## 6979                                                                                                                        3/9/2011 11:44 am (fblackmo) employee was driving 4" wooden stake when, axe handle made contact with his left wrist. Supervisor: keith green
## 6980                                                        3/9/2011 12:54 pm (barnes) employee claims noise induced hearing loss form loud noises such as impact air wrenches, hammers, grinders, running machines and other misc. Loud noises. Supervisor: larry tibbs
## 6981                                                                                                                                                                                                                  30+ years in clerks office typing, wiritng etc. ()
## 6982                                                                                                                                                                  3e making night contacts, EE states car hydroplaned and went into a ditch, contusion to lower back
## 6983                                                                                                                                                             3rd finger on lt hand was treated for a contusion reached to grab door, door closed on left hand/finger
## 6984                                                                                                                                                                4 liters of chiloroform was broken-vapors titered throughout bldg-casued EE to get dizzy and nauses.
## 6985                                                                                                                                  4 or 5 foot ditch was dug to replace broken 4in drainline was getting down in ditch to replace it and fell backwards on right hand
## 6986                                                                                                                                               4% paraformaldehyde was back-flashed into EE's rt eye when she was doing an experimental procedure to perfuse a mouse
## 6987                                                                                                                  4/1/2008 02:55 pm (fblackmo) employee felt numbness in fingers and thumbs on both hands while typing. Repetitive motion. Supervisor: neil roberson
## 6988                                          4/1/2008 03:18 pm (fblackmo) employee was operating an a-boom mowing tractor on state road 1005 when, a private vehicle ran into the back of the mower. Employee felt pain in his neck area. Supervisor: pedrew williamson
## 6989                                                                                                  4/1/2008 03:33 pm (blgay) employee was going down steps of the tar tank and misjudged the last, causing employee to twist his right ankle. Supervisor: derek dixon
## 6990                                                4/1/2008 03:39 pm (fblackmo) employee was driving down wade avenue when, traffic came to a sudden stop, and the car following him, hit him the back. Employee felt pain in his back area. Supervisor: corey sudderth
## 6991                        4/1/2008 03:49 pm (fblackmo) employee was chipping on the inside of a bulwark with his goggles on. He stopped chipping and removed his goggles, as he did, a piece of rust off his goggles blew into his left eye. Supervisor: thomas bowser
## 6992         4/1/2008 04:16 pm (fblackmo) employee was working on the m/v neuse in the passenger lounge. He was using a ladder to weld overhead. The ladder slipped and employee used his left hand to grab the I-beam. Employee felt pain in his left shoulder area. Su
## 6993                                          4/1/2008 04:28 pm (fblackmo) employee was inspecting fabrication of prestressed concrete girders when hot water/anti-freeze hose broke. Employee experienced burns to face, hands, and chest. Supervisor: trudy l. Mullins
## 6994         4/1/2008 04:59 pm (fblackmo) employee strained left knee while getting into the back of a crew cab pick up truck. The tailgate was down and employee placed left foot onto rear bumper with both hands on left side bed rail. The injury occurred as his we
## 6995                                                                                                                                                 4/1/2008 05:09 pm (fblackmo) employee was moving a cabinet when, he felt pain in his back. Supervisor: cindy austin
## 6996                                                                                                                                         4/1/2008 05:19 pm (fblackmo) employee was operating a bobcat when, he felt pain in his lower back. Supervisor: cindy austin
## 6997                                                                                                             4/1/2008 05:31 pm (fblackmo) employee was walking to back door of building, tripped on septic system and rolled foot on curb. Supervisor: s. K. Garrett
## 6998                                                    4/1/2009 09:16 am (fblackmo) employee was walking out the entrance when, she tripped over 2 x 2 boards laying in the pathway. Employee landed on her right knee and hands on concrete. Supervisor: d. I. Chapman
## 6999         4/1/2009 09:31 am (fblackmo) employee was sitting in back seat of parked state crew cab with her arm sticking out of window while they were on lunch break. Employee outside of vehicle stepped on running board of truck, slipped and hit her arm with his
## 7000                                                         4/1/2009 10:20 am (fblackmo) employee went to reset breaker on board m/v hyde due to power failure, he struck his right knee on guard rails while going down into the engine room. Supervisor: cindy austin
## 7001                                                       4/1/2009 10:53 am (fblackmo) employee was hooking the hydraulic hose from the spreader to the truck when, his right shoulder popped. Doctors notes states injury is not "work related". Supervisor: ben nelms
## 7002                                    4/10/2006 02:58 pm (fblackmo) employee was un-hooking the trailer from dump truck after the backhoe was loaded when, he reached to undo the piddle hook he caught his left index finger on trailer. Supervisor: michael t. Beane
## 7003                                                                                                                   4/10/2006 03:16 pm (fblackmo) employee was getting out of truck when, he closed the door on his finger on right hand. Supervisor: bill stephenson
## 7004                                                                                                                         4/10/2006 12:58 pm (fblackmo) employee was trimming limbs when, a limb fell striking him on his right shoulder. Supervisor: ricky ellington
## 7005                                                    4/10/2007 01:20 pm (speedin) employee was walking through trees and brush looking for property corners, poison ivy vines brushed the right side of his face, cheek area, chin and neck. Supervisor: andrew murph
## 7006                                                                                                    4/10/2007 01:48 pm (speedin) employee was operating a tractor. When he got off the tractor he noticed the tick was attached to his chest. Supervisor chris crump
## 7007         4/10/2007 02:08 pm (speedin) employee was cutting up a tree on stone mountain road and pulling limbs, felt a briar stick on his right leg, he later started running a high fever and leg began to swell, went to family doctor and was diagnosed with a sna
## 7008                                                             4/10/2007 02:49 pm (speedin) employee was using a drill press, when the bit went through, it grabbed and spun the metal, pressing the employees hand against the safety guard. Supervisor: g. E. Morris
## 7009                                                            4/10/2007 03:19 pm (speedin) employee was moving filled sand bags. When employee reached down to pick up sand bag with left hand his felt something pull on the right side. Supervisor: d. Shane edwards
## 7010                                                                                 4/10/2007 03:52 pm (fblackmo) employee was sitting at traffic light when, a private vehicle struck him in the rear, causing injury to his neck and back. Supervisor: r. E. Flaherty
## 7011                                                                   4/10/2007 04:03 pm (fblackmo) employee was moving ladder when, the hammer that was left on top step fell striking him on the head. Employee was not wearing his hard hat. Supervisor: wayne tosto
## 7012                                                                                                                          4/10/2007 04:25 pm (fblackmo) employees were stopped at red light when a private vehicle struck them in the rear. Supervisor: jody langdon
## 7013              4/10/2007 04:46 pm (fblackmo) employee was removing bolts from cutting edge of loader bucket. He had his hand on the under side of the cutting edge. The bolt turned cutting through his glove onto the palm of his left hand. Supervisor: c. G. Inman
## 7014                                          4/12/2005 03:04 pm (fblackmo) employee was pulling on a branch when, the branch snapped causing employee to fall backwards. The branch hit employee on the chin, employee felt pain in his back. Supervisor: robert ramsey
## 7015                                                                     4/12/2005 03:58 pm (fblackmo) employee was assigned to perform a repetitive test (liquid limit) since October 2004. In mid January he started having pain in his hands. Supervisor: mehdi haeri
## 7016                                                                           4/12/2005 04:13 pm (fblackmo) employee pulled chain that was attached to tailgate which caused the tailgate to come open pinching his left index center finger. Supervisor: david l. Lane
## 7017                                                                                            4/12/2005 11:07 am (fblackmo) employee was preparing a pipe for installation when, he slipped and bumped his right elbow on the pipe. Supervisor: dalton r. Alligood, jr
## 7018                                                                                                                                 4/12/2006 08:54 am (fblackmo) employee was dumping trash when, dust particles flew into his face and eyes. Supervisor: jimmy creech
## 7019                                                                                                                                4/12/2006 09:07 am (fblackmo) employee was exiting truck when, wind blew door closed on his right hand. Supervisor: henry sturdivant
## 7020                                                                          4/12/2006 09:26 am (fblackmo) employee was sweeping the edge of the roadway off with a push broom to prepare it for asphalt when, he felt a sharp pain in his back. Supervisor: john ellis
## 7021         4/12/2010 07:47 am (blgay) employee was using a pneumatic wrench to remove a bolt from a paint drum, when his glove was caught by the turning bolt as it was being removed. Employees pinkie finger on his left hand was twisted, causing injury to the fin
## 7022                              4/12/2010 08:00 am (blgay) employee was securing backhoe with binder to trailer. Binders gear slipped while employee was tightening it, causing handle to strike employee in the mouth and right side of face. Supervisor: ronnie king
## 7023                                                        4/12/2010 08:46 am (blgay) employee was walking and stepped into a 2' hole, causing a fracture to employees left foot. Contractor had excavated a hole for the outeiggers of crane. Supervisor: kenn bridges
## 7024                                                                                                                              4/13/2004 01:47 pm (fblackmo) employee was installing bob-wire when, he stuck his little finger on the fence. Supervisor: t. A. Powers
## 7025                                                                                                                     4/13/2004 02:08 pm (fblackmo) employee was raising hood on tractor when, the hood slipped and fell on his right hand. Supervisor: glenn barnett
## 7026                                                                                                                               4/13/2004 04:07 pm (fblackmo) employee was removing limbs when, one of the limbs struck employee in left eye. Supervisor: t. A. Woody
## 7027          4/13/2004 08:28 am (slee) state employee driving 1 ton delivery truck while stopped at the light on hwy. 74 and wesley chapel road. Private tractor trailer hit dot truck in the rear, pushed dot truck through the intersection causing employees head to
## 7028                                                                                                                  4/13/2004 10:42 am (fblackmo) employee experienced carpal tunnel syndrome in both hands while keying daily operations. Supervisor: linda f. Battle
## 7029                                                                                                        4/13/2004 10:55 am (fblackmo) employee states while driving a stone density pin into a abc stone he, felt pain in his lower back. Supervisor: anthony talley
## 7030                                                                                                      4/13/2004 11:10 am (fblackmo) employee was shoveling all day when, he felt pain in his left arm and elbow. Supervisor: l. D. Lucas 10/6/2008 04:06 pm (sshort)
## 7031                                                                4/13/2004 11:21 am (fblackmo) employee was unloading pipe from utility trailer, pipes slipped off dolly causing trailer to lift up and end struck employee under his chin. Supervisor: b. R. Knowles
## 7032                                                                            4/13/2005 02:51 pm (fblackmo) employee states while walking through door of office her body was cleared from entry. The door slammed on her right shoulder area. Supervisor: sylvia hall
## 7033                                                                                                                                         4/13/2005 03:01 pm (fblackmo) employee stepped in the woods when, a tree limb struck him in the eye. Supervisor: w. R. Wall
## 7034                                                            4/13/2005 03:57 pm (fblackmo) employee was holding a stack of metal signs with another employee and the other employee let go causing a pulled muscle on employees left side. Supervisor: wilbur d. Lane
## 7035          4/13/2007 03:13 pm (speedin) employee was walking over to bridge to check some measures that the contractor had established and tripped over the backwall at end bent#1 on bridge #5. He fell and bruised his leg & punctured his jaw on a all thread rod.
## 7036                   4/13/2009 09:31 am (blgay) employee was putting chains on swb truck. Driver was backing up on chock block. The wheel kicked the block out, striking the lower front of employees right leg, causing bruising and swelling. Supervisor: doug eller
## 7037                                 4/13/2010 03:12 pm (fblackmo) employee was stepping up onto a post stand to replace damaged stop sign. He stepped up with his right foot, foot lipped off stand causing him to fall and injury left knee. Supervisor: todd whitaker
## 7038                                4/13/2010 03:31 pm (fblackmo) employee claims as a result of long term work with computers and the addition of driving the state vehicle to various sites; carpal tunnel had been detected in both hands. Supervisor: michael jarman
## 7039                                                                                       4/13/2010 03:45 pm (fblackmo) employee states he twisted his left knee while dragging a concrete pump hose in muddy terrain (natural swampy ground). Supervisor: kevin sebold
## 7040          4/13/2010 04:09 pm (blgay) employee was reaching into truck bed from drivers side of truck and hurt back or neck. Employee made supervisor aware of incident on April 07, 2010 at approximately 2:30pm. Appointment was made with provider, where employee
## 7041         4/13/2010 04:44 pm (fblackmo) employee was completing a road test when, customer lost control of vehicle while turing into parking lot. Customer struck two parked vehicles causing employee to experience pain in his rib cage area, neck, and back. Super
## 7042                                       4/13/2010 09:15 am (blgay) employee was stepping up on tongue of amz machine to see why the rock didn't come out. When employee stepped down, his right foot turned over injuring his right ankle. Supervisor: randall howell
## 7043                                                                                                                                   4/14/2004 08:30 am (fblackmo) employee states while leaning over a tire he, felt pain in his back area. Supervisor: s. R. Hancock
## 7044                                                                                                    4/14/2004 09:15 am (fblackmo) employee was cutting a tree when, the tree struck him on his lower leg and ankle causing him to fall. Supervisor: j. H. Freeman jr
## 7045          4/14/2004 09:35 am (fblackmo) employee was checking load of asphalt to make sure he had the load equally distributed in the truck. He climbed up onto he tire and was holding to the sideboard to the truck. Employee foot slipped off the tire causing th
## 7046                                                                                             4/14/2005 08:30 am (fblackmo) employee was lifting a box of license plate when, the bottom of the box came apart bending her left wrist back. Supervisor: tonia stevens
## 7047                                                                                                                   4/14/2005 09:36 am (fblackmo) employee slipped on embankment while climbing to the top. Experienced pain in groin area. Supervisor: john jeffreys
## 7048                                                                                                                                    4/14/2007 02:07 pm (fblackmo) employee pinched his finger (left hand) between the tailgate on the truck. Supervisor: donald king
## 7049                                                                                                                 4/14/2007 02:18 pm (fblackmo) employee was moving 30 lbs blocks of crack sealing materials when, he felt pain in his back. Supervisor: grady raynor
## 7050         4/14/2007 02:28 pm (fblackmo) employee was cutting a 18' metal plate with acetylene torch. The melted metal blew back and flew up striking him in the face resulting in a piece of metal getting underneath his safety glasses and causing a burn to his le
## 7051                                                            4/15/2005 09:09 am (fblackmo) employee was walking back in building from break when, she slipped and fell on floor. Employee fractured her right hand and sprain the left hand. Supervisor: yvonne smith
## 7052                     4/15/2008 03:52 pm (fblackmo) employee was driving state vehicle when it was struck by a private vehicle. Employee felt pain in is right thigh and groin area. Supervisor: ron king 4/16/2008 03:06 pm (fblackmo) rosalin hennein felt soreness
## 7053          4/15/2009 02:27 pm (bhenders) while aboom operator was mowing ditch bank, the mower blade came off the mower and traveled 145 feet and struck motor grader. It broke the lower window on the left door, busted the fire extinguished and hit the motor gra
## 7054         4/15/2009 11:49 am (blgay) employee was climbing over a guardrail. Employee put left foot over guardrail, right hand on guardrail and swung his right leg over guardrail. Employees rubber boot caught on guardrail and when right foot came loose his body
## 7055                                                                                     4/15/2010 03:03 pm (blgay) employee was walking on shoulder of roadway and stepped into a shallow hole that was hidden by the grass, jarring his back. Supervisor: chris medlin
## 7056           4/15/2011 04:52 pm (barnes) employee was repairing a leaking oil seal on tandem dump truck. While reassembling the front hub and picking up the brakes and drums, the employee felt a pain in his lower back. Employee injured lower back. Supervisor: ja
## 7057            4/15/2011 05:16 pm (barnes) employee was working with asphalt patch crew. Employee started walking backwards from dump truck with shovel in his hands. He tripped over the landing gear of the backhoe. Employee landed on his right hand and arm. Emplo
## 7058                                                                                           4/15/2011 05:50 pm (barnes) employee was picking up trash bags and throwing it into the back of a dump truck. Employee injured his right shoulder. Supervisor: l. M burke
## 7059                       4/15/2011 06:02 pm (barnes) employee was cutting trees on right of way. The tree split and flew back hitting the employee's left leg and foot. Employee injuries consisted of contusion to left leg and left foot. Supervisor: troy dalrymple
## 7060            4/15/2011 06:22 pm (barnes) employee blevins along with other fellow employees was lowering a 3" water pump. The other employee advised employee blevins that he was about to let go. However, employee blevins did not let go at the same time. Holding
## 7061                                                                           4/15/2011 06:46 pm (barnes) employee was blowing straw with a straw blower. The wind blew straw back towards employee face. Employee got debris in his left eye. Supervisor: anthony reel
## 7062                   4/15/2011 10:13 am (fblackmo) employee was placing a wooden block under the engine mount of the engine removed from the m/v cape point when, a loose splinter pierced the palm of his hand and was deeply imbedded. Supervisor: robert w. Norwood
## 7063                                                                                                                     4/16/2004 03:21 pm (fblackmo) employee was re-stacking straw when, he fell of the truck causing the injury to his hand. Supervisor: glenn koepp
## 7064                                                                                                                         4/16/2008 01:00 pm (fblackmo) employee was emptying shredder when the top of shredder fell on employees left foot. Supervisor: m. G. Jarman
## 7065                         4/16/2008 01:17 pm (fblackmo) employee was getting out of cab after cleaning of sweeper on lowboy trailer when he fell backwards to the ground. Employee experienced a severe headache and swollen left elbow. Supervisor: rodney l. Tanner
## 7066                                                                                               4/16/2008 01:37 pm (fblackmo) employee sates while traveling down I-40 a private vehicle hit us from the side merging into our traffic lane. Supervisor: jimmy hawley
## 7067                                               4/16/2008 02:22 pm (fblackmo) employee was pulling the water hose out to water the flowers at the maintenance office when, her foot got caught in the hose causing her to fall on right elbow. Supervisor: s. R. Ross
## 7068          4/16/2008 03:13 pm (fblackmo) employee was driving eastbound on I-40 in a multi lane section. He was in the lane adjacent to the outside lane when his vehicle was struck by a private vehicle that was attempting to merge into his lane from an on ramp.
## 7069                                                                                                                     4/16/2008 03:20 pm (fblackmo) employee picked up battery, turned to install in service truck, and felt pain in his back. Supervisor: jimmy tuck
## 7070                                                                                                  4/16/2008 04:59 pm (fblackmo) employee states while exiting the truck employees foot slipped, causing him to fall hurting his left knee. Supervisor: t. S. Bozeman
## 7071         4/16/2009 03:01 pm (fblackmo) employee was cleaning out a driveway pipe with a sewer rodder. The cleaner head came through the pipe and came towards the employee. Employee caught the hose and it picked him up and threw him to the ground. In the proces
## 7072                                                                                                         4/16/2009 03:17 pm (fblackmo) employee was helping to take water pump out of tandem truck when, he felt pain in his lower back. Supervisor: r. R. Cartrette
## 7073                                                                     4/16/2010 03:00 pm (fblackmo) employee was driving when he slammed on brakes to avoid collision when, he was rear ended by a vehicle. Employee felt pain in his neck. Supervisor: wesley powell
## 7074                                                                                                              4/16/2010 03:28 pm (fblackmo) employee fell backwards from truck while cleaning off top board. Employee felt pain in his back. Supervisor: a. T. Ellis
## 7075                                                                            4/16/2010 11:19 am (fblackmo) employee was elongating a hole with a light bar die grinder when, the die grinder came out of the hole striking his left hand. Supervisor: charles watkins
## 7076                 4/17/2007 02:00 pm (speedin) employee was traveling on nc 105 about. 10 mile southwest of sr 1109(laurel fork road) on his way into the watauga maintenance yard. Employee past out and ran off roadway into a field. Supervisor: kevin whittington
## 7077                                                      4/17/2007 02:25 pm (speedin) employee was traveling south on hwy 105, there was another vehicle that was crossways in the travel lane, due to fog, employee struck the other vehicle. Supervisor: n. K. Turner
## 7078                                                                                                                      4/17/2007 03:12 pm (speedin) employee was locating topography of land in wooded area that had poison ivy growing. Supervisor: r d. Bret henson
## 7079           4/17/2007 03:34 pm (speedin) employee was standing on edge of road waiting on ncdot truck to come by him so he could get the paddle sign from driver. Employee was struck by mirror on the left shoulder. Supervisor: chip speight 4/17/2007 03:36 pm (sp
## 7080         4/17/2007 03:53 pm (speedin) employee was standing at the front counter in office. He turned right to return to his desk. A small child was standing next to his right leg. Trying to avoid the child employee fell and breaking the fall with his hands, h
## 7081                                                                                                         4/17/2007 04:27 pm (speedin) employee smashed finger between to pieces of rip rap while moving rip rap by hands from backhoe bucket supervisor james garner
## 7082                                                                             4/17/2008 08:14 am (blgay) employee was putting away some files, when the rubber band holding the files together popped and struck employee in the right eye. Supervisor: r. E. Blakley
## 7083                                                                                                                                                                                          4/18/2006 02:31 pm (bhenders) pov pulled out in front of sov (dump truck).
## 7084            4/19/2004 03:17 pm (slee) employee was headed back to job site loaded with asphalt. Private vehicle was making a left turn. As employee noticed the car in front of him turning, he applied brakes, veering onto the right shoulder to keep from hitting
## 7085                                                                                                             4/19/2005 02:40 pm (fblackmo) employee was loading ramps used to load and unload mower when, he felt pain in his left wrist. Supervisor: a. L. Lassiter
## 7086                                                     4/19/2005 02:52 pm (fblackmo) employee was walking through doorway when she bent down to pick something up off the floor, a wood splinter was lodged under her right ring fingernail. Supervisor: michael kozak
## 7087        4/19/2005 03:50 pm (fblackmo) employee and co-worker was carrying file boxes to storage room at the end of hall. Later that evening, employee started experiencing pain from right side of lower back down right leg and calf area. Supervisor: anthony rope
## 7088         4/19/2005 10:05 am (fblackmo) employee states while administering road test and approaching the intersection a private vehicle struck the state vehicle on front fender. Employee experience pain in his nose, knees, right thigh, right shoulder, and ches
## 7089          4/19/2005 10:21 am (fblackmo) employee was driving a state owned vehicle when, he ran off the shoulder of the road striking a pine tree. Employee experienced pain to his chest and lacerations to right side of head. Supervisor: william edward mcclendo
## 7090                                                                                                     4/19/2005 11:26 am (fblackmo) employee was unloading traffic cones from bed of imap truck when, he felt pain in his right shoulder area. Supervisor: t. W. Kirk
## 7091                                                                                                                                        4/19/2005 11:41 am (fblackmo) employee was conducting a survey when, he was bitten by a tick on torso. Supervisor: mark ward
## 7092                                                                                             4/19/2005 11:56 am (fblackmo) employee was removing load binder from low boy trailer when, operator dropped trailer on employees right foot. Supervisor: ronnie brigmon
## 7093                                                       4/19/2005 12:07 pm (fblackmo) employee eyes was subjected to casual contact with pesticide spray when another employee was attempting to exterminate a wasp. Irritation to both eyes. Supervisor: milton dean
## 7094                                                                                             4/19/2005 12:18 pm (fblackmo) employee was putting up silt fence when, he missed the driver post causing a laceration to his right hand. Supervisor: paul r. Draughn jr
## 7095                                                      4/19/2005 12:30 pm (fblackmo) employee was getting into bucket of "snooper" truck when, his foot slipped and he fell into bucket. Employee experienced pain in his left hip and leg. Supervisor: j. Ronald lee
## 7096                                                                                                                        4/19/2006 02:44 pm (fblackmo) employee was kneeling to nail cabinet when he stood up he felt pain in his left knee. Supervisor: dennis baker
## 7097                                                                                                                                              4/19/2006 02:56 pm (fblackmo) employee was walking and slipped on a rock and fell on payment. Supervisor: c. S. Austin
## 7098                                                                                                        4/19/2006 03:08 pm (fblackmo) employee was stepping down from truck when, stepped on a rock causing the injury to his right ankle. Supervisor: charles sharp
## 7099                                                                                              4/19/2006 03:45 pm (fblackmo) employee stated while hanging up hose from sprayer that her index finger got caught between hose and metal bar. Supervisor: bill murrell
## 7100                                                                        4/19/2006 03:55 pm (fblackmo) employee was working with mechanic with truck repair under truck. He stood up to quick and hit the frame causing a cut to his head. Supervisor: r. L. Marshall
## 7101                                                                      4/19/2006 04:05 pm (fblackmo) employee picked up 30lb. Block of crack seal material when, he felt something pop in his left elbow followed by burning and weakness. Supervisor: j. T. Williams
## 7102                                                                              4/19/2006 11:29 am (fblackmo) employee was stepping off elevator when, she stepped on slick spot on floor and fell. Employee felt pain in her right ankle. Supervisor: lisa j. Carroll
## 7103                                                                                                    4/19/2006 11:43 am (fblackmo) employee was lifting a box of plates to place on top of another box when, she felt pain in her left hand. Supervisor: donna creech
## 7104                                                                                                          4/19/2006 11:58 am (fblackmo) employee was moving boxes of forms and manuals with her foot and bruised her foot in the process. Supervisor: charles vinson
## 7105                                                                                                                                        4/19/2007 02:38 pm (fblackmo) employee experienced pain in her left hand and arm due to keying. Supervisor: p. G. Harrington
## 7106                                                                                                                      4/19/2010 09:49 am (fblackmo) employee was cutting limbs with bush axe when, he felt pain in his right hand and wrist. Supervisor: a. B. Davis
## 7107                                                                                                               4/2/2007 01:26 pm (speedin) employee was shoveling asphalt & stepped onto the roller and felt a sharp pain in his lower back. Supervisor r. D. Loflin
## 7108             4/2/2007 02:49 pm (speedin) employee was moving a large piece of asphalt off the road and she slipped and fell and hurt her right shoulder. Supervisor l. D. Lucas 6/1/2009 11:45 am (grwhite) steve johnson will schedule an appointment for second op
## 7109                                                                                                             4/2/2007 03:37 pm (speedin) employee was using roofing tack. Roofing tack turned into finger rather than penetrating flashing. Supervisor jimmy dameron
## 7110          4/2/2007 04:07 pm (fblackmo) employee was putting pine straw around azalea plants. She squatted down to put pine straw in around plant when, she lost her balance falling backwards. She put her left hand behind her to catch herself when, she felt some
## 7111                                                  4/2/2007 04:17 pm (speedin) employee was walking in a ditch when he slipped and fell, striking his right elbow on the rim of a tractor rim as he landed, resulting in a bruise to same. Supervisor charles f. Vick
## 7112                                         4/2/2008 03:04 pm (fblackmo) employee was going down stairs to another floor when, she lost her footing and fell. Employee reported she was using the hand rails. Employee broke her left foot. Supervisor: michael shumsky
## 7113                           4/2/2008 03:16 pm (fblackmo) employee was removing a gantry pin. As gantry pin was removed boom section dropped approximately eighteen inches causing his hand to be pinched between boom section and pender cable. Supervisor: guy white
## 7114                                                                                     4/2/2008 08:40 am (fblackmo) employee was climbing ramp to lower car, when he fell five feet causing injury to his left arm, wrist, leg, and shoulder. Supervisor: s. S. Warren
## 7115         4/2/2008 08:57 am (fblackmo) employee was spotting small dump truck while backing up to a driveway that was being installed on state road 1307. Employee stepped back to get truck over pipe and stepped into a backhoe wheel losing his balance and fell b
## 7116                                                                                                    4/2/2008 09:08 am (fblackmo) employee dropped bead bag into drum and when he removed bag and shook it loose beads got into his left eye. Supervisor: l. J. Kirby
## 7117        4/2/2008 09:21 am (fblackmo) employee was assisting sign erector willie ford in installing a new stop sign on existing sign post. Mr. Ford was putting the bolts on the back of the sign and Mr. Strickland bent down to get the wrench, when he stood up he
## 7118                                                                 4/2/2008 09:38 am (fblackmo) employee was cutting and pulling limbs off right of way where a pine tree top had fallen into the roadway when, he felt pain in his right arm. Supervisor: greg vinson
## 7119                                                                                                                                            4/2/2008 09:49 am (fblackmo) employee was picking up a box, the box fell striking her right foot. Supervisor: kevin lacy
## 7120                                                                                4/2/2008 10:09 am (fblackmo) employee vehicle was struck on left side by a private vehicle while crossing intersection. Employee felt pain in his left elbow. Supervisor: don g. Lee
## 7121                                                                         4/2/2008 11:12 am (fblackmo) employee was letting tailgate down to shovel asphalt. Tailgate fell off truck and chain caught his left pinky finger, cutting finger. Supervisor: calvin ricks
## 7122                                    4/2/2008 11:20 am (fblackmo) employee was changing the blades on the front end loader bucket. He was using an air wrench to break a nut loose, and bolt slipped, causing cut to left index finger. Supervisor: william o. Braddy
## 7123         4/2/2009 01:33 pm (blgay) employee was on the back of the crew cab dump bed for the purpose of replacing tools, and securing the two joints of concrete pipe on the bed. Employee lost his balance and fell over the side rail of the truck. As he fell, pe
## 7124         4/2/2009 01:53 pm (blgay) employee was conducting covert investigations and heard a noise under the truck. Part of his job duties is checking underneath the vehicle for vandalism from doing covert investigations. While he was lying on the ground turni
## 7125                                                                                                                         4/20/2009 08:50 am (blgay) employee was dragging brush on us 220 bypass north, when a tree limb hit him in the head. Supervisor: terry pugh
## 7126                            4/20/2009 09:00 am (blgay) employee was dumping his last load of dirt, when crossing over the ditch the cab of the truck started rocking back and forth causing employee to hit his left elbow on the door. Supervisor: dannie tomberlin
## 7127                           4/20/2010 09:13 am (fblackmo) employee was picking up a bench seat off the shoulder of the road. As he was throwing it into the bed of the trash truck, rusty water poured out onto him and into his right ear. Supervisor: jessie knight
## 7128              4/21/2004 02:09 pm (fblackmo) employee was heating asphalt on front bucket of a backhoe and scraping it off when, the scraper slipped and his right hand went in front of the torch causing the injury to his right hand. Supervisor: james r. Burgess
## 7129                                                                                                      4/21/2004 02:26 pm (fblackmo) employee was exiting truck from ladder when, he stepped on a rock causing the injury to his left ankle. Supervisor: w. D. Silver
## 7130                                                                                                 4/21/2004 02:37 pm (fblackmo) employee states while walking in a wooded area he, stepped on a tree root causing the injury to his left ankle. Supervisor: wade tate
## 7131                                             4/21/2004 02:46 pm (fblackmo) employee was cleaning debris off bridge and putting the debris in a wheel-barrow when, the wheel-barrow shifted to the left causing the injury to his left hand. Supervisor: d. W. Fowler
## 7132                                          4/21/2004 02:59 pm (fblackmo) employee along with another employee and 3 inmates was picking up an old piece of carpet when, he was stuck with a sewing needle that was sticking out of the carpet. Supervisor: d. L. Lane
## 7133          4/21/2004 09:39 am (fblackmo) employee was driving state vehicle to a project meeting being held in goldsboro and new bern. Employee was traveling on us -70 at raines mill road in the princeton area when, he ran into a parked utility truck. Superviso
## 7134                                                                                   4/21/2004 11:02 am (fblackmo) employee was getting out of truck when, his right foot slipped off wet running board causing the injury to his right ankle. Supervisor: s. W. Davis
## 7135                 4/21/2004 11:14 am (fblackmo) employee was dismounting from bucket truck when, he lost his footing on the curb causing the injury to his right foot. Supervisor: tim ashe 6/10/2004 09:37 am (gwhite) authorized pt 2x to 3x a week referred by Dr.
## 7136                                                          4/21/2004 12:02 pm (fblackmo) employee was conducting a road test when, the driver ran into a parked truck, wall, and gate causing the injury to her back and left side area. Supervisor: not stated on 19
## 7137                                                                                                                    4/21/2004 12:26 pm (fblackmo) employee was unloading plastic drainage pipe when, the injury occurred to his right wrist. Supervisor: r. T. Bland
## 7138                                                                                                       4/21/2004 12:55 pm (fblackmo) employee was inspecting asphalt when, he stepped into a drop off causing the injury to his left ankle. Supervisor: a. L. Talley
## 7139          4/21/2005 11:33 am (fblackmo) employee was on his way to job site when, a private vehicle crossed over into his lane striking driver side mirror and window. Glass from the mirror and window caused minor cuts to his left side of face and forearm. Supe
## 7140                                                                                               4/21/2005 11:45 am (fblackmo) employee was attempting to walk up steps, missed top step and fell onto concrete porch catching with right arm. Supervisor: l. W. Lyall
## 7141                                                                                                                      4/21/2005 11:59 am (fblackmo) employee was removing a dead animal form roadway when, he felt pain in his left shoulder. Supervisor: terry shaw
## 7142                                                                 4/21/2006 01:56 pm (fblackmo) employee was operating hand held motorized auger when, auger bit caught a metal pipe in the ground. Auger then twisted employees left hand. Supervisor: scott crocker
## 7143         4/21/2009 12:19 pm (blgay) employee noticed that right wrist was hurting more and more frequently during work hours. Brace helps some. Using keyboard and computer mouse makes pain worse. Noticed over weekend at home that pain went away and came back o
## 7144                                                                                              4/21/2011 02:14 pm (fblackmo) employee had placed his lunch cooler on top of the refrigerator and was reaching for it when he pulled his back. Supervisor: g. L. Baker
## 7145                                                                                                    4/21/2011 02:44 pm (fblackmo) employee was getting off the side of the bed of the dump truck when he felt pain in his right wrist area. Supervisor: jeff radford
## 7146                    4/21/2011 03:01 pm (fblackmo) employee was working under tandem truck on slack adjuster and while cleaning off mud and straw to get grease fitting he, felt pain in his right index finger. Possible cause, spider bite. Supervisor: g. N. Allen
## 7147                                                       4/21/2011 03:14 pm (fblackmo) employee was assisting work crew with cleaning out ditches; while clearing vegetation from ditchline and right of way he got into some poisonous vines. Supervisor: r. T. Moore
## 7148                                                                                                      4/21/2011 03:39 pm (fblackmo) employee tripped over work basket that was placed on the floor in the aisle outside of her cubicle. Supervisor: melanie weisbeck
## 7149                                                                                      4/22/2004 01:57 pm (fblackmo) employee was conducting a road test when, the driver hit a truck. Employee experience pain in her neck and lower back. Supervisor: r. M. Huffman
## 7150                                                                                                   4/22/2004 10:34 am (fblackmo) employee was crossing a high woven wire fence with a barbed wire top when, his right hand was caught on wire. Supervisor: mark wade
## 7151                                                        4/22/2004 10:52 am (fblackmo) employee states while mounting a fire extinguisher bracket on a forklift he, hit his right hand on a bolt causing the injury to his right hand. Supervisor: raymond paul brown
## 7152                   4/22/2004 11:32 am (fblackmo) employee was securing vessel at end of shift when, he accidentally put his foot under the ramp. Vessel was unloading weight of vehicle pushed ramp down on his foot causing the injury. Supervisor: g. L. Rollinson
## 7153                                                                                    4/22/2004 12:07 pm (fblackmo) employee states "alleged" working with plasma cutter and girder his entire body was red and irritated. Allergic reaction. Supervisor: hosea blount
## 7154                                                                      4/22/2005 08:24 am (fblackmo) employee was painting a roof when, he slipped on wet paint causing him to fall off the top of the roof. Employee injured his left elbow. Supervisor: k. R. Davis
## 7155                          4/22/2005 08:40 am (fblackmo) employee was doing field investigation of traffic signal when, he went to remove the "survey ahead" sign he, stepped awkwardly off the curb causing the injury to his right ankle. Supervisor: robert ziemba
## 7156                                                                                                   4/22/2005 08:52 am (fblackmo) employee was cutting and removing trees from shoulder of road when, he came into contact with poison ivy. Supervisor: denis harrell
## 7157              4/22/2005 09:02 am (fblackmo) employee was climbing down off the ather loader when, he wedding ring got caught on top step causing him to lose his balance and fall off bottom step. The machine was on the low boy trailer. Supervisor: rodney tanner
## 7158                                                                                             4/22/2009 03:13 pm (blgay) employee was cutting bushes and as he was walking down a steep, slick embankment, he fell and injured his back. Supervisor: larry d. Scruggs
## 7159         4/22/2009 03:27 pm (fblackmo) employee was standing on wet ground stretching upwards to adjust a mirror on the door of sweeper truck. Mirror and ground were wet from rain. Employee lost footing and slipped cutting his left thumb on cracked / broken mi
## 7160                                                                            4/22/2009 04:38 pm (fblackmo) employee stated that he was lifting a 2x6x20" timber off the trailer when, he felt something pull in left shoulder and neck area. Supervisor: c. N. Vaughn
## 7161         4/22/2009 04:49 pm (fblackmo) employee knocked off his glasses after being stung by insect. While trying to find his glasses he, didn't realize the light had turned red and struck the vehicle in front of him at the intersection. Employee had bruises o
## 7162                           4/22/2009 05:17 pm (fblackmo) employee was operating mower when blade broke. Blade broke the lower window in left door and busted the fire extinguisher. Fire extinguisher struck employee on his right ankle. Supervisor: terry barnette
## 7163                                                       4/22/2009 06:02 pm (fblackmo) employee was assisting in unloading pavement marking remover from trailer when, his left foot got caught under the ramp and fell twisting his left knee. Supervisor: ira harris
## 7164                                                4/22/2010 01:19 pm (fblackmo) employee was breaking studs off of bridge girders with a hammer. As he struck one of the studs, rust and dirt flew up into his face; causing injury to left eye. Supervisor: guy white
## 7165            4/22/2010 10:32 am (fblackmo) employee fell while walking in the hallway of the transportation building. Employee said she felt she turned and stepped while wearing platform s hoes, falling on her right side injuring wrist. Supervisor: lisa coleman
## 7166          4/22/2010 10:49 am (fblackmo) employee was attempting to loosen belts on the spreader using a shovel. The belts were stuck which caused him to use force. He experienced pain in his chest and left shoulder/arm while pushing the belt. Supervisor stated
## 7167                                                                                                          4/23/2008 02:40 pm (blgay) employee was getting into the sign truck (drivers side) and slipped off running board, hurting back. Supervisor: johnny coleman
## 7168         4/23/2008 02:41 pm (fblackmo) employee davis and averitt were trying to loosen a nut on a carriage bolt. The head of the bolt would turn as they tried to loosen the nut. Davis had his knee against the head of the carriage bolt trying to hole it down a
## 7169                                                                                                         4/23/2008 02:52 pm (blgay) employee was shoveling gravel out of a front end loader. Employee felt a twinge or pull in lower back. Supervisor: robert dennie
## 7170             4/23/2008 03:11 pm (blgay) employee was replacing a fuel filter on a truck. Employee was standing on the bumper and had his knee on the radiator, when his foot slipped off of the bumper and slide down the grill and bumper. Supervisor: jimmy ammons
## 7171         4/23/2008 03:23 pm (blgay) employee was performing the backing up portion of the road test and the customer was going to fast. Employee asked customer to slow down, customer hit gas instead of brake, went off the road, down a bank and struck a tree. S
## 7172         4/23/2008 03:32 pm (fblackmo) employee was cutting trees to open up right of way. Employee was wearing long sleeve shirt and on guard while working. A limb scratched/cut employee across left wrist and poison ivy presented in that area that next mornin
## 7173         4/23/2008 09:19 am (fblackmo) employee was on his truck unloading signs. Employee became unbalanced and fell striking his head on truck before hitting the ground. Employee felt pain in his right shoulder & elbow, neck, and head. Supervisor: stephen fu
## 7174          4/23/2008 09:35 am (fblackmo) employee was welding in yard on prefabricate steel components for a prompt action. A fan was used to blow smoke and fumes away from employee. A piece of metal blew under hood into employees left eye. Accident happened on
## 7175       4/23/2010 10:25 am (fblackmo) employee was working beside asphalt paver during a lane closure when, private vehicle in the open lane drove to close to the operation and side mirror struck employee in lower back(right side). Supervisor: k. C. Batchelor j
## 7176                                                                            4/24/2007 02:58 pm (speedin) employee was accidentally injured while attempting to close a tailgate while in the course and scope of his employment. Supervisor; not stated from form 18
## 7177          4/24/2007 04:30 pm (speedin) employee was trying to pull chain off of spreader hitch and he put his hand around hitch and the other operator hit hutch button and closed hitch on employees finger cutting first end off of left middle finger supervisor:
## 7178                                                                                                       4/24/2009 02:27 pm (fblackmo) employee was loading a 5" drill to back of utility truck when, he felt pain in his lower back. Supervisor: thomas p. Moorefield
## 7179                                                                                                              4/24/2009 02:42 pm (fblackmo) employee was working at worksite when, he twisted his left ankle while walking up embankment. Supervisor: w. T. Mckenzie
## 7180                                                                 4/25/2008 11:25 am (blgay) employee was dismounting mower, when he stepped down a pin on the mowing deck that was turned up punctured his right leg in the lower calf area. Supervisor: bruce myers
## 7181                                                    4/25/2008 11:38 am (blgay) employee was driving state vehicle at a slow rate of speed, when he was rear-ended by a fast moving vehicle, causing neck, lower back and left shoulder pain. Supervisor: harry viera
## 7182            4/25/2011 01:50 pm (barnes) employee was loading a tractor onto a trailer. As he was climbing down, his hand slipped off the front tire and he fell backwards onto the asphalt. He landed on his lower back. Employee injured his lower back. Supervisor
## 7183         4/25/2011 02:18 pm (barnes) employee was inspecting work on sr 1506 (macon county) under contract 14c. 056119. He assisted in piling brush, and contacted poison oak. Employee injuries consisted of blistering on right and left arms and hands. Superviso
## 7184                               4/25/2011 03:46 pm (barnes) employee was loading I-beam on backhoe trailer. When stepping onto trailer, he misjudged his step and missed the trailer. This caused him to skin his left leg on the trailer. Supervisor: barry kizziah.
## 7185          4/25/2011 04:17 pm (barnes) employee was in the back of a flat bed truck cutting straw strings on bales of straw that was to be fed into a mulch blower. The truck stopped causing him to loose his balance. This resulted in him cutting his left hand. S
## 7186            4/25/2011 04:41 pm (barnes) employee sat down to take a break. He felt pain in his right foot/ankle. He pulled down his sock and discovered a knot above his ankle bone. Employee limped and had pain when he tried to walk. Employee injuries consisted
## 7187                                                     4/26/10 assist. Resident from recliner into w/c-resident started to stand-dropped-emp. Holding gait belt-felt pull in r. Shoulder. 4/27/10 assisting resident to br-resident bent over-full weight on r arm. ()
## 7188                                                                                              4/26/2004 10:28 am (fblackmo) employee reported to work and was shot in leg and buttocks by an off duty co-worker. Supervisor: melvin dorsey *let joyce see all bills*
## 7189                                                                                                 4/26/2005 09:26 am (fblackmo) employee was loading trash with loader onto truck when, had window open and trash blew into his right eye. Supervisor: r. L. Anderson
## 7190                                                                                          4/26/2005 10:40 am (fblackmo) employee was cutting holes in plastic sheeting around chain to get it to hook when, he cut his right thumb with knife. Supervisor: ted burns
## 7191                                                                                           4/26/2005 10:51 am (fblackmo) employee was laying a stop / slow paddle (sign) on the ground when, he lost control and it struck him in the head. Supervisor: s. G. Dillon
## 7192             4/26/2005 11:03 am (fblackmo) employee was inside the bed of a dump truck repairing the tarp. The trap closed. Another employee open the trap when, the arm struck employee in the face causing a laceration to his lip. Supervisor: leslie g. Reynolds
## 7193                                 4/26/2005 11:12 am (fblackmo) employee was walking along the shoulder of the road when, he fell and twisted his left knee. Supervisor: rudy batchelor 08/21/2006 12:41 pm (gwhite) shoulder and neck included on 10/14/2005 injury.
## 7194                                                                                                                        4/26/2005 11:32 am (fblackmo) employee was in bed of dump truck shoveling asphalt when, he felt pain in his back. Supervisor: perry mitchell
## 7195         4/26/2005 11:51 am (fblackmo) employee states that elevator was not in operation. Employee took stairs to first floor. Employee was reporting to work when, she entered first floor and fell on her left arm. Employee was helped to her feet by janet d'ig
## 7196         4/26/2006 01:01 pm (fblackmo) employee was climbing out of a dump truck. When he got both feet on the ground, he released from his "three points of contact" to turn however one of his feet was on the edge of a small depression in the roadway s shoulde
## 7197                                                    4/26/2006 01:14 pm (fblackmo) employee was pulling himself up to work table when, stool went out from under him causing him to fall. Employee felt pain in his forearm, knee, and head. Supervisor: reese briley
## 7198                                                                                                               4/26/2006 01:26 pm (fblackmo) employee was mopping floors when, he went to pick up mop bucket he felt pain in his back. Supervisor: curtis r. Banhill
## 7199                                                                                        4/26/2006 01:39 pm (fblackmo) employee was cutting a tree from roadway when, he came into contact with poison ivy on arms, hands, abdomen, and eyes. Supervisor: terry woody
## 7200                                                                                                                4/26/2006 01:56 pm (fblackmo) employee threw a roll of jute mat into the back of dump truck causing pain to his lower back. Supervisor: w. K. Jarman
## 7201                                4/26/2006 02:09 pm (fblackmo) employee states that due to repeating motion of right arm cutting brush, swinging hammers, and other duties that is related to surveying he felt pain in his neck area. Supervisor: richard d. Hensley
## 7202                                                                                               4/26/2006 02:28 pm (fblackmo) employee was working on grading job while working in high grass, employee stepped hole and twisted right ankle. Supervisor: steve davis
## 7203                                          4/26/2006 02:43 pm (fblackmo) employee was pulling a metal band from under a stack of lumber, band got hung causing hand to slip and metal to cut through gloves and fifth finger on left hand. Supervisor: terry j. Davis
## 7204                                                                                                        4/26/2007 03:40 pm (speedin) employee was removing something from a toolbox and the wind blew the lid over and it hit him in the head, supervisor; tony east
## 7205                                                                                               4/26/2011 12:23 pm (fblackmo) employee states she was sitting at her desk when the chair leg broke/ gaveway and she fell to the floor. Supervisor: cashuanda mclaurin
## 7206         4/27/2006 04:02 pm (fblackmo) employee was working on the rental patch truck cleaning out the rock hose. As he was re-connecting the hose beneath the truck, employee either strained a muscle or rolled over something causing injury to his lower back. S
## 7207                     4/27/2006 04:27 pm (fblackmo) employee was cutting limbs and brush that was hanging over dump truck. Employee cut a limb, it fell, hit the ground, bounced back, and hit the top of employees foot causing a contusion. Supervisor: ray metcalf
## 7208                                                              4/27/2007 03:45 pm (speedin) employee was carrying a board to the bank, when he stepped on a board with an old rusted nail sticking out and it when through his right foot. Supervisor: j. P. Callicut
## 7209                                                                                                                                    4/27/2010 04:33 pm (fblackmo) employee was standing on the road when he felt pain in his left ankle. Supervisor: phelids rickard
## 7210                                                                          4/27/2010 04:55 pm (fblackmo) employee was surveying property lines when he felt something crawling behind his left ear. Employee experienced pain and swelling. Supervisor: daine hampton
## 7211                                                                                                        4/27/2010 05:59 pm (fblackmo) employee was carrying a wet paint sign when he ran into the paint machine causing injury to right knee. Supervisor: tony brown
## 7212                                                         4/27/2010 06:12 pm (fblackmo) employee was attempting to weld a angle iron brace onto steel h-pipe bent for bridge when, iron brace fell striking employee on right knee/leg. Supervisor: phillip m. Parker
## 7213                                                                                                                   4/27/2010 06:22 pm (fblackmo) employee was lifting a bucket when he felt something pull on the right side of his back. Supervisor: alan c. Levens
## 7214                                                  4/27/2010 06:31 pm (fblackmo) employee states crew was trimming trees when one of the limbs fell striking him on the top of his head. Employee felt pain in his neck and back area. Supervisor: a. J. "tony" mintz
## 7215                                                                                                                   4/27/2011 07:21 am (fblackmo) employee was climbing on side of truck and slipped off causing pain in his lower back area. Supervisor: jimmy evans
## 7216                                                                                                              4/28/2005 01:46 pm (fblackmo) employee was stepping onto wet trailer when, his foot flipped causing a scrap to his right shin. Supervisor: bruce myers
## 7217                                                                                                                                  4/28/2005 02:03 pm (fblackmo) employee was using a razor blade to cut wire tie when, he cut his left thumb. Supervisor: roger furr
## 7218                                                                                                                                           4/28/2005 09:08 am (fblackmo) employee was pushing drawer when, he felt pain in his back. Supervisor: douglas williams jr
## 7219                                                                                                                                               4/28/2005 09:29 am (fblackmo) employee tripped, landing on right knee while walking up steps. Supervisor: greg godwin
## 7220                                                                                                                                 4/28/2005 09:40 am (fblackmo) employee was on the shoulder of road when, debris flew into his left eye. Supervisor: r. J. Holifield
## 7221                                                                                                               4/28/2005 10:07 am (fblackmo) employee was lifting a piece of broken asphalt with a shovel when, he felt pain in his back. Supervisor: g. J. Liverman
## 7222                                                                                4/28/2005 10:17 am (fblackmo) employee was carrying box of cdl manuals from stock room when, she was sitting case down she, felt pain in her right shoulder. Supervisor: lorie cantu
## 7223                                                                                                                    4/28/2005 10:29 am (fblackmo) employee was moving tools from one truck to another when, the shovel struck him in the eye. Supervisor: r. M. Ladd
## 7224                                                                                                                     4/28/2005 10:45 am (fblackmo) employee was clearing trees from right of way when, he came into contact with poison oak. Supervisor: james smith
## 7225         4/28/2006 08:39 am (fblackmo) employee was operating grader when, he found a tick on his private area. Two days later it began to swell and had knots around it where he had removed the tick. He went to the workers comp doctor on saturday morning. Supe
## 7226                                                                    4/28/2006 09:09 am (fblackmo) employee was stepping out of flatbed truck to take out tail boards when, he slipped and fell causing the injury to his left side area. Supervisor: p. P. Mansfield
## 7227                                                                                                           4/28/2006 09:21 am (fblackmo) employee came into contact with poison ivy that was rapped a dead tree during tree removal operation. Supervisor: jp ingram
## 7228         4/28/2009 09:20 am (blgay) employee was working in a crew clearing vegetation from right of way. The injured employee was standing below other co-workers and dragging brush to a chipper. A co-worker had cut a small tree and was tossing limbs to the bo
## 7229         4/28/2009 09:38 am (blgay) employee was rolling out fabric to use under rip rap. Employee rolled out fabric and was walking off the distance that would be used, when he stepped in catch basin that was covered with fabric. The lid on the catch basin wa
## 7230                       4/28/2009 09:53 am (blgay) employee was operating a walk behind saw cutting asphalt. Pieces of carbide teeth came off while blade was spinning, striking employee in the right forearm, causing a minor laceration. Supervisor: ranette davis
## 7231                                                           4/28/2009 10:22 am (blgay) employee was unloading debris off the tandem dump truck, when a board fell off the top and fell on employees right arm, causing a fracture right wrist. Supervisor: danny dees
## 7232                                                                                             4/29/2004 01:06 pm (fblackmo) employee states while attempting to cross highway he, slipped and fell causing the injury to multiple body parts. Supervisor: arnold cabe
## 7233                                                                                                              4/29/2004 03:36 pm (fblackmo) employee was cleaning the yard when, a piece of metal hit his left foot pinching his little toe. Supervisor: j. E. Stepp
## 7234                                                                                   4/29/2004 08:18 am (fblackmo) employee was operating a broom tractor in work zone when, tractor was struck from behind by a private on vehicle. Supervisor: bobby j. Berryhill jr
## 7235                                                                                                       4/29/2004 08:31 am (fblackmo) employee was sitting in a crew cab dump truck when, it was struck in the rear by a private vehicle. Supervisor: arthur g. Short
## 7236                                                             4/29/2004 08:50 am (fblackmo) employee was on jobsite carrying a chainsaw when, he stepped in a ditch covered with leaves causing the injury to his lower back and left leg. Supervisor: j. Paul ingram
## 7237                                                                   4/29/2004 09:05 am (fblackmo) employee states she tripped over construction materials while carrying files to secretary office causing the injury to her left wrist. Supervisor: t. Lane mallonee
## 7238                                                                                                                         4/29/2004 10:06 am (fblackmo) employee was helping to pull limbs to chipper when, he felt pain in his chest area. Supervisor: ricky l. Ford
## 7239                                                   4/29/2004 10:18 am (fblackmo) employee was working on building brackets for shelves and was sawing with a dewalt miter saw cutting 2x2 blocks when, he cut his left arm above wrist area. Supervisor: m. B. Smith
## 7240                                                                                                                               4/29/2004 10:30 am (fblackmo) employee states while pulling limbs to chipper he, felt pain in his right wrist. Supervisor: b. R. Webb
## 7241                                                                                                     4/29/2004 10:41 am (fblackmo) employee stated that he was checking radiator coolant level when, the hot liquid burned his left forearm. Supervisor: j. F. Sloop
## 7242                                                                                                4/29/2004 11:01 am (fblackmo) employee states he was bitten by a tick on his left shoulder while loading and blowing straw in flowerbed. Supervisor: terry v. Leazer
## 7243                                                        4/29/2004 11:12 am (fblackmo) employee was working with paint crew marking roads when, he was bitten by a tick on right side of abdomen (waist line). Supervisor: joe s. Parker 04/30/2004 07:57 am (gwhite)
## 7244                                                                           4/29/2004 11:24 am (fblackmo) employee states he tried to catch himself from falling while exiting a tandem truck, causing the injury to his right wrist. Supervisor: joseph c. Pruitt jr
## 7245                                                                                                      4/29/2004 11:39 am (fblackmo) employee was removing a hose from the equipment when, foreign matter sprayed him in the eyes and face. Supervisor: j. L. Hansley
## 7246                                                                                           4/29/2004 12:00 pm (fblackmo) employee was on I-85 south during a crack sealing operation when, another employee ran over his left foot/ankle. Supervisor: archie coghill
## 7247                                                                                          4/29/2004 12:14 pm (fblackmo) employee was un-hooking tailgate from truck when, he slipped and fell striking his right wrist on corner of trailer. Supervisor: donald king
## 7248                                   4/29/2004 12:42 pm (fblackmo) employee parked beside the road near some tree branches. As he was getting out of the truck, he pushed against the branch and something bit or stung him on the left hand. Supervisor: e. W. Spivey
## 7249                                   4/29/2004 12:53 pm (fblackmo) employee was repairing a tire change machine. While installing the hydraulic cylinder using a pry bar, bar slipped striking him in the mouth chipping right front tooth. Supervisor: charles hatley
## 7250          4/29/2008 09:55 am (fblackmo) employee was performing a cdl skills test when, she stepped out of the truck she felt a pop in her left knee. It popped again while she was talking to customer while changing standing position. Supervisor: michael jarman
## 7251                                                                                                                                4/29/2008 10:10 am (fblackmo) employee was cutting brush with bush axe when, tree sap got into his right eye. Supervisor: ed mcelroy
## 7252         4/29/2008 10:19 am (fblackmo) employee was cutting underbrush on new project when bush axe hit a limb that was above employees head. Point hit tree and axe bounced back and hit employee on the head. Made a small hole in head that required five stitche
## 7253         4/29/2008 10:29 am (fblackmo) employee was unloading cold patch on pallet located onto the loading dock of the warehouse. Wilson was trying to turn the pallet jack into place by pushing and then pulling the jack to get it into place. While employee wa
## 7254                                         4/29/2008 11:31 am (fblackmo) employee was working on mobile unit when, bungee cord popped loose and the end hit the end of her right thumb causing knot and swelling over the end of her thumb. Supervisor: charles almond
## 7255                                                                                                              4/29/2008 12:50 pm (fblackmo) employee states tick bite occurred during ncdot wetland mitigation site visit in gates county. Supervisor: philip harris
## 7256         4/29/2009 01:05 pm (blgay) employee has been shoveling and raking asphalt for almost 6yrs. Employee has osteoarthritis and its aggravated by the repetitive motion. Since his initial doctor visit his condition has become worse, causing pain and loss of
## 7257                                                              4/29/2009 01:47 pm (blgay) employee was jacking up a car to change the tire. When taking tire from rear driver side, right hand was caught between jack handle and bumper. Supervisor: ann lorscheider
## 7258                                                         4/29/2009 02:06 pm (blgay) employee was bending over and removing timber nailer from I-beam with a pry bar, when he felt pain in his lower back area. Supervisor: thomas chavis 7/27/2009 04:19 pm (sshort)
## 7259                  4/29/2010 08:33 am (fblackmo) employee was working inside the void of the m/v cape point when he slipped on wet point and fell into the bilge, resulting in a laceration to the left side of his head in the scalp area. Supervisor: thomas bowser
## 7260                                                                                                                             4/29/2010 08:59 am (fblackmo) employee was shoveling around catch basin when he felt pain in his lower back. Supervisor: b. N. Braswell
## 7261         4/29/2010 09:17 am (fblackmo) employee was trying to remove bearing from gear box shaft. Employee was driving a chisel between bearing inner race and shaft. After hammering a couple of times the tip of the chisel shot free and hit employee in the stom
## 7262          4/29/2010 09:34 am (fblackmo) employee placed chock under tractor trailer tires to stop the movement. Truck started moving causing chock to shot out and hit employee on his right index finer and bruise to lower left leg. Supervisor: h. C. Scarborough
## 7263                                                                         4/29/2010 09:46 am (fblackmo) employee was attempting to straighten the bracket of a light when the wrench slipped striking employee on left forearm and wrist. Supervisor: johnny r. Price
## 7264                                                                                                                                          4/29/2010 10:30 am (fblackmo) employee was welding studs without helmet when both eyes was burned. Supervisor: g. N. Allen
## 7265                                       4/29/2010 10:44 am (fblackmo) employee was preparing to take photographs of bridge conditions when he turned, stumbled on raised bridge median and fell causing injury to his face and both wrist. Supervisor: darren pittman
## 7266                                                            4/29/2010 11:23 am (fblackmo) employee states while performing inspections on project he rolled his left foot while walking on uneven ground covered with sticks and stumps. Supervisor: jason salisbury
## 7267                                                                                                                                  4/3/2006 09:52 am (fblackmo) employee was bending over to pick up trash when, he felt pain in his back. Supervisor: terry a. Woody
## 7268                                                                                                                      4/3/2006 10:20 am (fblackmo) employee was replacing corrugated crossline when, he felt pain in his lower back area. Supervisor: tommy cottrell
## 7269                                        4/3/2006 10:55 am (fblackmo) employee was in process of removing traffic control cones from highway. He stepped wrong getting out of the pickup truck causing the injury to his right ankle. Supervisor: w. E. Mcclendon, jr
## 7270                                                                                                                      4/3/2007 02:16 pm (speedin) employee was cutting trees and shipping brush on I-85 and came in contact with poison oak. Supervisor l. C. Dedmon
## 7271                                                               4/3/2007 09:05 am (speedin) employee was installing shoulder closed signs on hwy. Right of way when another employee struck him in head with a metal shoulder closed sign. Supervisor w. W. Childress
## 7272                                                                                                                                                          4/3/2007 09:29 am (speedin) employee was burning trash and a spray foam can exploded supervisor jl cornell
## 7273                                              4/3/2007 10:51 am (fblackmo) employee states a wooden keyboard fell on her right foot/toe. Supervisor: gwen s. Witherspoon 4/19/2007 03:54 pm (fblackmo) has an attorney " robert lucas with lucas, denning & ellerbe"
## 7274                                                                                                                                 4/3/2007 11:18 am (speedin) employee was at a stop and a box truck hit a suv and the suv hit my map truck. Supervisor melvin dorsey
## 7275         4/3/2009 10:02 am (fblackmo) employee was at the back of the bridge yard looking for a piece of metal in a pile of salvage metal. He almost tripped on a piece of metal, caught himself with his right hand, causing injury to his pinky finger. Supervisor
## 7276                                                                                                                                              4/3/2009 10:16 am (fblackmo) employee found tick bite on back of right leg behind right knee. Supervisor: jimmy hawley
## 7277                                                                                                            4/3/2009 10:53 am (fblackmo) employee was walking up steps when, he slipped, and caught himself feeling a tear in his stomach. Supervisor: thomas bowser
## 7278                                                                                                                                                 4/3/2009 11:13 am (fblackmo) employee was in the field when, he was bitten by insect on neck. Supervisor: lee stone
## 7279         4/3/2009 11:27 am (fblackmo) employee was reaching in the back of the work truck leaning over the tailgate attempting to pick up the stop paddle which was buried under 120lbs of asphalt in gags. Employee forcefully lifted the sign from under the aspha
## 7280                                                                                                                       4/30/2008 03:48 pm (fblackmo) employee was clearing brush under guard rail when, he was bitten by a tick on his back. Supervisor: mark conner
## 7281                                                                   4/30/2009 02:21 pm (blgay) employee was picking up litter along roadway on us 15-501 north. At home after work, employee found a tick embedded in his left lower abdomen. Supervisor: meta cooper
## 7282         4/30/2009 02:54 pm (blgay) employee was driving the spray truck on 03/20/09 and 03/23/09. Employee drove the attenuator truck on 03/17/09 and 03/24/2009. Employee went home sick on 03/26/09 and went to the hospital on 04/01/09. Employee worked on 03/3
## 7283         4/30/2009 03:37 pm (blgay) employee was standing on a rut and stepped on a stick, causing his right knee locked back. Employee originally injured this knee with us on 11/02/2007 and reported it at that time, but never sought medical treatment. At that
## 7284                                                                   4/30/2010 04:15 pm (fblackmo) employee was installing and programming radio when he extended his left arm to place lap top on desk he heard a pop in his left shoulder. Supervisor: james hoffman
## 7285                                                                                                                                            4/4/2006 09:25 am (fblackmo) employee states while moving rocks he felt pain in his lower back. Supervisor: albert oneal
## 7286                                                                                     4/4/2006 09:37 am (fblackmo) employee was helping to lift tamp to complete compaction of backfill material when, he felt pain in his lower stomach area. Supervisor: tim finger
## 7287                                                                                             4/4/2006 09:50 am (fblackmo) employee states while stepping down ladder un-loading truck he, felt a tearing sensation in his lower back area. Supervisor: larry daniels
## 7288                                                                                                                                          4/4/2008 01:55 pm (blgay) employee was taking signs down, when the ladder he was standing on broke. Supervisor: andy helms
## 7289                                                                 4/4/2008 02:14 pm (blgay) employee was reaching into the back of crewcab to get his coat at the end of the day, hitting a bush axe blade that was turned up with his finger. Supervisor: ronald lee
## 7290                                     4/5/2005 12:02 pm (fblackmo) employee was removing new parts of spreader from inside where they were shipped from factory when, he stepped into a 5 1/4 inch gap between grates scraping his right arm. Supervisor: n. A. Clark
## 7291                                                                         4/5/2005 12:15 pm (fblackmo) employee reached into the glove compartment of the vehicle and was cut on the finger by a box cutter which was not fully retracted. Supervisor: dennis harrell
## 7292          4/5/2006 09:05 am (fblackmo) employee had bent down to look under the state vehicle that he was driving. The vehicle had a noise/vibration under the front end. When employee stood up he felt a sharpe pain in his back. Supervisor: ads w. T. Ballentine
## 7293                                                                                                                                   4/5/2007 10:13 am (fblackmo) employee was blowing out cracks in pavement when, debris was blown up into his left eye. Supervisor:
## 7294                                                                                                                         4/5/2007 10:26 am (fblackmo) employee was walking down hallway when, she tripped and fell causing injury to hands. Supervisor: caresha wall
## 7295                                                                                                                                                  4/5/2007 10:51 am (fblackmo) employee was removing door glass when, he cut his right hand. Supervisor: w. E. Evans
## 7296         4/5/2007 11:37 am (fblackmo) employee was working on a crack sealing crew switching out between using a wand to fill cracks and a squeegee to smooth material over cracks. Employee told his supervisor his back was hurting. No specific incident that cau
## 7297                                                                                                                                4/5/2007 11:51 am (fblackmo) employee was lifting nuclear density when, he felt pa in in right shoulder. Supervisor: w. C. Kincannon
## 7298                                                                                                                       4/5/2007 12:02 pm (fblackmo) employee was lifting 500 pound tractor wheel weights when, he felt pain in his back. Supervisor: charles watkins
## 7299         4/5/2010 07:36 am (blgay) employee was working under a trailer installing a abs control valve back onto tank. Employee let go of the valve to reposition his hands to get a better grip on the valve. The valve fell off fitting and struck employee on the
## 7300         4/5/2010 07:48 am (blgay) employee was going through a hole in chain link fence on job site, had instrument pack on his back, machete was attached to pack with machete inside sheath. The machete got snagged on fence, employee reached back to release m
## 7301                                                                                                                                                 4/6/2004 02:26 pm (fblackmo) employee is experiencing repetitive motion in both wrists supervisor: charles willford
## 7302                                                                                                    4/6/2004 02:39 pm (fblackmo) employee states while pulling a driver up out of the ground he heard something pop in his left shoulder. Supervisor: thomas johnson
## 7303                                                                                                4/6/2004 02:53 pm (fblackmo) employee states while loading and un-loading plant materials he, felt pain in his lower back and left leg area. Supervisor: derek smith
## 7304                                                                                                                                4/6/2004 03:05 pm (fblackmo) employee states while stepping off of excavator he, felt his right knee buckle. Supervisor: c. I. Lucas
## 7305                                                                                                                                           4/6/2004 03:27 pm (fblackmo) employee states while pulling limbs, one limb struck his left eye. Supervisor c. H. Winstead
## 7306                                                                                                                     4/6/2004 04:03 pm (fblackmo) employee was clearing survey line when, a limb sprung back striking him on the left eye. Supervisor: t. K. Wheller
## 7307                                                                                                  4/6/2004 12:14 pm (fblackmo) employee slipped on clay while directing tuck to dump rocks on I-95, causing the injury to his left hip area. Supervisor: greg vinson
## 7308                                                                                                                              4/6/2004 12:27 pm (fblackmo) employee states while shoveling stones she, felt pain in her back and side area. Supervisor: jesse mercel
## 7309                                                                                                            4/6/2004 12:37 pm (fblackmo) employee states while lifting a cold patch mix in bags he, felt pain in his chest and back area. Supervisor: c. H. Winstead
## 7310                                                                                                                                        4/6/2004 12:46 pm (fblackmo) employee states while planting flowers he, felt pain in his groin area. Supervisor: j. M. Hicks
## 7311                                                                                   4/6/2004 12:57 pm (fblackmo) employee states he was struck in the back by a back hoe bucket driven by a contractor while observing a paving operation. Supervisor: o. T. Anderson
## 7312                                                                                                                                              4/6/2005 02:58 pm (fblackmo) employee was using drain cleaner when, it splashed into his eyes. Supervisor: ricky davis
## 7313          4/6/2005 03:17 pm (fblackmo) employee was walking out of maintenance office when, he tripped over concrete plat form for air conditioner unit. Employee stated that the area was not marked with any type of marking paint to show change in height of the
## 7314                                                4/6/2005 03:30 pm (fblackmo) employee was watching two employees wrestling when, he went to stand up he lost his footing on the curb. Employee fell toward truck striking his rib cage area. Supervisor: j. R. Price
## 7315                                                                                                          4/6/2006 01:10 pm (fblackmo) employee was pulling an asphalt sample from a dump truck when, he felt pain in his lower back area. Supervisor: Jan t. Womble
## 7316         4/6/2006 02:42 pm (blgay) employee was on job site, watching crew clean out a pipe, when she took hood off her head and felt extreme pain on the back of the neck. At that time, she told her co-workers that she had been stung by a bee, and was allergic
## 7317                                                                                                                 4/6/2006 03:31 pm (fblackmo) employee was stepping out of truck when, he missed one step causing him to fall on his right knee. Supervisor: joe lee
## 7318         4/6/2006 04:18 pm (fblackmo) employee was loading supplies at the equipment shop. He began to secure the supplies that were on pallet on trailer. A chain became obstructed by plastic that was wrapped around traffic cones causing resistance with pullin
## 7319                                        4/6/2006 12:37 pm (fblackmo) employee was cutting blade off the bucket of a backhoe using an impact wrench. Employee was pushing up on bolt when bolt turned. The bolt cut his left index finger. Supervisor: michael wilson
## 7320                                                                                             4/6/2010 07:27 am (blgay) employee was checking oil in dump truck, turned to exit between tire and frame, tripped and fell, twisting left knee. Supervisor: mark taylor
## 7321         4/6/2010 07:41 am (blgay) employee was sitting down checking in customers at the front counter. Employee stated that she dropped the lens in her glasses onto the floor. Employee stated that she got down on her hands and knees and had difficulty gettin
## 7322                                                                                              4/6/2010 09:04 am (fblackmo) employee was conducting a car inspection for a road test when, she turned and tripped over the concrete stoop. Supervisor: vickey bridges
## 7323          4/6/2011 03:41 pm (barnes) employee was trying to pull tarp back by hand. The tarp was stuck on the l bracket. He tried to pull it back, but it ripped and pulled his hand into the lower roller cutting the top of his left hand. Employee injured his le
## 7324                                             4/6/2011 04:56 pm (barnes) employee was operating tractor with auger. He had the clutch depressed, and when he turned to look to the rear he twisted his knee. Employee injured his left knee. Supervisor: steve ingold
## 7325             4/6/2011 05:18 pm (barnes) employee benton was one of four employees lifting a cement lid to look at a pipe. Another employee lost his grip causing the lid to fall, and employee benton's finger was smashed. Employee injured his left middle finger.
## 7326         4/6/2011 07:31 am (fblackmo) employee was working with crew replacing and end joint pipe on a crossline. The pipe needed to be rolled over. With the assistance from another employee, Mr. Robbins attempted to roll the pipe over when he felt a sharp pai
## 7327                                                                              4/6/2011 07:57 am (fblackmo) employee was helping put canvas arm stops on truck when his thumb was caught between the tarp arm and the top of the tailgate. Supervisor: albert d. Vann
## 7328                                     4/6/2011 08:11 am (fblackmo) employee was on crutches due to a prior incident to his right toe (non-work related). Employee was trying to stand up when, he bumped his toe against his desk. Supervisor: srinvasarao kandimalla
## 7329                                                                                               4/6/2011 08:27 am (fblackmo) employee states repetitive motion to her right hand and wrist due to keyboard, phone, and calculator usage. Supervisor: charles e. Jones
## 7330                                                                                   4/6/2011 08:52 am (fblackmo) employee was involved in scat training when he had an allergic reaction to mat. Employee feet became inflamed and swollen. Supervisor: s. M. Watkins
## 7331                                                                             4/6/2011 09:10 am (fblackmo) employee was transferring crs-2 tar from storage tank into a tank on tack truck when the crs-2 splashed onto his face and clothing. Supervisor: s. R. Ross
## 7332              4/6/2011 09:25 am (fblackmo) employee states the construction crew was working on a ditching operation. Brain house had dropped her off at the flagging station while backing up the rear bumper struck her right lower leg. Supervisor: adam s. Walls
## 7333                                                                                      4/6/2011 09:42 am (fblackmo) employee was rolling a water hose, while pulling it his thumb on his right hand popped causing soreness and swelling. Supervisor: david pleasants
## 7334                                                                                                                                       4/6/2011 10:44 am (fblackmo) employee stepped on some uneven pavement and rolled his right foot/ankle. Supervisor: alvin ball
## 7335                                                                                         4/6/2011 11:00 am (fblackmo) employee was exiting his crew cab flatbed when, he twisted to close the door he felt pain in his upper back area. Supervisor: hoza l. Thompson
## 7336         4/6/2011 11:13 am (fblackmo) employee was loading post driver in back of truck when the driver got hung on the mounting device. Employee tried to unstuck the driver when his ring finger on right hand got caught between the driver and bed of the truck.
## 7337              4/6/2011 12:58 pm (barnes) employee was removing a switch from panel by using a pocket knife to release locks on switch. Blade of knife closed cutting employees right index finger. Employee injured his right index finger. Supervisor: larry greene
## 7338                                                                                                                              4/7/2005 03:40 pm (fblackmo) employee was setting cylinders on floor when, she felt pain in her back area. Supervisor: darin l. Waller
## 7339          4/7/2005 04:13 pm (fblackmo) employee was driving crew cab pickup truck. Employee met a log truck causing debris to fly up striking employees windshield. Windshield shattered causing the injury to his hands, face, and eyes. Supervisor: g. J. Liverman
## 7340                   4/7/2005 08:30 am (fblackmo) employee was putting out salt with spreader, the truck started to make a noise so employee slowed down, the left front tire fell off. Employee experienced pain in his lower back area. Supervisor: james d. Shelton
## 7341                                                4/7/2005 08:44 am (fblackmo) employee was climbing down from 4" trailer when, his right leg gave way causing him to fall to the ground. Employee experienced head pain and right leg pain. Supervisor: bobby thrower
## 7342                                                                                  4/7/2005 08:58 am (fblackmo) employee was checking load on bed of truck when, he fell due to ice build up. Employee experienced pain in his left hand. Supervisor: robert k. Payne
## 7343                                                                                                                         4/7/2005 09:31 am (fblackmo) employee was pushing barrels of paint on truck when, he felt pain in his left leg. Supervisor: mike carrington
## 7344         4/7/2009 10:11 am (blgay) employee was helping change a stop sign from old to new. Employee was standing on a changer post bracket that slipped causing him to grab the top of the sign. Employee cut his hands as he was falling. Small cuts on left and r
## 7345           4/7/2009 10:42 am (blgay) employee went to get a rubber tarp to be used in the snow. When he walked into the building where the fuel truck was parked, he didn't see the black ice, causing him to slide and twist his left knee. Supervisor: rufus white
## 7346         4/7/2009 10:54 am (blgay) employee was working traffic control on an accident. Employee was going between the truck and the trailer that pulled the barrier light. Employee stepped onto the hitch, losing his footing and fell injuring his right knee. Su
## 7347         4/7/2009 11:10 am (blgay) employee was putting dye in manhole to be able to follow path of water. Employee bent down to climb into drainage box, changed his plans. Employee went to stand back up and twisted or hyper extended right leg. Supervisor: nan
## 7348         4/7/2010 03:31 pm (blgay) employee was attempting to walk down a steep embankment (approximately 10' below the surrounding grade) when his feet slipped from under him on the soft soil material and grass. This caused employee to fall and twist slightly
## 7349                                                                                                                             4/7/2010 08:07 am (fblackmo) employee was raking a ditch and when he went to turn his body, his left knee popped. Supervisor: ben nelms
## 7350                                                                                          4/7/2010 08:29 am (fblackmo) employee was standing on embankment when he slipped and fell causing injury to his lower back, neck, and right elbow. Supervisor: jim ahlmark
## 7351                                                                                                                        4/7/2010 10:18 am (fblackmo) employee was helping to lift a hood for tandem truck when, he felt a pop in his back. Supervisor: h. D. Wiggins
## 7352                                                                                       4/7/2010 10:27 am (fblackmo) employee was installing a driveway around pine trees when, he was bitten by a tick on right side of neck and shoulder. Supervisor: t. S. Bozeman
## 7353                                                                                                        4/7/2010 10:42 am (fblackmo) employee was stepping down out of dump truck when, he felt pain in his abdomen and upper thigh area. Supervisor: retha l. Leigh
## 7354                                     4/7/2011 01:32 pm (barnes) employee was taking snow plow off with air ratchet. The trigger was pulled on ratchet and it twisted the employees hand inward. Employee injured left wrist and left arm. Supervisor: michael gentry
## 7355          4/7/2011 02:21 pm (barnes) employee was working in salt brining operations on 02/09/2011 and 02/10/2011. Employee began feeling pain in his right hand and wrist (according to employee's note). On 02/12/2011 employee could not use right hand at all. E
## 7356                         4/7/2011 02:52 pm (barnes) employee was taking the strap off the tarp over the bed of the dump truck, when he slipped and hit his right forearm and right hip on the asphalt. Employee injured his right forearm. Supervisor: tammy johnson
## 7357                         4/7/2011 03:18 pm (barnes) employee was cutting right of way on new road construction. He got into poison oak/ivy on tree that he was cutting with power saw. Employee injuries was on left eye, face, arms and legs. Supervisor: brad long
## 7358                                                                                  4/7/2011 08:59 am (barnes) employee was removing a tree from roadway. The tree was covered with poison oak. Employee injuries was on left arm and left side. Supervisor: ray moore
## 7359                                                                                            4/7/2011 09:31 am (barnes) employees hand slipped while lifting the base of a concrete air meter. Employee injured the palm of his right hand. Supervisor: d. L ferguson
## 7360         4/7/2011 09:49 am (barnes) employee informed supervisor that she conducted a road test with a 16 year old female applying for her license for the first time. The customer tried to turn right on red and turned in front of oncoming traffic, almost causi
## 7361                                                                            4/8/2008 10:04 am (blgay) employee was lifting up a bag of cold patch and twisted the wrong way, causing employee to pull a muscle on the left side of rib cage. Supervisor: dale loflin
## 7362                                                                                                                                      4/8/2009 04:07 pm (fblackmo) employee was walking down stairs when, she slipped and fell on left side. Supervisor: lee johnson
## 7363                                                                                                    4/8/2009 09:17 am (fblackmo) employee states that after sanding he, removed his safety glasses and something fell into his right eye. Supervisor: thomas bowswer
## 7364                                                                                       4/8/2011 04:05 pm (fblackmo) employee was loading bags of cement from pallet to place in wheel barrow when, he felt pain in his upper left arm. Supervisor: chris pendergraph
## 7365                                                                                                                                        4/8/2011 04:23 pm (fblackmo) employee was lifting a box when, he felt pain in his left side area. Supervisor: mitchell dixon
## 7366                                                                                                                            4/9/2007 10:35 am (speedin) employee was working under bridge, employee stepped on rock and fell hurting knee. Supervisor a. W. Childers
## 7367          4/9/2007 10:52 am (speedin) employee was washing fire ants away from the parking lot and somehow they got onto my boots and found their way to my ankles and stung me several times on both ankles. Within the hour my right ankle began to swell. Supervi
## 7368          4/9/2007 11:22 am (speedin) employee was returning from road test-the customer pulled into the parking lot and hit a pole. The police were not called to the scene. No insurance, information provided due to customer requesting fleet only restriction s
## 7369                                                       4/9/2007 11:47 am (speedin) employee was taking cross sections on project site. While stepping over concrete barrier rail he hit his left knee on the top of the barrier wall. Supervisor c. R. Styles, p. E.
## 7370          4/9/2007 12:14 pm (speedin) employee was getting off of the spreader, he stepped on the wooden board holding onto the tarp cover bar, but his foot slipped causing him to fall. He tried to catch himself by grabbing onto something else because the tarp
## 7371          4/9/2008 01:47 pm (blgay) employee was working with bark on bridge end. During some point of the day, a tick lodged onto the employees right leg on the shin, becoming attached. The employee removed the tick that evening, but over the weekend the spot
## 7372         4/9/2008 01:59 pm (blgay) employee was feeding a limb into the brush chipper, while another employee cut a small tree that fell and brushed against another tree causing it to fall toward employee. The tree top brushed the top of wesley mcknight's shou
## 7373         4/9/2008 02:12 pm (blgay) employee was doing a pm on a tandem dump truck, greasing the release bearing for the clutch. Employee had to remove inspection plate on the bell housing, causing the wrench to slip off of the bolt, hitting employee in the rig
## 7374         4/9/2008 02:24 pm (blgay) employee had pulled over on the right shoulder of the road to assist a stranded motorist. The police report stated that employee began merging into the northbound travel lane from the emergency strip and was struck by a tract
## 7375                                                                       4/9/2008 02:41 pm (fblackmo) employee was walking towards personal vehicle while on break, foot missed curb, and employee fell causing injury to her right foot/ toe. Supervisor: libby allen
## 7376                                                                                                                     4/9/2008 02:43 pm (blgay) employee knelt down to floor to look at a piece of equipment and felt pain in right knee. Supervisor: d. W. Burchette
## 7377                                                                                          4/9/2008 02:54 pm (fblackmo) employee along with the crew was cutting lines when, employee hit a dead tree and felt pain in his right shoulder. Supervisor: chuck mcdonald
## 7378                                                                                                                               4/9/2008 03:05 pm (fblackmo) employee was changing tires on tractor when he felt pain in his lower back area. Supervisor: ricky feher
## 7379         4/9/2008 03:08 pm (blgay) employee was giving a road test and customer was traveling on north tryon road to hampton road. As customer made right turn onto hampton church road, he pressed gas pedal instead on brake. The customers vehicle went across th
## 7380                                                                                        4/9/2008 03:44 pm (fblackmo) employee was working mixing paint locker located on the shipyard when, he was bitten by a spider on his right arm. Supervisor: thomas f. Bowser
## 7381                                4/9/2008 03:54 pm (fblackmo) employee felt pain in left ankle when stepping onto sidewalk and hitting side of handicapped ramp. Employee had excessive amount of materials in hands and did not see drop off. Supervisor: bev saylor
## 7382                           4/9/2008 04:03 pm (fblackmo) employee was stepping down out of a cab of a ten wheeler truck for the plate agency. He was holding onto the cab bar and stepped to the ground and twisted his back. His back popped. Supervisor: lynn chalk
## 7383         4/9/2009 11:08 am (blgay) employee stuck a nail in his left hand while trying to move a piece of wood. Employee was going to use the wood to build a box with that would be used to transport concrete cylinders to the ncdot test lab. Supervisor: ron gra
## 7384          4/9/2009 12:30 pm (blgay) employee was inspecting on night time paving operation. Employee was walking back to his vehicle to move it further up. Employee stepped on a 4" drop off between the new asphalt and the old, falling to his hands and knees on
## 7385                                                                                                                                   4/9/2010 03:59 pm (fblackmo) employee was lifting a box of plans when, he felt pain in his lower back. Supervisor: johnathan reed
## 7386                                                                                                                    4/9/2010 10:18 am (fblackmo) employee stepped on wooden pallet when the board broke causing him to fall on right side. Supervisor: dwayne warner
## 7387                                                                                         4/9/2010 10:30 am (fblackmo) employee was in back of crew cab lifting hand tamp into truck when, he felt a stinging sensation in his lower back. Supervisor: gary mcsweeney
## 7388                               4/9/2010 10:38 am (fblackmo) employee was moving barricades back into the roadway. Employee ben down to place sandbag on barricade when the wind blew the sign back down striking him on the top of his head. Supervisor: mike rogers
## 7389                                                                                                                                                                   4th floor - in the dirty utility room EE mashed thumb inbetween the green ben and hand sanitizer.
## 7390                                                                                                                                                                                                                                     5 miles of running. Exhaustion.
## 7391                                                                                                                                                                                           5 ticks imbedded into skin on 4/6/13. Bite on upper right arm swelled. ()
## 7392                                                                                                                                                                                                                                        5% ppd Dr Paul 12/29/8 - leg
## 7393                                                                                                                  5/1/2006 03:08 pm (fblackmo) employee was performing annual firearm training with shotgun when, injured his right shoulder. Supervisor: w. T. Keel
## 7394                                                                                                                  5/1/2006 03:21 pm (fblackmo) employee was cutting trees on right of way when, he came into contact with poison ivy on face. Supervisor: mike smith
## 7395                       5/1/2006 03:33 pm (fblackmo) employee was cleaning asphalt from steel wheel roller with a shovel. He was striking steel wheel with shovel and missed the wheel and hit thumb on side of roller causing laceration. Supervisor: m. L. Fogleman
## 7396                                                                                                        5/1/2007 02:18 pm (fblackmo) employee was pulling limbs to wood chipper from right of way when, he came into contact with poison ivy. Supervisor: t. J. Shaw
## 7397                                                                                                                                                        5/1/2007 02:29 pm (fblackmo) employee was stung on his back by a bee while driving. Supervisor: grady raynor
## 7398                                                                                                                                                  5/1/2007 02:37 pm (fblackmo) employee was bitten on her back during a wet land field trip. Supervisor: charles cox
## 7399                                                                                           5/1/2007 03:52 pm (fblackmo) employee was removing a tree that had fell across nc 46 during a wind storm when, he felt pain in his lower back. Supervisor: g. J. Liverman
## 7400            5/1/2007 04:07 pm (fblackmo) employee had to break quickly due to a vehicle in front of her stopping abruptly. The pov that was behind her rear ended her vehicle. Employee felt pain in her neck and back. Supervisor: william kincannon 9/7/2007 11:07
## 7401                                                                                                                           5/1/2008 10:34 am (blgay) employee was placing grate in frame, when grate slipped and pinched left hand. Supervisor: harrison southerland
## 7402                                                                                              5/1/2008 10:43 am (blgay) employee was cutting brush in high grass and stepped on a black snake, causing snake to bite him on the left leg. Supervisor: roger arrowood
## 7403                               5/1/2008 10:56 am (blgay) employee was driving a metal pin to make the hole for a nuclear density test. During the process of driving the pin with a sledge hammer, employee felt pain in right shoulder. Supervisor: james t. Garner
## 7404                                                                                                                                                 5/1/2008 11:04 am (blgay) employee was pushing log off stump, when log mashed left foot. Supervisor: david chambers
## 7405                                                                                                  5/1/2008 12:00 pm (blgay) employee was lifting a 5 gallon bucket of cold mix off a tailgate, causing him to tear right shoulder labrum. Supervisor: c. R. Stephens
## 7406                                      5/1/2009 02:41 pm (blgay) employee was operating wand on crack pouring machine, he began to experience pain in his right wrist. Date of injury is listed as unknown. Reported to supervisor 04/16/09. Supervisor: wiley norton
## 7407                                                                             5/1/2009 03:18 pm (blgay) employee stepped out of backhoe and then stepped into ditch to clean pipe. When he stepped in ditch his back popped out of place. Supervisor: bobby berryhill
## 7408                                                                                                              5/10/2005 03:07 pm (fblackmo) employee was bending over picking up trash when, a blade of grass struck in him in his left eye. Supervisor: clyde adams
## 7409                                                           5/10/2005 03:17 pm (fblackmo) employee states while attempting to change tire on lawnmower the, pry bar slipped hitting him in the mouth cracking front tooth and bursting lip. Supervisor: a. Glenn wade
## 7410                                                                                                                 5/10/2007 08:33 am (fblackmo) employee was walking on side of road picking up trash when, he felt pain in his left knee. Supervisor: b. N. Braswell
## 7411                                                               5/11/2004 02:17 pm (fblackmo) employee was climbing down ladder when, he lost his footing and fell causing the injury to his left knee and elbow. Supervisor: r. E. Joyce 6/11/2004 08:58 am (gwhite)
## 7412                                                                5/11/2004 02:30 pm (fblackmo) employee was exiting the engine room of the m/v hyde when, he was struck in the head by a board causing the injury to his head and neck. Supervisor: kevin lamar cooke
## 7413                                                                                                                                                   5/11/2004 02:43 pm (fblackmo) employee states he was bitten by a tick under right arm pit. Supervisor: j. Kearney
## 7414                                                        5/11/2004 02:53 pm (fblackmo) employee was placing pre-markings on pavement when, a private vehicle moved away from a stop sign striking employee causing him to fall on pavement. Supervisor: sid tomlinson
## 7415                                                                                                  5/11/2004 03:09 pm (fblackmo) employee states while moving from private vehicle to the departments truck he, felt pain in his left knee. Supervisor: makr stafford
## 7416                                                                                                              5/11/2004 03:36 pm (fblackmo) employee states he was sitting in pickup and reached in back seat resulting in lower back pain. Supervisor: m. W. Currie
## 7417                                                                                                                5/11/2004 04:32 pm (fblackmo) employee states while picking up cones on nc 177 he, felt pain in his left shoulder. Supervisor: charles m. Jackson jr
## 7418                                                                                                                    5/11/2004 05:12 pm (fblackmo) employee turned around to place gage on asphalt when, he felt pain in his right shoulder. Supervisor: r. J. Downes
## 7419                                                                           5/11/2004 11:52 am (fblackmo) employee was on nc 210 at woodpecker road when, his vehicle ran off the road and started flipping. Employee was on conscious. Supervisor: thomas e. Johnson
## 7420                                                                                         5/11/2004 12:09 pm (fblackmo) employee states while installing a motor on bridge when, he slipped and fell causing the injury to his right knee. Supervisor: d. R. Alligood
## 7421                                                                                                   5/11/2004 12:28 pm (fblackmo) employee states he was reaching for his computer from dock station when, he felt pain in his back. Supervisor: l. L. Purnell sowall
## 7422             5/11/2005 08:22 am (fblackmo) employee was picking up a trap when, he slipped and fell cutting his right hand on guardrail post. Supervisor: paul r. Draughn jr 7/14/2005 11:11 am (fblackmo) do not pay any bills or use this claim number for anythin
## 7423         5/11/2005 08:35 am (fblackmo) employee states that while picking up a trap he found on I-40 he, felt pain in his back. Supervisor states that employee was asked on friday if wanted to go to the doctor and employee refused treatment at that time. Emplo
## 7424                                                                                   5/11/2005 09:33 am (fblackmo) employee was walking in building to get ice when, he stepped in a dip in the cement causing the injury to his right ankle. Supervisor: a. S. Bailey
## 7425          5/11/2005 10:07 am (fblackmo) employee states the injury occurred to his back on August 20, 2004 while laying pipe. Employees statement indicates that when he called work on August 30th and 31st, that he was "down with his back". Employee had surgery
## 7426                                                                                                                 5/11/2006 11:23 am (fblackmo) employee was sitting at her desk when, she felt dizzy,. Cold, and shaky. Employee was sick. Supervisor: tammy larisle
## 7427                                                                                                                      5/11/2006 11:40 am (fblackmo) employee was pushing thermo-plastic applicator push cart when, he felt pain in his back. Supervisor: arnold cabe
## 7428                                                                                                                                                5/11/2006 12:01 pm (fblackmo) employee was using penatometer hammer when, he hit right thumb. Supervisor: bob fields
## 7429                                                           5/11/2006 12:18 pm (fblackmo) employee states that on last thursday she was typing and her right hand started to hurt, she also felt numbness in little finger and ring finger. Supervisor: phyllis young
## 7430         5/11/2007 02:02 pm (speedin) employee was tightening a 5/8" * 3" bolt on a metal span wire bracket. Employee was using an adjustable wrench. Employee stated that the wrench slipped off the bolt and hit him in his mouth, chipping his front tooth. Super
## 7431                                                                                                              5/11/2007 04:06 pm (speedin) employee was walking down stairs, at last step knee gave away causing employee to fall on knee supervisor: roger icenhour
## 7432                                                        5/11/2007 10:22 am (speedin) employee was reaching over the tailgate of the truck to retrieve a can of gasoline. When he lifted the can he felt a sharp pain in his upper back. Supervisor: timothy w. Smith
## 7433                                                                                                      5/11/2007 11:06 am (speedin) employee was helping strap down pipe on trailer, strap came loose striking employee over his right eye. Supervisor david c. Capps
## 7434                                                                                                                                                             5/11/2010 09:59 am (fblackmo) employee is having difficulty hearing in both ears. Supervisor: ray brown
## 7435                                                                                                       5/11/2010 10:12 am (fblackmo) employee was in attic insulating ductwork when he struck his center finger on left hand on duck hanger. Supervisor: jeff drayer
## 7436                                                                                               5/12/2004 02:37 pm (fblackmo) employee was operating arrow board when, it was side swiped by a semi-truck. Supervisor: f. Keith blazer 12/29/2004 02:36 pm (kbarefoo)
## 7437                                                                                                                                       5/12/2004 02:51 pm (fblackmo) employee slipped and fell while climbing down off of tar kettle. Supervisor: b. J. Berryhill jr
## 7438                                                                   5/12/2004 03:09 pm (fblackmo) employee was getting out of dump truck bed when, his foot slipped causing him to fall inside bed causing the injury to his left shoulder. Supervisor: shelton james
## 7439                                                                                                              5/12/2004 03:19 pm (fblackmo) employee states while installing crossline pipes when, he cut right hand (thumb) on metal band. Supervisor: lin reynolds
## 7440                                                                                                                            5/12/2004 03:28 pm (fblackmo) employee states while raking gravel on job site he, felt pain in his lower back. Supervisor: jimmy chapman
## 7441                                                                                                                       5/12/2004 03:38 pm (fblackmo) employee was moving equipment when, he tried to lift a ramp he felt a pop in his back. Supervisor: ricky l ford
## 7442                                                                                                               5/12/2004 03:52 pm (fblackmo) employee states while exiting vehicle he lost his footing causing the injury to his left ankle. Supervisor: j. R. Price
## 7443           5/12/2004 08:24 am (fblackmo) employee had stopped in front of and accident scene. Employee walked back to the car and leaned down on the car with his left hand on the door. Another vehicle hit the back of the car employee was leaning on causing the
## 7444                                                                                   5/12/2004 08:40 am (fblackmo) employee states while holding bolt up to turn blade around on loader, the bolt slipped causing the injury to his left hand. Supervisor: jerry keene
## 7445                                                                                                                                     5/12/2004 08:53 am (fblackmo) employee was on working crew fixing driveway pipes when, he collapsed. Supervisor: robert winslow
## 7446                           5/12/2004 09:07 am (fblackmo) employee lifted up 50 lb. Weight used for running densities. He lowered the weight, holding it with his left arm he turned to continue working on density felt pain in his arm. Supervisor: jonathan barnes
## 7447                                                                            5/12/2004 09:23 am (fblackmo) employee states while spraying with a backpack sprayer he, stepped on uneven ground or a hole causing the injury to his right leg. Supervisor: tim simpson
## 7448                                                                                                                                     5/12/2004 09:34 am (fblackmo) employee states while loading asphalt tanker he, was bitten by a tick. Supervisor: m. L. Thompson
## 7449                                                                                                                              5/12/2004 09:59 am (fblackmo) employee was walking downstairs on her way home when, she slipped and fell. Supervisor: diane strickland
## 7450                                                                                                                              5/12/2004 10:11 am (fblackmo) employee was changing tire on dot equipment when, he felt pain in his back. Supervisor: richard jernigan
## 7451                                                              5/12/2004 10:23 am (fblackmo) employee states while trying to open the hood on motorgrader his foot slipped between the wheel and frame causing the injury to his right knee. Supervisor: c. E. Gartin
## 7452                                                                                                               5/12/2004 10:36 am (fblackmo) employee states while performing her daily duties she, felt pain in both wrist. Carpal tunnel. Supervisor: jim whitmire
## 7453                                                     5/12/2004 11:44 am (fblackmo) employee was walking to get into dump truck when, she hit a 4 x 4 post that was sticking up from the ground causing the injury to her right leg. Supervisor: charles d. Childless
## 7454                                                                                           5/12/2006 09:07 am (fblackmo) employee was stacking cone in bed of truck. Diver did not see him proceeded to drive off and he fell on his side. Supervisor: j. E. Boyette
## 7455                                 5/12/2006 09:25 am (fblackmo) employee was loading bales of grain straw onto a flat bed truck, he was picking up bales from bed of truck and stacking on truck when, he felt pain in his right shoulder. Supervisor: e. Glenn koepp
## 7456                                     5/12/2006 09:34 am (fblackmo) employee aggravated a previous back injury while holding a rod with a rod catcher. Employee strained his back when, he caught the rod due to the position he was in. Supervisor: dean argenbright
## 7457                                                                                                                                                        5/12/2006 09:50 am (fblackmo) employee was at home when, he found tick on right side. Supervisor: r. Pittman
## 7458                                                                                                                 5/12/2006 10:15 am (fblackmo) employee lost footing when getting out of truck, slipped and truck door slammed on left hand. Supervisor: mark newton
## 7459                                                                                                                         5/12/2006 10:26 am (fblackmo) employee was helping to fill tire when, tire compound flew into employee face and eyes. Supervisor: ed adcock
## 7460                                                                                                                                    5/12/2006 10:37 am (fblackmo) employee was putting down driveway pipe when, dirt flew into right eye. Supervisor: jimmy f. Walls
## 7461                                                                                                                      5/12/2006 10:46 am (fblackmo) employee was lifting I-beams and sand bags when, he experienced pain in his upper back. Supervisor: a. C. Levens
## 7462                              5/12/2006 11:31 am (fblackmo) employee was digging a ditch turnout on dallas road with a backhoe and hit an underground service line to a house. Employee backed out of ditch and was hurting in his chest. Supervisor: n. C. Mckinney
## 7463                                                                                             5/12/2006 11:52 am (fblackmo) employee states that he was shoving asphalt on the job site when, he felt a pulling in lower left side of his back. Supervisor: ke pruett
## 7464                                                                                                               5/12/2006 12:01 pm (fblackmo) employee was dragging and lifting brush when, he felt pain in lower back and left hip area. Supervisor: loretta welborn
## 7465          5/12/2008 02:21 pm (fblackmo) employee was traveling (personnel vehicle) from the transportation building to the I. T. Building when, her car was struck in the rear by another private vehicle. Employee felt pain in her neck and upper back area. Super
## 7466          5/12/2008 02:44 pm (fblackmo) employee was tighting a bolt on a sign at mile marker 409 on interstate I40 when, his right pinky finger was pinched between the basket lift and the wrench causing a deep laceration to his finger. Supervisor: doug downey
## 7467          5/12/2008 03:02 pm (fblackmo) horseplay - employee walked from the wash & grease house where a group of employees were standing/working over a mower. Negative verbal exchanges were made and jerome began walking toward the office and heard someone say
## 7468                                                                                                                     5/12/2008 03:59 pm (fblackmo) employee was removing a sign off us 17 when, he was bitten by a tick on his chest area. Supervisor: david leonard
## 7469                                                                                                                    5/12/2008 04:37 pm (fblackmo) employee was working on a cross line when, he hit his hand on fence stake while shoveling. Supervisor: kenny white
## 7470                                                                                                                                5/12/2009 12:26 pm (blgay) employee was pulling up t-post and debris. Left hand slipped and hit t-post. Supervisor: wendell chastain
## 7471                                     5/12/2010 03:01 pm (fblackmo) employee had climbed into the loader which was on the trailer to retrieve the key from the ignition. Upon his dismount of the trailer, his foot slipped causing injury to lower back. J. M. Ellis
## 7472                                                                5/12/2010 03:13 pm (fblackmo) employee was helping three other employees lift a copy machine into the back of a pickup truck when, he felt pain in his back and groin area. Supervisor: lydia mckeel
## 7473                                                                                                        5/12/2010 03:26 pm (fblackmo) employee was loading and unloading a concrete saw from the truck when, he felt pain in his lower back. Supervisor: jimmy evans
## 7474                                                                                                    5/12/2011 08:06 am (fblackmo) employee was walking around the truck when he stepped in a hole. Employee felt pain in his lower back. Supervisor: david m. Carter
## 7475         5/12/2011 08:22 am (fblackmo) employee was bolting down deck plates on m/v stanford white which required drilling and re-tapping holes. The drill bit got caught in the hole causing a jam. Employees right hand was pushed back against the wall causing t
## 7476                                                                                                    5/12/2011 08:39 am (fblackmo) employee was lifting a large piece of wet carpet onto the pick up truck when, he twisted his right knee. Supervisor: I. H. Mccombs
## 7477                                                           5/12/2011 08:50 am (fblackmo) employee picked up a bag of litter found on right of way when he had an allergic reaction. A rash formed on both his hands and became very itchy. Supervisor: I. H. Mccombs
## 7478         5/12/2011 09:07 am (fblackmo) employee was inspecting the grinding/milling operation on state road when walking on the shoulder of the road his foot got caught tangled in a vine causing him to fall. Employee felt pain in his left rib cage area. Superv
## 7479                                                                                                                    5/12/2011 10:12 am (fblackmo) employee was priming handrail on m/v pamlico when he struck his left elbow on a bracket. Supervisor: thomas bowser
## 7480                                                                                                         5/12/2011 10:34 am (fblackmo) employee was changing transmission fluid when he hit his head on the under carriage of the vehicle. Supervisor: gordon creech
## 7481                                                                                            5/13/2008 08:45 am (fblackmo) employee was cutting angle from overhead on the m/v white. Debris from the upper deck blew into his left eye. Supervisor: marshall coleman
## 7482         5/13/2008 08:56 am (fblackmo) employee was working on a federal surplus dump truck that has numerous rusty spots on it. When employee closed the drivers door, the canvas top blew up causing rust and trash to fall on his forehead and between safety gla
## 7483         5/13/2008 09:06 am (fblackmo) employee was filling a customers order when, she turned to locate a telephone number she, stripped over a power cord. Employee has a small cut on the bridge of nose, scraped & bruised right knee, and felt pain in right sh
## 7484                                 5/13/2010 11:23 am (fblackmo) employee exited his vehicle and walked towards the front door of a mobile home. A medium sized brown dog approached him from behind and bit him on his right forearm. Supervisor: ads kevin d. Mackey
## 7485                                                                                5/13/2010 11:36 am (fblackmo) employee was walking down embankment from working on bridge when his foot slipped causing him to fall and injure right arm. Supervisor: herman futrell
## 7486                                                                        5/13/2011 04:33 pm (barnes) employee was feeding brush into chipper. A large limb hit employees ring finger on left hand fracturing the bone at the end of his finger. Supervisor: a m myers
## 7487                                                                                                              5/14/2007 02:03 pm (fblackmo) employee was tighting up line on the m/v pamlico when, he felt something pop in his left wrist. Supervisor: cindy austin
## 7488         5/14/2007 02:37 pm (fblackmo) employee was working with road side crew patching operation when, mowers mowing the grass adjacent to the setup operation came by blowing up dust and debris. Debris/dust got into employees right eye. Employee was not wear
## 7489                                                                                        5/14/2007 02:48 pm (fblackmo) employee went to climb up on the rear of the tractor with mower on it when, he slipped causing injury to his knee. Supervisor: charles watkins
## 7490                                                                 5/14/2007 03:02 pm (fblackmo) employee was walking when, his pants leg caught handle of jack causing him to trip. Employee felt pain in his right knee and left hand. Supervisor: chester e. Gartin
## 7491                                        5/14/2007 03:06 pm (speedin) employee was putting water tank on dump truck. Employee reached to get airline when loader operator picked up on tank catching employee's finger between tank & truck. Supervisor: j. W. Tilley
## 7492          5/14/2007 03:47 pm (speedin) employee was taking up silt fence moving from post to post. Employee was holding on to tree when employee running backhoe bumped his hand with the backhoe bucket bruising his right hand and thumb. Supervisor: m. H. Thomas
## 7493         5/14/2008 03:30 pm (blgay) employee believes it occurred when he was putting a spreader on truck. Employee stated that he climbed on bed to unhook chains and slipped but caught himself on the side rail. This injury was reported on 04/30/08, but May ha
## 7494                                                                                                                                5/14/2008 03:37 pm (fblackmo) employee was picking up trash when, he was bitten by a tick on his right leg. Supervisor: t. H. Swayne
## 7495         5/14/2008 03:58 pm (blgay) employee and an inmate were unloading metal fencing stakes from a dump truck. As stevens bent down to pick up stake, inmate was rising up with some stakes and the tip of a stake hit stevens in the hair line just above the ri
## 7496          5/14/2009 09:36 am (fblackmo) employee was walking out of door a9 when, she stepped out the door she stepped into a small puddle of water which caused her to slide. Employee slid from the door to the sidewalk landing on her hands to avoid hitting her
## 7497                             5/14/2009 09:49 am (fblackmo) employee was attempting to go down embankment to check the condition of a cross line pipe when, he stepped on top of the pipe his left foot slipped and he injured his left ankle. Supervisor: s. R. Ross
## 7498          5/14/2009 10:03 am (fblackmo) employee was using shovel to clean out the end of driveway pipe when, he lost his footing in the ditch. Employee fell, his foot step on the end of the shovel causing the handle to strike him on the forehead. Employee was
## 7499                                                 5/14/2009 10:20 am (fblackmo) employee was carrying files to file room when, she slipped and fell backwards. Employee felt pain in her left knee, elbow, and shoulder, right elbow and foot. Supervisor: beth mckay
## 7500                                                                                                           5/14/2009 11:07 am (fblackmo) employee was weedeating in tall grass, later that night he found a tick on his left thigh area. Supervisor: p. P. Mansfield
## 7501                                       5/14/2009 11:18 am (fblackmo) employee was at the new hanover county landfill dumping bags and debris off the truck. A metal box hit the ground and bounced up and hit employee on his right leg. Supervisor: ronnie woodcock
## 7502                                                              5/14/2009 11:30 am (fblackmo) employee was outside of the ticket booth helping traveling public when, she returned to booth the wind blew the door shut on her right hand. Supervisor: cindy s. Austin
## 7503                                                                                                              5/14/2009 11:39 am (fblackmo) employee was showing co-worker how to operate backhoe when, he burn his left forearm on muffler. Supervisor: bn braswell
## 7504                                                                                     5/14/2009 11:50 am (fblackmo) employee was working with survey party putting in fine grade stakes when, he was bitten by a tick on his left shoulder. Supervisor: ken batchelor
## 7505                                                                                5/14/2009 12:03 pm (fblackmo) employee states while photographing historic building in project area she, slipped on wet gravel landing on her right knee. Supervisor: mary pope furr
## 7506                                                                              5/14/2010 03:52 pm (fblackmo) employee was flagging traffic when he stepped quickly out of the path of a fast moving car, he felt pain in his right ankle. Supervisor: kevin hazelwood
## 7507                                                 5/14/2010 04:04 pm (fblackmo) employee had some discomfort in left wader after putting it on. Stuck left hand down between the wader and pants legs when left hand middle finger popped. Supervisor: d. Bret henson
## 7508                     5/14/2010 10:54 am (fblackmo) employee was inspecting a steel girder painting operation on the manns harbor bridge in dare county. Employee bumped the bottom of a steel girder with the right front side of his head. Supervisor: shawn mebane
## 7509          5/14/2010 11:13 am (fblackmo) employee was working with patch crew on us 301. While looking at a small hole on opposite side of operation he stepped in a hole on the shoulder of the road. Employee did not go to the doctor at the time of the incident.
## 7510         5/14/2010 11:26 am (fblackmo) employee was attempting to roll 55 gallon of drum of oil from forklift to stationary platform. Employee grabbed drum with both hands and pulled drum towards him. Drum rocked back pinching middle finger on left hand agains
## 7511                                                         5/14/2010 11:38 am (fblackmo) employee was working with patch crew when he stepped back into a depression in the ground causing pain to right knee. Supervisor: fred j. King 06/11/2011 11:06 am (lvaughan)
## 7512                                                                                                 5/14/2010 12:04 pm (fblackmo) employee was unloading a sign from back of truck with tailgate up when, he felt pain in his left shoulder. Supervisor: bradley burton
## 7513           5/15/2006 04:17 pm (slee) employee's were hauling dirt for a pipe replacement project. Mr. Small was empty and Mr. Ross was loaded. The two trucks met in a curve, hitting the drivers side mirror of each dump truck together breaking them and the door
## 7514                                                       5/15/2006 04:21 pm (fblackmo) information keyed from form 18, which states "running heavy equipment which bounced, wrenched back. Supervisor not stated on 18. Still waiting for more paper work for clarity.
## 7515                                                          5/15/2007 01:08 pm (fblackmo) employee was walking to do a road test when, his right ankle gave away causing him to fall on both knees. Employee scraped right knee on concrete. Supervisor: joyce roberts
## 7516                                                                                     5/15/2007 01:21 pm (fblackmo) employee states while climbing out of truck his ankle gave away causing him to fall. Employee felt pain in his right ankle. Supervisor: jim dilda
## 7517                                                                       5/15/2007 10:02 am (speedin) employee was sitting in plastic chair on a porch and the front legs of the chair collpased causing Mr. Williams to fall on his knees. Supervisor: lorrie sineath
## 7518                                                                                          5/15/2008 03:11 pm (blgay) employee was pulling brush off of right of way and feeding chipper, when he received extreme pain in his lower back. Supervisor: david chambers
## 7519              5/15/2009 10:18 am (fblackmo) employee was cutting juniper limbs on rail road track bridge slope on us 301 in wilson. As he proceeded to cut, one limb snapped up and struck him under the face shield puncturing his top lip. Supervisor: kevin baker
## 7520                                                                                    5/16/2005 01:20 pm (fblackmo) employee states that he hit his right elbow on truck bed and then at dinner time he hit the same elbow on the truck door. Supervisor: w. D. Bunton
## 7521          5/16/2005 02:23 pm (blgay) employee was stopped on gresham lake road waiting for vehicle in front of her to turn left. Vehicle behind employee did not see stopped vehicles and swivel right and hit back right side of employees truck. Supervisor: Jan w
## 7522                                                                                                                                                                          5/16/2005 03:42 pm (blgay) employee slipped and fell on floor. Supervisor: miriam s. Perry
## 7523                                                                                                                         5/16/2005 09:12 am (fblackmo) employee stepped on nail that was hidden in grass and it stuck in his right foot. Supervisor: ronnie woodcock
## 7524                                                                                                                         5/16/2005 09:27 am (fblackmo) employee states while shoveling asphalt he felt pain in his groin and lower back area. Supervisor: mike quick
## 7525         5/16/2005 09:40 am (fblackmo) employee started noticing toe nail on left foot (also right foot toe) turning black and getting thicker over a period of time. Employee visited doctor who told him that it was a fungus caused by wearing confined shoes. Su
## 7526                                                                                                                                                        5/16/2005 09:59 am (fblackmo) employee that she was bitten by a tick on left leg. Supervisor: logan williams
## 7527                                                                              5/16/2005 10:56 am (fblackmo) crew was installing driveway pipe, employee had his left hand on pipe when, the horse shoe slipped and mashed his little finger. Supervisor: t. L. Ingle
## 7528                                                                                                                                                 5/16/2005 11:07 am (fblackmo) employee was walking up steps when, he felt his left knee pop. Supervisor: ron graham
## 7529                                    5/16/2005 11:19 am (fblackmo) employee was putting out signs for stripping operation in wake county on several state roads (1162, 1173, 2552, & 2553)) when, he was bitten by a tick on his abdomen area. Supervisor: ira harris
## 7530                                                                                                                           5/16/2005 11:36 am (fblackmo) employee states he felt pain in his lower back while helping to lift a pvc pipe. Supervisor: robert m. Ladd
## 7531        5/16/2006 09:34 am (fblackmo) employee was driving a swb dump truck hauling stone. He had stopped to eat lunch and when he went to get back into the cab of the dump truck he was pulling himself up and pulled a muscle in his back. Supervisor: s. R. Rose
## 7532                                                                                                       5/16/2006 10:06 am (fblackmo) employee climbed into front end loader, left door open and door slammed back on employees left hand. Supervisor: adam henderson
## 7533                 5/16/2006 11:07 am (fblackmo) employee was conducting road test. Upon returning to parking lost, employee opened door to exit and her left foot got caught on brake pedal (driving school car) causing her to fall. Supervisor: jacqueline florence
## 7534          5/16/2006 11:35 am (fblackmo) employee was raising crash attenuator on rear of flatbed pushing hydraulic controls. Attenuator reached upright position buy hydraulic lock pins would not engage. Employee manually pushed on attenuator with arms extended
## 7535                                                                                                                                              5/16/2006 12:10 pm (fblackmo) employee stepped down from asphalt roller and injured left knee. Supervisor: rick gordon
## 7536                                                                5/16/2007 03:49 pm (speedin) employee turned truck over, off shoulder of roadway while pushing snow, due to white out conditions, from heavy snowfall, and high winds. Supervisor: t. G. Huskins, jr
## 7537                                             5/16/2007 05:41 pm (fblackmo) employee was flagging0000 traffic when, pov struck him on left leg while backing out of private driveway. Employee felt pain in left leg, knee, and hip area. Supervisor: r. R. Cartrette
## 7538                                                5/16/2007 09:20 am (fblackmo) employee was stopped at traffic light when, state vehicle was struck in the rear by a private vehicle. Employee experience no physical injuries stated on 19. Supervisor: c. K. Lovisa
## 7539          5/16/2007 10:09 am (fblackmo) employee was driving a tandem dump truck, while making a left turn a tractor trailer merged into the right lane and side swiped the truck. Employee felt pain in his left shoulder/arm area. Supervisor: lindsey o. Ethridge
## 7540            5/16/2007 10:29 am (fblackmo) employee supervisors states on 19 " not sure when or how alleged injury occurred. " employee has not reported a work related injury to supervisor. Supervisor: robert w. Ipock 5/16/2007 10:37 am (fblackmo) on form 18 st
## 7541                                                                                                           5/16/2008 10:04 am (blgay) employee was laying a rock wall, when a rock slide off bank and smashed end of finger on the left hand. Supervisor: herb ramey
## 7542                                                             5/16/2008 10:23 am (blgay) employee was lighting a burner. Fire went out and employee tried to re-light, causing the flame to flare up and burn his face and right hand. Supervisor: tommy g. Culberson
## 7543                                                    5/16/2008 10:38 am (blgay) employee was trying to enter the truck while it was rolling to stop it before contact was made with another truck. The door came shut on employees right knee. Supervisor: g. S. Frye
## 7544                                                                                  5/16/2008 10:54 am (blgay) employee was cutting and loading trees with backhoe. The dead trees had some poison oak on them. Supervisor: david prestwood 5/16/2008 10:56 am (blgay)
## 7545                                                                                   5/16/2008 12:23 pm (blgay) employee was unloading a flatbed truck. When employee stepped of the loader, his foot got caught between the boards of a pallet. Supervisor: gary neal
## 7546                                                                         5/17/2007 09:27 am (speedin) employee was trying to get out of concrete truck, the step was so high up, holding onto a handle and yanked arm. Heard shoulder pop. Supervisor: dwight godwin
## 7547                                                                 5/18/2005 10:36 am (fblackmo) employee was cutting beams that was covered with red lead paint when, he felt nauseous, light headed, body aches, and feeling disoriented. Supervisor: david l. Moore
## 7548                                                                                          5/18/2005 10:53 am (fblackmo) employee states while tightening com-a-long around piling cluster, the cable broke and employee fell on deck of tug. Supervisor: h. F. Oneal
## 7549         5/18/2006 01:01 pm (fblackmo) employee was hauling gravel to work site in a short wheel base dump truck when he dropped off the right side shoulder as he was coming out of a curve. When he tried to bring the truck back onto roadway he lost control and
## 7550          5/18/2006 01:32 pm (fblackmo) employees was pumping asphalt out of spray bars from back of tank. Off and on switch was in wrong position that caused pressure to build in the tank. That resulted in a loading hose to blow off spraying employee with hot
## 7551                                                                           5/18/2006 04:19 pm (fblackmo) employee was removing a metal locking plate off the door. It slipped and caught the left ring finger in between doorknob and door. Supervisor: g. M. Taylor
## 7552                                                                                                                                    5/18/2006 10:24 am (fblackmo) employee was stepping into building when, he felt pain in his right foot. Supervisor: m. P. Newman
## 7553                  5/18/2006 10:55 am (fblackmo) employee states his vehicle was struck on passenger side by a private vehicle who failed to stop at a red light. The impact caused his vehicle to overturn causing pain to his back and neck. Supervisor: s. Watkins
## 7554                                                                                                           5/18/2006 11:28 am (fblackmo) employee was lifting a bundle of survey stakes (50 pounds) when, he felt pain in his lower back. Supervisor: charles vinson
## 7555                                                                                                                              5/18/2009 08:12 am (blgay) employee was closing door on backhoe, when he pinched and cut his left ring finger. Supervisor: t. M. Smith
## 7556                                                               5/18/2009 08:22 am (blgay) employee was traveling eb on 150, when truck ran off the road and overturned, causing multi-injuries to head, chest, torso, knees and neck sprain. Supervisor: p. L. Eaker
## 7557                                                       5/18/2009 08:38 am (blgay) employee was driving out pens in a loader bucket with a sledgehammer. While swinging the sledgehammer, employee felt a pain in his back and groin area. Supervisor: rick lovingood
## 7558                                                                                             5/18/2010 02:11 pm (fblackmo) employee was exiting front end loader when, he stepped in a hole causing pain to his groin area and lower back. Supervisor: j. K. Murdock
## 7559               5/18/2010 12:40 pm (fblackmo) employee was parked in the median picking up debris when private vehicle ran into the back of her vehicle. Employee felt pain in her back and left arm. Supervisor: ashley pilkington 06/10/2010 11:17 am (lvaughan) ba
## 7560                                                                                                                                          5/18/2011 04:00 pm (fblackmo) employee states he injured his right foot while producing a project. Supervisor: greer beaty
## 7561                                                                                                                                         5/19/2005 01:00 pm (fblackmo) employee slipped and fell off of bulldozer injuring his lower back. Supervisor: w. R. Loyd jr
## 7562                                                                                          5/19/2005 01:12 pm (fblackmo) employee was cleaning window while standing on hydraulic tank, slipped and fell hitting right elbow on tank corner. Supervisor: d. M. Carter
## 7563                                                       5/19/2005 01:23 pm (fblackmo) employee was a passenger on a cone retrieval vehicle which was involved in a collision with another vehicle. Employee felt pain in his left shoulder. Supervisor: joe s. Parker
## 7564                                                                                   5/19/2005 04:28 pm (fblackmo) charlie was in back of truck bed spraying asphalt release. Employee then climb out of bed and slip hitting his right knee. Supervisor: jimmie evans
## 7565                                                                                          5/19/2006 09:00 am (fblackmo) employee was crossing I-40 to speak with a contractor when, he felt pain in his left ankle, lower left leg, and foot. Supervisor: scott cook
## 7566                                5/19/2006 10:04 am (fblackmo) employee was loading small pieces of scrap metal beams into bucket loader by hand, when tossing metal into bucket the bottom part of the beam struck him in the lower left leg. Supervisor: ricky ball
## 7567                                                                                     5/19/2008 01:08 pm (blgay) employee was scratched on the nose by another employee pinting at him during an altercation between the two employees. Supervisor: steven d. Gilmore
## 7568                                                                                           5/19/2008 01:22 pm (blgay) employee was cutting back right of way from a fence line when she felt some type of insect bite on her left forearm. Supervisor: lawrence long
## 7569         5/19/2008 01:32 pm (blgay) employee was in the back of the barrel trailer stacking barrels. A few barrels were still on the road, so employee decided to get them. Employee leaped off the back of the trailer, which is 2 ft high and turned his ankle. Su
## 7570                                                                                             5/19/2010 11:20 am (fblackmo) employee was chipping epoxy off a steel h-pile with hammer drill when a piece of epoxy flew into his left eye. Supervisor: mason thompson
## 7571         5/19/2010 11:36 am (fblackmo) employee was opening the hood of a c-2 thomas school bus in order to perform a pre-trip inspection demonstration. The right side hood strap was not completely unfastened. The hood back lashed and pulled employees left elb
## 7572                                                                      5/19/2011 02:32 pm (fblackmo) employee was maintaining yard with weed eater and blower. When she removed safety gear some debris fell from her hat into her left eye. Supervisor: frank granda
## 7573                                                                                        5/19/2011 02:44 pm (fblackmo) employee was riding in dump truck when he was bitten by a bee on his upper lip. Employee is allergic to bee stings. Supervisor: b. N. Braswell
## 7574                                                                                                                        5/19/2011 02:56 pm (fblackmo) employee was out surveying when he was bitten by an insect on his right lower leg. Supervisor: ricky poythress
## 7575           5/19/2011 03:08 pm (fblackmo) employee was trying to test speed controller inside cab. Employee was using a knife in right hand to cut heat shrink to troubleshoot diode when knife slipped cutting index finger on left hand. Supervisor: robert cannady
## 7576                                                                                                                                                   5/19/2011 04:14 pm (fblackmo) employee stepped on a nail while accessing a job site. Supervisor: barry gelezinsky
## 7577                                                                                                         5/19/2011 04:44 pm (fblackmo) employee legs was pinned between the tailgate of a dump truck and the road widener he was working on. Supervisor: greg vinson
## 7578                                                                                                             5/19/2011 05:08 pm (fblackmo) employee was climbing out of vehicle when he slipped and fell causing injury to his left wrist. Supervisor: joyce roberts
## 7579                                     5/19/2011 10:26 am (fblackmo) employee was on ladder prying a stuck part loose when, the bar slipped causing him to fall approximately six feet. Employee felt pain in his lower back and left wrist. Supervisor: c. D. Francka
## 7580                                                                                                              5/19/2011 10:49 am (fblackmo) employee experienced loss of hearing in both ears due to high levels of noise on the shipyard. Supervisor: raymond brown
## 7581                                                                    5/2/2008 10:44 am (blgay) employee was dusting and knocking down cobwebs in the supply room, when employees left leg got tangled up in water hose laying on the floor. Supervisor: alan g. James
## 7582         5/2/2008 10:57 am (blgay) employee was holding a post for a road close sign. Another employee was driving the post into the ground with a sledgehammer, when the other employee missed and struck Mr. Shuffler in the right wrist with the sledgehammer. Su
## 7583         5/2/2008 11:10 am (blgay) employee was removing rip rap check dam from ditch line. Employee and 3 inmates were picking rip rap out of ditch and putting it into the bucket of backhoe, when employee bent down an inmate came up with rip rap and hit emplo
## 7584                                                                                                       5/20/2004 01:45 pm (fblackmo) employee states while setting stakes with hammer, hammer slipped striking him on his right leg/ankle. Supervisor: mark t. Gibbs
## 7585                            5/20/2004 01:56 pm (fblackmo) employee was standing on hitch trying to reach a light which had fallen off. Employee lost his footing and fell between the tractor and bush hog causing the injury to his left leg. Supervisor: don smith
## 7586                                                                                                                               5/20/2004 02:07 pm (fblackmo) employee states while clearing brushes he came into contact with poison ivy. Supervisor: stephen dillon
## 7587                                                             5/20/2004 02:17 pm (fblackmo) employee states his pants leg or boot caught hold on a pipe band while stepping over a pipe causing him to fall and injure his chest wall. Supervisor: b. J. Berryhill jr
## 7588                                                                             5/20/2004 02:28 pm (fblackmo) employee states he raised the door on truck to get hand cleaner, door came down striking him on the head chipping front tooth. Supervisor: r. L. Faulkner
## 7589            5/20/2004 02:39 pm (fblackmo) employee states there was some mechanical problems with auger while digging a hole. Employee was trying to make the repairs when, he touched a hot part of the equipment causing the injury to his right hand. Supervisor:
## 7590                                                                             5/20/2004 02:54 pm (fblackmo) employee was loading straw with mite. During the night he started itching and notice ed mite bites over varies parts of his body. Supervisor: t. R. Burns
## 7591                                                                                             5/20/2004 03:04 pm (fblackmo) employee was climbing ladder when, he hit the top of his head on a beam causing the injury to his neck and shoulder. Supervisor: b. Moore
## 7592                                                                                                                   5/20/2004 03:54 pm (fblackmo) employee states while walking down embankment he, fell causing the injury to his left arm. Supervisor: d. B. Henson
## 7593                                                                                                                             5/20/2004 04:06 pm (fblackmo) employee states while stepping down off truck he, felt a pop in his left knee. Supervisor: c. H. Winstead
## 7594                                                           5/20/2004 04:42 pm (fblackmo) employee was driving post. Employee lifted the driver to high hitting the top of the post causing the driver to kick back striking him on the head. Supervisor: w. H. Lynch
## 7595                                                         5/20/2004 04:53 pm (fblackmo) employee was installing shocks on trailer when, the shock fell striking him on the head. Supervisor: s. J. Gupton 5/20/2004 04:57 pm (fblackmo) I-2 states strain/sprain arm.
## 7596          5/20/2004 05:02 pm (fblackmo) employee was trying to get tarp to open and had to push it to get it started. When employee pushed the tarp she felt a pop in her neck. Employee states she was unable to turn her neck to the left. Supervisor: b. W. Jacks
## 7597                                                                                                                      5/20/2004 05:18 pm (fblackmo) employee was clearing bushes when, he came into contact with poison ivy on both arms. Supervisor: stephen dillon
## 7598                                                                                                                   5/20/2004 05:27 pm (fblackmo) employee tired to catch himself from falling when, the injury occurred to his right wrist. Supervisor: ken anderson
## 7599                                                                    5/20/2004 08:45 am (fblackmo) employee was walking through maintenance shope when he tripped and fell over a truck fender that was sticking out into the walkway. Supervisor: b. J. Berryhill jr
## 7600                                                                                              5/20/2004 09:27 am (fblackmo) employee was stepping down out of dump truck when, his left foot slipped causing the injury to his left ankle. Supervisor: mark williams
## 7601                                                                                                                           5/20/2004 09:42 am (fblackmo) employee was stepping down from truck when the injury occurred to his right ankle. Supervisor: w. H. Monroe
## 7602                                                                                                      5/20/2004 09:56 am (fblackmo) employee was exiting a dump truck when, his right foot slipped causing the injury to his right knee. Supervisor: john montgomery
## 7603                                                                                                   5/20/2004 10:41 am (fblackmo) employee states while pulling hose out of the ground the hose flew up, striking him directly in left eye. Supervisor: david shepard
## 7604             5/20/2004 10:54 am (fblackmo) employee was operating a motor grader. He was making a left turn when a private vehicle ran into the rear end of the grader causing the injury to his back and leg. Supervisor: robert winslow 08/11/2004 08:23 am (kbare
## 7605                                                                                                                                     5/20/2004 11:18 am (fblackmo) employee was working on tow machine when, he felt pain in his right knee. Supervisor: w. E. Evans
## 7606                                                                                                                                 5/20/2004 11:36 am (fblackmo) employee states while cutting trees he came into contact with poison ivy. Supervisor: aubrey fuqua jr
## 7607                     5/20/2004 11:45 am (fblackmo) employee was helping another load detour barricades on truck when, he felt pain in his back. Supervisor: sid tomlinson 6/3/2004 09:04 am (gwhite) 6/3/2004 09:07 am (gwhite) authorized mri thru occupational sol
## 7608                                                                                                                        5/20/2005 01:35 pm (fblackmo) employee was dismounting from the belt loader when, his finger was caught in step. Supervisor: w. C. Kincannon
## 7609                                                                                                         5/20/2005 01:55 pm (fblackmo) employee states after returning to office from field he noticed a burning sensation and rash on neck. Supervisor: j. S. Coats
## 7610                                                                                                           5/20/2005 02:28 pm (fblackmo) employee was installing a 48"x48 lane drop sign when, he felt pain in his neck and shoulder area. Supervisor: john a. Ridge
## 7611                 5/20/2005 02:38 pm (fblackmo) employee was called in due to snow and ice. Employee was in personal vehicle when, he hit a slick spot on the road and lost control, skidded off the pavement into a tree. Head contusion. Supervisor: c. E. Thompson
## 7612              5/20/2005 03:46 pm (fblackmo) employee was walking down cut line when, he tripped and fell over fresh cutting. Supervisor: clift bodenhamer 8/24/2005 12:41 pm (fblackmo) this is a duplicate claim. Do not pay any bills under this claim number. All
## 7613                                                                                             5/20/2005 09:40 am (fblackmo) employee was driving attenuator truck when, he was bitten by an insect, causing injury to multiple body parts. Supervisor: j. E. Harrison
## 7614                                                                                                                    5/20/2009 09:47 am (fblackmo) employee was conducting road maintenance when, he was bitten by a tick on right under arm. Supervisor: jerry keene
## 7615                                                                                               5/20/2009 10:06 am (fblackmo) employee was shoveling asphalt when co-work dropped asphalt onto his right hand (had on gloves) causing a burn. Supervisor: stacy evans
## 7616                                                                             5/20/2010 03:47 pm (fblackmo) employee experienced hearing loss after years of exposed while using state issued hearing protection. Hearing loss in both ears. Supervisor: ken anderson
## 7617                                                                                         5/20/2010 11:28 am (fblackmo) employee was cutting brush with a bush axe. The axe got caught in some vines causing strain to his right shoulder. Supervisor: chuck mcdonald
## 7618                                                                                                        5/20/2010 11:39 am (fblackmo) employee was struck on the back of the head by a limb while the crew was placing mulch at dump site. Supervisor: jeff robinson
## 7619         5/20/2011 04:30 pm (barnes) employee was driving a flatbed truck with a crash attenuator attached to it. He was shadowing for the spray truck during a slow moving operation. A private citizen ran into the back of the attenuator. Employee injured his b
## 7620                                                                                                 5/21/2007 03:45 pm (speedin) employee stated he was putting up silt fence on side of hill and twisted left knee when foot got tangled in vine supervisor: steve lee
## 7621                                                                                   5/21/2007 05:00 pm (speedin) employee was pushing a limb onto the truck when a block of wood rolled down mashing his left finger against the tailgate. Supervisor: david c. Capps
## 7622         5/21/2008 02:08 pm (fblackmo) employee was sitting at left rear tamden of dump truck in a chair installing a brake drum. He was about six foot from a receptacle where a drop cord was plug in that was being used by employees doing repairs to main shop.
## 7623                                                                                                                 5/21/2008 02:22 pm (fblackmo) employee was pulling a sign and post out of the ground when, he felt pain in his lower back. Supervisor: d. W. Rascoe
## 7624               5/21/2008 02:35 pm (fblackmo) employee had loaded a mowing tractor on the lowboy trailer. As he was stepping off the tractor he missed the last step and fell to the ground landing on his back. He scratched his left elbow. Supervisor: hilton wade
## 7625         5/21/2008 02:43 pm (blgay) employee was walking around the work truck when he backed into a pitchfork that had been placed on the truck facing outward instead of toward the truck. The pitchfork cut the employee on the left shoulder. Supervisor: lawren
## 7626                                                                  5/21/2008 02:47 pm (fblackmo) employee states while exiting building at back door he, missed a step and fell causing injury to his lower back and right ring nail region. Supervisor: marcia smith
## 7627                                                                                       5/21/2008 02:52 pm (blgay) employee was installing pipe when he was exposed to poison oak, getting it into his right eye. Supervisor: h. E. Worley 5/22/2008 07:56 am (blgay)
## 7628         5/21/2008 03:03 pm (blgay) employee was standing on the lowboy trailer watching the loader operator to load a spreader. He walker around the backside of the spreader and a board on the trailer floor broke and he fell threw the floor hitting his left l
## 7629         5/21/2008 03:16 pm (blgay) employee was assisting another employee dragging a plate compactor from a road pavement patch to the crew cab when the compactor struck the back of his right foot causing pain in his big toe on the right foot. Supervisor: j.
## 7630                                                                           5/21/2008 11:48 am (fblackmo) employee state cause of incident was from "repetitive typing" and that it could have been prevented by "wrist supports for typing". Supervisor: b. M. Cross
## 7631                         5/21/2008 12:00 pm (fblackmo) employee was installing advance warning signs on state road 1905 in durham county when, he stepped into a hole along the shoulder of roadway causing him to sprain his right ankle. Supervisor: tony roberson
## 7632                                                                                                 5/21/2008 12:11 pm (fblackmo) employee states a bee flew into truck window he was driving and stung him on his back and shoulder area. Supervisor: percy h. Harrell
## 7633          5/21/2010 08:31 am (fblackmo) employee was talking on cell phone to her mother when a board on the handicap ramp gave way were she was standing. Employee left leg went through the deck. Employee state she experienced pain in her right shoulder, hand,
## 7634                                                                                                   5/21/2010 09:07 am (fblackmo) employee was cutting metal band off box when band hit his index finger on right hand causing laceration. Supervisor: charles vinson
## 7635                                                                                                           5/21/2010 09:22 am (fblackmo) employee was bitten by a tick on his left arm while performing field work for bridge replacement. Supervisor: carla dagnino
## 7636                                                                                                                      5/21/2010 10:20 am (fblackmo) employee was surveying in high grassy area when he was bitten by a tick on inner right thigh area. Tasha johnson
## 7637                                                                                                        5/22/2007 02:06 pm (fblackmo) employee was loading barricades and sandbags onto sign truck when, he felt pain in his lower back. Supervisor: jerome locklear
## 7638                                         5/22/2007 02:36 pm (fblackmo) employee intervened between a male and female arguing and shuffling when, employee attempted to pursue male he, slipped and skinned right knee and left pinky finger. Supervisor: jim edwards
## 7639                                                                                                              5/22/2007 03:10 pm (fblackmo) employee was picking up metal post when, post slipped causing injury to his left hand & finger. Supervisor: archie smith
## 7640                                                                                                                                             5/22/2007 03:39 pm (fblackmo) employee was trying to start lifeboat when, he hit arm on oar. Supervisor: r. E. Hamilton
## 7641                                                                        5/22/2007 03:56 pm (fblackmo) employee was getting away from an approaching truck when, he got caught up in some wire on embankment causing injury to his right knee. Supervisor: m. R. Hill
## 7642                                                                                            5/22/2007 04:37 pm (speedin) employee was stepping off distributor, when he stepped down onto uneven terrain. Therefore causing an ankle sprain. Supervisor: c. C. Crump
## 7643                                                                      5/22/2007 08:32 am (speedin) employee was weed-eating a steep bank, stepped in a hole & fell backwards in creek on a rock. Employee fell approximately 4 to 6 feet. Supervisor: jeff robertson
## 7644                                                                                                                           5/22/2007 09:19 am (fblackmo) employee was doing combat training when, he felt pain in his right lower leg. Supervisor: jimmie massengill
## 7645                                                                                                    5/22/2007 09:35 am (fblackmo) employee was participating in a physical assessment test when, he felt numbness in his leg and back. Supervisor: jimmie massengill
## 7646                                                                                                                         5/22/2007 09:50 am (fblackmo) employee stated on 19 "unknown" for description of incident and cause of incident. Supervisor: c. Neal vaughn
## 7647                                                                                         5/22/2007 11:14 am (fblackmo) employee was closing tailgate on dump truck when, his finger got caught between the tailgate and body of the truck. Supervisor: jonathan long
## 7648                                                                                                  5/22/2007 11:26 am (fblackmo) employee was running in inspector/trainee training when, he had a complaint of joint pain in both knees. Supervisor: jimmy masengill
## 7649                                     5/22/2009 08:27 am (fblackmo) employee was standing in the marsh when, she felt an insect bite/sting on the forehead. Employee could not see what type of insect it was, bite area was swollen instantly. Supervisor: lee stone
## 7650                                    5/22/2009 08:45 am (fblackmo) employee was loading soil samples and shelby tubes in the truck to transport to raleigh. Not realizing how heavy they were he picked up the rack causing pain to lower back. Supervisor: lee stone
## 7651         5/22/2009 11:46 am (blgay) employee was traveling on poplar springs road, when he observed a private vehicle sitting half in the road and half off the road. Employee stopped to assist vehicle owner, due to the fact her car was in a blind spot in a cur
## 7652                                                                                                             5/23/2005 07:45 am (fblackmo) employee states while picking up 5 gallon drums of lubra seal he, felt pain in his left shoulder. Supervisor: j. C. Roper
## 7653         5/23/2006 02:00 pm (fblackmo) employee was working on a maintenance crew performing manual labor and operating equipment on 5/3/06. Upon returning home at the end of the work day the employee removed a tick which had bitten the employee on the back of
## 7654                                                         5/23/2006 02:19 pm (fblackmo) employee was mounting cup dispenser in new mobile office unit. While adjusting dispenser, his hand slipped and was cut by the mounting bracket. Supervisor: g. R. Sproles, jr
## 7655                                                                                                                   5/23/2006 02:33 pm (fblackmo) employee was operating rubber tire roller when roller left roadway and slid into ditch. Supervisor: walter crumpler
## 7656                                                                                                                 5/23/2006 02:44 pm (fblackmo) employee was sprinting during physical training when, he felt pain in his upper right leg. Supervisor: j. M. Mansgill
## 7657                                                                                                                                      5/23/2006 12:45 pm (fblackmo) employee was working under vehicle when, debris got into his left eye. Supervisor: jerry bagwell
## 7658                                                                                                                                                  5/23/2006 12:56 pm (fblackmo) employee came into contact with poison ivy while weedeating. Supervisor: t. R. Burns
## 7659                                                                                                                                                5/23/2007 02:54 pm (speedin) employee believed to have been bitten by an ant on the project. Supervisor: t. R. Smith
## 7660                                                                                                                        5/23/2007 08:16 am (fblackmo) employee attempted to pick up a box that was too heavy causing injury to lower back. Supervisor: mike jefferys
## 7661                                    5/23/2011 04:36 pm (barnes) employee was clearing brush around pipe and gutters along I-40 westbound when he came in contact with poison oak/ivy. He had rash on left eye, both arms, hands and wrists. Supervisor: henry worley
## 7662            5/23/2011 12:13 pm (barnes) employee was on a project site reviewing a project. He stepped in a slight depression that was not touching the ground as he expected, and he hyperextended the right knee. Employee injured right knee. Supervisor: ron gra
## 7663                                                                                               5/24/2005 08:05 am (fblackmo) employee was picking up a package of signs to place in bin for storage when, he felt pain in his left shoulder. Supervisor: j. A. Ridge
## 7664                                                                                       5/24/2005 08:22 am (fblackmo) employee states while weed eating the blade hit a glass bottle, glass from the bottom struck his left upper arm. Supervisor: alton lee bundy jr
## 7665          5/24/2005 08:38 am (fblackmo) employee was walking up the shoulder of nc 215 to pickup a portable traffic counter. He slipped on a patch of snow/ ice and fell against the guardrail. He received a cut on his left wrist, two cults on his right hand and
## 7666                       5/24/2005 08:55 am (fblackmo) employee was making deposit for the state when, a gust of wind caught the door catching her finger on left hand. Employee states her ring finger became paralyzed for a few minutes. Supervisor: mike salisbury
## 7667                                                                                                                    5/24/2005 09:17 am (fblackmo) employee was walking to excavator at stockpile when, a gust of wind blew dirt in his eyes. Supervisor: hilton wade
## 7668                                                                                                                                   5/24/2005 09:30 am (fblackmo) employee was stepping out of truck when, he felt pain in his right ankle. Supervisor: r. R. Murdock
## 7669                                                      5/24/2005 10:44 am (fblackmo) employee was trying to dislodge a small log from the back of a bulldozer blade. As he pulled on the log he felt a sharp pain in his right shoulder. Supervisor: r. J. Hollifield
## 7670                                                                                                                                5/24/2005 11:28 am (fblackmo) employee was shoveling and raking asphalt when, he felt pain in his lower back. Supervisor: ben jordan
## 7671          5/24/2007 02:48 pm (speedin) employee was stacking a shipment of pipe that was received by the maintenance yard. He had cut off three bands and thought that he had cut all of the bands off the pipe, but there was a band in the middle wand when he cut
## 7672                                                                                                                   5/24/2007 03:52 pm (speedin) employee stopped behind line of traffic and was rear-ended by driver of 1997 honda accord. Supervisor: terrell smith
## 7673                                                                        5/24/2007 04:13 pm (speedin) employee was running to get into position to flag traffic when he stepped into a hole and fell. He injured his left ankle and right hand. Supervisor: gg melton
## 7674                                                        5/24/2011 03:52 pm (fblackmo) employee was called to come into work early due to icy weather. As he headed to his state vehicle he slipped on the steps and twisted his left knee. Supervisor: I. H. Mccombs
## 7675                                                                 5/24/2011 04:25 pm (barnes) employee was bent over putting sleeve on tongue of leeboy when he felt pain in his back. Employee complained of lumbar strain and muscle spasms. Supervisor: t. M smith
## 7676                                                                                                               5/25/2004 02:13 pm (fblackmo) employee states while removing heavy object form trailer he, felt pain in his right upper arm. Supervisor: s. J. Gupton
## 7677                                     5/25/2004 02:27 pm (fblackmo) employee states that a cord from a crane became tangled up with a u-channel. While trying to free up the cord the u-channel fell over striking him behind his left ear. Supervisor: jason leonard
## 7678                                                                               5/25/2004 02:45 pm (fblackmo) employee states she is having pain in both hands due to repetitive motion from driving a dump truck. Supervisor: eddie guganious *show joyce all bills*
## 7679                                                                    5/25/2004 02:57 pm (fblackmo) employee was walking on side of road when, he went to step around a pipe his right foot slipped causing the injury to his right knee. Supervisor: kennie covington
## 7680                                                                                                                             5/25/2004 03:09 pm (fblackmo) employee states while using a razor to remove a sticker he, cut his right thumb. Supervisor: j. W. Cahoon
## 7681                                                                                                  5/25/2004 03:22 pm (fblackmo) employee states while putting sings for paint crew on shoulder of road he came into contact with poison ivy. Supervisor: chuck sharp
## 7682                                                                                             5/25/2004 03:32 pm (fblackmo) employee was riding on the back of crew cab when, the driver hit a pot hole employee hit his head on back of cab. Supervisor: donald king
## 7683                                                                                                                5/25/2004 03:45 pm (fblackmo) employee states the engine hood fell on his hand and fingers while checking hose for leaks. Supervisor: terry r. Yates
## 7684                                        5/25/2006 08:54 am (fblackmo) employee was operating rental rubber tired roller in paving operation. Employee possibly over accelerated in his attempt to relocate to the next phase of operation. Supervisor: a. C. Coghill
## 7685         5/25/2006 09:12 am (fblackmo) employee was chipping at a rock in the ditch line w/trax. A piece of the rock broke loose and hit the front windshield of the trax shattering the window causing, glass to fly into employees right eye. Supervisor: kim keph
## 7686                                                                                                                    5/25/2006 09:22 am (fblackmo) employee was putting signs in their storage locations and pulled a muscle in his neck. Supervisor: jerome locklear
## 7687                              5/25/2006 09:34 am (fblackmo) employee was installing a pipe. He did not know it had poison oak on it. He got the oil on his gloves and wiped the sweat off his face getting it in his eyes and on his hands. Supervisor: m. H. Thomas
## 7688                                                                                                                 5/25/2006 09:47 am (fblackmo) employee was walking by building and was stung by wasp on upper arm near right shoulder area. Supervisor: jeff credle
## 7689         5/25/2007 01:44 pm (speedin) employee was loading a 3 in. X 10 in x 5ft bridge timber onto the bed of a truck by hand. When the timber landed on the truck bed, it bounced and struck employees middle finger on his right hand. Supervisor: terry j. Davis
## 7690                                                                                                                                                                           5/25/2007 03:03 pm (fblackmo) employee hit knee on corner of desk. Supervisor: ava parker
## 7691                                                   5/25/2007 09:46 am (speedin) employee was picking up trash and rubber along I-85 and attempted to load a truck hold onto the tailgate of the truck and strained something in my left elbow. Supervisor: rd loflin
## 7692                                                                                                                                            5/25/2007 10:29 am (speedin) employee was removing tree from road and felt pain in his groin. Supervisor: derrick dixion
## 7693                            5/25/2007 11:24 am (fblackmo) employee was driving a tractor on us 264 to meet up with the other tractors where they were mowing. A private vehicle was traveling west on 264 and ran into the back of the tractor. Supervisor: joe ross
## 7694                                   5/25/2007 11:39 am (fblackmo) employee was wearing a special shoe for her toe injury when, her foot caught tangled in a computer cord causing her to fall. Employee felt pain in her right foot/hip. Supervisor: w. J. Massengill
## 7695                                                                                                                               5/25/2007 11:54 am (fblackmo) employee was unloading his flat bed truck when, trash blew into his left eye. Supervisor: mike jefferys
## 7696          5/25/2011 02:42 pm (barnes) employee states that it had been raining and the road was wet. When he applied his brakes the truck he was driving slid into the rear of a private vehicle. Employee injured his knee, chest and abdomen. Supervisor: lee answ
## 7697                                                                                                                               5/25/2011 03:41 pm (barnes) employee was climbing onto the track hoe and he felt pain in his lower back. Supervisor: hubert m. Hooper
## 7698                                                                                                                                              5/25/2011 04:29 pm (barnes) employee was walking in high grass and something bit her right leg. Supervisor: tim wright
## 7699          5/25/2011 05:08 pm (barnes) employee was standing about 15' behind chipper while another employee was putting limb into it. As the limb was chipping, it began moving and hit the employee that was standing behind it in the head and face. He went to ur
## 7700                                                                     5/25/2011 12:34 pm (barnes) employee was replanting endangered plants in right of way when he came in contact with poisonous plant on left arm. Employee injured left arm. Supervisor: art king
## 7701                                                                                                           5/26/2005 08:35 am (blgay) employee was getting down from back of pickup when he hit his ankle on the right leg on the tailgate. Supervisor: boyd griffin
## 7702                                                                                                                                         5/26/2005 08:41 am (blgay) employee was raking asphalt and when he stood up he felt catch in back. Supervisor: w. H. Monroe
## 7703         5/26/2005 09:53 am (fblackmo) employee was conducting a road test when the driver turned to hard to the right causing the car to ruining into a telephone pole and in up in the ditch. Employee states she was shaken by the accident and whipped lash to t
## 7704                                             5/26/2005 10:15 am (blgay) employee was drilling hole in metal box. Bit broke on drill causing drill to slip and strike employees finger, causing deep laceration to index finger on left hand. Supervisor: r. G. Crews
## 7705         5/26/2005 11:10 am (blgay) employee was driving a dump truck and had stopped for a vehicle making a right turn in front of him. A tractor trailer approaching from the rear did not stop, hitting the truck the employee was driving. Supervisor: travis mi
## 7706         5/26/2009 07:58 am (blgay) employee was traveling west and a mitsubishi suv was traveling east on sr 1221 with a tractor trailer following behind him. The hood of the suv flew up and the driver of the vehicle stopped. Attempting to avoid suv, the driv
## 7707                                                                                 5/26/2009 08:27 am (blgay) employee was feeding limbs into a brush chipper. A limb swung around and struck him on his right elbow, causing a contusion. Supervisor: ronald e. David
## 7708         5/26/2009 08:46 am (blgay) employee was hauling dirt/mud from bridge project on bowles road to alvin harris stockpile. While driving on sr 1542 dump truck operators george graham and french parsons met and employee thought that their mirrors were goin
## 7709                                                                                                                                                                    5/26/2009 08:50 am (fblackmo) employee found tick attached to genital area supervisor: ben nelms
## 7710                                                                                                                                             5/26/2009 09:07 am (fblackmo) employee was exiting his vehicle when, he twisted his left knee. Supervisor: a. G. Hunter
## 7711                                                                                                                   5/26/2010 01:26 pm (fblackmo) employee was changing front tire on mowing tractor, when he felt pain in his left arm. Supervisor: richard jernigan
## 7712                                                           5/26/2010 01:52 pm (fblackmo) employee was changing tire for disabled vehicle when his right hand slipped from the hand tool that loose the lug nuts. Supervisor: ron pharr 9/10/2010 08:50 am (sjerniga)
## 7713           5/26/2010 02:32 pm (fblackmo) employee was cutting small trees and vines on a steep embankment from bank. He was standing in road dragging a fallen tree down embankment to to chipper when, tree got entangled and snapped. Tree rush down bank knocking
## 7714                                                                       5/26/2010 02:46 pm (fblackmo) employee was cleaning ditches and loading debris into dump truck when, he came into contact with poison ivy on multiple body parts. Supervisor: david m. Carter
## 7715                                                                                                      5/26/2010 03:01 pm (fblackmo) employee was changing a tire when his hand got caught between the jack handled and the frame of the car. Supervisor: gene allman
## 7716                                                                                                                            5/26/2010 03:11 pm (fblackmo) employee was closing tailgate when he noticed pain in his right index finger. Supervisor: charlie sinclair
## 7717                                                                                   5/26/2010 10:37 am (fblackmo) employee was driving a t-post with driver. The t-post driver caught a tooth, bounced back, and hit employee on the head. Supervisor: david esposito
## 7718                                                                                                                       5/26/2010 10:50 am (fblackmo) employee was surveying in tall grass when, he found two ticks on left side/abdomen area. Supervisor: al blanton
## 7719                                                                                                            5/26/2010 11:02 am (fblackmo) employee was walking down embankment when, he stepped in a hole causing injury to his right ankle. Supervisor: r. K. Payne
## 7720                                                                                                                      5/26/2010 11:17 am (fblackmo) employee state that he was walking around to get in truck when, he twisted his left knee. Supervisor: b. L. Sapp
## 7721                                                                                         5/26/2011 10:01 am (barnes) employee was stepping out of the patch truck, when he twisted wrong causing a pain to develop in his lower back area. Supervisor: a. C. Cochran
## 7722          5/26/2011 10:20 am (barnes) employee was cutting a tree, when his saw got stuck in it. Employee got a backhoe operator to push the tree to try and free the saw. The tree broke and fell against the employee's legs. Employee requested and x-ray to make
## 7723            5/27/2008 09:08 am (blgay) employee was picking up a log to move it to the side. When employee bent and grabbed hold of the log and lifted, he felt a pop in lower abdomen. Pain in hip and back which is a constant pain. Supervisor: kevin whittington
## 7724         5/27/2008 10:23 am (blgay) employee was helping install r/w marker when she jumped into ditch in order to get to the back side of ditch. Employees foot landed in mud, got stuck and momentum carried her body forward, causing her knee to twist. Supervis
## 7725         5/27/2008 10:42 am (blgay) employee was cutting right of way coming off a bank, he slipped on a tree limb, causing him to fall down the bank. Employee complained of right knee pain, but refuse medical treatment. Employee later went for medical treatme
## 7726          5/27/2008 12:07 pm (blgay) employee was replacing a pipe on sr 2146. Employee was working in and around tall grass and at the end of the day he found a tick stuck to his right hip. Employee started to have symptoms on 5/16/08 and was seen by a doctor
## 7727                                                                                                                        5/28/2004 09:14 am (fblackmo) employee states while climbing embankment he, felt pain in his right calf muscle area. Supervisor: mark callis
## 7728                                                                5/28/2004 09:33 am (fblackmo) employee states while leaving the building she, lost her footing when she missed a step. Employee experienced pain in right ankle and both knees. Supervisor: don nail
## 7729                                                                        5/28/2004 09:48 am (fblackmo) employee states she was cutting up ham in a pot of boiling water when, the water splashed on her face, neck, and arms causing burns. Supervisor: c. S. Fearing
## 7730                                                                                                            5/28/2004 10:33 am (fblackmo) employee states while standing on shoulder of road he, felt something bite him on upper left arm. Supervisor: w. H. Monroe
## 7731                                                                                5/28/2004 10:43 am (fblackmo) employee was loading straw on truck when, he noticed he had been bitten by grain itch mites on stomach, chest, back, and arms. Supervisor: t. R. Burns
## 7732                                                                   5/28/2004 10:55 am (fblackmo) employee states while changing out sings in high grassy area, he did not see a hole in the ground which caused the injury to his left foot. Supervisor: b. T. Coble
## 7733                                                                    5/28/2004 11:05 am (fblackmo) employee stepped to the side to allow fellow worker to load material when, he stepped in a hole causing the injury to his right ankle. Supervisor: c. E. Watson jr
## 7734          5/28/2004 11:23 am (fblackmo) employee was holding ends of pieces of metal to be welded together. He started to weld, the wire form the wielder went between the two ends and his glove causing the injury to his left index finger. Supervisor: jim e. Ad
## 7735                                                                                                                              5/28/2004 11:35 am (fblackmo) employee was working on vehicle when, he hit his forehead on battery box cover. Supervisor: jimmy ammons
## 7736           5/28/2004 12:00 pm (fblackmo) employee was welding dump truck bed. Employee was wearing an auto dimming welding helmet. He was chipping slag form the weld when a piece of slag flew off. It bounced off of employees welding coat, went inside the weldi
## 7737                                                                                  5/28/2009 08:48 am (fblackmo) employee was setting pilings his right hand was on water jet pump when, his hand was caught between the pump and the piling. Supervisor: norris reed
## 7738                                                                                                                                            5/28/2009 09:02 am (fblackmo) employee hit leg on sharp object causing laceration to left leg. Supervisor: a. C. Gavetti
## 7739                                                                                                                            5/28/2009 09:21 am (fblackmo) employee found two tick bites on her lower left leg while conducting field work. Supervisor: lerlani paugh
## 7740                                                                                                                 5/28/2009 10:12 am (fblackmo) employee was surveying in grassy field for new location roadway when, he was bitten by a tick. Supervisor: ben upshaw
## 7741         5/28/2010 03:22 pm (fblackmo) employee was laying on creeper under trailer when he felt burning and stinging on his left buttocks. Employee looked for possible insect but could not find one. He thought at that time something had bitten or stung him. S
## 7742       5/28/2010 03:52 pm (fblackmo) employee and hg crouse were throwing traffic cones on and off the trailer. Employee walked around the back of the trailer into the pat of a cone being thrown by hg crouse striking him in the head near right temple area. For
## 7743                                                                                                  5/28/2010 09:57 am (fblackmo) employee was stepping out of dump truck when his right foot slipped. Employee heard a pop in his lower back. Supervisor: hilton wade
## 7744         5/29/2008 12:26 pm (blgay) employee was working on sr 1307. Employee was getting into the long arm tractor, when he fell off backwards onto the ground. Employee expressed body pain on the right side of his body, including right shoulder, right arm, ri
## 7745                                                                                                                                5/29/2008 12:37 pm (blgay) employee was on job site when the high wind blew shivers of rock in his left eye. Supervisor: mike walden
## 7746         5/29/2008 12:47 pm (blgay) employee was returning two rental rollers to briggs equipment. Employee dismounted the first roller using the three point method when his right foot slipped off of the step of the roller causing his extended left leg to go s
## 7747                                                                       5/3/2005 01:17 pm (fblackmo) employee was un-chaining backhoe from trailer when, he stepped over loading ramps placed body weight onto left leg felt kept knee pop. Supervisor: neil crumpler
## 7748                                                                                                                                   5/3/2005 09:00 am (fblackmo) employee was shoveling rocks when, he felt pain in his lower back area. Supervisor: eddie gurganious
## 7749                                          5/3/2005 09:16 am (fblackmo) employee was returning from raleigh when, he was rear ended by private vehicle in a five car accident. Employee felt pain in his neck and numbness in his right arm. Supervisor: shawn mebane
## 7750                                                                                                       5/3/2005 09:33 am (fblackmo) employee was cutting lids off of plastic buckets when, his knife slipped cutting his left index finger. Supervisor: brian harper
## 7751                                                 5/3/2005 09:45 am (fblackmo) employee states he operates a variety of machinery relating to seeding, mulching and mowing. Employee has been wearing ear protection. Bilateral hearing loss. Supervisor: keith h ill
## 7752                                                                  5/3/2005 10:00 am (fblackmo) employee was working on state road when, he was hit in his back and legs by a school bus. Employee felt pain in his left s shoulder and neck. Supervisor: kevin bowen
## 7753                                                                                                                       5/3/2005 10:10 am (fblackmo) employee was digging out bad areas in road when, he came into contact with poison ivy. Supervisor: mark r. Moore
## 7754                  5/3/2005 10:30 am (fblackmo) employee was cleaning out waste oil separator and had to enter the inside of tank to replace plates into tank groves. While entering tank, employee struck left shoulder on side of tank. Supervisor: r. W. Feher, jr
## 7755         5/3/2005 11:30 am (fblackmo) employee was removing pin from bucket linkage on backhoe to install cylinder. When the pin came out of the first part of the linkage, the rest moved. This pinched his thumb between the linkage and a hydraulic hose mounting
## 7756                                                        5/3/2005 11:42 am (fblackmo) employee was lifting a small sheet aluminum to place in shear when, he fell striking his knee on concrete and chipping tooth on the aluminum sheet. Supervisor: r. W. Feher, jr
## 7757                                                                                                                    5/3/2005 11:54 am (fblackmo) employee states while mowing grass he, was bitten by at spider or insect on his right hip. Supervisor: steven blake
## 7758                                                                                       5/3/2005 12:30 pm (fblackmo) employee was working in the battery box of backhoe when, he felt something bite him on his little finer on right hand. Supervisor: t. H. Hackett
## 7759                            5/3/2005 12:39 pm (fblackmo) employee was traveling south on coble ave when, a private vehicle ran the red light striking state truck on drivers side door. Employee bumped the left side of his head on window. Supervisor: davis diggs
## 7760                                                                                       5/3/2005 12:59 pm (fblackmo) employee was working in clayton when, he picked up a plaintop survey stake and a large splinter stuck in his right hand. Supervisor: kevin bowen
## 7761         5/3/2007 02:24 pm (speedin) employee was getting out of the dump truck. He was stepping out in a 3 point of contact when right foot reached the ground, his foot rolles over on a piece of asphalt that was in tall grass, resulting in a severe ankle spra
## 7762                                                                   5/30/2006 02:45 pm (fblackmo) employee was driving state pickup truck when, private vehicle struck state vehicle in rear causing the injury to employees neck and back. Supervisor: j. Scott cole
## 7763                                                            5/30/2006 02:56 pm (fblackmo) employee and tyler humphrey were loading a 10' metal back form for c & g divider on cold patch when, employee felt pain in his left shoulder area. Supervisor: robert ladd
## 7764                                                5/30/2006 03:06 pm (fblackmo) employee ran off the road and as he tried to get the dump truck back on the road the back of dump truck came around causing the dump truck to turn on its side. Supervisor: t. L. Pugh
## 7765                                                                                   5/30/2006 03:16 pm (fblackmo) employee was positioned under bridge looking up while scraping lead paint from surface when, particles fell into his eyes. Supervisor: robbie beach
## 7766                                  5/30/2006 10:59 am (fblackmo) employee was driving pickup truck when, he was hit in the rear by another vehicle. The impact caused his right hand to hit the dash board causing injury to his ring finger. Supervisor: mark conner
## 7767                                                                                                                                5/30/2006 11:14 am (fblackmo) employee was cleaning up the firing range when, he scratched his index finger. Supervisor: c. E. Irvin
## 7768              5/30/2006 11:38 am (fblackmo) employee found two ticks on his body on 5/5/06. Over the weekend he found a tick imbedded behind his ear. Supervisor: jerome locklear 8/25/2006 02:38 pm (fblackmo) show all bills to joyce wilson before sending to cor
## 7769         5/30/2006 11:47 am (fblackmo) employee was mounting an electrical sub-panel on a post with the assistance of two inmates. As he went to align the panel box to the post one of the inmates dropped his end and the panel box fell on the employees left thu
## 7770                              5/30/2007 09:06 am (speedin) employee was tightening a bolt when the wrench slipped off and the back of his hand hit the rock guard. It then tore a place on the back of his hand which needed 3 stitches. Supervisor: greg mccracken.
## 7771        5/30/2008 07:29 am (blgay) employee had to climb an embankment to cut a failed tree. Employee didn't realize the tree was covered with poison oak/ivy. Employee developed a serious rash in three days, covering both hands and arms. Supervisor: r. W. Robe
## 7772             5/30/2008 07:39 am (blgay) employee was driving a metal post in the ground for silth fence. Employee was the one holding the post, when it kicked out after hitting a rock and caught employees thumb, straining his right hand. Supervisor: bobby webb
## 7773                                                                                                                                              5/30/2008 07:55 am (blgay) employee was stepping off of sled trailer and injured left ankle. Supervisor: tommy edwards
## 7774                                                                                                                                 5/30/2008 08:05 am (blgay) employee was removing brush from right of way and got poison oak in both eyes. Supervisor: b. W. Jackson
## 7775                                       5/30/2008 08:14 am (blgay) employee was walking down an embankment when a rock moved underneath his foot, causing him to almost fall. When employee caught himself, he had a sharp pain in his back. Supervisor: mark collins
## 7776                                   5/31/2005 02:23 pm (fblackmo) employee was getting tools, walking toward truck when, he ran into the door on the loader. Employee hit his forehead on the corner of the door knocking him to the ground. Supervisor: a. W. Keeton
## 7777          5/31/2005 02:33 pm (fblackmo) employee was conducting his pre-trip inspection. He opened the hood and the hood latch caught on the truck, he lost his grip on the hood. The hood slipped out of his hand causing pain I his right hand and shoulder. Note:
## 7778                                                                   5/31/2005 02:54 pm (fblackmo) employee reached in the hopper to pick up a spring and into he process of lifting it up, a grate fell on his little finger on right hand. Supervisor: w. T. Garrett
## 7779                                               5/31/2005 09:02 am (fblackmo) employee states she began to shaking, cry, and felt sick on her stomach. She states she was shaking so bad that she could not hold the phone or type. Supervisor: not stated on form 18
## 7780                                                            5/31/2005 09:27 am (fblackmo) employee was helping to push a cut tree when, he lost his footing on a steep embankment causing him to fall in the road and injuria his left ankle. Supervisor: t. L. Hall
## 7781                                                              5/31/2005 10:09 am (fblackmo) employee was walking behind truck when, he was struck by a rake that was extended out over the tailgate. Employee felt pain in his back and head. Supervisor: w. J. Nall
## 7782                                                                                            5/31/2005 10:55 am (fblackmo) employee was pulling up hood on dump truck when, the latch became hung up causing a jerking motion to his right arm. Supervisor: mike hamm
## 7783                                       5/31/2005 11:06 am (fblackmo) employee was operating pavement marking removal machine ( grinder) when, something broke & grinder teeth came from under machine striking employee in several locations. Supervisor: ira harris
## 7784                                                                          5/31/2005 11:17 am (fblackmo) employee was driving silt fence post with post driver. Employee raised post driver up when, the edge of post struck him on the head. Supervisor: l. W. Lyall
## 7785            5/31/2005 11:30 am (fblackmo) employee was checking a windshield for a leak. He was standing on left front tire of vehicle. Employee turned to his right, he says is when, he felt a sharp pain in his knee and fell of the truck. 10/07/2005 08:55 am (
## 7786          5/31/2007 02:48 pm (speedin) employee was overseeing shoulder maintenance operations and helping to spread grass seed. Employee turned to speak w/ one of his employees and felt a sharp pain in his back, pain continued to worsen with time and employee
## 7787                           5/4/11 drove to boone, photographed fisherman in stream, drove to asheville, 5/4/11 drove to waynesville and photographed fisherman in workshop, unloaded and set up studioy lighting, tore down lighting and hoist lights into truck. ()
## 7788                5/4/2004 01:03 pm (fblackmo) employee was removing nails form floor joist. Employee slipped on wet joist and fell. Employee cut left ear from head to outer edge with approximately a 1/2 inch cut completely through ear. Supervisor: c. C. Coggins
## 7789                                                                                                                         5/4/2004 02:25 pm (fblackmo) employee was working on a ferry boat when, he was hit in the ribs by a shaft. Supervisor: thomas foster bowser
## 7790                                                                                                                                      5/4/2004 04:17 pm (fblackmo) employee was leaving trailer when, he slipped and fell down the steps. Supervisor: robert winslow
## 7791                                                                                                                           5/4/2004 04:44 pm (fblackmo) employee was washing out mop head in sink when, water splashed into his eyes. Supervisor: curtis r. Branhill
## 7792                                               5/4/2004 05:04 pm (fblackmo) employee was driving a crash truck when, a private vehicle struck in the rear causing the injury to employees neck and shoulder. Supervisor: w. W. Childress 5/25/2004 12:13 pm (gwhite)
## 7793                                                                                       5/4/2004 08:42 am (fblackmo) employee states while installing a fence post he, stepped back on a pile of dirt causing the injury to his right ankle. Supervisor: l. W. Currin
## 7794           5/4/2004 09:03 am (fblackmo) employee was assisting acting crew leader in backing to dig out hole to dump asphalt. Employee turned his back to the truck that he was assisting when, acting crew leader struck him in the upper back, causing him to step
## 7795                                                                 5/4/2004 09:32 am (fblackmo) employee states while driving to pick up parts for equipment repairs, he struck a private vehicle in the rear causing the injury to his arms. Supervisor: s. J. Gupton
## 7796                                                                                                         5/4/2004 09:48 am (fblackmo) employee states while conducting his daily duties he, was bitten on his left hand by an insect. Supervisor: morris joseph gray
## 7797                                                                                                                5/4/2004 11:29 am (fblackmo) employee states while lifting empty barrel to stack for storage he, felt pain in his left side. Supervisor: chuck sharp
## 7798                                                                                                            5/4/2004 11:41 am (fblackmo) employee states while cutting trees on jack cowin road he, came into contact with poison ivy. Supervisor: c. M. Williams jr
## 7799                                                                                  5/4/2004 11:55 am (fblackmo) employee was driving a dump truck when, she went over a bad dip in the road she felt pain in her neck and right side area. Supervisor: k. L. Anderson
## 7800                                                                                                 5/4/2004 12:07 pm (fblackmo) employee states while stepping off trailer onto the paved surface she, felt pain in her left foot/ ankle. Supervisor: j. Stuart bourne
## 7801                                 5/4/2004 12:42 pm (fblackmo) employee state he was using a backhoe to push brush from roadway into pile to be loaded onto trucks. Employee was hit by small tree as the brush was being pushed toward pile. Supervisor: w. H. Lynch
## 7802         5/4/2005 12:07 pm (fblackmo) employee states that a private vehicle was coming out of parking lot when it cut across traffic. Employee states he had to turn sharply to avoid striking the vehicle during the process he felt pain in his left wrist, elbow
## 7803                                                                                                                                    5/4/2005 12:26 pm (fblackmo) employee was trying to free canvas rod when, he slipped and fell off wheel. Supervisor: hilton wade
## 7804                                                                                          5/4/2006 03:43 pm (fblackmo) employee was working the backhoe when, he turned his head to check for traffic, he felt pain in his neck. Supervisor: j. L. Brown & gary neal
## 7805                                                                                               5/4/2006 08:40 am (fblackmo) employee walked into building, stepped on tile floor, slipped on wet surface causing the injury to his ankle. Supervisor: cecil l. Jones
## 7806                                                                                                                        5/4/2006 08:54 am (fblackmo) employee was climbing up uneven surface (rip-rap) when, he felt pain in his right foot. Supervisor: makr callis
## 7807                              5/4/2006 09:15 am (fblackmo) employee has been experiencing pain, swelling, and numbness in both hands for the last two years (date of diagnosis is May 2, 2006 per: kathy barefoot). Carpal tunnel syndrome. Supervisor: a. J. Sawyer
## 7808                                                                                   5/4/2006 09:35 am (fblackmo) employee was working on a water truck repairing a hose. While cutting a piece of hose with a knife, he cut his left thumb. Supervisor: k. H. Johnson
## 7809                            5/4/2006 09:50 am (fblackmo) employee was stepping down off grader and didn't realize that the grader blade had torn lose the last step which caused him to lose his footing, falling backwards on his left leg. Supervisor: mike walden
## 7810                                 5/4/2006 10:04 am (fblackmo) employee was walking away from her desk when, she slipped on a slick spot on the floor in front of the copier. As employee fell, her left leg twisted out from under her. Supervisor: c. D. Moorefield
## 7811                                                                                       5/4/2006 11:17 am (fblackmo) employee was pulling on tree tops when, he felt a sharp pain in his lower back, right side, and down his his right leg. Supervisor: m. H. Thomas
## 7812                         5/4/2006 11:36 am (fblackmo) employee states while working on concrete pavement he felt chronic pain under his left foot and calf area. Supervisor: reese bailey 5/8/2006 03:57 pm (fblackmo) can pay bills up to 05/04/2006 only, see memo
## 7813                                                                       5/4/2007 04:30 pm (speedin) employee skid steer grinding attachment for operating problems. Raised up hitting head on the machinery, causing a cut on top of the head. Supervisor: ken pruett
## 7814                        5/4/2009 03:26 pm (blgay) employee was bushing along creek bank and slipped on mud. His feet slid toward creek and as he tried to catch himself with his left hand, his left hand and fingers were bent backwards. Supervisor: w. D. Watkins
## 7815                                                                                       5/4/2009 03:35 pm (blgay) employee was removing grates to clean out drop box, when he felt something pull in his left wrist, causing it to sprain. Supervisor: dennis huffman
## 7816                                                                                                                                      5/4/2011 02:30 pm (fblackmo) employee was lifting post when he felt a twitch in his lower back area. Supervisor: neil crumpler
## 7817         5/4/2011 02:36 pm (barnes) employee was at the equipment shop helping unload parts from the back of a truck. When employee pulled a blade from the truck, his left finger popped causing it to swell. Employee reported it to the equipment shop supervisor
## 7818                                                                                                5/4/2011 03:17 pm (barnes) employee bent down on knees to measure a block out on a beam, felt right knee pop. Employee injured right knee. Supervisor: alan c levens
## 7819         5/4/2011 03:47 pm (barnes) employee states that the customer who was taking a road test, waited until the last minute to stop at the stop sign on wilson way road, and when she slammed on brakes, it threw the employee forward, causing her to hurt her b
## 7820                                                                      5/4/2011 04:27 pm (barnes) employee was operating high speed drill. The drill hit metal and jerked employee's right arm causing him to hurt his right shoulder. Supervisor: tommy g. Culberson
## 7821                                                                                                                5/4/2011 04:59 pm (barnes) employee was climbing onto the trailer. He slipped and fell on his left leg, injuring his shin. Supervisor: tammy johnson
## 7822          5/4/2011 05:13 pm (fblackmo) employee stepped with his right foot on a wet grassy slope and slipped down the slope as his left knee buckled; hyperextension perpendicular to his body. Employee felt pain in his left knee area. Supervisor: randy k. Wise
## 7823                                                       5/4/2011 05:27 pm (barnes) employee was removing trees and debris from roadway. Employee came into contact with poison oak/ivy. Employee had rash on arms, hands, ankles and legs. Supervisor: clyde e. Scott
## 7824                                                                         5/4/2011 10:00 am (fblackmo) employee was working under bridge to replace caps, joists, and crown strips. When he came out from under bridge his back felt stiff. Supervisor: chuck francka
## 7825                      5/4/2011 10:20 am (barnes) employee was a passenger in ton truck being driven by norman perry. They were stopped for a light when they were struck from behind by a private owned vehicle. Employee injured his neck. Supervisor: gene johnson
## 7826                                                                                                                              5/4/2011 10:34 am (fblackmo) employee was working beside highway when wind blew dust into his left eye. Supervisor: michael a. Clinard
## 7827                                                                                                                         5/4/2011 10:46 am (fblackmo) employee was cutting trees with chainsaw when, on of the limbs cut his left knee. Supervisor: jeremy b. Creech
## 7828         5/4/2011 11:11 am (barnes) employee stated a load of gravel was in the tailgate causing it to hang open. Employee was shaking the tailgate to release the gravel. When the gravel fell out, the gate closed on his left hand. Employee's left middle finger
## 7829                                                                                               5/4/2011 11:29 am (barnes) employee was operating widening machine when he was bit by an insect on his right arm, resulting in swelling. Supervisor: james m. Laviner
## 7830                                                                                              5/4/2011 11:43 am (fblackmo) employee was making repairs to a security gate with hinges when the gate slipped mashing his left ring finger. Supervisor: jason d. Gibbs
## 7831         5/4/2011 11:49 am (barnes) employee was cutting trees below the road. His coworker was using a backhoe to reach down and pull trees. The backhoe bucket slipped off one of the trees causing it to fall in direction of the employee. The employee ran to g
## 7832                                         5/4/2011 12:00 pm (fblackmo) employee opened the main door to enter into the bridge house when a gust of wind blew the door back onto his left hand/arm. Employees left forearm and thumb was cut. Supervisor: frank granda
## 7833                                                                                     5/4/2011 12:16 pm (fblackmo) employee was attempting to un-clog the want tip with a torch while reaching for a pliers when burned his left wrist area. Supervisor: fred j. King
## 7834                                                                                                    5/4/2011 12:29 pm (fblackmo) employee was trying to open the truck bed door with a crowbar when, it slipped striking him in the face. Supervisor: perry mitchell
## 7835         5/5/2010 08:46 am (fblackmo) employees account of the event that caused his injury is that, the tailgate lift that assist employees with loading large animals was malfunctioning when he attempted to load a dead deer into the pickup truck. Employee cla
## 7836                                                                                                                                                            5/5/2010 09:31 am (fblackmo) employee states he experience ringing in both ears. Supervisor: kathy lewis
## 7837                                                 5/5/2010 10:08 am (fblackmo) employee was delineating wetlands in a wooded area and walked into the tip of a tree branch which hit her right eye resulting in a small corneal abrasion. Supervisor: chris rivenbark
## 7838         5/5/2010 10:31 am (fblackmo) employee was driving back into the office after working at night for paving operation. Employee went to sleep while driving, ran off the road, struck tree, road sign, and fence. Employee felt pain in both shoulders and arm
## 7839                                                                                                                                              5/5/2010 10:49 am (fblackmo) employee was getting off paver when he twisted his left foot. Supervisor: brett d. Canipe
## 7840                                                                                                                                5/5/2011 05:56 pm (fblackmo) employee was picking up boards when he felt pain in his neck and left shoulder. Supervisor: chris vause
## 7841                                                                                                 5/5/2011 09:22 am (barnes) employee injured left knee during practical exercise of weapon retention. Left knee became tight and had pain. Supervisor: steve watkins
## 7842                                                                                                                                            5/5/2011 10:07 am (barnes) employee stated that he was doing scat and was kneed in the right shin. Supervisor: b. Sitton
## 7843           5/5/2011 10:25 am (barnes) employee states that it had been raining the previous day and the ground was wet. As he re-entered the truck his boots were wet and he slipped off the running board of the truck. Employee injured his left knee. Supervisor:
## 7844            5/5/2011 11:24 am (barnes) employee "marks" had trailer jacked up in the air to check brakes. He let the jack down and went to adjust the brakes. He had his left foot on rear wheel, when another employee inside the truck released the brake, causing
## 7845                                             5/5/2011 12:38 pm (barnes) employee removing trees and debris from roadway. At some point, employee came into contact with poison ivy/oak. Employee had rash on arms, hands ankles and legs. Supervisor: clyde e. Scott
## 7846                                           5/6/2005 02:31 pm (fblackmo) employee was climbing out of dump truck bed when the top of the wooden rail broke causing employee to fall to the ground. Employee felt pain in his lower back area. Supervisor: retha leigh
## 7847         5/6/2005 10:40 am (fblackmo) employees right elbow began swelling around 4:00 p. M. On 04/11/2005. He states that throughout the night it continue to swell and bruise. It was thought to be a insect bite. He went to the doctor on 04/12/2005 as was told
## 7848              5/6/2005 10:59 am (fblackmo) employee and another co-worker was lifting an oak block (blocks used to lift vessels out of water) when, he felt pain in his lower back area. Supervisor: raymond paul brown 5/11/2005 03:00 pm (gwhite) authorized visit
## 7849                                                                                                                             5/6/2005 11:47 am (fblackmo) employee was helping to install concrete pipe when, he felt pain in his back. Supervisor: not stated on 19
## 7850         5/6/2005 12:00 pm (fblackmo) employee was attempting to remove wheels from dump truck. He was unable to brake one lug loose, he was going to lower the truck back to the floor to loosen the lug. In doing so he did not realize that the jack handle was u
## 7851                                           5/6/2009 08:28 am (fblackmo) jack williams (co-worker) was using a weedeater with a bush blade to clean around shoulder drain. The weedeater kicked back and struck Mr. Reamey on his left leg. Supervisor: w. T. Garrett
## 7852                                                                                                                                               5/6/2009 08:39 am (fblackmo) employee was walking into work when, she fell in parking lot. Supervisor: theresa taylor
## 7853                                  5/6/2009 09:06 am (fblackmo) employee was going to spot weld metal in corner of frame. Wire from the welder gun went by metal and wire went through employees glove and punctured his left index finger. Supervisor: w. M. Harrell
## 7854                                                                         5/6/2009 09:21 am (fblackmo) employee was picking up trash on the road side when, he noticed that he was bleeding from a small hole on right side of abdomen area. Supervisor: a. G. Hunter
## 7855                                                                             5/6/2009 09:46 am (fblackmo) employee was sawing lumber with a circular saw when, a piece of debris went underneath his glasses and got into his left eye. Supervisor: kenneth l. Clark
## 7856         5/6/2009 09:56 am (fblackmo) employee was distributing signs in high grassy areas most of the day in several locations in wayne county. He was not aware of the tick bite until early saturday (4/18/09), he noticed redness and swelling on left side of h
## 7857          5/6/2009 10:15 am (fblackmo) employee and two inmates was cleaning msd compartment. No deck plates were in use. Employee and inmates were walking across angle iron when, employee slipped and fell on his right hip. Supervisor: marshall coleman 8/13/20
## 7858                 5/6/2009 11:44 am (slee) employee was driving to work and saw another truck approaching in his lane. Employee went to the shoulder but other driver never turned back and struck sov head on. 5/20/2009 09:23 am (lvaughan) injured: l-arm, r-knee,
## 7859        5/7/2007 01:01 pm (speedin) employee was driving in the left lane on 5th st. (a two lane, one way street) in lexington when the other driver in the right lane tried to make a left turn and turned into her. The other driver hit the passenger door of Mrs
## 7860         5/7/2007 01:23 pm (speedin) employee was replacing sign post and was using hand held post hole diggers to dig hole. There was a flexible fiberglass right of way stake adjacent to hole. As employee went down with digger his left little finger scraped a
## 7861                            5/7/2007 02:19 pm (speedin) employee was removing the hydraulic hose clamps to reconnect hose to fitting. While removing the clamp, Mr Haynes' knife slipped, cutting his thumb. Supervisor: willie robinson 5/7/2007 02:43 pm (speedin)
## 7862                     5/7/2007 03:40 pm (speedin) employee was backfilling around dig out with shovel a white panel van came across center line and his mirror hit derrick on right upper shoulder breaking mirror off of private vehicle supervisor: kevin hazelwood
## 7863                        5/7/2007 04:05 pm (speedin) employee was attempting to replace a missing top bolt on a wrong way sign, sign flipped over, striking employee on left hand, resulting in a deep laceration between thumb 7 forefinger. Supervisor: j. A. Ridge
## 7864                                                                                                                5/7/2007 10:57 am (fblackmo) employee claimed that he pulled a muscle and hurt his side while attempting to change a filter. Supervisor: ricky davis
## 7865                                                                                                                                            5/7/2008 07:52 am (blgay) employee was clearing brush from the roadside and got into poison oak. Supervisor: jason joyce
## 7866                                                                                                                                      5/7/2008 08:21 am (blgay) employee was getting out of vehicle and twisted left knee off of last step. Supervisor: barry taylor
## 7867                                         5/7/2008 08:32 am (blgay) employee was trying to climb down an embankment to drive a white top stake when she slipped, causing her to slide down the embankment and injuring left leg and side. Supervisor: franklin hodges
## 7868              5/7/2010 02:15 pm (fblackmo) employee was walking down the hallway holding a cup of tea. Tea spilled from her cup causing her to trip on the floor. Employee felt pain in her left ankle/foot. Supervisor: david foster 04/21/2011 08:27 am (proberts)
## 7869                                                            5/7/2010 10:49 am (fblackmo) employee was pulling onto shoulder of road to pick up a tire when private own vehicle struck the state vehicle. Employee felt pain in his back. Supervisor: sarah g. Foster
## 7870                                                                                                               5/7/2010 11:10 am (fblackmo) employee put was putting sign in back of vehicle when he cut his right hand on the fiberglas. Supervisor: d. Bret henson
## 7871                                                                         5/7/2010 11:22 am (fblackmo) employee was struck on right index finger by a wire that was sticking out of a piece of rubber recap. Employees finger became infected. Supervisor: terry pugh
## 7872                                                                       5/7/2010 11:40 am (fblackmo) employee was tapping hole in piece of stainless steel angle. Angle was secured in vice. Tap broke causing laceration to left wrist. Supervisor: marshall coleman
## 7873                                                       5/8/2006 02:07 pm (fblackmo) employee was walking on fender when, he slipped and fell onto the trailer striking h is left leg. Employee was loading pipe to be hauled to job site. Supervisor: r. I. Matthews
## 7874                                                                                                                  5/8/2006 02:19 pm (fblackmo) employee was picking up concrete blocks off ground when, he felt pain in his lower back area. Supervisor: john parker
## 7875                                            5/8/2006 02:39 pm (fblackmo) employee was using a hand tool pick to dig out for a mud seal. The pick hit a rock, jumped from the rock hitting his boot, causing the injury to his right foot. Supervisor: jimmy hildreth
## 7876                                                          5/8/2009 01:27 pm (blgay) employee was pushing asphalt in front of wheel spread and lost his balance. The wheel spread ran up the top of his left foot, causing a contusion. Supervisor: l. S. Blankenship
## 7877         5/8/2009 01:58 pm (blgay) employee was on a walking squad picking up trash on state road 1412, when he knees and hip began to hurt after walking about 5 miles. The next day the pain was much worse after walking 6 miles. Employee could not move left le
## 7878                                                                                                 5/8/2009 02:21 pm (fblackmo) employee was prying off soap dispenser in restroom with two pocket knives when, the plastic cut his both thumbs. Supervisor: k. J. Kim
## 7879                                                          5/8/2009 11:49 am (fblackmo) employee was picking up litter on nc 35 when, his right foot got caught in small vine while stepping. Employee felt pain in the top of his right foot. Supervisor: g. W. Rose
## 7880                                                                           5/9/2007 01:20 pm (fblackmo) employee was climbing on top of fuel truck to verify fuel tank was empty when, his foot slipped on step causing injury to right knee. Supervisor: jimmy tuck
## 7881                                                                                                           5/9/2007 09:16 am (fblackmo) employee was flagging traffic when, car came by and slung gravel/foreign object into his left eye. Supervisor: frankie davis
## 7882               5/9/2007 09:27 am (fblackmo) employee was using a jack on the tar kettle. The handle broke causing his left shoulder to go forward and out of place. Supervisor: shelton james 6/14/2007 04:01 pm (lvaughan) dx on 4/26/07 as acute cervical strain 4
## 7883         5/9/2007 09:38 am (fblackmo) employee was conducting a road test when, customer was attempting to do a three point turn, the vehicle jump the curve. Employee felt pain in her lower back, left shoulder, and neck causing from the jerking motion. Supervi
## 7884          5/9/2007 10:03 am (fblackmo) employee was conducting a road test when, customer made a left turn into on coming traffic and was struck by another car. The air bag deployed striking employee in the face and chest area. Employee experience contusion to
## 7885                5/9/2007 10:21 am (fblackmo) employee was supervising a crew picking up dirt on the shoulder of the road operation when, he felt pain in his right foot. Supervisor: b. N. Braswell 6/20/2007 10:18 am (fblackmo) can not pay any bills "see memo da
## 7886                 5/9/2008 09:40 am (fblackmo) employee and another were loading h-piles onto a trailer with a forklift. As employee was sliding beams over, two of his fingers on his left hand was smashed between the two beams. Supervisor: charles w. Garris, jr
## 7887                                                                                                                                                                                       6 patients were fighting and when trying to separate them--felt pain in back.
## 7888                                                                                                                                                                                                        6% ppd thumb Dr Kirkland 7/5/2006 forms 26a completed 5/19/9
## 7889         6/1/2004 10:23 am (fblackmo) employee walked down the workzone moving the cones away form the centerline of the road had turned and was walking back to his truck and crew (facing traffic} when a motor home crossed the centerline into the work area str
## 7890                                                                                    6/1/2005 02:53 pm (blgay) employee was subjected to loud noises for long periods of time while working for dot for 30 + years. Supervisor: greg godwin 6/1/2005 03:26 pm (blgay)
## 7891         6/1/2005 08:30 am (blgay) employee was pushing gate open. The gate is large and he had to push very hard to open it. Employee said he felt a pull in his right leg near the calf muscle. Employee worked all day but the leg continued to bother him and he
## 7892         6/1/2005 08:56 am (fblackmo) employee was riding in passenger seat of dump truck, moving from the salt spreader shed to the upper parking lot. Driver of the dump truck was attempting to slide a recently installed tank further into the bed of the truck
## 7893                                                                                                                                   6/1/2005 12:23 pm (blgay) employee was picking up ramps on trailer and felt muscle pull in lower back. Supervisor: john t. Bivins
## 7894                                                                                                    6/1/2006 09:23 am (fblackmo) employee felt pain in her right hand and arm. Repetitive keying. Supervisor: carol ann smith *can not pay any bills for this claim*
## 7895                        6/1/2006 10:03 am (fblackmo) employee tried to unhook tarp from rear of truck. Tarp frame was hung on tailgate hinge. When released it catch his thumb between tarp frame and tailgate hinge, cutting his left thumb. Supervisor: henry kirk
## 7896                                                                                                            6/1/2007 02:29 pm (speedin) employee was getting out of tandem dump truck and stepped on the edge of rock and turned his ankle. Supervisor: e. W. Spivey
## 7897                                                                                                          6/10/2005 10:21 am (fblackmo) employee states while inspecting a rock fill operation a flying rock struck him on the upper lip. Supervisor: r. E. Shulters
## 7898                                6/10/2005 10:33 am (fblackmo) employee was driving a dump truck hauling rip rap to job sight, went to step out of truck and lost his foot. Employee tried to catch himself and injured his right shoulder. Supervisor: randy ledford
## 7899          6/10/2005 10:43 am (fblackmo) employee was weed eating along the guardrail on I-40 when, he came into contact with several types of vegetation. The vapors from the vegetation got onto employees skin and caused a rash and swelling. Supervisor: k. King
## 7900                                                                       6/10/2008 08:40 am (fblackmo) employee was welding on m/v neuse. Employee was standing on the grid and slipped while moving. Employee felt pain in his left leg. Supervisor: marshall coleman
## 7901                                                                         6/10/2008 08:57 am (fblackmo) employee lost footing on a steep slope and fell and rolled into a fence striking head. The collision caused a laceration to his head. Supervisor: brian davis
## 7902                                                                               6/10/2008 09:07 am (fblackmo) employee tripped over the corner of a box that was sticking part way out from underneath a table. Employee bruised both knees. Supervisor: james budday
## 7903                               6/10/2008 09:19 am (fblackmo) employee was attempting to remove a bearing from a mower using a hammer and chisel. Employee was striking the chisel with the hammer when, a chip flew into his left forearm. Supervisor: william riggs
## 7904                                                                                                                                                  6/10/2008 09:29 am (fblackmo) employee was pulling on prop and pulled a muscle in chest area. Supervisor: dewhurst
## 7905            6/10/2008 09:59 am (fblackmo) employee was in closed travel lane inspecting asphalt when, she stood up, she was struck in the head (side of face) by a mirror from a pilot turck. The truck crossed the double yellow lines. Supervisor: johnny metcalfe
## 7906                                                                                                      6/10/2008 10:11 am (fblackmo) employee leaned on polished table surface when, he slipped striking mouth on desk breaking front tooth. Supervisor: s. H. Kinner
## 7907                                                                                               6/10/2008 10:23 am (fblackmo) employee was rotating boom to the right when, his left finger was caught between the basket and steel beam. Supervisor: michael mcneese
## 7908          6/10/2008 10:35 am (fblackmo) employee went to worksite to remove a bent track guide on an excavator. The bolts were so tight that he pat a 3' pipe on his pull bar, laid down on his back, scorched his feet against the track assembly for leverage, and
## 7909                                                      6/10/2008 10:55 am (fblackmo) employee was placing pieces of concrete into the back bucket of the backhoe and smashed right index finger between the piece of concrete and the bucket. Supervisor: greg vinson
## 7910          6/10/2008 11:07 am (fblackmo) employee was flagging traffic on nc 111/222 in wilson county for work being performed on culvert 131. Employee was wearing his safety glasses during flagging operation but had removed them to wipe dirt and sweat from his
## 7911         6/10/2008 11:19 am (fblackmo) employee was inspecting on the tyrrell county job in close proximity to woods and grassy areas. Employee did not find tick until the next morning of 05/07/2008, he felt it biting him on his right leg on the backside of hi
## 7912                                                                                                                                         6/10/2008 11:31 am (fblackmo) employee was working on guard rail when, rail hit his right leg. Supervisor: thomas singleton
## 7913          6/10/2008 12:48 pm (fblackmo) employee was stopped at a signal waiting for a green indication. A privately owned vehicle approaching from behind failed to stop, hitting sov in the rear. Employee felt pain in back and neck area. Supervisor: andy brown
## 7914         6/10/2008 12:58 pm (fblackmo) employee developed symptoms common with a tick bite. Employee sought medical treatment on 05/27/2008 (tick bite was not found). Employee often is in the field performing tasks in a wooded area. Employee has a rash on neck
## 7915                                                             6/10/2009 09:11 am (blgay) employee was attempting to remove brush and fallen tree from roadway, when he felt a stabbing pain in his lower back and couldn't move without pain. Supervisor: thomas hall
## 7916         6/10/2009 09:39 am (fblackmo) employee was in the passenger side of vehicle riding to a project with his supervisor, a vehicle backed out in front of the dot vehicle. Employee put his left arm on the dash bracing h himself which lead to injury. Employ
## 7917         6/10/2009 09:52 am (fblackmo) employee was in the process of removing broken hydraulic fitting under truck for repair, fitting broke, and wrench slipped ricocheting off the frame. Wrench hit employee in the mouth breaking both front teeth. Supervisor:
## 7918                                                                                                   6/10/2009 10:11 am (fblackmo) employee was conducting inspections in slope area when, he stepped in a hole causing injury to right ankle. Supervisor: j. D. Allen
## 7919                                                          6/10/2009 11:17 am (fblackmo) employee was climbing down ladder into the exhaust void on the m/v frisco. Employee slipped on last two steps causing injury to his right knee. Supervisor: marshall coleman
## 7920                                            6/11/2004 11:39 am (fblackmo) employee was using pavement breaker to break asphalt over drain hole on bridge deck when, he felt pain in his lower back. Jimmy marler was notified on 04/28/2004. Supervisor: j. L. Cheek
## 7921                                                                                                                                     6/11/2004 11:57 am (fblackmo) employee states while holding pipe over manhole he, felt pain in his back. Supervisor: randy pace
## 7922                                                                                                     6/11/2004 12:07 pm (fblackmo) employee states while removing a hand roller from bed of pickup truck the handle struck him on the nose. Supervisor: j. L. Rhodes
## 7923                                                                                                                                    6/11/2004 12:17 pm (fblackmo) employee states door on toilet stall fell striking employee on her ankle. Supervisor: doug elliott
## 7924                                                                                             6/11/2004 12:28 pm (fblackmo) employee states while flagging traffic he stepped back to reposition himself when, he felt pain in his back. Supervisor: bubba r. Johnson
## 7925                                                                                           6/11/2004 12:39 pm (fblackmo) employee states while walking from main deck he slipped and fell down a ladder causing the injury to his back. Supervisor: jerry w. Gaskill
## 7926                                                                                                                                  6/11/2004 12:49 pm (fblackmo) employee was pulling cab le on lcu when, he felt pain in his lower back. Supervisor: g. J. Vonsuskil
## 7927                                                    6/11/2009 07:58 am (blgay) employee was using jackhammer to remove broken concrete steps for repair. Employee said when he picked up jackhammer for use he felt pain in lower to midback. Supervisor: w. R. Wall
## 7928                                                            6/11/2009 08:45 am (fblackmo) employee states that during his concrete re-certification class he was injured while trying to lift concrete. He felt pain in his groin area. Supervisor: phillip gurganus
## 7929                                                                                                                   6/11/2010 01:59 pm (fblackmo) employee broke out into hives and welts while at work. The cause was stated as "unknown". Supervisor: mike jefferys
## 7930                                                                                                                         6/11/2010 02:11 pm (fblackmo) employee was spraying plant bed when he was bitten by a spider on top of his left foot. Supervisor: ted burns
## 7931                                                          6/11/2010 02:22 pm (fblackmo) employee was gpsing a stream when stepped over a stream he tripped and stumbled forward landing on his knees and arms jarring left shoulder. Supervisor: rachelle beauregard
## 7932                                                                                                    6/12/2006 02:31 pm (fblackmo) employee was going to unload the boom truck when, he mounted the truck he felt pain in his neck area. Supervisor: larry d. Scruggs
## 7933                                                                                                                                                 6/12/2006 02:42 pm (fblackmo) employees neck was strained during defensive tactics training. Supervisor: s. Watkins
## 7934                                                           6/12/2006 03:11 pm (fblackmo) employee was weed eating and came into contact with poison ivy. After several weeks, the initial rash became severe and required medical attention. Supervisor: doug martin
## 7935                                            6/12/2006 03:23 pm (fblackmo) employee was checking stick on grade side when he, stepped off the paver and landed in a hole falling, twisting his left ankle and foot, landing on right hand. Supervisor: randy mckinney
## 7936         6/12/2007 01:17 pm (speedin) employee was working on us220-bypass cutting under brush with a chainsaw thorns struck and lodges into his left hand and fingers. Mr. Medlin stated that he removed the thorns and his left index finger began to swell. Super
## 7937         6/12/2007 02:24 pm (speedin) employee was driving a state dump truck and the truck failed to break following a lower private vehicle and rear ended the private vehicle that vehicle was moving slowly as if the driver was looking for a house address. Su
## 7938                                                                                                        6/12/2007 03:09 pm (fblackmo) employee was bending to check motorcycle trailer when, he struck his head on top of the trailer door. Supervisor: g. F. Butler
## 7939                                                                                                          6/12/2007 04:14 pm (fblackmo) employee was repositioning tailgate to keep it from getting scratched when, he felt pain in his back. Supervisor: james bell
## 7940                                                                                                  6/12/2007 04:28 pm (fblackmo) employee struck his right elbow on beam when, the chain from hoist and trolley rolled off the overhead beam. Supervisor: danny lewis
## 7941                                                                                                                                      6/12/2007 05:05 pm (fblackmo) employee was working on bus brakes when, he felt pain in his lower back. Supervisor: danny lewis
## 7942                                  6/12/2007 12:31 pm (speedin) employee was filling the hydroseeder employee struck right wrist on the bottom of woven wire fence that was a 3. 5 foot from the ground, while attempting to crank the pump. Supervisor: keith blazer
## 7943                                                                           6/12/2008 11:28 am (fblackmo) employee was making repairs to guide rail. Employee was knocked down by backhoe boom. The backhoe proceeded to back over employee. Supervisor: travis mintz
## 7944                                                                      6/12/2009 03:09 pm (fblackmo) employee was working on paint guns on pre-line truck. Went to crank compressor and stepped on un-even pavement resulting in ankle injury. Supervisor: paul marak
## 7945         6/12/2009 03:19 pm (fblackmo) employee was conducting a road test, upon returning to the office, her customer was parking the vehicle, stopped in a parking space, and step on the gas. Vehicle hit the driver license office building. Employee states tha
## 7946         6/12/2009 09:15 am (blgay) employee was unloading files from trunk of his car, when a large number of fire ants climbed onto his shoe and sock. When employee got inside his office, the ants began to bite (sting) him. Employee had an allergic reaction.
## 7947                                                                                    6/13/2005 01:59 pm (slee) pov failed to stop at stop sign and hit sov on drivers side at rear door and truck bed area. Both were checked out for injuries and released same day.
## 7948                                                   6/13/2005 02:08 pm (fblackmo) employee hit boulder buster with his right hand to loosen and unscrew the boulder. Supervisor: w. D. Watkins give bills to geri white for review before going over to corvel review
## 7949                                                                                                                          6/13/2005 02:24 pm (fblackmo) employee was locking trailer top back in place when, the handle pinched his left hand. Supervisor: greg frye
## 7950                                                                                6/13/2005 02:50 pm (fblackmo) employee was stopped at stop sign when, he was struck in the driver side front fender left wheel area by another vehicle. Supervisor: ann lorscheider.
## 7951         6/13/2005 04:40 pm (fblackmo) employee was walking from the dmv to the secu across the street. She went out the front entrance and started out on the pavement. Employee fell at the end of the entrance to the dmv catching herself with her hands, scrapi
## 7952                                                                                                               6/13/2005 12:11 pm (fblackmo) employee was shoveling asphalt when, he fell in a hole causing the injury to his left ankle. Supervisor: patrick norman
## 7953                                                                       6/13/2005 12:24 pm (fblackmo) employee was climbing down ladder when, the ladder fell catching his right leg. Employee felt immediate pain in his right knee area. Supervisor: kevin d. Smith
## 7954                                                                                                                              6/13/2005 12:35 pm (fblackmo) employee stepped out of truck into a hole causing the injury to his right ankle. Supervisor: dale loflin
## 7955                                                                                                                             6/13/2007 08:54 am (fblackmo) employee had been grinding paint off truck when, he felt pain in his lower back. Supervisor: hosea blount
## 7956                      6/13/2007 09:10 am (fblackmo) employee was conducting a survey when, branch hit him in his right eye. Supervisor: cadmus capehart 8/15/2007 08:55 am (fblackmo) there is a duplicate of event numbers(ev2007042867) but only one claim number.
## 7957        6/13/2007 09:45 am (fblackmo) employee was helping equipment shop technician torque lug nuts on new lowboy trailer, while applying pressure torque slipped off of lug nut causing employee to fall on side of trailer cutting his right cheek. Supervisor: m
## 7958         6/13/2007 09:59 am (fblackmo) employee was directing dumping of asphalt from a dump truck into the hopper of the leeboy paver. Employees left hand was resting on the hopper. The leeboy operator raised hopper and the end of malons little finger got cau
## 7959                                                                                     6/14/2004 02:16 pm (fblackmo) employee states he reached for something to grab to keep from falling when, the injury occurred to his left ring finger. Supervisor: j. P. Taylor
## 7960                                                                                                                6/14/2004 02:27 pm (fblackmo) employee states while pulling on cart full of clothing she, felt pain in her right knee area. Supervisor: e. M. Farrow
## 7961                                                                                      6/14/2004 02:36 pm (fblackmo) employee was attempting to put up loose gravel sign when, the driver caught the edge of post striking him on the head. Supervisor: ronnie minton
## 7962                                                                                  6/14/2004 02:49 pm (fblackmo) employee states he was walking carrying tools when, he tripped over cat head causing the injury to multiple body parts. Supervisor: deul f. L mikeal
## 7963                                                                                                6/14/2004 03:11 pm (fblackmo) employee was helping to secure a load that had fell in the middle of road when, he felt pain in his right wrist. Supervisor: d. S. Lee
## 7964                                                                                                                  6/14/2004 03:41 pm (fblackmo) employee was filling in holes at bridge # 3 when, he came into contact with poison ivy. Supervisor: quindale bullard
## 7965                                                                                                6/14/2004 03:51 pm (fblackmo) employee was lifting and pushing boxes of drivers license manuals when, he felt pain in his left shoulder. Supervisor: r. E. Vandiford
## 7966                                                                                                                                      6/14/2004 04:07 pm (fblackmo) employee states while doing firearms training he cut his right hand. Supervisor: lt. Barry cross
## 7967                                                                                                6/14/2004 11:28 am (fblackmo) employee was working under a truck when, he hit his arm on a bracket causing the injury to his right forearm. Supervisor: david bowers
## 7968                                                                                                                                     6/14/2004 11:42 am (fblackmo) employee states while cutting trees he came into contact with poison ivy. Supervisor: m. B. Smith
## 7969                                                                                                                                                       6/14/2004 12:11 pm (fblackmo) employee states he was bitten by a tick on his left hand. Supervisor: a. R. Gay
## 7970                                                                                                                                  6/14/2004 12:35 pm (fblackmo) employee states he found a tick on his naval area while erecting road signs. Supervisor: r. T. Moore
## 7971                         6/14/2004 12:45 pm (fblackmo) employee was walking up a ditch embankment to cross when, he felt pain in his lower right leg. Supervisor: l. T. Williford 6/16/2004 10:45 am (sshort) concentra dictation notes: site of sprain/strain ankle
## 7972                                                         6/14/2006 09:27 am (fblackmo) employee was pulling limbs out of mowing pattern, she had found a couple of ticks on her clothes. Later she found a tick on the back of her head. Supervisor: larry lovingood
## 7973                                                                                                                                                                    6/14/2006 09:40 am (fblackmo) employee fainted. Temp 79/50 humidity 83%. Supervisor: aj crumpler
## 7974                                                                                                           6/15/2004 08:10 am (fblackmo) employee states he bent down to pick up monitor from off the floor when, he felt pain in his back. Supervisor: scott hidden
## 7975                                                                                                                                               6/15/2004 08:21 am (fblackmo) employee was picking up an axe head when, he cut his left hand. Supervisor: ken presson
## 7976                                                                                             6/15/2004 08:32 am (fblackmo)employee was removing boss from loader bucket, torch grease in loader pin, burning employee on left side of face. Supervisor: jimmy ammons
## 7977                                                                                     6/15/2004 08:54 am (fblackmo) employee was moving file cabinet with the assistance from another employee when, he pinched his 3rd finger on left hand. Supervisor: s. J. Gupton
## 7978                  6/15/2004 10:20 am (fblackmo) employee states he was diagnosed with environmental asthmatic bronchitis and herpes dendritic keratitis. Supervisor: not stated keyed information from form 18. 11/6/2006 01:38 pm (fblackmo) claim closed. Clinched
## 7979            6/15/2005 01:39 pm (blgay) employee was crossing hatteras inlet in work boat, outboard hit swell, wind caught buoy. Buoy went into water pulling attached danforth anchor into employee, causing a laceration to the right leg. Supervisor: h. F. O'neal
## 7980                                                          6/15/2005 03:07 pm (blgay) employee was removing debris from the bridge span. A car drove past employee. The passengers in the car threw an object hitting him in the back. Supervisor: franklin s. Granda
## 7981                                                           6/15/2005 10:23 am (blgay) employee was working in an infested tick area. Tick bite - tick was embedded on right leg at knee. Employee was using 100% deet at time of bite. Supervisor: john l. Mcdonald.
## 7982                                                                                                                                      6/15/2005 11:17 am (blgay) employee became sick while inhaling foul stench coming from air ducts. Supervisor: marlene fletcher
## 7983                                                                                      6/15/2005 11:42 am (blgay) employee became sick while inhaling foul stench coming from air ducts. Employee was at her cubicle when dizziness occurred. Supervisor: jilda mcgee
## 7984                                                                                                                                      6/15/2005 12:02 pm (blgay) employee became sick while inhaling foul stench coming from air ducts. Supervisor: marlene fletcher
## 7985                                                                                                                                                                    6/15/2005 12:27 pm (blgay) employee felt chest pains while working. Supervisor: henry sturdivant
## 7986                                                           6/15/2006 03:05 pm (fblackmo) employee was cutting a bundle of posts to get supplies when, the last ban was cut the first stack fell forward hitting the top of employees foot. Supervisor: jason leonard
## 7987                                                                                                                                    6/15/2006 03:16 pm (fblackmo) employees left thumb was smashed between tailgate and latch on rear fender. Supervisor: henry rich
## 7988        6/15/2006 03:29 pm (fblackmo) employee was helping make repairs to a sign post. He was standing about three feet off the ground on a buck scaffold and was using a come along when, the handle slipped and he lost his balance, falling backwards on his hea
## 7989         6/15/2006 03:40 pm (fblackmo) employee stated that the paint crew was in the process of loading 30 gallon paint barrels on the supply truck for the days painting activities. Employee was assisting another employee with straightening the barrel when, h
## 7990                         6/15/2007 02:36 pm (speedin) employee was doing a road test customer started to pull out in front of car. Exam brown told her to stop when she did she put vehicle in reverse and backed into vehicle behind them. Supervisor: ginger silby
## 7991                                                                                                                       6/15/2007 03:14 pm (speedin) employee was driving motor grader when pov hit back of motor grader causing neck strain. Supervisor: l. M. Burke
## 7992           6/15/2007 03:40 pm (speedin) employee was mounting tire on back of thermolay truck. He spent the tire on the hub to align studs with wheel when the wheel caught the stud coming to a sudden stop causing him to strain his back. Supervisor: r. E. Goins
## 7993                                                         6/15/2010 11:05 am (fblackmo) employee was climbing up stairs when he fell forward. Employee felt pain in his right hand and elbow, lower back and shoulders, neck, and knees. Supervisor: betsy strickland
## 7994                                                                                             6/15/2010 11:23 am (fblackmo) employee was sitting at his desk when a fluorescent bulb fell from fixture and struck employee on top of his head. Supervisor: leon gross
## 7995                                                                                                          6/15/2010 11:36 am (fblackmo) employee was removing a tarp from dump truck when the spring broke causing cut to his right hand. Supervisor: russell ramsey
## 7996                                                                                                    6/15/2010 11:48 am (fblackmo) employee was underneath truck during pm greasing chassis when he was bitten on his right ear by insect. Supervisor: thomas collins
## 7997                                                                                                                                                            6/15/2011 02:27 pm (fblackmo) employee, found a tick on the center of his back. Supervisor: s. H. Kinner
## 7998          6/15/2011 12:28 pm (fblackmo) employee was operating a tandem dump truck on an operation to repair a low radius. While waiting to dump, employee noticed some material on the edge of the bed board. He climbed on the side of the bed and pushed material
## 7999                                                                                             6/16/2006 08:15 am (fblackmo) employee was walking to the office along a sidewalk and while walking down steps, she rolled her ankle and fell. Supervisor: r. D. Tuttle
## 8000                                                                                                                                             6/16/2006 08:29 am (fblackmo) employee was maintaining the yard when, he cut into poison oak. Supervisor: barry kizziah
## 8001                                                                             6/16/2008 02:41 pm (fblackmo) employee was placing strap on tarp of dump truck when, hole on tarp broke causing him to fall backwards injuring his lower back. Supervisor: f. F. Miller
## 8002                                                            6/16/2008 02:52 pm (fblackmo) employee was helping another employee cut a 4x8 piece of plywood when, his side slipped, he tired to catch it, and felt pain in his left shoulder. Supervisor: paul pagani
## 8003                                                                                                                     6/16/2008 03:02 pm (fblackmo) employee was stepping out of van onto the edge of the pavement, twisting his left ankle. Supervisor: carlis smith
## 8004                                                                6/16/2008 03:11 pm (fblackmo) employee was stepping off of curb onto pavement when, his heel got caught in a hole causing him to lose his balance and twist his right knee. Supervisor: carlis smith
## 8005                                                                         6/16/2008 03:23 pm (fblackmo) employee was weed eating when, the string picked up a rock, the rock hit the guard rail, bounced off rail striking employee on tooth. Supervisor: kenny hicks
## 8006                                                                                                       6/16/2008 03:54 pm (fblackmo) employee was getting gps locations when, he came into contact with poison ivy while standing in ditch. Supervisor: carlis smith
## 8007        6/16/2008 11:41 am (blgay) employee was driving home from work when he felt a sting on the left part of his lower back. When he got home, he was preparing to shower when he found that a tick had fastened itself to his lower back. Supervisor: c. R. Whit
## 8008                6/16/2008 11:51 am (blgay) employee was standing on footer pulling on suction hose along with two other people. Employee lost his footing and fell two feet to ground inside of footer, causing him to twist his left ankle. Supervisor: mark newton
## 8009         6/16/2008 12:04 pm (blgay) employee was in the process of cutting and chipping limbs from the right of way, when employee came in contact with poison oak. Employee was wearing safety glasses, gloves and pre-treatment of technu, but outbreak still occu
## 8010          6/16/2008 12:18 pm (blgay) employee was working with the division maintenance mechanic on a project for road oil facility. Employee picked up paneling that had just been cut to put it into place around the door opening. While employee was putting the
## 8011         6/16/2008 12:30 pm (blgay) employee was getting out of bed of dump truck, when he stepped on rail on the side of the truck and his foot slipped, causing him to fall to the asphalt road. Employee was taken to the doctor, where he was diagnosed with a f
## 8012          6/16/2008 12:49 pm (fblackmo) employee had returned to work from having hip surgery on 1/07/08. Employee states that she could not pull the big chair from side to side, therefore, she chose to stand up while doing her duties. She states that standing
## 8013         6/16/2010 09:00 am (fblackmo) employee was using aquatic gps aviation navigation with antenna attached to side of boat when the boat flexed. Employee injured his right elbow when he fell out the seat while trying to retrieve the antenna. Supervisor: l
## 8014                                                    6/16/2010 09:22 am (fblackmo) employee was driving a stand up fork lift when he took his hand off the controls. The lift veered toward a wall causing employee to scrape his left arm. Supervisor: mike jefferys
## 8015                                  6/16/2010 10:16 am (fblackmo) employee was checking a problem with a cross line pipe when his feet got tangled in vines causing him to slip and fall. Employee felt pain in his left shoulder and arm. Supervisor: johnny ransdell
## 8016                                                                                                                       6/17/2004 03:52 pm (fblackmo) employee states while pulling vegetation out of storm drain he, felt pain in his back. Supervisor: w. T. Teague
## 8017                                                                                                            6/17/2004 04:04 pm (fblackmo) employee states while cutting right of way when, he fell causing the injury to his right shoulder. Supervisor: jerry green
## 8018                                                                                        6/17/2004 04:12 pm (fblackmo) employee states while picking up sign to make repairs when, debris particles fell from the sign into his right eye. Supervisor: g. W. Williams
## 8019                                                                                                                        6/17/2004 04:23 pm (fblackmo) employee was weed eating on grounds when, he came into contact with poison ivy. Supervisor: curtis r. Barnhill
## 8020         6/17/2009 08:05 am (blgay) employee was conducting a road test for drivers license. Customer pulled over to the right and hit a drain ditch, jumped the curb, and hit the curb so hard it busted the tire. Road conditions were dry, over cast day. There w
## 8021                                                                    6/17/2009 08:18 am (blgay) employee was stopped waiting on another vehicle to turn, when the truck employee was driving was rear ending, injuring his right shoulder. Supervisor: james dietrich
## 8022                                                                                                           6/17/2009 08:35 am (fblackmo) employee was pulling on asphalt lute while working with asphalt. He felt pain in his groin area. Supervisor: b. N. Braswell
## 8023                                                           6/17/2009 08:47 am (fblackmo) employee states that during rescue boat drill, cradle release handle pinned his pinky finger between cradle and strap release causing injury. Supervisor: h. C. Scarborough
## 8024                                                          6/17/2010 03:09 pm (fblackmo) employee was trying to remove the secondary road numbers off a wood post with two hammers when, a piece of the hammer broke striking her in the chest. Supervisor: jim evans
## 8025                                                                                                                 6/17/2010 03:37 pm (fblackmo) employee was surveying in wooded area when, he was bitten by a snake on his left forearm. Supervisor: r. L. Ketter jr
## 8026                                                                                                                                  6/18/2004 01:08 pm (fblackmo) employee states while climbing up onto truck bed he, struck his left leg. Supervisor: howard elliott
## 8027                                                                                                                                        6/18/2004 01:17 pm (fblackmo) employee was stepping off trailer when, she felt pain in right ankle. Supervisor: j. S. Roller
## 8028                                                                                                                               6/18/2004 01:31 pm (fblackmo) employee was using air drill when, air line came off striking him on the head. Supervisor: j. D. Fuller
## 8029                                                                                                         6/18/2004 07:39 am (fblackmo) employee was putting a piece of metal in asphalt machine when, he dropped the metal bar on his fingers. Supervisor: d. Holton
## 8030                                                                                                     6/18/2004 08:26 am (fblackmo) employee was stepping off truck when, his foot slipped causing him to fall and injury his lower back. Supervisor: jerome locklear
## 8031                                                                                                            6/18/2004 08:43 am (fblackmo) employee states while stepping down from rubber tire excavator he, felt pain in his right ankle. Supervisor: j. Ronald lee
## 8032                                                                                                                    6/18/2004 08:55 am (fblackmo) employee states while removing tire from tractor he came into contact with poison ivy. Supervisor: michael parsons
## 8033                                                                                                                  6/18/2008 08:06 am (blgay) employee was pulling himself up on motor grader, when something popped in his left shoulder. Supervisor: b. T. Williams
## 8034                                                                                                              6/18/2008 08:18 am (blgay) employee was weed eating and pulling weeds in plant beds, when he came in contact with poison ivy. Supervisor: ted r. Burns
## 8035         6/18/2008 08:34 am (blgay) employee was trying to remove shovel from side of dump truck bed that was sticking out from bed. Shovel handle had shifted and was lodged tightly between bars. When trying to remove shovel, the handle came loose abruptly and
## 8036         6/18/2008 08:51 am (blgay) employee was servicing tandem which was on inground vehicle lift. While checking for leaks on engine, employee stepped in hole where telescoping jacks are housed, resulting in employee falling and hitting head on concrete fl
## 8037                                                                        6/18/2008 08:58 am (fblackmo) employee was tarping load on dump turck, while climbing down from the truck she felt something pull in left middle area of her back. Supervisor: dale register
## 8038                                                                                                       6/18/2008 09:59 am (blgay) employee was getting out of crew cam pick up in parking lot on level paved surface and right knee gave out. Supervisor: wayne king
## 8039         6/18/2009 10:15 am (blgay) employee was driving dump truck, when he was bitten on the left side of his upper back by unknown insect or spider. Employee began feeling sick and dizzy. Inmate found employee slumped over the steering wheel unresponsive. 9
## 8040             6/19/2006 12:07 pm (fblackmo) employee stated while working craig road he was pushing on the tailgate of tandem dump truck to get mud from between tailgate and bed. The mud fell out, tailgate closed on his right hand. Supervisor: bill murrell 6/30
## 8041         6/19/2006 12:30 pm (fblackmo) employee was driving west on castle hayne road and pulled into the left turn lane when, private vehicle pulled out of a crown service station striking his vehicle on passenger side door area. Employees head hit window, an
## 8042                                                                                                                     6/19/2008 08:02 am (blgay) employee was lifting a tamp off the pickup truck, when he felt a pull in his groin area. Supervisor: kevin hazelwood
## 8043                                                                                                                    6/19/2008 08:24 am (blgay) employee was clearing storm debris, when employee came in contact with poison oak or ivy. Supervisor: charles f. Vick
## 8044                                                                                                          6/19/2008 08:37 am (blgay) employee was fixing to get pipe and move it by pushing it up the bank, when he twisted his right knee. Supervisor: hugh trexler
## 8045                                                                                               6/19/2008 08:51 am (blgay) employee was stepping up on rear of trailer, when his right knee popped and then knee would not stand any weight. Supervisor: richard love
## 8046                                                                                    6/19/2009 08:05 am (fblackmo) employee was walking through tall grass and stepped into fire ant hill. Employee was bitten on left ankle (highly allergic). Supervisor: lee stone
## 8047          6/19/2009 09:07 am (fblackmo) employee was cutting down a small tree on a slope at the nbl nash rest area. Employee was on the downhill side of the tree kneeling on his right knee in front of the tree. After the cut was complete, he took his hand off
## 8048                                                                                                                                   6/19/2009 09:46 am (fblackmo) employee was cutting plastic on m/v hatteras when, he cut his left thumb. Supervisor: thoams bowser
## 8049                                                                 6/2/2005 02:58 pm (blgay) employee was struck in the right eye with a section of briar line, when survey crew was cutting line with bush axes for possible clearing limits. Supervisor: allen mccoy
## 8050         6/2/2010 10:55 am (fblackmo) employee was transporting pain to the deck of the mv carterette using a hand cart. The gangway was narrow sot hat only the pain had to be transported by hand. Can hit gangway and splattered into his left eye. Supervisor: t
## 8051         6/2/2011 04:27 pm (barnes) employee was removing battery cable from a truck. As he stood on a step stool pulling the cable, he stepped onto the floor backing up causing him to trip over a floor jack. Employee landed on the floor injuring his left shou
## 8052           6/2/2011 10:53 am (barnes) employee was exiting his patrol vehicle at the ashville district office when his right knee popped causing him pain. Employee states that he has pain whenever he attempts to stand and walk. Employee injured right knee. Sup
## 8053                            6/2/2011 11:59 am (barnes) employee was raking dirt and gravel on a driveway and felt his back give way. Employee stated that he felt something in lower back slip. Employee pulled a muscle in his lower back. Supervisor: sarah foster
## 8054                                                      6/2/2011 12:23 pm (barnes) employee was moving an equipment blade and his left index finger was smashed between the blade and the building. Employee injured his left index finger. Supervisor: paul hunsucker
## 8055         6/20/2005 02:27 pm (fblackmo) employee was weed-eating behind a building on the maintenance yard. She stepped on a small pile of aggregate where she was working, which hid a 1ft. Square board that had nails in it. One of the nails went through her sho
## 8056         6/20/2005 02:46 pm (fblackmo) employee was getting in truck to go back to office for quitting time. Driver of tuck thought he was in, but employees leg was still outside of the truck. Employees left leg/knee was dragged on gravel and part of the road.
## 8057                                                                                                                                        6/20/2005 11:08 am (fblackmo) employee was removing screed from paver when, he felt pain in his back. Supervisor: j. R. Cook
## 8058                                                                                                                                                  6/20/2005 11:19 am (fblackmo) employees right hand was caught in door while moving signs. Supervisor: m. E. Greene
## 8059                                                                                                           6/20/2005 11:31 am (fblackmo) employee was using a crank to raise mover when, the handle spun around striking his left hand. Supervisor: stonewall mathis
## 8060                                                                                                                                   6/20/2005 11:41 am (fblackmo) employee was exiting van when, another employee closed his fingers in door. Supervisor: hope mclamb
## 8061                                                                   6/20/2005 12:16 pm (fblackmo) survey crew was cutting line with bush axes for possible clearing limits. Employee was struck in the eye with a section of remaining briar. Supervisor: allen mccoy
## 8062         6/20/2005 12:29 pm (fblackmo) employee was assisting the harbinger bridge yard by flagging traffic. Employee told a private motorist that she was hot and having trouble breathing. The motorist brought her to the maple maintenance yard. The rescue squa
## 8063                                                                                                                                       6/20/2005 12:40 pm (fblackmo) employee was cutting trees when, he came into contact with poison ivy. Supervisor: s. G. Dillon
## 8064                                  6/20/2007 04:22 pm (fblackmo) employee was traveling to job site on nc 210 when a private own vehicle crossed center line striking state vehicle in front side fender. Employee cut his head and left arm. Supervisor: r. G. Crews
## 8065         6/20/2007 04:36 pm (fblackmo) employee was using jackhammer with asphalt blade breaking up asphalt, employee was attempting to relocate position of the blade when he accidentally placed jackhammer on right steel toe shoe. The jackhammer bounced off sh
## 8066                              6/20/2008 08:42 am (fblackmo) employee was sitting on a stool at harnett tractor company waiting for parts when, he passed out. Employee fell off the stool and hit his head (right hand) causing laceration. Supervisor: ricky rogers
## 8067                                                                                                                       6/20/2008 08:54 am (fblackmo) employee was cleaning trees and brush from job site when, a tick was found on her back. Supervisor: mike ennett
## 8068          6/20/2008 10:33 am (fblackmo) employee has been operating the excavator for three weeks maneuvering the joystick controls. This morning he awoke to a numb feeling in his right hand with pain running from his pointer finger down through his right wris
## 8069                                                                                                                                                    6/21/2004 08:40 am (fblackmo) repetitive motion of typing and sitting. Supervisor: not stated keyed from form 18
## 8070           6/21/2004 08:59 am (fblackmo) employee states she felt pain in her back while going up stairs. Employee told thomas hackett of the problem on 6/1/2004. At approximately 3:15 pm she ask if she could leave early but did not mention any injury about he
## 8071                                                                                                                   6/21/2005 08:48 am (fblackmo) employee was repairing potholes when he was bitten by a spider on his lower right leg. Supervisor: tasha n. Johnson
## 8072                                                                                                                               6/21/2007 02:02 pm (fblackmo) employee came into contact with poison ivy while removing a tree out of road. Supervisor: shelton james
## 8073                                                                                                                                6/21/2007 10:46 am (fblackmo) employee was sitting at her desk when, she was stung by a bee on her right leg. Supervisor: judy riley
## 8074                                                                                                                                 6/21/2007 11:27 am (fblackmo) employee was bitten by a spider while sitting at her desk on left elbow. Supervisor: melanie weisbeck
## 8075                                                                                                 6/21/2007 12:06 pm (fblackmo) employee slipped on mud in trench on roadway shoulder on us 264 off ramp causing injury to his left arm. Supervisor: boyd tharrington
## 8076                                                                                               6/22/2004 08:57 am (fblackmo) employee states he was trying to shovel his way out of snow when, he felt numbness in his left arm shoulder area. Supervisor: m. R. Cox
## 8077                                                                                                                  6/22/2004 09:11 am (fblackmo) employee state while tightening bolts on moldboard he mashed his center finger on right hand. Supervisor: d. W. Ashe
## 8078         6/22/2005 01:07 pm (fblackmo) a female traveler went to the sundays journal box to get a paper. When she opened the box she saw a wasp nest in the left corner. The wasp scared her and the door slammed shut without getting her paper. Employee put. 50 c
## 8079                                                      6/22/2005 01:23 pm (fblackmo) employee had stopped at restaurant/convenient mart for lunch when, he tripped and fell as he began to walk up the handicap incline at the store entrance. Supervisor: joe parker
## 8080                                                                                                                                6/22/2005 12:55 pm (fblackmo) employee was injured by entering vehicle, his head hit the top of the door frame. Supervisor: j. Hasty
## 8081                                                                                                              6/22/2006 10:06 am (fblackmo) employee stepped off a rug near a door onto a wet floor. She slipped, knee buckled, she fell. Supervisor: c. S. Mcdonald
## 8082                                           6/22/2006 10:18 am (fblackmo) employee was driving dump truck down road when, he ran off onto the shoulder and turned truck over. Employee felt pain in his upper back, left shoulder, and ankle. Supervisor: f. I. Davis
## 8083                                                                                                                     6/22/2006 10:31 am (fblackmo) employee was hammering in the blacksmith shop when, he struck his wrist with the hammer. Supervisor: h. E. Worley
## 8084                                                                   6/22/2006 10:41 am (fblackmo) employee was walking to truck when, he slipped on wet work area. Employee felt pain on the face above right eye, right elbow, & arm. Supervisor: r. Cadmus capehart
## 8085                                                                                                                                                      6/22/2006 10:57 am (fblackmo) employee was pulling weeds and had an allergic reaction. Supervisor: steve blake
## 8086                             6/22/2006 11:06 am (fblackmo) employee was on back of "tool" truck and was reaching for sign stand when, he rubbed hand down the side of the rack made of 2 x 4 splinter went under the nail on his right hand. Supervisor: dwight eudy
## 8087                                                                                                6/22/2006 11:18 am (fblackmo) employee was un-packing the new paint spray when, one of the panels fell over striking him on the right leg. Supervisor: jerry bagwell
## 8088                                                                                                    6/22/2006 11:32 am (fblackmo) employee was helping another employee lift a tamp onto back of crewcab when, he felt pain in his left arm. Supervisor: t. L. Ingle
## 8089                                        6/22/2006 11:41 am (fblackmo) employee was operating a chainsaw to clear a tree out of roadway. Another individual cut a limb of the tree and it struck employee in the head causing laceration. Supervisor: charles f. Vick
## 8090                                                                                                                                                   6/22/2007 03:22 pm (speedin) employee was operating tractor. He was plowing & rotovating. Supervisor: clyde sneed
## 8091                                                                             6/22/2007 03:57 pm (speedin) employee said, while he was hanging up a sign, that the sign holder fell down and cut his right hand between his thumb and finger. Supervisor: marty swain
## 8092        6/22/2007 11:39 am (speedin) employee stated, " she noticed tingling sensation and occasional numbness in her fingers at work and after work. Examiner walton reported this incident on 5/24/2007 at approx. 4:50 p. M. "examiner walton also stated that sh
## 8093                                                             6/22/2010 02:21 pm (fblackmo) employee caught his left hand in between the tailgate and chain while shoveling asphalt causing injury to his thumb. Supervisor: chad bandy 6/22/2010 02:30 pm (fblackmo)
## 8094                                                                                                                 6/22/2010 10:08 am (fblackmo) employee was cutting trees when he came into contact with poison ivy on multiple body parts. Supervisor: darrell dean
## 8095                                                                                                      6/22/2010 10:22 am (fblackmo) employee was working on interstate when he came into contact with poison ivy on multiple body parts. Supervisor: loretta welborn
## 8096                                                                                  6/22/2010 10:40 am (fblackmo) employee was helping another employee hang a sign when he lost his footing. Employee fell striking his head on the pavement. Supervisor: p. L. Eaker
## 8097                                                                                             6/22/2010 10:53 am (fblackmo) employee was parking motor grader in grassy area while climbing down he stepped in a hole turning his right ankle. Supervisor: tim harris
## 8098                                                                                                            6/22/2010 11:05 am (fblackmo) employee was cutting trees when he came into contact with poison ivy on multiple body parts. Supervisor: darrell hildebran
## 8099                                                                                                                 6/22/2010 11:26 am (fblackmo) employee was working with chainsaw when, he came into contact with poison ivy on multiple body parts. Loretta welborn
## 8100                                                                                                                                          6/22/2010 11:36 am (fblackmo) employee injured his back while trying to install a driveway pipe. Supervisor: warren brooks
## 8101                                                                                            6/22/2010 11:52 am (fblackmo) employee was raking asphalt when, he stepped back off the shoulder falling into the mouth of a pipe. Employee felt pain in his right ankle
## 8102                                                                                                                                   6/22/2010 12:03 pm (fblackmo) employee found a tick on his left inner thigh while working on state road. Supervisor: b. G. Jordan
## 8103                                                                                                                                    6/22/2010 12:17 pm (fblackmo) employee was working in ditch when foreign matter got into his left eye. Supervisor: james lambert
## 8104                                                                                      6/22/2011 01:03 pm (barnes) employee was climbing off the asphalt roller. As he bent down to pick up a rake, he felt a sharp pain in his lower back. Supervisor: t. A caldwell
## 8105         6/22/2011 03:09 pm (barnes) employee was traveling with windows open approaching I-85 overpass, when he felt a sting under his right eye (bottom lid). He noticed swelling of the bottom eye lid and became concerned due to bee allergy. The doctor confir
## 8106                                                                                                                                     6/22/2011 03:38 pm (barnes) employee found two ticks on the right and left side of his lower back. Supervisor: nanette fogleman
## 8107                                                                       6/22/2011 04:42 pm (barnes) employee was preparing to lift a five gallon bucket of water for the parts washer, and felt a pop and sharp pain in his right shoulder. Supervisor: e. D quintana
## 8108          6/22/2011 10:03 am (barnes) employee was repairing a bridge rail. He reported two ticks on him on 5-18-11 and recorded it in the log book. He went to an urgent care facility on 5-31-11. On 6-1-11 he went to his family doctor, who sent him over to the
## 8109                                                            6/22/2011 11:00 am (barnes) employee was fueling equipment on a trailer. He slipped and fell backwards resulting in him having a broken wrist. Employee injured his left wrist. Supervisor: k. H johnson
## 8110          6/22/2011 11:59 am (barnes) employee was stepping off the ladder located on the side of his dump truck. The tread of his boot got caught on the last step causing him to fall. Employee used his right arm trying to break the fall, and injured his right
## 8111                                               6/22/2011 12:34 pm (barnes) employee was throwing debris on back of the truck. He hit his elbow on the tailgate of the truck causing it to swell during the day. Employee injured left elbow. Supervisor: milton tapp
## 8112                                                                                                                                 6/23/2004 01:16 pm (fblackmo) employee states a truck crossed into work zone striking the dump truck. Supervisor: james e. Burleson
## 8113                                                                                                                       6/23/2004 02:55 pm (fblackmo) employee states while putting up fence he, came into contact with poison ivy. Supervisor: bobby j. Berryhill jr
## 8114                                                                        6/23/2004 03:04 pm (fblackmo) employee was watching the contractor crew repair guardrail when, foreman backed the truck up and struck employee on right knee area. Supervisor: w. R. Hammond
## 8115                                                                                                 6/23/2004 03:18 pm (fblackmo) employee states while inspecting paving operation he stepped in a hole causing the injury to his right knee. Supervisor: c. R. Styles
## 8116                                                                                                                      6/23/2004 11:43 am (fblackmo) employee states he was reaching and pulling on sign when he felt pain in his stomach area. Supervisor: d. J. Guy
## 8117                                                                                                                                          6/23/2004 12:40 pm (fblackmo) employee states he slipped on wet hill side while walking to ferry. Supervisor: s. H. Kinner
## 8118        6/23/2005 11:32 am (fblackmo) employee was at the cat walk of the thermolay removing some equipment in order to do a job. The driver, not knowing anyone was in the position started backing the tuck and bump the employee. The driver of the ruck had a sp
## 8119                6/23/2008 08:10 am (blgay) employee was climbing steep banks on 06/12/06 all day. Employee stated that left foot began to hurt that night. Came to work on 06/13/08 and stated that left foot is swollen and hurting. Supervisor: tommy g. Culberson
## 8120                                                                                                        6/23/2008 08:51 am (blgay) employee was working in tall grass. When he got home he found a tick on the left side of his waistline. Supervisor: michael burke
## 8121         6/23/2008 09:04 am (blgay) employee was picking up a frame and grate by hand to load into a bucket on the backhoe. Employees end slipped from his hands and caught the ends of his fingers on his right hand. Crushing his middle, ring and index fingers o
## 8122              6/23/2008 09:20 am (blgay) employee was working on an asphalt patch crew, when a tick was found behind her right ear and was removed. Also, in the same day, employee came into contact with poison ivy on her right arm. Supervisor: nanette fogleman
## 8123                                                                                                    6/23/2009 05:44 pm (fblackmo) employee was using lathe to make a seal driver tool when, metal shavings hit his right hand center finger. Supervisor: albert vann
## 8124         6/23/2009 10:16 am (blgay) employee was getting out of his tandem truck backwards and holding on to the grab bars. When his right foot touched the ground, his right knee "kicked back" and he felt pain in his knee. His left foot was still on the bottom
## 8125                                                6/23/2009 10:33 am (blgay) employee was resetting a mail box that was taken down due to ditching operations. Employees hand slipped off metal post, cut left palm on sharp piece of metal. Supervisor: j. F. Ruppard
## 8126                                                                                6/23/2009 10:46 am (blgay) employee was leaning over to put in safety pin, when he raised up caught corner of arrow board, cutting the top of his head. Supervisor: nanette fogleman
## 8127                                                                                     6/23/2009 11:01 am (blgay) employee was getting out of dump truck, when he stepped out, he stepped on a piece of rip rap and twisted his right ankle. Supervisor: f. E. Roberts
## 8128          6/23/2010 02:29 pm (fblackmo) employee gout out of the squad truck to get some water from the water cooler on the back. Employee was getting water out of the cooler when the truck started rolling backwards pinning him against the vibratory roller and
## 8129                                                                                                       6/23/2010 02:46 pm (fblackmo) employee was dismounting from escalator when his right foot slipped causing him to twist his right knee. Supervisor: ricky ball
## 8130                                                                                                                6/23/2010 09:38 am (fblackmo) employee was climbing off mower when, he slipped and fell on weeds causing pain to left knee. Supervisor: harvey wyatt
## 8131                                                                                                  6/23/2010 09:50 am (fblackmo) employee was rigging a chain when he got bump with a track hoe bucket causing injury to his right forearm. Supervisor: brett frazier
## 8132         6/23/2010 10:07 am (fblackmo) employee was driving the bottom section of the post, the post driver was raised too high causing post to come out of the cylinder, the top of the post struck him in the head causing a laceration to his scalp area. Supervi
## 8133                                                                                  6/23/2010 11:47 am (fblackmo) employee was on the yard getting ready to begin work when he put his gloves on he was bitten by insect on his left hand. Supervisor: darrell wilkins
## 8134                                                                        6/23/2011 03:18 pm (barnes) employee was trying to remove string from rear axle with leatherman with knife open. When string broke, knife cut right lower abdomen. Supervisor: michael burke
## 8135         6/23/2011 03:52 pm (barnes) employee walked into a piece of metal that was sticking out the back of the truck. Employee cut his left forearm. ( employee was originally sent to chatham primary, but they instructed him to go to chatham hospital-emergenc
## 8136                                                                                       6/23/2011 04:49 pm (barnes) employee states that he was going up a hill to perform a fire truck road test and fell. Employee injured his left knee. Supervisor: phyllis young
## 8137                                                    6/23/2011 10:23 am (barnes) employee was surveying on top of a cut section of roadway. Once he finished, he noticed that he had broken out on his arms, legs, neck, and right eye. Supervisor: w. Trent anderson
## 8138          6/23/2011 10:45 am (barnes) employee was walking down an embankment and slid on wet grass. The resulting shock from the sudden stop at the bottom of the embankment injured his back. He maintained footing without falling during the injury. Employee in
## 8139         6/23/2011 11:42 am (barnes) employee stated that he drank a couple of energy drinks right before starting at his job site. He started feeling sick at his first break. Employee complained of being light headed, dizzy, and having chest pain. Employee st
## 8140           6/23/2011 12:18 pm (barnes) employee was using a pick to remove asphalt from the truck bed, the pick hit metal bed of the truck and struck the employee on top of the head. Employee sustained laceration of scalp on top of his head. Supervisor: robert
## 8141              6/23/2011 12:37 pm (barnes) employee was going to do a pre trip inspection. As he exited his vehicle, his left thumb slipped into an uncovered hole in the side of drivers seat, pulling his thumb unnaturally (rearward). Supervisor: ann lorscheider
## 8142                                                                                                          6/24/2004 10:54 am (fblackmo) employee states he was kicking the tailgate on asphalt truck when, he felt pain in his right ankle. Supervisor: jimmie evans
## 8143                                                                                                       6/24/2004 11:04 am (fblackmo) employee was working on roller using pry bar when, tool slipped causing the injury to his left hand. Supervisor: russell ramsey
## 8144                                                                                                    6/24/2004 11:20 am (fblackmo) employee states while exiting truck at job site he, slipped and fell causing the injury to his left hand. Supervisor: m. W. Currie
## 8145                                                                                                  6/24/2005 09:43 am (fblackmo) employee was operating a state vehicle when, the vehicle was struck from behind while stopped at light. Supervisor: michael ashbrook
## 8146                                                                         6/24/2005 10:13 am (fblackmo) employee was heading to I-40 to check on a sign when he got out of the vehicle he felt something bite him on the back of the neck. Supervisor: roderick wyatt
## 8147                                                             6/24/2005 10:24 am (fblackmo) employee was cutting line in woods when, he was bitten by a tick on his left ankle. Employee experienced skin discoloration around same ankle. Supervisor: jason peterson
## 8148                                                                                                                                             6/24/2005 10:37 am (fblackmo) employee was sitting at her desk when, she was bitten by an insect. Supervisor: m. Harris
## 8149                                  6/24/2005 10:49 am (fblackmo) employee was pulling old hurricane from file boxes to search for requested information. Employee stared to exit tt building when, she slipped and fell down concrete steps. Supervisor: lin reynolds
## 8150                                                                                                                         6/24/2005 11:04 am (fblackmo) employee was cutting line for bench mark when, he came into contact with poison ivy. Supervisor: paul vorwerk
## 8151                                                                          6/24/2005 11:29 am (fblackmo) employee was using a level in the woods when, he moved to another section he slipped on the mud causing the injury to his right knee. Supervisor: chad kimes
## 8152                                                                                                                                                        6/24/2005 11:51 am (fblackmo) employee was cutting matting when, he cut his left arm. Supervisor: sam wilson
## 8153                                                                                                                          6/24/2005 12:01 pm (fblackmo) employee states he was bitten by a tick while working on bridge replacement site. Supervisor: elizabeth husk
## 8154                                                                                                                                        6/24/2005 12:34 pm (fblackmo) employee states he was bitten by a tick while delineating wetland. Supervisor: chris rivenbark
## 8155                                                                                                   6/24/2008 10:04 am (fblackmo) employee was keying data into the computer while answering telephone calls when, she felt pain in her neck. Supervisor: gwen spivey
## 8156          6/24/2008 10:20 am (fblackmo) employee was laying on creeper, had right foot on drive shaft and left foot on a wrench to push to break loose a hydraulic line. His hand was holding onto the equipment to keep the creeper form rolling when, he felt pain
## 8157         6/24/2008 10:33 am (fblackmo) employee stopped asphalt distributor at fuel island and exited vehicle to re-fuel. As employee stepped onto raised island, his left knee gave away resulting in his fall. Supervisor: t. A. Roberson 7/14/2008 02:43 pm (lvau
## 8158                                                                                                   6/24/2008 11:19 am (fblackmo) employee was walking on the sidewalk when, she slipped and caused injury to her right knee and chest area. Supervisor: joseph ishak
## 8159                                                                        6/24/2008 11:59 am (fblackmo) employee walked around truck and got to close to a cardboard bin that had a nail sticking out. Nail stuck in his right thigh/hip area. Supervisor: ricky ennis
## 8160                                                                                                                                          6/24/2009 01:59 pm (fblackmo) employee stepped down onto trailer when, he twisted his left ankle. Supervisor: jerri parker
## 8161                                                                         6/24/2009 02:09 pm (fblackmo) employee was performing scrubbing and rail post repair duties on bridge project when, he was bitten by a tick on his lower back. Supervisor: kennie covington
## 8162                                                                                                                         6/24/2009 02:18 pm (fblackmo) employee cut finger while removing a piece of metal from the bottom of his shoe. Supervisor: richard dewhurst
## 8163                  6/24/2009 06:17 pm (fblackmo) employee was on us 158 hauling abc to job site on hog quarter road in currituck county when, she felt something on her back. Employee did not see what bit her. Thinks possible tick bite. Supervisor: h. D. Wiggins
## 8164                6/24/2009 09:12 am (blgay) employee was surveying in an areae that was nearly covered in poison ivy. Employee came in contact with the poison ivy and had an allergic reaction on both arms. Supervisor: mojdeh masihpour 6/24/2009 09:17 am (blgay)
## 8165         6/24/2009 09:32 am (blgay) employee was using an aggregate spreader, when the spreader lunged forward, causing the employee to fall backwards and hit his head and back of his right shoulder. Employee became unconscious. Supervisor: j. W. Brown 7/9/200
## 8166                                                                                     6/24/2011 03:31 pm (barnes) employee was working on a concrete form when a 2' x 6' brace fell across his right foot. Employee injured his right foot. Supervisor: larry scruggs
## 8167                                                 6/24/2011 03:57 pm (fblackmo) employee was operating state own tractor when private owned vehicle to stop striking the tractor in the back. Employee felt pain in center back area and head. Supervisor: gordy eure
## 8168                   6/24/2011 04:06 pm (barnes) employee was working on asphalt paving machine. He was turning the leveling arm when his hand slipped off. His left elbow hit the metal on paving machine. Employee injured his left elbow. Supervisor: james lambert
## 8169               6/24/2011 04:30 pm (fblackmo) employee took customer out for a road test upon returning, the customer swung out to wide and hit the right rear corner of a parked vehicle. Employee experienced upper back and left hip pain. Supervisor: dean almond
## 8170             6/24/2011 04:36 pm (barnes) employee stopped at stop sign in vehicle. He went to cross over road and did not see the approaching vehicle. He was hit from the left. Employee injuries consisted of left hip pain, and neck pain. Supervisor: john scism
## 8171                                                                                         6/24/2011 04:46 pm (fblackmo) employee was using a sledge hammer to break concrete loose for a job when, he heard a pop in his right bicep area. Supervisor: randy williams
## 8172         6/24/2011 04:52 pm (barnes) employee had a positive skin test on 4/15/11 from work related exposure while transporting inmates from wilkes doc to dot job sites. Dates of suspected active TB case stated by the representative from wilkes county health d
## 8173                                                                   6/24/2011 05:01 pm (fblackmo) employee was trying to jump start a pickup truck when, the gear shift jumped into reverse catching his right arm and shoulder in the door. Supervisor: michael hill
## 8174                                                   6/24/2011 05:07 pm (barnes) employee was cutting weeds around bridges. He slipped and fell on loose gravel landing on left arm and shoulder. Employee injured his left arm and shoulder. Supervisor: joseph smith
## 8175         6/24/2011 05:20 pm (barnes) employee was trying to move a barricade sign that had fallen into a ditchline. When the sign was moved to the road, one of the legs rotated down on top of employees foot. Employee had bruising on right foot. Supervisor: kev
## 8176                                                                                        6/24/2011 05:20 pm (fblackmo) employee was attempting to close the tailgate on tandem dump truck when, he smashed his little finger on right hand. Supervisor: jeff cobaniss
## 8177         6/24/2011 05:33 pm (barnes) employee found tick stuck to his right side of abdomen after performing surveying duties on painter road in rutherford county. The area of the tick bite was observed by the employee and on June 9th the area became red and a
## 8178           6/24/2011 05:48 pm (barnes) employee was cutting trees and pulling brush out of the right of way. He notice a small bruise on his left upper arm, and later in the evening, the bruise was darker and swollen. Employee injured left upper arm/biceps. Su
## 8179         6/24/2011 05:52 pm (fblackmo) employee was coming out of the steering compartment and port hatch when, his left foot slipped on the ladder causing him to drop back into the hole. Employee tried to catch his weight to prevent the fall when he felt a st
## 8180          6/24/2011 06:18 pm (barnes) employee was cutting tree trunk off bank. The trunk struck roadway pavement causing a large splinter to fly 46 feet over dot chipper and striking Mr. Mccraw in the back as he was trying to move away from the piece of wood.
## 8181                                                                                                                         6/24/2011 06:36 pm (barnes) employee was packing down asphalt and felt a sting on the right side of her stomach. Supervisor: david c. Capps
## 8182           6/25/2004 09:23 am (fblackmo) employee was attempting to straighten a tarp roller bar. The roller bar was put on jack stands, employee pressed loader bucket down on the roller bar. Roller bar shifted and rolled onto his left hand cutting off his lit
## 8183                                                                                                                 6/25/2004 09:53 am (fblackmo) employee states while using a weedeater to cut lawn he was burned on (blistered) right arm. Supervisor: ellen goodwin
## 8184                                                                                                                6/25/2004 10:43 am (fblackmo) employee states while walking up to white board his hit his right foot on television stand. Supervisor: steve sheppard
## 8185                                                                                          6/25/2007 03:21 pm (speedin) employee ws moving tractor from one location to another and a piece of rut from exhaust pipe lodged in his left eye. Supervisor: scott gibson
## 8186                                                                             6/25/2009 08:39 am (fblackmo) employee was getting chain binders out of the tool box on the tilt top trailer. The lid fell and hit his left hand pinkie finger. Supervisor: hilton wade
## 8187        6/25/2010 02:29 pm (fblackmo) employee was in pilot house of vessel, sitting in chair (that was on wheels), he leaned back causing chair to tip over, employees leg was pin under the chair. Employee felt pain in her left knee. Supervisor: t. W. Jennette
## 8188         6/25/2010 02:51 pm (fblackmo) employee was securing load unto flatbed while wrapping excess chain around load (pipes). Employee moved his hand causing his index finger on left hand to scrape the sharp edge of pipe. Employee cut left index finger. Supe
## 8189                                                                                                                          6/25/2010 03:15 pm (fblackmo) employee was bitten by unknown insect on right leg. Supervisor: neil roberson 07/14/2010 05:09 pm (lvaughan)
## 8190            6/25/2010 03:26 pm (fblackmo) employee was cutting brush with a chainsaw to put in dump truck. The chainsaw kicked back pushing his right arm too far backwards. Employee felt pain in his right shoulder and neck area. Supervisor: john paul callicutt
## 8191                                                                                                                6/25/2010 03:47 pm (fblackmo) employee was unloading pipes from flat trailer when, he cut his left forearm on sharp edge. Supervisor: mason thompson
## 8192                                                                         6/25/2010 04:11 pm (fblackmo) employee experienced heat exhaustion while driving to asphalt plant site. Employee was transported to local hospital by ambulance. Supervisor: randy mcintyre
## 8193                                          6/25/2010 04:24 pm (fblackmo) employee was flagging traffic during patching job when, he started to feel extremely hot, dizzy, vision loss, and passed out. Employee experienced heat exhaustion. Supervisor: d. W. Curtis
## 8194                                                                                                                         6/25/2010 04:37 pm (fblackmo) employee was sharpening a bush axe when, he cut index and center finger on left hand. Supervisor: greg myrick
## 8195         6/25/2010 12:01 pm (fblackmo) employee was removing trees. Employee began to remove limb, lost his balance, slipped and fell on the ground. The fall jarred all parts of his body; causing him to hurt all over. Employee did not go to the doctor at the t
## 8196               6/25/2010 12:21 pm (fblackmo) employee was on break and walked to king mini mart convenience store that is adjacent to the dmv office. Employee stepped in a hole and twisted her left ankle on her return back to office. Supervisor: andrew c heath
## 8197                                                                                                                                6/25/2010 12:46 pm (fblackmo) employee twisted his left knee while helping unload wooden work station. Supervisor: mitt thomas gibbs
## 8198                                                                                    6/26/2007 01:35 pm (fblackmo) employee was inflating a tire for a motorist. The tire ruptured. A piece of rubber cut his nose and got into his right eye. Supervisor: t. W. Kirk
## 8199                                                                                                                                             6/26/2007 01:50 pm (fblackmo) employee injured his back while trying to start a concrete saw. Supervisor: j. T. Wiggins
## 8200                                                                                 6/26/2007 01:59 pm (fblackmo) employee was training field geologists to survey cross sections in the woods when, he was bitten by a tick on his abdomen area. Supervisor: kyung kim
## 8201                                                                                                                  6/26/2007 04:07 pm (speedin) employee was slope staking. He stepped on a stick and a piece flew up and hit the left eye. Supervisor: j. A. Russell
## 8202         6/26/2007 04:24 pm (speedin) employee was helping shovel asphalt on a patch job. Employees were tossing shovel fulls of asphalt to low area as needed. Brad learned forward to get another shovel full when Mr. Austin tossed his shovel full in the direct
## 8203                                                                                                     6/26/2007 11:42 am (fblackmo) employee was swinging hammer when, he missed the center of a pin causing injury to his left thumb. Supervisor: alfred fred wilson
## 8204                                           6/26/2009 03:21 pm (fblackmo) employee was walking down wooden ramp to unlock the chain from ferry dock when, he slipped and fell on wet ramp. Employee felt pain in his left hip and knee area. Supervisor: r. N. Harden
## 8205         6/26/2009 03:26 pm (blgay) employee was stepping off back of truck and stepped onto edge of asphalt, twisting and spraining his right ankle. Employee then fell and hit his head on the ground, causing him to sprain/strain his neck. Supervisor: johnny c
## 8206                                                                                                                                 6/26/2009 03:43 pm (fblackmo) employee hit his head on metal beam while running radio cable in building. Supervisor: sterling baker
## 8207                                                                                         6/27/2006 08:53 am (fblackmo) employee was cutting trees on state right of way in high grass when, he found a tick on his right leg and left wrist. Supervisor: g. L. Baker
## 8208         6/27/2006 09:06 am (fblackmo) employee was operating a chainsaw on thursday. At lunch he noticed his arm itching and realized something had bitten him. Employee stated a doctor visit was not necessary and continued working after lunch. Supervisor: j.D
## 8209           6/27/2006 09:18 am (fblackmo) employee was bushing down a slope when, the edge of the slope crumbled under his feet causing him to lose his balance. Employee began to tumble down hill hitting his shoulder and head on a rock. Supervisor: james bostic
## 8210                                                                                                                                            6/27/2006 09:29 am (fblackmo) employee was cutting mud flap holes when, he cut his right thumb. Supervisor: daylon lynch
## 8211                                                                      6/27/2007 02:29 pm (fblackmo) employee was putting trash into the dumpster. She stepped onto a pallet to push the bag through when, her right ankle got caught. Supervisor: franklin s. Granda
## 8212                                                                                            6/27/2007 02:39 pm (fblackmo) employee was removing hydraulic post puller from rear of truck when, he felt pain in is left shoulder/neck area. Supervisor: todd whitaker
## 8213                                                                                                                                 6/27/2007 02:54 pm (fblackmo) employee was taking battery off shelf when, she felt pain in her lower back. Supervisor: steve taylor
## 8214                                                            6/27/2008 01:12 pm (blgay) employee was conducting safety inspection audit in garage of a firestone location. Employee slipped on oil and fell, landing on both knees and hands. Supervisor: j. F. Hiatt
## 8215         6/27/2008 01:30 pm (blgay) employee was assisting survey party in setting slopes stakes on sr 1603 in ashe county. The work environment had not changed from all previous jobs. Employee stated he had a bad case of poison oak on monday and by tuesday it
## 8216         6/27/2008 02:08 pm (blgay) employee was pushing aggregate up the left belt of the chip spreader with a shovel because the belt had stalled. While he was pushing, the belt started suddenly and caused his left arm to fully extend with his weight on it c
## 8217          6/27/2008 02:18 pm (blgay) employee was walking in wooded and grassy areas supervising and assisting with the replacement of a pipe on nc 42 in lee county. Late in the afternoon, he found a tick on his left leg below his belt line. On friday 6/20/08,
## 8218                                                                                                                              6/27/2008 02:29 pm (blgay) employee was unhooking chair from sled, upon standing felt pain in right side. Supervisor: lonnie mcclellan
## 8219                                                                                         6/27/2008 02:43 pm (blgay) employee reported that he had been feeling dizzy and went to get out of dump truck and doesn't remember anything else. Supervisor: s. D. Gilmore
## 8220                                                                                                                              6/27/2008 07:30 am (blgay) employee was cutting and chipping trees, when he came into contact with poison oak. Supervisor: clyde adams
## 8221         6/27/2008 07:39 am (blgay) employee was riding in spray truck, that was struck in the rear by a loaded dump truck. The employees were spraying guard rails on poplar tent road, when the dump truck attempted to pass them. A pickup in the opposing lane o
## 8222          6/27/2011 02:56 pm (fblackmo) employee was working off a hydra platform lift. Employee was securing a 13 x 13 wedge plate for another employee to cut a notch out in plate with a torch. The plate slipped and caused the torch to move and burn employees
## 8223                                                                                                                      6/27/2011 03:15 pm (fblackmo) employee felt pain in his lower back and neck area while unloading tires at warehouse. Supervisor: ronnie sutton
## 8224                       6/27/2011 11:09 am (fblackmo) employee was placing orange cones in the back of the pick to attach with safety chains when one of the cones slipped from his hands and fell against his neck and right shoulder area. Supervisor: brady fisher
## 8225         6/27/2011 11:26 am (fblackmo) employee was straightening equipment on the box truck when he tired to Sep up a 100lb propane tank to its upright position he felt a pain in his chest area but continue to work. The crew traveled to sampson county and whi
## 8226                                                                 6/27/2011 11:53 am (fblackmo) employee was returning from the ice machine at the maintenance yard when, he tripped over the lawn mower causing injury to his left knee. Supervisor: luther thompson
## 8227                        6/27/2011 12:03 pm (fblackmo) employee was returning from a road test, after exiting the vehicle she slipped and fell on some leaves. Employee felt pain in her right side, hip, shoulder, and she jarred her head. Supervisor: lorrie cantu
## 8228                                                                                                                                                 6/27/2011 12:29 pm (fblackmo) employee was trimming pompas grass when he cut his left knee. Supervisor: harry hayes
## 8229                                                                                                                           6/27/2011 12:39 pm (fblackmo) employee slipped when the ground gave a way while trying to uncover a phone line. Supervisor: dwayne warner
## 8230                                                                                                                                            6/28/2004 02:13 pm (fblackmo) employee states while conducting surveys he was bitten by a tick. Supervisor: james kimzey
## 8231                                                                          6/28/2004 03:27 pm (fblackmo) employee was on back of dump truck spraying his bed down with asphalt degrease when, the degrease blew back into his eyes and mouth. Supervisor: dale loflin
## 8232                                                                                       6/28/2004 03:38 pm (fblackmo) employee was stooped down between two vehicles applying decal to cargo trailer when, he felt pain in his neck area. Supervisor: ann lorscheider
## 8233                                                                                                      6/28/2004 12:43 pm (fblackmo) employee states while stepping over exhaust pipe he, hit his leg on the grader of the machine. Supervisor: james michael tyndall
## 8234                                                                                                                      6/28/2004 12:57 pm (fblackmo) employee states he came into contact with poison oak while weed eating on interstate. Supervisor: thomas baldwin
## 8235         6/28/2005 08:58 am (blgay) employee was filling the asphalt roller with water. Proceeded to climb up trailer to check water level. He stepped with his right foot onto the trailer where asphalt roller was loaded. He heard a pop from the rear of his kne
## 8236                                            6/28/2005 09:20 am (blgay) employee was attempting to dismount from back of flatbed truck and slipped on fertilizer on the bed of the truck. She struck her left leg on the bed of the truck. Supervisor: j. D. Robinson
## 8237         6/28/2005 09:43 am (blgay) employee was watching for tim yauch backing crane out of shop. Employee went under hook cable on beam to tell tim he was to close to the door on the other side. Employee raised up to soon striking his head on the cable clamp
## 8238                                                                                                  6/28/2006 01:27 pm (fblackmo) employee was picking up a brake drum and handing it to another employee when, he felt pain in his lower back. Supervisor: h. B. Rash
## 8239                        6/28/2006 05:08 pm (fblackmo) employee reached with his left arm to grab hand hold above door to pull himself around to look and see if any cars were coming at intersection. Employee felt pain in his lower back. Supervisor: chris taylor
## 8240                                               6/28/2006 11:18 am (fblackmo) employee was parking vehicle on m/v chico, walked by car, dog jumped out of back seat, came through right side rear window and bit employee on right arm. Supervisor: h. C. Scarborough
## 8241                         6/28/2006 11:30 am (fblackmo) employee was raking asphalt on I-40 when, a tractor trailer struck a traffic cone sending it into the air and striking employee on the left shoulder, collarbone, and side of his face. Supervisor: greg frye
## 8242         6/28/2006 11:43 am (fblackmo) employee was cleaning out the back of the international truck in the heat. He began having chest pains, head aches, dizzy, impaired vision, so he sat down and drank something. He continued to have pain in the chest and nu
## 8243                                                                           6/28/2006 11:55 am (fblackmo) employee was mowing grass when, right front wheel on tractor fell off causing employee to hit his right side hard against the seat. Supervisor: c. I. Lucas
## 8244                                                                                                 6/28/2006 12:09 pm (fblackmo) employee was conducting vegetation training in a wood area when, he was bitten by a tick on right calf. Supervisor: mack c. Rivenbark
## 8245                                                              6/28/2007 10:22 am (speedin) employee was removing a large rock from tailgate of dump truck when his finer got caught between tailgate and truckbed when the rock fell out. Supervisor: david gillette
## 8246                                   6/29/2005 11:58 am (fblackmo) employee was part of a full depth patching operation on I-77. Employee was removing asphalt and concrete debris from hole when, he tripped and fell over a piece of asphalt. Supervisor: joel riley
## 8247          6/29/2005 12:15 pm (fblackmo) employee was chipping trees pruning shrubs the morning of 06/21/05. That evening he found a tick had bitten his right leg, and had attached itself to him. On 69/24/05 employee had developed a low grade fever. Supervisor:
## 8248                                                                      6/29/2006 08:10 am (fblackmo) employee was running a series of pcp test lifting & dropping an 8kg. Weight when, he felt pain from his right shoulder down the arm. Supervisor: kevin h. Sebold
## 8249                                                                                                                                            6/29/2007 04:42 pm (speedin) employee was carrying counter weights for tractor his knee buckled. Supervisor: j. C. Roper
## 8250         6/29/2007 09:54 am (speedin) employee was on back of sign truck unloading signs. As he dismounted from truck be his foot slipped on truck bumper and he fell against the flashing light on back of truck bed scraping his side on the light housing. Superv
## 8251         6/29/2007 12:10 pm (speedin) employee found tick on left elbow that was embedded deeply, tick was removed by process of smothering tick with soap and using tick removal tool. On saturday, June 16, 2007 employee's elbow had not the size of a pencil era
## 8252                    6/29/2007 12:55 pm (speedin) employee was repairing damaged sign in median, walked around job area, stumped toe on u-channel sticking out of ground, steel-toe of boot hung toenail on right foot, peeling toenail back. Supervisor: j. A. Ridge
## 8253         6/29/2011 09:55 am (barnes) employee was descending a ladder. At the bottom of the ladder, he stepped left into a box about 18 inches high. His right foot slipped on the ladder rung. Employee and ladder went to the right and fell into some fluorescent
## 8254           6/29/2011 10:30 am (barnes) employee was getting debris off tailgate of the dump truck. The driver pulled off causing the employee to loose his balance. To keep from falling, the employee grabbed onto the truck and the tailgate slammed shut catching
## 8255                                         6/29/2011 10:47 am (barnes) employee went outside to remove a black snake that was located at the entrance door of the dmv. He tried to pick up the snake and was bitten on the right and left hand. Supervisor: devin drye
## 8256                                         6/29/2011 11:10 am (barnes) employee was at a paving job when a yellow jacket from a near by nest stung him on the right hand and another stung him on the left leg. Supervisor: reuben blakley 6/29/2011 11:30 am (barnes)
## 8257          6/29/2011 11:32 am (barnes) employee doyle was changing the cutting edge on front backhoe bucket. Another shop employeee, loosened nut on top with air gun causing the bolt to spin and cut employee doyle's middle finger on right hand. Supervisor: cole
## 8258                                                                        6/3/2004 03:36 pm (fblackmo) employee was driving a truck on pete brittain road when, he rounded a curve a private vehicle crossed the center lane hitting the truck. Supervisor: d. L. Dean
## 8259               6/3/2004 08:40 am (fblackmo) employee was taking posts off truck when, another employee placed a sign behind her. Employee did not see sign and fell causing the injury to her middle finger on left hand. Supervisor: thomas johnson 8/13/2004 10:19
## 8260                                                                                                                                           6/3/2004 08:52 am (fblackmo) employee state he came into contact with poison ivy. Supervisor: william edward mcclendon jr
## 8261                                                                                                       6/3/2004 09:08 am (fblackmo) employee states while crossing over a ditch he, stepped in a hole causing the injury to his right ankle. Supervisor: k. R. Davis
## 8262                                                                                                             6/3/2004 09:24 am (fblackmo) employee states while clearing brush axe, axe grazed off a vine striking him below right knee. Supervisor: l. T. Williford
## 8263          6/3/2004 11:06 am (fblackmo) employee was stopped to assist a motorist with a tire change. Employee was preparing to put all his with and strength in losing the nut when, he fell on the pavement. Employee states he caught himself with his left hand c
## 8264                                                                                                                                        6/3/2008 09:36 am (blgay) employee was cutting a tree out of road and came in contact with poison ivy. Supervisor: lane cabe
## 8265                                                                                  6/3/2009 02:05 pm (fblackmo) employee was putting chain on chain saw, his left hand slipped, and the teeth of the saw hit the knuckles of his left hand. Supervisor: jeremy creech
## 8266         6/3/2009 08:04 am (blgay) employee was working on top of a bank with tall rye grass on entire slope. As employee started down the path to the bottom of the slope, he slipped on some tall rye grass and slid down tot he bottom of the slope, injuring his
## 8267         6/3/2009 08:18 am (blgay) employee was working with the patch crew on the railroad tracks at us29 leveling out asphalt. The employees stated that as he was pushing down on the asphalt rake, he felt a pain in between his lower back and shoulder blades.
## 8268                       6/3/2009 08:45 am (fblackmo) employee was traveling east on nc 50 when, a car pulled out in front of him causing him to hit a parked car to his right. Employee felt pain in left shoulder, both arms, and back area. Supervisor: jerry keene
## 8269                                          6/30/2004 08:58 am (fblackmo) employee states he was diagnosed with hallux limitus from operating a motor grader. Supervisor: j. W. Sutton 11/6/2006 01:25 pm (fblackmo) claim closed. Clinched on 02/25/2005. Do not use.
## 8270                                                                                      6/30/2004 09:11 am (fblackmo) employee was operating a mechanical tamp to compact asphalt when, he began to experience pain in left arm and dizziness. Supervisor: a. G. Short
## 8271                                                                                                                                    6/30/2004 09:22 am (fblackmo) employee states while pulling brushes he came into contact with poison ivy. Supervisor: b. R. Webb
## 8272                                                                                               6/30/2004 09:34 am (fblackmo) employee states while stacking signs against wall one of the stacks fell striking him above his left eye area. Supervisor: w. T. Lowery
## 8273                                                                                                          6/30/2004 09:43 am (fblackmo) employee was flagging traffic when, he felt overheated and began to get sick on the stomach. Supervisor: lindsey o. Ethridge
## 8274                                                                                        6/30/2004 12:00 pm (slee) employee was traveling north on earnhardt road when a private vehicle traveling south crossed the centerline and collided with the dot dump truck.
## 8275                                                                                                                     6/30/2005 01:07 pm (fblackmo) employee was removing a tree off the roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 8276         6/30/2005 02:49 pm (fblackmo) employee was in the bucket truck repairing signal head. A bobtail road tractor lost control on wet pavement and slid into the front of the bucket truck. Employee was ejected form bucket truck and landed on the roadway hit
## 8277                                                                                                   6/30/2005 04:05 pm (fblackmo) employee was at home after work rubbing his right leg when, he found a tick on his lower part of the leg. Supervisor: r. D. Pittman
## 8278                                  6/30/2005 04:16 pm (fblackmo) employee was walking down cut line, tripped over fresh cutting. Employee was trying to regain his balance when, his feet became entangled in vines causing him to fall. Supervisor: clift bodenhamer
## 8279                                                                                                                     6/30/2005 12:33 pm (fblackmo) employee was removing a tree off the roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 8280                                                                                                                     6/30/2005 12:47 pm (fblackmo) employee was removing a tree off the roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 8281                                                                  6/30/2005 12:55 pm (fblackmo) employee was trying to adjust the pipe rack on the top of truck. Employee was pushing and pulling on the rack when, he felt pain in his side. Supervisor: james bell
## 8282                                                                                                                                      6/30/2009 02:14 pm (fblackmo) employee hurt lower back while bending over tire to repair a leaking hose. Supervisor: pat henry
## 8283                                                                                                                                                                     6/30/2009 02:29 pm (fblackmo) employee found tick on upper back. Supervisor: larry t. Williford
## 8284                      6/30/2011 03:29 pm (barnes) employee was driving crash attenuator truck and a private owned vehicle hit the attenuator. Employee injured left forearm, left knee, left side, lower back, left side rib area and neck. Supervisor: t. H cameron
## 8285                                             6/4/2004 03:57 pm (fblackmo) employee was stepping across a piece of plywood when, he tripped and fell causing the injury to his left side of face and back area. Supervisor: w. T. Lowery jr *shaw all bills to joyce*
## 8286                    6/4/2004 04:09 pm (fblackmo) employee was using a prying bar to lift board off a steel beam. The board popped loose causing the prying bar to come down and catch his right middle finger between the bar and board. Supervisor: w. T. Lowery jr
## 8287         6/4/2007 01:21 pm (speedin) employee was standing on steel plank floor beside a boom truck when truck started to move it slide one piece of the flooring out from under the employees right leg. Right leg dropped down between void in flooring and boom t
## 8288                                6/4/2007 01:45 pm (speedin) employee was removing fuel filter, employee removed rear line. Then when he removed the front line, gas under pressure discharged hitting him n side of face & in his left ear. Supervisor: l. T. Garner
## 8289                                                                                6/4/2007 12:48 pm (speedin) employee was starting weedeater using pull rope. When employee pulled on the rope, he felt a sharp pain in his right elbow area. Supervisor: e. L. Hager
## 8290                                                                                                            6/4/2008 02:02 pm (blgay) employee was on his way back from job site and was ran into the back of his tractor by a pv (pickup). Supervisor: t. H. Swayne
## 8291         6/4/2008 02:24 pm (blgay) employee was placing a sand bag on sign stand leg while setting up lane closure on I-95, when he felt pain in his lower back. Employee continued to work 05/06/08 and didn't seek medical attention until 05/08/08. Supervisor: t
## 8292                                                6/4/2008 02:40 pm (blgay) employee tripped on chair in co-workers working space and fell forward into file cabinet, hitting her head, left arm, left knee and causing a head and neck injury. Supervisor: beth mckay
## 8293          6/4/2008 08:51 am (blgay) employee was working on nc24/27 west of troy. Employee was cleaning out his dump truck bed with a hand held sprayer which weighs about 30lbs (including fluids). Employee handed the sprayer to an inmate who was standing up on
## 8294                                                                                                                                      6/4/2009 02:12 pm (fblackmo) employee was doing road work when, he noticed tick on left side of neck. Supervisor: woody jarvis
## 8295                                                                     6/4/2009 02:27 pm (fblackmo) employee was pulling on starter rope of the auger when, his forearm struck a sign post on back of vehicle causing laceration to forearm. Supervisor: frankie davis
## 8296                                             6/4/2009 02:37 pm (fblackmo) employee was attempting to pull a sign post out of the ground while his working partner was using a pry bar to work the post out, when he felt pain in his foot. Supervisor: todd whitaker
## 8297                                                                                                                      6/4/2009 04:15 pm (blgay) employee twisted and injured his back while remixing his concrete sample on a concrete pour. Supervisor: mark thomas
## 8298         6/4/2009 04:27 pm (blgay) employee was sitting at her computer desk and reached down under the desk to move the paper shredder to the left side. When she did, the top of the shredder tipped and hit the lower portion of left leg and landed on the top o
## 8299                                                                      6/4/2010 08:34 am (fblackmo) employee was aiding citizen with the reloading of fallen materials when, he was struck by a highway patrol causing multiple body injuries. Supervisor: david hall
## 8300                                                                                         6/4/2010 08:50 am (fblackmo) employee relieved flagler during asphalt project, while standing in tall grass he was bitten by chiggers on right leg. Supervisor: t. L. Ingle
## 8301                                                                                                       6/4/2010 09:01 am (fblackmo) employee came into contact with poison ivy (both arms) while using bush axe to cut grass around bridge. Supervisor: c. N. Vaughn
## 8302                                                                                                                 6/4/2010 09:17 am (fblackmo) employee was removing silt fence from project site when he was bitten by fire ants on left arm. Supervisor: trey moore
## 8303                                                                                                                 6/4/2010 09:28 am (fblackmo) employee was picking up a drain basin when he felt pain in his lower right side of his back. Supervisor: james dawkins
## 8304                                                                                                                                 6/5/2007 01:55 pm (speedin) employee was cutting bushes around bridges came in contact with poison ivy. Super visor: david l. Moore
## 8305         6/5/2007 08:35 am (speedin) employee was cutting big limbs off of oak tree that they had already cut down so the limbs could be chipped and log could be moved on a secondary construction project when a limb kicked back and hit employee in the knee cau
## 8306                                                                 6/5/2007 09:13 am (speedin) employee was driving a rubber tire roller on sr 1969 when employee lost control of roller. Roller went into a ditch and laid over on its side. Supervisor: chip speight
## 8307                                                                                                                                   6/5/2009 07:20 am (fblackmo) employee states while standing beside truck a bug flew into his left ear. Supervisor: w. B. Crumpler
## 8308                       6/6/2005 08:23 am (blgay) employee was picking up litter on sr 1355, near a housing construction project - employee stepped in a hole on the shoulder of the road while walking and turned toes up on left foot. Supervisor: tommy richardson
## 8309                                                                                          6/6/2006 01:53 pm (fblackmo) employee states that while working to cut and remove brush from the right of way he came into contact with poison ivy. Supervisor: roger deal
## 8310          6/6/2006 02:19 pm (fblackmo) employee had been working with logs using the front clam bucket on the backhoe. He began traveling down the road and failed to properly position the front bucket before moving. Employee lowered the bucket, it dug into the
## 8311         6/6/2006 02:35 pm (fblackmo) employee was using a chainsaw while cutting a tree. The tree began to lean to the right as the employee was cutting and it knocked the chainsaw out of his hands. The chainsaw came down and cut into the employees lower righ
## 8312                                         6/6/2006 02:48 pm (fblackmo) employee was walking in the shop walkway. He hooked his foot on an air hose and fell. Employee caught himself with left hand on cement floor causing injury to wrist. Supervisor: chris castor
## 8313                                                                                                    6/6/2006 10:08 am (fblackmo) employee was walking in parking lot when, he turned and foot slipped on loose gravel breaking right leg. Supervisor: a. W. Childers
## 8314                                              6/6/2006 10:25 am (fblackmo) employee was trying to release a wedged rock lodged between tailgate when, the rock released and employees hand was pulled in pinching the tip of right finger off. Supervisor: h. S. Lee
## 8315                                                                                                                                  6/6/2006 10:38 am (fblackmo) employee states he was shoveling asphalt, and hurt his right forearm and hand. Supervisor: roger deal
## 8316                                                                                                                       6/6/2006 10:50 am (fblackmo) employee was throwing limbs off of the roadway when, something got into his right eye. Supervisor: t. S. Bozeman
## 8317         6/6/2006 11:02 am (fblackmo) employee was traveling north on nc 138 when, he came around a blind curve, there was a school bus and cars stopped in the road. Employee applied brakes and the dump truck slide to the left and then back around to the right
## 8318          6/6/2007 02:26 pm (fblackmo) employee (in 2005) was diving on a 12 foot dive (under water bridge) and during descent he noted the onset of vertigo which lasted a few minutes and then a brief period of disorientation. Employee was seen for an evaluati
## 8319        6/6/2007 03:18 pm (fblackmo) employee was pulling on the stanchion (poles, posts) trying to un-tangle the ferry rope when, the pole/post went up in the air and came down on his big toe on right foot. Supervisor: h. C. Scarborough 9/5/2007 11:33 am (lva
## 8320                                                                    6/6/2007 03:31 pm (fblackmo) employee was attempting to make a left turn and was bumped from behind by a county of harnett truck. Employee felt pain in his lower back. Supervisor: ricky rogers
## 8321                                                                                                                6/6/2007 03:46 pm (fblackmo) employee was participating in o. C. Spray training when, pepper spray went into his eyes. Supervisor: jimmie masgengill
## 8322                                                                                   6/6/2007 03:57 pm (fblackmo) employee was riding on back of truck when, he jumped/slid off back causing injury to his left shoulder, right leg, and elbow. Supervisor: g. W. Rose
## 8323                                                                               6/6/2007 04:07 pm (fblackmo) employee was stopped at a traffic light. Employees vehicle was struck in the rear by another vehicle causing pain to her neck. Supervisor: steve watkins
## 8324                                                                                        6/6/2007 04:15 pm (fblackmo) employee was stepping down from sidewalk to do road test when, missed stepped causing injury to her right ankle/foot. Supervisor: joyce roberts
## 8325                                                                                                                               6/6/2007 04:36 pm (fblackmo) employee states while working in the filed he was bitten by a tick on his back. Supervisor: hugh sorrell
## 8326                                                                  6/6/2007 05:18 pm (fblackmo) employee was conducting a driving test when, the customers vehicle was struck from behind. Employee felt pain in his neck and upper back. Supervisor: brenda p. Grady
## 8327         6/6/2008 09:54 am (blgay) employee was standing near a silt fence installation operation. Excavator operator swung boom around to position bucket. As a result the machine tipped forward, shifting it's weight and the bucket tooth struck employee on the
## 8328                              6/6/2008 10:08 am (blgay) employee was cutting shrubbery from the right of way and loading the debris into the chipper. Poison vines were entangled in the shrubbery and employee came into contact with them. Supervisor: dale loftin
## 8329                                         6/6/2008 10:16 am (blgay) employee was standing behind the trash truck watching for driver to back up and dump. When the truck started dumping, something flew out and hit employees left hand. Supervisor: kevin hazelwood
## 8330                                                                                                                  6/6/2008 10:32 am (blgay) employee was cutting a tree out of the road, when he stepped on a limb and rolled his ankle. Supervisor: r. D. Henderson
## 8331          6/6/2008 11:44 am (blgay) employee was filling guardrail spray truck and was standing on a ladder. Employee felt tension in right leg. Later in the day employee climbed down from the spray truck and his right knee made a popping sound. Supervisor: cj
## 8332         6/6/2011 10:16 am (barnes) employee was sitting on the load spreading hoist beam during lunchtime. The beam toppled over and fell on employees left heel and cut it to the bone. Employee tried to get out of the way, but was unable to do so before it ca
## 8333                                                                                                                6/7/2004 11:04 am (fblackmo) employee states while cutting cap under bridge the creosote burned his left and right arm. Supervisor: quindale bullard
## 8334                                6/7/2006 02:29 pm (fblackmo) employee was walking through maintenance yard when he saw a ball that he thought was rubber bouncing ball, he kicked the ball only to find out that it was a bowling ball. Supervisor: d. Shane edwards
## 8335                                                                                                                                   6/7/2006 02:43 pm (fblackmo) employee was removing face shield when, he felt something in his right eye. Supervisor: l. D. Greene
## 8336         6/7/2006 10:31 am (fblackmo) employee was installing a clutch into clutch into a transmission. The clutch was difficult to put back into the transmission. Employee had to lay on his back to attempt to push the clutch in with his right leg. Employee wo
## 8337                                                       6/7/2006 10:50 am (fblackmo) employee was attempting to flip an I-beam over two timbers, the beam slide backwards slightly trapping his finger against the flange of another beam. Supervisor: terry j. Davis
## 8338         6/7/2006 11:10 am (fblackmo) employee and crew was using the hydroseeder to clean out a pipe, the hose became separated from the hydroseeder. Employee was running to get out of the way of the hose and water when, he sprain his left foot/ankle. Supervi
## 8339          6/7/2006 12:34 pm (fblackmo) employee had been inspecting the saw-cut operation to install the snow plowable markers. The traffic control truck had installed cones in the direction of traffic. Employee was returning to his truck when he heard "stop".
## 8340                                                                                                                                      6/7/2006 12:54 pm (fblackmo) employee was cutting limbs when, limb sprung up striking him on the nose. Supervisor: mark taylor
## 8341                                                               6/7/2007 05:14 pm (fblackmo) employee was entering toll booth when, she was stung by a bee on her left eye. Employee experienced facial numbness and sever pain in her head. Supervisor: cindy austin
## 8342                                                  6/7/2007 08:56 am (speedin) employee was parked next to ditch. She got out of truck, pivoted around to walk toward back of truck. When employee pivoted around is when her knee twisted. Supervisor: d. R. Summers
## 8343                                      6/7/2007 09:32 am (speedin) employee was working along the shoulder of us 70. The roadway grass was high. The employee failed to use tick spray, two days later the employee found a tick on his foot. Supervisor: jerry parks
## 8344                                                                                                                                       6/7/2010 03:05 pm (fblackmo) employee was shoveling asphalt when, he felt pain in his lower back. Supervisor: roger carpenter
## 8345                                                                                                                6/7/2010 03:43 pm (fblackmo) employee was loading chipper when log kicked back striking his little finger on right hand. Supervisor: sarah g. Foster
## 8346                                                     6/7/2010 03:57 pm (fblackmo) employee was conducting a road test when customers car was struck in the rear while making a left turn. Employee felt pain in her left shoulder and neck. Supervisor: daniel ervin
## 8347                                                                                                                                  6/8/2005 08:52 am (fblackmo) employee came in contact with poison sumac while cutting brush with an axe. Supervisor: j. E. Kaukola
## 8348                                                                                                    6/8/2007 01:43 pm (speedin) employee was walking down the road a the job site when something stung/bit him on his lower right leg. Supervisor: w. T. Lowery, jr.
## 8349                                                                                                                         6/8/2007 02:05 pm (speedin) employee was shoveling grave l our of intersection, emlpoyee felt pain lower back. Supervisor: keith johnson. E
## 8350         6/8/2007 08:53 am (speedin) employee was lifting a piece of 6*6*25 lb per foot steel angle 3' + or - long, employee lifted the angle and turned to go up over the tail gate of the truck and felt a pain in his lower back, injured on 5/16/2007 worked ent
## 8351                                                                                                                   6/8/2007 10:29 am (speedin) employee was operating a weedeater and a chainsaw at various times and cut into poison oak. Supervisor: leonard dills
## 8352                                                                                                        6/8/2007 11:24 am (speedin) employee was flagging traffic where chipper crew was working. Dust blew in employees eye causing a rash. Supervisor: r. A. Baker
## 8353         6/8/2009 03:42 pm (blgay) employee was driving dump truck with a crash attenuator attached to it in a slow moving operation. A tractor trailer ran into the crash attenuator causing the truck with the employee in it to spin around several times. Employ
## 8354                                                                                                                                6/8/2010 03:24 pm (fblackmo) employee was climbing down from backhoe when he felt pain in his right knee. Supervisor: t. A. Caldwell
## 8355                                                                                                                                6/8/2010 11:42 am (fblackmo) employee states he felt pain pain in his chest wall while in service training. Supervisor: norman blake
## 8356                                                                                                                                       6/8/2010 11:56 am (fblackmo) employee was using post driver to install a fence when he smashed his right thumb. Jeremy delapp
## 8357                                                                                                                                      6/8/2010 12:07 pm (fblackmo) employee was welding when burn occurred to his ring finger on left hand. Supervisor: m. D. Garner
## 8358         6/8/2011 01:35 pm (fblackmo) employee was walking on rip-rap to go down under a bridge overpass to inspect contract mowing and weedeating work. The rip-rap shifted under his feet causing him to bend his left knee in an unusual direction. Supervisor: j
## 8359                                                                                                                                            6/8/2011 01:48 pm (fblackmo) employee state "poison ivy exposure" to his back and chest area. Supervisor: alton thornton
## 8360                                                                                                           6/8/2011 05:14 pm (fblackmo) employee was brush cutting around bridges on monday when something bit him on his left lower leg. Supervisor: randy williams
## 8361                                                                                              6/8/2011 05:30 pm (fblackmo) employee was operating a chainsaw clearing debris along fence line when he came into contact with poison ivy. Supervisor: david m. Carter
## 8362                                                                                                 6/8/2011 05:41 pm (fblackmo) employee fell down outside on steps leading up to the basement at work. Employee landed on his right knee. Supervisor: patrick simmons
## 8363                                                                                                             6/8/2011 10:21 am (fblackmo) employee was walking across maintenance yard when he felt something pop in his left lower leg. Supervisor: alvie e. Lee jr
## 8364                                                                                                6/8/2011 10:38 am (fblackmo) employee states he does not know the cause of the accident. Employee experienced pain in center of his back. Supervisor: david mutchler
## 8365         6/8/2011 10:56 am (fblackmo) employee climbed into the truck bed backhoe trailer by stepping on the trailer tongue and then onto the truck bed to retrieve the sledge hammer located in the middle of the bed. As employee was getting out of the turck bed
## 8366                                                                                                        6/8/2011 11:13 am (fblackmo) employee was placing a sign in the back of a pick up truck when he felt a pop in his lower back area. Supervisor: eugene sexton
## 8367           6/8/2011 11:27 am (fblackmo) employee Mr. Creech was handing a piece of channel beam to Mr. Mcintyre. Before Mr. Mcintyre had a hold on the beam, it slipped from Mr. Creechs hands and landed on Mr. Mcintyres left little toe. Supervisor: frank granda
## 8368         6/9/2005 11:09 am (fblackmo) employee was using the pipe wrench to unscrew the drill rod. The pressure released and the rod dropped causing the attached pipe wrench to drop which, pinched his left hand ring ringer between the wrench and part of the Dr
## 8369                                                                             6/9/2008 03:28 pm (fblackmo) employee was driving pilot vehicle when, vehicle was struck by a private own vehicle. Employee felt pain in his right shoulder. Supervisor: jackie r. Fone
## 8370                                                  6/9/2008 03:50 pm (fblackmo) employee was traveling down roadway and met an oncoming vehicle when, the mirrors struck each other glass shattered striking him on his face and neck area. Supervisor: I. H. Mccombs
## 8371         6/9/2008 04:02 pm (fblackmo) employee was pulling out of the old iga parking lot onto westbound nc 561. A flatbed dump truck traveling from northbound us 401/nc 39 onto eastbound nc 561 shot through the slip ramp and collided with employee causing a "
## 8372                                                                                                             6/9/2008 04:20 pm (fblackmo) employee was using hammer (u-hook) to build truck bumper when, he hit his thumb on his left hand. Supervisor: hosea blount
## 8373         6/9/2011 02:48 pm (fblackmo) employee was operating a a-boom tractor mower on the shoulder of state road 1002 when a private vehicle hit the outside duel wheel of the tractor. The tractor jerked around causing the seat to pull tightly across employees
## 8374                                                                                 6/9/2011 03:00 pm (fblackmo) employee was working under dash of the vehicle (small area to work in) when he started feeling pain in is lower back area. Supervisor: wesley williams
## 8375                                                          6/9/2011 03:11 pm (fblackmo) employee was arcing underneath marine vessel silver lake when he pulled the shield up to adjust the arc rod dust and metal flew into his left eye. Supervisor: david mutchler
## 8376                                                    6/9/2011 03:32 pm (fblackmo) employee found tick attached on right side of torso under his arm. Employee attempted to remove the tick, but could not remove head portion of tick. Supervisor: brian keith glover
## 8377                                                                                                                  6/9/2011 09:32 am (fblackmo) employee pulled muscle in left lower leg area during physical fitness stretching training. Supervisor: watkins, s. M.
## 8378          6/9/2011 10:23 am (fblackmo) employee was using a backhoe to scoop up material (the crew was cutting shoulder of road for future paving operation) when, the front bucket struck a manhole cover throwing employee forward; employee hit his mouth on caus
## 8379                                                                                                                              6/9/2011 11:15 am (fblackmo) employee was unloading signs from truck when, he felt pain in his lower back area. Supervisor: leon gross
## 8380                                                                                                                                                                                                                      60-70 lbs of computer parts fell on EE's wrist
## 8381                                                                                                    600 unit had an infected student with scabies. All the students were treated on the unit and staff was not. Nurse advised staff to go to occupational health. ()
## 8382                                                                                                    7/1/2004 02:24 pm (fblackmo) employee states while walking down sidewalk to conduct a road test her foot slipped causing her to fall. Supervisor: beverly lafone
## 8383        7/1/2005 07:43 am (fblackmo) employee # 1 was already in the welding shop blazing tow pieces of brass together when employee # 2 entered the shop to weld his parts. Employee # 2 told employee # 1 to watch his eyes, employee # 1 started yelling at emplo
## 8384                                                                                                             7/1/2008 02:19 pm (fblackmo) employees states that a two inch binder fell off shelf onto her right hand causing swelling. Supervisor: ronnie l. Higgins
## 8385                                                                                                               7/1/2008 02:31 pm (fblackmo) employee put out fire with fire extinguished when he came into contact with carbon monoxide. Supervisor: charles francka
## 8386                                                                                                                                                                 7/1/2008 02:54 pm (fblackmo) employee stepped in a hole and twisted left knee. Supervisor: don rich
## 8387          7/1/2009 02:39 pm (fblackmo) employee was working with patch crew when, he removed a tick from his left thigh area after work on 6/04/09. He reported tick finding on 6/05/09 to his supervisor. On 6/23/09 employee told supervisor that his energy level
## 8388           7/1/2011 02:06 pm (barnes) employee states she was getting out of the state vehicle. Pulled side door open, went to step out, and Miss Stepped, falling on her back and right arm. Employee injured her lower back, and right forearm. Supervisor: hoppie
## 8389                                                                                                7/1/2011 02:27 pm (barnes) employee was stepping across the guardrail twisting his body and injured his knee. Employee injured right knee. Supervisor: michael roper
## 8390                                              7/1/2011 09:06 am (barnes) employee was spreading salt spreader with sprayer in his left hand. Emps foot slipped while holding spreader rack, causing strain to his right arm and shoulder. Supervisor: greg m. Connor
## 8391          7/1/2011 12:08 pm (barnes) employee, after returning home from work, found a tick attached on his back. Employee had been out in an rural area patching. Employee's upper right back was swollen and infected in the area where the tick was attached. Sup
## 8392                                                                        7/10/2007 03:57 pm (fblackmo) employee was scrubbing the bulkhead when, he slipped and fell on one of the boat ribs. Employee injured his left knee and elbow. Supervisor: h. C. Scarborough
## 8393                                                                                                                                       7/10/2007 04:12 pm (fblackmo) employee was picking up bush guard when, he felt pain in his left arm. Supervisor: hosea blount
## 8394                                                                                                7/10/2007 05:02 pm (speedin) employee was washing hands in creek, foot slipped on rock, fell back and caught self with right hand on a rock. Supervisor: david moore
## 8395            7/10/2008 08:12 am (fblackmo) employee entered ladies restroom at 7:55 am, while entering she slipped and fell (floor was not wet) causing pain to right side of body. 911 was called and she was taken to the emergency room. Supervisor: remalia brady
## 8396                                                                                                                        7/10/2008 08:26 am (fblackmo) employee was closing a valve on paint truck when, his left elbow hit the ladder. Supervisor: codertt mcmillian
## 8397                                                                                                                           7/10/2010 01:02 pm (fblackmo) employee was shoveling hot asphalt when, he began to feel light headed and nauseous. Supervisor: tim raynor
## 8398                                                                                                                         7/10/2010 01:13 pm (fblackmo) employee came into contact with poison ivy while setting slope stakes in weed area. Supervisor; j. L. Woodard
## 8399                                                                                       7/10/2010 01:25 pm (fblackmo) employee was inspecting road paving operation when, he was bitten by a tick on his upper right arm just above elbow. Supervisor: dale swilegood
## 8400                                                                                                                    7/10/2010 01:57 pm (fblackmo) employee was jumping off back of trailer when, he fell causing injury to his left wrist. Supervisor: mark fogleman
## 8401                                                   7/10/2010 02:06 pm (fblackmo) employee was getting on back of pickup truck to load materials when, he went to get off his foot slipped off bumper causing his left foot to strike ground. Supervisor: chad dennis
## 8402                   7/10/2010 02:16 pm (fblackmo) employee was working on contour mower tractor when, he turned to get off equipment his foot slipped causing him to fall on pavement. Employee felt pain in his right arm, elbow, and wrist. Supervisor: ed presnell
## 8403                                                                                       7/10/2010 02:29 pm (fblackmo) employee was pulling sign post with post puller when, he got his right center finger caught between post and puller. Supervisor: johnny coleman
## 8404                                     7/10/2010 02:40 pm (fblackmo) employee was returning to her vehicle after vision test for driver education students. She stepped off the sidewalk onto the paved roadway when, she twisted her ankle. Supervisor: garry a. Sims
## 8405         7/10/2010 02:52 pm (fblackmo) employee was returning from a road test walking across the parking lot. Employee states that her left ankle twisted, she lost her balance, and fell causing injuries to her left ankle, shoulder, and knee. Supervisor: teres
## 8406                                  7/10/2010 10:17 am (fblackmo) employee was using a wrench to remove studs form wheels on a hyster forklift. Employee felt a sharp pain in his right upper forearm while knocking studs out with a hammer. Supervisor: john daniels
## 8407                                                                                     7/10/2010 10:35 am (fblackmo) employee was helping other employees clear a tree from the roadway; using a bush axes when he felt pain in his shoulder. Supervisor: mike nichols
## 8408                                                                                                                                        7/10/2010 10:47 am (fblackmo) employee was lifting propane tank when, he felt pain in his back. Supervisor: robert ledbetter
## 8409                                                                             7/10/2010 10:57 am (fblackmo) employee was clearing and cutting trees for the drill machine when, he step on a nail causing injury to big toe on right foot. Supervisor: n. T. Roberson
## 8410                                                                                                            7/10/2010 11:07 am (fblackmo) employee hit the top of great stuff can with a nail when, foam shot up into his facial area and eyes. Supervisor: don rich
## 8411                                                                                                             7/10/2010 11:28 am (fblackmo) employee was lifting bags of grout when, he felt pain in his upper back between shoulder blades. Supervisor: c. N. Vaughn
## 8412                                                                                                   7/10/2010 11:38 am (fblackmo) employee was cleaning up grave yards in duplin county when, he found a tick on his right leg behind knee. Supervisor: dwayne warner
## 8413                                                 7/10/2010 12:41 pm (fblackmo) employee was working with bridge crew when, cresol dripped form the cap into the water. The water splashed into employee face and onto both arms causing burns. Supervisor: guy white
## 8414                                                                                                                              7/10/2010 12:51 pm (fblackmo) employee came into contact with poison ivy while supervising tree cutting crew. Supervisor: brian harper
## 8415                                                                                                 7/11/2005 09:07 am (blgay) employee was trying to lift tamp into the front bucket of a backhoe when he felt a sharp pain in his lower back. Supervisor: fred narron
## 8416                                    7/11/2005 09:22 am (blgay) employee was working on an athey loader, employee bent over to pick up tools. When he raised back up, he hit his head on the hydraulic motor causing laceration to head. Supervisor: scott r. Hancock
## 8417         7/11/2005 09:35 am (blgay) employee was trying to step into the gang truck with the driver side parked next to a ditch. She was pulling herself up, her right leg slipped off causing her to fall while holding onto the handle. She felt a sharp pain in h
## 8418                                                                                                      7/11/2006 08:43 am (fblackmo) employee was sitting at stop sign when, a private vehicle hit him in the rear causing pain to his back. Supervisor: jimmie evans
## 8419                                                                                                       7/11/2006 08:56 am (fblackmo) employee was working on road when, he was bitten or stung by an unknown insect on his stomach area. Supervisor: ronald woodcock
## 8420         7/11/2006 09:05 am (fblackmo) employee was working on backhoe crew on pipe maintenance on us 158. He had been performing manual labor lifting/shoveling when he felt pain in his left shoulder and back area. When he was walking back to the truck he star
## 8421                                                                                                             7/11/2006 09:17 am (fblackmo) employee found a tick bite on his waist area, the following day a rash formed were he was bitten. Supervisor: bruce myers
## 8422                                                                                                                                                     7/11/2006 09:31 am (fblackmo) employee was bitten by a tick during fieldwork outside. Supervisor: carla dagnino
## 8423                                                                                                7/11/2006 09:42 am (fblackmo) employee was lifting fuel can to refill fuel tank on air compressor when, he felt a sharp pain in lower back. Supervisor: jimmy ammons
## 8424                                                            7/11/2006 09:52 am (fblackmo) employee was securing a backhoe to a trailer and did not realize that his right hand was between the binder chain and the backhoe tire. Supervisor: william r. Robbins, jr
## 8425                                                                                       7/11/2006 11:16 am (fblackmo) employee was cutting trees and brush with chainsaw when, he was felt something (spider) bite or sting him on the back. Supervisor: s. G. Dillon
## 8426                          7/11/2007 01:10 pm (fblackmo) employee was operating a power drill auguring a hole in aluminum sign. The bit became stuck and caused employee to loose control of the drill twisting his finger (4th on right hand). Supervisor: jim dilda
## 8427              7/11/2007 02:35 pm (fblackmo) employee suspects that she has carpal tunnel syndrome to the right hand but does not indicate an injury by accident. Supervisor: michelle hinton 7/11/2007 02:47 pm (fblackmo) can pay bills up to July 10, 2007 only. S
## 8428                                                                                                                               7/11/2007 04:04 pm (speedin) employee was sitting in a tandem when something bite/stung him on his right arm. Supervisor: mike walden
## 8429                                                                       7/11/2007 04:45 pm (speedin) employee was cutting tee from roadway which was covered with kidzu and poison oak. He didn't see the poison oak until he rolled it over. Supervisor: rick gordan
## 8430                                                   7/11/2007 10:28 am (speedin) employee was cutting tree with chainsaw to remove from roadway on tate road. He came in contact with poison ivey and later went to seek medical attention. Supervisor: f. E. Roberts
## 8431                                                                                                                                                       7/11/2007 12:36 pm (fblackmo) employee cut left index finger while opening a window. Supervisor: s. H. Kinner
## 8432                                               7/11/2007 12:48 pm (fblackmo) employee was driving a dot truck when, he hit a ditch to avoid hitting the car in front of him (car had no brake lights on). Employee felt pain in his left arm. Supervisor: harry vann
## 8433                                        7/11/2007 12:58 pm (fblackmo) employee was guiding pipeline to be installed with guide rope when, he tripped and stepped on a nail causing injury to left foot. Supervisor: louis wetherington 3/10/2008 01:37 pm (sjerniga)
## 8434                                                                              7/11/2011 11:51 am (barnes) employee was removing tree limbs from right of way. He slipped on wet grass and a sharp cut limb stuck into employees left leg. Supervisor: randall howell
## 8435           7/11/2011 12:11 pm (barnes) employee was standing on top of a pipe and inserting a hose. Employee's foot became tangled with a vine or snag causing him to lose his footing and fall to the creek bed below. Employee injured his back. Supervisor: kevin
## 8436        7/11/2011 12:30 pm (barnes) employee was helping change a motor grader blade. The last bolt would not come off. While loosening the last bolt, the bolt broke causing the motor grader blade to fall and hit employee on the left wrist. Supervisor: h. G ti
## 8437                                                                                7/12/2005 08:47 am (fblackmo) employee was measuring proper location of catch basin when, he lost his balance and fell on the inside corner of cement block. Supervisor: darrick lee
## 8438         7/12/2007 01:10 pm (speedin) employee was working with a grade crew and was putting water in the water tank. The crew was working in an area where the grass was high. Employee found the tick at home that night, and pulled it off. Two nights later, the
## 8439                                         7/12/2007 01:29 pm (speedin) employee was cutting a stump after the trees where cut down and there was a stump that had poison oak on it so he cut it off then cut the stump. It got in his eyes. Supervisor: r. E. Motcalf
## 8440         7/12/2007 04:11 pm (speedin) employee was traveling north on us 421 in tenn. To maymead plant for a load of abc stone. Kenneth moody driver of state vehicle came around a curve and a private vehicle was in his lane. Ncdot driver went left, but still h
## 8441                                                                7/12/2007 04:28 pm (fblackmo) employee was removing bolts in front push bumper, the bumper slipped off frame and trapped hand between frame and bumper mashing at wrist. Supervisor: charles watkins
## 8442                                                                                                                                 7/12/2007 04:45 pm (fblackmo) employee was raking stones in driveway when, he felt pain in his lower back. Supervisor: a. L. Person
## 8443                                                                                7/12/2007 09:32 am (speedin) employee was working on sr 1521(onion mountain) using a chainsaw clearing right a way, when he come into contact with poison ivy. Supervisor: brad long
## 8444         7/12/2007 11:39 am (speedin) employee was walking the project during a final acceptance review of a project. This required entering into grass shoulder areas other high grass areas to review of a project. This required entering into grass shoulder are
## 8445         7/12/2011 04:02 pm (barnes) employee states that on 6/14/2011, he was running a chain saw cutting down trees when he felt something bite him on his wrist. He states that he was wearing gloves. However, when he scratched the area on his wrist it became
## 8446         7/12/2011 05:07 pm (barnes) employee was looking for property corners in wooded area with lots of vegetation and poison oak/ivy. Later that night he became itchy and broke out into a rash. Employee had rash on his face, both arms and swelling around t
## 8447                  7/12/2011 05:27 pm (barnes) employee was working on sr 1209 directing an asphalt truck that was pouring asphalt into a sled. Employee was standing behind the truck when his right eye became irritated and burning. Supervisor: kevin whittingon.
## 8448                                                                                                                  7/13/2004 02:24 pm (fblackmo) employee states on form 19 while hand weeding flower bed she was bitten on both legs by ants. Supervisor: keith hill
## 8449                                                                                          7/13/2004 02:35 pm (fblackmo) employee states on form 19 that he was using citrus product which later developed into a chemical burn on right hand. Supervisor: herb grant
## 8450                7/13/2004 02:45 pm (fblackmo) employee states on form 19 he was walking out of door when, his foot caught the lip of the door jam. Employee stumbled trying to prevent the fall when the injury occurred to his right ankle. Supervisor: m. S. Reese
## 8451                                                                                           7/13/2004 02:55 pm (fblackmo) employee states on form 19 he was cutting bolts off of bridge rails when he came into contact with poison ivy. Supervisor: tim k. Southward
## 8452                                                                                7/13/2004 11:27 am (fblackmo) employee states on form 19 that " walking with tar kettle and turned to go into opposite direction and felt pain in back". Supervisor: randall jackson
## 8453                                                      7/13/2004 11:44 am (fblackmo) employee states on form 19 moving grates, one started to fall off pile onto maintenance yard when, employee grabbed with left hand it pulled his wrist. Supervisor: w. K. Jarman
## 8454                 7/13/2004 11:59 am (fblackmo) employee states on form 19, operating the steel asphalt roller the shoulder gave away causing roller to turn over. Employee hit his head on roll over bar which also caused pain in is neck. Supervisor: g. M. Taylor
## 8455                7/13/2004 12:15 pm (fblackmo) employee states on form 19 while paving on state road he several ticks on multiple body parts. Employee developed a fever on 7/3/04 and saw a doctor on 7/4/04. Rocky mountain spotted fever. Supervisor: j. H. Ensley
## 8456          7/13/2004 12:38 pm (fblackmo) employee states on form 19 he was traveling south on I-95 driving a crewcab towing a trailer with lawn mower. Employee merged off of -95 onto the grass median to attempt to cross median at an authorized vehicle crossing.
## 8457          7/13/2004 12:55 pm (fblackmo) employee states on form 19 another employee (leasor) sprayed chemicals to help control the spiders and other pests in the office when, employee started to experience burning throat, tightening chest, swollen tongue. Empl
## 8458                                                                                                                                    7/13/2005 02:47 pm (fblackmo) employee states while shoveling asphalt he, felt pain in his lower back. Supervisor: t. S. Bozeman
## 8459                                                                                                   7/13/2005 03:11 pm (fblackmo) employee was placing files into file cabinet when, he hit his right elbow on the open file cabinet drawer. Supervisor: joyce wilson
## 8460                                                                                     7/13/2005 10:58 am (fblackmo) employee states that while operating a mowing tractor he, felt pain in his right hand while reaching to close window. Supervisor: roger carpenter
## 8461         7/13/2005 11:22 am (fblackmo) employee states he was having problems with his wrist and shoulder area and thought it might be work related. According to paperwork released to office he has been seeing a doctor for the problem since 03/18/04. Superviso
## 8462                                                                                                                                               7/13/2005 11:37 am (fblackmo) employee was crossing ditch when, he twisted his left ankle. Supervisor: donald pearson
## 8463                                                                                     7/13/2005 12:00 pm (fblackmo) employee was cutting limbs on right of way with slope mower and dragging them across road and putting them near a fence. Supervisor: t. P. Finger
## 8464                                                                                                                    7/13/2006 09:10 am (fblackmo) employee was weedeating when, grit/gravel went under safety glasses and into his left eye. Supervisor: doug martin
## 8465                                                                                                                7/13/2006 09:22 am (fblackmo) employee was removing nut with wrench from a collar when, he felt pain in his abdomen area. Supervisor: d. R. Alligood
## 8466         7/13/2007 08:34 am (speedin) employee was working on a patching crew that was working on I-85. Employee bent over to move the rubber bases that go on the bottom of traffic barrels. They were holding insulated tarps that were covering concrete. Mr. Ben
## 8467            7/13/2007 09:03 am (speedin) employee was drilling a nailer board, when drill bit caught causing drill to wist, and throw employee between beams, hitting his left forearm. Drill bit hanging n in steel, causing drill to spin. Supervisor: terry davis
## 8468                                                                                                          7/13/2010 02:13 pm (fblackmo) employee was walking around flat bed truck to get a trash bag when, his right ankle rolled over. Supervisor: p. P. Mansfield
## 8469                                                                      7/14/2004 02:14 pm (fblackmo) employee states on form 19 that the hoist was not centered over load when, the hoist block swung back striking employee on right thumb. Supervisor: j. C. Gunter
## 8470                                                                                                         7/14/2004 02:25 pm (fblackmo) employee states on form 19 that while working in the field he came into contact with poison ivy. Supervisor: mojdeh masihpour
## 8471                                                                                                                   7/14/2005 11:28 am (fblackmo) employee states while placing bar light onto pallet she, felt pain in her lower back. Supervisor: ronald e. Speight
## 8472                                                                                                       7/14/2005 11:36 am (fblackmo) employee was picking limbs and brush loading them into dump truck when, he was bitten by chigger bugs. Supervisor: j. P. Ingram
## 8473                                                                                                                                       7/14/2005 11:47 am (fblackmo) employee states he stepped in a hole and twisted his back. Supervisor: william e. Mcclendon, jr
## 8474                                                7/14/2005 12:38 pm (fblackmo) employee was pulling himself up on motor grader to fuel it when, he felt pain in his back. Supervisor: robert e. Brake 8/17/2005 01:52 pm (fblackmo) can pay bills up to 8/15/05 only.
## 8475                                                                                            7/14/2006 01:27 pm (fblackmo) employee is experiencing pain in right wrist due to years of working with computer. Carpal tunnel syndrome. Supervisor: richard d. Hensley
## 8476                                                                                                                7/14/2006 01:39 pm (fblackmo) employee was performing pipe inspection crawling to exit pipe when, he felt pain in his back. Supervisor: mark blalock
## 8477                                                                                                                                             7/14/2006 01:56 pm (fblackmo) employee was paving when, he found a tick on his right leg. Supervisor: c. W. Bridgers jr
## 8478                                                                              7/14/2006 08:28 am (fblackmo) employee was tailgating stone on a dirt road when, vehicle overturned causing a knot on right side of head & bruised right hand. Supervisor: clyde adams
## 8479                                                                                                                7/14/2006 08:41 am (fblackmo) employee was removing plow points with air wrench when, he cut his center finger on left hand. Supervisor: chris crump
## 8480                                                  7/14/2006 08:56 am (fblackmo) employee was mowing maintenance yard. Outside temp was 84%. Employee started experiencing shortness of breath, excessive perspiring, and rapid heart rate. Supervisor: richard bland
## 8481                                                                                                     7/14/2006 09:10 am (fblackmo) employee was bent over pulling weeds when, taller grass stalk got into his left eye under safety glasses. Supervisor: derek smith
## 8482         7/14/2008 09:23 am (blgay) employee was asked to get a sign out of the back of the truck and walk back up the road and flag traffic. Employee said the sign became stuck behind something in the truck, and he couldn't get it loose. A few minutes had pas
## 8483                                                                  7/14/2008 09:39 am (blgay) employee was stepping up onto gas tank, caught foot on tarp which came loose and employee fell backward to ground and struck his head and back. Supervisor: tim scruggs
## 8484                                                                                                                                                    7/14/2008 09:49 am (blgay) employee removed a tick on his left leg that was embedded. Supervisor: randy mckinney
## 8485         7/14/2008 10:09 am (blgay) employee was hauling off debris and assisting asphalt patch crew. Employee got tack on his shoe from working around asphalt. Employee stated he tried to clean the tack off his shoe by rubbing it in the dirt. When employee tr
## 8486          7/14/2008 10:21 am (blgay) employee was collecting load tickets from trucks. Employee was determining station number to put on ticket, when she saw another (maymead employee) guy pointing behind her. When she turned to look and before she could move,
## 8487                                            7/14/2009 01:50 pm (fblackmo) employee was connecting a shackle to the ball hook on a 15 ton crane. Employees hand was smashed between a h-pile and headache ball hooked to the crane line. Supervisor: timothy everette
## 8488          7/14/2009 02:02 pm (fblackmo) employee was attempting to reposition a sign in the back of pickup truck in an effort to keep it from blowing off during travel. Standing on the side of the vehicle and reaching over the side to loosen the appeared to be
## 8489                                                                                                     7/14/2009 02:17 pm (fblackmo) employee was loading rebar on a truck. A piece of rebar struck employee on left forearm causing a scratch. Supervisor: leon gross
## 8490                                                                                                                       7/14/2009 02:27 pm (fblackmo) employee was cleaning a piece of equipment when, she came into contact with poison ivy. Supervisor: j. R. Price
## 8491                                                                                                                 7/14/2009 02:42 pm (fblackmo) employee was walking on a construction project when, he stepped in a hole twisting left knee. Supervisor: j. D. Allen
## 8492                                                  7/14/2009 02:55 pm (fblackmo) employee was crossing street to go in building when, she stepped in hole and tripped over curb causing injury to her right knee, wrist, and left ankle. Supervisor: eual m. Williams
## 8493                                                                                                                        7/14/2009 03:08 pm (fblackmo) employee was driving with window down when, foreign matter got into her right eye. Supervisor: marshall holley
## 8494                                                                                                                                             7/14/2009 03:29 pm (fblackmo) employee was lifting a monitor when, he felt pain in his back. Supervisor: cecil l. Jones
## 8495          7/14/2009 05:05 pm (fblackmo) employee was working on state road 1557 clearing vegetation from around sign, he did not notice the poison ivy. On sunday 7/5/09 his left arm between the elbow and wrist began to itch. On 7/8/09 james tyler informed empl
## 8496                                                         7/14/2009 05:21 pm (fblackmo) employee was walking out to perform a road test when, she stepped in fire ants. Employee has bites on both legs. Supervisor: dolphus marshburn 06/20/2011 08:36 am (lvaughan)
## 8497                                                                                      7/14/2009 05:33 pm (fblackmo) employee was cleaning up a tree from nc 12. He was putting limbs in loader bucket when, he felt pain in his left hip. Supervisor: robert winslow
## 8498                                                                        7/14/2009 05:48 pm (fblackmo) employee was walking toward concrete testing area when, she stepped down ( about a 4" drop) off the asphalt she felt pain and heard a pop in her right knee. )
## 8499                                                                                    7/14/2011 03:00 pm (fblackmo) employee was other employees push a ford truck that had broken down onto the trailer when, he felt pain in his left ankle. Supervisor: a. C. Heath
## 8500         7/14/2011 03:21 pm (fblackmo) employee was traveling on state road when he over corrected and ran off the left side of the road. The truck over turned and came to rest on the drivers side of the highway. Employee felt pain in his head, chest area, and
## 8501                                                                                                                         7/14/2011 10:24 am (fblackmo) employee had a altercation with another employee. Employee injured his right knee. Supervisor: george basnett
## 8502                                                                                            7/15/2011 03:54 pm (fblackmo) employee states possible tick bite to her right arm near elbow area. Employee advised that tick was not found. Supervisor: cadmus capehart
## 8503                                                                                                                        7/15/2011 04:16 pm (fblackmo) employee states he hurt his back while using auger to drill holes in wetlands. Supervisor: rachelle beauregard
## 8504                                                                                                       7/15/2011 04:37 pm (fblackmo) employee was removing glove box screws from truck when one of the springs released hitting his left hand. Supervisor: joe gates
## 8505                                                 7/16/2004 08:59 am (fblackmo) employee states on form 19 that he was lifting a 5 gallon walter cooler onto the back of a flatbed truck when, he felt something in his stomach area pop. Supervisor: ronald woodcock
## 8506          7/16/2004 09:18 am (fblackmo) employee was placing rip-rp installing check dams which involves bending over and lifting. Employee states on 19 that his back started hurting and he took a break. He started to work again and the pain became worse in hi
## 8507                                                                            7/16/2004 09:36 am (fblackmo) employee states on form 19 that he was picking up concrete cylinders off the ground when, he was bitten by a spider on right arm. Supervisor: m. W. Currie
## 8508                                                                                                  7/16/2004 09:51 am (fblackmo) employee states on form 19 that he was was exiting truck when, he closed the door on his left little finger. Supervisor: hilton wade
## 8509                                              7/16/2008 03:09 pm (blgay) employee was in the process of recovering previously staked right of way points. While walking in wooded area, employee was struck in the left knee by a thorn. Supervisor: richard hensley
## 8510         7/16/2008 03:21 pm (blgay) employee was pulling weeds in a plant bed along broadway street in asheville. Employee stopped to rest, laying his right arm across his abdomen. He felt a sharp pain like an insect bite or sting on his right forearm. Later I
## 8511         7/16/2008 03:30 pm (blgay) employee was making a slight cut in a pine sapling that was in a pile of debris to be chipped. The limb did not break, so he cut a few small sapling out from underneath the limb. His saw got hung, so when he pushed the sapli
## 8512                                                         7/16/2008 03:39 pm (blgay) employee was sitting on a block of wood, when something bit his finger. Finger swelled, got numb and employee felt muscles contracting and dizziness. Supervisor: d. L. Ferguson
## 8513                                                                                               7/16/2008 08:24 am (fblackmo) employee was picking up log during tree removing off of right of way when, he felt pain in his left shoulder. Supervisor: t. S. Bozeman
## 8514         7/16/2008 08:35 am (fblackmo) employee was assisting with a 12 x12 jacking cap when it rolled during a sliding motion pinching his right pinky finger. Employee quickly pulled out his ringer rolling the skin back. Employee was wearing gloves on his han
## 8515          7/16/2008 08:45 am (fblackmo) employee was installing a sign on blueberry road when he stepped on a fire ant hill which was covered with brush and grass. Employee received several ant bites on both legs. His left thigh is red and swollen. Supervisor:
## 8516                                                                                                                        7/16/2008 08:59 am (fblackmo) employee was working in tall grass when, he found a tick bite under his left arm. Supervisor: stephen winstead
## 8517                                                                                                            7/16/2008 09:33 am (fblackmo) employee stepped off sidewalk onto curb to conduct a road test when, she twisted her right ankle. Supervisor: marcia smith
## 8518                                                                                                  7/16/2008 09:52 am (fblackmo) employee was performing removal of vegetation around guard rail and signs when, he found multiple tick bites. Supervisor: s. R. Ross
## 8519         7/16/2008 10:13 am (fblackmo) employee was operating a excavator loading storm debris. While lifting a large tree, the tree slipped from the grip of the excavator, swung around, and hit the left side of the excavator. Employee had the door open so the
## 8520                             7/16/2008 10:47 am (fblackmo) employee was performing annual testing of aerial devices in division 14 when, trying to climb into the truck bed, he slipped, and fell contacting the bumper with his rib cage. Supervisor: jerry bagwell
## 8521                  7/16/2009 03:21 pm (fblackmo) employee stated while trying to find an airport project file she had to move two large boxes and a loaded luggage cart in order to access the file drawer. Supervisor: richard j. Walls 8/7/2009 03:17 pm (fblackmo)
## 8522                                                                                                                       7/16/2009 05:43 pm (fblackmo) employee strain ac joint in left shoulder while shoveling dirt rocks from parking lot. Supervisor: jimmy creech
## 8523                                               7/16/2009 09:26 am (fblackmo) employee was moving traffic cones in a work zone. Employee picked up cone and turned to place it when, co-worker in pick up truck back over his left foot. Supervisor: codertt mcmillan
## 8524                                                                                                                                                              7/16/2009 09:40 am (fblackmo) employee has experienced hearing loss in right ear. Supervisor: don rich
## 8525                                   7/16/2009 09:51 am (fblackmo) employee was cutting trees on state road 1573 he was walking down to truck with pole saw in hand when, he stepped on un-known object twisting his right knee and ankle. Supervisor: ronnie woodcock
## 8526                                                                                                                                                                                  7/17/12 resident scratched on l. Forearm-7/26/12 resident scratched r. Forearm. ()
## 8527                                                    7/17/2006 02:33 pm (fblackmo) employee was walking along nc 66 doing a pavement condition survey. He stepped off the shoulder into the grass and turned his ankle and fell into a ditch. Supervisor: mike patton
## 8528                    7/17/2008 10:43 am (blgay) employee was taking tire off rim. Employee had front side over rim. With tire bar behind both beads to get sides to outside of rim. When employee lifted up on bar, he hurt left lower back. Supervisor: d. F. Holman
## 8529         7/18/2005 02:41 pm (blgay) employee was using an air roofing nail gun installing shingles on the new tyrrell county maintenance yard office. He was in a tight area where two roof lines came together. He had just shot a nail and was lifting up on the n
## 8530                                                                                                                                  7/18/2005 09:38 am (fblackmo) employee was moving wood from stack when, he felt pain in his abdomen area. Supervisor: ken anderson
## 8531                                                                                                               7/18/2006 08:53 am (fblackmo) employee was getting into his vehicle when, a bee flew in and stung him on the right eye lid. Supervisor: a. R. Mcmanus
## 8532         7/18/2006 09:04 am (fblackmo) employee was removing mower draft beam from tractor with a stahl crane lifting chain. The chain slipped on pin causing the beam to twist. Employees hand was caught between the beam and ground. Supervisor: darrell j. Johns
## 8533                                                                                                                               7/18/2006 09:16 am (fblackmo) employee was flagging traffic in the heat when, he became weak and nauseated. Supervisor: r. D. Pittman
## 8534                                                                                                                                7/18/2006 09:25 am (fblackmo) employee was walking to trim tree when, a bee stung him on the left eye lid. Supervisor: b. L. Mcfalls
## 8535                                                                                                   7/18/2006 09:45 am (fblackmo) employee was pulling tailgate back when, his finger slipped and got caught between the tailgate and truck. Supervisor: sarah foster
## 8536                                                                                                7/18/2006 09:55 am (fblackmo) employee was cutting right of way around culvert when, he came into contact with poison ivy on hands and arms. Supervisor: dwight eudy
## 8537                                                                                                                   7/18/2007 02:28 pm (fblackmo) employee was using a drill when, it got hung in the steel, and twisted his right hand. Supervisor: jeremy b. Creech
## 8538                                                                                                                        7/18/2007 02:45 pm (fblackmo) employee was assisting with loading a truck when, he felt pain in his lower left leg. Supervisor: j. S. Farrow
## 8539                                               7/18/2007 03:01 pm (fblackmo) employee was dismounting the distributor and lost her footing causing her to fall backwards. Her left foot was caught in the steps causing injury to her knee. Supervisor: grady raynor
## 8540                                                                                                                                     7/18/2007 03:51 pm (fblackmo) employee was using weed eater when, he came into contact with poison ivy. Supervisor: mike ennett
## 8541                                                                              7/18/2007 05:08 pm (speedin) employee was cleaning out the straw blower and slipped on some loose gravel and twisted his knee and complains of lower back pain. Supervisor: tim absher
## 8542                                                                                                                               7/18/2008 09:13 am (blgay) employee was putting his work gloves on, when a yellow jacket stung his right hand. Supervisor: dale lofin
## 8543                                                                                                 7/18/2008 09:26 am (fblackmo) employee fell to stop at a stop sign, turned into on coming traffic. Employee felt pain in neck, chest, and leg. Supervisor: m. Oates
## 8544                                       7/18/2008 09:40 am (fblackmo) employee was walking near drill rig when, he stepped on a fire ant mound that was hidden by tall grass. Had an allergic reaction/swelling of upper and lower body. Supervisor: dean argenbright
## 8545                                                                                                                                                    7/18/2008 09:49 am (fblackmo) employee was closing gate when, he was struck by lighting. Supervisor: ricky feher
## 8546           7/19/2004 09:37 am (fblackmo) employee states on form 19 that he was traveling north on nc 50 when, a private vehicle traveling south(howard road) turned into the path of his vehicle causing the accident. Employee states he experienced pain in his b
## 8547           7/19/2004 09:51 am (fblackmo) employee states on form 19 that he was driving a small dump truck(3822) when, he felt a pulling sensation in left knee when shifting gears. Employee states he was unable to push in clutch due to the pain in his left kne
## 8548           7/19/2004 10:04 am (fblackmo) employee states on form 19 that he was walking to his truck when the back-hoe came by him. The bucket hit him in the back and outrigger caught him in the leg knocking him down into hot asphalt. Employee states he experi
## 8549                                                                         7/19/2004 10:17 am (fblackmo) employee states on form 19 that she was exiting her assigned state vehicle and was stepping up on curb when, her left knee twisted. Supervisor: t. S. Collins
## 8550           7/19/2004 11:12 am (fblackmo) employee states on form 19 that he was assisting forklift operator (employed by lowe's)by sliding supports under the sheet rock. The lowe's employee got off the forklift to help. The lowe's employee asked another lowe's
## 8551           7/19/2004 11:33 am (fblackmo) employee states on form 19 that he was lifting manhole cover on back of truck when, the cover fell on his thigh area causing a big blood clot. Employee states he was treated at pamlico medical center on the same day and
## 8552                       7/19/2004 11:52 am (fblackmo) employee states on form 19 that he was participating in physical training at the inspector basic school. Employee was completing the 2 mile run when, he felt pain in his left calf muscle. Supervisor: k. King
## 8553                                                                                                    7/19/2005 03:10 pm (blgay) employee was standing in the hot sun writing information when he passed out due to dehydration and exhaustion. Supervisor: ron graham
## 8554                              7/19/2005 03:28 pm (blgay) employee was lifting a drainage chamber. Employee states his foot was between another chamber and the side of truck bed, while lifting he turned with the load, twisting left knee. Supervisor: mike ennett
## 8555         7/19/2005 12:40 pm (blgay) employee was cutting right-of-way around bridge. Ground was uneven and he reached to grab tree to get his balance. Another employee (robert plyler) came down with bushax, just at that same time, and hit employee on the right
## 8556                                                                                                                             7/19/2006 01:51 pm (fblackmo) employee was bending & stooping while helping perform a pavement road test. Supervisor: j. E. Blackwelder
## 8557                                                                                                                                                    7/19/2007 03:01 pm (speedin) employee was shoveling asphalt and felt pain in lower back. Supervisor: t. M. Smith
## 8558                                                                                                                 7/19/2007 03:32 pm (speedin) employee was painting the roof parts warehouse when he slid off the roof and fell on the dirt. Supervisor: david moore
## 8559          7/19/2007 04:15 pm (speedin) employee was driving a state vehicle. While backing the state vehicle down an embankment grade, the vehicle got too close to the edge and the embankment gave way, causing the vehicle to slide down slope and flip twice. Su
## 8560                                      7/19/2007 09:56 am (speedin) employee was drilling a hole with a hammer drill in concrete footers. The drill bit caught on rebar causing the drill to stop suddenly when the employees arm got twisted. Supervisor: ricky ball
## 8561         7/19/2007 10:25 am (speedin) employee was waiting to weed eat at guardrail. While waiting he decided to step on the back side of a guardrail. In doing so he stepped on some rip rap that had been covered by brush causing the employee to fall. Superviso
## 8562              7/19/2007 11:24 am (speedin) employee was standing on the tire of vehicle, he had right finger in door when another employee shut door, closing his finger in the door. Employee was attempting to clean the windshield. Supervisor: matthew oliverson
## 8563                                                                                              7/19/2010 02:14 pm (fblackmo) employee was installing silt fence on state road when, he found tick on his right calf and center of his back. Supervisor: m. E. Edwards
## 8564                                                                                                            7/19/2010 02:29 pm (fblackmo) employee was dismounting a broom tractor when his foot slipped causing injury to his left knee. Supervisor: david chrisawn
## 8565                                                                                                                                                         7/19/2010 02:42 pm (fblackmo) employee hit her left wrist on her open desk drawer. Supervisor: daniel ervin
## 8566                                                                                           7/19/2010 02:58 pm (fblackmo) employee was operating a pavement saw when, he felt a sharp pain in his right shoulder area while lifting up handles. Supervisor: kep biggs
## 8567        7/19/2010 03:09 pm (fblackmo) employee was rolling the brake rotor on a crew cab to check a noise complaint. While rolling the rotor he got his little finger on left hand caught between the otor and the caliper mounting bracket. Supervisor: c. G. Inman
## 8568                                                           7/19/2010 03:20 pm (fblackmo) employee was dismounting truck using three point stance. Employee had stepped off onto uneven ground when she released hand holds; twisted ankle. Supervisor: b. R. Knowles
## 8569                                                             7/19/2010 03:30 pm (fblackmo) employee finished pouring concrete in hole, he stepped out of hole that was about two inches high, and pulled the arch in his right foot. Supervisor: tommy g. Culbertson
## 8570                                                                                                                       7/19/2010 03:42 pm (fblackmo) employee was clearing land when bush axe when, poison ivy got into both eye and arms. Supervisor: c. D. Franker
## 8571         7/19/2010 11:29 am (fblackmo) employee stated on 7/8/10 "hurt left shoulder while getting in flatbed; turned with cooler when shoulder popped". On 7/9/10 he stated "hurt shoulder after getting into flatbed and reaching around to move cooler to the fro
## 8572                                                                                                     7/19/2010 11:47 am (fblackmo) employee was in the process of sitting down in chair to answer phone when he felt pain in his left knee. Supervisor: w. K. Dodson
## 8573                                                                                                                      7/19/2010 12:23 pm (fblackmo) employee was preparing his torch to repair step on truck when, he burned his left hand. Supervisor: james conner
## 8574         7/19/2010 12:51 pm (fblackmo) employee was standing on the wheel guard of the bridge looking over to check on employees who were painting the bridge when, his foot slipped causing his to fall. Employee felt pain in his right shoulder. Supervisor: stev
## 8575                                                      7/2/2004 02:00 pm (fblackmo) employee states on form 19 that the injury of her left foot and right shoulder occurred while moving equipment from one office to another. Supervisor: david fitts and todd levey
## 8576           7/2/2004 08:20 am (fblackmo) employee states he was using a bucket truck to cut a tree when, the tree feel on bucket landing on his right thumb. The end of thumb on right hand was mashed with the skin and nail torn off. Skin graft was done to try an
## 8577                                                        7/2/2004 10:25 am (fblackmo) employee was removing lug nut form trailer tire when, nut flew off striking employee on his right thumb. Employee cut right thumb stated on form 19. Supervisor: james d. Lewis
## 8578                    7/2/2004 10:38 am (fblackmo) employee states while cutting on embankment on haul road, the bulldozer gave way due to mud. Stated on form 19 employee slid off embankment striking his head on door frame cutting left ear. Supervisor: m. L. Poe
## 8579           7/2/2004 10:55 am (fblackmo) employee was operating steel wheel roller just beyond crest of hill when roller lost traction and began to slide down the hill. Employee attempted to regain control of the roller when, roller ran off edge of pavement and
## 8580                                               7/2/2004 11:06 am (fblackmo) employee states on form 19 that he came into contact with poison oak while cutting growth around bridge. Employee has poison oak on head, arms, back, and legs. Supervisor: c. K. Woodby
## 8581                                          7/2/2004 11:15 am (fblackmo) employee states on form 19 that, he came into contact with poison ivy while cutting right of way. Employee states poison ivy on forearms, back, and abdomen area. Supervisor: bobby berryhill
## 8582                                                                                          7/2/2004 11:24 am (fblackmo) employee states on form 19 that while removing tree from road way he came into contact with poison ivy on both arms. Supervisor: lin reynolds
## 8583                                                                7/2/2004 11:41 am (fblackmo) employee states on form 19 that while working in area of some high bushes that he was bitten on both arms and chest by some type of insect. Supervisor: jerome locklear
## 8584                                                                                                                7/2/2004 11:54 am (fblackmo) employee states on form 19 that she was bitten by an un-know insect on her left hand and fingers. Supervisor: al grandy
## 8585         7/2/2007 01:36 pm (speedin) employees were moving an aluminum scaffold suspended from the lbeams on a metal roller hangar system under the bridge. The scaffold would get out of alignment and bind while in transit. The employee said this created stress
## 8586         7/2/2008 10:58 am (blgay) employee was checking the hour reading on the motor grader located underneath the seat. He opened the door to the grader and began to read meter, unknown to employee, door began to shut while he was reading the meter. Employe
## 8587         7/2/2008 11:12 am (blgay) employee was clearing side of dump bed on tandem truck, when she lost footing, slipped and fell to the ground. Employee landed on her tail bone and struck her left hand ring finger on an unidentified object. Supervisor: ke pr
## 8588                                                     7/2/2009 08:40 am (blgay) employee was riding in back seat of pickup, when driver backed into the side of a bridge. Employee has neck and shoulders injury. Supervisor: herbert ramey 7/2/2009 08:45 am (blgay)
## 8589                                                     7/2/2009 08:55 am (blgay) employee was surveying job in caldwell county at the top of a slope, when his foot slipped, causing him to fall down embankment and injury his right knee. Supervisor: bethany elmore
## 8590                                                                                                                                        7/2/2009 09:11 am (blgay) employee had tick bite on left side of chin. Supervisor: harold williams 7/9/2009 03:05 pm (blgay)
## 8591         7/20/2005 02:37 pm (blgay) employee was dismounting from dump truck utilizing three points. Both feet were firmly on the ground. Employees foot then rolled over and he heard a rip. Employee had already dismounted and mounted the tuck a few times at th
## 8592        7/20/2005 02:58 pm (blgay) employee was putting traffic control signs into sign rack on crewcab truck. Employees hand was resting on corner of truckbed just as 3rd employee was closing tailgate. Little finger on left hand was closed into tailgate. Supe
## 8593                                              7/20/2005 03:25 pm (blgay) employee was driving when his truck was hit in the right rear by a private vehicle the truck went to the right and employee jerked to avoid hitting another vehicle. Supervisor: roger furr
## 8594                                                                                                    7/20/2005 03:42 pm (blgay) employee was cutting grass with a weed eater and a piece of rock pebble or something hit him in the jaw. Supervisor: eddie gurganious
## 8595                                               7/20/2006 04:01 pm (bhenders) pov stopped abruptly in front of sov. Employee failed to stop in time to avoid hitting pov from behind. Employee was given a citation for failure to reduce speed to avoid an accident.
## 8596                                                                                      7/20/2007 10:09 am (speedin) employee was loading roller on trailer and the roller slipped off trailer ramp and pinned employee against the sweeper. Supervisor: walter burton
## 8597                                                            7/20/2007 10:32 am (speedin) employee was waking backwards trying to avoid backhoe. While walking backwards, the employee fell into the ditch. Supervisor: david gross, tsi 7/20/2007 10:34 am (speedin)
## 8598         7/20/2009 01:05 pm (blgay) employee was assisting another employee in loading asphalt roller on trailer. As roller came up and onto the tilt trailer. Employee was trying to place pin in trailer, when another employee allowed the roller to pinch his le
## 8599         7/20/2009 01:16 pm (blgay) employee was clearing right of way along sr1103. Employee noticed blade in bush axe was loose and decided to tighten the bolts. Employee was holding a wrench on the bolt and bush axe with his left hand. Meanwhile, employee w
## 8600         7/20/2009 01:27 pm (blgay) employee was clearing right of way along nc109 north near intersection sr1134. Employee was utilizing chain saw and bush axe while removing vegetation. Crew completed their daily assignment and reported back to the yard. Emp
## 8601         7/20/2009 01:36 pm (blgay) employee was mounting machine. Machine operator accelerated and then decelerate, causing employee to go forward across walking platform of machine, striking objects on machine that are not used. Employee hit his right knee a
## 8602         7/20/2009 01:46 pm (blgay) employee had parked dump truck and trailer along sr1791 at the work site in orange county. Employee proceeded to unchain the steel wheel roller from the trailer and as he was reaching around to remove the chains, he felt a s
## 8603             7/20/2009 02:21 pm (blgay) employee and his crew were working on a drainage box here on the yard. They had to mix concrete to pour around the drop inlet. Employee was helping move the concrete mixer, when he hurt his back. Supervisor: henry worley
## 8604                                                                                     7/20/2009 02:35 pm (blgay) employee was unhooking arrow board from pickup. Arrow board rolled forward catching left hand, pinning it against bumper. Supervisor: d. M. Pressley
## 8605         7/20/2009 12:11 pm (blgay) employee was working with asphalt crew on I-73/74 patching pavement joints. Employee had been raking and shoveling asphalt and he stated his left wrist started aching after lunch. Employee also stated his left wrist had cont
## 8606                                                                              7/20/2009 12:36 pm (blgay) employee hurt right arm while leveling asphalt in dug out hole with asphalt loop. Employee over worked right arm and strained it bad. Supervisor: h. S. Lee
## 8607          7/20/2009 12:57 pm (blgay) employee hit his head on the emergency flashers of the state pickup truck. Strobe lights are mounted on the rear of the truck on each side. Employee was stepping up on the truck to unload a deer at the landfill. Supervisor:
## 8608                                                                                                         7/20/2010 04:18 pm (fblackmo) employee was using chainsaw to cut trees when, tree fell striking him on his right leg (below knee). Supervisor: j. D. Fowler
## 8609                                                                                                                                     7/20/2010 04:31 pm (fblackmo) employee was cleaning shop when trash particles got into his left eye. Supervisor: russell ramsey
## 8610                                        7/21/2004 02:44 pm (fblackmo) employee states on form 19 that he was weed-eating around bridge when, he came into contact with poison oak on his left arm, left side of face, chest, and left leg. Supervisor: j. L. Cornell
## 8611                                                                                7/21/2004 02:54 pm (fblackmo) employee states on form 19 that he was opening a signal light cabinet when, he twisted the wrong way he felt pain in his back. Supervisor: greg godwin
## 8612          7/21/2004 03:04 pm (fblackmo) employee states on form 19 that he was carrying a nuclear gauge to the back steps door because parking spaces was full in front. Employee states he went to lift the gauge and bring into the building he heard a pop and mu
## 8613          7/21/2004 03:48 pm (fblackmo) employee states on form 19 that he was manually hooking up sled to transport to next work area. The bed of swb truck was in raised position and employee was in process of connecting chains so that sled could be raised of
## 8614                                                                                                                    7/21/2004 04:29 pm (fblackmo) employee states on form 19 that while stepping down from truck he twisted his left ankle. Supervisor: jack rollins
## 8615            7/21/2004 11:11 am (fblackmo) employee states on form 19 that while operating mower with window open he, came into contact with poison ivy. Employee states he was breaking out with poison oak on his left arm and upper body. Supervisor: robby taylor
## 8616                                                                                                 7/21/2004 12:15 pm (fblackmo) employee states on form 19 that while connecting shore power he, felt pain in his lower back and stomach area. Supervisor: t. L. Gray
## 8617                                                                                                               7/21/2005 08:34 am (fblackmo) employee pinched his right hand under feed on drill while lowering the auger to the ground. Supervisor: kevin b. Miller
## 8618         7/21/2005 08:50 am (fblackmo) employee was exiting a dump truck on the lower maintenance yard to unhook a roller trailer when, he slipped and landed hard on his left leg. Employee states that he heard a loud popping noise and his knee gave out from un
## 8619         7/21/2008 08:33 am (blgay) employee was parking state truck at job site. Truck was on a slight incline due to parking on resurfacing job shoulders. Employee opened drivers side door to exit, while exiting vehicle he reached across to passenger seat fo
## 8620                                          7/21/2011 08:16 am (fblackmo) employee was operating state own vehicle, while sitting in traffic the vehicle was struck from the rear by another vehicle. Employee felt pain in his back. Supervisor: michael d. Robertson
## 8621                                                                                                                         7/21/2011 08:28 am (fblackmo) employee was exiting a dump truck when her foot slipped and she pulled her right arm. Supervisor: ben mcfalls
## 8622         7/21/2011 08:42 am (fblackmo) employee was lowering exhaust off of generator of the carolina dredge with a chain hoist. Employee set it upright on floor to take chain off and lowered it side ways by hand when, he felt pain in his upper back area. Supe
## 8623         7/21/2011 08:59 am (fblackmo) employee was walking through the room 109 office and stubbed her right fifth toe on a computer printer left on the floor by an it technician. Employee worked her entire shift after she injured her toe but was out June 21,
## 8624                                                                                                                         7/21/2011 09:13 am (fblackmo) employee was loading traffic cones one by one when, he felt pain in his lower back. Supervisor: doug williams
## 8625                                                                                     7/21/2011 09:27 am (fblackmo) employee was moving tree out of the road that had poison ivy on it. Employee experienced skin irritation to both arms. Supervisor: ronnie dilbeck
## 8626                                                         7/21/2011 09:41 am (fblackmo) employee was working on maintenance yard moving some bales of hay in front of the salt bin when, he felt a sharp pain in his lower abdomen area. Supervisor: nanette fogleman
## 8627         7/21/2011 09:54 am (fblackmo) employee was working under a pickup wearing his safety glasses installing a aim system. After lunch he noticed is right eye was irritated. After work that day his eye got worse causing him to seek medical attention. Super
## 8628                                                                                               7/21/2011 10:08 am (fblackmo) employee was removing broken air condition fan belt from vehicle when he cut his center finger on right hand. Supervisor: odell whitney
## 8629                                                                         7/21/2011 10:27 am (fblackmo) employee was loading limbs into back of dump truck when he came into contact with poison ivy on both arms, abdomen area, and chest. Supervisor: shelton james
## 8630         7/21/2011 10:48 am (fblackmo) employee noticed machinist nick clark trying o remove chisel that was stuck in a tire. Mike perkins retrieved a punch and hammer form dennis bryan tool box and began hitting punch to drive the chisel out. A piece of metal
## 8631                                                                                             7/21/2011 11:00 am (fblackmo) employee was surveying along side of highway when he found a tick attached to his abdomen area below belly button. Supervisor: ben upshaw
## 8632                                                                                         7/21/2011 11:59 am (fblackmo) employee was moving shrubbery from one place to another when he turn wrong and heard a pop in his lower back area. Supervisor: david c. Capps
## 8633         7/21/2011 12:18 pm (fblackmo) employee was giving a road test. The customer backed up to let another car back out of parking space and hit another car that was also backing up. Employee felt pain in her lower back and had a headache. Supervisor: hoppi
## 8634                                                                        7/21/2011 12:32 pm (fblackmo) employee was traveling west on zion church road when a private vehicle pulled from a side road sand hit the right side of the truck. Supervisor: phillip eaker
## 8635                                                                                                      7/21/2011 12:46 pm (fblackmo) employee was clearing around bridge with trimmer when he came into contact with poison ivy on both arms. Supervisor: r. A. Baker
## 8636                                                                                                 7/22/2004 08:14 am (fblackmo) employee states on form 19 that while operating chip spreader machine a insect stung him on his right arm. Supervisor: k. D. Register
## 8637           7/22/2004 08:28 am (fblackmo) employee states on form 19 that he was standing on a 24'' rcp in a box culvert measuring pipes and inspecting grout. Employee slipped on on top of pipe dropping down approximately 2'' landing on loose concrete chips twi
## 8638                                                                                                                                          7/22/2005 01:30 pm (fblackmo) employee was weed eating when, he came into contact with poison ivy. Supervisor: a. L. Smith
## 8639                                                                                         7/22/2005 01:43 pm (fblackmo) employee states while removing plug from pump to see if system was air bound, some of the liquid got into his eyes. Supervisor: j. L. King jr
## 8640                                                                           7/22/2005 02:00 pm (fblackmo) employee was cooking lunch for boat crew, while removing meat from grill the wind blew lid down causing a cut to his right hand. Supervisor: robert e. Hill
## 8641                                                                                                                             7/22/2005 02:08 pm (fblackmo) employee was sitting in pickup truck when, he was bitten by insect on right hand. Supervisor: mark stroud
## 8642          7/22/2005 02:43 pm (fblackmo) employee was backing out of a parking space using her left hand to operate the steering wheel. Employee felt a sharp pain radiating up her left arm and wrist. She continued to work the remainder of the day and report the
## 8643                7/22/2005 02:54 pm (fblackmo) employee was loading cones into back of pickup truck when, he felt pain in his right knee. Supervisor: leonard dills 10/26/2005 10:57 am (fblackmo) do not pay any more bills under this claim. *see joyce wilson. See
## 8644                             7/22/2005 03:15 pm (fblackmo) employee was walking down steps, stepped onto sidewalk, left toe snagged on rug, fell forward, landed on left hand, which twisted at wrist, scrapped both knees and right hand. Supervisor: terry dillard
## 8645                 7/22/2005 03:46 pm (fblackmo) employee was removing jack stand from underneath broom tractor. Employee tried to close it when, he lost control of the top part. Top of jack fell hitting his index finger on right hand. Supervisor: e. D. Quintana
## 8646                                                                                                                                  7/22/2005 03:58 pm (fblackmo) employee was conducting p. T. Training when, he felt pain in his right ankle. Supervisor: jeff hovis
## 8647                                                                                                                                                       7/22/2005 04:16 pm (fblackmo) employee states he has a tick bite on his leg and navel. Supervisor: eddie bunn
## 8648                        7/22/2005 09:08 am (fblackmo) employee was picking up a bundle of survey stakes when, he felt pain in his chest area. Supervisor: mike jefferys 8/12/2005 01:18 pm (fblackmo) medical charges incurred up to 07/21/05, will be covered only.
## 8649                                                                                                                                                  7/22/2005 09:35 am (fblackmo) employee was bitten by ticks while working on state road. Supervisor: g. J. Liverman
## 8650                                                                                                                    7/22/2005 09:45 am (fblackmo) employee was cutting brush using a bush cutter with blade when, he cut his right hand. Supervisor: t. G. Culberson
## 8651                                                                                                                                7/22/2005 09:56 am (fblackmo) employee was flagging traffic when, he was stung by insect on his left elbow. Supervisor: william nall
## 8652                                                                                7/22/2005 10:06 am (fblackmo) employee was replacing a sing assembly that had been damaged when, he felt pain in his upper shoulder and neck area. Supervisor: charles m. Jackson jr
## 8653         7/22/2008 01:19 pm (blgay) employee entered the backhoe, sat in the seat, buckled seat belt, and placed his left hand near the door hinge area to brace himself as he shut the door. Since the backhoe was sitting on an incline, as he pulled the door, it
## 8654             7/22/2008 01:30 pm (blgay) employee was removing a dead animal from the roadway and throwing over the side of the truck. As employee was throwing the animal over the truck bed, a piece of debris flew into his left eye. Supervisor: nanette fogleman
## 8655        7/22/2008 03:36 pm (fblackmo) employee was stopped in work zone on us 13, 0. 5 miles south of nc 461. While sitting in traffic a private own vehicle failed to stop and struck another private vehicle in the rear. The second vehicle struck employees vehi
## 8656         7/22/2008 04:13 pm (fblackmo) employee was supervising work being performed at worksite by a vendor. The worksite is a secured site and requires state employee to be present. Employee was closing gate when, her left index finger got caught. Supervisor
## 8657                                      7/22/2008 04:52 pm (fblackmo) employee was in the process of setting stakes for right of way when, he stepped into a hole that was hidden by vegetation causing him to fall and injury his left ankle. Supervisor: t. L. Baker
## 8658                                                                                                                                                 7/22/2009 03:25 pm (fblackmo) employee went to close door on truck when, he hit his left elbow. Supervisor: j. Ross
## 8659                                                                                                    7/22/2009 04:05 pm (fblackmo) employee was flagging traffic on secondary highway when, he came into contact with poison ivy on his arms. Supervisor: jerry kenne
## 8660                                                                                                                         7/22/2009 04:23 pm (fblackmo) employee states sts right ear determined to be work related. Right ear hearing loss. Supervisor: travis mintz
## 8661                                           7/22/2009 09:34 am (fblackmo) employee was walking in grass on curb area when, she stepped down she tripped and fell on her hands, knees, and right side of face. Supervisor: faith stuart 02/11/2010 09:33 am (proberts)
## 8662               7/22/2009 10:15 am (fblackmo) employee was walking around front of private vehicle that had struck the attenuator to check on driver when, the driver move car forward, striking employee, and causing injury to left leg. Supervisor: jamie dukworth
## 8663                                                                                                 7/22/2009 11:07 am (fblackmo) employee was cleaning out loader that she was operating, when she was bitten on the right side of her back. Supervisor: t. S. Bozeman
## 8664                                                                         7/22/2010 10:22 am (fblackmo) employee experienced hearing impairment in both ears due to long term exposure to needle guns, welding machines, a and grinding. Supervisor: marshall coleman
## 8665         7/22/2010 11:18 am (fblackmo) employee went to clean off hopper while climbing the side of truck( in the rain) his foot slipped off the tire causing injury to leg. Employee states he also experienced pain in his back and neck area. Supervisor: michael
## 8666                                                                                       7/22/2010 11:32 am (fblackmo) employee was opening front door when, he tripped on entry mat by the door. Employee felt pain on top of his left foot. Supervisor: bo mcmillian
## 8667                                                   7/22/2010 11:42 am (fblackmo) employee was exiting truck when he missed second step. Employee fell landing on his back. Employee states he twisted knee while trying to avoid the fall. Supervisor: madine barnes
## 8668                                            7/23/2007 03:05 pm (fblackmo) employee tripped over a box that was on the office floor near the entrance of her office door causing her to fall and hit her upper arm and elbow on a bookcase. Supervisor: w. R. Hammond
## 8669            7/23/2007 12:27 pm (fblackmo) employee was working on cabover truck and was attempting to get out of truck when, he slipped falling to the pavement. Employee felt pain in his left shoulder, elbow, and ribs. Supervisor: jesse hansley 11/3/2009 11:33
## 8670                                                                                                                                7/23/2007 12:42 pm (fblackmo) employee was racking asphalt when, he felt pain in his abdomen/ stomach area. Supervisor: james m. Hux
## 8671                                                                                                7/23/2007 12:56 pm (fblackmo) employee was using a machete to clear survey line when, he felt pain in his upper back near right shoulder. Supervisor: j. R. Williams
## 8672                                                                                       7/23/2008 04:16 pm (blgay) employee was helping lift the plate compactor on the back of the crew cab when employee felt a pain in his lower back. Supervisor: kevin hazelwood
## 8673        7/23/2008 04:22 pm (blgay) employee was raking down the asphalt the backhoe operator had dumped. As the operator was turning, the back bucket swung over the patch and hit employee in the top of the head as he was bent down raking. Supervisor: t. L. Ing
## 8674                                                                                    7/23/2008 04:31 pm (blgay) employee was cutting plan sheet of paper. Employee was cutting across paper with a utility knife and cut his left ring finger. Supervisor: paul white
## 8675                                                                                  7/23/2008 06:05 pm (fblackmo) employee was checking crossline pipes when, he was bitten by a tick on his left hip area. Ticks was also found on clothing. Supervisor: jerri parker
## 8676         7/23/2008 06:15 pm (fblackmo) employee was loading preformed thermo plastic marking (50 pounds each pack) when, he felt pain in his back. Employee did not use hand truck equipment that was available for him or ask for help from a co-worker. Supervisor
## 8677                                                                                             7/23/2008 09:07 am (fblackmo) employee was cross median concrete barrier rail to do a job maintenance assessment when, he bumped his right knee. Supervisor: w. T. Bass
## 8678                                                                                                                       7/23/2009 01:03 pm (fblackmo) employee was planting in median when he was bitten by insect on his left center finger. Supervisor: mark corner
## 8679                                                                                                                       7/23/2009 01:17 pm (blgay) employee was crossing creek and slipped on rock, causing him to hyper-extend left knee. Supervisor: d. L. Ferguson
## 8680                                                                                7/23/2009 01:18 pm (fblackmo) employee states during the field investigation for b-4506 muddy water splashed in her face and left eye while exiting ditch. Supervisor: paul atkinson
## 8681                                                            7/23/2009 05:20 pm (fblackmo) employee was working on state road 1322 (murrayville road) and I-40 slope when employee was struck by shovel handle, hitting right hand thumb. Supervisor: ronnie woodcock
## 8682                                                                                               7/23/2009 11:10 am (fblackmo) employee was weed eating around road way signs when, he came into contact with poison ivy on left arm and face. Supervisor: artis smith
## 8683           7/23/2009 11:22 am (fblackmo) employee indicates while bending down to un-hook net barrier the vessel came into contact with cluster of pilings. Employee was knocked into telescope causing pain to his right side and back area. Supervisor: t. L. Gray
## 8684         7/23/2009 12:58 pm (blgay) employee was removing surplus property from rowan county imap hut and placing it on pallets. The employee stepped on a wooden stake that was protruding from the ground, causing him to turn his ankle and fall to the ground, r
## 8685         7/24/2007 01:52 pm (speedin) employee was loading and unloading fence posts onto bed of truck for approximately 3 hours and began felling sharp pain in his lower right side of back. He then took his lunch break. The pain persisted throughout the night
## 8686                                                                     7/24/2007 02:20 pm (speedin) employee was working on equipment and using a wrench. The wrench slipped causing him to fall backward and he hit his head on the truck. Supervisor: j. Doyle lytle
## 8687                                                                                                 7/24/2007 02:37 pm (speedin) employee was walking through the shop, he tripped over the uneven concrete floor & injured his right foot. Supervisor: david burchette
## 8688                                                                    7/24/2007 03:15 pm (speedin) employee was bushing a bridge with a weedeater and got into poison oak. Supervisor: herbert ramsey 8/3/2007 11:46 am (fblackmo) do not use this claim. Duplication.
## 8689                                               7/24/2008 02:18 pm (blgay) employee was building concrete forms for catch basins and turned and walked into runner on salt spreader that was hanging behind employee, causing a cut to head. Supervisor: robert davis
## 8690                            7/25/2006 02:16 pm (fblackmo) employee was conducting a road test when, driver pulled into parking lot to stop but hit the gas instead running into the office building. On form 19 no injuries was stated. Supervisor: joseph jefferson
## 8691         7/25/2006 03:07 pm (fblackmo) employee was traveling south on state road 1002 traphill road. A private vehicle crossed center lane hitting state pickup causing it to veer left crossing roadway and hitting a parked car before stopping. Employee felt pa
## 8692                                                                                                           7/25/2006 03:20 pm (fblackmo) employee pulled hard on grease gun hose or battery box when, he felt pain in left shoulder area. Supervisor: robert cannady
## 8693                                                                                     7/25/2006 08:15 am (fblackmo) employee was performing a road test when, customer backed into parked car in parking lot. Employee felt pain in back. Supervisor: d. R. Marshburn
## 8694                                                                                       7/25/2006 08:28 am (fblackmo) employee had been walking up and down a very steep slope all day when, he felt burning in left heel and ankle area. Supervisor: a. Scott bailey
## 8695                    7/25/2006 08:40 am (fblackmo) employee was stepping across a freshly graded ditch line when, he stumbled, tried to catch himself causing injury to right arm, palm down, and elbow locked. Supervisor: jimmy f. Walls 8/1/2006 09:24 am (sshort)
## 8696         7/25/2006 09:02 am (fblackmo) employee was jacking up a wheel tractor with bottle jack. He was laying on the ground under tractor, jack was placed under tractor frame and was sitting on top of a block of wood. While jacking, the block of wood split ca
## 8697                                                                                   7/25/2006 09:13 am (fblackmo) employee was in traffic shack near boat ramp, stepped out of door of shack, and fell down steps twisting right ankle. Supervisor: h. C. Scarborough
## 8698                                                                                                        7/25/2006 09:29 am (fblackmo) employee was struck by ncdot dump truck as she was attempting to turn around in shoulder machine. Supervisor: r. J. Hollifield
## 8699                                                   7/25/2006 09:40 am (fblackmo) employee was driving issued patrol vehicle making a left turn when, he was struck in the rear by private vehicle. Employee felt pain in his neck and back. Supervisor: b. K. Bozard
## 8700                                                                                                                           7/25/2006 09:56 am (fblackmo) employee was weedeating when, he came into contact with poison oak on both arms. Supervisor: stephen dillon
## 8701                                                                                                                                          7/25/2006 10:10 am (fblackmo) employee strained his neck while changing a tire on a motor grader. Supervisor: jeff whitney
## 8702                                                                                                                    7/25/2006 10:20 am (fblackmo) employee was lifting a concrete saw when, he felt a burning and stiffness in his back. Supervisor: charles f. Vick
## 8703         7/25/2006 10:47 am (fblackmo) employee was moving signs in the overhead bins in sign inventory room when, he felt soreness across the shoulder blade. On 7/14/2006 employee came to front office and stated he was leaving to go to the doctor because he w
## 8704                   7/25/2006 10:55 am (fblackmo) employee was putting on rear brake drum on dump truck when, the drum drooped and he tried to catch the drum to keep from mashing or cutting fingers. Employee felt pain in abdominal area. Supervisor: daylon lynch
## 8705                                   7/25/2007 05:08 pm (speedin) employee was driving to worksite, when he said a deer came off the bank causing him to leave the roadway. The vehicle then went down a bank landing on its top in a creek. Supervisor: terry w. Call
## 8706                         7/25/2007 05:40 pm (fblackmo) employee was conducting a road test when she went to get into the vehicle (pickup truck) she, felt pain in her left leg. Supervisor: lorie cantu 9/11/2007 08:46 am (lvaughan) accepted pull to graoin muscle
## 8707                            7/25/2007 10:56 am (speedin) employee was getting debri into a pile. A limb under pressure shot out and hit the bottom glass on the trackhoe. The glass shattered and hit Mr. Scott on his elbows and forearms. Supervisor: j. M. Delapp
## 8708          7/25/2007 11:46 am (speedin) employee was conducting a road test, the driver failed to start the engine. He then placed the vehicle in drive. The vehicle was on a hill. When the operator removed his foot from the brake the car began to roll back. The
## 8709                                                   7/25/2008 02:34 pm (fblackmo) employee was cutting trees at the wild flower bed when, he went to step over previously cut limbs he felt a sharp pain in his lower left side of his back. Supervisor: brian glover
## 8710                                                                                                          7/25/2008 02:42 pm (fblackmo) employee was trying to push the arm bar on the hook of the amz machine and smashed his right thumb. Supervisor: carlis smith
## 8711         7/25/2008 09:49 am (blgay) employee developed a slight pain in left big toe a day after using a pair of hip-waders. The waders were previously flooded in a less than sanitary creek (abbotts creek). Waders were still wet when used on June 18th and empl
## 8712                                                                                                                                     7/25/2008 12:15 pm (fblackmo) employee twisted his left knee while dismounting form a skid steer loader. Supervisor: tim raynor
## 8713          7/25/2008 12:24 pm (fblackmo) employee was helping install a door hinge spring on chevy truck. The other employee was prying spring into place when, bar slipped and struck Mr. Floyd's safety glasses. The bar hit him in his left eye. Supervisor: wesle
## 8714         7/26/2004 02:35 pm (fblackmo) employee states on form 19 that while he was driving a pick-up, as he was making a right turn a private vehicle was attempting to pass on the right shoulder of the road and struck the right front of employees vehicle. Emp
## 8715           7/26/2004 02:53 pm (fblackmo) employee states on form 19 that while watching truck in other lane not paying attention to how close the grader had gotten to her. The blade hit the back of her legs and flipped her over then ran over her foot. Supervis
## 8716                                                                                7/26/2004 03:10 pm (fblackmo) employee states on form 19 that he was lifting a tool box to go onto the back of truck when, he felt pain in his lower back. Supervisor: leroy farrish
## 8717                                                                                                7/26/2004 03:32 pm (fblackmo) employee states on form 19 that he was clearing out the back of dump truck when, he was stung above left eye. Supervisor: jesse mercer
## 8718          7/26/2004 03:46 pm (fblackmo) employee states on form 19 that while spraying dump truck with asphalt release we was climbing down the side when, his foot slipped off the tire. Employee states all of his weight transferred to his hands which pulled hi
## 8719          7/26/2004 04:04 pm (fblackmo) employee states on form 19 while repairing bulkhead employee was handling 4x8x18 board that was being lifted out of a 3 ft excavation, by a small excavator. Pressure was applied to center of board by the thumb of the exc
## 8720                                                                                                                                7/26/2005 02:18 pm (fblackmo) employee was struck in the face by briar while cutting line for survey. Supervisor: richard d. Hensley
## 8721                                                          7/26/2005 02:32 pm (fblackmo) employee was working in a pipe laying operation performing manual labor in the sun when, he became very hot, weak, shaking, vomiting, and leg cramps. Supervisor: t. F. Bray
## 8722                                                                                                         7/26/2005 02:42 pm (fblackmo) employee was carrying a piece of 3" angle iron, to put on truck when, he felt pain in his groin area. Supervisor: david moore
## 8723                                                                                          7/26/2005 02:54 pm (fblackmo) employee was spraying herbicide when, he stepped on a rock turning his right ankle causing him to fall on pavement. Supervisor: t. L. Absher
## 8724                                                                                                                                 7/26/2005 03:04 pm (fblackmo) employee was moving a large desk by himself when, he felt pain in his knee. Supervisor: chris peoples
## 8725                                                                                                       7/26/2005 12:29 pm (fblackmo) employee was helping install a cross pipe when, the end of the pipe came apart hitting him in the chest. Supervisor: j. R. Ashe
## 8726                                                                               7/26/2005 12:41 pm (fblackmo) employee was getting ready to spray crs-2 when, the lever on pump blew out causing, spray to hit his face, neck, and both arms. Supervisor: c. I. Lucas
## 8727                                            7/27/2004 08:07 am (fblackmo) employee states on form 19 that while doing drills with all five fire hoses and man over board training his right shoulder started hurting and made a loud pop. Supervisor: cliff swindell
## 8728                                                                                         7/27/2004 08:23 am (fblackmo) employee states on form 19 that he lifted a five gallon bucket of paint and felt a pop in his left shoulder. Supervisor: thomas foster bowser
## 8729                                                                                     7/27/2004 09:08 am (fblackmo) employee states on form 19 that while standing at the gate at the yard, she stepped off the curb and twisted left ankle. Supervisor: a. S. Bailey
## 8730                                                                   7/27/2004 09:19 am (fblackmo) employee states on form 19 that while patching roadway a bumble bee flew up her pants leg stinging her several times on the left thigh. Supervisor: larry w. Sehorn
## 8731                                                                                       7/27/2004 09:31 am (fblackmo) employee states on form 19 that he was lifting a battery when, he felt a burning sensation in his upper abdomen area. Supervisor: ellen goodwin
## 8732                                                                                   7/27/2004 09:40 am (fblackmo) employee states on form 19 that she turned her chair around to stand up she, hit her right knee cap on the edge of her desk. Supervisor: mg. Jarman
## 8733                                                                                                          7/27/2007 10:03 am (fblackmo) employee was inside pipe drilling it together when, shavings from the pipe got into his right eye. Supervisor: harold lanier
## 8734             7/27/2007 11:56 am (fblackmo) employee was using the patcher when, the emulsion line came loose at the handle and hot material sprayed from the machine, when he went to turn it off the material burned the side of his face. Supervisor: carlis smith
## 8735                                                                  7/28/2004 01:11 pm (fblackmo) employee states he was cutting down a tree when, a small block of wood pulled pulled back by the chain saw struck him in the groin area. Supervisor: loretta welborn
## 8736             7/28/2004 01:24 pm (fblackmo) employee states on form 19 that he was cutting trees on embankment when, walking down bank he lost his footing causing him to fall and injure his right ankle. Supervisor: loretta welborn *show all bills to joyce* 11/6
## 8737                         7/28/2004 01:37 pm (fblackmo) employee state on form 19 that while cutting right of way pulling brushes he felt something crawling on his stomach. Employee states he was bitten by a spider on his stomach. Supervisor: b. J. Berryhill jr
## 8738                                                                                                                   7/28/2004 02:01 pm (fblackmo) employee states on form 19 that he was in the woods when, he found a tick on his stomach. Supervisor: bryant turner
## 8739           7/28/2004 02:55 pm (slee) employee was driving southbound on us 17 when a car coming from mt. Pisgah road came across the northbound lane of us 17. The driver of the vehicle did not stop the vehicle, and he tried to avoid hitting the vehicle but was
## 8740           7/28/2004 08:21 am (fblackmo) employee states on form 19 that he was clearing wooded area with chainsaw in order to gain access to drilling site. The area was heavily overgrown with vines that prevented the tree from falling immediately. A rotten li
## 8741                                             7/28/2004 08:37 am (fblackmo) employee states on form 19 that he pulled a muscle in the right side of neck while picking up tractor trailer tire recap tossing it into the back of tandem truck. Supervisor: w. D. Lane
## 8742           7/28/2004 09:26 am (fblackmo) employee states on form 19 that while going down nc 107 south on broom tractor the brakes failed causing the tractor to flip on side. Employee states he experienced bruises and scratches on multiple body parts. Supervis
## 8743                     7/28/2004 09:42 am (fblackmo) employee states on form 19 that while removing rack from old trailer one of the bolts in the frame was removed causing the frame to fall. The frame struck employee on his left shoulder. Supervisor: donald king
## 8744                                                                    7/28/2004 10:03 am (fblackmo) employee states on form 19 that he found a tick on his right leg on 07/02/04. On 07/07/04 he had excessive swelling and redness on leg. Supervisor: r. D. Mcintyre
## 8745                                                                     7/28/2004 10:21 am (fblackmo) employee states on form 19 that he was getting out of dump truck when, he missed the bottom step causing the injury to his right ankle. Supervisor: shelton james
## 8746           7/28/2004 10:31 am (fblackmo) employee states on form 19 that he was working on road maintenance job when, he found a tick on his right ankle at the end of the work day. He went to his doctor a week later because he was sick(rash, ear infection, and
## 8747                                                                                                7/28/2008 08:19 am (slee) employee made a left turn coming from sr 1475 onto us 501 north. His load shifted and road tractor and tanker rolled over onto right side.
## 8748                                                                                       7/29/2005 08:49 am (fblackmo) employee was weedeating when he crossed over a guardrail and tripped causing the injury to his right inner thigh area. Supervisor: alfred smith
## 8749                                                                                                                    7/29/2005 09:18 am (fblackmo) employee states while working with survey crew he was bitten on his right foot by insect. Supervisor: d. T. Howell
## 8750                                                                                                                   7/29/2005 09:31 am (fblackmo) employee was weedeating when, he came into contact with poison ivy on arms, back, and neck. Supervisor: kenny hicks
## 8751                                                         7/29/2005 09:40 am (fblackmo) employee was in the process of getting mowing sign racks off contour mower when, he slipped on wet grass, grabbed fender of mower twisting lower back. Supervisor: bob ingram
## 8752                                                                                                     7/29/2005 09:49 am (fblackmo) employee had taken a chain across a ditch to the contour mower when, he found a tick on his right forearm. Supervisor: bob ingram
## 8753                                                                 7/29/2005 09:59 am (fblackmo) employee was entering bathroom when, she slipped on wet floor. No wet signs was posted. Employee felt pain in her left knee and right shin. Supervisor: jane brantley
## 8754         7/29/2005 10:11 am (fblackmo) employee was turning a part in the big lathe when, his shirt got caught in the machine. The machine pulled his body towards the part putting rug burn on his arm. Another employee was close by and turned off the machine. S
## 8755                                                                7/29/2008 02:08 pm (fblackmo) employee was going up a set of steps from the driveway to the ferry office. He slipped hitting his head on the handrail, cutting his right ear. Supervisor: b. J. Todd
## 8756                                               7/29/2008 03:24 pm (blgay) employee was standing on back of truck, when cones driver gassed truck employee fell off back of truck onto highway, injury his back, right elbow and right hip. Supervisor: herbert ramey
## 8757                 7/29/2008 03:34 pm (blgay) employee was walking on the shoulder of the road beside the dump truck while the crew was sledding. Employee stepped into a hole and twisted his right ankle, causing him to fall to the ground. Supervisor: dale loflin
## 8758          7/29/2008 03:42 pm (blgay) employee was raking pine straw on an unpaved road, he picked up an armload of straw and placed it on the backslope of the roadway. Employee wiped his face on the sleeve of his shirt and shortly thereafter noticed redness on
## 8759                              7/29/2008 03:59 pm (blgay) employee was conducting road test and when customer went to do the 3 pt turn, while backing up, floored gas and hit the curb of the street and went completely up and over curb. Supervisor: lorrie sineath
## 8760         7/29/2008 04:07 pm (blgay) employee was conducting a road test, when customer was performing a 3 pt turn on hampton church road, she pressed the gas petal instead of brake. Customer hit the concrete wall surrounding griffin tires. Supervisor: gloria k
## 8761         7/29/2008 11:39 am (fblackmo) employee was conducting the weekly median inspection, two (2) of our employees were inspecting guard rail on interstate 95 nbl in harnett county (mm 70. 7) Mr. Quinn exited his vehicle to examine the median gardrail. As a
## 8762                     7/29/2008 12:21 pm (fblackmo) employee was securing cones on the trailer with the rope that is used to tie them off. As he pulled the rope tight, it slipped off the stack of cones striking himself in the right eye. Supervisor: jason holmes
## 8763                                                                                                                          7/29/2009 08:46 am (blgay) employee was trying to pickup and slide a 10" I-beam by hand and felt pain in his back. Supervisor: r. A. Wyatt
## 8764                                                                                                                           7/29/2009 09:59 am (blgay) employee was helping move a fence. Employee cut his left hand over a metal fence post. Supervisor: clyde scott
## 8765                                                                7/29/2009 10:35 am (blgay) employee was in ditch getting ready to lay pipe, when he felt a sting on his elbow and saw a spider on his arm. Spider bit employee on right elbow. Supervisor: h. S. Lee
## 8766                       7/29/2009 11:07 am (blgay) employee was mowing on the right of way and a piece of razor wire got caught in the mower. While employee was trying to remove the wire, he was cut on the left calf and on the right hand. Supervisor: danny dees
## 8767         7/29/2010 03:11 pm (fblackmo) employee (anthony)was walking back to his truck while another employee ken hughes was backing up a pickup truck to pick up the flagman (robert kinney). Ken hughes had backed up approximately 15 ft when he felt a bump; saw
## 8768         7/29/2010 03:24 pm (fblackmo) employee was tightening chain binder on trailer and packer roller while pulling on handle. While pulling on handle he felt sharp pain in his lower back and left leg. Employee could not stand straight up for several minute
## 8769         7/29/2010 03:35 pm (fblackmo) employee and crew were installing a driveway pipe on state road. Pipe was repositioned with backhoe using pipe hook. Employee lean forward to check if pipe was properly seated; he signaled for pipe to be lowered. Employee
## 8770                                               7/29/2010 03:51 pm (fblackmo) employee was mowing right of way with longarm when a piece of wire entangled the blade. Employee went to pull the wire when he felt pain in his right shoulder. Supervisor: mike walden
## 8771                                                                                          7/29/2010 04:14 pm (fblackmo) employee was getting out of equipment to check to see how deep ditch was when he hit his right elbow on the steps. Supervisor: john springer
## 8772         7/29/2010 04:53 pm (fblackmo) employee had crawled up on the tracks of dozer to install fuel hose into tank. While dismounting he lost his footing and fell to the ground causing injury to his right thumb. Note: accident happened on 6/25/2010. Employee
## 8773           7/29/2010 12:02 pm (fblackmo) employee was working on the main deck of the m/v hunt preparing the surface for ut. Employee to sit on bucket in order to prepare the surface and when he did, he felt pain in his lower back. Supervisor: marshall coleman
## 8774                                                                                                                 7/29/2010 12:23 pm (fblackmo) employee was welding when his glove got hot and burned the top of left hand through glove. Supervisor: jeff robertson
## 8775                                                                                                    7/29/2010 12:35 pm (fblackmo) employee was adjusting jacks for screen on paving machine when, he bent over he felt pain in his lower back. Supervisor: mike vann
## 8776                                                                           7/29/2010 12:45 pm (fblackmo) employee was in and out of his truck marking trees for debris removal contracts when, he found a tick on his left leg below knee. Supervisor: britt mccurry
## 8777                                                                                          7/29/2011 02:57 pm (fblackmo) employee was climbing back onto tractor when his foot slipped on second step causing the injury to his lower back. Supervisor: cm. M. Conner
## 8778                                                                                                             7/29/2011 03:29 pm (fblackmo) employee stepped into a hole while reaching for a diesel hammer. Employee cut his lower right leg. Supervisor: danny moss
## 8779                                                                                                                                7/29/2011 03:43 pm (fblackmo) employee was unloading equipment when he came into contact with poison ivy. Supervisor: alton thornton
## 8780                                                                                                                    7/29/2011 03:56 pm (fblackmo) employee was removing timbers from under bridge when he scraped his right arm on a nail. Supervisor: chuck francka
## 8781                                     7/29/2011 04:13 pm (fblackmo) employee was installing tension spring on lawn mower deck with vise grip pliers. Pliers slipped off causing employee to fall back on belt guard and a old truck battery. Supervisor: mike mizelle
## 8782                                                    7/29/2011 09:48 am (fblackmo) employee was using a chainsaw to trim tree limbs from a bucket truck. The employee was wearing a face shield however, something got into his right eye. Supervisor: craig sizemore
## 8783         7/29/2011 10:06 am (fblackmo) employee was in the process of removing an 18' wooden joist from under bridge using a 3 ton-come-a-long when the lag bolt pulled loose from the joist causing employee to fly backwards landing on old headwall and falling a
## 8784          7/29/2011 10:32 am (fblackmo) employee was working the contract weedeating on us 259 near reedy fork parkway. He was helping drag and remove some weeds from the right of way when he came into contact with poison ivy. Employee was wearing gloves but d
## 8785         7/29/2011 10:42 am (fblackmo) employee was cutting brush and could not see end of culvert due to vegetation on ground. As he stepped, he fell causing his right foot to get caught up in brush. Employee felt pain in his right knee. Supervisor: shane edw
## 8786                                                                                                      7/29/2011 10:57 am (fblackmo) employee was picking up trash on shoulder of road when he became light headed and dizzy from the heat. Supervisor: jessie knight
## 8787                                                                                           7/29/2011 12:04 pm (fblackmo) employee was trimming wax myrtle near neuse river bridge in new bern when his left leg was struck by polaris utv. Supervisor: scott crocker
## 8788               7/3/2008 01:41 pm (blgay) employee was cutting underbrush with chain saw, when he lost his footing and fell backwards. The chain saw struck the top of his hand cutting three fingers, middle, ring and index on right hand. Supervisor: k. E. Pruett
## 8789         7/30/2008 01:09 pm (blgay) employee had pulled low-boy into the travel lane on I-85 southbound when a private vehicle struck the low-boy on the left rear of the trailer. The low-boy was loaded with a trackhoe and was traveling about 30 mph at the time
## 8790         7/30/2008 01:34 pm (blgay) employee was cleaning a shovel when he grabbed his chest and fell backwards. Another employee standing behind him caught him and laid him down so he wouldn't hit the ground. Ems was called and employee taken to hospital with
## 8791         7/30/2008 01:44 pm (blgay) employee was staking proposed right-of-way monuments on bridge job b-4207. Some points were being set in wooded areas. Employee later discovered two ticks that had attached. Later during the next week, he began feeling ill a
## 8792         7/30/2008 09:44 am (fblackmo) employee was standing on platform at rear of asphalt kettle getting ready to spray crs-two on pavement. The kettle was hitched to crew cab. Driver of the crew cab ran into a hole adjacent to the pavement, causing kettle t
## 8793                                                           7/30/2008 10:52 am (fblackmo) employee was lifting steel rails for the syncrolift and while lifting the third rail, he felt pain in his lower back. Supervisor: john daniels 8/4/2009 10:15 am (lvaughan)
## 8794         7/30/2008 11:09 am (fblackmo) employee was removing crown strip from cap on bridge 111 in duplin county. Employee was on pontoon with another employee when, the weight of the crown strip caused the pontoon to sift and they both lost their footing. Emp
## 8795                                                                                                                                          7/30/2008 11:22 am (fblackmo) employee was picking up dead animals when, he was bitten by a tick. Supervisor: david holton
## 8796                                                                                                        7/30/2009 02:17 pm (fblackmo) employee was pulling joist from nails. Joist fell and fingers were pinned between joist and pry bar. Supervisor: darwin powell
## 8797                                                                                                                7/30/2009 02:29 pm (fblackmo) employee was removing damage signal equipment when, one fell striking employee on the head. Supervisor: jason davidson
## 8798                                                                                                                                              7/30/2009 02:39 pm (fblackmo) employee received a tick bite while working in a wooded area. Supervisor: chuck mcdonald
## 8799                                                                                                                                      7/30/2009 03:04 pm (fblackmo) employee was working with cement when, he had an allergic reaction. Supervisor: kenneth l. Clark
## 8800                                                                                 7/30/2009 03:16 pm (fblackmo) employee was climbing down a step ladder when, she missed a step causing injury to her left hand while working on computer. Supervisor: wayne whorton
## 8801                                                                         7/30/2009 10:58 am (blgay) employee was trying to close the tailgate on a tandem dump truck by the latch bar, his left middle finger was between the truck and bed. Supervisor: david capps
## 8802                                                                                                                                           7/30/2009 11:35 am (fblackmo) employee was walking up slope when, he felt pain in his lower back. Supervisor: danny davis
## 8803                                                                                                                        7/30/2009 11:51 am (fblackmo) employee was lifting hand held post driver when, he felt pain in his left shoulder. Supervisor: roderick wyatt
## 8804                                                                                    7/30/2009 12:18 pm (fblackmo) employee was assisting another employee change batteries for boat when, he felt pain in his right shoulder and neck area. Supervisor: s. H. Kinner
## 8805                                                                                       7/30/2009 12:31 pm (fblackmo) employee was conducting road test when, driver hit bumper post in front of the building. Employee felt pain in her head. Supervisor: hank bowie
## 8806                                                                                                                                 7/30/2009 12:44 pm (fblackmo) employee was bitten by a tick while standing in tall grass replacing pipe. Supervisor: michael taylor
## 8807                                                                                7/30/2010 02:02 pm (fblackmo) employee passed out while operating backhoe when, he ran into another dot vehicle. Employee experienced heat exhaustion. Supervisor: michael e. Lemons
## 8808                                                   7/30/2010 03:34 pm (fblackmo) employee experienced heat exhaustion after doing field work in extreme heat conditions. Employee experienced numbness in his body after returning to office. Supervisor: leon gross
## 8809                                                                                                                             7/30/2010 03:48 pm (fblackmo) employee was replacing rest area sign when, he cut his index finger on right hand. Supervisor: r. Tadlock
## 8810                                                                                   7/30/2010 08:38 am (fblackmo) employee was assisting in hanging weight on front of tractor when, it slipped and fell on his left hand and center finger. Supervisor: doug johnson
## 8811                                                                                                                     7/30/2010 09:40 am (fblackmo) employee was removing jack from bed of pickup truck when, he felt pain in lower back. Supervisor: michael clinard
## 8812                                                                     7/30/2010 10:53 am (fblackmo) employee was working with crew removing trees and brush when, he came into contact with poison ivy. Employee has rash on both arms. Supervisor: thomas e. Gammons
## 8813                                                                                                                                            7/30/2010 11:05 am (fblackmo) employee was sharpen bush axe when, he cut his right index finger. Supervisor: m. T. Beane
## 8814         7/30/2010 11:15 am (fblackmo) employee went to refrigerator to retrieve item while turing, employee trip over trash can in the doorway. Employees head struck sheet rock wall(leaving indentation) causing her to fall to the floor and injure her knee and
## 8815                                                                                                                                              7/31/2004 11:15 am (fblackmo) employee states on form 19 that he was having chest pains. Supervisor: donald j. Baldwin
## 8816                                                                7/31/2004 11:25 am (fblackmo) employee states on form 19 that she was putting in pipes on nc 87 south when, she came into contact with poison ivy on multiple body parts. Supervisor: thomas baldwin
## 8817                                                                          7/31/2004 11:39 am (fblackmo) employee states on form 19 that while walking to her car she, stepped on broken pavement which caused the injure to her right ankle. Supervisor: jilda mcgee
## 8818                                                                  7/31/2004 12:07 pm (fblackmo) employee states on form 19 that he was lifting a 6 x 6 angle piece of steel when, it slipped striking him on his right hand index finger. Supervisor: phillip parker
## 8819                                                                                       7/31/2004 12:17 pm (fblackmo) employee states on form 19 that while driving a nail into plywood he, missed nail striking his left thumb with hammer. Supervisor: r. F. Minton
## 8820                                                                                                                                             7/31/2004 12:31 pm (fblackmo) employee states on form 19 that he found a tick on his left leg. Supervisor: jimmie evans
## 8821                                                                                                                                        7/31/2006 02:18 pm (fblackmo) employee found a tick bite on left hip while working in wetland. Supervisor: mack c. Rivenbark
## 8822                                        7/31/2006 02:27 pm (fblackmo) employee was lifting a concrete saw when, he felt a burning, and stiffness in his back. Supervisor: charles f. Vick 8/4/2006 12:19 pm (fblackmo) *do not use this claim, it is a duplication".
## 8823                                                                                                                               7/31/2006 02:35 pm (fblackmo) employee bent over to pick up one end of 20" pipe when, he heard his back pop. Supervisor: darrell dean
## 8824                                                                                                         7/31/2006 02:43 pm (fblackmo) employee slipped down stairs while walking down steps causing the injury to her upper back area. Supervisor: pamela alexander
## 8825         7/31/2006 11:10 am (fblackmo) employee was doing a conventional density test at I-540 project(55lb). Voltmeter was blown by a gust of wind. Employee went to grab the voltmeter to prevent it from falling causing the injury to his left shoulder. Supervi
## 8826                                                                                                                                          7/31/2006 11:23 am (fblackmo) employee was loading limbs in chipper when, limb hit him in the chin. Supervisor: sam wilson
## 8827                                                                                                                                       7/31/2006 11:54 am (fblackmo) employee was moving chairs from hallway back into cubicle after carpet cleaning. Alicia simmons
## 8828                                                                                                                7/31/2006 12:28 pm (fblackmo) employee dragged an approximate 8-9" lifting chain when, she felt pain in her lower back. Supervisor: joe yiu kwong ng
## 8829         7/31/2006 12:46 pm (fblackmo) employee was pulling hydraulic hose off of a spool, mounted on a rack, and the hose became stuck. When employee pulled harder the hose became free causing employee to fall backwards, while trying to catch herself she felt
## 8830                                                                                       7/31/2007 01:38 pm (fblackmo) employee was walking up steps to office when, she tripped and began to fall causing the injury to her right foot/toe. Supervisor: gordon coshin
## 8831                                                                                                                                        7/31/2007 03:02 pm (fblackmo) employee was working with drill when, debris got into his left eye. Supervisor: russell ramsey
## 8832                                                                                                   7/31/2007 03:23 pm (fblackmo) employee was cutting metal from stacked u channel sign posts when, post fell and landed on his left foot. Supervisor: todd whitaker
## 8833          7/31/2007 03:44 pm (fblackmo) employee was unloading lumber from truck to work site under bridge. He was carrying a 4 x 8 x 6 piece of lumber down the stairs when, lumber started to fall, he tired to catch it, and his finger got caught between lumber
## 8834                                                                                                                                  7/31/2007 04:23 pm (fblackmo) employee states years of operating pontoon bridge has damaged hearing. Supervisor: albert strickland
## 8835                                                                                                          7/31/2007 04:47 pm (fblackmo) employee was helping put tarp on truck when, strap sprung upwards striking him in the right eye. Supervisor: d. M. Honeycutt
## 8836          7/31/2007 04:55 pm (speedin) employee was pressure washing the back of the thermo-lay, some debris from the truck was blown back into the right eye causing a burning feeling. Employee did not have on safety glasses because the steam from the pressure
## 8837                                                                               7/31/2007 04:59 pm (fblackmo) employee found a tick imbedded on 6-28-07 on his upper thigh, he called his physician and went to the doctor on monday 7/2/017. Supervisor: r. W. Berry
## 8838                                                                                      7/31/2007 11:24 am (fblackmo) employee was driving dot truck when, he was struck from behind by a private own vehicle causing injury to his neck area. Supervisor: buddy dixon
## 8839                7/31/2007 11:37 am (fblackmo) employee was attempting to sit in chair when, chair fell from under her causing her to fall. Employee felt pain in her back, hip, leg, hand, and head. Supervisor: dolphus r. Marshburn 02/23/2010 05:51 pm (lvaughan)
## 8840         7/31/2009 03:42 pm (blgay) employee stated that on 07/08/09, he was running the excavator and because of the bounce in the equipment, his right leg rolled over and pinched his right testicle. Employee was hurting a little and told his supervisor j. L.
## 8841                                                                        7/31/2009 09:52 am (blgay) employee was raking asphalt to smooth patch on pleasant ridge road and started having very sharp pains in his left shoulder and neck. Supervisor: kevin hazelwood
## 8842                                                       7/5/2005 02:38 pm (fblackmo) employee was walking down a steep slick water soaked bank which gave way and he begin to slide with the ax. The ax hit his right wrist causing a cut. Supervisor: d. Brat henson
## 8843                                                                                                                7/5/2005 02:54 pm (fblackmo) employee was helping remove drift from around pipe when he came into contact with poison ivy. Supervisor: j. Ronald lee
## 8844                                                                            7/5/2005 09:33 am (fblackmo) employee was driving drill rig down slope of powerline right of way when, the back end of the rig slid pulling front end with it. Supervisor: neil roberson
## 8845                       7/5/2005 10:54 am (fblackmo) employee was cleaning out a pipe with shovel when, the shovel slipped and his hand went into the end of the pipe. Employee cut his left hand behind the thumb requiring 9 stitches. Supervisor: wendell chastain
## 8846                                                                                                                            7/5/2005 11:06 am (fblackmo) employee was bitten by a tick on his stomach area, top of belly below left lung. Supervisor: barry t. Coble
## 8847                                                                                                               7/5/2005 11:16 am (fblackmo) employee was helping repair joist on bridge #366 when, he came into contact with poison ivy. Supervisor: j. P. Callicutt
## 8848       7/5/2006 02:41 pm (fblackmo) employee was rearranging contents of a filing cabinet. He stated he had the bottom drawer pulled out and the cabinet tilted forward. Employee hurt his hand when trying to catch the cabinet and drawer. Supervisor: j. L. Linds
## 8849        7/5/2006 03:01 pm (fblackmo) employee stepped on the bed of rollback, slipped on chain, fell on back landing on edge of bed. Employee was loading a wrecked vehicle. Employee did not seek medical treatment until 6/27/06. Employee worked 6/23/06. Pain be
## 8850                                                                           7/5/2006 08:49 am (fblackmo) employee entered building on street level (p-2) and upon approaching elevator stepped in puddle of water and fell onto right knee. Supervisor: helen dickens
## 8851                                                                                              7/5/2006 09:11 am (fblackmo) employee was sweeping road with push broom when, the handle broke and the jagged edge punctured his left eyebrow. Supervisor: l. W. Lyall
## 8852         7/5/2006 09:22 am (fblackmo) employee was measuring house for advanced acquisition. Yard was overgrown and cluttered with debris. Employee stepped over debris and onto a piece of interior molding with a nail protruding. Nail pierced shoe and left foot
## 8853                                                     7/5/2006 09:39 am (fblackmo) employee was driving state pick up truck. He was trying to make a left turn when, a private vehicle passed improperly striking employees left bumper. Supervisor: r. Allen waddell
## 8854         7/5/2006 09:53 am (fblackmo) employee was putting on tailgate on dump trucks. The bed on the truck was sprung out causing tailgate not to fit properly causing employee to pull and push hard on tailgate, causing pain in lower back and left leg. Supervi
## 8855                  7/5/2006 10:02 am (fblackmo) employee dropped a 4 x 4 x 16 post on uneven ground beside work area. Post fell on pivot point, came up and h it employee under chin causing cut and broken jaw. Supervisor: r. N. Harden 9/22/2006 03:43 pm (sshort)
## 8856                                                                                                                    7/5/2006 10:14 am (fblackmo) employee was inspecting water lines when, she found ticks on right thigh and buttocks area. Supervisor: w. R. Marsh
## 8857                                                                                                                               7/5/2006 10:24 am (fblackmo) employee was greasing backhoe in a twisted position when, he felt pain in back. Supervisor: j. W. Church
## 8858           7/5/2006 11:15 am (fblackmo) employee was running a chain saw to cut up a tree that had fallen when, the chain of the saw wedged into the tree log, rolled, and smashed his right hand into another log and injuring the same. Supervisor: j. M. Campbell
## 8859                                     7/5/2006 11:28 am (fblackmo) employee reported a crawling tick bite on 6/8/06 on right thigh after performing field survey work. On 6/26/06 employee complained of body aches and rash on left thigh. Supervisor: keith wagoner
## 8860                                                            7/5/2006 11:43 am (fblackmo) employee was operating a boom mower when, vines became entangled in mowing deck. Employee removed vines and came into contact with poisonous plants. Supervisor: g. M. Tapp
## 8861                                                                                               7/5/2007 09:17 am (fblackmo) employee was stepping out of trailer when, he slipped on some pine straw in the trailer twisting his left knee. Supervisor: bryant adams
## 8862                                                                                          7/5/2007 09:30 am (fblackmo) employee was weed eating near stop sign on nc 241 when, a piece of metal flew up and struck him in the abdomen area. Supervisor: jerri parker
## 8863                                                                                                                             7/5/2007 09:42 am (fblackmo) employee was working on us 70 bypass when, he was bitten by a tick on his neck. Supervisor: kevin g. Bowen
## 8864                                                          7/5/2007 09:57 am (fblackmo) employee was riding elevator # 1 to 3rd floor when, the elevator came to a abrupt stop causing pain to her neck, shoulders, and lower back areas. Supervisor: david h. Bowden
## 8865                                                                               7/5/2007 10:22 am (fblackmo) employee was fixing a road sign and stepped off the back of the sign truck onto a flat metal drink can and twisted his right knee. Supervisor: rod wyatt
## 8866                                                                                              7/5/2007 10:32 am (fblackmo) employee was performing survey duties in a wooded area when he was bitten by a tick on his upper right thigh. Supervisor: raymond pittman
## 8867         7/5/2007 10:57 am (fblackmo) employee was mounting a grader tire on rim using a coats hit tire machine. When the bead of the tire jumped over the rim, the backside of the tire pinched his left hand under the control valve cutting the top of his left h
## 8868                                                                                                            7/5/2007 11:26 am (fblackmo) employee was moving his tool box to a different location when, it rolled back onto his left ankle. Supervisor: r. A. Norris
## 8869                                                                                            7/5/2007 11:43 am (fblackmo) employee was creating a template for parking stripes when, a splinter became logged into his right center finger. Supervisor: thomas bowser
## 8870                                                                                                  7/5/2007 12:45 pm (speedin) employee was running a trackhoe laying pipe, he turned his head to check for power lines and pulled his neck. Supervisor: joseph brown
## 8871                                         7/5/2011 02:46 pm (barnes) employee was dusting her office and stood in a chair to dust the top of the file cabinets. The chair broke and she fell to the floor. Employee injured her right foot. Supervisor: lee ainsworth
## 8872                                                                            7/6/2004 09:08 am (fblackmo) employee states on form 19 that over the years of running equipment with out proper hearing protection that, he has lost hearing. Supervisor: j. D. Shelton
## 8873                                                                   7/6/2004 09:21 am (fblackmo) employee states on form 19 that he was preparing to run a density when, he lost his footing causing him to fall and injure his lower back. Supervisor: e. A. Burwell
## 8874                                                                           7/6/2004 09:33 am (fblackmo) employee states on form 19 that he was exiting machine, lost footing and fell on pavement causing the injury to his left shoulder. Supervisor: b. R. Knowles
## 8875                             7/6/2004 09:45 am (fblackmo) employee states on form 19 that he was riding in crew cab returning to the office when, his left eye became irritated. His left eye had became swollen when he reached the office. Supervisor: r. E. Brake
## 8876                                                              7/6/2004 10:32 am (fblackmo) employee states on form 19 he was removing fuel filter form ford f150 truck and during the process the, fuel ran from filter into his right ear. Supervisor: e. D. Adcock
## 8877          7/6/2004 11:06 am (fblackmo) employee states on form 19 that when she went over to talk to the mechanic she was not paying attention and tripped over the forks of a forklift that had been lift 1' off the floor. Employee states she struck them mid way
## 8878                                                                                                  7/6/2005 11:27 am (fblackmo) employee was picking up storm drain out of hole with another employee when, he felt pain in his lower back. Supervisor: fatina beaver
## 8879                                                                                                                                     7/6/2009 04:16 pm (blgay) employee was staking right of way on jake reese court and noticed a tick. Supervisor: david robertson
## 8880                 7/6/2009 09:38 am (blgay) employee was attempting to stop a vehicle with his blue lights and siren on, when another vehicle turned left in front of him hitting his vehicle and causing him to have neck and back injuries. Supervisor: gary ramsey
## 8881        7/6/2009 10:09 am (blgay) employee has made two statements of how the injury occurred. First employee was climbing into dump truck, when he felt or heard his left knee pop and felt pain in the same left knee. Second statement, while entering dump truck
## 8882            7/6/2009 10:23 am (blgay) employee was welding on a trailer and started chipping the slag, when a large piece went down the top of his work boot, causing a burn on the upper part of his left ankle/heel. Supervisor: m. Keith hutchison 7/6/2009 10:32
## 8883                                                                                                    7/7/2005 03:12 pm (blgay) employee was cutting and removing a tree, that had fallen in the roadway and come in-contact with poison ivy. Supervisor: w. H. Adkins
## 8884                                                                                                    7/7/2005 03:26 pm (blgay) employee was cutting and removing a tree, that had fallen in the roadway and come in-contact with poison ivy. Supervisor: w. H. Adkins
## 8885         7/7/2005 03:48 pm (fblackmo) employee was driving s. On s. Main street kannapolis, was stopped for traffic turing left, was struck by vehicle 2 in the rear. Employee was transported to northwest medical by ambulance. Employee suffered back and neck pa
## 8886                                                                                                7/7/2005 03:50 pm (blgay) employee was pulling asphalt with shovel and on the inside of right elbow felt a burning pain while pulling asphalt. Supervisor: don macon
## 8887                                                                                                                 7/7/2005 08:49 am (fblackmo) employee was cutting limbs on highway right of way when, he came into contact with poison ivy. Supervisor: a. G. Short
## 8888          7/7/2008 12:05 pm (fblackmo) employee was driving when, he fell asleep and hit road sign. Employee woke up, over corrected the vehicle, and over turned into a ditch. Employee felt pain in left shoulder and had several contusion. Supervisor: archie sm
## 8889                                            7/7/2009 03:20 pm (blgay) employee was conducting a road test. On the road test route, the customer made a wrong turn and ran into a wooden fence, causing employee to have back and toe pain. Supervisor: teresa parker
## 8890                                                                                                    7/7/2009 03:37 pm (blgay) employee was walking on the shoulder of new salem road and stepped into a hole, causing his left knee to twist. Supervisor: terry pugh
## 8891         7/7/2011 02:59 pm (fblackmo) employee was replacing brake drums on a c7500 chevrolet dump truck. Installing the new drum the employee attempted to tap the drum on to the hub with a 8 lb sledge hammer. The handle of the hammer caught on equipment fende
## 8892                                                                       7/7/2011 10:25 am (fblackmo) employee is not sure exactly where it happened or what he was doing when it happened. Employee pulled muscle in right upper arm. Supervisor: timothy a. Everette
## 8893                                                                                                       7/7/2011 10:37 am (fblackmo) employee was pulling dirt off the back of flatbed truck when he felt pain in his left shoulder and arm. Supervisor: robbie smith
## 8894                                                                         7/7/2011 11:32 am (fblackmo) employee was deburing a part in the lathe using a file. Employees shirt got caught in the part. Employee felt pain in his left hand. Supervisor: alfred wilson
## 8895                                                                                                                          7/7/2011 12:09 pm (fblackmo) employee was lifting steel when he raised his arm he heard a pop in his right shoulder. Supervisor: guy white
## 8896                                                                                 7/7/2011 12:23 pm (fblackmo) employee had gotten out of truck and reached back to get a charger when he felt a sharp pain in the center area of his back. Supervisor: doug williams
## 8897         7/7/2011 12:34 pm (fblackmo) employee was installing a sign posts (working alone), having to hold the post with one arm and operate a hydraulic post driver with the other caused him to have soreness in his right shoulder area. Supervisor: todd whitake
## 8898                                                                        7/7/2011 12:52 pm (fblackmo) employee was walking from shop to get the backhoe that was in the rear of the shop when wind blew foreign matter into his right eye. Supervisor: robert cannady
## 8899                                                                                                              7/8/2004 11:21 am (fblackmo) employee states on form 19 that she was walking up stairs when, she stripped and fell on left leg. Supervisor: dan domico
## 8900           7/8/2004 12:37 pm (fblackmo) employee states on form 19 that while working at work zone site a private vehicle came through work zone swerved to Miss Cones when, car mirror hit employee. Employee states he was knocked back onto car hood which caused
## 8901                                                                                                  7/8/2005 02:58 pm (blgay) employee was moving a three drawer file cabinet from old work station to new work station and injured his back. Supervisor: betty yancey
## 8902                                                                                  7/8/2005 08:23 am (fblackmo) employees were patching potholes with hot asphalt when, the driver of the crew cab back crew cab into another asphalt truck. Supervisor: d. O. Cooper
## 8903                                                                                          7/8/2005 08:41 am (fblackmo) employee was cutting right of way when, he slipped and fell in a pile of poison ivy. Supervisor: mark c. Smith 07/26/2005 02:02 pm (kbarefoo)
## 8904                                                               7/8/2005 09:01 am (blgay) employee was moving a wooden pallet to mow. Employee was stung 3 times by yellow jackets. 2 stings to upper right arm and 1 sting to lower left arm. Supervisor: b. J. Todd
## 8905                                                                                                  7/8/2008 09:47 am (fblackmo) employee was picking up limbs and branches when, he came into contact with poison ivy, both hands and arms. Supervisor: r. W. Blalock
## 8906                                                                                                                            7/8/2008 09:59 am (fblackmo) employee was stung by unknown insect on his forehead while pickingup a sign. Supervisor: larry t. Williford
## 8907                                                                                      7/8/2009 02:21 pm (fblackmo) employee was in the engine room of the m/v helping russell lift a deck plate when, he felt pain in his lower back area. Supervisor: thomas bowser
## 8908                                                             7/8/2010 02:33 pm (fblackmo) employee was using lawn mower when, he trip over the machine, and fell face down into the mower. Employee lost his front and two bottom teeth. Supervisor: richard roberts
## 8909                             7/8/2010 11:53 am (fblackmo) employee was flagging traffic when a private concrete truck passed by and blew the air lines. The cap on the air lines fly off and hit the employee on the left side of his head. Supervisor: johnny price
## 8910                                                                                  7/8/2010 12:13 pm (fblackmo) employee was cutting brush when, he tripped on a log, fell landing on his machete, and cause cut to his left index finger. Supervisor: chuck mcdonald
## 8911                 7/9/2007 04:16 pm (speedin) employee was standing by the back entrance of the traffic management incident control building, when imap 125 truck drove up and blew his air horn. Supervisor: heath holland 7/9/2007 04:26 pm (speedin) 8/21/2007 09:
## 8912                                                         7/9/2009 01:38 pm (blgay) employee was sitting in the drivers seat of vehicle when a private vehicle struck his mirror and a piece of glass from the mirror, got into his left eye. Supervisor: mike gibson
## 8913                                                   7/9/2009 01:56 pm (blgay) employee was manually pulling on a t-post (fence post). Post broke causing employee to fall backward down a slope, causing a ligament sprain to left shoulder. Supervisor: b. R. Putnam
## 8914         7/9/2009 04:06 pm (blgay) employee was getting off back of utility truck. Employee stated that the sun was in his eyes when he stepped onto bumper his foot slipped, causing him to fall. His right knee hit bumper of truck and then employee fell onto as
## 8915                                                                                       7/9/2010 02:29 pm (fblackmo) employee was taking trash bags out to truck when, one fell and employee stepped on it causing injury to his left ankle. Supervisor: l. C. Dedmon
## 8916                                                                            7/9/2010 03:17 pm (fblackmo) employee bent down to pick up hard hat when his hand came into contact with hot muffler on generator; cause burn to right hand. Supervisor: pamela carriker
## 8917         7/9/2010 03:43 pm (fblackmo) employee was helping three other employees layout stop bar with nylon cords. A car ran over and picked up the nylon cord causing the cord to partially wrap around his feet. Employee was pulled into the roadway striking his
## 8918                7/9/2010 04:15 pm (fblackmo) employee was helping crew with patch work when, he started feeling dizzy, sick, and passed out. Employee was transported to the hospital by ambulance were he was treated for heat exhaustion. Supervisor: j. M. Delapp
## 8919                         7/9/2010 04:25 pm (fblackmo) employee was working on cleaning a metal step stool with wire wheel attached to hand held grinder when, a piece of metal flew into his left eye (employee was wearing safety glasses). Supervisor: mike broome
## 8920                                                                                                    7/9/2010 04:38 pm (fblackmo) employee was moving a grease barrel form pick up truck when, he felt pain in his groin area and lower back. Supervisor: keith rhyne
## 8921                                                7/9/2010 04:47 pm (fblackmo) employee broke an already partial broken windshield at salvage yard while trying to identify the vin number. Glass from the windshield got into his left eye. Supervisor: michael weaks
## 8922                                                                                                                                                                                                             707 sprayed in l eye of EE while in the treatment room.
## 8923                                                                                                                                                                                                                8 hours of computer work/off and on continuiously ()
## 8924                                                                       8/1/2005 02:20 pm (fblackmo) employee states while typing and conducting bridge inspections over a long period of time he, experienced pain in his left hand and wrist. Supervisor: mark wade
## 8925                                                                                                                         8/1/2005 03:09 pm (fblackmo) employee was working at the computer in his office when, he was bitten by a spider. Supervisor: randy mckinney
## 8926                                                                                                                                             8/1/2005 03:24 pm (fblackmo) employee was hit in face while dis-connecting six inch pump hose. Supervisor: john kearney
## 8927                                                                                                                             8/1/2005 03:35 pm (fblackmo) employee was removing a fuel tank lid to gain access to fuel pump when, he felt pain in his right shoulder
## 8928                                                                              8/1/2005 11:02 am (fblackmo) employee was pulling out of parking lot when, another vehicle hit her in the rear. Employee felt pain in her head and neck area. Supervisor: m. G. Jarman
## 8929                                                                              8/1/2005 12:50 pm (fblackmo) employee was traveling on highway when, traffic stop suddenly causing a private vehicle to hit him in the rear. Whip lash. Supervisor: donald p. Smith jr
## 8930                                                                                                                                             8/1/2007 09:28 am (fblackmo) employee tripped over rock stockpile causing injury to right knee. Supervisor: glenn crews
## 8931         8/1/2007 09:52 am (fblackmo) employee was working at nc welcome center on I-85 with backhoe crew digging a ditch for roadside environmental. When he went to the rest room, he started to feel dizzy and fainted. Employee was taken to hospital for evalua
## 8932                                                                                                                       8/1/2008 02:13 pm (fblackmo) employee was pulling dead animal off roadway when, he felt pain in his lower back & leg. Supervisor: danny baker
## 8933         8/1/2008 02:22 pm (fblackmo) employee was unloading a tamp from the patch trailer using the winch built onto the patch trailer, as the tamp was being lowered employees right hand slipped off the handle. The handle spun over and hit employee on the rig
## 8934            8/1/2008 11:25 am (fblackmo) employee was driving agency vehicle when vehicle was struck on passenger side door by a private owned vehicle that ran a stop sign. Employee felt pain in his left shoulder, elbow, and upper back. Supervisor: beth horner
## 8935                                                                                                8/1/2008 11:40 am (fblackmo) employee was walking in parking lot during break when, she tripped on a rock causing injury to her left ankle. Supervisor: marsha edgar
## 8936                                           8/1/2008 12:21 pm (fblackmo) employee pulled on the shoulder of road to pick up litter bags when, private own vehicle struck his vehicle in the rear. Employee felt pain in his neck and back. Supervisor: shannon baylor
## 8937                                                                                                    8/1/2008 12:32 pm (fblackmo) employee was helping another mechanic lift a marine battery when, he felt a sharp pain in his lower back. Supervisor: adron g. Wade
## 8938                                                                                                                              8/1/2008 12:43 pm (fblackmo) employee was lifting pipe off truck when, he felt pain in his left shoulder. Supervisor: thomas singleton
## 8939                                        8/10/2004 10:42 am (slee) employee was stopped at new hope road stop light when driver of pov came up from the rear at a high rate of speed to stop and rammed sov in the rear. Driver of private vehicle possibly drinking.
## 8940                          8/10/2005 09:44 am (fblackmo) employee was on a ladder painting the outside of building when, ladder slipped causing him to fall. Employee fell sideways approximately 8 feet landing on his right foot and side. Supervisor: ben williams
## 8941         8/10/2006 02:27 pm (fblackmo) tailgate on dump truck was stuck closed. Employee was pulling on the tailgate trying to open it. The tailgate came open catching his thumb on his right hand between the chain and the tailgate. Supervisor: william edward m
## 8942         8/10/2006 02:38 pm (fblackmo) employee was cleaning the gas pig cooker. The cooker was ignited with the lid open and then closed to heat grill. Employee lifted the grill lid flames shot out causing burns to face, head, and arms. Supervisor: roderick w
## 8943                                                                                                                                           8/10/2006 02:49 pm (fblackmo) employee was weedeating when, he came into contact with poison ivy. Supervisor: doug martin
## 8944                                                                                                                 8/10/2006 02:58 pm (fblackmo) employee was clearing trees and brush from right of way when, he was exposed to poison oak. Supervisor: s. B. Freeman
## 8945         8/10/2006 03:08 pm (fblackmo) employee was helping in the loading of the injection truck which was backed up to the dock area. Employee was attempting to step off of dock onto a rock that was being used as a make shift step. Employee stepped on the ro
## 8946         8/10/2007 12:06 pm (speedin) employee had to mount trailer with right foot in order to make repairs to roller which was on the trailer. Employee's right foot pivoted and he felt a sharp burning sensation in the ball of his right foot. Supervisor: scot
## 8947                                                                                                                  8/10/2009 12:03 pm (blgay) employee was walking down steps in the auditorium, missed step and fell down on his right hand. Supervisor: p. L. Eaker
## 8948                                                                                    8/11/2005 03:18 pm (fblackmo) employee was cutting and removing a tree for site distance from roadway signs when, he came into contact with poison ivy. Supervisor: v. G. Scales
## 8949                                                                                                            8/11/2005 10:05 am (blgay) employee was walking up a slight incline to pick up backsight when he felt his left knee crack twice. Supervisor: george hart
## 8950         8/11/2005 10:27 am (blgay) employee broke out in a rash in the evening of 7-21-05 after relieving himself in the woods earlier in the day. Employee was off the next day and when he returned to work on 7-25-05 he informed secretary that he had poison I
## 8951         8/11/2005 10:45 am (blgay) employee was working on county home road digging out asphalt. Employee felt something crawling on his back and slapped at same time. Employee felt a burning sensation and removed his shirt. Employee found a mark where he had
## 8952           8/11/2005 11:13 am (fblackmo) employee was flagging traffic while crew was cutting tree full of bees. Truck with tree passed by employee, bees stung him on his face, nose, back, chest, hands, and arms. Supervisor: tal ingle 02/16/2006 09:03 am (kbar
## 8953                                                                                                 8/11/2005 12:39 pm (fblackmo) employee was dumping debris from tandem truck when, he slipped on mud causing the injury to his left knee. Supervisor: jerry hildreth
## 8954                                                                                                                           8/11/2006 09:07 am (fblackmo) employee was loading density equipment into truck when, he felt pain in his back. Supervisor: c. D. Kirkman
## 8955                                                                        8/11/2006 09:18 am (fblackmo) employee was loading pipe band for construction project on back of truck bed when, his foot slipped striking right knee on tailgate. Supervisor: alan e. Brown
## 8956                                                                                                   8/11/2006 09:29 am (fblackmo) employee was shoveling dirt and grass into the back of truck when, he felt pain in his lower back area. Supervisor: charles f. Vick
## 8957                                                                                   8/11/2006 09:39 am (fblackmo) employee was working in excessive heat repairing potholes with hot mix asphalt when, she experience heat exhaustion symptoms. Supervisor: w. M. Key
## 8958                                                                                         8/11/2006 09:53 am (fblackmo) employee was removing a 23 lb. Sign rack from a rental mower when, he felt a pull on his lower right side of his back. Supervisor: t. L. Pugh
## 8959                  8/11/2008 07:59 am (blgay) employee was walking in the east bound lane when a truck caught a power line. The cable broke and after hitting several pieces of equipment, struck the employee just below the left knee. Supervisor: norman w. Graham
## 8960                                                                        8/11/2008 08:14 am (blgay) employee was walking down slope to inspect pipe and stepped into a hole with his left foot, causing him to lose his balance and fall down. Supervisor: tim powers
## 8961                                                                                                8/11/2009 10:14 am (fblackmo) employee was placing a plastic orange traffic control barrel on its base when, he felt pain in his right knee. Supervisor: w. R. Marsh
## 8962                                                                                                                                       8/11/2009 10:33 am (fblackmo) employee was mowing wildflower beds when, he felt a sting to his chest. Supervisor: harry hayes
## 8963                                                                                                                                          8/11/2009 11:02 am (fblackmo) employee found a tick on his upper right hip while taking a shower. Supervisor: b. W. Harper
## 8964                                                                                                                        8/11/2010 12:13 pm (fblackmo) employee was moving valves into engine room when, he felt pain in his lower back. Supervisor: marshall coleman
## 8965                                                                                          8/11/2010 12:25 pm (fblackmo) employee was reaching for door handle when another co-worker(entering) pushed open the door onto his left hand. Supervisor: richard dewhurst
## 8966                                                                                8/12/2004 02:14 pm (fblackmo) employee states on form 19 that he was lifting a 40-50 lb bag of (dural) cement when, he felt pain in his upper back area. Supervisor: ronald e. Joyce
## 8967                                                          8/12/2004 03:07 pm (fblackmo) employee states on form 19 that he was taking in mooring line when, his right foot slipped under bumper aboard vessel. Supervisor: ken morris 06/24/2005 11:28 am (kbarefoo)
## 8968          8/12/2004 03:21 pm (fblackmo) employee states on form 19 he was operating mowing tractor when the front wheel fell in the ditch and became stuck. Employee exited the tractor and proceeded to walk around left side of machine when, he slipped and grabb
## 8969                                                                                                                     8/12/2005 02:40 pm (fblackmo) employee states he was bitten on his left knee by a spider while driving dump truck. Supervisor: wendell chastain
## 8970                                                                                                    8/12/2005 08:31 am (fblackmo) employee was throwing bags of trash into dump truck when, she felt pain in her right shoulder and back. Supervisor: m. D. Presnell
## 8971         8/12/2005 09:56 am (fblackmo) employee was spraying spider spray "hot shot" around her desk area. Employee took her shoes off to climb up on the desk to use the spray to prevent the spray from falling back into her eyes. A few days later her eyes were
## 8972                                                                                8/12/2005 10:47 am (fblackmo) employee was working on motor vehicle changing a valve when, the wrench slipped causing him to hit his arm on the deck. Supervisor: john robert butler
## 8973                                8/12/2005 12:47 pm (fblackmo) employee got into his dump truck and proceeded to leave the complex. Employee reached the area near the division office when, he felt a sharp stinging pain on his lower back. Supervisor: chip garris
## 8974                                                                                                          8/12/2008 02:33 pm (fblackmo) employee was shoveling asphalt during a pavement operation when, he felt pain in his lower back. Supervisor: darrell wilkins
## 8975                                                                                                                                        8/12/2009 02:04 pm (blgay) employee was chipping welding and hot slag popped into his right eye. Supervisor: tommy culberson
## 8976         8/12/2009 02:16 pm (blgay) employee was tightened up wheel lugs with a torque air gun. The unit slipped and moved sideways toward the center of the hub, which pinched his middle finger on his left hand between air gun and hub. Supervisor: james brooks
## 8977         8/12/2009 02:57 pm (blgay) employee had delivered concrete samples to the m&t lab in asheville and left them outside, due to the lab being closed at lunch. While driving back to the project, a gnat flew into employees right eye. While removing the gna
## 8978                                                                             8/12/2009 10:18 am (blgay) employee was trying to enter passenger side of truck. Employee slipped because of muddy conditions and struck left knee on step. Supervisor: c. R. Mcconnell
## 8979                                                                                                 8/12/2009 10:29 am (fblackmo) employee states hearing loss in both ears due to years of operating and being around heavy equipment. Supervisor: c. W. Wethington jr
## 8980          8/12/2009 10:40 am (fblackmo) employee was washing out the bed of his tandum dump truck. The hose is located over by the salt spreader area, employee had to walk through this location to cut the hose off. Employee turned to his left to pull the water
## 8981                       8/12/2009 11:05 am (blgay) employee was cleaning out pipe with shovel, when he came in contact with yellow jackets nest. Bee stung employee on right eyelid, causing eye to swell shut. Supervisor: troy dairymple 8/12/2009 11:12 am (blgay)
## 8982                               8/12/2010 03:04 pm (lbarnes) employee was a passenger in a dump truck that was traveling down the road when a jeep crossed the center yellow line and hit us almost head on. Employee felt pain in the neck. Supervisor: ronald grier
## 8983                                                                           8/12/2010 03:59 pm (lbarnes) employee was working on hydra platform when employee began feeling sick, light headed and pale. Employee stated that he blacked out. Supervisor: chad dennis
## 8984                                                                                             8/12/2010 09:02 am (lbarnes) employee met truck on narrow road and met on yellow line and both trucks hit mirrors. Employee injured left ear. Supervisor: lee ainsworth
## 8985        8/12/2010 12:40 pm (lbarnes) employee was performing surveying tasks when he disturbed a bees nest and was then stung multiple times. Employee received insect stings to right arm, left arm, abdomen, and chest. Supervisor: s. H. Killough 8/18/2010 06:27
## 8986       8/13/13 was assisting with arrest. Defender pulled away when putting on handcuffs. Officer felt pull in neck area. On 8/21/13 felt sharp pain in right shoulder/neck and arm lifting boxes of paper and again when getting in/out vehicle at offenders reside
## 8987         8/13/2004 02:25 pm (fblackmo) employee states on form 19 that a hydraulic line had burst and was spraying hot hydraulic fluid. In order to avoid the fluid, employee jumped out of the way causing the injury to his lower back. Supervisor: o. D. Sparks j
## 8988                                                                                           8/13/2004 02:35 pm (fblackmo) employee states on form 19 that while surveying in a wooded area he, found a tick on his upper part of left leg. Supervisor: trey dickerson
## 8989                               8/13/2004 02:54 pm (bhenders) private vehicle struck state vehicle at front of state vehicle on drivers side. Employee feels private vehicle ran red light; however, no witnesses. Therefore, no charges were filed on either driver.
## 8990                                         8/13/2004 03:48 pm (fblackmo) employee states on form 19 that he was opening a box with a leatherman knife, the knife slipped cutting his hand between the index and center fingers on left hand. Supervisor: gerald messer
## 8991                                                                                                      8/13/2004 04:08 pm (fblackmo) employee states on form 19 that while cutting and trimming brushes he came into contact with poison ivy. Supervisor: jeff teague
## 8992                                             8/13/2004 08:30 am (fblackmo) employee states on form 19 that he was hand loading rolls of wire on trailer when, he stepped in opening between boards causing ankle to strike frame of trailer. Supervisor: roy pittman
## 8993                                      8/13/2004 08:52 am (fblackmo) employee states on form 19 that he was cutting a metal plate using metal torch. The metal got hot causing it to pop when, a piece of the metal fly into his right eye. Supervisor: b. F. Kizziah
## 8994           8/13/2004 09:24 am (fblackmo) employee states on form 19 that he was chopping brush on right of way in preparation for slope stakes in survey party. Employee placed the bush axe into the embankment as he started to climb the slope. The axe shifted c
## 8995                                                            8/13/2004 10:25 am (fblackmo) employee states on form 19 that while removing tongue hinge pin with hammer his center finger on left hand was caught between the pin and hammer. Supervisor: danny parker
## 8996                                                                              8/13/2004 10:38 am (fblackmo) employee states on form 19 that while working on roadway a private vehicle passed by causing debris to go into his left eye. Supervisor: michael biedell
## 8997              8/13/2004 10:56 am (fblackmo) employee states on form 19 that while using a bush axe to cut top out of tree, the top of the tree struck him in the mouth. Employee states his lip is brushed and left upper tooth was chipped. Supervisor: t. J. Davis
## 8998                                                                     8/13/2004 11:18 am (fblackmo) employee states on form 19 that he was on his knees on cement floor trying to pull out a starter when, he felt pain in his left knee. Supervisor: danny r. Parker
## 8999                                                                                           8/13/2007 02:37 pm (speedin) employee was moving grass and weeds to get a measurement of a pipe on sr1464, and came in contact with poison oak. Supervisor: w. S. Gallman
## 9000                                                                                                                           8/13/2007 03:18 pm (speedin) employee was slope staking right angles and had allergic reaction poisonous plant. Supervisor: j. A. Russell
## 9001                                                                                   8/13/2007 04:28 pm (speedin) employee was using equipment. He exited the equipment and stepped on a rock which caused him to fall onto his left knee. Supervisor: wallace pulliam
## 9002                                                                                                                                              8/13/2007 04:51 pm (speedin) employee was digging out and felt a sting on his left ankle. Supervisor: dannie tomberlin
## 9003                                                       8/13/2008 08:46 am (fblackmo) employee(s) was helping clean up debris during a boom operation when, one of the limbs fell striking him on the right side of his head, and left hand. Supervisor: carlis smith
## 9004                                                         8/13/2008 09:05 am (fblackmo) employee was cutting and handling joist with crysot on it with a chain saw. Dust and debris from the joist came in contact with employees skin. Supervisor: albert strickland
## 9005          8/13/2008 11:17 am (fblackmo) employee was assigned to the msd tank on m/v to remove rust on 7/15 /08 and 7/16/08. After work on 7/16/08 he, went to urgent care due to chest pain. He was diagnosed with pericarditis. On 7/20/08 he went to wake med bec
## 9006          8/13/2009 04:02 pm (fblackmo) employee(two) was cleaning out a driveway pipe when he noticed a copperhead snake. He pulled the snake out of the pipe to kill it when, employee (hester) stopped him. Employee(hester) stated " he would move the snake out
## 9007                                                                         8/13/2009 09:00 am (fblackmo) employee was inside a jlg unit painting stripes on m/v hatteras. Employee went to move joystick and jammed right thumb on controls. Supervisor: thomas bowser
## 9008                                                                                        8/13/2009 09:14 am (fblackmo) employee was putting on fan belt when, his right index finger got got between the idler pulley and belt tension. Supervisor: chester e. Gartin
## 9009         8/13/2009 09:28 am (fblackmo) employee (rex willie) was operating a vibratory roller when he got to close to the edge of the stone and became scared. Employee (greg holland) asked him to get off and he would roll the edge. Rex then began to jump off t
## 9010                                                                                                8/13/2009 09:47 am (fblackmo) employee stepped on broken pallet while looking in the back of truck. Employee felt pain in his left ankle. Supervisor: w. T. Mckenzie
## 9011      8/13/2010 02:22 pm (lbarnes) employee was working with patch crew on mt. Carmel church road, when he felt slight pain in shoulder, elbow and wrist. It became more intense when he was raking and shoveling asphalt and picking up sign stands. Employee has p
## 9012      8/13/2010 08:22 am (lbarnes) employee was installing a portable traffic counter in alleghany county and was stung by a bee. This employee has allergic reactions to bee/wasp stings and carries an epinephrine injection with him for this type of incident. E
## 9013                                                                                                        8/13/2010 11:25 am (lbarnes) employee was filling distributor tank truck with tack and tack got on his right arm and burned his arm. Supervisor: j. C. Mundy
## 9014                                  8/14/2007 04:49 pm (fblackmo) employee was working on the dredge carolina in the gantry as he was leaning forward with a chipper in his left hand facing gantry foreign material flew into right eye. Supervisor: thomas f. Bowser
## 9015                                                                                                         8/14/2007 05:02 pm (fblackmo) employee was cleaning out driveway pipe with long handle shovel when, he felt pain in his lower back. Supervisor: g. L. Baker
## 9016                                                                                                                                     8/14/2007 05:11 pm (fblackmo) employee bumped his arm up against hot hose causing a burn to left forearm. Supervisor: pat henry
## 9017                                                                                                                                          8/14/2008 01:52 pm (blgay) employee was climbing down from truck when he twisted his right ankle. Supervisor: w. R. Mcgaha
## 9018          8/14/2008 02:09 pm (blgay) employee was inspecting concrete pavement operation on highway construction project r-2248d. When he attempted to cross a stringline located approx. 12" above the ground, he tripped on it and fell forward. Employee used his
## 9019                                                8/14/2008 09:58 am (blgay) employee was opening a main water valve to asheville hp office. During the opening process, right hand slipped on valve and was pinched and pinky finger was cut. Supervisor: jeff drayer
## 9020                                                                                                                                 8/14/2009 04:07 pm (fblackmo) employee was lifting large battery when, he felt pain in his right wrist. Supervisor: steve h. Taylor
## 9021                                    8/15/2006 01:06 pm (fblackmo) employee was checking out his motorgrader prior to starting work when, he stepped off the grader onto the ground he stepped into a hole causing the injury to his left ankle. Supervisor: c. Smith
## 9022                                                                                                                   8/15/2006 01:16 pm (fblackmo) employee was chipping brush from storm damage when, he came into contact with poison oak. Supervisor: r. E. Metcalf
## 9023                                                 8/15/2006 01:25 pm (fblackmo) employee was removing riles from the cabinet drawer and was putting them on the pushcart when, she heard a loud pop and felt pain in her left shoulder area. Supervisor: joyce wilson
## 9024         8/15/2006 01:42 pm (fblackmo) employee was driving a tractor with his right elbow rubbing on the gas tank & roll over protector structure due to confined space where the left arm quadrant point lift controls are located. Employee has scratches and bru
## 9025                                                                                                                     8/15/2006 01:54 pm (fblackmo) employee was sharpening knife, and cut two fingers, nicking the third on his left hand. Supervisor: terry l. Gray
## 9026        8/15/2006 02:04 pm (fblackmo) employee chad smith wrapped his arms around employee gibbs and squeezed him. Employee gibbs indicated that he felt something move in his ribs when Mr. Smith squeezed him. Employee returned to work on monday still stating t
## 9027                                                                                                                               8/15/2006 02:41 pm (fblackmo) employee was operating a weed eater when, she came into contact with poison ivy. Supervisor: g. M. Tapp
## 9028                                                                                   8/15/2006 02:52 pm (fblackmo) employee was lifting a filter sock lodged in drainage box to alleviate potential flooding when, he felt pain in his back. Supervisor: c. D. Kirkman
## 9029                                                                                                                              8/15/2007 09:13 am (fblackmo) employee was conducting pre truck inspection when, he was bitten on left elbow. Supervisor: travis mintz
## 9030                                                                                                                                                         8/15/2007 09:32 am (fblackmo) employee was bending out when he felt dizzy. Vertigo. Supervisor: w. M. Stone
## 9031                                                                                                                                     8/15/2007 09:52 am (fblackmo) employee came into contact with poison ivy while working on state road. Supervisor: allen waddell
## 9032                                                                                                        8/15/2008 09:34 am (blgay) employee was moving and lifting 15" pipe in ditch, when he felt something pull in his right shoulder. Supervisor: kevin hazelwood
## 9033         8/15/2008 09:44 am (blgay) employee was clearing phone lines from traffic head and was standing in the painted island. Private vehicle came from side street to make a left turn and hit employee from behind, causing torn ligaments in left leg, injury t
## 9034         8/16/2005 09:39 am (fblackmo) on thursday, June 23, 2005 employee left work early due to a sore back. Employee told his supervisor, darrell wilkins, that he did not think it was work related. Employee has not worked since 06/23/05. Employee states tha
## 9035         8/16/2005 09:56 am (fblackmo) employee was helping to replace s stop sign that had been removed due to widening project. As the post was being hammered into the ground, the post broke and the sign came down hitting him on the left side of the head. Su
## 9036          8/16/2005 11:10 am (fblackmo) employee was clearing line of bushes and briar down the base line. Employee states some of the briar and bushes was growing through an old fence that was crossing the line. Employee could not cut them, so he used his han
## 9037         8/16/2005 11:24 am (fblackmo) employee was unloading pcs and monitors and placing them in a portable storage bin. The entrance door to the bin is narrow and requires lifting feet upward to enter. While carrying a monitor to the storage bin employees l
## 9038         8/16/2006 02:44 pm (fblackmo) employee was installing silt fencing on new construction project. Grader was pulling a ditch for the silt fence when, the grader stop working, losing all controls and rolled toward employee. Operator yelled for employee t
## 9039                                                                                                                                          8/16/2006 03:13 pm (fblackmo) employee was operating belt loader when, trash got into his left eye. Supervisor: w. D. Lane
## 9040                                                                                               8/16/2006 03:23 pm (fblackmo) employee was clearing trees off state road when, he came into contact with poison ivy on multiple body parts. Supervisor: r. D. Holland
## 9041                                  8/16/2006 03:40 pm (fblackmo) employee was stacking straw from trailer to flatbed truck when, one of the bales hit him on the back part of his leg causing the front part of his leg to hit tailgate. Supervisor: richard l. Icard
## 9042                                              8/16/2007 02:36 pm (speedin) employee was crossing interstate and while crossing median he used the concrete barrier to push off with his leg and a sharp pain went to ankle and lower leg. Supervisor: roger hamilton
## 9043                                                                                                                         8/17/2005 01:57 pm (fblackmo) employee was removing brush from roadway when, he came into contact with poison ivy. Supervisor: m. H. Thomas
## 9044                                 8/17/2005 02:23 pm (fblackmo) employee was taking freight off of a cart when, he slipped and fell over a ladder due to moisture from the cart. Employee felt pain in his shoulder, lower leg, and hip area. Supervisor: w. M. Stone
## 9045                                                      8/17/2005 03:38 pm (fblackmo) employee went into the woods to address the call of nature. While in the woods, employee was stung on right eye lid by unknown insect. Supervisor: h. A. Moore and w. T. Garrett
## 9046                                                                                    8/17/2005 03:54 pm (fblackmo) employee was attempting to relocate storage shelf in storage room when, he picked up shelves he felt pain in his back area. Supervisor: ron graham
## 9047       8/17/2005 04:06 pm (fblackmo) employee was placing a high water sign up on the shoulder when, he stepped into a fire ant mound. Employee was unaware of the mound due to the lack of light and high grass during the night operation. Supervisor: j. R. Bell,
## 9048                                                                                                                                   8/17/2005 04:19 pm (fblackmo) employee was clearing limits when, he was stung by a bee on his left arm. Supervisor: john mcdonald
## 9049                                                                                                    8/17/2010 02:12 pm (fblackmo) employee was attempting to move tongue of tar kettle around when he felt something pull in his lower back. Supervisor: g. N. Allen
## 9050                                                            8/17/2010 02:22 pm (fblackmo) employee was pulling a mowing tractor out of the ditch when, the chain slipped causing the truck to rock causing his head to strike the window. Supervisor: richard harden
## 9051         8/17/2010 02:36 pm (fblackmo) employee was operating the belts on the rock spreader on state road. A hose busted and fluids go on the driver (Mr. Brewington). Mr. Brewington hit brakes while crossing over rail road tracks. Employee chavis states he in
## 9052                                                8/17/2010 04:29 pm (fblackmo) employee was digging around an open pipe when, she stepped backwards (ground dipped sideways) twisting her left foot/ankle. Supervisor: jonnie barefoot 09/24/2010 02:14 pm (lvaughan)
## 9053                                                                          8/17/2010 04:56 pm (fblackmo) employee was driving pins out of brake spider with a punch and hammer. Employee missed punch and hit his left wrist with the hammer. Supervisor: albert vann
## 9054         8/17/2011 11:10 am (fblackmo) employee was traveling from state road 1616 (sanders road) to state road 1133 (southarde road) on motor grader. Employee was on state road 1127 (south skennah) when a private owned vehicle came around curve left of center
## 9055                                                                                               8/18/2004 02:36 pm (fblackmo) employee was preparing to install a concrete right of way monument when, an insect bit her on the left forearm. Supervisor: eddie cagle
## 9056                                                                                     8/18/2004 02:56 pm (fblackmo) employee states on form 19 that she was using a weed eater (handle bar type) when, her right shoulder popped out of joint. Supervisor: keith hill
## 9057                                                                                                             8/18/2004 04:35 pm (fblackmo) employee states he was turning in a driveway when, a private vehicle hit him in the back fender. Supervisor: jimmie evans
## 9058           8/18/2004 04:56 pm (fblackmo) employee was replacing ball joints on a ford f-150. He was using his right hand to push on a 1/2 ' ratchet to loosen the brake caliper bolts and felt pain in the base of his right hand. He reported the incident to his s
## 9059                                                                       8/18/2004 09:54 am (fblackmo) employee was driving a backhoe on I-240 when, it was struck from behind by a private vehicle. Employee felt pain in his lower back area. Supervisor: b. R. Weeb
## 9060                                                                                      8/18/2004 10:21 am (fblackmo) employee states on form 19 that while cutting vegetation he, came into contact with poison ivy on multiple body parts. Supervisor: kyle albright
## 9061                                                                                               8/18/2004 10:57 am (fblackmo) employee was removing chairs from maintenance building while cleaning when, he felt pain in his back area. Supervisor: david livingston
## 9062                                                                                          8/18/2005 08:22 am (fblackmo) employee states while cutting limbs at property corner he was stung by swarming bees coming from inside the ground. Supervisor: g. A. Burton
## 9063                                                                                                                           8/18/2005 08:33 am (fblackmo) employee was removing a tree from road when, he came into contact with poison ivy. Supervisor: a. S. Bailey
## 9064                                                                                                                     8/18/2005 08:45 am (fblackmo) employee was stacking easement in a tick infest area when, he found a tick on his head. Supervisor: john mcdonald
## 9065                                                                                                     8/18/2005 09:25 am (fblackmo) employee was completing a vin verification on a 1990 dodge, when he was bitten by a spider on his left elbow. Supervisor: sa hall
## 9066      8/18/2005 09:55 am (fblackmo) another employee (frankie, bill, ronnie, and gary) observed that employee was stumbling, falling, dizzy, and incoherent. Employee had used potato rake and was walking in ditch that had been cleared. Employee was hot and went
## 9067                                                                                                8/18/2005 10:07 am (fblackmo) employee was helping to lift a 5 gallon water cooler from pick-up when, he felt pressure in his rectal area. Supervisor: walt crumpler
## 9068                                                                                      8/18/2005 11:03 am (fblackmo) employee was installing one way arrow signs on us 29 when, he heard a pop and numbness in his right hand and fingers. Supervisor: johnny coleman
## 9069                                                                     8/18/2006 02:06 pm (fblackmo) employee was flagging traffic for a widening project. Employee became dehydrated, dizzy, hot, and sick on his stomach. Heat exhaustion. Supervisor: doug williams
## 9070          8/18/2006 02:16 pm (fblackmo) employee was putting a strip of filter cloth around pipe band. Injury occurred when employee was standing on 16 foot ladder and employee was attempting to come down the ladder when, the ladder base slid causing him to fa
## 9071                                                                                                                           8/18/2006 02:29 pm (fblackmo) employee was using a jackhammer to bust concrete when, dust blew into his eyes. Supervisor: rodney matthews
## 9072                                                                                                                                    8/18/2006 02:41 pm (fblackmo) employee was lifting, pulling, and pushing steel plates on shear machine. Supervisor: hosea blount
## 9073                                                         8/18/2006 02:51 pm (fblackmo) employee was sitting at her desk answering switchboard. Employee felt a stinging on her right outer thigh. The area started to swell and turn dark. Supervisor: wendi johnson
## 9074                                                               8/18/2006 03:02 pm (fblackmo) employee placed the rig keys under the seat of equipment when, he turned around the branches from a holly tree poked him in his right eye. Supervisor: dean argenbright
## 9075                                                                                                                      8/18/2006 03:12 pm (fblackmo) employee was cutting trees from right of way when, he came into contact with poison oak. Supervisor: joe cogdell
## 9076                                                                                              8/18/2006 09:24 am (fblackmo) employee was lifting a chain guard from the back of a pickup truck when, he felt pain in his lower back area. Supervisor: jerry w. Brown
## 9077          8/18/2006 09:35 am (fblackmo) employee states that he was dumping a load of dirt. The dirt got hung in the tailgate. He proceeded to loosen the load with a shovel. While chopping down on the dirt he, felt a sharp pain in his left shoulder. Employee r
## 9078         8/18/2006 09:49 am (fblackmo) employee was assisting the equipment shop in the repair of the tarp arm on the right side of tandem dump truck. Employee pulled on the arm, it shifted, and pinched his finger between the top of the bed rail and the tarp a
## 9079                                                                   8/18/2006 10:15 am (fblackmo) employee experience heat exhaustion which caused his sickle cell disease to flare up, high blood pressure, and resulting in him passing out. Supervisor: kent boyer
## 9080                                                      8/18/2009 04:07 pm (blgay) employee was picking up signs along us 19e. While returning to vehicle, employee stepped on a rock or something similar, causing his left knee to pop. Supervisor: lonnie mcclellan
## 9081                                   8/18/2009 04:38 pm (fblackmo) employee was working on a crew patching potholes with asphalt. The crew had finished patching and had stopped for lunch when, employee became light headed and passed out. Supervisor: r. L. Taylor
## 9082          8/18/2009 05:54 pm (fblackmo) employee was flagging on state road 1001 for a crew removing trees when he collapsed due to heat exhaustion. Employee fell down and hit the ground and became incoherent. Supervisor: rodney l. Tanner 10/13/2009 05:05 pm (
## 9083                                                                                        8/18/2009 12:13 pm (fblackmo) employee was using bush ax when, he slipped on slope causing injury to his lower back. Supervisor: neil roberson 8/29/2009 12:07 pm (lvaughan)
## 9084          8/18/2010 01:50 pm (ldbarnes) employee was lifting the top of the ice maker off to move it into the building. While sliding the top off, water started running out of the ice tray onto his arm. The next thing he knew, he had lost his grip on the side.
## 9085          8/18/2010 03:06 pm (ldbarnes) employee was walking through a wooded area. While he was performing a field survey, he tripped on a root. He caught himself with his left hand suffering a puncture wound. Employee received puncture wound to left hand. Su
## 9086            8/18/2010 04:36 pm (ldbarnes) employee was mowing and weedeating on the maintenance yard when he came in contact with poison ivy. Employee has poison ivy on both hands, arms, neck and head. Supervisor: darrell hildebran 8/18/2010 04:57 pm (ldbarnes
## 9087                                                                                                         8/18/2010 10:43 am (fblackmo) employee was stepping into the back of a pickup truck to clean it out when, he felt his back pop. Supervisor: david pleasants
## 9088                                                                                         8/18/2010 10:58 am (fblackmo) employee was walking beside the road, the shoulder was low, and he stepped wrong and pulled a muscle in his lower back. Supervisor: mark dark
## 9089                                                         8/18/2010 11:12 am (fblackmo) employee was responding to a dead animal call on state road. Employee was attempting to move the dead dog when, dog bit him on his right upper arm. Supervisor: ricky blalock
## 9090          8/18/2010 11:32 am (ldbarnes) employee was attempting to identify a stolen chevrolet 3500 dually truck. He was going back and forth under the truck to sand and scrape on locations. After finishing the identification process, I noticed some pain in my
## 9091         8/18/2010 12:08 pm (fblackmo) employee (john merritt) was working with another employee doing field surveys. Employee was walking down slope with a large amount of debris when, his foot went into a hole causing injury to his left knee. Supervisor: chr
## 9092                                                                                                                           8/18/2010 12:30 pm (fblackmo) employee was cleaning out ditch when, he was bitten on lower left leg by a snake. Supervisor: allen russell
## 9093                                                                                  8/19/2004 09:14 am (slee) employee attempted to stop behind stopped vehicle but began to skid, so he tried to pass on the left but lost control and hit the ditch ad flipped over.
## 9094                                                                            8/19/2005 02:21 pm (blgay) employee came out of supply room. Tripped over pole saw. Lost balance and fell against corner of table hitting left rib cage and arm. Supervisor: r. E. Goins
## 9095         8/19/2005 11:13 am (blgay) employee was removing the bracket off center shaft the spring had tension on it because it was stuck and spring came loose and caused the shaft to turn and vice grips turned and cut palm on right hand. Supervisor: ronald pea
## 9096                                                                                                                                                            8/19/2005 11:28 am (blgay) employee twisted left ankle while walking up a slope. Supervisor: k. T. Cross
## 9097                                             8/19/2005 11:52 am (blgay) employee was unloading pipe with the assistance of an inmate. The inmate dropped his end causing the pipe to bounce. The pipe struck and cut employee on both wrists. Supervisor: b. R. Webb
## 9098                                                                                                                                      8/19/2008 02:33 pm (fblackmo) employee was stepping out of truck when, she felt pain in her left foot. Supervisor: karen askew
## 9099         8/19/2008 02:48 pm (fblackmo) employee was operating a tractor mower on nc 72 w. The tractor was struck by a west bound commercial vehicle. Employee was ejected from tractor mower, landed in ditch, and struck by back wheels of the commercial vehicle t
## 9100                                                                                                                                8/19/2008 03:04 pm (fblackmo) employee was exiting vehicle when, he was bitten by a dog on his right thigh. Supervisor: s. H. Kinner
## 9101                                                                                                             8/19/2008 03:26 pm (fblackmo) employee was operating excavator. As he was pulling on the throttle, he felt a pain in his back. Supervisor: c. W. Garris
## 9102                                                                                                 8/19/2008 03:34 pm (fblackmo) employee was returning shaft inspection device to trailer and touched hot surface of generator muffler. Supervisor: hesham el boulaki
## 9103         8/19/2008 03:46 pm (fblackmo) employee was picking up one end of road concrete pipe at bell end to turn pipe so he could roll pipe out of the way so he could proceed to dig on driveway. He was installing pipe when he lifted up the end of pipe and felt
## 9104                                            8/19/2008 04:10 pm (blgay) employee was pushing his walk behind thermo-plastic cart off roadway, while placing a stop bar. When employee pulled it back on to the roadway, he strained his back. Supervisor: arnold cabe
## 9105         8/19/2008 04:18 pm (blgay) employee was operating dozer on backslopes of sr 1105. Employee began feeling pain in lower back. Employee continued to work. Crew moved to sr 2629, where employee continued to operate dozer. Pain became unbearable when empl
## 9106                       8/19/2009 10:20 am (blgay) employee was placing stones in silk basin on maggie robinson road, when he felt a pain go through his stomach. Supervisor: mike walden 03/09/2011 03:40 pm (jwilson) 03/14/2011 12:48 pm (jwilson) 03/14/2011 12:5
## 9107                                          8/2/2005 02:55 pm (fblackmo) employee was on emergency callback due to storm that had blown trees into road. Employee was removing limbs when, he was bitten by some type of insect on his hands. Supervisor: s. G. Foster
## 9108                                                                                                        8/2/2005 03:06 pm (fblackmo) employee was tightening a bolt on mower when, the tool slipped causing the injury to his left hand. Supervisor: r. A. Ellington
## 9109                                                               8/2/2005 03:45 pm (fblackmo) employee was attempting to step onto left gate from right side when, his foot slipped causing him to fall forward striking left leg on gate. Supervisor: j. W. Daniel jr
## 9110                                                                                                              8/2/2005 04:10 pm (fblackmo) employee was removing valve cap from tire. His right hand struck rim cutting right hand finger. Supervisor: r. R. Fulghum
## 9111                               8/2/2006 01:15 pm (fblackmo) employee was walking from the employee parking area toward the maintenance yard gate when, he twisted his right ankle. Employee was arriving at work at the time of incident. Supervisor: g. J. Liverman
## 9112          8/2/2006 12:24 pm (fblackmo) employee states, while directing traffic for a ditching job on highway 56 near katesville pallet mill, a vehicle traveling east at a high rate of speed failed to yield for the flagman. The vehicle hit the stop/slow paddle
## 9113                                                                                                                            8/2/2006 12:37 pm (fblackmo) employee was weed eating when, he came into contact with poison oak/ivy on both arms. Supervisor: d. Martin
## 9114                                                                                                                            8/2/2006 12:59 pm (fblackmo) employee was cleaning rocks off a dump truck when, he was bitten by an unknown insect. Supervisor: d. Gross
## 9115         8/2/2007 03:26 pm (speedin) employee was floating in a patch and felt a pain in his lower left back. At another jobsite a couple of hours later he bent over to pick up a rake and he felt the pain again. This time the pain went down his left leg. He wa
## 9116         8/2/2007 04:28 pm (speedin) employee was shaking sandblasting hose to try to free up blasting agent when the hose blew off the sandblaster. The blasting agent then blew out of sandblaster and damaged employee's hands, with his left hand injured the mo
## 9117                                                                                     8/2/2007 08:50 am (speedin) employee was pulling an 8' steel post off of a rack. He felt a sharp pain in his right elbow and the pain went up his arm. Supervisor: j. P. Bivins
## 9118                                                                                               8/2/2007 09:23 am (speedin) employee was bushing (cutting) vegetation around a bridge with a weed-eater and got poison oak on his left arm. Supervisor: herbert ramey
## 9119         8/2/2007 11:04 am (fblackmo) employee indicated that he injured his back while performing concrete testing during the aci certification class. He claims that on the final day of the class he strained his lower back and hip area resulting in pains from
## 9120       8/20/2007 02:13 pm (fblackmo) employee was working in the asphalt crew raking asphalt in the a. M. Hours. As he was taking a break in the truck, he felt a pain in his shoulder when he reached for a drink. He then felt he could continue and got on the ro
## 9121                                                                                                                             8/20/2007 02:38 pm (fblackmo) employee was leaning over mail basket when, she felt pain in her lower back. Supervisor: wilma dale ellis
## 9122         8/20/2007 03:26 pm (fblackmo) employee was exiting the side of the building when, his right knee gave way causing him to fall off the steps landing on his right side in the grass. Employee felt pain in his right knee, thigh, hip, buttocks, arm, wrist,
## 9123             8/20/2007 03:38 pm (fblackmo) employee was operating motorgrader on shoulder operation. Employee felt a bug bite on his left elbow. Employee thought it was a mosquito. In a few days, area swelled and became extremely sore. Supervisor: g. S. Harris
## 9124         8/20/2007 04:06 pm (fblackmo) employee was cutting up timber waste with chain saw in trash pile. Employee finished his task turned to walk away, stumbled and lost his balance causing him to step forward without looking where he was stepping and steppe
## 9125                                                                                                               8/20/2007 04:19 pm (fblackmo) employee was working on state road when, he was bitten by a bug on his ankle, back, and legs. Supervisor: shelton james
## 9126                                                              8/20/2007 04:30 pm (fblackmo) employee was picking up loaded stake bag (rebar, stakes, sledge hammer, spikes, etc... ) on a down hill slope when, he felt pain in his chest. Supervisor: k. T. Presson
## 9127                                                                        8/20/2007 12:34 pm (fblackmo) employee was installing a stop sign at 5:00 pm in a grassy area when, he found several ticks on his upper back and lower neck area. Supervisor: charles reaves
## 9128                                          8/20/2009 04:50 pm (fblackmo) employee was attempting to remove a roadway sign from the bed of a pickup truck. Employee felt something pull in the upper part of his back and left shoulder. Supervisor: archie c. Coghill
## 9129         8/20/2009 05:02 pm (fblackmo) employee was working with bridge crew using jack hammer to break apart concrete slabs for removal. The concrete broke apart suddenly causing the area to deteriorate. Employee slipped and fell, jack hammer struck him on th
## 9130                                                                                                                             8/20/2009 05:20 pm (fblackmo) employee was getting into truck when, he noticed insect bite to left wrist. Supervisor: ashley pilkington
## 9131                                                                               8/20/2009 12:33 pm (blgay) employee was working on jobsite with another co-worker. Employee started feeling sick and passed out. Supervisor: larry greene 4/23/2010 06:41 pm (sshort)
## 9132                                                                                                                                             8/20/2009 12:42 pm (blgay) employee was standing in creek and mud, possibly twisted right ankle. Supervisor: m. R. Ward
## 9133                                                      8/20/2010 02:26 pm (fblackmo) employee was assisting in lifting filter cloth. Employee tripped over filter cloth as another employee lifted it. Employee fell and injured left palm. Supervisor: h. D. Wiggins
## 9134                                                                                                                    8/20/2010 02:37 pm (fblackmo) employee was shoveling asphalt when he felt a pop to the center part of his back. Supervisor: horance j. Rivenbark
## 9135                         8/20/2010 02:55 pm (fblackmo) employee was exiting commercial motor vehicle which had exposed exhaust pipe near passenger door. Employee accidentally touched her arm on the hot pipe. Employee burn left forearm. Supervisor: terry fuller
## 9136                                                              8/20/2010 11:16 am (fblackmo) employee stated he was trying to separate barrels on lane closing trailer when his left wrist popped. Employee felt pain in left arm and wrist. Supervisor: glenn hunter
## 9137          8/20/2010 11:31 am (fblackmo) employee reported that he was laying block on monday and could not move tuesday and went to the emergency room. The emergency room physician diagnosed him with having a back strain and a hernia. Employee felt pain in his
## 9138                                                            8/20/2010 11:54 am (fblackmo) employee was helping with construction of multiple aluminum pipe structure when, he became over heated. Employee experienced heat exhaustion. Supervisor: lou wetherington
## 9139                                                                                                                                  8/20/2010 12:20 pm (fblackmo) employee was moving spray buckets of paint when he injured his lower back. Supervisor: thomas bowser
## 9140                    8/21/2009 02:51 pm (blgay) employee was in the process of lifting 8-inch hollow stem augers off the drill rig and replacing with new ones, when he felt a burning and stinging sensation in his abdomen area, navel area. Supervisor: w. D. Frye
## 9141         8/22/2006 10:02 am (fblackmo) employee returned to maintenance yard after hauling material from job site when, he stopped to check for foreign objects on truck canvas. He climbed up on rear wheels of dump truck and as he began to dismount he slipped a
## 9142         8/22/2006 10:17 am (fblackmo) employee was in a trench helping another employee place a 20' section of 30' hdpe pipe in place that was being lowered into trench by trackhoe. Employee twisted his body to place pipe and felt pain in his right knee area.
## 9143             8/22/2006 10:36 am (fblackmo) employee was dismounting a tractor tire so that he could work on the tractor frame. The lifting device he was using and tire shifted position causing part of the device to stick him in his eye. Supervisor: w. E. Evans
## 9144         8/22/2006 10:46 am (fblackmo) employee was grinding a piece of rusty pipe when, the grinder grabbed it and pulled the employees right hand into the sharp edge of the pipe causing a laceration on his right hand between his thumb and index finger. Super
## 9145                                                                                                                    8/22/2006 11:11 am (fblackmo) employee was loading and unloading sandbags when, she felt pain in her lower back area. Supervisor: roger pulcheon
## 9146                                                     8/22/2006 11:30 am (fblackmo) employee was weed eating when he, disturbed a nest of yellow jackets causing the stings to his upper left thigh area. Employee is allergic to bee stings. Supervisor: r. E. Joyce
## 9147                                                              8/22/2006 11:46 am (fblackmo) employee was attempting to release strap from pole trailer when, 30ft. Pile dropped from position and trapped his wrist between pile and strap. Supervisor: ken anderson
## 9148                                                                                                                           8/22/2006 11:56 am (fblackmo) employee was operating the front end loader when, he felt pain in his groin area. Supervisor: richard bland
## 9149                                                                                                                                                    8/22/2007 01:33 pm (fblackmo) employee was bitten by a tick while working on state road. Supervisor: m. R. Moore
## 9150                                                                                                 8/22/2007 01:41 pm (fblackmo) employee was operating a piece of equipment in extreme heat when, he started suffering from stomach cramps. Supervisor: w. R. Friddle
## 9151                                                                                                                             8/22/2007 01:49 pm (fblackmo) employee was waiting for dump truck to pass when, debris got into his left eye. Supervisor: alvin w. Ball
## 9152                                                                            8/22/2007 02:01 pm (fblackmo) employee was installing a clutch fan on dump truck when, he felt a burning sensation in back, and then felt muscles tightening up. Supervisor: j. E. Stepp
## 9153                                                                                                                        8/22/2007 02:12 pm (fblackmo) employee was taking an old sign off of a post when, a bee stung him on left eye. Supervisor: roger l. Arrowood
## 9154                                                                                                                           8/22/2007 02:20 pm (fblackmo) employee was shoveling asphalt and pulling sled when, he felt pain in groin area. Supervisor: t. W. Edwards
## 9155                                                                                                      8/22/2007 02:27 pm (fblackmo) employee was walking on shoulder of road when, he stepped in a hole causing injury to his right ankle. Supervisor: aaron earwood
## 9156                                                                           8/22/2007 02:41 pm (fblackmo) employee was using a point bar to remove a board from the bulkhead of a bridge when, the point bar slipped and cut his right hand. Supervisor: robbie beach
## 9157         8/22/2007 02:52 pm (fblackmo) employee reported that while on the stockyard she got out of her dump truck to conduct a inspection when, she pulled herself up back into the truck she, hit her head on the buck board causing her chin to hit her chest and
## 9158         8/22/2007 03:04 pm (fblackmo) employee was attempting to remove metal fence post from in front of the guard rail so that he could continue spraying the rail when, post feel unexpectedly causing employee to fall backwards. Employee attempted to catch h
## 9159                                                                                                                           8/22/2007 03:42 pm (fblackmo) employee was installing pga signs when, he found two ticks on his neck and left leg. Supervisor: w. R. Wall
## 9160                                                         8/22/2007 03:51 pm (fblackmo) employee was assisting another employee moving metal grates. While lifting grate, grate slipped causing employees finger to be mashed between grates. Supervisor: k. R. Davis
## 9161                                                                                         8/22/2007 04:01 pm (fblackmo) employee was walking around a dump truck to open the trucks tailgate when, he blacked out and could not feel his legs. Supervisor: david hall
## 9162                                                                8/22/2008 08:55 am (fblackmo) employee was unloading a large wooden roll box. Employee was removing rubber grader blades from the box when, he felt pain in his lower back. Supervisor: jeff proctor
## 9163                                                                                                                       8/22/2008 09:08 am (fblackmo) employee was inspecting pipe on state road when, he slipped and struck his right knee. Supervisor: donald wells
## 9164       8/22/2008 09:32 am (fblackmo) employee was working under asphalt distributor removing a defective air valve when, foreign object got into his right eye. Employee was wearing his safety glasses with the factory side shields in place. Supervisor: t. L. Je
## 9165                                                                                                                                                                                             8/23, 8/24, 8/26 & 8/27 received 27 tick bites 7 of which were attached
## 9166                                                                                                               8/23/2006 09:47 am (fblackmo) employee was flagging traffic when, he became sick on his stomach, very hot. Heat exhaustion. Supervisor: doug williams
## 9167                8/23/2006 09:57 am (fblackmo) employee was operating a widening machine placing b-25 asphalt into a trench along the side of the roadway when, he became dehydrated, hot, dizzy, and sick to the stomach. Heat exhaustion. Supervisor: doug williams
## 9168         8/23/2006 10:34 am (fblackmo) employee was traveling in ncdot truck on project, contractors dump truck was hauling material and crossed into the path of employees truck. Employees truck struck the right side of the dump truck. Employee experienced pai
## 9169                8/23/2006 11:06 am (fblackmo) after midmorning break employee was found to be non-responsive sitting in breakroom. He is an insulin dependent diabetic, 911 was called. Ems treated employee and he signed a waiver form. Supervisor: kerry t. Cross
## 9170                                                                                                                                              8/24/2004 01:21 pm (fblackmo) employee was walking on uneven terrain when she tripped and fell. Supervisor: e. J. Bunn
## 9171                                                                                                         8/24/2004 01:45 pm (fblackmo) employee was removing a tree form the right of way when, he came into contact with poison ivy. Supervisor: w. E. Mcclendon jr
## 9172                                                                                                                                        8/24/2004 01:54 pm (fblackmo) employee was shoveling abc stone when, he felt pain in his chest area. Supervisor: dale loflin
## 9173                                                                                                     8/24/2004 02:25 pm (fblackmo) employee was unloading pipe at job site when, a jagged pieced of metal at end of pipe cut his right forearm. Supervisor: r. Leigh
## 9174                                                                                                                       8/24/2004 02:44 pm (fblackmo) employee was cutting down poison ivy vines when, he came into contact with poison ivy. Supervisor: g. Todd cole
## 9175                                                                                                                                    8/24/2004 04:09 pm (fblackmo) employee states while cutting trees he came into contact with poison ivy. Supervisor: r. A. Nowell
## 9176            8/24/2004 08:46 am (fblackmo) employee was states on form 19 that while conducting a cdl road test customer vehicle was struck in the rear by a private vehicle. No police report was field. Employee experienced pain in his head and neck. Supervisor:
## 9177                                                                       8/24/2004 09:05 am (fblackmo) employee was cleaning out driveway pipe with pipe washing machine when, he pulled out hose he felt a sting in right hand through glove. Supervisor: j. D. Keene
## 9178                                                                 8/24/2004 09:21 am (fblackmo) employee was operating a backhoe when, he was stung by a yellow jacket on his right temple. Employee states he experienced pain and swelling. Supervisor: s. W. Nance
## 9179                                                                    8/24/2004 09:46 am (fblackmo) employee was traveling east on us 264 driving a tandem dump truck owned by ncdot when, it was struck in the rear by a private vehicle. Supervisor: fred l. Wiggins
## 9180                                                                         8/24/2004 10:08 am (fblackmo) employee was in the process of pouring hot para plastic into a tar can when, the tar blew out splashing back into employees face. Supervisor: tim k. Southard
## 9181                                  8/24/2004 10:19 am (fblackmo) employee had climbed into the back of dump truck to remove cones for a lane closure when, he jumped down into bed of truck he turned his ankle and broke it in two places. Supervisor: mark c. Smith
## 9182                                                            8/24/2004 11:05 am (fblackmo) employee was washing piece of equipment when he stepped down with wet shoes his foot slipped causing the injury to his left shoulder and left arm. Supervisor: d. C. Capps
## 9183                                                                                    8/24/2005 02:46 pm (fblackmo) employee was participating in a bat survey, he was removing a bat from the mistnet when, his hand got to close to the bats mouth causing the bite.
## 9184                                                                                                                    8/24/2005 03:02 pm (fblackmo) employee was cutting a tree from bucket truck when, he came into contact with poison ivy. Supervisor: r. E. Austin
## 9185                                                   8/24/2005 09:14 am (fblackmo) employee was putting chain around pipe to be installed by backhoe when, backhoe bucket began to move striking him on the head, knocking him to the ground. Supervisor: m. H. Thomas
## 9186           8/24/2005 09:27 am (fblackmo) employee was assisting sign erector with the installing of road closure/detour signs (48 x 48") when, gradually he starting felling soreness and irritation in right wrist. Employee states the pain became more intense as
## 9187                                                                                         8/24/2005 09:51 am (fblackmo) employee slipped and fell on steep terrain while advancing borings for project, causing the injury to his left ankle. Supervisor: m. H. Hager
## 9188         8/24/2005 10:04 am (fblackmo) employee states he was assisting a operator of an athey loader who was trying to remove a large piece of concrete that was wedged between the belt side walls under the cab. Employee felt pain in his back area. Supervisor:
## 9189          8/24/2010 03:55 pm (barnes) employee left the job site and went to puppy creek fire department. He then called an ambulance on himself and reported he felt dehydrated. He was then transported to cape fear valley hospital. Supervisor: danny g. Dees, I
## 9190                                                                                                                      8/25/2005 08:20 am (fblackmo) employee began to feel dizzy while shoveling and raking hot asphalt in excessive heat. Supervisor: w. R. Robbins
## 9191                                                                                                           8/25/2005 08:41 am (fblackmo) employee was bushing and trimming around bridges and came into contact with poisonous plants. Supervisor: c. Gerald woodley
## 9192                                                                                                                 8/25/2006 10:02 am (fblackmo) employee was assisting in unloading signs from delivery turck when, he felt pain in his back. Supervisor: j. A. Ridge
## 9193                                                                                       8/25/2006 10:33 am (fblackmo) employee stated injury is due to repetitive use of computer keyboard at work. Carpal tunnel syndrome in both hands. Supervisor: brenda p. Grady
## 9194                                                                                            8/25/2008 05:19 pm (fblackmo) employee was walking outside (taking items to vehicle) when, she stepped in a hole causing injury to right ankle. Supervisor: ben a. Riggs
## 9195                                                                                                                  8/25/2008 05:31 pm (fblackmo) employee was in engine room and felt weak, dizzy, and physically drained. Dehydration. Supervisor: h. C. Scarborough
## 9196                                                                                                                                        8/25/2008 05:41 pm (fblackmo) employee was stepping off curb when, she twisted her left ankle. Supervisor: dolphus marshburn
## 9197         8/25/2008 05:49 pm (fblackmo) employee was on the loading dock when, he went to step on the thermo truck parked near the loading dock he, missed the truck, and fell between the truck and dock. Employee struck his head on rubber bumper mounted on the d
## 9198         8/25/2008 06:16 pm (fblackmo) employee was walking down hallway from vendor room to return to registration area. She was walking through the lobby of the hotel. She stepped from the carpeted area to the marbilish area. She slipped and fell, injuring h
## 9199         8/25/2008 08:59 am (blgay) employee was cutting trees on west old phipps road in pinnacle and poison oak was in the trees he was cutting. Also, he workers in several other locations where poison oak was present. Employee was working on nc 8 at wess ha
## 9200          8/25/2008 09:15 am (blgay) employee was working on f-350 pickup truck that was up on jack stands. One of the jack stands broke, causing the truck to fall on employee. Employee has multiple contusions to shoulders, chest rib areas. Supervisor: richard
## 9201          8/25/2010 01:27 pm (barnes) employee "jonathan" was standing on the ground sweeping out the grader. When he finished, he turned to walk away and felt something pull in his lower back. Employee hurt his back. He had a sprain in lumbar region. Supervis
## 9202         8/25/2010 02:51 pm (barnes) employee was beginning to count yellow skips in the road. While sitting in passenger seat, he heard a boom and felt something. Then the back windows shattered. A knot was on the back of his head and he had soreness in his b
## 9203         8/25/2010 04:03 pm (barnes) employee was raking asphalt. While raking, he noticed that he had gotten too hot and sat down in the truck to cool off. He then noticed a soreness or numbness in his right arm, neck and face. Employee injury to right arm, n
## 9204                                                                                                           8/26/2004 02:04 pm (fblackmo) employee was getting out of bucket truck, slipped on step causing the injury to his lower back. Supervisor: jerry w. Porter
## 9205                                                                8/26/2004 02:15 pm (fblackmo) employee was walking around truck to motion car around roadway when, he slipped on a piece of plastic causing the injury to his left ankle. Supervisor: patrick norman
## 9206                                          8/26/2004 02:28 pm (fblackmo) employee states that she was giving a road test in a straight truck. Employee was slammed around in the cab which lead to the injury of her upper and lower back. Supervisor: dwight langley
## 9207                           8/26/2004 03:21 pm (fblackmo) employee states that the client hit the gas pedal instead of brakes, hitting the curb hard on the side of the road. Employee experienced pain in his neck and left shoulder area. Supervisor: vickey fields
## 9208                                                                                                 8/26/2004 03:42 pm (fblackmo) employee was on entrance steps of school bus when, he slipped causing him to twist his right foot and ankle. Supervisor: scott rivers
## 9209                                                                                                           8/26/2004 04:00 pm (fblackmo) employee was walking on a mount of dirt and slipped causing him to twist back and fall to one knee. Supervisor: a. O. Epley
## 9210                                                                                                                       8/26/2004 04:15 pm (fblackmo) employee is experiencing pain and numbness in right arm, shoulder, hand, and fingers. Supervisor: steven hulsey
## 9211         8/26/2005 08:53 am (fblackmo) employee was returning to office at the end of the day when, a vehicle pulled out in front of him, he swerved to avoid hitting him and hit the bridge rail. The truck turned over on its top causing the injury to his arms a
## 9212                                                                                                             8/26/2005 09:05 am (fblackmo) employee was conducting road maintenance work when, he found a tick on his back and left shoulder. Supervisor: j. R. Ashe
## 9213                                                                                                                            8/26/2005 09:14 am (fblackmo) employee was operating a bull dozer when, he was stung by a yellow jacket. Supervisor: timothy w. Anderson
## 9214         8/26/2005 09:29 am (fblackmo) employee was walking up to an inmate to give instructions. The inmate was weedeating at the time and turned around when employee approached him. The inmate accidentally struck employee on his right ankle with the weedeart
## 9215                                                     8/26/2008 12:35 pm (fblackmo) employee was moving into position to install boom lift cylinder when, he struck his head on frame of old arrow board bracket which is no longer in use. Supervisor: d. C. Sherrod
## 9216                             8/26/2009 04:53 pm (fblackmo) employee was hauling asphalt from wooten plant when, the dump truck struck a driveway pipe lane causing truck to over turn. Employee felt pain in his back and shoulder area. Supervisor: frank carpenter
## 9217                                                     8/26/2009 11:04 am (blgay) employee was fixing a pothole and a private owned vehicle ran over his right foot, causing back pain, crushing right foot injury and right ankle sprain. Supervisor: william friddle
## 9218         8/26/2009 11:40 am (blgay) employee was stopped at a red light. A truck traveling south bound ran the red light. The private vehicle struck another private vehicle in front of state truck, then truck slid into employees state vehicle. Supervisor: mere
## 9219         8/26/2009 12:28 pm (blgay) employee was operating an astron mower, when the front tire developed a large knot. Employee tried to get mower back to the shop, but the right front tire disintegrate, causing mower to bump hard. Employee continued to drive
## 9220                                                                                  8/26/2010 02:36 pm (fblackmo) employee was conducting a road test when, driver ran into a parked car in parking lot. Employee felt pain in her lower back. Supervisor: dean almond
## 9221                                                                                                                         8/26/2010 02:51 pm (fblackmo) employee cut his right hand while reaching through window to retrieve a vehicle part. Supervisor: tom collins
## 9222                                                                                                                       8/26/2010 03:03 pm (fblackmo) employee was was lifting man hole cover when, it slipped and fell onto his left foot. Supervisor: thomas bowser
## 9223                                                      8/26/2010 03:13 pm (fblackmo) employee states he was lifting lumber to place it on the back of a truck when, the lumber slipped out his his hands causing his left shoulder to pop. Supervisor: bradley burton
## 9224                                                                                                   8/26/2010 04:20 pm (fblackmo) employee was raking and using shoveling dirt for crossline when, he became over heated. Heat exhaustion. Supervisor: david pleasant
## 9225         8/27/2008 01:32 pm (blgay) employee was diagnosed with pot room asthma on September 27, 2007 by Dr. Jill ohar. Dr. Ohar also confirmed employees diagnosis of asbestosis. Employee initially brought these claims against alcoa. Alcoa contends that employ
## 9226                                                                                       8/27/2008 02:49 pm (fblackmo) employee was in back of tandem dump truck cleaning dirt off of tarp roller, felt sting of insect in scrotum/groin area. Supervisor: r. G. Crews
## 9227                                                                        8/27/2008 03:50 pm (blgay) employee was on road test, traveling south on 16, when driver was making left into office parking lot and turned into oncoming traffic. Supervisor: theodore gray
## 9228         8/27/2008 04:07 pm (blgay) employee was working outside and got into red bugs and thought they were irritating the back of his left leg area, but when he felt closer he noticed a tick. Employee pulled tick off on 8/14/08 thursday and by monday 8/18/08
## 9229         8/27/2008 08:23 am (fblackmo) employee was standing on a hydra platform lift. Another employee was passing down materials from the bridge deck. Employee on bridge deck stated he struck a plate with his foot causing another plate to fall and strike Mr.
## 9230                                                                                                                        8/28/2008 02:51 pm (bhenders) employee was sweeping loose gravel off the road and pov failed to reduce speed and struck sweeper in the rear.
## 9231                                      8/29/2006 02:31 pm (fblackmo) employee was cutting grass on embankment when, the mower lost traction causing it to slip. Employee put his arm out to shield himself causing the injury to his wrist. Supervisor: alfred wilson
## 9232                                                                                                  8/29/2006 02:56 pm (fblackmo) employee tripped and struck both knees and his ribcage on a rail road track while walking off project site. Supervisor: david hering
## 9233                                                                                                          8/29/2006 03:14 pm (fblackmo) employee was working in extreme heat when, he became dehydrated and suffered from heat exhaustion. Supervisor: h. A. Sorrell
## 9234                                                                                                                      8/29/2006 03:30 pm (fblackmo) employee was getting out of tractor when, his foot slipped causing him to fall. Supervisor: charles r. Whitfield
## 9235                                                                                     8/29/2006 03:52 pm (fblackmo) employee was cleaning up around the office removing dead stems with prunes when, he cut index finger on left hand. Supervisor: douglas h. Johnson
## 9236                                                                                                                  8/29/2006 04:02 pm (fblackmo) employee was cutting a joist for a bridge when, sawdust and silica flew in his right eye. Supervisor: d. R. Alligood
## 9237                                                                          8/3/2006 03:01 pm (fblackmo) employee was working the concrete for catch basin boxes when, concrete seeped into the top of the boots causing burns to both ankles. Supervisor: mike gibson
## 9238                                            8/3/2006 03:10 pm (fblackmo) employee was sitting at his desk. He turned to his left to use the telephone located behind him. As he turned, his left knee struck the inside corner of the desk. Supervisor: d. R. Mcneal
## 9239                                                        8/3/2006 03:20 pm (fblackmo) employee was using a chain binder to tighten down equipment when, it snapped back and hit employee in right upper cheek area close to his right eye. Supervisor: greg mccracken
## 9240                                                                                                               8/3/2006 03:30 pm (fblackmo) employee turned dump truck over while dumping on uneven ground, causing injury to his left knee. Supervisor: j. S. Frady
## 9241         8/3/2009 11:15 am (blgay) employee was putting out signs at work site. Employee dropped truck keys; reached down through sign rack to pick them up; thought racks were going to fall on him, so employee reached up to grab racks and hurt his left ring fi
## 9242                                                           8/30/2005 08:49 am (fblackmo) employee was helping roll a joint of 4-foot concrete pipe over a chain hook. While in a squatted position, she felt a sharp pain in her left side. Supervisor: carlis smith
## 9243                                                                                                        8/30/2005 09:26 am (fblackmo) employee was getting off loader when, he missed the last step and fell on his back in the roadway. Supervisor: mark turlington
## 9244                                                                                                                  8/30/2005 09:43 am (fblackmo) employee states while cutting bushes around bridges he came into contact with poison ivy. Supervisor: david l. Moore
## 9245                                                                                                                        8/30/2005 10:04 am (fblackmo) another employee accidentally threw a shovel full of hot asphalt on micheals left hand. Supervisor: dennis guy
## 9246                                                                              8/30/2005 10:19 am (fblackmo) employee was assisting moving 55 gallon drums when, his left middle finger was pinched between drum and front end loader bucket. Supervisor: k. R. Davis
## 9247         8/30/2006 08:54 am (fblackmo) employee was operating a shoulder mower. He was cutting the sight distance back slopes. Before he started to back up he turned his head to the left to visually verify that he had the clearance to back between a power pole
## 9248                                           8/30/2006 09:11 am (fblackmo) employee picked up and carried a empty 30 gallon drum over his head while helping paint crew fill up centerline paint machine when, he felt pain in his lower back. Supervisor: greg godwin
## 9249         8/30/2006 09:40 am (fblackmo) employee was attempting to step onto equipment trailer with water hose to fill the roller with water. Employees pants cuff became stuck on his boot causing him to drag his left leg along side of the trailer. This resulted
## 9250                               8/30/2006 09:57 am (fblackmo) employee was traveling to perform relief duties in wilson when, he hit a slick spot on the highway, ending up in the median striking cable to separate the lanes of travel. Supervisor: d. R. Marshburn
## 9251                                           8/31/2004 01:57 pm (slee) vehicle #1 was traveling east on nc 268 across us 601. Vehicle # 3 was traveling south on us 601 and failed to stop at a red light. Vehicle #3 collided into the front left side of vehicle #1.
## 9252         8/31/2004 02:05 pm (fblackmo) employee was unloading metal pipe on shoulder of road off o low boy trailer. He stepped up on bed of trailer holding onto gooseneck, grass was wet causing his foot to slip. Employee fell striking his leg on the edge of tr
## 9253                                                                                                                                   8/31/2004 02:17 pm (fblackmo) employee states while reaching for a bale of twine his left knee gave out. Supervisor: jason willis
## 9254                                                                   8/31/2004 02:28 pm (fblackmo) employee was cleaning truck bed of grain straw when, he slipped on wet straw falling backwards striking his left arm on a winch handle. Supervisor: d. M. Honeycutt
## 9255                                                               8/31/2004 02:52 pm (fblackmo) employee was in the process of opening hood on vibratory roller when, he placed his right hand on the latch he was stung by unknown insect. Supervisor: charles f. Vick
## 9256                                                                                         8/31/2004 08:39 am (fblackmo) employee states that while walking around the corner in office she, struck her left wrist on the corner of the table. Supervisor: don ferrier
## 9257                                                                                       8/31/2004 08:59 am (fblackmo) employee fell out of dump truck while trying to let down the tail gate. Employee injured both arms, back, and side. Supervisor: iris h. Mccombs
## 9258         8/31/2004 09:17 am (fblackmo) employee states part of the spray equipment mounted on the truck had broken off and needed to be lifted to move the vehicle to the shop. A whence (hoist) was used to lift the equipment. Lifting the part shifted causing th
## 9259                                            8/31/2004 09:57 am (fblackmo) employee had completed the nuclear gauge paving project when, he placed the gauge in the bed of truck he felt pain in his back and right leg. Supervisor: supervisor: travis s. Williamson
## 9260                                                         8/31/2004 10:10 am (fblackmo) employee stated that he was standing in an awkward position using a rake. Employee felt pain in his lower back while pulling the rack toward himself. Supervisor: j. F. Sloop
## 9261                                                                                                                                                       8/31/2004 10:58 am (fblackmo) employee twisted knee as he climbed into a dump truck. Supervisor: j. D. Wilson
## 9262                                                                                                 8/31/2004 11:19 am (fblackmo) employee states he had an allergic reaction to poison ivy. Both arms and hands are swollen and blistered. Supervisor: iris h. Mccombs
## 9263                                                                                                   8/31/2004 11:29 am (fblackmo) employee was moving hurricane debris when, he came into contact with poison ivy on multiple body parts. Supervisor: iris h. Mccombs
## 9264                                                                                 8/31/2004 11:39 am (fblackmo) employee states while moving hurricane debris on stanley road he, slipped in a ditch causing the injury to his right arm. Supervisor: iris h. Mccombs
## 9265                                                                                                                                       8/31/2004 11:50 am (fblackmo) employee states while cutting trees debris flew into his right eye. Supervisor: l. T. Williford
## 9266                                                                                           8/31/2004 12:51 pm (fblackmo) employee was assisting another employee put up route signs when, one sign fell cutting employee on his right wrist. Supervisor: j. A. Ridge
## 9267         8/31/2005 01:39 pm (fblackmo) employee was using a chainsaw to trim limbs in the bed of a tandem dump truck so that the tarp could be closed. While cutting upward on a small branch the saw kicked down and struck the inside of the employees left ankle.
## 9268                                     8/31/2005 01:49 pm (fblackmo) employee had been raking asphalt and felt lower back muscles begin to tighten up. Employee continued to work until he felt it necessary to see a doctor on 08/19/2005. Supervisor: h. Southerland
## 9269                                                                                               8/31/2005 01:59 pm (fblackmo) employee was cleaning debris off traffic islands on madison blvd. With shovel and broom when, he got to hot. Supervisor: barry matherly
## 9270                                                                                                                              8/31/2005 02:21 pm (fblackmo) employee was working in the field when, she was bitten by a tick on right hand side of head. Supervisor:
## 9271                                                                     8/31/2005 02:37 pm (fblackmo) employee was pulling a plastic tarp onto the shoulder of roadway when, a metal reflector bracket on the guardrail scrapped his left leg. Supervisor: r. J. Monroe
## 9272                                                                                                       8/31/2005 02:49 pm (fblackmo) employee was lifting catch basin grate when, his right ring finger got caught between the two grates. Supervisor: c. N. Edwards
## 9273          8/31/2005 04:25 pm (fblackmo) employee was driving across railroad tracks on state road 1229 in currituck co. To start bst operation on the other side of road when, rail arm from rr crossing came down on top of employee striking him on the left foot.
## 9274          8/31/2005 08:12 am (slee) employee and crew were installing signs on nc 150 in guilford co. Operator was attempting to return crane back to resting position on truck, when something malfunctioned and crane began swinging in opposite direction, gettin
## 9275         8/31/2010 12:17 pm (barnes) employee was inspecting a paving operation on us 226 and had been looking at at drive that needed attention. He was walking down a slight incline when he felt a sharp pain behind his left knee and heard a loud pop. His left
## 9276                                                                                  8/4/2004 09:05 am (fblackmo) employee states on form 19 that he was nailing a spike with hammer when, the hammer slide off nail striking his left thumb. Supervisor: b. F. Kizziah
## 9277          8/4/2004 09:18 am (fblackmo) employee states on form 19 the she was getting out of her car to enter building at door b6 when, she slipped and fell due to west mowed grass. Employee states she experienced pain in her left and right knee. Supervisor: j
## 9278                         8/4/2004 09:33 am (fblackmo) employee states he was going down sloop to take pictures for inspection when, he slipped and fell due to wet grass and vegetation. Employee states he experienced pain in his left knee. Supervisor: mark wade
## 9279                                                                                                            8/4/2004 09:49 am (fblackmo) employee states on form 19 that while working on truck he, closed his right center finger in door. Supervisor: keith hooper
## 9280                                                                                                                                          8/4/2005 08:51 am (blgay) employee cut left outside finger while locking mower in upright position. Supervisor: d. A. Ashe
## 9281         8/4/2005 09:18 am (blgay) employee was doing cut back on trees and bush at guard rail and, while crossing fell into a hole. Hand and wrist hit guard rail. Left hand and wrist had a small knot and was swollen on thursday, 7-28-05 when incident was repo
## 9282         8/4/2005 09:41 am (blgay) employee was directing traffic to move over to right lane due to an auto accident. Employee held up his left arm for traffic to stop. Suv came by him and the mirror struck employees left arm and hand. Suv didn't stop. Supervi
## 9283                                                                                                                       8/4/2008 09:24 am (blgay) employee was loading straw onto truck and the wind blew straw into employees right eye. Supervisor: m. Anthony reel
## 9284         8/4/2008 12:24 pm (blgay) employee was cutting/clearing right-of-way on us74. Employee was using a chainsaw to cut a tree. The tree twisted and fell back on employees right leg. Employee then slid down slope and lodged in fallen tree limbs. Supervisor
## 9285                            8/4/2008 12:36 pm (blgay) employee was cutting unwanted growth out of plant bed on I-85. Employee stirred up yellow jacket nest and was stung several times on arms and legs. Employee is allergic to bee stings. Supervisor: trey moore
## 9286                                                                 8/4/2008 12:49 pm (blgay) employee was at division 14 office maintaining grounds, when a large limb (going through the wood chipper) twisted and hit employee in the head. Supervisor: doug johnson
## 9287         8/4/2009 11:03 am (blgay) employee was trying to secure the tailgate of dump truck. The employee was standing between the embankment and the truck. The bank of soil collapsed onto the employee, which in turn knocked him into the truck, causing contusi
## 9288                                     8/4/2009 11:26 am (blgay) employee was walking up a bank and lost his footing, causing him to fall. Employee has back sprain, concussion, right knee strain and contusion, left and right ankle strain. Supervisor: clyde scott
## 9289                                                                                                                       8/4/2009 11:42 am (blgay) employee was weed eating along us 220 bypass and a piece of debris flew into his left eye. Supervisor: jimmy maness
## 9290         8/4/2009 11:56 am (blgay) employee was flagging traffic on dysartsville road on 07/15/2009. While stepping back off of the edge of pavement to allow traffic to move past his position, employee stepped backward off of the edge of pavement and stepped I
## 9291                                                                                                                              8/4/2011 02:09 pm (fblackmo) employee was trimming trees when he was bitten by a spider on back of his neck. Supervisor: jeffrey ryder
## 9292         8/4/2011 02:17 pm (fblackmo) employee was standing on steering arm on the side of the engine. He was trying to reach over to the rear of the engine when, he bumped his right side groin areaon the air compressor. He felt a sharp pain in right side of g
## 9293         8/4/2011 02:37 pm (fblackmo) employee was cutting and trimming tree branches with a bush axe to clear the sight distance to notify people that they are approaching a stop sign. While trimming, stepped on a hole in the ground which happened to be a yel
## 9294         8/4/2011 10:09 am (fblackmo) employee stated that he went to get in a truck after his lunch break. He felt a stinging in the back of his left leg from the knee down to his heel area. He had calf pain and was not able to put pressure on his leg to walk
## 9295                                                                               8/4/2011 10:42 am (fblackmo) employee was assisting with cutting down trees on state road when the tree truck swung around striking him on his left ankle. Supervisor: b. N. Braswell
## 9296                                                                                                                           8/4/2011 11:09 am (fblackmo) employee states that while shoveling asphalt he over strained his lower back area. Supervisor: john m. Ellis
## 9297          8/5/2005 01:38 pm (fblackmo) employee started to feel light headed and nauseous while standing outside. Employee got water from vehicle and then decided to sit in vehicle but, fainted before getting to vehicle. Employee regain consciousness several m
## 9298              8/5/2005 08:46 am (fblackmo) employee cut left wrist and bruised left arm when, she stuck her hand n a drink machine to try to remove a soda that did not fall. Supervisor: richard howard 8/12/2005 01:22 pm (fblackmo) do not pay any bills(not appr
## 9299                                                                                           8/5/2005 09:06 am (fblackmo) employee was cutting tree. Employee was moving out of the way of the falling tree when, he twisted his right ankle. Supervisor: ben williams
## 9300                                                           8/5/2005 09:22 am (fblackmo) employee was dismounting truck when, he missed the bottom step causing him to fall onto pavement. Employee felt pain in his left knee and back. Supervisor: michael e. Brady
## 9301                                                                                      8/5/2005 09:52 am (blgay) employee was getting off the back of the truck and stepped down onto the tongue of trailer and felt burning in his left leg. Supervisor: t. R. Burns
## 9302                                                                                                                                8/5/2005 10:49 am (blgay) employee was running to truck stepped in to uneven terrain and twisted left ankle. Supervisor: t. R. Burns
## 9303                                           8/5/2005 11:07 am (blgay) employee was getting into the crew cab after flagging operation. Employee felt a sharp pain in his back. After taking off his safety vest, he saw a large red ant. Supervisor: william thompson
## 9304                                                                                                                                                   8/5/2005 12:03 pm (blgay) employee was pulling on sign post in the ground and strained arm. Supervisor: bob moore
## 9305        8/5/2005 12:18 pm (blgay) employee was weed eating along bridge guard rail on harmony church road. Employee saw something flying around his head and swatted at it with his hand, at that time employee felt pain on the back of his neck. Supervisor: b. J.
## 9306         8/5/2008 02:56 pm (fblackmo) employee was installing signs on state road and got overheated and light headed. Employees right eye began to hurt. He worked the next day and reported the incident to kathy barefoot. Kathy told employee to have it checked
## 9307         8/5/2008 03:10 pm (fblackmo) employee was installing a sign on state road when, he got over heated and felt his lips /mouth swelling. After work he went to va hospital in fayetteville. Employee stated his diagnosis was bells palsy (no doctors note). O
## 9308                                                                                                      8/5/2009 02:23 pm (fblackmo) employee was exiting boom mower when, he noticed he was bitten on lower right leg by un-known insect. Supervisor: darrell wilkins
## 9309                                                                                                                           8/5/2009 02:36 pm (fblackmo) employee was cutting limbs when, one of the limbs struck him on the forehead. Supervisor: jonnie b. Barefoot
## 9310                                                                                                             8/5/2009 02:45 pm (fblackmo) employee was walking through bushes in the woods when he was stung by a wasp on his upper lip. Supervisor: c. Shawn melane
## 9311                                                                                                                           8/5/2009 02:57 pm (fblackmo) employee was bitten by a spider on his left forearm while surveying in the woods. Supervisor: chuck mcdonald
## 9312        8/5/2009 12:19 pm (fblackmo) employee was operating a backhoe. Employee turned his body to step down from the backhoe seat; expecting the seat to turn with him. The seat was locked into position causing him to twist muscles in his back that resulted in
## 9313                                                                    8/5/2009 12:43 pm (fblackmo) employee was installing a traffic counter to a road sign. Employee trying to cross ditch when he stepped in a hole and twisted his left knee. Supervisor: ken houck
## 9314                                                      8/5/2009 12:59 pm (fblackmo) employee found tick on his upper right chest. He removed the tick and taped it to a piece of paper. Employee later noticed the area was red and swollen. Supervisor: a. G. Hunter
## 9315          8/6/2004 02:22 pm (fblackmo) employee was watching a sand-blasting pot as a co-worker was sand-blasting, the sandblast hose was not working properly. Employee turned off the air manifold and discharged the air from the pot, the hose broke off from th
## 9316            8/6/2004 02:38 pm (fblackmo) employee states on form 19 that he was operating a backhoe (boom & bucket) when, it came down striking his left foot. Employee states the teeth on the bucket was stuck in his left foot. Supervisor: clyde winstead 9/17/2
## 9317                                                                         8/6/2004 02:50 pm (fblackmo) employee states on form 19 that he was walking on concrete footing when, he slipped on the edge causing the injury to his right ankle. Supervisor: kevin smith
## 9318         8/6/2004 03:03 pm (fblackmo) employee states on form 19 that he was changing the blade locking cylinder on j. D. Grader. Employee had to be in a somewhat twisted position in order to take lines loose. Employee states he heard a popping noise in his up
## 9319                                                                     8/6/2004 03:17 pm (fblackmo) employee states on form 19 that he was sawing a wooden post for a mailbox when, a piece of wood struck his glasses causing them to break. Supervisor: r. L. Taylor
## 9320                                                                                        8/6/2004 12:52 pm (fblackmo) employee states on form 19 that he was building forms when, he felt a sharp pain in his back from picking up lumber. Supervisor: kevin d. Smith
## 9321                                                                                                                                                         8/6/2007 04:15 pm (speedin) employee was pulling brush off the bed of a dump truck. Supervisor: ronnie king
## 9322                                  8/6/2007 04:28 pm (speedin) employee was flagging traffic and he stated that his left hand started hurting after an hour or so. He doesn't remember hitting it on anything, it just hurts periodically. Supervisor: r. D. Mcintyre
## 9323         8/6/2008 02:44 pm (blgay) employee was weasling out a pipe and the hose had been in the pipe about 10 minutes, when all of a sudden the hose shot out of the pipe, it was out of control and hit employee in the head, jaw, shoulder and right arm. Supervi
## 9324         8/6/2008 08:03 am (blgay) employee was operating a water truck when the electric shut off valve became stuck in the open position. Employee tried to shut the valve with his index finger, when the valve closed and caught his finger in the valve up to t
## 9325                                                                                8/6/2008 08:24 am (blgay) employee was clearing the work area around a drill rig, when employee slipped on a fallen wet tree branch, twisting his right knee. Supervisor: w. D. Frye
## 9326                                                                                8/6/2008 08:37 am (blgay) employee was sawing off a tree limb, when his hand slipped from handle onto blade, resulting in a deep cut to left index finger. Supervisor: j. A. Lanning
## 9327                                                                     8/6/2008 08:39 am (fblackmo) employee was removing a pump from equipment # 1 227-0033-2850. He was standing over the pump, lifted up on the pump, and hurt his back. Supervisor: h. E. Ballance
## 9328                                                                                                         8/6/2008 08:57 am (fblackmo) employee was loading tree limbs on dot truck when, he came into contact with poison ivy (both arms). Supervisor: rodney tanner
## 9329                                                                                  8/6/2008 10:13 am (fblackmo) employee hit his head on a ventilation box while standing up causing pain to his neck. Employee was wearing his hardhat. Supervisor: marshall coleman
## 9330                                                                                                           8/6/2008 11:52 am (fblackmo) employee was bitten by a tick while performing field surveys. ( not stated where tick was found). Supervisor: elizabeth husk
## 9331                                                                                           8/6/2008 12:28 pm (fblackmo) employee was opening a cardboard box with his pocket knife, the blade slipped, and cut his right index finger. Supervisor: james van riddick
## 9332                                                                                                       8/6/2008 12:38 pm (fblackmo) employee lifted a 2x4 section of square tube (help of inmate) when, he felt pain in his left elbow. Supervisor: marshall coleman
## 9333         8/6/2009 04:20 pm (blgay) employee was working with crew to clear vegetation from right-of-way. Employee was in and out of wooded areas along sr1567 in order to bring vegetative debris to the chipper. Once employee arrived home, he removed his shoes a
## 9334         8/6/2009 08:07 am (blgay) employee was lifting the ladder off the ground where it was set up, so another employee could level the ground under it. Employee had only lifted it up approximately 6" when he felt a sharp pain in the middle and right side o
## 9335                                                                                                                                 8/6/2009 09:37 am (fblackmo) employee was cutting bushes when, he was stung by a bee on his left wrist. Supervisor: brian k. Glover
## 9336                                                                                                                                      8/6/2009 09:59 am (fblackmo) employee was cutting metal with hack saw when, he cut his left thumb. Supervisor: mark turlington
## 9337                         8/7/2007 01:28 pm (speedin) employee was unloading rip-rap from a dump truck bed, josh went by the truck without notifying anyone. He was hit in the head by a falling rock, cutting a gash in the top of his head. Supervisor: g. L. Ruppe
## 9338           8/7/2007 01:45 pm (speedin) employee was assisting with removal of a timber at bridge 83044. When in the water under bridge hooking up a cabel to get some large timbers out of the water, he stepped on an unseen timber nailer that had fallen off of t
## 9339                                                         8/7/2007 02:14 pm (speedin) employee was getting out of an single-axle dump truck, he felt like he was going to fall out so he decided to jump and he pulled something in his leg. Supervisor: joseph brown
## 9340                                                8/7/2007 02:44 pm (speedin) employee was attempting to pull vines out from underneath contour mower deck. Some debris went in his eyes resulting in irritation/abrasion to left eye. Supervisor: meta b. Cooper, tsi
## 9341         8/7/2007 03:01 pm (speedin) employee was working on project b-4622, hunting property corners, employee was cutting to a base line and bush axe slipped into a hole and then employees foot slipped into hole slicing into the bottom of the boot and then I
## 9342        8/7/2007 03:51 pm (fblackmo) state vehicle was traveling north on nc 210 during a heavy rain storm. As the state vehicle travel around a curve he began to cross the centerline encroaching into the westbound lane according to the witness. The operator o
## 9343                                               8/7/2007 10:19 am (fblackmo) employee was driving on us 70 picking up trash along the road with inmates when, a car hit him in the rear. Employee felt pain in his back, stomach, and legs. Supervisor: clifton mills
## 9344                                                                                      8/7/2007 10:30 am (fblackmo) employee was conducting a road test, the quick stop maneuver was being performed when, examiner suffered a neck injury. Supervisor: brenda burney
## 9345                                                                                                       8/7/2007 10:43 am (fblackmo) employee was pulling the forward deck hatch on vessel when, he felt a rip in his stomach area near navel. Supervisor: terry gray
## 9346                                                                                                                                                     8/7/2009 11:48 am (blgay) employee was racking asphalt, when he felt pain in his back. Supervisor: j. R. Dunlap
## 9347                                                                                                                8/7/2009 12:27 pm (blgay) employee was taking traffic cones off back of truck, when he heard and felt a pop in his lower back. Supervisor: ron pharr
## 9348         8/7/2009 12:54 pm (blgay) employee was driving I-40 east bound, when he saw a ladder in the roadway. Employee pulled over and got out his boat hook to remove the ladder out of the road. When employee hooked the ladder, it pulled his left shoulder. Sup
## 9349                                        8/8/2005 02:28 pm (blgay) employee was to assist in removing a down tree on sr 1365 dover road. In assisting clearing the tree, employee entered into some poison ivy that was around the tree. Supervisor: david j. Shepard
## 9350                                                                                                                8/8/2005 02:55 pm (blgay) employee was exposed to poison ivy while cutting bushes around bridge # 25 in hertford county. Supervisor: ronald j. Terry
## 9351                                       8/8/2007 04:09 pm (speedin) employee was working on a grade project. She was unloading drain pipe & driving a sheep foot roller. She felt a pop or a pull and then continued working on the roller. Supervisor: walter burton
## 9352                                                                                                                      8/8/2007 04:40 pm (speedin) employee was lifting on air hammer out of a hole when he felt a pain in his lower back. Supervisor: j. M. Laviner,
## 9353       8/8/2008 03:08 pm (fblackmo) employee was carrying, laying, and rolling out excelsior matting in 4' (20 lbs) and 8' (35-40 lbs. ) lengths in a ditch bottom that had heavy clay/mud making walking very difficult. This job was repeated over a two day perio
## 9354                                                         8/8/2008 03:28 pm (fblackmo) employee was going down stairs when, she lost her footing causing her to slip and fall on her buttocks. Employee hit her lower back on several steps. Supervisor: robbie quinn
## 9355                                                                                                   8/8/2008 03:37 pm (fblackmo) employee opened a tool box in an abandoned building and was stung on the nose by an unidentified insect. Supervisor: ronnie faulkner
## 9356                                                                                                    8/9/2004 02:31 pm (fblackmo) employee states on form 19 that he was trying to remove debris from roadway when, he felt pain in his back. Supervisor: matt taylor
## 9357                                                                                                    8/9/2004 02:47 pm (fblackmo) employee states on form 19 that while working on shoulder of road he, was bitten on his neck by an insect. Supervisor: marcus jones
## 9358                                8/9/2004 03:12 pm (fblackmo) employee states on form 19 that travis cross was removing harden thermoplastic from cooked opening when, the wooden stick he was using broke striking employee in the mouth. Supervisor: roger pulcheon
## 9359                                                                     8/9/2004 03:47 pm (fblackmo) employee states on form 19 while trimming vegetation from around warning sign he, came into contact with poison ivy on his arms and face. Supervisor: j. M. Teague
## 9360                                                                 8/9/2004 04:12 pm (fblackmo) employee states on form 19 that walking from mobile unit to building she, fell over a stump causing the injury to her right arm, hip, and leg. Supervisor: kent frazer
## 9361       8/9/2006 01:45 pm (fblackmo) employee was feeding a piece of wood into the wood chipper. It threw large chips back into the feed area where he was standing. A large piece of wood debris struck his right forearm causing a gash. Supervisor: r. I. Matthews
## 9362                                                                                8/9/2006 01:58 pm (fblackmo) employee was cutting right-a-way with chain saw when, he got over heated causing a headache, nose bleed, and blurred vision. Supervisor: e. R. Buchanan
## 9363                                         8/9/2006 02:10 pm (fblackmo) employee was stepping out of boom truck when he lost his footing and slipped off of the truck causing a gash to the back of his head and fracture to his left arm. Supervisor: ronald j. Terry
## 9364                                                                           8/9/2006 09:19 am (fblackmo) employee was drilling a hole in metal pipe and the drill bit hung up causing the drill to spin around injuring his right thumb. Supervisor: barry f. Kizziah
## 9365                                                                      8/9/2006 09:33 am (fblackmo) employee was sitting a stop light when, he was rear ended by a white chrysler mini van. Employee complained of a headache and neck pain. Supervisor: greg johnson
## 9366                                                8/9/2006 09:45 am (fblackmo) employee was walking through doorway when, he foot slipped on strip that holds the carpet down at the doorway. Employee felt pain in her right foot/ankle. Supervisor: kerry b. Proctor
## 9367                                                                                                                                   8/9/2006 09:58 am (fblackmo) employee slipped on loose sand while exiting vehicle and twisted right knee. Supervisor: c. H. Piner
## 9368                                                      8/9/2006 10:11 am (fblackmo) employee was trying to pull open the hook on a truck and could not get it to open. He twisted to get more leverage and pulled a muscle in his groin area. Supervisor: k. R. Davis
## 9369                                                               8/9/2006 10:33 am (fblackmo) employee was surveying and was unaware he was standing on an ant hill after he realized the ants was crawling up his legs and biting him. Supervisor: phillip r. Johnson
## 9370                                                                                                                         8/9/2006 11:20 am (fblackmo) employee stated he was walking to the truck when, he got something in his left eye. Supervisor: eric a. Schenz
## 9371                                                                                                          8/9/2006 11:39 am (fblackmo) employee was taking measurements on a cross over pipe when, he came into contact with poison ivy. Supervisor: david m. Walden
## 9372                                                                   8/9/2006 11:53 am (fblackmo) employee was performing routine yard maintenance utilizing weed eating equipment. During the operation, his right shoulder became sore. Supervisor: joe yiu kwong ng
## 9373                                                                                                                                8/9/2006 12:11 pm (fblackmo) employee states his right leg became entangled in brush causing him to trip. Supervisor: james jeffreys
## 9374          8/9/2007 01:49 pm (speedin) employee was on a ladder. While on the ladder he was repairing a sign assembly of 6 signs, the ladder supports bent inward and the ladder collapsed. The employee fell injuring his left upper arm and he got some cuts on his
## 9375         8/9/2007 02:06 pm (speedin) employee was conducting an erosion control inspection on bridge #99. He was walking down steep bank toward the creek and the portion of the bank broke off, causing him to fall backwards about 6 ft into 6 in. Of muddy water,
## 9376         8/9/2007 02:37 pm (speedin) employee and a private vehicle were both traveling south on I-77 when private vehicle cut across travel lane directly in front of employee's vehicle, employee swerved to the right to avoid a collision, lost control, and ran
## 9377                                                                   8/9/2007 03:06 pm (speedin) employee had climbed a 5 ft. High fence. On the other side he stepped into a hole that was covered with grass and he twisted his left ankle. Supervisor: w. Lee hicks
## 9378                                                        8/9/2007 03:31 pm (speedin) employee had to remove a tree from the road. Although the employee used all protective equipment he still came in contact with the poison ivy oils. Supervisor: d. Shane edwards
## 9379         8/9/2007 03:55 pm (speedin) employee was attempting to get up on the asphalt box tractor while it was in motion and his foot slipped. The back left rear tire of the tractor then rolled over the employee's leg and foot, injuring his right big toe. Supe
## 9380      8/9/2007 10:21 am (speedin) employee was using a spare sign truck and he was getting down from the bed of the truck and he placed his right foot on the bumper. His foot slipped and his left leg came down against the bumper injuring left shin. Supervisor:
## 9381                                                                 8/9/2007 10:46 am (speedin) employee was moving brush from roadway for the long arm mower when he scratched his face with his glove, and came in contact with poison oak. Supervisor: w. S. Gallman
## 9382                                     8/9/2007 11:11 am (speedin) employee was attempting to cut a tree in ditch line. Trackhoe operator attempted to remove debris from the ditch, a tree limb dislodged and hit the employee's left ankle. Supervisor: r. L. Adcock
## 9383                                                                                                                                                8/9/2007 11:56 am (speedin) employee was weedeating and came in contact with poison oak. Supervisor: kevin hazelwood
## 9384                                                              9/1/2004 03:31 pm (fblackmo) employee states while conducting a road test customer failed to stop at intersection and collided with another vehicle. Supervisor: linda moose *show all bills to joyce*
## 9385          9/1/2004 08:25 am (fblackmo) employee was standing on bridge holding a rope attached to a wooden beam. The rope pulled out of his hand into the water along with beam. The rope twisted causing the injury to employees right index finger. Supervisor: k.
## 9386                                                                                                    9/1/2004 08:43 am (fblackmo) employee states excavator was removing logs from creek when, a tree top fell striking him on his right leg. Supervisor: larry brown
## 9387                                                                                  9/1/2004 08:56 am (fblackmo) employee was traveling north on I-85 in cat m318 when, a tractor trailer struck the m318 in the rear causing injury to back. Supervisor: brian marely
## 9388                                                                                              9/1/2004 09:08 am (fblackmo) employee was putting up fence on secondary construction project when, he came into contact with poison ivy. Supervisor: r. L. Warlick, jr
## 9389          9/1/2004 09:27 am (fblackmo) employee was walking back to his office after turning off lights on state vehicle when, he stepped in a hole that was hidden by high grass. Employee states he experienced pain in his left ankle. Supervisor: m. L. Fogleman
## 9390                                                                 9/1/2006 11:56 am (fblackmo) employee was coming out of motor grader when, he slipped on bent step. Employee tried to catch himself causing the injury to his left shoulder. Supervisor: terry shaw
## 9391                                                                     9/1/2006 12:11 pm (fblackmo) employee was climbing off the back of sign truck when, he stepped onto uneven pavement that was covered with grass twisting his left ankle. Supervisor: andy helms
## 9392                                                                     9/1/2006 12:22 pm (fblackmo) employee was training at front counter with another employee when, he was switching placed he tripped and fell striking his head on door. Supervisor: donna creech
## 9393                                          9/1/2006 12:42 pm (fblackmo) employee was walking beside dump truck while another employee was rolling a metal pipe off truck, as he approached the tailgate, the pipe hit him in the forehead. Supervisor: jerry hildreth
## 9394                                                                   9/1/2009 02:31 pm (fblackmo) employee states she injured her lower back while weed eating during morning hours. Supervisor was informed on 08/17/2009 at 3:20 p. M. Supervisor: ashley pilkington
## 9395                                                               9/1/2009 03:12 pm (fblackmo) employee was operating state vehicle when, it was struck by another private vehicle on the right rear corner. Employee felt pain in his back. Supervisor: r. E. Flaherty
## 9396                                                                                                                                                     9/1/2009 03:25 pm (fblackmo) employee fell into un-covered man hole. Multiple injuries. Supervisor: tony spence
## 9397                                                                                                                  9/1/2009 04:39 pm (fblackmo) employee climbing out of vehicle when, he step on rocks causing injury to his right foot. Supervisor: ben ander riggs
## 9398                                                                                                                       9/1/2009 05:35 pm (fblackmo) employee was burning trash when, aerosol can exploded causing burns to his forehead. Supervisor: joey brickhouse
## 9399          9/10/2008 11:00 am (fblackmo) employee was traveling on eastern blvd near gillespie street stopped at intersection when, state vehicle was rear ended by a private vehicle. Employee felt pain in neck, head, and right lower leg (calf area). Supervisor:
## 9400                                                                  9/10/2008 11:14 am (fblackmo) employee was putting out cones on us 64. A tractor trailer went by and a small rock came from one of the tires and went into his left ear. Supervisor: curtis hudson
## 9401          9/10/2010 02:27 pm (barnes) employee was traveling north on 19-32 north at exit 23 in a construction zone. He observed two worker crossing in the grassy median ahead and he immediately reduced his speed. One worker jumped over the guard rail to cross
## 9402          9/10/2010 03:02 pm (barnes) employee was marking bolt locations on project site (steep mountain slope). Once employee finished marking the bolts and was making his way off the mountain, he slipped and fell twisting his left knee. Employee injured his
## 9403          9/10/2010 03:31 pm (barnes) employee was performing assessments in mitchell county when a tick became lodged in his left wrist underneath his watch band. Employee has since been diagnosed with lymes disease. Employee injured left wrist. Supervisor: d
## 9404         9/10/2010 03:48 pm (barnes) employee injured his back while attempting to change a flat tire on a state issued and owned vehicle. The back injury happened when attempting to remove a lug nut off of the tire rim with the tools provided with the state v
## 9405                                                                                                                         9/11/2008 06:13 pm (fblackmo) employee was putting out warnings signs when he was bitten by a tick on his right leg. Supervisor: ira harris
## 9406                             9/11/2009 08:28 am (fblackmo) employee was cracking tamp engine when engine started. Throttle was partially open and tamp jumped sideway twisting and jerking employee around causing injury to his lower back. Supervisor: g. N. Allen
## 9407                                                                                          9/11/2009 08:42 am (fblackmo) employee was working with asphalt when fly bit him on his neck. Supervisor: e. W. Wooten 10/13/2009 05:06 pm (sjerniga) 1 lwd per d. Leonard
## 9408                                               9/11/2009 08:54 am (fblackmo) employee was walking to small dump truck. He stepped in a hole next to a catch basin. The hole was knee deep. He experienced pain in his left knee and upper leg. Supervisor: j. M. Hux
## 9409         9/12/2008 01:07 pm (blgay) employee was taking a water break while surveying old winston road in surry county. Mr. Smith traveling through the work zone in a reckless manner, stopped and spat in employees face. Mr. Smith cursed employee and threatened
## 9410                                                                                                     9/12/2008 02:11 pm (blgay) employee was stepping off lowboy. Right foot hung on cleat on tractor, causing all weight to go on left leg. Supervisor: tim scruggs
## 9411                                                                                9/12/2008 02:19 pm (blgay) employee was attempting to install a tailgate that had fallen off of trailer. The tailgate slid cutting the employees left hand. Supervisor: doug johnson
## 9412          9/12/2008 02:30 pm (blgay) employee was training in weapons retention and impact weapons, which involved physical contact with fellow employees on mat. Employee stated that right shoulder felt sore but did not report any certain time injury occurred.
## 9413                                                                                                                                                 9/12/2008 02:41 pm (blgay) employee find tick attached to left leg, while building a road. Supervisor: henry worley
## 9414                                                                                                      9/12/2008 02:47 pm (blgay) employee was flagging traffic. Later in the evening, he found a tick embedded on back, left upper shoulder. Supervisor: james biggs
## 9415         9/12/2008 12:18 pm (blgay) employee was attempting to relieve pressure from another employee trapped under a vehicle, after a jack stand fell. Employee along with several others were lifting front bumper, while a jack was being placed under truck to f
## 9416                                                                                                                9/12/2008 12:30 pm (blgay) employee was cutting tree, when it snapped, came back, and hit employee in right arm above wrist. Supervisor: j. C. Mundy
## 9417              9/13/2005 03:34 pm (fblackmo) employee was assisting division of land quality, roadside environment, and division personnel with an audit of the b-4230 project when, he tripped and fell causing the injury to his wrist. Supervisor: john a. Finnell
## 9418                                                                                       9/13/2005 03:45 pm (fblackmo) employee was cutting right of way around bridge when, he came into contact with poison ivy on both arms and upper body. Supervisor: a. L. Smith
## 9419                                                                                               9/13/2005 03:55 pm (fblackmo) employee was working on air condition when, he fell over a plant causing the injury to his left arm and leg. Supervisor: robert e. Hill
## 9420                                                                                                9/13/2005 04:06 pm (fblackmo) employee was taking plywood off truck when, the wind blew the plywood causing it to twist his right wrist. Supervisor: w. T. Lowery jr
## 9421                                                                                       9/13/2005 04:14 pm (fblackmo) employee was removing trees from right of way with chainsaw when, he came into contact with poison ivy on both arms. Supervisor: eddie burleson
## 9422                                                                                       9/13/2005 04:24 pm (fblackmo) employee was removing trees from right of way with chainsaw when, he came into contact with poison ivy on both arms. Supervisor: eddie burleson
## 9423                                                                                                                                9/13/2005 04:34 pm (fblackmo) employee was unloading fence posts from truck when, he jammed his left thumb. Supervisor: edwin austin
## 9424                    9/13/2005 04:45 pm (fblackmo) employee was removing broken roller support arm form retracing tarp on dump truck when, the spring release tension causing metal tarp roller to spin striking employees hand, and forearm. Supervisor: j. E. Stepp
## 9425                     9/13/2005 04:56 pm (fblackmo) employee was pulling fuel hose when, he walked backwards off the end ramp into the river. The nozzle on the fuel hose struck him in the back of the head. Supervisor: s. H. Kinner 09/26/2005 08:53 am (kbarefoo)
## 9426                                               9/13/2005 06:07 pm (fblackmo) employee was attempting to Miss A pedestrian who stepped in lane of traffic and avoid hitting traffic in oncoming lane when, he ran into a ditch and jack knife trailer hauling roller.
## 9427                                                                                            9/13/2005 09:44 am (fblackmo) employee was stepping down off tractor when, he missed last step causing him to fall an injure his left knee. Supervisor: bubba r. Johnson
## 9428          9/13/2010 11:40 am (barnes) employee was administering road test. Upon returning to dmv parking lot, the customer was attempting to pull into a parking space. He was doing fine. However, once he started into the space, he suddenly accelerated and did
## 9429                                                                                          9/14/2004 02:45 pm (fblackmo) employee states she was fixing a sign on state road 1746 in beaufort county when, she felt pain in her right shoulder. Supervisor: jim evans
## 9430                                                                                                                 9/14/2004 03:02 pm (fblackmo) employee was unloading fertilizer in back of truck when, he slipped and hurt his right knee. Supervisor: r. E. Warren
## 9431                                                                                                                             9/14/2004 03:12 pm (fblackmo) employee was moving a 55 gal drum of oil when, he cut his left hand on the dolly. Supervisor: alan medlin
## 9432          9/14/2004 11:11 am (fblackmo) employee was conducting a road test with a customer. The customer failed to yield to a pedestrian on a bicycle and hit the person. The impact caused the employees head to be snapped back and to the side. Supervisor: joan
## 9433                                                                                                                                 9/14/2004 12:03 pm (fblackmo) employee was stepping of paver trailer when, he felt pain in his left ankle. Supervisor: m. E. Anders
## 9434                                         9/14/2004 12:35 pm (fblackmo) employee was retrieving his safety glasses from cubby hole in crew cab truck when, an inmate shut the door on his right hand causing the injury to his ring finger. Supervisor: t. S. Bozeman
## 9435                                                        9/14/2004 12:46 pm (fblackmo) employee states while reviewing a new project with state contract personnel he, struck his right knee on a guardrail post while crossing over median. Supervisor: john olinger
## 9436                                                                                                                          9/14/2005 09:32 am (fblackmo) employee was removing a storm drain lid when, he felt pain in his lower back area. Supervisor: wayne herring
## 9437                                                                                         9/14/2005 09:45 am (fblackmo) employee was stepping up on patch roller when, his left foot slipped causing the injury to his leg & chest area. Supervisor: john n. Trivette
## 9438                                                                                                                         9/14/2005 10:58 am (fblackmo) employee states he has chronic tendonitis. Carpal tunnel syndrome in right elbow. Supervisor: d. R. Henderson
## 9439                                                                                                                                                       9/14/2005 11:15 am (fblackmo) employee struck his right knee on the bottom of cab. Supervisor: gary r. Cooper
## 9440         9/15/2009 02:31 pm (blgay) employee was working on sr1300 shoveling cold patch, when he felt a bite or burn on his left side. Employee grabbed at his shirt and pulled it up. Employee had two insect bites located on his left side from belt up to his un
## 9441                                                     9/15/2009 12:31 pm (fblackmo) employee was measuring the length of an existing pipe. Employee stepped across a ditch and tripped. Employee felt pain in his left leg and lower back. Supervisor: g. J. Liverman
## 9442                                                                               9/16/2004 11:08 am (fblackmo) employee states while helping another employee (charles smith) change a tire he, felt pain in his neck and left shoulder area. Supervisor: jimmy creech
## 9443                                                                                           9/16/2004 11:25 am (fblackmo) employee states on 19 that while exiting vehicle to look at a job in hamlet n. C. He felt pain in his right knee. Supervisor: bobby thrower
## 9444                                                                                          9/16/2004 11:42 am (fblackmo) employee states while cutting board on table the saw kicked the board back striking him in his stomach area. Supervisor: dennis wilson baker
## 9445                                                                9/16/2004 11:54 am (fblackmo) employee was working with landscape department removing tree limbs that had broken during a storm when, he was stung on his lip by a hornet. Supervisor: f. T. Killian
## 9446                                                      9/16/2008 09:34 am (blgay) employee was climbing out of his dump truck when he felt pain in the lower left side of his back, causing him to fall to the ground on his hands and knees. Supervisor: j. R. Riley
## 9447                                                                                                                                  9/16/2009 03:31 pm (blgay) employee was closing door on the long arm, when he mashed right thumb in door. Supervisor: darrell dean
## 9448                                                                                                                                                                9/16/2009 10:52 am (fblackmo) employee claims hearing loss in both ears. Supervisor: mark turlington
## 9449                                                                                 9/16/2009 11:19 am (blgay) employee was cutting vegetation and came in contact with poison oak. Employee developed a skin rash on his right arm and hand. Supervisor: roger holland
## 9450                                9/17/2004 08:37 am (fblackmo) employee was flagging traffic when a private vehicle got to close to employee striking him on his right shoulder. The side mirror of the vehicle struck employee on his arm. Supervisor: jimmy shelton
## 9451                                                                    9/17/2004 08:55 am (fblackmo) employee and inmate was pulling up debris form around a trap board when, the inmate pushed the board striking employee on his finger. Supervisor: bubba r. Johnson
## 9452                                                                                                                                   9/17/2004 09:09 am (fblackmo) employee was stung by a bee on his left lower arm while looking for keys. Supervisor: steve clayton
## 9453                                                                                                                                           9/17/2004 09:21 am (fblackmo) employee states he was bitten by a tick while working on bridge. Supervisor: kevin d. Smith
## 9454            9/17/2007 02:21 pm (mdsloan) employee was traveling through a work zone. Traffic was at a stand still when Mr. Scott was struck in the rear by another vehicle. Mr Scott was taken to baptist hospital. Mr Scott's injuries include whiplash. Supervisor
## 9455           9/17/2007 04:12 pm (mdsloan) employee was climbing down from the back of a motor grader, employee came backwards using 3-pnt hand hold. Hand slipped and he caught his weight by his left arm to prevent falling. As a result he has severe pain from his
## 9456                                                                                                                        9/18/2006 02:29 pm (fblackmo) employee was hooking up the roller to swb dump truck when, he felt pain in his back. Supervisor: shelton james
## 9457                                          9/18/2006 02:38 pm (fblackmo) employee was putting things in back of dump truck and climbed out of back of truck jumping down off tailgate. At this time, he felt pain n in his lower left leg. Supervisor: b. N. Braswell
## 9458                                                                                      9/18/2006 02:48 pm (fblackmo) employee was cleaning off catch basin when, a nail went into side of his right boot. Employee passed out after accident. Supervisor: joe justice
## 9459                                                                          9/18/2006 03:47 pm (fblackmo) employees (2) were tacking straw when, the hand hose on the distributor busted. The asphalt shot onto employees face causing burns. Supervisor: william nall
## 9460       9/18/2006 03:58 pm (fblackmo) employee was clearing some brush from around right of way. He pulled a vine down out of a tree that came into contact with his skin. By 8:00 p. M. That evening he felt itchy all over and by 6:00 a. M. The next morning he ha
## 9461                                                                                                                         9/18/2006 04:11 pm (fblackmo) employee was engaged in surveying work when, he was stung by an insect on left hand. Supervisor: m. Masihpour
## 9462                                                                                                            9/18/2006 11:16 am (fblackmo) employee states on form 19 that she was involved in a hit and run causing injury to her neck. Supervisor: charles e. Irvin
## 9463                                   9/18/2006 11:29 am (fblackmo) employee stepped from behind truck where water cooler was located and into a open travel lane when, he was struck in the upper right arm by private vehicle side mirror. Supervisor: m. R. Williams
## 9464                                                                                                          9/18/2006 11:42 am (fblackmo) employee was walking down slope when, he slipped and fell causing injury to his right hip & forearm. Supervisor: tim cassada
## 9465                                                                     9/18/2006 11:53 am (fblackmo) employee was climbing out of motor grader. His right leg was on second step when, step shifted. Employee felt pain in his right leg & knee. Supervisor: a. R. Gay
## 9466          9/18/2008 08:33 am (blgay) employee was clearing right of way on carden drive and sometime during the day he came in contact with poison oak. Employee started breaking out in a rash and applied technu. Over the weekend the rash got worse and employee
## 9467                                 9/18/2008 09:39 am (fblackmo) employee went to stand up after safety meeting when, he felt pain in his right knee (knee popped). His knee started swelling and could not hold his weight through out the day. Supervisor: mike hamm
## 9468                                                                                                                               9/18/2008 10:02 am (fblackmo) employee was trying to lift chain hoist when, he felt pain in his right shoulder. Supervisor: s. Kinner
## 9469          9/18/2008 10:12 am (fblackmo) employee climbed into the full bed of a pickup truck, removed a chainsaw from the toolbox, closed the lid, placed the saw on top of the toolbox, jumped down off the pickup from the side, and felt sharp pain in his back w
## 9470                                                                                                                           9/18/2008 10:24 am (fblackmo) employee was cutting trees from roadway when, he came into contact with poison ivy. Supervisor: danny baker
## 9471                                                                                                                             9/18/2008 11:11 am (fblackmo) employee was cutting trees on highway when, he came into contact with poison ivy. Supervisor: danny baker
## 9472                                                                               9/18/2008 11:20 am (fblackmo) employee was cutting up a old water hose to throw in the trash when, he became distracted and cut his center finger on left hand. Supervisor: jamie lee
## 9473                    9/19/2005 02:45 pm (fblackmo) employee was conducting a road test when, driver attempting to park hit the gas, causing the vehicle to cross a concrete barrier hitting a light pole. Employee felt pain in her neck. Supervisor: josephine lewis
## 9474                                          9/19/2005 02:58 pm (fblackmo) employee was conducting a road test when, drivers vehicle was hit in the rear by a private vehicle. Employee felt pain in his right shoulder, upper arm, and back. Supervisor: clyde millman
## 9475                                                                                                   9/19/2006 08:30 am (fblackmo) employee was cutting trees and chipping brush when, he came into contact with poison ivy on arms and legs. Supervisor: l. B. Dedmon
## 9476         9/19/2006 08:42 am (fblackmo) employee was exiting dump truck utilizing 3 point dismount. His left foot was planted on the ground when, his right hand slipped from the adjacent grab handle. His body twisted to the right causing injury to his left knee
## 9477                                                                                                                            9/19/2006 09:00 am (fblackmo) employee experienced numbness and tingling in right arm, hand, and shoulder. Supervisor: stephanie benarao
## 9478                                                                                                                     9/19/2006 09:11 am (fblackmo) employee was reaching for tools when, a small metal box fell striking him on his right hand. Supervisor: tim ashe
## 9479                                                                                                                       9/19/2006 09:26 am (fblackmo) employee was doing physical training (push ups) when, she felt pain in left wrist. Supervisor: king & rivenbark
## 9480                                                                                                     9/19/2006 09:39 am (fblackmo) employee was pulling the tailgate out when, he smashed right center finger between the tailgate and chain. Supervisor: t. L. Pugh
## 9481                                                                                                                      9/19/2006 09:55 am (fblackmo) employee was moving a box of project files into vehicle when, she twisted left leg. Supervisor: darrell jernigan
## 9482         9/19/2008 12:07 pm (blgay) employee was cutting back limbs of tree for an area to place water pump. When he went to swing the bush axe, a vine grabbed the blade making it roll out of his hand and the bush axe came down. Then bush axe hit him in the ri
## 9483                                               9/19/2008 12:20 pm (blgay) employee was driving to work site when he hit a vehicle in front of him, causing the steering wheel airbag to deploy. The airbag bruised and scratched both arms. Supervisor: c. R. Styles
## 9484                                                                      9/2/2009 09:54 am (fblackmo) employee was washing her hands when, she slipped on floor striking right knee and her left hand struck the edge of the metal trash can. Supervisor: beck s. White
## 9485          9/20/2005 08:05 am (fblackmo) employee was placing rip rap at the inlet of a pipe for the bridge maintenance unit using the hydraulic excavator on wednesday 08/10/2005. Once employee completed task with the excavator, he began placing the class I rip
## 9486         9/20/2005 08:22 am (fblackmo) employee was working on us17 using pipe washing equipment hose. Employee was setting up signs for traffic control, putting down traffic cones. He stated that pulling on the hose of the pipe cleaner and constant moving the
## 9487                                                    9/20/2005 08:35 am (fblackmo) employee was cutting dead tree on right of way when, one tree he was cutting broke into two parts. One of the tree parts hit him on the left knee cap area. Supervisor: r. S. Deal
## 9488                                                    9/20/2005 08:47 am (fblackmo) employee was cutting grass and bushes out of right of way on nc 32 in gates county when, he came into contact with poison ivy on multiple body parts. Supervisor: james v. Riddick
## 9489                                                                                      9/20/2005 09:36 am (fblackmo) employee was cutting bushes on right of way when, he was bitten by a bee on the top of his head, shoulder, and back. Supervisor: ronald e. Joyce
## 9490                                                                                                                                                   9/20/2006 09:31 am (slee) driver had to hit the ditch to avoid a head on collision. Opposing driver did not stop.
## 9491                                                                                                                             9/20/2006 09:41 am (fblackmo) employee was sharpening bush axe without proper ppe. Foreign body in right eye. Supervisor: d. R. Summers
## 9492                                                                     9/20/2006 09:52 am (fblackmo) employee with help was moving a walkboard from one position to another from between I-beams when, he stated he pulled something in side. Supervisor: ken anderson
## 9493                                                                                                                                    9/20/2006 10:04 am (fblackmo) employee was clear right of way when, he came into contact with poison ivy. Supervisor: ronald lee
## 9494                                                                                                                                              9/20/2006 10:54 am (fblackmo) employee states while typing her left thumb started aching. Supervisor: eula m. Williams
## 9495         9/20/2007 01:35 pm (mdsloan) employees howard sorrells and dale stephens were lifting a 120 lb. Barrel of used oil to empty into used oil tank, when getting ahold of base to tile over when base came loose causing it to slip and when Mr. Sorrells tried
## 9496                                                                                                                     9/20/2007 02:19 pm (fblackmo) employee was helping remove silt fence post when, his right center finger was pinched. Supervisor: b. N. Braswell
## 9497          9/20/2007 02:59 pm (mdsloan) employee was working with the crew replacing timber piles and caps on a bridge (#94) when employee came into contac at some point with poison ivey. The end of the bridge was only 3 feet off the ground causing employees to
## 9498                                                                                                                                   9/20/2007 04:55 pm (fblackmo) employee was exposed to waste material while reset discharged pump breakers. Supervisor: mark piner
## 9499                                        9/20/2007 12:11 pm (fblackmo) employee was strapping down tools used on atheny loader with a bungee cord. Employee lost his grip on cord causing it to fly up and strike him on his left eye. Supervisor: p. L. Hunsucker jr
## 9500                                                                      9/21/2004 08:24 am (fblackmo) employee was a passenger in a tandem dump truck when it was struck by a private vehicle. Employee experience pain in left elbow area. Supervisor: r. L. Faulkner
## 9501                                                           9/21/2004 08:48 am (fblackmo) employee was hauling asphalt from the stokesdale plant when, stepping out of truck he stepped on un-level pavement causing the injury to his back. Supervisor: s. G. Dillon
## 9502                                                                    9/21/2004 09:01 am (fblackmo) employee states he was putting money in coke machine when, he blacked out falling backwards causing the injury to his head and right elbow. Supervisor: l. C. Bass
## 9503                                                                                                                      9/21/2004 10:08 am (fblackmo) employee states while walking he, stepped in a hole causing the injury to his left knee. Supervisor: brian davis
## 9504                                                                                                                              9/21/2004 10:26 am (fblackmo) employee states while moving 4 foot chrome stands she, felt pain in her left arm. Supervisor: alice hall
## 9505                                                                                                                                    9/21/2004 10:39 am (fblackmo) employee states while stepping out of truck he, twisted his right knee. Supervisor: carl e. Scales
## 9506                                                                                                                               9/21/2004 11:04 am (fblackmo) employee states while blowing off deck debris flew into his right eye. Supervisor: thomas foster bowser
## 9507              9/21/2004 11:24 am (fblackmo) employee was walking down concrete slope protection at bridge 510 in mecklenburg county when, he accelerated near bottom of slope, his foot impacted hard on sidewalk when trying to slow down. Supervisor: mark s. Wade
## 9508                                                                                   9/21/2004 12:11 pm (fblackmo) employee was moving a refrigerator in the maintenance yard when, she stepped wrong causing the injury to her right ankle. Supervisor: p. S. Rickard
## 9509                       9/21/2005 04:07 pm (blgay) employee was climbing down the ladder on the hydra platform truck when he reached the bottom step to step on the platform his left foot slipped and he hit his rib cage on the right side. Supervisor: terry davis
## 9510                                                                                  9/21/2005 04:26 pm (blgay) employee was removing straw from back of truck, employees foot slid on the tongue of mulch blower and hyper extended left knee. Supervisor: a. J. Mintz
## 9511          9/21/2005 04:34 pm (fblackmo) employee stated that he was operating a chain saw cutting back vegetation on a high embankment when, he started down the embankment and slipped and fell on his back on a stump. Supervisor: michael t. Beane 4/19/2007 03:5
## 9512                                                                                                                                                9/21/2005 04:39 pm (blgay) employee hit left foot on pallet outside print shop in hallway. Supervisor: donna brandis
## 9513                   9/21/2005 04:52 pm (fblackmo) employee was cutting bushes in highly vegetate area with a bush axe. The bush axe became tangled in some large vines causing the bush axe to bounce back hitting the employee in the head. Supervisor: r. S. Ramsey
## 9514                                                9/21/2005 04:54 pm (blgay) employee was working with a crew putting a top on a building when he was trying to remove a brace with a hammer when he missed the board and struck himself. Supervisor: alton h. Thorton
## 9515                                                                                                                                    9/21/2007 08:09 am (fblackmo) employee was operating a grader hit a rock and jarred his right shoulder. Supervisor: v. C. Staley
## 9516                                                                                 9/21/2007 08:21 am (fblackmo) employee was installing new radio antenna on top of motor grader and tilted head back to look up causing injury to his neck. Supervisor: james conner
## 9517                      9/21/2007 08:32 am (fblackmo) employee was driving crew cab when it was hit in the back by a private vehicle while attempting to turn into a adjacent driveway. Employee felt pain in his neck, shoulder, and back. Supervisor: w. T. Mckenzie
## 9518         9/21/2007 08:44 am (fblackmo) employee was having some trouble with his contact. He removed his contact from his right eye and put it back in due to some irritation. Employee removed and replaced his contact on two different occasions. Employees eye b
## 9519         9/21/2007 08:55 am (fblackmo) employee was descending down a slope carrying his surveying instruments and tripod when, he slipped and fell down. Employee hit the ground sitting on his left foot while his right leg was extended down the slope. Later in
## 9520                                                                     9/21/2007 09:07 am (fblackmo) employee was removing creosote at bridge when, saw dust and debris came into contact with his arms causing them to become irritated. Supervisor: timothy everette
## 9521         9/21/2007 10:14 am (fblackmo) employee had been working in asphalt in high degree weather. Employee and crew came inside the dot shed to cool off and refuel their equipment. Employee went into the restroom and began to experience numbness in his right
## 9522                                                                                                             9/21/2007 11:06 am (fblackmo) employee was raking asphalt during a paving operation when, he felt pain in his lower back. Supervisor: joel david holton
## 9523                                                                                                                               9/21/2007 11:55 am (fblackmo) employee was stepping down from a roller trailer and twisted his right ankle. Supervisor: clifton mills
## 9524         9/21/2007 12:10 pm (fblackmo) employee was working in the bow thruster room of the m/v thomas baum laying deck plates. Employee slipped on deck framing beam and fell forty five degrees before grabbing a pipe to stop his fall. When he released his grip
## 9525         9/21/2007 12:27 pm (fblackmo) employee had finished shoveling mix behind leeboy and turned to check traffic before stepping in the lane. Employee took a few steps back at the same time leeboy was backing up, leeboy hit him on the right arm and hand. S
## 9526         9/21/2007 12:41 pm (fblackmo) employee was assisting sign erector install signs in concrete islands at the intersection of nc 56 and 96 in granville county. After the work day was complete the employee went home. Employee awoke on saturday August 25 h
## 9527                      9/21/2009 09:51 am (blgay) employee was loading some debris for the equipment shop. When employee stepped off the tommy lift onto the pavement; as he did he stepped in a hole, causing him to sprain his right ankle. Supervisor: t. L. Ingle
## 9528         9/21/2009 10:02 am (blgay) employee was standing in work zone next to open travel lane inspecting utility encroachment work, when a tractor trailer came by and blew up dust/debris from roadway, some of which entered employees left eye. Supervisor: kev
## 9529                                                                                      9/22/2005 08:11 am (blgay) employee was trying to move state office furniture when his left hand was mashed/jammed between the desk and the dolly cart. Supervisor: andy tabor
## 9530                                                 9/22/2005 08:12 am (fblackmo) employee was using a jigsaw to cut some aluminum sheet metal when, the saw got hung up causing it to jump out of the kerf. Employee cut his left thumb. Supervisor: albert strickland
## 9531                                                                             9/22/2005 08:49 am (fblackmo) employee was operating a weedeater along interstate when, his feet became entangled in grass causing him to twist right knee. Supervisor: wallace pulliam
## 9532                                                                                                9/22/2005 08:59 am (fblackmo) employee was helping another employee lift a plate tamp out of a hole when, he felt pain in his lower back. Supervisor: dennis huffman
## 9533                                                         9/22/2005 11:13 am (fblackmo) employee crossed the ditch and started to climb up the backslope of the ditch to cut bushes around a sign when, he felt a pull in lower right leg. Supervisor: c. E. Thompson
## 9534                                                                                                                9/22/2006 01:15 pm (fblackmo) employee was loading acetylene tank on truck when felt a sharp pain in his right shoulder. Supervisor: w. T. Lowery jr
## 9535                                                                                                      9/22/2006 01:44 pm (fblackmo) employee was on traffic services yard moving old pallet when, he felt pain in lower back & left shoulder. Supervisor: w. R. Wall
## 9536                                                                                                                     9/22/2006 02:32 pm (fblackmo) employee was loading pipe on truck when, he his finger was caught between the tailgate. Supervisor: jermey delapp
## 9537                                                                                     9/22/2006 02:42 pm (fblackmo) employee was walking around truck to close latch when, he stepped in a ditch and caused the injury to his right ankle. Supervisor: g. R. Mcginnis
## 9538                                                                                                   9/22/2006 09:33 am (fblackmo) employee was lifting a box of cancelled license plates when, he pulled something in his left arm/ bicep. Supervisor: d. F. Dunnagan
## 9539                                                                                                                                        9/22/2006 09:47 am (fblackmo) employee was building a fence when, something got into his left eye. Supervisor: greg mccraken
## 9540                                                 9/22/2006 09:56 am (fblackmo) employee was climbing out of salt spreader after removing parts. He was trying to get over the side of spreader to get back on ladder causing injury to back. Supervisor: j. E. Stepp
## 9541                                                                                 9/22/2006 10:05 am (fblackmo) employee was installing pipe culverts on a grade job and was moving pipe by hand when, he pulled a muscle in his lower back. Supervisor: marc pollard
## 9542                                                                                              9/22/2006 10:24 am (fblackmo) employee was driving and pulling rods while performing nuclear density testing when, he felt pain in his back. Supervisor: r. E. Shultes
## 9543                                                                                                                     9/22/2006 10:37 am (fblackmo) employee was passing grease gun between loader and belt frame when, he cut his finger. Supervisor: robert cannady
## 9544                                                                                                                          9/22/2006 10:45 am (fblackmo) employee was performing a flagging operation when, he was bitten by a spider on back. Supervisor: w. R. Wall
## 9545                                                                               9/22/2006 12:14 pm (fblackmo) employee was attempting to dismount from the mulch blower when, he missed last step and fell causing injury to his right wrist. Supervisor: j. W. Hardy
## 9546         9/22/2008 08:19 am (blgay) employee was attempting to start a diesel powered water pump by pulling on a manual starting chord. The pump was positioned in an awkward angle and had to pull the chord with his left shoulder at that hindering angle. When e
## 9547                                                                                                                9/22/2008 08:29 am (blgay) employee noticed a spider on his shoulder and he wiped it off with his right hand and it bit him. Supervisor: leon sayles
## 9548                                                                                      9/22/2008 08:38 am (blgay) employee was cutting trees and shrubs from the right of way along nc 42, when poison ivy came into contact with both arms. Supervisor: jimmy maness
## 9549                                                        9/22/2008 08:47 am (blgay) employee was stepping off of backhoe that had been loaded onto a trailer. Employees hand slipped and he fell to pavement, landing on his left elbow. Supervisor: nanette fogleman
## 9550                                                                                               9/22/2009 12:16 pm (blgay) employee was getting out of truck and his foot slipped. Employee grabbed hand bars and felt a sting in his back. Supervisor: t. E. Johnson
## 9551         9/23/2008 02:12 pm (fblackmo) employee was driving state vehicle from construction project to home when, he failed to reduce speed, and rear ended private vehicle. Employee experience in increase in blood pressure and had minor cuts. Employee was usin
## 9552                                                                                                                                        9/23/2008 02:29 pm (fblackmo) employee was ringing out mop when, he felt pain in his lower back area. Supervisor: t. L. Gray
## 9553                                                                                                                                  9/23/2008 03:01 pm (fblackmo) employee was cutting trees with bush ax when, he was bitten by chigger bugs. Supervisor: mark conner
## 9554                                                                                                      9/23/2008 03:16 pm (fblackmo) employee was clearing trees and bush from right of way when, he was bitten by a spider on his right arm. Supervisor: mike ennett
## 9555                 9/23/2008 03:27 pm (fblackmo) employee was holding bent sign post for backhoe to grab with back jaw bucket as backhoe grabbed the bent post, it twist hitting employee in head and arm. Employee was knocked to ground. Supervisor: r. W. Shoemaker
## 9556                                                                                    9/23/2008 04:14 pm (fblackmo) employee was conducting road test when, vehicle was struck by another vehicle in the rear. No injury was stated on 19. Supervisor: marcia l. Smith
## 9557                                                                                                                  9/23/2009 09:30 am (fblackmo) employee was placing and moving mower blades into his truck when, he felt pain in his back. Supervisor: brian harper
## 9558                                                                                     9/23/2009 09:50 am (fblackmo) employee grabbed large 8 ft broom core from back of the parts truck, he slid it forward when, it fell on his left foot. Supervisor: wesley powell
## 9559                                                                                                                            9/23/2009 10:11 am (fblackmo) employee was out unloading equipment when, he was bitten on his chest by a tick. Supervisor: chuck francka
## 9560                                                                                        9/24/2007 03:26 pm (fblackmo) employee was putting in joist when crowbar jammed. Employee used his back to lift joist to get the crow bar out. Supervisor: w. Herman futrell
## 9561                                                9/24/2007 03:38 pm (fblackmo) employee was cleaning grass off of mowing deck when, he stepped off of the mower onto shoulder of the road he, stepped on a rock and twisted his right ankle. Supervisor: carlis smith
## 9562         9/24/2007 04:11 pm (fblackmo) employee was issued a can of battery terminal protector/cleaner (dot#155-0100995). While discussing repairs to the equipment with another employee, the employee holding the can placed his hand on top of cap. The can explo
## 9563         9/24/2007 11:53 am (fblackmo) employee was tightening a bolt on the long arm tractor while standing on the front tire, the wrench slipped. The employee lost his balance and fell off the tractor hitting the mowing deck cutting right ear and hitting his
## 9564         9/24/2007 12:06 pm (fblackmo) employee was getting straw from roadside environmental while attempting to pull a bale from the middle of a stack that was wedged against the top of the trailer, one of the bales fell hitting him causing him to fall out o
## 9565                                9/24/2007 12:18 pm (fblackmo) employee was climbing down from motor grader and placed foot wrong causing him to fall backwards to the ground. Employee felt pain in his lower back right side, hip, and leg. Supervisor: r. W. Feher
## 9566         9/24/2007 12:43 pm (fblackmo) employee was conducting a road test when customer became involved in a motor vehicle accident. Customer name was esmeralda gellizeau. Customer made left turn to quickly, hitting a traffic sign. Employee had no physical in
## 9567                                                                                      9/24/2008 07:50 am (blgay) employee was filling water cooler with ice and water. Employee lifted cooler to put it onto the truck and strained his back. Supervisor: tim wright
## 9568                                                                                 9/24/2008 10:49 am (fblackmo) employee was flagging traffic when, his was struck on right side(hip). Smithson was backing truck when, he struck employee. Supervisor: shelton james
## 9569                                                              9/25/2007 08:18 am (mdsloan) employee was driving stakes with stake driver when stake driver slipped off of the stake that he was driving and hit employee on top of the head. Supervisor: scott allen
## 9570                                                                                                  9/25/2007 09:35 am (mdsloan) employee was throwing scrap wood out of hole onto an embankment when he twisted around and injured his back. Supervisor: tim southard
## 9571                                                                                                              9/25/2007 12:24 pm (fblackmo) employee was walking on shoulder of road when he stepped in a hole and heard his left knee pop. Supervisor: rek mckenzie
## 9572                                                                                                      9/25/2007 12:39 pm (fblackmo) employee was getting on the tractor at the planting project site when, he was stung on his right elbow. Supervisor: g. M. Dawson
## 9573         9/25/2008 02:11 pm (fblackmo) employee was sitting on backhoe when, he passed out. Employee fell out of window of backhoe, another employee caught him breaking his fall. Employee passed out two more times, 911 was called, and transported to nash gener
## 9574                                                                                                 9/25/2008 02:23 pm (fblackmo) employee unlocked parking gate when, he rub his left eye. Left eye began to burn, turn red, and became swollen. Supervisor: s. Kinner
## 9575                                                                                      9/25/2008 05:03 pm (fblackmo) employee was operating chainsaw to cut tree that had fell across state road when, he came into contact with poison ivy. Supervisor: robbie smith
## 9576         9/25/2009 02:58 pm (fblackmo) employee was driving a dot state truck when, private vehicle ran stop sign and hit the state truck. Employee felt pain in his neck, shoulder, back, and arm. Employee is also experiencing headaches. Supervisor: mark conner
## 9577                                                              9/25/2009 03:37 pm (fblackmo) employee was conducting a road test when, customer ran into a ditch. Employee felt pain in her lower back area. Supervisor: tracy hawkins 07/19/2011 02:17 pm (lvaughan)
## 9578                                                                                             9/25/2009 03:49 pm (fblackmo) employee was walking on m/v hunt, he turned to look and bumped into an engine exhaust pipe hitting his face. Supervisor: richard dewhurst
## 9579        9/25/2009 04:01 pm (fblackmo) employee was out on nc 87 forming around a catch basin to pour concrete and did not realize he had stepped into a fire ant bed. Employee experience bites to his right and left lower legs and feet. Supervisor: t. R. Corliss
## 9580                                                                                        9/25/2009 04:17 pm (fblackmo) employee was clearing brush when he came into contact with poison ivy. Employees right eye and arm became itchy. Supervisor: thomas moorefiled
## 9581                                                                                                            9/25/2009 09:21 am (fblackmo) employee was helping to assemble aluminum box culvert when, foreign object got into his left eye. Supervisor: a. M. Godwin
## 9582                                                                                        9/26/2005 02:12 pm (fblackmo) employee was weed eating around guardrail when, the weed eater twisted around causing the injury to his left hand. Supervisor: r. A. Ellington
## 9583                                                                                                      9/26/2005 02:24 pm (fblackmo) employee states the pain in his right hand and left hand is from repetitive use of operating machinery. Supervisor: j. W. Martin
## 9584                                                                                                     9/26/2005 09:49 am (fblackmo) employee was placing a pump onto the back of pickup truck when, he felt pain in his lower back. Supervisor: dalton r. Alligood jr
## 9585                        9/26/2005 11:06 am (fblackmo) employee states while conducting a firedrill, she was lifted off her feet due to excessive pressure of the fire hose. Employee felt pain on her arm, back, hand, knee, and back. Supervisor: h. C. Scarborough
## 9586                                                                                                                     9/26/2005 11:16 am (fblackmo) employee states she felt pain and numbness in both hands and wrist while keying. Supervisor: shandee ruffin perry
## 9587                                                                                                                                                                            9/26/2005 11:16 am (slee) shoulder of the road broke off causing the truck to roll over.
## 9588         9/26/2005 12:12 pm (fblackmo) employee was getting rakes out of a truck and laying them on the ground with prongs. He stepped back up on the turck and onto the wet grass. Employee slipped and lost his footing causing the injury to his right hand. Supe
## 9589                                                                                                                                        9/26/2006 03:01 pm (fblackmo) employee was lifting a sign off tractor when, he felt pain in his back. Supervisor: t. L. Pugh
## 9590          9/26/2008 01:46 pm (blgay) employee was cutting trees off the right of way on sr 1348, probart street. Employee was cutting a forked poplar tree. He cut the first fork, then as he was cutting the second fork, it broke back on him and struck his legs.
## 9591                                                                        9/26/2008 08:59 am (blgay) employee was cutting trees and chipping brush on interstate 40, when he contracted poison ivy on hands, arms, legs, torso and back. Supervisor: darrell hildebran
## 9592                                                                            9/26/2008 09:08 am (blgay) employee was cutting trees and chipping brush on interstate 40 and contracted poison ivy on arms, hands, legs, torso, and back. Supervisor: darrell hildebran
## 9593         9/27/2005 08:40 am (fblackmo) employee was shoving a log through the wood chipper and left hand was on the top of log. The feeding wheels caught the log, it shot the end up causing employees left hand to become caught between the log and top of chippe
## 9594                                                                                  9/27/2005 08:51 am (fblackmo) employee was walking back into building after conducting road test when, she was bitten by a insect on her lower back area. Supervisor: d. M. Bufkin
## 9595                                                                                                              9/27/2006 02:43 pm (fblackmo) employee was chasing after air compressure going across yard when, he felt pain in his right knee. Supervisor: joe smith
## 9596                                                                                                                  9/27/2006 02:58 pm (fblackmo) employee stepped out of crew cab into the ditchline onto a rock turing her left ankle. Supervisor: robert hollifield
## 9597                                                                                               9/27/2006 03:10 pm (fblackmo) employee was stepping off back of truck when, he slipped causing injury to his left leg, knee, and lower back. Supervisor: jerri parker
## 9598                                                                                        9/27/2006 03:31 pm (fblackmo) employee was running along shoulder of road in rain storm when, he stepped in a hole causing injury to right ankle. Supervisor: keith raulston
## 9599            9/28/2004 02:04 pm (bhenders) employee had just been loaded as he drove away from the plant. He drifted to his right causing the stud on right front tire to hit steel beam. Wheel caused steering wheel to spin and broke employees hand. Also caused d
## 9600            9/28/2004 02:34 pm (bhenders) employee was traveling north on sr 1565 when a dump truck crossed the centerline and struck vehicle. The side mirror was broken and flew into the window of the vehicle lodging glass in teh employee's left eye and face.
## 9601                                                                                                              9/28/2004 02:35 pm (fblackmo) employee was operating the stone spreader machine when, he was stung by a bee on his right arm. Supervisor: j. H. Ensley
## 9602                                                                                                                 9/28/2004 02:45 pm (fblackmo) employee states he was picking up a bucket of bolts when, he felt pain in his stomach area. Supervisor: w. D. Watkins
## 9603                                                                                                                     9/28/2004 02:53 pm (fblackmo) employee was cutting lines with survey party when, he came into contact with poison ivy. Supervisor: brady fisher
## 9604         9/28/2004 03:37 pm (fblackmo) employee was working on asphalt patch patching potholes on I-85 when, he bent over to pick up a hand tool his nose started to bleed. The bleeding could not be stopped on the work site and he was taken to the er. Superviso
## 9605                                                                                                        9/28/2004 03:51 pm (fblackmo) employee was retrieving traffic control cones when, he felt pain in his lower back and left hip area. Supervisor: r. J. Monroe
## 9606                                                                  9/28/2004 04:18 pm (fblackmo) employee was out on job site and was driving a white top stake into the ground when, he hit his right index finger with a sledge hammer. Supervisor: franklin hodges
## 9607                                                                      9/28/2004 10:38 am (fblackmo) employee states that while conducting a road test the driver backed into curb. Employee felt pain in his neck and upper back area. Supervisor: marcia leah smith
## 9608                                                        9/28/2004 10:56 am (fblackmo) employee was boarding vessel when, he slipped and fell approximately four feet to the steel deck. Employee experienced pain in his back and hip area. Supervisor: s. H. Kinner
## 9609                                                                                                                              9/28/2004 11:11 am (fblackmo) employee found a tick stuck on his right side hip when, he got home from work. Supervisor: todd whitaker
## 9610                                                                                                       9/28/2004 11:22 am (fblackmo) employee was removing glass from door when, glass fell apart causing the injury to his left forearm. Supervisor: e. M. Presnell
## 9611                                                                                                          9/28/2004 11:33 am (fblackmo) employee was on loading dock when, he was stung by a yellow jacket on his left hand ring finger. Supervisor: w. W. Childress
## 9612                                                               9/28/2004 12:46 pm (fblackmo) employee was bending down picking up his hard hat when, he hit his head on the bottom of a sign causing a laceration to the top of his head. Supervisor: jimmie semmoms
## 9613                                                                                                9/28/2005 12:38 pm (fblackmo) employee was tapping flat cardboard boxes when, he cut his left thumb on the cutting edge of tape dispenser. Supervisor: danny carlton
## 9614                                                                                                                         9/28/2006 09:09 am (fblackmo) employee had been cutting trees when, he was bitten by a spider on calf on left leg. Supervisor: carlis smith
## 9615                                                                                                          9/28/2006 09:22 am (fblackmo) employees foot slipped off of step when getting out of tandem dump turck causing injury to left knee. Supervisor: terry shaw
## 9616                                                                                                                     9/28/2006 09:34 am (fblackmo) employee states foreign matter blew in his right eye from the fan on front end loader. Supervisor: gerald brabble
## 9617                                   9/28/2006 09:44 am (fblackmo) employee pulled to the side of road to let car pass as employee was looking back, grader hit dip in road causing the seat to come down hard and cause pain to his back. Supervisor: t. W. Davenport
## 9618                                                                                                                                     9/28/2006 10:52 am (fblackmo) employee was rotating and organizing batteries when, he twisted his back. Supervisor: james roper
## 9619                                                                                9/28/2006 11:03 am (fblackmo) employee went to step over a fence when, the left heel of his foot caught the top of the silt fence causing pain to his knee. Supervisor: larry koontz
## 9620                      9/28/2007 01:46 pm (mdsloan) employee was measuring area for seeding quantities and contractor dusted employee with agricultural lime. This action affected employees chest, lungs and eyes. Supervisor: b. V. Smith 8/8/2008 02:49 pm (blgay)
## 9621                                                                                                                   9/28/2007 02:15 pm (mdsloan) employee was stepping into the dump truck and felt a pain in his lower right side of his back. Supervisor: t l pugh.
## 9622            9/28/2007 09:24 am (mdsloan) employee was coming to work when he stepped on a rock in the parking lot. When he stepped on the rock he twisted his ankle lost his balance and fell. Employee tried to break his fall by using his hands causing a bad scr
## 9623                9/28/2007 10:21 am (mdsloan) employee was restraining a suspect during an arrest. The suspect was resisting arrest at the time of the restraint and jerked away from the officer extending the officers thumb backwards. Supervisor: m. M. Courtney.
## 9624          9/28/2007 11:20 am (mdsloan) employee was operating an asphalt roller the morning of the incident and around 11:30a employee stepped off of the asphalt roller when he noticed a pain in his lower back. As the day progressed and he continued to work on
## 9625         9/28/2009 07:58 am (blgay) employee was responding to an emergency call, tree was obstructing roadway and needed to be removed on sr 1134. Crew removed the tree from the roadway and noticed four more trees along the right of way. While Mr. Simmons was
## 9626                                                          9/28/2009 08:19 am (blgay) employee was cutting straps on bundle of pipe. When strap was cut, pipe rolled and hit pipe saw, pipe saw then hit employees left leg cutting it. Supervisor: james mike gibson
## 9627         9/28/2009 08:28 am (blgay) employee was cutting a tree. The backhoe operator put a little pressure on the tree. The tree was dead and started to fall before employee could get out of the way, limb hit hard hat and back of neck. Supervisor: sarah foste
## 9628                                                                 9/28/2009 08:38 am (blgay) employee was driving short wheeled based dump truck on soft shoulder and truck overturned, causing muscle strain and contusion on right side. Supervisor: harry williams
## 9629                                                                                      9/28/2009 08:49 am (blgay) employee was working under a truck replacing a clutch. The air hose blew off and the air hose struck him in the right eye. Supervisor: jeff whitley
## 9630                                                                                         9/28/2009 08:57 am (blgay) employee was lifting up the gate on our mowing trailer and felt pain in his lower back as he was lifting up the gate. Supervisor: thomas gammons
## 9631                                                                                                              9/28/2009 10:12 am (blgay) employee was struck by limb from falling tree, pinning employee to ground, fracturing lower left leg. Supervisor: reid rich
## 9632         9/28/2009 12:47 pm (blgay) employee was getting signs out of the back of a cc. A metal sign had gotten lodged in a roll up sign frame. When employee pulled the roll up sign out, the metal sign fell out of the frame hitting employee on the top of his r
## 9633                                                                                                         9/28/2010 04:28 pm (fblackmo) employee was bending over to pick up a small to medium gift bag when, she felt pain in her lower back. Supervisor: j. H. Pate
## 9634                                                                                      9/28/2010 04:43 pm (fblackmo) employee was on break walking around building when, she fell forward striking her head and face on bumper of a vehicle. Supervisor: sadie carter
## 9635                                                   9/28/2010 05:08 pm (barnes) employee felt a pop in his ankle when he was walking around a radius of a road to measure the line a contractor had painted. Employee hurt his right ankle. Supervisor: d. L ferguson
## 9636                                                                                                                                  9/29/2004 03:16 pm (fblackmo) employee was removing a tree from the road, when a rock hit him in the eye. Supervisor: ken anderson
## 9637                                                                                                                   9/29/2004 03:27 pm (fblackmo) employee was working during emergency situation when, he came into contact with poison ivy. Supervisor: j. F. Sloop
## 9638                                                                             9/29/2004 07:48 am (fblackmo) employee was checking a silt bag when, the bag busted washing employee down hill onto some rocks hurting his buttocks area. Supervisor: william lowery jr
## 9639                                                                   9/29/2004 09:36 am (fblackmo) employee was cutting metal strap on a bundle of pipe. Employee struck the strap with a bush axe, he felt a sharp pain in his right shoulder. Supervisor: b. R. Webb
## 9640                                                                                               9/29/2004 09:47 am (fblackmo) employee was chipping brush from debris caused by hurricane frances when, he came into contact with poison ivy. Supervisor: terry davis
## 9641                                                                             9/29/2004 10:48 am (fblackmo) employee states while washing a truck with tc201 truck and car wash, the soap caused chemical burns to both hands and fingers. Supervisor: russell ramsey
## 9642                                             9/29/2005 09:03 am (fblackmo) employee was returning from southport operations en-route to manns harbor when, she was struck in the rear by a private vehicle. Employee felt pain in her neck. Supervisor: jesse vinson
## 9643                                                      9/29/2005 09:16 am (fblackmo) employee was driving a state dot pick up truck when, he was struck in the rear by a private vehicle. Employee felt pain in his neck and upper back area. Supervisor: derek smith
## 9644                                    9/29/2005 09:30 am (fblackmo) employee was working in the weld shop center punching on pad eyes when, debris blew into his left eye. A fan was rotating behind him which caused the debris to fly. Supervisor: kevin lamar cooke
## 9645                                                                                                      9/29/2005 09:42 am (fblackmo) employee was cutting tree limbs with chainsaw when, limb fell striking him on his shoulder/neck area. Supervisor: howard elliott
## 9646                                                                      9/29/2006 10:46 am (fblackmo) employee was getting into the truck when, his foot slipped on the running board causing door to hit right foot in the area of the shin. Supervisor: a. S. Bailey
## 9647                                                                                                9/29/2006 10:55 am (fblackmo) employee came into contact with poison ivy while removing wax myrtle bushes and loading them on flatbed truck. Supervisor: r. J. Brown
## 9648                                                                                                               9/29/2009 07:03 am (blgay) employee was bending down picking up piece of plywood and twisted the wrong way, hurting his back. Supervisor: chad dennis
## 9649          9/29/2010 02:28 pm (barnes) employee (kourtney) was in the passenger seat of an international flatbed truck, and finlen was driving. Finlen just got his cdl learners permit and wasn't really familiar with the gears in this struck. They were traveling
## 9650                                                                      9/29/2010 03:21 pm (fblackmo) employee was in the warehouse getting traffic cones when, he pushed a pallet of signs out of his way he felt pain in his lower back. Supervisor: jonnie barefoot
## 9651                                         9/29/2010 03:44 pm (fblackmo) employee was stepping out of elevator when she slipped and fell because, the platform stop un-evenly with the floor. Employee injured her right leg, knee, and foot. Supervisor: maude creech
## 9652                            9/29/2010 04:16 pm (fblackmo) employee was pulling a wheel barrow across reinforcing steel when the wheels got stuck. While pulling on the wheel barrow he slipped causing him to fall and cut his right wrist. Supervisor: mark blalock
## 9653                                                                                                        9/29/2010 04:34 pm (fblackmo) employee was working with asphalt crew shoveling asphalt when he got over heated. Heat exhaustion. Supervisor: roger carpenter
## 9654                                                                                                            9/29/2010 04:36 pm (barnes) employee found a tick attached inside his belly button. Employee had tick bite in belly button. Supervisor: nanette fogleman
## 9655         9/29/2010 04:56 pm (barnes) employee was walking around truck to assist in removing straps from straw truck. He inadvertently stepped into a hole in the ground that had become grown over with turf and he did not see the hole. When the employee stepped
## 9656        9/29/2010 05:36 pm (barnes) employee was loading straw at davie county maintenance yard when he felt a pinch above his left ankle. The next morning he had water blisters and red spots of about 4" diameter. He asked to go to the doctor at 3:10 p. M on 9
## 9657         9/29/2010 05:59 pm (barnes) employee was carrying a drip pan to place under the spray bar of an asphalt distributor. He was carrying the back of the pan and a co-worker was carrying the other end. As he backed around the bar, he tripped and fell backw
## 9658                              9/29/2010 08:25 am (fblackmo) employee was driving distributor truck on highway when, he went off the shoulder of the road and overturned. Employee felt pain in his lower back and right side of his face. Supervisor: w. B. Crumpler
## 9659                                                   9/29/2010 08:44 am (fblackmo) employee was debarring parts using the belt sander. The belt grabbed the part and his finger into the belt causing amputation of right center finger tip. Supervisor: alfred wilson
## 9660         9/29/2010 08:46 am (barnes) employee was assisting another employee cutting a tree in the right -of-way. The tree started falling away from him, but a 4 inch tree limb broke off falling towards him. The employee put up his arms trying to protect himse
## 9661         9/29/2010 09:03 am (fblackmo) employee was dumping a load of rip rap with dump truck when one of the rocks got caught between the tailgate and body of the vehicle. Employee reached in to release the rock when the tailgate slammed shut on his hands. Su
## 9662                                                                                                                                        9/29/2010 09:20 am (fblackmo) employee was stepping out of truck when, he felt pain in his back. Supervisor: mark turlington
## 9663         9/29/2010 09:21 am (barnes) employee and crew was opening a ditch line along sr1118(nelson store rd. ). Prior to the backhoe arriving, the employee along with the crew were shoveling and leveling the ditch line between two driveway pipes. While shovel
## 9664                                9/29/2010 09:31 am (fblackmo) employee was hauling sign post to scrap metal yard; post became lodged in tailgate while dumping. Employee loosed the post causing it to fall striking him on his right leg. Supervisor: ricky blalock
## 9665                                                                      9/29/2010 09:51 am (fblackmo) employee was helping tie down a excavator on low boy when, he threw the chain over the bucket he felt pain in his upper arm/shoulder area. Supervisor: ben nelms
## 9666           9/29/2010 10:30 am (barnes) employee was shoveling asphalt off road (cleaning up spill on amos road). As he turned around toward a co-worker, he was accidently hit with a hand tool that the co-worker was handling. Employee was cut on his chin. He go
## 9667          9/29/2010 10:37 am (fblackmo) employee was removing damaged guardrail from post when another employee (l. Hewett) removed a bolt from the end of the guardrail causing it to spring out and strike employee on his lower left leg. Supervisor: w. T. Mintz
## 9668         9/29/2010 10:53 am (barnes) employee was removing cones out of the bed of his imap truck, and the cones were stuck together. When he pulled the cones, they suddenly came a loose causing him to hit his left elbow on the hand rail that is attached to th
## 9669                                                                9/29/2010 11:05 am (fblackmo) employee was cleaning out an outfall of reinforced concrete pipe when, wave pushed him into the concrete pipe causing injury to his right wrist. Supervisor: guy white
## 9670         9/29/2010 11:25 am (barnes) employee was working asphalt. He was pushing up the edge where the edge of pavement and the shoulder meet. As he was putting pressure on the rake, it broke. The employee's body weight carried him over the asphalt. He caught
## 9671                                                                   9/29/2010 11:47 am (fblackmo) employee was crossing the ditch on a temporary bridge when, he stepped on an exposed nail on one of the boards. Employee punctured left foot. Supervisor: mike vann
## 9672                                                                        9/29/2010 11:48 am (barnes) employee was raising the hood on the squad truck to do a pre-trip inspection and cut his hand on the hood. Employee cut his left hand. Supervisor: lee ainsworth
## 9673                                                                                                                         9/29/2010 12:03 pm (fblackmo) employee was working on bridge when he was bitten by a spider on his left wrist. Supervisor: jeremy b. Creech
## 9674          9/29/2010 12:12 pm (barnes) employee stated that he was pulling on a large pull bar to free bolts from a light bracket. The pull bar came free, causing the employee to fall backwards. He heard a pop sound in his left knee area. Employee hurt his left
## 9675                                                                                               9/29/2010 12:12 pm (fblackmo) employee went to remove shingles from roadway. Employee kicked the singles causing puncture to his left foot. Supervisor: karen fussell
## 9676                                                                                               9/29/2010 12:29 pm (fblackmo) employee was under bridge structure removing timber components when he was bitten by a spider on his right leg. Supervisor: mike rogers
## 9677       9/29/2010 12:53 pm (fblackmo) employee was entering the excavator by using the three points of contact method which is the normal procedure. Safe operating procedures 10-5; while pulling himself up he felt pain in his lower back. Supervisor: m. W. Ennet
## 9678        9/3/2008 09:35 am (fblackmo) employee was working at her computer when she glanced something crawling on her blouse. Seeing it was a spider she then swatted to get it off her blouse but, instead the spider fell into her blouse. She was unable to find t
## 9679           9/3/2008 09:57 am (fblackmo) employee was installing park benches at nash rest area when, he bumped his left forearm. He had been using power and hand tools to make the holes for the anchor bolts used to hold them down. Supervisor: robert d. Simpson
## 9680                                                                                                       9/3/2008 10:51 am (fblackmo) employee was walking around the dump truck when he slipped on uneven ground and twisted his right ankle. Supervisor: ernest pitt
## 9681                                                                                                                     9/3/2008 11:23 am (fblackmo) employee felt pain in his right shoulder during weapon retention training exercise. Supervisor: robert e. Flaherty
## 9682                                                                                                                           9/3/2009 02:16 pm (blgay) employee climbed a bank and cut a tree. The tree fell across his left leg above the knee. Supervisor: kep biggs
## 9683                                                                                          9/3/2009 02:30 pm (blgay) employee was climbing into 3/4 ton truck, when her right foot slipped and her lower leg hit the metal frame of the truck. Supervisor: keith hill
## 9684                                        9/3/2009 02:39 pm (blgay) employee was on top of the rock pile picking out rocks for erosion control project. Employee lost footing and slipped backwards, hitting head, shoulders and neck area. Supervisor: jamie robinson
## 9685         9/3/2009 02:50 pm (blgay) employee was cutting a fallen tree out of the road and needed a pitch fork. Another employee climbed upon the c/c and threw the pitch fork off the side. The pitch fork bounced and hit employee in the left leg. Supervisor: wen
## 9686         9/3/2009 03:03 pm (blgay) employee was setting a pipe. After the pipe was laid, an employee removed the pipe hook from the pipe, and was holding it as employee walked away from pipe. The other employee slipped and the pipe hook came out of his hand an
## 9687         9/3/2009 03:12 pm (blgay) employee was cutting a tree about 10" - 12" at stump and 20-25' tall. When tree came off of stump it fell to the ground, then fell on top of employee, as he was running to get out of way, hitting him in back of head. Supervis
## 9688          9/3/2009 03:22 pm (blgay) employee was working on the project site, observing the subcontractor's operation. The subcontractor was backing his vehicle and hit employee causing him to fall, injuring left forearm, sprain right thumb, sprain left wrist.
## 9689                                                                                                                   9/3/2009 08:40 am (fblackmo) employee strain his left shoulder and upper back while helping another employee remove a sign. Supervisor: rod wyatt
## 9690                                                                                                 9/3/2009 08:57 am (fblackmo) employee was cutting trees and bushes on state road when, he was bitten by un-known insect on his left arm. Supervisor: r. J. Woodcock
## 9691                                      9/3/2010 01:04 pm (barnes) employee "ed" was cutting a tree on sr 1367-b (globe road). A vine attached to an adjacent tree caused a branch to break and hit ed on the neck. Employee injured his neck. Supervisor: j. C. Mundy
## 9692                                                                    9/30/2005 09:58 am (blgay) employee was picking up barbed wire and foot got tangled up in wire causing him to fall and wire wrapped around leg, cutting lower right leg. Supervisor: jerry keene
## 9693                                                              9/30/2008 03:02 pm (blgay) employee was dumping dirt into widening machine, reached down and hung ring finger and small finger of right hand on rod over dump control panel. Supervisor: william mayes
## 9694         9/30/2009 01:45 pm (blgay) employee was helping back a piece of equipment when he fell into a gap on the trailer, causing his body to twist. Employees right leg stayed straight as he came down on his right side on his right hand, wrist and knee, which
## 9695          9/30/2010 02:21 pm (barnes) employee was installing a tailgate lip (apron) on the back of the dump truck along with another employee. While putting aprons on the truck, employee felt a pain in his right side. Employee injured his right side. Supervis
## 9696                          9/30/2010 08:21 am (barnes) employee was sitting in a dump truck eating lunch. An unknown insect stung him on the right index finger, causing severe pain and swelling. Employee hurt right index finger. Supervisor: charles f. Vick, cme
## 9697         9/30/2010 08:29 am (fblackmo) employee was operating tandem dump truck, and was attempting to back into a farm path at beginning of operation to wait for remaining personnel and equipment to arrive. Employee backed into pathway part way, then pulled f
## 9698         9/30/2010 08:46 am (barnes) employee was checking the amount of paint in machine. He had been suffering with a headache that morning and claims that the heat just got to him. The employee stepped down off truck, grabbed his head, then kneeled down pla
## 9699                                     9/30/2010 09:09 am (fblackmo) employee was conducting a road test. The driver accidentally hit the gas in the parking lot and struck the side of the dmv building. Employee felt pain in her neck area. Supervisor: dean almond
## 9700                                                                                                     9/30/2010 09:26 am (fblackmo) employee was riding in passenger seat when truck hit a hole causing his neck to snap back and forth. Supervisor: kennie covington
## 9701         9/30/2010 09:38 am (barnes) employee was riding inside the work zone with the contractor from one end of the project site to the other end. Contractor driver made a quick move with the vehicle and the employee was thrown from inside of the bed rail to
## 9702           9/30/2010 09:38 am (fblackmo) employee was making concrete cylinders to test curb and gutter. Employee cut finger on cylinder mold while performing test. His finger became infected to a point that medical attention was needed. Supervisor: jeff allen
## 9703         9/30/2010 12:59 pm (barnes) employee had dump truck bed tail gate raised. He and another employee were pulling and tugging on debris that was hung in the bed of the truck. Once debris came loose, the employee felt a pop and a pull in his lower back, n
## 9704                                   9/4/2007 02:26 pm (fblackmo) employee was turning left from olive chapel road to kelly road in apex when she was struck by a school bus. Employee felt pain in her right hand, left shoulder, and back. Supervisor: scott walston
## 9705                                                9/4/2007 03:21 pm (fblackmo) employee was training another employee to run belts on rock spreader when, dump truck hit power lines. Employee jumped off spreader causing injury to right knee. Supervisor: mike vann
## 9706                     9/4/2007 03:32 pm (fblackmo) employee (david barnes) pulled up to assist other employee (harold tomlin) in hooking up a light for night operation when, david struck harold on left ankle with passenger front tire. Supervisor: jamie robinson
## 9707         9/4/2008 02:07 pm (blgay) employee was stopped to take a break, he got out of his truck and walked around to the front of the truck when his feet got tangled in some tree limbs that were on the ground and caused him to fall into the bumper of the truc
## 9708                                                                                            9/4/2008 02:19 pm (blgay) employee was lifting and placing rip-rap (stone) under bridge. Employee strained his left shoulder, left arm, and neck. Supervisor: herb ramey
## 9709         9/4/2008 08:54 am (blgay) employee was weed eating on us 29 southbound near the intersection of john street. Employees were on the outside shoulder with two wheels on the road due to limited space. Employee was using his truck to shield inmates. Emplo
## 9710                                                                                9/4/2009 09:04 am (fblackmo) employee went to get oil pads out of engine room when, he slipped on deck due to oil spill. Employee felt pain in his left arm. Supervisor: e. H. Piner
## 9711                                                                                                                                   9/4/2009 09:18 am (fblackmo) employee was at training firing range when, she felt faint and passed out. Supervisor: keith e. King
## 9712         9/4/2009 11:44 am (blgay) employee was on the yard looking for his keys and walked around the truck. The hatch was open on rick little's truck and employee ran into it. Employee didn't expect it to be open and he walked right into flap and hit the lef
## 9713         9/4/2009 12:07 pm (blgay) employee was walking from the modular unit to the main building located at the district office. Employee twisted her left ankle, lost her balance and fell landing on left hand and right knee, causing her to scrap her right kn
## 9714                                                                                          9/5/2007 02:13 pm (fblackmo) employee was removing transmission from vehicle when, his finger was caught between the wrench and the flex plate. Supervisor: ronnie chilton
## 9715                                                                                                                                           9/5/2007 03:09 pm (fblackmo) employee was racking asphalt when, he got too hot and passed out. Supervisor: michael lemons
## 9716                                                                                               9/5/2007 03:22 pm (fblackmo) employee was walking with mechanic from garage to office, stepped on broken sidewalk, and twisted left ankle. Supervisor: a. E. Caldwell
## 9717                                                                                                                  9/5/2007 03:33 pm (fblackmo) employee was moving gear oil barrel when, gun fell off pump and struck his left small toe. Supervisor: robert cannady
## 9718                                                                                           9/5/2007 03:42 pm (fblackmo) employee was sharpening bush axe. Axe turned and blade cut through glove causing injury to right center finger. Supervisor: eddie gurganious
## 9719                                                                                                                                     9/5/2007 03:49 pm (fblackmo) employee experienced heat exhaustion while walking beside paving machine. Supervisor: ronnie smith
## 9720                          9/5/2007 09:29 am (fblackmo) employee was reorganizing the items in back of a pickup truck. He picked up two metal sign racks at the same time, one in each hand, and felt pain in his left shoulder blade area. Supervisor: p. S. Rickard
## 9721                                                                                    9/5/2007 09:39 am (fblackmo) employee was walking out the back door when, she fell off the stoop causing injuries to her hands, wrist, left leg, & back. Supervisor: lorie cantu
## 9722                                                                                                                                9/5/2007 09:55 am (fblackmo) employee was stung by a wasp on left arm while waiting for dirt to be loaded. Supervisor: t. S. Bozeman
## 9723                                                             9/5/2007 10:05 am (fblackmo) employee stepped out of dump truck onto side step when, his foot slid causing him to fall to the ground. Employee felt pain to back & left wrist. Supervisor: willie mayes
## 9724       9/5/2007 10:15 am (fblackmo) employee was using gas powered weedeater to clear brush and debris from around bridge, slopes, and approaches. Object from another weedeater being operated by another employee hit Mr. Smith in the left temple area. Superviso
## 9725                                                                                                  9/5/2007 10:26 am (fblackmo) employee was cleaning out holes with shovel when, he felt pain in his lower back. Supervisor: ted burns 3/13/2008 12:34 pm (sjerniga)
## 9726                                                                                                                 9/5/2007 10:34 am (fblackmo) employee was caught between two 30 gallon latex paint drums when, he felt pain in abdomen area. Supervisor: ira harris
## 9727                                                                                                   9/5/2007 11:28 am (fblackmo) employee was climbing off the side of the dump truck when, he stepped off his left knee popped causing pain. Supervisor: joe cogdell
## 9728                                                                                                                                         9/5/2007 11:36 am (fblackmo) employee came into contact with poison ivy while clearing right of way. Supervisor: ricky ball
## 9729                           9/5/2007 11:48 am (fblackmo) employee was moving scaffolding under bridge when the walkboard shifted in the hangers. He was pulling up on one end of walkboard with a rope when, he felt pain in his groin area. Supervisor: r. F. Minton
## 9730                                                                    9/5/2007 12:02 pm (fblackmo) employee was helping clean up roadside debris and noticed shortly after doing so he began itching on his arms and spread to other areas. Supervisor: jerry hildreth
## 9731                                                                                         9/5/2007 12:14 pm (fblackmo) employee was operating chainsaw to cut down small trees when, a piece of debris came back and hit him in the right eye. Supervisor: l. N. Long
## 9732                                       9/5/2007 12:22 pm (fblackmo) employee states grader operator asked him to check and see where the hydraulic oil was coming from and to see if the hose was tight when, the fluid got into his right eye. Supervisor: jim ashe
## 9733                                     9/5/2007 12:31 pm (fblackmo) employee was slope stacking a project and after he had stomped the high weeds down in the location where he was stomping he lost his footing causing injury to groin area. Supervisor: phil manley
## 9734                                                                                                                                               9/5/2007 12:49 pm (fblackmo) employee hurt his lower back while pulling on a chain binder. Supervisor: greg mccracken
## 9735                                                                                             9/5/2007 12:58 pm (fblackmo) employee removed face shield from grinding metal to whip sweat from forehead when, metal got into his right eye. Supervisor: leroy farrish
## 9736         9/5/2008 01:49 pm (blgay) employee was working on sr 1527 when belt on grader broke. Crew started picking up litter along the roadway until shop fixed the grader. Employee was instructed to ride with Mr. Caudill back to grader. Mr. Caudill started mov
## 9737                                                                9/5/2008 11:59 am (fblackmo) employee made a u-turn in front of oncoming dump truck. Employee felt pain in his left elbow and had knot on head. Supervisor: tony wyatt 5/11/2009 04:19 pm (sjerniga)
## 9738                                                   9/5/2008 12:17 pm (fblackmo) employee was working on I-40 at nc 210 flyover operating ventrac tractor hauling mulch when, he got a headache, felt disoriented, and just didn't feel well. Supervisor: harry hayes
## 9739                                                                                                                                        9/6/2005 03:27 pm (fblackmo) employee was picking up trash and struck a twig into his right thumb. Supervisor: d. R. Summers
## 9740        9/6/2005 08:44 am (blgay) employee was removing a spindle using a chisel to separate. Drive chisel on side, struck other side with hammer, causing chisel to fly out, bouncing back and struck employee in the mouth breaking tooth. Supervisor: w. J. Kride
## 9741                                           9/6/2005 09:05 am (blgay) employee was grinding some burrs off of a shaft to install a new clutch assembly and a metal sliver blew up under safety goggles lodging in the employees right eye. Supervisor: t. L. Jernigan
## 9742                                            9/6/2005 09:39 am (blgay) employee was unloading crates off of tractor trailer. While holding crate to keep it from moving to get forklift under, finger got caught between crate and forklift. Supervisor: chris taylor
## 9743                                                                                                           9/6/2005 09:44 am (fblackmo) employee states while cutting a tree, the tree slipped from the stump and landed on his right foot. Supervisor: craig staley
## 9744                                                                                        9/6/2005 09:56 am (fblackmo) employee was trying to lift a sign rack over the side of the crew cab truck when, he felt pain in his right shoulder. Supervisor: david l. Lane
## 9745                                                                                                      9/6/2005 10:08 am (fblackmo) employee was standing in roadway while trucks was going by when, foreign matter flew into his right eye. Supervisor: j. P. Ingram
## 9746                           9/6/2005 10:17 am (blgay) employee was lifting a wheel barrel loaded with dirt into a ton dump truck when it flipped on its side. The leg of the wheel barrel hit employee in the center of chest below ribs. Supervisor: david prestwood
## 9747                                                                                                       9/6/2005 10:54 am (fblackmo) employee was installing installation in a fuel room when, particles form the installation got into his eyes. Supervisor: joe lee
## 9748         9/6/2005 11:22 am (blgay) employee was working with inmates on I85 picking up trash, when inmate noticed an accident taking place on the roadway in front of them. Employee jumped from state vehicle and proceeded to help the victim move away from the b
## 9749                                                                        9/6/2005 11:23 am (fblackmo) employee was loading a 48' plastic pipe into bed of truck when, she felt pain in her neck, right arm & shoulder, hand and fingers. Supervisor: john l. Mcdonald
## 9750                                                                                                                                                    9/6/2005 11:38 am (fblackmo) employee found two ticks on himself while flagging traffic. Supervisor: l. W. Lyall
## 9751                                                                                                                               9/6/2007 09:26 am (fblackmo) employee came into contact with poison ivy while cleaning up various site location. Supervisor: joe ross
## 9752                                                                                           9/7/2004 08:32 am (fblackmo) employee was working in drainage ditch with shovel when, he slipped and turned causing the injury to his right ankle. Supervisor: s. R. Ross
## 9753                                                                                                                                                    9/7/2004 08:43 am (fblackmo) employee states he dropped a saw horse on his right foot. Supervisor: ronald canady
## 9754                           9/7/2004 09:00 am (fblackmo) employee was operating valve on thermo-lay patch truck when, his right forearm brushed against the metal step for the hydraulic tank. Employee has a laceration on his right forearm. Supervisor: s. R. Ross
## 9755                   9/7/2004 09:11 am (fblackmo) employee states he was moving brush after cutting with an axe when, he went to grab the axe handle he caught the lower end of the blade causing the injury to his index finger on left hand. Supervisor: ken presson
## 9756                                                                                                                                        9/7/2004 09:57 am (fblackmo) employee was stung by several bees while using a bush hog to cut grass. Supervisor: fred narron
## 9757                                       9/7/2004 10:32 am (fblackmo) employee was putting water in cooler and dropped the lid. He leaned over to pick up the lid and struck his head on the corner of the bracket holding the condenser. Supervisor: p. E. Williamson
## 9758                                          9/7/2004 11:09 am (fblackmo) employee was washing out culvert with fire hose. Employees feet became stuck in the mud. Employee was freeing his feet from mud when, he felt pain in his lower back. Supervisor: t. M. Smith
## 9759                                                                                            9/7/2004 11:26 am (fblackmo) employee was removing bolts from bridge deck, when, he inhaled fumes from the creosote wood, irritating his lungs. Supervisor: ken anderson
## 9760         9/7/2006 02:54 pm (fblackmo) employee was attempting to climb onto the dump truck to assist removing tailgate pin. Employee placed right foot onto rear axle hub and grabbed cat walk bar with both hands. As employee lifted his left leg he felt a pop fr
## 9761         9/7/2006 03:44 pm (fblackmo) employee was cleaning out a hole on I-77 when, he felt a pain in his back. He was using a pick to do the work and was trying to smooth the patch down with a shovel when, a very sharp pain hit him in his lower back. Supervi
## 9762                                                                                 9/7/2006 03:53 pm (fblackmo) employee was cutting trees and brush from recent storm when, he got poison oak on both arms. Employee is allergic to poison oak. Supervisor: don smith
## 9763         9/7/2006 04:04 pm (fblackmo) employee was operating belts on rock spreader, spreader hit a roller on the other side of the road causing employee to get knocked from one side to the other. Employee felt pain in his back area. Supervisor: jennie weather
## 9764        9/7/2007 02:18 pm (fblackmo) not a state employee. Mr. Pritchard's right foot and leg became stuck under moving tractor tire while mowing grass. Tractor was stuck and tilting over when, he climbed off and was injured. His right leg below the knee was a
## 9765                                                9/7/2010 03:55 pm (barnes) employee was shoveling asphalt out of the hopper of a leeboy paver. The operator pulled the paver forward onto the employee's foot. Employee injured left foot. Supervisor: r. G. Presley
## 9766                                                  9/7/2010 04:57 pm (barnes) employee was weed eating around bridge and dodged a hole and fell backwards catching his fall with his right arm. Employee injured his right arm and shoulder. Supervisor: randy ramsey
## 9767          9/7/2010 11:32 am (barnes) employee was swinging a sledge hammer. The hammer head slipped off and hit the beam of the bridge. It caught and pinched the employee's finger between the beam and the handle. Employee injured his right index finger. Superv
## 9768         9/7/2010 12:20 pm (barnes) employee opened the door of the truck and climbed up on the step to reach inside to get something out. While standing on the step and holding on to the outside rail of the truck, he begin to get out. His feet slipped off the
## 9769                                                        9/8/2006 06:12 pm (fblackmo) employee slipped on wet top stair step and fell causing injury to right hip or butt. Employee was on his way to mailroom to get some office supplies. Supervisor: chris hendrix
## 9770                                                                                          9/8/2006 08:28 am (fblackmo) employee states while holding a rod with a the rod catcher the guide fell down the tower and hit his right hand. Supervisor: dean argenbright
## 9771                                9/8/2006 08:37 am (fblackmo) employee was riding to next work assignment when, he felt pain on his right side. Employee noticed there was a tick embedded and went to immediate care in wilson for removal. Supervisor: eric boyette
## 9772                                                        9/8/2006 08:51 am (fblackmo) employee was coming to work to start his paper work for his project when, he was getting out of the truck he felt pain in his right lower back hip area. Supervisor: jimmy deal
## 9773         9/8/2006 09:07 am (fblackmo) employee was helping landscape employees remove a nut from a piece of equipment. Employee had heated the nut before beginning to loosen with a rachet. While employee was turning rachet he felt a pull in his lower back. Sup
## 9774         9/8/2006 09:46 am (fblackmo) employee was fixing driveways and drop off, he was shoveling rocks after dumping it in a small pile on the shoulder of the road. A private vehicle came through the work area and struck employee with mirror on right hand. S
## 9775                                                                                     9/8/2006 09:59 am (fblackmo) employee was tightening plug with combination wrench over his head when, the wrench slipped off hitting him on the forehead. Supervisor: mike hamm
## 9776         9/8/2008 10:21 am (blgay) employee was driving steel post on 7/22/08 using a manual post driver, when he hit a rock with post and post stopped, bruising his right hand. It formed into a knot in hand causing pain and tenderness. Employee went to doctor
## 9777                                                           9/8/2008 10:32 am (blgay) employee was running tractor broom sweeping roads to be paved. Employee said he got a blister on right toe next to little toe, from working pedal. Supervisor: jennie weaterman
## 9778                                                     9/8/2008 10:42 am (blgay) employee was working normally and discovered a tick attached to his right leg. Tick was removed and saved, employee developed a spot at bite site 08/26/08. Supervisor: leonard dills
## 9779                                                                      9/8/2008 10:50 am (blgay) employee was walking and slipped down and fell down stairs, as he lost footing while standing in a bus conducting a commercial drivers test. Supervisor: darrly pike
## 9780          9/8/2009 08:43 am (blgay) employee had come to the office on saturday to check on work that had been left on his desk. Employee exited out the back door of office, tripped on the first step and grabbed hand rail. The hand rail gave way, employee fell
## 9781                                                                                                                          9/8/2009 08:58 am (blgay) employee was clearing wood from the bushes when something bit him on his left forearm. Supervisor: a. C. Cochran
## 9782         9/8/2009 09:07 am (blgay) employee was getting out of loader to assist mechanic. When employee made her final step down to the ground, she simultaneously released hand rails, and unknown to her, a rock was under her foot, her right ankle twisted. Empl
## 9783        9/8/2010 02:33 pm (barnes) employee was working at a site where a contractor was blasting. The shot went higher than planned. The employee had to evacuate the area he was in. He stepped over the guardrail and hit his right leg on the guardrail post cau
## 9784         9/8/2010 03:10 pm (barnes) employee was cleaning up day lily beds at mars hill. Around 11:30 am employee complained to supervisor that her belly and side was hurting. They thought that it May have been the heat. However, employee had several ant bites
## 9785                                                                                                             9/8/2010 03:12 pm (fblackmo) employee was unhooking a chain from a tree which had poison ivy vines. Dermatitis to both arms. Supervisor: clyde e. Scott
## 9786                                                         9/8/2010 03:25 pm (fblackmo) employee was using a manual pole driver to set up gravel signs when, he pulled on the pole the third time it struck him on the left side of his head. Supervisor: gene johnson
## 9787                                                                                                                                                  9/8/2010 03:37 pm (fblackmo) employee was hanging flag when something hit his left eye. Supervisor: lorrie sineath
## 9788                                                                                                                           9/8/2010 03:54 pm (fblackmo) employee fell on steps while moving a chair. Employee felt pain in his right foot. Supervisor: clint stanley
## 9789                                        9/8/2010 04:02 pm (barnes) employee was flagging on the shoulder of old cox road. After the employee got home, he found several ticks on his stomach that were attached. Employee injured stomach. Supervisor: jessie knight
## 9790                                                                                                              9/8/2010 04:28 pm (fblackmo) employee was running the jack hammer when a piece of concrete flew up striking him on the lip. Supervisor: randy williams
## 9791              9/8/2010 04:33 pm (barnes) employee stuck a piece of welding wire into his right index finger. While using a wire welder, employee tried to break off wire. Employee injured and punctured a wound inside right index finger. Supervisor: t. H hackett
## 9792                           9/8/2010 04:38 pm (fblackmo) employee was operating front end loader while backing down from stock pile steering machine with left hand. The machine jerked causing employee to fell pain in his left shoulder. Supervisor: neil crumpler
## 9793                                          9/8/2010 08:32 am (barnes) employee found tick imbedded on his right shin. Employee removed the tick and 2 days later he had a red rash around the wound. Employee injured right front leg; shin. Supervisor: b. R. Putnam
## 9794                                                 9/8/2010 09:17 am (barnes) employee was working on old fort salt bin and was cutting a creosote post with a chain saw. He inhaled dust and smoke. Employee injured head, face and abdomen. Supervisor: b. W jackson
## 9795                                             9/8/2010 10:33 am (barnes) employee was trying to loosen a bolt when the wrench slipped causing hand/finger to be cut on the edge of the retainer clip. Employee injured right hand and finger. Supervisor: mike duncan
## 9796                                                                                                                 9/8/2010 11:22 am (fblackmo) employee was cleaning lumber shed; restocking lumber when he felt pain in his left shoulder. Supervisor m. Tommy gibbs
## 9797                                                                                                         9/8/2010 12:07 pm (fblackmo) employee was picking up traffic cones when he was bitten by a spider on his right index finger. Supervisor: raymond k. Whitley
## 9798                                                                                                     9/8/2010 12:21 pm (fblackmo) employee was standing on the side of road when tractor trailer pass by and blew debris into his left eye. Supervisor: jack rollins
## 9799         9/8/2010 12:32 pm (fblackmo) employee was inspecting highway signs delivered by the sign fabricator and not yet removed from the low boy trailer, as he was preparing to get off of the low boy trailer, he stumbled and jumped down to avoid falling, inju
## 9800                                                                        9/8/2010 12:43 pm (fblackmo) employee was pruning limbs on trees. Employee pulling a limb toward chipper when, he felt pain in his right shoulder and neck area. Supervisor: brian k. Glover
## 9801                               9/8/2010 12:55 pm (barnes) employee was unloading a truck and picked up a reel of wire off the truck onto the loading dock. He felt a sharp pain in his back while lifting. Employee injured lower right back. Supervisor: dave davis
## 9802                                                                                               9/9/2004 10:11 am (fblackmo) employee was standing by to help crew install a pipe when, an unknown insect stung/bit her on upper left arm. Supervisor: jerry hildreth
## 9803                                                                       9/9/2004 10:46 am (fblackmo) employee was unloading water pumps when, he slipped and fell causing the injury to his lower back. Supervisor: larry lovingood 2/15/2005 09:36 am (mpark) elavil
## 9804                                                               9/9/2005 09:30 am (fblackmo) employee was walking down steps when, she slipped and fell causing the injury to her face, lip, tooth, left shoulder & hand, and right knee. Supervisor: k. C. Batchelor
## 9805                                                                                        9/9/2005 09:46 am (fblackmo) employee was climbing hill to take cable crane when, he lost his footing causing him to fall and injure his forehead. Supervisor: barry kizziah
## 9806         9/9/2005 09:58 am (fblackmo) employee was sitting under tree eating lunch. Felt a bug crawling on neck, swiped it off. Employee didn't notice any reaction at the time, but later that night she noticed places breaking out on her neck, chest, and stomac
## 9807                                                                                 9/9/2009 01:38 pm (blgay) employee was setting up signs for the work zone, when a piece of metal from the sign lodged in his left 4th finger on left hand. Supervisor: scott gibson
## 9808          9/9/2009 02:28 pm (fblackmo) employee was getting into the passenger side of the lube truck and misjudged the door opening. He struck his right shoulder against the door. He had surgery on same shoulder several weeks ago and is still under physicians
## 9809                                                                                                                                             9/9/2009 12:11 pm (fblackmo) employee was working when he, noticed his upper lip was swollen. Supervisor: thomas bowser
## 9810                                                   9/9/2009 12:31 pm (fblackmo) employee was picking up saw horses to move them out of the way when, he felt pain in his lower back area, numbness in right foot, and pain in right leg. Supervisor: p. P. Mansfield
## 9811                                9/9/2009 12:46 pm (fblackmo) employee was holding the handle of a metal pick axe as it was struck by a metal sledge hammer. A silver piece of metal from the axe came off and punctured his left forearm. Supervisor: timothy sawyer
## 9812                 9/9/2010 08:16 am (barnes) employee was removing steel bracing between beams. The plywood he was using between the beams moved causing him to fall hitting his elbow on the edge of the beam. Employee injured his elbow. Supervisor: mark s. Smith
## 9813                                                                                                    9/9/2010 09:18 am (fblackmo) employee was operating a roller placing chipseal on highway when foreign matter got into his left eye. Supervisor: ald thornton, jr
## 9814                                                                                               9/9/2010 09:31 am (fblackmo) employee was placing construction fencing in the cab of dump truck when, he punctured his right index finger. Supervisor: cameron murphy
## 9815                                                                      9/9/2010 10:17 am (fblackmo) employee was walking across the floor of the m/v ft. Fisher when, he fell through the floor into the bilge injuring his right wrist. Supervisor: richard dewhurst
## 9816               9/9/2010 10:33 am (fblackmo) employee was walking across low boy trailer when he stepped on a loose board used to load equipment. The end of the board raised up striking him on the right side of his stomach/rib area. Supervisor: wendell chastain
## 9817                                                                         9/9/2010 10:44 am (fblackmo) employee was loading straw bales when, he heard his left bicep pop. Employee is on restrictions. He did not Miss Any days off work. Supervisor: randy mcintyre
## 9818                                                                   9/9/2010 10:55 am (fblackmo) employee was operating belts on chip spreader when, he was struck by mirror on a tandem dump truck. The mirror hit employee on his left arm. Supervisor: carl scales
## 9819                                                                                                                            ? Insect bite to upper lt-leg sitting at desk on ward 403 talking to co-worker at 11:45 am felt sharp burning type pain on lt-upper leg.
## 9820                                                                                                                                                                                                                  ??? Pain in right arm around elbow, pipetting ????
## 9821                        @firing range waiting to shoot, employee was sitting down with another employee and began to tremble and her eyes rolled back and she was not responsive to her name being called for few minutes, but did come around before ems arrived ()
## 9822                                                                                                                                                                                                             A 10 lb can fell from shel and struck EE in the lt hand
## 9823                                                                                                                                       A 2x4 that was resting a top of cabinet that was being moved by the EE fell and struck EE on the head; cut on top of his head
## 9824                                                                                                                                                                                                                       A arm came worse nad hit a staff in the nose.
## 9825                                                                                                                                                                                                   A banana was in floor and she slipped and fell on it. Right foot.
## 9826                                                                                                                                                                                   A bed of fire ants was found under the employees desk, inside her power strip. ()
## 9827                                                                                                                                                                                       A bed support rail fell on employee causing a laceration to his left shin. ()
## 9828                                                                                                                                                                                                                                           A bee stung EE on lt hand
## 9829                                                                                                                                    A bike ran into her on her way to teach her afternoon honors class and she was taken to the local hospital to be checked out. ()
## 9830                                                                                                                                                                                         A bike was propped against the wall, EE was dust mopping and it fell on leg
## 9831                                                                                             A bird flew in the side doof of office; went to open door to let it out stepped on the wet rug that was in front of the door and rug slide and lost balance and fell ()
## 9832                                                                                                                                                                                                                                A bite on the left forearm(? Insect)
## 9833                                                                                                                                                                        A blind client dropped to the floor and pulled EE'arm down w/ her causing neck and arm pain.
## 9834                                                                                                                                                                                                                           A board 2x8x16' fell onto employee's foot
## 9835                                                                                                                                                                                                                                 A book fell on finger got infected.
## 9836                                                                                                                                                                  A book was holding window open-EE went to close window and it fell down on left hand little finger
## 9837                                                                                                                                                               A book was thrown and hit her chest below her breast and hit her index and middle finger on left hand
## 9838                                                                                                                                                                A bottle of cleaning solution fell off the shelf and cap came off and solution splashed into rt eye.
## 9839                                                                                                                                                                               A bottle of cleaning solution fell off the shelf and solution splashed into EE rt eye
## 9840                                                                                                                                                                                                                    A box fell on me and hit me in the head and back
## 9841                                                                                         A box of playslips on the counter started to fall and I grabbed for them catching the box between my middle finger and ring finger causing the finger to be pushed down. ()
## 9842                                                                                                                                                   A box was falling off pallet and EE reached to stop it from falling and jammed her finger. Right hand ring finger
## 9843                                                                                                                                                                                                                            A brush fell and hit EE in her right eye
## 9844                                                                                                                                                                                                                             A bucket fell on EE's left pinky finger
## 9845                                                                                                                                 A buring stinging sensation occured inhis rt forearm near the elbow while using the chain saw and dragging tree limbs from the tree
## 9846                                                                                                                              A cable from computer got caught on another line which caused computer to roll off moving cart, tried to catch computer, fell on head.
## 9847                                                                                                                                                                                              A can of aerosal fell off the paper towel rack andhit EE on left foot.
## 9848                                                                                                                                                                     A car hit the golf cart I was driving on the passenger side. (no medical attention required) ()
## 9849                                                                              A car pulled across the walkway at the red light. As the employee started to cross the street in front of the car, it moved and struck the side of her left leg right at knee level ()
## 9850                                                                                                                                                                                                               A car pulled out from parking lot and hit her head on
## 9851                                                                                                                                        A car pulled out in front of EE unavoidably, he hit the car. The other driver was charged. EE has no known injury just sore.
## 9852                                                                                                                                                                                  A car went thru a stop sign & struck the lt side of vehicle neck/shoulder pain. ..
## 9853                                                                                                                                                                                                   A cargo strap was being hung and pulled loose. Cutbeside left eye
## 9854                                                                                                                      A cart loaded w/paper car caught, when cart passedbetween doors - when doors were pulled away cart began to move. Pulled muscle in top lt leg.
## 9855                                                                                                                                                              A case of paper fell from the floor of truck, scraping down front of EE rt leg, landing on top of foot
## 9856                                                                                                                                                                                                                                 A cat bit EE on the upper right arm
## 9857                                                                                                           A cat ran into the receiving area and sgt allen attemped to remove him. The cat scratched her right wrist, right index finger and right middle finger. ()
## 9858                                                                                                                                                                                    A cat scratched her on the rt arm when she tried to place it outside the window.
## 9859                                                                                                                                                A cement ash tray was in the walkpath at hauser hall entrance, while exiting the building EE fell over the ase tray.
## 9860                                                                                                                                                                                           A chair broke and EE fell to the ground suffering a contusion on rt hand.
## 9861                                                                                                                                                                                                        A chair fell over and EE tried to catch it. Soreness in back
## 9862                                                                                                                                                                                          A chemical that EE was using splashed onto his right/left arm.... Reaction
## 9863                                                                                                                                                                                              A child became angry and combative and hit EE's mouth with thier head.
## 9864                                                                                                                                                              A child was running & pushed EE in back causing ees head to whip backwards injuring neck and arm pain.
## 9865                                                                                                                                                                                                               A chip from one of the machines cut EE on the finger.
## 9866                                                                                                                                                           A client accidentally bumped the staff's toe with his sneaker, causing her left toe to become injured. ()
## 9867                                                                                                                                                   A client accidentally hit EE in the eye. EE seen at eastern eye associates, May return back to work on 8/7/09. ()
## 9868                                                                                                                                                                                 A client accidentally stepped on back of her left heel causing sprain to left foot.
## 9869                                                                                                                                                                                    A client attacked the EE, EE seen by urgent care and did not return back to work
## 9870                                                                                                                                                                 A client attacked the staff, injuring his thumb. EE currently out of work pending appt on 12/22/09.
## 9871                                                                                                                           A client became upset w/his peer became aggressive and EE started to intervene and client head butted EE in the mouth causin loose teeth.
## 9872                                                                                                                                                                                   A client grabbed the employee's thumb and twisted it in the opposite direction ()
## 9873                                                                                                                                                                                                 A client hit EE forcefully with hand under EE's rgt. Shoulder blade
## 9874                                                                                                                                      A client kicked EE in the stomach and struck another staff member in the neck after the client stood up from using the toilet.
## 9875                                                                                                           A client picked up a chair and threw it at EE, EE went to the er due to a r upper arm and l thumb injury. EE diagnosed with a contusion to her l thumb ()
## 9876                                                                                                                                           A client pulled on the staffs arms and pushed her against a wall. EE seen in er on 6/25/09, taken out of work for 7 days.
## 9877                                                                                                                                   A client was aggitated, throwing obects-picked up awicker basket filled with soap and hit EE on rightshoulder causing a contusion
## 9878                                                                                                                  A client was lifting & pulling at sterile bandageson her wrist. EE noticed a string of bandages in client's teeth when client bit EE's right hand.
## 9879                                                                                                                                                                          A client was running and justin was running behind him and fell, got up and fell again. ()
## 9880                                                                                                                                     A client was swaying back and forward lost their balance and EE caught client and took client back to their room. Injured back.
## 9881                                                                                                                     A client went into the bathroom, the EE went to check on him, client grabbed her right hand, squeezing hard, EE pulled hand away, hit doorframe
## 9882                                                                                                                                         A clients foot got caught in her support belt and while she tried to get it out she moved akwardly causing her hip to hurt.
## 9883                                                                                                                                                                   A clients sling strap was hanging on the floor. Eetripped & fell on the floor. EE injured l knee.
## 9884                                                                                                                                              A clip board was sticking out of a book case and cut through the employee's pants and into his leg as he walked by. ()
## 9885                                                                                                               A clotheshouse buggy being pushed by an inmate hitee's rt foot below ankle she was in the sergeant's office in the process of closing the file drawer
## 9886                                                                                                                                                             A co-worked accidentally placed the leg of a chair on the top of Ms. French's foot and then sat down ()
## 9887                                                                                                                                                                             A co-worker dropped some grits on the floor, wendystepped in the grits, slipped & fell.
## 9888                                                                                   A co-worker dropped the rabies control slide on the slide board I was holding as we were exchanging slides to read and I thought I felt a speck of something hit my upper lip. ()
## 9889                                                                                                                                                  A co-worker fell unconscious & EE administered cpr(mouth-to-mouth) in work area. Possible exposure to body fluids.
## 9890                                                                                                                                                                                            A co-worker grabbed EE's left hand and twisted it to get supply room key
## 9891                                                                                                             A co-worker had tripped and sat on the floor, emplyee stopped to asst co-worker off the floor, co-worker pulled on employee causing her to strain back,
## 9892                                                                                                                                                               A code 4 was called in kitchen and she fell onto the floor due to it being wet. Injured left knee. ()
## 9893                                                                                                                                                          A code was called in the parking lot and I ran to assist when it was over my knee was hurting and swelling
## 9894                                                                                                               A computer cart was being pulled down the ramp in front of blair hall, when cart took a turn & hit EE on rt lower leg causing deep gash--stitches req
## 9895                                                                                                                                                                                       A container of frozen food fell out of freezer and struck EE on rt little toe
## 9896                                                                                                                                                                                   A cook let a large pan of hot gravy slip off cart, hit floor and spattered on EE.
## 9897                                                                                                                                             A corner flap of cardboard box grazed EE rt eye leaving a red area happened while EE was putting away stock in freezer.
## 9898                                                                                                                                                                                                                                   A cow batted him in the chest. ..
## 9899                                                                                                                                                                                                                                    A cow kicked EE in the right arm
## 9900                                                                                                                                                                                            A crack in the sidewalk caused employee to lose her balance and fall. ()
## 9901                                                                                                                              A crew of four or five employees were working beside one another weedeating some debris around substructure. Debris got into EE's eye.
## 9902                                                                                                                                                                                                                    A cup of hot coffee spilled on EE's lap and legs
## 9903                                                                                                                                                                                           A cup of oatmeal that the EE was carrying spilled on her wrist...... Left
## 9904                                                                                                                                            A cup of urine was thrown out of inmate trap door hitting my right hand, right forearm and splashed on my abdomen areas.
## 9905                                                                                                                                                  A customer was handing EE a can of gasoline when the can slipped causing some of the gasoline to splash in EE face
## 9906                                                                                                                                                                          A desk was pulled out from wall blocking access. EE pushed desk back against wall. Felt ()
## 9907                                                                                                                                                                                                             A disease caused EE to have a mitral valve replacement.
## 9908                                                                                                                                                                                                      A dishrack pinned the EE's wrist against a wall... Right wrist
## 9909                                                                                                                                                                                                A dog bit EE on left ankle while the EE was conducting curfew checks
## 9910                                                                                                                         A dog bit her left ring finger. Rx urgent care re ferred her to raleigh hand center for additional treatment since it was such a deep bite.
## 9911                                                                                                                                                                                                            A dog came up and bit my rt hand while deliving firewood
## 9912     A donation of books had been made to the department. Employee was moving books from car to a cart to take them into the office. Employee tripped over a curb-marker in parking lot. Skinned right knee, smacked right cheekbone on asphalt, bruised/swelling ()
## 9913                                                                                                                                                                                                                    A door hit EE's left shoulder as she was exiting
## 9914                                                                                                                                            A door opened and hit employee's right foot-great toe has sharp pains when walking-has had a previousurgery to that area
## 9915                                                                                                                A door rammer was being used by trooper to gain entry into a residence. When the door opened EE struck back of hand on the side door jam-(see notes)
## 9916                                                                                                                                                                                                                                              A dropped on his foot.
## 9917                                                                                                                              A dumpster lid fell on EE's head. **clmt has ongoing trmt for chronic condition- Dr Relating to inj- statutes has expired for ttd bene
## 9918                                                                                                                                                                                A fall on wet, slippery surface on ramp at back ofplace of work, injured right knee.
## 9919                                                                                                                                                                  A fellow counselor was moving a vehicle when she accidently ran over jade's toes and both feet. ()
## 9920                                                                                                                            A female client was being restrained & ees hand became trapped between wall & clients head. Clientbit the EE's hand. Human bite rt hand.
## 9921                                                                                                                 A fight broke out between two students and EE was breaing up the fight when the students started to fall to the ground and over a chair. Back/neck.
## 9922                                                                                                                                    A fight broke out in area supervised. Table was pushed by an inmate table hit in leg. Caused a bruise. Rt leg, upper rear of leg
## 9923                                                                                                                      A fight occurred in the classroom between 2 students. Mr. Willingham attempted to stop the fight and either fell or was pushed over a desk. ()
## 9924                                                                                                                                  A fire broke out adjacent to where EE was supv a work crew. While assisting fire department EE overcome by smoke. No injury noted.
## 9925                                                                                                                                     A fire broke out on a lot adjacent to where EE wassupervising work crew. While assisting the fire dept EE was overcome by smoke
## 9926                                                                                                                         A fire occured after a solven in his work area that became disconnected. Allowing the solvent to splash & cause fire. Burn to face & hands.
## 9927                                                                                                                                                                                                                        A folding chair fell on top of EE's lt foot.
## 9928                                                                                                                                                                                                                 A folding table landed on top of EE's left foot. ()
## 9929                                                                                                                                                                    A foreign object blew into his left eyey while supervising outside recreation segregated inmates
## 9930                                                                                                                                    A forklift struck a bundle of train rails causing one rail to fall onto Mr. Butler's foot which pinned his foot and caused pain.
## 9931                                                                                                                                    A gas canister was placed in front of housekeeping closet. While moving the canister ( pulling) she hurt her back lower back. ()
## 9932                                                                                                                                                                                                                                 A gate fell and struck EE shoulder.
## 9933                                                                                                                                                                                                              A glass bottle shattered and slit EE's rt index finger
## 9934                                                                                                                                                                  A glassware dropped when she was washing it and it broke in the sink and cut her finger on rt hand
## 9935                                                                                                                                                            A grain of sand blew into EE's right eye while riding an atv on the beach. EE suffered corneal abrasion.
## 9936               A group of center mgr took a hiking trip as part of team building event. It was towards the end of the day when I tripped over a stump and twisted my knee. I got up and continued walking when I fell 2 more times because of weakness in my leg. ()
## 9937                                                                                                                                                                                                         A horse bit EE on face while working on its foot. Face/nose
## 9938                                                                                                                                                                                                                          A hot solution sprayed into EE's right eye
## 9939                                                                                                                         A hot/tired horse kicked her, striking the inside of her lt leg & knee. She returned to the camp on 7/24/08, was rechecked on 8/1/08 by MD.
## 9940                                                                                                                                                                       A inmate started fighting with another officer and I tried to help and he started hitting me.
## 9941                          A juvenile refused to go to his room for a time out. Student was approached with soft hands approach and the juvenile lost control and started fighting staff. The employee was injured when his elbow hit the inside of the room door. ()
## 9942                                                                                                                                                                        A juvenile struck EE during an escape which caused her to strike the door frame of his room.
## 9943                                                                                                              A juvenile was out of control while to trying to get juvenile into room, with the help of local law enforcement, juvenile was refusing to go into room
## 9944              A lady dropped her key and it went under a drink machine in the markets shoppes. Ronnie moved he drink amchine and got the key and moved it back. When he did he felt a strain but didnt think much of it. But, know his shoulder is bothering him. ()
## 9945                                                                                                                                              A large amount of water hit EE in the back starteling her, EE jumped around to her right and pulled her left shoulder.
## 9946                                                                                                                       A large body was on a stretcher was being turned to examine for injuries, the body slipped off and the stretcher struck employee of the foot.
## 9947                                                                                                                                                                                      A large box fell from shelf twisted back in the process of trying to catch box
## 9948                                                                                                                                                                                                                                          A large cat clawed his leg
## 9949                                                                                                                                       A large file cabinet fell over on another employee. I was first to respond and lifted the file cabinet, re-injuring my rib ()
## 9950                                                                                                                                                                                 A large heavy partition from bookcases fell on EE knocking her down onto the floor.
## 9951                                                                                                                                                                                            A large tree fell on top of EE's veh causing severe head and neck trama.
## 9952                                                                                                                                                                                                        A large truck headed towards him and forced him off the road
## 9953                                                                                                                                                           A lesion appeared on EE right lower cheek down to neck area, due to outbreak of MRSA EE was sent to hosp.
## 9954                                                                                                                 A live shark was transported to a holding tank the weight of the animal shiffed causing the stretcher to become unbalanced and injuring lt shoulder
## 9955                                                                                                                                                                                                                             A locust jabbed EE's middle left finger
## 9956                                                                                                                                                                                              A loose chair back caused EE to lose her balance causing a back injury
## 9957                                                                                                                                       A major part of employee's job is research and writing. This involves much repetitive movement involving typing on a computer
## 9958                                                                                                                   A male quest at the hotel where I was staying brushed my shoulder asked me if I wanted to make something out of it then he punched me in the face
## 9959                                                   A male subject approached this officer as I was exiting residence and turned attention to such. I stepped off fron stoop and foot fell into a ditch off concrete walkway and injured ankle and fell to ground. ()
## 9960                                                                                                                                                                      A member of the public pulled open bottom drawer as EE was walking by and hit EE on left foot.
## 9961                                                                                                                                                                                               A metal door closed on officer campbell's hand cutting his finger. ()
## 9962                                                                                                                                                                                                             A minivan ran a stop sign and EE collided with minivan.
## 9963                                                                                                                                                                                                 A moth flew into EE's right ear while she was walking into building
## 9964                                                                                                                                                                                                    A non employee entered lobby stating they are positive for TB ()
## 9965                                                                                                                                                                                              A none employee walked into lobby and stated there were TB positive ()
## 9966                                                                                                                    A packaging cord was in front of the library door & employee's feet became entangled in the cord causing fall, striking left hip against cement.
## 9967                                                                                                                                                                                               A painting that EE was handling fell and crushed his left ring finger
## 9968                                                                                                                                                                                                                 A pair of scissors fell and hit EE in the right eye
## 9969                                                                                                                                           A part of door was loose-EE tried to put it back so door could be closed-finger got slammed in doorwhile trying to fix it
## 9970                                                                                                                A passenger vehicle failed to yeild the right-of- way and trungin into the path of trooper battle's patrol vehicle, resulting in a traffic accident.
## 9971                                                             A patien was on top of the tv in the dayroom, when EE redirected to come down patient attempted to crawl in the ceiling & was helped down by staff. EE's right forearm was scratched in the process. ()
## 9972                                                                                     A patiend slammed door to his room while employee was standing in the doorway hitting employee in both elbows. Patient also flipped a bed and hit employee in the right leg. ()
## 9973                                                                                                                                 A patient approached EE swinging and hit him on the left side of face. When EE was defending himself, he injured his neck and back.
## 9974                                                                                                                                                      A patient became combative when they were asked togo to eto for 5 min and the patient pounched EE in the face.
## 9975                                                                                                                                                   A patient became enraged, EE tried to help calm ptand got hurt. Left pinky finger jammed and right arm scratched.
## 9976                                                                                                                                                   A patient became violent. She jerked her leg lose while staff was restraining her and kicked EE beside right eye.
## 9977                                                                                                                                                                                     A patient bit nurse on the rt upper arm after running into the nurse's station.
## 9978                                                                                                                           A patient broke glass.... EE was cut on left middlefinger trying to take the glass from patient... Pulled muscle in chest during struggle
## 9979                                                                                                                                                                                                        A patient bumped into EE causing her to twist her lower back
## 9980                                                                                                                                   A patient continuosly lowered self to floor tryingto be self injurious so staff repeatedly picked pt. Up pulling EE's lower back.
## 9981                                                                                                                                                                                            A patient grabbed EE by the neck pushing him over a table in the dayroom
## 9982                                                                                                                                                                           A patient grabbed EE's arm and yanked her forward... Felt pain in right shoulder and back
## 9983                                                                                                                                                             A patient jumped on EE's back while she was assisting in placing another patient in a therapeutic hold.
## 9984                                                                                                                                           A patient needing help to be changed a co-worker and I went to help him we try to lift him but he was too heavy hurt back
## 9985                                                                                                                                                                                              A patient passed EE basketball, EE jumped up and felt left knee pop ()
## 9986                                                                                                                                                         A patient pushed EE on left shoulder while trying to get out of a door... Causing pain in his left shoulder
## 9987                                                                                                                                                                              A patient slammed bedroom door and the doorknob hit employee in the right rib cage. ()
## 9988                                                                                                                                                                                                     A patient stumbled backwards causing EE to fall and injure knee
## 9989                                                                                                                                                                                            A patient swung and hit EE's right hand and his hand hit an iron bed. ..
## 9990                                                                                                                                                                                                           A patient threw a trash can and hit EE on the right ankle
## 9991                                                                                                                                       A patient tried to hit me in the face, I blocked the punch w/ my r. Forearm & as I did she grabbed my r. Wrist and twisted it
## 9992                                                                                                                                                                    A patient tried to kick EE between the legs and eeblocked w/lt hand and injured lt index finger.
## 9993                                                                                                                                                                        A patient walked up to employee and slapped her on both upper arms leaving both arms red. ()
## 9994                                                                                                                                                                             A patient was unsteady and went forward- EE caughtpatient and they both went backwards.
## 9995                                                                                                                                                                 A peice of angle iron was accidentally jerked fromthe back of the trucka nd it landed on EE's foot.
## 9996                                                                                                                                                                                                   A piece of flying glass struck face above rt eye after explosion.
## 9997                                                                                                                                                                                                                           A piece of glass got stuck in left thumb.
## 9998                                                                                                                                                                                                               A piece of jagged metal cut fingers on his right hand
## 9999                                                                                                                                                                                                         A piece of meatl slipped out of EE's hand and cut his hand.
## 10000                                                                                                             A piece of metal debris bounce off another piece of metal and went behind facesheild and hit the eye while using a 4 in grinder to clean up a weld. ()
## 10001                                                                                                                                                                       A piece of metal from a door fell into his eye.... And scratched the underside of his eyelid
## 10002                                                                                                                                                                              A piece of office equipment was pulled off a file cabinet and fell on EE's left foot.
## 10003                                                                                                                                                                       A piece of rust that was dislodged from the grill that he was moving, flew into his left eye
## 10004                                                                                                                                                                                 A piece of staging cllapsed and fell on top of EE left foot object weighed 250lbs.
## 10005                                                                                                                                                                                                                     A piece of stalk stuck in my left index finger
## 10006                                                                                                                                                                                                                     A piece of wood chip flew in employee left eye
## 10007                                                                                                                                             A piece of wood hit incadescent light fixture and casing cracked and broke off falling and cut EE on upper left cheek.
## 10008                                                                                                                                                           A piece of wood plank protruding off shelf in hallway, while walking by her hand struck it and cut hand.
## 10009                                                                                                                                                                            A pipe broke sending alot of force against EE's right shoulder.... Backside rt shoulder
## 10010                                                                                                                                                                                                                  A plate of steel fell on fingers while loading it
## 10011                                                                                                                      A plywood sheet fell on top of goat, trapping her all other goats were standing on top of plywood EE strained wrist lifting board off of goat
## 10012                                                                                                                                                                                                        A pole separated from its base and fell on EE's right foot.
## 10013                                                                                                                                                                                        A portable air conditioner unit tipped over and struck EE on her right heel
## 10014                                                                                                                                                                                          A portion of tree kicked up and and into cab pinnig EE leg to the machine
## 10015                                                                                                                                                                   A post operative cat bite EE on rt hand while attempting to place in a cat carrier for transport
## 10016                                                   A pt charged and attacked this EE. EE placed pt on transport board, while transporting pt to pr EE was at foot of transport board pt's weight shifted while EE was carrying pt causing back to begin hurting. ()
## 10017                                                                                                                         A pt got up fm their chair, gait was unsteady, began to fall, EE tried to cushion fall, pt grabbed EE pulling EE forward straining back ()
## 10018                                                                                                                                                                                                          A pt grabbed another pt's radio and hit EE in the head ()
## 10019                                                                                                                          A pt had left the trunk of their car open. It was about to rain so EE went outside to close trunk & thumb was caught. Smashed left thumb.
## 10020                                                                                                                       A pt had their feet on tv cabinet to keep staff fm opening the cabinet, staff got tv cabinet door open, then pt slammed door on to EE's head
## 10021                                                                                                                             A pt had wrapped a pillowcase around their neck, EE was trying to get pillowcase loose when she felt a pull/pop in upper chest area ()
## 10022                                                                                                                                         A pt next to EE began to fall, EE grabbed chair and pt, assisting pt to floor, fell a pull in right chest area and back ()
## 10023                                                                                                                                                                                A pt spilled juice in floor, EE did not see it, fell in floor landing on right knee
## 10024                                                                                                                                                                                               A pt was choking, EE & co-worker assisted pt to standing position ()
## 10025                                                                                                                                      A pt was trying to attack another worker, EE got between pt & c0-worker, pt scratched EE on face, & also fell. Face/hip/knee.
## 10026                                                                                                                                                    A puddle of water was on the floor in the restroom stall. Employee slipped fell and twisted her right ankle. ()
## 10027                                       A rat twisted after receiving a microinjection with catheter for microinkection and recording twining around its body, so EE wanted to calm the rats and took catheter from its body by hand, then the rat bite EE finger ()
## 10028                                                                                                                                                                      A resident became aggressive and scratched EE on inner l wrist and knuckles of r hand and arm
## 10029                                                                                                                                                                A resident became upset and aggressive, scratchingee's lower right arm/hand and left wrist/arm/hand
## 10030                                                                                                                                                                                    A resident became upset and grabbed her right arm causing unspecified injury ()
## 10031                                                                                                                                                        A resident fell out of bed, EE and another dt madea lift from the floor to bed. EE felt a pull in her back.
## 10032                                                                                                                                                                                                                 A resident grabbed and pulled EE's left hand/wrist
## 10033                                                                                                  A resident had a wet floor sign and ws going to use it as a weapon when EE tried to take the sign, the resident scratched EE on the face, neck and chest area. ()
## 10034                                                                                                                                                                                                                               A resident hit EE's hand with helmet
## 10035                                                                                                                                                                 A resident in ot living areashave conjuntivitis, EE performimg her duties was in contact with htem
## 10036                                                                                                               A resident refused to get up and go back to cottage so staff had to restrain student, during restarin staff fell on back causing pain in lower back.
## 10037                                                                                                                                A resident stood up from work table and threw a chair and while trying to restrain resident in picresident turned and charged @ EE.
## 10038                                                                                                                                      A resident was being agressive and hitting his head. He thre himself onto ground. EE tried ot stop this and twisted her back.
## 10039                                                                                                                                     A resident was falling to ground, EE attempted to break fall and fell to ground with resident. Injured right arm and shoulder.
## 10040                                                                                                                                                                                           A resident was striking out and caught EE's thumb and bending backwards.
## 10041                                                                      A riot broke out in d gym. Mr White responded and assisted in breaking up several fights. Mr. White reports that afterwards he had to take a pain pill due to pain in back, neck, and arm. ()
## 10042                                                                                                                                                                                                                                     A rock hit EE in the right eye
## 10043                                                                                                                                                                     A rubber mat was rolled up on the sidewalk in front of the door. Didn't see it and tripped. ()
## 10044                                                                                                                                                                                                                   A rust from underneath case fell in employee eye
## 10045                                                                                                                                                                                                      A seal broke and herbicide chemical got onto EE's lower back.
## 10046                                                                                                                                                                  A section of bearing press was lodged and as it became dislodge it fell striking the EE's rt hand
## 10047                                                                                                                                                                                                                         A server slipped while being installed. ()
## 10048                                                                                                                                                  A severe tunderstorm producing a lot of rain water onto wind sheild causing him to loss control and side off road
## 10049                                                                                                                                                                                                       A sheet pan was accidently dropped on her foot by another EE
## 10050                                                                                                                                                                                                                               A shelf fell and hit EE on the back.
## 10051                                                                                                                                                                                                                      A shelf fell on EE's left great toe... Broken
## 10052                                                                                                                                                                                                                              A shelf fell striking EE in the mouth
## 10053                                                                                                              A shelf holding various stores items came loose fron the wall after a microscope which appareantly had been supporting it was removed. An empty... ..
## 10054                                                                                                                                                                                                                                   A shell from fire arm hit leg ()
## 10055                                                                                                                                                   A small flask with a minute residue of aqueous hydrogen peroxide exploded while worker was removing the solvent.
## 10056                                                                                                                                                 A small insect looked like a sweatbee flew in the inside corner of right eye under lower eye lid and stung eye. ()
## 10057                                                                                                                                                                                                                  A small piece of metal dropped into EE's left eye
## 10058                                                                                                                                                                                                                              A small table fell on the employee ()
## 10059                                                                                                                                        A small vile containing highly concentrated sulfuric and nitric acid slipped from EE's hands while she was helping students
## 10060                                                                                                               A spastic nerve in EE's back caused her to loose balance and fall on the pavement; EE was in severe pain and was unable to get up; also scraped hand
## 10061                                                                                                                                                                                             A spider bit EE on his right index finger while he was searching a car
## 10062                                                                                                                                                                                                                                   A spider bit him on his left arm
## 10063                                                                                                                                                     A spider dropped down from the ceiling on to the left side of my face. It injured me when I slapped him off ()
## 10064                                                                                                                                                  A spill of bacterial cultures occured producing a potential aerosol, inhalation of the bacteria can cause disease
## 10065                                                                                                                                                                                                        A splash from the chlamydia control bottle in eyesand face.
## 10066                                                                                                                                                                                                 A spotlight came out of overhead locker and struc k EE in the face
## 10067                                                                                                                                                                                                            A staff member attacked me with a patient chart cart ()
## 10068                                                                                                                                     A staff picked up a chair to move it and she didn't see Ms. Dail coming so the chair struck Ms. Dail on the left front shin ()
## 10069                                                                                                                                                      A storm came up and the wind became so strong, it knocked the window out of tower which struck EE inforehead.
## 10070                                                                                                                                                                                             A stressful situation between employee and crew leader. Fingers, legs.
## 10071                                                                                                                                                    A stretcher with a patient on it fell on EE's leg & foot. Fractures of rt ankle & foot & abrasions to lt ankle.
## 10072                                                                                                                        A student and EE were screwing the top of picnic table with a hand drill, the drill slipped from the screw and hit left pointing finger. ()
## 10073                                                                                                    A student became agressive when Ms. Harvey-fonvil walked past her. The student ran up behind Ms. Fonvil, jumped on her back and pulled some of her hair out. ()
## 10074                                                                                                                                                                            A student became idspuruptive and staff had to restrain the student to protect himself.
## 10075                                                                                                                                                                                                                        A student became upset & hit EE on the neck
## 10076                                                                                                                                                                  A student bit him on the rt hand/forearm due to his behavior problem. Tried to calm student down.
## 10077                                                                                                A student broke a table and then used the base of the table to break the window in the staff office causing Ms. Sutton to get cut on the right side of her face. ()
## 10078                                                                                                                A student esculated to violence throwing a desk. Hitting teacher on the ankle and lower leg causingbruising and sprained ankle while desk landed EE
## 10079                                                                                                                                                              A student jumped EE from behind. While struggling with the student his back and shoulder were twisted
## 10080                                          A student kicked open his room door and came out of his room with weapons. The employee and another staff member put the student back in his room. The student threw a brick and hit the employee in the right hand/thumb
## 10081                                                                                                                                                                       A student on wheelchair when he started fall down and the wheelchair hit her on her rt foot.
## 10082                                                                                                                           A student placed palm of his hand on forehead and pushed head back, quickly. Student said he was jesus and she was healed. Injured neck.
## 10083                                                                                                                                  A student put a hydraulic ram behind the EE. EE did not know the ram was there and tripped over itcaused chipped bone in rt elbow
## 10084                                                                                                                                                                               A student rammed into EE, while walking down hall, knocking EE down flat on buttocks
## 10085                                                                                                                                                                        A student ran up and grabbed EE about her shoulders to hug her (almost like swinging on EE)
## 10086                                                                                                                                             A student rushed up to staff's desk as to attack. The table was shoved into employee's stomach while7 months pregnant.
## 10087                                                                                                                                                                                                                   A student slammed a metal door on EE's left hand
## 10088                                                                                                              A student swung at Mr. Hinzman and punched him in the head. When Mr. Hinzman tried to restrain the student, he twisted and sprained his left knee. ()
## 10089                                                                                                                A student trie dto exit the door; employee was goign to door at the same time and the door struckfront part of leg. Holding student aggrivated back
## 10090                                                                                                                                                            A student under EE's supervision had chicken pox aand before it was knwn the EE had caught chicken pox.
## 10091                                                                                                                         A student wanted to bring a doll to class and I was trying to coach her into putting it back in her locker -she closed the door on my hand
## 10092                         A student was angry and had become unsafe and jennifer with the assistant of two employees were escorting student with a two person limited control walk to an exclusionary time out and student bit jennifer twice on the right wrist. ()
## 10093                                                                                                                                                                                   A student was attacking the employee and grabbed her in the chest with force. ()
## 10094                                                                                                                            A student was kickuing a stack of chairs and his shoe came off and employee turned to avoid being hiwith the shoe and twisted her back.
## 10095                                                                                                                            A student was leaving dining hall and nad tripped and EE tried to keep student from getting hurt end up falling and student fell on EE.
## 10096                                                                                                                 A student was moving a chair from one side of the table across the table and dropped it on grace's shoulder/back. She was sitting at the table. ()
## 10097                                                                                                              A student was out of contrl. A group of employees trying to put a hold on him. During the hold his arm went across his face nad he bit hm on the arm.
## 10098                                                                                                                                       A student was out-of-control & assaulted staff. Staff injured lt big toe in the process of puttingstudent down on the floor.
## 10099                                                                              A student was trying to get to another student to fight. In running to block her, the employee's foot cracked or stepped on it wrong. Employee did not trip or bump into anything. ()
## 10100                                                                                                                                                                                                                      A student was upset and hit EE on the lt arm.
## 10101                                                                                                                 A student who was late for class was not looking at where he was going and ran directly into EE & was tremendous impact-EE had multiple contusions
## 10102                                                                                                                                                                                                             A student's head banged into EE's chin during practice
## 10103                                                                                                                                                                                                                 A studnet became physically assaultive towards EE.
## 10104                                                                                                                                                                                     A surgical table hit a wall, but the EE's finger was between the table & wall.
## 10105                                                                                                                                                                                              A suspect attempted to run over EE with a car, was struck in the legs
## 10106                                                                                                                                    A suspect for robberies ran from officers, officerfell down a hill before apprehending suspect injuring both legs and left hand
## 10107                                                                                                                                                                   A suspect struck officer stott's right arm between his wrist and elbow with a motorcycle helmet.
## 10108                                                                                                                            A swimmer had gotten to close to a rock groin located next to the protected swimming area and got caught on the rocks cut foot on rocks
## 10109                                                                                                                                           A table top fell on EE foot. Placing the table topon the dolly & the top slipped off the dolly & fell on top of EE foot.
## 10110                                                                                                                  A tank had rolled on a inmates foot and EE grabbed hold of the tank to prevent any injury to the inmate and in the process he strained his rt arm
## 10111                                                                                                                                         A technician was working on a sorter & EE was going around the technician and tripped over a tubof mail. Fell on left knee
## 10112                                                                                                                                                                                               A tore mat in work area caused EE to fall. Strain low back and neck.
## 10113                                                                                                                                                                                                     A trailer fell on EE's foot and broke his big toe... Left foot
## 10114                                                                                                                A trainee went into respiratory arrest and EE began mouth to mouth, initally with out a barrier. The trainee vomited and some went into EE's mouth.
## 10115                                                                                                                                                                                                                    A trash can fell on EE's great toe... Left foot
## 10116                                                                                                                                                      A tree branch, debris hit Dr. Cleary in the right eye while he was waling through high marsh on cms property.
## 10117                                                                                                                                                                                                              A tree fell on EE head causing a compressed vertebrae
## 10118    A tree fell on I-85 (brought down some poison vines with it). Employee had to walk trhough the vines to get to the tree; vines was also on the tree that employee had to cut. Employee developed a rash from the poison vines on face, both arms, l hand, r leg
## 10119                                                                                                                                                                                      A truck pulled out in front of employee causing her to hit the pick up truck.
## 10120                                                                                                                                                 A truck struck the dot truck on the driver's side knocking the driver into EE and pinning EE betweenpassenger door
## 10121                                                                                                                                                                                        A tyson employee pushed a cart of chicken over our ncda employee's foot. ()
## 10122                                                                                                        A van merged into employees lane and struck side of car on passenger side beside the fender. Employees vehicle was knocked into the inner oncoming lane. ()
## 10123                                                                                                                                                                                                 A vehicle backed into the van in which EE was riding-low back pain
## 10124                                                                                                                A vehicle coming down interstate 40 crossed over 3lanes and lost control and ran into the van besid e where I was standing. I was thrown apprx 5ft.
## 10125                                                                                                                  A vehicle had gont out of control, crossed the center line and was stationary in both lanes of road. EE rounded curve and couldn'tavoid collision
## 10126                                                                                                                                                                   A vehicle lost control and collided with EE's vehicle forcing EE vehicle into another patrol car
## 10127                                                                                                                                    A vehicle ran a stop sign and collided with EE's vehicle causing injury to lower back, both knees, right hand, cut to left hand
## 10128                                                                                                                                                                                                               A vehicle ran into back of truck occupied. Back pain
## 10129                                                                                           A vehicle stopped in front of him & EE slowed down to stop as well. As he did so, the vehicle following him struck him from the rear, causing whiplash. Cervical strain.
## 10130                                                                                                                                                                                                                                    A wasp bit employee on back. ()
## 10131                                                                                                                                                            A wide load truck passing EE's vehicle hit the employee's vehicle with a red flag, smashing his window.
## 10132                                                                                                                                                                                                                                             A wild bob cat bit EE.
## 10133                                                                                                                                                                                                                         A wood splinter fell from head into eye ()
## 10134                                                                                                                                                                                A wooden splinter wedged under fingernail while moving a wooden pallet... Left hand
## 10135                                                                                                                                                    A wooden tinki was being unloaded. Tinki collapsedand injured EE. Cuts and scratches to left jaw, cheek and lip
## 10136                                                                                                                                         A worker moving a filing cabinet caused a larger filing cabinet to fall forward striking EE in the head, shoulders, back..
## 10137                                                                                                                                                                                                                                         A wrench fell on EE's head
## 10138                                                                                                                 A yellow jacket flew on chest then went on his arm. Employee slapped and killed the yellow jacket on his arm and it stung him on his right arm. ()
## 10139                                                                                                                                                                                                                                      A/c cover fell on EE's rt arm
## 10140                                                                                                                                                               A/c unit was off-box fans used for cooling-dust blown around room no ventilation-respitory infection
## 10141                                            Aaron was driving a kobot on dan allen drive turning into hodges parking lot. Aaron did not see the blue car sitting at stop sign hitting the car made aaron's knee hit the dash board and he bruised his left knee. ()
## 10142                                                Aaron was driving a truck when debris flew in the window and got in his left eye. Didn't realize it was a problem until he woke up this morning and his eye hurt. Medac said there is a foreign body in his eye. ()
## 10143                                                                                                                                                                                                                                            Aas/6 - pt's bedroom ()
## 10144                                                                                                                                               About 3-4 months ago, EE began to have pain and discomfort in both thumbs and wrists. Spends 5-6 hours a day typing.
## 10145                                                                                                                                                                          About 4:50 p. M. On 2/3/08, while running the watchman tour, employee fell on the carpet.
## 10146                                                                                                              About a month ago after finishing crdt, right fingers started swelling and goin numb in right arm, with sharp pains in elbow. Don't know for sure how
## 10147                                                                                                                                                            About to sit in chair and it slipped out from under his right wrist and took blunt of the blow on floor
## 10148                                                                                                                                                             Above had to use the restroom. Upon leaving the restroom, area was dark & above tripped over a ladder.
## 10149                                                                                                                                                                                                                                      Abrasions to cornea of rt eye
## 10150                                                                                                                                                Abrasions to the face area - traveling to avoid a deer - another deer hit side passager side of employee's vehicle.
## 10151                                                                                                                                                         Absconder ran from so, he pursued across a field, tripped & fell on lt shoulder while running acrossfield.
## 10152                                                                                                                       Absconder's saliva landed on employee's face, transporting abscounder to jail, abscounder began coughing and mucus landed on righ arm jacket
## 10153                                                                                                                              Accessing biological samples, reached to pick up scalpel that was lying on its side and cut my r index finger while picking it up. ()
## 10154                                                                                                                                                                Accident date is undetermined - employee developed a chronic cough after working with old files. ()
## 10155                                                                                                                                                                                                                        Accident from staple stuck in middle finger
## 10156                                                                                                                                                          Accident occurred in state owned vehicle - EE driving from an inspectin was rear ended by another driver.
## 10157                                                                                                                                                                                Accident stuck right hand with needle she had usedto give tetanus shot in an inmate
## 10158                                                                                                                                                                                                                          Accident while using welding equipment ()
## 10159                                                                                                                                                                                  Accidental ax cut to left foot. Great toe was involved & bones in foot fractured.
## 10160                                                                                                                                                                          Accidental needle stick in right pinkie after collecting blood from a research animal. ()
## 10161                                                                                     Accidentally a reaction ignited itself and I was burned by a flash of flame. Part of her cheek that was not covered by safety glasses was burned and some of hair scorched. ()
## 10162                                                                                                                 Accidentally dropped the computer on my rt foot while trying to get it out from a shelf under the desk to open up the case to put the cd drives on
## 10163                                                                                                                                                                             Accidentally hit her lever on bottle of bleach water solution and sprayed in her eyes.
## 10164                                                                                                                                                                                                 Accidentally hit right hand on desk while inter- viewing a student
## 10165                                                                                                                                                                                                                              Accidentally missed the last 3 steps.
## 10166                                                                                                                                                                                             Accidentally sprayed w/mace while assisting other staff w/use of force
## 10167                                                                                                                                           Accidentally stepped on small rock that had been used to prop open a door. EE fell forward, hittingknee on a brick wall.
## 10168                                                                                                                                                                          Accidentially closed finger in door while completing security check of inmate bathroom ()
## 10169                                                                                                                                                                                   Accidentially spilled bleach in rt eye when a resident knocked a container over.
## 10170                                                                                                                                                                                              Accidentlly discharged waepon into the ground causing ears to ring ()
## 10171                                                                                                                                                                                             Accidently closed vandoor on lt thumb had to open door to remove thumb
## 10172                                                                                                                                                                                        Accidently hit in nose as she participated in diversity simulation progra,.
## 10173                                                                                                                                                                                                                               Accidently hit in nose by a student.
## 10174                                                                                                                                                                                                   Accidently lacerated right thumb on lock mechanism - scraped. ()
## 10175                                                                                                                                                                                                         Accidently pulled cart full of produce over my right foot.
## 10176                                                                                                                                                                                                              Accidently put hands in blood on chair in sgts office
## 10177                                                                                                                                                                                                                                 Accidently shut hand in bleachers.
## 10178                                                                                                                                                                                  Accidently stabbed left thumb while opening a cardboard box with an exacto knife.
## 10179                                                                                                                                                                        Accidently stuck himself in the left index finger after removing needle from the inmate. ()
## 10180                                                                                                                          Accompanied inmate to hospital in ambulance. Ems sprayed substance on I/m that flew into banks eyescaused swollen eye lids & face & pain.
## 10181                                                                                                                                    According to EE he stated in a conversation on 11/7/2003 to other EE's he hurt hit back lifting boxes at the duplicating plant.
## 10182                                                                                                                                                                                              According to EE, she was approaching the office and tripped over curb
## 10183                                                                                          According to employee's supervisor employee fell out of chair. Employee's supervisor stated that the chair broke in half due to screws being missing out of the chair. ()
## 10184                                                                                                                          According to employee, while driving on reade street, headed north, a car headed west ran a red light and hit the front driver's side. ()
## 10185                                                                                                                According to individual, "tripped on cable in classroom". Body part injured "left foot". Individualstated the cause was "unsecured cable connection
## 10186                                               According to julie medlin (wca), during a use of force on an inmate, the inmate charged into officer hale causing his left shoulder to slam into the door and his leg was caught between other staff and the inmate.
## 10187                                                                                                                      According to officer boykin he was in process of the 10:00am count and after checking the library proceeded to class and struck walking rail.
## 10188                                                                                                            According to staff, while on post upon opening up her can of soup that had been warm exploded causing it to splatter around her neck, skin, hands, face
## 10189    According to supervisor, employee assisted others with moving a rolling cabinet of equipment up a ramp into the back of a vehicle when the wheel of the cabinet caught on the lip of the vehicle floor. Employee wrenched his right shoulder as he stabilized (
## 10190                                                                                                                     According to the form 19, it states to see Dr. Meyers, Dr. Rosen & claimant's letters attached however, no notes are attached. Injury-arm/hand
## 10191            According to the high clerk (william baggs); EE was returning to work from lunch; upon entering the courthouse EE tripped on/over something smashing her face either on the floor or the door breaking her nose. EE went to the er, and rtw that day ()
## 10192                                                                                                                                According to the supervisor, the employee tripped over a mat (while carrying a back sack) while entering the automotive building ()
## 10193                                                                                                                                 According to voice mail lt for supervisor pulled or torn a tendon or figament in my lt wrist probably a result of injury last year
## 10194                                                                                                                          Accumulation from daily activities. Assisted re-dir-ect client emp and co-worker on either side of client-client lifted feet off of floor
## 10195                                                                                  Ace tabular liberal tear occurred during rehearsal period and was aggravated by physical nature of job which included kicking, jumping, stage combat and lifting heavy things. ()
## 10196                                                                                                                                                                                                                                                               Acid
## 10197                                                                                                                                                                               Acid on the floor where someone had used to hose down a rabbit cage 5'4" & 115 lbs..
## 10198                                                                                                                                                                                 Acid washing pool line, appropriate respirator did not filter fumes at end of wash
## 10199                                                                                                              Acl right knee construction 15% and 20% ppd= 17. 5%no longer employed with nccu. Employed elsewhere surg 12/17/07, represented by atty michael mackay
## 10200                                                                                                                                                                                                     Acquired embedded tick resulting in flu like symptoms and rash
## 10201                                                                                                                                                                                                                           Acrylamide liquid splashed into left eye
## 10202                                                                                                                                Acting as fire ? Fire tractor was backing up & hithurricane damaged tree. Causing tree to fall and limb bruising right side of body
## 10203                                                                                                              Acting as flagman on an ncdot worksite. Car went past stopsign & 2 following cars hit back of 1st car after it slammed brakes I/m jumped across ditch
## 10204                                                                                                              Acting as violating during multiple officer takedown technique. EE was thrown to the mat. Rt upper chest came down on the forearm of student. Popping
## 10205                                                                                                                                                                                         Acting in a role pay, felt a tearing sensation to my lower abdominal area.
## 10206                                                                                                                                                                                                                                                          Active TB
## 10207                                                                                                                                                                                              Acute delayed stress syndrome.... A suspect died while in her custody
## 10208                                                                                                                   Adam & 4 others personnel lifted straw blower off of the ground and loaded into read bed of a pickup truck. Everyone else is ok. Strained lumbar
## 10209                                                                                                                                                                          Adding flour in mixer when dough hook came around & hit finger in against inside of mixer
## 10210                                                                                                                                                                                                    Addressing aggressve pt, pt stuck at EE, EE blocked pt's hit ()
## 10211                                                                                                                                                                Addressing flooding cells and removal of inmates on gray unit e-pod, slip and fell on wet floor. ()
## 10212                                                                                                                           Addressing students for tour. As EE turned to enter bldg. Tripped on step and fell. Scrapped rt hand/cut rt knee/strain rt side of neck.
## 10213                                                                                                                                                                                                                                                Adhesive capsulitis
## 10214                                                                                                                      Adjacent lab was using excessive amount of bleach for decontatmination purpose. Working in the lab exposed to fumes causing chest irratation.
## 10215                                                                                                                                     Adjusted plywood cover infront of a broken window, & cut finger on the broken glass. Medically invest-igate this claim please.
## 10216                                                                                                                                                                        Adjusting blind. Blind was not secured in bracket and fell on head, right shoulder, and arm
## 10217                                                                                                                      Adjusting books on bookshelf, shelf collapsed, handcaught between 2 shelves. 2nd/3rd fingers were bruised, skinned and swollen, r arm bruised
## 10218                                                                                                                                                                                     Adjusting cable and fluid in the tractor and accidently wiped face around eye.
## 10219                                                                                                                                                                                                           Adjusting computer monitor, monitor fell on her foot. ()
## 10220                                                                                                                                                                        Adjusting cover on client when the client spit and saliva landed in corner of right eye. ()
## 10221                                                                                                                                                                                             Adjusting denture with a blade, touched blade and it cut through glove
## 10222                                                                                                                                                Adjusting fan over drivers side, accidently slipped through safety and tip finger out. Injured lt hand index finger
## 10223                                                                                                                                                                              Adjusting foot pedal on wheelchair, fell mashing fingernail. Middle finger right hand
## 10224                                                                                                                                                    Adjusting inmate's facial mask so he would not spit on staff. Inmate took right knee and hit her on left thigh.
## 10225                                                                                                                                                                                   Adjusting office chair slipped fell to the floor striking lower back/buttocks ()
## 10226                                                                                                                                                     Adjusting restraints on inmate and inmate jerked causing the restraints to catch the officer's right finger ()
## 10227                                                                                                                                                                              Adjusting stag buck which is held w/nails. Slid back toward him. Nail entered his leg
## 10228                                                                                                                     Adjusting window blinds the curtain fell, pulled chair and stood on it rehang curtain. Chair rolledalost balance, fell backwards on the floor.
## 10229                                                                                                                                                                Adjustment to nitrogen regulator-pressure built upcausing hose to rupture which produced loud sound
## 10230                                                                                                                                                                                 Admin asst: repetitive use of hands and arms. Bilateral carpal tunnel & lft elbow.
## 10231                                                                                                                                                      Administer eye drop to client, client slung head drops/eye fluid hit EE in face. Contact with conjunctivitis.
## 10232                                                                                                                                                          Administered insulin injection- when pulling residents sleeve down-stuck needle into left hand (palm). ()
## 10233                                                                                                                                                                           Administered insulin shot to client-felt needle prick after pushing syringe up to cap it
## 10234                                                                                                                                                                   Administering TB test when solution & possibly blood squirted out and splashed in eyes & face ()
## 10235                                                                                                                                                                                       Administering first aid to inmate, inmates's blood got on his hands and arms
## 10236                                                                                                                                                            Administering forced meds. Patient attempted to strike EE avoided but onset pain shoulder & neck motion
## 10237                                                                                                                                      Administering local anesthetic for dental restoration, resident jerked head quickly & tip ofneedle pierced skin on left thumb
## 10238                                                                                                                                                          Administering medications- in doorway-r hand caught between med. Cart and door handle-mashing r. Hand. ()
## 10239                                                                                                                                                                                                              Administering medications-human bite to l. Forearm ()
## 10240                                                                                                                                                                                 Administering meds to patient; repositioned arm and felt pain in right shoulder ()
## 10241                                                                                                                                                                                                                 Administering meds, pt scratched EE on left arm ()
## 10242                                                                                                                                                       Administering meds. To a patient-another patient came up behind and scratched on l arm and r. Wrist/hand. ()
## 10243                                                                                                                                                                                  Administering narcotic to inmate. Cut ring finger on corner of med room window ()
## 10244                                                                                                           Administrative assistant lost consciousness and fell toward EE. In efforts to assit with the fall, the both fell down and the asst. Landed on the EE. ()
## 10245                                                                                   Administrative duties making copies and sorting documents at work station. Rash on both thighs caused by unknown object or chemical. Blisters on both thighs mainly left leg. ()
## 10246                                                                                                                                  Aerating the ground when a rod that was connected to the aerator jumped back into EE face. Contusionlaceraion face, scalp & neck.
## 10247                                                                                                                                                                       After 1 hour of wrok at job location, EE experienced problems with breathing and chest pains
## 10248                                                                                                                After 4 hours of instruction, standing, employees foot left began hurting and continued until he sought medical treatment for a stress fracture. ()
## 10249                                                                                                                                                                   After EE administered insulin injection, EE pulled needle back and needle right index finger. ()
## 10250                                                                                                                         After EE cleaned with virex, he began to feel itchyon both arms. When he removed jacket, he realized he had developed a rash on both arms.
## 10251                                                                                                                                                                 After EE completed combat fire arm training, move- ment of rt shoulder became limited and painful.
## 10252                                                                                                                                                                                                  After EE diving in cold water skin became red and noted blisters.
## 10253                                                                                                                                                                             After EE escorted an inmate back to his cell, inmate elbowed EE in the upper shoulder.
## 10254                                                                                                                                                                      After EE gave injection to patient, turnd needle to place bandaid & stuck self with needle ()
## 10255                                                                                                                                                                                            After EE had clocked she stated that her left eye had become irritated.
## 10256                                                                                                                                                After EE had thrown a trash bag into the dumpster she felt a pull under her left arm & a stick hit her left breast.
## 10257                                                                                                                                                                                       After EE sprayed on slide and closed it shut a fewdrops hit her in the face.
## 10258                                                                                                                                                                               After EE was gave non-ambulatory pt a shower, tried to lift her, strained lower back
## 10259                                                                                                             After a confrontation w/ I/m lunsford in b-block, c/o sprayed I/m w/ oc spray & hand restraints was placed on I/m. I/m was sitting in a chair in the..
## 10260                                                                                                                                                                 After a dive show, she was getting out of the tank, and she slip and fall with equipment attached.
## 10261                                                                                                                                               After a heavy but normal day of basic landscape duties shoveling soil, moving mulch soreness was observed--lft wrist
## 10262                                                                                                                After a meeting some chairs were stacked on the cart, while pushing the chairs into storage room cart hit the side of the door and struck employee.
## 10263                                                                                                                                                                                                        After a resident intervention, noticed right hand swelling.
## 10264                                                                                                                         After a surgical extraction of tooth EE noticed blood on the inside of glove-glove had hole in it & patient's blood got inside on her hand
## 10265                                                                                                                                                                                                        After about a month EE notice both hands began to break out
## 10266                                                                                                                 After adm inmate an intramuscular injection inmatewas asked recap needle came down hall needle went through rubber cap and stuck lt middle finger.
## 10267                                                                                   After administering a vaccine, the claimant's left ankle was injured by a used syringe that bounced off a large needle box on the floor, piercing the skin and drawing blood. ()
## 10268                                                                                                        After administering an allergy injection to a patient, katherine placed the needle in the sharps containter but it popped out and pierced her right arm. ()
## 10269                                                                                                              After administering insulin to an inmate through the trap door, started to pull safety shield down over needle his hand slipped & punctured lt finger
## 10270                                                                                                                                                                              After administering meds to pt. /tried to pull him up in bed straining back & abdomen
## 10271                                                                                                                    After administering o c spray to a aggressive inmate EE states that inmate cont.... To approach him he fell over a chair and landed on his back
## 10272                                                                                                                                                                                                               After administering shot, needlestick to l. Thumb ()
## 10273                                                                                                                                                                                                After altercation w/pt, EE felt sore/stiffness in left 4th digit ()
## 10274                                                                                                                                               After an experiment, EE was cleaning the hood when one of the chemicals (ether) ignited causing a small fireball. ()
## 10275                                                                              After an interview with a client, I was walking down the stairs. I missed the bottom step and landed on the ground. My right foot gave out and I fell on right leg and right hand. ()
## 10276                                                                                                                                        After an open house event, employee was driving the college motorcycle around campus and lost control of the motorcycle. ()
## 10277                                                                                                                              After answering phone in old cafeteria. EE procedded to leave area when she tripped over telephone cord hitting stand with right knee
## 10278                                     After approximately one hour in office eyes swollen, nose congested, wheezing, this has happen each time I opened 30 minutes or more in her office. She is fine no symptom prior to entry of her office. Upper respiratory. ()
## 10279                                                                                                                                                           After arresting and transporting a suspect to the county jail, the suspect made it known that he had TB.
## 10280                                                                                                                                                            After arresting and transporting a suspect to the county jail, the suspect made it known that he hadtb.
## 10281                                                                                                                                         After assailant was stopped for traffic violationsassailant proceeded to run into EE striking EE left leg causing bruises.
## 10282                                                                                                                     After assisting another EE w/making routine security checks. Began walking down steps. Grabbed handrail & felt wrist pop. Wrist bent backwards
## 10283                                                                                                                                                                              After assisting dress resident-escorting to hallway and resident punched below ear ()
## 10284                                                                                                                                                                               After assisting individual with toileting, employee experienced pain in her back. ()
## 10285                                                                                                                  After assisting patient w/ bath, staff was placingbath supplies back in patient's cubby. The patientsbath sponge fell onto staff's nose, staff no
## 10286                                                                                                          After assisting resident with his meal tray I started to walk out of f the rm & stepped on a wet surface. Slid lost balance & pulled strained muscles. ()
## 10287                                                                                                                                                              After assisting with breaking up a fight a patienthit EE in the face, and put his finger in his mouth
## 10288                                                                                                                                                          After attempting to draw blood from pt., EE was sliding safety up on butterfly and was stuck with needle.
## 10289                                                                                                             After attempting to redirect a patient, the patientthen attempted to strike staff, at which time the staff tryed to block the hit but still was struck
## 10290                                                                                                                                                                          After attending 4 hour meeting, when stood up ankle turned & fell forward spraining ankle
## 10291                                                                                                                                After bath client jerked clean clothes away from EE then clien grabbed EE's wrists & twisted fingers rt thumb lt hand/finger sprain
## 10292                                                                                   After bathing and removing client from toileting to wheelchair, heard something pop when EE came up from putting on client's socks; could not stand straight up without pain. ()
## 10293                                                                                                                                                                          After bathing client, EE squatted and turned to place shoes on client, felt pain in back.
## 10294                                                                                                                                                             After bathing client-client lost balance and fell EE tried to catch client and injured rt ring finger.
## 10295                                                                                                                                                                   After bathing resident-bent down to pick up bag with clothes in it. Felt pinch in lower back. ()
## 10296                                                                              After being administered pepper spray for certification, officer was leaning against the wood near the waterhose and her right arm became irritated and a small red bump appeared. ()
## 10297                                                                                                                                                                          After being involved in use of force of england unit, officer had injured rt ring finger.
## 10298                                                                                                                                  After being maced as part of oc training, she was informed that is okay to place her contact in her eye, rt eye became irritated.
## 10299                                                                                                                                                                             After being on timber exam, body started itching, irritation and whelps on whole body.
## 10300                                                                                                                              After being properly shown & demonstrated how to place handcuffs was cut on wrist by handcuffs by another c/o while closing handcuffs
## 10301                                                                                                                               After being told of shift change from 2nd to 1st shift, felt bad pressure on head, chest pain, hard to breath--felt like a breakdown
## 10302                                                           After blowing was complete and walking back to aviary, stepped over a log, didn't have good footing when rt. Foot came down causing ankle to give way and causing employee to fall twisting rt. Knee. ()
## 10303                                                                                                                        After boat patrol on 4/12/06-EE noticed numbness in right foot-then fine for several days-again on 4/17/06 foot became numb again-same area
## 10304                                                                                                                                                                                       After breaking up fight between two inmates noticed left forearm was red. ()
## 10305                                                                                                                                                         After breaking up fight took cuffed inmate to segregation he noticed he had blood on right hand and thumb.
## 10306                                                                                                                                                                 After caring for last resident EE started itching and burning on arms and chest and rash appeared.
## 10307                                                                                                                         After carrying & dumping fourth bucket of water rtarm had burning sensation in fingers & after a little while a numb, needle like feeling.
## 10308                                                                                                                                                   After carrying a full size mattress up three flights of steps, employee felt pain on left side under arm pit. ()
## 10309                                                                                                                                                                After cell door opened for inmate to exit, EE had to physically close the door using his left foot.
## 10310                                                                                                                                                   After changing light bulbs, EE descended ladder and light cover fell and struck EE's right shoulder and head. ()
## 10311                                                                  After changing resident-assisted to stand pivot resident into wheel chair, resident was unable to turn body; resulting in employee twisting to assist into chair-noted left side of back hurt. ()
## 10312                                                                                                                                                               After chaning battery in wall clock and stepped down to a sharp object on the floor. Injury to foot.
## 10313                                                                                                                                                                                                               After check & change r. Side/back started hurting ()
## 10314                                                                                                                           After checking a computer in bldg. C, while walkingon gravel drive back to admin. Bldg., stepped in a pothole & ankle twisted as I fell.
## 10315                                                                                                                                            After class, walking on grass towards car, slippedon pine needles and caught foot on tree root, fellinjuring right leg.
## 10316                                                                                                                                                After cleaning instruments, picked them up to place into biosonic, when the explorer stuck into the palm of rt hand
## 10317                                                                                                                                                                                                           After cleaning tower and left upper eyelid began burning
## 10318                                                                                                                                                                     After cleaning up, loaded tables on rack, tried to pull them off on lower level, strained back
## 10319                                                                                                                                                After client completed her back and got dressee she became non-compliant and aggressive towards EE and scratched EE
## 10320                                                                                                                   After client injection, needle placed in EE's pocket. Checked pocket later, needle fell out. While picking up needle, pricked on palm of rt hand
## 10321                                                                                                                After clocking-out on the way to car, injured-emp loyee made a statement which caused a fellow-employee to put him in a bear hug bruising his ribs.
## 10322                                                                                                                                                                                     After coming down stairs emp. Felt a sharp pain in inner r ankle/wrong step ()
## 10323                                                                                                          After coming down stairs from training area, went in hallway, running to unit to assist when right knee, twist-buckled and he started hopping to unit. ()
## 10324                                                                                                                                            After completeing bathroom cleaning duties, both of EE's hands began to itch, both hands broke out in an allergic rash.
## 10325                                                                                After completing a 4:15 home visit with a parent, I walked toward my in the driveway, branches from a tree fell/broke and fell on top of me. Forcing me on the ground face down. ()
## 10326                                                                                                                                                                                   After completing a cell search, an inmate threw an unknown liquid on the sgt. ()
## 10327                                                                                                                                                    After completing blood draw while removing butter-fly needle from adaptor tubing or needle curled causing stick
## 10328                                                                                                                                             After completing cerebral angiogram on hiv + patient, EE removed gloves and notes blood on fingers on non-intact skin.
## 10329                                                                                                                    After completing control #2 took a break. She returned classroom and began to sit down beside wall when experienced sharp pain in left rib cage
## 10330                                                                                                                                          After completing paperwork, walking back to office by the greenhouse area and stepped in a hole causing rt knee to buckle
## 10331                                                                                                                     After completing self defense/weapons retention training, EE reported that her rt hand would not stop trembling, also her neck and rt shoulder
## 10332                                                                                                                                After completing training both calves started burning & throbbin after a while rt stopped but ltleg kept hurting & appeared swollen
## 10333                                                                                                                 After completing weapsons retention, she had a twinge feeling in her back, rt shoulder area. EE didn't recall what technique actually caused injur
## 10334                                                                                                                           After completion of a search & removal of gloves while cleaning up noticed a small cut on his left middle finger. Did not see any blood.
## 10335                                                                                                                                                         After completion of use of force scratch was noticed on knuckle of middle finger on lt hand. Cut on finger
## 10336                                                                                                                           After conducting a curfew check he went to car in the parking lot he turned back at someone yelling at him and his foot slipped off curb
## 10337                                                                                                                                            After conducting a home visit, I was walking beside my state car and was struck in the right eye by the car antenna. ()
## 10338                                                                                                                                                     After conducting a home visit, when closing the driver side door, right thumb got caught in the locked door ()
## 10339       After conducting gps training on a pre-commercial thinnig on private landowners property employee found multiple ticks (8-10) attached on his legs, back, arms, and stomach. A few days later a rash developed and employee experienced flu like symptoms ()
## 10340                                                                                                                                                                    After conducting inspection at medical center, he stumbled and fell when walking to the car. ()
## 10341                                                                                                                                                           After contact with athletics dirty laundry, EE developed skin rash on face and arms. Referred to glenda.
## 10342                                                                                                                                                                                         After copat trng, EE became hot, sweaty & nauseatedems was called to scene
## 10343                                                                                                                                                                                            After cutting a steel plate, half of it fell onto employee's right foot
## 10344                                                                                                                                                                    After data entry keying alpha and numeric, numbness in fingers, pain and swelling in right hand
## 10345                                                                                                                                                                                                       After day of training EE developed severe pain in both knees
## 10346                                                    After delivering food trays on cart for sheriff's department the rolled into employee's right ankle. When he moved to get out of the way of the cart he landed on his left fankle and twisted his left knee. ()
## 10347                                                                                                                        After delivering medications to cluster 6-3, walking from 6-3 to 6-1; stepped on something left foot turned inward - fell on right knee. ()
## 10348                                                                                                                                                                        After delivering meds to unit, a pt attempted to elope, EE held door close, hitting hand ()
## 10349                                                                                                                                                           After delivering packages, EE closed thumb in vehicle as he was closing sliding door of deliveryvehicle.
## 10350                                                                                                                                After disposing of dirty linen, EE shut the door on the new dumpster. The long latch of the door caught her on the lft side of face
## 10351                                                                                                                                                                          After doing an I&d on a minor abcess the needle slipped and stuck finger through glove ()
## 10352                                                                                                                                                                                         After doing cpr on a client, went to get up and lower back hurt and lt hip
## 10353                                                                                                                                                                                         After doing drilling, remove goggles and small piece of metal got into eye
## 10354                                                                                                                                                                                    After doing evening 7:00 pm check noted swelling and pain in left side of face.
## 10355                                                                                                                                                                    After doing repetitive lifting while at work, the injured complained of back pain and stiffness
## 10356                                                                                                                                                                                   After donating blood, employee passed out, fell and hit her head on the floor ()
## 10357                                                                                                                  After drawing blood EE had laid on the patients bed the tubes began to fall off the bed and she reached across to catch them she caught her thumb
## 10358                                                                                                                                                       After drawing blood EE was stuck in wrist by needle when tubing culed up as needle was removed from patient.
## 10359                                                                                                                   After drawing blood I was placing needle in sharps dispenser, needle slipped at the flap. When I tried to retrieve I stuck my r middle finger ()
## 10360                                                                                                                                         After drawing blood from an inmate, went to place needle in sharps container, needle flipped & stuckin thumb on right hand
## 10361                                                                                                           After drawing blood from inmate, EE laid needle on counter with right hand, needle caught on glove of left hand and stuck the palm causing blood to flow
## 10362                                                                                                                         After drawing blood from inmate, when the needle was removed from his hand, it pricked/stuck my lt thumb, piercing the glove and my thumb.
## 10363                                                                                                                                                                                                     After drawing blood punctured rt palm with used safety needle.
## 10364                                                                                                                     After drawing blood she placed contaminated needlein holder on counter & turned around to pick up needle holder & glazed palm of her left hand
## 10365                                                                                                                                                                                                After drawing blood, EE struck rt index finger while placing in box
## 10366                                                                                 After dressing a co-workers thumb due to an injurty substained outside of work, I was cleaning up the scissors that I had used as I wiped the scissors down I cut my left thumb ()
## 10367                                                                                                                                                                            After drilling hole in ceiling, walkind down ladder, slipped and hit back against wall.
## 10368                                                                                                                                                                                                         After driving one hour lower back region was very painful.
## 10369                                                                                                                                                     After dropping laundry down chute, scraped r and l forearm breaking skin when pushing bag in arms were scraped
## 10370                                                                                                                                                             After dropping off mail, tripped descending steps and twisted left ankle as she tumbled down the steps
## 10371                                                                                                                                      After dropping student off at apex high school, EE was en route back to gms on hwy 64 when she was hit by another vehicle. ()
## 10372                                                                                                                                                                                                                                                   After dusting ()
## 10373                                                                                                                   After eating lunch at unit inspection of piedmont #3600, Ms. Yelverton went unconscious, weak, diaphoretic w/ stomach cramps, diahrrea & nausea.
## 10374                                                                                                                                              After employee cleaned restrooms with chemicals, she felt some itching on left forearm and arm was red and swollen ()
## 10375                                                                                                                                                                   After employee gave showers to patients, felt itching on hands and later over his whole body. ()
## 10376                                                                                                                                                         After employee taught with flashover simulator, hewas cleaning up & rubbed his eye getting somethingin it.
## 10377                                      After employee tried for over 1yr to obtain assist. From supervisor. Subordinate threaten to kill employee. Causing detriment to employee well-being. It was a violent situation placing employee in unstable environment. ()
## 10378                                                                                                                                                                               After emptying urinal for patient I turned and twisted my rt knee causing sharp pain
## 10379                                                                                                                                                                       After entering bldg to begin shift EE slipped on awet spot coming from the janitorial closet
## 10380                                                                                                                                                                                                                     After eri, EE noticed left shoulder hurting ()
## 10381                                                                                                                                                                                                                  After eri, EE reports that his back is hurting ()
## 10382                                      After escorting a juvenile back to his room, the juvenile broke out of his room and pushed the employee's back against the wall. While restraining the juvenile, the employee was kicked in the shin causing a laceration. ()
## 10383                        After escorting individual to bedroom after disrupting ongoing task, individual attempted property destruction. Employee intervened and both employee and individual went over the bed and into the floor during the physical restraint. ()
## 10384                                                                                                                                        After escorting juvenile back to his room, the juvenile punched the staff with a closed first on the left cheek and eye. ()
## 10385                                                                                                                                                                           After exiting building, once outside EE tripped onon a small rock, falling on left knee.
## 10386                                                                                                                                                                                                                    After exiting her vehicle she slipped on ice ()
## 10387                                                                                                               After exiting the office to the hall, she tripped on an office mailbox on the floor while the wall wwas being painted hurting her left ankle & knee.
## 10388                                                  After field day found two ticks. Ticks probably acquired during morning. Became ill on 6/10/09, headache, nausea, dizzies, joint pain, mid abdominal cramping. Nausea and dizziness persisting through 6/11/09 ()
## 10389                                                                                                                                                After filing & retrieving medical jacket from files over approximately an hour she bagan experiencing low back pain
## 10390                                                                                                                                         After finding a pencil with a razor blade attachedhe placed it in an envelope and then in his pocketpricked middle finger.
## 10391                                                                                                                                                                 After finishing a site prep burn EE began feeling weak & sick & passed out-needing help into truck
## 10392                                                                                                                                                                             After firing 200 rounds EE removed hearing protection and ears was ringing and hurting
## 10393                                                                                                            After fixing bottle washer door which has heavy weight for tension, EE felt pain in left shoulder. EE pulled on door to try to set it back on track. ()
## 10394                                                                                                                        After foolow up to evauations of work place picked up a bag to put it over my shoulder the bag caught part way and I hyperestended my wrist
## 10395                                                                                                                                                                  After gathering seedpods around locust tree becameitchy & later in evening developed rash on face
## 10396                                                                                                                                                                                          After gettin the hep b vaccination, EE started breaking out & itching. ()
## 10397                                                                                                                                             After getting bags out of fridge, EE slipped, twisted right ankle and hit face on the floor trying to control the fall
## 10398                                                                                                                                                                  After getting inmates id for write up, he stated he was tired of this s*** and began swinging. ()
## 10399                                                                                                                                                   After getting out of her car, EE slipped and fell on ice going into building. Injuring her lower body and knees.
## 10400                                                                                                                           After getting out of the car to report to work EE walked toward the front of his car when rt foot slipped on some ice in the parking lot
## 10401                                                                                                                                                                                  After getting out of work truck, employee stumbled over a vehicle stop, on knees.
## 10402                                                                                                             After getting pepper sprayed, I had a sharp pain in my neck/head. The nurse said I was having a panic attack and the pain was the effect of the attack
## 10403                                                                                                                                                                                                 After giving a horse an injection, horse bit EE on right upper arm
## 10404                                                                                                         After giving care to resident pulled trash from trash can didn't know bag was leaking water as I was walking out of the room slipped and fell on floor. ()
## 10405                                                                                                                                                     After giving injection of glucogon & placing syringe back in the holder, I struck the needle in my left thumb.
## 10406                                                                                                      After giving insulin to client; EE was closing safety needle. Needle fell out of right hand and into left thumb through glove and into skin of left thumb. ()
## 10407                                                                                                                   After giving medications to an agitated patient she tripped over doctor's foot on the way out of the room. Injured head, knee, ankle. And elbow.
## 10408                                                                                                                                               After giving paitent ct-patient sat up quickly andee att to catch patient from falling off table injured upper back.
## 10409                                                                                                                                     After giving patient an injection, syringe slippedthrough fingers of rt hand. Dirty needle scratchedinside of rt index finger.
## 10410                                                                                       After giving resident shot jewelry became tangled in her sweater other staff helping hold resident left arm but one resident grabbed my right eye & tried to pull it out. ()
## 10411                                                                                                                                                                                        After going through nci training le felt weak and pain began to move upward
## 10412                                                                                                                                                                     After grapling drill in defense class. EE had soreness in both sides. Later felt pain in side.
## 10413                                                                                                                                                                                                             After half way upstairs, she fell and hit her back. ()
## 10414                                                                                                                                 After heavy usage of the telephone, developed pain in left shoulder and numbness from left shoulder down arm to left hand fingers.
## 10415                                                                                                                                                                              After helpin an acytive resident to breakfast, she felt pain in hand near thumb area.
## 10416                                                                                                                                                                          After helping another staff member lift a 300lb patient, EE strained his left lower back.
## 10417                                                                                                                                                                     After helping client into shower, staff felt pain in neck and arm, at home later that evening.
## 10418                                                                                                                          After helping with an event for donor organization, was moving furniture. Picked up small book/magazine rack which slipped from hands. ()
## 10419                                                                                                                                                                      After holding a child during a home visit, developed a rash on both arms. Rutherford hospital
## 10420                                                                                                                                                                                After holding an individual in a physical restraint employee felt pain in her neck.
## 10421                                                                                                                          After ims finish, I walk to the center of dining hall to turn out the light. I then turn to go out the door and ran into table corner. ()
## 10422                                                                                                                                                                                  After inmate refused to walk to segregation liftedinmate & physically carried him
## 10423                                                                       After inspecting a new roadway, the employee noticed two ticks on his clothing. On June 15th he found a tick embedded on his lower right back; he removed tick. List injury as lower back ()
## 10424                                                                                                                                  After inspecting ecoflo, EE driving toward home duty station a large deer ran from median across hwy & collded with EE's vehicle.
## 10425                                                                                                            After instructing a student on how & where to tie up a broken driveshaft, the EE stood up & experience a sharp pain in the lower back, which lasted. ..
## 10426                                                                                                                                        After intensive keying during March 1999, EE developed muscle spasms in rt arm, shoulder, and neck with numbness in fingers
## 10427                                                                                                                                       After keying in a lot of data into the computer, ibegan to feel pain in both wrists, extending into fingers and both elbows.
## 10428                                                                                                                                                                                                 After leaving building employee stepped in hole near the sidewalk.
## 10429                                                                                                                                                                                               After leaving work, EE started itching and had rash over entire body
## 10430                                                                                                                                                                                                   After lifting a 5 gallon pan of grits, EE had painin lower back.
## 10431                                                                                                                                                      After lifting a gun case and almost dropping it she noticed that her right shoulder and under arm was hurting
## 10432                                                                                                                                                                                                                          After lifting client felt pull in stomach
## 10433                                                                                                                                                                           After lifting client with the help of her supervsr EE felt a something pull in her back.
## 10434                                                                                                                                                                                              After lifting computer equipment felt pain in right inner thigh area.
## 10435                                                                                                                                                              After lifting heavy container of coffee from wagonee experienced pain in lower, upper back, & l. Knee
## 10436                                                                                                                                                                  After lifting metal saw box-EE walked over to table to turn saw on-felt sharp pain in lower back.
## 10437                                                                                                                                                                                                                        After lifting patient, back started hurting
## 10438                                                                                                                                                                                  After lifting pt on transboard r elbow began to hurt and numbness in left fingers
## 10439                                                                                                                                                                                  After lifting tables for event setup, EE felt painin neck and back on right side.
## 10440                                                                                                                                                          After loading backhoe, employee hurt back while lifting ramps onto trailer. List inujry as: lower back ()
## 10441                         After loading posts into officer amos williams' vehicle, I went to sit in the passenger's seat unknowing that one of the posts was up to far. As I sat in the passenger's seat the 4x4 post hit me from behind striking me in the head. ()
## 10442                                                                                                                                                                                After loading weapons he sat down in chair & spider bit him on right pointer finger
## 10443                                                                                                                                                          After locking door to exam room, took a step but foot did not move. Fell and landed on thumb and elbow ()
## 10444                                                                                                                                          After lowering ramp, EE attempted to flip other section of ramp out and smaller section came back and pinched his finger.
## 10445                                                                                                                                     After lunch maria tried to finish her bathrooms when she felt her legs and had trouble breathing she stopped and hand numb. ()
## 10446                                                                                                                        After making a violator contact, EE was walking back to patrol car & stepped on a rock causing left foot to twist. Chipped bone-left ankle.
## 10447                                                                                                                                                                                         After making repair, tripped over pipe and came down hard on left knee. ()
## 10448                                                                                                                   After making routine fence & weight check from unit 3 to k-dorm, EE slipped & fell on the ice. Slight swelling, redness, & stiffness- knee/elbow
## 10449                                                                                                                                              After many hours of doing data entry on a "rush" project, employee experienced pain in back of neckand down right arm
## 10450                                                                                                                                                            After many occasions of contact with family, EE has learned this family was infected with tuberculosis.
## 10451                                                                                                 After measuring a commercial motor vehicle, EE was rolling his steel measuring tape up and cut the webbing on his right hand between the ring finger and pinky. ()
## 10452                                                                                                             After medication administration, placing trash in trash can, lifted head and hit her nose on the corner of the shelf located directly above trash can.
## 10453                                                                                                                     After meeting with client & mentor, realizing leftinfo at the restaurant, proceeded to make a u-turn& turned into the path of another vehicle.
## 10454                                                                                                                                                After meeting with students, EE left to go back to office. EE did not see there was a short step and hurt left leg.
## 10455                                                                                                                                                            After molding patient during seclusion/restraint EE experienced back & neck pain including shaking arns
## 10456                                                                                                                                                                                                 After mopping restroom floor, the door closed on my right hand. ()
## 10457                                                                                                            After mopping the designated area, employee exited the area by walking backward over the floor and slipped injuring right side of body and shoulder. ()
## 10458                                                                                                                                                          After mopping up the contents of a broken bottle, the employee complained of irritated eys and dizziness.
## 10459                                                                                                                                                                                                   After morning of moving patients, EE experienced pain in lt hand
## 10460                                                                                                                                                  After moving a 350-400lb pt from hospital bed to treatment table, EE experienced muscular back painlow back pain.
## 10461                                                                                                                                                                                            After moving bar reached to move it and struck back of left hand on bar
## 10462                                                                                After moving furniture all day on friday my back hurt saturday morning to the point I couldn't get out of bed. I didn't feel any pull or pain on friday while moving the furniture.
## 10463                                                                                                                                                   After moving several boxes over a period of time several months-shoulders have began to hurt esp. Right shoulder
## 10464                                                                                                                                                                            After mowing lawns out in community, returned to building & noticed spot on right hand.
## 10465                                                                                                                                                                             After much lifting experienced pull and soreness in extreme lower back when walking ()
## 10466                                                                                                                After opeing door, EE started out the door. EE closed the door with his right hand and his middlefinger slipped into door jam. Door closed on finge
## 10467                                                                                                                                                                                   After opening food passage door, inmate sprayed liquid feces on the employee. ()
## 10468                                                                                                                                                      After opening the door, door swing back and hit top of r hand sweeping up causing injury to top of r hand. ()
## 10469                                                                                                                                                                                     After opening wicker door, inmate threw an unknown substance on the officer ()
## 10470                                                                                                                                                                     After opening wicket door, the inmate squirted a bottle of an unknown liquid on the officer ()
## 10471                                                                            After operating a skill saw while being bent over, EE movd to grap a piece of lumber and back went out. Bent over for a long period of time and then sudden movement causing injury. ()
## 10472                                                                                                                                                   After operating a string gas trimmer, EE began experiencing tingling, numbness and dull pain in her right wrist.
## 10473                                                                                                                                                                      After oral surgery, pt was being sutured, dentist stuck his own finger w/ contaminated needle
## 10474                                                                                                                                                                  After packing and moving boxes for a move she was experiencing pain and swelling in her finger ()
## 10475                                                                                                                         After packing inmate's personal property he began to itch around his hands, wrists, face and his lips became numb and broke out with whelp
## 10476                                                                                                                                                        After parking and walking toward bldg foot slippedoff sidewalk and lt foot twisted. Lt foot and rt shoulder
## 10477                                                                                                                                                                           After parking state vehicle, fire extingisher exploded-- contents went into left eye. ()
## 10478                                                                                                                                       After parking was salted amd temp dropped it became a sheet of black ice and she fell injured wrist/shoulder. Patrick wooten
## 10479                                                                                                                                                       After patient had seizure, doctor wanted oral meds given. Went to test gag reflex and patient bit finger. ()
## 10480                                                                                                                             After patient injected himself with insulin EE wasputting syringe in sharps contr. When sheath slipped back and caused a needle stick.
## 10481                                                                                                                         After patient injected insulin in her arm. Patientstuck dirty needle in paper cup on desk top. Picked up needle to put away & stuck finger
## 10482                                                                                                                           After paver pulled patch, driver turned around, employee (robert) was helping shovel excess asphalt off road, back into paver hopper. ()
## 10483                                                                                                                                                                                                    After pepper spray training, EE began having problems with eyes
## 10484                                                                                                                                                                                                           After pepper spray training, EE's eyes continued to burn
## 10485                                                                                                                                                                After performing a restraining hold in self defense training, EE stated she felt pain in left knee.
## 10486                                                                                                                                          After performing cell search inmate assaulted a fellow officer. While assisting officer I was hit in the back of head. ()
## 10487                                                                                                                                                             After performing cpr (mouth/mouth) on I/m it was determined that there was blood in the I/m's mouth ()
## 10488                                                                                                   After performing duties at work, employee was coming out of the shower wearing flip flops and door closed on her left bit toe causing her toenail to come up. ()
## 10489                                                                                                                                                                                  After performing five 3 man carries of patients, right shoulder began hurting. ()
## 10490                                                                                                                                                                                     After performing numerous echoes both arms began to hurt by the end of the day
## 10491                                                                                                                                After performing pit firing, EE noticed a slight redness on the top of his foot which worsened over the weekend-allergic dermatitis
## 10492                                                                                                                                                                                      After performing shop inspection, rt eye became iritated, something got in it
## 10493                                                                                                                                After placing an inmate in wheel chair. Employee was pushing inmate up the hill to infirmary. Employee felt a pull in lower back ()
## 10494                                                                                                                                                                               After placing client in therapeutic hold and released client kicked EE rt side/chest
## 10495                                                                                                                                                               After placing client in tub released shoulder, client hit EE in mouth caused EE to swallow her tooth
## 10496     After placing items in to be filed bin, I was walking into the file room which is a very sharp right to return, gather charts for morning home visits, my right foot caught the corner door pane where the copier cord was bundled up and caused me to lose ()
## 10497                                                                                                                                                                                 After placing iv pump in patient I stood up & hit top o fhead under metal cabinet.
## 10498                                                                                                                  After placing patient in lift, handle on lift has to pulled downward to sitting up in lift. Back was injured by pulling handle downward to sit up
## 10499                                                                                                                                                                           After placing pt in manual restraints EE and coworkers were lifting pt, EE felt back pop
## 10500                                                                                                                      After ppd was given during the needle transfer to dispose and pull protective sleeve over needle stuck second finger tip with the used needle
## 10501                                                                                                                                                                                       After preparing salads EE noted pain from rt middle finger to elbow/shoulder
## 10502                                                                                                                 After prolonged data entry on computer terminal, right elbow and right wrist had constant ache in joints has been occurring off and on ever since.
## 10503                                                                                                                                                                      After prolonged sitting in a meeting EE had back pain upon rising from his seat. Back strain.
## 10504                                                                                                                                                                                            After pruning bushes and during the ensuring clean up of the debris. ()
## 10505                                                                                                                                                                                 After pt received his shot, pt began kicking/swinging, struck EE in left breast ()
## 10506                                                                                                After pulling meds from med drawers and administering, felt pain in both hands including right wrist. Extreme pain in both feet from walking on concrete floors. ()
## 10507                                                                                                                                                                                    After pursuit of suspect, having run through a wooded area, had pain in rt foot
## 10508                                                                                                                                                                             After putting client to bed felt pain in left side& noticed some swelling in that area
## 10509                                                                                                                                                After putting fork attachment on, employee steppedoff bobcat, foot landed on side of fork and rolledover onto ankle
## 10510                                                                                                                                                        After putting gloves on to pick up paper in the flor, both hands starting itching, also continue up EE arms
## 10511                                                                                                                                                     After putting on laundry, coming out of door, hit right hand on metal frame around door hurting right hand. ()
## 10512                                                                                                                                      After putting out ice melt, both right & left handwere burned by ice melt & begin to peel. Ice meltpenetrated through gloves.
## 10513                                                                                                                                           After putting resident down, EE felt like the bone in her knee moved. **rec'd signed medical authorization form from iw*
## 10514                                                                                                                                                 After receiving flu shot employee's body had a reaction to where she was itching and welped up and turning red. ()
## 10515                                                                                                                                                                                               After recertifying with shot gun EE noticed hearing loss in left ear
## 10516                                                                                                                                After recovering from physical training that morning the onset of pain was felt during class. List injuries as: blade of right foot
## 10517                                                                                                                                                      After redirecting client to wash hands, client attacked staff by biting and scratching right hand fingers. ()
## 10518                                                                                                                                                                            After redirection, patient returned to staff grabbing hair and pushing against wall. ()
## 10519                                                                                                                              After refueled vehicle, EE went to shut gate and gate caught her pant legs causing her to trip, injured left shoulder and bothe hands
## 10520                                                                                                                                After refusing order from officer to leave chapel officer hammonds pulled out oc pepper spray and inmate grabbed and pushed her. ()
## 10521                                                                                                                                          After reloading work car, employee turned to walk off the back of the work truck. Knee twisted when turning. Left knee ()
## 10522                                                                                                                                                                                                                  After removing gloves noticed rash on both hands.
## 10523                                                                                                                                  After removing paint from handrail with chemical solution, employee took off gloves and noticed his hands were red and blistered.
## 10524                                                                                                                                                                      After removing property from cell, I walked away and the inmate spit on mefrom the shower. ()
## 10525                                                                                                                                          After repositioning a reisdent in the bed she turned to leave and ran into a box on another residentbed. Injured rt knee.
## 10526                                                                                                                                                                                          After responding to a code 4, he was hit across left hand with a baton ()
## 10527         After responding to help desk tickets/tasks at rutherford courthouse, while returning to my vehicle in public parking lot next to courthouse, slipped on a patch of black ice, and fell backwards on my back, sustaining a blow to the back of my head. ()
## 10528                                                                                                                                                        After responding to medical code in inmate's cell, blood from inmate's open wound got on his right wrist ()
## 10529                                                                                                                                                                                                      After restraing cat-cat turned around and bit EE on rt wrist.
## 10530                                                                                                                                                                                               After restraining aggressive juvenile EE had pain in right shoulder.
## 10531                                                                                                                                                                                   After restraining an agressive student in yard EE slipped and twisted her ankle.
## 10532                                                                                                                                                  After restriction intervention, patient was physically aggressive and employee fell to ground landing on lt knee.
## 10533                                                                                                                                                                                     After retrieving box from second shelf in freezer, pulled muscle in lower back
## 10534                                                                                                                                                                           After returning from firing range, discovered a tick attached to the back of his rt leg.
## 10535         After returning from transporting a student to one of wake county's schools in apex, nc and after making a right turn from laura-ducan ron onto highway 64 east approx 200 yards from laura-ducan & hwy 64 intersection the car was rear ended at 35 mp ()
## 10536                                                                                                                                                                                                                  After running for nvci, r knee aggravated pain ()
## 10537                                                                                                           After running long arm mower on friday; got off work and about an hour later a sharp pain went through his right shoulder. List injury as: r shoulder ()
## 10538                                                                                                                                                                                    After searching cell discovered with in 5 minutes I had large bumps on left arm
## 10539                                                                                                                                          After searching for files on top of a cabinet she tripped on the bottom drawer that was not closed hurting her left foot.
## 10540                                                                                                                           After securing purse in desk drawer, relocked same. Logged onto computer and turned to walk away and tripped/fell over open desk drawer.
## 10541                                                After seeing primary care physician for pain and numbness in rt arm. Dr Diagnosed condition as median nerve dysfunction ( carpal tunnel syndrome) causing problems and inability to bend thumb and index finger. ()
## 10542                                                                                                                                                                                After seizure staff was assisting sick patient to bed. Pain in hip radiating to leg
## 10543                      After several days of packing, both hands were swollen with numbness in arms and wrist. Condition subsided over weekend. With new work week, burning & numbness resumed. Hands began twitching with burning sensation in hands & forearms. ()
## 10544                                                                                                                        After several days of using chainsaw to clear fallen trees after hurricane fran, irritated, inflammed and painful elbows, wrist and fingers
## 10545                                                           After several directives from the employee, a juvenile was guided to his room by a soft hand approach. When the juvenile failed to comply, the employee physically assisted the juvenile to his room. ()
## 10546                                                                                                                                                             After several episodes of pulling clients & t. R. Holds, experience pain in abodmen. Strain to abodmen
## 10547                 After she was done cleaning all restrooms in the alumni building she noticed that her eyes were getting irritated. She went home after work on friday morning woke up on saturday morning and her right eye was read and both eyes were crusty. ()
## 10548                                                                                                                                                                  After showering resident, while dressing him, he hit me in lower back, leaving his hand print. ()
## 10549                                                                                                                                                 After showering the resident EE transferred the resident with assistant back to wheelchair & twisted her r knee ()
## 10550                 After sitting at her desk for some length of time, Ms. Young jumped up quickly to leave her desk chair and hit her head against the corner of the right wall in her office. The impact was great enough to cause immediate pain and a headache. ()
## 10551                                                                                                                  After sitting extended time for employee kickoff; stood up to leave; right foot/leg had fallen asleep causing fall and twisting of right foot. ()
## 10552       After sliding a sheet of paper under the segregation door for delivery to an officer on the other side of the door, c/o jacobson stood up from a bent over position and on his way back up to standing he hit his head on the door handle of the seg door ()
## 10553                                                                                                                                                                       After snaking a drain, he stood up from bended kneepulling his lower back on the right side.
## 10554                                                                                                                                                                                               After spraying a suspect with pepper spray-spray got into EE's eyes.
## 10555                                                                                                                                                          After spraying inmate waited several minute to go in to put inmate in handcuff but could not catch breath
## 10556                                                                                                                                                                       After spraying insect killer on vinyl floor mat, to kill ants, employee slipped and fell. ()
## 10557                                                                                                                                     After stopping at intersection, state vehicle proceeded & was struck on the right front area of the passenger side by a truck.
## 10558                                                                                                                                                      After stopping at intersection, state vehicle proceeded & was struck on the right front area/ passenger side.
## 10559                                                                                       After strenuous fieldwork associated with seine hauls & backpack electrofishing surveys, pain began on left side of upper back/neck after repeated strenuous seine hauls. ()
## 10560                                                                                                                                                                                                After stripping beds-EE picked up linen and noted pain in rt thumb.
## 10561                                                                                                                                    After student gave lovenox, EE was instructing student on how to engage the saftey feature. Student stuck EE with needle. Thumb
## 10562                                                                                                                                                                                                   After taking a TB shot he became short of breath & eyes swelling
## 10563                                                                                                                                                                     After taking care of patient with draining wound noted itching to a boil like area on abdomen.
## 10564                                                                                                                After taking guest speaker to newport news airport, employee had an accident with state vehicle into a concrete retainer, causing airbag to deploy.
## 10565                                                                                                                                                   After taking linen from linen cart and placing them in linen closet, she felt pain in her shoulder and upper arm
## 10566                                                                                                                                                                       After taking morning meds, pt suddenly and unprovoke slapped EE on the right side of face ()
## 10567                                                                                                                                                                                                 After taking out trash EE jammes left ring finger on dumpster door
## 10568                                                                                                                             After talking with front desk staff employee turned to leave and was poked in the eye by an artificial flower arrangement. Left eye ()
## 10569                                    After the application of being tased about 7 to 8 minutes later I begin to feek light headed and began to sweat. As I tried to take a step I passed out. Don't remember anything after until I came to about a minute later. ()
## 10570                                                                                                                                                                               After the floor was mopped, EE slipped a little & jerked, heard knee pop. Left knee.
## 10571                                                                                                                                   After the process of changing a flat tire for a stranded motorist, EE began feeling a burnign sensation in his lower right back.
## 10572                                                                                                                                      After the sb tournaments, was fixing the field and slammed his toe with a tamp. Tamping clay down at homeplate. Right big toe
## 10573                                                                                                                                                                                                    After toileting and changing client right elbow started hurting
## 10574                                                                                                                               After toileting, EE sat in bedroom area felt as if arm had gone to sleep, feeling of numbness and tingling from elbow to finger tips
## 10575                                                                                                                     After tools demonstration, putting tools in properlocations, dislocated right collar bone breast connection while putting vacuum pump on shelf
## 10576                                                                                                                                                                                               After transporting a patient EE began to feel pulling in lower back.
## 10577                                                                                                                                                                            After trying to counsel an inmate; inmate started to fight officer and injury occurred.
## 10578                                                                                                                                                                             After turning a resident over, EE felt a pain in her lt hand and lt pinky was crooked.
## 10579                                                                                                                                                                After turning on condensate tank pump, steam line gasket blew out. Escaping steam burned both legs.
## 10580                                                                                                                                                                                      After typing all day, EE experience numbness and tingling in hand and fingers
## 10581                                                                                                                  After unarmed self defense training left knee became swollen. Employee had difficulty walking. Unable to bend leg. Employee unsure time of injury
## 10582                                                                                                                                                                                   After unloading trash from truck, EE jumped off tailgate and left knee gave out.
## 10583                                                                                                                                                                               After unsing a needle to draw an inmate's blood eestuck herself with the used needle
## 10584                                                                                                                After using cleaning supplies on unit, skin on arms& arms began itching and feeling like "ticks biting her" spreadng to groin & legs/skin reddened.
## 10585                                                                                                                                                                                         After using computer EE stood and turned to run to phone and twisted knee.
## 10586                                                                                                                    After using restroom, while adjusting clothing, raised up upper body and hit right side/top of head on toiler paper roller (old metal type). ()
## 10587                                                                                                                                                          After utilizing mouse for several extended periods, EE noticed tenderness where wrist rests on wrist pad.
## 10588                                                                                                                                    After vehicle chase defendant juped & ran in woodswhile fighting with defendant, EE received cuts tohands & knees, bruised knee
## 10589                                                                                                                                                                   After venipuncture on inmate, EE was removing needle from vacutainer and stuck left index finger
## 10590                                                                                                             After waiting in lft turn lane for light to turn green dcc began motion with flow of traffic. Car instraight lane turned, hitting passenger side of dc
## 10591                                                                                                                                                                       After walking through the fabrication area of sign plant, his right eye became irritated. ()
## 10592                                                                                                                                          After washing hands in the bathroom sink I slipped while walking to the paper towel dispenser on some unknown material ()
## 10593                                                                                                                                                             After washing his hands, his feet went out from under him & he hit his head on the side of the toilet.
## 10594                                                                                                                                                                         After wearing gloves and hand sweating, employee's hands started to itch and broke out. ()
## 10595                                                                                                                                        After work (it was raining heavily), employee attempted to open car door, foot slipped and she hit head against side of car
## 10596                                                                                                                                                  After working outside, employee felt something crawling on her neck/chest area, brushed and off and felt a sting.
## 10597                                                                                                                              After working shift, went home to sleep, att to get out of bed, felt sharp pain in lower back, pain increased when moving up and down
## 10598                                                                                                                                                                                   After working with metal in shop something fell in eye from clothing or body. ()
## 10599                                                                                                                                                                               After wrkin on unit road squad, he found a tick on him next morning in lower abdomen
## 10600                                                                                                                                            Agent heinrich became overheated and dehydrated during outdoor firearms training, outdoor temperature was 98 degrees ()
## 10601                                                                                                                                                                                    Agent involved in marijuana eradication program. Got severe case of poison ivy.
## 10602                                                                                                     Agent scronce slipped in the grass and fell forward during firearms training at the crossnore range. She said that both knees and her lower back felt sore. ()
## 10603    Agent was investigating suspicious activity and the suspect ran at him striking agent on his left side of head. Corthell attempted to arrest suspect and suspect fought him. Suspect broke free and corthell and suspect fell on ice. Suspect got up and ran ()
## 10604                                                                Agent was participating in special response team tactical training. When exiting the rear of a transport vehicle felt a sharp pain in his lower abdomen area and a lump appeared in that region. ()
## 10605                                                                                                                                                                                            Agent was working a fire scene and something flew into his left eye. ()
## 10606                                                                                                                                                                Agg. Patient was fighting, grabbed arm & punched floor & against wall hurting upper rt side of back
## 10607                                                                                                    Aggitated patient going towards charge nurse when this employee placed her hand on patient's wheelchair to stop him & patient scratched employee on forearm. ()
## 10608                                                                                                                                                                                             Aggitated pt pushed EE, causing EE to fall over chair. Injured lt knee
## 10609                                                                                                                                                               Aggitated pt was throwing items at EE, then pt charged at EE, something popped in EE's right calf ()
## 10610                                                                                                                                                                                                               Aggitated pt, grabbed EE's left arm scratching it ()
## 10611                                                                                                                                                                                                  Aggravated a previous injury to right knee during cpi training ()
## 10612                                                                                                                                                          Aggravated juvenile refused to go to his room, employee was placing him in his room. *** sx 1/11/06 *****
## 10613                                                                                                                                                                                                           Aggresive attitde of patient caused EE to twist left hip
## 10614                                                                                                   Aggresive inmate with hands on use of force-during a use of force on an inmate. Employee phillp boney scraped his hands and was exposed to the inmates blood. ()
## 10615                                                                                                                                                                                          Aggresive patient bit EE on back & punched in her mouth & nose with fist.
## 10616                                                                                                                                                                                      Aggresive patient throwing furniture hit employee in back and head with chair
## 10617                                                                                                                                      Aggresive resident was trying to therapeatically walk, resident raised leg and went to floor causinee to be pulled to ground.
## 10618                                                                                                                                                                              Aggressive client caused cna to fall backwards andhit back on rim of ashe tray stand.
## 10619                                                                                                                                                                                                                               Aggressive client fell on right arm.
## 10620                                                                                                                                                                                                        Aggressive client grabbed staff and scratched his chest. ()
## 10621                                                                                                                                                                                                               Aggressive client hit EE several times on left wrist
## 10622                                                                                                                                                                                              Aggressive client kicked EE in face when he bent down to pick up keys
## 10623                                                                                                                                                                                                              Aggressive client kicked EE on rt thumb, arm and leg.
## 10624                                                                                                                                                                           Aggressive client pushed EE into door & against wall & cabinet. Lower back. **attorney**
## 10625                                                                                                                                                                                                                                     Aggressive patient attacked EE
## 10626                                                                                                                                                                                            Aggressive patient attacked EE--no reason. Left hand/fingers, forehead.
## 10627                                                                                                                                                                  Aggressive patient kicked EE lt-thumb causing it to bend back popped 2-3x EE unable to move thumb
## 10628                                                                                                                                                                        Aggressive patient started kicking at staff hitting staff in lower limbs numerous times. ()
## 10629                                                                                                                                                                                                         Aggressive pt attacked EE, hitting EE in left cheek/eye ()
## 10630                                                                                                                                                                                                             Aggressive pt attacked EE, kicking her to the floor ()
## 10631                                                                                                                                                                             Aggressive pt attacked co-worker, EE tried to assist, pt scratched EE on right hand ()
## 10632                                                                                                                                                                              Aggressive pt bit, kicked & hit staff. Pt placed in Mr. EE re-injured right shoulder.
## 10633                                                                                                                                                                                                                     Aggressive pt hit EE in face multiple times ()
## 10634                                                                                                                                                                                                                            Aggressive pt hit EE in the left eye ()
## 10635                                                                                                                                 Aggressive pt lifted table and tried to throw at EE. EE blocked throw, pt turned table over againstee. Injured shoulder/neck/back.
## 10636                                                                                                                                                         Aggressive pt on hall, pt was hitting wall with fist, EE tried to stopped pt, pt knocked EE to floor 2x ()
## 10637                                                                                                                       Aggressive pt removed from restraints as ordered by treating doctor. Patient continued to be defiant and aggressive. Pt attacked staff/punch
## 10638                                                                                                                                                                                           Aggressive pt swung at EE, Mr Used, injury to right chest, shoulder, arm
## 10639                                                                                                                                                     Aggressive resident attacked EE pulling hair several times and grabbing shoulder. Strain of neck and shoulders
## 10640                                                                                                                                                                                    Aggressive resident running down hall, hit EE knocking her into lockers & floor
## 10641                                                                                                                                  Aggressive resident-jerking/kicking and falling to ground-emp. Held resident to support-resident jerked l. Arm multiple times. ()
## 10642                                                                                                                                                                                                 Aggressive student was being restrained physicallyhit EE in throat
## 10643                                                                                                                                                                       Aggressive student-struck EE several times includebite/scratch wounds on hand/arms/neck/face
## 10644                                                                                                                                                                                                                  Aggrevated shoulder injury during cpr training ()
## 10645                                                                                                                                                                                                                  Agitated patient fell in coffee thrown by patient
## 10646                                                                                                                                                                                              Agitated patient grabbed EE glasses and then scratched EE on the face
## 10647                                                                                                                                                                                    Agitated patient grabbed EE hair pulling head forward. Pain on rt side of neck.
## 10648                                                                                                                                                                           Agitated patient grabbed EE's right hand & dug fingernails on top of EE's right hand. ()
## 10649                                                                                                                                                                                                                               Agitated patient hit her in the nose
## 10650                                                                                                                                                                                                              Agitated patient jerked and pulled employee's leftarm
## 10651                                                                                                                                                                                 Agitated patient rammed wheelchair into employee & bit employee's left forearm. ()
## 10652                                                                                                                                          Agitated patient swung at staff when manuel restraints were utilized. Staff fell to floor rupture of acl graft, left knee
## 10653                                                                                                                                                                                                                      Agitated patient threw scalding coffee on EE.
## 10654                                                                                                                                                                         Agitated patient was fighting when EE attempted tohold her. Left neck and shoulder swollen
## 10655                                                                                                                                                       Agitated pt approached EE swinging fist, EE blocked hit with right hand, causing injury to right ring finger
## 10656                                                                                                                                                                                  Agitated pt attacked EE striking her on the right side. Pt struck EE in rib cage.
## 10657                                                                                                                                                                                                                Agitated pt grabbed staff by necklace jerking neck.
## 10658                                                                                                                                                                                                                  Agitated pt hit EE in back of the neck with fist.
## 10659                                                                                                                                                                                                Agitated pt hit employee in face causing laceration under left eye.
## 10660                                                                                                                                                                                                                        Agitated pt kicked EE in left upper abdomen
## 10661                                                                                                                                                                                                                              Agitated pt kicked EE on right wrist.
## 10662                                                                                                                                                                                               Agitated pt lunged at EE, grabbed EE's right wrist and twisted it ()
## 10663                                                                                                                                                                                                          Agitated pt rolled over staff's left foot with wheelchair
## 10664                                                                                                                         Agitated pt slamming doors, disruptive. EE attempted to catch door pt slammed door on EE rt finger laceration right index finger 1st joint
## 10665                                                                                                                         Agitated pt swung at EE. Cna placed in nci hold pt combative. All parties fell to floor. EE landedon rt knee & then fell back onto bottom.
## 10666                                                                                                                                                                   Agitated resident came into break room and hit EE on right shoulder. Rt upper arm shoulder area.
## 10667                                                                                                                                                                                                       Agitated resident grabbed employee's left wrist and twisted.
## 10668                                                                                                                                                                                             Agitated resident hit EE on right side of the facestriking eyeglasses.
## 10669     Agnes evans was helping clean out a storage closet. A large tv was sitting on the top shelf of a cart (mobile). Agnes touched the cart that the tv was situated on to move the cart in order to clean a shelf that was located against the wall. Before the ()
## 10670                                                                                                                                     Agress kitty qas loose in er. She grabbed the kitty but there was no carrier to place it in so kitty proceeded to bite her. ()
## 10671                                                                                                                                                                                            Agressive patient grabbed table top, swung it and hit EE on left thumb.
## 10672                                                                                                                                                                                                                           Agressive patient pulled EE's thumb back
## 10673                                                                                                                                 Agressive pt started swinging fist at staff. EE manually restraining--pt & EE fell to floor, EE hurt left small toe--hit on chair.
## 10674                                                                                                                                   Agressive resident grabbed EE hair. While EE triedto free resident's hands, resident bit EE on her right hand. 4th right finger.
## 10675                                                                                                                                                                               Agrressive patient bit EE on right thigh, pulled her hair & kicked her in lower back
## 10676                                                                                                                 Aiding equipment operator on a wildfire. While riding in cab of tractor, hit a snag and a small portion of snag broke striking EE in rt lower leg.
## 10677                                                                                                                                                                                                      Air conditioning was out in kitchen, employee now has rash ()
## 10678                                                                                                                                                                               Air from anatomy lab and dead body cooler comes through vents. Constant exposure. ()
## 10679                                                                                                                                            Air handling failure doing experiments because of power outage. Entered the facility to restart air handling system. ()
## 10680                                                                                                                                                                                             Air jet blew dust underneath EE glasses causing irratation to left eye
## 10681                                                                                                                                                                                      Airborn object in eye from foreign material machine while grading peanuts. ()
## 10682                                                                                                                                                Ais kneeling during firearms training; attempting to stand when something popped in both lower back & left knee. ()
## 10683                                                                                                                                           Aisle caging wire-mesh panel fell on head and pushed neck down causing it to fall approx. 3' andhit employee on the head
## 10684                                                                                                                                                       Alarm testing occured during dress time while EE was in her dressroom. Injury in right ear due to the noise.
## 10685                                                                                                                                                  Alex was rotating a sample manipulator when his hand came into accidental contact with an energized conductor. ()
## 10686                                                         Alicia zephir stated-- bent over to pick up highlighter, fell out of chair, caught self with right hand and it jammed all the way to neck, right after the incident, was numb and now cannot turn neck. ()
## 10687                                                                                                                                                                                     Alignment of optical train in raman system and exposure to different distance.
## 10688                                                                                                                                All doors on inmates cells on b-pod opened. Had altercation with inmate that would not return to cell. Inmate hit me in my side. ()
## 10689                                                                                                                               All furniture was move from old office to new but was not place properly therefore I move to where I thought it would be appropriate
## 10690                                                                                                                             All men came down stairwell at the same time and some fell and it started a domino effect and EE was knocked down landing on shoulder.
## 10691                                                                                                                                                       All of sudden while pulling a 300lbs concrete grinder towards him, he felt something tear in his right foot.
## 10692                                                               All staff was assisting in move of bookstore by setting up and restocking. Employee was handling a fixture unit and was not aware of the glass shelving. Shelving fell on her foot and shattered. ()
## 10693        All staff were preparing for our monthly staff meeting. I was walking towards the front of the room, attempting to maneuver around other staff and chairs/tables. My shoe caught the frame at the bottom of the chair and I fell. Hit shoulder and knee. ()
## 10694                                                                                                             All the assigned duties I have been given on gero-pushing/pulling wheelchairs, gerichairs, changing client clothing, changing pampers -strain to neck-
## 10695                                                                                                                        Alledge pain in right arm shoulder, cevical spine & rt wrist. -- this claim is combined with 2 otherrptv motion claims #04071723 & 01058473
## 10696                                                                                                      Alledged injury began in 2007, from improper and poor ergonomics at her workstation. Alleged injury occured from repetitive use for a long period of time. ()
## 10697                                                                                                                                                                               Alledged inmate fell against officers left leg as he assisted another staff member .
## 10698                                                                                                                        Alledges cleaning bathroom floor with bathroom scrubber equipment almost slipped grabbed equipment and was struck by handle in the stomach.
## 10699                                                                                                              Alledges pulling a wardrobe on a furniture dolly and tripped over a stump. The wardrobe fell from the furniture dolly striking him in the right knee.
## 10700                                                                                                                                                                                     Alledges standing on broken piece of concrete, it rolled & he fell into van ()
## 10701                                                                                                                                                                                                                        Alledges trying to control unruly inmate ()
## 10702                                                                                                                                         Alleged insect bite to r shoulder on 9/12/07, states it got worse as days passed. Incident was not reported until 9/17/07.
## 10703                                                                                                                                                                                              Alleged physical assault. EE was talking to another EE outside of job
## 10704                                                                                                                                             Alleged that he cut his thumb on his left hand when getting inmate shaving razors together in preparation for issuance
## 10705                                                                                                                                                                                           Alleged that he was sprayed in the face with oc pepper spray in training
## 10706                                                                                                                                                                                                                       Alleged tick bite. Upper arm skin irritation
## 10707                                                                                                                                                                                                                     Alleged trama to ears due to noise exposure ()
## 10708                                                                                                                                                                                                                 Alleged work-related depression resulting in death
## 10709                                                                                                                                                                                Allegeds while cleaning the lobby area of garinger building she was bitten by ants.
## 10710                                                                                                                                                                                                  Alleges I/m messing with foot rest of wheel chair and hit foot ()
## 10711                                                                                                                                                                 Alleges I/m resisted during use of force kicking, punching me. Inmate then bit me on lt forearm ()
## 10712                                                                                                                                                                           Alleges I/m threw some unknown substance in face, left eye mouth and clothing/glasses ()
## 10713                                                                                                                                                                                                                 Alleges a shelf flipped and fell on right ankle ()
## 10714                                                                                                                                                                                                Alleges accidently struck in knee while in training by co worker ()
## 10715                                                                                                              Alleges after administering an allergy shot; she was disposing of the needle the needle came off the syringe; she was stuck in her left index finger.
## 10716                                                                                                                                                                                                    Alleges after completing training had pain in both her knees ()
## 10717                                                                                                                    Alleges after exiting an electrical manhole, a malfunctioning high-voltage oil switch was re-energized and exploded; burning his face and arms.
## 10718                                                                                                                 Alleges after framing & hanging a door he began picking up tools when he stepped on plug end of drop cord. Cord rolled causing him to loose balanc
## 10719                                                                                                                                    Alleges after handcuffing a hostile subject and assisting him into the patrol car; the arrestee spit in his face and right eye.
## 10720                                                                                                                                                                       Alleges after loading traffic cones on a truck the cones fell off the truck and hit his nose
## 10721                                                                                                                                          Alleges after removing the old refrigerator and moving the replacement refrigerator to the apartment he hurt his back. ()
## 10722                                                                                                             Alleges aligning a laser; not realizing the laser was on she stared at the light while not wearing protective glasses and later felt pain in both eyes
## 10723                                                                                                                      Alleges assembling picnic talbes; he and a co-worker was lifting a table, it slipped; he reached for it and felt a pain in his left shoulder.
## 10724                                                                                                             Alleges assisting a co-worker who administered a shot; she reached for a cotton ball the co-worker turned, the needle scratched her right ring finger.
## 10725                                                                                                                                    Alleges assisting a student athlete picking dumbbells; a dumbbell fell on his ankle and as he walked away he twisted his ankle.
## 10726                                                                                                             Alleges assisting an officer handcuffing a male subject resisting arrest; she pushed putting his hands together and later felt pain in her right wrist
## 10727                                                                                                                                                                                        Alleges assisting handcuffed I/m to floor. Felt sharp pain in lower back ()
## 10728                                                                                               Alleges assisting in a self-defense demonstration; while standing over another officer her knee buckled and she fell back on her buttocks hurting her right knee. ()
## 10729                                                                                                                                                                                        Alleges assisting patient in chair. Unspecified injuries and body parts. ()
## 10730                                                                                                                                                                                                                      Alleges assisting staff to restrain inmate ()
## 10731                                                                                                                                                                                                   Alleges assiting to restrain an assaultive & combative inmate ()
## 10732                                                                                                                                                                                                   Alleges attempting to clean phone & he was bitten by a spider ()
## 10733                                                                                                                                                                                      Alleges attempting to gain control of I/m and struck floor with right hand ()
## 10734                                                                                                                                                                                          Alleges attempting to gain control of I/m lost balance fell on rt knee ()
## 10735                                                                                                                          Alleges attempting to lift files from lower shelf of filing cabinet she felt a pop in her right shoulder with immediate onset of pain. ()
## 10736                                                                                                             Alleges attempting to use a pocket knife to open a box to investigate the contents; while trying to fully open a pocket knife he cut his right finger.
## 10737                                                                                                                                                Alleges attempting to walk down tower 9 stairs & slipped & fell down 4 to 5 steps hitting buttocks, leg, back & arm
## 10738                                                                                                                      Alleges attending a meeting; her left foot hit a step that she didn't see and she fell forward landing on her knees and hurt her right ankle.
## 10739                                                                                                                                                                                    Alleges avascular necrosis of the rt fermoral head f/ performance of wrk duties
## 10740                                                                                                                                                      Alleges being in a conversation with her supervisor when supervisor grabbed her wrist and pulled her downward
## 10741                                                                                                                                                   Alleges being in foot pursuit of a suspect, while running he slipped on wet leaves and tripped over a fall tree.
## 10742                                                                                                                                                 Alleges being on the 3rd rung of a 6ft ladder, holding a 5 lb box when he felt a slight burning in his lower back.
## 10743                                                                                                                                                                        Alleges bending over barrel & felt a pop in right side lower back pain shooting down rt leg
## 10744                                                                                                                                                                                                            Alleges bending over to clean a toilet hurting herback.
## 10745                                                                                                                               Alleges bending over to pick up a box from the floor; as she stood up the cabinet door was open and she hit her head on tthe corner.
## 10746                                                                                                                                                                                       Alleges bending to pick up aerobic mats; he later felt pain in his low back.
## 10747                                                                                                                                                                                                                       Alleges breaking up fight & hands was cut ()
## 10748                                                                                                                        Alleges breaking up rocks with a sledgehammer; with this bare hand he burshed off the area for a closer look and cut his right ring finger.
## 10749                                                                                                                                                                                                               Alleges broke glass to get out the cut down knife ()
## 10750                                                                                                                                                                                                     Alleges carry food tray & 2 liter bottle and tripped & fell ()
## 10751                                                                                                                                Alleges carrying mail and heavy packages; as she walked down the stairs she missed the last step and fell landing on her right hip.
## 10752                                                                                                                                                                                           Alleges cart went down slope fast tried to catch it and twisted ankle ()
## 10753                                                                                                                                                                                                                                     Alleges caught between door ()
## 10754                                                                                                                                                      Alleges chasing a trespass suspect, he jumped down from a loading dock/retaining wall and hurt his right knee
## 10755                                                                                                                                   Alleges cleaing the door window and as her hand wiped near the wooden frame a splinter got caught deep in her left pinky finger.
## 10756                                                                                                                                              Alleges cleaning a cooling tower; he slipped and fell forward, downward landing on his hands hurting his right wrist.
## 10757                                                                                                                                              Alleges cleaning a table with windex squeezed the trigger to spray windex on the table and sprayed the windex in eyes
## 10758                                                                                                                                                                        Alleges cleaning computer desks & table tops bumped leg of computer desks hurting her ankle
## 10759                                                                                                                                                                    Alleges cleaning lucas room-lost footing in water on floor and strained left knee and rt wrist.
## 10760                                                                                                                      Alleges cleaning out a pit under the in-house walk off grid near the food court; as he tried to step out of the pit he turned his left ankle.
## 10761                                                                                                                                                                                   Alleges cleaning the bottom of a storage room doorand hit her elbow on the door.
## 10762                                                                                                                 Alleges cleaning the lab and emptying the trash she tried to stop the door from slamming with her hand while exiting the room but the door slammed
## 10763                                                                                                                                                Alleges climbing up a ladder to the fourth rung the ladder kicked out & he lost his balance & fellhurting his back.
## 10764                                                                                                                                                                      Alleges coming down steps & rt ankle gave out. Fell hurt rt leg, lower rt hip and rt ankle ()
## 10765                                                                                                                                                                                   Alleges coming down steps came down hard on lt foot pain shot through lt knee ()
## 10766                                                                                                                                                   Alleges conducting traning and while in crouched position twisted left knee when attempting to swing open a door
## 10767                                                                                                             Alleges constructing a wooden form to poor concrete for a research project; he tripped on a brace and fell on another brace hurting his left shoulder.
## 10768                                                                                                                       Alleges cutting caulk around a shutter bolt with an utility knife; the knife got caught on the bolt, then it slipped cutting his left thumb.
## 10769                                                                                                                                                                                                       Alleges cutting gras & weed eating & was bit by an insect ()
## 10770                                                                                                                                                                                                      Alleges cutting keys and later felt a chip in his left eye ()
## 10771                                                                                                                                                                                                                          Alleges depression, ptsd, add, anxiety ()
## 10772                                                                                                                     Alleges descending steps in route back to her office after lunch; she was wearing open toe, wedged heel shoes when she turned her right ankle.
## 10773                                                                                                                       Alleges descending the stairs; he grabbed the rail, jumped the last few stairs and fell landing on the floor hurting his left side shoulder.
## 10774                                                                                                              Alleges directing traffic after a basketball game; a driver turned reight instead of left as directed traffic egress hitting him and hurting his legs
## 10775                                                                                                                                                                                                           Alleges doing paperwork, and fell out of broken chair ()
## 10776                                                                                                                    Alleges driving a utility cart to the wachovia field house; while driving, he fell out the door onto the parking lot hurting his left shoulder.
## 10777                                                                                                               Alleges driving an ez-go (utility) when another vehicle passed her on the left causing her to bounce up hurting her back, left arm and left fingers.
## 10778                                     Alleges driving an ez-go to the facilities mgmt bldg in the rain. He struck a yellow parking pole hitting his chest on the steering wheel and scratching his right leg; days later while bending he felt pain in his chest. ()
## 10779                                                                                                                                        Alleges driving back to university after completinan assessment, while stop at traffic light, she was rearended by a truck.
## 10780                                                                                                                                    Alleges driving parking services vehicle and whil e being stopped at a stop sign she was struck frombehind by another motorist.
## 10781                                                                                                                                      Alleges dropping and breaking a glass; she picked up the pieces of broken glass with her hand and cut her right index finger.
## 10782                                                                                                                                                                                                              Alleges during use of force left ankle was injured ()
## 10783                                                                                                                                             Alleges dust mopping the floor, the rubber sole of his shoe caught the floor and the stumbled twisting his right knee.
## 10784                                                                                                                                                                                                      Alleges dust/concrete particles-breathing in concrete dust ()
## 10785                                                                                                                                                              Alleges emptying trash she smelled a strong chemical causing eye irritations and difficulty breathing
## 10786                                                                                                                      Alleges entering the building walked toward the lucas room near the recycling bin; she slipped and fell hurting her left foot and right knee.
## 10787                                                                                                                                                         Alleges entering the second floor entrance of cone ctr, she slipped in a puddle of water hurting her back.
## 10788                                                                                                                                                                                                     Alleges escorting inmate to cell and was head butted in eye ()
## 10789                                                                                                                                                                                   Alleges escorting resisting inmate lost balance when imate fell twisting back ()
## 10790                                                                                                                                                                                                                                       Alleges excessive kyboarding
## 10791                                                                                                                 Alleges exiting a patrol car; he put his left foot out, with his right foot planted he pivoted to exit the car. Later felt pain in his right knee.
## 10792                                                                                                                         Alleges exiting a restroom; as he walked through the doorway there was a difference in the floor level causing him to roll his left ankle.
## 10793                                                                                                                                                                                        Alleges exiting door & door closed on her squeezeing both arms& her side ()
## 10794                                                                                                                                                              Alleges exiting out of stairwell on 1st slipped on water fell, striking upper body & head on steps ()
## 10795                                                                                                                                                                Alleges exiting the trashroom, EE tripped on the floor ledge/lip and fell landing on both her knees
## 10796                                                                                                                                                                                                            Alleges exposed to inmates blood during use of force ()
## 10797                                                                                                                                                                             Alleges falling on way back to the e-z go and fell fracturing two ribs on the rt side.
## 10798                                                                                                                                      Alleges finishing drywall; after completion he was cleaning the finishing knife and scraped the end of his left index finger.
## 10799                                                                                                                               Alleges first landing on steps, no lighting missed last 2-3 steps fell on left ankle and knee onto side on top of wet floor sign. ()
## 10800                                                                                                                           Alleges folding the legs of a plastic table; he arm curled the table and lifted it onto the cart alone. The next day his back felt sore.
## 10801                                                                                                                                        Alleges folding up a hand truck after use; the hand truck caught, pinched and cut a flap of skin on her left middle finger.
## 10802                                                                                                                                                 Alleges folding up a hinged table to load it on the truck when the table folded together and caught his left hand.
## 10803                                                                                                                Alleges gathering trash bags, putting them on ez-goto discard in the dumpster, she was putting a bag of trash in the dumpster and later felt a pain
## 10804                                                                                                                                                                         Alleges getting down off forklift and felt pain in his lower back, groin and right leg. ()
## 10805                                                                                                                                                            Alleges getting supplies and as he was picking up 5 gallons of floor was he strained his chest muscles.
## 10806                                                                                                                                                                                  Alleges going down stairs milled last 2 steps landed on left side and shoulder ()
## 10807                                                                                                                Alleges going to the landfill; they struck an unmarked speed bump throwing him up, his right hand hit the window handle and he landed on his wrist.
## 10808                                                                                                                                                                                                                 Alleges going up stairs and bumped knee on wall ()
## 10809                                                                                                                               Alleges grinding metal using a grinding wheel, a piece of grinded metal few out of the grinding wheel and puntured his left forearm.
## 10810                                                                                                                                                                                                 Alleges handcuffing a resistant inmate and struck knee on floor ()
## 10811                                                                                                                                                                                                  Alleges handling animal feed; later his left eye started to hurt.
## 10812                                                                                                                                                   Alleges having a heated email exchange w/ manager; he got light headed and experienced increased blood pressure.
## 10813                                                                                                                 Alleges he and a co-worker were loading a pressure washer, his co-worker lost his grip and the weight shifted to him causing him to hurt his back.
## 10814                                                                                                                            Alleges he has handing/passing a mattress up to 11th floor, no one was there to get it, mattress fell, EE fell back landing on lt wrist
## 10815                                                                                                                   Alleges he stepped in a concredt hole while walking behind holhouser hall; his boot got stuck and as he pulled it out he twisted his right knee.
## 10816                                                                                                                                                            Alleges he was climbing on a ladder to doa roof inspection a dog bit him on his lt leg behind his knee.
## 10817                                                                                                                  Alleges he was doing training & he & another ofcr were practicing bent wrist take down & he was trying to get back up & his knee hit other ofcr..
## 10818                                                                                                                                                               Alleges he was entering id block when control roomofficer closed bar door, striking injured employee
## 10819                                                                                                                                                                                            Alleges he was escorting a nurse & inmate sprayed liquid in his face ()
## 10820                                                                                                                Alleges he was escorting an inmate with food for pert team to the front gate when he stepped in a crack on the sidewalk. He was walking beside cart
## 10821                                                                                                                                                         Alleges he was helping a handcuffed arrest subject into the patrol car; the arrestee spit on his left arm.
## 10822                                                                                                                         Alleges he was in training simulating placing an inmate back in his cell when his rt foot got caughbetween 2 mats and twisted hit rt knee.
## 10823                                                                                                             Alleges he was standing between two bldgs while a malfunctioning oil switch exploded when re-energized; thrown onto a retaining wall hitting his head.
## 10824                                                                                                                                                                                                                Alleges hit head on arm of spotlight on tower #2 ()
## 10825                                                                                                             Alleges holding a ladder outside a manhole for exiting co-workers; a malfunctioning oilswitch was re-energized and exploded; burning his face and arms
## 10826                                                                                                                                                                                                                           Alleges hurt back pulling a stretcher ()
## 10827                                                                                                                                                                                                                                  Alleges hurting back while filing
## 10828                                                                                                                                                                                                      Alleges injured during a response to a emergency situation ()
## 10829                                                                                                                                                                                                                   Alleges injured durn anticipated use of force ()
## 10830                                                                                                                                                                                                        Alleges inmate became combative and assautive with staff ()
## 10831                                                                                                                                                                                                                        Alleges inmate pushed her into the fence ()
## 10832                                                                                                                                                                                                                     Alleges inmate reach out of cage and hit me ()
## 10833                                                                                                                                                                                                                            Alleges inmate struck staff on wrist ()
## 10834                                                                                                                                                                                                              Alleges inmate threw a cup of feces in facial area ()
## 10835                                                                                                                  Alleges installing new electrical lines and lock nuts onto a junction box; he contacted a sharp edge on the junctioin box cutting his right hand.
## 10836                                                                                                                                                                Alleges installing signs in parking lot 16. Alleges he was bitten several time on his hands by ants
## 10837                                                                                                                                                       Alleges installing signs in parking lot; ants crawled onto his shoe and bit his left ankle causing swelling.
## 10838                                                                                                             Alleges installing/moving furniture; while cutting the metal strap from a box with a pocket knife, the metal strap snapped back cutting his right hand
## 10839                                                                                                                                                                                               Alleges jogging during pt and next day noticed minor foot discomfort
## 10840                                                                                                                 Alleges jumping into the air during her part in a skit; she tripped over her foot as her shoes were not tied tight and she twisted her left ankle.
## 10841                                                                                                                                                                                           Alleges knee bent backwards during training he & another officer fell ()
## 10842                                                                                                             Alleges leaving the room to go to a meeting; she twisted her foot, fell into the copier inj. Rt ankle, knee, head, waist. Cracked cuboid bone, rt foot
## 10843                                                                                                                        Alleges leaving work, walking down the stairs, heelof shoe got caught in her skirt causing her to faland hurt her left shine and lower leg.
## 10844                                                                                                                                                                                             Alleges left knee gave out while trying to sit down in chair & fell ()
## 10845                                                                                                                                            Alleges leg slide to right, lost balance & lt kneehit the floor, left hand inside got scuffed up from hitting the floor
## 10846                                                                                                                                                                                     Alleges lifted off the ground & head hit the mat during a training excerise ()
## 10847                                                                                                                                   Alleges lifting a fold up seat to enter a parking services vehicle; she dropped the seat on her foot hurting her left great toe.
## 10848                                                                                                                Alleges lifting a non-mobile equipment rack, with computers on it, sliding it two feet to the side; a day later he felt pain in his right shoulder.
## 10849                                                                                                                                                                                 Alleges lifting a podium onto a two foot high stage alone and he bruised his ribs.
## 10850                                                                                                                                                            Alleges lifting a press row taable and the next day the felt pain in his right shoulder and lower back.
## 10851                                                                                                                 Alleges lifting a trash can up from the concrete holder when the can slipped catching his right pinky finger between the trash can and the holder.
## 10852                                                                                                                                                                     Alleges lifting and moving a file box full of files when she felt a pull in her lower back. ()
## 10853                                                                                                                                 Alleges lifting and moving a hospital bed; his left hand touched a sharp edge of the metal bed rail cutting his left pinky finger.
## 10854                                                                                                                                                Alleges lifting and moving computer equipement from atkins l42 to atkins 123 and pulling a musclein his lower back.
## 10855                                                                                                                                            Alleges lifting and moving metal paint stands from one side of room to the other when he strained his left shoulder. ()
## 10856                                                                                                                                    Alleges lifting and moving/relocating a door alone to the shop area to replace the glass; he later felt pain in his lower back.
## 10857                                                                                                                                                 Alleges lifting and picking flat tubs with envelopes and heavy envelopes she strained her right wrist and hand. ()
## 10858                                                                                                                                                               Alleges lifting and sorting mail; causing pain in her left shoulder, neck and between her shoulders.
## 10859                                                                                                                                                                                                   Alleges lifting arm to point at co-worker and felt pain in back.
## 10860                                                                                                                                                        Alleges lifting bags of bedding and animal feed tofill bends/barrels. He later felt pain in his lower back.
## 10861                                                                                                                                     Alleges lifting battery booster up to the hood of a truck to jump the truck when he felt something pull in his right shoulder.
## 10862                                                                                                                                                                                 Alleges lifting glass panels into dumpsters; he later felt pain in his lower back.
## 10863                                                                                                                                                                                            Alleges lifting parcels from mail hampers and moving containers of mail
## 10864                                                                                                                            Alleges lifting rod maching alone to load onto truck to return it to the shop straining his back; he later felt pain in his lower back.
## 10865                                                                                                                                                     Alleges lifting tables and chairs and doing room set ups throughout his shift and felt pain in his lower back.
## 10866                                                                                                                                            Alleges lifting various items during relocation from old shop to building j inflamming the ligament of his right wrist.
## 10867                                                                                                                                                                                             Alleges making rounds - slipped & fell on bottom stair on right leg ()
## 10868                                                                                                                                                                                   Alleges missed step on stairwell & fell backwards on back & slide down stairs ()
## 10869                                                                                                                           Alleges months of stressful work conditions and circumstnces out of her control have left her psychologically unable to operate at work.
## 10870                                                                                                                               Alleges mopping ladies rest room and slipped on floor-attempted to break her fall and her eyeglasses struck side of face causing cut
## 10871                                                                                                                                                                                                 Alleges mopping water, slipped hit her head, right side on step ()
## 10872                                                                                                                                                                                             Alleges moved patient down stairs went home felt pain in lower back ()
## 10873                                                                                                                                                     Alleges moving a box of surplus computer speakers; the box slipped from his hand and landed on his right foot.
## 10874                                                                                                              Alleges moving a box that turned out to be heavy hurting her back; later she tried lifting the samebox using her foot; the box fell on her left foot.
## 10875                                                                                                              Alleges moving a couch to load onto a truck for reupholstering; he planted his feet twisting to movethe couch and a pop occurred in his groin muscle.
## 10876                                                                                                                                                        Alleges moving a desk from a student room; he lifted the desk to place it on a dolly and strained his back.
## 10877                                                                                                                      Alleges moving a desk; the desk got caught on the end of the bed and when it was freed it dropped on his feet hurting both of his great toes.
## 10878                                                                                                              Alleges moving a manlift the scene room. It tussled with the lift as ittried to tip at the door threshold. Later felt pain in his back and right hip.
## 10879                                                                                                              Alleges moving a sprinker when while watering the college of education lawn; he slipped on wet grass landing on his buttock and later felt back pain.
## 10880                                                                                                                             Alleges moving a surplus desk that was missing a leg. When the desk was placed down, the corner without a leg struck his rt great toe.
## 10881                                                                                                                               Alleges moving a toilet while not wearing gloves; his hand brushed against a chip on the side of the toilet cutting his right thumb.
## 10882                                                                                                                Alleges moving a wooden pallet; as he tried to maneuver the pallet for a better grip a corner slipped and fell landing on his foot hurting his toe.
## 10883                                                                                                                      Alleges moving artificial tree plants across room in salon after commencement he must have turned/ twisted wrong later felt pain in his back.
## 10884                                                                                                                Alleges moving boxes alone on sunday, a non-workday, to transfer to another building; she lifted a heavy box into her car and hurt her right elbow.
## 10885                                                                                                                                                                                                                                 Alleges moving carts & cut hand ()
## 10886                                                                                                                                                                                  Alleges moving furniture in phase v when back pressure was applied to right wrist
## 10887                                                                                                                 Alleges moving in a wheelbarrow the wheelbarrow sid towards a vehicle he grabbed the wheelbarrow to avoid it hitting the vehicle felt pain in back
## 10888                                                                                                                                                                                                    Alleges moving linen bags when he felt pain in hisleft shoulder
## 10889                                                                                                                             Alleges moving some mulch and lying down on the mulch while trying to rethread piping together; later his back was red and very itchy.
## 10890                                                                                                                               Alleges moving tables from the food court area in preparation for a basketball game; he later felt pain in his lower back and groin.
## 10891                                                                                                                                                     Alleges moving tables outside the building for a event; a yellow jacket bee stung him on the left index finger
## 10892                                                                                                                       Alleges moving woodmaking equipment on a dolly; the band saw fell off and the tried to lift it from the floor alone and hurt his lower back.
## 10893                                                                                                                                                                                                                        Alleges moving/lifting and unpacking boxes.
## 10894                                                                                                                                                Alleges on back patio washing out trash can. Emptied water, stepped off curb and twisted ankle. Sprained left ankle
## 10895                                                                                                               Alleges opeing the door of her office when a wooden file folder and some journals fell off the top of the bookcase striking her head and left wrist.
## 10896                                                                                                                                                                               Alleges opening a cabinet door in the kitchen area to obtain sugar for a cup of tea.
## 10897                                                                                                                                    Alleges ounting a computer to an lcd; while latching and sliding the pc in place on the back of the lcd his finger was pinched.
## 10898                                                                                                             Alleges packing and taping boxes; using a putty knife/paint scraper to cut the tape, he accidently stabbed himself in his left arm cutting his forearm
## 10899                                                                                                                                                                                                              Alleges painting in enclosed area with no ventilation
## 10900                                                                                                                    Alleges painting the electric chase under the front end of table. As he attempted to reach aroundthe table ? The paint bucket, his back popped.
## 10901                                                                                                                 Alleges parking her car and walking down the hill to the college of education building; she slipped and fell hurting her left knee and left ankle.
## 10902                                                                                                                 Alleges participating in a rafting team; he was partially thrown out of the raft and his left leg was caught under the seat hurting his left knee.
## 10903                                                                                                                                                              Alleges participating in firearms training and complained of redness and burning on face, neck & ears
## 10904                                                                                                                                                                                                               Alleges participating in meeting with his supervisor
## 10905                                                                                                                                                                                            Alleges passed out in control booth due to heat & exterminator fumes ()
## 10906                                                                                                                                                                              Alleges patrolling a parking lot and was stung by a bee on the lower leg (lower calf)
## 10907                                                                                                                                                          Alleges performing cleaning duties using latex gloves, she noticed blisters on her top left hand and arm.
## 10908                                                                                                                              Alleges performing preventative maintenance on an emergency generator; a hose ruptured releasing steam that burned his right forearm.
## 10909                                                                                                                                            Alleges performing tactics when knee & ankle got twisted when I went down, felt several pops & severe pain in left knee
## 10910                                                                                                             Alleges picking up cardbaord from under a stairwell to use to cover the floor for a project; he raised up, hit his head on the stairwell causing a cut
## 10911                                                                                                                                                                                           Alleges picking up trash and was stung by a bee on his left ring finger.
## 10912                                                                                                                                         Alleges pitching during softball batting practice; the batter hit the ball and the ball struck employee in the right shin.
## 10913                                                                                                                                    Alleges possible exposure to blood when droplets of water fell on EE from an individual washing blood off face from nose bleed.
## 10914                                                                                                                                                      Alleges pouring chemicals in a floor machine; he then noticed the right side of his mouth/lips begin to swell
## 10915                                                                                  Alleges preparing to heat water in a coffee pot, when a box of mini spiral notebooks fell down from atop a cabinet above the counter and hit her on the left side of her head. ()
## 10916                                                                                                                        Alleges preparing to load surplus equipment onto a truck; he raised the truck door and it sprung down hitting him on the crown of his head.
## 10917                                                                                                                                                         Alleges preparing to sit in his chair; he missed the chair and landed on the floor hurting his lower back.
## 10918                                                                                                                                                            Alleges preparing to sit in his chair; he tripped, missed the chair and fell hurting his neck and back.
## 10919                                                                                                                           Alleges pulling a table cart with tables; when he tried to turn the cart, it began to flip and as he tried to catch it he hurt his back.
## 10920                                                                                                                                                       Alleges pulling a table not realizing the table top was broken; the top fell off hitting her left lower leg.
## 10921                                                                                                                           Alleges pulling out day lillies and disturbed an underground bee nest; the bees swarmed and he was stung on his right arm and left hand.
## 10922                                                                                                               Alleges pulling parts out of computer in preparat-on for surplus, as he reached into a computer a sharp edge inside computer cut his right middle fi
## 10923                                                                                             Alleges pulling patient seated in wheelchair to get in exam room; she tried to slide the chair sideways to get around corner and felt a pull in her upper left arm. ()
## 10924                                                                                                                                          Alleges pulling weeds without gloves; he touched an ant mound that he didn't see and was bitten by ants on his left hand.
## 10925                                                                                                                     Alleges pursuing a suspect that was fleeing and resisting arrest; when he tackled the suspect to facilitate arrest he strained his right knee.
## 10926                                                                                                                                                         Alleges pushing a chair cart into place beside another cart, the cart bounced back onto his right leg-shin
## 10927                                                                                                                                                  Alleges pushing a drywall cart, while wearing steel toe boots, and rolled the cart wheel over his left small toe.
## 10928                                                                                                               Alleges pushing a loaded cart to and from other locations; the next day a blood vessel in her rt eye burst and she felt pain in her rt rotator cuff.
## 10929                                                                                                                  Alleges pushing chair cart from a flat floor surface to carpeted area when the cart got stuck he pushed it hard, the cart tilt & fell on lt ankle
## 10930                                                                                                                                                                                                                        Alleges pushing door & finger got caught ()
## 10931                                                                                                                                         Alleges pushing furniture and vacuuming and later felt pain in her left arm. Also indicated swallowing is very painful. ()
## 10932                                                                                                                                                                                                                     Alleges pushing on door to attempt to close ()
## 10933                                                                                                                                                   Alleges pushing/rolling a trash dumpster with four co-workers; she slipped on ice and fell hurting the left hip.
## 10934                                                                                                                                                                                                            Alleges putting stripper down on the floor & slipped ()
## 10935                                                                                                                                                                                 Alleges rash on lip several days after weed eatinglater developed into open wound.
## 10936                                                                                                              Alleges reaching through the metal security cover to retrieve change; a peice of metal barb, that was sticking up, puntured his right hand and wrist.
## 10937                                                                                                                       Alleges reaching under a computer; he reached underneath the computer and slide his hand on the junction box cutting his right pinky finger.
## 10938                                                                                                                                                                                                            Alleges recieved left bite from inmate on left wrist ()
## 10939                                                                                                                                Alleges rehanging a mirror after painting a room; his right hand slid down a sharp edge of the mirror cutting his 3rd right finger.
## 10940                                                                                                                                                            Alleges relocating chairs & while pulling down trailer door he strained his lt shoulder and upper back.
## 10941                                                                                                                                   Alleges removing a sink for replacement; while removing a sink he was lifting and tugging alone and later felt pain in his back.
## 10942                                                                                                              Alleges removing and loading wood onto a john deere gator; caught his hand between a piece of wood and the trailor bed hurting his left middle finger
## 10943                                                                                                                                                                                                     Alleges removing ceiling tile; some debris fell into left eye.
## 10944                                                                                                                                                                       Alleges removing ceiling tiles; debris from the ceiling tile fell off into his hair and eye.
## 10945                                                                                                                Alleges removing dimmer switch in the ceiling w/o gloves. Holding onto a conduit he tried to turn wire nut. It fell. He touched live wire w/ finger
## 10946                                                                                                                Alleges removing housekeeping carts and roll barrel from the elevator; the elevator began to close and hit her on the left temple area of her head.
## 10947                                                                                                                    Alleges removing lock set for repair. He pushed hard to open case as it popped open his hand slipped & slid down a sharp piece on metal backing
## 10948                                                                                                                                              Alleges removing trash from roller barrell-barrellfell over and dolly struck EE on feet causing EE to fall backwards.
## 10949                                                                                                                                                                                    Alleges removing trash-head, shoulder and hand struck by falling bag of trash\\
## 10950                                                                                                                                                         Alleges repair a lock; he bumped his finger on a sharp edge inside the lock cutting his right index finger
## 10951                                                                                                                                                                     Alleges repairing a bathroom sink in witherspoon hall; he stood up and twisted his right knee.
## 10952                                                                                                                                                     Alleges repairing roof leaks; he stepped back into a pile of roofing rock at an angle twisting his right knee.
## 10953                                                                                                                                                                Alleges repetitive motion involved with collectingmoney at parking deck booth. Strain to left wrist
## 10954                                                                                                                             Alleges repetitive motions of typing, use of a mouse and lifting books have caused her pain in her left thumb and right middle finger.
## 10955                                                                                                                                      Alleges replacing a water valve in the ceiling; he was lowering the old valve alone and later felt pain in his left shoulder.
## 10956                                                                                                                         Alleges replacing/chaning ceiling tiles, breathing in dust through the dust mask causing him to sneeze and he later fel pain in left side.
## 10957                                                                                                                                                                                             Alleges resetting toilet reached in to push button head struck pipe ()
## 10958                                                                                                                         Alleges returning bedroom furniture to dorm rooms after carpet installation & while he was lifting a wardrobe he felt a pull in this back.
## 10959                                                                                                              Alleges returning to the office after assignment; initiating a left turn on his per bicycle, the pedal hit the ground, he fell hurting is right wrist
## 10960                                                                                                                     Alleges riding in a ez-go returning the shop from working at the reese bldg, he believes he was bitten my an unknown insect, welping on rt arm
## 10961                                                                                                                Alleges rolling a studio desk on a cardboard path they set-up over the lawn; the cardbaord slipped &she fell. She later felt pain in her left knee.
## 10962                                                                                                                                                                                                        Alleges rolling up water hose and dislocated right shoulder
## 10963                                                                                                                                                                           Alleges running downhill to his patrol car causing exacerbation of his plantar fascitis.
## 10964                                                                                                                                     Alleges running to her car; she didn't see the curb, she tripped on the curb skinning/bruising both her knees and right elbow.
## 10965                                                                                                                                      Alleges sanding wood cabinets; she rubbed her hand across the cabinet after sanding it and got a splinter in her left finger.
## 10966                                                                                                                                                                          Alleges setting up a flip chart easel; the hinge caught her left index finger cutting it.
## 10967                                                                                                                                                                                                   Alleges setting up platform, felt pain in the base of her spine.
## 10968                                                                                                                                       Alleges shaking acan of adhesive to repair a transition strip; the can ruptured and the adhesive sprayed into his right eye.
## 10969                                                                                                                                                                                                                      Alleges she picked up trash bag and felt pain
## 10970                                                                                                                                                                                           Alleges she placed hand on her lunch bag & hand was covered with ants ()
## 10971                                                                                                                                                                          Alleges she thinks she was lifting a bag of bottles (plastic) adn later had back pain. ()
## 10972                                                                                                              Alleges she unhooked a bungee cord that was securing the books to a cart; she lost her grasp of the bungee cord, it hit her face and she bit her lip.
## 10973                                                                                                                                                                                             Alleges she was emptying bucket of water and pulled muscle in shoulder
## 10974                                                                                                                                    Alleges she was existing the elevator on the 3rd floor she slipped on some water and fell bruising her right hand and shoulder.
## 10975                                                                                                                                                                                 Alleges she was moving a mop bucket full of water and later felt pain in her back.
## 10976                                                                                                                                                                Alleges she was opening a window by pushing it out and the window shut back on her lt index finger.
## 10977                                                                                                               Alleges she was participating in training at pied-mont corrt inst. Fellow officer flipped her off & landed on her side w/her elbow sticking in side.
## 10978                                                                                                        Alleges she was sitting at her desk typing, droppeda piece of paper, leaned forward, pick it up, chair rolled out from under her, fell, lt foot bend backwa
## 10979                                                                                                                     Alleges she was sitting on the floor trying to unjam a copier, 13 sheets of paper floew out from machine and hit EE in corner of her left eye.
## 10980                                                                                                                Alleges she was transcribing oreders for a doctor and- she bent over to retreive papers from a file cabinet and when she stood up she hit her head.
## 10981                                                                                                                        Alleges she was trying to remove a paper jam from a copier; she opened a compartment and caught her left hand in it hurting her left thumb.
## 10982                                                                                                                                                                               Alleges she was typing started rubbing her arm & noticed it was bruised & swollen ()
## 10983                                                                                                                Alleges she was walking from the muster to the employee parking lot when she fell twisting her rtankleon the concert near the handicap parking spac
## 10984                                                                                                                            Alleges she ws pushing a trash dumpster real hard but the dumpster did not move; she felt her chest pop and later felt pain in her back
## 10985                                                Alleges sitting in a disability transport vehicle while awaiting the arrival of a pickup when her vehicle was struck by a vehicle attempting to park in the adjacent space hurting her neck, back and right leg. ()
## 10986                                                                                                                Alleges sitting in her desk drinking a cup of coffee; the chair leg broke off and she fell on the floor in a sitted position hurting her lower back
## 10987                                                                                                                 Alleges sitting on the floor packing old books into boxes and getting up/down, stepping over and aroung boxes, later felt pain in lt knee and calf
## 10988                                                                                                                           Alleges sitting/waiting/driving her patrol car &d having carbon monoxide exposure causing her to getdizzy, nauseous and have a headache.
## 10989                                                                                                                                                                                                                Alleges slip and fell down stairs water on floor ()
## 10990                                                                                                                                                                                                                                Alleges slipped in water and wax ()
## 10991                                                                                                                                                                                                                              Alleges slipped on liquid on floor ()
## 10992                                                                                                                                                                                                                          Alleges slipped on liquid on stairwell ()
## 10993                                                                                                                         Alleges spider bit him while in control room on left outer thigh. Didn't report before leaving b/che thought he had bumped into something.
## 10994                                                                                                                                                                                                                      Alleges spit in face & both eyes by inmate ()
## 10995                                                                                                                                                             Alleges spreading mulch in wooded area came in contact with something that caused a rash on both hands
## 10996                                                                                                                                           Alleges stacking light fixture covers on shelving. Her finger touched sharp edge of covers and cut her left ring finger.
## 10997                                                                                                                                     Alleges standing in a chair replacing an ac/heat vent grill; when she stepped down from the chair she twisted her right ankle.
## 10998                                                                                                                           Alleges standing in a recycle container to compact it; his weight shifted the container slid, he hit his head and shoulders on the wall.
## 10999                                                                                                                                                                                                Alleges standing near new playing fields and was biten by a spider.
## 11000                                                                                                                 Alleges standing on a 2 drawer lateral filing cabinet to hand a shelf on the wall; lost her foot-ing and fell landing on her buttock, hurting back
## 11001                                                         Alleges standing on an aluminum ladder while flushing copper lines in the ceiling and when he rotated his body left to right, the ladder folded up causing him to fall hitting his head and left elbow. ()
## 11002                                                                                                                         Alleges start smelling paint. Asked Ms. Mclean do she smell paint, she said no. Start feeling bad, dizzy room very light breathing hard ()
## 11003                                                                                                            Alleges steering a stalled vehicle in tow; the towing vehicle slowed to go over a bump, then sped up jerking the vehicle in tow hurting his back & neck
## 11004                                                                                                                                                                                                    Alleges step down off stairs & stepped wrong way & knee gave ()
## 11005                                                                                                                                                                                                      Alleges step over cement & down on a rock twisting left ankle
## 11006                                                                                                                                                                                                          Alleges stepped off of a box stool and sprained rt ankle.
## 11007                                                                                                                                                                                                               Alleges stepped on metal pipe twisting her ankle. ()
## 11008                                                                                                                                                                                                 Alleges strain muscle & was injured while shooting at the range ()
## 11009                                                                                                                                                                       Alleges stretching above his head to reach a smokedetetor and felt sharp pain in lower back.
## 11010                                                                                                              Alleges stripping a floor; cord got caught in buffing pad, floor was slippery, the machine got away hitting her lft hip and jerking her rgt shoulder.
## 11011                                                                                                                     Alleges stripping/buffing floors. While using wet vacuum to pick up stripping solution his hands started tingling & later his hands felt numb.
## 11012                                                                                                             Alleges supervising during a power outage; a malfunctioning oil switch exploded when re-energized; days later he had chest pain and breathing problems
## 11013                                                                                                                   Alleges sweeping the marble strairs; she lost her balance and fell down the stairs bruising her right ankle, foot, knee, both arms and her back.
## 11014                                                                                                                                                   Alleges tearing off a trash liner from a roll and hit her hand on a trash barrel jammin gher right index finger.
## 11015                                                                                                                                                                                                  Alleges that bee sting to inner rt arm occured while on sidewalk.
## 11016                                                                                                                                                                           Alleges that felt a pull in back when climbing into the cab of a truck for inspection ()
## 11017                                                                                                                                                                     Alleges that foot began to hurt while walking on campus as a ticket writer. Strained left foot
## 11018                                                                                                                                             Alleges that going down stairs in control station to bathroom, misjudged steps, slipped & fell down the rest of steps.
## 11019                                                                                                                      Alleges that her diagnosis currently of carpal tunnel syndrome has been caused by her work & has been ruled permanently and totally disabled.
## 11020                                                                                                                                                      Alleges that over time working operations and operating locking devices she developed carpal tunnel syndrome.
## 11021                                                                                                                  Alleges that she was walking to muster from the employee parking lot. When she fell twisting her rt ankle on the concrete near the handicap space
## 11022                                                                                                                                               Alleges that while locking the van door after inmate had gotten off she hit rt middle finger on the side of the van.
## 11023                                                                                                                        Alleges that while supervising inmates in welding room at cannery, he apparently burnt eyes while looking at the work being done by inmates
## 11024                                                                                                                Alleges that while working c-3 area he was leaningagainst the pod slider door frame when he alleges the door closed suddenly catching his lft hand.
## 11025                                                                                                                                                  Alleges that while working on razor wire on medium yard razor and struck Mr. Cooke on back of hand causing a cut.
## 11026                                                                                                                                                          Alleges throwing a bag of trash into the dumpster; the bag caught his left thumb and pulled it backwards.
## 11027                                                                                                                                                   Alleges throwing glass into the dumpster, the glass broke cutting the base of his index finger on his right hand
## 11028                                                                                                                                                                                                                                    Alleges thumb closed in door ()
## 11029                                                                                                                                                  Alleges to regain control of inmate that was resisting, kicking, punching, biting. He injuried his upper back. ()
## 11030                                                                                                                                                                      Alleges transporting boxes of 1098t forms using a hand cart; she later felt pain in her back.
## 11031                                                                                                                                                                                                          Alleges transporting inmate on stretcher and hurt back ()
## 11032                                                                                                             Alleges trimming lirope with hand held loppers (pruner); he held the lirope blades with his left hand, the pruner slipped cutting his left ring finger
## 11033                                                                                                                        Alleges trimming the edge of a lamininate on a shelf; the router got caught, when he pushed it, it slipped and cut his right middle finger.
## 11034                                                                                                                                                                                                                                   Alleges tripped on metal beam ()
## 11035                                                                                                                                              Alleges tripping over wooden pallet outside the security office falling and striking lt shoulder arm, knee, and head.
## 11036                                                                                                                                                                                                                     Alleges trying to restrain combative inmate ()
## 11037                                                                                                                                                                                                                               Alleges trying to restrain inmate ()
## 11038                                                                                                                                                                                                     Alleges turned while walking & got sharp pain in left ankle ()
## 11039                                                                                                                                                                                    Alleges twisted lower back while lifting basket of mail to place on mail gurney
## 11040                                                                                                                                                                                                                           Alleges twisted lt knee and fell down ()
## 11041                                                                                                              Alleges unloading a 35 lb paper, as the truck door closed it hit the paper roll; he lost his balance and fell off the dock, landing on his left side.
## 11042                                                                                                                                          Alleges unloading a linen truck on a loading dock and dropped the truck tailgate onto his lt hand and caught his rt hand.
## 11043                                                                                                             Alleges unloading linen bins off a truck parked on a slope; a bin rolled back, he jumped off the truck, tripped and fell onto a curb hurting his back.
## 11044                                                                                                                                                                            Alleges use of force with when the inmate was taken to the floor & fell on his wrist ()
## 11045                                                                                                                                                                                                        Alleges using a burnishing machine while in a bentposition.
## 11046                                                                                                                                                            Alleges using a computer for 30 years causing her to be recently diagnosed with carpel tunnel syndrome.
## 11047                                                                                                                                                                        Alleges using a crowbar to remove nails from a built in closet and strained shoulder/chest.
## 11048                                                                                                                    Alleges using a low speed buffer to strip wax; he slipped and fell with his legs open in a split position hurting his left hip, knee and ankle.
## 11049                                                                                                                                                                  Alleges using a mop, bening over, scaping spots onfloor and using wet vac, felt pain in shoulder.
## 11050                                                                                                                Alleges using a nail gun to hang trim board; he was holding the trim, when the nail released it went through the trim and stuck into his left hand.
## 11051                                                                                                                                                     Alleges using a wrench tol loosen a large bolt on the basket ball goal and later felt pain in his right wrist.
## 11052                                                                                                                                                                                    Alleges using computer-excessive use of mouse produced tingling in both wrists.
## 11053                                                                                                                  Alleges using her personal x-acto knife instead of the scissors to cut out covers for dvd cases; the x-acto knife slipped cutting her left thumb.
## 11054                                                                                                                            Alleges using stripping compound for stripping and mopping the floor when he slipped and fell hurting his lower back and left elbow. ()
## 11055                                                                                                                                                                                             Alleges walked through gate, officer shut the gate on his back&hand ()
## 11056                                                                                                                                                                                     Alleges walking & foot got caught on the waxed floor causing kneww to twist ()
## 11057                                                                                                                                                                                                                      Alleges walking & snagged forearm on fence ()
## 11058                                                                                                                                 Alleges walking across the floor; she slipped in awaxy solution and landed on her right side hurtin g her right fingers and wrist.
## 11059                                                                                                                  Alleges walking along the brick walkway behind the library; she stepped on the side of a brick, turned her ankle and fell hurting her right knee.
## 11060                                                                                                                   Alleges walking and stepping on a tree seed pod/burr; avoiding a fall she twisted her left ankle, strained her back and twisted her right ankle.
## 11061                                                                                                                       Alleges walking and talking with a co-worker enroute to a clan a room when she struck a thermostat cover hurting her right shoulder bone. ()
## 11062                                                                                                                                                                                                                               Alleges walking and twisted ankle ()
## 11063                                                                                                                           Alleges walking away from the building after unlocking the door and heading to the smith building she tripped and fell forward into knee
## 11064                                                                                                 Alleges walking down a spiral staircase when he lost his footing and slipped; he grabbed the railing and caught himself from falling but twisted his left knee. ()
## 11065                                                                                                                 Alleges walking down grassy hill in parking lot; as he bagan to pass the vehicle keys to a co-worker, he slipped and fell hurting his right ankle.
## 11066                                                                                                                              Alleges walking down lecture room steps, not realiz-ing there was another step she tripped and fell landing on her right arm and hip.
## 11067                                                                                                                                                                                                                      Alleges walking down stairs slipped & fell ()
## 11068                                                                                                                      Alleges walking down steps at rear of student activities center leading to stech; she slipped on ice on the steps and twister her left ankle.
## 11069                                                                                                                                                     Alleges walking down the cone center, south 2 stair-well; he stepped wronged and awkwardly bent his left foot.
## 11070                                                                                                              Alleges walking down the hall as another employee was returning to his office; they collided, she fell into the door frame hurting her left shoulder.
## 11071                                                                                                                              Alleges walking down the hall near chick-fil-a entrance; slipped on liquid or grease and fell hurting her buttocks and left shoulder.
## 11072                                                                                                                                        Alleges walking down the rear stairwell while leaving work; she slipped and fell down the stairs hurting her neck and back.
## 11073                                                                                                                  Alleges walking down the stairs form the third floor to the first floor; he slipped on the stairs and fell with his right ankle caught under him.
## 11074                                                                                                                   Alleges walking down the steps after work; when heplanted his r heel on the step he slipped, grabbedthe rail but landed sitting on his right leg
## 11075                                                                                                                 Alleges walking down the steps going to another building; she had not reached the bottom of the steps, she stepped down and rolled her right foot.
## 11076                                                                                                                 Alleges walking down the west parking deck steps; she stepped down with left foot, lost her balance and fell three steps straining her left ankle.
## 11077                                                                                                                                                                                                           Alleges walking down tunnel slipped on chicken greese ()
## 11078                                                                                                                        Alleges walking from the parking deck viat the catwalk and she slipped on some ice but did not fall; she later felt pain in her lower back.
## 11079                                                                                                                           Alleges walking from the parking deck; his feet slipped from under him and he fell on his back hurting his neck, back and left shoulder.
## 11080                                                                                                                                   Alleges walking in co4-toe on lt foot struck floorelectrical oultlet cover, shifted weight to one side straining hip on rt side.
## 11081                                                                                                                                                                               Alleges walking in hawthorn hall-tripped over own feet and fell sprained left ankle.
## 11082                                                                                                                                              Alleges walking in the basement, Miss Stepped and tripped over his own feet, hurting his right ankleand did not fall.
## 11083                                                                                                              Alleges walking in the cone parking garage; she tripped on cracked cement and fell forward landing on both hands, knees, and hurting her right ankle.
## 11084                                                                                                                               Alleges walking in the garage going toward the bike cage; it was dark and he stepped of the curb and later felt pain his lower back.
## 11085                                                                                                                      Alleges walking in the hallway near the south entrance to the lucas room, slipped on something had spill on the floor and fell to her lt knee
## 11086                                                                                                             Alleges walking in the hallway when she slipped, lost her balance and fell forward hitting her mouth on the terrace floor breaking two front teeth. ()
## 11087                                                                                                                            Alleges walking in the restroom to rinse out a can when she slipped on water on floor near the second sink twisting her right ankle. ()
## 11088                                                                                                                   Alleges walking in the track storage room; she tripped over an extension cord stored by the track team and fell on her right forearem and elbow.
## 11089                                                                                                                 Alleges walking into a room enroute to pick up trash when she slipped in water; grabbed a chair to stop herself from falling and twisted her back.
## 11090                                                                                                               Alleges walking into the shop while working on a lock cylinder, he didn't see the door was only rolled halfway up, walking into it hitting his head.
## 11091                                                                                                                      Alleges walking into the the main lounge; he hit his head on the entry gate, that was not opened completely, cutting him above his right eye.
## 11092                                                                                                                                                                          Alleges walking near a bed while window washing; she bumped the bed hurting her left knee
## 11093                                                                                                                       Alleges walking near the beld tower enroute back to his office; he stepped on a piece of wood and fell hurting his right knee and left hand.
## 11094                                                                                                               Alleges walking near the parking lot gate entrance after a car had entered the gate; the gate arm hit the right side of her face and right shoulder.
## 11095                                                                                                                          Alleges walking on the sidewalk in front o the east parking deck; she slipped on a patch of ice hurting her left knee, leg, arm and side.
## 11096                                                                                                                                                           Alleges walking on the walkway at facilities management; he tripped on an uneven/broken asphalt with a 4
## 11097                                                                                                                                                                                    Alleges walking out elevator slipped on wet floor & twisted ankle & hit knee ()
## 11098                                                                                                             Alleges walking out of cell and slipped and fell while collins was mopping and did not have a wet sign out, back, stomach, right foot were injured. ()
## 11099                                                                                                                                                                                        Alleges walking saw pudlle of water went around slipped on second puddle ()
## 11100                                                                                                                                                                                                           Alleges walking slipped in water inj. Lt foot & groin ()
## 11101                                                                                                                                                 Alleges walking through the front lobby; he stepped on the base of a line feeder station twisting h is right knee.
## 11102                                                                                                               Alleges walking through the grounds shop; her arm brushed against the wire brush attached to the gum removal machine cutting her left inner forearm.
## 11103                                                                                                                                                        Alleges walking to a meeting in friday bldg and tripped on uneven brick; she landed on her hands and knees.
## 11104                                                                                                              Alleges walking to an accident scene to provide assistance to victims of an explosion. He tripped on bricks/debris and fell; later felt low back pain
## 11105                                                                                                                                                           Alleges walking to her car after work; she slipped and fell on the wet pavement injuring her right knee.
## 11106                                                                                                                                   Alleges walking to her car at the end of her shift; she tripped on a cracked area of the asphalt andfell hurting her right knee.
## 11107                                                                                                              Alleges walking to her desk upon arrival to work; she tripped on a cord under the cubcle twisting her left ankle and hitting her cheek on the counter
## 11108                                                                                                                Alleges walking to her desk; rounding the corner of the desk to her chair, she stepped on the corner of a three-ring binder twisting her left foot.
## 11109                                                                                                                                                                                                             Alleges walking to lineup and slipped & fell on ice ()
## 11110                                                                                                                                                   Alleges walking to lunch, right shoe got caught by raised section of cement, tripped, fell hurting neck and back
## 11111                                                                                                                                                                           Alleges walking to the housekeeping closet; slipped& fell hurting her left arm/shoulder.
## 11112                                                                                                                               Alleges walking to the parking lot by way of the grassy hill; she lost her footing and tumbled down the hill hurting her left ankle.
## 11113                                                                                                             Alleges walking toward the ladder used to unplug the power of an air compressor being inspected; he bumped a cabinet corner bruising his left forearm.
## 11114                                                                                                                      Alleges walking toward the office from the parking lot at the rear entrance of colvard south; she tripped and fell hurting her left shoulder.
## 11115                                                                                                                                                                                  Alleges walking up stairs, missed stair, right knee hit step injuring knee cap ()
## 11116                                                                                                                                                         Alleges walking up the rear exterior steps of the mcinry bldg. When she slipped hurting her mouth & knees.
## 11117                                                                                                                                         Alleges walking up the rear steps leading from the education bulding; she tripped on the step and fell hurting both knees.
## 11118                                                                                                                                         Alleges walking up the steps outside reese bldg enroute to work when she hit her right, big toe on the bottom of the step.
## 11119                                                                                                                            Alleges walkint across the room to retrieve his coat; he tripped over the bottom desk drawer hurting his left leg, right arm and wrist.
## 11120                                                                                                                                                                                          Alleges was in training helped a employee off ground & pull lower back ()
## 11121                                                                                                                       Alleges watching her supervisor's child while she took care of some business; she had the child in her arms and fell hurting her right foot.
## 11122                                                                                                                                               Alleges weed trimmming on wet grassy hill he slipped and fell landing on his rt band dislocating his rt pinky finger
## 11123                                                                                                                                                  Alleges when picking up trash near the wood area of lot 21, he was struck by tree branch/limb in his left eye. ()
## 11124                                                                                                                                                       Alleges while attempting to handcuff a suspect; the suspect fled the scene hurting her left index finger. ()
## 11125                                                                                                    Alleges while carrying bags of recyclable plastic bottles her foot slipped on a patch of ice on the walkway; she fell hurting her left wrist, elbow and arm. ()
## 11126                                                                                                                                                                                      Alleges while cleaning rooms in apts she felt pain in her back as moved a bed
## 11127                            Alleges while driving an ez-go in the rain toward the career center; as she turned the corner to the right she struck a car that was driving on the brick sidewalk parallel to the career center causing her to hurt her left wrist. ()
## 11128                                                            Alleges while employee was using computer with wireless mouse at computer station, she over extended her wrist and began to have severe pain on her right hand up her arm with burning and numbness. ()
## 11129                                                                                                                                                                 Alleges while emptying trash she smell a strong chemical causing a headache & breathing difficulty
## 11130                                                                                                                                     Alleges while he was lifting a microfridge to assist a student in moving it into the dormitory, he strained his lower back. ()
## 11131                                                                                                                   Alleges while it was raining she walked down the exterior steps; her left foot slipped and she fell hurting her left elbow, hips and lower back.
## 11132                                                                                                                                                               Alleges while lifting and moving bed frame in an awkward position he pulled the muscle in his lt arm
## 11133                                                                                                                                          Alleges while mopping; the fiberglass mop handle split and later she felt like there were splinters in her right fingers.
## 11134                                                                                                                                                               Alleges while moving & stacking wooden pallets an expoxed nail scratched the back of his right hand.
## 11135                                                                                                                                                                        Alleges while moving a halogen light, the light slipped and fell burning his right forearm.
## 11136                                                                                                                 Alleges while moving a petition wall, the wall swung out; as he tried to stop it his hand slid down cutting his right middle and pinky fingers. ()
## 11137                                                                                                                                                               Alleges while moving furiture the hydraulic tail gate fell on his lt toe and metal punctured his toe
## 11138                                                                                                                                                                Alleges while pushing outdoor table to place outside " after hous", lost balance & fell on shoulder
## 11139                                                                                                                                               Alleges while replacing a shower drain, the tool slipped causing his fist to strike jaw chipping his front tooth. ()
## 11140                                                                                                                                                                                                               Alleges while riding in van, van backed in a pole ()
## 11141                                                                                                                                                                                                Alleges while sawing board small chip of wood blew into his lt eye.
## 11142                                                                                                                                                        Alleges while setting up furiture pulled her back muscle as she tried to lift and move a coffee table alone
## 11143                                                                                      Alleges while storing filing cabinets he and a co-worker were stacking one cabinet atop another, when his co-worker lost grip; the cabinet then fell on his left shoulder. ()
## 11144                                                                                                                                                                                  Alleges while throwing out the trash he hit his right hand on the trash dumpster.
## 11145                                                                                                                                                                                            Alleges while try to cut inmate out of a sheet, cut her index finger ()
## 11146                                                                                                                               Alleges while unloading the 55 gallon drum from the truck the hand truck flipped over, hit him in the head and causing a laceration.
## 11147                                                                                                                                                                                          Alleges while unlocking refridgerator metal bar fell & hit top of foot ()
## 11148                                                                                                                                                                  Alleges while using band saw his hand slipped causing him to cut the fourth finger on his rt hand
## 11149                                                                                                               Alleges while vacuuming she ran out of cord length; she unplugged the cord and when she turned to plug the cord into another outlet her knee popped.
## 11150                                                                                                                                                                Alleges while walking down two steps he missed the second step and fell hurting his right ankle. ()
## 11151                                                                                                                                                                                      Alleges while walking he tripped and fell on gravel hurting his left hand. ()
## 11152                                                                                                                                             Alleges while walking on a paved path near moore hall, she slipped on ice and fell hurting her head and left wrist. ()
## 11153                                                                                                                      Alleges while walking quickly to his car in the parking lot to drive to a meeting, he stepped on arock & fell forward hurting his left ankle.
## 11154                                                                                                                                                                        Alleges while walking through bldg j, walked undermechanical lift & struck his head on lift
## 11155                                                                                                                                                Alleges while walking to a meeting; he tirpped and fell hitting his head on the wall and landed on his right wrist.
## 11156                                                                                                                                                               Alleges window washing; a steel bar that was placed against the wall fell landing on her right foot.
## 11157                                                                                                                                            Alleges working at her desk using a keyboard tray causing repetitive motion injuring her right wrist, arm and shoulder.
## 11158                                                                                                                                                                                             Alleges working at or near his desk; he hit his left knee on his desk.
## 11159                                                                                                                                                                      Alleges working in a tight corner strained abdominal muscle trying to get the flush valve off
## 11160                                                                                                                Alleges working in supply closet doing inventory. He tripped on a box; while falling he grabbed a shelf & felt something pull in his right shoulder
## 11161                                                                                                                                                                Alleges working on a ladder using a bar to break open a union on steam line-felt sharp pain in back
## 11162                                                                                                                                       Alleges working on campus when his left knee started hurting. Next day could hardly walk, statesit is a possible insect bit.
## 11163                                                                                                                                                            Alleges working on sewer drain step and slipped & fell when I caught my hand on the holding cell bar ()
## 11164                                                                                                                                                        Alleges writing a parking citation; she stepped on an ant colony and the ants bit her lower legs and hands.
## 11165                                                                                                                                                                              Allegescoming down last set of steps and fell forward. Foot got trapped under step ()
## 11166                                                                                                                Allegs holding door open for a student carrying belongings inside; as the student entered, the door was pushed onto her right foot hurting her toe.
## 11167                                                                                                                                              Allegs reaching onto a wooden shelf to secure equipment; a staple on the shelf snagged her puncturing her right hand.
## 11168                                                                                                                                                                              Allen thomas was attempting to separate two juveniles that were fighting and fell. ()
## 11169                                                                                                    Allen was getting his truck ready for pushing snow when, he slipped in the snow/ice and fell injuring his left shoulder. List injury as: left arm & shoulder ()
## 11170                                                                                                                                                            Allergia apparently became attached to hjand and rubbed on to eye area by hand and caused eye to swell.
## 11171                                                                                                                                                                                                                    Allergic reaction in throat, unknown source. ()
## 11172                                                                                                                                                                          Allergic reaction to being exposed to ceiling dust/debris during routine bldg inspection.
## 11173                                                                                                                                                                                                Allergic reaction to bug spray. Difficulty breathing and chest pain
## 11174                                                                                                                                                                                                                             Allergic reaction to cat at the center
## 11175                                                                                                                                                                                                                     Allergic reaction to chemicals on face & hands
## 11176                                                                                                                                                                           Allergic reaction to fungicide or insecticied that was sprayed on greenhouse tomato crop
## 11177                                                                                                                                                                                                                             Allergic reaction to hepatitus shot ()
## 11178                                                                                                                                                                                                                         Allergic reaction to inhaling cricket dust
## 11179                                                                                                                                                                                                                                  Allergic reaction to latex gloves
## 11180                                                                                                                                                                                                                      Allergic reaction to latex in carpet adhesive
## 11181                                                                                                                       Allergic reaction to lycria. Severe swelling in face, neck, trouble breathing, uncontrolled jerking movements, sweating, dizzy, disoriented.
## 11182                                                                                                                                                                               Allergic reaction to ppd skin test-rash noted on arms, legs, face, back and abdomen.
## 11183                                                                                                                                                                           Allergic reaction to undetermined allergen while waiting for baseball game to finish. ()
## 11184                                                                                                                                                                                                                 Allergic reaction while processing parking tickets
## 11185                                                                                                                                                                                                                      Allergic to lab animal open for allergy shots
## 11186                                                                                                                                                                                       Allergic to latex, vinyl gloves had powder in the them and caused a reaction
## 11187                                                                                                                                                                                                              Allergies required to come in by occupational health.
## 11188                                                                                                                                                                                                                Allergies to lab animals while performing surgeries
## 11189                                                                                                                                                                                                                                               Allergies to mice ()
## 11190                                                                                                                                                                              Allergies.. Working & breathing in high humidity air found within our work conditions
## 11191                                                                                                                                                                                        Allergies/asthma... Exposure... Moth scales animals being researched in lab
## 11192                                                                                                                                                                Allergin apparently became attached to hand and was rubbed onto eye by hand causing rt eye to swell
## 11193                                                                                                                            Allergy test confirm that EE is allergic to mold--that maybe present in shellfish office. Sinus, lung and possible swollen lymph nodes.
## 11194                                                                                                                                                                        Allergy to gloves, wearing white liners under gloves, have rash on rt hand, spot on lt hand
## 11195                                                                                                                                                                                                           Allergy to mice/animals, occured over past severalmonths
## 11196                                                                                                                                                                                                                       Allergy.... Eyes itchy, runny nose, coughing
## 11197                                                                                                                                                                 Allison was moving a metal open tile shelf when it slipped and divider fell on top of her foot. ()
## 11198                                                                                                                                                            Allowing inmate out of door. Inmate exiting forcefully close door & EE's right hand was caught on screw
## 11199                                                                                                                                                                        Allowing vehicles through sally port gate, while ddragging the big gate, caught right foot.
## 11200                            Alma taylor was leaving greensboro unit office and traveling back to her work office in her automobile. She was attempting to make a left turn onto wendover ave. The light was green. A truck ran the red light and struck her car. ()
## 11201                                                                                                                                                                                                                                     Almost tripping down stairs ()
## 11202                                                                                                                                                                                        Alot of typing work has gradually caused pain in EE's shoulder, neck, elbow
## 11203                                                                                                                              Alteration started with two patients, EE tried to stop it, was in the middle of the two patients, slipped and fell and hit the floor.
## 11204                                                                                                                                                                                                                 Altercation arose between EE and inmate, both eyes
## 11205                                                         Altercation btw. Two residents-employee hit on right arm-one resident started to fall-assisted lower to floor-other resident slammed emp. Into wall and bent right thumb back. Pain l. Side of back/hip ()
## 11206                                                                                                                            Altercation in courtroom, came to aid of baliff who was having difficulty controlling/removing inmate from court room, cut under lt eye
## 11207                                                                                                                        Altercation w/ aggressive inmate. EE was holding handcuffs and the inmate jerked the handcuffs from his grasp, cutting his rt middle finger
## 11208                                                                                                                                                                                                              Altercation w/juvenile, juvenile kicked right knee ()
## 11209                                                                                                                                                Altercation with inmate that occurred just after acell search was conducted. Scratches on face and cut inside lips.
## 11210                                                                                                                                                                                                   Altercation with inmate, fell against gate during altercation ()
## 11211                                                                                                                                                                                                                              Altercation with student and staff ()
## 11212                                                                                                                                                                                                                          Altercation with suspect resisting arrest
## 11213                                                                                                                                         Aluminum foil box was falling off of counter and EE caught the box on the cutting edge - laceration to the lt index finger
## 11214                                                                                                                                      Alyce was taking down the satellite work station off the closet shelf, when the bar came out and hit her under the right eye.
## 11215                                                                                                                                Alzheimer resident agitated-spit in employee's face/eyes (hx. Of recent surgery to l eye)and multiple scratches to hands/wrists. ()
## 11216                                                                                                                                                                                                                   Amanda became dizzy and fell. Rt eye & rt elbow.
## 11217                                                                                                                    Ambulating a client in parallel bars with another assitant. Client dropped to floor while EE control his fall with gait belt. Rt shoulder/neck.
## 11218                                                                                                              Ambulating patient to bathroom, became resistant and was about to go down to the floor. Took all employee and coworker had to keep patient from falli
## 11219      Amount of data entry increased since 3/1/2012, noticed pain in left wrist., in Jan 2013 numbness and tingling in hand and fingers. After wearing brace, prevented, however in last 2 weeks, brace no longer works. Pain incrrease in frequently and severity.
## 11220                                                                                                                                                                                Amputation of left index finger at distal first phalanx by malfunctioning table saw
## 11221                                                                                                                                                                                               Amputation of the first phalange if the second finger of the lt hand
## 11222                                                                                                                                                                Amy mastin was punched in the face with a closed fist by a juvenile she was attempting to restrain.
## 11223         Amy was operating a motor vehicle enroute to do a home visit. The vehicle hydroplaned on a wet road. The vehicle left the roadway and overturned. Right hand was injured by getting caught in the steering wheel. Left forearm abrasions from broken glass
## 11224                                                                                                                                                                      An aggitated patient attacked the EE. Contusion of left knee and contusion of right shoulder.
## 11225                                                                                                                                    An aggitated pt was charging toward another EE, this EE was attempting to intervene & was pushed to floor, right hand hit floor
## 11226                                                                                                                                                                                                         An aggressive client grabbed EE's finger and bent it back.
## 11227                                                                                                                                                                            An aggressive client hit EE on the left side of his head, behind his ear, with his fist
## 11228                                                                                                                                                                                                        An aggressive client kicked EE twice hitting left lower leg
## 11229                                                                                                                                                     An aggressive male was redirected to quiet room and swung on staff member and fell on EE leg and reinjured it.
## 11230                                                                                                                                                                  An aggressive patient hit EE on lt side of head with her fist. Mild contusion lt temporal region.
## 11231                                                                                                                                                                                    An aggressive patient hit EE's left cheek. Contu- sion of left temporal region.
## 11232                                                                                                                                                                             An aggressive patient slammed door causing both left and right ear drums to be muffled
## 11233                                                                                                                                                                                                                        An agitated client hit EE in upper lt back.
## 11234                                                                                                                                                                           An agitated client pushed him against fence. Client began pulling and trying to push EE.
## 11235                                                                                                                                                                                            An agitated patient attacked EE and other staff. Injured leg, forehead.
## 11236                                                                                                                                                                                                            An agitated patient attacked EE. Scratches to left hand
## 11237                                                                                                                                                                                               An agitated pt jerked EE's name badge strap and right arm, twisting.
## 11238                                                                                                                                                                                                        An agressive patient hit EE with chair. Lt shoulder injury.
## 11239                                                                                                                                                                                                        An ant bit her hand while she was cleaning some trash cans.
## 11240                                                                                                                                                                             An attempt of trying to restrain inmate when he slipped cut his cuffs, hurt right hand
## 11241                                                                                                                                                 An employee exiting men's restroom slammed door into injured EE's forearm. Door opens into hallway travel area. ()
## 11242                                                                                                                                                                                                  An employee was opening access door and hit EE in the left finger
## 11243                                                                                                                                                                                                     An eppendorf tube filled with liquid n2 exploded &hit my r eye
## 11244                                                                                                                                                                                              An evacuation occured in building, going down stairs and lost balance
## 11245                                                                                                 An exothermic reaction from sulfuric acid being added to a reactor produced a large amount of fumes in the building which caused the employee to start gasping. ()
## 11246                                                                                                                      An immate was going into shock, EE was trying to keep immate from falling out of chair the immate grabbed EE and would not let go.. Hurt back
## 11247                                                                                                                                                            An individual (patient) was falling and employee reached out to prevent him from falling and heard a ()
## 11248                                                                                                                                                                       An individual came from behind employee and scratch employee's left arm and hit her head. ()
## 11249                                                                                                                                                                                     An individual fell backwards striking employee in the back of her left leg. ()
## 11250                                                                                                                           An individual flipped a table and chairs in the dining room and a chair fell on top of employee's left foot hitting her 2nd left toe. ()
## 11251                                                                                                                                                                                                     An individual grabbed employee and bent her hand backwards. ()
## 11252                                                                                                                                                                                     An individual grabbed employee and scratched him on his neck/shoulder area. ()
## 11253                                                                                                                                        An individual grabbed employee on both sides of her head pulling hair and jerking and pulling head, hair, neck and back. ()
## 11254                                                                                       An individual had urinated in the floor and employee came out of the dayroom and slipped in it. Employee did not know the floor was wet. She fell forward onto left knee. ()
## 11255                                                                                                                               An individual ran into the bathroom and pushed employee against the wall causing a scrape on the employee's right upper shoulder. ()
## 11256                                                                                                                                                                             An individual was having a behavior and scratched employee on the left ring finger. ()
## 11257                                                                                                                                       An individual was returning from getting meds and he walked into the dayroom and hit employee on left shoulder very hard. ()
## 11258                                                                                                                    An indiviudal aggressed towards employee and while employee was placing indiviudal in a t-hold, individual continuously headbutted employee. ()
## 11259                                                                                                                                                                                                        An indiviudal grabbed employee by the wrist and twisted. ()
## 11260                                                                                                                                                                            An indiviudal reach for employee's hand and bit employee on the right middle finger. ()
## 11261                                                                                                                                                                    An indiviudal stomped employee's right foot while employee was releaseing her from a t-hold. ()
## 11262                                                                                                                                                                                         An indiviudal was scratching, pinching and grabbing at employee's face. ()
## 11263                                                                                                                                                                              An injury to the back occurred when the EE bent over to lift a grill cover--back pain
## 11264                                                                                                                                                        An inmate became violent, throwing things off a desk, stapler which was on desk hit the EE's right forearm.
## 11265                                                                                                                An inmate entered EE office and assaulted her withsteel weight bar collar by striking her on and about the head area. Cuts to head, shoulder injury
## 11266                                                                                                                                                                                                             An inmate hit EE on his side of the face with an elbow
## 11267                                                                                                                                                                                                                  An inmate hit him on the left side of his head ()
## 11268                                                                                                                    An inmate janitor had put down fresh wax EE slipped on the wax and foot slipped toward the bottom of step caused pain in lower back and rt foot
## 11269                                                                                                                                                                 An inmate slipped out of his cuffs and I was hit on the right of my face to the left of my ear. ()
## 11270                                                                                                                                                                                                                            An inmate spit in the officer's face ()
## 11271                                                                                                                                                                                                           An inmate splashed the officer with an unknown liquid ()
## 11272                                                                                                                                                                            An inmate struck employee with fist on (r) side ofhead-temple area, (l) eye-cheek area.
## 11273                                                                                                                                                An inmate tapped on a window to get my attention and I tapped back on the window and the window broke and I was cut
## 11274                                                                                                                                                          An inmate threw a cup of coffee in her face, then was hit in her face by an inmate with his clodsed fist.
## 11275                                                                                                                                                                                                                  An inmate threw a cup of liquid on the officer ()
## 11276                                                                                                                                                                                                   An inmate threw a cup of urine and fecese in my rt eye amd mouth
## 11277                                                                                                                                                          An inmate threw a garbage can lid and struck ofc. Kelley in the back of the head at the base of his skull
## 11278                                                                                                                                                                                                                              An inmate threw a liquid in EE's face
## 11279                                                                                                                                                                                                            An inmate threw an unknown substance on the officer. ()
## 11280                                                                                                                                                                                                            An inmate threw an unknown substance on the sergeant ()
## 11281                                                                                                                                                                             An inmate threw urine on an nurse asst. Coming in contact w. Face and rt side of body.
## 11282                                                                                                                                                                                             An inmate thru a cup of liquid which contained feces on officer floyd.
## 11283                                                                                                         An inmate was attempting to kill himself correctional officer and another officer had to lift the inmate up to get him down injuring her right shoulder ()
## 11284                                                                                                                                                                     An inmate was being escorted to segregation & spit in his face, getting in his nose & mouth ()
## 11285                                                                                                                                                                                          An inmate was carrying a hot pan & she was trying to get out of this way.
## 11286                                                                                                                                            An inmate was rising from the floor, began to fall& empl. Tried to catch him to prevent an injury, twisting empl. Back.
## 11287                                                                                                                                                                                          An inmate was talking to EE and the inmate's saliva flew into EE's rt eye
## 11288                                                                                                                    An inmate was throwing a plastic bag of trash intotrash container when liquid from bag splased into EE's left eye; experienced burning/stinging
## 11289                                                                                                                                                          An inmate was throwing rocks-EE informed inmate tostop-EE was struck in forehead by rock thrown by inmate
## 11290                                                                                                                                                                                                     An insect bit employee while making rounds inside of a dorm ()
## 11291                                                                                                                                                            An non employee walked into the lobby and stated he was positive for TB. Employee was exposed to TB. ()
## 11292                                                                                                                                                    An obese pt fell in their room, EE tried to lift pt ( other nurses help ) EE felt sharp pain. Strain lower back
## 11293                                                                                                                  An offender was trying to flee custody and as he ran towards employees office, she placed her arms around him and took him down to the ground. ()
## 11294                                                                                                                                           An organizer on employee's desk slid off the tableshe reached accross the table to lift it up & put it back on the table
## 11295                                                                                                                                                                                                              An otter swam up and bit him on his left index finger
## 11296                                                                                                                                                        An out of control studetn was being restarined andee hit her knee on the floor while restraing the student.
## 11297                                                                                                                   An owl flew at and struck at hand while filling water bowl. She pulled hand back and as she stepped back it flew and struck rt. Ear with claw ()
## 11298                                                                                                                                                                                                                          An umbrella fell and hit EE on right foot
## 11299                                                                                                                An unknown individual placed a tuck pin in an upright position on edith's chair. When edith sat in her chair she felt the pin puncture her buttock.
## 11300                                                                                                                                 An unknown object flew into EE left eye when co-worker moved a burnt mattress spring at scene of investigation of burnt dead body.
## 11301                                                                                                                                    An unsercured scaffold tilted causing EE to be thrown face first striking a concrete floor this has caused a spinal/neck injury
## 11302                                                                                                                                                                               An upset client pushed past 2 other staff person and pushed a chair into EE lt knee.
## 11303                                                                                                                                                                                          Anesthetized dog recovered roughly and had to be restrained- injured back
## 11304                                                                                                                                                               Angel pulle dback while trying to install a front boiler cover on boiler #2 after annual inspection.
## 11305                                                                                                                                                                                                            Angle grinder kicked back and cut the back of his hand.
## 11306                                                                                                                                                                                                   Angle iron slipped out of hand bent ring finger on right hand ()
## 11307                                                                                                                                                                                         Angry client lifted EE off the floor by neck-injury to rt shoulder and arm
## 11308                                                                                                                                                                             Angry patient picked EE up and threw her against the wall & punched her several times.
## 11309                          Animal control came to the side gate to pick up stray cats from unit 1. The last cat that the EE moved was calm unitl she brought it to the animal control officer. The cat then turned and latched onto EE's hand, biting her finger. ()
## 11310                                                                                                                                                                                                                   Ankle twisted when walking to granville dorm. ()
## 11311                                                                                                                                                             Ankle(l)... I was leaving work and slipped on the last 2 stairs in the stairwell of its manning Dr. ()
## 11312                                                                                   Ankle(left) gave out while at the civic center. Fell and sprained ankle and landed on her elbow. Ankle was weak wince it was sprained the night before in personal residence. ()
## 11313                                                                                                                                                                                                    Ankle... Sitting at desk turned around to get up &twisted ankle
## 11314                                                                                                                                             Announcing chow call walking down the stairs, he lost his footing and slipped and fell. Injuring his left lef, knee ()
## 11315                                                                                                                                                                                               Annual in service training, performing crdt/functions and hurt ankle
## 11316                                                                                                                                                                                                                 Annual nci test. Got down on knee and thigh popped
## 11317                                                                                                                                                                        Annual self defense training - crdt takedown procedure... Knee hit the floor with force. ()
## 11318                                                                                                                                                              Another EE (hct) sprayed room deodorizer in hallway, Ms. Whaley reports an allergic reaction to spray
## 11319                                                                                                                                                                                                     Another EE accidentally pushed a linen cart over EE's lt foot.
## 11320                                                                                                                                                                                         Another EE brough instrument to EE. Tip of instrument slipped and hit hand
## 11321                                                                                                                           Another EE carrying armfull of supplies including a telephone. Cord was dragging sidewalk EE trippedover the cord and fell on his knees.
## 11322                                                                                                                                                                                    Another EE closed EE's fingers in the door causing contusion to rt third finger
## 11323                                                                                                                                                 Another EE discharge pressurized duster to clean hand held computer, victim affected when she inhaled spray in air
## 11324                                                                                                                                                                                              Another EE dropped a razor used on patient and it fell on EE's rt leg
## 11325                                                                                                                                                                                          Another EE grabbed neck and scratched neck on leftside with finger nails.
## 11326                                                                                                                                                          Another EE helped EE pivit client from bed to wheelchair-EE pulled client up by herself and injured back.
## 11327                                                                                                   Another EE in far corner used her personal laser pointer to try to get the attention of co-worker across the room. Injured EE turned head into path of laser. ()
## 11328                                                                                                                                                Another EE mixed cleaning solution and when she began to clean, she became dizzy, headache, tongue started swelling
## 11329                                                                                                                                                                                                    Another EE moving patient geri chair and rolled over EE's foot.
## 11330                                                                                                                            Another EE notified EE that there was a gas leak because he thought EE could fix it. EE could not stay in room because of odor and left
## 11331                                                                                                                                                                                                                   Another EE open door and hit EE on left shoulder
## 11332                                                                                                                                                         Another EE opening entrance door for EE, as door opened, it went over EE foot, the metal strip cut EE toe.
## 11333                                                                                                                                                       Another EE placed hands on her shoulders and startled her at her desk - causing injury to neck and shoulders
## 11334                                                                                                                                                   Another EE ran vehicle in to ditch and EE helped other EE out of vehicle and as the day progressed her back hurt
## 11335                                                                                                                                                                                                             Another EE tried to trip someone and kicked EE instead
## 11336                                                                                                                                 Another EE was being attacked by patient-EE went to help-was knocked out of office by patient- landed on back and hit head on wall
## 11337                                                                                                                       Another EE was closing closet door-an individual began yelling-other EE turned to see what was wrong and shut door on EE's rt middle finger.
## 11338                                                                                                                       Another EE was coming in restroom as EE was going out. EE tried to move out of way to avoid being hit and twisted already injured right knee
## 11339                                                                                       Another EE was doing a blood draw and asked EE for a tube. The EE turned to hand him the tube without looking and was stuck by the needle the other employee was holding. ()
## 11340                                                                                                                      Another EE was opening container and sat containerdown on table. Contents splashed into injured eyesswelling, irritation and bruised left eye
## 11341                                                                                                                                 Another EE was pushing a wheelchair and accidently pushed chair into EE causing her to fall-inj to knees, ankles, elbows, and back
## 11342                                                                                                                Another EE was spraying a chemical solution in the vetilation system of c domatory the fumes from the spray entered the dorm EE sumer smelled fumes
## 11343                                                                                                                                                                    Another EE was swatting wasp-EE move to right and lost balance-fell hitting head on door facing
## 11344                                                                                                                                                                                                                                 Another car struck EE from behind.
## 11345                                                                                                                              Another chaplain was pumping gas. Line became kinked & when straighten hose line gas continued pumping & shot up into air & into eyes
## 11346                                                                                                                                                            Another corr officer pulled his gun on me EE began to experience anxiety problems such as loss of sleep
## 11347                                                                                                                                                                                      Another driver failed to stop at stop sign and collided with EE's patrol car.
## 11348                                                                                                                                                Another employee and I were transferring a resident from her bed to her wheelchair and she bit my left upper arm ()
## 11349                                                    Another employee and this employee were placing resident in bed using the hoyer lift for patient care. Resident became combative and fussy. Resident started to grab and grip my arm resulting in skin tear. ()
## 11350                                                                                                                                    Another employee bumped into EE causing this EE toslip and fall on wet floor. Floor wet from being mopped. EE hit side of head.
## 11351                                                                                                                                                        Another employee came out of bathroom & accidentally hit this employee on her right elbow with the door. ()
## 11352                                                                                                                   Another employee mixed a sanitation mixture of bleach and water. Apparently it was mixed to strong for Ms. Watson, and the mixture removed skin.
## 11353                                                                                                                                                                                                         Another employee put her arm around injured employees neck
## 11354                                                                                                               Another employee standing next to erin and working on the same experiment dropped a test tube of blood. The blood splattered on erin's lower lip. ()
## 11355                                                                                                                                                                                        Another employee stumbled and fell into injured employee who was at desk ()
## 11356                                                                                                                                                                   Another employee threw a can of checmical at carl jones. Some of the chemicals got into his eye.
## 11357                                                                                                                                              Another employee tipped Ms Jones chair over causing her to fall to floor. Contusion/sprain to right elbow & shoulder.
## 11358                                                                       Another employee was cutting tree at worksite and the tree behind it fell and the employee went to help get the other employee out of the way and the tree hit the employee on the r arm. ()
## 11359                                                                                                                                                                Another employee was moving a 12' metal post & a piece fell landing on this employee's left foot ()
## 11360                        Another employee was rolling cold mix asphalt with crew cab pick up truck from the shoulder. Employee glanced back and forth between the windshield and side mirros while driving when, he struck 2nd employee (taylor) left foot/ankle. ()
## 11361                                                                                                                                                                 Another employee was walking backwards from a display case and stepped onto the employees foot. ()
## 11362                                                                                                                     Another health care technician and I were giving resident a shower when resident began spitting, fighting, and biting scratching both of us ()
## 11363                                                                                                                                                                     Another officer and employee lifted a barrel of trash to dump it, let it down and twisted back
## 11364                                                                                                                                                 Another officer called a code 1000 in g&h dorms. EE was running to dorms from k&l dorms and she twisted her ankle,
## 11365                                                                                                                                                                               Another officer came up behind EE putting him in choke hold & dragging him backwards
## 11366                                                                                                                                                 Another officer carrying trays up steps, trays started sliding, bossie twisted around to help secure the trays. ()
## 11367                                                                                                                                               Another officer dropped some tylenol on floor. Bent down to pick up tylenol, bumped head on door stop. Injured head.
## 11368                                 Another officer had officer long in an arm bar performing an arm bar escape during self defense class. The officer turned to slam officer long to the ground. As officer long fell to the mat, he landed on his right shoulder. ()
## 11369                                                                                                                 Another officer pulled EE's chair out from under him. EE fell hitting head and falling on buttocks. EE pushed open door and hand went thru window.
## 11370                                                                                                                                                                                    Another officer rolled to my right on top of and iheard a pop on my right side.
## 11371                                                                                                                         Another officer was holding security tip screw driver while EE helped turn it. It came loose and EE's rt. Hand hit part of the metal door.
## 11372                                                                                                                                                           Another officer was passing EE fingerprint book & it slipped out of EE's hand, landing on her right foot
## 11373                                                                                                                   Another officer was placing handcuffs on inmate while inmate was laying prone his arm moved and the sharp point of cuff dug into my left arm. ()
## 11374                                                                                                                                                    Another officer was showing emp. How inmate could use fire ext. As a weapon when it went off, sprayingemployee.
## 11375                                                                                                                                                   Another person sawed limb from tree. Limb fell, pinning EE to tractor seat. Took EE to hospital for examination.
## 11376                                                                                                                                                                                                                    Another pert team member fell into EE's lt knee
## 11377                                                                                                                                                                     Another staff & I was pushing patient up ramp whenpushing I felt my muscles in leg & back pull
## 11378                                                                                                                        Another staff came in and went to close door; EE went to shut door and caught EE's hand in the door causing bruises to hand and swollen. ()
## 11379                                                                                                                                                                                  Another staff entered & sat on corner causing desk to fall on officer's left knee
## 11380                                                                                                                                                          Another staff member closed door on EE's left hand causing contusion/puncture wound to left middle finger
## 11381                                                                                                                                Another staff member pulled the retractable string attached to his I. D. Badge and when they let it go, it hit him in the right eye
## 11382                                                                                                                                  Another staff member was assting a client to computer. The client tripped and fell. Pts head struck eelft knee causing EE to fall
## 11383                                                                                                                                                Another student was driving a golf cart too fast and turned it over. Student EE landed on cross bar and concrete ()
## 11384                                                                                                                                                                                                Another veh pulled into path of EE's veh and struck left side door.
## 11385                                                                                                                                                                                                                       Another veh ran stop light and hit EE's veh.
## 11386                                                                                                                                                                                          Another veh went off road & crossed center line hitting EE's veh head-on.
## 11387                                                                                                                                                                    Another vehicle changed lanes on I440, was going too fast and ran into the back of linda's car.
## 11388                                                                                                                                                                                                            Another vehicle collided with EE's vehicle in the rear.
## 11389                                                                                                                                                                                Another vehicle crossed center line into path of EE. EE ran off road and overturned
## 11390                                                                                                                                                                                                                 Another vehicle hit him in the rear of his vehicle
## 11391                                                                                                                                                                                                    Another vehicle hit state vehicle from behind, no injury listed
## 11392                                                                                                                                                                                Another vehicle lost control on patch of ice, spun around and hit EE in from of van
## 11393                                                                                                                                                                                  Another vehicle pulled out in front of EE; injuredright hand, both knees and side
## 11394                                                                                                                                                                                    Another vehicle pulled out in front of employee and employee struck vehicle. ()
## 11395                                                                                                                                                                                                    Another vehicle ran red light and struck EE car while on duty -
## 11396                                                                                                                                                                                                                           Another vehicle struck parked patrol car
## 11397                                                                                                                                                                               Another vehicle turned into the path of EE and EE ran into the pole head on @ 40mph.
## 11398                                                                                                                 Another vehicle turned left in front of EE. She applied brakes and blew horn before impact. Air bag disloded. Multiple injuries to multiple parts.
## 11399                                                                               Another vehicle was being allowed in the outside lane - employee was driving straight on the inside lane - the other driver didn't turn sharp enought and hit employee's vehicle. ()
## 11400                                                                                                                                                                                Another worker was blowing debris off a chair, & some debris went into EE left eye.
## 11401                                                                                                                                                             Answered a call for help from other staff menbers during a riot employee has soreness in back and neck
## 11402                                                                                                                                                                                                           Answering phone / repeatedly laying phone on rt shoulder
## 11403                                                                                                                                                                                                                          Answering phone and hit elbow on counter.
## 11404                                                                                                                                                    Answering phone at reception desk and chair slipped out from under EE. Injured right knee, back of head & neck.
## 11405                                                                                                                                               Answering sick call, walked to break room, slippedon floor and fell injuring neck, rt shoulder/arm hand, lt leg/foot
## 11406                                                                                                                        Answering telephone while waiting on customer at desk of fellow EE, turned in hurt & tripped over box of files sitting in floor beside desk
## 11407                                                                                                                                                                      Answering the phone in receptionist's office; reaching for item and the chair turned over. ()
## 11408                                                                                                                   Ant bite while standing outside on concrete, when she looked down a few seconds later, there were ants on right foot. Foot was bitten on top. ()
## 11409                                                                                                                                                      Ant infestation in breakroom, hard candy full of ants, moved basket to get rid of ants. Bitten sever-al times
## 11410                                                                                                                             Anticipated use of force & training. Simulated drills in sgt unit avery/mitchell corrt inst, doesnot know exactly how injury occurred.
## 11411                                                                                                                                                               Anticipated use of force alleges while struggling with inmate he fell hitting right knee on floor ()
## 11412                                                                                                                                                                                                                    Anticipated use of force pulling jammed door ()
## 11413                                                                                                                                                                                                                                          Anticipated use of force,
## 11414                                                                                                                                                                   Anticipated use of force, injured left foot () inmate stomped on his foot-contusion of left foot
## 11415                                                                                                                                  Antonella was changing the top of a temed bottle and some temed sprayed toward her eye. Her glasses blocked most of the temed. ()
## 11416                                                                                                                                                                                                                                     Ants bit EE on both arms/hands
## 11417                                                                                                                                                                                                             Ants got into clothing bit EE on multiple parts ofbody
## 11418                                                                            Apparently continued use of mouse and computer first learned about employees pain when observed ace bandage on right arm the week of October 12, 2009. Right wrist and index finger. ()
## 11419                                                                                                                                                                                                         Appears that a piece of ceiling material fell intoee's eye
## 11420                                                                                                                                                                              Applicant came into office for interview with pinkeye-next day EE contacted pink eye.
## 11421                                                                                                              Applied back fire fuel to brushpile in attempt to ignite it. Struck match to backfire fuel, fire flashed into EE's face causing 1st and 2nd deg burns
## 11422                                                                                                                                                               Applied front & rear brakes of motorcycle then struck traffic cone which caused him to loose control
## 11423                                                                                                                                                                                                                                 Applying Mr/Ri to assultive client
## 11424                                                                                                                                    Applying bandaid to patient's knee-patient kicked in knees-knocking feet out from underneath-fell on l. Side-hip/low back pain.
## 11425                                                                                                                                                                                                                                         Applying cleaning solution
## 11426                                                                                                                                                                                    Applying eye drops to student, had an outburst & grabbed & squeezed left breast
## 11427                                                                                                                                                                                                                                Applying hand cuffs on an inmate ()
## 11428                                                                                                                                                         Applying handcuff to inmate. Door opened and inmate advanced toward EE striking him in left cheek w/a fist
## 11429                                                                                                                                           Applying joint compound to dry wall or carrying 5-gal bucket of joint compound. Injury to rt elbow. *** denied claim ***
## 11430                                                                                                                                                                                 Applying pressure to labels in order to cut through adhesive tape and cut rt hand.
## 11431                                                                                                                                                                                                                                             Applying soil fumigant
## 11432                                                                                                                                     Applying use of force technique on non compliant inmate while taking inmate to lockup and trying to get inmate in handcuffs ()
## 11433                                                                                                                              Applying weedkiller with a backpack sprayer and back became soaked with weedkiller, rash developed on back, shoulder and back of arm.
## 11434                                                                                                                                                                      Applyinga physical restraint, me and resident fell. I hit my head on a table and cut my head.
## 11435                                                                                                                                                                                                                                  Apprehending bleeding detainee ()
## 11436                                                                                                                                                                                                                   Apprehending probationer. C/o fell during chase.
## 11437                                                                                                                                                                                 Approach residence, one of three dogs ran to agent, bit right thigh above knee. ()
## 11438                                                                                                                                                                            Approached a suspect. Suspect struck him w/door ofvehicle. Struck EE in shoulder w/hood
## 11439                                                                                                                                                           Approached an inmate to place cuffs on him, inmate punched officer in the chest and spit in his face. ()
## 11440                                                                                                                                                                                               Approached back door of home, new litter of puppiesmother dog bit EE
## 11441              Approached by client screaming at EE; tried to redirect when client hit EE in the upper chest close to right shoulder; trying to move out of harms way; client threw pool ball at EE; EE jumped out of way. Lower back hurting after this incident ()
## 11442                                                                                                                                                                                                  Approached by patient and punched on face/both sides near jaw. ()
## 11443                                                                                                             Approached by supervisor about an error at work. Employee could not make her point and an argument occurred resulting in her having a panic attack. ()
## 11444                                                                                                                                                                            Approached cell where inmate was housed as presented his medications, spit in EE's face
## 11445                                                                                                                                  Approached inmate cell with custody when trap opened and inmate sprayed feces and urine to my eyes, nose mouth and upper body. ()
## 11446                                                                                                                                                  Approached park visiter walking a dog. The dog jumped up and bit EE on the upper right arm and lower left arm. ()
## 11447                                                                                                                  Approached patient to assist other staff & rstrainfrom assaulting other staff. During process & while on the floor, the patient scratched staff l
## 11448                                                                                                                Approaching a subject to check for compliance, when EE was attacked by 3 chow dogs--belonging to subject. Bite marks/scratches both hand & lwr legs
## 11449                                                                                                                                              Approaching building was running due to rain, slipped and fell, injuring left elbow & shoulder, twisting back & neck.
## 11450                                                                                                                                                                                              Approaching client to be placed in emergency pic; scratched by client
## 11451                                                                                                                                                                                     Approaching gate house entrance when reached for the door and slipped and fell
## 11452                                                                                                                       Approaching inmate's cell door, inmate threw what appeared to be urine and feces out of his wicket door onto EE, striking him on the clothes
## 11453                                                                                                                                                                                   Approaching stopped vehicle EE stepped off roadway shoulder twisting right ankle
## 11454                                                                                                                       Approaching swinding door glanced down to avoid tripping over raised portion of floor & rt was outstretched & missed stuck rt arm laceration
## 11455                                                                                                                                                         Approx. 2 month prior to 8/4/99-EE contracted rash of unknown origin on chest, back, stomach arms and legs
## 11456                                                                                                               Approx. 8-weeks ago, pins/needle tingling/numbnessin pinky of left hand & moved to other fingers. 1-wk. Ago, same in r-hand w/pain in wrist/shoulder
## 11457                                                                                                                                                                                         Approximately 3-4 weeks ago employee had a lesion appear on left thumb. ()
## 11458                                                                                                                                                                    Appt w/ecu retired faculty member and donor iw fell at her home/fell down steps inside her home
## 11459                                                                                                                           Aprehending a suspect fleeing from a license station, trooper arrowood fell and smashed his hand on the pavement causing injury to hand.
## 11460                                                                                                                                                           Arc flash electrical explosion while working in blue ridge dorm. Arc flash caused burn injury to arm. ()
## 11461                                                                                                                                                                                                             Area between thumb & forefinger sore & swollen rt hand
## 11462                                                                                                                                                                                                  Area needs to be evaluated by ergonomics. Neck and upper back. ()
## 11463                                                                                                                                                                  Arjo lift rolled over employee's left foot while she was putting individual in the wheelchair. ()
## 11464                                                                                                                                                                               Arm bar take downs, during subject control arrest techniques. Pain in left shoulder.
## 11465                                                                                                                                                                                                                    Arm caught in door while handing inmate tylenol
## 11466                                                                                                                                                                                         Arm emptying a lown mower bag fell came into contact with poison ivy plant
## 11467                                                                                                                                                                                                       Arm on lift of food truck broke and fell-EE has head injury.
## 11468                                                                                                                                                     Arm over worked--using air guns--sanders--drills, in carpenter shop--lifting heavy cabinets. Right elbow pain.
## 11469                                                                                                                                                                                                                       Arm pulled through passage door by inmate ()
## 11470                                                                                                                                                                                                                Arm scraped on wire poking through chair cushion ()
## 11471                                                                                                                                                                                                                       Arm slammed in door when exiting building ()
## 11472                                                                                                                                                                                                          Arm strain from sustained typing - tendinitis - lt wrist.
## 11473                                                                                                                                                                    Arm twisted causing wrist to crack while moving a client in a wheelchair. Strain to left wrist.
## 11474                                                                                                                                                                                         Arm was barred up during a defensive technique. Left upper arm & shoulder.
## 11475                                                                                                                                                                 Arm was being place behind back for handcuffing position. Heard a pop when shoulder began to hurt.
## 11476                                                                                                                                                                                                             Arm was broken out with red bumps from chemical spray.
## 11477                                                                                                                                                                                                                         Arm was hit during a therapeutic restraint
## 11478                                                                                                                                                                                                              Arm was pinned against a metal trash can during riots
## 11479                                                                                                                                                                                               Arm, hand, hip, knee.... Making deliveries twisted ankle in pot hole
## 11480                                                                                                                                                                                                      Arm.. Neck... Was sitting at stop light & was hit from behind
## 11481                                                                                                                                                                 Arm.... Putting gas in the van walked around to put seats up in van & noticied a pain in upper arm
## 11482                                                                                                                                                 Arose from desk chair to replace notebook on shelflost balance & started to fall, hit the corner of desk with knee
## 11483                                                                                                                Around 5:30-5:45 pm playing w/ client "not sure what happened" at 6 began to monitoring rt eye, beganto burn/swell er dx: abrasion & conjunctivitis
## 11484                                                                                                                                                                                        Arranging bakery products in case when she slammeddoor on right ring finger
## 11485                                                                                                                                                                                                 Arranging boxes in break room on shelf, turned while lifting boxes
## 11486                                                                                                                                                   Arranging boxes of supplies in supply closet & while struggling w/heavy box hit corner of her eye on side of box
## 11487                                                                                                                                    Arranging charts in file cabinet. Too many drawers were pulled out & file cabinet began to fall forward. Bottom drawer hit foot
## 11488                                                                                                                                                                            Arranging file cabinets in her office when she felt pain in left side of her back & hip
## 11489                                                                                                                     Arrested individual & individual ran from trooper on foot. EE pursued individual into field of brushof small trees & EE twisted his right knee
## 11490                                                                                                                                             Arrested male subject & his girlfriend became upset & started raising her voice. Dog became agitated and bit EE on leg
## 11491                                                                                                                          Arrested offender during the struggle between subject and me the subject took his hand and scratch me under my rt eye causing it to bleed
## 11492                                                                                                                                 Arrested offender without incident & transported offender to jail in state vehicle. Later, learned that offender had tuberculosis.
## 11493                                                                                                               Arrested supect for supicion of driving impaired. Suspect seatbelted in patrol vehicle & tried to escape. EE grabbed suspect & felt pain in rt hand.
## 11494                                                                                                                                                     Arrestee running out of magistrate's office-EE attto catch arrestee outside and fell over a curb in the p/lot.
## 11495                                                                                                                                                                                                                                        Arrestee spat on officer ()
## 11496                                                                                                                                                                           Arresting a suspect. Suspect hit officer in the nose causing him to fall on his ribs. ()
## 11497                                                                                                                                                                                                                     Arresting an offender that became combative ()
## 11498                                                                                                                                                                                                                      Arresting an offender who resisted arrest. ()
## 11499                                                                                                                  Arresting an offender. Handcuffed to the offender. Offender broke through a glass door and drug EE thru the door cutting lower rt arm and rt knee
## 11500                                                                                                                                     Arresting defendant. Defendant attempted to escape from custody by running from the mags office. EE ran after defendant & fell
## 11501                                                                                                                                                     Arresting individual for dwi & was attempting to place handcuffs on individual when individual began to resist
## 11502                                                                                                                                                                               Arresting intoxicated person left arm was injured during the handcuffing of subject.
## 11503                                                                                                                                     Arresting offender, placing handcuffs on her. Whileplacing handcuffs on the offender, she kicked backhitting my leg two times.
## 11504                                                                                                                                Arresting offender. After placing handcufs on offender he started to fight, fell down steps as I was trying to get him to a car. ()
## 11505                                                                                                                               Arresting resisting impaired driver, EE injured his rt hand when handcuffs pinched him while administering an arm bar on the suspect
## 11506                                                                                                                                 Arrive at troop a headquarters building and was walking from parking lot, stepped on concrete curband awkwardly twisted left knee.
## 11507                                                                      Arrived at a client home for evaluation, was met my mother as I got out of my car. As I turned to get my evaluation tools, a small white chiwahwah dog jumped up and bit my r pinky finger ()
## 11508              Arrived at home where evaluation was to be done on twin girls. Phoned the mom to make aware of arrival & left message on voice mail. Went up steps onto porch. Dog came from dog house on porch, smelled leg, growled and bit me on l outer thigh. ()
## 11509                                                                         Arrived at job site on golf cart. Got off golf cart after stopping put left foot on ground and as I turned to take first step I felt a pop above left knee. I my foot slipped on the curb.
## 11510                                                                                                                                                                                                                Arrived at parking lot, got out of car and fell. ()
## 11511                                                                                                                                                Arrived at work to find smell of gas in building. Was told by security officer that is was safe to stay in building
## 11512                                                                                                               Arrived at work, got out of car, and stepped on the curb when a roofing nail went through my shoe and left foot. List injury as: left bottom foot ()
## 11513                 Arrived in greenville, nc on 6/14/10 at approximately 5:30 p. M for a vendor training on 6/15/10 on a state car. At approximately 6:00 p. M. I opened the car trunk lid to reach inside to get my water and the trunk lid came down on my head. ()
## 11514                                                                                                                    Arriving at work and parking in parking lot, upon exiting his vehicle he was getting items & steppedonto the icy curb, fell on his hip/ rt arm.
## 11515                                                                                                                                             Arriving to scene of a collision and was reducing speed, when he was struck in rear by another vehicle. Neck and head.
## 11516                                                                                            Arriving to work walking across craige deck, tripped and fell over cement barriers. She sustained unspecified injuries to her right knee, head, neck, and shoulders. ()
## 11517                                                                                                                                                        Arthralia developed as result of continuous repetitive data entry. Back injury is result of carrying files.
## 11518                                                                                     Artificial carpet was on the concrete porch. It had been raining a lot on this day. The carpet was wet with a slick black slimy mildew. She slipped and fell on the carpet. ()
## 11519                                                                                                                                                  As Dr. Weggel was preparing to open the door with the handle someone was coming out of the door hitting his hand.
## 11520                                                                                                                                              As EE and other staff were trying to go through the automatic door, EE's right 1st toe was run over by wheelchair. ()
## 11521                                                                                                                                                                                                         As EE approached the gatehouse she slipped on mat and fell
## 11522                                                                                                                  As EE attempted to walk away from EE who was pretending to be a patient and had EE placed in anupper bear hug EE broke free and right knee gave..
## 11523                                                                                                                                                 As EE attempts to move from one dexk to another to answer phone her ankle and foot turns under causing her to fall
## 11524                                                                                                                                                                      As EE bent client's head down to shave his face, client pushed head back & spit in EE's face.
## 11525                                                                                                                                 As EE emerged from patrol car to issue citation he heard a pop and immediately felt pain in left hip. Possible strain of ligament.
## 11526                                                                                                                                                           As EE entered the front door of police bldg., she tripped on the area rug at the inside of the entrance.
## 11527                                                                                                                               As EE exited his vehicle, the door began to slam shut, EE attempted to keep door from slamming and small rt finger was shut in door.
## 11528                                                                                                                                                     As EE exited the building she turned to speak to security guard and missed a step, fell on right knee and side
## 11529                                                                                                                                                                                    As EE exited the security gate he accidently closed his lt index finger in gate
## 11530                                                                                                                                                                                           As EE got out of her truck, she slammed the door shut on her right hand.
## 11531                                                                                                                      As EE got ready to sit on tailgate of truck, co-worker drove off, causing EE to fall off back of truck. Rt side/back/buttock/lower lt abdomen
## 11532                                                                                                                                                                                                                      As EE leaving office felt pain in lower back.
## 11533                                                                                                                               As EE locked the corridor door he reached back to pull it close and caught his middle finger betweenthe door and the door jam. Left.
## 11534                                                                                                                                                                                             As EE opened supply cabinet, the paper cutter fell& cut her left foot.
## 11535                                                                                                                                  As EE reached for the rail, she tripped on water &leaves from the top of the steps. Hurt left hand, left knee & back in the fall.
## 11536                                                                                                                            As EE stepped off the stairs a rubber mat at the bottom of the steps slid out from under him causing him to fallon the floor and steps.
## 11537                                                                                    As EE stepped off the stairs to enter the courthouse as soon as stepped on tiles at the bottom of stairs slipped and fell on the wet and or icy tiles at the foot of the stairs
## 11538                                                                                                                                                               As EE turned corner in hallway, EE slipped on wet floor that had just been mopped by janitoral staff
## 11539                                                                                                                                  As EE walked back to the unit, she slipped on the ice which caused back injury. She did not fall she only made a sudden movement.
## 11540                                                                                                                        As EE walked out of office and down first stair, ccarpet & stair tread on end of step gave way. EE fell forward. Rt big toe bent bent back.
## 11541                                                                                                                                  As EE was attempting to exit the men's room, another EE pushed door open to enter from the other side, hitting EE in the head. ()
## 11542                                                                                                                                                                       As EE was attempting to find a door knob with a jacket on it; his right small finger popped.
## 11543                                                                                                                  As EE was cleaning tables, she turned and struck her left knee on a chair. She did not realize it was injured until next morning. Contusion- knee
## 11544                                                                                                                                                                                As EE was coming to work up a hill, she turned her right ankle on a water drainage.
## 11545                                                                                                                    As EE was crossing the intersection, she was hit on the passenger's side by a speeding car. EE suffered from bruise-thigh/knee, head, neck-pain
## 11546                                                                                                                                  As EE was escorting an inmate back to cell, she became violent and bent left finger back. Inmate fell to ground and began kicking
## 11547                                                                                                                                                                                            As EE was getting into his truck he slipped and felt his left ankle pop
## 11548                                                                                                                                                                           As EE was going down steps to master control, she tweaked/felt something in her knee. ()
## 11549                                                                                                                    As EE was inspecting tables after visit, he raiseda table to look underneath; the table got off balance & table fell on right foot/ (r) big toe
## 11550                                                                                                                                                                                     As EE was lacing client's shoe, the client scratched EE's right arm & fingers.
## 11551                                                                                                                                                                                         As EE was lifting a laundry buggy onto the sidewalk, her rt wrist snapped.
## 11552                                                                                                                                                                                             As EE was preparing to wash pots & pans, the steamburned her left arm.
## 11553                                                                                                               As EE was pulling gate closed the wind's force thrust the gates door foward, there was metal prong sticking out at the base of the door. Lac rt heel
## 11554                                As EE was putting radiology envelopes in black trash liners into dumpster, as EE & another EE were lifting the bag while adjusting to put in dumpster, it landed on (rt) thumb causing contact with dumpster, cutting (rt) thumb ()
## 11555                  As EE was rolling her chair back to prepare putting away some papers, she leaned forward and slipped out of her chair. She fell on to the floor injuring her thighs, lower left side of her back, middle finger, left hand, and right forearm. ()
## 11556                                                                                                                                                                   As EE was shooting shotgun, trigger guard hit right middle finger. Injury to right middle finger
## 11557                                                                                                                                            As EE was sitting at her desk, turned to answer telephone, caught her right thumb on corner of desk, her desk is metal.
## 11558                                                                                                                       As EE was stacking speakers too high, he bent over to pick up a speaker. Speaker was not stable and fell sideways and hit EE in forehead. ()
## 11559                                                                                                                      As EE was traveling in his state vehicle, another vehicle collided into the car. EE's left knee hitthe dashboard, forehead hit steering wheel
## 11560                                                                                                           As EE was walking across royster bldg parking lot on way into work. EE's right foot slipped into a hole causing EE to lose balance, but did not fall. ()
## 11561                                                                                                                                                                   As EE was walking into the bathroom, her right little finger was caught in the lock of the door.
## 11562                                                                                                                        As EE was walking through programs hallway he slipped on the floor stripper the inmates were using on the floor and fell on right elbow. ()
## 11563                                                                                                                                                     As EE was walking to control center, her foot got caught on a piece of plywood. Numbness- right armpain- back.
## 11564                                                                                                                                                                   As EE wearing gloves, pt blood soaked cotton gaugecame in contact with an open cut on EE's hand.
## 11565                                                                                                                                                                                             As EE went to sit, chair rolled away and EE fell backwards onto floor.
## 11566         As I approached the door to the lab, I had my coat and purse in one hand and used my other hand to open the door. My coat obscured my view of the bottom of the door. When I pulled the door open it struck the side of my left foot, injuring my toes. ()
## 11567                                                                                                                      As I exited men's bathroom, the door was jerked open as student entered restroom. I fell forward severely twisting both knees and right foot.
## 11568                                                                                                                                     As I left b side of bldg 2, I tripped and stumbled but didn't fall. I felt a sensation of pins and needles up and down back ()
## 11569                                                                                                                    As I prepared to move pts from b hall to c hall tocreate beds I lifted bags & boxes bending over tolift items I pulled area back causing strain
## 11570                                                                                                                                                                            As I started out to the rec yard of unit3b-blk side my rt hand was caught btwn the door
## 11571                                                                                                                                                                  As I stepped from owen hall on my way to a campus meeting, I stepped on a tack on the sidewalk ()
## 11572                                                                                                                                                                      As I turned in my chiar I accidentally hit my rt knee on the lock hanging from the lock boxes
## 11573                                                                                                           As I walked down the stairs outside of the thompson center I fell down the last two stairs and landed on both my knees and my foot was bent under me. ()
## 11574                                                                                                                                     As I was attempting to sit in chair, it rolled backwards and I fell, striking tail bone and back of head on hardwood floor. ()
## 11575                                                                                                                    As I was changing resident I caught my right foot in the cord to the air pump which caused me to fall & bend my knee up under me & sideways. ()
## 11576                                                                                                                        As I was closing an inmates trap door after delivering food trays the inmate held a squirt tip bottle out the door and squirted urine at me
## 11577                                                                                                                           As I was clsoing the falls lake holly point sra main gate, my left index finger was crushed between the two tips of the gate sections ()
## 11578                                                                                                                          As I was coming out of elevator and accidently hit with the trashcan by inmate worker I was behind it and he didn't see me rt arm was hit
## 11579                                                                                                                         As I was entering the justice building downtown this morning, the automatic door ripped off the nail on my second toe on my right foot. ()
## 11580                                                                                                                                                                             As I was getting ready to walk back into courtroomturned to check door, dislocated hip
## 11581                                                                                                                                                                 As I was getting up out of the chair in tower & I caught a wood splinter underneath my finger nail
## 11582                                                                                                                                                                                As I was going to the office, a black dodge truck ran me off the road into a ditch.
## 11583                                                                                                                                                                 As I was leaving f-block the door jammed while I was walking out. My back was against the door way
## 11584                                                                                                                                                                                As I was leaving my clients' home, I tripped and fell over uneven concrete walkway.
## 11585                                                                                                                                                  As I was leaving to go to lunch as I was going up steps my foot slipped causing me to fall on lt knee and rt hand
## 11586                                                                                                                                               As I was letting the water out of the steam tray the faucet came off & hot water came out & burned top of right foot
## 11587                                                                                                                                                       As I was pulling the drawer out to retrieve flat film, the drawer suddenly broke apart landing on my arm. ()
## 11588                                                                                                                                             As I was sitting down the chair rolled backwards from under me and I fell on the floor and landed on my right side. ()
## 11589                                                          As I was stepping down the steps in visitation, I began to fall and I placed my right foot down to catch myself, and as I stepped down, it twisted; however another staff caught me, breaking my fall. ()
## 11590                                                                                                                                                 As I was taking an inmate to the ground, he stuck his thumb behind my left ear and scratched me in the process. ()
## 11591                                                                                                             As I was walking toward the gatehouse from the parking lot, I felt dizzy and fell to the ground on my right palm, right knee, and area below right kne
## 11592                                                                                                                 As Mr. Mccaskill was inspecting the kitchen, his rt foot hit a sticky spot twisting his right foot & making a loud popping sound injuring his foot
## 11593                                                                                                                                                                   As Ms. Kellis was walking up the stairs, she felt a pressure, catch and pain in her left knee ()
## 11594                                                                                                                                                                  As Ms. Poage was stepping into the kitchen, she tripped over the step leading into the kitchen ()
## 11595                                                                     As Ms. Sheppard was walking out of the administration building she hit an uneven patch of sidewalk and fell to the ground. Her left forearm & hand broke her fall and resulted in swelling. ()
## 11596                                                            As a basic law enforcement training part time instructor, the employee was role playing with students.. During a role play the employee slipped in mud and his right elbow hit the concrete sidewalk ()
## 11597                                                                                                                                                      As a bus monitor, EE tried to stop student who ran off. He hit, bit, kicked etc EE on her shoulder and chest.
## 11598                                                                                                                                                              As a cpi instructor, was dropped by 2 employees onto right knee while participating in a technique ()
## 11599                                                                                                                                                           As a needle was being removed by phlebotomist, the patient jerked & needle stuck her right index finger.
## 11600                                                                                                                                          As a passenger in a state vehicle there was a correction in the direction of travel resulting in a sideward snap of neck.
## 11601                                                                                                                                                                                       As a result of a brain tumor caused by long term exposure to chemical fumes.
## 11602                                                         As a temporary employee, her job includes flipping flags located outside patient door. The flags are located above her head. She has to wipe down tables in between patients and at the end of the day. ()
## 11603                                                                                                         As c/o hildreth was changing the tv in the west wing on the mezzarine, she was coming down the stairs, her foot slipped and she fell down 3 to 4 stairs ()
## 11604                                                                                                                                         As client was stumbling I tried to prevent him from falling by catching him around the waist areai fell & hurt my rt wrist
## 11605                                                                                                                                                                                                      As closed bar door to clothshouse she caught her finger in it
## 11606                                                                                                                                         As door was closing put his hand up in attempt to close door & his second finger on right hand caught in door & was mashed
## 11607                                                                                                                                                                           As employee entered the classroom, he slipped on a wet spot & fell on his left shoulder.
## 11608                                                                                                                                                             As employee got up from chair, her foot slipped and she fell on the floor landing on her left side. ()
## 11609                                                                                                                                As employee grabbed tower door, trying to prevent it from opening to far, left hand got caught between the door and the guard rail.
## 11610                                                                                                                        As employee walked down wooden ramp leading to ferry, he turned, slipped, and fell onto his right shoulder. Ramp had spots of ice on it. ()
## 11611                                                                                                                                                                  As employee walked into welding shop, she slipped on the wet concrete floor, causing her to fall.
## 11612                                                                                                                                            As employee was coming inside the building an individual ran up and hguged him and bit employee on his left shoulder ()
## 11613                                                                                                                 As employee was entering the building, she tripped over the raised area at the entrance near the kitchen area fell on right hip and right knee. ()
## 11614                             As employee was entering the mcgowen building, a coworker spoke to her. She turned her head to reply to the coworker. As she turned her head forward, she ran into a supporting post of the canopy attached to the mcgowen building ()
## 11615                                                                                                                                                            As employee was exiting maintenance truck, turning torso to left, felt sharp pain in his lower back. ()
## 11616                                                                                                                                                                            As employee was folding up ladder he had been using, he felt something in his left eye.
## 11617                                                                                                                                                                      As employee was leaving the bathroom stall, the stall door slammed shut on employee's head ()
## 11618                                                                                                                                         As employee was loading pipe back into truck after it rolled out, he felt a strain in his lower abdomen and groin area. ()
## 11619                                                                                                      As employee was moving file folder in her office, some fell. She bent to picked them up. As she went to stand upright, she felt something pull in her back ()
## 11620                                                                                                As employee was raking asphalt behind patching machine, he felt a pull on his groin area. It later caused pain when he walked. List injury as: strain groin area ()
## 11621                                                                                                      As employee were clearing a beaver damn, Mr Hawks was forcefully pulling and dragging away enterlocked driftwood as he felt a pop between his shoulder blades
## 11622                                                                                                                                                    As exiting dorms she felt something on her lt arn she looked down and saw a spider on her arm and kncked it off
## 11623                                                                                                                         As he attempted to open the back door to the food service building he hurt his lt shoulder the exhaust fan had pulled a vacuum on the door
## 11624                                                                                                                                  As he exited the armory gate, I attempted to wave my left hand to get a staff member attention and lt fingers hit the razor wine.
## 11625                                                                                                                                                                              As he exited the truck his right knee twisted when he placed it on the first step. ()
## 11626                                                                                                                                                                    As he helped move a cow through the chute to the trailer, the cow kicked him above the lt knee.
## 11627                                                                                                                                     As he reached the bottom of the stairs he missed the step & landed hard on his rt foot. Complains of dull pain in upper rt leg
## 11628                                                                                                                                                                                                  As he was closing the door it closed on his left index finger. ()
## 11629                                                                                                                                                                    As he was crawing resvoling he was knocked to the ground by the door and was struck on his hand
## 11630                                                                                                                                                                As he was exiting the stage he fell into a cyclorama light pit bruising his hand, leg, and gluteus.
## 11631                                                                                                                                                                  As he was sitting down in a chair, the chair twisted hitting his right knee on the desk drawer ()
## 11632                                                                                                                                                                As inmate was being placed in cell, he was irate. He was left in restraints and then spit on me. ()
## 11633                                                                                                                                            As larry walked towards the tailoring plant officedown the loading ramp, he slipped, fell, & fractured his right wrist.
## 11634                                                                                                                                    As nicole was entering the third floor of the mcleod bldg stairwell, she tripped on the threshold causing her to trip and fall.
## 11635                                                                                                                                                                        As ofc was escorting inmate back to his cell, the inmate turned and spit on the officer. ()
## 11636                                                                                                                                                                                  As officer approached the cell door, inmate threw an unknown substance on him. ()
## 11637                                                                                                  As officer maness was unloading surplus copier from the truck, he stepped between the tailgate and scissor lift lamp, fell and scraped his leg on the way down ()
## 11638                                                                                                                                               As officer mccoy was seated in a chair, she stood up and felt a sharp burning pain from right shoulder to waistline.
## 11639                                                                                                                                                                           As officer opened inmate's wicker door, the inmate threw and unknown substance on him ()
## 11640                                                                                                                                                                               As officer was walking up to inmate, the inmate threw an unknown substance on him ()
## 11641                                                                                                              As part of job EE keys fertilizer information intodatabase. Repetitive motion has resulted in cts. EE noticed pain in wrist grew worse. Dr. On 5-6-04
## 11642                                                                                                                                                  As part of new hire orientation, I had to be pepper sprayed and had an allergice reaction to the pepper spray. ()
## 11643                                                                                As part of study abroad program, engaged in service learning project in ghesc, italy, repositioning stone. In process of passing large stone, stone slipped and pinched knuckle. ()
## 11644                                                                                                                  As part of training, received oc pepper spray class& exposure. After exposure to pepper spray, claimsto have very senisitive scalp, lips, face, e
## 11645                                                                                                                                       As routine worker the employee has to repeatedly remove cages and racks, which caused the injury. Both hands and shoulder ()
## 11646                                                                                                    As sgt. Williams walked towards dorm, inmate came ran up behind him. Sgt turned to face inmate and they fell on the ground and wrestled until staff arrived. ()
## 11647                                                          As she stood up from her chair, her toe hooked under the bottom desk drawer and she toppled over the drawer and fell to the outside of the drawer onto the floor. She hurt her arm, leg, hip and neck. ()
## 11648                                                                                                              As she was doing her security check and coming down the stairs, slipped on water and tried to catch with my right hand and injured it when I fell. ()
## 11649                                                                               As she was getting up from a chair to open the door, she got her foot tangled up on the leg of the chair and she fell hitting her head, back, leg, arm and left hand and shoulder ()
## 11650                                                                                                               As she was going to hold the door so staff member pushing a cart could enter medical, the door came toward her &slammed against her left shoulder ()
## 11651                                                                                                                                                 As she was opening door to go to the back office where the charts are, she flet a sharp pain in her upper back. ()
## 11652                                                                                                                           As soon as I stepped onto the waxed linoleum tile floor I slipped and fell immediately. Carpet was wet from shampooing the night before.
## 11653                                                                                                                                                           As staff exited the unit, she stepped into a hole twisting her right foot and ankle off the sidewalk. ()
## 11654                                                                                                                                                                               As staff was intervening with a client the tv was pushed hitting top of left foot ()
## 11655                                                                                        As students began fighting on wing one, staff ran over and the employees foot slammed into an object as she tried to get out of the way of staff restraining a student.. ()
## 11656                                                                                                                                                    As the EE entered the building reporting to work, she stepped on the concrete floor and slipped on wet spot. ()
## 11657                                                                                                                                                 As the employee was walking to her car, she stepped in a hole, twisting her left ankle and falling on her knee. ()
## 11658                                                                                                                                                             As the inmate was taken down the EE states that his leg was trapped under inmate and or under officer.
## 11659                                                                                                                                             As the iw was bending over to move files from the floor to a shelf, she experienced a sharp pain in her lower back. ()
## 11660                                                                                                                                                                    As the officer was closing the control booth door, the edge of the door cut him on the thumb ()
## 11661                                                                                                                                                 As the officer was retrieving the inmate's tray through the door, the inmate slammed his wrist against the door ()
## 11662                                                                                                                                                                   As walking into door at office building; had moth to fly into ear. List injuries as: left ear ()
## 11663                                                                                                                                                                             As wheelchair was being pushed down ramp, tripped over footrest and step. Turned ankle
## 11664                                                                                                                                                                                                        Asaaulted by patient-hit in nose, face and back of neck. ()
## 11665                                                                                                                                                                                                                                                  Asbestos exposure
## 11666                                                                                                                                                                                                          Asbestos fibers has caused EE to have breathing problems.
## 11667                                                                                                                                                                                                                                                   Asbestos in eyes
## 11668                                                                                                                                                                                                                  Asbestos insallation at mount mitchell restaurant
## 11669                                                                                                                                                                                                                    Asbestos installation at mt mitchell restaurant
## 11670                                                                                                                                                                                                                                                Asbestosis exposure
## 11671                                                                                                                                                                                                                         Asbestosis exposure/claimant died 12/07/95
## 11672                                                                                                                 Ascend the ladder from the exterior roof of taylor-slaughter bldg, EE slipped on remaining precipitation from the rain, fall appro 10ft to ground.
## 11673                                                                                                                                                                                Asked client to go & get bath client got up & swung at EE hitting EE on neck w/fist
## 11674                                                                                                                                                                 Asked inmate to leave library. Inmate was being hostile & violent. Inmate struck me under left eye
## 11675                                                                                                                                                                                  Asking I/m if wanted to come out for shave and I/m threw urine and feces on EE ()
## 11676                                                                                                                                                                                 Aspects of job significantly contributed to the development of left knee condition
## 11677                                                                                                                                                                                           Asphalt gave way and EE fell into ditch hitting his left hip on concrete
## 11678                                                                                                                                                                                Aspirating mosquito's. Mouthpiece of aspirator chipped bottom middle left tooth. ()
## 11679                                                                                                                                                                                                                                           Assalted by an inmate ()
## 11680                                                                                                                                                                                       Assault - breaking up fight between inmates possible blood exposure only. ()
## 11681                                                                                                                                                                                             Assault - possible blood exposure while breaking up an inmate fight ()
## 11682                                                                                                                                                                                                                                    Assault by another staff member
## 11683                                                                                                                                                                                                         Assault by juvenile - punching on staff head several times
## 11684                                                                                                                                                                                                                               Assault upon law enforcement officer
## 11685                                                                                                                                                                                           Assaulted by a co worker, punched in the face, sitting at the stop light
## 11686                                                                                                                                                                                                                                         Assaulted by a juvenile ()
## 11687                                                                                                                                                                                                                                             Assaulted by a patient
## 11688                                                                                                                                                                           Assaulted by a patient by grabbing her left index finger and kicking her in the abdomen.
## 11689                                                                                                                                                                       Assaulted by a student. Pushed against wooden door and right foot stepped on by the student.
## 11690                                                                                                                                                                                                 Assaulted by an inmate, while passing cleaning supplies to him. ()
## 11691                                                                                                                                                         Assaulted by female trying to take into custody, sheel came off chair throwing EE into the floor very hard
## 11692                                                                                                                                                                                                                                             Assaulted by inmate ()
## 11693                                                                                                                                                                                   Assaulted by inmate and received scratches on left side of face and back of neck
## 11694                                                                                                                                                                                                                        Assaulted by inmate escorting him to shower
## 11695                                                                                                                                                                                                                          Assaulted by inmate w/closed fist to face
## 11696                                                                                                                                                                                                        Assaulted by inmate when cell was open for cleanup time. ()
## 11697                                                                                                                                                                                                             Assaulted by inmate, hit in head with metal bracket ()
## 11698                                                                                                                                                                                                                          Assaulted by inmate, hitting and kicking.
## 11699                                                                                                                     Assaulted by inmate. Injury to left side of face--abrasion, left side of chest-torn cartilage from rib cage, strain neck muscle, from choking.
## 11700                                                                                                                 Assaulted by juveniles trying to escape & take down EE. Was administering medication & snacks. Lt arm/shoulder; rt knee/lower back/hip/thigh teeth
## 11701                                                                                                                                                                                                                                  Assaulted by patient in restroom.
## 11702                                                                                                                                                                                                                           Assaulted by patient injuring right hand
## 11703                                                                                                                                                                                        Assaulted by patient, hit on left eye and injured right 5th phalanx-finger.
## 11704                                                                                                                                                                                                    Assaulted by patient, punched on left side of jaw by patient ()
## 11705                                                                                                                                                                                                                                               Assaulted by student
## 11706                                                                                                                                                       Assaulted by student w/a broom handle while tryingto assist co-worker who was being attacked by same student
## 11707                                                                                                                                                                    Assaulted by student while trying to help another staff member that was being choked by student
## 11708                                                                                                                     Assaulted by student who was out of control. Student kicked EE in face & EE strained back whiletrying to restrain student. Face & back strain.
## 11709                                                                                                                                                                                                                                       Assaulted by unknown person.
## 11710                                                                                                                                                                                                               Assaulted during supervision of segregated inmate ()
## 11711                                                                                                                                                                                                                                  Assaulted during violator contact
## 11712                                                                                                                                                                                   Assaulted when I/m grabbed him while assisting another c/o picking up food trays
## 11713                                                                                                                                                         Assaultive patient-hit staff on rt arm and lft elbow during restraint-combative patient--abrasion forearms
## 11714                                                                                                                                                                    Assembling 'big sally', almost dropped a part, caught it, strained shoulder and jammed lt thumb
## 11715                                                                                                                                                        Assembling discharged records and reviewing ward charts for timeliness. Carpal tunnel syndrome right wrist.
## 11716                                                                                                                                                                              Assembling glass rod onto a rubber policeman and glass rod brake and cut finger open.
## 11717                                                                                                                                                                                    Assembling glass rod onto rubber policeman, glass rod broke and cut finger open
## 11718                                                                                             Assembling scaffolding, end unit rolled over my head causing my back to twist as I grabbed it and prevented myself from falling. Lower back pain, soreness in back. ()
## 11719                                                                                                                                                                                                              Assembling shelving, cut thumb on upright metal edge.
## 11720                                                                                                                                                        Assembly of overhead equipment, small metal particle fell into right eye. Glasses were worn during assembly
## 11721                                                                                                                            Assessing child motor skills. EE demonstrated: scooting down steps on buttocks, while holding child, & scooting bkwds. Injured low back
## 11722                                                                                                                                       Assessing self injurious pt, standing in doorway of his bedroom, pt approached EE and punched him in the left temple area ()
## 11723                                                                                                                                                                                                  Assessing stream riparian area quality, was exposed to poison ivy
## 11724                                                                                                                                                                                         Assiating with out of control juvenile, juvenlie spit in her eyes and face
## 11725                                                                                                                   Assigned a call on old us 64 involving a horse & mule out of pasture. EE hurd animals to pasture through high weeds. Insect bite left lower leg.
## 11726                                                                                                                                             Assigned at wake medical center, leaving hospital parking lot fell hurting left knee & left hand while crossing street
## 11727                                                                                                                Assigned classroom had mold covering cabinets, desks, books, windows, doors, countertops.. Immed after bgng work in room, experienced breathing dif
## 11728                                                                                                                                                                 Assigned custody offcier on yard attempting to open fire door... Rt forearm/lt wrist f18 filed. ..
## 11729                                                                                                                                          Assigned duties-I am the forms person at dix formsare being changed to crh requires handling boxes up to 50 lb repetative
## 11730                                                                                                                            Assigned on road squad duty supervising inmates on work site. Observed tick on his back after work hours at his residence - wooded area
## 11731                                                                                                                           Assigned to attend all-day class-parked car in public lot/walked 2 blocks to class and in processstepped off curb hurting calf in lt leg
## 11732                                                                                                                       Assigned to clean bathroom on foothall field. Areawas saturated with pollen. Began itching before end of shift and itch continued to worsen.
## 11733                                                                                                                                          Assigned to cleaning block when inmate assaulted her w/unknown substance in bottle thru trap door & on inmate's cell door
## 11734                                                                                                                                                                                     Assigned to gum dorm-pushed outside vestibule door open-hurt right shoulder ()
## 11735                                                                                                                                                   Assigned to hatteras control and hit her knee at the counter in the control station. EE was prior knee injuries.
## 11736                                                                                                                   Assigned to install door stops in each room on 1stfloor of the villages & had to use hammer drill into a concrete floor. Numbness rt arm & hand.
## 11737                                                                                                                                                      Assigned to kitchen security. Officer was locking 220 door when my 3rd finger on right hand got caught in key
## 11738                                                                                                                 Assigned to segregation. Picking up a pair of handcuffs from desk beside metal file cabinet & drew his arm back & scraped right forearm in cabinet
## 11739                                                                                                                                   Assigned to tower #4 and was bitten/stung by what appeared to be termites or ants. Bitten all over upper body leaving red marks.
## 11740                                                                                                                                                                                   Assigned to tower 1 & something flew out of air conditioner & hit EE in left eye
## 11741                                                                                                               Assigned to tower 6 she was standing in front of heater when her vision became blurry & knees weaken causing her to fall hitting her back. No injur.
## 11742                                                                                                                 Assigned to traffic direct'nl post at lowes motor speedway. EE was parked sitting inside car when another car backed into patrol car. Back & head.
## 11743                                                                                                                         Assigned to wildfire as facilities unit leader. Began experiencing numbness in fingers, feet & lt leg. Cause unknown. Taken for diagnosis.
## 11744                                                                                                                       Assigned to work b, d, and f blocks two rats came out of EE's coat when EE picked up the rats fleas that bit him allover his cheast and back
## 11745                                                                                                                                                                                                                           Assigned to work in control center #3 ()
## 11746                                                                                                                                                                 Assigned to yard. Reached to place his hand on fence getting his left index finger in razor ribbon
## 11747                                                                                                              Assigned tower #1 raised trap door lost footing & slipped into stairwell opening. Lifting door sliped & fell - scratch rt knee & bruised lt shoulder.
## 11748                                                                                                                                                                                                        Assigning in pic procedures hurt index finger on right hand
## 11749                                                                                                                                                   Assisiting a co-worker transfer a client back into a wheelchair. The client turned his head and herupper rt arm.
## 11750                                                                                                                       Assist chg. Resident in bed-coworker and I turned resident on side. Pulled back against my arm/shoulder while holding-pulling r. Shoulder ()
## 11751                                                                                                                                                                Assist coworker transporting heavy pt up incline in gerichair. My stomach is sore & low back throbs
## 11752                                                                                                                                   Assist lift client w mechanical lift-grabbed top of sling to keep client from falling out-pain l. Wirst radiating up forearm. ()
## 11753                                                                                                                                                                             Assist resident from recliner to bed-resisted-started to sit down-pull in mid back. ()
## 11754                                                   Assist resident into shower room-attempted to stand pivot (to sit) into shower chair-resident combative-slammed down/ back into chair hitting employee's left hand (on back of chair) bending 4 fingers back. ()
## 11755                                                                                                                                    Assist resident off of commode, resident grabbed uniform and rail at the same time, EE holding arm and resident fell back down.
## 11756                                                                                                                                Assist transfer resident out of recliner to bed-resident resisted-tried to sit down-felt pull in mid back and r. Shoulder blade. ()
## 11757                                                                                                                               Assist. Change resident-attempting to keep resident from falling-resident jerking emp. Back and forth- r. Shoulder elbow soreness ()
## 11758                                                                                                                 Assist. Chg. Client-client leaning against emp. -empbearing weight. Client kept pushing forward into emp. Forcing emp. Backwards. Back hurt later.
## 11759                                                                                              Assist. Chg. Resident-resident seated in chair-kept tilting chair backwards- emp. Kept lifting chair upright to prevent resident from falling -pain in upper back. ()
## 11760                                                                                                                                               Assist. Co-worker. Shave client-client hit co-worker's arm-resulting in razor cutting injujred employee's left hand.
## 11761                                                                                                                                                           Assist. Resident sit in wheelchair-l. 3rd. Finger caught between resident and side arm on wheelchair. ()
## 11762                                                                                                                                                Assist. Resident to slide back in chair-went to pull him back by his gait belt and something popped in low back. ()
## 11763                                                                                                                              Assist. Stand pivot resident from toilet to wc. Stood resident up to dress-resident started leaning then to drop-felt pull in back ()
## 11764                                                                                                                                                    Assist. Transfer resident from w/c into regular chair-resident pulled back causing pain in r. Shoulder/neck. ()
## 11765                                                                                                             Assist. Transfer resident from w/c into regular chair-resident squatted down in usual position when attempting to be transfered-pain in l. Shoulder ()
## 11766                                                                                                                                                                          Assist. Transfer resident to chair-when sat resident back-felt l. Shoulder start to hurt.
## 11767                                                               Assist. Walk resident into bathroom-resident pushing/pulling -pushed emp. To floor then fell on top of er-landed on left side-complaint of r. Ankle & elbow and l shoulder and leg pain/soreness. ()
## 11768                                                                                                                                                                                                           Assistaing inmate back to cell - inmate spit on officer.
## 11769                                                                                                                      Assistance was needed in cottage, but EE was in gym. EE began running across field to cottage & twisted knee. Caused contusions to right knee
## 11770                                                                                                                                  Assistant manager was helping set up for nc state fair when a doberman owned by one of the fair workers bit her right buttock. ()
## 11771                                                                                                                                                                              Assisted 2 staff members restrain student who was attempting to fight another student
## 11772                                                                                                                       Assisted Ms. Nichols helping an inmate up who had slipped on a newly waxed floor. Pain in back/neck after assisting inmate up off the floor.
## 11773                                                                                                                                Assisted a clinet in bathroom & client began to fall. EE intervened & hurt right wrist trying to break fall. Injury to right wrist.
## 11774                                                                                 Assisted chg. Residents clothes-directed resident out of bathroom-holding residents left arm-resident started jerking /swinging emp. Around-strained neck/upper back/shoulders. ()
## 11775                                                                                                                                                                                                                                  Assisted client from floor to w/c
## 11776                                                                                                                                                                                          Assisted client in leaning forward in chair resulted in pain in rt wrist.
## 11777                                                                                                                                                     Assisted client to stand (to toilet)client dropped- emp. Assisted to stand back up and lift to bed -back pain.
## 11778                                                                                                                       Assisted co with cutting down sheets around inmateneck w/a cutdown knife. Staff pulled away, the knifecontacted lt inner forearm above wrist
## 11779                                                                    Assisted get resident up and ready for day-resisdent pulled back- caused co-worker to bump into resident- resulted in resident starting to fall-caught-resident upset-jerked- twisting back. ()
## 11780                                                              Assisted getting resident up out of floor and into chair then attempted to pull resident's pants up- employee was holding resident from behind so co-worker could pull pants up-felt pull in back. ()
## 11781                                                                                                                                                             Assisted in a call extraction of an inmate while restraining inmate someone's knee hit EE in the rteye
## 11782                                                                                                                                                                         Assisted in breaking up a fight between inmates. Injured lower left side of back and legs.
## 11783                                                                                                                                                                                      Assisted in clearing kitchen of inmates during fire. Inhaled smoke from fire.
## 11784                                                                                                                                                                                         Assisted in getting patient up after which her back started hurting since.
## 11785                                                                                                                                               Assisted in moving tables, chairs & boxes for room set-up of activity & hlth fair. Middle of back affecting rt side.
## 11786                                                                                                                                       Assisted in physically restraining a student. Employee escorted a student to the floor while student was attempting to fight
## 11787                                                                                                                Assisted in restraining a combative inmate who washandcuffed. I/m suddenly rose from a seated posit ion causing left shoulder and upper arm to pop.
## 11788                                                                                                                  Assisted in securing disruptive inmate he grabbed upper torso of inmate falling to floor during struggle. As EE fell right arm struck commode rim
## 11789                                                                                                                                                                                                           Assisted in use of force in which an inmate spit in head
## 11790                                                                                                                                                                                           Assisted keeping client from injurying self and lifting up off of floor.
## 11791                                                                                                                         Assisted lab with resident during blood draw and resident was swinging to hit kathy price who was drawing blood and resident hit my arm ()
## 11792                                                                                                                                                     Assisted lift a client into bed, EE felt pain in upper lt chest-continued thru night-sneezed felt pop in chest
## 11793                                                                                                                                                                                                                      Assisted lift of stretcher w/patient on board
## 11794                                                                                                                                    Assisted moving a 5 gal. Paint bucket out of the paint shop, I twisted around & I felt a pull on theleft side of my lower back.
## 11795                                                                                                                              Assisted other employees pulling large truck and patient tray bottoms into kitchen. When attempting to steer truck felt pull in back.
## 11796                                                                                                                                                              Assisted patient from a sitting position in floor to standing-felt strain/tightness in lower back. ()
## 11797                                                                                                                                                                     Assisted resident from sofa-chair in dayroom to rolling walker. Back started hurting later. ()
## 11798                                                                     Assisted resident into dental chair-stand pivoted resident into chair-had to go behind dental chair to lift/pull resident up and back into chair-felt strain in l collar bone area (shoulder).
## 11799                                                                                                                                             Assisted resident to stand from toilet-supported resident while co-worker changed-assisted to chair-pain lower back ()
## 11800                                                                                                                                          Assisted resident to stand-placing gait belt around-resisdent began to fall-caused r. Ankle to turn in toward l. Foot. ()
## 11801                                                                                            Assisted resident to wheelchair with a health care technician assistance. When resident turned to sit in wheelchair she punched me on my chin and scratched my arms. ()
## 11802                                                                                                                                                                                                                     Assisted restraining of I/m, fell on knees. ()
## 11803                                                                                                                                                                                         Assisted retraining patient. Patient kicked and fractured left 5 th finger
## 11804                                                             Assisted staff get resident up and dressed, had to turn resident back and forth to put sling under. After went to shave another resident bent down and felt pull in back (below l. Shoulder blade). ()
## 11805                                                                                                                                         Assisted staff to hold pt so pt could be cleaned, pt grabbed into rn hand, causing pt fingernails to dig into skin of hand
## 11806                                       Assisted stand a sedated resident up and attempt to walk from wheel chair to dental chair-resident began to sit prior to reaching dental chair-resulting in bearing full weight to keep from going to floor-low back pain ()
## 11807                                                                                                                                             Assisted students w/moving patient in & out of bedon 3/30 & 3/31/06. Complained of increased tenderness after standing
## 11808                                                                                                                Assisted w/ an arrest offender began to resist attempted to stand offender up to apply handcuffs; placed him on floor after cuffs were on saw blood
## 11809                                                                                                                                                                Assisted w/ lifting and moving pts, back very tight, wrked extra shift causing increased discomfort
## 11810                                                                                                                                                         Assisted w/client's transfer to wheelchair w/use of lift. Client began falling out of chair. EE broke fall
## 11811                                                                           Assisted walk resident to sunporch (after 12:00 pm check & change). Emp. Sat down in chair in front of resident -resident suddenly slapped emp. Across left side of head (ear & jaw). ()
## 11812                                                                                                                                                              Assisted with 4 man carry of a combative patient. Injured left distal ulna(lower arm) and left wrist.
## 11813                                                                                                                                                 Assisted with carrying an agitated patient to restraints. Pain in upper back extending around to left front chest.
## 11814                                                                                                                                                                               Assisted with patient restraint, afterward, employee complained for shoulder pain ()
## 11815                                                                                                             Assistig inmate out of shower, inmate pushed open door and lunged towards another officer, glover tried to stop inmate and was cut w/blade on ear/arm.
## 11816                                                                                                                                                                                     Assistin gclient with shower, slid on substance in floor- twisting lower back.
## 11817                                                                                                                                                                                                          Assisting & teaching clients. Hornets nest was disturbed.
## 11818                                                                                                                                                                     Assisting 2 cna's stand resident up to change clothes. Resident punched in l. Side of face. ()
## 11819                                                                                                                                                                           Assisting 2 other staff perform check and change-felt pull/strain in mid lumbar area. ()
## 11820                                                                                                                                                                                       Assisting 2 other staff with lifting a patient who had fallen in the shower.
## 11821                                                                                                                                                         Assisting 300 lb pt walking getting up out of chair noticed back pain left lower side following morning ()
## 11822                                                                                                                                Assisting 4 other staff-transfer client from x-ray table to w/c- employees bore full weight) noted pulled muscle in upper left leg.
## 11823                                                                                                                                                                                  Assisting Dr. As she drew blood with butterfly needle from cat infected with fiv.
## 11824                                                                                                           Assisting Dr. Goldstein w/ procedure gathering secsurine reached in box felt stick withdrew hand, found 3cc needle uncapped left in wrapper, discard. ..
## 11825                                                                                                                                                                                          Assisting EE in exhaust repair. Piece of metal flew in eye causing injury
## 11826                                                                                                                                                                   Assisting EE w/moving desk while sliding dolly around desk slipped landing on left foot, big toe
## 11827                                                                                                                  Assisting a correctional officer in a use of forcetried to help with hand cuffing, hurt right shoulder and jammed right pinkey **sal cont. ******
## 11828                                                                                                                                                                              Assisting a customer in joblink, when EE was bitten by insect. Lower top of left arm.
## 11829                                                                                                                                                                                                                    Assisting a inmates into a van for transport ()
## 11830                                                                                                                                                                   Assisting a nurse with medication when inmate threw an unknown fluid/yellow liquid in my face ()
## 11831                                                                                                                                                 Assisting a patient out of gerochair, the patient sat back instead of getting up. Staff injured right shoulder. ()
## 11832                                                                                                                                   Assisting a patient to take a shower. The patient refused to take a shower and rolled off the bed onto staff's right 3rd finger.
## 11833                                                                                                                       Assisting a pt out of a chair with the help of a co-worker, EE felt a pull in his back, came in next day and reported this to his supervisor
## 11834                                                                                                                                                                                               Assisting a pt out of bed, EE felt lower back pull and began hurting
## 11835                                                                                                                                                              Assisting a resident from the floor, I could feel a pain and pulling in the bottom of back and thighs
## 11836                                                                                                                     Assisting a resident out of the dining room when another resident came from behind and pushed both EE and the resident. They felt to the floor
## 11837                                                                                                                                                                                                 Assisting a resident to stand up-felt pulled muscles in r. Hip. ()
## 11838                                                                                                                                                                                     Assisting a resident to stand-resident started to fall-pulling emp. R. Side ()
## 11839                                                                                                                                                                                       Assisting a resident to standing position, & back locked up, loss rom, pain.
## 11840                                                                                                               Assisting a staff because patient started fightingtook patient to pr. Got kicked in lft leg and was pushed against wall. Twisted lft foot, shoulder.
## 11841                                                                                                                                                                                                       Assisting aggresive patient to exit van twisted myknee-right
## 11842                                                                                                                          Assisting an agitated client from pov to cottage when client started strugging/jerking EE's arms and scratching and shoving EE into wall.
## 11843                                                                                                                                                       Assisting an agitated pt fm turning wheelchair over. Wheelchair turned over landing on employee's left foot.
## 11844                                                                                                                                                                                             Assisting an inmate getting out of wheel chair & was too large for her
## 11845                                                                                                             Assisting an inmate in medical and the inmate went into a grade mal seizure. Inmate, his w/c, and her all fell to the floor. Finger caught between inm
## 11846                                                                                                                                                               Assisting an inmate off the floor. Extended right hand, proceeded to pull inmate up off the floor ()
## 11847                                          Assisting an inmate with a telephone call to her family and supervisor was sitting in desk chair and must have leaned wrong causing chair to turn over and she fell out of chair to floor injuring right side of body. ()
## 11848                                                                                                                                                                                                      Assisting an uncooperative client, tried to reposition client
## 11849                                                                                                                                                                      Assisting and subduing a combative inmate, EE encounter bloodborn path to chest and right arm
## 11850                                                                                                                                     Assisting another EE in getting free of an assaultive juvenile, the staff grabbed EE's hand & arm injuring his rt arm and hand
## 11851                                                                                                                                                                                                 Assisting another EE to lift client off bathing slab, pulled back.
## 11852                                                                                                                                                                     Assisting another EE while trying to restrain a student. EE was kicked in left ribs onto floor
## 11853                                                                                                                                                  Assisting another EE who was trying to re-attach tailgate to dumptruck when tailgate slipped crushing right thumb
## 11854                                                                                                                                                                                                      Assisting another EE-EE fell into tire rut twisting rt ankle.
## 11855                                                                                                                                                           Assisting another cna to lift pt from bed to chair, l arm had popping, sound, feltit pull, shoulder over
## 11856                                                                                       Assisting another cna w check/change in the w. Bathroom. Attempting to pull resident's pants up-resident grabbed r arm, pulling it downward and twisting. Felt elbow pop. ()
## 11857                                                                                                                  Assisting another female staff who was physically restraining a student, was standing behind the student, she kicke me on my right knee with heel
## 11858                                                                                                                         Assisting another hct to help resident from shower chair to wheelchair. Resident bit me on my left hand. I had on gloves. Break in skin ()
## 11859                                                                                                                                                                                 Assisting another nurse stand client up from floor-bent over-lower back popped. ()
## 11860                                                                                                                                                Assisting another officer during a fight. The suspect scratched the lt side of EE's face/cheek with her fingernails
## 11861                                                                                                                                                                                                Assisting another officer that was being assaulted by an inmate. ()
## 11862                                                                                                                                                                                                                         Assisting another officer w/violent inmate
## 11863                                                                                                                Assisting another officer with getting the carts off the block officer evans lifted the supply cart up 2 steps and (left) hand and wrist twisted ()
## 11864                                                                                                                                                             Assisting another staff in a two person lift when was hit by a client in the jaw with client's knee ()
## 11865                                                                                                                                                Assisting another staff in lifting a patient and felt a sharp pain in back **rtn apt w/Dr Is 5/03/05 -8th day oow**
## 11866                                                          Assisting another staff lift client. EE was to lift bottom portion of client and other staff lift top portion. Other staff did not lift at the same time; EE felt a pain going down left side of back. ()
## 11867                                                                                                                                                                Assisting another staff member in performing cpi hold on a patient, patient headbutted employee. ()
## 11868                                                                                                                       Assisting another staff member to bring in an o2 tank; she got her right shoe caught on door turned right foot with full weight bearing down
## 11869                                                                                                                 Assisting another staff member who was being assaulted by a patient in the nursing station, EE was assaulted by a second patient, the patient.. ..
## 11870                                                                                                                                                 Assisting another staff menber in restraining 2 juvenils fighting employees left knee was twisted ***sal contin***
## 11871                                                                                                       Assisting another staff move chairs and was pushed into wall by accident by staff. Landed into wall on right arm and right shoulder causing pain in area. ()
## 11872                                                                                                                                                                                         Assisting another staff move client up in bed and felt pain in lower back.
## 11873                                                                                                             Assisting another staff to get patients ready to go to to beauty shop and pt became resistive, then pt scratched EE--superficial scratches on rt wrist
## 11874                                                                                                                  Assisting another worker transfer a resident, whenee felt something pull in right knee. Continued to work, as day went by pain/swelling worsened.
## 11875                                                                                                                               Assisting bathe a resident-resident jerked employee causing employee to be pulled across tub (front to back of tub) pulling back. ()
## 11876                                                                                                                                                                     Assisting bathe of client. Client came out of shower and hit employee with fist in left breast
## 11877                                                                                                                                           Assisting bathe-adjusting sling to transfer out of tub-patient slid and had to ease to floor -felt pain in lower back ()
## 11878                                                                                                                                                            Assisting blind pt at water fountain, pt went down on knees, causing EE to twist right shoulder/neck ()
## 11879                                                                                                                                                                                                        Assisting boat captain with anchor, slipped on boat deck ()
## 11880                                                                                                                                                                                                Assisting campus police with fire alarm, employee breathed in smoke
## 11881                                                                                                                                                                                    Assisting carrying a bucket of water for fire safety training and strained back
## 11882                                                                                                                                                                     Assisting change a client-holding clients hands client head butted EE in nose and upper mouth.
## 11883                                                                                                                                                                                          Assisting change a patient became agitated and scratched on both arms. ()
## 11884                                                                                                                                                                                                Assisting change a patient-patient kneed in ribs under l. Breast ()
## 11885                                                                                                                                                                                                          Assisting change client - client kicked EE in right thigh
## 11886                                                                                                                                                         Assisting change client, EE right wrist caught between clients arms and body, twisted, noted feltpop/pain.
## 11887                                                                                                                                                                                                            Assisting change client, client bit EE on right forearm
## 11888                                                                                                                                                                                                        Assisting change client, client bit EE on right ring finger
## 11889                                                                                                                                                                                             Assisting change client, client grabbed wrists and twisted left wrist.
## 11890                                                                                                                                                                      Assisting change client. Client swung at EE, hitting EE in neck, then shoved EE into the door
## 11891                                                                                                                                                                                                     Assisting change patient-aggressive-kicked l. Pinkie finger ()
## 11892                                                                                                                                                                                   Assisting change patients clothes-patient punched in left side of nose/cheek. ()
## 11893                                                                                                                                                                   Assisting change resident on floor-sqatting on knees leaned forward and felt pain in l. Knee. ()
## 11894                                                                                                                                                         Assisting change resident's clothes, resident pushced chair up and back landing on end of l. Middle toe ()
## 11895                                                                                                                                                                                                Assisting change resident-resident grabbed r. Wrist and twisted. ()
## 11896                                                                                                                                                                                            Assisting change resident-resident kicked in directly below r. Knee. ()
## 11897                                                                                                                                                 Assisting change resident-resident was aggresive pushing/shoving. Next morning (6/11/14)noted pain in low back. ()
## 11898                                                                                                                                                    Assisting changing client, client became resistivelate during shift employee noted pain in right side of chest.
## 11899                                                                                                                                                              Assisting chg. Patient-rolled patient towards employee- patient jerked body away-pain in low back. ()
## 11900                                                                                                                                                                                                   Assisting cleint out of tub & fell in twisting left side of back
## 11901                                                                                                                                       Assisting client ambulate. Client lost footing and EE was still holding gait belt until client placed feet back on floor. ()
## 11902                                                                                                                                                                    Assisting client back to bed from bathroom and she went down and staff assisted her to floor ()
## 11903                                                Assisting client back to room; client moved head back, EE moved client's head to the right; while EE was holding gait belt, client attempted to buck causing strain to left shoulder and shoulder area and neck. ()
## 11904                                                                                                                                                                    Assisting client down hall; client leaned back; staff broke fall causing pain in right shoulder
## 11905                                                                                                                               Assisting client down hallway with right hand on middle back area; client stumbled backwards, bending EE's right thumb backwards. ()
## 11906                                                                                                                                                             Assisting client down steps. Client leaned & EE supported client under arm. EE felt discomfort next am
## 11907                                                                                                                                                            Assisting client dressing for breakfast when client grabbed EE arm & scratched it. Scratched rt forarm.
## 11908                                                                                                                                                                   Assisting client during work duties; struck the table with right knee when turning the corner ()
## 11909                                                                                                                                                                                                    Assisting client exit bathroom, client slapped employee in face
## 11910                                                                                                                               Assisting client from wheelchair to bathing chair and felt a pull in neck and hips on right side. Also walked antoher client to unit
## 11911                                                                                                                                       Assisting client from wheelchair to toilet client began to fall. EE reached out to catch. Client & EE injured right shoulder
## 11912                                                                                                                                                                     Assisting client from wheelchair to trolley-clientdropped weight causing EE to pull lower back
## 11913                                                                                                                                                                                                      Assisting client in bathroom and hit rt knee on wheelchair ()
## 11914                                                                                                                                   Assisting client in bathroom, wheelchair rolled back onto EE lt foot, causing her to lose balance & fall onto her left knee/leg.
## 11915                                                                                            Assisting client in bed making. Pulled bed away from wall. When EE was assisting client to pull/push covers on the other side, EE had a sharp pain through mid back. ()
## 11916                                                                                                                                                                              Assisting client in changing when the client turned and bite EE's right upper arm. ()
## 11917                                                                                                                                                 Assisting client in dining room adn client got agitated and hit employee in the mouth/jaw. Pain in lt front tooth.
## 11918                                                                                                                                                                                           Assisting client in getting ready for bath, clientslapped EE in the face
## 11919                                                                                                                                                         Assisting client in hanging his jacket, client accidentally slammed door on EE right middle and ringfinger
## 11920                                                                                                                                                                                     Assisting client in preparing her bath, client became aggressive and bit staff
## 11921                                                                                                                                 Assisting client in pulling pants up. Client spotted item on dresser & dove for it. Client started to fall. EE tried to break fall
## 11922                                                                                                                                                                    Assisting client in putting on clothes, client struck EE on left side of nose, breaking glasses
## 11923                                                                                                                                                                            Assisting client in restroom, client stumbled, EE attempted to keep client from falling
## 11924                                                                                                                                                       Assisting client in sorting frames, wall display was bumped causing a frame to fall hitting the back of neck
## 11925                                                                                                                                          Assisting client in wheelchair and walked client to program area. Felt straining and pulling in left knee during transfer
## 11926                                                                                                                                                                                                         Assisting client into bath tub, client kicked EE in rt eye
## 11927                                                                                                                                                                                                    Assisting client into dining room. EE fell & twisted left ankle
## 11928                                                                                                                                                                  Assisting client off floor from fall noticed afterwards left side of lower back began to hurt. ()
## 11929                                                                                                                                                    Assisting client off the toilet. Client refused to get up; client pulled back from EE and EE hurt right arm. ()
## 11930                                                                                                                                                                                                                 Assisting client off van and pulled muscle in back
## 11931                                                                                                                                                                                     Assisting client onto table for suturing aggravate EE's neck and shoulder area
## 11932                                                                                                                                                              Assisting client onto trolley; client pulled EE's right arm down and EE felt a sharp pain in back. ()
## 11933                                                                                                                Assisting client out of bed, rt hand got caught under client arm pit, when pivoting him in wheel chair employee's hand was pulled and hit bed rail.
## 11934                                                                                                                                                             Assisting client out of chair and onto and off of commode, while toileting, felt twist in right wrist.
## 11935                                                                                                                                                             Assisting client out of chair onto weight scale client unsteady EE stumbeld grabbed bar cut rt finger.
## 11936                                                                                                                                       Assisting client out of wheelchair, noticed a cut open area on right wrist, apparent May have occured by hitting wheelchair.
## 11937                                                                                                                                                                         Assisting client pivot toward bed. Clients knee buckled. Client went down taking eee w/her
## 11938                                                                                                                                                                                Assisting client pulled to lift in order to changeclient felt pain in left shoulder
## 11939                                                                                                                                 Assisting client put on labels, wanted to sit downstool began to move and stool went backwards causing EE to fall on floor on back
## 11940                                                          Assisting client that was in behavior; client kept dropping to floor; EE was holding client to keep her from hurting herself. Client dropped very fast, EE felt a sharp pain the bottom of lower back. ()
## 11941                                                          Assisting client to activity. Client suddenly stopped and just stood on left foot. Tried to redirect client to get off, client would not move; got assistance from other staff to get client off foot. ()
## 11942                                                                                                                                 Assisting client to bathe; client pushed door openleaned forward, staff reached to catch client & both fell; EE fell on left knee.
## 11943                                                                                                                                                          Assisting client to bathroom, client lost balance and started to fall, EE broke fall-- pulled lower back.
## 11944                                                                                               Assisting client to bathroom; client headed into wall, tried to guide client and hold onto client; client was pulling against EE and EE heard her left wrist pop. ()
## 11945                                                                                                                                                       Assisting client to bathroom; stepped into door frame with left foot awkwardly causing pain in left foot. ()
## 11946                                                                                                                             Assisting client to be transported by ems, ems rep moved client to soon and lift tilt off wheel and hit me in the r temple and left ()
## 11947                                                                                                                         Assisting client to bed, struck left thumb to the end of bed against bed rail. Thumb turned dark around edge due to nail flipping back. ()
## 11948                                                                                                                                                                                Assisting client to chair when he jerked away causing employee to twist left wrist.
## 11949                                                                                                                                                                                                  Assisting client to chair. Client pulled on arm & tried to bit EE
## 11950                                                                                                                                        Assisting client to dining area; client lost balance and stumbled; EE hurt lower back attempting to break client's fall. ()
## 11951                                                                                                                                                                                  Assisting client to get breakfast plate. Hit foot on chair leg. Fx. Left big toe.
## 11952                                                                                                                         Assisting client to get on van for medical appt. Client began to fall backwards, EE supported client from back to keep client from falling
## 11953                                                                                                                                     Assisting client to his seat. Stumbled & fell forward. Tried to break fall by holding onto his walking belt & injured left arm
## 11954                                                                                                                          Assisting client to program when client tried to drop to floor; EE stopped fall by assisting client to floor; felt pull in lower back. ()
## 11955                                                                                                                                                                            Assisting client to pull his pants up. Client stiffened his legs & EE felt pull in back
## 11956                                                                                                                                                                                             Assisting client to put on clothes, client went down on EE's right leg
## 11957                                                                                                                               Assisting client to sit on bed-client grabbed EE and att to pull self back up-EE was pulled off balance and felt pain in lower back.
## 11958                                                                                                                    Assisting client to slide over; client made sudden move and caught EE's right arm between client and seat causing swelling to wrist and arm. ()
## 11959                                                                                                                Assisting client to stand up from chair to grasp walker, Ms Client, jerked arm to the lt; client satback down causing upper neck & rt shoulder pain
## 11960                                                                                                                                     Assisting client to stand. Client started to slide while EE was assisting to lift. EE felt pop in left side of neck & shoulder
## 11961                                                                                                                                                     Assisting client to stand. Clt dropped-resulting in EE bearing clt's weight bending wrist. Right wrist sprain.
## 11962                                                                                                                                                                                                                 Assisting client to toilet-client hit EE in lt eye
## 11963                                                                                                                                        Assisting client to toilet/slipped on chair seat belt, client started to "seizure" client hit EE r knee causing knee to pop
## 11964                                                                                                                                         Assisting client to toilet; client began to sit; EE redirected client and twisted/pulled her back when client resisted. ()
## 11965                                                                                                                                                                                                                          Assisting client up and felt her back pop
## 11966                                                                                                                  Assisting client up from dinning table, client began to fall, grab EE hands pulling her forward &downward, EE felt pain in mid to low back strain
## 11967                                                                                                                                                                                                    Assisting client up from floor, client pulled wrist & right arm
## 11968                                                                                                                                                                                            Assisting client up off of floor-felt pull in back-worsened over night.
## 11969                                                                                                                                                                    Assisting client up out of bed. Client resisted & pulled backwards, felt pull in left shoulder.
## 11970                                                                                                                                                                                   Assisting client up. Client was aggressive. EE popped his right thumb in process
## 11971                                                                                                                                                            Assisting client w toileting-client pushed/pulled emp. Hand and around br-next am noted pain in back ()
## 11972                                                                                                                                                                          Assisting client w/ getting dressed. Client becameaggressive & scratched EE on left hand.
## 11973                                                                                                                                       Assisting client w/ pjs; client had hand on lower part of EE's back. Client lost balance & pressed hard into her lower back.
## 11974                                                                                                                                                                            Assisting client w/ tooth brushing, client grabbed EE's lt forearm and pulled/scratched
## 11975                                                                                                                                                Assisting client w/bathing. Client was getting clothes out wardrobe when client slammed the door on his right hand.
## 11976                                                                                                                                                                                            Assisting client w/dressing when client kicked her in left side of face
## 11977                                                                                                                                                                               Assisting client w/dressing... Client became combative- grabbed employee around neck
## 11978                                                                                                                                                                                                 Assisting client w/her shorts & client lost balance and fell on EE
## 11979                                                                                                                                               Assisting client w/rain coat. Client fell on EE causing EE to fall. Landing on right wrist and hitting back on chair
## 11980                                                                                                                                          Assisting client w/shower client leaned to one side -EE thought client was falling, reached to catch client & back popped
## 11981                                                                                                                Assisting client w/sponge bath, EE lifted client in order to change & bath client, during this timeemployee felt a strain/pull in back & both wrist
## 11982                                                                                                                                                                                   Assisting client w/toileting lifting client when felt pull in lower back muscles
## 11983                                                                                                                                                                          Assisting client w/toileting. Assisting w/pull up brief. Urine splashed into emp left eye
## 11984                                                                                                                                      Assisting client walk-holding onto client's gait belt, suddenly dropped down to floor, attempted toassist to sitting position
## 11985                                                                                                                                                     Assisting client walking her to her wheelchair client began to fall-emp caught client. Twisted back in process
## 11986                                                                                                                Assisting client when another client grabbed shoulders; client charged EE; grabbed left arm leaving 3 bruises on arms and skin abrasion on arms. ()
## 11987                                                                                                                        Assisting client when client pushed back on wheelchair and EE's left hand hit the wall with wheelchair handle hitting palm of left hand. ()
## 11988                                                                                                                                                                                                              Assisting client when entered office. Came towards EE
## 11989                                                                                                                                                            Assisting client when he moved to other side of chair and let go. I fell on floor trying to hold him ()
## 11990                                                                                                                                               Assisting client when walking and moving from different areas because client can't walk by herself. Pain in back. ()
## 11991                                                                                                     Assisting client with ambulation; client began to fall; EE trying to break fall; client and EE fell; EE felt pain in right leg, behind knee up to buttocks. ()
## 11992                                                                                                               Assisting client with bath and dressing; client became combative and resistant; EE later felt pain and pulling sensation in left and mid lower back.
## 11993                                                                                                                              Assisting client with bath. Client became aggressive. Client almost fell in bathtub; EE broke the fall causing pain to lower back. ()
## 11994                                                                                                                                                                 Assisting client with bathing when client punched staff on right side of head and in chest area ()
## 11995                                                                                                                                             Assisting client with bathing. Client was getting clothes out of wardrobe when client slammed the door on EE's rt hand
## 11996                                                                                                                                                                                                    Assisting client with bed making and he shoved her into wall ()
## 11997                                                                                                                                                                            Assisting client with buttoning shirt when client grabbed EE's wrist and twisted it. ()
## 11998                                                                                                                                                                             Assisting client with dressing. Patient had seizureand hit staff on right side of head
## 11999                                                                                                                                 Assisting client with dressing; client began to swinging arms wildly and hit EE in the right eye causing pain to the right eye. ()
## 12000                                                                                                                                               Assisting client with gait belt from sofa to wheelchair. Client became unbearable causing stress to EE's right wrist
## 12001                                                                                            Assisting client with getting off floor along with other staff. Client was half in the chair and EE was trying to get client completely in chair; pulled lower back. ()
## 12002                                                                                                  Assisting client with her medication; client refused juice; tried to leave; turned and dropped while EE was holding onto her gait vest causing strain to back. ()
## 12003                                                                                                                               Assisting client with lunch; client grabbed right arm twisted it and attempted to bite right arm while digging nails in EE's arm. ()
## 12004                                                                                                               Assisting client with money management; chair leg broke off chair, fell on floor hitting left shoulder and cutting left thigh against chair leg.. ()
## 12005                                                                                                              Assisting client with preparing breakfast. Client suddenly punched staff on his scrotum. EE went to the er and was taken out of work for 6 days. Will
## 12006                                                                                                                                                                                            Assisting client with shower-client jerked EE lt arm/shoulder and neck.
## 12007                                                                                                                                                                Assisting client with toileting and stumbled back to avoid being hit by client and fell on floor ()
## 12008                                                                                                                                         Assisting client with toileting and the client has spastic movements causing pain in EE's neck, back and left shoulder. ()
## 12009                                                                                                                                                                                          Assisting client with toileting when EE felt something catch in her back.
## 12010                                                                                                                          Assisting client with toileting, client wouldn't bend knees, to sit, instead leaned backwards, causing employee to support clients weight
## 12011                                                                                                                            Assisting client, client could not fasten belt; employee tried to assist when the client laughed and spit went in right eye and on lip.
## 12012                                                                                                                                                                                   Assisting client, clients legs buckled - EE felt burning sensation in lower back
## 12013                                                                                                                                                                   Assisting client-client started to fall-eased to floor-noted pain in left shoulder and rib cage.
## 12014                                                                                                                                                                                                                       Assisting client. Pulled muscle in right arm
## 12015                                                                                                                                                                                                  Assisting client; client swung hand; hit left eye; saliva in eye.
## 12016                                                                                                                                                Assisting client; client tried to run out of room; EE attempted to prevent him from falling & injuredher left hand.
## 12017                                                                                                                                                  Assisting clients at bowling alley, wearing bowling shows, she bumped her left foot/toe on thebowling ball return
## 12018                                                                                          Assisting clients off van; client getting off holding onto EE's hand; as he stepped down he went down on one knee and fell over onto EE's right shoulder causing pain. ()
## 12019                                                                                                                   Assisting clients on golf cart--emp was helping client out of cart-swinging clients legs around so that he could stand-felt & heard pop in wrist
## 12020                                                                                                                                                   Assisting clients when the client went to shake his hand and grabbed his left wrist and bent his wrist downward.
## 12021                                                                                                                                                                         Assisting clinet w/ toileting, clients legs buckled- dead weight- EE felt pull in shoulder
## 12022                                                                                                                                                           Assisting co-worker & pt back to bed pt "dropped" pulling my r shoulder as I was bearing his body weight
## 12023                                                                                                                                                                                 Assisting co-worker get resident up-resident struggling-employee felt neck pop. ()
## 12024                                                                                                                                                                                                              Assisting co-worker giving pt a bath, pt attack EE ()
## 12025                                                                                                                                                                                     Assisting co-worker in detaining inmate. Co-worker rolled onto right wrist. ()
## 12026                                                                                                                                                                                             Assisting co-worker in moving computer injured lower left side of back
## 12027                                                                                                                  Assisting co-worker in theraputic walk when pt wrapped her legs around co-worker right leg and dropped her wt. EE attempted to catch pt. Low back
## 12028                                                                                                                                                                        Assisting co-worker lift patient up from ground to place in w/c. L. Shoulder and r. Hip. ()
## 12029                                                                                                            Assisting co-worker pull client up in bed-right pointer finger started burning. No specific incidentreported-finger not caught, pulled, twisted or turn
## 12030                                                                                                                                                                                   Assisting co-worker that was being attacked, pt scratched EE on left arm/hand ()
## 12031                                                                                                                                                                                               Assisting co-worker to change diaper, urine splashed in right eye ()
## 12032                                                                                                                                                                            Assisting co-worker turn resident, to place pillowbehind back, and felt right knee pop.
## 12033                                                                                                                                                                                     Assisting co-worker with getting pt out of bed, back started hurting next day.
## 12034                                                                                                                                                       Assisting co-worker with pt., pt became aggressive & grabbed EE arm & twisted. Pain/burning left arm /wrist.
## 12035                                                                                                                                                               Assisting co-worker with removal of electronic monitoring device. Cut left thumb with multi-tool. ()
## 12036                                                                                                                                                                                                    Assisting co-workers during eri, was scratched on right hand ()
## 12037                                                                                                                                                                                  Assisting co-workers in adjusting pt in a geri chair, neck/shoulder began hurting
## 12038                                                                                                                                                                                  Assisting co-workers in restraining juvenile. Juvenile kicked EE in nose & mouth.
## 12039                                                                                                                                            Assisting consumer to dining room. Stopped pulled back as if falling causing this EE to have pullingof right hip & back
## 12040                                                                                                                                                                                           Assisting consumer to remove oil plug, torqueing wrench, shoulder popped
## 12041                                                                                                             Assisting consumer with pulling off wet clothing, consumer became unsteady, EE reached for consumer to prevent falling. EE stood up & hit head on sink
## 12042                                                                                                                                                                                                                        Assisting coworker during eri, no injury ()
## 12043                                                                                                                                                         Assisting coworker placing student in mechanical restraints and he hit is right forearm above the elbor ()
## 12044                                                                                                                                             Assisting coworker transfer pt fm chair to w/c, pt dropped weight, EE grabbed pt before hitting floor, twisted back ()
## 12045                                                                                                                                           Assisting customer at parking south raised window and window fell on EE's left hand, middle finger cutting middle finger
## 12046                                                                                                                                                Assisting customers in the reception area, when EE fell down 2 steps. Buttock/right foot/right elbow & entire back.
## 12047                                                                                                             Assisting deaf/blind consumer in slicing ham for omelette - held the ham while consumer cut, accidentally slicing index middle finger of right hand ()
## 12048                                                                                                                                                                                                    Assisting dentist puctured left finger on a dirty bur (needle).
## 12049                                                                                                                                              Assisting deputy sheriff w/suspect-got into scuffle with suspect and fell onto the ground bruising left knee and leg.
## 12050                                                                                                                                            Assisting dress a resident during check and change-resident pushed into corner of wall-hitting back of l. Upper arm. ()
## 12051                                                                                                                                                                    Assisting dress client-putting socks on client hitee twice with a closed fist, stomach and ribs
## 12052                                                                                                                                      Assisting dress patient in bed-patient thrashing around and unintentionally kicked in r. Side of stomach-8 mths. Pregnant. ()
## 12053                                                                                                               Assisting dress pt, pt agitated, punched EE in stomach, hit and scratched on his back, grabbed left fingers and squeezed, finger swollen and painful
## 12054                                                                                                                                                                        Assisting during a use of force, was attacked by inmate, injured when taking inmate down ()
## 12055                                                                                                                              Assisting during check & change-attempting to change patients clothes, patient resistant-jerking back & forth-felt pop in l. Palm. ()
## 12056                                                                                                                                                                           Assisting during check & change-knelt on floor to assist change and heard l. Knee pop ()
## 12057                                                                                                                         Assisting during fire alarm with evacuation of evergreen, attempted to stop self with doorframe finger separated at angle on the doorframe
## 12058                                                                                                                                                                  Assisting elderly woman up & onto sidewalk so she could enter wendy's. Knee struck corner of wall
## 12059                                                                                                                                                      Assisting emt when patient became agitated and grabbed EE lft thumb and twisted backwards. Sprained lft thumb
## 12060                                                                                                                                          Assisting escort client to ito--client punched EE in left ribs--EE noted pain to back while client struggled to get loose
## 12061                                                                                                                                                                                                                 Assisting escort patient. Squeezed EE's right hand
## 12062                                                                                                                                                                 Assisting fellow officers in altercation. When he was struck in face w/blow delivered by an inmate
## 12063                                                                                                                Assisting female co-worker in moving computer fromone office to another. Was placing computer in backof car when he felt pain in lower back & legs.
## 12064                                                                                                                                                                                                Assisting food service inmate loading unit 5 food service truck. ()
## 12065                                                                                                                   Assisting forest service in destroying a illegal still. Swining a 1011 sledge hammer when EE over extended left elbow. Strain/sprain left elbow.
## 12066                                                                                                                 Assisting gates co. Sheriff's dept, when EE was confronted by a large dog & struck his head on a low overhanging wooded shelter. Top rt side head.
## 12067                                                                                                                                                           Assisting get patient out of the tub-stood patient up-knees buckled-caught and felt pull in low back. ()
## 12068                                                                                                                                                                             Assisting get patient up off of floor-patient resistant-felt pain in l. Lower back. ()
## 12069                                                                                                                      Assisting get resdient ready for bed-resident became angry and punched x 3-emp. Blocked first 2 punches-on third hit l. Side of head- ear. ()
## 12070                                                                                                               Assisting getting a resident out of bed-resident resistant-resident pulled back resulting in strain to employees upper back-btw. Shoulder blades. ()
## 12071                                                                                                                                                                                              Assisting giving bath-resident leaned in and bit on left shoulder. ()
## 12072                                                                                                                                                                                                                                 Assisting giving pt forces meds ()
## 12073                                                                                                                                                     Assisting hct staff transferring pt from bed to chair, resident pulled backward, EE lost grip and pulled wrist
## 12074                                                                                                                                                                                                       Assisting hct with putting resident to bed and she bit me ()
## 12075                                                                                            Assisting hct with resident in the bathroom. Hct was pulling residents paints up & I was assisting resident to stand, resident was pulling back & trying to sit down ()
## 12076                                                                                                                                                              Assisting hcts and turned and twisted right knee. R knee sx on 1/25/05 **overpd $3734. 88 (2/19-3/28*
## 12077                                                                                                                                                                                           Assisting housing an inmate when he hit his rt hand against cell wall ()
## 12078                                                                                                                                                                                                        Assisting in 4 man carry-kicked in right side during carry.
## 12079                                                                                                                                                                                     Assisting in a use of force with inmate and slipped and fell on both knees. ()
## 12080                                                                                                                 Assisting in apprehension of offender who resistedarrest, bolted from the building & broke glass in door. Cut left index and ring finger on glass.
## 12081                                                                                                                Assisting in arrest of defendant, defendant refusedto walk & we were trying to assist him up the stairs. EE lifted him under arms. Injured hand/wri
## 12082                                                                                                                                                                                                          Assisting in arrest, went to floor & rt hand was squeezed
## 12083                                                                                                                                                                        Assisting in bringing an inmate to the infirmary because of medical emergency twisted ankle
## 12084                                                                                                                 Assisting in changing a client and turning a client and pulling on lifting pad. Felt strain and next morning had visible swelling and soreness. ()
## 12085                                                                                                                                                                       Assisting in client transfer from chair to wheel- chair- bumped right elbow on room divider.
## 12086                                                                                                        Assisting in emergency manual restraint with an individual when I felt something in my shoulder pop & immediately alerted my senior manager of the home. ()
## 12087                                                                                                                                                                                                             Assisting in eri, EE was hit by pt in the left side ()
## 12088                                                                                                                                                                                   Assisting in evacuation of inmates in e-wing after one inmate started a fire. ()
## 12089                                                                                                                                                                                                        Assisting in giving client a bath; client spit in right eye
## 12090                                                                                                                                                     Assisting in handcuffing inmate when inmate bit rtthumb on right hand causing a chipped bone in the 1st digit.
## 12091                                                                                                                                                                                                        Assisting in handcuffing inmate, noticed rt forearm swollen
## 12092                                                                                                                                                                                      Assisting in lifting patient from floor, readjusted left wrist and it popped.
## 12093                                                                                                                                                                                        Assisting in maintaining control of inmate when she spit in face and eye ()
## 12094                                                                                                                                                                                                                                      Assisting in moving a patient
## 12095                                                                                                                     Assisting in moving furniture. EE stooped down, when he stood up felt sharp pain in left knee. Left knee began swelling & became very painful.
## 12096                                                                                                                                                                               Assisting in moving inmate to medical. Vomit splashed on left forearm during cpr. ()
## 12097                                                                                                                                                                          Assisting in moving metal locker out of office. Injured occurred while walking down steps
## 12098                                                                                                                 Assisting in moving office partition onto loading dock. Coming onto loading dock foot was caught on mat, fell against railing, hitting lower back.
## 12099                                                                                                                                                                                           Assisting in moving student to a safe place, student bit EE on right arm
## 12100                                                                                                                                                                                                     Assisting in off loading scientific equipment from the ship ()
## 12101                                                                                                                                                                           Assisting in office move-when lifting wooden tablesplinter went into left middle finger.
## 12102                                                                                                               Assisting in placing a patient who was attempting to escape. Patient & staff fell on him during the process. Injured upper back between the shoulder
## 12103                                                                                                                                                                                                                            Assisting in placing a pt in restraints
## 12104                                                                                                                         Assisting in placing inmate back in full restraints. Inmate turned and spit in my face during an attempt to put him in full restraints. ()
## 12105                                                                                                                               Assisting in police officer physical agility testing, as I was assisting the officer readjusted his grip and twisted my left arm. ()
## 12106                                                                                                                                                                                                                  Assisting in prevention inmates hasing seizure ()
## 12107                                                                                                                                                                                                  Assisting in pt transport/carry when pt kicked EE in left knee ()
## 12108                                                                                                                                                                                             Assisting in removing patients from a smoke filled area during a fire.
## 12109                                                                                      Assisting in restraining a disruptive inmate he spit blood on me. Went on left arm, nose, month, and once being treated at hart industrial employee experienced neck pain. ()
## 12110                                                                                                                                                           Assisting in restraining an inmate, taking inmate to the floor, contusion to rt knee abrasion, left knee
## 12111                                                                                                                                                                                                         Assisting in self-defense class. Wrist was bent improperly
## 12112                                                                                                                                                                                              Assisting in subduing assaultive patient. Low back pain & rt buttock.
## 12113                                                                                                                                                                                                             Assisting in surgery. Stuck w/needle by another person
## 12114                                                                                                                          Assisting in the execution of a search warrant, when suspects ran into woods & EE ran into woods &slid down wet leaves. Left knee strain.
## 12115                                                                                                             Assisting in the restraing of a juvenile. Report of injury made at time of injury, was listed as a report only now employee would like to see Dr For b
## 12116                                                                                                                                                                                                 Assisting in the restraint of an inmate, staff fell on my l arm ()
## 12117                                                                                                                                                                        Assisting in transferring an individual he jerked & EE felt her back buckle & pain started.
## 12118                                                                                                                                  Assisting in trying to stop two inmates from fighting, had to physically restrain one of the inmatesand injured lt shoulder/neck.
## 12119                                                                                                                               Assisting in uncrating a pc of equipment @ loadingdock. Had to lifted to remove frm pallet. Back strain occurred during this process
## 12120                                                                                                                                                     Assisting individual from dining room to bathroom, individual tripped and fell to ground on top of employee ()
## 12121                                                                                                                                                                         Assisting individual from his chair to toilet feltleft shoulder pop and it started to hurt
## 12122                                                                                                                                 Assisting individual out of the dining room, as she placed the individual on the couch, she felt a pain under her left arm pit. ()
## 12123                                                                                                                                                             Assisting individual to bathroom for grooming, employee was supporting most of individual's weight. ()
## 12124                                                                                                                                                 Assisting individual to nurses station for medication & individual body hit against left thumb. Sprain left thumb.
## 12125                                                                                                                                         Assisting individuals off of van. While doing so, another individual closed the sliding door (passenger) onto my thumb. ()
## 12126                                                                                                                                                                                         Assisting inmate back in wheelchair when he felt acatch to his lower back.
## 12127                                                                                                                            Assisting inmate back to his dorm, when another I/m came out of rec. Yard coming to me to attack the I/m I fell to floor in hallway. ()
## 12128                                                                                                                                                               Assisting inmate into wheelchair injured low back pain radiating into right leg. As stated by EE. ()
## 12129                                                                                                                                                                                           Assisting inmate that had fallen on floor, inmate hit employee with fist
## 12130                                                                                                                                                                                                              Assisting inmate up flight of stars, strained back ()
## 12131                                                                                                                                                                              Assisting inmate who had fallen into a wheelchair. Inmate could not stand on his own.
## 12132                                                                                                                                          Assisting inmates cleaning cell when accideentally was given the mop accidentally step over pan dust and slipped and fell
## 12133                                                                                                                   Assisting instruction of crdt. Lead instructor was showing the class how to the best wrist technique on him which caused pain in wrist in elbow.
## 12134                                                                                                                                                                                              Assisting lay resident down for bed-resident kicked in l. Shoulder ()
## 12135                                                                                                                                                                                     Assisting lay resident down in bed-removing shoes-kicked in r. Side of nose ()
## 12136                                                                                                                                                     Assisting lift client back up into w/c, EE went around client, tripped over client's hand landing on left knee
## 12137                                                                                                                                                                                   Assisting lift client from chair into bed-felt tightness between shoulder blades
## 12138                                                                                                                                                                                           Assisting lift client off of floor (from mat) when felt pull in her back
## 12139                                                                                                                                                                                        Assisting lift client onto toilet, and felt sharp pain in right ankle/foot.
## 12140                                                                                                                                                                        Assisting lift client out of floor felt pain over her bladder from rib cage down to bladder
## 12141                                                                                                                                                                                                              Assisting lift client up from chair felt lumbar pain.
## 12142                                                                                                                                                                                                       Assisting lift client, lifting lower body, felt pain in back
## 12143                                                                                                                                                                                        Assisting lift patients legs and reported back pain following day (8/12) ()
## 12144                                                                                                                                                                              Assisting lift the head of resident's bed up-r. Thumb caught between/in head rail. ()
## 12145                                                                                 Assisting loading and unloading clients (wheelchair). One client did not know how to get in van. Very hot day helped client get in van. Noticed sharp pain in right groin area. ()
## 12146                                                                                                                   Assisting loading tractor trailer of pallets of recycled aluminum signs I opened the back door of the tractor trailer and a 2x2 square steel hit
## 12147                                                                                                                                                                                                      Assisting manual restraints, went down on both knees on floor
## 12148                                                                                                                                                           Assisting mental health inmate with clean clothes, inmate attacked cliamant and hit him upside his head.
## 12149                                                                                                                                        Assisting nurse draw blood from client, when nursepulled needle from client's arm the needle stick went into EE right hand.
## 12150                                                                                                                                            Assisting nurse passing medication as he walked down c block steps he stepped down and felt like he pulled his groin ()
## 12151                                                                                                                                                                    Assisting nurse push inmate: while lifting chair nurse was pushing & chair landed on right foot
## 12152                                                                                                                                  Assisting nurse to give out medication. Inmate regermain ross (0614614) squirted a liquid substance, which smelled like urine. ()
## 12153                                                                                                                                                 Assisting nurse to hold client's arm while drawing blood; client moved arm and needle pricked right 4th finger. ()
## 12154                                                                                                                                                   Assisting nurse with client; client was in behavior (hand banging); hitting when client bit EE's right wrist. ()
## 12155                                                                                                                                      Assisting nurse with dressing change on a patient. Moved patient in bed after completing and pain in right hip, leg and back.
## 12156                                                                                      Assisting nurse with inmate, inmate wanted to fight, other officer, went to help, the other officer's knee hit fuller's right pinky causing it to be knocked out of place. ()
## 12157                                                                                                             Assisting o. T. In loading stander into vehicle (stable). When she turned to assist o. T., EE fell on concrete driveway, injuring rt knee and lt foot.
## 12158                                                                                                                                                                                       Assisting obtain bp-patient became upset-hit emp. Multiple times in back. ()
## 12159                                                                                                                                                                                                                             Assisting officer in making an arrest.
## 12160                                                                                                                                                 Assisting officer processing dwi. Subject became combative while being restrained and bit trooper on upper lt arm.
## 12161                                                                                                                                                  Assisting officer restrain inmate, inmate hit her in mouth twice w/ fist and scratched neck, hit face beside nose
## 12162                                                                                                                                                  Assisting officers getting rags out of dryer & assessing the situation during a fire. Questionablechemical spill.
## 12163                                                                                                                                                                                            Assisting one other staff transfer a patient from chair to a gerochair.
## 12164                                                                                                                                                                                                                                Assisting oral surgeon with sutures
## 12165                                                                                                                                               Assisting other employees to restrain a juvenile and the employee lost his balance and he fell on his right knee. ()
## 12166                                          Assisting other officer getting wheel chair. Fell backwards on lift of surgery trailor at central prison, as the officers were carring wheel chair corr sgt hardy stepped back and fell off of the porch onto the lift ()
## 12167                                                                                                                                                          Assisting other officer with resisting inmate, while inmate was resisting officer creech hurt his back ()
## 12168                                                                                                             Assisting other staff contain patients-scratched on both arms by patient, right arm stepped on by staff and struck by a patient on left side when pati
## 12169                                                                                                                                    Assisting other staff from being hit. Placed patient into therapeutic wrap, patient bent over and bit staff on her left forerm.
## 12170                                                                                                                                                                             Assisting other staff giving a patient a bath. Thepatient bit staff on her left wrist.
## 12171                                                                                                                                                                      Assisting other staff in applying handcuffs on an inmate when inmate hit EE. Skin was broken.
## 12172                                                                                                                Assisting other staff in transferring a patient from bed to bed chair; EE lifted & other staff did not causing strain to EE neck, back & right hip.
## 12173                                                                                                                                                                                                           Assisting other staff putting a patient on bed for bath.
## 12174                                                                                                                  Assisting other staff to restrain a juvenile; juv assaulted EE by hitting him in the head w/phone receiver () contusion to right side of forehead
## 12175                                                                                                                                     Assisting other staff with a patient to prevent fighting. Patient & staff fell to floor causing staff to injure her left knee.
## 12176                                                                                                                                                  Assisting other staff with separating patients that were fighting, patient began hitting employee in the back. ()
## 12177                                                                                                                                                                                               Assisting out a staff member who was being assaulted by an inmate ()
## 12178                                                                                                                                                                                         Assisting owner in lifting dog onto transport cartinjured rt side of back.
## 12179                                                                                                                                                   Assisting partner who was being assaulted by an inmate. Fell to floor and struck her knee against concrete floor
## 12180                                                                                                                                    Assisting patient back into bed from shower chair using trapeze bar. EE assisting patient to get hislegs & lower body into bed.
## 12181                                                                                                                                                                                                           Assisting patient brush teeth-spit toothpaste in face ()
## 12182                                                                                                                                                                    Assisting patient dress-patient grabbed left arm and pulled (attempted to keep from falling) ()
## 12183                                                                                                                                                                                                Assisting patient dress-patient scratched l. Arm multiple times. ()
## 12184                                                                                                                              Assisting patient from car into wheelchair-patient went limp as sat down-pulling employee down resulted in mid to lower back pain. ()
## 12185                                                                                                                                                                                              Assisting patient from chair to standing-felt pull in r. Shoulder. ()
## 12186                                                                                                                                               Assisting patient from geriatric chair to bed. Patient gripped chair and EE lifted patient and chair, twisting back.
## 12187                                                                                                              Assisting patient from wheelchair with adls. Suddenly patient made a movement that caused his body weight to shift onto me. Almost immediately I felt
## 12188                                                                                                                                             Assisting patient get up out of gerochair for toileting and daily care, felt a sharp pain in lower right side of back.
## 12189                                                                                                                                                                                           Assisting patient in bathroom & patient shut door on staff's right hand.
## 12190                                                                                                              Assisting patient in bathroom for bm, patient holding pants and drops to the floor, tryingto prevent fall. Caused staff to strain her right shoulder.
## 12191                                                                                                                                                                                                                                    Assisting patient in wheelchair
## 12192                                                                                                                                                                                                    Assisting patient into gero chair and injured mid/upper back ()
## 12193                                                                                                                                                                  Assisting patient into gero-chair patient gave wayand put all their weight onto staff's left arm.
## 12194                                                                                                                                     Assisting patient into shower chair-felt pop in left leg. Didn't hurt until began walking on it-pain moved into groin area. ()
## 12195                                                                                                                                                                                                      Assisting patient off of a gurney, patient fell onto employee
## 12196                                                                                                                                                                        Assisting patient open box of milk and for no reason the patient punched staff in mouth. ()
## 12197                                                                                                                                                  Assisting patient out of bath when patient slammed l. Side into employee resulting in l. Arm hitting door jam. ()
## 12198                                                                                                                   Assisting patient out of bed as EE and another EE attempted to assist him into w/c he stiffened trying to slide to the floor. Lumbar laminectomy
## 12199                                                                                                                                                                              Assisting patient out of wheelchair/twisted r. Ankle-resulted in sitting on ankle. ()
## 12200                                                                                                                                                                                                          Assisting patient shave-nicked chin-spit in emp. Face. ()
## 12201                                                                                                                                                                                       Assisting patient to bathroom-patient scratched r. Hand at base of thumb. ()
## 12202                                                                                                                                                                                                       Assisting patient to bedroom-kicked employee in r. Ankle. ()
## 12203                                                                                                                                                                           Assisting patient to chair when patient began grabbing, hitting, and kicking employee ()
## 12204                                                                                                                         Assisting patient to sit in chair-patient missed chair and started to fall to floor-supported patient-while co worker assisted into chair.
## 12205                                                                                                                                                                                                       Assisting patient up from chair, patients stepped on EE toe.
## 12206                                                                                                                                             Assisting patient up from floor. Patient started resisting, causing staff to injure lt shoulder, low back & right hip.
## 12207                                                                                                                                                                                                                              Assisting patient up off of floor. ()
## 12208                                                                                                               Assisting patient w/bedmaking, patient sitting in wheelchair & tried to get up, EE grabbed her to keep her from falling. EE & 3 others picked her up
## 12209                                                                                                                                                                   Assisting patient walk down hall-had arm around patient-patient started to fall-jerking back. ()
## 12210                                                                                                                                                                                                   Assisting patient with adl's, patient grabbed and hit left hand.
## 12211                                                                                                                                                                                              Assisting patient with bath. Patient struck staff, jamming her finger
## 12212                                                                                                                                                                                         Assisting patient with check and change-patient headbutted in r. Cheek. ()
## 12213                                                                                                                               Assisting patient with shower, being resistant to care, resulting in both patient and employee falling to floor-r. Shoulder sore. ()
## 12214                                                                                                                                                                                                     Assisting patient-patient grabbed r. Arm and scratched x 2. ()
## 12215                                                                                                                                                                                              Assisting patient. Patient resisted. Both sides of lower back hurting
## 12216                                                                                                                               Assisting patsy off bed. She was pulling back and became into a behavior as another staff and I tried to prevent her from a fall. ()
## 12217                                                                                                                                                             Assisting physician preparing dressing when client kicked EE in the mid back area and in the chest. ()
## 12218                                                                                                                                                                    Assisting place patient in tub for bath-it felt like I just moved my shoulder the wrong way- ()
## 12219                                                                                                                        Assisting place sling (lift) under resident-resident was slapping with her hand-employee went to turn resident and jammed r. Little finger.
## 12220                                                                                                                                                                                                       Assisting placing pt in geri-chair, geri=chair ran over foot
## 12221                                                                                                                                                                                          Assisting placing pt in restraints, pt spat in EE's face - no exposure ()
## 12222                                                                                                                                                                                                   Assisting placing pt on transport board, pt spat in EE's face ()
## 12223                                                                                                                              Assisting prone a client. Client rolled onto stomach causing clients right knee to hit EE's right knee. EE's knee popped out of joint
## 12224                                                                                                                                                                Assisting provide a bath for patient-patient became aggressive and scratched r. Cheek below eye. ()
## 12225                                                                                                                                                                                          Assisting pt across hall, pt dropped their weight pulling her shoulder ()
## 12226                                                                                                                                                                                                 Assisting pt from wheelchair to toilet-hurt back during transition
## 12227                                                                                                                                                                                Assisting pt in bathroom, pushing in w/c, pt turned and scratched EE on left arm ()
## 12228                                                                                                                                                                                                          Assisting pt in packing, next day woke up w/stiff neck ()
## 12229                                                                                                                                                                           Assisting pt on potty chair, co-wkr tripped, grabbed pt so they wld not fall to floor ()
## 12230                                                                                                                                                                                                              Assisting pt out of bed, pt kicked EE in left knee ()
## 12231                                                                                                                                                                                                        Assisting pt out of wheelchair, felt pain in neck, shoulder
## 12232                                                                                                                                      Assisting pt to another area in unit, pt was walking on his own with assistance from EE, EE states that pt was leaning on her
## 12233                                                                                                                                                                               Assisting pt to bathroom, pt foot slipped & EE felt rt shoulder pull as pt sat down.
## 12234                                                                                                                                                                                                            Assisting pt to bed, foot got caught and twisted lt leg
## 12235                                                                                                                                                                                                                 Assisting pt to bed, pt pinched EE on right arm ()
## 12236                                                                                                                                                        Assisting pt to chair, EE got her foot crossed up with the pt's leg, fell in a chair, twisting left knee ()
## 12237                                                                                                                                                                                                Assisting pt to lunch, pt turned and hit EE in the left shoulder ()
## 12238                                                                                                                                                                                                    Assisting pt to seclusion room, pt scratched EE on left hand ()
## 12239                                                                                                                                                                                              Assisting pt to stand, pt dropped their weight, pulling down on EE ()
## 12240                                                                                                                                                                                                                       Assisting pt w/ toileting, EE sprained wrist
## 12241                                                                                                                                                    Assisting pt with ambulation fm hallway to bathrm, pt became weak, began to drop to floor, employee broke fall.
## 12242                                                                                                                                                                  Assisting pt with ambulation to neonatal room. When pt dropped and made EE elbow pop. Left elbow.
## 12243                                                                                                                                                                         Assisting pt with forced bath, pt began scratching EE and spat in EE's face-no exposure ()
## 12244                                                                                                                                                                                       Assisting pt with meds, pt bit EE finger and head butted EE over left eye ()
## 12245                                                                                                                                                                                     Assisting pt with shaving. Floor was wet & EE slipped & hit head on metal rail
## 12246                                                                                                                                                                                                   Assisting put client into bed-client kicked in left shoulder. ()
## 12247                                                                                                                                                                                                     Assisting put resident into bed-kicked in r. Side of chest. ()
## 12248                                                                                                                                                                                                      Assisting put resident into bed-resident kicked in l. Jaw. ()
## 12249                                                                                                                                                           Assisting put resident to bed-turned resident (very stiff/hard to transfer) and felt pop in l. Wrist. ()
## 12250                                                                                                                                                               Assisting re-direct client. Client to sit down- as client turned to sit-he stepped on emp. Left foot
## 12251                                                                                                                                                             Assisting redirect a patient back to activity room-patient shoved into door frame-hitting r. Elbow. ()
## 12252                                                                                                                Assisting research tech by restraining dog while she drew blood. Afterwards, she began feeling hot, lightheaded, vision blurred and she fainted. ()
## 12253                                          Assisting resident Dr. Crystal cox with impressions, went to break room table to get salt, the phone was near lori self's desk, turned to go to clinic, left foot/leg was entangled in long phone cord, fell to floor. ()
## 12254                                                                                                                                                      Assisting resident after lunch when resident swung her arm striking EE's rt ring finger causing severe bruise
## 12255                                                                                                                            Assisting resident by attempted to set resident up in bed by lifting head of bed up with lever. Resident's weight was too heavy per EE.
## 12256                                                                                                                  Assisting resident during self care routine, resident splashed water over entire floor causing EE to slip twisting back. Lower left side of back.
## 12257                                                                                                                         Assisting resident from bed to shower chair. Pulled muscle in rt middle back as she was turning to sit him in shower chair. Rt middle back
## 12258                                                                                                              Assisting resident from chair to bed-had arms around resident and under residents arms-resident grabbed the back of emp. Arms-scratching/bruising. ()
## 12259                                                                                                                                                                                                                 Assisting resident from tub and injured lt shoulde
## 12260                                                                                                                                                                                            Assisting resident get ready for shower-resident headbutted in nose. ()
## 12261                                                                                                                                                              Assisting resident in Dr-Upset-attempted to throw a cup over head-cup hit employee on r. Lower lip ()
## 12262                                                                                                                                                                                                    Assisting resident in bathroom-resident punched in l. Cheek. ()
## 12263                                                                                                                                                 Assisting resident in chair. Resident was swinging her arms and I tried to stop her & she pulled my thumb back. ()
## 12264                                                                                                                                                         Assisting resident in walking with a gate belt. Resident fell forward and caused employee to fall as well.
## 12265                                                                                                                                                             Assisting resident into Dr-Became agitated grabbed left wrist with both hands and twisted/squeezed. ()
## 12266                                                                                                                     Assisting resident into an upright position (on bed_ in order to help get out of bed-resident did not assist resulting in trapezius strain. ()
## 12267                                                                                                                                                                                    Assisting resident into bed-resident pulled employee down onto bed-back sore ()
## 12268                                                                                                                           Assisting resident into wheel chair-walked behind chair and reached over to pull resident back into chair and felt ribs rub together. ()
## 12269                                                                                                                                                       Assisting resident into wheelchair-after shower-hurt l. Shoulder-also, slapped in back between shoulders. ()
## 12270                                                                                                                                                                         Assisting resident intoito. Resident picked up wooden wedge and hit staff lt side of head.
## 12271                                                                                              Assisting resident off of toilet-resident lost footing - was leaning back on employee-employee attempted to keep resident from falling to floor-felt pull in back. ()
## 12272                                                                                                                                                  Assisting resident off van at speedway cafe, was backing out van door, turned ankle, fell backwards onto pavement
## 12273                                                                                                                                                                           Assisting resident on pogo stick, pogo came down and staff bent knee and heard pop sound
## 12274                                                                                                                                                                         Assisting resident onto golf cart. Resident became agitated, hitting, slapping and bit EE.
## 12275                                                                                                                                                           Assisting resident onto train, resident fell backward and EE tried to catch her, injury to right forearm
## 12276                                                                                                                                                                          Assisting resident onto van; resident fell backwards injuring EE's left shoulder and hand
## 12277                                                                                                                                                                                                 Assisting resident out of bed-resident bent r. Thumb backwards. ()
## 12278                                                                                                                                                              Assisting resident out of wheelchair, resident hestitated while transferring, EE's back began to hurt
## 12279                                                                                                                                                                                  Assisting resident pull pants up-resident placed full weight on emp- back pain ()
## 12280                                                                                                                                                                                                                    Assisting resident to bathroom-hit in l. Eye ()
## 12281                                                                                                           Assisting resident to bed. Transferring to bed put arms around him to assist resident to stand, sit him on bed felt sting on left lower side of back. ()
## 12282                                                                                                                                                                                   Assisting resident to bedroom-wheelchair accidentally ran over top of l. Foot ()
## 12283                                                                                                                                                         Assisting resident to breakfast-resident had left hand-jerked arm backwards and up-pain in l. Shoulder. ()
## 12284                                                                                                                                                                                           Assisting resident to chair, resident accidentally pulled employee down.
## 12285                                                                                                                                                         Assisting resident to restroom-assisted to sit down-resident grabbed arm and scratched x3 upper r. Arm. ()
## 12286                                                                                                                               Assisting resident to room. Resident becomes weak and falls. EE tries to catch resident by grabbing back of pants. Strains shoulder.
## 12287                                                                                                                                                                                                           Assisting resident to shower, EE felt pull in r shoulder
## 12288                                                                                                                                                             Assisting resident to sit down and put shoe on-resident grabbed right hand and twisted right thumb. ()
## 12289                                                                                                                         Assisting resident to sit down, resident pulled away while staff was holding on to gait belt causingmy left upper arm muscle to be pulled.
## 12290                                                                                                                                                          Assisting resident to sit-resident fell back-pinning l. Hand wrist and forearm btw. Resident and wall. ()
## 12291                                                                              Assisting resident to stand and walk from couch to bed-took 2 steps then started to sit on floor-bore full weight until returned resident to couch-felt tearing/burning in abdomen ()
## 12292                                                                                                                                                                                       Assisting resident to stand at toilet-felt pull in right side of mid back ()
## 12293                                                                                                                                                                                     Assisting resident to stand-resident grabbed l. Thumb and pulled backwards. ()
## 12294                                                                                                       Assisting resident to stand-resident started to loose balance- causing emp. To jerk r arm upwards (client holding onto arm/hand ) noted pain in shoulder. ()
## 12295                                                                                                                                                            Assisting resident up and to the bathroom-resident jerked-yanking emp. Right shoulder/arm backwards. ()
## 12296                                                                                                                                      Assisting resident up from chair and felt pull in back. Later assisting a resident out of bed and felt pull again in back. ()
## 12297                                                                                                                                                                                                  Assisting resident up from floor and felt pain in low and midback
## 12298                                                                                                                                                                                                              Assisting resident walk. Rt shoulder started to hurt.
## 12299                                                                                                                                                                                     Assisting resident while doing nci, EE went to floor w/ resident and hurt back
## 12300                                                                                                                                                                                                          Assisting resident with bath, when resident hit EE in eye
## 12301                                                                                                                                                                                                     Assisting resident with self care. Res. Scratched EE left eye.
## 12302                                                                                                          Assisting resident with toileting-resident became agitated-pushed employee down-fell over heater-hitting floor on back. Pain in back/r knee and r hip. ()
## 12303                                                                                                                                                                                     Assisting resident, resident stopped abruptly causing staff to fall onto chair
## 12304                                                                                                                                                                Assisting resident-raised head of bed- when stood up-resident struck in face-finger poked r. Eye ()
## 12305                                                                                                                                                                              Assisting resident-rsident swung arms hitting emp. On left and right side of face. ()
## 12306                                                                                                                                         Assisting residents in/out of Dr-Assist. Resident to stand-resident started to lean all of his weight onto emp. -back pain
## 12307                                                                                                                                                Assisting resisdent during check & change-resident unsteady-causing both to fall-resident landed on l. Shoulder. ()
## 12308                                                                                                                                                                                                                                       Assisting resistive patients
## 12309                                                                                                                                                                                 Assisting rn administer injection to resident-exposed needle scratched l. Wrist ()
## 12310                                                                                                                        Assisting rn place steristrips on both of residents arms-resident clipped legs out from under emp. -landed on back, twisting right side. ()
## 12311                                                                                                                                                                               Assisting shower client-bent to wash legs and feet-stood up felt pop/pain in back ()
## 12312                                                                                                                                                        Assisting shower patient-patient resistive/pushing against- after shower noted r. Elbow started to hurt. ()
## 12313                                                                                                                                                                                                        Assisting showers inmate kicked EE in the stomach side area
## 12314                                                                                                                                                                                    Assisting someone drawing blood and accidently brushed by finger against needle
## 12315                                                                                                               Assisting sponge bathe a resident-turned to put washcloth back into sink-resident grabbed front of scrubs and pulled-abrasion to r. Side of neck. ()
## 12316                                                                                                                                                                        Assisting staff assist resident out of Dr- Resident kicked in l. Shin and hit in r. Jaw. ()
## 12317                                                                                                                                                                                                                            Assisting staff from inmate assault. ()
## 12318                                                                                                                                                                                     Assisting staff in calming down a patient, patientkicked EE in chest and ribs.
## 12319                                                                                                                                                                 Assisting staff in carrying an aggressive patient to timeout room, pt leaned over & bit EE on back
## 12320                                                                                                                                                    Assisting staff in changing clients diapers when attempting to lift patient EE felt pop in middle lt-lower back
## 12321                                                                                                                                                     Assisting staff in forced meds and inmate began kicking and kicked officer in the chest area several times. ()
## 12322                                                                                                                                           Assisting staff in getting patient up. Patient wasgradually tipping backwards and pulled agianst EE. Injured lower back.
## 12323                                                                                                                                                              Assisting staff in maintaining control of an inmate when inmate spit in face and possibly in eyes. ()
## 12324                                                                 Assisting staff in restraining a juvenile that was assaulting another juvenile in restraining the juvenile Mr. Fields hit his left leg and knee on the floor. File ready to close, pending 2 bills
## 12325                                                                                                                                                                                                        Assisting staff in restraining inmate & was struckby inmate
## 12326                                                                                                                                                                                 Assisting staff in restraining inmate when he was struck by baton on his left hand
## 12327                                                                                                                                                                  Assisting staff in restraining out of control juvenile when juvenile bit staff member on rt wrist
## 12328                                                                                                                                                                                                          Assisting staff in stoping inmate from assaulting officer
## 12329                                                                                                                                                                         Assisting staff member in restraining out of control juvenile and was kicked in groin area
## 12330                                                                                                             Assisting staff to break up fight, admiinstrated pepper spray to both inmates & used force to pull them apart, skinning it, both EE knees hit concrete
## 12331                                                                                                                                                         Assisting staff to control inmate, while assisting inmate in cell, inmate ran and hit me on back with fist
## 12332                                                                                                                Assisting staff w/controlling assaultive inmate, inmate pushed officer into bar gate on fore unit causing officer to hit rt shoulder & back on gate
## 12333                                                                                                                                                                Assisting staff with client; client went into behavior; client kicked EE in face and under left eye
## 12334                                                                                                                                       Assisting staff with meds on g block. Inmate threw a clear liquid substance on his left arm, face and uniform chest area. ()
## 12335                                                                                                                                                                                                                    Assisting staff with student hurt left shoulder
## 12336                                                                                                                                                                    Assisting stand pivot resident from chair to bed-resident stiffened-resulted in pain to back ()
## 12337                                                                                                                                                              Assisting stand resident-resident pushed employee and started to fall-pulling emp. Right shoulder. ()
## 12338                                                                                                                              Assisting stock clerk in getting box down from top shelf. Stock clerk hand bix to EE which was too heavy; therefore injuring her back
## 12339                                                                                                                           Assisting stranded motorist w/flat fire. Attemptedto help shift weight of vehicle to place spare tire on when raiseed pain in lower back
## 12340           Assisting student on to/off of ride. Student who is not able to use 1/2 body functions fell against employee. Employee fell into rail and student started to fall down. Employee held student up from falling; therefore, breaking the students fall. ()
## 12341                                                                                                                                  Assisting student to chair, student lost control and fell back into chair pinning employee's right arm between chair and wall. ()
## 12342                                                                                                                                                                                                    Assisting student when bitten. Bite broke skin ofright forearm.
## 12343                                                                                                                                   Assisting student with daily hygiene care and student became angry and pushed employee then slapped her ears with both hands. ()
## 12344                                                                                                                                                    Assisting student with nci techniques, therapeutic holds, felt pressure or tension at the right deltoid region.
## 12345                                                                                                              Assisting student, foot caught on leg of student'schair, fell forward on concrete floor. Left knee hit first with right knee/elbow hitting secondary.
## 12346                                                                                                                                                                                     Assisting subduing patient that attacked another staff when they fell to floor
## 12347                                                                                                                                                                     Assisting supervisor load a wet-vac onto the back of a pick-up truck from the loading dock. ()
## 12348                                                                                                              Assisting the client on off campus shopping-clientrushed towards staff to grab him-staff intervened-client grabbed him & they bot fell to the ground.
## 12349                                                                                                                     Assisting to give patient forced meds, he started fighting, when he did he jerked on my arm and pulled my shoulder *** attorney rep **********
## 12350                                                                                                                           Assisting to help restrain an out of control staffmember, got up from sitting position, twisted to left and felt pain in left lower back
## 12351                                                                                                                                                                                Assisting to hold struggling child during overheadafter he assaulted another child.
## 12352                                                                                                                                                                                 Assisting to lift a large patient, pulled back. Not getting better, getting worse.
## 12353                                                                                                                                                      Assisting to lift female inmate from steps. She lifted heaviest portion of inmate body causing injury to back
## 12354                                           Assisting to lift resident out of bed using mechanical lift. Emp. On the opposite side of bed raising resident (in sling) onto lift- emp. Reached over resident to turn away from bed and felt pull in lower r. Back. ()
## 12355                                                                                                                                              Assisting to move client (away from another client). Client was holding employee's right hand and jerked right thumb.
## 12356                                                                                                                                                     Assisting to pick up inmate after he had seizure to place him in wheelchair he pulled muscle in hisupper back.
## 12357                                                                                                                                 Assisting to place inmate into segregation. Sustained small abrasion on her left forearm, due to inmate resisting to be handcuffed
## 12358                                                                                                                                                                                               Assisting to put client in wheelchair. Client sit back on her wrist.
## 12359                                                                                                                                                                                             Assisting to restrain patient. Neck started getting sore around 4:00pm
## 12360                                                                                                                                         Assisting toilet a resident-fecal matter on resident's hands came into contact with abrasions on employee's r. Forearm. ()
## 12361                                                                                                                        Assisting toilet resident-resident sat down on toilet and fell back-resulted in emp. L. Hand being pushed agains pipe on back of toilet. ()
## 12362                                                                                                                                                                                                     Assisting toileting client-complaint of pain in neck and back.
## 12363                                                                                                                               Assisting toileting client. Staff helped EE to lift client; EE lifted client from left side shortly after felt pain in neck area. ()
## 12364                                                                                                                                                                      Assisting toileting patient I tweaked something on the left side-underneath shoulder blade ()
## 12365                                                                                                                                                                  Assisting transfer patient from w/c to bed-patient grabbed l. Upper arm bruised and scratched. ()
## 12366                                                                                                                                                                        Assisting transfer patient-started to fall-caught under arms-bending r. Thumb backwards. ()
## 12367                                                                                                                                                                            Assisting transfer resident from bed-to go to breakfast- felt pop in l. Lower bacak. ()
## 12368                                                                                                         Assisting transfer resident out of bed and into chair. Resident started to go down to floor, while employee was supporting -straining lower right back. ()
## 12369                                                                                                                  Assisting trooper in making arrest. Attempting to remove driver from vehicle. Fell to ground & rightelbow was pinned underneath EE against ground
## 12370                                                                                                                                                      Assisting turn patient in bed-using pull sheet-turned several times, later noted moderate lower back pain. ()
## 12371                                                               Assisting turned the wrong way in merry walker; resident turned around, grabbed left wrist. Did attempt to do wrist roll out, when arm was free resident grabbed middle fingers and twisted them. ()
## 12372                                                                                                                                                                                     Assisting ups driver unload lightweight boxes - twisted back pulled muscle. ()
## 12373                                                                                                                                                                                         Assisting verbally client to put away items, client grabbed wrist, EE fell
## 12374                                                                                                                                                                          Assisting visitor with boat winch handle when winch came loose sticking EE in the nose ()
## 12375                                                                                                                                                                  Assisting w ck/chnge-resident grabbed r. Forearm w both hands and squeezed-heard pop in wrist. ()
## 12376                                                                                                                                                                                                Assisting w/ adl's-client grabbed EE's lt arm and twisted backwards
## 12377                                                                                                                                                Assisting w/ agitated patient and when placing pt in nci hold, he hit his leg on a chair causing injury to his knee
## 12378                                                                                                                                                            Assisting w/ client, she grabbed my wrist & tried to scratch me. As I pulled away she twisted my wrist.
## 12379                                                                                                                      Assisting w/ life guard recertification, as he was returning to his vehicle, he stepped on grass covered hole and fell and hit right shoulder
## 12380                                                                                                                                                                                                             Assisting w/ lifting van seats to put back in cwp van.
## 12381                                                                                                                                                                         Assisting w/ pt ni a nci hold and pt pushed his hand back causing his hand to hit the door
## 12382                                                                                                                                                              Assisting w/ removing handcuffs and the inmate was resisting. Handcuffs cut into EE's rt index finger
## 12383                                                                                                                                                               Assisting w/ resident in distress - resident had glass on person, EE finger cut while removing glass
## 12384                                                                                                                                        Assisting w/2 person lift. Lifting client from wheelchair onto bed. Felt spasms between shoulder blades & stiffness of neck
## 12385                                                                                                                                                                                       Assisting w/a lift. Felt back catch. Felt sharp pain in left upper back area
## 12386                                                                                                                                                                                                  Assisting w/a pic, sliipped and fell striking both knees on floor
## 12387                                                                                                                                                                                                                Assisting w/aggressive pt, pt bit EE on left arm ()
## 12388                                                                                                                                                        Assisting w/discharge of combative patient who hadto be physically removed from ward. Felt strain right leg
## 12389                                                                                                                                                                                   Assisting w/force of an inmate causing a disturbance on dorm. Sprained left knee
## 12390                                                                                                                             Assisting w/high speed chase. Chase came to an end& EE gave pursuit on foot. Road surface covered w/thin layer of sand. Fell to ground
## 12391                                                                                                                                                                                                                 Assisting w/lifting inmate from floor to stretcher
## 12392                                                                                                                     Assisting w/programs moving inmates from one bldg to another when he was walking in court yard area stepped into hole & twisted his left ankle
## 12393                                                                                                                                                                                            Assisting w/pt transfer from toilet to gero chair when pt went to floor
## 12394                                                                                                                                                       Assisting w/pt's shower, drying pt when EE's feet slipped out fm under her, EE caught her fall with left arm
## 12395                                                                                                                                                                                                 Assisting w/restraining inmate who was resisting. Kicked by inmate
## 12396                                                                                                                                                                                           Assisting w/searches with benbing squatting lower back pain/left side ()
## 12397                                                                                                                                                                                                             Assisting w/seclusion & restraint & hit his leg on bed
## 12398                                                                                                                            Assisting w/setting timing on cutter bar. Accidentially rotated knife pulley & EE had left leg on cutter bar causing laceration of hand
## 12399                                                                                                                     Assisting w/the mail. Walking out the back door, turned the corner & stepped down wrong. His weightplus weight of box fell on his right ankle.
## 12400                                                                                                                                                                                                      Assisting w/toileting client. Client bent EE's left hand back
## 12401                                                                                                                                                       Assisting w/tooth extraction. Dentist started to put gauze in pt's mouth and struck EE's thumb with scalpel.
## 12402                                                                                                                                                                                         Assisting w/transfer fm bed to w/c, pt jerked on EE causing back strain ()
## 12403                                                                                                                                                                                              Assisting w/two person lift of client and felt immediate pain in back
## 12404                                                                                                                       Assisting w/unloading of new computer equipment at information management unit. Lifted shipping case from rear of truck & injured lower back
## 12405                                                                                                                                                                                                                   Assisting wasy client-client pulled emp left arm
## 12406                                                                                                                                                                                              Assisting wayne co. Deputy with the arrest of a pre-trail offender ()
## 12407                                                                                                                                                                                Assisting who was in shower. Resident went down and staff fell while asst. Resident
## 12408                                                                                                                                                                               Assisting with 2 man carry of a combative patient, employee strained her upper back.
## 12409                                                                                                                                                                 Assisting with 2 person lift of client; EE lifting top portion of client; noted pain in right back
## 12410                                                                                                                                                               Assisting with 40-10. Patient was kicking and twi sting and now I feel a pull in the middle of back.
## 12411                                                                                                                                                                                    Assisting with a behavior intervention consumer kicked right upper anterior arm
## 12412                                                                                                                                                                              Assisting with a cardboard, bent down to pick it up and it felt like a knife in back.
## 12413                                                                                                                                                                                                                                     Assisting with a dryer fire ()
## 12414                                                                                                                                                      Assisting with a transfer of a resident when the chair moved and I landed on my right hip & right shoulder ()
## 12415                                                                                                                                       Assisting with adl's resident turned around & slap me across the face. Then resident came out in the hall and said sorry. ()
## 12416                                                                                                                                               Assisting with adl's-patient lost balance-started to fall-adjusted weight to prevent from falling-l. Wrist sprain ()
## 12417                                                                                                                                                                                                  Assisting with agressive pt when pt kicked staff in lower abdomen
## 12418                                                                                                                                                                                                                        Assisting with an arrest, twisted left knee
## 12419                                                                                                                                                                               Assisting with an nci procedure on an individual and employee's left knee popped. ()
## 12420                                                                                                                                                                 Assisting with arrest, offender hit officer in face/nose with both hands while resisting arrest ()
## 12421                                                                                                                                                                                                        Assisting with bath-patient resistant-jerked r. Shoulder ()
## 12422                                                                                                                                                         Assisting with bending metal on metal brake machine when lock released hitting him on left side of head ()
## 12423                                                                                                                                                         Assisting with blocking an individual from hitting his face, the individual bit staff on the left hand. ()
## 12424                                                                                                                                                                           Assisting with breaking up an altercation and inadvertently jammed my r index finger. ()
## 12425                                                                                                                                                           Assisting with brush clearing operation near wood chipper. Flying debris from chipper lodged in lefteye.
## 12426                                                                                                                   Assisting with cell cleaning. After passing mop and broom thru cell doorway, mop started to fall, attempted to catch it, door closed on lt hand.
## 12427                                                                                                               Assisting with chase on I-85. EE was performing a a road block when violator rammed his car in the rear causing strain to left wrist, neck, low back
## 12428                                                                                                                                                                                   Assisting with check & change, resident hit (open handed) in left lower back. ()
## 12429                                                                                                                                                                                           Assisting with check and change-resisdent grabbed r. Arm and bent it. ()
## 12430                                                                                                                                         Assisting with check/change- patient combative-jerked arm and flung against wooden cabinet and kicked in l. Chest wall. ()
## 12431                                                                                                                                                                   Assisting with check/change-changing residents clothes-became agitated-scratched right wrist. ()
## 12432                                                                                                                                                       Assisting with client in preparing breakfast. Client kicked EE & as EE stepped back from client, knee popped
## 12433                                                                                                                                                                                                         Assisting with client restraint, client scratched staff ()
## 12434                                                                                                                                                                                  Assisting with clients lunch. Turned around to assist client. Twisted right knee.
## 12435                                                                                                                                                                                            Assisting with code blue. Inmate seizuring. Spit up on employee face ()
## 12436                                                                                                                                           Assisting with combative patient who had to be lifted from the ground and escorted to the ward. Injury to left shoulder.
## 12437                                                                                                               Assisting with containing a fighting patient. Staff was holding patient's leg and patient was kicking which caused staff to lose his balance falling
## 12438                                                                                                                                             Assisting with decorations for an event in the performing arts center when she cut her hand/thumb on a broken vase. ()
## 12439                                                                                                                                                                                                  Assisting with dental procedure, syringe stuck left middle finger
## 12440                                                                                                                                                                                                                        Assisting with dressing client hit staff ()
## 12441                                                                                                                                                                                           Assisting with ems, exposed to a small amount of blood on his right hand
## 12442                                                                                                                                                                                        Assisting with escort of hostile inmate and she spat in sergeant's face. ()
## 12443                                                                                                                             Assisting with escorting inmates to showers when lfoot hit stair step & she missed a step, fell on on knees & legs & hit cement floor.
## 12444                                                        Assisting with frish searching inmates near the dinning hall area when I stepped out of the dinning hall turned the corner and then I felt my ankle pop and I fell to the floor and grabbed my left leg. ()
## 12445                                                                                                                                                                                Assisting with getting inmates off ground. When bitten on the right side of face ()
## 12446                                                                                                                                                                       Assisting with getting patient on stretcher to transport to s&r room- injured right shoulder
## 12447                                                                                                               Assisting with helping a patient to a wheel chair, chair started to move, EE and help were tyring to lift patient back in chair. EE strain low back.
## 12448                                                                                                                                                         Assisting with hostile inmate, when door popped open inmate flung door at the officer knocking her down ()
## 12449                                                                                                                                                                                                        Assisting with inmate having seizure and inmate bite him ()
## 12450                                                                                                                                                                Assisting with inmates on yard - rubbed back of left leg against aluminum bench causing cut to leg.
## 12451                                                                                                                             Assisting with loading and unloading tray carriers from van, trip in one of the carriers and fell out the door injuring arms and knees
## 12452                                                                                                                                           Assisting with manual restraint of a patient for forced blood draw and injured right hand. ***rtw full duty 4/19/2005***
## 12453                                                                                                                                               Assisting with manuel restraint of a patient who was kicking & struggling causing staff to injure his left shoulder.
## 12454                                                                                                                                   Assisting with morbid obese inmate to take a bath and she suddenly held onto me and pulled herself causing my back to strain. ()
## 12455                                                                      Assisting with moving heavy piece of equipment. Employee place hand on equipment to guide it has it was being lowered on the forklift. Pin on equipment dropped slicing end of left thumb. ()
## 12456                                                                                                                                                                                 Assisting with nci manual hold due to agitated pt - pt started hitting this staff.
## 12457                                                                                                                Assisting with other staff to place a patient in atherapeutic hold & carry. Injured right upper arm, right side of neck and down right side of back
## 12458                                                                                                                                                                                                           Assisting with out-of control individual & was bitten ()
## 12459                       Assisting with physical agility testing, holding ankles while participant did sit ups. When finished as I was getting up I lost balance and fell forward. Participant rolled in that direction and I struck my left hand on his knee cap. ()
## 12460                                                                                                               Assisting with physical restraint, student became assaultive, hitting and kicking at staff. Injured right wrist, supranasal injury & left 5th finger
## 12461                                                                                                                                                                      Assisting with physical with client, client began kicking and fighting during entire physical
## 12462                                                                                                                                                                  Assisting with prescribed burn operation in woodedarea and was struck in the eye by a tree branch
## 12463                                                                                                                                                              Assisting with protecting client exhibiting sib by putting down mat rt hand injured during process ()
## 12464                                                                                                                       Assisting with putting a patient in seclusion. Employee reached for patient's arm, patient jerked away and employees arm started hurting. ()
## 12465                                                                                                                                                                               Assisting with putting a turnstile on truck when it slipped causing his back to give
## 12466                                                                                                                                                                                    Assisting with putting client in time out, client hit rt hand. Injured rt hand.
## 12467                                                                                                                                                                                Assisting with putting patient in cpi hold, patient punched employee in the face ()
## 12468                                                                                                                                                                        Assisting with putting restraints on patient, felland hit head on door. Laceration on head.
## 12469                                                                                           Assisting with replacement of ball joint on track. Co-worker hit ball joint with hammer. The hammer glanced off and struck employee in the lip and left side of face. ()
## 12470                                                                                                                                                                                               Assisting with resident who was being aggressive, was kicked in ribs
## 12471                                                                                                                                                  Assisting with resident, got kicked in the lower back, left side. Felt pain later on getting into car to go home.
## 12472                                                                                                                                                                                       Assisting with resident-resident agitated-hit employee in nose with fist. ()
## 12473                                                                                                                                                                                                       Assisting with resident-scratched on both hands and neck. ()
## 12474                                                                                                                                                                                                           Assisting with resident-scratched tops of both hands. ()
## 12475                                                                                                                            Assisting with restrictive intervention. Patient had sprinkled baby powder on floor, employee slipped & fell injuring knee & finger. ()
## 12476                                                                                                              Assisting with securing a student. Student grabbedee hair at roots/ kicking. EE injured hair pulled out on rt side of head/ bruise lt calf/ lt pinky.
## 12477                                                                                                                                                 Assisting with self-help skins in cottage, bathrrom. Resident hit EE, shoving her backwards. Area hit was sternum.
## 12478                                                                                                                                                                                                             Assisting with therapeutic hold and injured right knee
## 12479                                                                                                                                                                                                                       Assisting with therapeutic hold on client ()
## 12480                                                                                                                                     Assisting with toileting client; client and EE were coming out of bathroom when the door closed quickly on EE's right hand. ()
## 12481                                                                                                                                                                             Assisting with unloading book at warehouse (e. G. Right and left arm, back and face ()
## 12482                                                                                                                                                                                                  Assisting with urinalysis and got a sharp pain in my right eye ()
## 12483                                                                                                                                                                                                         Assisting with use of force when inmate bit her on rt hand
## 12484                                                                                                                         Assisting with violent and agitated inmate. Inmate spit in my face, striking my right eye, right hand hurts after using hands on force. ()
## 12485                                                                                                                                                     Assistng with breakfast, cleaning coffee maker thought coffee was through brewing, water spilled on right hand
## 12486                                                                                                                                       Assiting aggressive patient that was kicking, jerking fighting and in process hearing aid was broken. Hearing aid in pocket.
## 12487                                                                                                                                                                   Assiting co-working with getting client up off ground using gait belt. Strain lower middle back.
## 12488                                                                                                                                             Assiting debbie to bed when debbie tripped on the mat in her room, caught her and slipped on the mattwisting left knee
## 12489                                                                                                                                                                                                              Assiting holding an inmate's legs muscle tightness ()
## 12490                                                                                                               Assiting in removing cement, pulling from back of pick up truck - leaned over and attempted to lift cement. Popping in back - severe pain, neck area
## 12491                                                                                                                                                                                                                                         Assiting in restraining pt
## 12492                                                                                                                    Assiting to move medical computer & strained muscle in right groin when reached over computer to move shelf brackets so shelf could be elevated
## 12493                                                                                                                                                                                                 Assiting w/ pic situation and got l arm pinned between pt and door
## 12494                                                                                                                                                          Assiting with manual hold for a accucheck, patientfighting & scratching. Scratched on right dorsum wrist.
## 12495                                                                                                                                                                                                             Assiting with out of control student EE was hit inribs
## 12496                                                                                                              Asssisting other staff in getting patient from wheelchair into van for transport. Patient became resistive and dead weight caused staff to have to ob
## 12497                                                                                                                 Asssisting resident to transfer from wheelchair tobarstool. Resident wouldn't hold on, fell. Injury occured when resident was stopped from falling
## 12498                                                                                                                                        Asssiting with lifting a client onto the trolley. Client's body had to be turned. While lifting client, EE hurt lower back.
## 12499                                                                                                                                                             Asst & client to get out chair at hairdresses in hall. When she reached down something in back pulled.
## 12500                                                                                                                               Asst. Chg. Resident-resident agitated-kicking& hitting-swung catching r. Hand/arm btw. Forearm-fell to floor-twisitng r. Arm/hand ()
## 12501                                                                                                                                                                       Asst. Client put shirt on-guiding arm through sleeve-client pulled emp. L hand-wrist popped.
## 12502                                                                                                                                       Asst. Resident into Dr-Resident holding r. Hand squeezed and hit top of hand on corner of table-trying to push food away. ()
## 12503                                                                                                                     Asst. Visitor in the carraway garden, tripped overuneven brick walk, fell & hit face & jolt neck. Broke glasses in fall. Lt eye/forehead/neck.
## 12504                                                                                                                   Asst. With client having behavior. EE standing in kitchen door, client wanted to run out, could not get by EE. Hit EE & pulled hair. Neck strain
## 12505                                                                                                                                                                                         Assualted and thrown to floor att to arrest pt multiple injures substained
## 12506                                                                                                                                                                                                   Assualted by patient struck face, left ribcage, kicked left foot
## 12507                                                                                                                                                                                                               Assulted by an inmate, inmate spit on the officer ()
## 12508                                                                                                                                                                                                                                              Assulted by inmate ()
## 12509                                                                                                                     Assumed role of inmate during crdt training. Whileperforming the mount escape technique cfsm slovnikwas thrown and landed on her pinky finger.
## 12510                                                                                                                                     Assuming duties at gatehouse suddenly rash & itching occured about the body. I noticed it about my arms & then around my neck.
## 12511                                                                                                                                                                                                                                 Asthma attack - cig smoke exposure
## 12512                                                                                                                                                                                                                                           Asthma attack at work ()
## 12513                                                                                                                                                                                                  Asthma attack triggered by fresh paint and dust from drilling. ()
## 12514                                                                                                                                 Asu van stopped on I-81 for construction when it was hit in rear by a large truck going to fast to stop in time. Multiple injuries
## 12515      At 11 pm, as part of employees building closing routine, she went outside to turn off the air compressor. It was totally dark there and even though she was careful, she tripped over a mop bucket. Her right thigh landed on the mop bucket and head hit the
## 12516                                                                                      At 12:45 pm on 11/27/2012 inmate dominick jordan opus 0994465 threw a cup of urine out of his food passage door in jackson's face. The urine went into his eyes and mouth. ()
## 12517     At 4pm my eyes started itching horribly, left eye felt worse, then a few minutes after the itching started, eyes are area around eyes started swelling and appeared splotchy. I was in the radiology dept straightening up rooms prior to the itching I was ()
## 12518                                At a client's home outside with child and pt provider working on independent mobility skills using her walker around the family home outside and around farm animals. Stepped on ground and felt bite marks on l foot and ankle. ()
## 12519      At about 8:30 a. M. On November 12, 2009, entered the doors to the lower lobby area of the c. J. Barber building on fsu campus. Steadily raining on that day, so employee slipped and fell onto the floor. Employee was taken to cape fear valley medical ctr
## 12520                                 At annual corr officer re-certification, stated on t-op of partner when partner threw him off. Landed on right side, knocking the breath out of him. (unarmed self-defense training) broken right rib; pain in rt side of chest ()
## 12521                                                                                                                                                 At approx 12:35 pm at 1170 scot rd., salisbury, ncduring home contact dog came from under trailer & bit right leg.
## 12522                                                                                                                                         At approx 2:00pm I was doing a training exercise on a takedown move and was forced to the floor and injured my rt shoulder
## 12523                                                                                                                                               At approx. 14:50 hr. On 3/30/2006 EE was leaving gate house and caught his middle finger on his lt hand in the door.
## 12524                              At approximately 10:30am, the employee was exiting the back of the drivers license office on her way to her vehicle when, she slipped, fell, and landed on her right side. List injury as: right knee, right elbow, right shoulder ()
## 12525                                                                                                                                                                              At approximately 11:02 officer james reed was injured in an anticipated use of force.
## 12526                                At approximately 1250 hrs officer norris was assigned to firearms re-qualification at bcci range. At this time she complained of light headiness to the firearms instructor. After eval by bcci medical, ref to richmond mem er. ()
## 12527                                                                                           At approximately 2:30 pm while walking the perimeter my inner calfs got hot feeling. There is notable red splotches, I felt sick and pain in my l-shoulder and chest. ()
## 12528                                                         At approximately 9:48 am on April 14, 2011, employee complained of swelling in face and lips, soreness in throat and upper chest. Employee's office was painted with high gloss paint on April 4, 2011. ()
## 12529                                                                                                                                                                      At basic training involved in breakfalls, officers left thumb bent in an awkward position. ()
## 12530                                                                                                                                                                                                    At basic training was going to vehicle and tripped and fell. ()
## 12531                                                                                                             At bertie ci for drug interdiction. Using a metal detector and shovel to dig for weapons. Foot got stuck in mud. Foot twisted while pulling it out. ()
## 12532                                                                                                                                                                                 At cdrt training and performing breakfall/takedown and my back started to hurt. ()
## 12533                                                                                                                                                            At cell extraction training, EE was stopped by officers and pressed against wall. Injured left shoulder
## 12534                                                                                                                                                                                   At client interview, was alerted that client had been exposed to TB, taking meds
## 12535                                                                                                                                      At client's house, walking down sidewalk, didn't see step off or step down, right leg hit sidewalk and l eft leg did not fall
## 12536                                                                                                                           At clients home conducting evaluation sitting on floor when EE adjusted postion with hand and hand was cut on nail sticking out of floor
## 12537                                                   At clients home to initiate ils service and evaluation, client asked susan to step outside during the low vision evaluation and in stepping from inside to the porch area, stumbled on ramp twisting rt ankle ()
## 12538                                                                                                                                                             At clotheshouse locking sliding gate in back. Metal cart fell-handle struck EE across neck & shoulder.
## 12539                                                                                                                                                 At college-sponsored o/s event, EE was carrying herplate of food walking toward a table when her lt ankle twisted.
## 12540                        At completion of experiment, students were purging the test chamber with outside air using a blower power cord was plugged into a heavy duty extension cord. A spark caused an electrical shock. Employee did not touch any metal parts. ()
## 12541                                                                                                                                                          At conference in greensboro, nc @ guilford community college when part of a desk fell on EE left foot. ()
## 12542                                                                                                                                                                               At conference, returning to hotel, stepped off sidewalk into a hole in road pavement
## 12543                                                                                                                                                 At crdt training, required move to be tossed over shoulder of another officer, when tossed landed on left shoulder
## 12544                                                                                                                                                          At desk doing paperwork, rolled chair over to her computer about 2 feet, and felt severe pain in herback.
## 12545                                                                                                                                                                        At desk typing, got up and tripped over an electrical cord under her desk. Fell on rt knee.
## 12546                                                                                                At desk using scissors to open item. Item dropped to floor; reached down to pick up item with scissors in right hand; scissors cut left hand, inside thumb area. ()
## 12547                                                                                                             At desk working on order request. EE saw what appeared to be a piece of plastic on floor beside deskreached to pick it up & cut by sharp edge of glass
## 12548                                                                                                                                            At end od distillation to remove thionyl chloride from reaction flask, explosion happened. Small glass pieces cut face.
## 12549                                                                                                                                                                     At end of EE's shift, he was walking down steps tohis vehicle, lost his balance & almost fell.
## 12550                                                                                                              At end of day after fire training, EE & another eehad firetruck out, firehydrant to refill water. Ri chard turned around rufus was on ground, did cpr
## 12551                                                                                                                                                                                                 At end of first shift started hurting in back left lower back pain
## 12552                                                                                                                                                            At end of work which involved lifting of students & bouncing on ther ball, EE experienced low back pain
## 12553                                                                                                                                 At firing range getting up from kneeling position and put right hand on ground to assist me and fingers went backwards too far. ()
## 12554                                                                                  At firing range, pulled the weapon from the holster, could not lock out my arm to aim shoot the weapon, & felt sharp pains, raise my left hand for the hand gun to be removed. ()
## 12555                                                                                                                                                          At fitness conference - taking yoga - performed vinyasa many times on carpet which caused a foot abrasion
## 12556                                                                                                                                                   At foothills nursery to get ojt signed, cat approached being friendly, began petting cat and cat bite forearm ()
## 12557                                                                                                                                                                                                                     At formation for pert briefing () -chest pains
## 12558                                                                                                                                                              At gas pump, bent down to pump sample into can, went to stand back up, felt pain in lower middle back
## 12559                                                                                                               At goosecreek EE appriciation, EE was walking on beach, started walking back to cookout site, stoppedto get water from fountain, felt sting on thigh
## 12560                                                                                                                                                      At her desk typing when she lifted her lt hand an d hit the bottom of her keyboard tray, injuring her lt hand
## 12561                                                                                                                                                  At home of client had low vision aid kit in hand, turned to go in home lost balance & fell down steps onto cement
## 12562                                                                                                                                             At home of family interperting for mother and cdga nutrionist said mother indicated taking medication for tuberculosis
## 12563                                                                                                                                                                                          At intersection - collision with another vehicle. Pain in shoulder & neck
## 12564                                                                                                   At local high school attending meeting, coming down stairs when she tripped and was falling face first, but caught handrail and pulled to side before falling ()
## 12565                                                                                                                                                                    At lunch, EE appeared dazed, fell off of sidewalk onto his back, contusion to left leg and back
## 12566                                                                                                                        At offenders home, offender tried to run away officer tried to stop him. Slammed door breaking glass on officer causing injuires to officer
## 12567                                                                                                                                                        At outing w/clients. Lifted client out of wheel- chair & onto ground. Felt pull in right inner thigh & back
## 12568                                                                                                                  At probationer home, made an arrest and when he got out of the car he walked a few steps and his knee buckle causing him to fall to the ground ()
## 12569                                                                                                                        At recertification training/crdt doing guard in - guard out technique. While partner was position himselfhe hit her knee with his elbow. ()
## 12570                                                                                                             At residence to hook up eha unit. Door was open so he went in. Heard sounds upstairs, went up, yelled hello, wife yelled back. Dog bit hand. Wife expl
## 12571                                                                                                                                                                                     At sampson corr inst. In control tower when a spider bite her on her lt eyelid
## 12572                                                                                                                       At scene of accident. Vehicle being towed was being loaded onto rollback wreaker when began to shift to right. Tried to push vehicle back up
## 12573                                                                                                                                                                                      At some point after lunch while sitting at desk typing a spider bit her ankle
## 12574                                                                                                                                                            At some point during techincal assistance trainingvisit to ecuador, I was infected by a parasitic worm.
## 12575                                                                                                                     At some point during the day, one of the chemicals he was working on fell into his shoe causing a minor chemical burn to top of right foot. ()
## 12576                                                                                                                                                           At some time, something small stuck in my knee, I thought I got it out but it still feels like its there
## 12577                                                                                                                     At stop light when light turned green. EE started through intersection, jeep ran red light & hit passenger side of state car. **subro claim***
## 12578                                                                                                                                        At stop sign & pulled out into traffic. Another vehicle not visible b/c of hedges & light pole. Was struck by other vehicle
## 12579                                                                                                At the beginning of her shift employee was walking up the steps leading from sidewalk when she lost her footing and tripped, hitting her right leg on the steps. ()
## 12580                                                                                                                                                                                   At the conclusion of training EE said she felt a pull in her back and right leg.
## 12581                                                                                                                                                                                             At the desk turn to call in count and bang my left knee funny bone. ()
## 12582                                                                                                                                                    At the door in kitchen turning the key and door hit right thumb causing it to tear away from top of cuticle. ()
## 12583                                                                                                      At the end of a car chase, the suspect locked himself in the vehicle and was threatening suicide. EE struck the window with his hand and broke the window. ()
## 12584                                      At the end of a mini center, employee was unloading state van to move supplies & equipment used in the mc the storage area in haywood. But on opening the door at back of van a cart rolled out and struck employee's leg. ()
## 12585                                                                                                                                                    At the end of honors assemblky (ged graduation) eewas going up steps to remove microphone when EE fell on stage
## 12586                                                                                                                                                                              At the end of shift (near) felt a small bump on left side of back, as stated by EE ()
## 12587                                                                                                                          At the end of the ems exercise, Mr. Thompson was loading equipment into the vehicle. His back began hurting intensely by that evening. ()
## 12588                                                                                                                                                             At the greenville law annex-EE rolled his left ankle on the mats while training in pert ground defense
## 12589                                                                                                                                 At the time of the accident was conducting security rounds. Was walking and her right foot turned to the right caused ankle sprain
## 12590                                                                                                                                               At the time of the incident the EE was separating two inmates fighting and was exposed to one of the inmates's blood
## 12591                                                                                                               At the top of stairs coming down from making a security check when foot slipped and started bouncing down each step on her buttocks hitting her back
## 12592                                                                                                                                                                   At the training facility doing baton training hurt her self didn't feel it until 2 days later ()
## 12593                                                                                                                            At time of accident no injury was reported and nottransported was used for the above prosp. Report filled out in event future problems.
## 12594                                                                                                                               At training performing a 2 person take down officer's legs were held by officer. He turned to speak with officer and felt a pinch ()
## 12595                                                   At tyrrell prison work farm, I was working with road squad #2 moving furniture off trucks putting in the doc office. When I got to the room the desk fell off the dolly. Fractured middle finger, right hand. ()
## 12596                                                                                                                                                                                                                 At work in medical building during use of force ()
## 12597                                                                                                                                          At work in the master control room the EE states he was possibly bitten by an unknown insect/spideron the lower right leg
## 12598                                                                                                                  At workstation, lt arm started itching-pulled lab coat off. Increased itching & discomfort radiatingfrom inner elbow down arm. Prob. Insect bite.
## 12599                                                          At wssu storage warehouse picking up a chair, when I tripped over a piece of surplus that stuck out on the floor. I was not able to see it the lighting are out in the area where we keep our surplus. ()
## 12600                                                                                                                                                                                        Ate ice out of wrong cup (inmate's cup). May have consumed inmate's saliva.
## 12601                                                                                                                                                            Atempting to handcuff an inmate, was pushed against a holding cell wall (made of chain link fencing) ()
## 12602                                                                                                                                                                Att to assit w/student, reached to open door when door slammed on rt index finger casusing swelling
## 12603                                                                                                                                                              Att to put helmet on client-client was being resistive-EE hurting in chest, rt side of neck and back.
## 12604                                                                                                                                                                        Attached by pt, kicked in right leg, fell to floor hitting knees and injuring left wrist ()
## 12605                                                                                                                                                                                                Attached by pt, pt kicked EE in left leg and twisted right thumb ()
## 12606                                                                                                                                                                                 Attached by pt. C/o blurred vision, headaches, short term memory loss, balance off
## 12607                                                                                         Attaching an asphalt kettle to the trailer hitch of truck & trailer shifted on trailer ball & he pulled the trailer back over the ball & felt a pop in lower right back ()
## 12608                                                                                                                                 Attaching razor ribbon to top of security fence. While untangling & attaching ribbon, back of left hand was struck by ribbon barb.
## 12609                                                                                                                                                                                                                                     Attacked & beaten by an inmate
## 12610                                                                                                                                                                                                                                Attacked and assaulted by a patient
## 12611                                                                                                                                                                                                                                   Attacked by a combative patient.
## 12612                                                                                                                                                                                                                          Attacked by a dog during field contact ()
## 12613                                                                                                                                                                                  Attacked by a patient, choking her and throwing herdown. Injury to hip/neck/back.
## 12614                                                                                                                                                                                      Attacked by a patient-placed in a headlock and scratched on the arm and face.
## 12615                                                                                                                                                                                                                                             Attacked by a patient.
## 12616                                                                                                                                                                                                                                          Attacked by a patient. ()
## 12617                                                                                                                                                                           Attacked by a patient. Kicked on the left thigh, hit to face and scratched on right arm.
## 12618                                                                                                                                                                                                                                      Attacked by aggresive inmate,
## 12619                                                                                                                                                                                                       Attacked by aggressive pt, pt hit/kicked/pulled EE's hair ()
## 12620                                                                                                                                                    Attacked by an agressive patient - contusion/ sprain tl knee - possibel lumbar strain, mild contusiont to face.
## 12621                                                                                                                                                                                                                               Attacked by client, lt wrist injured
## 12622                                                                                                                                                                                                      Attacked by individual and fell in bathroom hitting rt elbow.
## 12623                                                                                                                                                                                                                                      Attacked by inmate in kitchen
## 12624                                                                                                                                                                                                                                             Attacked by inmate. ()
## 12625                                                                                                                                                                                                    Attacked by inmate. Shoved head against window several times ()
## 12626                                                                                                                                                                                Attacked by patient & fell hitting his knee on floor. Abrasion on right ring finger
## 12627                                                                                                                                                                                    Attacked by patient & in process of trying to subdue patient right arm was hurt
## 12628                                                                                                                                                                                                     Attacked by patient causing stress to his already injured back
## 12629                                                                                                                                                                                                                            Attacked by patient during a restraint.
## 12630                                                                                                                                                                                           Attacked by patient from behind, hit EE on r shoulder, r side of face ()
## 12631                                                                                                                                                                               Attacked by patient punching & kicking shoved staff into wall striking left shoulder
## 12632                                                                                                                                                                                                              Attacked by patient while giving patients their lunch
## 12633                                                                                                                                                                                             Attacked by patient, hit in face, pulled hair, pushed against wall. ()
## 12634                                                                                                                                              Attacked by patient. Attempted to use therapeutic block when pt hit her on head receiving injury to lft pinky finger.
## 12635                                                                                                                                                                                                      Attacked by patient. Grabbed around neck & both fell to floor
## 12636                                                                                                                                                                                                                Attacked by patient. Patien hit her in nose w/ fist
## 12637                                                                                                                                                                             Attacked by patient. Patient hit EE on left side of face & bit her finger on left hand
## 12638                                                                                                                                                                       Attacked by patient. Patient pulled hair, punched at staff and scratched her on right thumb.
## 12639                                                                                                                                                                     Attacked by psych pt punched left temple area thrown to floor neck, shoulder, and back pain ()
## 12640                                                                                                                                            Attacked by pt from behind pt grabbed EE around neck causing EE to fall backwards, hitting head shoulder & hip on chair
## 12641                                                                                                                                                                                                           Attacked by pt resulting in broken finger trt w/ e ortho
## 12642                                                                                                                                                                                                       Attacked by pt, blocked hit, pt scratched EE on right arm ()
## 12643                                                                                                                                                                                                                 Attacked by pt, blocked pt, pt hit right finger ()
## 12644                                                                                                                                                                                                        Attacked by resident... Injury low back pain down both legs
## 12645                                                                                                                                                                                                                 Attacked from behind by a patient. Head hit floor.
## 12646                                                                                                                                                                         Attacked from behind by patient who slammed him into wall causing laceration to his eyelid
## 12647                                                                                                                                                                                                            Attacked from behind by patient. Hit on head, scratched
## 12648                                                                                                                                                                          Attacked from behind. Stabbed several times w/ homemade knife had wounds to back and head
## 12649                                                                                                                                                                                                                                  Attacked staff and bit her arm ()
## 12650                                                                                                                                                Attacked unprovked by pt. Hit multiple times in back of head neck upper-back & abdomen (soreness burising stiffing)
## 12651                                                                                                                 Attemp to reach file over head on shelf; grabbed the office step stool to assist and stool struck top of foot; gaping wound required 4 stitches ()
## 12652                                                                                                                                                    Attemped to open water spicket container compartment and hornet swarmed him. He was bitten on the left forearm.
## 12653                                                                                                                                                                          Attemping to gas up track car when the pressure from the tank sprayed gas in his eyes. ()
## 12654                                                                                                                                                                                                 Attempt gain control of I/m and was struck in right hand by I/m ()
## 12655                                                                                                                                          Attempt to pull a file from a box located on the floor while sitting in a chair. Motion caused a sharp pain in lower back
## 12656                                                                                                                                                  Attempt to redirect client when client charged attempt to place in therapeutic hold was bitten onleft upper bicep
## 12657                                                                                                                                                                                  Attempted several times to turn key to unlock lock on fire door during fire drill
## 12658                                                                                                                                                                                                           Attempted to ? Overhead door to test can with ? On track
## 12659                                                                                                             Attempted to apply belt on client in order to transfer from chair to wheelchair, client became aggitated and undsteady and attending staff fell to flr
## 12660                                                                                                                                                                                                                                 Attempted to arrest an offender ()
## 12661                                                                                                             Attempted to arrest an offender. While taking offender to the ground the offender attempted to run from ppo and ppo fell to the ground on left knee ()
## 12662                                                                                                                                     Attempted to arrest offender he bacame aggitated, we struggled & fell then tried to gain control he continued to wrestle w/us.
## 12663                                                                                                                                                                                    Attempted to assist a patient who was falling-in process twisted r. Shoulder ()
## 12664                                                                                                                                                   Attempted to assist co-worker from being attacked by client-in process, client head butted employee in right eye
## 12665                                                                                                     Attempted to assist officer breaking up fight between two inmates. As was wrestling inmate, fell on floor and right wrist landed on pepper spray cannister. ()
## 12666                                                                                                                                                Attempted to assist resident to stand from sitting position on floor - became agitated- hit in l. Jaw with fist. ()
## 12667                                                                                                                                  Attempted to assist staff member with agitated client-client grabbed left middle, ring & pinky finger and bent them backwards. ()
## 12668                                                                                                                                                                                            Attempted to catch door from slamming and caught his finger in the door
## 12669                                                                                                                                                                                           Attempted to climb on loading dock to check east doors; slipped and fell
## 12670                                                                                                                                               Attempted to close infirmary gate. Was trying to get pole down. Other gate handle piece came down onrt index finger.
## 12671                                                                                                                                                                                 Attempted to cut box (containing kleenex boxes) open and cut left index finger. ()
## 12672                                                                                                                                              Attempted to detain and cuff inmate and inmate snatched away. He then grabbed my head & hit it up against the wall ()
## 12673                                                                                                                                                  Attempted to direct patient to sit in wheelchair- patient resisted & leaned over & bit staff on her left deltoid.
## 12674                                                                                                                                                                  Attempted to exit supply room. Went around an inmate who was emptying trashcan & slipped on floor
## 12675                                                                                                                                                            Attempted to free jammed bleachers by lifting them and felt pain in the abdominal area, above the naval
## 12676                                                                                                                                                                                                   Attempted to gain control of a student hit rt knee on metal bed.
## 12677                                                            Attempted to get resident up for bath-resident rolled over stated didn't feel good. Asked that resident get up for shower and resident hit employee, with fist, below left eye-against side of nose. ()
## 12678                                                                                                                                   Attempted to grab student when fighting w/another student & her hand slipped off of his arm causing her finger to bend backward.
## 12679                                                                                                                            Attempted to handcuff an inmate, who was in secured shower stall. Inmate grabbed handcuff also pulling his arm causing it to scrap bars
## 12680                                                                                                                           Attempted to handcuff offender, had one hand cuffedoffender jerked and teeth on handcuff tore skin on pinky finger. Required 4 stitches.
## 12681                                                                                                                                                                              Attempted to inject young child when child jerked and EE injured thumb w/clean needle
## 12682                                                                                                                          Attempted to intervene with client who had seizure and fell on floor. Cleint was violently throwing arms & legs about and kicked employee
## 12683                                                                                                                      Attempted to interview driver @ traffic collision driver drew fists @ EE, EE struck driver w\\rt handlaceration rt-knuckles requiring sutures
## 12684                                                     Attempted to keep client from falling on floor. When the client attempted to hold on to me to keep from falling, experienced a sharp pain in lower part of back and dull aching pain in left shoulder area. ()
## 12685                                                                                         Attempted to keep patient from falling in shower-patient stood up from shower chair-attempted to grab patient and chair-fell into shower-l. Hip, and lower leg bruised. ()
## 12686                                                                                                                                                       Attempted to keep resident/patient from falling twisted rt ankle and resident also stepped on her rt big toe
## 12687                                                                                                                                                                                                        Attempted to lift folder dropped it, left hand went weak ()
## 12688                                                                                                                                                                                       Attempted to lift patient from floor patient resisted strained left shoulder
## 12689                                                                                                                                                            Attempted to lift sheet rock debris onto forklift when felt sharp pain in lower abdomen & groin area ()
## 12690                                                                                                                                                                                Attempted to move rolling work bench, wheels did not move and pulled muscle in back
## 12691                                                                                                                                                                                                  Attempted to open steel valve pit cover for inspection of pit arm
## 12692                                                                                                                    Attempted to pick up a piece of foam rubber that was in the bottom of a ice cream cup she picked up the foam and was stuck with a sewing needle
## 12693                                                                                                                                                                        Attempted to pick up the mail tray when an inmate threw an unknown substance on officer. ()
## 12694                                                                                                                                           Attempted to prevent a fight between to juveniles. Escorted juvenile to his room. Lower back pain by the belt and lower.
## 12695                                                                                                                          Attempted to prevent a patient from falling-holding-emp. Legs went out in opposite directions-strained l. Lower back/hip & r. Forearm. ()
## 12696                                                                                                                                                                                                     Attempted to put fire out in inmates' bathroom. Inhaled smoke.
## 12697                                                                                                                                                                          Attempted to raise head of bed of resident. Felt something pull in back middle/lower part
## 12698                                                                                                                                                                    Attempted to redirect a resident from hitting another resident when resident hit in stomach. ()
## 12699                                                                                                                       Attempted to redirect agitated client from staff emp holding onto client's elbow, client started jerking in other direction, pop right wrist
## 12700                                                                                                                                                                                                     Attempted to redirect client - client punched employee in nose
## 12701                                                                                                                                                     Attempted to redirect consumer. Consumer grabbed right thumb & bent it backwards then jerked her thumb forward
## 12702                                                                                                                                                            Attempted to redirect patient by grabbing hat-aggravated patient-patient scratched/hit in face/neck. ()
## 12703                                                                                                                                                                                   Attempted to redirect patient. Patient became aggressive. Hit her on right hand.
## 12704                               Attempted to redirect resident from unit elevator. Resident started throwing punches. Co-worker got resident's right arm I prevented resident from punching co-worker in face. Resident punched emp. In upper l shoulder w force. ()
## 12705                                                                                         Attempted to redirect resident to bedroom in order to redress-resident agitated-attempted to lay down on floor while holding onto employee-twisting l. Wrist backwards. ()
## 12706                                                                                                                                                                               Attempted to redirect resident, resident shoved me in to door frame with his back ()
## 12707                                                                                                                                                                                 Attempted to remove brief from resident-resisdent grabeed r. Thumb and twisted. ()
## 12708                                                                                                                                                              Attempted to remove medical charts from wooden order box, something stuck into my (l) small finger ()
## 12709                                                                                                        Attempted to remove resident from Dr Chair-resident punched employee in r arm and l jaw-later that day (around 3:00 pm) reported pain in mid back/l jaw. ()
## 12710                                                                                                                                                          Attempted to restrain inmate, inmate jerked away and struggled causing employee to fall to the ground. ()
## 12711                                                                                                                                                                                                    Attempted to restrain patient and fell over table to the ground
## 12712                                                                                                                                                                                                          Attempted to restrain patient fell on knees then buttocks
## 12713                                                                                                                                                                                                  Attempted to restrain patient twisted and landed hard on left leg
## 12714                                                                                                                                                                     Attempted to return pt to bed when he tripped striking rail of bed adn hit knee, strained back
## 12715                                                                                                                                                Attempted to rise from desk in nursing station after signing off medication book, hit right knee on corner of desk.
## 12716                                                                                                                                              Attempted to roll backward from the desk and chair flipped out from under employee, hit the back of neck and head. ()
## 12717                                                                                                                        Attempted to separate 2 boys fighting, grabbed onecoat and pulled back, boys plus staff trying to separate them went in opposite directions
## 12718                                                                                                                                Attempted to separate residents during altercation-resident grabbed hair and pulled head back-grabbed around throat, pulled ear. ()
## 12719                                                                                                                                     Attempted to serve parole warrent on parolee. Ran across front yard & ran into clothes line causing damage across top of mouth
## 12720                                                                                                                                                                                                      Attempted to sit down and chair slid from underbeath body. ()
## 12721                                                                                                                                            Attempted to sit down in desk chair on rollers & chair tipped backward & slid out from under her throwing back of head.
## 12722                                                                                                                   Attempted to sit down in the chair, rolled beneath her, grabbed for the desk, drawer fell out on her, she fell on her right hip and right elbow.
## 12723                                                                                                                                                                 Attempted to sit down, when chair rolled back and she fell on the floor injuring back and buttocks
## 12724                                                                                                                                                                                         Attempted to sit in chair, chair broke off from the base, EE fell to floor
## 12725                                                                                                                                                                   Attempted to stand pivot a client, client jerkedb backwards resulting in employee twisting back.
## 12726                                                                                                                             Attempted to step from the roof onto ladder, ladder kicked out, EE lost balance, fell onto gravel driveway, ladder fell on top of him.
## 12727                                                                                                                                                                               Attempted to step over dollies stacked in floor caught toe of shoe and fell on knees
## 12728                                                                                                                                                                                       Attempted to stop door from shutting; it shut on right hand/middle finger ()
## 12729                                                                                                                                                                                Attempted to straighten patient up in chair and felt muscle pull in r. Low back. ()
## 12730                                                                                                                                                                                         Attempted to take client's vital signs, client bit EE on left fifth finger
## 12731                                                                                                                                                                Attempted to throw another staff during cell extraction training and knee would not turn with body.
## 12732                                                                                                                                                                               Attempted to untie a dress from around inmate's neck. Inmate bit her right shoulder.
## 12733                                                                                                                                                                        Attempted to use oc pepperspray on inmate outside; wind blowing caused spray to get in eyes
## 12734                                                                                                                                                     Attempted to wash client's face & hands. Client became aggressive pushing EE's hand away & bendingfingers back
## 12735                                                                                                                      Attempting arrest of dwi subject-struggle began EE placed subject on ground to handcuff-he fell toground on top of EE caused left hand injury
## 12736                                                                                                                                                                               Attempting delivery of goods, goods on top of cart fell off striking her foot & toes
## 12737                                                                                                                                                                                 Attempting entrance into narcotic cabinet. Latch jammed causing shoulder to pop ()
## 12738                                                                                                                          Attempting gain access into driver compartment of a wrecked car, by striking the windshield with baton. Glass shards flew into EE rt eye.
## 12739                                                                                                                                                                                                          Attempting manual hold when heard a pop in left shoulder.
## 12740                                                                                                                                                                         Attempting run out of area. Reaching client, turned suddenly & EE's left arm went w/client
## 12741                                                                                                                                                                         Attempting to accest individual he rolled over and kicked EE in the hand injuring my thumb
## 12742                                                                                                                             Attempting to adjust closure signal on door in gatehouse while looking up to read instructions EE heard a pop in neck lt arm went numb
## 12743                                                                                                                                                                            Attempting to apprehend a fugitive who ran, employee gave chase and pulled his left leg
## 12744                                                                                                                   Attempting to apprehend a handcuffed suspect that had jumped from trooper's car, during foot chase stepped into a hole, twisted left ankle, fell
## 12745                                                                                                                                                                            Attempting to apprehend a subject when EE stepped into a hole & twisted his left ankle.
## 12746                                                                                                                                          Attempting to apprehend an absconder went over a fence to gain acess to rear of residence & landed wrong injuring lt knee
## 12747                                                                                                                                                                 Attempting to apprehend fugitve while assisting another officer, injured lower rt leg, calf muscle
## 12748                                                                                                                                                              Attempting to apprehend suspect on foot, injured his r ham string as he attempted to grab the suspect
## 12749                                                                                                             Attempting to apprehend suspect who had just wreck a stolen vehicle. Vehicle overturned on its side. EE tried to grab suspect, got hand caught in door
## 12750                                                                                                                Attempting to arrest a suspect for shop lifting. Suspect fled on foot. Pursuing suspect EE stepped in a hole & fell bkwds. Rt--arm/hand/elbow/knee.
## 12751                                                                                                                                                      Attempting to arrest an individual who was fleeing& resisting arrest injuries consisted of scratches& bruises
## 12752                                                                                                                                                                      Attempting to arrest an intoxicated person who was resisting arrest at rolling stones concert
## 12753                                                                                                                                                                                                                      Attempting to arrest an offender and fell. ()
## 12754                                                                                                                                                                                                                             Attempting to arrest appreherd subject
## 12755                                                                                                                                        Attempting to arrest assailant w/another trooper & weight of another trooper caused his right thumb& wrist to become jammed
## 12756                                                                                                                                                                              Attempting to arrest dwi suspect. Suspect resistedby kicking EE and knocking her down
## 12757                                                                                                                                                       Attempting to arrest dwi suspect. Suspect twisted his arm around, kicked EE & both fell to floor of elevator
## 12758                                                                                                                                                                                            Attempting to arrest individual he rolled over and kicked me in rt hand
## 12759                                                                                                                                                         Attempting to arrest individual, EE struck indivi dual in head with his right hand, causing injury to hand
## 12760                                                                                                                      Attempting to arrest offender after he was handcuffed he fail back onto bed and kicked with both feet and fell backwards and struck EE's back
## 12761                                                                                                                                                                                      Attempting to arrest offender, offender resisted arrest and a scuffle ensued.
## 12762                                                                                                                                          Attempting to arrest person for speeding & grabed socket wrench from his hand. Struck in face. Exposed to blood pathogens
## 12763                                                                                                                                                                                 Attempting to arrest person--resisting arrest. Injured left knee, severe bruising.
## 12764                                                                                                                                                     Attempting to arrest sherman ward, accussed injured and officer fell in hospital parking lot and hurt rt knee.
## 12765                                                                                                                           Attempting to arrest subject for driving while license suspended. Subject started fighting duringaltercation. Left wrist became sprained
## 12766                                                                                                                                                        Attempting to arrest subject for dwi; subject resisted & trooper bruised right hand while subduing subject.
## 12767                                                                                                                      Attempting to arrest suspect for criminal violation while involved in training scenario. As attempted to gain control of suspect knee twisted
## 12768                                                                                                                                                                      Attempting to assist another staff member who was being assaulted. He was assaulted by inmate
## 12769                                                                                                                            Attempting to assist medical staff with extending the legs of a stretcher that an inmante was on, lifted 3-4 times still did not extend
## 12770                                                                                                                      Attempting to assist with manuel restraint of a patient. The patient bit EE on her left wrist causing swelling of left hand, skin not broken.
## 12771                                                                                                                                             Attempting to assume kneeling position while on a doc firing range attempting to complete weapons e xercise, fell down
## 12772                                                                                                                                  Attempting to avoid stepping in wet wax on floor located in voc rehab area. Misstepped & bumped head on corner of hanging cabinet
## 12773                                                                                                                 Attempting to block inmates from fighting, inmateswere sprayed with pepper spray causing officer to be exposed to spray. He bruised his right arm.
## 12774                                                                                                                                                                                             Attempting to break patient's fall, causing staff to fall to floor. ()
## 12775                                                                                                                                                        Attempting to break up a fight between inmates, inmate struck me with a metal object on the left forearm ()
## 12776                                                                                                                                                                                              Attempting to break up a fight between two inmates in dining hall. ()
## 12777                                                                                                                                                                     Attempting to break up a fight between two juveniles, employee was kicked in the right shin ()
## 12778                                                                                                                                                Attempting to break up a fight between two juveniles, ran to get phone and hit left forearm on corner of a bookcase
## 12779                                                                                                                                                                        Attempting to break up a fight between two juveniles. I was punched and pushed into a wall.
## 12780                                                                                                                                                                                              Attempting to break up a fight where an inmate had attacked staff. ()
## 12781                                                                                      Attempting to break up and altercation the officer was attempting to break to strike the right shoulder of an inmate and he grabbed her left hand injuring her ring finger ()
## 12782                                                                                                                                        Attempting to break up fight and was hit in the stomach by inmate and officers pepper spray fell out of pocket to floor. ()
## 12783                                                                                                                                                                              Attempting to break up fight between 2 inmates & one of inmates hit EE on right hand.
## 12784                                                                                                                                                           Attempting to break up fight between juveniles, hit in the hand - left hand & thumb swollen & painful ()
## 12785                                                                                                                                                                                           Attempting to break up fight between two patients, injured lower back ()
## 12786                                                                                                                                                                                                  Attempting to calm down upset pt, pt scratched EE on right arm ()
## 12787                                                                                                                                                                        Attempting to calm residnet. Pt shoved a rolling cart into hot tony. Skin intake small knot
## 12788                                                                                                                         Attempting to calm verbally abusive student. Student got physically aggressive. Pushed EE into wall at which point his thumbs were injured
## 12789                                                                                                                                                                    Attempting to capture fleeing suspect. Jumped embankment & pulled musle in lower portion of leg
## 12790                                                                                                                                                                             Attempting to carry a stack of 10 lunch trays up the steps and stepped on the strap ()
## 12791                                                                                                                                                                                                            Attempting to catch a falling patient from x-ray table.
## 12792                                                                                                                           Attempting to catch a horse using standard procedures the horse pulled away kicked the employee in both thighs and stepped on right foot
## 12793                                                                                                                                                                       Attempting to catch an offender who was running away slipped, tripped and fell near the curb
## 12794                                                                                                                                                                                                        Attempting to catch falling resident and twisted lower back
## 12795                                                                                                                Attempting to change the blade on electric powered chop-saw. When putting allen wrench in nut to check size, saw activated & cut EE lt index finger
## 12796                                                                                                                                Attempting to change tire for elderly, disabled motorist on interstate 95. Attempting to loosen lug nut felt pull in right shoulder
## 12797                                                                                                                                                                     Attempting to clean dirt from ground near machine and left thumb got sucked up into blade area
## 12798                                                                                                                                                                        Attempting to clean window located behind secretary's desk. Tipped over and fell onto chair
## 12799                                                                                                                                Attempting to clear debris from holesaw drill bit w/screwdriver while holding drill bit. Screw- driver slipped and struck left palm
## 12800                                                                                                                                                                                            Attempting to climb into back of truck & bumped her knee on rear bumper
## 12801                                                                                                                         Attempting to close a window in a pt's bedroom. When I pushed down on the window with my finger, my right hand slipped and pulled tendons.
## 12802                                                                                                              Attempting to close a window when his lt hand slipped from the handle and broke the glass. Causing him to cut his lt middle finger and lt ring finger
## 12803                                                                                                                                         Attempting to close bar doors. Tried to remove roll of toilet paper that was keeping door open bar door closed on fingers.
## 12804                                                                                                       Attempting to close door -patient aggressive-grabbed arm and hit in face-attempted to pull through doorway- placed r. Leg back for leverage-pain in r. Calf.
## 12805                                                                                                                                     Attempting to close file cabinet drawer, binder prevented drawer from closing, bent thumb (left hand) backward causing sprain.
## 12806                                                                                                                                                                                                          Attempting to close gate. Felt burning sensation in back.
## 12807                                                                                                              Attempting to close inmate's cell trap door during medication call and inmate pushed the door back open injuring officer secor's left index finger ()
## 12808                                                                                                             Attempting to close operation w/ iris van and secure all the equipment. While closing mounting device that holds the infra-red camera, rt thumb lodged
## 12809                                                                                                                                                              Attempting to close safety sheath on butterfly needle; pricked right 2nd finger; penetrated glove. ()
## 12810                                                                                                                                                                         Attempting to close the elevator door when his finger got caught in it resulting in injury
## 12811                                                                                                                                                                                                    Attempting to close window in d-dorm memo board hit her head ()
## 12812                                                                                                                                                                                Attempting to close window in nurses' station, window fell on right index finger ()
## 12813                                                                                                                                                                     Attempting to close wing door, third finger on hisright hand got mashed between door and hinge
## 12814                                                                                                             Attempting to conduct a complete search on a inmate, the inmate became aggressive and spat at EE. Then tried to hit EE w/ his rt hand. EE struck inmat
## 12815                                                                                                                          Attempting to conduct a covert operation in a rural area when 8-10 dogs came from targeted residence. While running sprain rt ankle/foot.
## 12816                                                                                                                         Attempting to confisicate contraband when attacked by the I/m and was c/o was repeatedly hit in the facial area and kicked in the ribs. ()
## 12817                                                                                                              Attempting to connect trailer to vehicle during extreme adverse weather conditions during hurricanfram. Trailer moved. Pinned between trailer & vehic
## 12818                                                                                                                                                                                                      Attempting to control disruptive inmante. Head andright hand.
## 12819                                                                                                                                                                                               Attempting to control disruptive inmate. Bruised right arm and hand.
## 12820                                                                                                                                                                                                                               Attempting to control hostile inmate
## 12821                                                                                                                             Attempting to control police dog, EE struck hand on wooden decking. Blow caused piece of wood to be driven under left index fingernail
## 12822                                                                                                                                                        Attempting to counsel juvenile about negative behavior when she hit staff on left temple and head with fist
## 12823                                                                                                                                                                   Attempting to cross over to other side of parking lot when she slipped on ice and fell backwards
## 12824                                                                                                                                                                                                                                       Attempting to cuff an inmate
## 12825                                                                                                                                                                                                                 Attempting to cuff an inmate-web of right hand cut
## 12826                                                                                                                                                                                                              Attempting to cuff inmate and inmate scratched rt arm
## 12827                                                                                                                                                                                                            Attempting to cuff inmate, got inmate's blood on me. ()
## 12828                                                                                                                                 Attempting to cuff up an inmate to move cells. Had one cuff on im and im jerked the cuffs away and I tried to hold on to cuffs. ()
## 12829                                                                                                                       Attempting to cut a lock off with pair of bolt cutters when handle popped away from his hands & slammed into his elbow 2 times. Twisted back
## 12830                                                                                                              Attempting to cut braided cable with portable band saw. Holding saw w/right hand and cable w/left hand, saw pulled left hand into blade cutting edge.
## 12831                                                                                                                                                                                                Attempting to cut restraints off an inmate when hand was injured ()
## 12832                                                                                                                                            Attempting to detain a subject to issue a citationwhen subject fled on foot. A struggle ensused & EE fell on left knee.
## 12833                                                                                                                                                                Attempting to discard needle after attempting a blood draw, finger slipped, was stuck by the needle
## 12834                                                                                                                                                                               Attempting to dislodge padlock from gate; struck padlock with heel of right hand. ()
## 12835                                                                                                                                                                                                          Attempting to do the mounted formation. Left thumbpopped.
## 12836                                                                                                                                Attempting to draw blood of high risk pt. Needle was withdrawn when trying to place needle in the sharps needle stuck in lt finger.
## 12837                                                                                                                                                                            Attempting to empty tower and was bitten by an unknown insect in palm of her right hand
## 12838                                                                                                                Attempting to enter sallie port entrance to prison area, when electric steel door opened & closed suddenly pinning EE lt shoulder/arm/hand/fingers.
## 12839                                                                                                                                                                                                Attempting to escort inmate back to his cell. He spat on my face ()
## 12840                                                                                                                                                  Attempting to evacuate an inmate from segregation cell due to fire. Inmate resisted & scratched EE on right elbow
## 12841                                                                                                                                                         Attempting to execute his duties by arresting an offender when offender ran. Altercation & chase occurred.
## 12842                                                                                                                                                                                             Attempting to exit door and hand was caught between door & door facing
## 12843                                                                                                                                                                                     Attempting to exit vehicle when opening door door puled officer out of vehicle
## 12844                                                                                                                    Attempting to free grounded vessel from shoreline. Lifting/pushing up & out on starboard bow. Pain & limited range of motion in both shoulders.
## 12845                                                                                                                                                              Attempting to gain control of an aggressive juvenile. Injured lft hand, 3rd finger, rt arm, shoulder.
## 12846                                                                                                                                      Attempting to gain control of disruptive inmate, he felt something pull in his back near the center, upper right side of back
## 12847                                                                                                                        Attempting to gather vehicle information by stepping down into & attempting to cross road ditch while investigating motor vehicle collision
## 12848                                                                                                                                                                           Attempting to get 2 cartons of milk out of window and window slammed down on two fingers
## 12849                                                                                                                                                         Attempting to get a restrant pt ou of chair, approx. 30 mins later EE experienced sharp pains in low back.
## 12850                                                                                                                                                              Attempting to get inmates out for school when an inmate lunged at her striking her in lower chin area
## 12851                                                                                                                                                Attempting to get keys out of key box when officerpulled box back in control room thinking she had already got keys
## 12852                                                                                                                                                                                                Attempting to get lift back into van and bumped right wrist--sprain
## 12853                                                                                                                                                                                                       Attempting to get off loading dock and slipped on iron rail.
## 12854                                                                                                                                                      Attempting to get up on rt leg from the floor, standing on lt foot, feet felt as thought it lock straight out
## 12855                                                                                                                                                                                                       Attempting to give client meds and client hit EE in the nose
## 12856                                                                                                                                                                                                  Attempting to give pt medication, pt was aggitated and aggressive
## 12857                                                                                                                       Attempting to hadncuff probationer, she resisted, pulling both herself & this officer to the floor. Had to use physical force to subdue her.
## 12858                                                                                                                                                     Attempting to handcuff a defendant. EE received several abrasions, and two human bites to both hands & wrists.
## 12859                                                                                                                    Attempting to handcuff inmate - inmate struck officer in neck. Per medical staff - sustained 3" laceration to left side of neck, apprx 2" deep.
## 12860                                                                                                                                 Attempting to handcuff inmate, inmate struck officer in the face on the left side repeatedly. EE sustained psychological injuries.
## 12861                                                                                                                                                                         Attempting to handcuff offender when offender pushed officer and both fell to the floor ()
## 12862                                                                                                                                       Attempting to handcuff subject, in the process subject elbowed EE in lower jaw causing EE to chiptooth on bottom right side.
## 12863                                                                                                                                                                                                                      Attempting to help a self injurious inmate ()
## 12864                                                                                                                                     Attempting to help cleint get closer to table, client suddenly leaned back & jumped, EE tried to keep cleint from falling back
## 12865                                                                                                                                            Attempting to help handcuff an offender. The offeneder tried to abscond and officer had to gain control of offender. ()
## 12866                                                                                                                                                                                 Attempting to help restrain inmate and fell on theconcrete and hurt her right knee
## 12867                                                                                                                     Attempting to hold bedframe to prevent patient from hurting themselves, resulted in staff having pain in back of neck and left shoulder blade.
## 12868                                                                                                                                                                                        Attempting to hold patient. Patient lunged againstee. Knocking EE into wall
## 12869                                                                                                                                                                                 Attempting to hold struggling patient. EE felt pain in right shoulder & lower back
## 12870                                                                                                                                           Attempting to intervene w/an agressive resident who was upset. EE hit on left shoulder & kicked onleft leg several times
## 12871                                                                                                                                                                       Attempting to intervene w/client's combative behavior. Client struck EE on tip of left thumb
## 12872                                                                                                                                                                Attempting to intervene with client's behavior. EE's right hand was caught under client's and floor
## 12873                                                                                                                                                                                                  Attempting to keep client from falling and struck leg on table ()
## 12874                                                                                                                                            Attempting to keep client from falling, clients weight went on employee suddenly, causing EE to pull bicep in left arm.
## 12875                                                                                                                                                                         Attempting to keep resident from removing tube. Resident dug nails into r. Ring finger. ()
## 12876                                                                                                                                                                                         Attempting to kill a spider on window and right hand went threw window. ()
## 12877                                                                                                              Attempting to kneel in firearms training for practical applications of firearm use and fell backwards hitting head on tables stacked against the wall
## 12878                                                                                                                                                                     Attempting to lift a cooler filled iwth ice, waterand soda when EE pulled muscles in both legs
## 12879                                                                                                                                           Attempting to lift a manhole cover with the pipe tool and the cover slipped and it's weight pulled a muscle in his back.
## 12880                                                                                                                                                                                  Attempting to lift a restrained inmate after a use of force when he hurt his back
## 12881                                                                                                                                                                         Attempting to lift a soda machine which had turned over and pinned an inmate underneath it
## 12882                                                                                                                                                                           Attempting to lift box of materials weighing approx. 89 lbs. Experienced sharp back pain
## 12883                                                                                                                                                                                                  Attempting to lift pc to move it and pain shot through lower back
## 12884                                                                                                                                                       Attempting to light a kiln. The chamber filled with gas causing flame to roll out and burn employee's hands.
## 12885                                                                                                                                                   Attempting to light gas grill during center activity. Flames spread from grill to his person when grill was lit.
## 12886                                                                                                                                                                                                             Attempting to located employer at home, slipped on ice
## 12887                                                                                                                                                                                                 Attempting to lock food passage door, when padlock fell & hit shin
## 12888                                                                                                               Attempting to lock inmate up after becoming disruptive in the dayroom. Inmate turned towards him, began cursing and struck him in the rt eye w/ fist
## 12889                                                                                                                Attempting to loosen the strap on his patrol boat, strap broke loose quickly, causing EE to slam against gunwale of boat. Pain/stiffness rt rib cag
## 12890                                                                                                                                                                          Attempting to lt bucket of water stepped over pipe atop floor felt discomfort in rt ankle
## 12891                                                                                                                                                                                                                       Attempting to make a job required home visit
## 12892                                                                                                                                                                                Attempting to make a right turn into driveway, missed driveway and struck ditchbank
## 12893                                                                                                                                                               Attempting to make a vehicle stop for a night deer hunting violation. Suspect rammed mv. Lt shoulder
## 12894                                                                                                                              Attempting to make an arrest, the suspect was forced to the ground. While going to the ground the employee jammed her rt thumb/wrist.
## 12895                                                                                                                                                                                                                       Attempting to make arrest, sprained rt ankle
## 12896                                                                                                                                 Attempting to make contact with taxpayor at thier residence-appointment, exited car, went to door, dogscame from back, bit on leg.
## 12897                                                                                                                                       Attempting to make left turn onto us 64 when EE was struck by a vehicle traveling west on 64 failing to stop for a red light
## 12898                                                                                                                                                  Attempting to medicate pt who was rolling around on floor, EE tripped over pts feet and hit cubby w/r shoulder ()
## 12899                                                                                                                                                                               Attempting to mount horse when horse started to kick. Pushed himself away from horse
## 12900                                                                                                                          Attempting to move a cart & the wheel fell off thecart. As she tried to replace the wheel she pulledher arm trying to catch the contents.
## 12901                                                                                                                                  Attempting to move a portable dry erase board & when she reached to take hold of the board a nail cut the palm of her right hand.
## 12902                                                                                                                                                                                                             Attempting to move around object. Punctured right knee
## 12903                                                                                                                                                                         Attempting to move pallet; jack stuck & pallet did not move; emp felt muscles in back pull
## 12904                                                                                                                                                                                   Attempting to move student desk. Book shelf slipped off desk & struck EE in head
## 12905                                                                                                                                                                                                          Attempting to obtain the key to enter tower from the dorm
## 12906                                                                                                                    Attempting to open a compartment for a parent using knife, finger slipped off the top of the vehicle and the sharp end cut fith index finger ()
## 12907                                                                                                                                                                                            Attempting to open a sugar jar, the jar broke and employee cut his hand
## 12908                                                                                                                         Attempting to open door of a room that patient had barricaded. While attempting to un-barricade door, employee injured his rt shoulder. ()
## 12909                                                                                                                                                                       Attempting to open hand onboard boat. Hand slippedoff handle. Finger lacerated on hose clamp
## 12910                                                                                                                                            Attempting to open janitor's door when turned to right on his left knee he heard popping sound frombehind his left knee
## 12911                                                                                                                                     Attempting to open lobby door, pulled and twisted lower back area. Automatic door broken, heavy doorhad to be opened manually.
## 12912                                                                                                                         Attempting to open officer's station door to respond to call. Rt hand slipped off handle, jamming his hand between the handle and the door
## 12913                                                                                                                                                                    Attempting to open quad door and slipped on concrete floor hurting right hip and lower back. ()
## 12914                                                                                                                                                                 Attempting to open window in b block and window broke loose pinning hand betwen cover and wall. ()
## 12915                                                                                                                  Attempting to overtake a vehicle. Lost control of his vehicle ran off rd and collided with embnkmnt. Contusion--rt hand, top of head, chest area.
## 12916                                                                                                                                                                   Attempting to overtake speeding vehicle, another cruiser turned in front of him causing accident
## 12917                                                                                                                                               Attempting to overtake violation vehicle when violator turned around and collided with patrol car injuring EE's back
## 12918                                                                                                                                             Attempting to physcically close a stuck sallyport door when door became unstuck and slammed on his hand and fingers ()
## 12919                                                                                                                                                       Attempting to pick combative patient up from floor and was hit on right side of temple and injured cervical.
## 12920                                                                                                                                                                                                   Attempting to pick up rat and rat bite pinky finger of left hand
## 12921                                                                                                                                    Attempting to pick up trash over side of high shoals falls platform. EE lost footing and fell 13feet off ledge onto rocks below
## 12922                                                                                                                                                                                Attempting to place a suspect under arrest and the suspect fought with the officer.
## 12923                                                                                                                                                                                                      Attempting to place aggressive pt in Mr, Twisted right hip ()
## 12924                                                                                                                               Attempting to place an inmate in restraints when the inmate snatched and jarred his arm and trapping his fingers inside the cuff. ()
## 12925                                                                                                                   Attempting to place hand behing pt's head to prevent her from banging her head, & pt head strucksmall finger on rt hand, resulting in sharp pain
## 12926                                                                                                                                                                                 Attempting to place hand restraints on inmate when inmate bit him on left hand. ()
## 12927                                                                                                               Attempting to place handcuffs on an inmate and the inmate spun around and began to strike officer in the head, face, and neck area with closed fists
## 12928                                                                                                                                                                                                       Attempting to place handcuffs on deaf pt, pt became upset ()
## 12929                                                                                                                           Attempting to place handcuffs on subject that had arrested for driving while impaired. Subject pulled away from EE causing to twist back
## 12930                                                                                                                                                                                                                Attempting to place muzzle on fractious patient. ()
## 12931                                                                                                                                                             Attempting to place patient into mechanical restraints & the patient bit staff on his right upper arm.
## 12932                                                                                                                      Attempting to place subject in jail. Subject refused to take all items from his pockets. Began removing items from pockets was struck in nose
## 12933                                                                                                                                                                    Attempting to place suspect in handcuffs & heard popping sound in left shoulder-then pain began
## 12934                                                                                                                                               Attempting to place suspect under arrest who was resisting arrest. Member reached through broken window & cut fingre
## 12935                                                                                                                              Attempting to prevent a juvenile from harming selfwhen juvenile attacked EE by pulling lower extremites, & pinching with fingernails.
## 12936                                                                                                                                                      Attempting to prevent an object from falling on aninmate. In doing so, she slipped and injured her right leg.
## 12937                                                                                                                                       Attempting to prevent patient from entering nurse's station to hit nurse, his arm got stuck between patient and door jam. ()
## 12938                                                                                                                                                   Attempting to prevent resident from falling backwards in shower, staff's right hand 3rd fingerwas bent backwards
## 12939                                                                                                                                                                                                            Attempting to pull a co-worker over wall & wrist popped
## 12940                                                                                                                                                      Attempting to pull file box from squatting position, lid broke and EE fell back onto right hand. Right thumb.
## 12941                                                                                                                                                                                         Attempting to pull handle of gate in upward motionfelt strain/pull in back
## 12942                                                                                                                                                                                                           Attempting to pull on a jam door. Door struck rt hand ()
## 12943                                                                                                                      Attempting to pull the handle of the hand cart tilted forward while employee held with her left handshe fell backward elbow put hole in wall.
## 12944                                                                                                                                                            Attempting to push a vechicle that was struck in ditch on edge of roadway. Felt sharp pain in lowerback
## 12945                                                                                                                                                           Attempting to push g-chair off transport van. Whenthe g-chair got stuck & rolled back, it hit iw's knee.
## 12946                                                                                                                                                                  Attempting to push pallet jack under pallet when his hand slipped off pallet jack striking handle
## 12947                                                                                                                                                                Attempting to push stranded suv from intersection, and strained a muscle in rear of upper left leg.
## 12948                                                                                                                                                Attempting to put a gill net into his vessel. While pulling on gil net something gave away in his back. Low rt back
## 12949                                                                                                                                                         Attempting to put a spit mask on inmate, inmate head butted officer jefferson against holding cell bars ()
## 12950                                                                                                                                                                                             Attempting to put client in therapeutic hold client bit EE on left arm
## 12951                                                                                                                                       Attempting to put drink cup holder where drink bottle would fit in it. Knife cut through plastic cutting thumb on right hand
## 12952                                                                                                               Attempting to put ear drops in client's ear. Clientbecame non-complient hitting at EE. Client knockedbottle out of hand, medicine hit EE in the eye.
## 12953                                                                                                                                                                               Attempting to put handcuffs on suspect, suspect fought trooper & both fell to ground
## 12954                                                                                                                                                                                   Attempting to put patien's hand back into cuffs when patient bit him on left arm
## 12955                                                                                                                                                                                 Attempting to put patient in mechanical restraintspatient punched hct in right eye
## 12956                                                                                                                                           Attempting to put patients shoes on-upset-kicked foot contacting with employee's l. Eyelid, check and bridge of nose. ()
## 12957                                                                                                                                                             Attempting to put resident in wheelchair, residentwent to other side & sat on floor, pulling EE w/him.
## 12958                                                                                                                                                                                      Attempting to put shirt on patient-aggressive-yanked l. Arm several times. ()
## 12959                                                                                                                                                                             Attempting to raise bedrail and l ring finger caught between bed rail and bedframe. ()
## 12960                                                                                                                                                                                     Attempting to raise door to room & felt sharp painto his right side lower back
## 12961                                                                                                                                                                                          Attempting to re-center a lead on forklift, bag shifted, tried to conrol.
## 12962                                                                                                                      Attempting to re-enter work vehicle, lost footing on vehicle threshold and his reaction to prevent falling cause him to experience chest pain
## 12963           Attempting to reach for plate on top of refrigerator loss balance step the wrong way. EE was assisting another EE to reach on topof refrigerator. EE started to use a chair however she place left foot in chair EE lost blance and twisted right leg ()
## 12964                                                                                                                                                                                       Attempting to reach up to push elevator button pulled muscle in her rib cage
## 12965                                                                                                                                                                                        Attempting to readjust while carrying patient, employee laid across leg. ()
## 12966                                                                                                                                                         Attempting to recap a needle. Needle bent, went through side of plastic cap and punctured lt index finger.
## 12967                                                                                                                                                                               Attempting to redirect an aggressive pt, EE was hit in left jaw & kicked in stomach.
## 12968                                                                                                                                                                                        Attempting to redirect and when pt struggled physically, pt and staff fell.
## 12969                                                                                                                                                     Attempting to redirect disturbed pt. Pt slung herself into chair, while EE was holding her arm. C/o back pain.
## 12970                                                                                                                                     Attempting to refuel his patrol vehicle when his foot got intangled in gas hose & he fell to the pavement striking pump island
## 12971                                                                                                                                                                                 Attempting to reinstall exhaust trunk. It burnt ltindex, middle, and ring fingers.
## 12972                                                                                                                                                          Attempting to release a load bar from trailer that was securing baskets of laundry, by releasing load bar
## 12973                                                                                                                                                           Attempting to release a load bar from trailer that was securing baskets of laundry, by releasingload bar
## 12974                                                                                                                        Attempting to relieve officer on tower 2, walking up icy incline and fell 4 times before a another EE assisted him to his feet & up incline
## 12975                                                                                                                                         Attempting to remove a plastic bushing using a straight pick tool it slipped and stuck in left middle finger - tip end. ()
## 12976                                                                                              Attempting to remove bungie cord that secured copier to cart, bungie cord tension caused the buckle to directly strike left eye (eyelid closed, broke skin on bone ()
## 12977                                                                                                                                                                                                Attempting to remove clients dentures-client kicked in left knee ()
## 12978                                                                                                                    Attempting to remove inmate cap from his head while inside dormitory inmate refused to comply. EE reached for cap but inmate swattered her hand
## 12979                                                                                                             Attempting to remove inmate from conference room. While trying to control inmate, staff member fell on hand and pinned it to the edge of the table. ()
## 12980                                                                                                           Attempting to remove inmate from upper level of f-pod anson to medical, arms got twisted by inmate and co-worker accidentally kicked me with his chin ()
## 12981                                                                                                                                               Attempting to remove irrate inmate from dorm. Inmate attempted to hit another inmate and struck officer in right arm
## 12982                                                                                                                                                    Attempting to remove kitten from under front passenger tire trapped in spring and kitten bit right index finger
## 12983                                                                                                                                                        Attempting to remove large dog from travel portionof I-40 when he was bitten on left hand. Skin was broken.
## 12984                                                                                                                          Attempting to remove radar from his assigned vehicle. Cutting plastic strap loose w/pocket knife. Knife jabbed through right index finger
## 12985                                                                                                                            Attempting to replace a 4" pipe hanger from a ladder and fell about 4 feet to the floor and injured his right elbow and right shin bone
## 12986                                                                                                                                                                                                Attempting to reset circuit breaker and circuit breaker exploded ()
## 12987                                                                                                                                                                            Attempting to respond to code yellow & due to emergency feet slipped out from under him
## 12988                                                                                                                                                                                          Attempting to restrain (hold) an ofc & felt some thing pull in lower back
## 12989                                                                                                                                                                             Attempting to restrain a juvenile, the juvenile hit employee in the face with his fist
## 12990                                                                                                                                                                                         Attempting to restrain a student and bruised both knees and left upper arm
## 12991                                                                                                                                                                                Attempting to restrain aggressive pt when pt scratched EE on r upper l hand and arm
## 12992                                                                                           Attempting to restrain an individual in behavior, she went to grab her legs for the 3 person carry then stepped to walk with individual and fell onto her right side. ()
## 12993                                                                                                                                                       Attempting to restrain an inmate he received a scratch to upper left forearm near elbow by an unknown object
## 12994                                                                                                                                                                                Attempting to restrain an inmate his hand slipped & his thumb struck something hard
## 12995                                                                                                                                                                                                      Attempting to restrain an inmate refusing to follow orders ()
## 12996                                                                                                                      Attempting to restrain an inmate when another inmate came from behind and attempted to hit restrained inmate, instead hit c/o in back of head
## 12997                                                                                                                                                     Attempting to restrain an inmate who had assaultedanother inmate & in so doing allegedly injured left shoulder
## 12998                                                                                                                                                                                   Attempting to restrain an inmate, he became combative injuring right shoulder ()
## 12999                                                                                                                                                              Attempting to restrain an inmate. Blood exposure. Inmate had attempted suicide and he was exposed. ()
## 13000                                                                                                                                                                                    Attempting to restrain an inmate. He got blood on his pants and right wrist. ()
## 13001                                                                                                                            Attempting to restrain an irate student, when he punched her in right cheek & eye. EE continue to restrain student & hit knee on floor.
## 13002                                                                                                                                                                                 Attempting to restrain an out of control juvenile when he was kicked in the chest.
## 13003                                                                                                                                                          Attempting to restrain an out of control juvenile when the student slammed his forehead into EE's forhead
## 13004                                                                                                                                                                                      Attempting to restrain an unruly inmate when exposed to blood from the inmate
## 13005                                                                                                                                       Attempting to restrain cat a vet student lost control and cat escaped to floor. Attempting to capture cat when EE was bitten
## 13006                                                                                                                                                                                       Attempting to restrain combative inmate; lost footing and fell on right hand
## 13007                                                                                                                                                                                                            Attempting to restrain inmate and fell to the floor. ()
## 13008                                                                                                                                                                                                               Attempting to restrain inmate who was assaulting her
## 13009                                                                                                                                                                                                                Attempting to restrain inmate, landed on his rt arm
## 13010                                                                                                                                                                                        Attempting to restrain inmate, was head butted andscatched in the struggle.
## 13011                                                                                                                                                         Attempting to restrain inmate. Another officer sprayed pepper spray and it got into EE's eye & on his face
## 13012                                                                                                                        Attempting to restrain juvenile and escort him to his room, the juvenile fought back and caused staff and juvenile to fall on the floor. ()
## 13013                                                                                                                                                                        Attempting to restrain juvenile, putting on mechanical restraints, twisted lt arm and wrist
## 13014                                                                                                                                                                                      Attempting to restrain offender-they fell to flooree landed hard on left knee
## 13015                                                                                                                                                                                                                   Attempting to restrain patient, sorness in wrist
## 13016                                                                                                                                    Attempting to restrain resident & while holding him patient patient was hitting him in head. C/o pain in neck, head & shoulders
## 13017                                                                                                                                                                                                   Attempting to restrain resistive patient. Strain to right elbow.
## 13018                                                                                                                    Attempting to restrain several juveniles who had assaulted another juvenile. Scratch on left forearm back of neck through shoulder became stiff
## 13019                                                                                                                                                                                              Attempting to restrain student, student shoved andhit EE in the chest
## 13020                                                                                                                                                Attempting to restrain student-twisted l-ankle salary continuance employee tracy w/centralina Dr Furr- 704-633-6044
## 13021                                                                                                                                           Attempting to restrain subject he had arrested fordriving while impaired. Altercation took place--- EE broke right hand.
## 13022                                                                                                                                                                        Attempting to retrieve a box from the file cabinet and cut finger on file cabinet drawer ()
## 13023                                                        Attempting to retrieve another resident's tray from resident-resident attempted to slap emp. In face-emp. Twisted head away to avoid slap-2nd. Slap hit emp. On l jaw. - resulted in neck & back pain. ()nc
## 13024                                                                                                                                          Attempting to retrieve bag that had gotten hung infence and when he did he was cut on his middle finger on his right hand
## 13025                                                                                                                            Attempting to return inmates hands into cell through food passage opening, inmate pulled and twisted wrist into food passage opening ()
## 13026                                                                                                                                                                                  Attempting to return notebook to shelf 3 others fall. Moved quickly to catch them
## 13027                                                                                                                                                             Attempting to run resident up in bed and finger popped when hand was placed under resident/right thumb
## 13028                                                                                                                                                                                                Attempting to secure safety lock & lt 3rd fingure struck needle. ()
## 13029                                                                                                                                                       Attempting to separate and restrain two juveniles who were fighting, EE fell on the floor. Left knee strain.
## 13030                                                                                                                                                       Attempting to seperate 2 inmates in dorm h from fighting one of inmates grabbed her right arm. Bruise to arm
## 13031                                                                                                                                                                                                  Attempting to seperate 2 juveniles fighting rt elbow was strained
## 13032                                                                                                                                                                    Attempting to seperate two inmates while fighting and lost balance and fell on my left hand. ()
## 13033                                                                                                                                        Attempting to serve order for arrest when offenderstruck officer in face knocking officer's glasses to ground breaking them
## 13034                                                                                                                    Attempting to serve parole warrant. Defendant attempted to flee. Officer had to restrain him in process fell on floor, dragged into door frames
## 13035                                                                                                                          Attempting to serve probation violation warrant. While out on routine curfew checks. Tripped on back porch whice ascending & fell forward
## 13036                                                                                                                                                       Attempting to serve warrant on defendant when he resisted arrest and officer and defendant fell to pavement.
## 13037                                                                                                                                                                                   Attempting to set a panel in place, the load shifted & the EE strained his back.
## 13038                                                                                                                             Attempting to shower an inmate while handcuffing him, he attempted to pull the handcuffs inside his cell injuring officer's finger. ()
## 13039                                                                                                                                                                                                                Attempting to sit down fell out hit head on wall ()
## 13040                                                                                                                           Attempting to sit down in chair & it moved from under him. Lost his balance & fell. Striking his back & head on key box. Elbow hit floor
## 13041                                                                                                                                                 Attempting to sit down in chair. Chair gave way resulting in EE's fall. During fall right arm struck metal key box
## 13042                                                                                                                                                                                                  Attempting to sit down on a seat and it rolled out from under her
## 13043                                                                                                                                                                                               Attempting to sit down on a stool when stool flew out from under her
## 13044                                                                                                                                                                                        Attempting to sit down; chair rolled out from under EE and EE hit the floor
## 13045                                                                                                              Attempting to sit in a rolling desk chair. Came down to sit, aught the edge of the chair and it moved away from her causing her to fall. Hit her hand
## 13046                                                                                                                                                     Attempting to sit in chair in tower when chair completely broke & fell on stomach when 7 months & on her knees
## 13047                                                                                                                                                                                                  Attempting to sit in chair, when chair rolled from under employee
## 13048                                                                                                                                Attempting to sit in the chair, chair slide from under neath me, and I fell to the floor, injuring my left arm, and upper chest. ()
## 13049                                                                                                                                                   Attempting to sit on chair chair rolled out from under EE, fell on glutus maximus w/full weight back was injured
## 13050                                                                                                                                                                   Attempting to stand a grinder upright with another employee, he pulled a muscle in his hamstring
## 13051                                                                                                                                                                       Attempting to stand pivot a resident-resident pulled back and felt pull in lower l. Back. ()
## 13052                                                                                                                                                            Attempting to stand pivot resident into bed- stiffened-emp. Had to ease into chair-noted l. Arm sore ()
## 13053                                                                                                                                                                       Attempting to step down from top step & slipped & fell to floor striking back on bottom step
## 13054                                                                                                                                   Attempting to step on tailgate of pickup truck to throw trash bags in dumpster, from off of the truck he then hit his right shin
## 13055                                                                                                                                                                                            Attempting to stop a client with a behavior problem and fell on hand ()
## 13056                                                                                                                                                       Attempting to stop a fall from foot catching on floor where water seal crossed doorway, EE twistedleft knee.
## 13057                                                                                                              Attempting to stop a fleeing subject. EE dove for subject & missed. Hit face/lt knee on sidewalk & scraped rt hand. Lt knee/both wrists/rt hand/face.
## 13058                                                                                                                                                   Attempting to stop a fleeing violator running on foot in grassy & bushy field. Jumped ditch and injured his back
## 13059                                                                                                                          Attempting to stop a fleeing/escaping inmate. Afterpulling the inmate off the fence, fell or stepped into a hole twisting ankle and knee.
## 13060                                                                                                              Attempting to stop a vehicle when he was involved in a motor vehicle collision. Injuries to face & head area, soreness in neck & back, sore lt ankle.
## 13061                                                                                                                                                                                                Attempting to stop an employee from being assaulted by an inmate ()
## 13062                                                                                                                                                                                                             Attempting to stop clients from fighting each other ()
## 13063                                                                                                                                                  Attempting to stop patient from running out door patient grabbed neck cutting off air & hitting EE's hand on wall
## 13064                                                                                                                                                                                                         Attempting to stop pt from injuring self. Lower back pain.
## 13065                                                                                                                                                                Attempting to stop vehicle by motioning w/hands. Vehicle attempted to pass w/o stopping & struck EE
## 13066                                                                                                                                                                             Attempting to stop vehicle for dwi suspect and suspect's vehicle struck patrol vehicle
## 13067                                                                                                                                                        Attempting to straighten client's room, tripped over object on floor, pulled muscle in back of lower lt leg
## 13068                                                                                                                                            Attempting to strain a student when another student struck EE in the face with a clinched fist, on EE face and jaw area
## 13069                                                                                                                                                                                                            Attempting to subdue an aggressive patient & was kicked
## 13070                                                                                                                                Attempting to subdue an agressive inmate in use of force, EE states that the inmate apparently hit him on 2nd & 3rd finger rt hand.
## 13071                                                                                                                                                                                                Attempting to subdue an inmate and was pushed-- against fencing. ()
## 13072                                                                                                                                                                            Attempting to subdue an inmate, was punched several times in the face, head and body ()
## 13073                                                                                                                                                                                                      Attempting to subdue an irate inmate from assaulting staff ()
## 13074                                                                                                                     Attempting to subdue fleeing violator when subjectassaulted EE. During scuffle EE was kicked by violator in the right hand. Broken- right hand
## 13075                                                                                                                        Attempting to take a fleeing suspect into custody, while chasing suspect on foor, EE and suspect fellto ground, EE landed on his own rt arm
## 13076                                                                                                                                                      Attempting to take an inmate to floor & left side of face brushed wall causing small puncture to hisupper lip
## 13077                                                                                                                         Attempting to take client to bathroom, another client struck out causing client to be unstable, fell back on staff, both falling on floor.
## 13078                                                                                                                                                                                        Attempting to take picture at a crime scene, the strap poked her in the eye
## 13079                                                                                                                                                                Attempting to take resident to theraputic walk (which he lifted his feet severe pain felt rt elbow)
## 13080                                                                                                                                               Attempting to talk w/probationer. Prabationer panicked and pushed EE against refrigerator & thenran out of residence
## 13081                                                                                                                                                                                   Attempting to turn off outside water faucet w/ chisel & hammer struck left thumb
## 13082                                                                                                                                                                                          Attempting to turn onto I-85 when struck on right side by another vehicle
## 13083                                                                                                                                                                           Attempting to unarm and restrain an inmate and waspunched in the face and scraped r shin
## 13084                                                                                                                                         Attempting to uncap glass hybridization tube whose lid was very tight. Glass broke and frag- mented end cut his right hand
## 13085                                                                                                                                                              Attempting to unclog toilet in men's bathroom slipped on wet floor and used right wrist to break fall
## 13086                                                                                                                                         Attempting to unplug radio to go home, I bumped a ladder which fell into a weedeater & the weedeaterfell onto my face/eye.
## 13087                                                                                                             Attempting to verbally redirect pt. When pt lungedacross table & struck staff on left side of face. Also inj. Lt thumb in restraint of pt. Face/thumb.
## 13088                                                                                                                                                      Attempting to walk down steps of staff training house-#2 fell down two stairs trying to catch fall w\\rt-hand
## 13089                                                                                                                    Attemptingto move lever on lower back chair and attempted to pull chair back and when I did that, pulled something in lower part of my back. ()
## 13090                                                                                                                                                                                      Attemptng to calm patient when patient swung at hct stricking employee on arm
## 13091                                                                                                                                                                 Attended training for cpr and mats were present and she tripped over mat and fell on left knee. ()
## 13092                                                                                                    Attending a conference in arlington, va as part of employment. Walking on the sidewalk, stumbled, fell and hit the left side of head. Face cut and bleeding. ()
## 13093                                                                                                                                                        Attending a meeting - was attempting to sit in a chair; the chair hit employee in the middle of lower back.
## 13094                                                                                                                                                              Attending a officer survival school at wake tech. List injury as: right ankle inside of ankle bone ()
## 13095                                                                                           Attending annual in service training and performing crdt technique - demonstrating guard in and was trying to get the officer off of me when felt sharp pain in spine ()
## 13096                                                                                                                                                                                             Attending basic training was at the firing range shooting the shot gun
## 13097                                                                                                                               Attending board workshop as commissioner appointeetriped over cord causing fall & injury to back pelvis. Back, spianl column pelvis.
## 13098                                                                                                                                    Attending combative hypoglycemic inmate. While trying to get him to swallow glucose gel, he spit saliva and blood in my eye. ()
## 13099                                                                                                                                     Attending firearms training, during qualification, EE was kneeling down to get in a firing position and twisted his left knee.
## 13100                                                                                                                                                                                                          Attending in-service when felt a sharp pain in abdomen ()
## 13101                                                                                                                                                                Attending inservice training/weapons retention/bent wrist technique injured l wrist/arm/shoulder ()
## 13102                                                                                                                                  Attending joblink staffing at local esc, when leaving meeting, heel caught in edge of step losing balance and fell down stairs ()
## 13103                                                                                                                    Attending law enforcement officers memorial srvc walking across parking lot of chapel when EE passed out fell to ground striking head on pvment
## 13104                                                                                                                                Attending manatory firearms training, placed shot gun in position to fire it; impact was so severe bruised her right shoulder & arm
## 13105                                                                                                           Attending mandatory firearm class. While performingfoot slid out from under him & landed on his knee **credit of ttd 215. 73 needs to be taken from ppd*
## 13106                                                                                                                          Attending mandatory training for self-defense course. During one of the movement EE landed incorrectly on her right hand. Sprain rt hand.
## 13107                                                                                                                                                                                Attending meeting & stepped off curb in parking lot of meeting site & injured ankle
## 13108                                                                                                                                                        Attending new employee orientation. Scooted her chair under table resulting in laceration to her right knee
## 13109                                                                                                                                                                                        Attending office holiday party, off campus, tripped on step & fell to floor
## 13110                                                                                                                             Attending officer survival class, during a take down procedure officer stated he felt sharp pain on inside rt knee when thrown to mat.
## 13111                                                                                                                                                                                      Attending pert training. Jumped over a ditch, slipped and struck left knee ()
## 13112                                                                                Attending physical fitness instructor school at the north carolina justice academy west. While exercising in the gym, EE injured lower right back performing a burpee broad jump ()
## 13113                                                                                                                                Attending professional conference was on way out of hotel. Stepped off curb at end of hotel driveway. Tripped on pot hole on street
## 13114                                                                                                                                 Attending required firearms training, cleared a couple of malfunctions and possible loading shotgun rounds, pulled index finger ()
## 13115                                                                                                                                     Attending state ncflex siminar. While walking around hotel swimming pool area, gust of wind blew abrasive material into rt eye
## 13116                                                                                                                                                            Attending to inmates that were exposed to pepper spray; coughing, sore throat, difficulty swallowing ()
## 13117                                                                                                                               Attenpting to make a arrest subject engaged car into reverse and pinned officer underneath was drug down drive way appox. 15-20 feet
## 13118                                                                                                                                                                                                                 Attenting to inmate, inmate struck her in the face
## 13119                                                                                                                                                                             Attepmting to subdue an inmate, pulling inmate to floor, hit knee on concrete floor ()
## 13120                                                                                                                                                                             Attmept to lift legs of strugeling patient while back against wall, strain to low back
## 13121                                                                                                                                                                                              Atty-craig bryant (919)736-0408 fax 735-6453 **$40k auth at present**
## 13122                                                                                                                                                                Atupic dermatitis- allergic to thimoroson- worse at work- unc hospital- clears when not in hospital
## 13123                                                                                                                                                                                   Audio shows change in threshold reading since last tested one year ago. Hearing.
## 13124                                                                                                                 Audit of inventory in several campus buildings with prolonged repetitive motion, and counting by physically touching items. Continuous for 3 days.
## 13125                                                                                                                                                                                               Autistic child bit teacher while teacher was training other teachers
## 13126                                                                                                                           Auto accident - courier van was hit by another vehicle when the other vehicle made an illegal turn and collided with the courier van. ()
## 13127                                                                                                                                         Auto accident - employee was traveling west on hwy 24/27 and the other vehicle ran the stop sign and hit state vehicle. ()
## 13128                                                                                                                                                                                                                                          Auto accident - no injury
## 13129                                                                                                                 Auto accident EE driving state vehicle. EE going north other vehicle going south lost control. Broken nose, rt heel glass cuts, contusion & strain
## 13130                                                                                                                                    Auto accident in state vehicle that EE was drivingcollided with another vehicle at intersection- strain to left shoulder & neck
## 13131                                                                                                                                                                                                   Auto accident on the way to work resulting in multiple injuries.
## 13132                                                                                                                                                                                                    Auto accident scarring of pancreas and intestines head injuries
## 13133                                                                                                                                                                                                                    Auto accident while traveling to employer audit
## 13134                                                                                                                                                                                Auto accident- vehicle pulled into the path of the state owned car. Injured rt leg.
## 13135                                                                                                                                                                                                                                           Auto accident---fatality
## 13136                                                                                                                                                                                                   Auto accident--sturck by another vehicle strain to neck and back
## 13137                                                                                                                                                                                                                                            Auto accident-no injury
## 13138                                                                                                                                                                                                                                     Auto accident. Injured rt leg.
## 13139                                                                                                                                                         Auto accidnet - contusion of rt temporal skull, severe interanl bruising rt side, strain to neck and back.
## 13140                                                                                                                     Auto-accident- EE in traffic waiting on vehicle to make turn. EE hit in back and knocked into vehicle in front of him. Neck and back injuries.
## 13141                                                                                                                                    Automatic door closed, hitting EE in rt arm above wrist. Severe contusion rt forearm dorsal side, probally some muscle hematoma
## 13142                                                                                                                                                                                                                                             Automobile accident ()
## 13143                                                                                                                                                                                                 Automobile accident as EE crossed the street to work fractured leg
## 13144                                                                                                                                                                                        Automobile accident on the way to work causing head injury and ankle injury
## 13145                                                                                                                                                                                                      Automobile accident resulted in head, neck and back injuries.
## 13146                                                                                                                                                                                  Automobileaccident as described on reverse side. EE was in official work capacity
## 13147                                Autopsy evisceration & reached into the pelvic canal in order to remove the bladder. I felt a sharp prick and realized the patients staple had come out of his body and embedded in my thumb. Staple was pulled out with forceps ()
## 13148                                                                                                                                                                                           Avoided rear ending vehicle by swerving. Hit a vehicle in the median. ()
## 13149                                                                                                                                                                                                 Avulsion of penis, scrotum, testicles & perineum. Broken right arm
## 13150                                                                                                                                                                                Awkward movement during restraint of a patient. Pain felt in chest area afterwards.
## 13151                                                                                                                                                                                                                                                       Aww $768. 95
## 13152                                                                                                                                                                                                                  Ax ricocheted off wood and struck EE's left foot.
## 13153                                                                                                                                                      Ay to work on city bus when driver made and adruptstop and EE's left side hit wall between her and the driver
## 13154                                                                                                                                                                                                                                                               Back
## 13155                                                                                                                                                                                                                                             Back and left leg pain
## 13156                                                                                                                                                                                                                 Back and r shoulder painful after nvci training ()
## 13157                                                                                                                                               Back claim 10% ppd from Dr Tucci 8/23/7 iw wants 2nd opinion with center for scoliosis and spine surgery 252 7529794
## 13158                                                                                                                       Back claim denied 2/26/9 - picking up work manuals& computer case, noticed some slight lower back discomfort friday evening, reported monday
## 13159                                                                                                                                                                                 Back concrete steps/platform at rockingham co dss, fell when reaching top of steps
## 13160                                                                                                                                         Back door arlam sounded and EE left meeting to inquire about the alarm. EE slipped and fell on floor that was being mopped
## 13161                                                                                                                                                                                                        Back door of admin bldg came to on hip as enteringbuilding.
## 13162                                                                                                                                                                             Back gate on lower yard attempting to unlock gate the bar slipped and caught my finger
## 13163                                                                                                                                                     Back had been bothering EE b/c of all the lifting moving the grill and other equipment during courseof the day
## 13164                                                                                                                                                                                                                       Back hurt when lifting heavy car lift arm ()
## 13165                                                                                                                                                                   Back hurting from chair w/no thoracic support. Neckhurting from forward motion to write or type.
## 13166                                                                                                                                                                                                                                                        Back injury
## 13167                                                                                                             Back injury while doing a back bend in gym with students. When coming out of back bend a student rushed at me so I tried to hurry up and get up, pulli
## 13168                                                                                                                                                                                                                     Back jerked to one side while on roving patrol
## 13169                                                                                                                                                                                                        Back locked up after bending over sink at home to wash hair
## 13170                                                                                                                                                                                        Back of rt hand scatched during transfer of keys from one person to another
## 13171                                                                                                                             Back pain driving to wilson, n. C. Middle to lower right side pain during 3 hour trip to wilson and pain continued throughout the day.
## 13172                                                                                                                                                                                                        Back pain occurred while climbing in and out of bunk bed ()
## 13173                                                                                                                                                                                           Back pain-assisting to keep client from self injury and up off of floor.
## 13174                                                                                                                                                                                                     Back popped while assisting resident from chair. Injured back.
## 13175                                                                                                                                                                                                                      Back poppoed on left side while mopping floor
## 13176                                                                                                                                                                  Back recurrent injury from previous work comp, rt arm pain with repetitive typing, filing, daily.
## 13177                                                                                                                                                                                                         Back started hurting after lifting several resident files.
## 13178                                                                                                                                                                                                                                                        Back strain
## 13179                                                                                                                                                                                                                                                     Back strain ()
## 13180                                                                                                                                                                                                Back support on chair broke causing backward fall, landing on back.
## 13181                                                                                                                                                                                                          Back was injured during use of physical force w/an inmate
## 13182                                                                                                                                                                                              Back was injured when inmate pulled away from him, while in handcuffs
## 13183                                                                                                                                                                                        Back was strained during a combination of events occuring at this work site
## 13184                                                                                                                                                                                                                            Back, arm neck injuried on job cleaning
## 13185                                                                                                                                                                                       Back, neck and eye strain from work station being set up in awkward position
## 13186                                                                                                                                              Back.. No specific incident occured. I have workedwith my back giving me problems for months now & pain in unbearable
## 13187                                                                                                                                                                                      Back... Cleaning rooms & picked up headboard & pulled something in upper back
## 13188                                                                                                                                                                                Back... Employee was vacuuming with back pack on back and felt pain in his back. ()
## 13189                                                                                                                                                                                                              Back... Getting paper towels & tissue moved wrong way
## 13190                                                                                                                                                                                             Back... Pulling hose into dog pens apts-mri approved through 6/11/2009
## 13191                                                                                                                                                                                                                 Back... Trying to get obese patient onto stretcher
## 13192                                                                                                                                                                                                                 Backed elbow into 15 gauge needle held by a doctor
## 13193                                                                                                                                                                                                                     Backed into a door, while completing duties ()
## 13194                                                                                                                                                                                                               Backed into a piece of cut steel and puntured rt leg
## 13195                                                                                                                                                                                Backed into student causing him to hit back of ankle with hammer that he was using.
## 13196                                                                                                                                        Backed popped while pulling on an inmates leg during a cell extraction to which the inmate would not let go of the bars. ()
## 13197                                                                                                                                                                                                                        Backed up and fell over cart on lower back.
## 13198                                                                                                                                                                                                    Backed up and fell over seat that was mounted in the cell block
## 13199                                                                                                                                                                                        Backhoe hit pipe and knocked EE down on hot pipe that had just been welded.
## 13200                                                                                                                                                                 Backing backhoe & placing right finger near e prong of roaring river when ufo hit him in right eye
## 13201                                                                                                                 Backing down sloping siedwalk wet with leaves, feet slipped out from under,; pst control of hand truck, fell on abdomen, weight of fall on rt side
## 13202                                                                                                                                 Backing motor vehicle in high drug trafficking area in attempt to apprehend fleeing drug suspect vehicle skidded into utility pole
## 13203                                                                                                                                                        Backing out of a marked parking place when a vehicle came from EE's rt and ran into lt rear of EE's vehicle
## 13204                                                                                                                                                                                                                       Backing out of a room and fell over a buffer
## 13205                                                                                                                                                                                               Backing out of an elevator with a cart & fell on her low back/pelvis
## 13206                                                                                                                                       Backing out of prking space state truck came around parks truck & said he didn't see the back of truck- strain neck/shoulder
## 13207                                                                                                                                                                          Backing out of the room with floor buffer. Slipped and fell, landing on right shoulder ()
## 13208                                                                                                                                             Backing out property room w/2 bags inmate propertydoor closing & she fell backwards hitting head, back & elbow on wall
## 13209                                                                                                                            Backing tractor off hauling unit-tractor slid off ramps-2nd tractor turned on its rt side throwing EE against cage-rt shoulder-mid back
## 13210                                                                                                                                                                                          Backing truck at loading dock when pedal stuck and he backed into dock ()
## 13211                                                                                                                                             Backing up from t-1 tripped & fell down & hit my lower back. As I hit the floor my cuffs went rightinto my lower back.
## 13212                                                                                                                                                                                        Backing up trip over barrier rail and landed on right shoulder on concrete.
## 13213                                                                                                                                                                                                  Backing up write a citation and stepped into a hole turning ankle
## 13214                                                                                                                                                                                                                              Backpack blower hit shovel which fell
## 13215                                                                                                                                                                                                      Backpack spray leaked herbicide onto clothes & soaked to skin
## 13216                                                                                                                   Backsawing through metal tubing when completely sawed through tubing the motion caused EE to lean forward w/ left hand hitting metal tubing.. ..
## 13217                                                                                                                                                                                  Backyard duty going up step of steps and left knee gave away and began to hurt ()
## 13218                                                                                                                                                                                                                         Bacterial infection at site of vaccination
## 13219                                                                                                                              Bad air molded trapped air, and dust release during hvacs project led to sinus pressure /pain fatigue difficulty breathing headaches.
## 13220                                                                                                                                                                                                        Bad posture; repeated continuous computer use. Strain neck.
## 13221                             Baker was lifting boxes of copy paper off of a hand truck and placing the paper in the back of the moving truck. After lifting one of the boxes of paper onto the back of the moving truck he complained of pain in his lower back. ()
## 13222                                                                                                             Balancing a tire, using a computer tire balancer. When he picked up the tire to put it on the balancer, he twisted his back. Felt pain in back and fel
## 13223                                                                                                                     Banding birds using crochet hook to remove bands. Put crochet hook in pocket--forgot & put hand in pocket. Hook went into right middle finger.
## 13224                                                                                                                                                                                                          Banged knee against desk in front office of 117 king bldg
## 13225                                                                                                                                                                                 Banged l knee on metal support for work surface in office cubicle while collating.
## 13226                                                                                                                                                                                                                                     Banged right shin on ladder ()
## 13227                                                                                                                                                                                         Bar on lt of van popped while EE was trying to putback & hit EE's lt hand.
## 13228                                                                                                                                                                                            Barbara was exiting the bathroom, stumbled & fell on the tile floor. ()
## 13229     Barbara went into the albemarle building cafe to get a cup of ice. After filling her container, she turned to leave and the next thing she remembers she was on the floor, she was not sure how she got there, but felt shaky, so she sit there for a few.. ..
## 13230                                                                                                                                               Barke failure of farmers truc while assessing farmer's christmas tree led to truck stopping after hitting creekbank.
## 13231                                                                                                                                                                                                                         Barrell lid fell on rt wrist while packing
## 13232                                                                                                                                                Bartrug was in the back seat of work van when it struck the side of another vehicle in the parking lot @ hoke c. I.
## 13233                                                                                                                                                                                            Base runner collided with donald as he was moving to tag the runner out
## 13234                                                                                                                                         Based on Dr Sypher's report pre-existing conditionwas aggravated by tooth extractions & other physical demands of the job.
## 13235                                                                                                              Based on doctor's evaluation EE's injury was due to repetitive data entry & station configuration. Pain in lower lt & rt arms(forearms, wrist, hands)
## 13236    Based on report of employee and others present during and immediately after incident, employee was exiting door to circulation department when the door closed on the middle finger on the left hand, pinching off a small amount of the tip of finger flesh. (
## 13237                                                                                                                      Basement area flooding where copy machines were located open door to get help in moving copiers, fell on step lt side of back, hip & buttocks
## 13238                                                                                                                                                                              Basement flooding due to blocked drain-slipped & fell on wet floor-contusion left arm
## 13239                                                                                                                                                                           Basic office work entering data on computer and filing has caused pain in EE's rt wrist.
## 13240                                                                                                                                                                                                                                  Basic training performing crdt ()
## 13241                                                                                                                                                                                     Basketball hit EE in face during facility recreation period in university gym.
## 13242                                                                                                                                                                                                             Bat bit left hand while processing home # 828 665 9608
## 13243                                                                                                                                                                                                                                             Bat exposure in office
## 13244                                                                                                                                                                                                          Bathing & felt something like mosquito bite. Scratched it
## 13245                                                                                                                                              Bathing a pt, picked them up, later in the evening felt pain in pelvis (cramping) and low back - this EE is pregnant.
## 13246                                                                                                                                                                Bathing a resicent who was acting up on the bathing table. Employee struck his own hand on rail. ()
## 13247                                                                                                                                                                                                                                  Bathing a resident, pt aggressive
## 13248                                                                                                                                                                                                                            Bathing and repositioning individual ()
## 13249                                                                                                                                                                                                                    Bathing client and slipped on bathroom floor ()
## 13250                                                                                                                                            Bathing client on bed; repositioning client several times during care. Felt lower back pain upon arising from chair. ()
## 13251                                                                                                                                                                             Bathing client that became aggressive. Blocking hits staff noticed strain in neck area
## 13252                                                                                                                                Bathing client. Client started to slip off bathingtable. EE grabbed client to avoid client falling upper back rt side & rt shoulder
## 13253                                                                                                                            Bathing client; client went into behavior; tried to prevent client from falling, EE slipped on floor hurting right shoulder and hand ()
## 13254                                                                                                                                               Bathing client; turning with drawsheet; staff felt a pull in left hand from all fingers. Swelling in top of hand. ()
## 13255                                                                                                                                                                             Bathing clients - reposition a client w/ coworker EE felt mild pain in right shoulder.
## 13256                                                                                                                                          Bathing clients, transferring from shower chair towheelchair. After doing lifting & transferring forthe day, back injury.
## 13257                                                                                                                                                           Bathing individual, I slipped on the wet floor. I came down on my knees and hands. I injured my leftknee
## 13258                                                                                                                                             Bathing patient and patient started to fall. In process of making sure patient did not fall, employee injured his back
## 13259                                                                                                                                                                                                                         Bathing patient lower back started to hurt
## 13260                                                                                                                                                                                                      Bathing patient, patient became agitated & hit EE in left eye
## 13261                                                                                                                                                                                                                      Bathing patient-patient punched in r. Jaw. ()
## 13262                                                                                                                                                                                 Bathing patient-started to turn on flat tub and jammed l. Middle finger on tub. ()
## 13263                                                                                                                                                                                          Bathing patient. Patient grabbed lft hand scratching deeply below knuckle
## 13264                                                                                                                                                                                                                           Bathing patient. Patient started to fall
## 13265                                                                                                                                                                                  Bathing pt, finished, tried to pull pt back on stretcher, felt sharp pain in back
## 13266                                                                                                                                                                         Bathing pt, pt kicked EE in left knee after putting pt to bed hit same knee on bed railing
## 13267                                                                                                                                                                                  Bathing pt, pt was upset, pt sat on EE's l shoulder/neck area, back began hurting
## 13268                                                                                                                                                                                Bathing pt. Went to lean pt forward and slipped onsoapy floor and fell on his back.
## 13269                                                                                                                                                                                                         Bathing resident & resident hit EE in nose fracturing nose
## 13270                                                                                                                    Bathing resident (washing back)-resident on left side-resident jerked causing emp. Right hand to slip and resident rolled against left hand. ()
## 13271                                                                                                                                                                                              Bathing resident and resident very aggressive, pulled on EE left arm.
## 13272                                                                                                                                                                                                              Bathing resident and slipped and twisted rt leg- knee
## 13273                                                                                                                                 Bathing resident on high tub. After rolling res. Back & forth several times to complete task. EE noticed pain in right lower back.
## 13274                                                                                                                                             Bathing resident when became aggressive, kicking, slapping at her. Back & lower legs did not begin hurting until later
## 13275                                                                                                                                                                                       Bathing resident when turning resident over, felt pull in back and obth arm.
## 13276                                                                                                                                                                          Bathing resident, bent over tub to wash hair, went to stand up and felt back pull/pop. ()
## 13277                                                                                                 Bathing resident-attempted to get him to turn over onto his back and felt pop in back. No initial pain at first, but as continued to bathe pain began/worsened. ()
## 13278                                                                                                                                                                                                            Bathing resident-resistant-scratched l. Wist and hip ()
## 13279                                                                                                                                                                                              Bathing resident-rolled resident over-felt sharp pain in low back. ()
## 13280                                                                                                                                         Bathing resident-started to fall backwards into tub when stood up- attempted to prevent from falling-hurt r. Upper arm. ()
## 13281                                                                                                               Bathing resident-walked over to get an attend-turned and fell-due to standing water in the floor-hitting r. Ribs on railing and landing on r. Hip ()
## 13282                                                                                                                                                                                                                         Bathroom door came down on EE's right arm.
## 13283                                                                                                                                                                                          Bathroom door flew open striking EE in shoulder, propelling him backward.
## 13284                                                                                                                                                                                                                       Bathroom door slammed shut on EE's left hand
## 13285                                                                                                                                                                                              Bathroom door slammed shut on middle and pointer finger on left hand.
## 13286                                                                                                                    Baton training, fighting off instructor, shuffled to get away from him, right foot got caught on mat and fell backward, falling on my left arm.
## 13287                                                                                                                                                                                                               Baton training- struck in neck by another officer ()
## 13288                                                                                                                                              Baton training. Didn't know shoulder was hurt until that night and it started hurting real bad. Went to Dr. Next day.
## 13289                                                                                                                                                                          Bats flew into net EE used for reseach-att to remove the bats and was bitten on the hand.
## 13290                                                                                                                                                               Battery compartment exploded when officer attempted to start motor causing loss of hearing in rt ear
## 13291                                                                                                                                                                                     Batting at a softball game. Right knee dislocated. Iw cell number 919-656-3692
## 13292                                                                                                                                                                Bcot-mount escape technique-EE was thrown landing hard several times injuring rightchest/ribs@ spcc
## 13293                                                                                                                                                                                                      Beach outing in water. Knocked over by surf on right shoulder
## 13294                                                                                                                                                                                                 Bean juice was spilled on floor, EE slipped in it and twisted back
## 13295                                                                                                                                                                                                                 Bear-hugged by student & lifted. Pain & discomfort
## 13296                                                                                                                                                                                 Became aggressive with staff and scratched them when told he was going to work. ()
## 13297                                                                                                                                                                                     Became hoarse at work, cleared up at home, came to work became short of breath
## 13298                                                                                                                                                                                                            Became ill all of a sudden & felt dizzy and blacked out
## 13299                                                                                                                                                           Became light headed and dizzy started to get sick and hot after working in the kitchen for 30 minutes ()
## 13300                                                                                                                                                          Became light headed/dizzy/racing heart beat/numbness/tingling in extremeties while on routine foot patrol
## 13301                                                                                                                                             Became light headed; left ribs hurt; sat down or stooped down on the floor, blacked out and hit back of head on floor.
## 13302                                                                                                                                                                                                                       Became overheated and dizzy working in dorm.
## 13303                                                                                                                                                                                      Became overheated deplaying symtoms of heat stress while working on wildfire.
## 13304    Because the tongue of a trailer became lodged in the wheel well of a forklift, employee was trying to guide the forklift operator. He positioned himself between the trailer and shop door, trailer sifted and pinned employees leg between door and trailor. (
## 13305                                                                                                                                                                                          Beckoning for resident to come, had papers in hand, papers went in rt eye
## 13306                                                                                                                                                                                                                      Bed rail fell hitting EE on top of left foot.
## 13307                                                                                                                                                                                                  Bed rail fell on feet-fell backwards onto r. Hip and r. Wrist. ()
## 13308                                                                                                                                                                                              Bed railing toppled over onto employee's left foot causing injury. ()
## 13309                                                                                                                                           Bed scale leg protruding into walkway-scale brokenand leg would not move into closed position injured left index finger.
## 13310                                                                                                                  Bedding box fell off machine and splashed. Blower turned on dust hit top of eye, left. While adjusting bedding dispenser control eye. Left eye ()
## 13311                                                                                                                                                   Bedside table used broke and when attempting to repair the table it fell hitting her left knee causing bruise ()
## 13312                                                                                                                                                                                    Bedspread was on floor and EE slipped and fell injuring left shoulder and elbow
## 13313                                                                                                                                                                                  Bedspread was on floor, EE intagled her feet, she fell and twisted her left knee.
## 13314                                                                                                                                                                                   Bee crawled up in pant leg; stung just above ankle. List injury as: right leg ()
## 13315                                                                                                                                                                                                                  Bee flew up her dress and stung her on the lt hip
## 13316                                                                                                                                                   Bee nest was interrupted by employee working in field and he was stung multiple times. Had an allergic reaction.
## 13317                                                                                                                                                                                                                    Bee sting on right forearm while weedeating. ()
## 13318                                                                                                                                                                                                                                             Bee sting right arm ()
## 13319                                                                                                                                                                                                                                              Bee sting right elbow
## 13320                                                                                                                                                                                                                                               Bee sting to face ()
## 13321                                                                                                                                                                                                                                              Bee sting to left leg
## 13322                                                                                                                                                                                                                                         Bee sting to right forearm
## 13323                                                                                                                                                                                                                          Bee sting to rt arm while in linen closet
## 13324                                                                                                                                                                                                                                           Bee stung EE on left eye
## 13325                                                                                                                                                                                                          Bee stung EE on left forearm when exiting personalvehicle
## 13326                                                                                                                                                                                                                                           Bee stung EE on left leg
## 13327                                                                                                                                                                                                                                       Bee stung EE on rt shoulder.
## 13328                                                                                                                                                                                                        Bee stung employee in the l ear while digging sewer line ()
## 13329                                                                                                                                                                                          Bee stung injured while standing outside on break. Swelling to left wrist
## 13330                                                                                                                                             Been bothering me for about a week & a half, did nothing to actually injure my hand/wrist, pain with repetitive motion
## 13331                                                                                                                                                                                              Before entering bldg EE stepped on uneven sidewalktwisting her ankle.
## 13332                                                                                                                      Beforework EE bumped lt knee bruised little painful after reporting to work EE turned and attempted to stand to open door when it hit lt knee
## 13333                                                                                                                                                                              Began complaining of aching in hands, fingers curling in mornings, inability to grasp
## 13334                                                                                                                                                                         Began experiencing pain in rt shoulder, arm & wrist. Pain was greater when using computer.
## 13335                                                                                                                                                     Began feeling pain, burning and numbness in forearms and behind elbow while typing. Left and right lower arms.
## 13336                                                                                                                                                        Began hurting in right upper back and right arm about 7:00 pm on 7/16/03. Does not know how injury occurred
## 13337                                                                                                                                                                              Began to feel light headed and weak while emptyingtrash in bldg. Smelled strange odor
## 13338                                                                                                                                                                                                                                    Began to fell numbness in thumb
## 13339                                                                                                                                                           Began to move forward in chair, it tipped over and rolled from under employee, fell on left arm and hand
## 13340                                                                                                       Began to prepare client for transfer from wheelchair to mat. Grasped wrist to assist in 2 person lift; once transfer began felt sharp pain in lower back. ()
## 13341                                                                                                                                                                      Began to walk thru unit 1 yard gate, door started to close and I was hit by the gate door. ()
## 13342                                                                                                                                                                         Begin hurting on or about the conclusion of the anaconda course--rt ankle/achilles strain.
## 13343                                                                                                                                                                                              Beginning carpal tunnel. Left hand, tip of fingers numb and tingling.
## 13344                                                                                                               Beginning in early May 01, EE began having episodes of numbness in rt arm from shouldr to the tips of thumb to 3 fingers. Frequent when at computer.
## 13345                                                                                                                                                                                Beginning to re-enter the dt office and staff let go of door hitting me in mouth ()
## 13346                                                                                                                                                             Beginning to run after a violator, felt tearing sensation in arch of lt foot which caused intense pain
## 13347                                          Behind bldg. 400 while climbing hill to get to sidewalk Ms. Crump stepped to get on the sidewalk and her foot caught on the edge of the sidewalk she tripped and fell while bacing herself she injured her right hand. ()
## 13348                                                                                                                                                                                   Behind central control - restraining inmate and back hit central control door ()
## 13349                                                                                                                                                                            Being exposed to chemical 27yrs. Mold, truck fumes air borne parties, and extreme temp.
## 13350                                                                                                              Being graded on a one leg take down. When he fell to the mat his partner was being the take down wason officer ingram foot causing his knee to twist.
## 13351                                                                                                                                                                                                     Being handed tools/equip overhead, debris got into left eye ()
## 13352                 Being introduced to Ms. Wright, a new teacher, she was wearing strong perfume & withing 2 or 3 mins she had an allergic reaction experiencing wheezing, feeling nausea, dizzy, trouble breathing, throat & tongue swelling along with confusion ()
## 13353                                                                                                                                                                                                                   Being involved in use of force to control inmate
## 13354                                                                                                                                      Being relieved from control booth, stepping down stairs to bottom of booth, felt something snap in right bottom part of foot.
## 13355                                                                                                                                                       Being taught new technique in unarmed self defenseclass & her foot slipped & she fell down & bumped her head
## 13356                                                                                                                                                                     Being the inmate officer applied bent wrist take down. From pressure of technique and repeats.
## 13357                                                                                                                                                                                             Believed constant use of typewriter has caused carpal tunnel syndrome.
## 13358                                                                                                                                                 Belinda was walking out of the building and fell when she got to the road. She hurt her left knee and shoulder. ()
## 13359                                                                                                               Belt cover had been removed and fan turned off. Eereached for a grease gun with right hand and had rag in left hand. Rag got caught in belts pulling
## 13360                                                                                                                                                                           Belt tension handle hit employee in leg when engaging in pto switch (defective belt). ()
## 13361                                                                                                                Bench checking a motorola shp control station at work bench in troop e radio repair shop. Utilizingtest instrument EE hurt ears due to loud sirens.
## 13362                                                                                                                                                                                               Bend down to pick up hand bucket, turned wroong back started hurting
## 13363                                                                                                                                                                                                                     Bend over in flood-rise up pull muscle in back
## 13364                                                                                                                                                                                   Bend to check a bag of trash and a hypodermic needle stuck him in the right hand
## 13365                                                                                                                                                                                                                      Bending at waist to move small pump ls strain
## 13366                                                                                                                                                                                                                    Bending behind barricade felt pain in left knee
## 13367                                                                                                                                                            Bending brackerts for power supply and bracket broke. Hitting the pipe in the forehead and cutting head
## 13368                                                                                                                                                                                      Bending down & picking up roasting pan full of meat & pull muscle in her back
## 13369                                                                                                                                                                            Bending down during floor buffing & also bending down & picking up bucket full of water
## 13370                                                                                                                                                                                                     Bending down felt a burning sensation on lower rt side of back
## 13371                                                                                                                                                                                  Bending down in cage removing boxes and lid of cage fell and hit back of head. ()
## 13372                                                                                                                                                              Bending down putting patient on the transfer board with 5-6 other employees from various departments.
## 13373                                                                                                                                         Bending down to get items under on the shelf underthe counter. Can't determine time of injury or howmedically investigate.
## 13374                                                                                                                                                                                                                                 Bending down to get linen off cart
## 13375                                                                                                                                                                                                   Bending down to get papers, leaned up, hit nose & r eye on shelf
## 13376                                                                                                                                                                                       Bending down to ground to retrieve bullet casings from an uneven dirt ground
## 13377                                                                                                                                                                                            Bending down to move box of magazines, pulled box and then picked it up
## 13378                                                                                                                                                          Bending down to pick up a box of copy paper from other EE, and came back up, felt something pull in neck.
## 13379                                                                                                                                                                                            Bending down to pick up box of paper, felt some- thing pull in his back
## 13380                                                                                                                                                                                          Bending down to pick up cup, raised up and hit head on top of courier box
## 13381                                                                                                                                                                                                         Bending down to pick up keys and hit head on door hinge ()
## 13382                                                                                                                                                                                     Bending down to pick up something off floor & her chair flipped from under her
## 13383                                                                                                                                                                                   Bending down to put cage back, coming back up, felt pinch/sharp pain in back. ()
## 13384                                                                                                                                       Bending down to put paper towel in trash can. Straightening back up the rt side of her face struck the paper towel dispenser
## 13385                                                                                                                                                                                                             Bending down to turn on heater and hit head on pipe ()
## 13386                                                                                                                                                                  Bending down. Sliding water cooler to rear of truck & when stood up hit his head on support brace
## 13387                                                                                                                                                                                                                                Bending neck and head continuously.
## 13388                                                                                                                                    Bending over and getting up and down off the floor. Felt a twinge, went away two days later I could hardly lift my left leg. ()
## 13389                                                                                                                                                                                                                 Bending over and lifted tool box. L side rib cage.
## 13390                                                                                                                                                                                                     Bending over bed to pull patients pants up-pain in mid back ()
## 13391                                                                                                                                                                                       Bending over cleaning drawer, stood up and hit head on open cabinet door. ()
## 13392                                                                                                                                                                                  Bending over client when the client reached towards EE face and scratched EE's ()
## 13393                                                                                                                          Bending over filing at one point back did not feelright. After the day moved on began to hurt and by the end of the day could barely move
## 13394                                                                                                                                                                                               Bending over holding inmate russell's leg an officer fell on my back
## 13395                                                                                                                                                                       Bending over looking under desk and when EE stood up hit top of head on the tool cabinet. ()
## 13396                                                                                                                                                                                                                                        Bending over picking up box
## 13397                                                                                                                                                                                                                                   Bending over picking up paper ()
## 13398                                                                                                                                                                                                           Bending over pulling weeds; hurt lower back and rt foot.
## 13399                                                                                                                                                                                                                             Bending over student's desk in esl lab
## 13400                                                                                                                                                                                    Bending over to clean the toilet and sharp pain went through his hip, low back.
## 13401                                                                                                                                                                              Bending over to get some serving utensils when felt sharp pain in his lower back area
## 13402                                                                                                                                                            Bending over to get something out of tote and hit eraser tray with right side of face next to right eye
## 13403                                                                                                                                                                                     Bending over to help inmate, as she stood up her back hit the edge of the desk
## 13404                                                                                                                                                                                                        Bending over to lift table. Raised up hit head on steel bar
## 13405                                                                                                                                       Bending over to move something on the floor, went to stand back up, experienced shooting pain in right lower side of back ()
## 13406                                                                                                                                                                                           Bending over to open file cabinet and felt somethi-ng pull in lower back
## 13407                                                                                                                                                                                         Bending over to pick up 5 gal bucket and had sharp pain in lower back area
## 13408                                                                                                                                                                                                Bending over to pick up a bag of shredded paper, felt a muscle pull
## 13409                                                                                                                                                                                Bending over to pick up a bucket of mail, twisted or pulled something in lower back
## 13410                                                                                                                                                                                       Bending over to pick up a mop bucket. A big knot came up in lt side of back.
## 13411                                                                                                                                                                           Bending over to pick up a paper towel off the floor and I bumped my face on the desk. ()
## 13412                                                                                                                                                                   Bending over to pick up an ink pen which he had dropped, hit his head on corner of sick call box
## 13413                                                                                                                                                                                                         Bending over to pick up bed and moved wrong injuring back.
## 13414                                                                                                                                                                                          Bending over to pick up container of glue and pulled muscle in lower back
## 13415                                                                                                                                                                                                            Bending over to pick up key and pulled a muscle in back
## 13416                                                                                                                                                                                                              Bending over to pick up keys and pulled something. ()
## 13417                                                                                                                             Bending over to pick up mail that had fallen to floor located in control office stood up and hit head on hutch door that had come open
## 13418                                                                                                                                                                 Bending over to pick up paper towel off floor in ladies room, was hit by incoming door opening. ()
## 13419                                                                                                                                    Bending over to pick up rock used to simulate fence cut by tapping on fence. Got too close to razor ribbon wire & cut right arm
## 13420                                                                                                                                                                                                                   Bending over to pick up some straw off the floor
## 13421                                                                                                                                                                                                    Bending over to pick up work that fell to the floor. Stretching
## 13422                                                                                                                                                                                      Bending over to reach under the medicine cabinet pulled something in back. ()
## 13423                                                                                                                                                            Bending over to retrieve from 2-drawer file cabinet & chair tilted over causing EE to fall out of chair
## 13424                                                                                                                                                                  Bending over to unhook chain from around tree, a limb from the tree flipped across his right eye.
## 13425                                                                                                                                                                                                    Bending over to unhook wheelchair safety hook from floor of van
## 13426                                                                                                                                                                Bending over to unlock lock, struck his head on wire tie protruding from fence in center sally port
## 13427                                                                                                                   Bending over working on shut-off valves under a sink, 1 came loose and burst spraying water on floor & employee slipped & back hit against sink.
## 13428                                                                                                                                    Bending over. Consumer fell w/total weight onto staff's back. Reinjured injury to back incurred inauto accident earlier in week
## 13429                                                                                                                                                                                              Bending searching locker and sharp pain in low right side of back. ()
## 13430                                                                                                                                                                                                                  Bending to get item from drawer, strain low back.
## 13431                                                                                                                                                                     Bending to go under counter to get napkins & didn't realize her head was that close to counter
## 13432                                                                                                                                                                                                 Bending to look the vermer scale of steretox intrument, lower back
## 13433                                                                                                                                        Bending to move scott air pack w/right arm on the case. Arm had shot of pain went from neck to fingers & tingled w/numbness
## 13434                                                                                                                                                                                                      Bending to retrieve file, stood up with acute pain in back ()
## 13435                                                                                                                      Bending to stack boxes appox 10 units high, repetitive lifting motion for several hrs causted him toover exert himself and injured lower back
## 13436                                                                                                                                                                                                         Bending, lifting on 5/17... Didn't feel pain until 5/18 ()
## 13437                                                                                                                                                                                                   Bending, lifting, and pulling sandbox barriers cause back to pop
## 13438                                                                                                                                                                                      Bent down and turned head and was struck by student from behind neck and head
## 13439                                                                                Bent down from desk to pick up trash, as employee got up to sit down, chair rolled away and employee fell backwards and hit her head on the desk edge behind her (u-shaped desk) ()
## 13440                                                                                                                            Bent down on right knee to check inmate and felt right knee pop, got up and felt knee pop again, hurting did not stop until hours later
## 13441                                                                                                                             Bent down picking up something off the floor and when I came up the hand truck fell towards me when a box was removed by the inmate ()
## 13442                                                                                                                                                                      Bent down restocking book shelves, raised up and hit right hand side of forehead on shelf. ()
## 13443                                                                                                                                                          Bent down to floor to unpack supplies & felt sharppain on left buttocks area. Unable to stand up w/opain.
## 13444                                                                                                                                                                                                   Bent down to get soap from under counter and hurt lower-mid back
## 13445                                                                                                                                                                                            Bent down to lock brakes on wheelchair-patient hit/struck on r. Jaw. ()
## 13446                                                                                                                                                                                Bent down to pick up a bag of clothes, coming backup holding bag then neck "popped"
## 13447                                                                                                                                            Bent down to pick up a broom in the mop closet and heard a popin his lower back. Also felt a sharp pain in his back. ()
## 13448                                                                                                                                                                                                            Bent down to pick up child. Back caught & could notmove
## 13449                                                                                                                            Bent down to pick up jar lid on floor between wall& sink next to elevator in kitchen. Extinguisher fell off & hit back part of left leg
## 13450                                                                                                                                                                                                                       Bent down to pick up pan, when back went out
## 13451                                                                                                                                                                                                        Bent down to pick up paper off the floor and EE knee popped
## 13452                                                                                                                                                           Bent down to pick up stack of shovels. Contained 6 or 8 shovels. As he did so felt pop in his lower back
## 13453                                                                                                                                                                       Bent down to pick up trash caught right foot on shelter for golf cart and fell on right knee
## 13454                                                                                                                                                                  Bent down to pick up trash from floor - raised up - hit head corner of fire extinguisher cabinet.
## 13455                                                                                                                                                                                    Bent down to push door open. Right food slipped and I fell on my right knee. ()
## 13456                                                                                                                                                          Bent down to put 3 boxes on handcart, handle came forward & hit me on rgt side of face, (nose & undereye)
## 13457                                                                                                                               Bent down to put foot pedals on wheelchair, pt jumped up and put arms around EE's neck. EE unalbe to get loose from pt at that time.
## 13458                                                                                                                                                                                                           Bent down to raise resident's legs and felt pain in back
## 13459                                                                                                                                                                                                            Bent down to remove food from microwave hurt lower back
## 13460                                                                                                                                                                       Bent down to replace tube to drain bath, stood back up & caught left shoulder blade on lift.
## 13461                                                                                                                                                                                                                  Bent down to roll bed up and felt a pull in back.
## 13462                                                                                                                                                                                                      Bent down to search a locker and sharp pain went down back ()
## 13463                                                                                                                                       Bent down to take a leaking water out of a dog cage. As iw was bending, right foot skid backwards and knee popped inward. ()
## 13464                                                                                                                                             Bent down to tie her shoe while in female staff restroom. When she stood up she hit her forehead on paper towel holder
## 13465                                                                                                                                                        Bent down to unlock post office box to get the mail out then stood up and felt a pinch in neck and shoulder
## 13466                                                                                                                                                                                                 Bent down when raising up hit head on lock and hasp on building ()
## 13467                                                                                                                                                                                                  Bent down, picked up bag of property w/right hand & stood up w/it
## 13468                                                                                                                                                                                                           Bent finger back when subduing patient to escort to hall
## 13469                                                                                                                                                                                                 Bent left hand backward while picking up a heavy bag of recycling.
## 13470                                                                                                              Bent over & reached under wide shelf to retrieve an empty gas can. Stood up before clearing shelf & hit back of head, mouth slam shut breaking tooth.
## 13471                                                                                                                                                       Bent over and reached to pick up a tray on gettin gup I felt a aharp pain on my lt u pper back near the ribs
## 13472                                                                                                                                                                                                            Bent over at desk and sneezed while in that position ()
## 13473                                                                                                                                                                              Bent over cleaning toilet, coughed and sneezed, pain in right lower quadrant of back.
## 13474                                                                                                                                                                                                                          Bent over filing cabinet retrieving files
## 13475                                                                                                                      Bent over sitting on edge of chair pulling box from under computer table. Chair rolled out from under employee causing her to fall backwards.
## 13476                                                                                                                                                                                        Bent over to assist patient out of bed to stand pivot- pain in low back. ()
## 13477                                                                                                                                                                   Bent over to assist resident in getting dressed. EE felt a pull in mid lower back, and left leg.
## 13478                                                                                                                                                                                                              Bent over to clean tub-feet slipped causing back pain
## 13479                                                                                                                                                                             Bent over to file something under cabinet & when leaned up, head struck counter corner
## 13480                                                                                                              Bent over to get pan of food out of the warmer boxand EE's foot slipped on wet floor lost balance dropped pan and jerked to catch myself from falling
## 13481                                                                                                                               Bent over to get sheet pains from wire storage rack when large serving pan fell from top of rack onto her upper back & shoulder area
## 13482                                                                                                                                                                      Bent over to get something outof the desk and when he stood up he felt pain in his lower back
## 13483                                                                                                                                                          Bent over to help child with finger stuck between shelf and felt my back pull with pain in lower back. ()
## 13484                                                                                                                                                                                                 Bent over to lift box in counting inventory & feltpull in her back
## 13485                                                                                                                                                                                       Bent over to lift trailer tailgate and felt something move in her lower back
## 13486                                                                                                                                                               Bent over to move a plant pot, when she stretched out she felt a sharp pain to across her lower back
## 13487                                                                                                                                                                                           Bent over to pick trash up out of van felt pain inback and leg as walked
## 13488                                                                                                                                                                                      Bent over to pick up a magazine from the floor while doing a locker search ()
## 13489                                                                                                                                                                                                       Bent over to pick up box of snacks & hurt back while bending
## 13490                                                                                                                                                                                                                          Bent over to pick up box-injured low back
## 13491                                                                                                                                                                                        Bent over to pick up broom & dust pan and door handle caught me in the back
## 13492                                                                                                                                                                                        Bent over to pick up chair(approx 20lbs) & felt a sharp pain in lower back.
## 13493                                                                                                                                                                                                                         Bent over to pick up envelope. Knee popped
## 13494                                                                                                                                           Bent over to pick up expended brass on firing range & pain in back when stood up. Still having pain in back & right leg.
## 13495                                                                                                                                                                                          Bent over to pick up lt. Bunch instead of bending legs and pulled my back
## 13496                                                                                                                                                      Bent over to pick up mats after crdt and felt sharp pain through left shoulder blade and left side of neck ()
## 13497                                                                                                                                                                                                                    Bent over to pick up papers and bumped forehead
## 13498                                                                                                                            Bent over to pick up pen off floor, back spasmcausing staff to go backwards falling against door frame striking right side of forehead.
## 13499                                                                                                                                                                                                           Bent over to pick up printing job and hit head on shelf.
## 13500                                                                                                                                                                                          Bent over to pick up ribbon pack from green container and back locked up.
## 13501                                                                                                                                                Bent over to pick up scissors from ground heard pop in right knee. Extreme pain, could not bear weight on right leg
## 13502                                                                                                                                          Bent over to pick up something, thought she had hold of machine to steady herself and lost her balance, fell on the floor
## 13503                                                                                                                                                                                                      Bent over to pick up tool off of floor & felt a pull in back.
## 13504                                                                                                                                                                                    Bent over to pick up truck battery, he has pain inhis lower right side and back
## 13505                                                                                                                                                                                                      Bent over to pick up wash cloth and hit head on towel rack ()
## 13506                                                                                                                                                                               Bent over to pull file and metal tab insert hit forehead causing a gash on forehead.
## 13507                                                                                                                                                                                                         Bent over to put residents socks on and felt pain in back.
## 13508                                                                                                                                                                                                     Bent over to put shoes on and bumped head on corner of counter
## 13509                                                                                                                                                                   Bent over to unlock a latch at medical department and felt a pulling feeling in lower back area.
## 13510                                                                                                                                                                   Bent over to wipe legs of chair & got a sharp stabbing pain in right side of back above buttocks
## 13511                                                                                                                                                      Bent over to wipe up a spot in the floor and when she stood up her back went out and she was in a lot of pain
## 13512                                                                                                                                                             Bent over while doing a locker search, when sttod up back was hurting, right leg started going numb ()
## 13513                                                                                                                                                             Bent to help patient from bed and she kicked me twice once in the chest cavity and once in the abdomen
## 13514                                                                                                                                                                                              Bent to pick up cd which had fallen and hit head on corner of desk ()
## 13515                                                                                                                                                                      Bent under desk to retrieve is number on computer, bump her head and fell on her shoulder. ()
## 13516                                                                                                                                                            Bent underneath desk to disassemble it and hand touched broken glass on the floor which he did not see.
## 13517                                                                                                                                                    Bent wrist was being applied to her, her hand was placed behind her back to be handcuffed, felt a stabbing pain
## 13518                                                                                                                                            Betn over to pick up can of chicken oil with another employee. About 20 mins later felt back & right leg tighten up. ()
## 13519                                                                                                                     Between 0150 hours and 0450 hours EE fell from thethird floor window of brooks hall. EE forgot his keys and attempted to enter through window.
## 13520                                                                                                                                                                           Between 11pm and 6am employee was bitten in abdomen by a spider while in a-doom sleeping
## 13521                                                                                                               Between 3:50 & 4:00 pm delivering forms to another location (building) on campus. Walking, got to uneven pavement, tripped and fell on right knee ()
## 13522                                                                   Between 7/2/09 - 8/13/09 EE banded mourning doves. EE was repeatedly in contact with ticks and mosquitos during banding. On 8/15/09 EE became ill after heavy banding between 7/30/09 - 8/13/09.
## 13523                                                                                                                                                                                                                                  Bi lateral carpel tunnel syndrome
## 13524                                                                                                                                                                                             Bicycle accident as EE on way to mason farm reserve injured left hand.
## 13525                                                                                                                                                                                                                                   Bilateral carpal tunnel syndrome
## 13526                                                                                                                                                                                                       Bilateral carpal tunnel syndrome - wks as a telecommunicator
## 13527                                                                                                                                                                                                     Bilateral carpal tunnel syndrome from use of personal computer
## 13528                                                                                                                                                                    Bilateral cts typing on work processor, carpal tunnel syndrome developed over a period of time.
## 13529                                                                                                                                                                                                              Bilateral wrist and rt shoulder data entry and typing
## 13530                                                                             Bill joe parker was backing up getting cones out of road and said he didn't see cj in road. Tailgate hit employee, knocked him to the ground. Employee listed injury as lower back. ()
## 13531                                                                            Bill link was walking down a hall carrying a laptop, when he tripped and fell over a blue mat on the floor. He fell face first on the floor, striking the left side of his forehead. ()
## 13532                                                                                                                                                                                                Binder/notebook fell from the table onto the top of employee's foot
## 13533                                                                                                  Binding booklets. Repetitive motion of binding booklets. Continued motion of pulling down arm of binding machine to punch holes in booklets. Using right hand. ()
## 13534                                                                                                                                                                      Biological exposure while bleeding on infected move to the bacteria ceptospisa interrogms. ()
## 13535                                                                                                                                                                                                         Bird flapped wings and hit EE's left index finger. Sprain.
## 13536                                                                                                                                                                                                       Bird or fish matter got into eye causing bacteria infection.
## 13537                                                                                                                                                                                                                                         Bird scratched EE on face.
## 13538                                                                                                                                                                                                                                  Bit by a client on his right arm.
## 13539                                                                                                                                                                   Bit by a client while assisting him. EE went to urgent care and did not Miss Any time from work.
## 13540                                                                                                                                 Bit by a dog on side of right knee while conducting a home visit with a client's family. Juv. Court couns. Rt knee puncture wound.
## 13541                                                                                                                                                                                                                                    Bit by a patient on right wrist
## 13542                                                                                                                                                                                                                           Bit by a tick in his right groin region.
## 13543                                                                                                                                                                                                                                           Bit by aggressive cat ()
## 13544                                                                                                                                                                                                                                                  Bit by an unknown
## 13545                                                                                                                                                                                                                    Bit by client exhibiting aggressive behavior ()
## 13546                                                                                                                                                                                                                                            Bit by client on arm ()
## 13547                                                                                                                                                                                                       Bit by client on right wrist during a therapeutic restraint.
## 13548                                                                                                                                                                                                                                       Bit by hornets while working
## 13549                                                                                                                                                                                        Bit by inmate; alleges finger began itching w/redness after leaving room ()
## 13550                                                                                                                                                                                                                                    Bit by insect in l lower arm ()
## 13551                                                                                                                                                                                                                      Bit by patient during patient intervention ()
## 13552                                                                                                                                                                                                                                Bit by tick on left front thigh. ()
## 13553                                                                                                                                                                                                                             Bit by tick while instructing firearms
## 13554                                                                                                                                                                                                                        Bit by tick while working on irrigation. ()
## 13555                                                                                                                                                                                 Bit by venomous snake on right hand while checking butterfly containment units. ()
## 13556                                                                                                                                                            Bit in lowe leg by patas monkey while attempting to catch animal in a net to be kenneled & transported.
## 13557                                                                                                                                                                                                                                          Bit on arm by resident ()
## 13558                                                                                                                                                                                                                 Bit on foot by an insect while sitting at the desk
## 13559                                                                                                                                                                                                                                      Bit on hand by leashed dog ()
## 13560                                                                                                                                                                                                             Bit on left arm and clawed on right hand by a patient.
## 13561                                                                                                                                                                                                      Bit on left wrist x 2 by patient being placed in restraint ()
## 13562                                                                                                                                                                                Bit on right arm by inmate while attempting to remove inmate's personal property ()
## 13563                                                                                                                                                                                                                 Bit on right calf by patient during manual hold ()
## 13564                                                                                                                                                                 Bit on rt lower leg by spider or other insect which caused swelling and inflamtation at bite site.
## 13565                                                                                                                                                                                                          Bite from spider on left leg under knee while at work. ()
## 13566                                                                                                                                                                                                                              Bite from student during restraint ()
## 13567                                                                                                                                                             Bite occured during requested site visit for permit requirements for construction of pier and bulkhead
## 13568                                                                                                                                                                                                               Bite on back of neck while wrking on assorted duties
## 13569                                                                                                                                                                                                          Bite on left forearm while carrying brush ( trimmings) ()
## 13570                                                                                                                                                                                                                                                 Bite on left hand.
## 13571                                                                                                                                                                                                              Bite on right forearm by fire ant while pulling weeds
## 13572                                                                                                                                                                                                                   Bite on rt hand bumps popped up itching drainage
## 13573                                                                                                                                          Bite on the left leg, feeding sealions, one pulledee into the water, biting lt leg, rt arm, lt wristand inside of rt knee
## 13574                                                                                                                                                                                     Bite possibly from insect. While handling boxes containing materials for class
## 13575                                                                                                                                                                                                                                               Bite right upper arm
## 13576                                                                                                                                                                             Bite to both ankles from a dog bite and no date as to dog having rabies shots in years
## 13577                                                                                                                                                                                      Biten by tick while sampling forest fuels. Developed fever one week later. ()
## 13578                                                                                                                                                                                                                  Bitten by a bug under the desk at her workstation
## 13579                                                                                                                                                                                                                 Bitten by a dog while making a homeowner visit. ()
## 13580                                                                                                                                                                                                       Bitten by a dog while verifying a residence on a parole case
## 13581                                                                                                                                                                                     Bitten by a german shepard while restraining during treatment. Rt ring finger.
## 13582                                                                                                                                                                                                                             Bitten by a patient on her right hand.
## 13583                                                                                                                                                                                                           Bitten by a spider got very dizzy and had some nausea ()
## 13584                                                                                                                                                                                           Bitten by an insect on lower right leg causing infected area around bite
## 13585                                                                                                                                                                            Bitten by an insect when she opened the facility door at eastern region training center
## 13586                                                                                                                                                                                                                                       Bitten by black widow spider
## 13587                                                                                                                                                                                                                                                      Bitten by bug
## 13588                                                                                                                                                                                                           Bitten by bug on 3-4-96 while painting in v. R. Building
## 13589                                                                                                                                                                                                               Bitten by cat while performing treatment. Left hand.
## 13590                                                                                                                                                                                                                   Bitten by cat while restraining for iv catheter.
## 13591                                                                                                                                                                                                                           Bitten by fire ants on tower 6-right leg
## 13592                                                                                                                                  Bitten by fire ants while photographing outdoor concert in museum park. Ants crawled up pant leg and bit right leg and lower leg.
## 13593                                                                                                                                                                                                                                     Bitten by hiv positive patient
## 13594                                                                                                                                                                                                                                      Bitten by inmate on left hand
## 13595                                                                                                                                                                                                                                                   Bitten by insect
## 13596                                                                                                                                                                                                                                           Bitten by offender's dog
## 13597                                                                                                                                                                                                                      Bitten by paper mites and spiders from paper.
## 13598                                                                                                                                                                                                Bitten by patient on right shin area during patient intervention ()
## 13599                                                                                                                                                     Bitten by presumptive spider when reaching in to a deep cabinet. Bite became infected during next 24 hours. ()
## 13600                                                                                                                                                                                                                        Bitten by rat while removing cage from rack
## 13601                                                                                                                                                                                                                                Bitten by resident on right forearm
## 13602                                                                                                                                                                      Bitten by resident. Was prescribed an antibiotic and had an allergic reaction to the medicine
## 13603                                                                                                                                                                                                    Bitten by residnet on l index finger and scratched on l forearm
## 13604                                                                                                                                                                                                                                  Bitten by spider during her sleep
## 13605                                                                                                                                                                                                                                 Bitten by spider in the groin area
## 13606                                                                                                                                                                                Bitten by spider or other unknown creater while sleeping in assigned quarters ncja.
## 13607                                                                                                                                                                                                                              Bitten by students during restraints.
## 13608                                                                                                                                                                           Bitten on back of right leg by dog. Making home investigation on potential transfer case
## 13609                                                                                                                                                                            Bitten on left forearm and left hand when attempting to redirect an aggressive patient.
## 13610                                                                                                                                                                                                                       Bitten on left hand by an aggressive patient
## 13611                                                                                                                                                                     Bitten on right thumb during a manuel restraint after responding to response call on ward 542.
## 13612                                                                                                                                                                                                                            Bitten on right upper arm by a patient.
## 13613                                                                                                                                                                                                                  Bitten on rt side by ants while blowing sidewalks
## 13614                                                                                                                                       Bitten on the lower rt leg by an insect while he was working out in the loading dock area. Complained off itching and nausea
## 13615                                                                                                                                                                                                                                         Bitten on top of both feet
## 13616                                                                                                                                                                                                                                    Bitten on upper arm by a otter.
## 13617                                                                                                                                                                                        Bitten, spit upon, and hit while trying to restrain out of control juvenile
## 13618                                                                                                                                                                                                                     Bitten/stung by unknown insect on back of neck
## 13619                                                                                                                Bkwd roll over entry into water from dive support octopus regulator got caught on wall & snapped back shattering glass of mask. Abraison above eye.
## 13620                                                                                                                                                                                          Black bug bit on left wrist & scratched it, it then spread to both wrist.
## 13621                                                                                                                                                                                Black mold in office on the 4th floor of the buncombe county court house. Room 423.
## 13622                                                                                                                                                                                                                        Blackboard fell off track onto EE's hand ()
## 13623                                                                                                                                                                      Blacked and fell in hotel bathroom. Some bruising and soreness to ribs. *****denied clm******
## 13624                                                                                                                                                                                                                       Blade detached from fan and sliced off nose.
## 13625                                                                                                                                                                                             Blade slipped while skinning pig, cut finger on left hand. Forefinger.
## 13626                                                                                                                                                                                                 Blair fell from a distance and landed on feet compressing back. ()
## 13627                                                                                                                                                      Bldg has mold in it inside, also under renovation including abestos removal wih alot of dust being blown out.
## 13628                                                                                                                                                                         Bldg having renovations done and as a result dust particles in the air irritated EE's eye.
## 13629                                                                                                                                                                                                Bldg restroom-using facility door stall did not completly latch. ()
## 13630                                                                                                                    Bldg srv tech: employee was stripping the floor and went around a corner and slipped and fell on the wet floor injuring his right arm/shld&hip.
## 13631                                                                                                                                                                                         Bleach fumes was very strong when she opened the van doors firday morning.
## 13632                                                                                                                                                                      Bleach was being used by another employee and caused trouble breathing, red eyes, sore throat
## 13633                                                                                                                                                                                                                                     Bleeding hogs was hit one fell
## 13634                                                                                                                               Blet student was attempting to arrest EE and EE hit head on floor/teaching/evaluating. Traumatic head injury, loss of consciousness.
## 13635                                                                                                                                                                         Block of ice fell on foot while doing ice carving for board of trustee dinner. Right foot.
## 13636                                                                                                                                                                          Blocked a chair swung by a patient with left arm-also hit by patient's closed fist on arm
## 13637                                                                                                                                                                                                  Blocked chair from client that he was trying to hit staff with ()
## 13638                                                                                                                                                    Blocked ears, during a scientific dive for inspection. Trauma inner ear--water ruptured capillaries. Right ear.
## 13639                                                                                                                                                               Blocked hit by resident x 2-resident grabbed left hand and bent ring, middle and index fingers back.
## 13640                                                                                                                                                                                                   Blocked individual from butting his head on wall with lt hand ()
## 13641                                                                                                                                                                                                Blocked punch from pt, put pt in wrap, r arm locked & sharp pain ()
## 13642                                                                                                                                                                               Blocked punch of patient and manually restrained rt shoulder blade up into neck area
## 13643                                                                                                                                                                                                                                   Blocked sib client aggression ()
## 13644                                                                                                                                                                                   Blocking door preventing patient from leaving the ward-right arm caught in door.
## 13645                                                                                                                                                                                                       Blocking kick from client & in process twisted herright knee
## 13646                                                                                                             Blocking one lane of traffic with patrol car. Another car failed to move over struck EE car while hewas still in it. Strain neck, stress rear deltoid.
## 13647                                                                                                                                                                           Blocking pt from hitting another pt., employee landed in chair and fell on right knee ()
## 13648                                                                                                                          Blocking resident from hurting himself and/or others while at hostpial from testing and felt pull in rt shoulder (at back shoulder blade)
## 13649                                                                                                                                                                                               Blood clot in left leg diagnosed, 2nd clot found in right leg later.
## 13650                                                                                                                                                                                       Blood clots that resulted from trauma on the job. Loss of vision in left eye
## 13651                                                                                                                                                                                                                                   Blood exposure on back of shirt.
## 13652                                                                                                                                                                                                                          Blood exposure while performing cpr, eyes
## 13653                                                                                                                                                          Blood from one of the inmates eye go onto cuts on EE's arms. Attempting to stop a fight between 2 inmates
## 13654                                                                                                                                                                                                                    Blood from patient sprayed into EE's face/mouth
## 13655                                                                                                                                                                                              Blood in eye during liver transplant. Was wearing protective eye wear
## 13656                                                                                                                                                                                  Blood on back of right hand breaking up fight in dorm. Received blood on clothing
## 13657                                                                                                                                                                            Blood on hands & clothing received when respondingto alarm. Escorting inmate from scene
## 13658                                                                                                                                                                                                 Blood splashed in EE's eye when completing radiological procedure.
## 13659                                                                                                                                                                                             Blood splatter from trauma patient during emergency assist on left arm
## 13660                                                                                                                                                                        Blood vessel in right eye burst, employee was not engaged in any activity at time of injury
## 13661                                                                                                                                                                                              Blower fell down from engine room escape hatch and hit tommy's leg ()
## 13662                                                                                                                                                      Blowing bleachers using backpack blower, backpack shifted causing EE to step & stumble. He twisted his ankle.
## 13663                                                                                                                                                                                             Blowing debris with backpack, tripped over root and turned right ankle
## 13664                                                                                                                                                           Blowing debris with blower when a projectile from a passing lawnmower hit him in the calf of his rt leg.
## 13665                                                                                                                                                                                                           Blowing grass and dirt from parking lot; got in left eye
## 13666                                                                                                                                                                                                     Blowing leaves and slipped off curb and twisted right ankle ()
## 13667                                                                                                                                                                                                                   Blowing leaves at loading and sand got in eye ()
## 13668                                                                                                                                                                                                       Blowing leaves on wet ground fell down the side of a hill ()
## 13669                                                                                                                                              Blowing leaves with backpack blower, wind changed direction and debris got in his right eye behind safety glasses. ()
## 13670                                                                                                                                                                                                                 Blowing off rain shelf when elbow hit next-lite ()
## 13671                                                                                                                                                                                                                                Blowing on frame, trash in left eye
## 13672                                                                                                                                                                                                             Blue unit sgt. Responding to a code blue in the gym ()
## 13673                                                                                                                                                                                                                                    Blunt trauma to rt hand & wrist
## 13674                                                                                                                                                                                                          Blurred vision, light sensitivity, little drainageof eyes
## 13675                                                                                                                                                                                                                                            Board fell on EE's hand
## 13676                                                                                                                                                                                       Board on floating dock was being removed it slipped and nail cut his rt hand
## 13677                                                                                                                            Board rotated in crosscut operation, trapping fingertip between board and fence causing broken finger tip and cut requiring sutures. ()
## 13678                                                                                                                                                                  Board slipped on a sander and board was jerked from hand and finger was caught on sanding belt ()
## 13679                                                                                                                                                              Boarding elevator when door closed. Retract mechanism did not retract door & door closed on EE's arm.
## 13680                                                                                                                                                                                                               Boat hit wave and hauled in way that twisted my neck
## 13681                                                                                                                                                                                   Boating across area. Trimming branch & tree limbs a branch struck him in the eye
## 13682                                                                                                                                                                                             Bobby fleming was picking up a garden sprayer whenhe slipped and fell.
## 13683                                                                                                                                                                   Bobby was tightening up bolts on the ash line and the wrench slipped and hit him in the mouth ()
## 13684                                                                                                                                                                                             Body systems... Allergic reaction to n. Z rabbit when handling animals
## 13685                                                                                                                                                                                                                           Body systems... Exposure to patient h1n1
## 13686                                                                                                                                                           Body systems... Sm chemical hood in rm 414 mary ellen jones was not properly operating exposure tovapors
## 13687                                                                                                                                                                                                                                 Body systems... Smell from patient
## 13688                                                                                                                                                                                      Body... Hood was not appropriately working exposure to xyline and formaldhyde
## 13689                                                                                                                                                                  Boil like lesion on rt middle finger that EE relates to chemical (dip-it) used in dishroom water.
## 13690                                                                                                                                                                                                                            Book fell from 6' bookshlf onto EE head
## 13691                                                                                                                                                                                                                                      Book shelf fell and struck EE
## 13692                                        Bookcase being moved on a cart by workers from another agency fell off the cart and struck EE on her left hand and thumb. EE states thumb hurt badly, but only seemed to be bruised. She did not seek medical treatment. ()
## 13693                                                                                                                                                            Bookcase fell and struck employee on back of left leg **pa bruce jackson**f18 filed.. Ag: stacey phipps
## 13694                                                                                                                                                                                    Books of books fell down in the back of my head rt side of my face arm and back
## 13695                                                                                                                                                                  Boot got caught on raised concrete on sidewalk between chapel and operations and employee fell ()
## 13696                                                                                                                                                                                                        Boot got caught on uneven portion of sidewalk causing fall.
## 13697                                                                                                                              Botanical garden employee reports to ueohc for an insect bite. A tick was discovered and removed. A small rash has since developed ()
## 13698                                                                                                                                                                                                          Both hands and wrist stay numb, causing great discomfort.
## 13699                                                                                                                                                             Both of EE's feet slipped on ice while she was walking down glazed bank to car after comlpeting shift.
## 13700                                                                                                                 Both res and staff were standing while staff cleaned consumer to change diaper, res lost balance and staff was holding res up to keep from falling
## 13701                                                                                                                                                                                                                                     Both rt & lft inner wrist area
## 13702                                                                                                                                                                                                        Both wrists- aggravated by continual use of computkeyboard.
## 13703                                                                                                                                                                                                  Bottle of bleach fell on floor and splashed up into EE's left eye
## 13704                                                                                                                                                                                                                  Bottle of bleach splashed into employee left eye.
## 13705                                                                                                                                            Bottle was on a shelf, caught in wires falling down, cap came off and chemical splashed into botheyes and burn on face.
## 13706                                                                                                                                                               Bottom drawer of 2 drawer file cabinet was pulled out for enough to caused cabinet to tip over on EE
## 13707                                                                                              Bottom of stairs near exit door, shoe came from under her and shifted to the side. Felt instantly bad pain. It was raining at the time of accident. Sprained ankle ()
## 13708                                                                                                                                                                                                                      Bottom shelf collapsed hitting EE's right arm
## 13709                                                                                                                                                                                                             Bowling ball slipped from ramp and hit EE on left knee
## 13710                                                                                                                                                                                                                             Box cutter blade slipped and cut thumb
## 13711                                                                                                                                                                                                                    Box cutter slipped & cut left middle finger tip
## 13712                                                                                                                                                           Box cutter slipped while removing cable ties from a wire harness in a cpu, cutting the l index finger ()
## 13713                                                                                                                                                                   Box fell from top shelf, hit EE in head and hand, finger dislocated, knot on head, glasses broke
## 13714                                                                                                                                                                                                                 Box fell on her right foot, affecting her ankle ()
## 13715                                                                                                                                                                                                                                               Box fell on shoulder
## 13716                                                                                                                                                                                                                         Box fell on shoulder when ladder was moved
## 13717                                                                                                                                                                                                        Box of cans on cart, cans fell on top of EE's right foot ()
## 13718                                                                                                                                                                                                    Box of needles fell to floor, EE felt 3 sharp pricks on rt foot
## 13719                                                                                                                                                                      Box of yarn fell on floor /tryng to stand upright while liftng the box had pain in lower back
## 13720                                                                                                                                                                                                                         Box slipped from cart, fell on EE's finger
## 13721                                                                                                                                   Box slipped out of hands while attempting to move it off the counter. Tried to catch the box, heard "pop" in elbow of right arm.
## 13722                       Boxes of copy paper were stacked about 4 high to be delivered to different depts. Reached up to slide top box down and weight of box made same slide off stack. Did not actually catch box but weight of it pulled muscles in lower back. ()
## 13723                                                                                                                              Boxes that were to be disposed in hallway next to employee's doorway. Not aware of boxes and when exiting doorway, fell over boxes ()
## 13724                                                                                                                                                             Boxing as part of law enforcement defensive tactics & was hit in left shoulder causing shoulder strain
## 13725                                                                                                                                                                                                        Boxing up bio hazard & person helping made it splash on arm
## 13726                                                                                                                                                                                                                          Bracing self against wall; fractured arm.
## 13727                                                                                                                                                                  Brakes failed on vehicle causing collison w/ dumpster. EE was operating vehicle as driver of same
## 13728                                                                                                                                                                                    Brakes gave out on car and EE ran into car in front of her. Lt shoulder strain.
## 13729                                                                                                                                                                       Brakes locked on bike causing EE to fall and bruised left knee and elbow and sprain rt wrist
## 13730                                                                                                                                                                                               Braking up a fight between two juveniles, he was hit in the left jaw
## 13731                                                                                                                                                         Branch fell out of tree & struck EE in back of neck. EE was walking from building to truck on state campus
## 13732                                                                                                                                                                                                                  Break out occurred while sitting in lobby area ()
## 13733                                                                                                                                       Break room preparing lunch, left and returned, foot slipped out from under employee, some type of spilled liquid on floor ()
## 13734                                                                                                                                                                                              Breakfalling and foot got caught between mates and his knee popped ()
## 13735                                                                                                                                                                   Breaking a metopialoc xl tablet with hands & fingers, tablet would not break. Sprain right hand.
## 13736                                                                                                                 Breaking concrete out from under a pipe support. Drilled holes in concrete and was using hammer/chisel to break concrete. Small cut on left leg ()
## 13737                                                                         Breaking down a folding table in the board room and slid his left foot under the table to ease it to the ground and the foot became pinched between the side of the table and the floor ()
## 13738                                                                                                                                                  Breaking down boxes after putting away supplies; using scissors to cut tape and scissors slipped and cut thumb ()
## 13739                                                                   Breaking down boxes, putting up supplies; stepped back on a piece of paper and fell hitting buttocks on the floor; pain goes up back. Put arm back to keep from falling back on cement floor. ()
## 13740                                                                                                                                                          Breaking down lattire material. A staple was exposed and stabbed through fingernail of left index finger.
## 13741                                                                                                                                                                                                               Breaking hole in wall, piece of sheet rock broke. ()
## 13742                                                                                                                                                                                                                   Breaking out wall & hit left hand with hammer ()
## 13743                                                                                                                                                            Breaking up 4 inmates fighting. Inmate kicked him in ribs after having stopped fighting w/other inmates
## 13744                                                                                                                                                                                                               Breaking up a fight and gaining control of inmate ()
## 13745                                                                                                                                                                                                         Breaking up a fight betweeen inmates and hit left elbow ()
## 13746                                                                                                                                                                                                     Breaking up a fight between 2 juveniles and fell on right knee
## 13747                                                                                                                                                                     Breaking up a fight between 2 juveniles was struck in the head around the temple and cheekbone
## 13748                                                                                                                                                                            Breaking up a fight between 2 juveniles when kicked in her adbomen and lower right side
## 13749                                                                                                                                                                             Breaking up a fight between 2 juveniles, rt hand scratched and post exposure to blood.
## 13750                                                                                                                                                             Breaking up a fight between 2 patients, when trying to pull patient off, stumbled into a bathroom sink
## 13751                                                                                                                                                                                                                             Breaking up a fight between 2 students
## 13752                                                                                                                                                     Breaking up a fight between 2 students. In doing so muscles in back began to hurt. Injured upper & lower back.
## 13753                                                                                                                                                                    Breaking up a fight between inmates. Got their blood on his arm. Was blood tested by doctor. ()
## 13754                                                                                                              Breaking up a fight between three inmates when shewas contaminated by blood to palm of both hands. Quick action taken to help inmate who was bleeding
## 13755                                                                                                                   Breaking up a fight between to juveniles. Had to take them to the floor to separate them. Causing EE to fall on rt side. Low back & rt shoulder.
## 13756                                                                                                                                    Breaking up a fight between two deaf children, a high school boy & girl weighing approx 220lbs eachee re-injured left shoulder.
## 13757                                                                                                                                                                                                                         Breaking up a fight between two inmates ()
## 13758                                                                                                                                                                    Breaking up a fight between two inmates and officer stood between the two injuring his back. ()
## 13759                                                                                                                                                                                                          Breaking up a fight between two inmates, & one wasbloody.
## 13760                                                                                                                                                                   Breaking up a fight between two inmates, one inmate snatched away, she hurt her left shoulder ()
## 13761                                                                                                                                                Breaking up a fight between two inmates, while on the floor with the inmates kicked in the right hand by the inmate
## 13762                                                                                                                                                            Breaking up a fight btwn 2 inmates. As he grabbed the inmate he fell against a wall injuring his rt hip
## 13763                                                                                                                                 Breaking up a fight holding a pt. As he was tryingto get away from staff. EE's fingers got jammed when pt. Was trying to pull away
## 13764                                                                                                                                                                                               Breaking up a fight in c dorm, fell on a table hurting right knee ()
## 13765                                                                                                                                                                                                                         Breaking up a fight restraining inmates ()
## 13766                                                                                                                                                                                                   Breaking up a fight right knee hit floor, supervising inmates ()
## 13767                                                                                                                                                               Breaking up a fight slipped and fell hitting right arm and elbow on edge of stainless steal table ()
## 13768                                                                                                                                                                                                      Breaking up a fight, back and midle finger on rt hand injured
## 13769                                                                                                                                                                                    Breaking up a fight, pulling inmates apart was scratch was exposed to blood. ()
## 13770                                                                                                                                                                                     Breaking up a fight, separating two inmates from each other & got blood on him
## 13771                                                                                                                                          Breaking up a riot and responding to call for help from staff, employee was assulated by juveniles by jumping on his back
## 13772                                                                                                                                                                              Breaking up altercation between students, he injured pinky & ring finger on left hand
## 13773                                                                                                                    Breaking up an altercation b/t inmates ine inmate had a large laceration on his lt arm and was bleeding profusely I scraped my forearm slightly
## 13774                                                                                                                               Breaking up an altercation between residents and was pushed against the wall, hitting hand. **10-6-05- rec'd e-mail confirming aww**
## 13775                                                                                                                                                              Breaking up an altercation between students, EE fell to floor hitting his right elbow on concrete. ()
## 13776                                                                                                                                                                                                           Breaking up concrete walkway-fell -landed on r. Knee. ()
## 13777                                                                                                                                                                                                                                                  Breaking up fight
## 13778                                                                                                                                                                                                                  Breaking up fight & was accidentally hit in mouth
## 13779                                                                                                                                                                               Breaking up fight and was struck in right eye with pepper spray and inmates hand. ()
## 13780                                                                                                                                                                                       Breaking up fight b/t two inmaes and hit on bench.. Lt 2nd & 3rd fingers. ..
## 13781                                                                                                                                              Breaking up fight b/t two inmates in dining hall one inmate had severe cut on his lt arm and splattered blood on body
## 13782                                                                                                                        Breaking up fight between 2 inmates. In process of separating inmates when inmate's head came downon top of EE's breaking skin on left hand
## 13783                                                                                                                                                                                      Breaking up fight between 2 pts, one of the pt hit EE on left side of face ()
## 13784                                                                                                                                                                                      Breaking up fight between inmates. One of inmates hit him w/his fist in mouth
## 13785                                                                                                                                                                                    Breaking up fight between patients, fell to floor with patient on top of staff.
## 13786                                                                                                                                                                                       Breaking up fight between two inmates & got blood on hands, arms, & clothes.
## 13787                                                                                                                                                  Breaking up fight between two inmates, one was bleeding from the head, inmate's blood got on EE's lt hand and arm
## 13788                                                                                                                      Breaking up fight between two inmates. Came in contact with blood borne pathogens while controlling inmates that were involved in a fight. ()
## 13789                                                                                                                                                                    Breaking up fight between two students and was punched in face/head stanley melvin 252 830 6590
## 13790                                                                                                                             Breaking up fight between two students when one student fell causing student's shoulder or head tohit teacher's ribs under his rt arm.
## 13791                                                                                                                                                                        Breaking up fight in dayroom, I was pushed against shower door hurting my elbow and arm. ()
## 13792                                                                                                                                                                                                                                Breaking up fight in dining hall ()
## 13793                                                                                                                                                                                    Breaking up fight in falcon unit in dorm when kicked in left thigh by an inmate
## 13794                                                                                                                                                                   Breaking up fight seperating two inmates from eachother & got blood on his hands, arms & clothes
## 13795                                                                                                                                                 Breaking up fight w/clients when EE pulled one client to separate them. EE's left elbow slipped and hit door frame
## 13796                                                                                                                        Breaking up fight when one of inmates began assaulting him. Several punches to face. Small cut to rt eyelid and lower lip, glasses damaged.
## 13797                                                                                                                                                  Breaking up fight, separating combatants EE was exposed to inmates blood on his left hand and down his left wrist
## 13798                                                                                                                                                                                      Breaking up fight, separating four inmates from each other & got blood on him
## 13799                                                                                                                                                                                       Breaking up fight, separating two inmates from each other & got blood on him
## 13800                                                                                                                                                                        Breaking up hardened sodium hydroxide with ice pick. Accidentally stuck it in the left hand
## 13801                                                                                                                                                                                                   Breaking up patients fighting---fell to floor striking left knee
## 13802                                                                                                                                                                                         Breathed pepper spray and floor stripper while working as floor officer ()
## 13803                                                                                                                                                                      Breathing difficulty, burning rash on face, sleeping difficulty due to exposure to chemicals.
## 13804                                                                                                                                                                Breathing in office and hallway while doing processing on a personal computer and other officework.
## 13805                                                                                                                                                                                                    Breathing problems & chest pains when using cleaning chemicals.
## 13806                                                                                                                                                                                                                                              Breathing problems ()
## 13807                                                                                                                                                Breathing problems developed from mold in work area due to construction water being circulated through steam lines.
## 13808                                                               Brenda slipped over computer wires on the floor. She fell, hitting her head and nose. Her nose bled, swelled, and dark circles formed under her eyes. After a short time, she said she felt fine. ()
## 13809                                                                                                                                                                                               Brickhouse missed the 1st step and fell down the other two steps. ()
## 13810                                                                                                                                Bringing an agressive juvenile to floor causing the juvenile & other staff member to fall on his knee also jammed thumb into floor.
## 13811                                                                                                                                                     Bringing an inmate to the holden cage for a cooling down period. Placing inmate on floor who was combative. ()
## 13812                                                                                                              Bringing boxes of files into bldg on cart; when cart hit concrete crack, cart tumbled. She caught it and bungee cord slipped off box and hit her eye.
## 13813                                                                                                                                                                                    Bringing chair into nursing area when hct jumped into chair injuring EE's back.
## 13814                                                                                                                                                                                Bringing client back from classroom in wheelchair, wheelchair hit back of both legs
## 13815                                                                                                                  Bringing down chairs in service elevator. Elevatorcame down 3 inches lower than normal, wheels got caught, EE had to pull chairs out. Strain back
## 13816                                                                                                                                                                                               Bringing in air conditioner to the basement. Injured rt shoulder/arm
## 13817                                                                                                                                                                Bringing in supplies for clubhouse. Went to put bag on counter & heard pop & rt arm started hurting
## 13818                                                                                                                       Bringing inmate under control & was cuffed inmate right wrist & attempted to cuff left when inmate turned body over on her hand squeezing it
## 13819                                                                                                                                                        Bringing inmate under control during assault on staff member. Inmate struck EE on left hand injuring finger
## 13820                                                                                                                                           Bringing inmates back from clinic in unit iv lobbytrying to get through security door & it shut before could get through
## 13821                                                                                                                                                                      Bringing office furniture up/down steps, pulling hand truck with filing cabinet chairs, boxes
## 13822                                                                                                                                                                          Bringing patient's meal trays up & down the stairs due to elevator being out of order. ()
## 13823                                                                                                                                              Bringing wheelechairs tires back to medical dept., wheelchair intertube burst while carrying tire (burst in rt hand).
## 13824                                                                                                                                                                                         Broke a beaker and while carrying glass to disposeof it and cut my finger.
## 13825                                                                                                                                                                                                Broke desk fell forward on employee when file drawer was opened. ()
## 13826                                                                                                                                                                                                                            Broke out in a rash after leaving work.
## 13827                                                                                                                                                                                                              Broke out in a rash when assisting with sick calls ()
## 13828                                                                                                                                                                                   Broke out in welps all over body. EE does not knowwhat she came in contact with.
## 13829                                                                                                                                                                                    Broke out with poison oak on face. Legs, and hip after inhaling smoke from burn
## 13830                                                                                                                                                                                                          Broke up a fight between 2 students, sprained left wrist.
## 13831                                                                                                                                                                                                             Broken cahir gave way when EE sat down in dining hall.
## 13832                                                                                  Broken glass in recycling bag - 1st floor - robinson hall - was taking trash out to dumpster; reach inside to get bag out of buggie and got cut on broken glass in side of bag ()
## 13833                                                                                                                                                Broken hinge on metal technology cabinet resulted in door becoming disengaged and striking employee in the face. ()
## 13834                                                                                                                                                                        Broken light bulb in trash can liner punched through plastic and cut EE on right lower leg.
## 13835                                                                                                                                                      Broken spring was on top of a maintenance tool boxand as he walked by the tool box his arm struck the spring.
## 13836                                                                                                                                                                                                                             Broken stethoscope put in right ear ()
## 13837                                                                                                                                                                                            Broom broke while employee was sweeping the floor and cut his finger ()
## 13838                                                                                                                                                                                                               Broom fell through railing and struck EE on head. ()
## 13839                                                                            Broom handle fell out from beside a refrigerator as employee turned and the end of the handle hit the employee in the neck. Employee was also hit her hand on the table and hurt it. ()
## 13840                                                                                                                                                                                                                              Brown spider was crawling on EE's leg
## 13841                                                                                                                                                       Bruce was mowing and weeding at the blueberry project site, where he pulled 4 ticks he got while working. ()
## 13842                                                                                                                                                                                                                                     Bruise of lt knee and rt wrist
## 13843                                                                                                                                                                                                Bruise to upper arm while shooting the shotgun in annual training..
## 13844                                                                                                                                                                                    Bruised left lower arm assisting with a four man carry of a patient to restrain
## 13845                                                                                                                                                      Bruised right leg right shoulder & left side when she slipped on ice in parking lot that hadn't been cleared.
## 13846                                                                                                                                                                                                            Bruised right thigh (cannot read description of injury)
## 13847                                                                                                                                                                                                 Brushed against caterpillar while reaching into bushes. Rt forearm
## 13848                                                                                                                                                                                                                                        Brushed aganist posin sumac
## 13849                                                                                                                                                                                      Brushing a spider web away from window and spider bite his right index finger
## 13850                                                                                                                                                                                                              Brushing client's hair. Client bit EE on lt upper arm
## 13851                                                                                                                                                                                                   Brushing patients teeth, spit splattered in face and on arms. ()
## 13852                                                                                                                                                                                     Brushing resident's teeth-resident scratched upper lip and r. Side of nose. ()
## 13853                                                                                                                                                              Bryan was working in a trench at greek village when exiting the trench he heard a pop in his knee. ()
## 13854                                                                                                                                                                                             Bucket from tower 5 lowered by officer & struck co stalcup on the head
## 13855                                                                                                                                                                      Bucket of court cases started to fall, reached for them to stop from falling, hurt lower back
## 13856                                                                                                                                                                                            Buffer was setting next to the wall and fell over and bumped right leg.
## 13857                                                                                                                                                                    Buffering hall floor when left hand slipped of the buffer cutting middle finger on left hand ()
## 13858                                                                                                                                                                                                                                  Buffing floor - no injury listed.
## 13859                                                                                                                                                                                                                 Buffing floor and ankle began to hurt and swell ()
## 13860                                                                                                                                                       Buffing out floor, when changing cord foot got caught up in cord. Went down on floor on both knees. Rt knee.
## 13861                                                                                                                                                                                                                                                        Bug bite ()
## 13862                                                                                                                                                                                                   Bug bite discomfort pain increased noticed bite onleft lower leg
## 13863                                                                                                                                                                                                                                               Bug bite left arm ()
## 13864                                                                                                                                                                                                                                          Bug bite on right hand ()
## 13865                                                                                                                                                                                                                 Bug bite on rt leg while working on water fountain
## 13866                                                                                                                                         Bug bite or sting while working on project. Bite not getting better and started blistering around edge of infected ara. ()
## 13867                                                                                                                                                                                                     Bug bites occurred during yard work behind camp staff house ()
## 13868                                                                                                                                                                                                                                                  Bug flew into eye
## 13869                                                                                                                                            Building a cabinet. Nailing a piece of plywood together with brad nailer. Nail went through plywood and into finger. ()
## 13870                                                                                                                                                                                                      Building a rock wall injured left wrist while picking up rock
## 13871                                                                                                                                                                                                    Building a wall. EE turned on ladder and his left ankle snapped
## 13872                                                                                                                                                                           Building being renovated - fumes came through ventilation causing evacuation of building
## 13873                                                                                                                                                                                         Building cabinet-another staff had staple gun; staple shot in right thumb.
## 13874                                                                                                                                                          Building collapsed during training. Employee pulled a firefighter from the building after the collapse ()
## 13875                                                                                                                                                                                                                  Building ducts for hvac system. Cut his left hand
## 13876                                                                                                                                                                                                        Building fences-pinched left index finger between two pipes
## 13877                                                                                                                                                           Building maintenance came into the unit and sprayed around a table; after 30 minutes, EE had reaction ()
## 13878                                                                                                                                      Building platform, sitting down cutting out piece of angle iron to make a fit. Grinder hung up in metal bounced off & hit leg
## 13879                                                                                                                                           Building prison for doc. Right shoulder head and neck right arm and elbow no file case ta 20801 July 312008 ncic comm ()
## 13880                                                                                                                                                                                  Building shelves, EE bent down causing an injry to knees l knee surgery 2/9/07***
## 13881                                                                                                               Building sign rack. Grinding metal to get ready forwelding. A piece of metal hit employee cheek, wentunder his safety glasses hitting him in the eye
## 13882                                                                                                                                                       Building steal door, lifted corner of door off sawhorse to move saw horse and felt pain in groin, left side.
## 13883                                                                                                                                                                                               Building tech.: moving carpet (approx 500 lbs) and injured his back.
## 13884                                                                                                                                               Building tent for outreach event (lifting, squatting, standing, holding objects above hand). Pain inlower back began
## 13885                                                                                                                                                                 Building wall to cover drain, employee's foot slipped and rt knee went backwards making a loud pop
## 13886                                                                                                                                                           Building was being exterminated and EE had an allergic reaction to the fumes of the chemicals being used
## 13887                                                                         Building was dark. Mr. Ramsey side-stepped and fell down 3 steps while assisting with placing students in building for mass casualty incident class. Injured left thigh and right foot. ()
## 13888                                                                                                                                                                       Building was flooded due to rain storm. Slipped and fell on wet floor hurt wrist and hip. ()
## 13889                                                                                                                                                                Building was unusually cold causing chemical vaporto be released causing exposure to eyes and lungs
## 13890                                                                                                                                     Buildong scaffolding, handling & moving 18 ft scaffold boards & poles overhead. Bent down to pickup poles & felt pain in chest
## 13891                                                                                                                                                                                             Bulb fell out of light fixture and hit ladder and hand cutting fingers
## 13892                                                                                                                                                                                                         Bulb was broken inside box & cut pinky finger on left hand
## 13893                                                                                                                                                                                      Buld shattered while changing, causing lacerating inside left index finger ()
## 13894                                                                                                                                                      Bulldog ran and lunged at her hitting her in the middle of back & pushed her forward jerking back & neck area
## 13895                                                                                                                                                                                                                                   Bullentin board fell on her head
## 13896                                                                                                                                                                                                               Bumped arm (right) against the corner of hot pan. ()
## 13897                                                                                                                                                                                                                Bumped elbow on cell block door while locking up ()
## 13898                                                                                                                                                                                                                                 Bumped elbow, bruised and swelling
## 13899                                                                                                                                                                                                                       Bumped head on edge of the contol station ()
## 13900                                                                                                                                                                                                                       Bumped head on platform when standing up. ()
## 13901                                                                                                                                                                                                             Bumped head on safety interlock/door, scalp laceration
## 13902                                                                                                                                                                                                                          Bumped head on stairs during a home visit
## 13903                                                                                                                                                                                                       Bumped head on stairs outside building causing concussion ()
## 13904                                                                                                                                                                             Bumped into hvac system drain sill cock. Removing circulating pump lacerating his head
## 13905                                                                                                                                                                                              Bumped into low mounted exterior wall fixture while turning a corner.
## 13906                                                                                                                                                                                           Bumped into the car in front of the state veh justafter the light chngd.
## 13907                                                                                                                                                                      Bumped knee moving vending machine *right knee* ***left knee not work comp*** clinchered ****
## 13908                                                                                                                                                                                                                                          Bumped on corner of desk.
## 13909                                                                                                                               Bumped right elbow on block of student room while trying to pull a sheet from exterior window that student was trying to escape from
## 13910                                                                                                                                                                                                                                Bumped right knee into file cabinet
## 13911                                                                                                                                                                           Bumped right knee on steel pole. Looking for thermostat to turn off the cool air blowing
## 13912                                                                                                                                                                                                             Bumped rt hand on wall when opening the bathroom door.
## 13913                                                                                                                                                                  Bumped table while counting. Turned corner & scraped/cut his left forearm on corner of prep table
## 13914                                                                                                                                                                                                                                 Bumped top of head on cabinet door
## 13915                                                                                                                                                                           Bumping volleyball with patients and injured rt thumb-history of previous r thumb injury
## 13916                                                                                                                                                                     Bungee cord on atv came loose while EE backing atvand s hook on bungee cord hit EE on the face
## 13917                                                                                                                                                                                                               Bunking beds together, pinched hand between brackets
## 13918                                                                                                                                                   Bunnie was working at her desk; she caught her rt little finger between the arm of the chair & computer tray. ()
## 13919                                                                                                                                                                                                                      Bupmed her head on one the porch floor beams.
## 13920                                                                                                          Burn to right ankle. Water tem set at 170 degrees. While cleaning the floors hot water splached in boot causing burn to right bottom of leg and ankle. ()
## 13921                                                                                                                                                                                                        Burned both hands on hot plate while serviing evening meal.
## 13922                                                                                                                                                                                                                             Burned by heat when extinguishing fire
## 13923                                                                                                                                                                                                              Burned cornea installing auv light. (welders eyes) ()
## 13924                                                                                                                                                                                                                                       Burned finger on hot cart ()
## 13925                                                                                                                                                                                                                  Burned front abdomen while using charocoal grill.
## 13926                                                                                                                                                                                                                               Burned hand on muffler of pump motor
## 13927                                                                                                                                          Burned left hand when washing hands in the ladies room, because water was scalding. Burn left hand scalded with blisters.
## 13928                                                                                                                                                                                                                        Burned leg on steam pipe in mechanical room
## 13929                                                                                                                                                                                                                      Burned lt arm on hot base while serving lunch
## 13930                                                                                                                                                                                                       Burned right forearm while trying to repair brokensteam line
## 13931                                                                                                                                                                                                                                 Burning above right ankle/swelling
## 13932                                                                                                                                                                                                                        Burning in eyes from chemical (in training)
## 13933                                                                                                                                     Burning sensaiton in left hip joint and left knee with swelling due to a previous injury. List injuries as: left hip & knee ()
## 13934                                                                                                                                                                                                                             Burnt left wrist on oil filter machine
## 13935                                                                                                                                                                                Bursistis in rt shoulder and tendinitis in rt wrist. Constant key boarding, typing.
## 13936                                                                                                                                    Burton moore with mike nowicki assistance were taping trim tape on teague dorm basketball goal. He cut his left fifth finger ()
## 13937                                                                                                                           Burton was driving her state vehicle when she stopped due to traffic stopping & was struck in rear by another veh traveling about 45mph.
## 13938                                                                                                                                                            Bus attendant on school bus asked student to retn to seat when student started punching and kicking EE.
## 13939                                                                                                                                                                                Bus ran into ditch. Injury was caused by impact slamming his feet into floor of bus
## 13940                                                                                                                       Bus stopped at work stop - seating in seat across from letreene on bus. Reached with rt hand grabbedpole pulled up then felt finger was cut.
## 13941                                                                                                                                              Butterfly tubing was stuck inside the tub. In the getting tubing part out spike accident stuck 2nd finger on lt hand.
## 13942                                                                                                                                                                         Buzzer located directly behind attendent. Buzzer startled EE causing her to jerk her neck.
## 13943                                                                                                                                                                  By employee was inappropriately touched a co-worker and caused post-traumatic stress disorder. ()
## 13944                                                                                                                                              By removing 40+ soil samples from sites, she strained her back using heavy force/body weight to remove soil cores. ()
## 13945              Bynum was removing wood boards from a shelf where they had been stored; reached for one on top shelf and nail in board hidden behind the one he was reaching for punctured pinky finger on right hand approx. 1/4 inch deep, very little bleeding. ()
## 13946                                                                                                                             Bynum's right foot tripped on the shaft of a transmission laying on a pallet as he exited the area in which spare parts are stored. ()
## 13947                                                                                                                                                                                                                                                    C- 919 632 0598
## 13948                                                                                                                     C/o May states while working tower 3 the space heater sparked fire, causing her to jump from the chair hitting her left butt on the chair arm.
## 13949                                                                                                                                            C/o a. Gibbs was walking & securing the block withan inmate janitor. She slipped in a wet spot in albermarle a02 block.
## 13950                                                                                                                                                                 C/o alleges she stepped outside of auman single cell door & stepped down, twisting her left ankle.
## 13951                                                                                                             C/o alleges supervising inmates strip floor in dorm, saw a spider, and stepped on it, slip and fell on left knee, buttock, breaking fall with rt hand.
## 13952                                                                                                                                                                      C/o alleges that an inmate kicked him on his left shoulder area while jumping up on his bunk.
## 13953                                                                                                                     C/o alleges while patrolling newsome dorm, courtyard, while walking up the steps, she didn't lift rt foot high enough to clear top step & fell
## 13954                                                                                                                                                                                                            C/o avery stepped in floor stripper & slipped & twisted
## 13955                                                                                                                       C/o backed into EE as he was pushed/kicked at by the nurse. EE was standing in infirmary doorway waiting to go in. Injury to right arm/wrist
## 13956                                                                                                                                                                        C/o barnett was making a perimeter check of a building when she tripped on a rock and fell.
## 13957                                                                                                              C/o blank was in the kitchen and getting ready to have to have the coolers filled w/ice. C/o blank drank water from a orange cooler contained bleach.
## 13958                                                                                                                                              C/o boone wan checking the inmates a the new leash on life building and one of the dogs bite him on his right hand ()
## 13959                                                                                                                                 C/o bright was walking up the steps from a-yard tothe entrance to the kitchen when she slipped and fell on her right knee and arm.
## 13960                                                                                                                                                       C/o bruton was pouring a cup of coffee & while he was pouring the coffee the handle to the coffee pot broke.
## 13961                                                                                                                                                   C/o bunch twisted right knee while walking down stairs in a-block. 30 minutes later she felt a popin right foot.
## 13962                                                                                                                             C/o callihan was getting into unit van #6435 when he steeped up into the vann his foot slipped causing him to fall on his left hand ()
## 13963                                                                                                                                                                    C/o carlton reports during a use of force to control an inmate, he struck his lt knee on a wall
## 13964                                                                                                                                                                         C/o clifton stated that he injuried his back during cell extraction training on 7/10/13 ()
## 13965                                                                                                                                                                                     C/o coley stated it was raining and she slipped on was floor in the gatehouse.
## 13966                                                                                                                     C/o conducting home contact on offender. Walking from vehicle to residence, officer stepped into a hole in the offender's yard & twisted foot.
## 13967                                                                                                                            C/o davis reports during a use of force incident, he cut his right forearm. The involved inmate also was cut & bleeding from his wound.
## 13968                                                                                                                                                                       C/o dawson stated, walked down the stairs my body jerked and something pulled in lower back.
## 13969                                                                                                                        C/o draper was passing out food trays when the door began to close and she tried to stop the door with her hand and the door closed on her.
## 13970                                                                                                                                              C/o drennan states she started hurting in chest, down the left arm and could not breathe while working the gun tower.
## 13971                                                                                                                    C/o edwards was in crdt training when his partner flipped him onto the floor & he fell on his left shoulder where he heard a pop & he felt pain
## 13972                                                                                C/o eric powell stated that he was assigned to segregation wings and he made his rounds inmate daryl adkin in cell 1 spit through the wire screen hitting c/o powell in the face ()
## 13973                                                                                                                                                                                                   C/o eudy reports that she was walking down the steps and fell ()
## 13974                                                                                                                                                        C/o evans states he caught his left hand between cart & fence pole as he was pulling cart from yards 2 & 3.
## 13975                                                                                                                                                                                                    C/o exposed to a 1/2 - 1 sec burst to the brow area of his face
## 13976                                                                                                                                                              C/o fainted and fell directly on EE. Causing a strain of the middle back and neck. Strain back/ neck.
## 13977                                                                                                                                           C/o faison was closing vehicle gates at tower 6, &the razor ribbon was hanging to low & scratched EE on top of the head.
## 13978                                                                                                                                                                                             C/o fell to the ground with an inmate causing his left knee to hurt ()
## 13979                                                                                                                                                                          C/o grabbed my ankles to put me to the matt when ihanded my right foot, my toes bend back
## 13980                                                                                                                                                                                                                                                C/o gray states, ()
## 13981                                                                                                                                            C/o hayes was involved in an anticipated use of force. His left shin struck the protective shield and started to bleed.
## 13982                                                                                                                          C/o hill was exiting the sergeant's office when she attempted to lift her right leg across the stationay arm of skylift when she tripped.
## 13983                                                                                                                                                                                           C/o jacobs was shocked as he touched the door entering the gatehouse. ()
## 13984                                                      C/o jason gray stated, closed his fingers in the entrance door of the control center on essex unit. C/o gray pinched the finger nails on his right hand, the 3rd & 4th fingers. Staff not being observant. ()
## 13985                                                                                                                                                                                                      C/o johnson fell while climbing the stairs between 1f and 2f.
## 13986                                                                                                                 C/o kechia howell was performing her duties as roving patrol officer when she apparently blacked out & ran vehicle front first into six foot ditch
## 13987                                                                                                                                                  C/o lindsey was involved in an anticipated use of force. He hit the corner of his left eye on c/o r. Jackson knee
## 13988                                                                                                                          C/o making routine security check at meat plant got lt foot caught in some plastic that was wrapped around pallet that was lying on floor
## 13989                                                                                                                                                                                                     C/o marshall was lifting boxes & felt a pain on her right side
## 13990                                                                                                                                                                              C/o miller fell on her causing her knee to go backbelieves she twisted the wrong way.
## 13991                                                                                                                                        C/o moore was leaving compactor and fell on some grease-like substance that was on the floor outside of the compactor room.
## 13992                                 C/o narron was doing a search of m1 dayroom. He lifted one end of a picnic table to check underneath it and the table slid across the floor jerking him causing stinging/burning in his lower back with later turned into pain. ()
## 13993                                                                                        C/o of force and restrainingconklin was involved in a use an inmate who was resisting and he arched his back and twisted it as he went against the wall with the inmate. ()
## 13994                                                                                                                                                                 C/o patterson was observing the inmate medication pass, when he rubbed his eye, it shut with pain.
## 13995                                                                                                                             C/o patterson was securing a gate when her right finger got caught and pinched the gate and left hand was scraped as closing the gate.
## 13996                                                                     C/o peel stated while another c/o was attempting to restrain an inmate, he was sprayed with a burst of pepper spray in his eyes. Also c/o peele states he was hit on left arm with a baton. ()
## 13997                                                                                                                                           C/o porter reported she injured her shoulder whilelifting a scott air pack tank over her head duringtraining on 1/26/09.
## 13998                                                                                                                                C/o potter stated after completing a security search of the yard she was in process of returningher equipment felt dizzy collapsed.
## 13999                                                                                                                                         C/o reed states he was driving a state vehicle andstruck a deer which was crossing the road on nc 53west of elizabethtown.
## 14000                                                                                                                             C/o robbins was firing the. 40 m&p handgun during night fire and the recoil from the firearm caused pain to thumb bone and left wrist.
## 14001                                                                                                             C/o roberson stated, down on the floor and reachedfor another officer with left arm and something pulled deep in chest on the left side. (c. R. D. T.)
## 14002                                                                                                                  C/o shaver states that he was performing an assisted takedown during training when the person being taken down landed his wt on his left shoulder
## 14003                                                                                                                                                                C/o singletary leaned back in chair & chair broke causing him to hit his head & elbow on the floor.
## 14004                                                                                                                                                               C/o sitting on stool in control center had severe coughing episode & passed out woke up on the floor
## 14005                                                                                                                   C/o smith was standing in maintenance shed, turned and hit his head on a pipe that was sticking out. This was report 48 hours after the accident
## 14006                                                                                                                    C/o sprayed w/ oc pepper spray @ training. Reportedeye irrated on 09-18-08 & situation was worse the next day & he was sent to outside medical.
## 14007                                                                                                                                                                                      C/o stated during crdt training fall backwards on mat strained left shoulder.
## 14008                                                                                                                                                                                C/o stated she was bitten by something on lower right leg, did not see what it was.
## 14009                                                                                                                                             C/o stated while answering an inmates call she wascoming down stairs and fell down the last 2 or 3 steps on left knee.
## 14010                                                                                                                                                                     C/o stated while strip searching inmate struck him in the mouth. Two of his teeth were loosen.
## 14011                                                                                                                                                                                     C/o states she hit her hand on the control panel in the red unit control booth
## 14012                                                                                                                                                                    C/o states she was in collapsible baton training &baton fell out of holder & hit her left foot.
## 14013                                                                                                                                                            C/o states that he was feeding h-block & inmate threw an unknown liquid assumed urine through trapdoor.
## 14014                                                                                                                                                                             C/o states that while feeding inmates, he touched the two food carts at the same time.
## 14015                                                                                                                                                             C/o states walking down the stairs to open sally port doors, I stumbled on the stairs and hurt my foot
## 14016                                                                                                                               C/o states wasp stung her on left thumb, while shewas adjusting her belt. C/o was performimg controlcenter operations in co-op unit.
## 14017                                                                                                                               C/o stepped through sally port door, slipped, foodtray went up in air, shifted weight to left leg. Fell l knee bucket underneath c/o
## 14018                                                                                                                    C/o t. Moore was seperating 2 inmates fighting w/ shanks. He was cut on the right arm with one of the shanks. (sharpened toothbrush and razor).
## 14019                                                                                                                                                                                    C/o tametric patterson was leaving the bathroom & hit her shoulder on the door.
## 14020                                                                                                                                                                                           C/o taylor was assigned to east yard. Wind blew foreign object into eye.
## 14021                                                                                                                C/o truitt was discharging his firearm & a shell casing was ejected from the firearm. This shell casing then struck officer truitt in the inner eye
## 14022                                                                                                                                                                                                    C/o trying to turn a key it janitor's closet; thumbwas bruised.
## 14023                                                                                                                                          C/o walking in horseshoe of hcon turned back gave out fell to the floor, c/o jefferson, helped turnerup to go to medical.
## 14024                                                                                                                                                                   C/o walking through the gate headed to single cella, slipped on sidewalk and fell on right knee.
## 14025                                                                                                                                        C/o was at basic training & doing technique "breakfall" from a kneeling position & pulled muscle in stomach when coming up.
## 14026                                                                                                                                                                                  C/o was attempting to handcuff inmate in the shower when his left hand went limp.
## 14027                                                                                                                                                                             C/o was biten by fire ants multiple times, multiple locations, hands, arms, legs, feet
## 14028                                                                                                                                 C/o was caught in the controlled slider door. C/o was hit in the back of the head and hurt thumb pushing the door back off of her.
## 14029                                                                                                                                                                                    C/o was closing sally port gate and punctured his right middle index finger. ()
## 14030                                                                                                                                                  C/o was conducting a locker search when the inmate became irate causing injury the the c/o's head and eye area ()
## 14031                                                                                                              C/o was doing search when I/m pushed c/o down. C/ofell to the floor hurting left hip, l leg, l foot, l shoulder, l hands, head, and neck. Dr Rtw 3/12
## 14032                                                                                                                                                                C/o was making security check of domestic violencetrailer, slipped & fell on frostry handicap ramp.
## 14033                                                                                                                                                C/o was moving a water tank off the back of a pickup truck. The tank rolled on his left foot on top of his big toe.
## 14034                                                                                                                                                                                             C/o was picking up lunch tray from inmate's cell &inmate spit in eyes.
## 14035                                                                                                                                                                      C/o was putting up target at firerange and sliced right index and middle fingers on the clip.
## 14036                                                                                                                          C/o was responding to a disturbance on the yard. While running down stairs, he slipped and fell to the bottom, hitting his head and back.
## 14037                                                                                                                                                                       C/o was restraining inmate another c/o struck the baton hitting the back of his right thigh.
## 14038                                                                                                                           C/o was sharpening a bush axe and two inmates wereholding it still, the axe rolled causing his rightmiddle finger to roll into the blade
## 14039                                                                                                                                                 C/o was walking across grounds and stepped off thewalkway the wrong way causing her to fall and injury right knee.
## 14040                                                                                                                                                                C/o was walking down steps from bridge of tag/duplicating and right foot slipped and twisted ankle.
## 14041                                                                                                                                                           C/o whitfield stated a car pulled out from a driveway into oncoming traffic hitting the side of the bus.
## 14042                                                                                                                                                                                                     C/o williams was head butted by an inmate during a cell search
## 14043                                                                                                                C/o wilson was pushing cart on to the elevator in mental health west, the food cart smash her left hand between the elevator door and the food cart
## 14044                                                                                                               C/o worker & EE running w/crash cart to code 900. Wheels were not turning going down handicap entrance & ramp. Wheel rolled over toes on lt foot. ..
## 14045                                                                                                               C/o wright alleged that she was preparing coffe for herself, when she bent down to get some sugar from her bag the boiling water allegedly over.. ..
## 14046                                                                                                                                                                                   C/o's found tattoo needles while handling it I received a stick of left thumb ()
## 14047                                                                                                                                                         Cabinet door lock was not aligned-EE tried to align door with pliers-pliers slipped and stabbed EE lt hand
## 14048                                                                                                                                                      Cabinet drawer jarred open and cabinet fell forwarhit leg on corner of cabinet drawer and cut rt legshin area
## 14049                                                                                                                                                                                                        Cabinet fell from wall onto EE striking her in theleft side
## 14050                                                                                                                                 Cable broke on liftgate of truck, food cart slanted on angle & EE attempted to keep food cart from falling using outstretched arm.
## 14051                                                                                                                                                                                                                        Cable broke sending port in rt side of knee
## 14052                                                                                                                                                                                                              Cable in road caused EE to loose his balance and fall
## 14053                                                                                                                                                                                                      Cable line slipped out of its connection; injury to left hand
## 14054                                                                                                                                        Cadet brunce was participating in a defensive tactics. While performing a neck restraint techniqhe injured his rt shoulder.
## 14055                                                                                                 Cadet cerbone was participating in physical fitness training by doing a ground grappling technique with another cadet when he experienced pain in his left hip. ()
## 14056                                                                                                                                                                     Cadet fell on EE's left arm. After the exercises there were bruising and swelling to EE's arm.
## 14057                                        Cadet miller was participating in physical fitness training when he was holding a strike bag for a fellow cadet. The other cadet was striking the bag when they missed and hit cadet miller in the left side of his jaw. ()
## 14058                                                                                                               Cadet participated in the pe fitness training withthe cadets of 114 hwy patrol and informed trooper tafoya thta he was having pain in lt ankle 11/23
## 14059                                                                                                                 Cadet rogers was participating in a physical confrontational exercise when he was struck in the mouth causing two of his teeth to become loose. ()
## 14060                                                                                                                                      Cadet was attempting to restrain EE during asp training with practice baton and landed on top of EE -EE landed on rt shoulder
## 14061                                                                                                                                                Cadet was doing active confrontation drills when he was struck in the head by the instructor and fell to the mat ()
## 14062                                                                                                                                                          Cadet was doing active confrontation tactics drill when he was struck in the head and fell to the mat. ()
## 14063                                                                                                                                Cadet was jogging in formation when they heard a pop in lower leg and fell to the ground. While falling to the ground rolled ankle.
## 14064                                                                                                                      Cadet was participating in a training fitness as part of the basic school. Was running on roadway &stepped in a pothole and injured his foot.
## 14065                                                                                                                                               Cadet was participating in active confrontation tactics drill when he was struck in the head and fell to the mat. ()
## 14066                                                                                                                                                 Cadet was participating in defensive tactics when stricking a heavy bag he recieved a cut on his right knuckle. ()
## 14067                                                                                         Cadet was participating in the active confrontational tactics survival drill as part of the advanced def. Tactics when he recieved blows to the head causing a concussion.
## 14068                                                                                                                                           Cadet was taking part in active confrontation tactics when he struck the instructor with his left hand and felt pain. ()
## 14069                                                                                                                         Cadet whitford was participating in physical fitness as part basic school was running when low leg started hurting. Notified school staff.
## 14070                                                                                                                 Cadet wilson was participating in a tactic traininduring a dynamic arrest, cadet tried to handcuff ainstructor and felt sharp pain in rt shoulder.
## 14071                                                                                                                                        Cadet wsa handcuffing EE during training while EE was lying on the ground-EE felt pain in rt elbow when arm was pulled back
## 14072                                                                                                                                Cadets were on morning pt run when 2 cadets started fighting-EE stepped in to break up the fight andinjured rt hand and lower back.
## 14073                                                                                                                 Cafeteria worker opened pull down refrigerator door as EE was walking by causing EE to run into door contusion rt leg above knee lower back strain
## 14074                                                                                                                                     Calf came into sale ring, ran at EE--tried to stop & slid into right ankle. EE was grading feeder cattle. Spraing right ankle.
## 14075                                                                                                                            Call to assit with out of control student; while restraining student empl was hit in rightknee & other staff member fell on his knee ()
## 14076                                                                                                                                                          Called by client to check on swarm of bees at home. While removing bees with vail, gloves and smoker used
## 14077                                                                                                                    Called for pic on 1 north at 1415 patient had to be restrained. 2nd pic called obese pt. Kicking & fighting in private parts & is very painful.
## 14078                                                                                                                                Called to investigate motor vehicle crash, motorist extended hand to shake iw's hand, small dog jumped up and bit right ring finger
## 14079                                                                                                                                               Called to unlock door at the bottom of the bridge house & when climbing back up the stairs she fell up the stairs ()
## 14080                                                                                                            Caller reports iw was outside working, got hot, started having stomach cramps that progressed to the legs and iw could not walk. Iw was taken to er. ()
## 14081                                                                  Calling inmates to visitation officer wall went through slider door and had his left middle finger in the way of closing door. The door pinched off the tip end and nail of his middle finger. ()
## 14082                                                                                                                                                                                           Came around bldg and tripped over stoop, fell forward on hands and knees
## 14083                                                                                                                                                                                                Came around corner and ran into a file cabinet and cut left eye. ()
## 14084                                                                                                              Came around corner from unit 6 into room hit chair sitting slightly in doorway with rt leg and fell prone but initially hit on rt knee & left hand ()
## 14085                                                                                                                                                                                                           Came around tower one building and a bee stung on arm ()
## 14086                                                                                                                                                                                                                  Came around work station and slipped on wet floor
## 14087                                                                                                                                                                                                          Came down road and stopped. Blow horn. Van backed into EE
## 14088                                                                                                                                                                                               Came down stairs & turned felt a pop rt leg just below the knee area
## 14089                                                                                                                                                                                                        Came in contact w/ poison ivy while doing forest inventory.
## 14090                                                                                                                                Came in contact w/ the tuberculosis bacteria whilein the congo on a business trip. His chest x-ray tested positive, but not active.
## 14091                                                                                                                                                                                                       Came in contact w/blood while helping young child w/cut knee
## 14092                                                                                                                                                           Came in contact w/defendant at randolph county jail who was later determined to have contracted v. R. E.
## 14093                                                                                                                                                                                                                Came in contact w/poison ivy/oak during ground work
## 14094                                                                                                                                                                                                                  Came in contact w/poison oak, touched face & neck
## 14095                                                                                                                                                                                                                                   Came in contact with MRSA virus.
## 14096                                                                                                                                                                                                                                    Came in contact with an animal.
## 14097                                                                                                                                                                                             Came in contact with blood pumbing gas and there was blood on the pumb
## 14098                                                                                                                                                                                                                            Came in contact with inmate that had TB
## 14099                                                                                                                                                                                                                   Came in contact with poison ivy on rt lower leg.
## 14100                                                                                                                                                 Came in contact with poison ivy while clearing research plots in sc. Rash is located on both arms and her abdomen.
## 14101                                                                                                                                                                                      Came in contact with poison oak and is very allergic just even to be near it.
## 14102                                                                                                                                                                            Came in contact with something that got on hands causing redness, blisters and stinging
## 14103                                                                                                                                                                                                                   Came in door of kitchen and slipped on wet floor
## 14104                                                                                                                                  Came in from outside activity, EE turned around to check on residents, resident scratched EE face resident is a hepatitis carrier
## 14105                                                                                                                                                                                Came into bldg. Floor wet, slipped falling hittinghands, knees and rt side on floor
## 14106                                                                                                                  Came into building to pickup keys, started back out the door feet slipped on wet steps, trying to break fall, right hand left wrist hit iron rail
## 14107                                                                                                                                                                                                Came into contact w/ subjects who state they were "carriers of TB".
## 14108                                                                                                                                           Came into contact w/defendant who was tested positive for TB by office contact & taking urine specimans for drug testing
## 14109                                                                                                                                                                                                                        Came into door area & door closed up on me.
## 14110                                                                                                                                                    Came on gradually, made worse by mousing with right hand. Right hand, wrist, fingers and arm up to shoulder. ()
## 14111                                                                                                                                                                                                           Came out of 2b from unloading a truck and slipped on ice
## 14112                                                                                                                                                                                       Came out of office going down steps and right kneepopped. ***r/I # 148721***
## 14113                                                                                                                                                                           Came out of the control room stepped on the first step and slipped off of the first step
## 14114                                                                                                                                                               Came through door & patient hit him in back between shoulder blades then patient & cna went to floor
## 14115                                                                                                                   Came to a complete stop at the stop sign and felt a hard bump which came from the rear of the truck, a van had struck him on the passenger side.
## 14116                                                                                                                                                             Came upstairs to use the bathroom, going down missed last step, left knee went all the way to chest ()
## 14117                                                                                                                                                                 Camera operator during a planned use of force when inmate threw an unknown liquid substance on her
## 14118                                                                                                                                                                    Camper slid off top bunk and landed on back of EE's head and neck. Neck and rt shoulder injured
## 14119                                                                                                                                                                             Can't explain. Got up and bathed and groomed and her wrist started to hurt around 9:30
## 14120                                                                                                                                                                                                        Canoe flipped on rapid on mayo river & landed on right shin
## 14121                                                                                                                                                                                                         Capping and opening tubes while pipetting numeroussamples.
## 14122                                                                                                                                      Capt states that as he was escorting I/m to seg, the inmate hit him in the chest & he responded with doc escorting technique.
## 14123                                                                                                                  Capt sutton was showing self defense class how to get handcuffed inmate up & ofcr melvin simulated the inmate. Capt sutton twisted EE's rt knee..
## 14124                                                                                                                                                                     Captain was responding to an inmate disturbance and fell from the pepper spray on the floor ()
## 14125                                                                                                                                                                  Capture of fleeing defendant who was in officer's custody. Fell and EE landed on left hand & knee
## 14126                                                                                                                                                                            Car accident - EE was driving and was hit by another veh on the rear passenger side. ()
## 14127                                                                                                                                           Car accident - air bag deployed to causing injury to left forearm and right thumb. Also injury to chest and groin areas.
## 14128                                                                                                                                                                                                                    Car accident -doing field work for probation ()
## 14129                                                                                                                                                             Car accident -hit & run on greensboro interstate. ***************no subro hit & run*******************
## 14130                                                                                                                                                                                                                            Car accident injured lt knee & neck. ..
## 14131                                                                                                                                                                                                             Car accident leaving conference. No physical injuries.
## 14132                                                                                                               Car accident while traveling through intersection muscle soreness bruising rt leg pelvic abrasions lt/rt legs ankle. Chest/x-ray bronchitis-inahaler
## 14133                                                                                                                                                                                                                         Car accident while traveling to the office
## 14134                                                                                                                                                                                                                                       Car accident without injury.
## 14135                                                                                                                                 Car accident, accident occured at corner of lindsyst and dudley st, car ran red light and hit van eewas driving on front lft side,
## 14136                                                                                                                                                          Car accident, on way to meeting in fayetteville fx index fgr & wrist, seatbelt burns, deep bruise on side
## 14137                                                                                                                                         Car accident- employee was on her way to pick up another co-worker who had dropped their state vehicle off for repairs. ()
## 14138                                                                                                                                                                            Car accident--in rental car. Lacerations, bruising concussion, head, chest, arm & hand.
## 14139                                                                                                                                                                                                Car accident-was rear inded when attempting to navigate a lt. Turn.
## 14140                                                                                                                                                                                                                 Car accident. Sprain neck/lumbar, myofascial pain.
## 14141                                                                                                                    Car accident. Traveling from home courthouse to destination courthouse for work. Sprain ankle, bruised chest, ankle, stomach, extreme soreness.
## 14142                                                                                                                                                                                             Car backed into EE while moving on the campus of john umstead hospital
## 14143                                                                                                                                                              Car broke down on side of road. Stepped on a yellowjacket nest. Stung 12 times, arms, legs and chest.
## 14144                                                                                                                                                                                                            Car hit EE's vehicle causing him to hit another vehicle
## 14145                                                                                                                                               Car hit van from behind on w ash st I was a pass- anger in the van driver side, front seat. Lower back feeling sore.
## 14146                                                                                                                                                         Car hydroplaned hitting cement median on I-40 westsingle car accident. EE was driving at time of accident.
## 14147                                                                                                                                                         Car immediately preceing EE abruptly slowed to observe fire on adjacent bank of highway. Slammed on brakes
## 14148                                                                                                                                                                          Car in front her stopped abruply and she swerved to Miss End and ran into the ditch/yard.
## 14149                                                                                                                                                            Car in front slammed on breaks causing several cars behind it to stop suddenly; EE was in the middle ()
## 14150                                                                                                                                                                             Car left road to avoid head on collision. Car ran into something and stopped suddenly.
## 14151                                                                                                                                           Car moving toward EE lost control, slid sideways EE drivers side struck other drivers side and their back door and tire.
## 14152                                                                                                                                                          Car of anotehr individual crossed center line hitting EE's car head on. EE was passenger in state vehicle
## 14153                                                                                                                                 Car pulled in front of EE trying to make left turnthe vehicle driven by EE hit the car. EE felt painin both knees & left shoulder.
## 14154                                                                                                                                                       Car pulled into path of her vehicle causing mva-stiff neck and back pa thomas west.. Liability atty not wc..
## 14155                                                                                                                                                                                                                               Car pulled out and hit injured's car
## 14156                                                                                                                                                           Car ran a stop sign hitting EE's state van on the right rear causing van to knocked to left medan. Neck.
## 14157                                                                                                                                                                                                      Car ran red light and collided with EE's car at intersection.
## 14158                                                                                                                                                        Car ran red light and hit officer's car on the front left side, the other driver was cited for the accident
## 14159                                                                                                                                                                                                                                Car ran red light hitting EE's car.
## 14160                                                                                                                                          Car ran stop light and hit vehicle in left front. EE working saturday w/inmates when it was time forhim to return to camp
## 14161                                                                                                              Car ran stop sign and EE hit car head on. Injuriesconsistent with a broken neck. Work#919-733-8390 **do not pay charges cbi for low back-not related*
## 14162                                                                                                                                                                                                                     Car skidded out of control and hit guard rail.
## 14163                                                                                                                                                                                                  Car stopped at red light when it was rearended by another vehicle
## 14164                                                                                                                                                                                                   Car that EE was riding in was struck in the rear by another car.
## 14165                                                                                                                                                          Car was coming up george st. To fast & EE was walking fast to avoid being hit, fell & hurt leg & ankle ()
## 14166                                                                                                                                                                                 Car was struck when another car ran a red light. Neck, back right leg, right foot.
## 14167                                                                                                                                    Car wash detail- EE states that he was getting out of state vehicle and stepped down feeling a sharp pain in his rt thigh/groin
## 14168                                                                                                                                                                                                                                            Car wreck - back injury
## 14169                                                                                                                                                                                                               Car wreck, hit from behind sitting at stop light. ()
## 14170                                                                                                                                                                                 Carbon disulfied seeped through latex glove while handling chemical in small vials
## 14171                                                                                                             Carbon monoxide exposure. Experience trouble breathing and heaviness in chest. Did not go to Dr. At first, thought everything was fine. Problems later
## 14172                                                                                                                                                                                            Carbon monoxide poisoning due to construction going on in the building.
## 14173                                                                                                                                                                               Card catalog slipped off of cabinet that was beingmoved and struck EE in the rt foot
## 14174                                                                                                                         Cardboard on pallet and tripped over pallet- twisting left knee and dislocating rt hip **ovpd -oow on ttd on another inj-08010093 $369. 68
## 14175                                                                                                                                                                     Caring for children in childcare-came in physical contact-developed rash-rt shin/lt foot/chest
## 14176                                                                                                                                                                                                                                      Caring for resident w/scabies
## 14177                                                                                                                           Carla was opening a mailing box with scissors. The scissors and she punctured her lower forearm with the sharp point of the scissors. ()
## 14178                                   Carla was talking to a team member while standing. She turned to walk away and then quickly turned back. She had a sever back spasm and fell. On the way down, she tried to grab the desk but was unable to prevent her fall. ()
## 14179                                                                                                                                                                                               Carlton was repairing a broken foot bridge and stepped on a nail. ()
## 14180                                                                                                                                                                                                              Carol was carrying surfboards when she hurt her neck.
## 14181                                                                                                                                             Carol was picking up a box with form inside and felt like she pulled something in her back. No treatment necessary. ()
## 14182                                                                                                                      Carolyn was leaving 205 wilson street and as she the door and took her first step out, her ankle turned. Carolyn's right foot was injured. ()
## 14183                                                                                                                                                                                                         Carpal tunnel & tendonitis symptoms hand, shoulder & elbow
## 14184                                                                                                                                                                                                                       Carpal tunnel from entering data on computer
## 14185                                                                                                                                                                                             Carpal tunnel from sitting in chair too big for feet to touch floor ()
## 14186                                                                                                                                                                                         Carpal tunnel from using computer 4-7hours a day in left and right wrists.
## 14187                                                                                                                                                                                                         Carpal tunnel from years of sign language and computer use
## 14188                                                                                                                                                                                                                                        Carpal tunnel in both hands
## 14189                                                                                                                                                                                                     Carpal tunnel in both hands from use of computer and keyboard.
## 14190                                                                                                                                                                                                                   Carpal tunnel in both wrists from using keyboard
## 14191                                                                                                                                                                                                                                   Carpal tunnel in hand and wrist.
## 14192                                                                                                                                                                                                            Carpal tunnel in rt arm from right hand to right elbow.
## 14193                                                                                                                                                                                      Carpal tunnel in wrists/hands/fingers/arms/shoulde **r/I# 149914- cataloged**
## 14194                                                                                                                                                                                                                            Carpal tunnel injury to the left wrist.
## 14195                                                                                                                                                                                                                                           Carpal tunnel right hand
## 14196                                                                                                                                                                                                                        Carpal tunnel rt arm, wrist, and lower arm.
## 14197                                                                                                                                                                                                                                              Carpal tunnel syndrom
## 14198                                                                                                                                                                                                                       Carpal tunnel syndrome & metatarsal syndrome
## 14199                                                                                                                                                                                                                   Carpal tunnel syndrome caused by work activities
## 14200                                                                                                                                                                                                               Carpal tunnel syndrome from opening medicine bottles
## 14201                                                                                                                                                                                      Carpal tunnel syndrome from repetitive and excessive data entry with computer
## 14202                                                                                                                                                                    Carpal tunnel syndrome from using calculator, computer and writing. Carpal tunnel in right hand
## 14203                                                                                                                                                                                                                        Carpal tunnel syndrome hand, wrist and arm.
## 14204                                                                                                                                                                                                                        Carpal tunnel syndrome in rt hand wrist arm
## 14205                                                                                                                                                                                                                  Carpal tunnel syndrome, tendonitis, golfers elbow
## 14206                                                                                                                                                                                                           Carpal tunnel syndrome-right and left hand and wrist. ()
## 14207                                                                                                                                                                                                                                 Carpal tunnel syndrome-right wrist
## 14208                                                                                                                                                                           Carpal tunnel syndrome. Severe pain, swelling and numbness in right hand, wrist and arm.
## 14209                                                                                                                                                                                                       Carpal tunnel syndromes in both hands from repetitive typing
## 14210                                                                                                                                                               Carpal tunnell caused by repetivive use of hands doing clerical duties, I. E. Typing, filing etc. ()
## 14211                                                                                                                                                                            Carpel occurred over time w/repetitive motion. Computer and calculator office equipment
## 14212                                                                                                                                                     Carpel tunnel both hands; developing over 3 yrs+ sleep apnea: possible air problem in office. Has not been oow
## 14213                                                                                                                                                                                      Carpel tunnel caused by repetitive use of office computer keyboard and mouse.
## 14214                                                                                                                                                                                                                                  Carpel tunnel in hand. Right hand
## 14215                                                                                                                                                                                                                                             Carpel tunnel syndrome
## 14216                                                                                                                                                                                                                                          Carpel tunnel syndrome ()
## 14217                                                                                                                                                       Carpel tunnel syndrome diagnosed as resulting fromfrequent computer use for regular job duties. Bilaterl ctr
## 14218                                                                                                                                                                Carpel tunnel syndrome in both hands. EE states that daily activities which require use of hands ()
## 14219                                                                                                                                   Carpel tunnel syndrome of the right wrist has beena reoccuring problem for several years but has become severe in recent months.
## 14220                                                                                                                                                            Carpel tunnel syndrome r hand. Ctr 2/5/02 per er, EE temp EE since 12/5/00 EE cell phone 910-262-5789**
## 14221                                                                                                                                                                                                                              Carpel tunnel syndrome to right wrist
## 14222                                                                                                                                       Carpet being cleaned & was wet stepped off carpet onto tile, slipped fell and twisted back trying to catch fall. Back strain
## 14223                                                                                                                           Carpet had been layed down over an approx. 2 inch hole. While walking across carpt employees high heel went through carpet causing fall.
## 14224                                                                                                                                                                                   Carpet in hallway was wet and slipped when stepped onto breakroom hard floor. ()
## 14225                                                                                                                                 Carpet in office was wet from being shampooed, walked into office, and slipped and fell landing on r shoudler and injurying l foot
## 14226                                                                                                                                                        Carpet was wet when EE approached stairs. EE fell and tumbled down steps. EE injured back and buttocks area
## 14227                                                                                                                              Carried I foot step ladder up two flightso of stairs. As climbed lader to gain access to pilot house roof felt pop in groin region ()
## 14228                                                                                             Carried binding machine to reade office, handle came off and the machine dropped, left hand was under the machine and was twisted as the machine fell to the ground ()
## 14229                                                                                                                                                                               Carried discharged patient's suitcase down stairs and then experienced pain in chest
## 14230                                                                                                                                                                Carried ladder & head lamp purchased for consumer, stiffness and fatigue EE # at work 919 733 5897.
## 14231                                                                                                                                                                                                Carried pampers to dumpster. When put them up in dumpster hurt back
## 14232                                                                                                                                                                                                      Carried patient's luggage to the dormitory, no cart available
## 14233                                                                                                                                                                                                             Carried vacuum cleaner down stairs strained upper back
## 14234                                                                                                                  Carring a box of medication when the elevator dooropen, there was a large tray on the floor. View was obstructed stepped on tray, it slid, I fell
## 14235                                                                                                                                                                                                            Carring clothes down the steps missed last two steps ()
## 14236                                                                                                                                                                   Carring length of stell pipe, fingertip bruised when setting down pipe/contusion to right finger
## 14237                                                                                                                         Carroll tried to remove dress from inmate's neck. Inmate assaulted carroll causing a bruise & bitingcarroll's right thumb and ring finger.
## 14238                                                                                                                                                                                         Carry blackline on wildfire, set lit drip torch down to adjust radio. Fuel
## 14239                                                                                                                                                                                                                     Carry box and door close causing shoulder pain
## 14240                                                                                                                                                                                                                     Carryiing a desk down the steps and slipped ()
## 14241                                                                                                                        Carryin a plate of food to cart, slipped on something that was spilled on floor, fell injuringback. Lega bent behind her causing back pain.
## 14242                                                                                                                      Carrying 2 bags of trash down stairs from 2nd to 1st floor, fell down last step landed skinning knees & struck feet on steps. Foot/knee/back.
## 14243                                                                                                                                                                                            Carrying 2 broken toilets from 4th floor and pain developed in his back
## 14244                                                                                                                                                                 Carrying 2 hss sections in basement. Caught left pinky finger in between steel and stud welder. ()
## 14245                                                                                                                                        Carrying 2 large bags of packages to be mailed, lost footing on ledge & fell on rt arm & hip. Injured rt hand, elbow & hip.
## 14246                                                                                                                                                                                                Carrying 3 pans & slipped on drain, fell on her knee, face hit pans
## 14247                                                                                                                           Carrying 4 boxes of individual salad dressings when she tripped over some bread racks sitting in floor w/right foot, causing her to fall
## 14248                                                                                                                                                                                             Carrying 5 gal. Bottle of water up stairs, stepped on bottle & fell ()
## 14249                                                                                                                                                                                                                       Carrying 5 gallon paint buckets to 3rd floor
## 14250                                                                                                                                                                                                     Carrying 50lb basket of fish injured back while lifting basket
## 14251                                                                         Carrying a 12x12x2 ft wooden block down slope, slipped on wet concrete and fell against bridge trapping left hand in between bridge and block. List injureis as: left hand thumb broken ()
## 14252                                                                                                                                                                              Carrying a 75 lb buffer up the stairs in leatherwood dorm and strained right shoulder
## 14253                                                                                                                                                                                      Carrying a bed which fell apart causing employee to fall backwards onto back.
## 14254                                                                                                                                                                                                                Carrying a book&bag down stairs slipped and fell ()
## 14255                                                                                                                                                                           Carrying a box of civil records; turned to dodge people and something in knee popped. ()
## 14256                                                                                                     Carrying a box of drug screen supplies down to her office in the basement. When going down the stairs, she missed the last step and fell, hitting her knee. ()
## 14257                                                                                                                                                                                                              Carrying a box of paper for copying training material
## 14258                                                                                                                                                                                            Carrying a box with form on top of box. Form slid and corner cut eye ()
## 14259                                                                                                                                                                  Carrying a bucket of rock-shoulder popped and started burning. List injuries as: left shoulder ()
## 14260                                                                                                                                                                         Carrying a bucket of water down steps & EE slipped& fell straining chest wall and low back
## 14261                                                                                                                                                                Carrying a buffer machine on the steps when he suddenly heard a pop and he said he groaned in pain.
## 14262                                                                                                              Carrying a form & shoe got caught on a matt insidedoorway. She became off balance and fell forward hitting lft upper arm/shoulder. Finger caught wght
## 14263                                                                                                                  Carrying a full backpack water pump on back, whileassisting with fire control on steep mtn slope. Back pain/verterbrae/pinch nerve/rt shldr/hand.
## 14264                                                                                                                                                          Carrying a hard drive to the office from the trunkof the car, soreness on right side of neck and shoulder
## 14265                                                                                                                                                                  Carrying a heavy scaffolding system from 3rd floorto parking lot to load truck injured lower back
## 14266                                                                                                                    Carrying a laptop pc and the pc was slidding out of right hand lacerated left forearm on a scrapper carrying while trying to steady the laptop.
## 14267                                                                                                                                                               Carrying a large light fixture bumped into doorway-lacerated l. Hand between index finger and thumb.
## 14268                                                                                                                                                                                                                 Carrying a pan across wet floor, slipped and fell.
## 14269                                                                                                                 Carrying a table, tip of shoe was caught, tripped & fell on sidewalk, landing on knees, hands & armsinjured shoulders, mid. Finger, wrist & knees.
## 14270                               Carrying a tool bag and laptop down mt mitchell trail from the building to the parking lot. Due to the steepness of the hill and the weight he was carrying he took a wrong step and felt a pull in his right upper thigh region. ()
## 14271                                                                                                                                                                                       Carrying a/c grate to truck and put on the back oftruck; strained lower back
## 14272                                                                                                                                                                                                  Carrying an aggressive patient to restraints, twisted right wrist
## 14273                                                                                                                                                                                                 Carrying and lifting boxes into bldg pulled musclein left shoulder
## 14274                                                                                                                                                                            Carrying automobile tires by hand. Worker stepped on side of tire and twisted ankle. ()
## 14275                                                                                                                                                    Carrying battery when battery acid spilled on his stomach and left wrist - minor burn to stomach and left wrist
## 14276                                                                                                                                                                                                        Carrying binders for mtg-walking down stairs & fell on back
## 14277                                                                                                                                                                            Carrying blankets down steps & felt pain in his lower back. Bundle weighed 50 to 60 lbs
## 14278                                                                                                                                                                                                                       Carrying blocks up a ladder onto scaffolding
## 14279                                                                                                                                                             Carrying bolt cutters on right shoulder and while taking it off used left arm and felt something tear.
## 14280                                                                                                                                                                           Carrying book to diet line, inmate pushing food cart collided with her striking her hand
## 14281                                                                                                                                                                                                    Carrying books from class to class has caused pain in left arm.
## 14282                                                                                                                                          Carrying bottle of germiscat(cleaning)spray-handlebroke, bottle fell, germiscat sprayed into left eye. Chemical/left eye.
## 14283                                                                                                                                           Carrying bottles of chemicals in arm, accidentaly squeezed bottle & it squirted into his eye & some went into his mouth.
## 14284                                                                                                                                                                                                                          Carrying box and missed step lest footing
## 14285                                                                                                                                Carrying box of food from program in friday bldg room. Food shifted causing left ankle to turn. Fell down two steps spraining ankle
## 14286                                                                                                                                                                                     Carrying box of forms. Bottom broke & forms fell out. Tried to catch with hand
## 14287                                                                                                                                                                            Carrying box of manuals/materials for training over the weekend left neck/shoulder pain
## 14288                                                                                                                                               Carrying box walking down hwy, lost balance, stumbled, fell forward, landed on box/r knee, painlower back & shoulder
## 14289                                                                                                                                                                                                     Carrying box with student files in them, hurt low part of back
## 14290                                                                                                                                                                                                                                            Carrying box, hurt back
## 14291                                                                                                                     Carrying boxed lunch for 12-15 people, misstepped & the box of bottled water on top shifted, shifted suddenly to keep from dropping everything
## 14292                                                                                                                                                                                                                                       Carrying boxes and equipment
## 14293                                                                                                                                                                         Carrying boxes and when staff got box from employee the strings from hoodie hit right eye.
## 14294                                                                                                                                                                                                                    Carrying boxes full of files and knee popped ()
## 14295                                                                                                                                                                                            Carrying boxes into office and tripped into desk, jammed left thumb. ()
## 14296                                                                                                                                                                                               Carrying boxes of files to relocate to storage area and injured back
## 14297                                                                                                                                                                                                                               Carrying boxes of files. Lower back.
## 14298                                                                                                                                                                                    Carrying boxes of state test materials from campus life bldg. To manor bldg. ()
## 14299                                                                                                                                                                                             Carrying case of light tubes down south stairwell lt foot rolled under
## 14300                                                                                                                                                                                                                                Carrying cases of paint and tripped
## 14301                                                                                                                                                                      Carrying cash register into processing room when it slipped out of hands & fell on right foot
## 14302                                                                                                                                                                                              Carrying ceiling tiles from building, wind blew tile debris into eyes
## 14303                                                                                                                                                                                                Carrying charts to ward. Felt pull in left flank area & upper back.
## 14304                                                                                                                              Carrying coffee descending down spiral staircase in elliott center misstepped on final couple of stairs & fell, twisted lt ankle/foot
## 14305                                                                                                                                                                                                             Carrying computer monitor to state gov't station wagon
## 14306                                                                                                                                                                            Carrying consumer groceries into kitchen when she slipped and fell twisting her l ankle
## 14307                                                                                                                                                                                                                                    Carrying copier to second floor
## 14308                                                                                                                                                   Carrying core drill, tripped over equipment in hallway & fell. Core drill fell on top of employee's right wrist.
## 14309                                                                                                                         Carrying dinner trays to top of stairs for feeding. As he was walking up the stairs, felt something in lower abdomen pull causing pain. ()
## 14310                                                                                                                 Carrying display from basement floor to elevator out of elevator over to annex bldg when picked up case w/both hands pull in back left neck muscle
## 14311                                                                                                                                                                                                                                                     Carrying doors
## 14312                                                                                                               Carrying drinks to 2nd floor, got to cell door and prepped tray against the wall, tray slipped leaving all the weight on his arm. Neck/shoulder hurt
## 14313                                                                                                                                                                        Carrying equipment from field site, tripped on barbed wire and landed on ankle and knee. ()
## 14314                                                                                                                                                                         Carrying equipment through woods to field site. Missed step on stump & twisted right knee.
## 14315                                                                                                                                        Carrying files. Tripped over rubber cover on wireson floor. Keep files from hitting hand floor. Hand & files hit right hand
## 14316                                                                                                                                                                           Carrying food opening door with elbow and door closed on foot, and fell on right knee ()
## 14317                                                                                                                                                                                                         Carrying food trays at feeding on north side to inmates ()
## 14318                                                                                                                                                                                      Carrying food trays down stairs and left foot slipped and fell on left kneee.
## 14319                                                                                                                                                                                        Carrying food trays down steps slipped at bottom of steps felt pop in back.
## 14320                                                                                                                                                                                           Carrying food trays up stairs on eassex unit when left ankle twisted. ()
## 14321                                                                                                                                                                                                 Carrying food trays up stairs. Felt something pull in my chest. ()
## 14322                                                                                                                                                                                          Carrying food trays up steps on segment east side and his back popped. ()
## 14323                                                                                                                 Carrying food trays upstairs, when the trays beganto fall. While holding cart up injuried lower backemp set to return 9/10/08 her sch. Day to work
## 14324                                                                                                                                                                                                                  Carrying gun in a hoister on rt side causing pain
## 14325                                                                                                                                                                                                         Carrying heavy box of books from bldg, pulled groin muscle
## 14326                                                                                                                                                                                                                       Carrying heavy boxes fm poarch to warehouse.
## 14327                                                                                                                                                                                                                                           Carrying heavy trash bag
## 14328                                                                                                                                                                                  Carrying inmate after inmate stated he twisted his knee (inmate on the ground) ()
## 14329                                                                                                                                                                                 Carrying inmate files to the bus. Picked up files and pulled shoulder and neck. ()
## 14330                                                                                                                                  Carrying inmate jackets to desk, stumbled and fellby cubicles, hit head & right knee & fell to floorco-worker helped to her feet.
## 14331                                                                                                                         Carrying interpretive box onto the ship. Tripped going down the gangway steps & hit his tooth & lipon box knocking tooth out. Lip & tooth.
## 14332                                                                                                                 Carrying items that client's family member brought for birthday party; came by door and stepped into a wet puddle on floor and fell on right knee.
## 14333                                                                                                                                                                                          Carrying items up steps, foot slipped off step, hit knee on step and fell
## 14334                                                                                                                                                                  Carrying large cage, leg lost grip and log fell onthe middle of right hand smashing middle finger
## 14335                                                                                                                 Carrying large wooden table in lobby, student set table down before I was ready and experienced a slight pull, felt slight tweak in lower back. ()
## 14336                                                                                                                                                                                           Carrying loaded food rack up stairs, felt slight twinge 3/4 of way up ()
## 14337                                                                                                                                                                                                                                 Carrying mail and box to building.
## 14338                                                                                                             Carrying mail basket from master control, slipped and fell landing on his back. Tile floor was in process of having old wax stripped off. Slick floor.
## 14339                                                                                                                                                          Carrying mail from car when lt foot slipped on thebricks in front of the cal. Fell on both hands & knees.
## 14340                                                                                                                                                                                    Carrying med jackets to hospital floor, slipped and fell trying to open door ()
## 14341                                                                                                                                                                                Carrying mop bucket up stairs-when sitting bucket down injured middle part of back.
## 14342                                                                                                                                                                                      Carrying old printer from quest lab down the hill for lab courier to pick up.
## 14343                                                                                                                                                         Carrying out training objective, started lifting &other staff did not carry his weight, pain in lower back
## 14344                                                                                                                                                                           Carrying out trash bags, down steps when her wrist became numb also tingle in left wrist
## 14345                                                                                                                                                                                       Carrying pan of biscuits slipped and fell on greasy/wet spot on the floor ()
## 14346                                                                                                                                                               Carrying parts of weight machine and hit another piece while caring and heard a pop in left knee. ()
## 14347                                                                                                                                                                         Carrying patient out of van, wheelchair patient unable to support himself. Lifted patient.
## 14348                                                                                                                                                                                  Carrying piece of equipment across street. Made bad step & slightly strained back
## 14349                                                                                                                                                                                      Carrying poles to work site and one slipped and he caught it hurting his back
## 14350                                                                                                                                                                                 Carrying portfolio w/flip charts. Felt pain in lower back & hip area on right side
## 14351                                                                                                                                    Carrying pt's laundry in to their bedroom, slipped on tube of toothpaste laying on floor, injured right wrist when bracing fall
## 14352                                                                                                                   Carrying pump and water hoses to basement of building #12 at garner road complex when he slipped on steps and fell hitting his back on the steps
## 14353                                                                                                                                                                                                             Carrying rock wind blew debris from rock into left eye
## 14354                                                                                                                                                                                                                    Carrying roughly 20-22 dinner trays upstairs ()
## 14355                                                                                                                                Carrying sedated cat, employee coughed and cart reached out scratched no warning. The cat was very mellow – not agitated at all. ()
## 14356                                                                                  Carrying several bags containing books to return to transportation building; left foot turned on rocks and leaves and EE fell forward onto knees, catching herself with hands. ()
## 14357                                                                                                                            Carrying several boxed materials to storage area across the room, when I bent over to put one box on table, felt a strain in upper back
## 14358                                                                                                                                                                                     Carrying shelves downstairs and missed the last step on stairs, twisted ankle.
## 14359                                                                                                                                                        Carrying sink & faled to see drop front building to sloop. Lost his balance and fell down steps to sidewalk
## 14360                                                                                                                                                                                   Carrying small bag up stairs-tripped at top-twist left side landing on left side
## 14361                                                                                                                                                         Carrying some items down stairs to lower level- fell forward landing down 3 wooden steps to carpeted floor
## 14362                                                                                                                                                                                                  Carrying something, walking on wet steps, slipped, fell on bottom
## 14363                                                                                                    Carrying stack of 8 food trays up stairs to top tier to feed segregated inmates strap holding together came loose, went down on r kneed to keep from falling ()
## 14364           Carrying supplies into building to conduct a class. She stepped from parking lot onto walkway & stumped toe on small part of walkway and fell forward hitting both knees on concrete and her forehead and nose on the first step going into building. ()
## 14365                                                                                                                                        Carrying supplies to another building, she stepped off sidewalk into a hole in pavement and fell on her left ankle and knee
## 14366                                                                                                                                                                                                                   Carrying supplies, unlock office door, bent over
## 14367                                                                                                                                                                                                                                                     Carrying table
## 14368                                                                                                                                                                                              Carrying the ladder on his shoulder. Pain and knot on right shoulder.
## 14369                                                                                                                        Carrying trash liner full of dirty microfiber cloth, when return to building felt pain on finger of right hand that now has a contusion. ()
## 14370                                                                                                                                                                                            Carrying trash out. Lifting trash to put in dumpster. Felt pain in back
## 14371                                                                                                                                                                                                       Carrying trash to dumpster & hit side of her leg w/trash bag
## 14372                                                                                                                                                                                      Carrying trays through gate and medal trays jammed into left side of ribs. ()
## 14373                                                                                                                                           Carrying trays up stairs snd escorting inmate-- injured right thumb and right knee, reinjured right thumb and right knee
## 14374                                                                                                                                                                                                                    Carrying tub of mail when turned knee popped ()
## 14375                                                                                                                                                                                      Carrying, raising & lowering canteen order that weighted approximately 40 lbs
## 14376                                                                                                                                                                                           Cart bumped into EE leg and dropped onto her rightfoot and twisted ankle
## 14377                                                                                                                                                                                                                          Cart came loose and hit EE on the rt knee
## 14378                                                                                                                                                                                    Cart flipped while loading into van and hand got stuck and could not get out ()
## 14379                                                                                                                                                                                                                         Cart full of trays ran over emp. Left foot
## 14380                                                                                                                                                                                                          Cart moved twisted left ankle while holding large ice bag
## 14381                                                                                                                 Cart stopped and EE got out to see why, the cart took off and EE tried to catch it. Cart dragged EE and bruised his lt knee, and hit a parked car.
## 14382                                                                                                                                                                              Carton of tomatoes slipped out of hand while trying to open carton - sprain rt finger
## 14383                                                                                                                                                                                Case of books fell on left hand which began to swell and become sensitive to touch.
## 14384                                                                                        Cassie left the classroom and was walking down the stairs. She lost her footing and fell 3-4 steps. She caught herself on the railing to keep from falling to the floor. ()
## 14385                                                                                                                             Caster of the chair popped off, tilting the chair forward. EE hit the floor face forward. Lower backknees and left ankle were affeted.
## 14386                                                                                                                                                         Cat being anesthesized for treatment. Cat struggledand got loose. Employee tried to hold cat. Cat bit hand
## 14387                                                                                                                                                                                                                      Cat bit EE on rt thumb during xray proceduce.
## 14388                                                                                                                                                                                                       Cat bit EE on the rt index finger while EE was intubation it
## 14389                                                                                                                                                                                                      Cat bit EE while restraining and returning to cage on rt hand
## 14390                                                                                                                                                                                                               Cat bite - during restraining for echo cardiogram ()
## 14391                                                                                                                                                                                                                                             Cat bite EE on rt hand
## 14392                                                                                                                                                                                                                 Cat bite to rt forearm during physical exam of cat
## 14393                                                                                                                                                                                                                 Cat jumped on his lap & clawed deep into right leg
## 14394                                                                                                                                                                                                                              Cat jumped up and scrtched my eye lid
## 14395                                                                                                                                                                                                             Cat scratch while physical examination by employee. ()
## 14396                                                                                                                                                                                                             Cat scratched and bit EE while conducting home contact
## 14397                                                                                                                                                            Cat was being restrained by student while EE pill-ed it, cat moved enough to bite fingers. Right thumb.
## 14398                                                                                                                                                                     Cat was being restrained to remove a catheter and he broke free scratching EE's hand severely.
## 14399                                                                                                                        Cat was let out of carrier by owner. Sandy restrained the cat then it bit her on the right middle finger and scratched her left forearm. ()
## 14400                                                                                                                                                            Cat was on table, not restrained. I had my arms losely around him. He was not being restrained, justbit
## 14401                                                                                                                                                                                                Cat was startled by barking dog and bit billie on right forearm. ()
## 14402                                                                                                                                                                                        Catch in lt hip while doing walking exercising w/patients at exercise mall.
## 14403                                                                                                                                                                                                               Catching a falling resident. Felt pain in lower back
## 14404                                                                                                                                                                                                                         Catching falling resident, twisted rt foot
## 14405                                                                                                                                                                     Catching turkey by ahnd to load out. Turkey wrenched lt arm & shoudler. Pinched nerve in neck.
## 14406                                                                                                                                                                                                                    Cathy slipped and fell on newly waxed floor. ()
## 14407                                                                                                                                                              Caught against inside wall of moving van when display panel shifted striking him on right templearea.
## 14408                                                                                                                                       Caught between bar gate door, door closed as EE walked through it. Caught in several minutes untildoor opened - ag # 05-2286
## 14409                                                                                                                                                                                      Caught between inmate arm and food passage door trying to restrain inmate. ()
## 14410                                                                                                                                                                                             Caught between object being moved. Right hand small finger fracture ()
## 14411                                                                                                                                                                                                         Caught falling client-client stiffened. Noted pain in back
## 14412                                                                                                                                                                                                                                Caught finger in door as it closed.
## 14413                                                                                                                                       Caught finger in door with injury to middle fingerrt hand x-ray revealed fracture to middle finger -referral to raleigh hand
## 14414                                                                                                                                                                       Caught finger in electric file stamp. Ripped off half of fingernail on 4th finger of lt hand
## 14415                                                                                                                                                                                                            Caught finger in flie cabinet drawer when closing it ()
## 14416                                                                                                                                                                                                                                Caught finger in gatehouse door. ()
## 14417                                                                                                                                                                                                    Caught finger in housing unit for the monitor fall on finger ()
## 14418                                                                                                                                                                                                                   Caught finger in ironing board and cut finger ()
## 14419                                                                                                                                                                                                      Caught finger in the door latch while walking into office. ()
## 14420                                                                                                                                                                                                                                             Caught fingers in door
## 14421                                                                                                                                                                                                                         Caught floor mat and twisted ankle/foot ()
## 14422                                                                                                                                                                                                       Caught foot in hook on laundry bag and fell hurting left arm
## 14423                                                                                                                                                              Caught foot in plastic bag that was left lying on floor. Hit right hand on wall and hit hip on floor.
## 14424                                                                                                                                                                                  Caught foot on chart rack, started to fall, caught herself w/leg twisting back ()
## 14425                                                                                                                                                                    Caught foot on pavement as riding motorcycle. Twisted foot backwards causing left knee pain. ()
## 14426                                                                                                                                                                                                                    Caught foot on steps outside of dst building ()
## 14427                                                                                                                                           Caught hand on steel while loading boat. EE was wearing work gloves. Cut left hand index finger-- two stitches required.
## 14428                                                                                                                                                Caught heel of shoe in broken pavement, fell onto street to knees, then fell straight forward hitting left rib cage
## 14429                                                                                                                                                                                                                    Caught held patient to prevent falling on floor
## 14430                                                                                                                                                                                                         Caught his hand in a pugmill machine used for mixing clay.
## 14431                                                                                                                         Caught his rt foot on floor board as he stepped to the ground with his lt foot and also twisted his knee before he could get on the truck.
## 14432                                                                                                                                       Caught in path of 2 running students. Raised her hand to protect herself when one of students ran into her bending hand back
## 14433                                                                                                                                                                               Caught in pneumatic door leading into 216 when door closed it struck his right elbow
## 14434                                                                                                                                                                                                     Caught left hand in cable of sewer machine. Bent fingers back.
## 14435                                                                                                                                                                                                            Caught left little finger on shelf bending it backwards
## 14436                                                                                                                                                                                                       Caught left middle finger in padding machine while moving it
## 14437                                                                                                                                                                                                             Caught monkey in investigation, monkey bit EE's thigh.
## 14438                                                                                                                                                                                                         Caught patient beginning to fall & felt pain in lower back
## 14439                                                                                                                                                                                                      Caught right 3rd/4th finger between chair and edge of desk ()
## 14440                                                                                                                                                                                                    Caught right hand in kitchen door injuring fingers on that hand
## 14441                                                                                                                                                              Caught right ring finger between 2 chairs when loading items in a truck. Contusion right ring finger.
## 14442                                                                                                                                                                                            Caught right third finger in door of dorm as it was closing & mashed it
## 14443                                                                                                                                                                                            Caught right thumb in floor buffer. The machine twisted her right thumb
## 14444                                                                                                                                                                                                              Caught rt hand (third finger) in door as exiting room
## 14445                                                                                                                                                                                                  Caught rt pinky finger between shelf & the door inmaster control.
## 14446                                                                                                                                                                                             Caught rubber glove in trap door while closing traps on the cell doors
## 14447                                                                                                                                                                                   Caught shoe on top of stairs and fell down 1st flight of stairs hurting lt ankle
## 14448                                                                                                                                                                                                           Caught thumb in between puller and belt on exhaust fans.
## 14449                                                                                                                                                                                                                                       Caught thumb in medical door
## 14450                                                                                                                                                                                         Caught toe of right foot on top step & fell forward striking head on floor
## 14451                                                                                                                                                 Caught toe of shoe on corner of desk, fell on left side catching self on left elbow to avoid hitting head on door.
## 14452                                                                                                                                                                                     Caught toe on the lip door threshold, causing worker to fall on right side. ()
## 14453                                                                                                                                                          Caught toe, possibly on cement crack in basement &fell forward. No known injury, report of incident only.
## 14454                                                                                                                                                                                                    Caugth falling client under her arm pits and twisted rt. Wrist.
## 14455                                                                                                                                     Caulking gun fell off ladder while moving ladder to new location, caulking gun struck EE's head which resulted in a laceration
## 14456                                                                                                                                                                                                                                Caused by breathing asbestos fibers
## 14457                                                                                                                              Caused by having to physically separate two fighting trainees grabbed one trainee and twisted to the lt to attempt to pull them apart
## 14458                                                                                                                                                 Caused by repeatitive heavy lifting of handicap inmates in & out of vehicle & carrying heavy medical/unit jackets.
## 14459                                                                                           Cc was operating a motor vehicle en route to the wilkes office. Her vehicle was rear ended and she struck her head on the headrest causing pain and muscle spasms. Subro
## 14460      Cc was visiting juvenile's home, when ft Dr Was opened dog tried to jump out. Mary reached out to stop dog from running, dog bit her on inner right wrist. Skin was punctured, bleeding occurred, and some swelling. Mary applied pressure, cleaned wound. ()
## 14461                                                                                                                                                     Cdoming down wet steps outside of building to take trash to dumpster. Slipped on steps, twisted her left ankle
## 14462                                                                                                                       Cdt to both hands and arms**total owed $887. 16** ttd overpayment $409. 20 (3/26/02-3/31/02) also didn't apply wait period 3/7-3/13 $477. 96
## 14463                                                                                                                                                         Ceburn mangum was lifting the loading ramp on a trailer after unloading it and strained his lower back. ()
## 14464                                                                                                                         Cecil was working with another employee on a prv repair, they had to grind out bolts. While using grinder, debris hit cecil in the eye. ()
## 14465                                                                                                                                                            Ceiling being opened up in bldg when piece of material came out of ceiling and went into EE's left eye.
## 14466                                                                                                                          Ceiling tile and board w/ nail fell where EE was eating breakfast and EE put rt hand up over head to protect it-tile struck EE in rt hand
## 14467                                                                                                                                       Ceiling tile at nsg sta. Leaked on carpet. Carpet was cleaned & fan dried. EE felt tightness in chest & shortness of breath.
## 14468                                                                                                                                                                                                                               Ceiling tile fell on employee's head
## 14469                                                                                                                                                 Ceiling was wet, section of ceiling collapsed on head of the EE hitting head causing a lump, neck muscles strained
## 14470                                                                                                                                                                                                              Cell cleaning c - block () slipped on liquid on floor
## 14471                                  Cell cleaning open up a trap for a inmate; when I came to f13 cell and open his trap like he ask me to so he could throw some trash out while he did that he threw liquid substance smell like urine that he threw in my face. ()
## 14472                                                                                                                     Cell door would not secure, began pulling & pushingon the door, trying to secure. Felt burning in lt shoulder, it became very painful to move.
## 14473                                                                                                                                                 Cell door would not secure, began pulling & pushingon the door. Felt burning in left shoulder & it became painful.
## 14474                                                                                                                                                                  Cell extraction as shiekld operator went into cubicle lost balance and slipped on pepper spray ()
## 14475                                                                                                                                                                                                         Cell extraction entry training trying to control inmate ()
## 14476                                                                                                                                                                              Cell extraction in segregation scratches to the inside right elbow, left side of face
## 14477                                                                                                                                                                                                               Cell extraction left hand was hit with the sheild ()
## 14478                                                                                                                                                                                                        Cell extraction right hand caught under the inmates foot ()
## 14479                                                                                                                                                                                                                Cell extraction shield pressed down on her foot. ()
## 14480                                                                                                                                                                                                                                           Cell extraction training
## 14481                                                                                                                                                                                          Cell extraction training - EE not sure what caused injury to left knee ()
## 14482                                                                                                                                                                                                    Cell extraction training - extracting sgt. Poole out of cell ()
## 14483                                                                                                                                                                                 Cell extraction training EE was shield man and fell on floor, twisted left leg. ()
## 14484                                                                                                                                                                                                                   Cell extraction training and injured right knee.
## 14485                                                                                                                                                           Cell extraction training inadverdently slammed into wall with the weight (team) of five staff members ()
## 14486                                                                                                                                                                                         Cell extraction training while holding shield bumped into other officer ()
## 14487                                                                                                                                                                                               Cell extraction training, after training he noticed leg was swollen.
## 14488                                                                                                                                                                          Cell extraction training, floor caught behind door, fell backwards, hurting right knee ()
## 14489                                                                                                                                                                                          Cell extraction training, got cut on righthand from edge of the sheild ()
## 14490                                                                                                                                                                                                                                          Cell extraction training.
## 14491                                                                                                                                                                                                      Cell extraction training. C/o kelley was hit by the shield ()
## 14492                                                                                                                                                                                       Cell extraction training; says she fell over a c/o & landed on their foot ()
## 14493                                                                                                                            Cell extraction, I/m grabbed hand jerked right hand back took off gloves noticed my right finger was crooked, felt sharp pain my my arm
## 14494                                                                                                                                                                                                     Cell extraction. Unsure what happened in a cell extraction. ()
## 14495                                                                                                                                                                                                                               Cell extraction; bitten by inmate ()
## 14496                                                                                                                                                                                                              Cell extraction; inmate ellis hill hit right thumb ()
## 14497                                                                                                                                                                                       Cell extraction; officer mccoy fell on my back during the cell extraction ()
## 14498                                                                                                                                                                         Cell extration training/ lifting and carring a body from the holding cell to the shower ()
## 14499                                                                                                                                                 Cell search of single cell #c-1; searching under mattress and was stuck by peice of metal in his right hand thumb.
## 14500                                                                                                                                                                                                                  Cell searches and injury during a use of force ()
## 14501                                                                                                                                                                                                                              Cell searches and pat down inmates ()
## 14502                                                                                                                  Cement planter was open door to rec'ving. Walking out door. Several people were standing outside door steped around people, hit planter w/lt leg.
## 14503                                                                                                                             Central prison EE experienced chest pain/tightnesswhile participating in pert team physical trainingw/ dop admin. Ems took to hospital
## 14504                                                                                                                                                                                                  Centrifuge lid support stay failed and smashed employee finger ()
## 14505                                                                                                                 Centrifuge rotor lid came off during spin. Rotor shattered the tops of culture tubes containing b. Abortus causing an aersol. Exposure b. Abortus.
## 14506                                                                                                                  Certification school trainer grabbed forearm and gave front forearm lock bringing him to his knees in a twisting motion onto cement. Strain back.
## 14507                                                                                                                                                                                   Certifying calves for feeder calf sale. Accidentlyinjected vaccine in left thumb
## 14508                                                                                                                                                                                                                             Cervical strain-left shoulder and neck
## 14509                                                                                                                                                                              Chad was walking down steps between 200 and 300 building and slipped on icy steps. ()
## 14510                                                                                                                                                                                                Chain caught her foot as she was crossing over EE fell on her elbow
## 14511                                                                                                                       Chain saw accident - cutting log the chain saw with cutting chain kicked back and cut through safety chaps and individual pants. Cut lt leg.
## 14512                                                                                                                                                                                                                         Chain saw change cut right index finger ()
## 14513                                                                                                                                                                                                                                                              Chair
## 14514                                                                                                                                                      Chair EE was sitting in broke and EE fell and hit her head, injured back and hand she recently had surgery on
## 14515                                                                                                                                                                                       Chair bottom fell and EE fell through, injuring low back and l side of neck.
## 14516                                                                                                                                                                                                                       Chair broke & EE fell to floor injuring back
## 14517                                                                                                                                                                Chair broke -EE fell to the floor, inj back/knee salary continuance EE - prev knee inj/surgery/ppd?
## 14518                                                                                                                                               Chair broke and EE fell. "iw is working - nlt " rtn apt 2-10-2005 *no form needed-med only conversion-only 19 filed*
## 14519                                                                                                                                                                                                                         Chair broke and employee fell to floor. ()
## 14520                                                                                                                                                                                                        Chair broke and she caught herself and strained her back ()
## 14521                                                                                                                                                                                             Chair broke that employee was sitting in causing her to fall on floor.
## 14522                                                                                                                                                                                                                       Chair broke that employee was sitting in. ()
## 14523                                                                                                                                    Chair broke while claimant was sitting, causing him to fall to the floor and a screw in the chair scraped him under the arm. ()
## 14524                                                                                                                                            Chair broke, EE hit another chair-to prevent fall rehab nurse- linda logan 919-772-0185 rehab-logan- pager 704-581-2819
## 14525                                                                                                                                                                                                              Chair collapsed causing employee to fall on the floor
## 14526                                                                                                                                                                                                                  Chair collapsed when I sat in it. Hurt lower back
## 14527                                                                                                                                                                                                                        Chair collasped, EE fell to floor, teaching
## 14528                                                                                                                                                                                                                                 Chair collasped, EE fell to floor.
## 14529                                                                                                                                                                                                                      Chair fell from moving hand cart on left foot
## 14530                                                                                                                                                                                                   Chair fell from under him while monitoring inmate dining room ()
## 14531                                                                                                                                                                Chair fell into lower position as I was pulling towards desk, hit left knee on shelf under desk. ()
## 14532                                                                                                                                                                                             Chair fell off of desk that EE was standing besideand it hit her ankle
## 14533                                                                                                                                                                                                                                                 Chair fell on foot
## 14534                                                                                                                                                                                                                                           Chair fell on right hand
## 14535                                                                                                                                                                                                                                   Chair fell onto right big toe ()
## 14536                                                                                                                                                                                                               Chair fell out from under EE and hit EE on the head.
## 14537                                                                                                                                                                    Chair fell over while EE was sitting in it, causingher to fall on her posterior and right hand.
## 14538                                                                                                                                                                                                           Chair flew from under her and she landed on her buttocks
## 14539                                                                                                                                                                                              Chair flipped and threw her into the floor striking head on drawer ()
## 14540                                                                                                                            Chair hit divide in hallway causing back of lower part of broda chair to hit lower left front side of leg causing redness and bruising.
## 14541                                                                                                                                                                                            Chair in break room was out of place and shoe heel caught on roller. ()
## 14542                                                                                                                                                           Chair in master control caught on coat rack and turned it over and it struck me on left side of head. ()
## 14543                                                                                                                                                                                                                      Chair in office work station causes back pain
## 14544                                                                                                                                                                                                                        Chair jerked by patient out of staff's hand
## 14545                                                                                                                                                             Chair leg broke & EE fell backwards. Injured knee/back/pain in left hip replacement. Knee/back/lt hip.
## 14546                                                                                                                                      Chair leg broke---- while sittingon chair leg broke and employee fell and impacted metal floor with back of head and body. ()
## 14547                                                                                                                                           Chair legs collapsed underneath him causing him to fall on floor injuring back. Pl-atty; thomas fitzgerald- 336-599-0211
## 14548                                                                                                                                                                                                         Chair mat slid causing EE to twist her knee and lower back
## 14549                                                                                                                                                                                                         Chair rolled and staff fell on rt buttock on the floor. ()
## 14550                                                                                                                                          Chair rolled back and EE sat down hard on the floor. Chair fell on top of EE. EE was handling records and faxing reports.
## 14551                                                                                                                                      Chair rolled backwards when employee sat down causing her to fall to floor. Right arm, left arm, left buttock are bruised. ()
## 14552                                                                                                                                                                                                   Chair rolled from under me as I tried to sit down(diag. Unit) ()
## 14553                                                                                                                                                                                                                    Chair rolled from under while attempting to sit
## 14554                                                                                                                                                                                                                 Chair rolled out from under EE causing her to fall
## 14555                                                                                                                                                                                                     Chair rolled out from under EE, contusion to back and left arm
## 14556                                                                                                                                          Chair rolled out from under EE. EE tried to catch herself by grabbing desk, r wrist scraped edge causing bruise to wrist.
## 14557                                                                                                                                                    Chair rolled out from under her while sitting down and missed the chair and fell and hit her head on a bookcase
## 14558                                                                                                                                                                                                              Chair rolled out from under her; back, head, buttocks
## 14559                                                                                                                                                                                                                  Chair slid and employee fell and hit the desk ()f
## 14560                                                                                                                                                                                              Chair slid out from under EE and she fell on her right hand and knee,
## 14561                                                                                                                                                                                                   Chair slid out from under EE causing EE to hit floor, contusions
## 14562                                                                                                                                                                                            Chair slid out from under, causing her to fall to floor on buttocks. ()
## 14563                                                                                                                                                                            Chair slipped back while sitting down, put hand down to break fall, hurt wrist---right.
## 14564                                                                                                                                                                             Chair slipped from under EE & fell to floor. Pulled back an hit head on computer table
## 14565                                                                                                                                                                                                    Chair slipped out from under him. Hitting jis leg on the chair.
## 14566                                                                                                                     Chair slipped out from under me. I hit my head on desk causing large bump with alot of swelling. Also bruised both arms and right shoulder. ()
## 14567                                                                                                                                  Chair slipped out from under the EE when she went to sit down and caused her to fall on her left hip and both elbows. Contusions.
## 14568                                                                                                                                                                                       Chair slipped while EE participating in tx therapymeeting and fell on floor.
## 14569                                                                                                                                                                                     Chair staff was sitting in collapsed causing her to hit her head on the floor.
## 14570                                                                                                                Chair started to tilt, she proceeded to fall from chair, striking head on right side... Falling to floor, contusion head, shoulder, waist, buttocks
## 14571                                                                                                                                                       Chair threw her in the floor. Community immediate care center sent her to granvile medical center (hospital)
## 14572                                                                                                                                                                                                                    Chair tipped over and employee fell to floor ()
## 14573                                                                                                                                                                                                                            Chair tipped over when I began to stand
## 14574                                                                                                                                                                 Chair titled over and there was no where for me to grab hold to fell between the chair and desk ()
## 14575                                                                                                                                                                                 Chair tripped over on side I hit head shoulder hip and chain and fell to the floor
## 14576                                                                                                                                                                                                                                  Chair went from out from under EE
## 14577                                                                                                                                                                                                                Chair went out from under EE as he was sitting down
## 14578                                                                                                                                                     Chair with casters slipped out from underneath himand he fell against a copier and then on the concrete floor.
## 14579                                                                                                                                                                                                                     Chair with roller, slipped from underneath me.
## 14580                                                                                                              Chairs have rollers on them. When EE went to sit down, chair rolled out from under her, EE fell on floor. Fracture coccyx, numbness/tingling left leg
## 14581                                                                                                                  Chancellor was carrying some folders and paper, used the stairwell, slipped and fell backwards, bounced down the stairs and hurt his back & side.
## 14582                                                                                                                                                                               Changed cages, reaching up to remove cages from top of a rack. Injured lft shoulder.
## 14583                                                                                                                                                                                  Changed patient and laid down-started to lunch and felt like going to be sick. ()
## 14584                                                                                                                    Changed resident-sat resident down in chair to brush teeth-resident grabbed left arm with both hands and twisted-pain from l elbow into hand ()
## 14585                                                                                                                                                                         Changed work stations and increased typing and sitting 8 hours. Left arm, shoulder & neck.
## 14586                                                                                                                                                                                                                               Changin client-experienced back pain
## 14587                                                                                                                       Changing a broken chemical line, liq laundry cleaner. The line had some break in it when EE twisted the line around it came out and onto him
## 14588                                                                                                                                                         Changing a patient & he was resistive. Patient wouldn, t stand up straight. Hurt my back assistingpatient.
## 14589                                                                                                                                                                                                     Changing a patient, and felt strain in lower rightextremities.
## 14590                                                                                                                                                                                                                 Changing a resident-resident stepped on r foot. ()
## 14591                                                                                                                                                                                                              Changing a room of animal cages, right wrist and hand
## 14592                                                                                                                                                                                                           Changing air filters on ladder lots of overhead work. ()
## 14593                                                                                                                                                                               Changing an air filter and pulled the cage open getting a piece of metal in his hand
## 14594                                                                                                                                                                                                        Changing ballast & burned brittlewire insulation got in eye
## 14595                                                                                                                            Changing battery on clock. Standing in chair getting clock down, chair slipped & employee fell on counter top & injured right shoulder.
## 14596                                                                                                                                                                                                                                   Changing belts on stocking truck
## 14597                                                                                                                                      Changing blade on floor machine to dry up some water that had spilled, slipped/fell on wet floor, contusion to rt leg, lt arm
## 14598                                                                                                                                                                                        Changing blades on mower and wrench slipped and smashed finger to the floor
## 14599                                                                                                                                                                                                                                                     Changing cages
## 14600                                                                                                                                                      Changing ceiling tiles - a tile fell and hit him on the head, he lost his balance and fell off of the ladder.
## 14601                                                                                                                         Changing chlorine cylinder @ vista point treatmentplant & and a small amount of chlorine leaked out of the cylinder and was inhaled by EE.
## 14602                                                                                                                                                                Changing client in bed with rail lowered staff got foot caught in protective padding on bed rail ()
## 14603                                                                                                                                                           Changing client in bed; turning from side to side felt pain in right wrist after turning client over. ()
## 14604                                                                                                              Changing client on bed and rolling client onto left side; felt a pop in lower back and hip area. Sore and tightening up; strain/pop in back/hip area.
## 14605                                                                                                                                                                     Changing client pulled adhesive off depends it popped off and sprayed stool on staff's face ()
## 14606                                                                                                                                                                                                                Changing client's diaper and adjusting her in chair
## 14607                                                                                                                                                                                                      Changing client's shoes-looked up & client poked emp in eyes.
## 14608                                                                                                                Changing client, client hit EE with diaper, EE leaned backwards to prevent client from hitting again and noted pain in neck radiating into buttocks
## 14609                                                                                                                                                                                               Changing client- client kicked EE in left knee. Contusion left knee.
## 14610                                                                                                                                                     Changing client-placing client back into wheel- chair when chair moved and ran over emp big tod, breaking nail
## 14611                                                                                                                                                                                                   Changing client. Cleint grabbed emp. Left thumb & bent backwards
## 14612                                                                                                                                                                              Changing client. EE opened up disposable diaper and fibers from diaper flew into face
## 14613                                                                                                                Changing client; started to move client from side to side. Cliented tighten up while EE trying to turn client, EE felt pressure or pop in chest. ()
## 14614                                                                                                                                           Changing co2 tank & had propped up counter when someone came by & bumped access door causing it tofall & hit his lt side
## 14615                                                                                                                                                                          Changing compactor on ac unit. Right leg touched what was behind wire conduit. It was hot
## 14616                                                                                                                                                   Changing compresor was starting up unit something blew in eye was wearing safety glasses also using coil cleaner
## 14617                                                                                                                                                                                                          Changing dressing on resident. Resident bit her onher arm
## 14618                                                                                                                                                           Changing filter on reverse osmosis unit when pipe wrench slipped off filter housing, stricking EE in jaw
## 14619                                                                                                                                                                                                        Changing fitting on steel hydraulic line, line sliced thumb
## 14620                                                                                                                                                                        Changing five gallon office water cooler all weight was being balanced by extended left arm
## 14621                                                                                                                                              Changing flat tire, picked up flat tire to put it in back and felt sharp pain in lowr back that wentdown into EE legs
## 14622                                                                                                                                                                                                  Changing hvac filter on joof of isnn bumped head on steel beam ()
## 14623                                                                                                                                                                 Changing individual and he snatched away from staff and pulled arm that had a surgery 6 mos ago ()
## 14624                                                                                                             Changing inmate's dressing. Stuck finger with metal clip from dressing, drawing blood. Inmate has infection in foot, draining on dressing being remove
## 14625           Changing irrigation hydrant heads with 4 ft. Aluminum pipe wrench. In order for hydrant head to break loose the pipe wrench has to be hit with a hammer causing silver of metal on wrench handle. When picked up the wrench silver went into his hand ()
## 14626                                                                                                                                                                                                Changing lawn mower blades, blade slipped, cuttingthe right forearm
## 14627                                                                                                                                                                                                                       Changing light bulb and it broke off in hand
## 14628                                                                                                                                                                                                  Changing light bulb glass cover cutting hand. Cuts on both hands.
## 14629                                                                                                                                                                                                                                      Changing light bulb in offcie
## 14630                                                                                                                                                          Changing light fixture in hallway, felt a slight prickling sensation under left eye, swelling and hurting
## 14631                                                                                                                                                                       Changing linen pad, pt hit EE on the right side of EE's face (eyebrow area) scratching EE ()
## 14632                                                                                                                                                                                                             Changing mouse cage when got some cage bedding in eye.
## 14633                                                                                                               Changing oil on boiler and while removing gum fromboiler makde contact with replacement gum which was placed on cart and replacement - bruiseed foot
## 14634                                                                                                                                                                                                             Changing oil on leaf blower. Struck hand on sharp edge
## 14635                                                                                                                                                       Changing out a bad capacitor, EE took capacitor off & a hot oil type substance came out & went into his eyes
## 14636                                                                                                 Changing out trash 3 yarder at jefferson apartment when 3 yarder was moved the wrong way. I pulled it back the right way when I felt a pop in my left shoulder. ()
## 14637                                                                                                                                                 Changing over from rover 1 to tower 1 and when getting out of vehicle stepped wrong and twisted his lower back. ()
## 14638                                                                                                                                                                                         Changing paper on exam table when table end fell on right middle finger ()
## 14639                                                                                                                                                                                                                                  Changing patient & patient jerked
## 14640                                                                                                                                                                                      Changing patient and patient became resistive causing EE to jam his hand back
## 14641                                                                                                                                                                                                                                    Changing patient in shower room
## 14642                                                                                                                                                                                                                           Changing patient scratched l. Forearm ()
## 14643                                                                                                                                                                             Changing patient-holding bottom half up to clean and felt pain in l. Side mid back. ()
## 14644                                                                                                                                                                                                            Changing patient-patient scratched l. Wrist and arm. ()
## 14645                                                                                                                                                                                                                       Changing patient-scratched on r. Forearm. ()
## 14646                                                                                                                                                                                     Changing patient-stepped back and slid on clothes-fell-pulling r. Mid back. ()
## 14647                                                                                                                                                                                      Changing patient. Patient became resistant. Grabbed EE's wrist and twisted it
## 14648                                                                                                                                                                                 Changing position of drying racks & back fell down. Rack struck top of right wrist
## 14649                                                                                                                Changing post from c2 to ghi and was coming out of c2 down steps to gate and missed 3rd step from bottom, slipped down on bottom and lower back. ()
## 14650                                                                                                                                                                                                                             Changing pt diaper. Something bit leg.
## 14651                                                                                                                                                                                                                Changing pt's diaper, urine splashed in left eye ()
## 14652                                                                                                                                                                                                                              Changing pump in 269 water burned arm
## 14653                                                                                                                                                                                                            Changing racks when a pain in rt wrist started to hurt.
## 14654                                                                                                                                                                                               Changing resident & noticed bump on right wrist that was very tender
## 14655                                                                                                                                                                                                                          Changing resident & pulled right shoulder
## 14656                                                                                                                                                                                                        Changing resident and felt sudden pain in back andshoulder.
## 14657                                                                                                                                                                                                              Changing resident and resident fell back on EE's hand
## 14658                                                                                                                                                                                                               Changing resident and somehow abraded r. Forearm. ()
## 14659                                                                                                                                                                                             Changing resident when rolling him, staff felt pain in right shoulder.
## 14660                                                                                                                                                                             Changing resident's brief-bent down to pull pants up-felt burning pain in low back. ()
## 14661                                                                                                                               Changing resident's diaper. Turned flat to fasten it. He took his left fist and punched my eye glasses which hit me in my right eye.
## 14662                                                                                                                                       Changing resident, in bathroom, resident gripped employee's r hand, tightly, for approx. 5 minutes-upon release note pain ()
## 14663                                                                                                                                                                                                            Changing resident, resident resisted and finger popped.
## 14664                                                                                                                                          Changing resident, rolled him toward me, he started to fall from bed. Tried to catch him and felt pull in right shoulder.
## 14665                                                                                                                                 Changing resident, trying to pull him over on back to change him. On positioning thumb pulled back & EE felt sharp pain up his arm
## 14666                                                                                                                                                                                                          Changing resident- resident kicked in r. Upper eyelid. ()
## 14667                                                                                                                                                                                              Changing resident-became agitated-grabbed r. Forearm and scratched ()
## 14668                                                                                                                                                                                          Changing resident-resident grabbed left hand and bent left thumb back. ()
## 14669                                                                                                                                        Changing resident-resident scratched/opened incision line on l. Wrist ( incision due to surgery, had healed) with nails. ()
## 14670                                                                                                                                                Changing residents clothes and resident jerked. Injured back-while transferring resident from sower from bed to bed
## 14671                                                                                                                                        Changing residents clothes-on left side of resident-jerked/slung employee resulting in pain in r. Arm/shoulder and neck. ()
## 14672                                                                                                                                                                                            Changing rinse aid for dishes, solution splatteredin left eye & on face
## 14673                                                                                                                                                                                                           Changing scalpel blade & stuck old blade into leftthumb.
## 14674                                                                                                                                                                                      Changing several resistive patients & started having sharp pains in her wrist
## 14675                                                                                                                                              Changing sprayer tire and put the tire rod on the sprayer platform and the rod fell and hit the head and shoulder. ()
## 14676                                                                                                                                                                                                           Changing struggling pt and felt sharp pain in lower back
## 14677                                                                                                                                                                                    Changing the in floor paint booth filters, had a sharp pain shoot up right leg.
## 14678                                                                                                                                                                                                  Changing tire and removing lug nuts and felt a pain in lower back
## 14679                                                                                                                                                                                                    Changing tire on highway after visiting client with engineer ()
## 14680                                                                                                                                                                                                             Changing tire on state vehicle when right hand wascut.
## 14681                                                                                                                Changing tires, he was loosing the lugs with a breaker bare, he used excessive force to loosen the bolts thus causing pain to his right shoulder ()
## 14682                                                                                                                                                                                                                             Changing trailer on liter squad van ()
## 14683                                                                                                                                          Changing trailers at cape fear valley hospital. Door on trailer hard to open. Felt back pull trying to open trailer door.
## 14684                                                                                                                                              Changing trailers at cape fear valley hospital. Door on trailer was hard to open. Felt back pull trying to open door.
## 14685                                                                                                                                                                                   Changing transmission in vehicle when some debris fell off vehicle into left eye
## 14686                                                                                                                                                                                               Changing trash bag and was stung by a bee, had an allergic reaction.
## 14687                                                                                                                                                                                             Changing trash bag in men's restroom cut left arm on trash can (metal)
## 14688                                                                                                                                                                            Changing trash can liners outside of building & was hit by insect on right hand finger.
## 14689                                                                                                                                                                                                  Changing water bottles, they were stacked too highstrain to chest
## 14690                                                                                                                                         Changing wheel seals on lowboy back area began to sting and hurt. This requires lifting and pullingof the tires and drums.
## 14691                                                                                                                                Changing wiring on ceiling light. Tried to hold light up and connect wires at same time, was picking up light, when felt sharp pain
## 14692                                                                                                                         Changing/cleaning patient in bed, patient was pushing very hard against me, felt pain in lower stomach, went to bathroom and saw blood. ()
## 14693                                                                                                                                                                                                             Chaning oxygen tank and twisted arm while lifting tank
## 14694                                                                                                                                        Chaning saftey netural switch on tractor, rachet gave all at once hand hit flat metal bend cutting hand middle finger nail.
## 14695                                                             Charles was cutting a downed tree out of the road. The tree had poison ivy vine all through it. Sawing tree, sprayed poison ivy all over charles's and clothes. List injury as: right and left arms ()
## 14696                                                                                                                                                                                                                 Chart fell on head; patient threw hot coffee on EE
## 14697                                                                                                                                                                                                            Chased after resident and felt pain in back afterwards.
## 14698                                                                                                                                                                 Chased patient who was fighting & when he caught student his knee gave way. Was released on 4-9-96
## 14699                                                                                                                                                                  Chasing a inmate that ran from his dorm to keep from being searched, tripped over monkey grass ()
## 14700                                                                                                                                                                               Chasing a juvenile, after an escape and stepped in a ditch and injured her left knee
## 14701                                                                                                                                                                            Chasing a suspect on foot. Jumped ditch & ran across a plowed field into a wooded area.
## 14702                                                                                                                                                                                                                 Chasing after inmate, employee twisted right knee.
## 14703                                                                                                                                                                                      Chasing client who had run out of activity room. Fell on left knee in hallway
## 14704                                                                                                                                                             Chasing escaped prisoner out of courthouse, arrested prisoner and broke rt hand while effecting arrest
## 14705                                                                                                                                                                                       Chasing fleeing suspect in foot pursuit. Jumped ditch and injured right knee
## 14706                                                                                                                                          Chasing fleeing vehicle. Rounded a curve lost control of patrol vehicle and was involved in single motor vehicle accident
## 14707                                                                                                                                                                                                                           Chasing parolee. Tripped over wire fence
## 14708                                                                                                                                                                                                                   Chasing patient, trying to escape, twisted r leg
## 14709                                                                                                                                                                                 Chasing resident that was stealing food, knee gave out. Pain & cramping left knee.
## 14710                                                                                                                                                                         Chasing runaway student when tripped over log causing injury to left shoulder when he fell
## 14711                                                                                                                                                                                       Chasing running patient. Pulled right knee & groin & poison ivy on both arms
## 14712                                                                                                                                                                                           Chasing suspect and fell into hole in wooded area where trees had fallen
## 14713                                                                                                                                                                                         Chasing suspect and slipped on curbing, causing leg to fall across curbing
## 14714                                                                                                                                                                                                 Chasing suspect and tripped going up steps and struck edge or door
## 14715                                                                                                                                                                      Chasing suspect on foot, forcing him to ground. EE chin struck suspect in back, chipped tooth
## 14716                                                                                                                                                                  Chasing suspect on foot, tripped and fell catchingbody weight on left thumb. Left thumb sprained.
## 14717                                                                                                                                                             Chasing suspect thru woods & fell in briar patch scratching face, arms, hands, legs and injuring wrist
## 14718                                                                                                                                                                                                      Chasing suspect, agent tripped & landed on r knee and r hand.
## 14719                                                                                                                                                                                             Chasing suspect, fell & hit asphalt roadway & rec'dswollen elbow & arm
## 14720                                                                                                                                                 Chasing violation on foot. Caught violator & was attempting to handcuff violator when violator broke free to grasp
## 14721                                                                                                                   Chasing violator on foot. Tripped over piece of debris in yard & fell on ground as result of this fall EE received an injury to left knee & foot
## 14722           Chasse was preparing to use drillpress; curran cautioned him that material support deck was not properly secured; chasse proceeded to use drill; as press went down, support deck separated from machine and fell across toes of chasse's right foot. ()
## 14723                                                                                                                                                                     Check & change patient became aggressive grabbed around neck-scratching both sides of neck. ()
## 14724                                                                                                                                                                                                   Check & change patient-agitated-patient scratched lower back. ()
## 14725                                                                                                                                                                                                          Check & change-hit employee with closed fist in l. Jaw ()
## 14726                                                                                                                                                                                                   Check & change-patient agitated- pulled left thumb backwards. ()
## 14727                                                                                                                                                                                                                     Check & change-patient elbowed in r. Breast ()
## 14728                                                                                                                                                                               Check & change-resident started hitting and hit employee in back and pulled hair. ()
## 14729                                                                                                                                                                                          Check & chg. Resident holding onto hands=dropped to floor-pain in back ()
## 14730                                                                                                                                                                                          Check animal cages in animal rooms & lifting bag of feed-strain right hip
## 14731                                                                                                                                                                   Check cages, moved rack over, felt wrist pop. **prev-paid ppd to iw for 27. 5%/hand on 2/28/08**
## 14732                                                                                                                                                  Check washroom on yard near rec. Area where weightlifting equipment was located, ran into one of thebars on bench
## 14733                                                                                                                                                                             Check/change patient aggressive-pushed employee back onto bed -pulled l. Arm muscle ()
## 14734                                                                                                               Checked clients blood sugar, attempting to put lancet in sharp container it was too full and finger got stuck through the glove by a used needle. ()
## 14735                                                                                                                                           Checked inmates working in back of kitchen turned to walk into kitchen, stepped on a wet mat & slip-ped & fell backwards
## 14736                                                              Checking & securing the motor pool bldg. Located in the cedar building. While trying to lock door had to squeeze between file cabinet & furniture; walking sideways to exit other doorr right knee ()
## 14737                                                                                                                                                                                          Checking a hose that was leaking and it blew out spraying water on him ()
## 14738                                                                                                                Checking a logging job and walking down a skid trail and an object flew into EE eye. Tried to rubit out & wash it out--no success. Object in rt eye
## 14739                                                                                                              Checking a puntoon boot and the metal roof collapsed and started to fall on a child. He grabbed it & strained his back due to the position he was in.
## 14740                                                                                                                                      Checking a refrigerant line when brushed against a hot gas line casuing him to jerk and hand hit fan blade cutting fingers ()
## 14741                                                                                                                                                                                                Checking and changing cages, pain in right & left hands/wrist/arms.
## 14742                                                                                                                                                                       Checking and processing cultures. Catalase testing done outside biological safety cabinet ()
## 14743                                                                                                                                                                                                      Checking around for e/f dormclosed right hand in the door. ()
## 14744                                                                                                                                                                                                      Checking behind metal in maintenance shop & something bit him
## 14745                                                                                                                   Checking blood sugar of inmates. One of 3 checked known to be hiv positive. Container not taken on cell block for disposal. Pricked right finger
## 14746                                                                                                                                                                     Checking boating activity. Holding on and wind blew something from other boat. Felt sharp pain
## 14747                                                                                                                                                                                   Checking boiler room doors heard a boom and steam particles blew in right eye ()
## 14748                                                                                                                                                                                                Checking class roster went to sit and chair rolled from under EE ()
## 14749                                                                                                                                                                                    Checking clearance when tractor blade dropped and smashed finger on right hand.
## 14750                                                                                                                                                                                                 Checking client's tube placement when client spit in right eye. ()
## 14751                                                                                                                                                                                    Checking cultures - looked at a media plate which was growing brucella canis ()
## 14752                                                                                                                    Checking curfew of probationer. Switched dimmer switch on steering column from dim to bright light& lights went out. Slammed brakes & hit ditch
## 14753                                                                                                              Checking curfews and deer ran infront of vehicle. Applied brakes but unable to avoid hitting deer. Pushed forward causing strain to neck and shoulder
## 14754                                                                                                                                                                                                                                     Checking curfews by vehicle ()
## 14755                                                                                                                                                                                                        Checking dampers on an opened dorr and something got in eye
## 14756                                                                                                                                                                                                                      Checking dining hall floor and slipped & fell
## 14757                                                                                                                                                                                                     Checking dishwasher soap pump; soap splashed into right eye ()
## 14758                                                                                                                                                                                     Checking doors to multipurpose bldg that were unlocked on backside of building
## 14759                                                                                                                                              Checking dorm doors and slipped on wet steps, land-ing on buttocks and straining wrist as she tried to catch herself.
## 14760                                                                                                                 Checking driver's card in parking lot of weigh station. EE reached into driver's vehicle to obtain card, small dog jumped from backseat and bit EE
## 14761                                                                           Checking facility perimeter, doing door check, climbing stairs. While doing facility checks, did a lot of walking and climbing. Later that night noticed right foot started swelling. ()
## 14762                                                                                                                                            Checking fence on min. Yard stepped in a drainage hole from horseshoe pit and fell. Lt hip & lumbar region lower right.
## 14763                                                                                                                                                                           Checking fence on yard & finger accidently hit razor wire & cut ring finger on left hand
## 14764                                                                                                                                                                     Checking fire doors in 42 bldg., handle was stiff, pulled down, felt something pull in back ()
## 14765                                                                                                                      Checking fisherman and had put on boots to wade tolocation, began to climb 4 inch piece of metal. E e slipped causing laceration to lt thumb.
## 14766                                                                                                                          Checking fishing license of 2 males. Pit bull was tied to tree at shoreline. After taking a few steps dog lunged and bit EE on lt forearm
## 14767                                                                                                                                                                               Checking fishing license requirements EE was bitten by a dog on lower lt calf of leg
## 14768                                                                                                                                          Checking folder and dropped paper on floor. Bent over to pick up and hit chair. Chair pushed bifocal lenses into left eye
## 14769                                                                                                                                                                                                                                                      Checking food
## 14770                                                                                                                                                                                                         Checking for ice on sidewalks. Slipped on ice and fell. ()
## 14771                                                                                                                                                                                                              Checking gates on the yard when a bug into his lt eye
## 14772                                                                                                                                                                                                          Checking gates, slipped on dry leaves, injured right knee
## 14773                                                                                                                                                                               Checking his equipment in wooden box, was reaching into box and lid fell on his head
## 14774                                                                                                                                                                      Checking in a truck at sally port gate #2. Popgate opened and hit his shin on lower gate hold
## 14775                                                                                                                                                           Checking in truck cargo, stepped up and pull up onto steering wheel with left arm and injury shoulder ()
## 14776                                                                                                                                                          Checking inmate after he had been in a fight and I got inmate blood on me near an open cut on my hand. ()
## 14777                                                                                                                            Checking inmates in during 2nd shift and hurt backwhen he lost his balance against the wall while opening the door in the kitchen area.
## 14778                                                                                                                 Checking leak in 4" valve, bumped insulation, particles fell on employee. Later employee rubbed his eye getting the particles of insulation in it.
## 14779                                                                                                                                                 Checking load of clothing in dryer. Stopped dryer. Front panel to lint trap fell forward striking his lt lower leg
## 14780                                                                                                                                                            Checking location of assets on facility. Walking on uneven ground; rolled left foot on loose gravel. ()
## 14781                                                                                                                                                                                          Checking main breaker to restore power - breaker shorted and blew out. ()
## 14782                                                                                                                                    Checking manifold on wall where chemicals are pumped to washer & some chemical leaked from manifold onto wrist just above glove
## 14783                                                                                                                                                              Checking meat in oven while cooking and juice popped onto hand and hand hit oven rack causing burn ()
## 14784                                                                                                                                  Checking north yard for contraband. Took hat off to wipe his face & when placed hat back on felt sting on right rear side of head
## 14785                                                                                                                                                                      Checking o/side perimeter & picking up tower logs from tower 5, slipped off sidewalk and fell
## 14786                                                                                                                                                                                                                      Checking offender curfew, bitten by spider ()
## 14787                                                                                                                 Checking offender curfews, exited vehicle lt side (driver)stepped on broken concrete near city watermeter. My foot was wedged between the meter an
## 14788                                                                                                                                                                             Checking on a cv pass monitoring activities with inmate and cv sponsor fell down steps
## 14789                                                                                                                                                                                       Checking on an individual, door was closing and struck arm on door handle ()
## 14790                                                                                                                                          Checking on fume hood; it was turned off. EE was exposed to chemical fumes. Woke up that night withbreathing difficulties
## 14791                                                                                                                                                                  Checking on inmate. Inmate was crying b/c of loss of her father. Spit as coughed in EE's left eye
## 14792                                                                                                                  Checking on inmates on hallway, slipped on floor. Inmates were striping the wax off floor. Trying to get towel to use on the floor next to inmate
## 14793                                                                                                                 Checking on intensive and intermediate cases with curfews. Walking up the steps at the residence my left knee gave out and became very painful. ()
## 14794                                                                        Checking on staff moving weight equipment to new location and hit the right outside part of his knee on a piece of metal piping that was sticking out on one of the pieces of equipment. ()
## 14795                                                                                                                                                                            Checking on the aftermath of an amusement ride accident. Traumatized by what he saw. ()
## 14796                                                                                                                                                                                                              Checking operation of the air handler. ()causing rash
## 14797                                                                                                                                                                      Checking outside doors in industry area when wind blew sawdust from collector into my eye. ()
## 14798                                                                                                                                                 Checking outside of bldg. Tripped over water meterbox that stuck up out of ground and was covered with grass, fell
## 14799                                                                                                                                                                                 Checking overhead storage area in dorm, lost balance.. Used lt hand to break fall.
## 14800                                                                                                                     Checking pack-out containers for enterprise laundry inmates. While turning to put one down, had a sharp stabbing pain in lower left abdomen ()
## 14801                                                                                                                                                                                                       Checking paint job, ran into door with ankle. Right ankle ()
## 14802                                                                                                                                                        Checking paperjam on copier and lower tray tumbled out of foot. Bruised right foot, contusionor right foot.
## 14803                                                                                                                                                                                Checking pool temperature, moved cord and cover, spider bite to r. Index finger. ()
## 14804                                                                                                                                                                                    Checking razor in shave prep kit. Removed top off razor and cut her right thumb
## 14805                                                                                                                         Checking restroom to see if supplies were needed entered rest room turned corner & slipped on puddle of water on floor. Landed on knee cap
## 14806                                                                                            Checking seal of caisson. Rip rap shifted under foot. Grabed caisson in order to prevent fall. Outer lip caisson cut fingers. List injury as: left hand pinky & ring ()
## 14807                                                                                                                                                                                                             Checking security doors and mashed finger on righthand
## 14808                                                                                                                               Checking security doors. Attempting to secure door & thumb of left hand got caught between stair rail & tension bar. Thumbed pinched
## 14809                                                                                                                                                                                                              Checking service line in dining hall and hit wrist ()
## 14810                                                                                                                                                                                                                                   Checking shower, slipped on soap
## 14811                                                                                                                                             Checking staff id's at t-1 when I pushed the door open when I heard a small pop and sharp pain in my right shoulder ()
## 14812                                                                                                                                                                                     Checking switch on sally port gate when his forearm got caught in razor ribbon
## 14813     Checking temperature on waterbed; bent over to see temp control and was unable to see it, EE got on the floor to see and set temperature at that time. EE was unable to get up, asked staff to help her up and they did. Later felt a pain in lower right back
## 14814                                                                                                                                                                                                                      Checking the bottom of door, punctured finger
## 14815                                                                                                                                                                                 Checking the canteen door to make sure it was locked. Pushed and hurt rt shoulder.
## 14816                                                                                                                                                    Checking the fence bent down to check loose clamp on fence EE moved hand & cut middle finger on the razor wire.
## 14817                                                                                                                                              Checking the rover equipment and when checked hand gun serial, the slide went forward pinching right index finger. ()
## 14818                                                                                                                Checking to make sure vehicles were locked. Walkedtoward van parked under port, not realizing there was a step down & fell down on both knees/hands
## 14819                                                                                                                            Checking to see if barber shop at multi-purpose building was locked when he turned door handle cut left hand between thumb & forefinger
## 14820                                                                                                                                                                 Checking to see if door was locked (it was not). As door was closing, caught left hand in door. ()
## 14821                                                                                                                                 Checking to see if there was enough product for the lunch meal. Stepped over a shelf in the middleof the floor and tripped over it
## 14822                                                                                                                                                                          Checking truck in the sallport, slipped off the step on her rt foot and twisted her ankle
## 14823                                                                                                                                                                                  Checking vehicles in/out institution in direct sunfor 2. 5 hours- heat exhaustion
## 14824                                                                                                                                                                          Checking vm messages; turned to leave desk and lt foot struck desk and EE fell on lt side
## 14825                                                                                                                                                                                        Checking window unlatched window and it fell on his finger due to no spring
## 14826                                                                                                                                                                           Checking yard and security of building slipped on chapel steps which was snow covered ()
## 14827                                                                                                                                                                                          Checking yard for metal, stepped onto pavement, slipped on rocks and fell
## 14828                                                                                                                   Checking yard gates and locks had completed checks and was returning to adm. Building while walking up the steps fell and caught self on rt hand
## 14829                                                                                                                                                                    Chef donatelli pulled his lower back when removing a large mixing bowl from the stand mixer. ()
## 14830                                                                                                                                                                               Chemcial spilled on hands whiel putting supplies up. Chemical contact on both hands.
## 14831                                                                                                                                                                                                         Chemical bottle fell off shelf and splashed EE in eyes. ()
## 14832                                                                                                                                                                                        Chemical container tilted while replacing cap and applying tape around cap.
## 14833                                                                                                                                                         Chemical contents of a bottle fell & spilled on her legs. Inside of her thighs were burned by the contact.
## 14834                                                                                                                                                                             Chemical exposure due to floor renovation, glue/solvent being used to remove flooring.
## 14835                                                                                                                                                                            Chemical from a bottle that the EE was handling dripped on his left hand causing a burn
## 14836                                                                                                                                                                                             Chemical from air conditioning repair on floor, EE slipped and fell ()
## 14837                                                                                                                              Chemical hoods were not working properly. After months EE noticed signs of respiratory infection caused by the chemicals used in lab.
## 14838                                                                                                                                                                            Chemical leaked out of bottle & soaked employee's pants, causing burn on right buttock.
## 14839                                                                                                                                                                                                                    Chemical mist sprayed in employee's left eye ()
## 14840                                                                                                                                                                                                                 Chemical reaction contact while unstopping a drain
## 14841                                                                                                                                                                                                                                  Chemical spill - injuries unknown
## 14842                                                                                                                                                Chemical splash, (bleach)a bottle of bleach droppedon floor from cabinet & the lid popped off causinga splash back.
## 14843                                                                                                                                                                                                                             Chemical splashed in eye when cleaning
## 14844                                                                                                                                                                                                                                          Chemical splashed in eye.
## 14845                                                                                                                                                                                                         Chemical splashed in r-eye while initiating research plots
## 14846                                                                                                                                                                                                           Chemical splashed onto when applying acephate pe sticide
## 14847                                                                                                                                                                                                                                       Chemical splatter, right eye
## 14848                                                                                                                                                                                      Chemical spray splashed in rt eye while spraying contact cleaner on equipment
## 14849                                                                                                                                                                                Chemical that was being sprayed by my supervisor was blown by the wind into my face
## 14850                                                                                                                                                                                                                  Chemical went into both eyes when spraying shower
## 14851                                                                                                                                                                                                  Chemicals got into right eye off spray bottle fixing to clean. ()
## 14852                                                                                                                                                                        Chemicals leaked out of his backpack sprayer onto his lower back. He became ill that night.
## 14853                                                                                                                                                                                                                       Chemicals splashed on EE while cleaning sink
## 14854                                                                                                                                                                             Chemicals splashed on employee while cleaning a window style air conditioning unit. ()
## 14855                                                                                                                                                               Chemicals were released through the barrell openinas EE attempted to remove chemicals to another ???
## 14856                                                                                                                                                                                                                                                Chicken pox on body
## 14857                                                                                                                                                             Chief probation parole officer was in crdt training when she went to get up off the floor, hurt leg ()
## 14858                                                                                                                                                                Child accidently kicked EE middle finger at joint of right hand when child turned a flip/ cartwheel
## 14859                                                                                                                                                                                                  Child jumped out of seat while having nose wiped &hit EE in chin.
## 14860                                                                                                                                                                                                                       Child pushed her into a door using his foot.
## 14861                                                                                                                                          Child student sitting in EE lap, child jumped up & backwards hitting EE in chin & lower jaw, mouth forced closed quickley
## 14862                                                                                                             Child was attempting to run from another teacher. EE attempted to stop the student from running, the student's arms were flailing and his elbow hit EE
## 14863                                                                                                                                                                                                   Child was behind donna when he bit her on the back of the leg ()
## 14864                                                                                                              Child was being evaluated for autism spectrum disorder and bit staff person who was sitting close to him. Injury to l hand below the index finger. ()
## 14865                                                                                                             Child was struggling during team control exercise began biting, kicking & pushing. Child bit thumb &caused EE to fall, hitting head on corner of table
## 14866                                                                                                             Child wstanding in swing, took ch by hand to sit in chair and child went all the way down inst of the chair, I heard my back pop. Cld nt straighten up
## 14867                                                                                                                                           Children and women who attend program have been exposed to scabies. I have had direct contact with some of the women. ()
## 14868                                                                                                                                                                                                                           Chile reached out and scratched EE face.
## 14869                                                                                                                          Chiller plants spew waste water and chemicals intothe air which are breathed in. Working on regular job in the areas around these plants.
## 14870                                                                                                               Chiller shutdown alarm system activated and employee responded to reset alarm and chiler. No hearing protection used. List injuries as: right ear ()
## 14871                                                                                                                                                                                                       Chipped front tooth, accidentally was struck by a flashlight
## 14872                                                                                                                                                                                             Chk & chg. Patient upset-rammed employee's l hand into light switch ()
## 14873                                                                                                                                  Chk. & chg. Reached w l. Hand to get cream-braced self w r. Hand-client moved foot-resulting in r. Thumb bending under r. Hand ()
## 14874                                                                                                                    Chk/chg. - redressing resident-supporting resident's weight-resident turned to sit in wc-emp. Supported- r hand caught btw. Resident and wc. ()
## 14875                                                                                                                                                                     Choked, hair pulled, pulling head back and back strained when trying to get away from patient.
## 14876                                                                                                                                        Chopping entrance to canal thru brush to gain access to canal fan boat launch to other side stuck thorns agaist 1st knuckle
## 14877                                                                                                                                                                               Chopping onions when the knife slipped off the onion and employee cut his finger. ()
## 14878       Chris attempted to pick up a small chemistry scale with 10-100 mg precision that was sitting on the back counter. He thought it weighed 5-10 lbs and tried to move it. It turned out to be 35-40 lbs because they have large internal mass to damp vibration
## 14879                                                                                                                                                     Chris was walking towards the pool gate to allow campers ot of pool. Hit top left of head on window awning. ()
## 14880                                                                                                                                                                                                                        Chronic and constant neck pain and numbness
## 14881                                                                                                                                                                                                         Chronic back and neck pain when sitting at workstation. ()
## 14882                                                                                                                                                                              Chronic heavy use of pipets and lab equipment has started some pain in hand and wrist
## 14883                                                                                                             Chronic lbp s/p partial diskectomy plus new onset l upper extremity weakness and paresthesias associate with cerfical disc herniation and some cervica
## 14884                                                                                                                                                                  Chronic over use of shoulder in carrying training material to and from office via park & ride lot
## 14885                                                                                                                                                                                                       Chronic repetitive computer work using mouse and keyboard ()
## 14886                                                                                                                                  Cien 321 was very dusty, contaminated w/chemical materials. EE felt very fatigue, coughing with sinus infections and itching eyes
## 14887                                               Cindy went into the far right bathroom stall in the 2nd floor of the orb ladies bathroom and slipped and fell. There was an oily residue on the floor due to someone spraying “air freshener” which contains oil. ()
## 14888                                                                                                                         Circumstances surrounding injury unknown to EE or staff accompanying EE where conducting quality sampling, loosened cartilage in left knee
## 14889                                                                                                                                                                               Citing cars in caph lot; tripped on ground cover and put hands out to stop(lt hand).
## 14890                                                                                                                         City of marion volunteer firefighter alleges whileassisting ncdenr on a fire, she injured her right knee when she slipped on rough terrain
## 14891                                                                                                                                                                                                                     Claim is denied - ganglion cyst from arthritis
## 14892                                                                                                                     Claimant alleges he was removing a nail from a piece of wood and grabbed the board causing the protruding nail to puncture his right thumb. ()
## 14893                                                                                                                             Claimant alleges she cleared the steps at the visitors center and stepped wrong, causing her to twist her ankle and fall on her knees.
## 14894                                                                                                                                              Claimant alleges she was reaching for an item on the stock shelves and as she turned around she fell to the floor. ()
## 14895                                                                                                                        Claimant alleges she was using a box cutter to cut-out props for an event. The blade went through the material and cut her left forearm. ()
## 14896                                                                                                                   Claimant alleges she was walking in hallway of the administrative education building when she slipped on wet floor and fell on her left side. ()
## 14897                                                                                                                                            Claimant cut his ring finger on his left hand on the stainless steel wall surrounding a light switch he was working on.
## 14898                                                                                                                                                              Claimant cut index finger of right hand when wiping around the sink area (after washing her hands) ()
## 14899                                                                                                                                     Claimant dislocated her right shoulder while participating in a three (3) legged race as part of a team building exercise). ()
## 14900                                                                                               Claimant experienced intense pain and tingling sensations in her right and left wrists while using the computer for her daily responsibilities 6 to 7 hours per day.
## 14901                                                                                                                      Claimant fell down a step while exiting a building with a lightweight box, resulting in a left foot and ankle that was bruised and fractured.
## 14902                                                                                                                                                                                        Claimant fell down the stairs and reported pain in their knees leg and neck
## 14903                                                                                                                                                                                                        Claimant fell down wet steps that had just been cleaned. ()
## 14904                                                                                                                                                     Claimant fell on a wet spot on the concrete floor resulting in injury to her left hip, right knee and back. ()
## 14905                                                                                                                                                                                                            Claimant fell on her face after making a wrong step. ()
## 14906                                                                                                                                                                                                  Claimant fell on wet steps and landed on her elbow, hip, and knee
## 14907                                                                                                                     Claimant fell while walking from her car to her building resulting in a scraped foot, bruised arms, bruised knees and soreness in her body. ()
## 14908                                                 Claimant had 3 home visits in August in a client's home that was dirty with flies and pet ferrett with fleas loose in the house. On 9/22/10 she was diagnosed with scabies that she attributes to these visits. ()
## 14909                                                                                                                                                   Claimant hit head while clearing a paper jam in the copier/fax and injured the left side of her head (temple) ()
## 14910                                                                                                                                   Claimant lifted approximately twenty (20) trash bags from a truck bed and threw them into a dumpster and felt pain in lower back
## 14911                                                                                                                                                                                      Claimant lost her balance and fell resulting in inflammation in her ankle. ()
## 14912                                                                                                                                                                 Claimant mcguire claims she experienced pain in right hand, wrist and arm while typing on computer
## 14913                                                                                                                                         Claimant missed a step, while going down steps and fell resulting in pain and soreness in her right ankle, hip and back ()
## 14914                                                                                                                                                              Claimant slammed rt. Shoulder against a concrete wall while assisting campus security with a suspect.
## 14915                                                                                                                                                                                                      Claimant slipped and fell while getting into their vehicle ()
## 14916                                                                                                                                             Claimant slipped on wet grass on a steep slope & fell resulting in a sprained left ankle and a left knee contusion. ()
## 14917                                                                                                                                                          Claimant slipped on wet tile in the women's bathroom and fell injuring her left shoulder, hip and leg. ()
## 14918                                                                                                                            Claimant stated that during christmas break her thumb, index finger and middle finger became numb after patting her daughter's back. ()
## 14919                                                                                                                                                     Claimant states she was weeding and stepped on a rake she had laid down, the rake hit her in the right eye. ()
## 14920                                                                                                                                     Claimant states that while stripping a floor with a buffer, he slipped and fell injuring his right shoulder, arm and wrist. ()
## 14921                                                                                                                                    Claimant states while performing road work during his incarceration he was injured by a chain saw causing injury to his rt foot
## 14922                                                                                                                                                                                                                                                Claimant states: ()
## 14923                                                                                                                                                                           Claimant stepped on a tack, which went through their shoe and injured their left foot ()
## 14924                                                                                                                                                                                                 Claimant stepped on uneven pavement and twisted her right foot. ()
## 14925                                                                                                                                                                                          Claimant strained left shoulder while trying to arrest a fleeing suspect.
## 14926                                                                                                                                                     Claimant suffered a second degree burn on his left hand from a hot muffler while starting a pressure washer ()
## 14927                                                                                                                                                                                                                           Claimant sustaineed injury to chest/ribs
## 14928                                                                                                                                                                            Claimant walked into the back corner of a a gator utility vehicle and hit his knee cap.
## 14929                                                                                        Claimant was adjusting the monitor height at computer station and it suddenly released causing the top to the monitor to hit my front teeth chipping the top left tooth. ()
## 14930                                                                                                                                    Claimant was being transported in a dept of corrections van when a tractor-trailer struck the van from behind. Lt arm/back/head
## 14931                                                                                                                                                                                                        Claimant was bit by what she thought May have been a spider
## 14932                                                    Claimant was bumped by another person while carrying boxes to the third floor during student move-in causing her foot to slip resulting in a sprain to her left ankle and a contusion to her lower left leg. ()
## 14933                                                                                         Claimant was covering gym floor with tarp and was injured when one of the mats came off a storage rack and struck the heel of his right foot causing swelling and pain. ()
## 14934                                           Claimant was en route to raleigh for work related meeting. I collided with a vehicle who ran a red light at the intersection of hwy 903 & hwy 50 in kenansville. I was taken by ambulance to duplin general hospital. ()
## 14935                                                                                                  Claimant was giving a fellow officer some equipment and was injured by the teeth of the k-9 officer next to him resulting in a scratch on his upper right arm. ()
## 14936                                                                                                                        Claimant was helping to lift a trailer to a van tow hitch and felt a pop in his lower back and legs resulting in weakness and stiffness. ()
## 14937                                                                                                                                       Claimant was injured by a needle stick while vaccinating a goat subcutaneously resulting in a swollen middle right finger ()
## 14938                                                                                                                                  Claimant was jarred by the mower while driving on unlevel terrain. Claimant began to feel pain the next day in his left shoulder.
## 14939                                                                                                                                                                        Claimant was kneeling down, setting up a banner when he felt a tightness in his right knee.
## 14940                                                                                                                                             Claimant was making a forced entry into an apartment to apprehend a fleeting suspect and injured his left shoulder. ()
## 14941                                                                                                                                                                            Claimant was merging on to highway 56 and was struck in the rear by another vehicle. ()
## 14942                                                                                                                                                       Claimant was moving and hauling computer server cabinets weighing 300 lbs and suffered a hernia in the groin
## 14943                                                                                                         Claimant was operating a gator motorized vehicle on campus and was struck by a pickup truck resulting in injury to the left side of her face, arm and leg.
## 14944                                                                                                                                                                                    Claimant was performing data entry and noticed pain in her left wrist and thumb
## 14945                                                                                                                                                                       Claimant was restraining patient, right hand was slammed into equipment, injuring right hand
## 14946                                                                                                                                      Claimant was returning from a meeting when a car exited a parking lot and impacted the passenger side of personal vehicle. ()
## 14947                                                                                                                                                                 Claimant was struck by a baseball while coaching a out of state game resulting in a fractured arm.
## 14948                                                                                                                Claimant was stung by a yellow jacket while driving a work truck. The claimant is allergic to bee stings and began showing swelling on his face. ()
## 14949                                                                                                                        Claimant was stung on his neck and right arm by a swarm of yellow jackets while leaf blowing at an unused house owned by the university. ()
## 14950                                                                                                                                                                    Claimant was walking down the stairs and missed a step resulting in a fall on her posterior. ()
## 14951                                                                                                                  Claimant was walking to his vehicle and unknowingly stepped in a hole covered by pine needles. He lost his balance and twisted his right knee. ()
## 14952                                                                                                                                                        Claimant was working under something & when he got out, he hit his head on a piece of plywood. Hurt head ()
## 14953                                                                                                                                                                                       Claimantfractured his right ankle when he stepped on a a step that gave away
## 14954                                                                                                                                                                                                                                     Claiming stairs (stairwell) ()
## 14955                                                                                                                                                                                                               Claims bone spur in neck caused by repetitive motion
## 14956                                                                                                           Claims injury to nerves and ligaments left thumb to wrist from repetitive motion-tearing pill packages, opening zip lock bags, using keys to open doors,
## 14957                                                                                                                                                                                                                     Claims that he contracted MRSA from patient ()
## 14958                                                                                                                                                      Claims while patting down inmates, noticed a discomfort in his back. Was extreme in short time, he states. ()
## 14959                                                                                                                                                                                                          Clamp on paper stack holder came down on left ring finger
## 14960                                                                                                                                   Claustrophobia-like panic attack-uncontrollable breathing, elevated blood pressure, seizure-like symptoms, loss of consciousness
## 14961                                                                                                                                                                                  Cleaining floor, bent down to pick up trash, head caught edge, laceration to head
## 14962                                                                                                                                                                                                                           Clean isolation room, exposed to scabies
## 14963                                                                                                                                                                            Clean mats in men's shower when she stood up felt something pop in her back. Lower back
## 14964                                                                                                                                                                                                Clean pipette broke in her hand, penetrating her right index finger
## 14965                                                                                                                                                Clean up for a staff meeting, while moving furniture, tables. Her left wrist was hurt, caught between two tables ()
## 14966                                                                                                                Clean weight room floor with scrubber machine & spin 20 upon completion while moving scrubber up ramp-storage noticed a slight pain in back muscle.
## 14967                                                                                                              Cleaner bottle fell off table caught it with left hand & weight made my upturned left hand slam against floor. Then tried to open bottle & had no sen
## 14968                                                                                                                                                                         Cleaner fell into mop wringer nad EE wrung out mopcleaner squirrted into eyes, mouth, face
## 14969                                                                                                     Cleaner had been sprayed on 9th floor around the bathroom floor and elevator perimeter. No signs were out and mary slipped when she came around the corner. ()
## 14970                                                                                                                                                                                Cleaner stored in janitorial closet caused asthma attack; extremely strong odor. ()
## 14971                                                                                                                                              Cleaner was poured into empty level-when trap was reopened vapers came out causing irritation to eyes, nose and lips.
## 14972                                                                                                                                                                                        Cleaniing solution slpashed on chin and lip when staff was dispensing it ()
## 14973                                                                                                                                                                                                                            Cleaning & rearranging boxes in freezer
## 14974                                                                                                                    Cleaning 20 refrigeration--purple substance, later discovered substance was a heavy metal irritant. Chemical splash to eye and skin irritation.
## 14975                                                                                                                                                             Cleaning a chair for mildew, mixed mildew cleaner with bleach, cause me to have difficult breathing ()
## 14976                                                                                                                                                                                                                                                 Cleaning a desk ()
## 14977                                                                                                                                                                                     Cleaning a hood and underneath the hood it is very sharp, slicing EE's rt hand
## 14978                                                                                                                                                                                Cleaning a refrigerator mistaken looked up and bumped eye on the corner of face. ()
## 14979                                                                                                                                                                                                         Cleaning a room filled with mortar dust. Left eye redness.
## 14980                                                                                                                         Cleaning a rowboat on mechanical boat lift, while lowering boat she let go of crank, under weight of rowboat crank struck right hand twice
## 14981                                                                                                                                                                                 Cleaning a window when I accidentally cut my right ring finger with the scraper ()
## 14982                                                                                                                                                                               Cleaning air/heat unit coils got coil cleaner on right leg causing chemical burn. ()
## 14983                                                                                                                 Cleaning an inmates hands that had blood on them. Inmate washed her hands- fling hands in the air todry them off -fluid hit staff face. Eye, neck.
## 14984                                                                                                                                                                                              Cleaning and fell about 2 feet from a ladder landed on r. Arm & ankle
## 14985                                                                                                                                                                                                                 Cleaning and moving 55 gallon barrels full of oil.
## 14986                                                                                                                                                           Cleaning and moving boxes in workspace and a protruding nail on the desk punctured lft hand ring finger.
## 14987                                                                                                                                                                                              Cleaning and removing wtr frm floor slipped and fell and jolted back.
## 14988                                                                                                                                                                                                                Cleaning around dumpster, metal cut lt index finger
## 14989                                                                                                                                                                                         Cleaning around log cabin exterior when bit on left wrist by fire ants. ()
## 14990                                                                                                                                                                                                   Cleaning around radiator & wrist accidently touched hot radiator
## 14991                                                                                                                                                                                               Cleaning around scrubs, picking up trash, cutting limbs, grading. ()
## 14992                                                                                                                                                                                                          Cleaning around sink and lt pinky finger jammed into knob
## 14993                                                                                                                                                                               Cleaning aroung dryer, pulled dryer out to clean behind felt something pull in neck.
## 14994                                                                                                                           Cleaning at old library spraying greased lightening cleaner; lost breath went to ross building still short of breath; worker called ems.
## 14995                                                                                                                                                                                  Cleaning away metal shavings-safety glasses were worn but metal flake entered eye
## 14996                                                                                                                                                                                                                   Cleaning bahtroom, cleaner went into my left eye
## 14997                                                                                                                                                                                                                 Cleaning baseboards. Pain to right hand and elbow.
## 14998                                                                                                                                                                                                                                Cleaning bathroom & started itching
## 14999                                                                                                                                                     Cleaning bathroom, employee bent down to clean bottom of a toilet & felt a pulling and pinching in her back ()
## 15000                                                                                                                                                                                                       Cleaning bathroom, light fixture fell on employee's head. ()
## 15001                                                                                                                                                                   Cleaning bathroom. Something flew up her pant leg & bit or stung her pulling her hand & shoulder
## 15002                                                                                                                                                                   Cleaning bathrooms stepped on soap and slipped hitting her right knee on the partition very hard
## 15003                                                                                                                                                                    Cleaning bathrooms when her nose, chest, & throat began to hurt. Treated for chemical exposure.
## 15004                                                                                                                                                                                                                    Cleaning bathrooms with chemicals- chest issues
## 15005                                                                                                                                                                                                                   Cleaning bed rail. Came down & struck left thumb
## 15006                                                                                                                                                                                                                       Cleaning bedroom-patient scratched r. Arm ()
## 15007                                                                                                                               Cleaning behind control desk to kill ants w/comet-wiped right eye. Comet residue from hand in eye caused inflmation a few days later
## 15008                                                                                                                                                                                                              Cleaning blackboard and cut right hand and forearm ()
## 15009                                                                                                                                                                                                           Cleaning blower filters and piece of trash blew into eye
## 15010                                                                                                                                                      Cleaning bottom bunk bed & raised her head to clean top & failed to move far enough to avoid bumping her head
## 15011                                                                                                                                                                   Cleaning brick sign w/ acid using brush, wind blew asid fumes into face burning mouth and tongue
## 15012                                                                                                                                                                          Cleaning brick wall with 707 and tile grout. Fumes of the chemical began to burn my eyes.
## 15013                                                                                                                                                                                                            Cleaning broken glass on window seal on chall by shower
## 15014                                                                                                                                                            Cleaning brush along the fence line in bridge forestry service, came in contact with the poison oak/ivy
## 15015                                                                                                                                                                             Cleaning buergrouth at storm drain. Brushed against infectious plant (poison ivy/oak)?
## 15016                                                                                                                                                                 Cleaning bulletin board and when speaking to other staff, staple from board popped into her mouth.
## 15017                                                                                                                                                                    Cleaning cabinet in b-4 dormitory sharp silver metal object stuck underneath right index finger
## 15018                                                                                                               Cleaning cages in an isolator of mice, standing onstool. Stepped off stool to the floor and had painin rt knee. It twisted a little. Rt knee strain.
## 15019                                                                                                                                                                                                           Cleaning cages inside isolator-right wrist began hurting
## 15020                                                                                                                                                  Cleaning canoes in boathouse when she stepped on broken tie-off cleat. Minor abrasion to bottom of her left foot.
## 15021                                                                                                                                                                                              Cleaning cart, pushed cart back, caught hand between cart and refrig.
## 15022                                                                                                                                                                                                           Cleaning ceiling light fixture, splash in face. Face/eye
## 15023                                                                                                                Cleaning chemical containing lye accidentally fell into mop bucket containing water and bleach produced vapor that produced respiratory irritant ()
## 15024                                                                                                                                                                                                                           Cleaning chemical splashed into EE's eye
## 15025                                                                                                                                                       Cleaning classrooms & getting chewing gum from chair felt some pain & har back began to give her severe pain
## 15026                                                                                                                                                                                    Cleaning client's finger with an alcohol pad when client bit EE's right arm. ()
## 15027                                                                                                                                                                      Cleaning client's teeth w/ ultrasonic scaler, client grabbed instrument and cut EE's rt thumb
## 15028                                                                                                                                       Cleaning client, changing attends, putting fittingsheet on bed right thumb struck sharp metal wire protruding from mattress.
## 15029                                                                                                                                                                                                 Cleaning client, client came up and bit employee on the rt breast.
## 15030                                                                                                                                            Cleaning cooking pot when stainless steel drain spout fell off top of pot hitting EE in foot. Fracture to right big toe
## 15031                                                                                                                                               Cleaning cooper pipe w/sanding cloth. Sanding cloth did not slide around pipe, right index finger cut on end of pipe
## 15032                                                                                                                                                           Cleaning counter when EE pants caught on the counter, she fell and hit her forehead, nose and both knees
## 15033                                                                                                                                                                                                     Cleaning counters with solution with rubber glovesand rag/hand
## 15034                                                                                                                                                    Cleaning dayroom-picked up chair to move under table. Chair slipped from emp. Hands and landed on right big toe
## 15035                                                                                                                           Cleaning debris from a trail and debris entangled and snap back striking the right hand. Resulted dislocation of right middle finger. ()
## 15036                                                                                                                                                               Cleaning dental area and reached for air/water syringe. Bur on hand, piece stuck in my left hand. ()
## 15037                                                                                                                             Cleaning dog facility. Realized he had left door to treatment room open. Dog ran by, and he turned to catch her. Slipped on wet floor.
## 15038                                                                                                                                                            Cleaning dorm rooms, picked up spray bottle with chemical, hand slipped, hit nozzle and sprayed lefteye
## 15039                                                                                                                                                            Cleaning drain from under cabinet using hand auger machine when I felt a pull in the middle of my back.
## 15040                                                                                                                                                           Cleaning duties (sweeping, vacuuming, spraying cleaning chemicals) has caused EE's right hand to go numb
## 15041                                                                                                                                                   Cleaning exhausted fan when the belt cault the endof my finger. Then pulled the skin from around thefinger nail.
## 15042                                                                                                                                                                     Cleaning exhibit w/bleach on sprayer bottle. Nozzle became clogged and bleach splashed in eyes
## 15043                                                                                                                                                                                             Cleaning exhibit. Fell bruising knee, right elbow and soreness in neck
## 15044                                                                                                                                              Cleaning feces from cell wall and door. The floorwas wet and slipped and fell catching arm on cell door. Fell on hip.
## 15045                                                                                                                                                                                                                     Cleaning fence on vindo. Exposed to poison ivy
## 15046                                                                                                                                                                                     Cleaning file room, tripped on file box, hit head on hand truck, broke glasses
## 15047                                                                                                                                                                                                                   Cleaning film processor and lifted lid six times
## 15048                                                                                                                                                                                          Cleaning floor trough in riddick labs when metal plate fell on right hand
## 15049                                                                                                                                                                                                             Cleaning garbage disposal when another EE turned it on
## 15050                                                                                                                                                                                 Cleaning garbage disposal/dish machine, cut on right hand. Was not wearing gloves.
## 15051                                                                                                                                                                                                 Cleaning guest room. Guest moved phone & she tripped over the cord
## 15052                                                                                                                                                                                               Cleaning gutters on top of chancellor house, slipped & fell on patio
## 15053                                                                                                                                                                                            Cleaning horse, horse shifted his weight causing weight to hit shoulder
## 15054                                                                                                                                              Cleaning ice and snow off state vehicle walking around to other side slipped and fell landing more on his r hand/arm.
## 15055                                                                                                                                                                         Cleaning ice machine and when I stepped down I felt a pop in left knee behind knee cap. ()
## 15056                                                                                                                                                           Cleaning in carpentry shop he got something in his left eye, which began to irritate about an hour later
## 15057                                                                                                                                                                                    Cleaning in shower room-turned to go but right foot twisted and went under leg.
## 15058                                                                                                                                                                 Cleaning inmate's teeth when scaler went through glove breaking skin. I/m mouth slightly bleeding.
## 15059                                                                                                                                                                                          Cleaning inmates wounds and was kicked in the groin and lower abdomen. ()
## 15060                                                                                                                                                                                                                     Cleaning instruments after seeing a patient ()
## 15061                                                                                                                                                                      Cleaning lab area, bent over to remove metal tablebase, experienced sharp pain in lower back.
## 15062                                                                                                                                                             Cleaning lab cabinets, bent down wiping off front when sharp pain was felt in lower back and down leg.
## 15063                                                                                                                                                                                  Cleaning lab. Corner of sheet metal on shelf cut his inner rt forearm above wrist
## 15064                                                                                                                                                                                   Cleaning leg of sofa, placed hand under sofa to wipe away a web, then was bitten
## 15065                                                      Cleaning library and told need to get rid of green chairs - went to get one from my office and pushed it to the conference room - then took chair from library to my office, felt pain while pushing chair ()
## 15066                                                                                                                  Cleaning limbs form falling tree. Was picking up limbs and stepped on a limb under the leaves and it threw balance off, struck elbow on object ()
## 15067                                                                                                                                                                                                  Cleaning men's bathroom, door closed on my left hand and wrist ()
## 15068                                                                                                                                                                                               Cleaning microtome cutter, cut from blade. Cut left middle fignertip
## 15069                                                                                                                                           Cleaning mop bucket... Aftr mopping up spilled water in lab.... Cut left left thumb on glass sliver inmop bucket wringer
## 15070                                                                                                                                                                        Cleaning mouth of client with mirror & explorer inright hand, stuck left palm with explorer
## 15071                                                                                                                                                                 Cleaning nurses station & was bit on rt-side of face unsure of what bit EE. No treatment admisterd
## 15072                                                                                                                                                                                              Cleaning off station desk with bleach which splashed into left eye ()
## 15073                                                                                                                                                        Cleaning office after renovation, the date/time stamp fell off the stand falling on employee's left foot ()
## 15074                                                                                                                                                                                                                     Cleaning oral surgery tray, stuck by needle ()
## 15075                                                                                                                                                                                                                          Cleaning out a drain line and cut hand ()
## 15076                                                                                                                                         Cleaning out accounting files & put some on floor. Picked them up thumb & wrist came in contact w/ carpet & rash developed
## 15077                                                                                                                                                                                                              Cleaning out ash urns. Bee stung her on lft upper arm
## 15078                                                                                 Cleaning out cabinets in work space, restocking necessary items. Turned around and stepped over trash cand and foot got caught in dental cords on cart. Fell to floor on knees. ()
## 15079                                                                                                                                                         Cleaning out candle was from glass candle holder candle holder broke & cut middle finger on her right hand
## 15080                                                                                                               Cleaning out contraband cabinet & lifted a small trash bag with a tatoo device needle inside, as helifted the bag the needle stuck him in rt finger.
## 15081                                                                                                                                                                    Cleaning out file cabinets--bending, reaching, lifting. Left lower back sprain & muscle spasms.
## 15082                                                                                                                                                                                              Cleaning out his room, was lifting file cabinet and twisted on him ()
## 15083                                                                                                                                                       Cleaning out lint in dryer; got up to put in trash can; as EE got up hit head on the corner of the dryer. ()
## 15084                                                                                                                                                                     Cleaning out seat of chair w washcloth-r middle finger got hung in washcloth & bent backwards.
## 15085                                                                                                                                                                                                Cleaning out steam funnel using large fan, dust blew I nface & ears
## 15086                                                                                                                                                                                                Cleaning out windows in bathroom, dust or "trash" fell in left eye.
## 15087                                                                                                                                                                                                                      Cleaning outside debris at the greenhouse. ()
## 15088                                                                                                                                                                                                       Cleaning oven in martin village sprayed oven cleanger in eye
## 15089                                                                                                                                                                                                 Cleaning pipe in engine room when rust broke off and fell into eye
## 15090                                                                                                                                                                                                                             Cleaning poison ivy from playground ()
## 15091                                                                                                                                                                Cleaning pope with drill brush and a piece of wire fm brush came off and went in to EE's right arm.
## 15092                                                                                                                                                                                         Cleaning pots with scrub pad and ajax, slipped, something went in left eye
## 15093                                                                                                                                                                                                                         Cleaning pt chair light collapsed on me ()
## 15094                                                                                                                                                                                     Cleaning refrigerator out in segregation. Pain in shoulder, arm, hip & stomach
## 15095                                                                                                                                                                                                   Cleaning resident-resident twisted away causing eeto strain back
## 15096                                                                                                                                                              Cleaning restroom and vacuuming using left hand to replace using right due to brace on right hand. ()
## 15097                                                                                                                                                                                       Cleaning restroom and while opening door, jammed thumb between wall and door
## 15098                                                                                                                                       Cleaning return air grille in gym. Was cleaning w/brush on extension pole. Had arm extended, sweeping brush side to side. ()
## 15099                                                                                                                                                          Cleaning room & was pulling map holder to roll back in it's case and map fell & hit EE on top of his head
## 15100                                                                                                                    Cleaning room down & change mice's cages. Mice cage fell om drain hole. Was holding rack up to keep animals from falling over on her & to floor
## 15101                                                                                                                                                                                                                           Cleaning room, stood up and hit head. ()
## 15102                                                                                                                             Cleaning salad bar, bent over to put up food item and turned around toward kitchen area and tripped over a rubber mat on the floor. ()
## 15103                                                                                                                                                                                                                                       Cleaning shelves in mailroom
## 15104                                                                                                                                                                     Cleaning shower & feet were wet, stepped onto waxed floor surfece. Feet slipped & fell on back
## 15105                                                                                                                                                                                                               Cleaning shower and slipped on the hump in the floor
## 15106                                                                                                                                                                                              Cleaning shower-went to throw water in shower feltpain on left finger
## 15107                                                                                                                                                                                          Cleaning sink fixture in restroom when twisted her wrist it began to hurt
## 15108                                                                                                                                                                      Cleaning solution from carpet cleaning machine, fell back against his leg causing an abrasion
## 15109                                                                                                                                                                                                                                     Cleaning solution got into eye
## 15110                                                                                                                                                                     Cleaning solution splashed in employee's eye whileshe was cleaning top part of shower curtain.
## 15111                                                                                                                                       Cleaning spider webb from underneath the officer's station. EE stated she never saw spider but noticed a red spot on rt hand
## 15112                                                                                                                                                                                  Cleaning spider webs outside colvard exit door. Noticed mark. Then small blisters
## 15113                                                                                                         Cleaning spiill microbiological media from under the autoclave, and discovered a previous spill that was not cleaned peroperly. She was cleaning spill. ()
## 15114                                                                                                                                                                                                                      Cleaning stairs, pulled something in hand/arm
## 15115                                                                                                                     Cleaning stariwell lost balance caught himself to keep his head from butting railing then felt some-thig on the back of head the next morning.
## 15116                                                                                                                                                                         Cleaning station; slipped on sheet metal and fell backwards onto bag rack and concrete pad
## 15117                                                                                                                                                                                                      Cleaning stove hood and dust or something fell into left eye.
## 15118                                                                                                                                                                                Cleaning strings from the laundry cart wheels and pulled one of the strings to hand
## 15119                                                                                                                                                                                                    Cleaning student move-out apts. Chemicals splashedin right eye.
## 15120                                                                                                                                                              Cleaning student rooms lifting bedrails, head and foot boards and moving furniture hurting upper back
## 15121                                                                                                                                                                                                                   Cleaning supply room got dust trash in left eye.
## 15122                                                                                                                                                          Cleaning tables with cleaner, mozzle on the bottle broke and the cleaner sprayed into face and right eye.
## 15123                                                                                                                                                                         Cleaning the a/c unit from behind the science building I was bit by some type of insect ()
## 15124                                                                                                                          Cleaning the bulletin board in personnel office lifted board off wall and it slipped out of my hand falling on top of great right toe. ()
## 15125                                                                                                                                                                  Cleaning the cells where the inmate set the cell on fire 06/17/2013, black ash was in the cell ()
## 15126                                                                                                                                                                   Cleaning the day room - she bent over to pick some trash off of the floor and could not stand up
## 15127                                                                                                                          Cleaning the operatory after patient treatment. Turned while seated on assistant chair, hit right knee on moble cabinet edge. Right knee.
## 15128                                                                                                                                                               Cleaning the pill cutter the razor in the cutter cut the index finger and thumb on the right hand ()
## 15129                                                                                                                                                                                                                 Cleaning the shop when spider bit his left forearm
## 15130                                                                                                                                                                                     Cleaning top of kettle pot-water on floor-slipped and fell-l. Wrist painful ()
## 15131                                                                       Cleaning tub after bathing patient-shoe got trapped in the brake on tub-floor wet-while trying to free shoe-fell backwards landing on r. Hip/buttocks- pain radiating down into r. Ankle. ()
## 15132                                                                                                                                                                                                                 Cleaning under conveyor belts. Injury to r eye. ()
## 15133                                                                                                                                                           Cleaning under furniture, stood up and struck head on tv cabinet resulting in headache and dizziness. ()
## 15134                                                                                                                                                    Cleaning up a spill from around the washing machine- moved washer and the lid slammed on index lt index finger.
## 15135                                                                                                                Cleaning up after alumni day, tripped on ramp @ kirkman house back door entrance. EE fell & hit head, causing concussion and soreness/back pain. ()
## 15136                                                                                                                                          Cleaning up after cell search. While cleaning up trash by cell g-10, I was stuck by an object in the form of a needle. ()
## 15137                                                                                                                                                                      Cleaning up after lunck. Taking dirty table clothes out of laundry area. Turned around & fell
## 15138                                                                                                                                                            Cleaning up after patient. Picked up paper bag explorer was sticking thru. Injury to right fourthfinger
## 15139                                                                                                                                                                          Cleaning up after student event, fell while going down steps, carrying a box. Left elbow.
## 15140                                                                                                                                                                                                                    Cleaning up arboritum across hull. Tick bit leg
## 15141                                                                                                                                                                                                       Cleaning up around construction site and cut finger on metal
## 15142                                                                                                                                                                           Cleaning up bags of boxes stacked on desk extension flipped about lft hit right ankle ()
## 15143                                                                                                                                                                                              Cleaning up debris from hurricane fran & came in contact w/poison ivy
## 15144                                                                                                                                                                   Cleaning up hurricane irene storm damage at office, employee came in contact with poison ivy. ()
## 15145                                                                                                                                                                                Cleaning up limbs around office. Found on right side. Became sick a few days later.
## 15146                                                                                                                                                                                  Cleaning up programming area in classroom lifted a box of records - injured back.
## 15147                                                                                                                                                                     Cleaning up shop when soemthing stung my leg. So I hit my pant leg but didn't see anything. ()
## 15148                                                                                                                                                                                                                                               Cleaning up spill ()
## 15149                                                                                                                                                                                               Cleaning up spilled water, slipped & fell. Injured rt hand & lt leg.
## 15150                                                                                                                   Cleaning up the restroom. Backed out of stall her arm brace caught on the handle causing fall *** treating lbp on this claim only*** tricia roys
## 15151                                                                                                                                                             Cleaning up tree debris, dragging brush when thorn stuck employee in right hand palmar, 4th finger. ()
## 15152                                                                                                                                                                                      Cleaning up water and slipped and fell on right knee and twisted left knee ()
## 15153                                                                                                                         Cleaning up work area placing material in boxes, lifting off table, placing container in bottom of closet. Felt pain in lower part of back
## 15154                                                                                                                                                                                 Cleaning up, coming out of dishroom, slipped and fell on rt side-shoulder and arm.
## 15155                                                                                                                                                                                              Cleaning upper h-con, inmate hit him with a broom handle in groin. ()
## 15156                                                                                                                                                                                                    Cleaning urine out of floor w/slipped & fell w/pain in low back
## 15157                                                                                                                                                       Cleaning vacated patient stall tripped over floor mat while turning mat over for cleaning landing on rt knee
## 15158                                                                                                                                                                       Cleaning vent in client's room-vent would not opentrying to pull open and felt pain in back.
## 15159                                                                                                                                                                       Cleaning wall in hallway. Speedy spray mist got on face or EE rubbed her face causing a rash
## 15160                                                                                                                                                                                                 Cleaning walls in a leaning-over position with arms fully extended
## 15161                                                                                                                                     Cleaning walls, baseboards in dietary bathroom with a squeegy/rag. When leaving work for the day noted pain in r. Shoulder. ()
## 15162                                                                                                                                                                                                                       Cleaning white boards, reaching up over head
## 15163                                                                                                                                         Cleaning window sills and turned away from window and hit the study desk top bookshelf fell over andhit against left elbow
## 15164                                                                                                                                                                                                                         Cleaning windows hand slipped and hit door
## 15165                                                                                                                                                                                                              Cleaning windows outside & was bitten on left forearm
## 15166                                                                                                                                                                    Cleaning windows with a high pressure hose. Was pulling hose out dorm and felt pain in back. ()
## 15167                                                                                                                                                                                                                       Cleaning with compounds, affected both lungs
## 15168                                                                                                                                                                                                                                         Cleaning with latex gloves
## 15169                                                                                                                 Cleaning wood debris from around tree stepped in acast iron sewer cover, broke thru w/weight lt leg & torso fell in hole. Lt ribs/back/ankle/neck.
## 15170                                                                                                                                                                                   Cleaning woodchuck cage when knelt down on piece of broken glass that was unseen
## 15171                                                                                                                                                                                                           Cleaning work area, moving tables, felt pain in his back
## 15172                                                                                                                                                                                      Cleaning wound on pt, pt hit EE's glasses causing them to abrade EE's nose ()
## 15173                                                                                                                                                                                                  Cleaning wound with saline some of the fuild splashed into lt eye
## 15174                                                                                                                                                                                                                     Cleaning-pushing machine-caused strain to back
## 15175                                                                                                                                                                                          Cleaning. EE stood up and hit forehead on cabinet. Small cut on forehead.
## 15176                                                                                                                                                                                                   Clearing brush, watering and working in heavily cleared areas ()
## 15177                                                                                                                                                      Clearing brush. Attempted to fling a large rhodoendrom branch but end struck on a tree jolting right hand. ()
## 15178                                                                                                                                                                                                Clearing debris w/tractor stepped off tractor and rolled ankle over
## 15179                                                                                                                                                                Clearing drain of blockage with chemical odor, breathing while clearing drain blockage, respiratory
## 15180                                                                                                                                                                          Clearing file out in office strained back carryingand or bending and filing client files.
## 15181                                                                                                                                                           Clearing files from cabinet, putting in a file box. Lifted box from floor to desk top, strained low back
## 15182                                                                                                                                                                                                Clearing fire line through poison oak - rash on lower legs and arms
## 15183                                                                                                                                                                      Clearing furnishings from floor to proceed cleaninit, moving bench that flipped - top rt foot
## 15184                                                                                                                                                                                        Clearing furniture and picked up table & top fell off and landed on big toe
## 15185                                                                                                                                                                                      Clearing limbs from trail & stepped into a stump hole which sprained rt ankle
## 15186                                                                                                                                                                                                        Clearing limbs/brush when slipped and fell on right side ()
## 15187                                                                                                                                                                                                      Clearing road way of debris rec'd spider bite and posion oak.
## 15188                                                                                                                                                                                                   Clearing trees & wood debris. Came into contact with poison ivy.
## 15189                                                                                                                                                                                         Clearing trees and moving equipement and injured muscles in lt elbow/ arm.
## 15190                                                                                                                                                                 Clearing trees and wood debris EE came into contact with poison ivy. Rash from poison ivy on arms.
## 15191                                                                                                                    Clearing trees downed by hurricane. Clearing tree limbs already cut off main trunk, antoher soldier cut off large limb, striking EE's shoulder.
## 15192                                                                                                                                                                                                                       Clearing trees due to hurricane---poison ivy
## 15193                                                                                                                                                                                                                       Clearing vent in cell air blew object in eye
## 15194                                                                                                                                                                                                                            Clearing weeds and was stung by bees ()
## 15195                                                                                                                                                                              Cleint asked EE to take to bathroom and client ran over EE's rt foot with wheelchair.
## 15196                                                                                                                                                                          Cleint attacked EE while using pic hold had to bring client to floor bruising both knees.
## 15197                                                                                                                                                                                                                                  Cleint bit EE on rt index finger.
## 15198                                                                                                                                                                                        Cleint grabbed EE's right arm and right leg while EE was driving golf cart.
## 15199                                                                                                                    Cleint is known for trying to get soap. EE was trying to prevent client from getting soap and clinet threw herelf on floor pulling EE with her.
## 15200                                                                                                                                                                                                                 Cleint rolled over on EE's arm during a restraint.
## 15201                                                                                                                                                                               Cleint started acting up. Client jumped up and slapped EE across right ear and face.
## 15202                                                                                                                                                                                                                              Cleint stuck finger in EE's left eye.
## 15203                                                                                                                                          Cleint threw a bowl of cole slaw across table and hit EE-while EE placing EE in pic client headbut EE in rt eye and mouth
## 15204                                                                                                                                                 Cleint threw chair at EE and started swinging at EE-EE put client in pic hold and client hit EE in ribs with elbow
## 15205                                                                                                                                                                                   Cleint trying to attack EE-EE ran to get away and hit left shoulder on the door.
## 15206                                                                                                                                                            Cleint went into behavior when asked to move to another room and grabbed EE's little finger on rt hand.
## 15207                                                                                                                                                                                                                            Clerical - writing & typing on keyboard
## 15208                                                                                                                                                                                                               Clerical computer work - carpel tunnel - both hands.
## 15209                                                 Clerk was placing paperwork in a file that was in a tub used to carry these files to court when the tub got off balance and clerk was unable to prevent it from falling. It fell on her front part of her foot. ()
## 15210                                                                                                                                           Clieng grabbed wheels of chair & spun chair around while displaying inappropriate behavior. Chair struck EE on left knee
## 15211                                                                                                                                                                                      Client accidentally bit staff's finger while staff was brushing his teeth. ()
## 15212                                                                                                                                                                                                                         Client aggitated - kicked EE x3 on r ankle
## 15213                                                                                                                                         Client aggitated in bathroom, EE holding client while 2 other dt's tried to change client, EE l arm was twisted in process
## 15214                                                                                                                                                                                                                                               Client aggression ()
## 15215                                                                                                                                                                                                              Client aggression, he kicked staff in the stomach. ()
## 15216                                                                                                                                                                                                                                          Client aggression-bite ()
## 15217                                                                                                                                                                                             Client aggressive - pulled EE hair and headbutted EE in l side of face
## 15218                                                                                                                                                  Client aggressive grabbed EE right arm and twistedcausing shoulder to pop out of socket tear to shoulder ligament
## 15219                                                                                                                   Client aggressive-assisting another staff with client. Client was kicking and hitting. EE had to lift client and pulled something in lower back.
## 15220                                                                                                                                                                                             Client aggressive-kicked EE in lt shin and punchedee in middle of back
## 15221                                                                                                                                                                                                                               Client aggrevated - bit EE on finger
## 15222                                                                                                                                                                                                   Client agiated-hitting/kicking. Hit EE with rt hand/arm in chin.
## 15223                                                                                                                                                                                                    Client agitated and attacked EE - hitting EE in left wrist area
## 15224                                                                                                                                                                                         Client agitated and combative-stomping and kicking- stomped on EE rt foot.
## 15225                                                                                                                                                                     Client agitated during oral care-scratched EE on both cheeks. Right cheek swollen w open area.
## 15226                                                                                                                                                     Client agitated- redirecting-client hit employee (w hand) on left cheek (near eye)-jerked head/neck backwards.
## 15227                                                                                                                                                                                      Client agitated-assisted to chair & client spit in EE's face (client hep. B+)
## 15228                                                                                                                                                                                                   Client agitated-assisting rn with am care-client hit in stomach.
## 15229                                                                                                                                                                                   Client agitated-grabbed EE's right hand and twisted pulling back EE's 3rd finger
## 15230                                                                                                                                                                                   Client agitated-hit EE in lip & bent rt ring finger backwards. Sprained ligament
## 15231                                                                                                                                                                                         Client agitated-shoved/pushed EE causing EE to hit right hand against wall
## 15232                                                                                                                                                                                                                       Client agitated/twisted EE'left hand/fingers
## 15233                                                                                                                                                                                               Client agitated=grabbed EE left hand and twisted EE left ring finger
## 15234                                                                                                                                                                                                                                                Client agression ()
## 15235                                                                                                                                         Client agressive with EE-EE placed client in pic hold-client tried to get up from floor and slammedee's rt hand into wall.
## 15236                                                                                                                                              Client approached EE from behind in observation area, EE turned around and client began swinging hitting EE in throat
## 15237                                                                                                                                                                                            Client asked to comply with search-became violent bitting EE on rt hand
## 15238                                                                                                                                                                                          Client asked to sit down & client reached out & hit EE's hand, left hand.
## 15239                                                                                                                                                                     Client assaulted EE and altercations ended up in the floor-EE injured left shoulder, low back.
## 15240                                                                                                                                                                                     Client assaulted EE while in dining room-resultingin bruised ribs on left side
## 15241                                                                                                                                                                                                                   Client assaulted EE. Injured mouth and top head.
## 15242                                                                                                                                                                  Client att to bite EE on hand-EE jerked hand back in process clients teeth scraped EE on rt hand.
## 15243                                                                                                                                                                    Client att to go in nursing room-EE redirecting client when client hit EE in the face with fist
## 15244                                                                                                                         Client attached EE by striking fist on rt cheek pulling hair and biting rt upper arm. Multiple contusion, face & wrist, human bite rt arm.
## 15245                                                                                                                                                                                                                                                 Client attacked EE
## 15246                                                                                                                                                                                                                       Client attacked EE - rt eye and neck injured
## 15247                                                                                                                                                                                                                        Client attacked EE and kicked EE on rt hand
## 15248                                                                                                                                                                                                Client attacked EE resulting in deep scratches to inside of rt arm.
## 15249                                                                                                                                                                                                             Client attacked EE with a broom, injuring both arms ()
## 15250                                                                                                                                                                                                                              Client attacked EE, cut over left eye
## 15251                                                                                                                                                                                                                                                Client attacked EE.
## 15252                                                                                                                                                                                                         Client attacked staff and EE trying to assit hurt rt knee.
## 15253                                                                                                                                                                                             Client attacked staff for no apparent reason while in laundry room. ()
## 15254                                                                                                                                                                                                                  Client attacked staff, injuring her left wrist ()
## 15255                                                                                                                                                                         Client attacked staff, staff seen at physician's primecare and rtw with no missed time. ()
## 15256                                                                                                                                                                                                                                      Client attacking staff member
## 15257                                                                                                                                                                                             Client attempted to bite EE and EE jerked rt arm away and struck couch
## 15258                                                                                                                                                            Client attempted to enter smock room to harm EE and schuffle broke out-EE has injury to bridge of nose.
## 15259                                                                                                                                                     Client attempted to go awol-EE assisted in carrying client back to pic-EE noted pain in rt wrist after process
## 15260                                                                                                                                                            Client attempted to grab staff's hair, staff moved head and client brushed the side of staff's face. ()
## 15261                                                                                                                                                                             Client attempted to run from bedroom, ran into EE hand, bending left ring finger back.
## 15262                                                                                                                                                     Client attempted to strike EE. EE blocked hit withright hand. Client grabbed right hand and bent it backwards.
## 15263                                                                                                                                                                               Client attempting to exit unit-hit employee in mouth-knocking head back against wall
## 15264                                                                                                                                                                         Client attempting to hide frm staff to keep from taking shots fighting EE-head, face, neck
## 15265                                                                                                                                                 Client attempting to run past staff toward door & EE tried to stop client. Scraped right arm & injured right wrist
## 15266                                                                                                                                                                              Client backhanded employee in the lft side of the mouth- loosened lft upper #4 tooth.
## 15267                                                                                                                    Client barricaded self in room, EE and 2 others pushing on door to get open-then client went into bathroom-EE and others pushing on door again.
## 15268                                                                                                                             Client becam aggressive after tryng to redirect from bathroom to anther area/client tried to bikte I swung arm back & hit against wall
## 15269                                                                                                                                                                                               Client became aggitated and repeatedly struck EE in the rt upper arm
## 15270                                                                                                                           Client became aggitated. Staff attempting to con- sole client, client grabbed EE upper arm, ripping shirt causing abrasions and bruises.
## 15271                                                                                                                                                                                                      Client became aggressive and hit EE in eye and upper forehead
## 15272                                                                                                                                                                                                                    Client became aggressive and scratched staff ()
## 15273                                                                                                                                                               Client became aggressive and starting hitting EE. Hao to put pic hold on client with coworker's help
## 15274                                                                                                                                                                                                                 Client became aggressive and struck EE in the nose
## 15275                                                                                                                                                                             Client became aggressive and struck staff with metal crutches hitting his rt knuckles.
## 15276                                                                                                                                                           Client became aggressive nad head butted EE on theside of the face and chipped one one her bottom teeth.
## 15277                                                                                                                                                                       Client became aggressive pulled EE down & spit on her fell on both knees, contusion to both.
## 15278                                                                                                                                                                 Client became aggressive staff attempted to re- direct client, client grabbed left arm & bit wrist
## 15279                                                                                                                                                                                  Client became aggressive while feeding-client grabbed EE rt hand and squeezed it.
## 15280                                                                                                                                         Client became aggressive while on arjo; nails dug into skin on left and right arm; client slapped EE a couple of times. ()
## 15281                                                                                                                                                             Client became aggressive, EE attempted to place in a pic hold, when client bit EE on the right forearm
## 15282                                                                                                                    Client became aggressive, trying to hit scratch while trying to intervene EE left pinky finger bent back at top joint, popped and was fractured
## 15283                                                                                                                                                                                   Client became aggressive-EE tried to block hits and kicks and put client in pic.
## 15284                                                                                                                                        Client became aggressive-staff intervened, while waiting for assistance-cleint grabbed & hit staff in face loosening tooth.
## 15285                                                                                                                                               Client became aggressive-started to punch emp EE blocked with rt arm client grabbed EE arm and twisted and squeezed.
## 15286                                                                                                                                               Client became aggressive. Employee intervened and client tried to hit employee. Client's hand hit employee's glasses
## 15287                                                                                                                                                       Client became agitated and ran into dining room- EE placed client in pic hold-client pushed EE intoa cabinet
## 15288                                                                                                                                           Client became agitated when asked to get up. Clientstarted swinging. EE stepped back & made awkward step, hurt left calf
## 15289                                                                                                                                                     Client became agitated when redirected and struck me in the right eye. Redness and blurred vision resulted. ()
## 15290                                                                                                       Client became agitated when soda machine took money. During behavior the client grabbed right hand squeezed and twisted it causing bruises, cut and pain. ()
## 15291                                                                                                                                                                             Client became agressive and assaulted staff-clientplaced in pr-injury to arm and neck.
## 15292                                                                                                                                                                                                   Client became agressive and bent EE's lt little finger backwards
## 15293                                                                                                                                                                                                       Client became agressive trying to hit EE. EE fell in hallway
## 15294                                                                                                                                                                                               Client became agressive, turned dresser over hitting staff in r knee
## 15295                                                                                                                                                                                                     Client became angry and threw a chair hitting EE in left knee.
## 15296                                                                                                                                                                                                   Client became argry and hit and kicked EE on the upper left arm.
## 15297                                                                                                                                                                                                  Client became combative. EE intervened and was poked in left eye.
## 15298                                                                                                                         Client became frustrated and started grabbing and scratching employee with his fingernails. Client has asd and id. Right and left forearm.
## 15299                                                                                                                                                                                                          Client became mad and struck EE several times in the face
## 15300                                                                                                                                                                                                  Client became physically aggressive at EE and had to use p. I. C.
## 15301                                                                                                                                                  Client became unbalanced when transporting to activity grp-EE att to break clients fall-feels pain in lower back.
## 15302                                                                                                                                                      Client became upset and and EE was trying to escort client back to cottage and client hit EE in the jaw, eye.
## 15303                                                                                                                                                                       Client became upset and attacked EE injuring her lower back, right buttock and right finger.
## 15304                                                                                                                                                                                                                        Client became upset and bit EE on left arm.
## 15305                                                                                                                                                                                      Client became upset and hit EE on the face-EE fell on lt leg, ankle, and knee
## 15306                                                                                                                                                                                 Client became upset and started to hit. EE was hit in mouth and bottom lip was cut
## 15307                                                                                                                                                                                                                   Client became upset at EE an hit EE on left arm.
## 15308                                                                                                                                                                             Client became upset because he didn't have enough money and hit EE on rt side of head.
## 15309                                                                                                                                                                    Client became very aggitated. Tried to calm down verbally. Client bit EE on right third finger.
## 15310                                                                                                                                                        Client began to fall out of wheelchair and EE grabbed her under arm to break fall and lowered her to floor.
## 15311                                                                                                                                                              Client began to fall, EE tried to hold on to him but he continued to fall, jerking right arm and side
## 15312                                                                                                                                                              Client began to head butt staff. In attempt to control behavior, EE felt pull in back and chest area.
## 15313                                                                                                                                                                                                          Client being placed in therapeutic hold, bit EE on chest.
## 15314                                                                                                                                                                                                                                   Client bent EE's thumb backwards
## 15315                                                                                                                                                                                                              Client bit 3 staff trying to restrain, bite to rt arm
## 15316                                                                                                                                                                                                                  Client bit EE and scratched x2 on right upper arm
## 15317                                                                                                                                                                                                        Client bit EE in the right side of head. Cranial concussion
## 15318                                                                                                                                                                                                                                         Client bit EE on left arm.
## 15319                                                                                                                                                                                                                      Client bit EE on left forearm, breaking skin.
## 15320                                                                                                                                                                                                                                         Client bit EE on left hand
## 15321                                                                                                                                                                                                                               Client bit EE on left inside of hand
## 15322                                                                                                                                                                                                                                    Client bit EE on left lower arm
## 15323                                                                                                                                                                                                                                        Client bit EE on lt forearm
## 15324                                                                                                                                                                                                                           Client bit EE on lt forearm - human bite
## 15325                                                                                                                                                                                                                                     Client bit EE on right forearm
## 15326                                                                                                                                                                                                                    Client bit EE on right hand below pinky finger.
## 15327                                                                                                                                                                                                                                           Client bit EE on rt arm.
## 15328                                                                                                                                                                                                               Client bit EE on rt finger while undressing for bath
## 15329                                                                                                                                                                                                                                           Client bit EE on rt hand
## 15330                                                                                                                                                                Client bit EE on the left forearm while being restrained - also kicked EE several times in the back
## 15331                                                                                                                                                                                                                                    Client bit EE on upper left arm
## 15332                                                                                                                                                                                       Client bit EE on wrist when EE was attempting to prevent client from falling
## 15333                                                                                                                                                                                                               Client bit EE's left thumb during a dental procedure
## 15334                                                                                                                                                                           Client bit EE's rt middle finger while EE was trying to remove knife from client's mouth
## 15335                                                                                                                                                                                                                                                     Client bit EE.
## 15336                                                                                                                                                                                                                                           Client bit emp left hand
## 15337                                                                                                                                                                                                                           Client bit emp on right thigh- infection
## 15338                                                                                                                                                                                       Client bit right arm below elbow and scratched left arm on right wrist area.
## 15339                                                                                                                                                                                                                                                Client bit staff ()
## 15340                                                                                                                                                                                                                                        Client bit staff on rt arm.
## 15341                                                                                                                                                                       Client bit staff on rt middle finger while being put in timeout for exhibiting behaviors. ()
## 15342                                                                                                                                                         Client bit staff on the chest near his left nipple. EE treated at urgent care and returned back to work ()
## 15343                                                                                                                                                                                                    Client bit staff on the chest, EE sent to er rtw on 11/17/09 ()
## 15344                                                                                                                                                                            Client bit staff on the left hand. EE seen at urgent care and released back to work. ()
## 15345                                                                                                                                                                                                                  Client bit staff on the lt thumb after blood draw
## 15346                                                                                                                                                                                                              Client bit staff, staff treated at er rtw 11/17/09 ()
## 15347                                                                                                                                                                                                     Client bit staff, staff was giving client bath. Injured chest.
## 15348                                                                                                                                                                                                                                       Client bit top of rt hand ()
## 15349                                                                                  Client blood was being drawn was a hard stick and not sucessfulon 1st attempt other nurse then attempted and during the exchange of butterfly needle staff was stuck in finger ()
## 15350                                                                                                                                                                                                                     Client bumped into EE's left knee w/wheelchair
## 15351                                                                                                                        Client called EE into room and another client sat up in bed and swung at EE with a casted arm-clienthit EE in rt jaw breakin upper partial.
## 15352                                                                                                                                                      Client called staff over as though he was going to whisper in staff ear and popped plastic paper in staff ear
## 15353                                                                                                                                                              Client came and grabbed EE, EE was trying to put inthe erapeutic hold, slipped and fell on left knee.
## 15354                                                                                                                                                            Client came behind employee and threw her on the floor, hitting her in the mouth and scratching her. ()
## 15355                                                                                                                 Client came housekeeping room -grab bedspread, client became entagled in bedspread. EE tried to hold spread client pulled out hand rt hand swollen
## 15356                                                                                                                                          Client came in and sat on sofa upset-EE tried to calm client in process client slapped EE's glassesoff and scratched nose
## 15357                                                                                                                                                                                 Client came into EE's office, EE asked client to leave, client bit EE on the nose.
## 15358                                                                                                                                                             Client came into hallway to greet EE. While shaking hands, client suddenly kicked EE on the right leg.
## 15359                                                                                                                                 Client came into office, grabbed EE, as walking EE got l foot tangled up in telephone cord and fell on l ankle. L ankle contusion.
## 15360                                                                                                                                              Client came into records room displaying behavior, and grabbed EE hand squeezing it very hard. Sprain rt ring finger.
## 15361                                                                                                                                                                 Client came into restroom and attacked EE hitting in face, knocking off glasses, kicking in chest.
## 15362                        Client came into the bathroom with a nosebleed. Before any staff member could be notified, I enter the bathroom. While I was using the sink to wash my hands, I accidentally touched the blood on the sink with my hand which had a cut. ()
## 15363                                                                                                                                              Client came out of room to greet EE, client bumped EE on nose and somehow bumped EE on left side try-ing to get away.
## 15364                                                                                                                                                       Client came up and hugged EE-then client went limpcausing EE to fall against wall with client on top of her.
## 15365                                                                                                                                                                      Client came up behind EE and started choking, pull-ed EE to floor. Neck, throat, head injury.
## 15366                                                                                                                                                                       Client came up behind EE placing arm around EE's neck choke hold next am noted pain in neck.
## 15367                                                                                                                                                             Client came up behind EE, EE turned & client hit in right jaw with fist chipping EE right upper tooth.
## 15368                                                                                                                                             Client came up to hug EE, client put arm around shoudler and pulled EE around. This resulted in a twist of rt shoulder
## 15369                                                                                                                                                                                                Client caused EE to lose balance and fall over whirlpool onto floor
## 15370                                                                                                                                                              Client charge EE in the hallway scratched EE upperlt eye and sprainds thumb puttingclient inpic hold.
## 15371                                                                                                                                                                                      Client charged EE pushing EE to the floor hitting her head on filing cabinet.
## 15372                                                                                                                                                     Client charged at employee; grabbed right hand pulling right second finger and scratched top of right hand. ()
## 15373                                                                                                                               Client charged at staff member-while placing in pic client was fighting staff which caused them tofall to floor hitting head on wall
## 15374                                                                                                                                                            Client charged into office threating and cursing staff member-EE intervened and both fell to the floor.
## 15375                                                                                                                                                                                                                     Client closed door on EE's right index finger.
## 15376                                                                                                                                                                                                                              Client closed door on EE's rt fingers
## 15377                                                                                                                                                        Client combative-kicking & hitting EE, handling alone. EE not sure but feels pulled lt arm from elbow down.
## 15378                                                                                                                                 Client continued to slide out of chair onto floor. Helping client up from floor & re-injured his back. Felt something pull in back
## 15379                                                                                                                                                                                            Client droophavinf seizure strain shoulder/ arm trying to prevent full.
## 15380                                                                                                                                                                                                   Client dropped to floor and staff caught him preventing fall. ()
## 15381                                                                                                                                                                                                       Client dropped to floor, causing EE to strain back and neck.
## 15382                                                                                                                                   Client dropped to ground. EE pulled muscle in backhelping client up from ground three times & clienttried to get cigarette butts
## 15383                                                                     Client engaged in sib- hitting head on floor. Staff put hand on floor attempting to prevent injury and her lt middle finger was sruck several times between the floor and the clients head. ()
## 15384                                                                                                                                                             Client escaped from group home and EE ran after him and slipped and fell dislocating left third finger
## 15385                                                                                                             Client escaped from ward 238, while I was leaving with the canteen cart. I lost my balance, went downto one knee when the patient pushed the cart into
## 15386                                                                                                                                                                                 Client exhibited sib during bath and while getting dressed she bit staff on arm ()
## 15387                                                                                                                                                                Client fainted and EE hurt back lifting client off the floor and also while returning client to bed
## 15388                                                                                                                                                  Client falling backwards-fell on EE's rt knee physician-Dr Bargas 802-775-2937 x 222 physician fax # 802-773-2204
## 15389                                                                                                                                                                                                        Client falling, EE stopped the fall, pulled neck and thigh.
## 15390                                                                                                                                                                                                    Client feet pushed EE legs causing EE to fall landed on rt arm.
## 15391                                                                                                                                                                                          Client fell against EE and EE's right hand/wrist hit the side of the door
## 15392                                                                                                                                                                                                    Client fell and pulled EE down... Left side of her body... Back
## 15393                                                                                                                                                                    Client fell behind shower chair and EE had to assist client up. Left wrist hurts when EE lifts.
## 15394                                                                                                                                            Client fell during activity - EE attempted to prevent further injury- came in contact with blood-had open wound on hand
## 15395                                                                                                                                         Client fell hitting against EE. EE tried to break clients fall and EE was pushed onto floor falling on left knee and ankle
## 15396                                                                                                                                                                                                     Client fell into EE causing EE to fall backwards injuring back
## 15397                                                                                                                                                                                                     Client fell on EE's forearm, when she tried to break the fall.
## 15398                                                                                                                                                                                                                   Client fell on a top of EE; injured his rt ankle
## 15399                                                                                                                                                                                   Client fell on top of EE during behavior intervention bending EE's leg backwards
## 15400                                                                                                                                                                    Client fell to ground and EE bent over to bring client back inside and experienced pain in back
## 15401                                                                                                                                         Client fell to ground during transporting to class when client fell, EE dropped to ground causing discomfort in lower back
## 15402                                                                                                                                                                    Client fell while walking with staff; staff hurt ankle attempting to get client up from fall ()
## 15403                                                                                                                                 Client fighting on hall careteam called EE to secure clients arm-client scratched EE in several placeson rt forearm and upper arm.
## 15404                                                                                                                                                                                                                   Client fighting with EE and kicked EE in abdomen
## 15405                                                                                                                                                                           Client fighting-EE placed client in pr-client weight was 294-EE noted pain in lower back
## 15406                                                                                                                                                                                                                              Client flipped staff over a love seat
## 15407                                                                                                                         Client from bone visit became aggressive. EE tried to console patient hurt shoulder, grabbed upper armripping shirt abrasions and bruises.
## 15408                                                                                                                      Client gave staff a huge bear hug and started rocking back and forth, would not stop when asked to and continued until staff fellon floor. ()
## 15409                                                                                                                                                    Client getting into wheelchair trying to leave bathroom ran foot rest into right ankle. Contusionto right ankle
## 15410                                                                                                                                                       Client getting off elevator stepped too soon and began to fall-EE caught client and felt pain in lower back.
## 15411                                                                                                                           Client getting undress became upset for unknown reasons began to come at EE client lost balance began to fall caught him, client bit him
## 15412                                                                                                                     Client getting up out of office in classroom trying to keep client from falling, caught placed back in chair, felt popping in lower back area.
## 15413                                                                                                                                                                     Client got away from EE; EE tried to catch client & fell & hurt her left wrist and right side.
## 15414                                                                                                                                                                                   Client got feel tangled in chair, EE caught clien t, injured r shoulder and neck
## 15415                                                                                                          Client got smog and was very stiff; pulled client up in bed; had to keep changing client over and over in bed from smog; at end of shift back hurting. ()
## 15416                                                                                                                                  Client got up and moved behind EE-EE got up started to turn client around-when client snatched back around-EE tripped over chair.
## 15417                                                                                                                                                                                          Client got upset and started kicking and scratching EE on left hand, neck
## 15418                                                                                                                                            Client grabbed EE & began to twist & pull hands & arms. Client also pushed & pulled EE around. EE lost balance and fell
## 15419                                                                                                                                                                                                                              Client grabbed EE arm and twisted it.
## 15420                                                                                                                                                   Client grabbed EE around the neck and pulled EE toward him in an attempt to bite EE in the face--cervical strain
## 15421                                                                                                                                                                                                                 Client grabbed EE by the neck & threw against wall
## 15422                                                                                                                                                                                                         Client grabbed EE hands, right wrist and pulled backwards.
## 15423                                                                                                                                                                                                                           Client grabbed EE left wrist and forearm
## 15424                                                                                                                                                                                           Client grabbed EE lt arm and scratched it- area became red and blistered
## 15425                                                                                                                                                                                                                             Client grabbed EE lt hand and squeezed
## 15426                                                                                                                                                                                                            Client grabbed EE right middle finger and pulled sprain
## 15427                                                                                                                                                                        Client grabbed EE rt hand and twisted EE's rt finger. Rt hand - fingers swollen and painful
## 15428                                                                                                                                                                    Client grabbed EE rt wrist and pulled-client then leaned over to side causihng EE to twist back
## 15429                                                                                                                                                                                                        Client grabbed EE wrists and forearms and jerked and pulled
## 15430                                                                                                                                                                                                                       Client grabbed EE's fingers and pulled apart
## 15431                                                                                                                                                                                                         Client grabbed EE's hair and pulled it back straining neck
## 15432                                                                                                                                                                                                Client grabbed EE's hair from behind and pulled, popping EE's neck.
## 15433                                                                                                                                                                                                                    Client grabbed EE's hand and bent it backwards.
## 15434                                                                                                                                                                                                Client grabbed EE's hand and bent pinky finger backwards on rt hand
## 15435                                                                                                                            Client grabbed EE's left arm and pulled. EE walkedaway, client ran toward EE, EE tried to block client, hit EE in chest, elbow hit wall
## 15436                                                                                                                                                                                                   Client grabbed EE's left hand & squeezed. Left wrist hand sprain
## 15437                                                                                                                                                                                                                                           Client grabbed EE's neck
## 15438                                                                                                                                                                            Client grabbed EE's neck when EE was trying to putclient in a hold to calm client down.
## 15439                                                                                                                                                               Client grabbed EE's right arm. Force caused injuryto right little finger when hand hit clients face.
## 15440                                                                                                                               Client grabbed EE's right hand & bent fingers backwards. EE's right ring finger snapped & became red & swollen. Right hand contusion
## 15441                                                                                                                                                                                      Client grabbed EE's right hand and yanked arm, EE felt pain in right shoulder
## 15442                                                                                                                                                                                                               Client grabbed EE's right index finger and bent back
## 15443                                                                                                                                                                                                                            Client grabbed EE's right little finger
## 15444                                                                                                                                                        Client grabbed EE's rt hand and wrapped EE's key chain necklace around EE's rt pinky finger-squeezetightly.
## 15445                                                                                                                                                                                                Client grabbed EE's rt thumb & twisted wrist in opposite direction.
## 15446                                                                                                                                                                                                                    Client grabbed EE's rt thumb, hyperextending it
## 15447                                                                                                                                                                                                                                      Client grabbed EE's rt thumb.
## 15448                                                                                                                                                                                    Client grabbed EE's rt wrist and dropped to the floor pulling EE hitting wrist.
## 15449                                                                                              Client grabbed and pulled EE's shirt towards the back; EE reached with right hand to get control of client; client grabbed EE's right arm and scratched right arm. ()
## 15450                                                                                                                                                                                                       Client grabbed and pulled on EE's arm while redirecting him.
## 15451                                                                                                                                                                                                                       Client grabbed and twisted EE right hand. ()
## 15452                                                                                                                                                                        Client grabbed and twisted EE's left arm and would not let go, causing EE to fall to floor.
## 15453                                                                                                                                                                                       Client grabbed and twisted arm (right); dug in nails; behavior of client. ()
## 15454                                                                                                                                                                                                             Client grabbed and twisted end of lt pointer finger ()
## 15455                                                                                                                                                                                                                      Client grabbed and twisted rt arm of staff ()
## 15456                                                                                                                                                                                                                          Client grabbed arm and scratched staff ()
## 15457                                                                                                                                                                                           Client grabbed artifical tree and hit EE with it on left elbow and wrist
## 15458                                                                                                                                                                                       Client grabbed client around the neck with both arms and would not let loose
## 15459                                                                                                                                                                                                            Client grabbed client's rt little finger and twisted it
## 15460                                                                                                                                                                                                                  Client grabbed emp. Injured right hand & squeezed
## 15461                                                                                                                                                                                                                      Client grabbed employees r arm and twisted it
## 15462                                                                                                                                                                                  Client grabbed hand and dug fingernail into right middle finger. Scratched finger
## 15463                                                                                                                                                                                                                        Client grabbed hand of staff and twisted it
## 15464                                                                                                                                                                                            Client grabbed her from the back and pulled her backwards down to floor
## 15465                                                                                                                                                                                                                                  Client grabbed her right wrist ()
## 15466                                                                                                                                                                                                                 Client grabbed left hand and bit left ring finger.
## 15467                                                                                                                                                                                                                              Client grabbed left wrist and forearm
## 15468                                                                                                                                                                    Client grabbed lt hand squeeze EE wearing 2 rings resulting lt hand pain. Pain lt pinky finger.
## 15469                                                                                                                                                                                              Client grabbed picture off wall and threw it hitting staff on hand ()
## 15470                                                                                                                                                                      Client grabbed pill bottle from nurse and threw it then hit her in the nose with his fist. ()
## 15471                                                                                                                                                                                                                            Client grabbed r. Forearm and squeezed.
## 15472                                                                                                                                                                                              Client grabbed right wrist/hand and squeezed/ twisted simultaneously.
## 15473                                                                                                                                                                                                                        Client grabbed rt thumb and pulled backward
## 15474                                                                                                                                                                                                                            Client grabbed staff and bit forearm ()
## 15475                                                                                                                                                                                                                              Client grabbed staff and bit thumb ()
## 15476                                                                                                                                                                                                                      Client grabbed staff and scratched her arm ()
## 15477                                                                                                                                                                                                                     Client grabbed staff and scratched her hand ()
## 15478                                                                                                                                                                                                   Client grabbed staff around neck in an attempt to choke her.. ()
## 15479                                                                                                                                               Client grabbed staff by the arm and bit EE on the right arm when EE tried to get client to sit back in his chair. ()
## 15480                                                                                                                                                                        Client grabbed staff by the hair and pulled forward and down causing neck and shoulder pain
## 15481                                                                                                                                                                         Client grabbed staff's hand in an attempt to bite it, then pushed staff's right thumb back
## 15482                                                                                                                                                                                            Client grabbed staff's right arm, pushed her, she fell on her right leg
## 15483                                                                                                                        Client grabbed to attempt bear hug staff backed upagainst wall for balance, staff tried to redirect client into letting go. Injury to neck.
## 15484                                                                                                                                                                                                                    Client grabbed wrist and scratched left hand ()
## 15485                                                                                                                                                                          Client had been put in pic-client attacked EE scatching nose, face, knocking glasses off.
## 15486                                                                                                                                                              Client had cna trapped in breakroom-EE att to assist to get cna out-client slammed door on EE's hand.
## 15487                                                                                                                                                       Client had slipped out of chair-EE putting client back into chair and received a scratch on left hand thumb.
## 15488                                                                                                                        Client had started a riot situation and in the process of securing the situation, EE was struck several times in the face, head, knee, hand
## 15489                                                                                                                                                                          Client had started fire on ward EE was working on. EE evacuating clients & inhaled smoke.
## 15490                                                                                                                                                       Client having behavior problem, EE tried to stop client form hitting another EE, client hit EE on left wrist
## 15491                                                                                                                                                                                                  Client having behavior. EE intervened and client'sleg was injured
## 15492                                                                                                                                                                  Client having diabetic episode thought client was leaving ran out to catch him & lt-knee gave out
## 15493                                                                                                                                                                                                               Client having seizure broke fall twisted right wrist
## 15494                                                                                                                                                                                 Client having seizure, tried to prevent client from injuring himself. Pull in back
## 15495                                                                                                                                                                                                                   Client head butted EE in the face straining neck
## 15496                                                                                                                                                                                                                                  Client head butted EE in the nose
## 15497                                                                                                                                                                                                        Client head butted EE on left shoulder during disagreement.
## 15498                                                                                                                                                                                                                                      Client head butted in lip. ()
## 15499                                                                                                                                                                                                                                   Client head butted on right knee
## 15500                                                                                                                                                                                                                                        Client head butted staff ()
## 15501                                                                                                                                                                                                                       Client head butted staff during behavior. ()
## 15502                                                                                                                                                                                                             Client head butted staff with staff wearing glasses ()
## 15503                                                                                                                                                                                   Client head-butted EE in the face, hitting top lip and loosening rt front tooth.
## 15504                                                                                                                                                                                                                                  Client head-butted EE in the nose
## 15505                                                                                                                                                                                                                              Client head-butted staff in the nose.
## 15506                                                                                                                                                                                             Client headbutted EE, laceration to lt eye brow & over bridge of nose,
## 15507                                                                                                                                                                                                       Client headbutted in face & chect and punched in stomach. ()
## 15508                                                                                                                                      Client headbutted me in chapel while I was sittingbeside him and another client kicked me on the left leg while transporting.
## 15509                                                                                                                                                                                                  Client hit EE in face serveral times-injury to face and rt ankle.
## 15510                                                                                                                                                                                                                                   Client hit EE in face with fist.
## 15511                                                                                                                                                                                                                                Client hit EE in left eye with hand
## 15512                                                                                                                                                                                                                                         Client hit EE in left eye.
## 15513                                                                                                                                                                                                                                Client hit EE in left jaw with hand
## 15514                                                                                                                                                                                                                   Client hit EE in mouth with fist, loosened teeth
## 15515                                                                                                                                                                                                                                  Client hit EE in rt jaw with fist
## 15516                                                                                                                                                                                                      Client hit EE in stomach with elbow. EE is 6 months pregnant.
## 15517                                                                                                                                                                                                                                        Client hit EE in the chest.
## 15518                                                                                                                                                                                                        Client hit EE in the head 2 times-EE has history of strokes
## 15519                                                                                                            Client hit EE in the left shoulder several times after client knocked sugar bowl lid on the floor and EE picked up the lid and placed back on table. ()
## 15520                                                                                                                                                              Client hit EE on back with fist, grabbed rt arm, hit in mouth, grabbed glasses, and scratched forearm
## 15521                                                                                                                                                                                                   Client hit EE on left shoulder while trying to fight other boys.
## 15522                                                                                                                                                                                                       Client hit EE on lt side of face & kicked staff inleft knee.
## 15523                                                                                                                                                                                                                                    Client hit EE on lt side of jaw
## 15524                                                                                                                                                                               Client hit EE on right side of head during intervene of clients aggressive behavior.
## 15525                                                                                                                                                                     Client hit EE w/ the heel of shoe on the top pf emp. Left hand between thumb and index finger.
## 15526                                                                                                                                                                                Client hit EE while coming from the dinningroom, EE fell on rt arm, shoulder, knee.
## 15527                                                                                                                                                                                                                Client hit EE with closed fist twice-left side face
## 15528                                                                                                                                             Client hit EE with fist on left side of the head then grabbed left arm, tore shirt and spit on faceand broke necklace.
## 15529                                                                                                                                                                                                                   Client hit EE with fist while they were talking.
## 15530                                                                                                                                                                                  Client hit EE with open hand-EE att to block hit and hit tip of left pinky finger
## 15531                                                                                                                                                                                                        Client hit EE with straight right punch to the right chest.
## 15532                                                                                                                                                                                      Client hit EE's right middle finger while placing client in therapeutic hold.
## 15533                                                                                                                                                                                                                                      Client hit EE, right arm sore
## 15534                                                                                                                                                                                                                     Client hit and scratched staff aggressively ()
## 15535                                                                                                                                                                                Client hit employee in face/mouth w/ fist. Cuttingmouth, lips and gums. Pain in jaw
## 15536                                                                                                                                                                                          Client hit employee in mouth (with fist) cut upper lip, pain in face/neck
## 15537                                                                                                                                                                                                                      Client hit employee in the jaw w/closed fist.
## 15538                                                                                                                                                                                             Client hit employee with closed fist in stomach. Employee is pregnant.
## 15539                                                                                                                                                                                                                       Client hit in jaw x 2 and bit l. Shoulder ()
## 15540                                                                                                                                                                                                                           Client hit staff 3 times on the left arm
## 15541                                                                                                                                                                                                                                Client hit staff in face and eye ()
## 15542                                                                                                                                                                                                           Client hit staff in nose and hand got caught on chair ()
## 15543                                                                                                                                                                                                                      Client hit staff in the eye with wet towel ()
## 15544                                                                                                                                                                                                                                 Client hit staff in the face/nose.
## 15545                                                                                                                                                                                                                                Client hit staff in the left eye ()
## 15546                                                                                                                                                                                                                        Client hit staff in the right shoulder area
## 15547                                                                                                                                                                                                                                   Client hit staff's hand(finger).
## 15548                                                                                                            Client hit/scratched face. R. Knee popped as going backwards to get out of way (slipped on something in the floor) r. Back and shoulder hurt/burned. ()
## 15549                                                                                                                                                         Client hiting on chest, while hitting, client grabbed shirt nad during the grabbing pinched the chest area
## 15550                                                                                                                                    Client hitting display case-EE advised client to stop when client starting fighting EE causing EE to injury left knee on floor.
## 15551                                                                                                                                         Client hitting head on floor. EE went over to get him up. Client was pulling against EE, putting weight against left thigh
## 15552                                                                                                                                                  Client holding onto EE. Right arm. Client was trying to sit down. Slid down onto floor. Pulling EE right shoulder
## 15553                                                                                                                                                                              Client hugged staff around the neck, EE complains of strained on left side of neck ()
## 15554                                                                                                                                        Client in activity room throwing things-EE placingclient in pic and client throw head back and hit EE on nose and forehead.
## 15555                                                                                                                                                                            Client in behavior attempted to turn table over. EE caught table with left hand. Strain
## 15556                                                                                                                                                          Client in behavior; client charged EE; EE blocked the client's hit with chair & chair hit his right hand.
## 15557                                                                                                                                                                                                  Client in behavior; redirecting client; client bit left wrist. ()
## 15558                                                                                                                                                                                 Client in electric wheelchair and lost control pinning EE between bars on sidewalk
## 15559                                                                                                                                                       Client in office talking to doctor-jumped up and attacked doctor-EE tying to asst and strained leftarm/wrist
## 15560                                                                                                                                                           Client in pic hold-client fell to floor causing EE to fall with client-client's shoulder hit EE rib cage
## 15561                                                                                                                                                                       Client in restraint-EE attempted to hold from twisting/jerking and strained rt wrist and arm
## 15562                                                                                                                       Client indicated observing inmate feed; leaning against kitchen wall; noticed bumps on right arm; subsequent bumps on back, stomach, legs ()
## 15563                                                                                                                                                                                                              Client intervention-client bent EE's right wrist back
## 15564                                                                                                                                                                                  Client jerked head forward and hit EE in the mouth. Loose tooth and bridge loose.
## 15565                                                                                                                                                               Client jumped on EE's back and wrapped legs around EE's leg causing EE to fall and strain lower back
## 15566                                                                                                             Client jumped out of truck to get cigarette but; EE tried to stop by grabbing arm; client grabbed his right arm and snatched away by pushing right arm
## 15567                                                                                                                                                                                               Client jumped out of wheelchair and attacked EE on rt wrist and hand
## 15568                                                                                                                                                                                                                    Client jumped up & hit EE in head. Lft arm bite
## 15569                                                                                                                                                                          Client jumped up out of wheelchair and came after writer and hit EE on rt wrist and hand.
## 15570                                                                                                                                                                                Client jumping and yelling staff opened door and got hit in the rt cheek and eye ()
## 15571                                                                                                                              Client jumping up & pulling EE by wrist-EE tried redirecting client but client continued causing strain to EE's right hip/neck & back
## 15572                                                                                                                                                                                                                  Client kicked EE in back knocking EE to the floor
## 15573                                                                                                                                                                                                                        Client kicked EE in face. Facial contusion.
## 15574                                                                                                                                                                                                                    Client kicked EE in genital area and left knee.
## 15575                                                                                                                                                                                                                       Client kicked EE in left knee several timnes
## 15576                                                                                                                                                                                                                                 Client kicked EE in left lower leg
## 15577                                                                                                                                                                      Client kicked EE in lft side while being carried to restraint room. Contusion of lft rib area
## 15578                                                                                                                                                                                                         Client kicked EE in lower back while placing in restraint.
## 15579                                                                                                                                                                                                                                   Client kicked EE in mouth w/shoe
## 15580                                                                                                                                                                                                       Client kicked EE in the back while EE trying to restrain him
## 15581                                                                                                                                                                                                    Client kicked EE in the left knee while she was redirecting him
## 15582                                                                                                                                                                                                                        Client kicked EE in the middle of her back.
## 15583                                                                                                                                                                                                                                Client kicked EE in the right knee.
## 15584                                                                                                                                                                                                                                   Client kicked EE on right ankle.
## 15585                                                                                                                                                                                                                                        Client kicked EE on rt knee
## 15586                                                                                                                                                                                                                  Client kicked EE pointer finger on his right hand
## 15587                                                                                                                                                                                                                                 Client kicked EE x 2 in right knee
## 15588                                                                                                                                                                                             Client kicked door catching employees head between the door and frame.
## 15589                                                                                                                                                                                                        Client kicked football and struck EE in the rt side of face
## 15590                                                                                                                                                                                   Client kicked med cart and hit nurse in stomach as she was giving medication. ()
## 15591                                                                                                                                                                                                                                             Client kicked staff ()
## 15592                                                                                                                                                                                                                                     Client kicked staff in face ()
## 15593                                                                                                                                                                            Client kicked staff in knee while client was aggressing toward another staff. Knee pain
## 15594                                                                                                                                                                                                                               Client kicked staff in the groin. ()
## 15595                                                                                                                                                                                              Client kicked staff in the left jaw while EE was putting his shoe on.
## 15596                                                                                                                                                                                                                                 Client kicked staff on the chin ()
## 15597                                                                                                                                                                                                                            Client kicked staff, EE rtw 12/13/09 ()
## 15598                                                                                                                                                                                                   Client knocked a chair onto the floor and it struck EE's rt foot
## 15599                                                                                                                                                                                                          Client landed on EE's leg. Contusion to left leg and calf
## 15600                                                                                                                                                                         Client leaded forward and bumped heads with staff; he was wearing a helmet on his head. ()
## 15601                                                                                                                                                                                     Client leaned into staff causing her to get a knot feeling in her lt shoulder.
## 15602                                                                                                                                                                     Client leg's tripped staff while transporting client when other staff ley go of client's legs.
## 15603                                                                                                                                                                                      Client lift was in use when the cord became unplugged & hit client in the eye
## 15604                                                                                                                                                                                      Client lifted legs off floor and cna strained backholding client from falling
## 15605                                                                                                                                                                                                                 Client lost balance and fell against EE's rt knee/
## 15606                                                                                                                                                                                                             Client lost balance and fell on employee's left leg ()
## 15607                                                                                                                                                                Client lost balance and started to fall, EE tried to catch client. Client fell against EE right arm
## 15608                                                                                                                                                                                           Client lt porch and ran across street EE ran to get client fell on knees
## 15609                                                                                                                                    Client on phone calling 911-EE asked client to getoff phone-client staring swining and cursing at eethen fell on EE's rt wrist.
## 15610                                                                                                                                                                                                                  Client open front door and door hit EE's rt foot.
## 15611                                                                                                                                                                                                         Client opened door fast hitting employee's hand & wrist ()
## 15612                                                                                                                                                                                                Client out of control and flipped a chair over hitting EE's rt leg.
## 15613                                                                                                                                                                Client out of control, assisting staff to hold door shut when client hit door and EE turned r ankle
## 15614                                                                                                                 Client out of control. Fire alarm went off client didn't want to go outside, started biting & fight-ing and pulling - twisted EE rt arm and wrist.
## 15615                                                                                                                                                                   Client picked up a bowl of screws & threw them at staff, one of the screws hit staff in the eye.
## 15616                                                                                                                                                                            Client picked up oject while lifting object the client stuck his finger into right eye.
## 15617                                                                                                                                                                                Client picked up walker and swung it at EE-hittingee in side of head (right temple)
## 15618                                                                                                                                                                                                 Client pinched EE rt forearm while EE was trying to change client.
## 15619                                                                                                                                                                                                                                       Client poked EE in left eye.
## 15620                                                                                                           Client preparing for bath, met client in hallway client began to swing violently and tried to bite, attempted to put client in pic, twisted lft leg/knee
## 15621                                                                                                                                                 Client provided to in real world program with spmipopulatin - upper back. Cervical, thoracic and left elbow strain
## 15622                                                                                                                                                                                                                 Client pulled EE's arm and fell, pulling EE's arm.
## 15623                                                                                                                                                                                                                    Client pulled EE's hair and pushed EE into door
## 15624                                                                                                                                             Client pulled EE's left arm while she was interacting with another client-which resulted in pain to her left shoulder.
## 15625                                                                                                                                                                                                                             Client pulled EE's rt arm straining it
## 15626                                                                                                                                                                                                                  Client pulled chair out from under EE and EE fell
## 15627                                                                                                                                                                                Client pulled downward on EE shoulder while EE wasassisting client from wheelchair.
## 15628                                                                                                                                               Client pulled tube out of his lungs, EE grabbed client's arm & client pulled EE's right arm causing pain in shoulder
## 15629                                                                                                                                                             Client pulling EE towards activity room to have someone to turn radio on for him-lacerations to lt arm
## 15630                                                                                                                                                                                         Client pulling and trying to bite inside and outside classroom, neck hurts
## 15631                                                                                                                                                                                                Client pulling cart and stopped, I ran into cart abrasion both legs
## 15632                                                                                                                                                                            Client pulling on EE because of drink-EE lost balance and felt something pull in ankle.
## 15633                                                                                                                                                                                                                Client punched EE in left jaw knocking tooth loose.
## 15634                                                                                                                                                                                                    Client punched EE in left side of face-complainingof neck pain.
## 15635                                                                                                                                                                                                                                   Client punched EE in top of head
## 15636                                                                                                                                                                                            Client punched employee in the left side of neck &lower ear. Contusion.
## 15637                                                                                                                                                                                                                                         Client punched in r brest.
## 15638                                                                                                                                                                                                               Client punched staff in eye when denied more food ()
## 15639                                                                                                                                                                                                                    Client punched staff in right eye and in mouth.
## 15640                                                                                                                                                                                  Client pushed EE & broke ehr fall by reaching for handrail. Right thumb backwards
## 15641                                                                                                                                                                                                                Client pushed EE against door, EE hit head on door.
## 15642                                                                                                                                                                                        Client pushed EE down causing her to hit the back of her head on the floor.
## 15643                                                                                                                    Client pushed EE then struck him in the mouth thenbegan choking EE. EE was freed from choke hold, and client kicked EE in the side of the head.
## 15644                                                                                                                                                                                                                       Client pushed EE to floor - EE strained back
## 15645                                                                                                                             Client pushed back from table, looked as if she were going to fall; EE reached out to grab client and in process twisted left knee. ()
## 15646                                                                                                                                                                                 Client pushed books off table in small dayroom; client bite staff's left elbow. ()
## 15647                                                                                                                                                                                                           Client pushed emp causign emp to fall hitting right knee
## 15648                                                                                                                                                                                                              Client pushed employee and stepped on left big toe ()
## 15649                                                                                                                                                                                                       Client pushed hand into door causing to jam lft ring finger.
## 15650                                                                                                                                                                                           Client pushed into dining room door-hit left shoulder on metal piece. ()
## 15651                                                                                                                                                                                                                               Client pushed staff down to floor ()
## 15652                                                                                                                  Client pushed staff from behind injuring her l shoulder & l knee. She went to the er on 4-1-09 & she has an appt today 4-6-09 at goldsboro ortho.
## 15653                                                                                                                                                                                                                              Client pushed wheelchair on left foot
## 15654                                                                                                                                                                   Client pushing another client in wheelchair-came out of elevator and ran over both of EE's feet.
## 15655                                                                                                                                                                  Client pushing back on EE's hand-EE was holding client's head waiting for head rest to be placed.
## 15656                                                                                                                                                                                                                        Client put EE in headlock. EE felt back pop
## 15657                                                                                                                     Client put her head through window. EE tried to get clt out & place her hand around clt head to keep clt from getting hurt. Cut rt arm & hand.
## 15658                                                                                                                                                                            Client putting feet in front of wheelchair causingstrain on employee when moving chair.
## 15659                                                                                                                                     Client ran by and tried to grab pudding. EE got it before client and client pushed her, causing her to hit rt arm against wall
## 15660                                                                                                                                                                                                             Client ran into EE's rt leg with electric wheel- chair
## 15661                                                                                                                                                                                                                      Client ran into staff and knocked her down ()
## 15662                                                                                                                                                                     Client ran out dining room-EE called client back to room-client knocked EE's hand against door
## 15663                                                                                                                                                   Client ran out of courtyard-EE redirecting client when client hit EE in the face with glasses on and broke them.
## 15664                                                                                                                                         Client ran out of unit and staff ran out calling after him in an attempt to stop him staff ran after him and fell down. ()
## 15665                                                                                                                                                    Client ran outside EE ran out to catch her. EE caught client & fell client slapped EE in face facial contusion.
## 15666                                                                                                                                                                                                            Client ran over EE's left little toe with wheel- chair.
## 15667                                                                                                                                                           Client ran over staffs r foot with a wheelchair, staff seen at lmh er and diagnosed with a contusion. ()
## 15668                                                                                                             Client ran over to the table that she was sitting at and grabbed her by the whistle, pulled her out of chair that she was sitting in and tried to take
## 15669                                                                                                                                                                    Client ran up hallway and EE ran after - EE hit spot on floor and fell on rt elbow and shoulder
## 15670                                                                                                                                                                                                                             Client reached out and grabbed arm. ()
## 15671                                                                                                                                                                   Client receiving injection jerked, causing needle to flip back and stick EE in right 4th finger.
## 15672                                                                                                                                                                                         Client refused helmet and hit EE with helmet on lt hand straining lt thumb
## 15673                                                                                                                                                                                         Client refusing to take medication; EE strained lt shoulder and lower back
## 15674                                                                                                                 Client rolled wheelchair into cart twice; another staff redirected; when EE turned around client hit EE on right hand hitting right 5th finger. ()
## 15675                                                                                                                                               Client rush at staff hitting him in rt eye with fist breaking glasses and making a bruise and a scratch by rt eye ()
## 15676                                                                                                                                                                                                                                    Client scratched EE in the eye.
## 15677                                                                                                                                                                                                                                Client scratched EE in the left eye
## 15678                                                                                                                                                                                                 Client scratched EE while trying to stop client from hurting self.
## 15679                                                                                                                                                                                                                                         Client scratched EE's face
## 15680                                                                                                                                                                                                                            Client scratched employee on right palm
## 15681                                                                                                                                                                                                                                   Client scratched staff on arm ()
## 15682                                                                                                                                                                                                                  Client scratched staff when getting out of bed ()
## 15683                                                                                                                                                                                                     Client scrathced EE on the arm while walking down the hallway.
## 15684                                                                                                                                       Client seizured, during post seizure state client requires to be placed in wheelhcair, EE felt some-thing pull in lower back
## 15685                                                                                                                                                                                              Client set his shirt on fire, trying to put fire out and burned hands
## 15686                                                                                                                                                                                       Client shoved EE against the wall... Fell.. Injuringhead, knees, cut on hand
## 15687                                                                                                                                                                                          Client shoved her head against the door and hit side of face with fist ()
## 15688                                                                                                                             Client showed aggression towards another client and staff, EE attempted to block & bite in the process and turned pulling rt shoulder.
## 15689                                                                                                              Client showing jcc dogs, jcc asked client if dogs were friendly and okay to pet. Client said yes and client and jcc approached dog. Approx 15 seconds
## 15690                                                                                                                                                                                 Client sitting in chair his crutch hit staff on finger as he sat down in chair. ()
## 15691                                                                                                                                                                                 Client sitting on floor, EE tried to pick client uppain in lower back, leg, groin.
## 15692                                                                                                                                                                                                   Client skating & ran into EE. EE was knocked backwards on floor.
## 15693                                                                                                                                                                                             Client slammed EE into door causing EE to strike left arm on door knob
## 15694                                                                                                                                                                                                       Client slammed a door on EE's right hand.... Injured fingers
## 15695                                                                                                                                                                                                                                  Client slammed door on EE fingers
## 15696                                                                                                                                                                                                                                   Client slammed door on left hand
## 15697                                                                                                                                                                                                                             Client slammed door on staff's hand ()
## 15698                                                                                                                                                                                                                                   Client slammed left foot in door
## 15699                                                                                                                                                                                                             Client slammed locker door on EE's right arm and hand.
## 15700                                                                                                                                                                                                            Client slapped EE on face and bit her right ring finger
## 15701                                                                                                                                                       Client slapped EE on face and pulled EE's hair outcausing EE's head to pull back, EE has discomfort in neck.
## 15702                                                                                                                                                                       Client slapped another cna-EE placed client in picand strained lower back. Bulging disc l4-5
## 15703                                                                                                                                                                                                              Client slid and EE caught her. Client landed in floor
## 15704                                                                                                                                                                        Client slid chair from dining table striking staff and pushing her belly against counter ()
## 15705                                                                                                                Client slid out of harness lift while EE was transferring client, EE caught before client hit floor and rt hand was caught between client and lift.
## 15706                                                                                                                                                Client slid to floor and I assisted hct to lift him up to get in the wc. I went to cart and reached for liquid med.
## 15707                                                                                                                                              Client sliding out of wheelchair-EE grabbed clients legs and placed back into wheelchair-felt pain later in rt wrist.
## 15708                                                                                                                                                                                              Client slipped in urine started to fall EE caughtclient strained back
## 15709                                                                                                                                                                                                                       Client slung arm and hit EE w/elbow in ribs.
## 15710                                                                                                                                                                                                                Client spit in EE's face during medication pass. ()
## 15711                                                                                                                                                                                                                                        Client spit in EE's lt eye.
## 15712                                                                                                                                                                                           Client spit in attorney's eye intentionally while talking about case. ()
## 15713                                                                                                                                                                                        Client squeezed EE's finger between seat of chair when EE went to sit down.
## 15714                                                                                                                                                                                        Client stamped on foot that she had just had surgery on. Contusion/bruises.
## 15715                                                                                                                                                   Client standing on scales and started leaning and client let go of scales causing scales to hit EE on left foot.
## 15716                                                                                                                                                              Client started hit EE-client proned while trying to get client to floor EE injured felt pain in back.
## 15717                                                                                                                                                                                         Client started running away from EE then client fell on EE's rt foot/ankle
## 15718                                                                                                                      Client started to drop (to floor)-employee attempted to catch/hold-so client wouldn't hit floor. Supported clients weight. R. Gluteal strain.
## 15719                                                                                                                                                                                                          Client started to fall - EE caught - pain in back & groin
## 15720                                                                                                                                                                                              Client started to fall - EE leaned over to catch EE felt pain in back
## 15721                                                                                                                                         Client started to fall - EE went to assist anotheree hold - reached over client wheelchair to hold client - strained back.
## 15722                                                                                                                                                                                       Client started to fall and EE assisted client and hurt rt neck, back and arm
## 15723                                                                                                                                                                                            Client started to fall and EE caught client and noted pain in low back.
## 15724                                                                                                                                         Client started to fall out of chair and EE caught the client and twisted arm in the process of tr ying to catch the client
## 15725                                                                                                                                                         Client started to fall, I caught client by his gait belt and prevented the fall, but twisted my left ankle
## 15726                                                                                                                                                       Client started to fall-EE attempted to catch client and both fell onto bed-clients elbow struck EE in chest.
## 15727                                                                                                Client started to grab everything off the wall. Asked client to stop, client grabbed and pulled on EE's left arm and wrist. This occurred twice within 5 minutes ()
## 15728                                                                                                                                                                    Client started to pull EE's hair. EE raised right arm to block. EE felt arm pull out of socket.
## 15729                                                                                                                                                                                                               Client started to run and stepped on staff's foot ()
## 15730                                                                                                                             Client started to slide down into the tub-EE bent over of tub and pulled client back up onto the seat, felt a pinch in middle of back.
## 15731                                                                                                                                                                     Client started to strike EE. EE blocked hit. In process hurting her right wrist & index finger
## 15732                                                                                                                                                Client started to stumble employee reached to stedy him, client turned and punched the employee on right cheek bone
## 15733                                                                                                                        Client stated she was entering her supervisor's office and she ran into an arm chair with her left knee. Client stated it hurt immediately.
## 15734                                                                                                                                                                                                Client states walking outside around post 8 fence, knee gave out ()
## 15735                                                                                                                                              Client statrted to drop to her knees. EE caught client to keep her from hitting the floor and noted pain in her back.
## 15736                                                                                                                                                                    Client stealing, (trying, ) employee intervened and was pushed by client, lost balance and fell
## 15737                                                                                                                         Client stepped down in wheelchair, client attempted to get out of wheelchair. Client was hanging by head on lap tray. Attempted to pull up
## 15738                                                                                                                                                                                                        Client stepped on employee's foot while being aggressive ()
## 15739                                                                                                                                                                                                                                        Client stepped on left foot
## 15740                                                                                                                                                                                                                                       Client stepped on staff foot
## 15741                                                                                                                                                                                                      Client stepped on staffs foot. EE seen at er, rtw 12/13/09 ()
## 15742                                                                                                                                                                                                                          Client stomped lt foot. Lt foot contusion
## 15743                                                                                                                                                            Client stood and fell backwards both EE/client fell to the floor client landed on top of EE's shoulder.
## 15744                                                                                                                         Client stood up grabbed around EE's waist; client sat down on bed; EE lifted client's legs up on bedand slide client over to middle of bed
## 15745                                                                                                                                                      Client stood up-started to fall back, EE turned tocatch client and felt a pull in the right side of her back.
## 15746                                                                                                                                          Client striking head against wall-emp. Placed lefthand btw. Head and wall-clients head hit hand-mashing ring into finger.
## 15747                                                                                                                                                                                                                             Client struck EE in head several times
## 15748                                                                                                                                                                                                                                        Client struck EE in the ear
## 15749                                                                                                                                                                                                      Client struck EE in the face while EE was restraining client.
## 15750                                                                                                                                                            Client struck EE in the face with a full can of soda which was in a plastic back-contusion & laceration
## 15751                                                                                                                                                                                                                                        Client struck EE in to nose
## 15752                                                                                                                                                                                                      Client struck EE on right side of face. Loosened lower tooth.
## 15753                                                                                                                                                                                      Client struck EE on the back with his fist, causing EE to jerk, pain in back.
## 15754                                                                                                                                                                                                                        Client struck EE w/fist to right lower jaw.
## 15755                                                                                                                                                                                     Client struck at EE, then grabbed EE's rt index finger. Rt index finger sprain
## 15756                                                                                                                                                                          Client struck at EE. EE blocked hit. Right index finger was hit by client & finger jammed
## 15757                                                                                                                                                                                                                Client struck employee (forcefully) between breasts
## 15758                                                                                                                                                                                  Client struck employee when he entered room to confiscate contraband from client.
## 15759                                                                                                                                                                              Client struck staff with a bucket, staff went to urgent care and is still out of work
## 15760                                                                                                                                                                                                            Client stuck out foot and EE almost fell entended knee.
## 15761                                                                                                                                                Client stumbled over box in EE's office, EE kept client from falling and in the process felt pain in left rib area.
## 15762                                                                                                                                                              Client stumbled, EE was holding clients hand, client fell and when client fell EE twisted left wrist.
## 15763                                                                                                                                                                                Client suddenly became aggressive and attacked staff, scratching staff on right arm
## 15764                                                                                                                                                                                                    Client swung and hit EE in the face hard (between the eyes). ()
## 15765                                                                                                                                                                                                   Client swung arm struck staff on rt thumb bending it backward ()
## 15766                                                                                                                                                                                                                 Client swung at EE and scratched left side of neck
## 15767                                                                                                                                                                                                 Client swung open door; caught EE's left 3rd finger on the end. ()
## 15768                                                                                                                 Client taking punch off shelf. EE proceeding to take punch away. Client grabbed EE's left thumb & bent it back causing severe hyextension of thumb
## 15769                                                                                                                                                                                                                    Client that EE was assisting had conjunctivitis
## 15770                                                                                                                           Client that could not swim jumped into the pool. Lifguard pulled client to side of pool. EE pulled client up & out of pool. Strain back.
## 15771                                                                                                                                                           Client threw a box at EE--blocked it with hands. Rt hand ring finger base knuckle/ lt hand index finger.
## 15772                                                                                                                                                                Client threw barstool striking staff on the arm while staff was assisting another client's meal. ()
## 15773                                                                                                                                                                                                       Client threw bowl striking staff in forehead at snacktime ()
## 15774                                                                                                                                         Client threw cahir atee and EE tried to block thechairfrom hitting her in the face and the chair struck EE on the lt hand.
## 15775                                                                                                                        Client threw chair at EE, EE placed client in pic hold, when EE was taking client down onto the floorthe client fell on EE. Right arm/wrist
## 15776                                                                                                                                                                                Client threw drink at EE-client attempted to leavebldg & punched EE in nose 3 times
## 15777                                                                                                                                                                         Client threw food on floor and EE slipped and felltrying to clean it up. Back & neck pain.
## 15778                                                                                                                                                                                                                                      Client threw iron @ employee.
## 15779                                                                                                                 Client threw pillow on floor EE walking backward to keep client from running out of door, feel overpillow hitting rt shoudler, hio, head on floor.
## 15780                                                                                                                                                                                                        Client threw toy monitor and struck EE in the left shoulder
## 15781                                                                                                                                                                            Client throw a potted plant at EE-EE att to move out of the way and twisted left ankle.
## 15782                                                                                                                                                                   Client throwing objects at staff, order obtained for restraints, client hit staff on rt eye & lt
## 15783                                                                                                                                                                   Client tightened up legs on EE's right hand and wrist while EE was putting attends on client. ()
## 15784                                                                                                                                                  Client to hospital for catscan, medicated, non ambulatory-emp. Lifited from w/c to table & w/c into van-back pain
## 15785                                                                                                                                                                   Client to the buildng walking up the ramp.. She pulled away and employee's hand hit the handrail
## 15786                                                                                                                                Client took belt off & hit staff on face knocking glasses off breaking frame and scratching lens. Scratch to rt side of face & lip.
## 15787                                                                                                                                                                                                                       Client took pirn and hit EE on lower rt leg.
## 15788                                                                                                                                                                                        Client tried to grab staffs arm, staff snatched itback and it began hurting
## 15789                                                                                                                                                                                                           Client tried to hit EE - EE extended his lt arm toblock.
## 15790                                                                                                                                                     Client tried to hug EE; EE would not let client doso; client twisted right arm and hit her in the right check.
## 15791                                                                                                                                                                                                                  Client tried to run almost pushing employee down.
## 15792                                                                                                                               Client tried to sit down while holding up rt hand caught between chair an client. Bumped hand on flip up trash can. Injured rt hand.
## 15793                                                                                                                                                                                                                         Client tripped EE and EE fell on left knee
## 15794                                                                                                                                                                                                                 Client tripped and pulled staff down as he fell ()
## 15795                                                                                                                                     Client tripped over another clients foot and started to fall-EE caught client and placed in chair-strained back in the process
## 15796                                                                                                                                                                          Client tripped over wheels on wheelchair and fell landing on employee. Injuring low back.
## 15797                                                                                                             Client trying to get in nurse station, attempted to phy. Assist client, placed in a therepeutic hold, client hit rt eye and nose before helped arrived
## 15798                                                                                                                                                                         Client trying to push past EE & while EE was trying to stop him she hurt left pinky finger
## 15799                                                                                                                                                                      Client trying to put head in commode-EE trying to get client to stop-client caused EE to fall
## 15800                                                                                                                                                                                                                            Client turned and hit staff in face. ()
## 15801                                                                                                                                                                                                                                            Client twisted EE elbow
## 15802                                                                                                                                                                                     Client twisted employee's right thumb. Hx of priorinjury to r thumb due to mva
## 15803                                                                                                                                                                                                                                         Client twisted right hand.
## 15804                                                                                                                                                                                                                                   Client upset and hit EE on nose.
## 15805                                                                                                                         Client upset because too close to hwy-he was askedto move-client started charging at EE-tried block him hitting her & EE's rt hand was hit
## 15806                                                                                                                                                                                                                            Client upset by fire drill bit staff ()
## 15807                                                                                                                                                                                           Client upset over card game- EE att to calm clientwho struck EE in face.
## 15808                                                                                                                                     Client upset pulled EE into office and pushed EE over desk and chair-for 10mins client hit EE in chest, face and other arears.
## 15809                                                                                                                        Client upset with EE for coming in late, EE began fussing & kicked EE on left leg twice (2), then threw bedroom shoe at EE hitting left arm
## 15810                                                                                                                                                           Client upset with EE while being escorted ot itd when leaving room client grabbed EE and jerked herdown.
## 15811                                                                                                                                                                   Client urinated on floor-EE att to keep client frmfalling backwards and felt pain in lower back.
## 15812                                                                                                                                                                  Client uses belt to walk, assisting w/ client, client dropped in hallway, felt pain in lower back
## 15813                                                                                                                                                                                                                 Client walked into staff jamming lt ring finger ()
## 15814                                                                                                                                                                                              Client walked out of bedroom and hit staff in the nose with her fist.
## 15815                                                                                                                                                              Client walked out of living room, EE went to get client, client turned around and hit EE in the nose.
## 15816                                                                                                                                                                                                                    Client walked passed EE and hit him in the back
## 15817                                                                                                                                                                                    Client walked past EE client punched EE with fist in face injury to nose, mouth
## 15818                                                                                                                                                                                         Client walking down the hall and grabbed EE's rt arm at elbow twisting it.
## 15819                                                                                                                                           Client walking to van and stepped on gravel rocks and fell-EE att to stop client from falling and fell injuring rt ankle
## 15820                                                                                                                                        Client wanted to get up but refused to wear helmet, client grabbed right wrist and pushed EE away straining right wrist. ()
## 15821                                                                                                                                                                                                       Client wanted to get up; got angry and spit in EE's eyes. ()
## 15822                                                                                                                            Client was about to fall - she came up from behind& caught her under the arms & around waist. Otherstaff assisted standing her upright.
## 15823                                                                                                                                                                                                       Client was about to fall and grabbed EE's neck left shoulder
## 15824                                                                                                            Client was about to slide out of chair onto floor; holding onto client and getting client back into chair strained left shoulder blade area on back. ()
## 15825                                                                                                                                                     Client was acting up, EE tried to calm down. Another client pushed EE down, head hit wall and elbow hit floor.
## 15826                                                                                                                    Client was advise she could not smoke-got upset and started throwing a book against the wall-EE att to assit client who kicking, scratching EE.
## 15827                                                                                                                                                     Client was aggiatated & went after another client EE intervened and client then grabbed EE's thumb forcefully.
## 15828                                                                                                                                                                                                         Client was aggressive and kicked EE in left shlderand shoe
## 15829                                                                                                                            Client was aggressive and needed to be restrained staff injured rt hand while attempting to restrain client as client fell to floor. ()
## 15830                                                                                                                                 Client was aggressive to another EE-EE assisted inplacing client in therapeutic hold injuring left side of shoulder, neck and arm.
## 15831                                                                                                                                                                     Client was aggressive toward employee. Client kicked up in air and kicked EE in the throat. ()
## 15832                                                                                                                                                           Client was aggressive, intervened and client twisted rt arm while being placed in a personal restariant.
## 15833                                                                                                                                                        Client was allowed out of seclusion to use the restroom. The client became agitated and began to attack EE.
## 15834                                                                                                                                                                             Client was angry threw pot at EE, hitting her on right shoulder. Contusion of shoulder
## 15835                                                                                                                                                                     Client was asked to brush teeth and put on underwear. Client began fighting and hit EE in nose
## 15836                                                                                                                   Client was asked to put on underwear and brush teeth. Client started swinging hitting, scratchingkicking, knocked glasses off, hit left arm, eye
## 15837                                                                                                                                  Client was assaulting staff when EE was breaking up fight everybody's wght went backwards and EE fell against wall injuring back.
## 15838                                                                                                                                                                                 Client was attempting to stand up and lost balancehitting the EE on the left wrist
## 15839                                                                                                                                                          Client was bathing client and client became aggressive and struck EE - EE was bent over and strained back
## 15840                                                                                                                                                                                         Client was behving badly when EE tried to ensure the safety of the client.
## 15841                                                                                                                           Client was being aggressive and staff came to intervene and the client grabbed her shirt pulled her back/forth and staff fell backwards.
## 15842                                                                                                                                                                                            Client was being combative. Client was kicking and hit EE on left knee.
## 15843                                                                                                                                   Client was being non-complient to EE and another staff-EE picked client up to move and felt pain in left side of back and knees.
## 15844                                                                                                                                                                                            Client was being placed in therapeutic hold and bit EE's left upper arm
## 15845                                                                                                                                                                 Client was being put int pic hold by other EE's client started kicking and kicked EE in left knee.
## 15846                                                                                                                                                         Client was being transported to work on golf cart and became aggressive toward staff. Bit staff on arm. ()
## 15847                                                                                                                                                                                      Client was brought to playroom took helment off nad threw it, helmet hit nose
## 15848                                                                                                                                        Client was coming out of office and client was coming through hallway door and tripped. He began to fall and EE caught him.
## 15849                                                                                                                                                                         Client was coming out of restroom and EE tripped over client and injured rt foot and ankle
## 15850                                                                                                  Client was excited; tried to involve client in an activity. Client went into behavior pulled EE's hair and jerked EE's neck causing a strain to head and neck. ()
## 15851                                                                                                                           Client was exhibiting aggressive behaviors-client kicked EE in the abdomen and caused EE to fall backwards onto floor-left elbow bruised
## 15852                                                                                                                                                                                 Client was falling - EE tried to beat fall and turned and hurt back and left ankle
## 15853                                                                                                                                                                                            Client was falling to floor, EE caught-client against employee rt knee.
## 15854                                                                                                                                                                              Client was falling to the floor and EE broke her fall and injured her right shoulder.
## 15855                                                                                                                                                                                                      Client was falling, reached out to stop the fall, pulled back
## 15856                                                                                                                                                    Client was falling, staff tried to prevent fall and injury to client, caught right hand between desk and client
## 15857                                                                                                                                                                Client was fighting EE while trying to give rx client pulled EE and hurt left hand and pinky finger
## 15858                                                                                                                                                                                 Client was fighting with staff down hall and stafffell on the floor striking knee.
## 15859                                                                                                                               Client was getting into van, started falling back on EE. EE held client up so would not fall. Felt funny in chest and left shoulder.
## 15860                                                                                                                                                               Client was getting up and almost fell-EE grabbed client to keep from falling-EE pulled left shoulder
## 15861                                                                                                                                                                            Client was having a behavior EE went to help, client hit employee w/his head right hand
## 15862                                                                                                                                                                Client was having a seizure EE tried to keep client from falling and slipped in water strainingback
## 15863                                                                                                                             Client was having a seizure when staff member tried to catch client. Afterwards EE noticed a burning aching in back of neck & shoulder
## 15864                                                                                                                                                   Client was having a seizure. EE intervened to protect client from hurting self, EE's left thumb was jammed back.
## 15865                                                                                                                               Client was having seizure. EE grabbed hold of resident to keep from falling. Had pain in lower side when lowering resident to floor.
## 15866                                                                                                                                                                                              Client was helping with laundry and slammed lid down on EE's rt wrist
## 15867                                                                                                                                                                                                            Client was hitting and bittin EE. EE put client in pic.
## 15868                                                                                                                                             Client was hitting and kicking another client-EE att to stop client and pick client up off floor- felt a pain in back.
## 15869                                                                                                                                                       Client was hitting himself when EE tried to intervene. EE was head butted by client which snapped neck back.
## 15870                                                                                                                                               Client was hitting his head on the floor EE grabbed him up off floor & went backward with him & was hit in the head.
## 15871                                                                                                                   Client was holding EE's left hand when he squeezedee's hand. EE tried to remove hand from client's and in the process she pulled her left thumb.
## 15872                                                                                                                                                                                                Client was in a behavior and threw a flower baskethitting EE's hand
## 15873                               Client was in a behavior pattern prior to dinner hour (known to happen daily). Client ran to her bedroom and tried to get under bed. EE was asked to help her up. Later that eve, EE noticed pain/strain in affected areas noted. ()
## 15874                                                                                                                                                                       Client was in a behavior, threw chair, striking eeon r leg and foot. Also bit EE on rt hand.
## 15875                                                                                                                                 Client was in behavior outburst of head banging. EE intervened in behavior hitting head against table and leg was struck by chair.
## 15876                                                                                                             Client was in behavior then became aggressive. Client ran down hall. EE blocked client, client dropped to floor landing on EE's lt foot, causing strai
## 15877                                                                                                                                             Client was in behavior. Assisting staff by intervening b/w client and staff and received strain to rt shoulder and arm
## 15878                                                                                                                                         Client was in behavior; head banging; EE attempted to put pillow behind client's head; right hand caught under pillows. ()
## 15879                                                                                                                                                             Client was in frt of EE going down stairs-client fell back on EE left knee knocking knee out of socket
## 15880                                                                                                                 Client was in hallway cursing EE-EE trying to get client to stop when client attacked EE and both fell to the floor causing EE to fall on rt knee.
## 15881                                                                                                                                     Client was in pain. Client began kicking, fightingand falling to the floor. EE tried to calm client down causing pain in back.
## 15882                                                                                                                                                 Client was in shouwer, and confused non compliant behavior and client threw all her weight on EE's right shoulder.
## 15883                                                                                                                                                                                         Client was jumping & pulled out iv tube causing blood to spray on EE hands
## 15884                                                                                                                                              Client was kicking and grabbing staff as the staff attempted to dress client injuring her lt thumb and her lt knee ()
## 15885                                                                                                                                                                                Client was kicking, fighting, spitting and scratching EE as being escorted to room.
## 15886                                                                                                                                  Client was moving from one chair into another and started to fall and EE caught and placed back in chair- noted pain in low back.
## 15887                                                                                                                                                                                                                Client was out of control and hit EE on left breast
## 15888                                                                                                                                                                            Client was passenger in work van that was struck by another vehicle - lower extremities
## 15889                                                                                                                                                                Client was passing out, EE caught client and lowering him to the floor, felt something pull in back
## 15890                                                                                                                                               Client was placed in time-out and as EE was leaving the rm client kicked EE between the legs into the left testicle.
## 15891                                                                                                               Client was playing with keyboard. EE put his hand on client's shoulder to prompt client to leave. Client stood up and twisted EE's right middle fing
## 15892                                                                                                                        Client was pulling away from EE and EE was reaching to put on client's shirt. Pain in right side of lower back and middle of right side. ()
## 15893                                                                                                                                                                                        Client was pushing another client in wheelchair- rolled over emp. Left foot
## 15894                                                                                                                                                        Client was pushing on EE's arm and pushed the arm backwards and in an akward position straining rt shoulder
## 15895                                                                                                                                                         Client was reaching on tv cabinet. EE got up to to get toy for client. Client dropped toy on ees left knee
## 15896                                         Client was running toward kitchen. While attempting to run down hall to try to get in front of client, lost footing, fell on right side on floor hurting right ankle, right knee, shoulder, neck, wrist and 5th finger. ()
## 15897                                                                                                                                                                              Client was running. Client fell, trying to preventfall client fell back on left wrist
## 15898                                                                                                                                                                                       Client was sitting on EE's lap and pushed EE's head back causing pop in neck
## 15899                                                                                                                                                                               Client was sitting on EE's lap when client pushed EE's head back straining EE's neck
## 15900                                                                                                                                                         Client was sitting on bed had a drop seizare-EE reached to keep client from falling and felt pain in neck.
## 15901                                                                                                                                                                Client was sitting on couch in dayroom and client reached up and pointed finger into EE's left eye.
## 15902                                                                                                                                                                    Client was sitting on floor. EE pulled client up several times. Client would fall back to floor
## 15903                                                                                                    Client was sitting on toilet when he stood up and lunged like he was trying to head butt EE. When EE stepped back, a sharp pain was in right foot and ankle. ()
## 15904                                                                                                                                             Client was sleeping and hitting his head and EE shocked the hitting and slapping causing bruise to back of right hand.
## 15905                                                                                                                                                        Client was sliding off wheelchair. While lifting the client, felt a sharp, throbbing pain on lower back. ()
## 15906                                                                                                                                                                                                  Client was stabbing EE in the back with a pen right shoulder/back
## 15907                                                                                                                                    Client was taking out trash and client slipped and EE went to catch client and slipped and both fell straining wrist and rt leg
## 15908                                                                                                                                         Client was trying to fight & bite employee--client bit staff & staff tried to pull away causing hand to hit door facing ()
## 15909                                                                                                                         Client was trying to get into bed, in the process client pulled EE toward him causing EE to spin around andpull EE back resulting in pain.
## 15910                                                                                                                                             Client was trying to get on elevator when EE was advised not to let client get on elevator-in process EE injured back.
## 15911                                                                                                                                                  Client was trying to get out of wheelchair, EE was trying to help her but client grabbed EE r wrist and pulled it
## 15912                                                                                                                                                                                     Client was trying to hit EE when EE tried to blockpunch. Client hit left thumb
## 15913                                                                                                                                                 Client was trying to leave unit and EE was trying to restrain client, client moved away causing wristto be injured
## 15914                                                                                                                                               Client was trying to steal sodas he shoved EE poking EE in rt eye causing EE & client to fall EE hit knee and elbow.
## 15915                                                                                                                                                                                                           Client was upset and scratched EE on both hands and arms
## 15916                                                                                                                                                                                Client was upset grabbed EE by the wrists, trying to sign that something was wrong.
## 15917                                                                                                                                                                                     Client was upset with deer, client turned around and pinched staff on stomach.
## 15918                                                                                                                                               Client was upset. EE tried to cam client down. Client took a step back, then came forward and struck EE on the nose.
## 15919                                                                                                                                                                                                                      Client was upset.... Struck EE... Right thumb
## 15920                                                                                                                                                                           Client was walking & knees gave away, EE was holding client's belt & pulled lt shoulder.
## 15921                                                                                                                    Client was walking down hallway and swung at EE scratching left shoulder then client pushed EE over a love seat causing neck and back to twist.
## 15922                                                                                                                                                                                              Client was walking in kitchen client started to fall EE caught client
## 15923                                                                                                                  Client was walking on bed, began to fall, EE tried to catch him, hit EE in face and caused him to fall hitting floor w/ head and breaking glasses
## 15924                                                                                                                                                                                        Client was walking past, hit staff in nose with fist for no apparent reason
## 15925                                                                    Client was walking toward door; EE placed hand on gait belt; client stiffened up; client lost balance, EE held onto belt guided client in a seated position on floor, straining right wrist. ()
## 15926                                                                                                   Client was walking with walking belt; started turning around and around; client started to fall, EE grabbed client's walking belt and felt pain in left hand. ()
## 15927                                                                                                                                                                                                               Client went into behavior and grabbed staff's arm ()
## 15928                                                                                                                                                                                                                       Client went into behavior and hit EE in eye.
## 15929                                                                                                                              Client went into behavior and started swinging and kicking; hitting EE in the center of the chest and kicking EE above right knee. ()
## 15930                                                                                                                Client went into behavior, and began kicking & slapping, tried to get out of wheelchair & startedto fall. EE tried catch client and strain mid back
## 15931                                                                                                                             Client went into behavior; grabbed EE's hands and arms. Client's finger nails dug into EE's both hands and arms and broke the skin. ()
## 15932                                                                                                                                 Client went into behavior; started head butting, scratching and attempting to bite. Scratched right arm amd right side of neck. ()
## 15933                                                                                                                        Client went to door and was told to come back in and sat down in stairway and had to be removed from w/2 other staff members strained back.
## 15934                                                                                                                                                                 Client went to lay down in the street and EE ran to get client and fell abrading knee and shoulder
## 15935                                                                                                                                                                                                                Client wrung rag with bleach on EE - bleach in eyes
## 15936                                                                                                                                                     Client wzas lifting the basket down from the con- trol tower, the basket hit EE on the top of head. Contusion.
## 15937                                                                                                                                                                                  Client's child climbed on couch. EE tried to help child and child bit EE on elbow
## 15938                                                                                                                                                                                                                             Client's wheelchair hit EE's rt ankle.
## 15939                                            Clients and staff were roasting marshmallows around campfire. A client accidentally poked employee in the eye. Employee eye was open and then began to water. Employee rested with an ice bag for 10 min. Right eye. ()
## 15940                                                                                                          Clients children became assaltive after told fostecare, stomped on EE left foot, kicked in thigh and shins and fell and jumped on EE. Lumbar strain, con-
## 15941                                                                                                                                                                                                     Clients elbow struck staff in the nose causing it to bleed. ()
## 15942                                                                                                                                                                                                                          Clients full body weight on EE left wrist
## 15943                                                                                                                                          Clients were fighting-EE assisting to separate in process kicked in stomach, fell on rt knee, injured rt shoulder and arm
## 15944                                                                                                                                                 Clients were fighting. EE intervened. One client grabbed EE causing EE to fall on back. Client rolled on top of EE
## 15945                                                                                                                                                       Clients wheelchair tipped forward, EE's leg caught in wheel causing her to fall. Back strain/knee contusion.
## 15946                                                                                                                                                                                                                    Climb down on ladder foot slipped and fall down
## 15947                                                                                                                                          Climbed an extension ladder to get onto shelf in warehouse where electrical supplies are kept in inventory. Fell to floor
## 15948                                                                                                                                                   Climbed down ladder from top of other exhibit after ?? Snack. Pulling hatch overhead & hatch fell in right hand.
## 15949                                                                                                                                                                                                Climbed ladder to make sure roof hatch was secure, slipped and fell
## 15950                                                                                                                      Climbed on rear of planters using drive wheel as step. Wheel not securely on ground, when EE put weight on wheel, it spun causing him to fall
## 15951                                                                                                                     Climbed on top of 2 stacked laundry baskets to observe the unloading process when he slipped & fell to the floor of the clothes truck trailer.
## 15952                                                                                                                                                                                Climbed tree to prune and slipped-att to catch self and cut hand on pruning shears.
## 15953                                                                                                                                             Climbed up on a step stool to reach certificates and injured back. Leg numb & tingley on the left side form knee down.
## 15954                                                                                                                                    Climbing aluminum ladder, ladder folded up causingee to fall & stirke face on joint in ladder, EE fell unconcious to the ground
## 15955                                                                                                                                       Climbing control tower with another officer, stepped back to give officer room and grabbed handrail, felt pain in l shoulder
## 15956                                                                                                                                                                                                      Climbing down a ladder and missed step and twistedlower back.
## 15957                                                                                                                                                                                                     Climbing down a ladder/working on a ladder, strainto left knee
## 15958                                                                                                                                                                                         Climbing down a wall ladder, missed the last step and fell to the floor ()
## 15959                                                                                                                                                                                     Climbing down from ladder- pullinghatch overhead and hatch fell on my rt hnad.
## 15960                                                                                                                  Climbing down from scaffold. Grabbed kick board toclimb down with and board pulled loose. EE fell & injured ankle EE neighbor - 341-2914 ********
## 15961                                                                                                                                                               Climbing down ladder & her foot slipped off secondto last step at bottom of ladder, twisted her foot
## 15962                                                                                                                                  Climbing down ladder from roof. Ladder slipped & EE fell onto back hitting rib cage then fell onto brick step causing head injury
## 15963                                                                                                                                                                                            Climbing down off a bench, left knee buckled when EE touched the ground
## 15964                                                                                                                                                                                  Climbing down off of ladder and stepped in a hole in the floor injuring rt ankle.
## 15965                                                                                                                                                                                       Climbing down off trailer when EE felt pain in neck & some in upper shoulder
## 15966                                                                                                                                                                                                    Climbing in bus to do inmate count, hit head goingin back door.
## 15967                                                                                                                                                    Climbing into boat, lost footing and caught right foot between boat and piling and fell, twisting right knee ()
## 15968                                                                                                                                                                                                               Climbing into truck bed and knee popped out up place
## 15969                                                                                                                                                                                                          Climbing ladder and hit his head on metal access door. ()
## 15970                                                                                                                                                           Climbing ladder to life support buoy. Lost balancefell 8' to pavement.. Landed on feet.. Crushed rt heel
## 15971                                                                                                                                                                                                            Climbing ladder, she hit her left knee on the hand rail
## 15972                                                                                                                                            Climbing off of a truck and slipped and fell to the ground and caught himself with his left hand breaking his left arm.
## 15973                                                                                                                                                    Climbing on & off full track to spray hot spots onwildfire. By mid-day right hand became sore & begin to swell.
## 15974                                                                                                                            Climbing on flatbed truck to inspect bulldozer, lost footing, broke fall by hanging on with left arm, felt tear/pop in upper left bicep
## 15975                                                                                                                                                         Climbing on the bars to retrieve a letter from theupper mezzanim and left arm became tangled & dislocated.
## 15976                                                                                                                                                                                    Climbing on to roof top reaching out to open security door jammed left knee. ()
## 15977                                                                                                                                                                                                               Climbing onto loading dock when back started hurting
## 15978                                                                                                                                                                       Climbing out of boat hatch; placed knee on deck and inadvertently placed full weight on bolt
## 15979                                                                                                                             Climbing out of van & right foot caught in space between door. Fell on ground onto left hip. Was in process of delivering made to bldg
## 15980                                                                                                                                                                    Climbing out of window onto roof and foot slipped causing leg to be lt suspended on window sill
## 15981                                                                                                                                                                                                     Climbing over duct work in a building he pulled his lower back
## 15982                                                                                                                                                                                                                                             Climbing stair case ()
## 15983                                                                                                                                                                                               Climbing stairs and put foot down wrong way, twisting left ankle. ()
## 15984                                                                                                                                                                                                          Climbing stairs and tripped falling on her right knee cap
## 15985                                                                                                                    Climbing stairs and walking for clinicals at waynecc. Walked up stairs toured several bldgs for clincal purposes. Burning & friction left knee.
## 15986                                                                                                                                                                        Climbing stairs between offices on 10 and 11th floors, slipped and fell onto left wrist. ()
## 15987                                                                                                            Climbing stairs to get the 3rd floor while carrying tools, pain in abdomen. Dx with inguinal hernia. *** umbilical hernia is pre-existing & not related
## 15988                   Climbing stairs to second floor for orienttion for new postion; upon climbing somehow one foot slipped on one step causing a fall and slip of body down 4 steps to the floor. List injuries as: hand, arm, knee, side of body, leg, feet, hip ()
## 15989                                                                                                                                                                                                  Climbing stairs with mail tripped and fell bruising knee and leg.
## 15990                                                                                                                                       Climbing stairs, lost balance, mis-judged step. Started to fall, caught self to prevent fall, painin left shoulder and neck.
## 15991                                                                                                                                                                                                                                                   Climbing stairs.
## 15992                                                                                                                                                           Climbing steps to attend classroom, foot caught lip of top step. EE fell, caught herself with her r hand
## 15993                                                                                                                                             Climbing steps to enter trailer when her foot slipped & she fell, bracing herself w/right arm & her left knee hit step
## 15994                                                                                                                                         Climbing steps to parking area when he stepped on small stone and his foot twisted around causing left knee to twist & pop
## 15995                                                                                                                                                           Climbing steps, her foot hit the base of the step she then lost her balance, and fell on the loadingdock
## 15996                                                                                                                  Climbing the stairs b/w basement and the first floor with food in her hands. Missed step and fell forward onto steps, banging rt knee, hip, hand.
## 15997                                                                                                   Climbing though rhododendron thicket. After field work, while showering to remove debris from head/face/hair, washed foreign body into eye, scratching rt eye ()
## 15998                                                                                                                                                                                                                              Climbing through roof hatch, cut head
## 15999                                                                                                                                                            Climbing tractor trailer frame to install radio antenna, slipped and fell 5-6 feet to concrete fall. ()
## 16000                                                                                                                                                              Climbing tree while in bucket truck, holding branchhand saw slipped through & grazed lt thumb knuckle
## 16001                                                                                                                                                           Climbing up & down the ladder for several months, painting begin to feel pain in lower back (l. Side) ()
## 16002                                                                                                                                                                                                  Climbing up a ladder, he felt and heard his knee pop. ()left knee
## 16003                                                                                                                                                                                              Climbing up and down steep terrain, my right kneew became swollen. ()
## 16004                                                                                                                                                                                                           Climbing up into vehicle, hit side of head on doorframe.
## 16005                                                                                                                                                                 Climbing up ladder to adjust water level, slipped on the way down & hit right ear on ladder steps.
## 16006                                                                                                                                                                                                                  Climbing wall. Finger popped and experienced pain
## 16007                                                                                                                                                                         Climbng up stairs after pulling file in basement, tripped on step and lost her ballance ()
## 16008                                                                                                                                                                                      Clinet bit on left hand. EE was taking client to bathroom. Bite to left hand.
## 16009                                                                                                                                                                                                                Clipping pt's nails, nail went in EE's right eye ()
## 16010                                                                                                                                                                        Clm't driving bus. Buzzard flew into and broke windshield. Clm't got foreign bodies in eye.
## 16011                                                                                                                                                                                                                                         Clmt involved in auto acc.
## 16012                                                                                                                                                                                  Clmt was walking to office when she was pushed by a student and injured left hand
## 16013                                                                                                                                                               Clock hanging above the chalkboard fell on EE's neck when the EE bumped against the chalkboard tray.
## 16014                                                                                                                                                                                  Clock out of work, walking to car, step off sidewalk and twisted my left ankle ()
## 16015                                                                                                                                                                                                                         Clorox and water bounced into EE right eye
## 16016                                                                                                                                                                 Clorox poured into buckett - didn't know somethingwas already bucket. Eyes burning, nose effective
## 16017                                                                                                                                                                                                                          Close contact with resident with scabies.
## 16018                                                                                                                                                                                                                             Close door on my hand-bathroom, 3 east
## 16019                                                                                                                                                                                                                              Closed a cell door on ring finger. ()
## 16020                                                                                                                                                                                                     Closed door & didn't move hand fast enough contusion left hand
## 16021                                                                                                                                                                                                                            Closed door on 2nd digit on right hand.
## 16022                                                                                                                                                                                                               Closed door on finger, caught between door and frame
## 16023                                                                                                                                                                                                                                 Closed door on left middle finger.
## 16024                                                                                                                                                                                                                                           Closed door on lft thumb
## 16025                                                                                                                                                                                                                                     Closed door on right finger ()
## 16026                                                                                                                                                                                                                                Closed door on rt thumb of work van
## 16027                                                                                                                                                                                                                         Closed door with his thumb in the door jam
## 16028                                                                                                                                                                                                                                 Closed dormitory door on rt thumb.
## 16029                                                                                                                                                                                                Closed entrance door to the tower and finger was slammed in door ()
## 16030                                                                                                                                                                                                        Closed finger in between door and cage releaseing inmate ()
## 16031                                                                                                                                                                                      Closed hand in door - lt hand palm region and distal phalnx of middle finger.
## 16032                                                                                                                                                                                                                                 Closed heavy door on index finger.
## 16033                                                                                                                                                                                                                   Closed her right thumb in the security van door.
## 16034                                                                                                                                                                                                                                      Closed in 1b vlock glass door
## 16035                                                                                                                                                                                                              Closed in a door, as going into a dorm in tillery. ()
## 16036                                                                                                                                                 Closed in sally port (slider) door & allegedly injured lower back when she pulled the (air compressed) slider door
## 16037                                                                                                                                                                                              Closed in sally port door/ lt hand/lt shoulder/elbow and hand sore ()
## 16038                                                                                                                                                                                                                                        Closed l thumb in low rator
## 16039                                                                                                                                                                                                                                        Closed ladder on his finger
## 16040                                                                                                                                                             Closed right hand in door of ward 491. Caught right 2nd, 3rd and 4th finger causing pain and swelling.
## 16041                                                                                                                                                                                                                                       Closed rt 5th finger in door
## 16042                                                                                                                                                                                                                                          Closed rt hand up in door
## 16043                                                                                                                                                                  Closed state car door on right index finger - finger was caught between car door and car frame ()
## 16044                                                                                                                                                                                           Closed the door catching her pinky finger on her right hand in the door.
## 16045                                                                                                                                                                                                                                 Closed the door on hand (right) ()
## 16046                                                                                                                                                                                                        Closed truck door on right middle finger while getting out.
## 16047                                                                                                                                                                                              Closed window in dorm and the window fell open & hit back of head. ()
## 16048                                                                                                                                                   Closing a cage door. Pcv tube on index card on cage. Pcv tube went through hand and broke off possibley in hand.
## 16049                                                                                                                                                                                                        Closing a cell door and injured right shoulder/upper arm ()
## 16050                                                                                                                                                                                            Closing a cell door in cpod right hand slipped andpinched middle finger
## 16051                                                                                                                                                   Closing a food trap door, inmate tried to grab baton, officer frazier blocked the inmate from grabbing his baton
## 16052                                                                                                                                                                           Closing a student't room door when the student became upset and hit him lip and lft jaw.
## 16053                                                                                                                                                                                                                      Closing a window, window broke, cut wrist. ()
## 16054                                                                                                                                                                                                                     Closing bedroom door, slammed lt thumb in door
## 16055                                                                                                                                                                                     Closing cell door, inmate spit into & onto EE's face going in his eyes & mouth
## 16056                                                                                                                                                                     Closing cell wicket door, turned head to speak with other staff. Closed wicket door on finger.
## 16057                                                                                                                                                                            Closing classroom door and caught finger in the door. Contusion tip of rt index finger.
## 16058                                                                                                                                                             Closing cupboard box full of pasteur pipetts for disposal & was cut by tip of pipe sticking out of box
## 16059                                                                                                                                                                          Closing door & swung shut sooner than anticipated. Catching 2 middle fingers of left hand
## 16060                                                                                                                                                                                                  Closing door employee slammed his own lt middle finger in door ()
## 16061                                                                                                                                                                                                                 Closing door on 2e and hand was caught in the door
## 16062                                                                                                                                                                                         Closing door on vehicle hand slipped off handle, finger got caught in door
## 16063                                                                                                                                                                                                             Closing door she accidently closed her hand up in door
## 16064                                                                                                                                                                                Closing door to cell inmate grabbed door & slammed it on his left hand at the wrist
## 16065                                                                                                                                                                                                             Closing door to kitchen and smashed right hand in door
## 16066                                                                                                                                                                                                           Closing door, finger got caught inside groove of door ()
## 16067                                                                                                                                                                                                     Closing entrance gate rod struck her right hand causing injury
## 16068                                                                                                                                                                            Closing fence gate while reaching for one side of fence outer gate hit lower right heel
## 16069                                                                                                                                                                                                                      Closing fire door and handle fell on hand. ()
## 16070                                                                                                                                                             Closing folding ladder and pinched finger on the right hand causing severe fracture with displacement.
## 16071                                                                                                                                                                                             Closing food passage door. Caught left forefinger in food passage door
## 16072                                                                                                                                                                                                  Closing food passgae door on c-block c-7 in scb injured rt wrist.
## 16073                                                                                                                                                                                            Closing food traps after breakfast meal. Closed trap door on her finger
## 16074                                                                                                                                      Closing frame mounting bracked under automobile to prepare metal for welding. After completion noticed irritation of left eye
## 16075                                                                                                                                                 Closing garage door at the maintenance shop and got fingers caught between the door panels and it smashed fingers.
## 16076                                                                                                                                                                                                  Closing gate after getting dot gas, caught heel onpiece of fence.
## 16077                                                                                                                                                                           Closing gate at the 1042 bldg, & left fingers (#3 & #4) were caught between the gate. ()
## 16078                                                                                                                                                                                                               Closing gate back smashed finger gate/fence/lock. ()
## 16079                                                                                                                                                                                                          Closing gate caught r thumb between two sides of gate. ()
## 16080                                                                                                                                                                                          Closing gate to ball field when center bar slid down and caught his thumb
## 16081                                                                                                                                                                               Closing gate to north unit and accidentially slammed door on his right fourth finger
## 16082                                                                                                                                                                                                       Closing kitchen door & her hand got caught while closing it.
## 16083                                                                                                                                                                                                Closing lock when locking mechanism allegedly pinched her left hand
## 16084                                                                                                                                                                   Closing med cart and locking cart, last finger of right hand got caught between hinge and drawer
## 16085                                                                                                                                                                                                         Closing med. Door, left middle finger closed between door.
## 16086                                                                                                                                                                                                              Closing metal drawer and hyperextended right thumb ()
## 16087                                                                                                                                                                                       Closing metal gate in radiology when locking mechanism fell onto my wrist ()
## 16088                                                                                                                                                                                                            Closing of tailgate on dump truck and crushed rt. Thumb
## 16089                                                                                                                                Closing open window--latch did not catch. Window popped open, reclosed with right hand, window paneshattered cutting right eye lid.
## 16090                                                                                                                                                                   Closing outer sally port gate got hand caught between gate & the gate post which holds the chair
## 16091                                                                                                                                                                              Closing outside mediation door, door closed on index and middle fingers of left hand.
## 16092                                                                                                                                                                                                           Closing overhead door on one foot, slipped, injured back
## 16093                                                                                                                                                                                          Closing pad lock on security fence and pinched left finger, causing a cut
## 16094                                                                                                                                                                                     Closing patrol vehicle door, top portion of right index finger caught in door.
## 16095                                                                                                     Closing red gate to alternate driveway passages. I lifted the gate out of the cradle; gate slipped out of my hand; gate struck the inside of my right knee. ()
## 16096                                                                                                                                                                                                     Closing segregation door he got his small finger caught in it.
## 16097                                                                                                                                                                                                    Closing sliding van door and hand got caught inside the door ()
## 16098                                                                                                                                                                                                                     Closing supply closet, thumb got caught in way
## 16099                                                                                                                                                                                      Closing the car door on left thumb while taking an inmate to rex hospital. ()
## 16100                                                                                                                                                                                                                         Closing the door and hit left side of face
## 16101                                                                                                                                                                                             Closing the door of the tower scrapped my right thumb on lock latch ()
## 16102                                                                                                                                                                                                 Closing the front of beaverdam, inadvertently smashed her lt thumb
## 16103                                                                                                                                                                     Closing the gates & felt a sharp & painful pinch to her left forearm & found a ant biting her.
## 16104                                                                                                                                                         Closing the lid on tar kettle and it closed on right thumb. Cut right thumb and turned thumbnail black. ()
## 16105                                                                                                                                                                                        Closing the pass through for the cell door and pinched hand in the door. ()
## 16106                                                                                                                           Closing the sally port gate & the pole between thegate slipped & wedged EE's rt thumb between the pole & the connecting hasp of the gate
## 16107                                                                                                                                                   Closing the sliding door of the van. Gloved hand was caught and couldn't get hand out of the way. Crushed thumb.
## 16108                                                                                                                                                      Closing trap to prevent inmate from further throwing liquid and hit right hand on the trap door as it closed.
## 16109                                                                                                                                                                                                Closing valve, walked away, slipped on wet grass and fell down hill
## 16110                                                                                                                                                                                                                              Closing van door & struck right ankle
## 16111                                                                                                                                                                                                                                   Closing window & glass shattered
## 16112                                                                                                                                                                                                                            Closing window at prison. Injured back.
## 16113                                                                                                                                                                                       Closing window in office. Book feel off counter & landed on his left big toe
## 16114                                                                                                                                                                                  Closing window when he pulled up handle his right thumb got caught between handle
## 16115                                                                                                                                                                                      Closing window-window was tight hand to pull mashed finger. Lt little finger.
## 16116                                                                                                                                             Closing wing door when inmate called her. Looked back & accidentally closed her left middle & ring finger tips in door
## 16117                                                                                                                                                                   Clothes house dryer caught on fire and officer inhaled smoke and fire extinguisher discharge. ()
## 16118                                                                                                                                                                                                   Clothes house dryer caught on fire and officer inhaled smoke. ()
## 16119                                                                                                                                          Clotheshouse departed off yard into salleyport & when completed search on truck while closing gate right thumb got jammed
## 16120                                                                                                                                    Club car was making a turn, started to roll over. Employee (passenger) tried to brace himself with his hand as the cart tipped.
## 16121                                                                                                                                                           Cna assisting others in placing client in Mr For procedure-client was struggling causing injuries to cna
## 16122                                                                                                                                                                                  Cna helping pt get dressed, pt took her fist and hit EE with her fist on left jaw
## 16123                                                                                                                       Co EE and EE putting out trash disposals, in diff locations, while trying to get one off pallet EE lost leverage and felt pull in lower back
## 16124                                                                                                                                                      Co best pulled the desk draw out to put papers in desk, and the draw fell out on my large toe, right foot. ()
## 16125                                                                                                                                                          Co byrum was in central control when he passed outin the chair and fell in his right side onto the floor.
## 16126                                                                                                                                                                     Co moore was conducting a curfew check when offenders dog bit him on the right ankle/leg area.
## 16127                                                                                                                                                                                                  Co worker accidentally activated the door catching finger in door
## 16128                                                                                                                                                                                Co worker fainted, employee caught the co worker and lowered to floor, jammed thumb
## 16129                                                                                                                                                              Co worker moving filing cabinet; things leaning against filing cabinet; falling and hitting lower leg
## 16130                                                                                                       Co-employee flipped a metal stool onto courtroom clerk's foot while standing at front counter in the civil division on the first floor of the courthouse. ()
## 16131                                                                                                                                   Co-responding to a code in I/m dinning hall coming down stairs from operations, lt foot slipped on stairs landing on both knees.
## 16132                                                                                                                                                       Co-workeer dropped ramp before EE was ready causing the ramp to bounce mashing EE's ring and middle fingers.
## 16133                                                                                                                  Co-worker accidently dropped his end of timber as it was being moved for loading on a pickup truck pulled back, arm, shoulder & dropped to knees.
## 16134                                                                                                                                                                                                                      Co-worker and EE were lifting a gel mattress.
## 16135                                                                                                                                                                               Co-worker and EE were pulling a client up in bed when injury to right side occurred.
## 16136                                                                                                                                                                         Co-worker and EE were pulling a client up in bed with a sheet when EE's rt shoulder popped
## 16137                                                                                                                                                                                                            Co-worker backed into her knocking her down face first.
## 16138                                                                                                                                                                                                                       Co-worker closed door hitting EE in left arm
## 16139                                                                                                                                                                              Co-worker exited door while EE entered adjacent door, finger was caught between doors
## 16140                                                                                                                                                                                                       Co-worker fell and EE helped pick her up. Middle lower back.
## 16141                                                                                                                                                                                                Co-worker grabbed EE's wrist, later causing problem with left wrist
## 16142                                                                                                                      Co-worker left razor blade in their lab coat pocket. Coat was drapped over office chair. Went to sit down on chair & blade stabbed on buttock
## 16143                                                                                                                                                                                                                     Co-worker let go of wrench and it hit hand. ()
## 16144                                                                                                                                                      Co-worker put a leaf on hair. After EE touched leafthen rubbed eye & face, reaction occurred swellingthe skin
## 16145                                                                                                                                                                                                            Co-worker ran into struck r rib area with employeeelbow
## 16146                                                                                                                      Co-worker set off indoor insect fogger & did not EE aware of that. Fumes affected eyes/nose/throat, coughing, sligh headache, burning throat.
## 16147                                                                                                                                                          Co-worker set off indoor insect fogger & did not make EE aware of that. Fumes affected eyes/nose/ throat.
## 16148                                                                                                                                                                                                                   Co-worker shut EE's rt middle finger in van door
## 16149                                                                                                                                        Co-worker sprayed highly concentrated air cleaner in office, EE's throat & nose began to burn, & trouble breathing. Via ems
## 16150                                                                                                                                                     Co-worker sprayed lysol in the hallway to rid offcie of potential germs due to her just diagnosed throat virus
## 16151                                                                                                  Co-worker stepped backwards on to EE's right foot, fell backward on to EE, EE tried to keep fm falling, neck popped and immediately felt pain in left shoulder ()
## 16152                                                                                                                                                                        Co-worker stopped quickley which caused EE's neck and shoulder to pop forward and backward.
## 16153                                                                                                                                                 Co-worker threw chemical mixture from upstairs which poured onto the back of EE below, causing her to burn on back
## 16154                                                                                                                                                                                                     Co-worker tossed ball to EE and it struck EE's rt small finger
## 16155                                                                                                                                                         Co-worker trying to hit an acorn w/screwdriver which flew out of his hand striking Mr. Fisher on his head.
## 16156                                                                                                                                                                        Co-worker was cutting iron pipe, dust from pipe got in hands and was rubbed into EE's eyes.
## 16157                                                                                                                                                                Co-worker was cutting pipe with a torch, steel slay balls got down EE's gloves burning left hand ()
## 16158                                                                                                                          Co-worker was letting handcart down & EE was bend-ing down to put mail on the cart. When EE bent down, EE's head collided with hand cart.
## 16159                                                                                                                                         Co-worker was running the grinder and grinder cameapart and pieces of metal flew and cut right hand laceration right hand.
## 16160                                                                                                                                   Co-worker was running to a pit and accidnetaly ran into employee knocking her to the ground striking her left elbow and shoulder
## 16161                                                                                                                                                          Co-worker was sitting 1:1, pt attacked began to attack co-worker, helping co-worker, both landed on EE ()
## 16162                                                                                                                                                                                  Co-worker was taking books off a shelf, one book fell and hit sherie in the nose.
## 16163                                                                                                               Co-worker windshield was fogged when EE was approaching his vehicle. Co-worker drove fwd knocked EE to the ground, ran over foot & stopped veh on it
## 16164                                                                                                                                                                                                                   Co-wrkr closed van door on EE's right 3rd finger
## 16165                                                                                                                                                 Coaching basketball, doing revounding drill, movedto ball and fott became stuck, shoulders twisted but hips stayed
## 16166                                                                                                                                                                                        Coaching football and grabbing player in congratulations, tore right bicep.
## 16167                                                                                                                                                                                                   Coaching/playing basketball, came down and landed on right foot.
## 16168                                                                                                                                                                                                               Code 4 disturbance - running to c yard. Ankle popped
## 16169                                                                                                                                                                                                     Code 4 on union in hallway. An inmate was assaulting staff. ()
## 16170                                                                                                                                           Code blue drill - clotheshouse hallway - she was pulling the stretcher and when she turned the corner her knee popped ()
## 16171                                                                                                                                                                                   Code blue in parking lot carried crash cart down steps injured shoulder and back
## 16172                                                                                                                                                          Code blue was called and officer was running to scene and felt something pop in her right upper thigh. ()
## 16173                                                                                                                                                                                          Code yellow fight one of the inamtes attacked me when I asked her to stop
## 16174                                                                                                                                                                        Code4 was called EE hit head on I/m cell door doing take down and hit face on cell door. ()
## 16175                                                                                                                                               Colander was stuck in dish machine and employee was trying to get it out and his hand slipped cutting his finger. ()
## 16176                                                                                                                           Cold air was blowing on EE's face while operating reserrch vessel. Bells palsy, loss of muscle movement to left side of face and eye lid
## 16177                                                                                                                                                        Collecting and putting up inmate breakfast trays and slipped and fell injuring chest, back and left hip. ()
## 16178                                                                                                                                              Collecting blood on 3 wk old when finished, pickedup lancet to put in sharps box and was stuck in underside of finger
## 16179                                                                                                                                                                      Collecting blood samples from a cow, cow raised her head and hit Dr. Whisnant in the head. ()
## 16180                                                                                                                                                                                          Collecting cats to be removed from unit. Cat bit to right index finger ()
## 16181                                                                                                                                                                                                     Collecting documents from box in copy room tripped and fell ()
## 16182                                                                                                                               Collecting field information on big alamance co crossing wire while standing in stream. Wire turned to be an unmarked electric fence
## 16183                                                                                                                                                   Collecting lunch trays and inmate threw yellow substance on correctional officer wall's left side of her body ()
## 16184                                                                                                                         Collecting metal files used to sharpen squad's bush axes. Walked into corner of one of tool visesmounted to front bumper of road squad bus
## 16185                                                                                                                                        Collecting milk samples from dairy plant cooler, leaving cooler carrying samples stepped on pipe and twisted ankle and knee
## 16186                                                                                                                                                                                                  Collecting sediment samples from a lake at a remote research site
## 16187                                                                                                                           Collecting stallion for artificial insemination & stallion dismounteed on to EE left foot & knocked EE to ground, fracture to left foot.
## 16188                                                                                                                     Collecting traps in creek with dive booties and stepped on sting ray, stung on top of foot. Right foot between big toe and next little toe. ()
## 16189                                                                                                                                                                                                              Collecting trash from I/m and I/m spit in left eye ()
## 16190                                                                                                                                                                          Collecting/carryting mail, EE twisted or strained her back while opening the door to exit
## 16191                                                                                                                Collectting cardboard placed around dumpster to berecycled. A sharp pain occurred in lower back, when placing boxes in truck hamper. Low back pain.
## 16192                                                                                                                    Collided w/door while trying to enter courthouse person on other side exiting of building did not see employee entering. Doors swing both ways.
## 16193                                                                                                                                               Collided with another employee, wanda fortner and was knocked into a cubicle, cutting left forearem on metal rim. ()
## 16194                                                                                                                                                                                          Collision on left side of vehicle caused severe pain in neck and back. ()
## 16195                                                                                                                            Collision with a male deer while driving 55mph on hwy 86 north to present a program for caswell co. Library. Stiff arms/neck/shoulders.
## 16196                                                                                                                                                                                                           Collison with a student while teaching a basketbaldrill.
## 16197                                                                                                                                                                                                       Collison with vessel caused EE to be thrown from patrol boat
## 16198                                                                                                                  Cologne slipped from hand, fell and broke, EE step- ped in cologne accidently, sending client out and EE's right foot slipped, right knee popped.
## 16199                                                                                                                                            Combative client grabbed EE and another staff jumped in to help and all fell to floor-EE hit rt elbow and cut rt finger
## 16200                                                                                                                                                                                                                             Combative client kicked EE in the eye.
## 16201                                                                                                                                                                    Combative client pushed EE into doorway causing EE to twsit back and abrasion to left shoulder.
## 16202                                                                                                                                  Combative resident attempted to bite employee-employee raised head away from resident-resident's teeth cut/scratched forehead. ()
## 16203                                                                                                             Combative suspect. Suspect struck EE on lt side offace with fist. Foot chase EE fell--lt leg hittingsidewalk. Contusion lt leg/lt side of face/jaw/tem
## 16204                                                                                                                                                          Combination of above equipment set up an audio feedback loop that caused loud reverberation in head phone
## 16205                                                                                                                                                                                         Combination of bleach and cigarette smoke inhaled made chest and back hurt
## 16206                                                                                                                                                Combination of physical fitness training and/or defensive tactics classes--May have caused injury. Low back strain.
## 16207                                                                                                                 Combine was clogged ith straw. EE used a long pipewrench to try turn the main cylinder back. The pipe wrench slipped causing EE to fall on combine
## 16208                                                                                                                                                                     Combining records & walked across room to put empty pot in box & stumped foot in hydrolic lift
## 16209                                                                                                                                                      Come in contact with patient who is being treated for scabies. Back, abdomen, arms, legs all started itching.
## 16210                                                                                                                                                                                                                 Comes from repetitive motion doing word processing
## 16211                                                                                                                                                Comiing out of the restroom, right pinky finger got caught on an object causing the nail to pull away from the skin
## 16212                                                                                                                                                                                                  Coming back down a metal ladder from trap door hit right elbow ()
## 16213                                                                                                                                                                                    Coming back from cafeteria and fell down on left side. Left--hand/arm/side/hip.
## 16214                                                                                                                                                                                    Coming back from lunch it was raining my foot went out from under me and I fell
## 16215                                                                                                              Coming back from off-site meeting stopped for gas. Stepped over gas hose to put credit card in car heel caught hose tripped & fell. Lt shoulder/teeth
## 16216                                                                                                      Coming back into building to pantry slipped as right foot went back, fell forward on left knee, right knee and right hand hit wall; water along the floor. ()
## 16217                                                                                                                                                                                     Coming back into building; opened door and hit right big toe with the door. ()
## 16218                                                                                                                                  Coming back into office with stack of envelopes, tripped over boxes; hit left arm on brick wall causing skin tear below elbow. ()
## 16219                                                                                                                                                                                                              Coming back into the unit slammed fingers in the door
## 16220                                                                                                                            Coming back up hallway; slipped in water that had seeped from under wall; fell on left side; left leg went behind EE (folder under). ()
## 16221                                                                                                                                                                                    Coming down a eight foot ladder he missed the bottom step and fell to the floor
## 16222                                                                                                                                                                                                                                            Coming down a ladder ()
## 16223                                                                                                                                                                            Coming down back steps, turned to pick up box. Left foot slipped. Twisted foot and fell
## 16224                                                                                                                                                                                                    Coming down from ladder, foot slipped, fell 3 feeton rt hip/leg
## 16225                                                                                                                                                                                                           Coming down hill on side of building from education wing
## 16226                                                                                                                                                                                                             Coming down hiss and fell on left knee & left shoulder
## 16227                                                                                                                                                                Coming down inside stairs, missed last step and left elbow hit wall ans injured left ankle/foot. ()
## 16228                                                                                                                                                                                                             Coming down ladder and turned knee on debris on floor.
## 16229                                                                                                                                                                           Coming down ladder missed last step, fell about 2 feet on right side. Contusion rt knee.
## 16230                                                                                                                                                                                                       Coming down ladder missed ring & fell causing injury to knee
## 16231                                                                                                                             Coming down ladder, thought he had another long step, but had a short one, put all weight on rt foot and obtained strain to big rt toe
## 16232                                                                                                                 Coming down ladder. Coworker handed EE a bucket of tools from above when a foreign body fell into his lt eye. Caused redness and irritation to eye
## 16233                                                                                                                                                                                                              Coming down off ladder & foot slipped fell off ladder
## 16234                                                                                                                                                                       Coming down off ladder slipped and fell off secondround of latter rt ankle. Sprain rt ankle.
## 16235                                                                                                                  Coming down sb side of weigh station, when EE got to the bottom of stairs, turn portion of body while keeping feet in place. Strained right knee.
## 16236                                                                                                                                                                                                                 Coming down sidewalk and tripped. Fell on sidewalk
## 16237                                                        Coming down stair holding the rail on the right side; turned off light; started down; thought EE was on the last step but was not and fell to the bottom of the stairs; left knee hit on door and floor. ()
## 16238                                                                                                                                                                                                        Coming down staircase and missed last stair, rolled foot ()
## 16239                                                                                                                                                                    Coming down stairs and floor was damp with water. Slipped and fell on lower back and right arm.
## 16240                                                                                                                                                                                       Coming down stairs and tripped and fail. Scraped my back on the way down. ()
## 16241                                                                                                                         Coming down stairs and when he placed his right foot on the floor, slipped in a puddle of water. Left knee hit floor and slid in concrete.
## 16242                                                                                                                                                                                                            Coming down stairs at courthouse annex, twisted lt knee
## 16243                                                                                                                               Coming down stairs in alumni house-went to make a step heel ht edge of top step causing EE to lose balance causing multiple injuries
## 16244                                                                                                                         Coming down stairs in tower 2, his right foot slipped off the stepts and he caught himself with his left arm using all his body weight. ()
## 16245                                                                                                                                                                     Coming down stairs of master control to lobby came down the stairs wrong and hurt left knee ()
## 16246                                                                                                                                                                                        Coming down stairs on way to do a group and fell down the last two steps ()
## 16247                                                                                                                                                                                                                     Coming down stairs when he slipped on water ()
## 16248                                                                                                                                                                          Coming down stairs, I slipped and fell down the stairs, twisting my right knee and ankle.
## 16249                                                                                                                                Coming down stairs, boot heel caught in pants, fell down 4 to 5 steps, was carrying art books. Rt shoulder sore from breaking fall.
## 16250                                                                                                                 Coming down stairs, knee gave way/buckled causing to stumble and tumble down stairs injuring rt shoulder, rt arm, rt wrist, rt side/hip and rt kne
## 16251                                                                                                                                                                                                          Coming down stairs, left foot slipped and turned over. ()
## 16252                                                                                                                                                                                                  Coming down stairs, lost balance & fell down steps& hit the floor
## 16253                                                                                                                     Coming down stairs, noticed wet floor sign. Thoughtshe was stepping carefully, feet slipped out from under her and landed on buttocks, lt hand
## 16254                                                                                                                                                                                                                     Coming down stairs; fell on left leg and ankle
## 16255                                                                                                                                                                                                               Coming down stairwell and finger jammed into railing
## 16256                                                                                                                                                                                 Coming down steps & slipped. Tried to catch self to break fall & twisted left knee
## 16257                                                                                                                                                                                                        Coming down steps from the control room slipped and fell ()
## 16258                                                                                                                                                                                                Coming down steps in tower and hit her right elbow on exit door. ()
## 16259                                                                                                                                        Coming down steps of intake building, stepped intoa hole that was hidden by tall grass. Fell to leftknee & hurt left ankle.
## 16260                                                                                                                                                                                                         Coming down steps slipped & fell injurying both shoulders.
## 16261                                                                                                                                 Coming down steps to enter office. Ran into spider webs that covered face & head. Was bitten on the face by some kind of insect ()
## 16262                                                                                                                    Coming down steps, fell injured r hand and buttock w/left employer and moved to colorado Jan 2009 claim re-opened *** represented by james snow
## 16263                                                                                                             Coming down steps, lost footing, grabbed handrail to keep from falling, twisted & felt pull in back, leg pain & tight feeling in chest. Back/chest/leg
## 16264                                                                                                                                                                                                                     Coming down the stairs felt pain in rt knee ()
## 16265                                                                                                                                                            Coming down the stairs from oriental control & slipped & pinned her lt leg between the bars & the gate.
## 16266                                                                                                                                                                     Coming down the stairs from the control room stepped dowm on her right ankle the wrong way. ()
## 16267                                                                                                               Coming down the stairs in tower 2 and slipped and fell down the stairs; as she was falling, took lefthand to catch pole to try and catch fall. Steps
## 16268                                                                                                                                                                                                              Coming down the steps and I twisted my right knee. ()
## 16269                                                                                                                                                                                                                     Coming down the steps and twisted left knee ()
## 16270                                                                                                                      Coming down tower #4 stars and slipped on about the 3rd stept from top and ended up on bottom hurting his left sholder, left leg and neck. ()
## 16271                                                                                                                                                                           Coming from 2nd floor & missed a step came down onright ankle kind of hard with a twist.
## 16272                                                                                                                                                      Coming from an office and slipped on water, and hit the wall as he fell fracturing elbow; injuring face/head.
## 16273                                                                                                                                                    Coming from client's home, stopped at a stop sign on highway 301 and was hit in rear by an 18 wheeler truck. ()
## 16274                                                                                                              Coming from court b to office up concrete stairs, EE fell forward hit forehead on edge of stairs & left little finger on concrete. Contusion/lacerati
## 16275                                                                                                                                                           Coming from gazebo to steps coming into building, stepped on limbs in grass. Injured right ankle & foot.
## 16276                                                                                                                                                     Coming from lab building - tripped over sewer cover and fell on pavement. Injured rt leg/hand/ leg/knee/thumb.
## 16277                                                                                                             Coming from nurse station to the conference room to retrieve a medical jacket. She tripped and fell, on right side, right side face with abrusrion. ()
## 16278                                                                                                                                                                            Coming from stairs in unit 4 after getting to last step I began to fall to the floor ()
## 16279                                                                                                     Coming from stock room and was sprayed by a skunk that offset asthma. Was seen in the emergency room for evaluation of dyspnea, asthma, acute exacerbation. ()
## 16280                                                                                                                                                                       Coming from tower and lost balance, slipping on steps, hit hand on bottom of steel stair. ()
## 16281                                                                                                                       Coming in from parking lot, when EE slipped on iceon sidewalk & fell forward on both hands & knees. Knees/hands/shoulder/upper & lower back.
## 16282                                                                                                                                                                                                           Coming in from yard area-door closed on left ring finger
## 16283                                                                                                                                                                                  Coming in off yard and the lower east wing door shut on 3rd finge of left hand ()
## 16284                                                                                                                                                                            Coming in office door, hit foot on the door as EE was trying shut alarm off. Left foot.
## 16285                                                                                                                                                           Coming in office, keys fell off desk and stepped on them; left foot slipped and fell and twisted back ()
## 16286                                                                                                                                                                                         Coming in the door slipped and hit the door frame, door hit right ankle ()
## 16287                                                                                                                                                                                                    Coming in the entrance at work left foot got caught under gate.
## 16288                                                                                                                                                                                                                            Coming in to work, fell up the steps ()
## 16289                                                                                                                                                   Coming into back door to work site stepped up on walk way, left ankle turned over and she fell to the ground. ()
## 16290                                                                                                                                                     Coming into building EE's foot slipped on wet surface and fell forward into the door hitting lftside/shoulder.
## 16291                                                                                                                                                                Coming into building for work-outr vestibule to office was wet & slick & ankle folded underneath me
## 16292                                                                                                                                Coming into building to relieve staff with client; stepped in to the building; slipped falling to floor. It was raining outside. ()
## 16293                                                                                                                                                             Coming into courthouse, after mail run, slipped on the cement floor landing on her knee, injuring back
## 16294                                                                                                                                                                                              Coming into side door of avery, slipped/fell landing on both knees ()
## 16295                                                                                                                                                            Coming into the front doors of prison opened second set of doors and the lt side door caught my lt foot
## 16296                                                                                                                                                         Coming into work 8-14-08 walking up first set of steps btwn back of bldg tripped & fell down hurt rt-ankle
## 16297                                                                                                                                                     Coming into work on a rainy day; foot slipped on water that had been tracked in by others at the enterance. ()
## 16298                                                                                                                                                                                Coming into work stepped into a dip in the pavement in front of the sgt's office ()
## 16299                                                                                                                                                    Coming into work, EE stepped on a brick in the parking lot, twisting his left ankle & falling on his left knee.
## 16300                                                                                                                            Coming into work, about halfway to the door, EE's prosthetic leg gave way and he fell and hit his left knee on the concrete sidewalk ()
## 16301                                                                                                                                               Coming into work, came up the step and dropped purse, turned around to go back down steps, slipped and fell on butt.
## 16302                                                                                                                                                       Coming into work, toe of shoe caught on curb, and EE fell forward. Bruises to right eye, forehead and knees.
## 16303                                                                                                                             Coming into work, walking down hill and slipped on sidewalk. Fell face 1st. Got up, picked up bag, lost balance and fell backwards. ()
## 16304                                                                                                                                                                                                        Coming on duty slipped on black ice in parking lot and fell
## 16305                                                   Coming on duty to work, parked vehicle & proceeded to step across highway from gravel lot crossing over standing water, twisting left ankle. Caught my traction before not falling all the way to the ground. ()
## 16306                                                                                                                                                                                                  Coming out of a dorm to lock the dooer & steps missed the step ()
## 16307                                                                                                                                                                                                     Coming out of bathroom and slipped on wet floor twisting back.
## 16308                                                                                                                        Coming out of bathroom, opened door with left hand using a tissue-turned to throw tissue away and door handle hit the back of her wrist. ()
## 16309                                                                                                                                                                                       Coming out of bathroom. Foot slipped in spot of fluid in floor causing fall.
## 16310                                                                                                                                                              Coming out of building stepped on clear ice and fell back with heavy door hit me on left side of face
## 16311                                                                                                                    Coming out of building. Dropped can soda. Bent over to pick up soda can when he stood back up, he struck his head on wooden box mounted on wall
## 16312                                                                                                                                                                                                 Coming out of building. Stepped off platform felt pain in left leg
## 16313                                                                                                                                                                          Coming out of control room stepped down on next step wrong & his left knee gave way w/him
## 16314                                                                                                                                Coming out of copier room and hit slick spot on floor. Feet went out from under him and he hit coccyx and pulled muscle in left rib
## 16315                                                                                                                                      Coming out of daycare after dropping off daughter. Slipped on black ice while walking to car. Fell on left elbow and back. ()
## 16316                                                                                                                                                                               Coming out of door when another EE asked her aboutmeds & metal. Door slammed on hand
## 16317                                                                                                                                                                               Coming out of dorm steeped on the edge of the sidewalk and turned lt ankle foot over
## 16318                                                                                                                                                                                  Coming out of driveway hit bumps knock my foot offbrake and I kept going too fast
## 16319                                                                                                                                            Coming out of elevator with a moving file cart when elevator door opened & cart went towards doorsmashing hand. Rt hand
## 16320                                                                                                                                    Coming out of er, inmate was cleaning walls in hallway with floor cleaner, fan in hallway blew cleaning solution into EE's eyes
## 16321                                                                                                                                                                                                                  Coming out of file room, hit right arm on door ()
## 16322                                                                                                                   Coming out of jury box in courtroom, somehow beganfalling down the two steps. EE fell to floor and hit a chair. Burn on lt arm, sprain lt ankle.
## 16323                                                                                                                                                          Coming out of lab, into hallway. Slipped & fell on wet floor. (no wet floor sign) landed on her left side
## 16324                                                                                                                                                                                               Coming out of ladies restroom walking down the hallway when she fell
## 16325                                                                                                                                                                                               Coming out of library going down step carrying mop& fell down steps.
## 16326                                                                                                                                                     Coming out of living room turned lt client with helment bumped into med hitting upper rt eye causing swelling.
## 16327                                                                                                                                                                      Coming out of mailroom & floor was wet where inmates were mopping floor. EE fell on left knee
## 16328                                                                                                                                           Coming out of master control with condiments to put in the break room and flipped on water and flipped down the steps ()
## 16329                                                                                                                                                                             Coming out of pharmacy, tripped, falling on key which became lodged in back of r thumb
## 16330                                                                                                                                            Coming out of recration building & his right foot slipped off steps. Landed on his right knee & twisted his right ankle
## 16331                                                                                                                                                                                         Coming out of restroom and slipped on wet floor landing on back and rt arm
## 16332                                                                                                                                                                             Coming out of the bathroom, force of door opening struck EE on thumb of her right hand
## 16333                                                                                                                                   Coming out of the business careers bldg missed thebottom step and twisted rt knee. Had arthroscopic surgery on rt knee 12-20-06.
## 16334                                                                                                                                                                               Coming out of the chemical room the door closed quickly and hit top of left hand. ()
## 16335                                                                                                                                                                                                              Coming out of the cooler and fell into drain hole. ()
## 16336                                                                                                                                                 Coming out of the office where the printer is located & tripped on the carpet, landed on rt side& right lower back
## 16337                                                                                                                                         Coming through acute hospital and cords of the fanwere across from wall to doors. Feet got tangled and fell on right hand.
## 16338                                                                                                                                                                                             Coming through door and door fell against employees back, side and arm
## 16339                                                                                                                                                      Coming through slider & left arm got caught when door closed & then it open & caught left hand in slider also
## 16340                                                                                                                                        Coming through the door entering the building and the door swung shut on foot before could get safely into the building. ()
## 16341                                                                                                                                                                                     Coming through the sallyport, ofc. Tripped and fell injuring his right knee ()
## 16342                                                                                                                                                                                                                           Coming thru doors, door hit back of foot
## 16343                                                                                                                                                      Coming thru front sliding doors of hospital. Door opened then abruptly closed on her foot. Broke two toes. ()
## 16344                                                                                                                                                  Coming thru sally port, master control officer closed door before sgt. Harris was completely through the door. ()
## 16345                                                                                                                                                                                        Coming to facility to report for work, slipped on ice on sidewalk & fell ()
## 16346                                                                                                                                                                                            Coming to work EE got off the bus and stubbed her toe against the step.
## 16347                                                                                                                   Coming to work after getting off bus, walking down stairs w/a box in my hand, thought I was on bottom step but wasn't, missed step and fell down
## 16348                                                                                                                                                                                  Coming to work and fell at entrance of murphy hall injuring knee, hands and thigh
## 16349                                                                                                                   Coming to work and fell in the parking lot of noble hall. Fall was not witnessed. Was able to walk into the building. Injured low back/shoulder.
## 16350                                                                                                                                                  Coming to work parked car on the side of the street crossing over to other side of street slipped and fell on ice
## 16351                                                                                                                                         Coming to work with cast on lt hand and was carrying purse etc., slipped on wet marble floor hurtingrt hip and lower back.
## 16352                                                                                                                                                                                  Coming up ramp (outside of moore wing) slipped on ice -fell-hitting left knee. ()
## 16353                                                                                                                                                                                        Coming up sidewalk when he stepped off side of walkway and turned rt ankle.
## 16354                                                                                                                                                                                    Coming up stairs, foot caught under top step, EE tripped and fell, hitting head
## 16355                                                                                                                                                                                          Coming up stairs, missed and slid on step; caught self with left hand. ()
## 16356                                                                                                                                                              Coming up steps about half way up felt something slip in lower back. Causing sharp pain in lower back
## 16357                                                                                                                                                                                                                                   Coming up steps entering work ()
## 16358                                                                                                                                                   Coming up steps from the parking lot to the sidewalk between schools and fell up the stairs. Lt handand rt knee.
## 16359                                                                                                                                                                                                                                Coming up steps her rt knee buckled
## 16360                                                                                                                                                                     Coming up the outside stairway, tripped & stammed foot into concrete step. Left foot, 2nd toe.
## 16361      Communicate with one staff member using tactile sign language, noticed a soreness in my elbow and shoulder along with tenseness in my neck and back near my shoulder blade. Soreness in my arm, continuing pain in elbow, continuous stabbing pain in back ..
## 16362                                                                                                                          Community service worker had mopped the floor in district office & EE slipped because a significantamount of water was left on the floor.
## 16363                                                                                                                                                                           Compacting trash on the yard, line busted and sprayed employee in the face and on arm ()
## 16364                                                                                                                                                                                                                            Competitive motion - computer keyboard.
## 16365                                                                                                                                                                                      Competitive use of computer of finger, palm, and trigger finger over 4 weeks.
## 16366                                                                                                                                                                                                           Complained of being too hot and weak after pert training
## 16367                                                                                                                                                    Complained of moderate pain while performing nvci training-increased pain when putting on jacket afterwards. ()
## 16368                                                                                                                                                                                 Complaint of increased secretions, sob, tightness, scratchy throat and hoarseness.
## 16369                                                                                                                                                               Complaint wheezing, chest congestion, headaches, sore throat, nose burning, coughing and hoarseness.
## 16370                                                                                                                                                                                                        Complaints of cough, hoarseness, heachache and watery eyes.
## 16371                                                                                                                                     Complaints of lower back pain during physical training. Strained l back even before while participating in martial deve drills
## 16372                                                                                                                                                                           Complaints of shortness of breath after exposure to fumes being used by renovation crew.
## 16373                                                                                                                                                                                             Complete rounds - escort inmate () right middle finger closed in gate.
## 16374                            Completed bathing/ dressing resident-rolled resident to the right to place sling (for mechanical lift) under-resident started to slide off the arjo tub-caught and held while waiting for assistance-felt muscle pull in upper back. ()
## 16375                                                                                                                 Completed celbration of numerous ?, powered off & removed power plug from power recepticle. Then lifted wind tunnel to its normal storage position
## 16376                                                                                                                                                                      Completed grinding piece of steel & inadvertently touched wheel while it was coasting to stop
## 16377                                                                                                              Completed night fire qualification stepped over railroad ties to get my target; foot slipped on pvc piping on ground behind ties; fell on buttocks on
## 16378                                                                           Completed patients care-patient started to leave bedroom- when opening door lost balance -tried to steady patient resulted in both falling-landed on r. Side: knee/hip/elbow/shoulder ()
## 16379                                                                                                   Completeing a checking an empty locker when he reached inside to get a piece of paper when his finger hit the metal front of the locker and jammed his finger ()
## 16380                                                                                                                                                Completeing rech in dorms, then proceeded out backdoor, down hill toward ef dorm, slipped and fell, landing on back
## 16381                                                                                                                                                                                      Completing a cell extraction when left thumb was injured between cell bars ()
## 16382                                                                                                                                                            Completing a search in the laundry room, checking vents and ceiling areas and had a bodily reaction. ()
## 16383                                                                                                                                  Completing basic care for an individual when I was repositioning her pillow and she heard her left arm pop in the muscle area. ()
## 16384                                                                                                                 Completing cell clean at cell c-14, while trying to retrieve the mop, my rt hand was struck by an unknown object on inmates trap door by inmate in
## 16385                                                                                                                                        Completing data entry of various forms. Repetive motion involved. Experienced pain and discomfort in her shoulder & forearm
## 16386                                                                                                                              Completing home contact. Defendant opened front door & dog ran out of home and bit me on the back of right knee. Bite punctured skin.
## 16387                                                                               Completing jugular notch manuever at crdt precertification at sandhills community college. Excuting jugular notch manuver on officer emanuel harrington (my partner during class) ()
## 16388                                                                                                                                                       Completing repetition on tricep extension machine during required weight training at weight trainingfacility
## 16389                                                                                                                                                                                         Completing security yard check by checking door & locks on the grounds. ()
## 16390                                                                                                                                                                                                                                          Compression fracture back
## 16391                                                                                                                                                                                                          Computer analysis with keyboard and mouse-rt forearm pain
## 16392                                                                                                                                                                                      Computer area too narrow-had to stretch to use mouse causing right arm strain
## 16393                                                                                                                         Computer arm support was on top of monitor. Tried to lift off so monitor could be tilted and felt something pull under right shoulder area
## 16394                                                                                                                                                                                                                          Computer data entry. Injured rt shoulder.
## 16395                                                                                                                                                                                   Computer editing of manuscripsts. Injured neck, right shoulder, right upper arm.
## 16396                                                                                                                                                                                                               Computer fell on EE's rt ankle while sitting at desk
## 16397                                                                                                                                                  Computer keyboard & mouse pad use on daily basis also back & hip position in dest chair while sitting at computer
## 16398                                                                                                                                                                                                                               Computer keyboard and mouse usage ()
## 16399                                                                                                                                               Computer keyboard tray was changed during buildingrenovation - began having pain/stiffness in both arms/hands/wrists
## 16400                                                                                                                                                                                                               Computer keyboarding and conducting on line classes.
## 16401                                                                                                                                                                                                                       Computer operation repetitive stress injury.
## 16402                                                                                                                                                                                                                                    Computer operator and paperwork
## 16403                                                                                                                                   Computer shelf dropped down on her left leg and ankle of left foot when she sat down to enter lab work in computer for patients.
## 16404                                                                                                                                                                                                             Computer typing, putting up supplies, loading copier,.
## 16405                                                                                                                                                                                                                          Computer usage over use - strain rt wrist
## 16406                                                                                                                                                                                                                            Computer use casued cts in right wrist.
## 16407                                                                                                                                                                           Computer use caused left rotator cuff tendonitis and pain in left shoulder, arm and hand
## 16408                                                                                                                                                                                                                       Computer use due to higher desk than needed.
## 16409                                                                                                                                                                                                               Computer use has caused pain in left thumb and wrist
## 16410                                                                                                                Computer use thru out the workday, began spring 2004, greatly increased mid Dec 2004, right hand, forearm, upper ar, shoulder, thoracic nerve/chest
## 16411                                                                                                                                                                                                       Computer used was too high and resulted in injuries to wrist
## 16412                                                                                                                                                                                                                                              Computer work gradual
## 16413                                                                                                                                                                                                  Computer work or mouse, repetitive motion fo clicking nad typing.
## 16414                                                                                                                                                                                                        Computer work using keyboard and mouse over several days ()
## 16415                                                                                                                                                                                                                                      Computer work, right shoulder
## 16416                                                                                                                                                                                        Computer work-mouse position is injuring rt shldr, work on computer all day
## 16417                                                                                                                                                                                                                       Computer work. Shoulders, wrist, and elbows.
## 16418                                                                                                                                                                                               Computer working and keyboarding - tendonitis in both rt/left elbow.
## 16419                                                                                                                                                                                                 Computer/desk strain right shoulder blade/shoulderneck/upper back.
## 16420                                                                                                                                 Comsumer was falling forward, staff reached out to keep consumer from falling, felt pulling in mid low back, no pain or tenderness
## 16421                                                                                                                                                                     Comsumer was tranferring to chair, begin to strike EE. EE tried to get away twisted l hip area
## 16422                                                                                                                                                                                                              Comulative trauma done to at fitting computer station
## 16423                                                                                                                                                                 Concrete at base of steps leading out of building is in poor condition and goes down hill. EE fell
## 16424                                                                                                                                                                       Concrete truck backed up and caugh hand between concrete chute and steel beam, crushing hand
## 16425      Condensation from the air conditioning unit(a/c had stopped working) had formed a slippery surface on the floor at wendover. My legs went in the opposite direction as I tried to grab a door knob, I twisted my arm, but managed to land on my left knee. ()
## 16426                                                                                                                                                                                                   Condiment tray slipped-lacerating l. Index and middle finger. ()
## 16427                                                                                                                 Condition has been escalating over past year. Back neck, arm, wrist & hand pain related to position when treating pts in dental chair. + low back.
## 16428                                                                                                                    Condition is pain in right hand. No specific injury. Pain first noticed approximately 11/1/95. Became severe 1/10/96. Medical attention 1/11/96
## 16429                                                                                                                                                                        Conducint home contact/serving violation report. Dog jumped out door and bit left thigh. ()
## 16430                                                                                                                                                                                Conducted a locker search, reached hand into locker and felt a prick on her finger.
## 16431                                                                                                                                                          Conducted home health visit on 4-15-97. Notified on 6-5-97 that patient she saw had tested positivefor TB
## 16432                                                                                                                                                                                                 Conducting a curfew check, approaching front door, dog attacked ()
## 16433                                                                                                                                                                                            Conducting a drug scree w/offender; tripped by an individual at work ()
## 16434                                                                                                                                           Conducting a facility fence test, was stung by a wasp. Hand swelled up considerably next and and went to urgent care. ()
## 16435                                                                                                                    Conducting a home visist; offender ws not home, as officer turned to leave offender approached officer. Another person struck officer with car.
## 16436                                                                                                                                                          Conducting a home visit offender's dog bit l anklethrough jeans causing a bruise & scratches & teethmarks
## 16437                                               Conducting a home visit on jonathan lewis. Their was a small dog on a leash who was acting very aggressive, but it was on a leash. The dog got off of its leash and bit my knee on right leg leaving teeth marks. ()
## 16438                                                                                                                                                    Conducting a home visit when a dog bolted from the house, knocked him down to the ground and bit his lower leg.
## 16439                                                                                                                                                             Conducting a home visit, was bit on the right ankle by the homeowners dog. Dx: puncture wound rt ankle
## 16440                                                                                                                   Conducting a home visit. When leaving residence, slipped on wet steps, fell forward & stumbled down steps. Both ankles rt--hip/hand/arm/lt knee.
## 16441                                                                                                                                                                                                Conducting a hostage situation, was hit in the knee with a chair ()
## 16442                                                                                                                                                           Conducting a locker search in c dorm. Stuck a piece of wire found in locker in rt thumb near nailbed. ()
## 16443                                                                                                                                 Conducting a locker search of an inmate he was cuton the left thumb by a razor blade that had been taken out of a disposable razor
## 16444                                                                                                                                                                                         Conducting a locker search. Ankle turned the wrongway when turning around.
## 16445                                                                                                                                                    Conducting a mop up operation on christian creek fire. Neat lightning strike experience. Numbness in right arm.
## 16446                                                                                                                                                                                    Conducting a perimeter check and walked off the sidewalk sprained his rt ankle.
## 16447                                                                                                             Conducting a perimeter check of the sparrow unit when stepped in a trench and the weight was forced on the rt knee and causing knee to attempt bending
## 16448                                                                                                                                          Conducting a road test when, rear-ended at the stop sign. List injuries as: sprain back and knee, knee has a contusion ()
## 16449                                                                                                Conducting a search. Inmate refused to comply with a direct order to cuff up and threw a punch and struck me in the forehead--doctor's report indicated knee injury
## 16450                                                                                                                                                                       Conducting a vehicle check stepped off the crub and slipped on ice landing on lower back. ()
## 16451                                                                                                                                                                 Conducting a weekend home visit on an offender. When I was attacked by the offender's two dogs. ()
## 16452                                                                                                                                                         Conducting amusement ride inspection - climbing up pole - bodily reaction strain right shoulder muscle. ()
## 16453                                                                                                                                                  Conducting an a exam when EE slipped on the floor, causing injury to right side of body. Rt leg, rt side of body.
## 16454                                                                                                                                                      Conducting an elevator inspection when climbing out of confined space bodily reaction of left knee popped. ()
## 16455                                                                                                                                                                                  Conducting an inmate locker search & cut right forearm on homemade clothes hanger
## 16456                                                                                                                                                                  Conducting an inspection in a tobacco blending plant -reaction to dust - hypersensitive reaction.
## 16457                                                                                                                                                          Conducting an inspection on two passenger elevators when in motion twisted body to pull door leverage. ()
## 16458                                                                                                                                                                         Conducting arrest in which offender resisted. During confrontation EE received back strain
## 16459                                                                                                                                                           Conducting boat electrofishing, boat struck a rock and caused EE to shift weight and injure his wrist ()
## 16460                                                                                                                                                                                                                             Conducting bunk and locker searches ()
## 16461                                                                                                                                                                           Conducting bunk search on bottom bunk. Stood up & hit top right side of her head on rail
## 16462                                                                                                                                    Conducting call check in 40/13 & touched electrical receptacle cover that was loose. Was shocked by strong surge of electricity
## 16463                                                                                                                                                               Conducting cell cleaning trying to get broom from I/m and I/m hit me in lower abdomen with broom. ()
## 16464                                                                                                                                                                                    Conducting cell cleaning when inmate sprayed feces from a bottle in my face. ()
## 16465                                                                                                                                                   Conducting cell extraction training during the process of being removed from the cell EE was injured unknowingly
## 16466             Conducting cell extraction training when left leg slipped on the blue protective mat flooring then team member wrapped both legs pulling them together securing for restraints to be applied when a sharp pain was felt on the outside of left knee ()
## 16467                                                                                                                                       Conducting cell extraction training. During the practical execercise, left pinky finger was caughton mat and was dislocated.
## 16468                                                                                                                                                                                                                 Conducting cell search & inmate assulated officer.
## 16469                                                                                                                                          Conducting cell search in s/k block; inmate struck EE with broom in upper chest & punched in left side of head & face. ()
## 16470                                                                                                                                                                Conducting cell search on inmate, the inmate became combative and force was needed to gain control.
## 16471                                                                                                                  Conducting cell search. Attempted to exit cell. Inmate stepped in front of him & refused orders to move. Inmate then raised cuffed hands & struck
## 16472                                                                                                                Conducting class and demonstrating the cable bicepcurl machine when a clip holding the weights brokethe handle causing force to hit him in the head
## 16473                                                                                                                                                                               Conducting clothes exchange & inmate forcefully knocked open window and hit her hand
## 16474                                                                                                                                                                     Conducting clothes exchanges, lifting clothes cart up the stairs & cart nit me on the head. ()
## 16475                                                                                                                                                                                             Conducting count () tripped going up the stairs and hit her right knee
## 16476                                                                                                                                                                                          Conducting count - going up steps and fell, hit mouth on the concrete. ()
## 16477                                                                                                                                                Conducting count coming down the steps and was on the last two or third step became dizzy and fell to the floor. ()
## 16478                                                                                                                                                          Conducting count in dorm 4 and slipped and fell in the hallway where the inmates were stripping the floor
## 16479                                                                                                                                                                                                                    Conducting count, slipped and fell on wet floor
## 16480                    Conducting crime scene search of vehicle in fenced in area near woods. Conducted search and later at home found tick attached to lower back. On monday started to feel weak and ached all over, might be something related to the tick bite. ()
## 16481                                               Conducting crime scene where victim had been shot to death. Helping coroner place victim in body bag. Coroner flipped bag and blood from top of the bag was accidentally splashed onto the agent's face and eyes. ()
## 16482                                                                                                                                                                                         Conducting curfew check, slipped on ice fell. Injured wrist & arm in fall.
## 16483                                                                                                                                  Conducting curfew check. Offender fought arrest & EE suffered numerous deep gashes & cuts on right hand. Left knee, and left arm.
## 16484                                                                                                                                                        Conducting curfew checks - leaving a building - fell onto drive in a poorly lit area with uneven ground. ()
## 16485                                                                                                                                   Conducting curfew checks traveling down hwy 62 & acar at intersection pulled out in front of her & hit her strain to neck & back
## 16486                                                                                                      Conducting curfew checks/new address verification. Officer was leaving address and stepped on slick steps due to rain and fell off the steps to the ground ()
## 16487                                                                                                                                                                      Conducting door check around outside of building. Stung on right side of neck multiple times.
## 16488                                                                                                                                                                Conducting feeding; opened inmates wicket door, inmate used bottle filled with urine to spray on EE
## 16489                                                                                                                                                                                                   Conducting fence check and walked into concertina wire fence. ()
## 16490                                                                                                                                                                               Conducting fence when he went to set off an alarm & cut hand on tie that holds fence
## 16491                                                                                                                 Conducting field contacts on probationers, upon arriving at residence, exiting car, walking acrossbackyard, 5 dogs came out, small bite right calf
## 16492                                                                                                                                                     Conducting field inspections, walking through tall grass on site; discovered ticks at home during pose-eork ()
## 16493                                                                                                                                                     Conducting field inspections, walking through tall grass on site; discovered ticks at home during post work ()
## 16494                                                                                                                                                                                                       Conducting fire watch while walking slipped on wet floor. ()
## 16495                                                                                                                                                                             Conducting firearm training. Injured back while unloading ammunition from trunk of car
## 16496                                                                                                      Conducting formal count. Floor was wet and not marked as being wet, c/o waters slipped and fell face first onto the floor injuring right wrist & left hip. ()
## 16497                                                                                                                                                           Conducting frieght elevator inspection - when pulling/pushing doors close-felt sharp pain in lower back.
## 16498                                                                                                                                               Conducting geologic field mapping/rock study, slipon rock, fell face forward, bumped forehead and sprain right wrist
## 16499                                                                                                                   Conducting handgun weapon retention practice exercises. Co worker accidently struck lower jaw causing teeth to hit together chipping front tooth
## 16500                                                                                                                                                                       Conducting her security check on north yard hit her right side of her head on an open window
## 16501               Conducting home contacts. Employee states that she developed a rash under her breasts after wearing her state-issued body armor for 8 hours in hot weather. Rash became worse and spread to her abdomin after wearing her vest the following day. ()
## 16502                                                                                                                                                                   Conducting home visit on offender, got out of vehicle and was dog bitten by dog on right leg. ()
## 16503                                                                                                                                                                                                      Conducting home visit, dog ran up to him and bit on rt hip ()
## 16504                                                                                                                                                                                              Conducting home visit. Bitten on foot/leg by dog at the residence. ()
## 16505                                                                                                                                                        Conducting inspection when squatted to check chemicals on floor felt pop or twitch on top of right thigh ()
## 16506                                                                                                              Conducting institutional count when an inmate tookliquid he had heated in microwave & threw liquid on EE. Liquid struck him on lt side of face & head
## 16507                                                                                                                                                                                                 Conducting inventory when a box fell on head/nose breaking glasses
## 16508                                                                                                                                                                               Conducting mop up on wildfire. Wind was blowing causing debris to go into right eye.
## 16509                                                                                                                                                             Conducting offender home visit slipped on steps with both feet landed on back/right hip on sidewalk ()
## 16510                                                                                                                                                       Conducting officer survival training. Walking backwards and fell and struck back of his head on weight bench
## 16511                                                                                                                                                                                  Conducting perimeter check on external fence line. Stepped wrong & twisted ankle.
## 16512                                                                                                                                                                       Conducting perimeter check, turned around and stepped off the sidewalk and twisted ankle. ()
## 16513                                                                                                                                                                                               Conducting physical fitness training and got a knot in left calf. ()
## 16514                                                                                                                           Conducting police training, during a simulation, shot with a sims round fell down on knee on concreted floor. Bruised knee cap badly. ()
## 16515                                                                                                              Conducting probationer home visit; pulled vehicle in driveway inside chainlink fence; halfway to doorof residence when dog came from right rear and b
## 16516                                                                                                                  Conducting random cell search, paper covering ventinstructed inmate to remove the paper, inmate removed the paper & accidently struck him in head
## 16517                                                                                                               Conducting random drug testing on inmates. Noticed inmate had container tied to his boxers. EE reached for it, inmate pushed EE into wall with force
## 16518                                                                                                                                                                                                               Conducting rec and rolled foot on uneven pavement ()
## 16519                                                         Conducting road test, during turn customer lost control of vehicle, I reached to correct and keep customer from leaving road, and customer grabbed steering wheel catching little finger on right hand. ()
## 16520                                                                                                                       Conducting room searches. Reached inside of inmatemattress cover to retrieve contraban. Stuck right index finger by homemade tatooing device
## 16521                                                                                                                                                                               Conducting rounds in housing unit when left littlefinger got hung in the door handle
## 16522                                                                                                                                                                                                        Conducting rounds in quad when left hand started burning ()
## 16523                                                                                                                                         Conducting routine cell searches, bent down resting on knee, when stood knee popped. On 04/28 went up steps, pain returned
## 16524                                                                                                                                                                                       Conducting routine checks stepped in a hole - injuinjury to left side & back
## 16525                                                                                                                                                               Conducting routine curfew check. Was chasing probationer through wooded area. Swelling in both knees
## 16526                                                                                                                     Conducting routine patrol of her assigned area when she was involved in a motor vehicle accident. She struck another vehicle while driving. ()
## 16527                                                                                                                                                                Conducting routine search of gatehouse after visitation she bumped her head on air conditioningunit
## 16528                                                                                                                             Conducting search and was picking up razor blades in a window lodge and another blade was behind it and it cut through the latex glove
## 16529                                                                                                                Conducting search at the residence of offender antoine gause. Left ring finger was struck against a fan which then got caught in the fan blades. ()
## 16530                                                                                                                                                              Conducting search inside of inmate steel locker. During search he struck his head on inside of locker
## 16531                                                                                                                                          Conducting search of inmate mattress for locker search and was stuck in the right palm with a needle used for tattoing ()
## 16532                                                                                                                                                 Conducting search of inmate personal property. Stuck hand in shoe. Scratched by a needle of a home made tattoo gun
## 16533                                                                                                                      Conducting search of inmate's locker reached for plastic bag. Tattoo gun with needle was hidden. Reached for bag and got stuck with needle ()
## 16534                                                                                                                                             Conducting search of wooded area during night hours. All members of pert team using paint guns & was hit on lips w/one
## 16535                                                                                                                                                                    Conducting searches in duplicating plant & banged foot on a desk. Injuring his right foot/arch.
## 16536                                                                                                                                                                                  Conducting searches of inmates in the search room & something bit him. Rt-forearm
## 16537                                                                                                                    Conducting seatbelt rollover simulator. Stepped uponto ramp of simulator & poece of metal caught his jacket & twisted upper part of body around
## 16538                                                                                                                                                                           Conducting security check of all entrance & exit doors & caught finger in handle of door
## 16539                                                                                                                             Conducting security check of fire doors and mechanic rooms, he felt a pull in his left calf muscle while pulling the door latch bar ()
## 16540                                                                                                                                                                                                               Conducting security check on yard fell in manhole ()
## 16541                                                                                                                          Conducting self defense warm-up. During stretchingfelt tightness in rt hip. Pain in thigh, lower back area. Sometimes radiates in lt side
## 16542                                                                                                                                                                                                  Conducting shaves, an inmate threw urine in the officer's face ()
## 16543                                                                                                                     Conducting short baton training. While holding strike bag, a blow to the bag was deflected off the bag and hit her in the back of lower lt leg
## 16544                                                                                                                                                                                                            Conducting showers and an I/m stabbed EE in the face ()
## 16545                                                                                                                                                                                                           Conducting showers, inmate through bleach in my eyes. ()
## 16546                                                                                                                        Conducting smoke breaks for inmates, when break was over, inmates began to return back inside, group of inmates jumped & assaulted employee
## 16547                                                                                                                                                                                                                 Conducting snorkel survey when a leech attached ()
## 16548                                                                                                                                                                       Conducting strip search of inmate when inmate suddenly swung his fist and struck EE in mouth
## 16549                                                                                                                               Conducting textbook inventory in basic skills classroom, lifted stack of books to place them on a bookcase and twisted lower back ()
## 16550                                                                                 Conducting the 11:45 p. M. Count in fore unit a-block. Employee indicates she stepped in something slippery causing her legs and back to stretch out and go down on her left knee.
## 16551                                                                                                                                    Conducting traffic stop, suspect fled on foot, during foot chase, crossed a chain link fence and suffered laceration right hand
## 16552                                                                                                                                                                                       Conducting training in crdt (unarmed self defense) sprained left shoulder ()
## 16553                                                                                                                                        Conducting unarmed self defense, performing a throw& roll he landed on his lt side & felt a sharp pain in upper lt rib cage
## 16554                                                                                                                                                                                   Conducting warm-up exercises, jump-n-jacks, when EE turned right knee--acl tear.
## 16555                                                                                                                                                             Conducting warrantless search at offender's residence. When she walked into residence, dog bit her. ()
## 16556                                                                                                                                  Conducting weapon retention practical exercise when another trainee flipped EE over onto the mat making impact with left shoulder
## 16557                                                                                                                       Conducting weekend home contact on probationer walking to the appartment fell face forward over the curb prior to reaching apartment door ()
## 16558                                                                                                              Conduction an pressure vessel inspection, EE was sprayed by high pressure air which fogged the EE (ppe) safety glasses and deposited trash in (r) eye
## 16559                                                                                                                      Conduction cell search, felt right hand itching when she removed latex glove she noticed what appeared to be an insect bite on top of rt hand
## 16560                                                                                                                                                     Conduction searches felt like something pinched the crease in thumb. Nothing there on 6/27/10 thumb swollen ()
## 16561                                                                                                                                                                                                                     Conduit fell striking me under my left eye. ()
## 16562                                                                                                                                                                                                            Configuring a scanner and replacing toner cartridges ()
## 16563                                                                                                                                                                                  Confirmed case of MRSA here at bcci, EE was probably exposed while trating inmate
## 16564                                                                                                                                                               Confiscated glass marijuana pipe, employee cut his left index finger on pipe after it was distroyed.
## 16565                                                                                                                                                                                                                                              Conflict with inmate.
## 16566                                                                                                                                                                                                             Conflicting statements from employee and supervisor ()
## 16567                                                                                                                                                                                                                       Confrontation with inmate during a search ()
## 16568                                                                                                                                                                                                                   Conjunctivitis in lt eye possibly contracted it.
## 16569                                                                                                                                                                                                                                      Conjuntivitis from patient ()
## 16570                                                                                                                       Connecting 6" pump trailer hitch to a pick-up truck trailer ball. Trailer hitch fell pinning EE finger to ball & hitch. Lt hand ring finger.
## 16571                                                                                                                                                           Connecting trailer to vehicle rear bumber by self. Immediate pain in groin area which disappeard quickly
## 16572                                                                                                                                                                       Consistant lifting of heavy water bottles in caseswithout assist-injury to rt and left hand.
## 16573                                                                                                                                                                                                                     Consistant walking on knees laying floor tile.
## 16574                                                                                                                                                                                                                 Constant coughing since thanksgiving. Body systems
## 16575                                                                                                                                                                                                                                        Constant heavy typing daily
## 16576                                                                                                                                                                          Constant moving of heavy bodies (200 lbs. +) from table to table multiple times a day. ()
## 16577                                                                                                                                                                                         Constant repetitive motion on computer caused knot to appear on right hand
## 16578                                                                                                                                                                                                     Constant repetitive motion on computer, noticed knots on hands
## 16579                                                                                                                                                                          Constant typing and ergonomically unsatisfactory work station-diagnosed with cts rt wrist
## 16580                                                                                                                                                           Constant typing and use of computer has caused nerve damage to forearms, shoulders, neck and upper back.
## 16581                                                                                                                                                                                                   Constant use of computer keyboard, carpal tunnel in r wrists/arm
## 16582                                                                                                                                                                                                                      Constant use of hands and fingers on computer
## 16583                                                                                                                                                                         Constantly cutting bread, hands numb fingers using scissors, lifting pots and pans, moping
## 16584                                                                                                                                             Constantly types and files at least 6 hrs each day, currently is having problems getting her deskergonomically correct
## 16585                                                                                                                                                                Constructing a fire line in heavy root mat, also lifting and moving downed snags to extinguish fire
## 16586                                                                                                               Constructing fireline around wildfire using fire rake. Complained of chest pain & numbness in left arm. Employee had been operating chainsaw earlier
## 16587                                                                                                                                                 Construction fumes from dental research building came into office through fresh air intake 2 days- varnish odor ()
## 16588                                                                                                                                Construction was going on in building, and EE states that she developed a headache, stomach ache, and became disoriented and dizzy.
## 16589                                                                                                                                         Construction was going on in normal work area for weeks. Sat on a dust filled chair in office and had an asthma attack. ()
## 16590                                                                                                                                                                  Construction work going on in library. EE states that eyes became irritated and started to swell.
## 16591                                                                                                                                                                                Construction yard supervisior over inmates, stepped backwards & fell over ladder ()
## 16592                                                                                                                                                                             Consumer aggressed toward staff, staff blocked consumer, right elbow hit against wall.
## 16593                                                                                                                                                                                          Consumer attacked staff attempted to choke and poked finger in right eye.
## 16594                                                                                                                                                                                 Consumer backhanded EE in face while he was trying to dress him. Hit his right eye
## 16595                                                                                                                                                                                Consumer became agitated and EE went to intervene and consumer struck EE in rt hand
## 16596                                                                                                                                                                                                                 Consumer became extremely aggressive attacking EE.
## 16597                                                                                                                                                                        Consumer became upset in dayroom and hit EE on right side of upper back near shoulder blade
## 16598                                                                                                                                                                                  Consumer became upset, EE was escorting consumer, consumer struck EE across eyes.
## 16599                                                                                                                                                                                                                            Consumer became upset. Was struck by EE
## 16600                                                                                                                                                                                                                              Consumer bit EE. Left pointer finger.
## 16601                                                                                                                                                                                                                      Consumer bit hand while EE was assisting lpn.
## 16602                                                                                                                                             Consumer had jumped up from chair and started to fall and EE tried to catch consumer hitting left hand on dayroom wall
## 16603                                                                                                                                       Consumer had seizure in bathroom and knocked water on floor. EE came to his aid and slipped on floor where water had fallen.
## 16604                                                                                                                                   Consumer had spit water on floor. EE slipped and fell on right side and then consumer slipped and fell on EE's left leg and knee
## 16605                                                                                                                                                                                                                     Consumer kicked staff in lower abdomen and hip
## 16606                                                                                                                                                                        Consumer pulled EE's rt index finger hard while EE was trying to keep consumer from falling
## 16607                                                                                                                                                 Consumer sat down in front of door, asked another staff to assist EE with getting consumer up and toanother place.
## 16608                                                                                                                                                                                                       Consumer seizuring & staff tried to break fall twisting back
## 16609                                                                                                                                                          Consumer snatched a glass of juice and EE grabbed glass away from consumer and jammed right index finger.
## 16610                                                                                                                                                                                                                                         Consumer spit in right eye
## 16611                                                                                                                                                     Consumer trying to stick head in commode. EE trying to prevent this. Consumer slammed her hand up against wall
## 16612                                                                                                                                                                                                 Consumer was agitated and struck EE on the left wrist with a chair
## 16613                                                                                                                          Consumer was having behavior problems and hitting himself against wall, EE intervened and was pushed against wall. Injury to right elbow.
## 16614                                                                                                                                                                        Consumer was pushed by another consumer and EE tried to catch consumer and jammed her thumb
## 16615                                                                                                                            Consumer was starting to sit in chair and didn't get close enough, EE caught her, but EE's finger was caught between consumer and chair
## 16616                                                                                                                                                                                                 Consumer was trying to pull EE outside and scratched EE on rt hand
## 16617                                                                                                                                                                  Consumer was trying to shut door. EE tried to shutdoor and consumer slammed door on staff's hand.
## 16618                        Consumer's husband had conf. Room chair tipped forwarded. I was standing behind the chair when the consumer’s husband place the chair on all legs. My (r) foot (second toe) was under the chair when he sat it back in correct position. ()
## 16619                                                                                                                                                     Consumer's wheelchair was tipping over. EE grabbedwheelchair and part of wheelchair pushed into EE's knee cap.
## 16620                                                                                                                                                                                            Cont use of keyboard mouse. Weakness in rt hand pinky, elbow, shoulder.
## 16621                                                                                                                                                                                                                       Contact dermatitis from wearing latex gloves
## 16622                                                                                                                                                                                                            Contact dermatitis of hands due to use of rubber gloves
## 16623                                                                                                                                                                                Contact dermatitis while doing hygiene round and possible infected areas on patient
## 16624                                                                                                                                                                                                                                     Contact dermitis to both hands
## 16625                                                                                                                                                                                                                                        Contact dermititis on hands
## 16626                                                                                                                                                                                                Contact of rash that could be syphilis to his r hand and l hand. ()
## 16627                                                                                                                                                                                                                  Contact w/MRSA client-eye red & discharge present
## 16628                                                                                                                                                                                                                                Contact w/co-worker who had scabies
## 16629                                                                                                                                                                                  Contact w/resident w/conjunctivities in past 2 wks& EE's right eye red & drainage
## 16630                                                                                                                                                                           Contact while doing physician exam on infant - exposure to newborn infant with syphilis.
## 16631                                                                                                                                                                                                       Contact with child in daycare center where infected child ()
## 16632                                                                                                                                                                                                                                            Contact with poison ivy
## 16633                                                                                                                                                                                           Contact with poison ivy plants w/ resultant rash on face, & behind knees
## 16634                                                                                                                                                                                                                        Contact with poison ivy while pulling weeds
## 16635                                                                                                                                                                                                 Contact with resident with scabies. Red rash on chest with itching
## 16636                                                                                             Contacted employee he states that he was signing dorm log took glasses of and something blew in his left eye. Fan mounted a b dorm blowing directly at a dorm desk. ()
## 16637                                                                                                                                                                                                                 Contacted poinson ivy on abdomen, legs, arms, neck
## 16638                                                                                                                                                                                        Contacted possible ringword from a patient-locatedon staff's right forehead
## 16639                                                                                                                                                                                                                         Contacted possible scabies from a patient.
## 16640                                                                                                                            Container was resting on the counter and I put trash bag in it when I hit my head on the bottom corner and hinge of the wall cabinet ()
## 16641                                                                                                                                                                            Contaminated EE inhaler box with blood, blood camein contact with an open area... Thumb
## 16642                                                                                                                                                                                                                     Contaminated water splashed into EE right eye.
## 16643                                                                                                              Contaminents from the inside of the state truck entered into the inside of c/o davis' eye. Investigation revealed a fire extinquisher had discharged.
## 16644                                                                                                                                                                                                        Continous dermatitis from continous washing and drying hand
## 16645                                                                                                                                                                              Continous lifting mechanical parts on semi-trailor; performing preventive maintenance
## 16646                                                                                                                                                                                  Continous lifting of many different heavy objects has resulted in ingunal hernia.
## 16647                                                                                                                           Continous repetitive motion on computer keyboard to compose draft or transcribe documents caused injury. Carpel tunnel syndrome rt hand.
## 16648                                                                                                                                                  Continous use of computer keyboard & mouse made wrist progressively painful to point that doctor needs to be seen
## 16649                                                                                                                                                                                                          Continoususe of the keyboard computer terminal andwriting
## 16650                                                                                                                                                                             Continual cutting and pasting text bewtween computer applications pain in wrist/thumb.
## 16651                                                                                                                                                                             Continual reptitious movement daily use of power sprayers, shovels, pitchfork, brooms.
## 16652                                                                                                                                            Continual use of computer over a long period of time has made EE's palms, thumb, and two fingers of right hand go numb.
## 16653                                                                                                                                                                                  Continual/repetative motions in crdt brought aboutintollerable pain in right knee
## 16654                                                                                                                                            Continued use of a keyboard & mouse constant pain in the wrist, forearm, elbow & upperarm, some pain in lt side of neck
## 16655                                                                                                                                                                                                                                       Continued use of kb. Has cts
## 16656                                                                                                                                                                                                                       Continued use of keyboard. Tendonitus l arm.
## 16657                                                                                                                          Continuos squatting has led to osteophytes in rt big toe. Happened sometime in 4/2005. Please contact michael mcfarland regarding denial.
## 16658                                                                                                                                                                                                         Continuos use of keyboard for computer pain in left wrist.
## 16659                                                                                                                                                                                         Continuosly typing on keyboard and adding machine right thumb.. Left thumb
## 16660                                                                                                                                                                                                               Continuous excessive keyboard use - pain in rt elbow
## 16661                                                                                                                                                                                                Continuous exposure to contaminated air.... Skin and ear irritation
## 16662                                                                                                                                                                         Continuous hand movement---cleaning toilets, sinksurinals, sweeping & mopping. Right hand.
## 16663                                                                                                                                                                                                                      Continuous keyboarding at pc required of job.
## 16664                                                                                                                                                                                                                Continuous keying on computer. Pain in right wrist.
## 16665                                                                                                                                                                                   Continuous lifting & lugging of computers up & down stairs from office to office
## 16666                                                                                                                                                                                             Continuous motion of typing & writing as required for job performance.
## 16667                                                                                                                                                                                             Continuous problems with back and bursitus in hip related to old chair
## 16668                                                                                                               Continuous prolonged use of computer keyboard and sitting at desk causes right shoulder pain, also wrist & elbow pain, back hurts when sitting long.
## 16669                                                                                                                                                                                                 Continuous pulling on clients, lifting trash.... Pain in right arm
## 16670                                                                                                                                                                                                   Continuous repetitive motion while performng daily activities ()
## 16671                                                                                                                                                                                                                Continuous sitting, entering and siting in vehicle.
## 16672                                                                                                                                                                                      Continuous turning neck to avoid eye strain while making copies; injured neck
## 16673                                                                                                                                                                                                                                    Continuous typing... Right hand
## 16674                                                                                                                                                                                              Continuous use of computer mouse - right hand and arm burning & sore.
## 16675                                                                                                                                                                             Continuous use of computer mouse and keyboard over a long period of time - rt shoulder
## 16676                                                                                                                                                                                                                                        Continuous use of her hands
## 16677                                                                                                                                                             Continuous use of keyboard and mouse. Constant pain in left wrist and left arm. Numb left index finger
## 16678                                                                                                                                           Continuous use of keyboard in an improper positiontelephone elvated causing EE to reach up to ans itstrained rt shoulder
## 16679                                                                                                                                                  Continuous use of right hand to stamp numbers on files. No ergonomic chair to it in. Injury to right arm and neck
## 16680                                                                                                                                                                                                                      Continuous use of wrist caused carpal tunnel.
## 16681                                                                                                                                                                                                 Continuous work on calculator and computer. Carpal tunnel syndrome
## 16682                                                                                                                                                                          Continuous work with computer and data input require constant repetitive use of mouse. ()
## 16683                                                                                                                                                                                                                Continuously exposed to environment in work area ()
## 16684                                                                                                                                                                       Continuously using keyboard for classroom & preparation of classes. Pain right hand & elbow.
## 16685                                                                                                              Contract EE (rn) states pulled needle from entry sight, w/l hand placed gauze over & needle tip punct. Glove & skin on lt hand/thumb area/drew blood.
## 16686                                                                                                                 Contract EE reported that the floor on the 2nd floor was wer and that she slipped in water as she was going to the elevator to go to the 3rd floor
## 16687                                                                                                                                                                                                                       Contracted chicken pox, most likely at home.
## 16688                                                                                                                                                                                                                            Contracted conjunctivis from patient ()
## 16689                                                                                                                                                                                                                              Contracted conjunctivitis from client
## 16690                                                                                                                                Contracted hepatitis b July 1979 due to exposure to clients who were active hepatitis b positive. Diagnosed with cirrhosis of liver
## 16691                                                                                                                                                                                  Contracted pharyngitis and cunjunctivitis while caring for contagious patients ()
## 16692                                                                                                                                                                                        Contracted poison ivy while clearing trees & branches from hurricane damage
## 16693                                                                                                                                                                                 Contracted poison ivy/oak while cutting weeds ()claim deleted - not state employee
## 16694                                                                                                                                                                                                                             Contracted primate fecal contamination
## 16695                                                                                                                                                                                                  Contracted rocky mtn spotted fever from tick bite EE 252 482 1069
## 16696                                                                                                                                                                         Contracted temporary employee was hit in the rt. Knee and shin while directing traffic. ()
## 16697                                                                                                                                 Contractor working in manhole lost balance, and eetried to keep him from falling. Injured back when grabbing contractor. Low back.
## 16698                                                                                                                   Contractors were working outside the bldg and fumes went into vent systme and created a fire haze causing EE to inhale fumes and carbon dioxide.
## 16699                                                                                                                                                                    Contractual EE was adminstered flu shot by bcbs - had possible anaphylactic reaction (swelling)
## 16700                                                                                                                       Control booth operation. Attempted to sit down in a chair, bottom of chair wasn't stable (broken) and I fell out of chair onto the floor. ()
## 16701                                                                                                                                                               Control officer - foot slipped when stepping down from dorm control chair hit back on second step ()
## 16702                                                                                                                                                                                 Control restraints defense training, training partner fell on officer reynolds. ()
## 16703                                                                                                                                                                                                                    Control walking with patient-kicked in groin ()
## 16704                                                                                                                                                                Control, cutody and welfare of inmates to which injury resulted in staff infection from exposure ()
## 16705                                                                                                        Controlled restraints defensive techniques training; during training for a take down technique I felt soreness and a pulling sensation in my left wrist. ()
## 16706                                                                                                                                                                                                                   Controlling a self injurious inmate (suicide) ()
## 16707                                                                                                                                                  Controlling an inmate who was assaulting another staff member EE was scratched on her left index finger by inmate
## 16708                                                                                                                Controlling e-1 area. Inmate approached EE got in her face and was asked to back off twice. Inmate started to walk off then turned around and spit.
## 16709                                                                                                                                                                            Controlling the flow of people coming into gatehouse harrassed & threaten by 2 sergeant
## 16710                                                                                                                                                                        Contusion of left shoulder by angry patient attackcontusion left shoulder/chest discomfort.
## 16711                                                                                                                                                                   Contusion to back and neck, sitting at stop light at intersection, rear ended by another vehicle
## 16712                                                                                                                                                                      Contusion to back, neck, rt hip and lt elbow, felldown while loading canoes on overhead racks
## 16713                                                                                                                                                                                                                                                  Contusion to hand
## 16714                                                                                                                                                             Contusion to head, neck, both eyes, skin, lt arm, rt hand and knees, removing hostile inmate from unit
## 16715                                                                                                                                                Contusion to her right eye, from fight in the dining hall-- inmate struck her in the right eye with closed fist. ()
## 16716                                                                                                                                                                                             Contusion to knees, slipped in liquid substance onfloor, fell on knees
## 16717                                                                                                               Contusion to left chest (ribs), training/defense, learning technique on how to get inmate off of youby tossing them off, landed on lt arm, left side
## 16718                                                                                                                                        Contusion to left hand, sorting coats, was attempting to open the window when the entire window framfell out onto left hand
## 16719                                                                                                                                                                                                                     Contusion to left knee, struck against trailer
## 16720                                                                                                             Contusion to left leg, knee, hip and back, co emp loyee hit release button to open cover on dump truck, cover caught leg which flipped him in the air.
## 16721                                                                                                                                                                                                Contusion to left thumb/indicates closed desk drawer on right thumb
## 16722                                                                                                                                                     Contusion to left wrist and left shoulder, busted lip, going to lunch, tripped in parking lot, face hit cement
## 16723                                                                                                                                   Contusion to lower back, right hip and pain in right knee, chasing defendent, fell down, causing injury to back, rt hip and knee
## 16724                                                                                                                                     Contusion to lt hand and both knees, walking on sidewalk outside of courthouse, fell, scraping knees and landing on left hand.
## 16725                                                                                                                                                                   Contusion to lt knee in a tripping incident. Tx atueohc revealed neg x-ray for fx. No lost time.
## 16726                                                                                                                                                   Contusion to neck, rt/lt shoulder, back-center andlower, rt hip and rt ankle, passenger in a vehicleanother hit.
## 16727                                                                                                                                                                                                                             Contusion to r great toe, r/o fracture
## 16728                                                                                                                                                               Contusion to ribs, EE was hit in the ribs with a baseball while giving an individual hitting lessons
## 16729                                                                                                                                                                  Contusion to right hand, coming out of occupation therapy office, accidentally shut door on hand.
## 16730                                                                                                                                                                                    Contusion to right shoulder and arm, fire shotgun and injured shoulder and arm.
## 16731                                                                                                                                                                                                                              Contusion to right shoulder and thigh
## 16732                                                                                                                                                                                                                                        Converted to positive TB ()
## 16733                                                                                                                                               Cook from 6-4 stopped to say hello to cook 3-4, threw up hands, cook 3-4- moved back and hit 3-4 in rt eye with fist
## 16734                                                                                                                                                                                                                         Cooking breakfast - sharp pain and swollen
## 16735                                                                                                                                                                                   Copying evacuation route stored in frame, sharp glass around frame cut finger ()
## 16736                                                                                                                                                                                   Cord was around her ankle, when she stepped forward she came down hard on l knee
## 16737                                                                                                                                                                                                                      Corncob bedding got in employee right eye. ()
## 16738                                                                                                                                                                                                                                     Corneal abraisons to left eye.
## 16739                                                                                                                                                                                  Corneal scrape from tree branch while walking stream bed for env compliance visit
## 16740                                                                                                                                                                                              Corner of box scratched right forearm, skin brokenapprox 1 - 2 inches
## 16741                                                                                                                                                                                                                    Corner of file cabinet fell on EE hand and foot
## 16742                                                                                                                                                                                                         Corr officer states he was hit in the face by an inmate ()
## 16743                                                                                                                  Corr. Officer stated that inmate was unruly and threw a chair hitting c/o thomason in the lft upper part of his arm-upper lft arm red and swollen
## 16744                                                                                                                       Correction enterprises provided a chair for trial use by EE-size and curvature of chair was wrong for EE and caused undue strain on left hip
## 16745                                                                                                                             Correctional off. Was making rounds in dorm h whenexiting an inmate called her name & as she turned around she twisted her right knee.
## 16746                                                                                                                                                     Correctional officer attended crdt training on 11-18-10. At 21:30 pm he began to feel his left elbow throb. ()
## 16747                                                               Correctional officer jant was assulted by inmate, went to medical on site, they observed open lip area, scratches and reddness area in the face, and head. Officer complaining of rt leg hurting. ()
## 16748                                                                                                                                     Correctional officer matthews was escorting inmates from segreation recreation cubicles when a cuffed inmate assaulted him. ()
## 16749                                                                                                                       Corrie was returning from a field trip, lifting children and car seats off the van when she stepped off of the van and felt a muscle pull ()
## 16750                                                                                                   Costley crossing street in marked pedestrian crossing with a stop sign. Car rolled through stop and hit her and a co-worker. Right foot, tail bone, left hip. ()
## 16751                                                                                                                                                                                                                                                              Cough
## 16752                                                                                                                                                               Coughing and breathing problems. Fatigue, repeated sinus infections, itchy & burning eyes, sneezing.
## 16753                                                                                                                                                                                                      Coughing, headaches, light headedness upon entering the mall.
## 16754                                                                                                                                                                                                      Couirier delivery to ncciw and slammed finger in car door. ()
## 16755                                                                                                                     Couldn't do warm up exercise for training, had back problems & stepped down from doing exercise at own request. Exercise was walking in place.
## 16756                                                                                                                                            Couldn't see where I was stepping on stairs, foot missed a step and I fell down 3-4 steps onto landing leaving class ()
## 16757                                                                                                                                      Counseling an inmate, he became aggressive and assualtive, while gaining control of the inmate, was hit on the arm by a baton
## 16758                                                                                                                   Counseling clients in dorm, telephone call came through, phone kept in a "locked" box, in rush to open, keys fell, bent to pick them up, twisted
## 16759                                                                                                                                                                                                            Count time - walked back down the stairs in hatteras ()
## 16760                                                                                                                                                                                                          Counting florescent light using uv light leading ti eyes.
## 16761                                                                                                                                                                     Counting inmates and was closing dorm door and caught her fingers in between door and door jam
## 16762                                                                                                                                                                                               Counting inmates. Was walking and felt a pop in leg causing pain. ()
## 16763                                                                                                                                                                                              Counting inventory and reached for a box when bitten by something. ()
## 16764                                                                                                                                                Counting retraints in cabinet hit head on top of cabinet as he started to exit the cabinet. Back of center of head.
## 16765                                                                                                                                                                                                                  Counting supplies & crutch board fell on her head
## 16766                                                                                                                Counting the weights during the nightly inventory weights were stacked on top 2-100 lb, while moving45 lbs pulled muscle in rt lower back, buttocks
## 16767                                                                                                                                           County put in new work station w/keyborad and theposition of the keyboard was too short. Causing pain in hand and elbow.
## 16768                                                                                                                                               Court clerk position required repetitive motion ofhands which caused cts or aggravated her prior injury from 6/28/07
## 16769                                                                                                                                                                                      Court counselor was in pursuit on foot of a juvenile who ran while in custody
## 16770                                                                                                                                            Court counselor was stopped at a stop sign and wasstruck from behind by another car. Counselor was driving the vehicle.
## 16771                                                                                                                                     Courtroom clerk who processes large number of court files such as pulling files apart for processing & getting ready for court
## 16772                                                                                                                                                                                         Coutner top fell on head causing a contusion on forehead and cutting head.
## 16773                                                                                                                                                                                    Coved consumer form bed to chair and felt pain on upper lft side in breast area
## 16774                                                                                                                                                                                               Cover of a light fell and came accross hand cutting my right hand ()
## 16775                                                                                                                                                                                      Covering merchandise with painters plastic. Cornerof plastic went into rt eye
## 16776                                                                                                                                                        Cow bolted cuasing large brad chain EE was holding to be jerked against rt middle finger causing laceration
## 16777                                                                                                                                                                                                                                             Cow stepped on foot ()
## 16778                                                                                                                      Cow was in bovine hydraulic chute, the cow's leg was stuck on the side and EE pushed cow's leg down and struck his hand on the side of chute.
## 16779                                                                                                                                                                                                  Coworker grabbed EE by the throat and caused trama to the larynx.
## 16780                                                                                                                                                                                                   Coworker passed out, and iw caught her from fall- to the ground.
## 16781                                                                                                                                     Coworker trying to use pocket knife to pry batteryon radio loose while EE was holding it & knife slipped cutting EE's lt thumb
## 16782                                                                                                                    Coworker was cutting down tree and EE approached from the rear to tell coworker the tree was fallinchainsaw kicked bakc and hit EE in the knee.
## 16783                                                                                                              Coworker was putting chair under table using his body weight to secure chair & accidentlay set it down on the employee's recently injured right foot.
## 16784                                                                                                                                 Coworker went into a seizure, EE saw emergency andinserted his finger into coworkers mouth to keep him from swallowing his tongue.
## 16785                                                                                                                                                   Cows got out of fence-EE was trying to cut them off and tripped over heat gates, EE fell and a cowstomped on him
## 16786                                                                                                                                                                               Cppo assisting with transport of offender, offender. Struggle began with offender ()
## 16787                                                          Cppo pace was with po lauren pittman attempting to arrest an offender with an active parole warrant. He ran from the officers and cppo pace gave chase, injuring his hand while climbing over a fence. ()
## 16788                                                                                                                                                       Cppo walking rapidly across parking lot attempting to make contact with offender and stepped on something ()
## 16789                                                                                                                          Cpr dummy was placed on a desk; instructions for practice using a repetitive motion were followed--injury to rt arm causing muscle strain
## 16790                                                                                                                                                                                                                   Cpr initiated using mouth to mouth resesitation.
## 16791                                                                                                                                                                                                                                     Cpr on victim in src courts ()
## 16792                                                                                                                                                                                                                             Cpr on victim, exposing himself to bbp
## 16793                                                                                                                                                                                           Cpr training felt something pop in left hand while doing compressions ()
## 16794    Cpr/faiaed care in hallway outside src racquetball courts; player collapsed face first on floor causing bleeding; player also vomited and urinated; wearing gloves & using mask to give breaths; when walked away from scene was still and limping; had left ()
## 16795                                                                                                                                                                     Cramp and pain in left lower back after helping a client up from floor and into her wheelchair
## 16796                                                                                                                                                   Crank on bed was left sticking out, EE tripped over it and fell to floor, landing on left knee and left shoulder
## 16797                                                                                                                                                                 Cranking a chainsaw-the saw kicked back yanking rope out of hand fracturing finger & wrist (right)
## 16798                                                                                                                                                                                                                      Cranking up bed; hit bed with right thumb. ()
## 16799                                                                                                                                                                                                      Crates fell on finger while pulling pits in chicken house. ()
## 16800                                                                                                                                                                                                                          Crates of milk fell onto left arm and leg
## 16801                                                                                                                                                                                                         Crawled under desk to repair phone jack & injured his back
## 16802                                                                                                                                                                                                                      Crawling around on knees, swelling in lt leg.
## 16803                                                                                                                                                                                            Crawling in attic to check exhaust dust, slipped and twisted right knee
## 16804                                                                                                                                                             Crawling into boiler manway to make tube repair, twisted body causing injury to back. Lower back & hip
## 16805                                                                                                                                                                     Crawling under belk dorm to cut off water to dorm rooms trap door closed and he jerked his leg
## 16806                                                                                                                                                                                                     Crawling under building tracing stream line; injured left knee
## 16807                                                                                                                                        Crawling under desks, connecting computers, lifting boxes & moving furniture. Lower back, rt side pain, right buttock pain.
## 16808                                                                                                                                                           Crdt (self defense training) wrist was twisted under another officers leg. Severe sprain to right wrist.
## 16809                                                                                                                                                                                                       Crdt - jammed right thumb while guiding partner tothe ground
## 16810                                                                                                                                                                                    Crdt -doing low block with baton as coming up knee popped causing EE to fall ()
## 16811                                                                                                                                                                                Crdt basic training partner pulled legs before I was ready and I fell improperly ()
## 16812                                                                                                                                                                                  Crdt in-service; running in place and while doing bent wrist take down: left knee
## 16813                                                                         Crdt recert training- performing technique with partner which involved laying on the floor and tossing officer over the left shoulder causing her right shoulder to jam into the floor. ()
## 16814                                                                                                                                                                                      Crdt recert training; weakside arm bar procedure; over extended l shoulder ()
## 16815                                                                                                                                                                                                   Crdt refresher training - implementing the control techniques ()
## 16816                                                                                                                                                                                     Crdt self-defense class, breakfall onto a matt & return into a stance position
## 16817                                                                                                                                                                                                                                                      Crdt training
## 16818                                                                                                                                                                        Crdt training - EE states that he fell backwards on the mat an his left hand was under him.
## 16819                                                                                                                   Crdt training - arm bar take down - him and his partner were doing the arm bar take down move, and he fell on his left rist to catch his fall ()
## 16820                                                                                                                                              Crdt training - completing the mount escape move and she threw co worker off and pulled a muscle in right shoulder ()
## 16821                                                                                                                                       Crdt training - guard in/guard out procedure - knee twisted while trying to prevent partner from standing during maneuver ()
## 16822                                                                                                                                                     Crdt training - leg twisted with another officer'sleg, employee fell on the floor. Immediate pain inleft ankle
## 16823                                            Crdt training -placed both arms around c/o p. Sawyr upper torso and lock hands together. C/o sawyer bent over alittle this lifted his feet up off the floor, at that point he felt pain in his rib and turned loose. ()
## 16824                                                                                                                                                                                                    Crdt training and sprained ankle doing a fall back to the floor
## 16825                                                                                                                  Crdt training at montgomery comm coll. While performing a "guard escape" a popping noise was heard. Employee did not complain until the week-end.
## 16826                                                                                                                                                                                                           Crdt training exercise--was thrown hiting shoulder/left.
## 16827                                                                                                                                                                                              Crdt training then shortly after started having severe chest pains ()
## 16828                                                                                                                                         Crdt training while falling on mat & twisting knee; in the afternoon repeated twisting of right knee and falling on mat ()
## 16829                                                                                                                                                                 Crdt training, EE unsure how injury occured. EE continued training & returned to work the next day
## 16830                                                                                                                                       Crdt training, attempts to break fall during upper takedown. Fell with body weight on rt. Hand on rt. Side of rib cage area.
## 16831                                                                                                                                                                            Crdt training, during breakfalls going down and getting up employee felt something pull
## 16832                                                                                                             Crdt training, while practicing two man take down an officer hit me from behind in the left leg and knee whith his shoulder and tackled me to the mats
## 16833                                                                                                                                                                                                               Crdt training- EE was practicing with partner the ()
## 16834                                                                                                                                  Crdt training- had a knee injury apprx 3 weeks andit flared up again last week then yesterday hurt it worse and made it swell up.
## 16835                                                                                                                                                                  Crdt training-instead of rolling, I slid off my partner injuring my rt shoulder in this exercise.
## 16836                                                                                                                                                                               Crdt training-interacting with another corrections staff on a take down move tactic.
## 16837                                                                                                           Crdt training. Demonstrating a take down, stepped back with left foot to complete move and got right foot caught on seam of mat. Felt pain in right knee
## 16838                                                                                                                Crdt training. Doing a takedown technique. Done at least 10 times going down on knees. One of the mats was thin and rt. Knee hit concrete floor. ()
## 16839                                                                                                                    Crdt training. EE was performing the high mount technique, his arm became trapped under his trainin partner causing severe pain in lf shoulder.
## 16840                                                                                                              Crdt training. Injuried was the foward officer in the take down. The officer pushed forward on the suspect and he fell directly toward him. As he was
## 16841                                                                                                                     Crdt training/conducting cell extraction exercise, while trying to restrain instructor's r hand, EE's l leg was hit on l side going inward. ()
## 16842                                                                                                                                                                              Crdt training; during crdt training on 12/12/12, my previous injury was irritated. ()
## 16843                                                                             Crdt training; excercise w/partner. On knees attempting to relieve partner of weapon. Partner twisted arm behind back to hand cuff positon and he heard a pop in his left shoulder. ()
## 16844                                                                                                                                         Crdt trng. Class was doing forward break falls. As a result of the falls, upon getting up from mat, knee cap area shifted.
## 16845                                                                                                                                                                                   Crdt-low block with baton when coming up right knee popped causing EE to fall ()
## 16846                                                                                                                                                                       Crdt; after being taken down during aim bar quick take, felt muscle pull while recovering ()
## 16847                                                                                                                                                                                         Creating a buffer solution and some sodium dodecy/sulfate got into rt eye.
## 16848                                                                                                                                                                      Crew of four employees were lowering the lift when Mr. Lockhart shoulder popped out of place.
## 16849                                                                                                                                                                                                                       Crew sprayed into eye when replacing the top
## 16850                                        Crew was setting out work zone signs to remove some trees. Employee removed a sign rack and placed it on the shoulder; as he raised up he turned and twisted his lower left back area. List injuries as: lower back area ()
## 16851                                                                                                                                                  Crew was working on vent hoods or something & EE inhaled fumes while working in office. Fumes were not continuous
## 16852                                                                                                              Crewman on fire, wind picked up, jumped the line. Blackline was burned over he had no where to go, he laid low in the plow line and right ear burned.
## 16853                                      Crews were cleaning equipment after snow event; employee was pumping the sprayer; top of the sprayer seal that allowed the lubra seal to blow into his face and eyes while still under pressure. List injury as: both eyes ()
## 16854                                                                                                                                             Criminal justice standards was going to pull his certification and this resulted in a stroke from worry and stress. ()
## 16855                                                                                                                                                     Crossed cable in parkinglot. Foot didn't clear thecable. Fell against right hand. Struck face on railroad tie.
## 16856                                                                                                                                                                     Crossed over broken pavement & partly turned lt ankle. Hit on hands & knees. Rt elbow hit ribs
## 16857                                                                                                Crossing hwy 91 and meadow road (greene county), mike's vehicle was struck in the rear passenger wheel, it spun and rolled over completely. The car was totaled. ()
## 16858                                                                                                                                                                               Crossing in pedestrian crosswalk. Walked into uneven pavement and turned right foot.
## 16859                                                                                                                                                                                       Crossing intersection on way to work in morning & tripped & fell on sidewalk
## 16860                                                                                                                                                                                Crossing manning drive going to work tripped on construction netting fx left ankle.
## 16861                                                                                                                                Crossing martin l. King jr., Dr. In a cart, to check on a building the light changed employee was hit by a car on the right side ()
## 16862                                                                                                                                                         Crossing median to let vehicle in lot, lost footing& slipped on sandy portion of median twisting rt. Knee.
## 16863                                                                                                                                                                                  Crossing medical drive, tripped & fell landing on left wrist. Fracture left wrist
## 16864                                                                                                                                                                                                       Crossing over some conduit in mechanical room, lost balance.
## 16865                                                                                                                                                                                        Crossing parking lot; vehicle backed up not seeingemployee hitting employee
## 16866                                                                                                                                                                           Crossing st in front of admin bldg; hell of right shoe caught in crack; fell on pavement
## 16867                                                                                                                                                               Crossing street at crosswalk, tried to stop for approaching car as precaution, lost footing and fell
## 16868                                                                                                                                                              Crossing street in middle of block and was hit by a car between craige north and morrison south dorms
## 16869                                                                                                                                                                                Crossing street to parking lot, lt foot stumbled on pavement & turned over. EE fell
## 16870                                                                                                                                                                         Crossing the street at pasq. Courthouse, dawn stepped on large rock, twisted foot and fell
## 16871                                                                                                                                                                                                            Crossing yard while escorting inmates. Was stung by bee
## 16872                                                                                          Crouched down to meet & stop a child from running down the hallway, child ran into me with full weight, stopped him & turned him in direction of room, twisted lower back
## 16873                                                                                                                                                                  Crowd shoved her against a fence while she was attempting crowd control injuring her rt. Shoulder
## 16874                                                                                                                                                                                                 Crushed fingertips when leaning on a perch in the eagle exhibit ()
## 16875                                                                                                                                                                       Crushed left shoulder/cracked left knee cap/ fracture humerus-broximal open wound/concussion
## 16876                                                                                                                                                                     Crushed right small finger while working with wood splitter at boston heights fire department.
## 16877                                                                                                                                                                                                               Crushing can and lid of can cut right ring finger ()
## 16878                                                                                                                                                                               Crutch hit some water that was on the floor in therestroom; EE lost balance and fell
## 16879                                                                                                                                                                                                                                       Crystal turned a resident ()
## 16880                                                                                                                                                                                            Cts due to repetitive motion of typing and mouse usage-left/right hands
## 16881                                                                                                                                                                                                                      Cts from repetitive use of hand, opening meds
## 16882                                                                                                                                                                                                 Cts in both hands as the result of clerical work for twenty years.
## 16883                                                                                                                                                                                                                                      Cts in both wrists and hands.
## 16884                                                                                                                                                                                                                                               Cts rt hand and arm.
## 16885                                                                                                                                                                                                                                                 Cts to both wrists
## 16886                                                                                                                 Cts was aggraved by keyboard use while typing during assignment to beacon project. Lt & rt handswrist/forearms. EE informed osp when hired of cts.
## 16887                                                                                                                                                                                                                   Cubicle wall fell and hit EE on the right wrist.
## 16888                                                                                                                                                                                                            Cuffing an inmate and cut his rt pinky finger and wrist
## 16889                                                                                                                                                                                                      Cuffing inmate during use of force and hit his hand on shield
## 16890                                                                                                                                                                                    Cuffing inmate, inmate pulled the cuff back into the cell and cut EE right hand
## 16891                                                                                                                                                                                            Cummings hit the rear end of another vehicle, causing air bag to deploy
## 16892                                                                                                                                                                                                              Cummulative - cts - reoccuring - first report in 2001
## 16893                                                                                                                                                                                                                            Cummulative effect from years of typing
## 16894                                                                                                                                                               Cumulative drama sitting at computer station sincefeb. 15, 1995. Pain & numbness both hand & wrists.
## 16895                                             Cumulative effort of typing; first notice of symptoms in 3/2009; dealt with pain until 1/25/10 when she went to the doctor; doctor diagnosed pain and numbness in fingers as carpal tunnel; currently being treated ()
## 16896                                                                                                                                              Cumulative injury, continual pain upon typing, handwriting, using computer mouse, gripping telephone or other objects
## 16897                                                                                                                                                      Cumulative pain in shoulder/wrist from repetitive computer work and loss grip strength in right handmultiple.
## 16898                                                                                                                                                                                                                       Cumulative trauma due to design of work area
## 16899                                                                                                                                            Cumulative, repetitive, work-related activities such as typing, computer work, and collating over the last 15+ years ()
## 16900                                                                                                                                                                    Cup of brown liquid thrown on one officer and it splashed onto EE left arm, hand and both legs.
## 16901                                                                                                                                                                                                   Currently using trutouch vinyl gloves and soap provided on wards
## 16902                                                                                                                                            Cushman began steering irratic and threw EE from vehicle and rolled down a steep incline injuring left knee/hip and arm
## 16903                                                                                                                                                                                                Cushman turned over, hit tree, broken glass. Cut left index finger.
## 16904                                                                                                                                                                       Custodial staff was mopping the floor; EE turned corner on way to restroom, slipped and fell
## 16905                                                                                               Customer dumped toner inside of the copier machine, and EE was trying to clean it out by using canned air while doing so toner particles blew back into his face. ()
## 16906                                                                                                                                             Customer ran into light pole in parking lot. Employee was admministerings a road test when he felt pain in his back. (
## 16907          Customer was performing the 3pt turn, when backing up a taxi approaching from the other direction caused driver to panic. Customer pressed the gas instead of the brakes and crashed into a pole. Employee list injury as: cervical sprain of the neck ()
## 16908                                                                                                                                                                                                                Cut 2nd finger on left hand, after opening #10 can.
## 16909                                                                                                                                                                                                                                              Cut finger - van door
## 16910                                                                                                                                                     Cut finger and left hand on glass from motor vehicle side glass windows when extracting subject from a vehicle
## 16911                                                                                                                                                                                                                                              Cut finger on cabinet
## 16912                                                                                                                                                                                                              Cut finger on edge of metal while trying to open lock
## 16913                                                                                                                                                                                                             Cut finger on exposed razor blade on floor of truck ()
## 16914                                                                                                                                                                                                                Cut finger on left hand while moving waste lines ()
## 16915                                                                                                                                                                                                                 Cut finger on piece of metal on wreck while diving
## 16916                                                                                                                                                                                                                                           Cut finger on right hand
## 16917                                                                                                                                                                                                                    Cut finger on right hand while cleaning a knife
## 16918                                                                                                                                      Cut finger on rusty metal while putting up a shooting target during firearms training. Cut to distal end of left ring finger.
## 16919                                                                                                                                                                                                                                              Cut finger right hand
## 16920                                                                                                                                                                                                         Cut finger when breaking up a fight with two juveniles. ()
## 16921                                                                                                                                                                                                                 Cut finger while slicing bread. Lt pointer finger.
## 16922                                                                                                                                                       Cut finger while teaching farmer how to castreate a calf, calf jerked suddenely and scaple stuck into finger
## 16923                                                                                                                                                                                                           Cut finger while trying to cut dick tape off a key ring.
## 16924                                                                                                                                                                                                                          Cut finger while using razor to open box.
## 16925                                                                                                                                                                                   Cut finger while working on electronic equipment. Laceration right index finger.
## 16926                                                                                                                                                                                           Cut finger with exacto knife while cutting out labels -left index finger
## 16927                                                                                                                                                                                                            Cut finger with razor while cutting open a 5 gal bucket
## 16928                                                                                                                                                                                                             Cut finger with scissors while breaking down a box. ()
## 16929                                                                                                                                                                                  Cut fingers on hand cuffs and scraped elbow against wall controlling an inmate ()
## 16930                                                                                                                                                                                                              Cut fingers on left hand while opening box of tinfoil
## 16931                                                                                                                                                                                                                      Cut fingers on left hand with a circular saw.
## 16932                                                                                                                                                                                                             Cut fingers with scissors while opening calculatortape
## 16933                                                                                                                                                                                                Cut forearm on cable basket at jobsite during jobsite inspection ()
## 16934                                                                                                                                                                                                            Cut gash in left hand while cutting cables with a knife
## 16935                                                                                                                                                                                                                                       Cut hand on a piece of steel
## 16936                                                                                                                                                                                           Cut hand on piece of glass as he was pushing glass cabinet. Left hand ()
## 16937                                                                                                                                                                                                                                  Cut hand while sectioning tissues
## 16938                                                                                                                                                                      Cut hand with razor blade while cutting off inspection sticker off of windshield on c 440 car
## 16939                                                                                                                                                                                            Cut her arm on a surgical instrument when walking near them. Cut rt arm
## 16940                                                                                                                                                                                                             Cut her finger when she was throwing away scrap metal.
## 16941                                                                                                                                                                                                               Cut her finger while using razor blade to cut tubing
## 16942                                                                                                                                                                                                                  Cut himself while paring a callus in inmate foot.
## 16943                                                                                                                                                                                                                                      Cut his finger on wire screen
## 16944                                                                                                                                                                                                                             Cut his finger while cutting a sign ()
## 16945                                                                                                                                                                                                 Cut his right middle finger while working above the lay in ceiling
## 16946                                                                                                                                                                                                                       Cut index finger on jagged edge of table. ()
## 16947                                                                                                                                                                                                                   Cut index right index finger on medication cart.
## 16948                                                                                                                                                                                  Cut knuckle above r pointer finger on the teamakerwhen changing out the tea bags.
## 16949                                                                                                                                                                                                         Cut l. Middle knuckle on sharp object in biohazard bag. ()
## 16950                                                                                                                                                                                                     Cut l. Ring finger on used razor when picked up to discard. ()
## 16951                                                                                                                                                                                                                                Cut left 2nd finger when unpacking.
## 16952                                                                                                                                                                                                            Cut left 5th finger with knife while cutting a coconut.
## 16953                                                                                                                                                                                                                                 Cut left finger index on handcuffs
## 16954                                                                                                                                                                                                               Cut left finger on clasp on back of manilla envelope
## 16955                                                                                                                                                                                                                      Cut left hand while preparing tissue samples.
## 16956                                                                                                                                                                                   Cut left hand while slicing frozen bait w/knife. Bait was used for sampling gear
## 16957                                                                                                                                                                                                                          Cut left index finger moving picnic table
## 16958                                                                                                                                                                                                                       Cut left index finger on divider when filing
## 16959                                                                                                                                                                                                                           Cut left index finger on file cabinet ()
## 16960                                                                                                                                                                                                                    Cut left index finger opening a can of peaches.
## 16961                                                                                                                                                                                      Cut left index finger when removing lodged bowl from back of dish machine. ()
## 16962                                                                                                                                                                                                                  Cut left index finger while changing dryer filter
## 16963                                                                                                                                                                                               Cut left index finger with exacto knife while cutting roll paper. ()
## 16964                                                                                                                                                                                                                                     Cut left middle finger on a ()
## 16965                                                                                                            Cut left middle finger while positioning a door frame into position. Frame slipped and caught finger between door frame and end of metal stud plate. ()
## 16966                                                                                                                                                  Cut left pinky finger on picture in hallway while attempting to stop individual from running down the hallway. ()
## 16967                                                                                                                                                                                                                     Cut left pointing finger while process food ()
## 16968                                                                                                                                                                                                                       Cut left shin on exposed metal duct work. ()
## 16969                                                                                                                                                                                                                                             Cut left thumb on desk
## 16970                                                                                                                                                     Cut left thumb w/razor while trimming plastic scraper prior to harvesting cells from tissue culture experiment
## 16971                                                                                                                                                                                                     Cut left thumb while cutting plastic tubing with utility knife
## 16972                                                                                                                                                                                                       Cut left thumb while trimming exhibit work with exacto knife
## 16973                                                                                                                                                                                                   Cut left thumb with kitchen knife while preparing animal's food.
## 16974                                                                                                                                                                                                                                  Cut left thumb with pocket knife.
## 16975                                                                                                                                                                                                                                          Cut left thumb with razor
## 16976                                                                                                                                                                              Cut left thumb with saber saw working with a narrow space on an exhibit component, ()
## 16977                                                                                                                                                                                            Cut left thumb, with scissors, while cutting papers furing ral activity
## 16978                                                                                                                                                                                                                                             Cut leg on rusty metal
## 16979                                                                                                                                                                                                           Cut lft thumb when removing wheelchair from truck of car
## 16980                                                                                                                                                                                                                 Cut lt hand index finger while using hedge trimmer
## 16981                                                                                                                                                                                                             Cut lt ring finger sore upper back area and lower back
## 16982                                                                                                                                                Cut metal banding from lumber. Metal sprang back & hit his left arm cutting it about half way between wrist & elbow
## 16983                                                                                                                                                                                  Cut middle finger l hand as I was taking hand out of neck area on broken blade ()
## 16984                                                                                                                                                                                        Cut middle finger of left hand while placing razor wire at top of fence. ()
## 16985                                                                                                                                                      Cut middle finger while sectioning paraffin block using rotary microtome. Forgot to engage locking mechanism.
## 16986                                                                                                                                                                                                                         Cut on end of finger (middle) on left hand
## 16987                                                                                                                                                                                        Cut on left arm by razor ribbon while taking down razor ribbon off fence ()
## 16988                                                                                                                Cut on left finger when trimming out signs; xacto knife jumped sign edge & cut left finger which washolding sign down, out of blade's intended path
## 16989                                                                                                                                                                                                        Cut on left forearm by I/m while reaching through trap door
## 16990                                                                                                                                                                  Cut on left hand by disruptive inmate kicking while c/o attempting to remove personal property ()
## 16991                                                                                                                                                                                                                                                  Cut on left thumb
## 16992                                                                                                                                                                                                    Cut on lt forearm with object by I/m while taking up meal trays
## 16993                                                                                                                                                                       Cut on rt hand & scraped rt knee, loss balance & fell on sidewalk. Ok now, no lasting injury
## 16994                                                                                                                                                                                                        Cut palm of lt hand with of a pair of scissors. Laceration.
## 16995                                                                                                                                                                                Cut r. Index finger with scissors while working on a craft project with patient. ()
## 16996                                                                                                                                                                                                         Cut r. Middle finger on scrapper on side of mop bucket. ()
## 16997                                                                                                                                                                                 Cut r. Ring finger when discarding resident's used razor into sharps container. ()
## 16998                                                                                                                                                                                                                          Cut right fingers removing scalpel blade.
## 16999                                                                                                                                                                                                               Cut right forearm on metal ceiling tile hanger- 2 ()
## 17000                                                                                                                                         Cut right index finger on door lock while putting inmate back into cell. Both inmate and officer fell against the door. ()
## 17001                                                                                                                                                                                                     Cut right index finger on inside wire of lid on charcoal kiln.
## 17002                                                                                                                                                                                                                           Cut right index finger on sheet metal ()
## 17003                                                                                                                                                                                                         Cut right index finger with knife during instructional lab
## 17004                                                                                                                                                                                                  Cut right middle finger on sharp sheet metal edge on unit housing
## 17005                                                                                                                                                                                                                                    Cut right thumb in meat slicer.
## 17006                                                                                                                                                                                                   Cut right thumb on broken glass in dishtub while clearing tables
## 17007                                                                                                                                                                                                 Cut right thumb while twisting together metal center of pool stick
## 17008                                                                                                                                                                                                                  Cut right thumb with knife while cutting zip ties
## 17009                                                                                                                                                                                                                                                Cut rt ring finger.
## 17010                                                                                                                                                                                            Cut through piece of tape, hit left index finger. Cut left index finger
## 17011                                                                                                                                Cut thumb by scalpel while doing placement of percutaneous endoscopic gastostomy in patient. Scalpel contaminated by patients blood
## 17012                                                                                                                                                                                                                 Cut thumb on jagged edge of light bulb that broke.
## 17013                                                                                                                                                                    Cut thumb when removing cable tie from wireless computer bridge antenna ground wire with knife.
## 17014                                                                                                                                                                                    Cut tip of left 2nd finger when attempting to put razor in sharps container. ()
## 17015                                                                                                                                                                                                                 Cut tip of left index finger with prunning tool ()
## 17016                                                                                                                                                                                                Cut to left pinky finger while examing wall mounted exhaust fan. ()
## 17017                                                                                                                                                                                                                                        Cut top of hand on tool box
## 17018                                                                                                                                                                                           Cut top of her left hand when getting cans out from under coffee counter
## 17019                                                                                                                                                  Cut with knife during kitchen preparation. Chef instructor working with students to prepare food for an event. ()
## 17020                                                                                                                                                                                                                                   Cut with scapel- during autopsy.
## 17021                                                                                                                                                                   Cut wrist while working on tennart floor scrubber while testing a electric motor, wrist was cut.
## 17022                                                                                                                                                                                                                                  Cut/punctured right thumb at nail
## 17023                                                                                                                                        Cutaneous numbness occured after a period of time from Dec 04-Feb 05 but has not resovled and worsens when doing microscopy
## 17024                                                                                                                                                                                                Cutaneous numbness occured over a period of time from 12/04 to 2/05
## 17025                                                                                                                                                                                                                                Cuter slipped and cut EE on l thumb
## 17026                                                                                                                                                                                                                                        Cuting tress out of highway
## 17027                                                                                                                                                                                                                                                     Cutitng rubber
## 17028                                                                                                                                                                                      Cutting & scoring table tents, using exacto knife hand slipped while trimming
## 17029                                                                                                                                        Cutting a lock off inmates locker with bolt cutters and while pressing down cutters snapped down and hit me in the face. ()
## 17030                                                                                                                                                  Cutting a piece of metal when a silver of metal came in contact with his right eye, EE was wearing safety glasses
## 17031                                                                                                                                                                       Cutting a piece of trashcan with knife went in fast as cutting it an hit me in the wrist. ()
## 17032                                                                                                                                   Cutting a piece of wood 0n the band saw. Lt hand slipped and hit the blade of the band saw cutting middle finger and top of hand
## 17033                                                                                                                                                                              Cutting a top (plastic) with a kitchen knife, knife slipped off top and cut EE's hand
## 17034                                                                                                                                                                                             Cutting a zip tie with a knife and knife punctured the left forearm ()
## 17035                                                                                                                                Cutting an animal skull w/ an autopsy saw when EE felt like something cold and wet splashed into his lt eye. Wearing eye protection
## 17036                                                                                                                                                                                                     Cutting and pulling tree limbs from power lines after hurrican
## 17037                                                                                                                                                          Cutting apples for children snacks, had on gloves, knife slipped and EE cut finger. Laceration left thumb
## 17038                                                                                                                                                                                          Cutting band on lumber rack releasing particles that entered the left eye
## 17039                                                                                                                                                                                      Cutting bill of cost forms to size, sliced side index finger on left hand off
## 17040                                                                                                                                                                                         Cutting board and saw slipped. Laceration to lt thumb required 4 stitches.
## 17041                                                                                                                                                                                                            Cutting brush along side of building & was stung by bee
## 17042                                                                                                                                                                                                      Cutting buckeye, over extended and cut lt thumb with scissors
## 17043                                                                                                                                                    Cutting burned edges off money pouch to salvage for client, scissors slipped and cut end of left 2nd finger. ()
## 17044                                                                                                                                                                                                                        Cutting cabbage and cut tip of right thumb.
## 17045                                                                                                                                                                                                     Cutting cantaloupe for lunch when knife slipped cut left thumb
## 17046                                                                                                                                                                                     Cutting cardstock out light table using square knife. Knife slipped off square
## 17047                                                                                                                                                                                            Cutting copper line sawzall kicked back punctured left wrist 2 cuts. ()
## 17048                                                                                                                                                                                            Cutting down a tree during state duty & wood chip struck him in the eye
## 17049                                                                                                                                                                           Cutting down log, log dropped and landed on end and flipped onto foot. Fracture left toe
## 17050                                                                                                                                                                                                   Cutting down trees and did not notice poison oak which was there
## 17051                                                                                                                                                                                          Cutting edges of her planner with scissors, cut lt pointer finger knuckle
## 17052                                                                                                                                                                              Cutting electrical tape off cable, knife slipped cut left hand/thumb. 1 stitch needed
## 17053                                                                                                                                                                             Cutting fish for aging, grabbed spine of the fish and it went into hand through glove.
## 17054                                                                                                                                                                                                           Cutting gill net knife in pocket bend & knife struck arm
## 17055                                                                                                                                                                                        Cutting grass and debris flew back in face, safetyglasses where being worn.
## 17056                                                                                                                                                                                                                         Cutting grass and grass landed on face. ()
## 17057                                                                                                                                                                                                                   Cutting grass and wind blew debris into left eye
## 17058                                                                                                                                                                                                         Cutting grass around shrubs and received tick bite to neck
## 17059                                                                                                                                                                      Cutting grass at barbee hall when rear tractor struck drainage ditch causing pain in low back
## 17060                                                                                                                                       Cutting grass on a stand-up/stand-behind lawn mower on an inclinded/uneven surface, hit a bump throwing employee from mower.
## 17061                                                                                                                                                                                                                   Cutting grass on hill, mower tractor rolled over
## 17062                                                                                                                                                                                                                  Cutting grass push mower -moving heavy objects ()
## 17063                                                                                                                                                                                                          Cutting grass when finished employee noticed bumbson skin
## 17064                                                                                                                                                                                                                       Cutting head off mouse. Cut rt index finger.
## 17065                                                                                                                                                                                                                      Cutting hole in ceiling, debris got in eye ()
## 17066                                                                                                                                                                           Cutting hole in ceiling-debris from ceiling fell into l. Eye (wearing safety glasses) ()
## 17067                                                                                                                                                                                                               Cutting honey bun for client. Cut thumb on left hand
## 17068                                                                                                                                  Cutting iece of wood on table saw. Pulled guide stick out, piece of wood hit EE on left hand, EE reacted & twisted or pulled back
## 17069                                                                                                                                             Cutting in wall. Tried to keep a piece of metal from falling. Reached with left arm and felt pain in left shoulder. ()
## 17070                                                                                                                                                                                         Cutting insulation on roof of bookstore w/knife knife slipped cutting hand
## 17071                                                                                                             Cutting kydex (door protector material) with a square and box cutter knife snagged on square came across and hit thumb and cut front side of thumb. ()
## 17072                                                                                                                                                                                                                       Cutting lettuce when cut down on right thumb
## 17073                                                                                                                                                                                          Cutting limb with pole saw, limb slid and struck right hand-wrist area ()
## 17074                                                                                                                                                                                                      Cutting limbs & sawdust got in eyes osver glasses. Right eye.
## 17075                                                                                                                                                                                                                         Cutting limbs and debris flew in right eye
## 17076                                                                                                                                                                      Cutting limbs from trees and a backhoe truck a tree limb causing it to hit tim on the head ()
## 17077                                                                                                                     Cutting limbs off tree stacking on pickup truck tohaul away when spider bit him. After getting home discovered bite on lower stomach. Reported
## 17078                                                                                                                                                                                                                                  Cutting limbs. Something hit eye.
## 17079                                                                                                                                                                                                             Cutting lumber band when it got loose and hit his knee
## 17080                                                                                                                                                                                Cutting lumber bands; when pulled down, the band popped back and cut top of rt hand
## 17081                                                                                                                                                                Cutting lumber, sliver of wood passed under safetyglasses into EE's left eye scratching the cornea.
## 17082                                                                                                                                                                                                     Cutting machinery off and door to machine fell onto right foot
## 17083                                                                                                                                                                                                                  Cutting masonry with diamond saw. Metal in eye ()
## 17084                                                                                                                                                          Cutting metal band off stack of timber when band was cut timber shifted and fell. Fell on EE's left foot.
## 17085                                                                                                                                                                                  Cutting metal strapping & it popped striking EE on right thumb causing laceration
## 17086                                                                                                                                                                                        Cutting metal studs with snips, hand slipped off handle and cut rt thumb ()
## 17087                                                                                                                                                                                 Cutting molding. Finger struck blade cutting his ring & little finger on left hand
## 17088                                                                                                                                                                Cutting notch out of a dead oak tree, wood chip flew up, bounced off of face and went into left eye
## 17089                                                                                                                                                                                                Cutting of plastic box w/cutter when piece of plastic flew into eye
## 17090                                                                                                                                              Cutting off water supply to water fountain in hallway when hand hit the fan 3 stitches on rightmiddle and ring finger
## 17091                                                                                                                                                                                                                        Cutting onions & cut end of left 3rd finger
## 17092                                                                                                                                                                                                  Cutting onions and knife slipped cutting pad of left pinky finger
## 17093                                                                                                                                                                                     Cutting open an evelope with knife knife slipped cutting EE on rt index finger
## 17094                                                                                                                                             Cutting open box, knife slipped and cut her finger. This caused her to jerk away and now she is having back spasms. ()
## 17095                                                                                                                                                                                                                           Cutting open cat head and scraped finger
## 17096                                                                                                    Cutting overgrown vegetation with a pole saw on state road 1001 ferrells bridge road when, he was stung by yellow jackets/wasps. List injuries as: right hip ()
## 17097                                                                                                                             Cutting paper and a piece fell on floor, I bent down to pick it up and swung around grazing my right hand/ring finger on the blade. ()
## 17098                                                                                                                                                                   Cutting paper on table using metal straight edge & razor. Razor slipped and lacerated left thumb
## 17099                                                                                                                                                                                                                  Cutting paper w/carpet knife. Cut left hand thumb
## 17100                                                                                                                                                                                                                           Cutting paper w/paper cutter & cut thumb
## 17101                                                                                                                                                     Cutting paper w/right hand when went to look down at paper. Scissors scratched above right eye in eyebrow area
## 17102                                                                                                                                                                                        Cutting paraffin blocks without stopping for 6 + hours repetitive motion ()
## 17103                                                                                                                                                                                     Cutting part on milling machine, hot metal chip flew off into edge of left eye
## 17104                                                                                                                                                                                                 Cutting patches off old uniforms, hand slipped & cut left thumb ()
## 17105                                                                                                                                                                                                                              Cutting patches on old state uniforms
## 17106                                                                                                                                                                                                            Cutting piece of line for his weed eater cut his finger
## 17107                                                                                                                                              Cutting piece of metal when cutting torch had piece of melted metal blow back from tip of torch & went into right eye
## 17108                                                                                                                                                                                                                            Cutting pipe, knife slipped cut hand ()
## 17109                                                                                                                                      Cutting pipe, stepped on small piece of pipe onfloor, foot slipped out from under EE (did not fall), pulled something in back
## 17110                                                                                                                                                                                                               Cutting plaster to put on floor. Imjured lft finger.
## 17111                                                                                                                             Cutting plastic rims off tops of 3 litter bottles. Knife in rihgt hand slipped off of rim & laceratedthumb of left hand holding bottle
## 17112                                                                                                                                                                                        Cutting plastic splint with carving knife-knife slipped and cut left thumb.
## 17113                                                                                                                                                                                    Cutting plastic tie from telephone lines when knife blade cut palm of left hand
## 17114                                                                                                                                                                           Cutting posterboard for display. Knife slipped andsevere laceration to left index finger
## 17115                                                                                                                                                                                                       Cutting price tag off of item. Knife slipped & cutleft thumb
## 17116                                                                                                                                                                                         Cutting rags with utility knife. Employee lacerated his r index finger. ()
## 17117                                                                                                                                                         Cutting right of way on mcdowell rd. Was reaching to catch bus keys when caught his left leg on guard rail
## 17118                                                                                                                                 Cutting right of way w/bush axe. Tree started falling & EE ran under tree. Tree fell on EE fracturing & dislocating his left ankle
## 17119                                                                                                                                                                    Cutting sewer line with saw, wast water & metal savings while cutting stroke face & left eye ()
## 17120                                                                                                                                                             Cutting sheek back-blade hit wook block & popped blade out of wall hitting left index fing-cut to bone
## 17121                                                                                                                                                                                                        Cutting shrinking wrap to be put on boxes & cut rt thumb ()
## 17122                                                                                                                                                                                                    Cutting shrub with torms and thorn hit him in the left calf. ()
## 17123                                                                                                                                                                                                                          Cutting sign. Tool slipped and cut finger
## 17124                                                                                                                                                                      Cutting small trees & shrubs with chainsaw & he slipped & struck left side against culvert ()
## 17125                                                                                                                                                                                                        Cutting some wire & wire cut EE finger. Left middle finger.
## 17126                                                                                                                                                                                    Cutting steel wire at a traffic collision scene, felt slight pull in groin area
## 17127                                                                                                                                                                                                            Cutting step thread, knife slipped cutting EE lefthand.
## 17128                                                                                                                                                                                                          Cutting styro foam board and piece got into his right eye
## 17129                                                                                  Cutting the road using a pavement saw & another employee was cutting a tree when a limb from the tree fell & pinched Mr. Gray's left ring finger against the handle of the saw ()
## 17130                                                                                                                                                                                                  Cutting thru a door with saws all, hand slipped & EE was pinched.
## 17131                                                                                                                                                                                       Cutting tile with utility knife, the knife slipped and cut his left hand. ()
## 17132                                                                                                                                                                                                Cutting toenails of inmates with dremmell tool per doc training. ()
## 17133                                                                                                                                                                                                                    Cutting tomatoes for salad and cut r. Thumb. ()
## 17134                                                                                                                                                                                       Cutting top of boxes, box fell & when tried to catch box, blade cut left arm
## 17135                                                                                                                                                                  Cutting tree limbs in support of hurricane fram chain saw blade kicked & cut right leg above knee
## 17136                                                                                                                                                                                                                             Cutting tree limbs with pruning sheers
## 17137                     Cutting trees on state road 1140; pulling trees out underneath with a chain hooked to a trackhoe on one of the trees, the chain came undone, tree started toward jeff, and he blocked tree with his hand, therefore, jammed his left wrist. ()
## 17138                                                                                                                                                         Cutting up cabbage and cut a piece off side of left index finger with knife. Laceration left index finger.
## 17139                                                                                                                                             Cutting water off to cell and inmate gassed right side of face with an unknown liquid that struck my eyes and face. ()
## 17140                                                                                                                                                                                    Cutting weeds. Dismissed suggestion to put on protection from the poison weeds.
## 17141                                                                                                                                                                                  Cutting wood and chain saw kicked back grazing leg. Minor laceration to left knee
## 17142                                                                                                                                                                                                                               Cutting wood and piece got in eye ()
## 17143                                                                                                                                                                                             Cutting wood on table saw when wood kicked back onsaw & cut left thumb
## 17144                                                                                                                                                                                                            Cutting yarn scissors slipped, cut right little finger.
## 17145                                                                                                                                               Cutting zip tie with pocket knife. When the zip tie cut through cut right hand in between thumb and index finger. ()
## 17146                                                                                                                       Cyst dev approx 10 yrs ago; cyst gotton larger, approx 3-4 times larger; believe cause is due to keyboard typing. Back of r hand near wrist.
## 17147                                                                                                                                                                                          Daily cleaning sweeping mopping taken out trash cleaning hand towel bowls
## 17148                                                                                                                        Daily computer input, heavy writing, answering phones, holding documents in hand while micro- filming, filing-pain in rt neck, elbow, wrist
## 17149                                                                                                                            Daily computer key-entry. Pain is in shoulder downto the her fingers in her right arm. Numbness in fingers. Mi. Referral to pt & ortho.
## 17150                                                                                                                                                                                                           Daily data entry over long period of time caused injury.
## 17151                                                                                                                                                                                        Daily duties - pain in wrist of rt hand and arm run into shoulder and neck.
## 17152                                                                                                                                                                                                                                                   Daily job duties
## 17153                                                                                                                                                                                                                                             Daily key board entry.
## 17154                                                                                                                                      Daily repetitive turning actions of wrist caused by hand tools use in repair and installing two way radios. Cts in both wrist
## 17155                                                                                                                                             Daily usage of equipment, over long period of timeprobably caused injury. Pain & numbnes in both shoulders/arms/hands.
## 17156                                                                                                                                                                                                                       Daily use of computer keyboard and mouse. ()
## 17157                                                                                                                                                                                                                     Daily use of computer. Upper back and neck. ()
## 17158                                                                                                                                                                                Daily use of mouse on computer has cause pain in middle and ring finger of rt hand.
## 17159                                                                                                                                                                                                                               Daily work done on computer keyboard
## 17160                                                                                                                                                                                                                                Daily work. Both wrists and thumbs.
## 17161                                                                                                                                     Damp enclosed office space while performing dutiesair conditioning unit used as temperatures increased all leading to illness.
## 17162                                                                                                                                                                                                                                      Dancing around, fell on floor
## 17163                                                                                                                                                                                   Dancing with client in dayroom, felt as if some- thing was pulled in right knee.
## 17164                                                                   Daniel blakemore was talking with a visitor in the stamp mill building, turned his ankle on a rock and fell. The visitor assisted him back up. After a short while, the ankle began to swell. ()
## 17165                                                                                                                                                          Darrell walked out the door in front of the shop and slipped on the ice build up in front of the door. ()
## 17166                                                                                                                                                                                            Data entry - repetition of screwing and unscrewinglids on specimen cups
## 17167                                                                                                                                                                          Data entry and keyboarding during normal job duties has caused pain in rt hand and wrist.
## 17168                                                                                                                                                                                         Data entry and typing resulting in carpal tunnel/repetitive motion rt hand
## 17169                                                                                                                                                                                                                             Data entry everyday aggrevated her cts
## 17170                                                                                                                                                                           Data entry of information into computer system- pain in rt & left hands, wrist, fingers.
## 17171                                                                                                                                                                                                                                         Data entry. Injured wrist.
## 17172                                                                                                                                                                                                            Data entry.. Right shoulder pain, numbness in righthand
## 17173                                                                                                                                                                                                 Date entry activities causing pain in wrist, arm and elbow for EE.
## 17174                                                                                                                                                                    David lennon was driving and did not slow down going over speed bump causing EE's neck to jerk.
## 17175                                                                David was sandblasting curb and gutter in ashley woods subdivision when, the sandblasting material got into his eye. David was wearing all of the required safety materials. List injury as: eye ()
## 17176                                                                                                                                                                             David was stepping into a doorway with heavy box and tripped which made his body twist
## 17177                                                                                                                                 Davie hall undergoing asbestos abatement, smell, etc-has caused sore throat-nausea-diarrhea-taste of bleach-headaches-burning eyes
## 17178                                                                                                                                                                                   Day after crdt training, felt like he had pulled muscle in lower calf on rt leg.
## 17179                                                                                                                                                        De-accessing port-a-cath, safety device on needle failed to employ & was stuck with needle. Lt indexfinger.
## 17180                                                                                                                                               Dead limb fell from tree striking employees shoulder; causing a deep scratch. Employee refused medical treatment. ()
## 17181                                                                                                                                                                        Deadline oriented with constant use of computer inorder to meet deadlines-left arm and hand
## 17182                                                                                                                               Dealing with aggressive resident and injured wristwhile moving chair out of the way. **do not call - iw has obtained legal counsel**
## 17183                                                                                                                         Dean was lifting a box in the usps section, felta pull in his rt wrist, his rt wrist is swollen & the pain radiating up to his rt shoulder
## 17184                                                                                                               Dean was trying to get the attention of EE with back pack blower on. EE backed up, dean put up his had to keep EE from backing into him/burn to hand
## 17185        Deb tripped over a floor mat being used for cpr training class. As she fell her left forearm hit a table. She then fell to the floor hitting the inside of her right knee. She had bruises on her right knee and left forearm and her left shoulder is sore
## 17186                                                                                                                                   Debilitating anxiety and depression resulting in low energy, sleep difficulties, poor consentrationdaily crying, rapid wgt loss.
## 17187                                                                                                                                                                                                   Debilitating stress associated with supervisor/ work environment
## 17188                                                                                                  Deborah was using the bleach on friday and her head started hurting. She mopped all of the floors in horton and wiped half of the railing in bleach. Respiratory.
## 17189                                                                                                                              Debra was leaving work, tripped on a wooden chip in the parking lot, and fell. She injured her rt hand, rt ankle, rt knee & chest. ()
## 17190                                                                                                                                                                                                                     Debris blew in eye while hanging wall pack. ()
## 17191                                                                                                                                                                                         Debris blew into eye as riding on forklift toward warehouse on a windy day
## 17192                                                                                                                                                                                                          Debris fell in employees eyes when removing ceiling tiles
## 17193                                                                                                                                                                                                           Debris fell into EE's left eye while closing roof hatch.
## 17194                                                                                                                                                                                                                            Debris flew hit EE under eye on eye lid
## 17195                                                                                                                                                                                      Debris from door entrance being enlarges fell intoeye causing cornea abrasion
## 17196                                                                                                                                                                                                                            Debris from ladder fell in right eye ()
## 17197                                                                                                                                                                                                   Debris from weed eating machine went into eyes while weed-eating
## 17198                                                                                                                                                                                                         Debris got blown into EE's eye when helicopter waslanding.
## 17199                                                                                                                                                                                 Debris got caught under rt eyelid. Tried to flush out before going to urgent care.
## 17200                                                                                                                                                                                                                        Debris got into eye causing eye irritation.
## 17201                                                                                                                                                                                         Debris got into left eye while weed eating causing swelling and redness ()
## 17202                                                                                                                                                                                                                          Debris puncture the calf of EE's left leg
## 17203                                                                                                                                                              Deceased employee's representative claims Mr. Lander developed asbestosis while employed with agency.
## 17204                                                                                                                     Decedent died in airplane crash participating in an. C. Wing-civil air patrol drug eradication mission in conjunction with chowan sheriff dept
## 17205                                                                                                                                        Decedent infected with mycobarterium tuberculosis )pulmonary) unbeknownst to ocme. Autopsy examination of said decedent. ()
## 17206     Decedent was working at the national undersea research center in key largo, fl as a scientific diving specialist for the university of nc wilmington. He was working to set up a concrete structure when his breathing apparatus malfunctioned, he drowned. ()
## 17207                                                                                                            Decontaminating student who had been exposed to pepper spray. Student shook his head & slung mucus/saliva onto EE's face from the corner of the EE's mo
## 17208                                                                                                                                                                                Decsending ladder when ladder moved away employee fell striking right hand on table
## 17209                                                                                                                               Deep scrubbing bathroom. As EE was coming out of door, slipped down and fell and hit back on bathroom step down. Lt arm hit the wall
## 17210                                                                                                                     Deer obstructed driver's side of car. EE had glassin hair. Left pinky finger cut. Severe muscle achein back & neck. Hit head on steering wheel
## 17211                                                                                                                                                                     Deer ran into car as driving on property causing pain on left side - neck down thru left hand.
## 17212                                                                                                                              Deer ran out in front of car while making curfew checks. Swerved to Miss Deer but hit deer, lost control of car, when into a ditch ..
## 17213                                                                                                                                                                                     Deer tick bites during field research in virginia. Employee continued to work.
## 17214                                                                                                                                                          Defective tube containing pherol cracked and contents spilled during performing pherol choroforextraction
## 17215                                                                                                                                                                                                                     Defendant bite officer on upper back left arm.
## 17216                                                                                                                                                                                     Defendant came in w/note from health dept stating was under obervation for TB.
## 17217                                                                                                                                                                             Defendant pushed employee out of the way with both hand, pushing back against the wall
## 17218                                                                                                                                                                  Defendant resisted arrest and situation turned into a serious altercation, EE injuried lower back
## 17219                                                                                                                                                                                          Defendent attempted to resist arrest and pushed employee to the ground ()
## 17220                                                                                                                                                                                                                    Defensive training practice, lower back injury.
## 17221                                                                                                                                 Deferred prosecution review day--taking files back to office from court. Fell forward on ramp outside courtroom. Foot bent into ()
## 17222                                                                                                                                                                                                                Degenerative disk disease caused by clerical duties
## 17223                                                                                                                                      Delete as duplciate - another patient approached staff who was doing 1:1 with a patient and punched her in the stmach x 3. ()
## 17224                                                                                                                   Delete as not state employee- county paid. EE was lifting, moving, and stacking boxes of ceiling tiles when he felt strain in his left shoulder.
## 17225                                                                                                                                                                                              Delievering paperwork to master control and tripped over push cart ()
## 17226                                                                                                                                                                  Delivering books in golf cart. Golf cart flipped going down hill. Left elbow, right hand cuts. ()
## 17227                                                                                                                            Delivering client equipment, minivan pulled out ofside street into path, hit brakes & hit the vehicleon driver's side, air bag deployed
## 17228                                                                                                                          Delivering equipment to college, EE was hit by a truck that made a left turn in front of her. Resulted in employee having a sore neck. ()
## 17229                                                                                                                                                                  Delivering eye pathology slides to dept when he slipped on a wet floor in lobby of main hospital.
## 17230                                                                                                                                                                                             Delivering food carts, one falling off truck, EE reached to grab it ()
## 17231                                                                                                                                                       Delivering food to the kitchens. Picked up a box off the truck floor onto a cart and pulled lower extremity.
## 17232                                                                                                                                                                                     Delivering food trays to residential unit-resident punched employee in back ()
## 17233                                                                                                                                                   Delivering items in clinic, EE went around corner, tried to avoid person in w/c on her rt side, slipped and fell
## 17234                                                                                                                                                                   Delivering legal mail in kitchen and walked on wet floor. When I stepped into hallway I fell. ()
## 17235                                                                                                                                                                                     Delivering mail and when he exited the vehicle, wind blew door shut on his arm
## 17236                                                                                                                                               Delivering mail to post office in her personal car making a lt hand turn when a car collided into th rear of her car
## 17237                                                                                                                                                    Delivering mail to post office, pulling the hand truck up stairs, 6 buckets of mail. Injured lower extremitess.
## 17238                                                                                                                                                     Delivering mail, walking through the door, and storm door accidentially caught right foot, tripped and fell ()
## 17239                                                                                                                     Delivering medications, was leaving, slider door was fully opened, as started through the door, the slider strick left wrist, shoulder & thigh
## 17240                                                                                                                                                   Delivering nourishments unlocked door w/right hand& pulled door open w/left hand causing his left wrist to hurt.
## 17241                                                                                                                      Delivering personal tv & vcr to show tape. Carrying27" tv. Tried to open door. First w/hand then heldit open w/foot. Sharp pain in lower back
## 17242                                                                                                                                                                                   Delivering supplies & rubbed side eye not realizing cleaing solution was on hand
## 17243                                                                                                                        Delivering supplies for evening class, tripped on sidewalk joint near top side entrance of lrc, scrapes and bruises on left face/knee/hand.
## 17244                                                                                                                                                                                           Delivering trays to wards. Elevators closed on arm as coming out w/trays
## 17245                                                                                                                                                                             Delivering vigorous chest percussion of patient's upper torso w/cupped hand on patient
## 17246                                                                                                                                          Delivery person broke bottle of nitric acid duringdelivery. EE was clening up spill and was exposed to nitric acid fumes.
## 17247                                                                                                                                                                                     Delivery, errand on campus, stepped off curve injuring both knees and rt elbow
## 17248                                                                                                                                                                                                                             Delta dorm patrol officer. Chest pain.
## 17249                                                                                                                                     Delusional client attacking staff. EE ran to assist. Client hit EE in chest with his knee during restraint. Rt chest/thoracic.
## 17250                                                                                                                         Demarco was informed by examinee that he had the tuberculosis germ was on medication for 6 months demarco was in confined area w/examinee.
## 17251                                                                                                                                                             Demo of boxed-in furniture when a piece of wood tore into elbow that contained asbestos. Body systems.
## 17252                                                                                                                                                                                                                                            Demo squat. Right knee.
## 17253                                                                                                                                                                    Demolition of old box using crowbar-bar slipped & EE felt sharp/hot pain in rt bicep & shoulcer
## 17254                                                                                                               Demonstating the correct way to enter thru doorwaydoor jam and hinges when student on the other sidedoor pushed closed, left pinky finger was closed
## 17255                                                                                                                                                                                       Demonstrating a defensive tactic technique, calledguard. Injured right knee.
## 17256                                                                                                                                                                             Demonstrating a drill running in a straight line and felt a painfull pop in left knee.
## 17257                                                                                                                                                                   Demonstrating a knee spear to the common peroneal right knee struck mose cannon directly on knee
## 17258                                                                                                                                              Demonstrating a soccer move at practice and while trying to kick the ball his left planted sustaining left acl repair
## 17259                                                                                                                                                Demonstrating a stage combat technique, partner accidentally hit EE's ribs with his unusally large trcips and elbow
## 17260                                                                                                                                                                                                         Demonstrating an arm lock technique in crdt training class
## 17261                                                                                                                                                                                        Demonstrating cpi trng position when felt pulling/grabbing in left shoulder
## 17262                                                                                                                                                                           Demonstrating ground defense techniques, when he rolled over neck & shoulder area rolled
## 17263                                                                                                                                                                 Demonstrating how to break off a lock, hand slipped on the axe handle, cut right hand index finger
## 17264                                                                                                                                                               Demonstrating how to use a sheet metal roller. Metal was stuck. Came out abrutly and stuck left hand
## 17265                                                                                                                                 Demonstrating knife to supervisor in anticipation of purchasing them for patrol officers. Closed knife across tip of middle finger
## 17266                                                                                                                                                                             Demonstrating on floor a technique, tried to get up from floor and strained upper back
## 17267                                                                                                                                                                         Demonstrating pic technique to class-restraint in chair - lt side of back - lower back hip
## 17268                                                                                                                                                                 Demonstrating specical event trampoline jump, injured left arm when it was caught behind his back.
## 17269                                                                                                                                                   Demonstrating unarmed self-defense technique (koto-gaeshi) to some trainees & injured some muscles in lower back
## 17270                                                                                                                                                                                Demonstrating use of epi pen, accidentally discharged contents of pen into rt thumb
## 17271                                                                                                 Demonstration of crdt technique, while performing a crdt technique with another staff member, I did move in a way that caused a pop in the upper left rib area. ()
## 17272                                                                                                                                          Demonstration with nci instructor on how to free yourseflf if pt attacks--involves bending & twisting. Strain back & neck
## 17273                                                                                                                                                                                                                                 Demonstrations of an inertia ball.
## 17274                                                                                                                                             Demostraiting officer assist take down during inservice training at mcdowell tech. Jammed right shoulder into the mat.
## 17275                                                                       Denine was leaving a meeting at dss, when she stepped outside the door she missed a step and fell. She turned her left foot and it hit the concrete. The (left) foot immediately swelled. ()
## 17276                                                                                                                                                                                                                      Dental school 5-6 parking lot, slip and fell.
## 17277                                                                                                                   Dental tools were stuck together EE attempted to pull apart when her 4th finger on her rt hand punctured the dental tools were used on an inmate
## 17278                                                                            Departed consumer's home in canton in route to the dss office in clyde. Driving on champion Dr., Vehicle entered champion drive directly in my path. My vehicle hit other motorists' ()
## 17279                                                                                                                                                           Departing line-up room located by old cafeteria, fell on uneven sidewalk causing injury to her leftankle
## 17280                                                                                                                                                                                         Departing visiting area through receiving area door. Turned his left foot.
## 17281                                                                                                                                                                                                               Deploying/retrieving nets on boat during teaching ()
## 17282                                                                                                                                                                                                              Depression arising from accident and continuing pain.
## 17283                                                                                                                                                                                                                             Depression brought on by severe stress
## 17284                                                                                                                                                          Depression, stress brought about by a hostile management based on a lack of job description and direction
## 17285                                                                                                                                                                                                                             Depression, stress from supervisors ()
## 17286                                                                                                Depression; occupational disease/stress disorder, ptsd, transfer with prolonged exposure to physical assault depravity and abuse, resulting in mental breakdown. ()
## 17287     Deps black was traveling from his work site to office. A car changed lanes to get in front of him and then braked suddenly when the driver encountered unexpected traffic, causing Mr. Black's vehicle to collide with the other vehicle. No injuries noted ()
## 17288                                                                                                                                                     Dept was doing team building activities & employee overextended her back causing pain. (low back- lumbosacral)
## 17289                                                                                                              Dept was having ganization day/cookout. We selected teams to play badminton. I moved to hit the birdie& when I came down twisted ankle, couldn't walk
## 17290                                                                                                                                                                                                          Dequeruains..... Repetitive injury.. Right hand, andwrist
## 17291                                                                                                                                                                                                    Dermatitis from seating and wearing gloves. Left & right hands.
## 17292                                                                                                                                                                                                                                     Dermatitis reaction right hand
## 17293                                                                                                                                                                                                    Descending a bluff and placed left hand into a fire ant hill ()
## 17294                                                                                                                  Descending deck stairs at gateway mountain. Top step was slippery due to damp weather. EE fell several steps onto his mid to low back and buttock
## 17295                                                                                                                                                                                                                     Descending fr ladder, right knee hyperextended
## 17296                                                                                                                                                                        Descending ladder and stepped onto exhibit cover which flipped up and hit employee in groin
## 17297                                                                                                                                                      Descending motorized scaffold when foot missed foot stirrup. Trying to maintain balance pulled muscle in neck
## 17298                                                                                                             Descending outside stairs my high heel shoe got caught in the pants leg. EE fell from the 3rd step from the bottom onto the concrete. EE injured... ..
## 17299                                                                                                                                                                                Descending staircase in auditorium, slipped on the stairs loosing balance and fell.
## 17300                                                                                                                Descending staircase, lost footing and fell down flight of stairs. Floors had just been waxed and EE believes she slipped on floor at top of stairs
## 17301                                                                                                                                                                                             Descending staircase. Bruise/rug burn on chin, bruise on wrist & knee.
## 17302                                                                                                                                                                                  Descending stairs and tripped from 2nd step in lumbee hall stairwell and fell. ()
## 17303                                                                                                                                                                    Descending stairs in building # 5. Tripped & fell. Foot doubled up underneath me, knee twisted.
## 17304                                                                                                                                                                                                    Descending stairs to attend meeting; slipped and missed a step.
## 17305                                                                                                                                                                                                                                    Descending stairs to begin work
## 17306                                                                                                                                                                                   Descending stairs. Was 1 step from the bottom step and fell landing on rt. Knee.
## 17307                                                                                                                                                                                                                               Descending stairwell and missed step
## 17308                                                                                                                                                 Descending steps on l. Side of g1 porch-fell on last step-hitting concrete on l. Side and twisting both ankles. ()
## 17309                                                                                                                                                                             Descending steps to trailer on way to class. Slipped off bottom step, twisted lt ankle
## 17310                                                                                                                                                Descending steps, employee missed the third step and fell landing on hands/knees and eventually landing on stomach.
## 17311                                                                                                                                                                                         Descending steps, slipped and missed last step hurting rt knee & great toe
## 17312                                                                                                                                                                                                                                              Description not given
## 17313                                                                                                                                                               Desk chair arm had turned in & was difficult to move, when twisted out, finger got caught & was cut.
## 17314                                                                                                                                                                                                             Desk chair screws and base broke, throwing EE to floor
## 17315                                                                                                                                                                                                                           Desk drawer fell on right ankle and foot
## 17316                                                                                                                                                                                                                                        Desk dropped on rt big toe.
## 17317                                                                                                                                                                                                                                Desk fell on right foot. Fx. 2 toes
## 17318                                                                                                                                                         Desk had pull out typewriter table. EE pulled tableout, spring loaded, table crushed rt thumb against desk
## 17319                                                                                                                                                                                                    Desk is in a awkward position causing a strain when using mouse
## 17320                                                                                                                                                                       Desk is not set up properly-pain has continued andworsened with time in shoulder, back, neck
## 17321                                                                                                                                                                                                Desk lamp was bumped off table and landed on top of EE's left foot.
## 17322                                                                                                                        Desk size & placement caused neck to be turned to the lt from 3/06 to 11/06. Desk height forces shoulders to be raised causing neck strain.
## 17323                                                                                                                                                Desk was lose and fell on her leg making her fall to the floor and hitting her irght lega and bruising her left leg
## 17324                                                                                                                                                              Desk was lowered per ergo eval. It was too low and created strain on thumb/wrist/elbow/shoulder/ back
## 17325                                                                                                             Desk was seperated from side of table used for typewriter. Loading papers on top; shelf board would not support colloapsed on leg. Multiple leg injury
## 17326                                                                                                                                                                                                         Desk-sitting at work low grade to high grade back pain. ()
## 17327                                                                                                                                                                                                   Detachable arm of wheelchair fell-hitting EE's left pinky finger
## 17328                                                                            Detaining a probationer. Offender was fleeing, I ran toward the offender and made contact with the offender with my right shoulder in his chest and with my head in his upper torso. ()
## 17329         Devaney was assigned to the east yard, she felt something crawling on the left side of her neck, when she went to smack it off, it bit her. She stated she felt fine at first, then around 8 pm she started to feel pain in the area where she was bit. ()
## 17330                                                                                                                                                    Developed a double hernia caused by repetitive bending and heavy lifting as much as 2000 -3000 pound per day ()
## 17331                                                                                                                                                                                                                           Developed a heat injury while a move in.
## 17332                                                                                                                     Developed a rash after rabies vaccination that is required for animal keepers upon employment. Rash on face/neck, joint pain in hands/fingers.
## 17333                                                                                                                                                                                                                   Developed allergies to rats over period of time.
## 17334                                                            Developed carpal tunnel syndrome due to repetitive motion injuries from repetitive use of upper extremities for typing/data entry while working as an administrative assistant at the school of law. ()
## 17335                                                                                                                                                                                    Developed cts after 13 yrs progressive typing and computer work - rt/left hands
## 17336                                                                                                                                                          Developed double hernia while lifting computer from front seat of car in order to lock it in trunk of car
## 17337                                                                                                                                                                                             Developed ear infection following multi-day repetitive undersea diving
## 17338                                                                                                                                                          Developed ear infection following scientific divertraining-subsequently caused sinus & inner ear problems
## 17339                                                                                                                                                    Developed ear pain after scuba diving in exhibit. It did not develop immediately after dive, but a while later.
## 17340                                                                                                                                                                   Developed numbness of fingers and pain in the right hand/wrist and arm over a period of 3 years.
## 17341                                                                                                                                                                               Developed pain and swelling in rt pinky finger due to 10 key calculator and computer
## 17342                                                                                                                                                                                                                             Developed phlebitis post blood drawing
## 17343                                                                                                                                             Developed rt knee pain immediately after running with blet students during pt instruction. Rt knee stiffness and pain.
## 17344                                                                                                                                                                     Developed sharp lumbar pain while in talking with coworker. Fell and unable to stand afterward
## 17345                                                                                                                                                                                                                                                 Developed shingles
## 17346                                                                                                                                                              Developed shingles which is an infective process with potential exposure to patient. Thoratic 7 nerve
## 17347                                                                                                                                                                             Developed skin lesions, which cultured out to be MRSA. Lesions on rt/lt hand & rt hip.
## 17348                                                                                                                                                                                    Developed soreness in left hand due to repetative use of forceps to grip tissue
## 17349                                                                                                                                                                             Developing an ifsp, child playing with a toy gun accidentally poked in my right eye ()
## 17350                                                                                                                                     Development of carpal tunnel syndrome due to hoursof time spent on mouse-operated programs, typing, and extensive handwriting.
## 17351                                                                                                                                                                                                Device slipped & cut EE's right palm while removing slice from cork
## 17352                                                                                                                                                                                                    Devleoped scabies after being exposed resident who had scabies.
## 17353                                                                                                                                                                                      Diabetic EE felt unknown insect bite her rgt foot. Top of foot is now swollen
## 17354                                                                                                                                                          Diabetic EE was bitten repeatedly on legs & anklesduring flea infestation. Large open sores & red rashes.
## 17355                                                                                                                 Diagnosed cts. Typing, holding documents in hands while micro filming, filing documents in rapidprintime clock, answering phone and heavy writing.
## 17356                                                                                                                                                                                   Diagnosed has having carpel tunnel extended use of computer over period od years
## 17357                                                                                                                                                                    Diagnosed with carpal tunnel syndrome - 6/7/07 - left wrist - clerical duties/repetitive motion
## 17358                                                                                                                                                                             Diagnosed with carpal tunnel syndrome in both ha nds from repeitive motion- dx in 2001
## 17359                                                                                                                                                       Diagnosed with cts on 11-17-18 by Dr. Richard, repetitive movement while using computer, rtand lt hands/arms
## 17360                                                                                                                                                                                   Diagnosed with lyme disease while performing site visits in tick infested areas.
## 17361                                                                                                                             Diagnosed with tendonitis in August 06 Dr. Asked about repetitive activity. EE thought of raising and lowering 3ring binders. Lt hand.
## 17362                                                                                                                                                        Did inspection in cloths house truck. Reached up to grab handle on truck. Back of hand touched exhaust pipe
## 17363                                                                                                                                                      Did not see median. Rode up on it. Hit brakes just before median & tumbled over handle bars. Landing on hands
## 17364                                                                                                                                                       Did not see plastic carpet runner which was foldedin half and tripped/fell on it injuring legs/rt f oot/toe.
## 17365                                                                                                                              Did not see road sign indicating sharp right turn unable to slow down enough to make turn. Hit brakes, went off road & hit embankment
## 17366            Did not use keyboard tray since moved into cubicle. Started having forearm pain in 2011. Having tendonitis like symptoms in June or July of this year in both arms. Seeing occupational therapist, six more appointments, recommended by Dr. Richie. ()
## 17367                                                                                                                                                                             Didn't hold gun correctly when I shot first round, gun jerked back and hit my hand. ()
## 17368                                                                                                                    Diesel fuel sprayed out of return line at the injector pump due to back pressure and purging out air causing diesel fuel ingestion to mouth. ()
## 17369                    Dietary is required to bleach food trays every other weekend in hot water and bleach, this takes approx 2 hrs, this is done in the scullery room and the ventilation is not good. Near the end of the day the employee's head began hurting. ()
## 17370                                                                                                                                                                                                                        Diffculty breathing when operating forklift
## 17371                                                                                                                                                                        Different gloves used by jirdc regardless of name brand or color are breaking her hands out
## 17372                                                                                                                                                            Digging a fireline in rough terrain using a swing-ax, twisted wrong, felt sharp pain in lower left back
## 17373                                                                                                                                                                                 Digging a hole to plant apple tree, EE felt a sudden, sharp pain in his lower back
## 17374                                                                                                                                                                       Digging dirt to lay pipe then felt sharp pain in lower back. Listed injury as: lower back ()
## 17375                                                                                                                                                                                    Digging experimental cages into sandy bottom of sound. Finger cut by razor clam
## 17376                                                                                                                              Digging holes for planting plants while on my knees, when I stood up to put plant in the hole on the embankment, my right leg slipped
## 17377                                                                                                                                Digging plants, shovel hit some bricks undergroundcausing it to slip from under his feet and he fellacross asphalt curb on his back
## 17378                                                                                                                                                                           Diluted formula splased in right eye. Working at table reading bear reproductive tracts.
## 17379                                                                                                                                                                          Diming lights for movie night. Recieved an electric shock and was burned on tips of hands
## 17380                                                                                                                                                                                                  Dining room chair slipped out of hand striking left side of foot.
## 17381                                                                                                                                                                                             Diong roll after choke hold rolled the wrong way and pulled lower back
## 17382                                                                                                                                                    Directed client back to bedroom. Client sat down on bed and kicked EE in face with shoe, breaking glasses. Eye.
## 17383                                                                                                                                                     Directed visually impaired students hand to where bloody cloth was for applying pressure and blood got on hand
## 17384                                                                                                                      Directing inmates into dorm 2a. Placed hand insidedoor frame and control officer closed dorm door to secure it. Left thumb was caught in door
## 17385                                                                                                                                                                     Directing inmates to stop altercation, fight ocurred got a hit from inmate. And spit in eye ()
## 17386                                                                                                                                                                    Directing play at memorial hall. Stepped up on stage and fell back 8 ft. Into pit hurting back.
## 17387                                                                                                                               Directing students where to stack drywall. One student knocked stack over in error, EE attempted to catch stack. Injured left wrist.
## 17388                                                                                                                        Directing traffic & turned suddenly to right. Feltsharp pain in right foot. Foot rolled over causingfall to pavement on right knee & hands.
## 17389                                                                                                             Directing traffic in area that the tornado hit. Bending over talking to people in vehicles for approximately 10 hours. Neck strain from repetition. ()
## 17390                                                                                                                                                                                  Directing traffic in sun for extended period; suffered effects of heat exhaustion
## 17391                                               Director was attempting to open door located in her office which leads to outside and the door was stuck. She pushed on it with her left side and when the door finally opened she flew out hitting the sidewalk. ()
## 17392                                                                                                                                                                                     Diring a work assignment EE injured her left anklewhile walking on loose sand.
## 17393                                                                                                                                                                                               Dirt flying around on yard & went in eye.. Startedto tear up & hurt.
## 17394                                                                                                                                                    Dirty needlestick injury to left index fingertip while attempting to place butterfly needle into biohazard box.
## 17395                                                                                                                                                                                                                          Dirty needlestick to left hand palm area.
## 17396                                                                                                                                                                  Dirty water entered ear canal during scuba diving which May have contributed to swimmer's ear. ()
## 17397                                                                                                                                             Dirty water splashed into eye when cleaning out a p. R. V. Station in the physical plant mechanical equipment room. ()
## 17398                                                                                                                                                                                                   Disagree with an imate, punched steel door, injury right hand ()
## 17399                                                                                                                                             Disassembling bed frames when he leaned frame against wall. Turned around & bed frame fell, striking him in lower back
## 17400                                                                                                                                                         Disbursing inmates out of hallway. Accidentily placed hand on bar door. Closed door while hand was on door
## 17401                                                                                                                                                                                                                   Discard dirty linens and face broke out in rash.
## 17402                                                                                                                                 Discarded light bulb taken from light fixture in office exploded in hand of maintenance worker at secretary's desk. Injury to eyes
## 17403                                                                                                                                                                                      Discarding boxes into the dumpster, wasp stung her under the right arm(upper)
## 17404                                                                                                                                                                                          Discarding iv needle stuck rt index finger throughglove. Rt index finger.
## 17405                                                                                                                                                                                                             Discarding needle-needle prick to l. Middle finger. ()
## 17406                                                                                                                                                                                                            Discharged firearm. Left hand was struck on first joint
## 17407                                                                                                                                                                                              Discharging subsequent from a needle employee punctured her finger ()
## 17408                                                                                                                                                                                Discomfort/pain in right shoulder, associated withusing mouse while at the computer
## 17409                                                                                                                                    Discoverd original design of ventilation system was not implemented. Ventilation system in place was disconnected one year ago.
## 17410                                                                                                                 Discovered fully engaged tick on stomach in late afternoon after spending workday in gardens and fields. Rash, headache, blurred vision, and achy.
## 17411                                                                                                                                                                                             Discovered hard object while conducting search of inmate's property ()
## 17412                                                                                                                                                                                                                                  Discovered spider bite around 3pm
## 17413                                                                                                                                                                                              Discussing problem w/inmate when inmate got mad and spit in EE's face
## 17414                                                                                                                                                                                      Dish machine door fell on l. Hand when attempting to remove a jammed tray. ()
## 17415                                                                                                                                    Dish machine was loaded with soap and EE did not know when she lifted the top out of it and the water shot out on her left foot
## 17416                                                                                                                                                                                       Dish soap foam in eye allergic reaction which became apparent days later. ()
## 17417                                                                                                                                                                                                                  Dishwasher door slammed on rt 2 middle fingers ()
## 17418                                                                                                                                              Disinfecting arjo tub-bolt fell into tub. EE bent over tub to retrieve bolt and felt pop in left side in ribs and arm
## 17419                                                                                                                                                                  Dismissing patient from dental chair, EE's right middle finger cam in contact with dental bar. ()
## 17420                                                                                                                                                     Dispenser opened and top fell downward hitting EE on right temple. Bruising and swelling to right side of head
## 17421                                                                                                                            Dispensing medication at med pass. Opening and closing several medicine bottles repeatedly on a daily basis (at least 100+ bottles). ()
## 17422                                                                                                                                                      Displaying iris in display pond, when saw slipped & punctured finger. Wound healed, but infectiong got worse.
## 17423                                                                                                                                                                                                                                                    Disposing files
## 17424                                                                                                                                                                                 Disposing of blood drawn needle when it popped back and pricked right index finger
## 17425                                                                                                             Disposing of bottles/lids in trash can. Dropped 2 lids on floor; picked up one; backed up to look for other one and stepped on it and twisted my ankle
## 17426                                                                                                                                                                       Disposing of surplus/junk computer accessories an attached power cord "whipped" and hit face
## 17427                                                                                                                                                                             Disposing of trash & cut her third finger on righthand on sharp place on trash can lid
## 17428                                                                                                                                                                                      Disruptive inmate pulled ofc hands into cell as he was removing restraints ()
## 17429                                                                                                                                                  Disruptive inmate swung at me and hit me in left side of my mouth. Thumb hurt while getting control of inmate. ()
## 17430                                                                                                                                                                                           Dissecting animals needle stick-ed to the left hand, below the thumb. ()
## 17431                                                                                                                             Dissection of neck during autopsy w/scalpel when tip of blade poked through 4 layers of gloves breaking skin on left thumb knuckle. ()
## 17432                                                                                                                              Distributing lunch trays to single cell inmates, opened tray flap, inmate reached out and grabbed him scratching him with fingernails
## 17433                                                                                                                        Distributing testing materials on tables. When turning heard a pop and pain in right knee making it difficult to apply weight and stand. ()
## 17434                                                                                                                                                                                                   Disturbed a yellow jacket nest and was stung on the left forearm
## 17435                                                                                                                                                                                              Disturbed fire ants while trimming grass, fire ant bites on both legs
## 17436                                                                                                                                                                               Diving collecting biological samples, after diving started having vertigo, nausea ()
## 17437                                                                                                                                                                              Diving for staff ball during physical training and landed on left knee & twisted over
## 17438                                                                                                                                                                           Diving to 20-24 ft, on ascending to surface suffered reverse squeeze causing rupture. ()
## 17439                                                                                                                                Dixie grading burning poison oak brush near shed where class was working. Toxic fumes caused rash. Face, neck, eye, and wrist area.
## 17440                                                                                                                                                   Dizziness reported and emt called, per request of EE was transported to er, all vitals reported normal by emt ()
## 17441                                                                                                                                           Dizzy, nausea, burning eyes, hyperventilative, red face, arms, headache, neck, back of arms, circulat-ion, humidity, etc
## 17442                                                                                                                                                                                                                                                  Do not know cause
## 17443                                                                                                                                                                      Doa car 05339 was hit from behind twice. EE was a passenger in the back seat of this vehicle.
## 17444                                                                                                                                                                                                                  Doc trucks exhaust entered the ventilation system
## 17445                                                                                                                                                                                                                                      Doctor was stuck by needle ()
## 17446                                                                                                                    Documenting a conservation easement solation for the pather creek easement, received a tick bite that was noted and later signs of inflammation
## 17447                                                                                                                                                                                Dodging pt assault when his right thumb struck theboard and popped. Sprain rt thumb
## 17448                                                                                                                                                                 Does not know of specific injury. Back pain as result of client behavior over long periods of time
## 17449                                                                                        Doesn't knot how after confrontation with inmate noticed right finger swollen on 8/9 went to Dr Office Dr Has bee stings as of 8/9/09 along with sprain from fight on 08/06
## 17450                                                                                                                                                                                                                                                            Dog bie
## 17451                                                                                                                                                                                        Dog bit EE on lower left shin when EE walked behind house to get equipment.
## 17452                                                                                                                                                                                                  Dog bit employee on the rt. Leg while he was testing chickens. ()
## 17453                                                                                                                                                                                                                                    Dog bit her through the muzzle.
## 17454                                                                                                                                                                                                                Dog bit officer on lt calf while making home visits
## 17455                                                                                                                                                                                        Dog bit rt hand during routine care/transfer of patient from floor to cage.
## 17456                                                                                                                                                                                                                                 Dog bite - employee petting dog ()
## 17457                                                                                                                                                                                                            Dog bite at offenders home wile out doing a home visit.
## 17458                                                                                                                                                                                                                    Dog bite laceration to skin on back of left leg
## 17459                                                                                                                                                                                                                                         Dog bite on right thigh ()
## 17460                                                                                                                                                                                                          Dog bite on rt thumb while trying to muzzle dog to sedate
## 17461                                                                                                                                                                                                                                        Dog bite to her right hand.
## 17462                                                                                                                                                                                                                                      Dog bite to left index finger
## 17463                                                                                                                                                                                                       Dog bite to left thumb while restraining for radiographs. ()
## 17464                                                                                                                                                           Dog bite to lower left leg breaking skin and causing a bruise. Incident occured at offneder's residence.
## 17465                                                                                                                         Dog bite while doing a curfew check. Arrived at house walking up stairs, knocked on storm door, knocked door open and bit the lft forearm.
## 17466                                                                    Dog bite while working 1:00 to 10:00 shift to verify offenders address, the next trainer to the resident had a dog on rope. Dog chain was longer than thought and dog bite him on left calf. ()
## 17467                                                                                                                                                                  Dog escape from pen into cow posture. People were closing. This student caugh dog and was bitten.
## 17468                                                                                                                                                                                                          Dog looked at EE and then tasted EE nose, lip, and cheek.
## 17469                 Dog ran out of pen, knocking employee backwards employee grabbed onto the fence that's when employee heard shoulder pop and felt tingling down left arm to the tin emp was trying to let another dog out and his roommate was trying to get out ()
## 17470                                                                                                                 Dogroom washing fecal, material down floor drain, standing on one of the dog floor panels when it gave away. Ankle was cut on metal bar. Rt ankle.
## 17471                                                                                                                                                                                                                 Doing 141s and making rounds and giving showers ()
## 17472                                                                                                                                                                                                                        Doing a blood draw needle punctured finger.
## 17473                                                                                                                                                                                                        Doing a control strike, accidently kneed in the right knee.
## 17474                                                                                                                  Doing a crdt technique; ofc. Locklear straddled herpartner & was thrown over his head. Landed on her shoulder in an awkard position, causing pain
## 17475                                                                                                                                                                                              Doing a fence test, slipped on ice, twisted knee and struck elbow. ()
## 17476                                                                                                                                   Doing a ground escape manuver was thrown over another officers shoulder and landed on right shoulder and heard it crunch and pop
## 17477                                                                                                                                                                                        Doing a ground mount escape technique during crdt, landed on left shoulder.
## 17478                                                                                                                                                                        Doing a home check on eha equipment. The dog came up from behind and bit her right calf. ()
## 17479                                                                                                                Doing a kneeling brake fall, on my left knee whichdid not cease immediately and contineued. Instr uctor honeycutt provided me with an ice pack.. ..
## 17480                                                                                                                                                             Doing a locker search, recieved a small puncture wound on left index finger from an unknown source. ()
## 17481                                                                                                                                                                                          Doing a lot of bending, lifting & twisting pulling on different items. ()
## 17482                                                                                                                                                                                    Doing a mount escapte, fell on right side. Right ribs sore breathe knocked out.
## 17483                                                                                                                                                                                             Doing a roll after a choke hold and rolled wrong and pulled lower back
## 17484                                                                                                                                                                                                         Doing a safety check when he was pushed by another officer
## 17485                                                                                                                                                                                                              Doing a search and had a reaction on skin and legs ()
## 17486                                                                                                                                                                     Doing a security check on the yard when he stepped on a rock/uneven groun and wrenched rt knee
## 17487                                                                                                                                                                                                   Doing a site inspection, fell on logging debris & twisted ankle.
## 17488                                                                                                                                                                                                                              Doing a take down in crdt training ()
## 17489                                                                                                                                                                                                       Doing a take down technique c/o landed wrong on l. Shoulder.
## 17490                                                                                                                                                        Doing a techique, laying on her back, her opponent grab her left leg and pulled inward and her knee popped.
## 17491                                                                                                                                                                                Doing a two man lift on a client when something pulled in the rt side of EE's back.
## 17492                                                                                                                                                                                                  Doing activites when client became aggressive and hit EE in l eye
## 17493                                                                                                                                                                Doing activities with client, client started kicking EE on rt knee. Also scratch on back of rt hand
## 17494                                                                                                                                                                                                                         Doing an elbow strike to a training bag ()
## 17495                                                                                                                                      Doing an inmate's personnal property inventory when she tripped over a rain coat cuasing her to injure her rt hand & rt ankle
## 17496                                                                                                                                                                           Doing an locker search c/o adams was stuck in the hand with a sharpened piece of wire ()
## 17497                                                          Doing an nci procedure (2-person walk) with individual from classroom to unit, when coming down the hall employee a felt sharp pain go through center of back like she was stretching something apart. ()
## 17498                                                                                                                                                                                                        Doing an outside activity with young children on playground
## 17499                                                                                                             Doing an upper endocsopy w/ biospsy, nurse handed over an open biopsy forceps and EE probably got a bite from it when she closed it through the gloves
## 17500                                                                                     Doing asphalt patching about halfway through; started getting light headed, dizzy, chest pains, trouble breathing, arms and shoulder going numb. List injury as: chest pain ()
## 17501                                                                                                                                                                                                                   Doing ause of force on an inmate in segregation.
## 17502                                                                                                                                                                                           Doing body work and small piece of glass fell in eye and cut left wrist.
## 17503                                                                                                                                                                                                                          Doing break falls during crdt training ()
## 17504                                                                                              Doing canteen to let anmate in the gate from aumen. Locking gate coming into edward abd turned around at the front door tipped over the ramp and fell in the door. ()
## 17505                                                                                                                                                                             Doing car screening stepped on a bottle causing him to loose balance inuring l-knee ()
## 17506                                                                                                                          Doing cell extraction training, was shield man, when he pushed the officer with the shield and injured his 3rd finger on his left hand ()
## 17507                                                                                                                                                            Doing check & change-rolled resident away from to check and felt sharp pain in lower l. Side of back ()
## 17508                                                                                                                                                                            Doing check & change-turning and repositioning residents. L. Shoulder began to hurt. ()
## 17509                                                                                                                                                                                            Doing clean up employee slipped and fell splashingchemicals in her eyes
## 17510                                                                                                                                                                                                             Doing clothes exchange and tripped over shower mat. ()
## 17511                                                                                                                                                                                        Doing construction work, moving and swinging blockwhen back started hurting
## 17512                                                                                                                                                                  Doing control, restraints, defensive techniques. Fell on right knee doing rifle/shotgun training.
## 17513                                                                                                                                                           Doing count in dorm. Inmate refused to get on bunk. Inmate hit me in face, left eye & right forehead. ()
## 17514                                                                                                                                                                                     Doing crdt training excercise when he fell backwards from a standing position.
## 17515                                                                                                                                                              Doing crdt training, performing the ground defense technique, getting up off floor & twisted her knee
## 17516                                                                                                                                                                       Doing curfew check on offender stepped out of vehicle and step in hole and twisted ankle. ()
## 17517                                                                                                                                                Doing curfew checks for intensive caseload and ran over a large tree stump in the middle of the road in a dark area
## 17518                                                                                                               Doing curfew checks it was dark & snowing very hard. While going up defendants front door, slipped onfirst step hitting rgt foot hard almost falling
## 17519                                                                                                               Doing data entry at a very close range to the keyboard(file cabinets directly behind chair had to swivel chair to enter or exit work station no room
## 17520                                                                                                                                                                                                                   Doing deep knee bend in nci and felt pop in knee
## 17521                                                                                                                                               Doing defensive tactics EE did a backwards fall to the mat causing fatigue to his neck muscles. --pulled neck muscle
## 17522                                                                                                                                                                                                              Doing defensive tactics at gym injured rt groin area.
## 17523                                                                                                                                                                         Doing dips on pull up bar lost balance and hit bar with mouth breaking left front tooth ()
## 17524                                                                                                                                                                                                             Doing drills and felt sharp pain in elbow and shoulder
## 17525                                                                                                                                                                                                              Doing end of year cleaning when debris blew into reye
## 17526                                                                                                                        Doing evening home contacts. While walking back to state car, left ankle turned over on wet thick grass and employee fell to the ground. ()
## 17527                                                                                                                                                            Doing exercises during unarmed self-defense & thatwhile doin stretching exercise his right knee snapped
## 17528                                                                                                                                                                         Doing exterior inspecting in field at cbc, centennial and main campus when stung or biten.
## 17529                                                                                                                                                                              Doing fence check on sidewalk on ballfield, stepped off sidewalk and twisted back. ()
## 17530                                                                                                                                                                                         Doing fence check on yard 1-walked into razor wire. Cut top of my head. ()
## 17531                                                                                                                                                                                                   Doing fence test inmate threw rock hitting officer on right foot
## 17532                                                                                                                                                                                                                                            Doing firearms training
## 17533                                                                                                                                                 Doing float preparation and was cutting cardboard, scissors slipped and cut rt thumb in half-circle about one inch
## 17534                                                                                                                                                                                         Doing floor exercises with class and fell on the gym floor on her left arm
## 17535                                                                                                                                                                         Doing foot trim on 1600 pound client. Foot partially restrained, moved & cut hand by metal
## 17536                                                                                                                                                                                          Doing hall check walking out of room and door closed on lt middle finger.
## 17537                                                                                                                                                                             Doing her duties as lpn. As painted started she whent into an asthma attack from fumes
## 17538                                                                                                                           Doing herbicide spraying from back of full track carrier, tree limb cam in behind cab vehicle where claimant was standing & hit claimant
## 17539                                                                                                                                                                Doing high mount in training, officer rolled me toside and my elbow went into rib cage on left side
## 17540                                                                                                                                                                                          Doing home check on offender, dog jumped up and bit officer in scrotum ()
## 17541                                                                                                                                                                        Doing home check on offender, when getting out of state vehicle, dog seized arm and bit. ()
## 17542                                                                                                                                                                                                  Doing home check, dog came up behind her and bit her right leg ()
## 17543                                                                                                                                                                                                Doing home visit & stepped onto some leaves which covered the hole.
## 17544                                                                                       Doing inmate count upstairs removed bedsheet off shower blocking view of upstairs shower--had to step up, when stepped down, the mat slipped, fell and twisted ankle/knee ()
## 17545                                                                                                                                                                                                                 Doing intervention patient kicked EE on left knee.
## 17546                                                                                                                                              Doing landscaping, digging & planting shrubs. He bent over & picked up 50 lb bag of manure & felt sharp pain in back.
## 17547                                                                                                                          Doing laundry. While flipping laundry basket to dump clothes on table, heard wrist pop. Woke with pain in wrist when bending. Left wrist.
## 17548                                                                                                               Doing layout on a woodland tract via woods road onatv. Road was overgrown w/vegetation. Atv hit a rock and threw him off and atv part punctured leg.
## 17549                                                                                                                                                                                                             Doing leg exercise & felt something pulling in herback
## 17550                                                                                                                                                               Doing lifeguard training. Hit water tube slung arm up out of water w/alot of force on upper rightarm
## 17551                                                                                                                                                                                              Doing lung test, passed out and fell, contusion toneck and left elbow
## 17552                                                                                                                                                                                                    Doing mail run slipped on black ice and fell in cse parking lot
## 17553                                                                                                                    Doing maintenance around office w/weedeater. Came in contact w/poison ivy-oak & sumac. Washed off showered that night. Eye began to swell shut.
## 17554                                                                                                                                                                                             Doing med call observing inmate taken meds. Felt something stinging ()
## 17555                                                                                                                                  Doing morning basic care of clients was bending over assisting client with getting dressed staff had sharp pain in lower back. ()
## 17556                                                                                                                                                                               Doing mount escape variation, EE was thrown on the mat and landed on his rt shoulder
## 17557                                                                                                                                   Doing mount/escape routine training. When I flippedoff I landed on my upper right side. I immediatleyfelt pain in my right ribs.
## 17558                                                                                                                                                                                                              Doing my rounds hit my hand on the door in jenkins ()
## 17559                                                                                                                                                                                                 Doing nci class and lt knee popped while doing three person carry.
## 17560                                                                                                                                                                                                                 Doing nci on individual, we fell on my right hand.
## 17561                                                                                                                                                                   Doing nci on resident, lowered her to floor and heard a pop in my back. Later it became painful.
## 17562                                                                                                                                        Doing nci on resident. She curved her back & liftedher feet causing me to hold all her body weight. Felt a pull in my back.
## 17563                                                                                                                                                                                                  Doing nci procedure, going down on knees to floor and hurt l knee
## 17564                                                                                                                                                                                     Doing nci recert, I strained a muscle in my left hip joint area, doing a lift.
## 17565                                                                                                                                                                                                   Doing nci recertification and hurt back while lifting from floor
## 17566                                                                                                                                                                             Doing nci refresher training employee dropped to floor hard injuring her left knee. ()
## 17567                                                                                                                                                                                Doing nci, I got down on the floor & as I came up, something pulled in my left leg.
## 17568                                                                                                                                                 Doing nci, I was securing residents lower back. Hetried to raise up in resistance to the p/r which jarred my back.
## 17569                                                                                                                                                                                                Doing nci, felt pain in left chest. Sent to er to rule out cardiac.
## 17570                                                                                                                                                                                                                         Doing necropsy duties on domesticated cows
## 17571                                                                                                                                                                  Doing nightly med nurse duties when eye started hurting and throughout the night it got worse. ()
## 17572                                                                                                                      Doing normal duties big toe & bunion began to swell. He was determined to finish out the day. Rtfoot/leg began to swell also. Skin was tight.
## 17573                                                                                                                                                                                                                       Doing outside fence check slipped on ice. ()
## 17574                                                                                                                                                  Doing p/r with client. My right knee made a hard contact with the floor. It became sore and stiffedup over night.
## 17575                                                                                                                                                  Doing paperwork at desk and felt a sting on right foot and ankle. Looked down and saw a spider on top of shoe. ()
## 17576                                                             Doing paperwork at desk. Tried to open the drawer on right side. Drawer was partially opened, but it got stuck. When EE tried to get it from being stuck, the drawer closed on right fourth finger. ()
## 17577                                                                                                                   Doing paperwork, reached to answer phone, chair tilted forward, causing her to fall, chair swung around and hit her on back of neck and shoulder
## 17578                                                                                                                                                                                            Doing personal care of peers when peer went into behavior and bit staff
## 17579                                                                                                                      Doing pic excercises; therapeutic hold & walk; when moved to change position, EE right leg was hit on outside of knee by pic instructor,.. ..
## 17580                                                                                                                                                           Doing project work- removing waxy build up from corner- when she got complained about her chest hurting.
## 17581                                                                                                                                                                                                                      Doing push ups & strained muscle causing tear
## 17582                                                                                                                                                                                                                                    Doing push ups during training.
## 17583                                                                                                                                                                      Doing rdc exam, tmj, 3 lb. Of pressure on participants right side injury to left index finger
## 17584                                                                                                                                                   Doing regular duties & on several occassions, was pulled to the side & hugged once another EE tried to kiss her.
## 17585                                                                                                                                   Doing regular duties(bending side/bottom of med. Cart & moving it, handling patients)went to toilet/sink and felt spasms in back
## 17586                                                                                                                                                                   Doing repetitive chores such as tearing paper, use of the calculator, and picking up some books.
## 17587                                                                                                                                                                                                                             Doing repetitive work on the computer.
## 17588                                                                                                                  Doing research on image quality improvement for obese pt. Acrylic block to emulate tissue fell from cart landing on rt foot, inj. 3rd & 4th toes.
## 17589                                                                                                                                                                                                                          Doing research out at feast when tick bit
## 17590                                                                                                                                                                                                                            Doing research received 100+ tick bites
## 17591                                                                                                                              Doing roof repairs to the hvac unit when roof was wet with snow. Came back in building with feet wet and slipped on the hall floor ()
## 17592                                                                                                                                                                                                                      Doing rounds while walking, knee gave out. ()
## 17593                                                                                                                                                   Doing routine check employee pricked his right hand 5th index finger on what appeared to be a homeade tatoo tool
## 17594                                                                                                                                                         Doing routine daily room searches EE handled the personal belongings of an inmate who had a skin infection
## 17595                                                                                                                                        Doing routine leaf removal in campground using pitchfork to pickup leaves. Upon arrival home, right wrist begain hurting ()
## 17596                                                                                                                                                                   Doing routine searches felt face get hot and then broke out in hives, no apparent bite marks. ()
## 17597                                                                                                                   Doing routine water sampling collection. While getting out of the boat, EE was holding on to the grabrail and felt something pop in rt shoulder.
## 17598                                                                                                                                                                                    Doing routine yard check near tower #4. Turned around & twisted his right ankle
## 17599                                                                                                                                                                               Doing sanitation bent down to pick up a piece of plastic and slipped on it and fell.
## 17600                                                                                                                                                                                                           Doing search on inmate bent down something in knee poped
## 17601                                                                                                                                                                                           Doing security check of back door & stumbled down steps injuring rt hand
## 17602                                                                                                                                                          Doing security check. Had to go under pipe. Left foot got caught on stone & frozen mud causing EE to fall
## 17603                                                                                                                                                 Doing security checks, walking up stairs in east wing on falkland and pulled something in left leg behind knee. ()
## 17604                                                                                                                                                  Doing seedling survival count on property when hisfoot got tangled in vines & fell into tree laps & punctured leg
## 17605                                                                                                                                 Doing segregation check on unit 1. Going down the stairs on cell block 1c west side and fell down hitting her rt side on concrete.
## 17606                                                                                                                                                                    Doing self defense. Bent wrist technique and heardright wrist pop. Have had pain in right wrist
## 17607                                                                                                                                                                                                                                Doing several arm bar take downs ()
## 17608                                                                                                                                                                                                 Doing sports activity with players and hurt right leg and ankle ()
## 17609                                                                                                                                      Doing sprinting exercise while participating in srt training. EE planted rt foot & turned felt & heard rt knee pop and fell..
## 17610                                                                                                                                                                             Doing squats during pt, felt a stabbing pain in right knee cap, unable to continue. ()
## 17611                                                                                                                                                                 Doing standing break falls, returning to defensivestance position, felt burning pain in left knee.
## 17612                                                                                                                                                                                                                                         Doing the daily fence test
## 17613                                                                                                                                Doing the shotgun training and the butt of the shotgun hit her in the right shoulder, she had a small mark on her right shoulder ()
## 17614                                                                                                                                                                                       Doing trash detail. While trying to close and lockgate back, scraped her arm
## 17615                                                                                                                                                          Doing treatment on residents foot, resident bent down on EE's hand. Pain shot up her arm to her upper arm
## 17616                                                                                                                                                               Doing treatments, putting ointment on lesions whenthe mouse turned around and bit her middle finger.
## 17617                                                                                                                                                         Doing unarmed self defense class. When officer put EE down on the floor, felt sharp pain at top of rt arm.
## 17618                                                                                                                                                            Doing venipuncture on inmate; placed discarded needed in bio-hazzard box; stuck thumb on open needle ()
## 17619                                                                                                                                                                    Doing vital signs, reached down to pick up object from floor, pulled muscle in lower left back.
## 17620                                                                                                                                                    Doing warm-up exercises on break fall from a standing position when his hip started hurting. He has a pin in it
## 17621                                                                                                                                                                                                                 Doing warm-up exercises, performing jumping jacks.
## 17622                                                                                                                                                                                     Doing work at front of desk on keyboard felt pain in rt palm, wrist and elbow.
## 17623                                                                                                                                                                                        Dolores cut her index finger with an exacto blade when trimming banners. ()
## 17624                                                                                                                                            Donald devane was driving a bobcat east on lawson st near residential halls when a car ran into the back of the bobcat.
## 17625                                                                                                                                                                                                                                   Donating blood injured left arm.
## 17626                                                                        Donna was walking in the parking lot to her car and stepped on a rock, twisted right ankle, fell to ground on her left knee. Knee is scrapped and bleeding and ankle and begun to swell. ()
## 17627                                                                                                                                                         Donnie was reaching down to pick up a mop bucket when he felt a sharp, tingling pain in his lower back. ()
## 17628                                                                                                                                                                              Door accidently closed on right middle finger when bringing patients in from smoking.
## 17629                                                                                                                                                         Door began to close, EE put hand out to stop door and it slammed on her hand. Injured right middle finger.
## 17630                                                                                                                                                                                                                       Door closed and caught EE's left ring finger
## 17631                                                                                                                                                                                                                                           Door closed on EE's hand
## 17632                                                                                                                                                                                                                            Door closed on EE's right hand on ward.
## 17633                                                                                                                                                                                                               Door closed on EE's rt wrist when entering elevator.
## 17634                                                                                                                                                                                                                                          Door closed on EE's thumb
## 17635                                                                                                                                                                                        Door closed on employee while transport inmate at cdp-contusion to shoulder
## 17636                                                                                                                                                                                                           Door closed on employee's left hand crushing fingers. ()
## 17637                                                                                                                                                                                                                    Door closed on finger while closing the door ()
## 17638                                                                                                                                                                                                                                             Door closed on hand ()
## 17639                                                                                                                                                                                                                                        Door closed on her hand. ()
## 17640                                                                                                                                                                                                                                         Door closed on left finger
## 17641                                                                                                                                                                                                Door closed on left hand while EE was conducting shake down in unit
## 17642                                                                                                                                                                                                                                    Door closed on rt little finger
## 17643                                                                                                                                                                                                                    Door falling off hinges striking person on head
## 17644                                                                                                               Door handle was broken and EE couldn't get out. Hurt hand trying to get out. Was stuck in bathroom for 3 hours. Used hand to try to loosen doorknob.
## 17645                                                                                                                                                                               Door in infirmary wa pushed outward by an inmate hitting rt side of the head and ear
## 17646                                                                                                                   Door jammed in the ladies bathroom (stall door). Employee pushed to open door and the door fell on her foot. Foot was crushed and fractured toe.
## 17647                                                                                                                                                                                                                                Door of breakroom slammed on finger
## 17648                                                                                                                                                                                                                                       Door of vehicle hit lft knee
## 17649                                                                                                                                                                                                       Door on dish machine slipped, hitting EE on head and rt hand
## 17650                                                                                                                                                                                                      Door opend and hit EE in hand where he was holdingthe handle.
## 17651                                                                                                                                                          Door opened and EE was going down steps, heavy dust was blowing. Now rt eye is red and a little swelling.
## 17652                                                                                                                                                                                                                                     Door opened hitting right knee
## 17653                                                                                                                                                                                                 Door shut on EE as EE was walking through. Hit on left lower back.
## 17654                                                                                                                                                                                                                                        Door shut on EE right hand.
## 17655                                                                                                                                                                                                                                        Door shut on EE's right arm
## 17656                                                                                                       Door shut to the seclusion room, EE & agitated pt were in room, EE couldn't get out, pt grabbed EE around collar bone area, pulling EE to ground with her ()
## 17657                                                                                                                                                                                                                      Door slammed back on EE's left middle finger.
## 17658                                                                                                                                                                                                         Door slammed finger while use of force was being conducted
## 17659                                                                                                                                                                                                                         Door slammed on EE left hand/middle finger
## 17660                                                                                                                                                                                                                                         Door slammed on EE's thumb
## 17661                                                                                                                                                                                                                                            Door slammed on fingers
## 17662                                                                                                                                                                                                   Door slammed on left ring finger. Laceration and crush to finger
## 17663                                                                                                                                                                                     Door slammed on pinky finger of left hand while exiting the recreation yard ()
## 17664                                                                                                                                                                                                                   Door slammed on staff's right hand by a patient.
## 17665                                                                                                                                                                                                                       Door slammed shut on EE's rt elbow and wrist
## 17666                                                                                                                                                                                Door slammed shut on rt hand-hand got stuck betwn door and frame-broke pinky finger
## 17667                                                                                                                                                                                                                                   Door smashed top of pinky finger
## 17668                                                                                                                                                                     Door swug back toward her she caught it with her rt hand that is when her finger got bent back
## 17669                                                                                                                                                                                                                            Door swung back and hit EE in rt elbow.
## 17670                                                                                                                                                                               Door swung back hitting him in the back causing him to fall down steps face first ()
## 17671                                                                                                                                                                                                                                Door swung close on EE's left elbow
## 17672                                                                                                                                                                                           Door to a cell closed on his thumb of his left hand that was in the door
## 17673                                                                                                                                                                                                         Door to bathroom stall closed and mashed staff's finger ()
## 17674                                                                                                                                                                                Door was accidentally slammed on nurses finger before the door could be stopped. ()
## 17675                                                                                                                                                              Door was beginning to close so EE stepped through and turned quickly to get through. Felt pop in calf
## 17676                                                                                                                                                                                      Door was being closed. Bolt to lock hit her arm scratching and breaking skin.
## 17677                                                                                                                                                                                                          Door was closed on EE's finger - contusion lt ringfinger.
## 17678                                                                                                                                                                                                                    Door was closed on rt side of her arm and elbow
## 17679                                                                                                                               Door was closing and I didn't have my hand completely out of the way from the closure of the door and it slammed shut on my fingers.
## 17680                                                                                                                       Door was hard to open, allied pressure and opened door and fell over a cement cigarette/trash can cuts and bruises on legs and fell on chest
## 17681                                                                                                                                                                                                 Door was jammed and EE kicked door to close it and strained rt hip
## 17682                                                                                                               Door was opened and steam escaped. Autoclave shut off because of low water level; door was opended to refill water level w/o regard of temp. Reading
## 17683                                                                                                                                                       Door was stuck and attempte to push the door open it and didn't open caused finger (pinky) to bend &injuried
## 17684                                                                                                                                                 Door was stuck on pot machine, staff went to lift up, felt shoulder pull and machine door came down on right hand.
## 17685                                                                                                                                                                                        Door was wedged open on curb. Air pressure pulled door in catching EE's arm
## 17686                                                                                                                                                                                              Dorm 3 pod fixing a leak in the drain line possible allergic reaction
## 17687                                                                                                                                                                                        Dorr throught the hall way of school to put on work truck, pulled muscle ()
## 17688                                                                                                                                                 Dot truck pulled off the side of the road to put out signs and hit a hole. List injuries as: back/left shoulder ()
## 17689                           Dot was installing a cross line and employee was helping to assemble the pipe to be placed in the hole. Employee was not present at the meeting, so not for sure how it happened (employee does not have a history of back problems). ()
## 17690                                                                                                                                                               Dot worker backed up into another truck which caused EE neck to jerk & pull something in lower back.
## 17691                                                                                                                                                                                   Doublelocking handcuffs on inmate and inmate pulled up. Hit r calf on cubicle ()
## 17692                                                                                                     Down stair clearing the meal cart & tip the cart over to let the water out & the wheel went in the drain hole & I was trying to keep it from falling on me. ()
## 17693                                                                                                                                                                                                Downloading greenhouse frame, cut bands and frame fell on lower leg
## 17694                                                                                                                                                                                                              Downstairs in basement, ? Away slipped on rubber band
## 17695                                                                                                                                                                                 Dr Broadhurst 3/25/9 rated 12% ppd l arm/shoulder form 26a completed left shoulder
## 17696                                                                                                                                                            Dr Diagnosed EE as having carpal tunnel syndrome as result of repetitive motion. Damage to right wrist.
## 17697                                                                                                                                                                                                             Dr Potocki 828 580 4220 - back becky early ncm on file
## 17698                                                                                                                                                                            Dr States that her work station May be a significant part of her clinical presentation.
## 17699                                                                                                                                     Dr Took mouth prop out of client mouth while holding canitran in hand. Tip went thru glove and punctured top of EE's left hand
## 17700                                                                      Dr. And employee were walking back to office from a meeting at lineberger bldg slipped on wet walkway. Fell forward on to elbow while carrying charts. Rt. Elbow, rt. Arm shoulder, neck.. ()
## 17701                                                                                   Dr. Brouwer was entering the first floor of beard hall parking lot through the north entrance of kerr hall and slipped and fell on tile. Twisted left shoulder, back and hip. ()
## 17702                                                      Dr. Crawford states she exited her vehicle; took one step, slipped and fell on black ice, refrozen from previous snow. She said she could not move for several minutes, fearing her left elbow was broken. ()
## 17703                                                                                                                                                                                                 Dr. Hill was treating an inmate when he received a needle stick ()
## 17704                                                                                                                                              Dr. Lance was performing and I & d abscess on an inmate when he accidentally stuck his finger with the used needle ()
## 17705                                                                                                                                                                                                                                    Dr. Wang fell and cut finger ()
## 17706                                                                       Dr. Yeom was trying to disassemble a part of the equipment provided by the company when he pushed the wrench to loosen the bolt, the tool slipped and he cut his wrist on the metal edge. ()
## 17707                                                                                                                                                     Drain cleanter and acid exploded in drain hitting EE in face, chest, arms and hands. Scarring from acid burns.
## 17708                                                                                                                                                                                                                                  Drainage catheter punctured thumb
## 17709                                                                                                                                                     Draining hot water into air void when rubber tubing dislodged and caused water to spill onto right foot/ankle.
## 17710                                                                                                                            Draining hot water storage tank, refilling, filled faster than expected, hot water blowed out top getting on EE's back and shoulders ()
## 17711                                                                                                                                Draining oil from fryer-had cleaning brush pushingdown in drain hole-hand slipped off brush handle into oil. Had gloves (rubber) on
## 17712                                                                                                                                                                                                                        Drank 2 cups of coffee with saliva in them.
## 17713                                                                                                                                                        Drawer fell out onto the floor, onto EE's foot causing mild swelling & tenderness. Contusion to right foot.
## 17714                                                                                                                              Drawing blood & was in process of disposing of needle in biohazard container. Upon inserting needle in container punctured right hand
## 17715                                                                                                                                                                                   Drawing blood and went to away the needle when the needle stuck in left thumb ()
## 17716                                                                                                                                                                                           Drawing blood fm pt, pushed safety button, stuck EE in left 2nd digit ()
## 17717                                                                                                                                                      Drawing blood from an inmate, holding needle, it flipped out of her right hand and stuck into her left finger
## 17718                                                                                                                                                                        Drawing blood from inmate placed needle into sharps sustain needle prick to rt index finger
## 17719                                                                                                                                         Drawing blood from patient and was disposing needle in sharps container missed the container and needle stuck index finger
## 17720                                                                                                                                              Drawing blood from patient when needle removed from vein reaised hand and accidently pricked lt thumb with used sharp
## 17721                                                                                                                                                               Drawing blood from patient when upon removing needle it flipped out of vein and punctured her finger
## 17722                                                                                                                                                                       Drawing blood from patient, needle in barrel brokesome how blood came pouring out pass glove
## 17723                                                                                                                                                                                   Drawing blood on inmate & entering vein, blood sprayed & splashed on open lesion
## 17724                                                                                                                      Drawing blood, punctured right middle finger with butterfly needle. Larry roediger (pa) called stated was a clean needle, nothing to be done.
## 17725                                                                                                                                                                        Drawing blood. Had finished task. Getting off stool to place # 21 fluids. Struck left thumb
## 17726                                                                                                                                                                                                      Drawing insulin from bottle and got stuck with a clean needle
## 17727                                                                                                                                                                                         Drawing labs client pulled hand back and needle stuck staff in rt thumb ()
## 17728                                                                                                                                                                              Drawing perasitic acid from bottle with syringe, acid sprayed out of crack in the cap
## 17729                                                                                                                                                                                  Dressed out for cell extraction training capt. Perry fell on top of EE's chest ()
## 17730                                                                                                                        Dressed resident- assisted to sit up-in process resident pulled employee, by right arm, over and onto resident-pain r. Shoulder to neck. ()
## 17731                                                                                                                                                                                              Dressing a resident during 8:00 am rounds, lower back started hurting
## 17732                                                                                                                                                                                        Dressing client, pull something while helping client transfer to wheelchair
## 17733                                                                                                                                                                               Dressing client-bending over clients bed and turn-ing client-felt pull in lower back
## 17734                         Dressing client-pulled shower chair out of way-turned around to get wheelchair and l. Leg went out from underneath, fell on bottom. On 10/17/11 added to incident report, standing water on the floor. L. Arm/shoulder/hand/wrist pain. ()
## 17735                                                                                                                                                                                                                          Dressing patient- scratched r. Forearm ()
## 17736                                                                                                                                                                                                                        Dressing patient. Severe pain to lower back
## 17737                                                                                                                                                                           Dressing resident after bath-floor slick-right foot slipped back pulling groin muscle ()
## 17738                                                                                                                                                                    Dressing resident-became agitated pushed employee backwards hitting wall with head and back. ()
## 17739                                                                                                                                                                                                                                 Drill bit bound up - jerk in drill
## 17740                                                                                                                                                                                                          Drill bit broke while EE, drilling puncturing indexfinger
## 17741                                                                                                                                                                                                                         Drill box fell off rack onto EE's rt foot.
## 17742                                                                                                                                                                                                                             Drill fell and landed on left thumb ()
## 17743                                                                                                                                                                                                                                                      Drill slipped
## 17744                                                                                                                                                                                                     Drill slipped amd the bit went through between two fingers. ()
## 17745                                                                                                                                                                                                   Drill slipped off screw and went through EE's left middle finger
## 17746                                                                                                                                                                                                     Drill was accidentally kneed into wrist causing puncture wound
## 17747                                                                                                                                                                                                   Drilled hole in concrete. Bit hit piece of ? & twisted his wrist
## 17748                                                                                                                                                                                            Drilling a hole in 2x4 plate. Plate twisted and cut thumb on left hand.
## 17749                                                                                                                                                        Drilling a hole in a steel beam above a suspended ceiling and some how some of the metal fell into EE's eye
## 17750                                                                          Drilling a hole through a dark grey colored piece of plastic(move to slow); increase speed on drill and damaged finger while holding the plastic. List injury as: left hand 4th finger ()
## 17751                                                                                                                                                          Drilling a piece of metal when the drill got caught and spun the metal into his hand causing a deep gash.
## 17752                                                                                                                                                               Drilling broken screw, took goggles off to inspect work. Spring slipped propelling dust into eyes ()
## 17753                                                                                                                                                                       Drilling completed, removed glasses & hard hat to wipe brow & concrete grit got into the eye
## 17754                                                                                                                                                                    Drilling hole for lock and jerked arm back and hitedge of door with rt elbow. Injured rt elbow.
## 17755                                                                                                                                   Drilling hole in 1/4 in metal w/a 1/2 in drill bitbit grabbed & took drill out of hands & it took finger & pulled it to one side
## 17756                                                                                                                                         Drilling hole in cover plate for light fixture. Drill bit caught in cover and turned cover causing laceration to l hand ()
## 17757                                                                                                                                                                                                             Drilling hole in furniture. Drill cut lt middle finger
## 17758                                                                                                                                                                                                                                     Drilling hole in panel box. ()
## 17759                                                                                                                                                               Drilling hole through metal sheet which got caught on drill bit and rotated into hand causing injury
## 17760                                                                                                                                                                                                                              Drilling hole, feet slipped on ladder
## 17761                                                                                                                                                           Drilling holes in the ceiling of avery dorm for anchored supports and something got under my glasses. ()
## 17762                                                                                                                                           Drilling large hole through brick wall, bit lockedup in hole, drill body turned inside handle causing laceration to neck
## 17763                                                                                                                           Drilling metal door going through second set metalplate the bit broke through & snapped & twisted the drill around.. Right wrist twisted
## 17764                                                                                                                                                Drilling overhead hole for a 1/4 inch anhor in the basement of reese and concrete dust and debris fell into ly eye.
## 17765                                                                                                                                                               Drilling phillips bit into wood/screw fell over and the phillips bit pentrated the left index finger
## 17766                                                                                                                                   Drilling thru wall to install new dryer in wash rmat unit 1. Squatted down on rt knee, and a piece of brick stuck into knee cap.
## 17767                                                                                                                                    Drilling w/hand drill on metal piece. Drill bit stuck & turned causing handle/drill to turn & quickly makng wrist turn & wrench
## 17768                                                                                                                                                                                                                                     Drilling wall dust blew in eye
## 17769                                                                                                                                                                                               Drilling, bit broke and drill my hand, broke a nearby piece of glass
## 17770                                                                                                                         Drinking @ water fountain, turned suddenly due to inmate behind him and hit upper left front tooth on water fountain - broke tooth in half
## 17771                                                                                                                                   Drinking soda & realized something was in his mouth. Spit it out and was stung on tongue by one of bees as they exited his mouth
## 17772                                                                                                    Drive north on us 19 when car in front stopped; stacey stopped car; car behind failed to stop hitting stacey in rear end. No injuries or body part specified ()
## 17773                                                                                                                                                                     Driver backed vehicle into a stationary pole positioned in the center of a daycare parking lot
## 17774                                                                                                                                                          Driver became unconscious and vehicle hit guard- rail. ***do not pay any more bills after d/s 2/26/02****
## 17775                                                                                                                                                                                                          Driver did not see oncoming car and pulled in front of it
## 17776                                                                                                                       Driver of auto in at intersection of wardblvd. And herring ave. When another auto tried to cross over into EE's lane, hitting on driver side
## 17777                                                                                                                                                             Driver of truck had to make sudden stop which slide & got my right foot caught between truck & dog box
## 17778                                                                                                                                Driver picked up box that contained extremely strong unidentifiable smell, forehead and right side of face and neck became irriated
## 17779                                                                                                                                Driver stopped for directions, as he re-entered traffic he turned into the rear bumper of a movingtruck and dented his front bumper
## 17780                                                                                                                                                                         Driver training at ncshp at high speed, driving lost control went off into wwooded area ()
## 17781                                                                                                                                                                                           Driver was backing out of a parking space and backed into an employee ()
## 17782                                                                                                                     Driver was pulling the pallet down the trailer when the handle of the pallet jack jerked out of his hand. Pinned him between jack and trailer.
## 17783                                                                                                                                                                          Drivers of ford van ran stop sign and hit EE's car. Wrists/chest/back/right hip are sore.
## 17784                                                                                                                                                                           Drivers side rear-end was hit by on-coming train resulting in rear-end damage to vehicle
## 17785                                                                                                                                                                                                                                 Driving & car/boat were rear-ended
## 17786    Driving 21 s toward elkin for home visit. It was raining really hard, I was in front of circle l restaurant, I went to turn on windshield wipers on higher speed when I noticed the vehicle in front of me with brake lights on. A car was turning l. I went ()
## 17787                                                                                                                                     Driving I/m to another facility; stopped at stop sign; looked both ways; pulled out in intersection& struck by another vehicle
## 17788                                                                                                                                                          Driving a 4x4 post into ground with post driver, missed post and hit head. Head injury, 2" gash in scalp.
## 17789                                                                                                                                       Driving a hole in a small piece of metal. Drill bit stuck causing the metal to spin and cut EE thumb. Laceration left thumb.
## 17790                                                                                                                                                                                    Driving a state car to apex for osdt and was hit from behind by another vehicle
## 17791                                                                                                                                                                                     Driving a state truck, and a vehicle hit EE from behind. Strain neck and back.
## 17792                                                                                                                                                                                                                                            Driving a state vehicle
## 17793                                                                                                                                                                                 Driving a state vehicle and ran through a red light collided with another truck ()
## 17794                                                                                                                              Driving a state vehicle and was a complete stop in traffic. Was rear-ended by another car and pushed into the vehicle in front of him
## 17795                                                                                                                                                                    Driving a state vehicle on hwy 43 north and struck a deer. Wearing seatbelt and was not injured
## 17796                                                                                                                                                    Driving a utility vehicle (john deere gator) droveoff the curb and the steering wheel hit him in thepelvic area
## 17797                                                                                                                  Driving and was struck on rt rear wheel which caused the van to turn into curb then landed in best buy parking lot. *** cm shirley poland 7909 **
## 17798                                                                                                                       Driving as passanger in van to tower 4, sitting sideways, van sliding door cracked, van took sharpturn, struck pool, van door closed on toes
## 17799           Driving back from raleigh, nc (had attended a conference for naeyc accreditation) at or around exit 100 judy was in the right lane and an 18 wheeler truck moved over into her lane, forcing her into the guard rail, causing her car to spin around. ()
## 17800               Driving back from raleigh, nc (had attended a conference for naeyc accreditation) at or around exit 100deborah was in the right lane and an 18 wheeler truck moved over into her lane, forcing her into the guard rail, and causing her car to spin.
## 17801                                                                                                                                      Driving back to office from home visit in state vehicle, car was stopped and was bumped on the back bumper passenger side. ()
## 17802                                                                                                                                                                      Driving back to office from inspection when she was either stung or biten by flying insect ()
## 17803                                                                                                                                                                                                       Driving back to raleigh other vehicle claims responsibility.
## 17804                                                                                                                                                                                                            Driving camp van when child threw football at EE's head
## 17805                                                                                                             Driving company van returning w/ individual from a day trip, following another company vehicle, when she went to stop, hit brakes, rearended other veh
## 17806                                                                                                             Driving crash attenuator truck pov hit attenuator. Listed injuries as: left forearm, left knee, left side lower back, left side rib area, and neck. ()
## 17807                                                                                                                            Driving dodge ram van while transporting inmates a grey honda hit van in rear which caused van to jerk to left. Felt stinging sensation
## 17808                                                                                                                            Driving dot truck to project to perform an inspection when (fell asleep and over turn the vehicle) scratch occured on right forearm. ()
## 17809                                                                                                             Driving down hillsborough rd conducting field contacts when a second vehicle pulled into oncoming traffic and ran into the passenger side of EE's vehi
## 17810                                                                                                                                                          Driving down hwy 158 and crossed center line ran under a tractor trailer and came to rest at edge of road
## 17811                                                                                                                                                                                                                 Driving down road and driver side window shattered
## 17812                                                                                                                                                                                                                             Driving down st to barricade off ditch
## 17813                                                                                                                                                  Driving drill machine, struck by briar bush in face. Scratched eye. First aid only at this time. No time lost. ()
## 17814                                                                                                                           Driving evening shuttle when back, neck & arm became tense and spasmed, EE realized it when he wouldopen and close the doors of the bus.
## 17815                                                                                                                                                      Driving farm tractor mowing corn stalks. Drove tractor across drain and bumped his elbow on tract-or console.
## 17816                                                                                                                                               Driving for home visit, vehicle collided with another vehicle @ intersection of thomas & atlantic st. In rocky mount
## 17817                                                                                                                                                                                            Driving from morganton to ashville EE stated he experienced chest pains
## 17818                                                                                                               Driving from raleigh in state vehicle after staff meeting. He was stopped waiting for accident ahead to clear. A large truck struck him from behind.
## 17819                                                                                                                                                                                                  Driving from winston salem local office to lexington local office
## 17820                                                                                                                                                                     Driving gator (grounds vehicle) and car in parkinglot backed into gator. EE states not injured
## 17821                                                                                                                                                                                   Driving golf cart when foot slipped off and got roll up underneath front tire ()
## 17822                                                                                                                                                           Driving home from a meeting when a car EE was driving hydroplaned & wrecked. No injuries released by Dr.
## 17823                                                                                                                                                                           Driving home from clemson sc. Slowed due to accident and semi-trailer rear-ended vehicle
## 17824                                                                                                                                                                                             Driving home from training in greenville, neck felt stiff and tight ()
## 17825                                                                                                                                 Driving home from work site, slowed to make right turn and was struck from rear by another vehicle. Whiplash to neck & upper back.
## 17826                                                                                                                                                                                            Driving home in state vehicle; stopped at redlight; rearended by suv ()
## 17827                                                                                                                               Driving in eden, nc. An oncoming car crossed over center line causing me to swerve & strike trash cans set along both sides of road.
## 17828                                                                                                                                                      Driving in low lighting checking the perimeter, ran across a trench and right front tire fell in the hole. ()
## 17829                                                                                                                                                     Driving in personal vehicle going to a community forum in jacksonville nc. EE was involved in a auto accident.
## 17830                                                                                                                           Driving in tpost with a tpost driver to install silt fence around soil pipe. The tpost driver was pulled out and scraped top of head. ()
## 17831                                                                                                                                                                                            Driving inmate transfer bus, bus struck another vehicle and overturned.
## 17832                                                                                                                                            Driving iron pin in hard ground using 8 pound maul to make a pilot hole for survey stake. List injury as: lower back ()
## 17833                                                                                                                                 Driving issued vehicle. Adverse weather conditionscaused vehicle to strike construction, barells, concrete wall & tractor trailer.
## 17834                                                                                                                          Driving motor cycle across lawn paralle to closed parking lot. Motorcyle hit hole in ground. Lacerated lip & fractured left cheek cavity.
## 17835                                                                                                             Driving motor pool vehicle from raliegh to belmont car was defective--more pressure was required on accelator than other cars. Rt leg/blood clot/knee.
## 17836                                                                                                                           Driving nail w/hammer. Nail was positioned near metal hinge. Driving nail, hammer missed nail catching EE's thumb between hammer & hinge
## 17837                                                                                                                                          Driving north on garner rd. Car merged over. Officer moved to left. Officer car and another car side swiped each other ()
## 17838                                                                                                                                               Driving old 5 ton military from raleigh to butner EE experienced discomfort which became painful in upper back area.
## 17839                                                                                                                                                                                                       Driving on 43 south, car pulled out in front of his truck ()
## 17840                                                                                                                                  Driving on I-40, a car loss control of her vehiclethe vehicle struck his truck three separate times driving EE into concrete wall
## 17841                                                                                                                                                                                             Driving on I-77 when lost control of vehicle & swerved into guard rail
## 17842                                                                                                                                                                        Driving on hwy 13 s, black truck pulled out from road, truck hit car on the drivers's side.
## 17843                                                                                                                                                                                                                          Driving on roxboro rd., was rear-ended ()
## 17844                                                                                                                                                                              Driving out an axle with sledge hammer and hand hit a metal guard puncturing hand. ()
## 17845                                                                                                                                                                                                            Driving p2p express bus and hurt his back while driving
## 17846                                                                                                                                                                                                    Driving pain truck w/air seat; bouncing off seat caused cyst ()
## 17847                                                                                                               Driving patrol car on duty began to make lt-turn onto rp-1400 another vehicle going east ran red lite struck EE's car. Inflamation sciatic nerve\\hi
## 17848                                                                                                                                                   Driving personal vehicle enroute to meeting. Made left turn into parking lot & collided w/oncoming pick-up truck
## 17849                                                                                                                                                                                   Driving personal vehicle from meeting on central campus to office at west campus
## 17850                                                                                                                              Driving personal vehicle west on varsity drive. Ncsu police vehicle exited parking lot and colided with lassiter's car right rear. ()
## 17851                                                                                                                                                                                                                               Driving personel vehicle to training
## 17852                                                                    Driving pickup truck, vehicle ahead of employee slammed on brakes causing employee to hit the vehicle. Employee was also hit from behind by vehicle. List injuries as: neck & both shoulders ()
## 17853                                                                                                                                                     Driving ppv I vehicle: fell asleep while driving, hit another vehicle and hit leg under dashboard of truck. ()
## 17854                                                                                                                               Driving returning from training in a marked patrolcar, he swerved to avoid deer lying in the roadwayand collided with curb in median
## 17855                                                                                                                                                           Driving school vehicle on I-85 when accident occured. **iw does not have ph#- er has given msg to call**
## 17856                                                                                                                              Driving south on us 1 to rockingham for complaint investigation. Van ran off road due to wind force van hit sign and broke windshield
## 17857                                                                                                                                                                     Driving state car and was rear ended while stopped at light while performing field contacts ()
## 17858                                                                                                             Driving state car to the balden office, when a car ran red light & hit state car. Chest swollen, rt ribs broken, bruise lt knee, rt toe next to pinky.
## 17859                                                                                                                                                                                                 Driving state car, was struck from behind by another vehicle subro
## 17860                                                                                                             Driving state car. Sitting in front of bldg waiting for a person to cross street at crosswalk when other car slammed on brakes but hit EE in rear bump
## 17861                                                                                                             Driving state issued veh. Stopped at a red light, when car hit him from behind, causing his veh. To impact veh. In front of him. Forehead/neck/lw back
## 17862                                                                                                 Driving state van to museum. Stopped at stop light. Vehicle behind could not stop and hit van in the rear. Experiencing soreness and stiffness due to whiplash. ()
## 17863                                                                                                                                                                                                        Driving state veh EE hit in rear by other veh at stop sign.
## 17864                                                                                                                                                                        Driving state vehicle and was stopped at stop light. Was hit from behind by another vehicle
## 17865                                                                                                                                                                                        Driving state vehicle clients, stopped at light, rear ended.... Injury head
## 17866                                                                                                                                                                                      Driving state vehicle for long period of time. Left side of back muscle spasm
## 17867                                                                                                                            Driving state vehicle from prison. Put on brakes to stop & heard squalling tires & looked in rear view mirror & watched red van hit her
## 17868                               Driving state vehicle on the way back to the facility from checking road squad. Sitting stationary in state vehicle at intersection of us-19e ward st when the vehicle I was occupying was struck from behind by another vehicle. ()
## 17869                                                                                                                                                  Driving state vehicle to be fueled when EE was hitfrom behind by another vehicle and the lt side of back was hurt
## 17870                                                                                                                             Driving state vehicle to facility for survey, deerran in front of vehicle, and deer was struck left front and drivers side of vehicle.
## 17871                 Driving state vehicle to training in marion, nc when the car in front of me stopped suddenly and I had to brake. When I came to a stop a car in the rear struck my car and caused my head to ship and then it knocked me into the car in front. ()
## 17872                                                                                                                    Driving state vehicle traveling south on hwy 117. School bus ahead stopping to unload children, slowed down to stop - was hit hard from behind.
## 17873                                                                                                                                                        Driving state vehicle when another vehicle hit back of state vehicle. Upon impact his neck was jerked back.
## 17874                                                                                                                                       Driving state vehicle when another vehicle turned across traffic causing accident. Plt bob lucas/jennifer gudac 919 965 8184
## 17875                                                                                                                                       Driving state vehicle while performing duties was rear-ended by another vehicle knocking her vehicleforeward. Abdominal pain
## 17876                                                                                                                                                                                   Driving state vehicle, leaving site visit, pulled out in front of another car ()
## 17877                                                                                                                Driving state vehicle, south on salisbury st. EE was traveling through intersection of salisbury & lane, vehcile struck driver side of EE's vehicle
## 17878                                                                                                                       Driving state vehicle, waiting to make left turn when oncoming vehicle crossed center line & struckstate care, EE went to right over console
## 17879                                                                                                                                                                     Driving state vehicle. Other vehicle failed to stop & clm't hit other vehicle on driver's side
## 17880                                                                                                                     Driving straight ahead and another vehicle pulled into his path from a side road and there was a collision. Pain in neck, back, hip & headache
## 17881                                                                                                                   Driving the inmate transfer bus, with inmates records and medical charts, lifting inmates medical charts and records, feels he hurt his back. ()
## 17882                                                                                                                                                                   Driving the van traveling on us 1 then rear ended by another vehicle while stopped in traffic ()
## 17883                                                                         Driving to a home visit in state car. Bitten by a brown recluse spider near by backside pants belt line on the left side. Co-worker had brushed spider off of her arm while in the car. ()
## 17884                                                                                                                                                                                          Driving to a work related meeting and car was struck by another vehichle.
## 17885                                                                                                                                                                                                                  Driving to basic, lost control hit telephone pole
## 17886                                                                                                                                                           Driving to bus terminal to provide medical services, pouring rain, car hydroplaned, hit by 18 wheeler ()
## 17887                              Driving to client house, t-boned by another vehicle while driving. Approached whati thought was a 4-way stop intersection, but it wasn't when I continued through, the other vehicle was coming and hit my car on the driver side. ()
## 17888                                                                                                                    Driving to gbso to attend a meeting, tire blew outcar shook & swerved. At meeting stood up from chair & fell--legs were numb. Chest/upper back.
## 17889                                                                                                                                                                                                                     Driving to meeting, EE's car was hit from back
## 17890                                                                                                                                                                      Driving to pick up new keys for units new office space when he was involved in a car accident
## 17891                                                                                                                                                                                                        Driving to the post office when a truck ran a stop light ()
## 17892                                                                                                                                                       Driving to uncch for statistical course offered throughirss' when an elderly lady rear ended back of her car
## 17893                                                                                                                                                  Driving to work from home(duty violation) in fletcher nc to temporary assignment in black mtn injured neack/back.
## 17894                                                                                                                                    Driving tractor on morrill drive with gloves on and hand slipped off steering wheel and finger got caught in steering wheel. ()
## 17895                                                                                                                                 Driving tractor when large cled of soil was hit causing steering wheel to spin back & catch his finger in spokes of steering wheel
## 17896                                                                                                                                                           Driving transfer bus when automobile ran stop signand struck bus in front of rear wheels on drivers side
## 17897                                                                                                                                                      Driving truck in a cramped cab for a long period of time and the top of right foot went sleep and became numb
## 17898                                                                                                                                            Driving truck picking up cardboard around the market, went to get out of truck, put left leg down, felt left knee twist
## 17899                                                                                                                                                                                        Driving utility cart, hands got twisted and caught thumb in steering wheel.
## 17900                                                                                                                                       Driving utility vehicle, ran over bump in sidewalkthat jerked steering wheel of vehicle. Wrist popp ed due to violent motion
## 17901                                                                                                                     Driving van & heard inmate creating noise near side door. Twisted around to check on inmate. Backstarted hurting after turned around to drive.
## 17902                                                                                                                                                                                                   Driving van on courier run, spider bit him in van while on route
## 17903                                                                                                                            Driving veh when another veh came into my lane making me swerve to avoid hitting it. Ran over patch of ice & went off road into a ditch
## 17904                                                                                                                                                   Driving vehicle that was involved in an accident. Small bruise on left knee. Right foot sore--hurts flexed, back
## 17905                                                                                                    Driving vehicle to client's lady ran a stop sign and ran into the side of my vehicle. She hit her and pushed her into a billboard and the air bags deployed. ()
## 17906                                                                                                                                                                                                          Driving vehicle when something bit employee me 2 times ()
## 17907                                                                                                                                  Driving vehicle. Rocks fell from passing concrete truck and broke front passenger door window. Shattered glass hit his passenger.
## 17908                                                                                                                                                      Driving west on us64, hit curb, struck hwy sign, struck utility pole, struck fence post, then came to a stop.
## 17909                                                                                                                                                                                                                              Driving when hit from behind by truck
## 17910                                   Driving wooden stake in ground to tie caution tape around in a work zone are. Left hand on wooden stake approx. 8 inches down on stick and was driving it in the ground with a hammer when it spentered off and went in hand. ()
## 17911                                                                                                               Driving work vehicle, & was stopped behind anotherveh. When she was rear ended by a truck causing her to hit veh. In front. Neck/shoulder/back/head.
## 17912                                                                                                                                                                                                                Driving--passed out while taking inmates to work ()
## 17913                                                                      Driving-then was involved in a motor vehicle collision. Arlen had a very deep laceration on his head above his left eye that required 34 stitches. He had several other minor lacerations. ()
## 17914                                                                                                                                   Driving. Slowing down to make a rt turn and was rear ended by a company van. Was wearing seat belt injured neck, back, and head.
## 17915                                                                                                                                                                       Driving/private vehicle rear ended state vehicle. List injuries as: neck & right shoulder ()
## 17916                                                                                                                                                                    Drop filing and purging of records. Continously, repetitive keying number into computer system.
## 17917                                                                                                                                                                           Drop in blood pressure with heart palpitations. Extreme dehydration causing fainting. ()
## 17918                                                                                                                                                              Drop of inmate's blood fell on board & EE inadvertently touched blood droplet w/lt thumb & forefinger
## 17919                                                                                                                                                                                                    Droped equipment bent over to pick them up lower back popped ()
## 17920                                                                                                                                                                                                                         Dropped 30 gal mixing bowl & injured wrist
## 17921                                                                                                                                                                                                                                       Dropped a bookcase on toe ()
## 17922                                                                                                                                                                                Dropped a glass jar onto a rolling cart, jar brokecut rt hand that was holding cart
## 17923                                                                                                                                                                                Dropped batch of time cards, bend down to pick them up, lost balance, fell to floor
## 17924                                                                                                                                                                                                        Dropped bottle of dab. Spill on right hand middle finger ()
## 17925                                                                                                                                                                                           Dropped bottle of virex 256disinfectant-deodorizer& it splashed in eyes.
## 17926                                                                                                                                                                                               Dropped box of four one gallen bottles of cleaningfluid on left foot
## 17927                                                                                                                                                                   Dropped breaker screw into panel area. Reached in w/screwdriver and made contact w/live portions
## 17928                                                                                                                                      Dropped cell phone at her locker. When she reached down to pick it up and come back up her head hit the corner of her locker.
## 17929                                                                                                                                                                                                                                     Dropped computer tray on foot.
## 17930                                                                                                                                                                                                                                       Dropped countertop on finger
## 17931                                                                                                                                                                                                                                 Dropped dance floor peice on foot.
## 17932                                                                                                                                                                    Dropped duty belt and as she bent to pick it up knee popped and sharp pain went through knee ()
## 17933                                                                                                                                                         Dropped form in cell walked past floor in front of shower, slipped on wet floor, no wet floor sign down ()
## 17934                                                                                                                                               Dropped glass bottle containing acetonitrile and ammonium acetate. Bottle broke splashing chemicals on both legs. ()
## 17935                                                                                                                                                                                                       Dropped ice chest on toe & top of foot. Bruise to right foot
## 17936                                                                                                                                                  Dropped large heavy box onto handcart. The metal handle of the cart flew forward and hit the rt side of EE's head
## 17937                                                                                                                                                                      Dropped letter on floor, bent to pick up & struck right hand on counter, bruising right hand.
## 17938                                                                                                                                                   Dropped mail on floor, bent down to pick the mail up when she came up she hit bottom of metal table injured head
## 17939                                                                                                                                                  Dropped nail, reached down to pick it up. Put his hand on chair & it rolled out. He fell & caught weight on elbow
## 17940                                                                                                                                            Dropped paper pocket templates on floor. Stepped on one of them and slipped hitting left knee cap on concrete floor. ()
## 17941                                                                                                                                                                                                                                     Dropped paper shredder on foot
## 17942                                                                                                                                                                                                Dropped piece of paper. Bent over to pick it up & felt pain in back
## 17943                                                                                                                                                                                   Dropped plywood sheet on right foot while moving from one truck to another truck
## 17944                                                                                                                                                                       Dropped ramp of large utility trailer on rt foot in preparation to load a piece of equipment
## 17945                                                                                                                                                                                                                                 Dropped solution of acetic acid ()
## 17946                                                                                                                                                   Dropped syringe after use & picked it up without paying close attention. Needle punctured skin on right forearm.
## 17947                                                                                                                                                                                                                              Dropped trash can bruising right toe.
## 17948                                                                                                                                       Dropped travel log and bent down to pick it up. Heard a popping sound from right shoulder & arm went numb for a few seconds.
## 17949                                                                                                                                           Dropped writ, bent down to pick it up he put his hand on the door casing and the door slammed on his right middle finger
## 17950                                                                                                                                       Droppomg off some broken down equipment. Getting out of truck to proceed to bed of truck. Stepped on drain & fell into drain
## 17951                                                                                                                                                                                                                          Drops of nitric acid brushed across face.
## 17952      Drove approximately 1, 200 miles in three days to complete five teen groups. The continuous driving irritated my visceral neuropathy causing extreme pain. Based on my history of bilateral pulmonary emboli my physician recommended that I go to the er. ()
## 17953              Drove to tower 8. After leving tower 8, parked the vehicle in the parking lot & was walking toward post 6 began to get dizzy. Passed out at tower 1, beside the flower bed close to post 6. Transported by ems off the unit for medical attention. ()
## 17954                                                                                                                                                                                                                                            Drowning. (death claim)
## 17955                                                                                                                                                        Dryer had been pulled for cleaning, while pushing dryer back pinky fgr caught between dryer & woodendivider
## 17956                                                                                                                                                                                     Dryer shocked EE when pushed button to start- numbness in lt shoulder and hand
## 17957                                                                                                                          Drying hand with paper towels slepped back ward and stepped on tic -tac (candy) which caused me to fall and hit the sink with my back. ()
## 17958                                                                                                                   Drying off client, another client came in, tried to get out of his way, he clawed at my face, blocked his hand grabbed hair & scratched my neck.
## 17959                                                                                                                                                                    Drying resident and resident was pulling and holding on to EE and his bed. I tried to pull away
## 17960                                                                                                                                                                                                             Drying water up in bathroom, slipped on water and fell
## 17961                                                                                                                                                           Due heavy fog EE missed step when walking into vocvocational bldg. Lt hand wrist shoulder back & lt knee
## 17962                                                                                                                           Due to accusations of sexual harrasment & being advised he could not perform his duties EE is suffering from traumautic emotional shock.
## 17963                                                                                                                                                                                                    Due to broken door handle, van door closed on employee's finger
## 17964                                                                                                                                                                 Due to car accident EE's back does not give him support to be able to do masonry work, lower back.
## 17965                                                                                                                                                     Due to carbon monoxide exposure suffered severe heheadache, ringing in ears, dizziness, & difficultybreathing.
## 17966                                                                                                                                                                                         Due to catching foot on mat, EE fell sustaining strain to rt knee and foot
## 17967                                                                                                                                                      Due to computer being on desk type table, she is experiencing wrist pain from typing notes for patients seen.
## 17968                                                                                                                                                              Due to constant use of finger, EE has developed carpal tunnel and tendonitis in her wrist and fingers
## 17969                                                                                                                                       Due to construction at bldg employee suffered fromheadaches, dizziness, and weakness as a result of carbon monoxide exposure
## 17970                                                                                                                                                                                  Due to construction at building employee suffered from carbon monoxide poisoning.
## 17971                                                                                                                  Due to construction in bldg, suffered from acute allergies causing mucous build up in the eyes & swelling of the eyes. Severely allergic to dust.
## 17972                                                                                                                                                                                    Due to construction in building employee suffered from carbon monoxide exposure
## 17973                                                                                                                                                                                  Due to construction in building employee suffered from carbon monoxide poisoning.
## 17974                                                                                                                                                  Due to construction in building employee suffered from headaches, nausea as a result of carbon monoxide exposure.
## 17975                                                                                                                                Due to construction in building employee suffered from severe headaches, dizziness, tearing of the eyes, and weakness, disoriented.
## 17976                                                                                                                                                                                                         Due to construction in building exposure to carbonmonoxide
## 17977                                                                                                                                                                                  Due to construction in the bldg employee suffered from carbon monoxide poisoning.
## 17978                                                                                                                                                                                    Due to construction in the building EE suffered from carbon monoxide poisoning.
## 17979                                                                                                                                                                                     Due to construction in the building, EE suffered from carbon monoxide exposure
## 17980                                                                                                                                                                                                                    Due to continous typing, right arm became sore.
## 17981                                    Due to continual exposure to harmful fumes in work location coming from a vent located directly above the employee's desk the employee has begun to have excessive coughing and chest pains to the point of hospitalization. ()
## 17982                                                                                                                  Due to continual walking on the cement floors employee has developed pain in feet and legs. Swelling and sharp pain through out legs and feet. ()
## 17983                                                                                                                  Due to exsessive wet weather, office was flooded with standing water. EE was opeinging outside door to dry carpet and lacerated her right finger.
## 17984                                                                                                                                                                                                                Due to full time use of computer, EE has gotten cts
## 17985                                                                                                              Due to heavy rain he was running from front door of defendant's home to state car, slipped in mud, hyper extending right knee. Right knee and right a
## 17986                              Due to high winds, employee attempting to close windows at the batthouse. To reach windows employee sat on counter top & hopped of counter and landed flat footed on cement floor. Employee felt a jolt up left knee causing pain. ()
## 17987                                                                                                                                                                     Due to icy conditions, EE slipped and fell, hittingher head on the cement in the parking deck.
## 17988                                                                                                                                                             Due to improper ergonomics at workstation-EE claims carpal tunnel symptoms noticed a couple months ago
## 17989                                                                                                                                                              Due to infestation EE was bitten several times by unknown insect. Bites are causing scars & blisters.
## 17990                                                                                                                                             Due to lifting & pulling residents, back has hurt since she started the job(came to murdoch center from whitake school
## 17991                                                                                                                                                                                                   Due to lighting anomily of shade, EE missed step on new sidewalk
## 17992                                                                                                                                    Due to low water couldn't back boat all the way soi pushed boat off the trailer in doing so popped my back. Injured lower back.
## 17993                                                                                                                                                                                                                         Due to mental stress he had a heart attack
## 17994                                                                                                                                                                                                        Due to mold in office it has triggered severe asthma attack
## 17995                                                                                                                                                                                   Due to poor lighting conditions, joann fell down north steps of riddick hall. ()
## 17996                                                                                                               Due to prolonged exposure to pool (chlorine and unable to wear dry clothes between client's attendance) a reaction occurred causing an infection. ()
## 17997                                                                                                                                            Due to prolonged exposure to pool (chlorine and unable to wear dry clothes), reaction occurred causing an infection. ()
## 17998                                                                                                                                                 Due to putting on brakes to avoid aother vehicle and the seat belt tightened up around her neck causing some pain.
## 17999                                                                                                                                                                              Due to repetative clerical work, she developed numbness in hands, right shoulder pain
## 18000                                                                                                                   Due to repetitive load bearing pivoting around knee, he has developed ache in right knee accompanied by occasional sharp pains in right knee. ()
## 18001                                                                                                                                                                             Due to repetitive nature of sign language interpreting caused ganglion cyst on rt hand
## 18002                                                                                                                                                                    Due to snow/ice, was checking on equipment and maintenance area and slipped on ice and fell. ()
## 18003                                                                                                                                                    Due to temperture, he got sun poison, red rash on both arms and legs, blister, red rash on chest, back and neck
## 18004                                                                                                                                                                                    Due to the demands of the job from manager EE states he became highly emotional
## 18005                                                                                                                 Due to the excessive walking and climbing while touring cargill plant for job development, pulled muscles in leggs making it difficult to walk. ()
## 18006                                                                                                                                                                             Due to the over flowing tolilets I stepped in water and slipped on tile flooe and fell
## 18007                                                                                                                                                                                               Due to uneven pavement, I twisted my ankle and fell on the ground ()
## 18008                                                                                                                                                                                                Due to use of force EE came down on lt knee - bruised rt arm also..
## 18009                                                                                                                        Due to way work area was set up EE was suffering from multiple injuries; pain in neck, back & shou lder area. An ergonomics study was done.
## 18010                                                                                                                     Due to weather condition from hurricane floyd, EE was killed in a auto accident while trvlng to wrk truck went down in washed out area of road
## 18011                                                                                                                                          Due to writing, lifting, opening heavy objects and janitorial duties have caused a carpal tunnel syndrome in both wrists.
## 18012                                                                                                                                    Duing a use of force with an inmate, inmate grabbed the baton the EE was holding. When inmate let go, EE fell on her right hand
## 18013                                                                                                                                                                                                                                      Dump truck hit road squad bus
## 18014                                                                                                                           Dump truck was on wrong side of road & got too close to road crew, both mirrors hit & glass from bus mirror broke & flew in his left eye
## 18015                                                                                                                                                                                       Dumping sewage from a transfer bus and dropped manhole cover on his foot. ()
## 18016                                                                                                                                                                                                      Dumping trash from a barrel I felt a pain in my lower back ()
## 18017                                                                                                                                    Dumping trash into dumpster, sheet metal sticking through box caught arm causing cut. Left forearm inside area deep laceration.
## 18018                                                                                                                                                                                               Dumpster was full and was packing garbage down to make room for more
## 18019                                                                                                                       Duplicate claim of claim#01056483. Duplicate claim. Do not pay any bills under this claim. *************************************************
## 18020                                                                                                                      During 2 man carry, patient fell forward causing staff to lose her footing and trip, falling to floor, striking her left knee on the floor ()
## 18021                                                                                                                                                           During 3 man carry to quiet room, patient kicked staff directly under the nose and on the left shoulder.
## 18022                                                                                                                                                                                                                          During 3 person carry left wrist twisted.
## 18023                                                                                                                                                                               During I: I intervention, patient became aggitated and kicked staff in the left knee
## 18024                                                                                                                                                                                                      During Mr, Pt/EE fell to floor, twisting left arm/shoulder ()
## 18025                                                                                                                                                                         During a 2 person carry of a patient, the patient turned and bit staff on her right thumb.
## 18026                                                                                                                                              During a 2 person walk with client, client droppeddown and when I tried to catch him, I felt catch in right shoulder.
## 18027                                                                                                                                                                     During a behavior interview staff jerked to prevent injury- lt neck - shoulder - arm pit area.
## 18028                                                                                                                                 During a behavioral intervention/ardirection, trip-ped over consumer's legs and fell to floor. Caughtself from falling and lt arm.
## 18029                                                                                                                                                                              During a cell extraction a tweak in his knee while placing an inmate in restraints ()
## 18030                                                                                                                                                                                                        During a cell extraction fellow officers fell on his leg ()
## 18031                                                                                                                                                                      During a cell extraction fellow officers fell on the officer causing him to hurt his knees ()
## 18032                                                                                                                                                                                                          During a cell extraction he was struck in the left eye ()
## 18033                                                                                                                                               During a cell extraction officer and inmate fell against the sink causing the officer to injury his right forearm ()
## 18034                                                                                                                                         During a cell extraction officer feels she pulled a muscle in her right leg and hurt her arm (did not specify what arm) ()
## 18035                                                                                                                                                                       During a cell extraction officer fell to the floor injuring his right wrist and left knee ()
## 18036                                                                                                                                                During a cell extraction officer was hit with a baton on the right arm and 3rd and 4th fingers of his right hand ()
## 18037                                                                                                                                                       During a cell extraction training, c/o entered thehcon cell hitting her left elbow on the frame of the door.
## 18038                                                                                                                                                     During a cell extraction, officer fell on the inmate then another officer stepped on officer smith's l knee ()
## 18039                                                                                                                                                  During a cell extraction, while trying to gain control of the inmate, officer bridges injured his right thumb. ()
## 18040                                                                                                                                                                                        During a cell extration pinned inmate & hurt shoulder & right upper forearm
## 18041                                                                                                                                  During a cell search, an inmate became disruptive and it was necessary to use force. During struggle, EE's right hand was injured
## 18042                                                                                                                                                                                        During a cell search, inmate became aggressive and kicked officer in elbow.
## 18043                                                                                                                                                                                                       During a chemistry experiment glass was broken. Right arm ()
## 18044                                                                                                                                                                    During a class change students began to fight, employee injured rt arm separateing the students
## 18045                                                                                                                                 During a code 4 force was used on an inmate, Mr. Furlow slipped and fell on top of the inmate, hurting back and right pinky finger
## 18046                                                                                                                                              During a code 4 officer bowers was placing a resistant inmate to the floor and the inmate struck my hand and knee. ()
## 18047                                                                                                                                                                                     During a cook-out event EE lit grill and it blew up burning left arm and neck.
## 18048                                                                                                                   During a counselor staff meeting, EE began laughing at a humorous comment. EE laughed so hard he fell out of his chair and his head on the floor
## 18049                                                                                                                                                                               During a curfew check EE states he stepped off porch onto ice twisting his rt ankle.
## 18050                                                                                                                  During a custody hearing, a juvenile ran from the court room. EE was injured trying to subdue the juvenile. Neck sprain from being jerked around.
## 18051                                                                                                                                                                                          During a fight b/t two inmates that were bleeding EE was exposed to blood
## 18052                                                                                                                    During a fight btwn tow inmates in buildng 4 was standmg btwn imates and was scratched on right hand and blood from one inmate on right forearm
## 18053                                                                                                            During a fight with intoxicated subject., EE injured third finger right hand. Fractured right 3rd finger, abrasions, r hand, swelling soreness-rib area
## 18054                 During a fire drill evacuation, employee was coming back into the building with an individual and when she stepped in the doorway, she slipped and fell on her left wrist, left side and on her back. Her shoes were wet from dew on the grass. ()
## 18055                                                                                                                       During a foot pursuit of a violator, EE lost balance while jumping a chain link fence causing a puncture wound to lt hand and finger scratch
## 18056                                                                                                                                                                                               During a foot pursuit, EE turned his right ankle, causing sharp pain
## 18057                                                                                                                                                                               During a hearing, defendant reached across dest & hit EE in lt eye & cheek with fist
## 18058                                                                                           During a home visit of juvenile #685758 employee was approached by 4 dogs. 1 of the dogs bit employee on the left causing a knot on the left leg but did not break skin.
## 18059                                                                                                              During a leisure outing, client went into behaviorclt hit EE & pushed him to the ground hitting EE. Head/neck/chest/back both shoulders, arms & hands
## 18060                  During a live burn training event, instructor was observing an outside crew when a backdraft occurred, causing the fire to come through a window and set the roof fire and debris to catch on fire. Smoke overcame him causing him to retreat. ()
## 18061                                                                                                                                                                    During a live fire training eval - fire got out of hand and heat fomr fire burned EE's rt cheek
## 18062                                                                                                                                     During a locker blade, EE observed tape on back side of locker. Pulled tape off, razor was behind-EE cut on left index finger.
## 18063                                                                                                                                                                       During a locker search, I bent down to check locker when I overly extended my lower back. ()
## 18064                                                                                                                                                                                                   During a maneuver at basic training the officer injured his knee
## 18065                                        During a meeting to discuss an hr action danny had a spell where he began sweating, his eyes rolled back, his tongue rolled out. He seemed to faint and was unresponsive for a few minutes. 911 was called and responded ()
## 18066                     During a monthly team meeting, some staff chose to play volleyball as a wellness activity. Employee fell backwards landing on her lower back. When she attempted to get up, became faint anc c/o of back pain. Ems transported to hospital. ()
## 18067                                                                                                                                     During a motor vehicle violation arrest, EE stepped into a hole in the ground at a private residence & strained his left foot.
## 18068                                                                                                                                                                                        During a move to a new office, EE was lifting, moving furniture, unpacking.
## 18069                                                                                                                                      During a normal lab experiment as part of a class, the instructor and a student had a reaction to the uv light being used. ()
## 18070                           During a patient carryout on the stone mountain trail employee injured their left shoulder. The weight and stress on employee's arm from carrying the patient from the trail in a stokes basket caused pain employee's left shoulder. ()
## 18071                                                                                                                                                                                                           During a performance EE tripped on an elevated platform.
## 18072                                                                                                                                                                                             During a performance EE was stabbed by a sharp sewing needlt in thigh.
## 18073                                                                                                                   During a personal restraint of an individual, employee fell on table in the dayroom and hit back area and was scratched on the both forearms. ()
## 18074                                                                    During a photo shoot for the college, during the heart walk, he tripped on a concrete slab and fell causing a contusion to his right elbow and lacerations to his right knee and right hand. ()
## 18075                                                                                                               During a physical confrontation with immate EE injured his rt elbow when taking immate to the floor EE rt elbow and forearm came in contact w/ floor
## 18076                                                                                                                         During a physical fitness class, EE particpated inpatrol vehicle test. EE pulled a male subject from front passenger veh. Strain low back.
## 18077                                                                                                                            During a physical restraint Ms. Mclean injured her right hand and pinky finger. She thinks it May have happened when she was kicked. ()
## 18078                                                                                       During a physical restraint of a student, Ms. Scriven fell on her right wrist and both knees. She had brusing on both knees and her right arm and a strained right wrist. ()
## 18079                                                                                                                                                                 During a physical restraint procedure, another employee fell on his right ankle and twisted it. ()
## 18080                                                                                                                                                      During a physical restraint, Ms. Gunn fell to the floor with a student, staff and supervisor on her left leg.
## 18081                                                                                                                                                                                     During a pic major kenneth fell into a chair and received a midstemal scratch.
## 18082                                                                                                                                                                            During a pic, EE's wrist was bent backwards and later in the evening it began to swell.
## 18083                                                                                                                                                          During a pic, pt was fighting while attempting topit. Pt jumped on EE and slammed his head into the wall.
## 18084                                                                                                                                                During a prone intervention the resident's leg got caught between the EE's leg causing EE to fallon her right knee.
## 18085                                                                                                                                                           During a restraint a students blood came in con- tack w/ a cut on wrist. Cut was caused by the resident.
## 18086                                                                                                                                                         During a restraint of a client, other staff let go of client's legs and staff was kicked right lower back.
## 18087                                                                                                                                                                                         During a restraint of a student, the staff was bitten on her left forearm.
## 18088                                                                                                                                                                                       During a restraint procedure, employee fell down and bumped left forearm. ()
## 18089                                                                                                                                                                                                    During a restraint was bitten on his left forearm by a student.
## 18090                                                                                                                                                         During a restrant of a juvenile the juvenile and the school rescource officer fell on Mr. Hickeys shoulder
## 18091                                                                                                                                                         During a riot employee was trying to gain control of juveniles, injured rt hand, left side in the rib area
## 18092                                                                                                                    During a riot on campus a student was assaulting another student, trying to restrain student employee was wrestled to the follr and then pushed
## 18093                                                                                                                                                                                 During a routine cell extraction EE's rt thumb wascaught and twisted in the shield
## 18094     During a routine liquid flushing procedure, a leak was observed. Applied pressure was off for inspection. Attempting to tighten the fitting with a wrench, the cap was loose, the cap shot off about six inches causing a laceration to her right index finger
## 18095                                                                                                                                                                                            During a run in complience with sbi training, EE'sfoot started to hurt.
## 18096                                                     During a scheduled home visit with a family enrolled in the infant toddler program, the mother informed me that three out of five members of her family had received a positive screening for tuberculosis. ()
## 18097                                                                                                          During a search 5 razor blades were found in the block & placed in a folded paper. He was smoothing out paper when razor came through and cut left thumb.
## 18098                                                                                                                                                               During a search an offender put up a struggle. Theoffender and officer fell over a locker and a desk
## 18099                                                                                                                                                     During a search praticum, officer truitt and instructor tripped casuing officer truitt to injure his left arm.
## 18100                                                                                                                                                                                            During a search-inmate became combative and scratched EE's left forearm
## 18101                                                                                                             During a self defense take down maneuver with officer rodney smith, he jammed his left shoulder while trying to stop his head from slamming into the m
## 18102                                                                                                                  During a shake down of the unit, assigne to e & f dorm her right hand got pinned between the wall & cabinet area while searching for contrabands.
## 18103                              During a snow event the employee was assisting in a operatoin to put a salt spreader on a dump truck. Employee stepped backwards and fell onto a traffic conte that was behind him. List injury as: right side under the right arm ()
## 18104                                                                                                                                                        During a staff basketball game EE jumped up and smashed his right elbow on a flat top post as he came down.
## 18105                                                                                                                                                                             During a staff basketball game, EE stepped on someones foot and turned his left ankle.
## 18106                                                                                                                        During a struggle in attempt to handcuff suspect, EE rt middle finger impacted suspect teeth, which broke skin. 2 cuts on rt middle finger.
## 18107                                                                                                                                                                             During a struggle with a student, EE sprained her right ankle and right wrist twisted.
## 18108                                                                                                                                                                    During a struggle with inmate, inmate and sgt fell then inmate spit bloody saliva in sgt eye ()
## 18109                                                                                                               During a student restraint Mr. Metellus was hit in the face. He and the student fell to the floor and Mr. Metellus strained a muscle in his neck. ()
## 18110                                                                                                                                                During a study abroad trip to turkey, employee washiking with students in a national park, fell and injured finger.
## 18111                                                                                           During a subject control arrest technique ground defense with a student employee pulled on a resistance/counter resistance with hands and felt a pull in his shoulder ()
## 18112                                                                                                                                                                                                    During a t-hold on an individual, employee injured her back. ()
## 18113                                                                                                                                                            During a takedown move landed on left side. Elbow dug into left side rib cage below the nipple line. ()
## 18114                                                                                                                                                                                                        During a takedown move, I was slammed down on rightshoulder
## 18115                                                                                                                                                                                                           During a team run felt something pop in my right knee ()
## 18116                                                                                                                      During a therapeutic restraint of a student, staff was bitten on the side of his neck, head butted and slammed against wall and to the floor.
## 18117                                                                                                                                                                                  During a theraputic hold, patient swung behind and struck me under my left eye ()
## 18118                                                                                                                                                    During a tornado drill, a patient sat down on floor on top of employee's right knee, causing it to hyperextend.
## 18119        During a training class on 01/14/12, during the last burn of the day, employee was on the second floor of the residence. Employee stated there was a flash over and he used his right forearm to break out a window. He fell onto a canopy on the porch. ()
## 18120                                                                                                                                                                     During a training exercise a student pushed EE's arm too far behind his back and dislocated it
## 18121                                                                                                                                             During a training exercise called "lifeboat", wheneveryone in the circle turned loose of each other, I slipped & fell.
## 18122                                                                                                                  During a training exercise--consist of fall & takedown technique. EE landed on right knee and heard a loud pop knee cap & lower leg went outward.
## 18123                                                                                                                                                                                          During a training session employee was injuried in hand cuff take down ()
## 18124                                                                                                                                                           During a two man lift to change a client, a strain occurred in the upper right back and shoulder area ()
## 18125                                                                                                                                              During a use of force EE was attempting to controlan assaultive inmate when she was steuck inadvertently with a baton
## 18126                                                                                                                                                          During a use of force his right elbow was forced in the wrong direction, pain in right elbow and shoulder
## 18127                                                                                                                                      During a use of force on inmate, EE got his left hand caught between the inmate and the door jam left index finger laceration
## 18128                                                                                                                                                                                                                        During a use of force restraining an inmate
## 18129                                                                                                                                                                                                     During a use of force right hand got caught between objects ()
## 18130                                                                                                                                                                               During a use of force, an inmate kicked him is the left knee popping it backwards ()
## 18131                                                                                                                                                                                                            During a use of force, exposed to blood from the inmate
## 18132                                                                                                                                        During a use of force, inmate kicked me on my lt wrist and left knee when she was being picked up and placed into a vehicle
## 18133                                                                                                                                                                                During a use of force, inmate spit in her face -- striking her near her bottom lip.
## 18134                                                                                                                                                                                   During a use of force, officer struck inmate in the head area w/ her right hand.
## 18135                                                                                                                                                        During a use of force, the inmate hit him in the face left eye, causing blood to get on him from the inmate
## 18136                                                                                                                                                                                                During a use of force. Alleges struck in left eye by inmate fist ()
## 18137                                                                                                                                                   During a veh search EE discovered mobile meth lab in rear seat of veh, while searching veh inhaled caustic fumes
## 18138      During a vehicle chase the suspect hit a pole & backed up & hit the front of employees vehicle at a high rate of speed. Suspect traveled away from employees vehicle and attempted to flee and eventually struck employees vehicle head on. Back & neck sore.
## 18139                                                                                                                               During a vehicle search EE discovered a mobile meth lab on the rear seat of vehicle, while searching vehicle, inhaled caustic fumes.
## 18140                                                                                                             During a wrkshop presentation participants(which EE was one)were asked to engage in a grp activity showing the need for cooperation. There (see notes)
## 18141                                                                                                                                                           During acl client became aggressive-jerking/ pulling/kicking hitting employee- employee noted back pain.
## 18142                                                                                                                                                                 During activities with patient, staff was tripped by patient, causing him to fall on his left knee
## 18143                                                                                                                                                                                    During activity in an occupational therapy lab class EE fell to floor on rt hip
## 18144                                                                                                              During adjustment of a grain drill a pin slipped due to rash conditions ans caused rt hand to come in contact with catter pin causing lac. To rt hand
## 18145                                                                                                                                                                       During adl rounds, client pulled away-hitting EE in mouth, scratching gums with finger nails
## 18146                                                                                                                                During adl's, client attempted to bit EE. Placed rt hand between client and rn (block bite). Client grabbed EE rt hand and squeezed
## 18147                                                                                                                                                                                                                     During adl, client twisted and bent right hand
## 18148                                                                                                                                                           During adls-resident started to fall backwards-caught w r. Arm-arm was bent and felt pop in r. Elbow. ()
## 18149                                                                                                                                                                During afternoon inmate count she stepped into a hole when right foot twisted and fell on left knee
## 18150                                                                                                                                       During aggressive and required 4 point restraint, patient bit staff on left upper arm tearing his shirt & breaking the skin.
## 18151                                                                                                                                                                                                During ais training crdt breakfall felt popping in left shoulder ()
## 18152                                                                                                                                                                                              During altercation & nci w/ patient, staff injuredhis right shoulder.
## 18153                                                                                                                                                                                              During altercation EE/pt fell to floor, EE landed on left shoulder ()
## 18154                                                                                                                                                                                     During altercation w/inmate EE came in contact w/pepper spray burning left eye
## 18155                                                                                                                  During altercation with inmate, EE was struck in head and shoulder. Left lip laceration and separated shoulder (right). Attny rep claire campbell
## 18156                                                                                                                                                   During altercation with inmate. Per med. Staff, EE sustained knot near l temporal area, blurred vision in l eye.
## 18157                                                                                                             During altercation with inmates, EE was struck in the head and back by inmate. Sm. Abrasion to r inner elbow, headach, and back pain, oc pepper expos.
## 18158                                                                                                                                                                                                         During altercation with patient was pushed into door frame
## 18159                                                                                                                                                                                             During altercation with patient, EE was struck and went to the ground.
## 18160                                                                                                                                                 During ambulance ride to hospital with immate having seizure immate coughed blood and saliva on EE aface and shirt
## 18161                                                                                                                                                                          During an activity group the client grabbed EE right wrist, twisted it and pulled it down
## 18162                                                                                                              During an altercation with a patient trying to attack him, ths employee and patient fell onto a desk causing employee to strike his left knee against
## 18163                                                                                                                                                                                                 During an altercation with an client, sherry was scratched and bit
## 18164                                                                                                           During an altercation with an inmate he had to be placed on his bed and her knee went into the bed and then hit right lower leg on table in the cell. ()
## 18165                                                                                                                                                      During an anticipated use of force alleges injuredhis right forearm & knuckle & complained of lower back pain
## 18166                                                                                                                                                                                 During an anticipated use of force was bitten on left arm several times by inmate.
## 18167                                                                                                                                                                                               During an anticipated use of force was bitten on right arm by inmate
## 18168                                                                                                                            During an arrest attempt, EE was exposed to suspect blood and o. C. Spray in both eyes, injuredboth knees, and abrasions to right hand.
## 18169                                                                                                                                                                         During an arrest of a probationer, a scuffle ensured and EE was bitten, right index finger
## 18170                                                                                        During an arrest of a suspect, suspect resisted and was wresteled to the ground where ees rt hand was scraped on concrete causing scrapes & possible injury to rt wrist. ()
## 18171                                                                                                                                                                 During an autopsy I went to grab an instrument and accidentally stabbed my finger with my blade ()
## 18172                                                                                                                          During an emergency fire evacuation drill, employee was pushing a wheelchair in hallway and another staff behind hit employee's ankle. ()
## 18173                                                                                                                                                         During an emergency situation a student passed out, EE assisting moving the student as she was in a chair.
## 18174                                                                                                                                       During an enforcement contact she closed the car door on her right hand injuring her three middle fingers on her right hand.
## 18175                                                                                                                                                      During an episode of pt aggression EE attempting to stop a pt from attacking another pt. Injured rt shoulder.
## 18176                                                                                                                   During an eri, EE was trying to break up a fight between 2 pts, EE went to the floor with pts twisting left knee/injured right bottom of foot ()
## 18177                                         During an evaluation at client home, went to sit down in a chair in kitchen, chair slid/moved several inches backwards causing her to lose balance and twist her neck, back and shoulder on the right side of her body. ()
## 18178                                                                           During an evaluation with a child, the child raised a toy in excitement and unintentionally struck the examiner in the face, resulting in a bruise and knot on the bridge of the nose ()
## 18179                                                                                                                                    During an excerise his partner pushed his chest area while practicing a technique and he heard something pop in his left chest.
## 18180                                                                                                                                                                       During an exercise opening mouth wide, jaw cracked. Lower jaw infected taking antibiotics ()
## 18181                                                                                                                                                                 During an exercise she feel on her back and had her leg under the other leg hurting her left knee.
## 18182                                                                                                                                                    During an incident, a student was swinging a wooden board from a chair and hit the employee on the left arm. ()
## 18183                                                                                                                                                                                                       During an injection, staff was distracted by another patient
## 18184                                                                                                                                                                                      During an inmate altercation was struck on the left side of head by inmate ()
## 18185                                      During an inspection, EE was attempting to remove a very tight fuel cap from a truck. After cap suddenly broke free, EE completed inspection. When EE returned to his car & raised his arm, he felt pain in left shoulder. ()
## 18186                                                                                                                                                                                                During an interaction with a student-EE was infested with head lice
## 18187                                                                                            During an nci refresher while doing gun rack for bear hug, employee felt a catch in left wrist just as her thumb went up and at that moment couldn't move the thumb. ()
## 18188                                                                                                                                                                                            During an office move EE hand was jammed between file cabinet and desk.
## 18189                                                                                                                      During an office relocation, she alleges lifting desk drawers, file folders and supplies on and off, a wheeled cart later she felt back pain.
## 18190                                                                                                                       During an ot evaluation in child's home. Child threw a ball & EE moved to avoid ball & injured neck. Pain down neck, rt shoulder & rt spine.
## 18191                                                                                                                                                                                 During animal exam, injured back lifting animal and returning her to recovery area
## 18192                                                                                                                                                            During annual clean-up boxes were moved. Temporarywall shifted and struck EE in back of head. Contusion
## 18193                          During annual crdt refresher training, an officer was on top of po carter conducting the guard in/guard out manuever. The officer was on top trying to get out of guard in and was using knuckles in officer carter's ribs to get out. ()
## 18194                                                                                                                                                                     During annual firearm training, EE injured right shoulder from recoil of rifle and/or shotgun.
## 18195                                                                                                                                                                                                               During annual training dropped on right shoulder. ()
## 18196                                                                                                            During apprehension of subject who was under arrest a scuffle ensued. Injured shoulder while struggling with subject. Pulled muscle & sprain l shoulder
## 18197                                                                                                                                                                                         During apt training in staff development, staff injured her right wrist ()
## 18198                                                                                                                                             During arrest pat-down search revealed razor blade& crack pipe. Pricked by razor blade as he attempted search parollee
## 18199                                                                                                                                                                During assistance with the restraint of a client, staff was kicked on the left side in her ribs. ()
## 18200                                                                                                                        During autopsy exam, EE was taking out the neck organs, she cut herself with a scalpel blade. She was wearing 2 set s of gloves at the time
## 18201                                                                                                                                                                                                                 During autopsy, knife slipped and cut her lt thumb
## 18202                                                                                                                                                                     During autopsy, while cutting skin on chest of corpse, EE accidently lacerated his left thumb.
## 18203                                                                                                                                                          During bacis training-EE was simulating hand- cuffing -the other EE kneed EE in the face breaking her jaw
## 18204                                                                                                                                                                                                                     During basic care, client bit EE on left elbow
## 18205                                                                                                                                                              During basic law enforcement training student stepped on EE's little finger causing splinter fracture
## 18206                                                                                                                                                                     During basic training EE states partner grabbed him injuring his neck.. (works @ harnett corr)
## 18207                                                                                                                  During basic trng - when rising from kneeling position - felt a pop on the outside area of lt ankle accompanied by sharp pain & burning sensation
## 18208                                                                                                                                      During basket ball game EE and student went down for ball on floor-while bent over the EE was hip on top of head by students.
## 18209                                                                                                                                                                               During basketball game involving staff & clients and EE fell on his palm of her hand
## 18210                                                                                                             During basketball game with students, student stepped on grate over manhole and broke it. Student handed grate to staff, who did not have a grip on it
## 18211                                                                                                                                                                           During basketball practice ball hit EE on rt side of hand causing hand to twist and turn
## 18212                                                                                                                                                          During basketball practice the basketball jammed the tip of her right middle finger on her right hand. ()
## 18213                                                                                                                             During basketball practice, EE lost balance when bumped by another player and fell back on outstretched left arm. Fracture to left arm
## 18214                                                                                                                                                    During bath time, pushing client out of stall into shower chair, shower rod/curtain rod fell on top of head. ()
## 18215                                                                                                                                                                                             During bathing procedure of client EE began to fell pain in groin area
## 18216                                                                                                                                          During baton drill EE was struck several times in the lt arm by a padded practice baton-lt arm became bruised and swollen
## 18217                                                                                                                        During baton training employee was doing two hand forward strike against redman & twisted his right foot between mats and injured his ankle
## 18218                                                                                                                                                        During baton training sgt. Blake performed a shin kick to the instructor in the redman suit (martie wilson)
## 18219                                                                                                              During baton training struck by student with batonin an area that was not covered by red man suit, protective glove slipped due to sweating by instru
## 18220                                                                                                                                                               During baton training, he was bag holder, partner struck the bag missing & hitting his pinky finger.
## 18221                                                                                                                                                                                                         During baton training, rt knee popped when hitting the mat
## 18222                                                                                                                                                                                           During batting practice EE's right hand was struckby the ball.... Broken
## 18223                                                                                                                                                                                              During battle sene in play accidently hit in mouth w/butt of prop gun
## 18224                                                                                                                                                              During bcot while participating in a one leg take down to do a break, fell and heard something pop ()
## 18225                                                                                                                     During bed change, assisting to move resident up on a draw sheet and felt sharp burning pain from neck down back and upper leg (left side). ()
## 18226                                                                                                                                                          During bicycle training for police officers cyclindown steps the jostle irritated his wrists causingpain.
## 18227                                                                                                                                               During bicycle training for police officers, employee fell from bike while executing a high speed tactical exercise.
## 18228                                                                                                                                     During block inspection when he confiscatted two pens that were unauthorized upon destruction of the pens his rt thumb was cut
## 18229                                                                                                                                                                                        During block instruction EE somehow injured lt knee - doesn't know how/when
## 18230                                                                                                 During board walk pile driving operation an eyebolt of a logging mat with a chain attached to the boom of an excavator came out of the wood. Struck EE in chest ()
## 18231                                                                                                                                                                                                                           During boxing EE injured his right wrist
## 18232                                                                                                                                                                                     During boxing exercise EE sprained rt wrist when threwing a punch at opponent.
## 18233                                                                                                                                                                                                                                  During boxing injured head & neck
## 18234                                                                                                                                                                                                    During boxing practical - EE threw a punch and injured rt wrist
## 18235                                                                                                                                                                                              During boxing practical - EE was struck in the face causing nosebleed
## 18236                                                                                                                                                                                              During boxing practical - EE was struck in the face injuring his nose
## 18237                                                                                                                                                                                              During boxing practical-EE struck another cadet and sprained rt thumb
## 18238                                                                                                                                                                                                During boxing practical-EE threw a punch and dislocated lt shoulder
## 18239                                                                                                                                                                                                                    During boxing practice EE injured left shoulder
## 18240                                                                                                                        During boxing sustained an injury to her right shoulder. Noticed stiffness & soreness in her right shoulder & had trouble raising right arm
## 18241                                                                                                                                                                                     During break falls, his neck hit the mat, he had a sharp pain in lower neck ()
## 18242                                                                                                                                                                                        During cadet trainging EE was hit on the hand witha expandable striking bag
## 18243                                                                                                                      During camping trip while riding bus, bus hit stump causing it swerve to side. Resident chair rolled back and struck EE in shoulder/neck area
## 18244                                                                                                                        During car trip to washington dc to pull costumes for teahtre, the car EE was riding in hit a slickpatch, turn 180 degress, went into ditch
## 18245                                                                                                                                 During cell entry, another employee stepped on Mr. Gothorps right foot causing him to twist his ankle. He said he heard it pop. ()
## 18246                                                                                                                                                                       During cell extraction helmet came off forehead and hite inmate () ****contusion to forehead
## 18247                                                                                                                                                                                    During cell extraction hurt arms as upper right flank pinning of inmates arm ()
## 18248                                                                                                                                                                                                  During cell extraction inmate gased employee by throwing feces ()
## 18249                                                                                                                                                                                                      During cell extraction inmate punched officer in the face. ()
## 18250                                                                                                                                                                               During cell extraction inmate pushed hands underneath face shield and scratched face
## 18251                                                                                                                                                                        During cell extraction inmated scratched right forearm with fingernails. Assault by inmate.
## 18252                                                                                                                          During cell extraction of two inmates, no physical force was used. The next morning, EE had dull pain in let shoulder and lt arm was sore
## 18253                                                                                                                                                                                                             During cell extraction team member fell on left leg ()
## 18254                                                                                                                                                                                    During cell extraction trainig had panic attack due to heat and nervousness. ()
## 18255                                                                                                                                                                                                    During cell extraction training EE hurt neck & lt middle finger
## 18256                                                                                                                 During cell extraction training EE playing part ofinmate. Other officers were trying to remove EE from cell, EE's chest area under arm was injured
## 18257                                                                                                                                                                 During cell extraction training EE was subdued by fellow trainees-causing contusion to rt shoulder
## 18258                                                                                                                                                                                                     During cell extraction training EE's rt knee was over extended
## 18259                                                                                                                                                       During cell extraction training another officer stepped on my left ankle trying to get to the other side. ()
## 18260                                                                          During cell extraction training employee was wearing the red man suit (acting as inmate) and was struck on the left side falling to the ground and hitting his head jarring his teeth. ()
## 18261                                                                                                                                                                     During cell extraction training noticed a red bump on left hand, started to swell and itch. ()
## 18262                                                                                                                                                                                                                   During cell extraction training pulled muscle ()
## 18263                                                                                                                                       During cell extraction training, EE was in line & got struck; fell to mat. Officer behind EE in linefell on EE's left ankle.
## 18264                                                                                                                                                       During cell extraction training, EE was inside cell underneath fellow EE. Extra weight was on herright foot.
## 18265                                                                                                                                                                                    During cell extraction training, fell to the floor, staff fell on top of me. ()
## 18266                                                                                                                                                              During cell extraction training, several participants feel on right foot, crushing it in the concrete
## 18267                                                                                                                                               During cell extraction training, went into mock cell at community college. During training shoulderand neck injured.
## 18268                                                                                                                                                                                            During cell extraction training-EE walked into bunk striking right knee
## 18269                                                                                                                                                                             During cell extraction training-EE was pushed in the chest and fell on metal bed frame
## 18270                                                                                                                                                                                                 During cell extraction training-co-worker fell on EE's right ankle
## 18271                                                                                                                                                                       During cell extraction training; blocked instructor w/shield and felt pain in right hand. ()
## 18272                                                                                                                                                           During cell extraction while trying to gain control of inmate, right arm was hit against hard object. ()
## 18273                                                                                                                                    During cell extraction, EE slipped on substance on floor. Then tried to gain control of inmate and fell again on his lt forearm
## 18274                                                                                                                                                                                                During cell extraction, inmate tried to pull my riot helmet off. ()
## 18275                                                                                                              During cell extraction, shield on face helmet lost a screw causing the shield to come loose striking EE in mouth, loosening teeth and cutting gum/lip
## 18276                                                                                                                                                                                                                  During cell extraction-inmate hit EE in left knee
## 18277                                                                                                                                                                                          During cell extractions, inmate resisted EE. EE hit wall during struggle.
## 18278                                                                                                                                                                                                       During cell extration inmate scratched employee's right arm.
## 18279                                                                                                                          During cell inspection, inmate stepped thru cuffs, bringing hands to his front, and swung at EE, hitting him in the lt ear with the cuffs
## 18280                                                                                                                                                                                          During cell search checking bed area and got stuck by a tattoo needle. ()
## 18281                                                                                                                                                                                              During cell search got stuck by needle on right hand- first finger ()
## 18282                                                                                                                                                                                  During cell search the search dog lunged at me and bit me on left arm and leg. ()
## 18283                                                                                                                                                                During cell searches several inmates became agitat-ed and aggressive and they began to assult staff
## 18284                                                                                                                              During cell searches several inmates became agitated and aggressive and they began to assult staff - soft tissue injury back and neck
## 18285                                                                                                                                           During cell searches several inmates became agitated and aggressive and they began to assult staff- injury to left wrist
## 18286                                                                                                                                              During change of shift, cut left arm on carner of file cabinet and cut right arm when door of pharmacy was opened. ()
## 18287                                                                                                                                                                            During check & chanage resident became upset and hit employee on r. Wirst with fist. ()
## 18288                                                                                                                             During check & change holding resident up by gait belt-resident began to fall-assisted to chair- felt pain in l. Mid to lower back. ()
## 18289                                                                                                                                                During check & change holding resident's hand to keep from hitting and resident bit 2 middle fingers on r. Hand. ()
## 18290                                                                                                                                                                                                 During check & change patient became aggressive-bit on l. Wrist ()
## 18291                                                                                                                                                                                             During check & change patient became upset and kicked in left knee. ()
## 18292                                                                                                                                                         During check & change resident jerked knees upward connecting with right jaw. Later noted pain in neck. ()
## 18293                                                                                                                                                                                                                  During check & change resident kicked in nose. ()
## 18294                                                                                                                                                              During check & change resident pushed employee into door-resulted in hitting back on edge of door. ()
## 18295                                                                                                                                                                                              During check & change, patient headbutted in forehead-above l. Eye ()
## 18296                                                                                                     During check & change- turned resident onto their side resulted in feeding tube becoming detached-fluids splashed in emp. Face, mouth and corner of l. Eye. ()
## 18297                                                                                                                                                                              During check & change-assisting reposition a resident in bed-felt pull in low back ()
## 18298                                                                                                                                              During check & change-bent down to place resident's foot on foot rest of w/c and punched in l. Side of lower back. ()
## 18299                                                                                                                                                                                        During check & change-patient became aggressive an elbowed in r. Breast. ()
## 18300                                                                                                                                                                   During check & change-patient kicked leg up hitting on l. Outer eyebrow and breaking glasses. ()
## 18301                                                                                                                                                                                  During check & change-patient pushed into corner of wardrobe-pain r. Mid-back. ()
## 18302                                                                                                                                During check & change-patient unsteady-fell backwards into emp. Emp. Caught and fell hitting back against wall and shower chair. ()
## 18303                                                                                                                                                                                              During check & change-resident grabbed r. Upper arm and scratched. ()
## 18304                                                                                                                                                                                                               During check & change-resident kicked in l. Knee. ()
## 18305                                                                                                                                                           During check and change resident aggressive-slammed emp. Into box mounted on wall-hitting l. Shoulder ()
## 18306                                                                                                                                                                                 During check and change resident hit employee in face (left jaw, eye, and ear). ()
## 18307                                                                                                                                                                                    During check and change resident kicked in nose and l. Lower lip-cutting lip ()
## 18308                                                                                                                                                                            During check and change turning resident and repositioning up in bed-noted back pain ()
## 18309                                                                                                     During check and change while trying to change resident, resident kicked at my left hand and made contact with left thumb. Jamming thumb back into my hand. ()
## 18310                                                                                                                                                                   During check and change, a resident got away from a coworker (hct) and hit employee in mouth. ()
## 18311                                                                                                                                                                      During check and change, resident grabbed employee's left wrist/hand and squeezed/twisted. ()
## 18312                                                                                                                                                                                                           During check and change-resident shoved arm into ribs ()
## 18313                                                                                                                                                              During check change patient aggressive-kicking while attempting to dress-kicked in mouth/chin area ()
## 18314                                                                                                                                                                             During check/change resident became aggressive and grabbed right hand and squeezed. ()
## 18315                                                                                                                                          During check/change resident became agitated, grabbed r. Hand/fingers bending backwards, bending r. Forearm backwards. ()
## 18316                                                                                                                                                                                                   During check/change resident ran over l foot with wheelchair. ()
## 18317                                                                                                                                                                              During check/change, attempted to roll resident toward emp-felt pop/pain low back. ()
## 18318                                                                                                                 During check/change-rolled resident toward wall to remove wet bedding from underneath- when rolled back towards employee felt pain in low back. ()
## 18319                                                                                                                                                   During chemical reaction. The reaction exploded with huge sound. After that my right ear was something wrong. ()
## 18320                                                                                                                                                                                     During child care safty exercise-EE was adjusting seat and injured left thumb.
## 18321                                                                                                                                                                                    During child nci re certification employee felt a pop in her left knee area. ()
## 18322                                                                                                                                                                                                         During chk. & chg. -resident headbutted in r. Forehead. ()
## 18323                                                                                                                            During class (laboratory) employee inserted funnel into glass column, column broke and cut near knuckle of middle finger on right hand.
## 18324                                                                                                                  During class break student became aggressive toward staff and m/r had to be used. EE & student fell to floor in the process. EE hurt lt shoulder.
## 18325                                                                                                                                                                  During class performing movement using the hands on the floor, EE felt pain shoot up in left arm.
## 18326                                                                                                                                       During class podium had broken bottom ledge & EE'sfoot struck extending screw which is rusted causedlaceration of right foot
## 18327                                                                                                                                            During clean up day, EE was lifting and carrying various supplies and felt a pull in her right lower leg near her ankle
## 18328                                                                                                                                                                                                      During client intervention EE felt her ribs pop on right side
## 18329                                                                                                                                                              During code blue I helped with bagging patient. I placed hand under neck needle was stuck in lt hand.
## 18330                                                                                                                                                                                    During combat shooting, shoot gun recoiled hitting left hand against barricade.
## 18331                                                                                                                                                                                        During combat training EE was running a course andslipped twisting rt knee.
## 18332                                                                                                                                                            During complaint survey of facility employee was bitten by small white bugs which were in the facility.
## 18333                                                                                                                                 During compliance inspection EE was possibly exposed to asbestos-EE not in immediate area and length of exposure less than 2 hours
## 18334                                                                                                                              During confrontation with inmate, EE was kicked and punched in the face and upper body ------------ atty represented ----------------
## 18335                                                                                                                         During constructioin waste removal, the EE was as carrying wood scraps to the dumpster when a needlein the scraps puntured his left wrist.
## 18336                                                                                          During construction of a wooden sign, the top board had not yet been permanently secured, upon relocating the sign the top board fell and hit employee on top of head. ()
## 18337                                                                                                                                                      During controls, restraints, defense techniques training (crdt), head & neck was trapped & neck was strained.
## 18338                                                                                                                                                       During cots initially injured in crdt training, then again during firearms training for certification as c/o
## 18339                                                                                                                                                                                          During count, slipped on wet floor. Twisted lower back and right knee. ()
## 18340                                                                                                                                                                During course of cell search came in contact with something that caused rash on right lower arm. ()
## 18341                                                                                                                                                           During course of insturction in escape from mount techniques, felt sharp pain down lower back on rt side
## 18342                                                                                                                                                                                     During course of job EE exposed to asbestosis which developed into mesothelina
## 18343                                                                                                                                                                                                During cpi training course, knee buckled and employee fell to floor
## 18344                                                                                                                                                  During crdt (bcot), performing arm take down when left foot got caught in the mat causing his left knee to twist.
## 18345                                                                                                                                                                   During crdt basic training officer required to execute breakfall technique falling backwards. ()
## 18346                                                                                                                                                                                                                         During crdt employee injured left thumb ()
## 18347                                                                                                                                                                                             During crdt employee twisted shoulder during a ground defense move. ()
## 18348                                                                                         During crdt in-service training, practicing a combat technique when the officer he was wrestling with took him down and he land on the mat wrong and hurt his shoulder. ()
## 18349                                                                                                                                                                                                                                               During crdt training
## 18350                                                                                                                          During crdt training - he was the aggressor duringa knife attack. The other person blocked & attem-pted a take down and twisted my elbow.
## 18351                                                                                                               During crdt training EE injured lt wrist EE doesntknow exactly how/when she injured it, either durinfalls, strikes or blocks in unarmed self defense
## 18352                                                                                                                   During crdt training c/o jones was performing outside forearm to radial nerve accidently hit my forearm causing her right wrist to pop and swell
## 18353                                                                                         During crdt training employee was demonstrating a 2-man take down procedure. As he was falling he caught himself on the way down with left hand, jarring left shoulder. ()
## 18354                                                                                                              During crdt training employee was participating inan exercise and when she was pushed to the floor she hit her left side chest areas and heard a pop.
## 18355                                                                                                                                                                 During crdt training employee was thrown by coworker who then landed on emp. Right leg and knee ()
## 18356                                                                                                                                                                                                   During crdt training fell on ribs during traingingin break falls
## 18357                                                                                                                                                                During crdt training injured left knee, when she turned right and came (fell) down on her left knee
## 18358                                                                                                                                               During crdt training mount escape, rolled asst instructor off of employee, his heel struck the inside of right ankle
## 18359                                                                                          During crdt training the employee was injured during a guard-in technique. While being thrown the employee heard a popping noise near his ribs and they began to hurt. ()
## 18360                                                                                                                                                                                              During crdt training was thrown by fellow officer & landed on lt knee
## 18361                                                                                                                                                        During crdt training while doing mount escape technique employee sustained hairline fracture of left ankle.
## 18362                                                                                                                   During crdt training while executing the guard technique she was tossed & landed on her rt arm causing right arm to push into her right rib cage
## 18363                                                                                                                                                                            During crdt training, EE's foot got caught in the gap in the mat, causing foot to twist
## 18364                                                                                                                                  During crdt training, cppo powell was performing adefensive move to block a kick & was struck on lt hand by co-workers shin bone.
## 18365                                                                                                                                                               During crdt training, mount escape. Christopher wasthrown off his opponent & landed on his shoulder.
## 18366                                                                                                                                                                                                                        During crdt training, partner grabbed hand.
## 18367                                                                                                                                                  During crdt training, w/ two officer assist take down, EE heard a pop in left shoulder when he landed on the mat.
## 18368                                                                                                                                                                                       During crdt training, when advised to tuck the knee he injured rt knee & leg
## 18369                                                                                                                                    During crdt training, while perfroming a techniquemy partner grabbed me around my neck. I felt my neck pop and my face got hot.
## 18370                                                                                                                                    During crdt training--while practicing the mount escape crdt technique. EE was rolled off onto leftshoulder. Injured left ribs.
## 18371                                                                                                                                            During crdt weapon retention class the rt hand wasrolled toward the body while trying to maintain control of the weapon
## 18372                                                                                                                                              During crdt while being taken down to the mat her arm was pulled hard and her neck was pulled when she hit the mat ()
## 18373                                                                                                                                                                          During crdt, employee fell to floor with arms behind her and partner's knee in her hip ()
## 18374                                                                                                                        During crdt, employee was performing a break fall and when going down on the mat, stated that she felt something popping in her stomach. ()
## 18375                                                                                                                                                                                                           During crdt, hit mat with shoulder blade & began to hurt
## 18376                                                                                                                                                                                   During cri training, transport board w/co-wkr was dropped on EE's right thigh ()
## 18377                                                                                                                                                                                       During crime scene investigation in the woods, emp was bitten by chiggers ()
## 18378                                                                                                                                                                                                                              During crot training left knee popped
## 18379                                                                                                                During crt officer walker was doing the break fallroutine while recovering to a standing position, she attempted to stand & fell back onto the mat.
## 18380                                                                                                                                                    During crtd inservice training, injury to rt elbow& cut to right middle finger. Involved in a self defense move
## 18381                                                                                                                                                               During curfew checks for intensive caseload felt what seemed to be insect or spider bite on his head
## 18382                                                                                                                                                                                   During daily work activities employee was exposed to an inmate with tuberculosis
## 18383                                                                                                                                                                           During defensive tactic training EE fell to groundand injured his left shoulder and rib.
## 18384                                                                                                                                                                                                 During defensive tactics EE was kicked in left ribby another agent
## 18385                                                                                                                                                                                          During defensive tactics drill EE landed wrong and felt pop in lower back
## 18386                                                                                                                                                                                               During defensive tactics noticed pain around right side of rib cage.
## 18387                                                                                                                                                                                                          During defensive tactics practice EE injured rt shoulder.
## 18388                                                                                                                                                          During defensive tactics training EE attempted to arrest an offender and fell on mat injuring rt shoulder
## 18389                                                                                                                                                   During defensive tactics training EE involved in some ground grappling techniques-felt intense painnext morning.
## 18390                                                                                                             During defensive tactics training EE stepped on mat seam and twisted left ankle, then injured his right knee/leg when he stepped to brance himself. ()
## 18391     During defensive tactics training in ncshp basic school employee was struck in the head by an instructor during a drill. This then caused the employee to lose his balance. In attempt to regain his balance his body weight shifted onto his right knee causi
## 18392                                                                                                                                                      During defensive tactics training with student- EE fell to the ground and injured rt knee-acl tear in rt knee
## 18393                                                                              During defensive tactics training, EE was reaching around the potential suspects shoulder and locking arms to secure the firearm for weapon retention when felt left shoulder pull ()
## 18394                                                                                                                                                         During defensive tactics training, coworker ran into EE with either arm or shoulder and jammed EE's finger
## 18395                                                                                                                                                       During defensive tactics training-EE did not have his defense up and was struck in the face by an instructor
## 18396                                                                                                                                                                   During defensive tactics trng EE's hand was injured by an unknown mechanism. Rt hand was painful
## 18397                                                                                                                                                                                                                 During defensive training EE landed on rt shoulder
## 18398                                                                                                                                            During defensive training, the EE was holding a ag for her partner, stepped forward and pulled her left calf muscle. ()
## 18399                                                                                                                                                 During demonstration of crdt technique (mount escape) defendant role upon being dismounted landed onleft shoulder.
## 18400                                                                                                                                        During demonstration the use of the epipen instructor mistakenly stuck herself with a live pen instead of a trainer pen. ()
## 18401                                                                                                                                                              During dental injection for extraction of tooth of5 1/2 year old child, needle stick left index fingr
## 18402                                     During developmental testing of young child on the floor, I shifted positions after administering a test item to document observations/notes. My left knee became stuck in a bent position, was painful and unable to walk. ()
## 18403                                                                                                                                               During direct supervision of juveniles, staff attempted to restrain juveniles that exhibited assaultive behavior. ()
## 18404                                                                                                                                                                                          During disaster training EE had to transport a "resident" to a safe area.
## 18405                                                                                                                                                                              During disinfection of operatory, EE snagged her finger in bur attached to hand piece
## 18406                                                                                                                                 During drill peper spray was used under the door, air conditioner was on, shirt was on the door, was given shirt to cover my face.
## 18407                                                                                                                                                                                                             During drill, injured rt thumb while attempting arrest
## 18408                                                                                                                 During drunk buster programs, I picking up/loadingtraffic cones. Felt a sharp shooting pain in lowerback and when walking pain continues down leg.
## 18409                                                                                                                During dynamic baton training EE lost a lot of water. At end of drill, EE suffering from headache& nausea. Transported to wake medical emer. Center
## 18410                                                                                                                During emergency restraint intervention (eri), EE had to place pt in Mr As pt was lowered to floor EE landed on left hip. EE felt a strong pain. ()
## 18411                                                                                                                                                                                  During emergency restraint of resident to floor, staff injured his right knee. ()
## 18412                                                                                                                                                                          During emergency restraints intervention with patient employee was kicked in the chest ()
## 18413                                                                                                                                                 During enforcement stop EE exited his vehicle and was attacked and bitten by a pit bulldog. Bite to left upper arm
## 18414                                                                                                                                                     During equipment installation there was sudden l elbow and forearm pain and snapping noise from elbow area. ()
## 18415                                                                                                                                                                                                                                During eri EE injured left elbow ()
## 18416                                                                                                                                                                                                                               During eri EE injured right thumb ()
## 18417                                                                                                                                                                                                                       During eri EE pulled something in lower back
## 18418                                                                                                                                                               During eri EE was placing pt in restraints, pt's leg came loose, kicked EE in back a couple times ()
## 18419                                                                                                                                                                                                                              During eri EE's back began hurting ()
## 18420                                                                                                                                                                                                            During eri pt knee'd EE in the groin area, no injury ()
## 18421                                                                                                                                                                                     During eri pt scratched EE in multiple areas: r hand, r wrist, chest, l ear ()
## 18422                                                                                                                                                                                                          During eri pt spit in EE eye, & EE re-injured lower back.
## 18423                                                                                                                                                                                                      During eri, EE & pt fell to floor, EE landing on left knee ()
## 18424                                                                                                                                                                                                    During eri, EE & pt fell to floor, hitting right elbow on floor
## 18425                                                                                                                                                                                                   During eri, EE believes he struck his left hand on pt's tooth ()
## 18426                                                                                                                                                                                                                      During eri, EE butted heads with co-worker ()
## 18427                                                                                                                                                                                                                           During eri, EE fell hitting right hip ()
## 18428                                                                                                                                                                                                             During eri, EE fell to floor landing on right elbow ()
## 18429                                                                                                                                                                                                        During eri, EE fell to floor, hitting left knee on floor ()
## 18430                                                                                                                                                                                                              During eri, EE fell to floor, landing on left knee ()
## 18431                                                                                                                                                                                                              During eri, EE fell to floor, scraping right elbow ()
## 18432                                                                                                                                                                                                     During eri, EE fell, pt kicked EE in the back/shoulder area ()
## 18433                                                                                                                                                                                                        During eri, EE heard right elbow pop, jammed right thumb ()
## 18434                                                                                                                                                                                                                        During eri, EE hit left shoulder on wall ()
## 18435                                                                                                                                                                                                                     During eri, EE hit right elbow on exit door ()
## 18436                                                                                                                                                                                                                              During eri, EE injured left finger ()
## 18437                                                                                                                                                                                                                         During eri, EE landing on his left knee ()
## 18438                                                                                                                                                                                                                    During eri, EE pulled something in right leg ()
## 18439                                                                                                                                                                                                                                    During eri, EE strained back ()
## 18440                                                                                                                                                                                                                                    During eri, EE strained ribs ()
## 18441                                                                                                                                                                                                         During eri, EE sustained a small cut to inside of mouth ()
## 18442                                                                                                                                                                                        During eri, EE tried to prevent injury to patient, hit right arm on wall ()
## 18443                                                                                                                                                                                  During eri, EE tried to restrain pt's arm, pt's arm hit EE's left hand/fingers ()
## 18444                                                                                                                                                                                              During eri, EE was holding pt's arm, pt kicked EE in the right leg ()
## 18445                                                                                                                                                                                              During eri, EE was holding pt's legs while pt was jerking/twisting ()
## 18446                                                                                                                                                                                                                          During eri, EE was kicked in left knee ()
## 18447                                                                                                                                                                            During eri, EE was pushed into another pt's doorway, hit left hand, left leg on door ()
## 18448                                                                                                                                                                                                            During eri, EE was scratched by pt on left 2nd digit ()
## 18449                                                                                                                                                                                                            During eri, EE was scratched on right arm, left hand ()
## 18450                                                                                                                                                                                                During eri, EE was shoved up against wall, left side feels stiff ()
## 18451                                                                                                                                                                                                                         During eri, EE was slammed against wall ()
## 18452                                                                                                                                                                                                       During eri, EE's hand got caught between shower door/wall ()
## 18453                                                                                                                                                                                                                  During eri, EE's right leg hit co-workers shoe ()
## 18454                                                                                                                                                                                                       During eri, EE/pt fell to floor, EE landed on right wrist ()
## 18455                                                                                                                                                                                                 During eri, a lot twisting/turning, EE noticed low back hurting ()
## 18456                                                                                                                                                                                                               During eri, co-worker accidentally hit EE in nose ()
## 18457                                                                                                                                                                                  During eri, everyone got tripped up and fell to floor. EE landedo n both knees ()
## 18458                                                                                                                                                                                                                  During eri, fell to floor landing on left knee ()
## 18459                                                                                                                                                                                                     During eri, fell to floor with patient landing on right hip ()
## 18460                                                                                                                                                                                                               During eri, fell to floor, hit left hand on floor ()
## 18461                                                                                                                                                                                                                                       During eri, hand hit wall ()
## 18462                                                                                                                                                                                      During eri, left leg was trapped under transport board when pt rolled over ()
## 18463                                                                                                                                                                                                 During eri, lifted pt on to transport board, back began hurting ()
## 18464                                                                                                                                                                                  During eri, picked pt up, went through door, felt something pull in lower back ()
## 18465                                                                                                                                                                                          During eri, pt became physically aggressive toward EE while holding pt ()
## 18466                                                                                                                                                                 During eri, pt began hitting head against wall, EE placed right hand between pt's head and wall ()
## 18467                                                                                                                                                                                 During eri, pt began swinging at EE, pt struck EE in stomach, ribs, right thumb ()
## 18468                                                                                                                                                                                                                               During eri, pt bit EE on left arm ()
## 18469                                                                                                                                                                                                                                  During eri, pt bit EE on r arm ()
## 18470                                                                                                                                                                                                                        During eri, pt bit EE on right 2nd digit ()
## 18471                                                                                                                                                                                                     During eri, pt bit EE on right wrist. Pt had blood in mouth ()
## 18472                                                                                                                              During eri, pt dropped their weight causing EE to lose balance falling on left knee, also while in Mr Pt kicked EE below left knee ()
## 18473                                                                                                                                                                                        During eri, pt dropped to floor causing EE to fall landing on right knee ()
## 18474                                                                                                                                                                                                 During eri, pt dug nails into EE's left hip & spat in right eye ()
## 18475                                                                                                                                                                                                           During eri, pt got leg loose, kicked EE in right side ()
## 18476                                                                                                                                                                                                                           During eri, pt grabbed EE's left hand ()
## 18477                                                                                                                                                                                                    During eri, pt hit left knee on w/c when trying to remove pt ()
## 18478                                                                                                                                                                                                  During eri, pt kicked EE in chest, breast and collar bone area ()
## 18479                                                                                                                                                                                                               During eri, pt kicked EE in left shoulder and jaw ()
## 18480                                                                                                                                                                                                                       During eri, pt kicked EE in lower abdomen ()
## 18481                                                                                                                                                                             During eri, pt kicked EE in right upper leg, EE fell to ground landing on left knee ()
## 18482                                                                                                                                                                                                                 During eri, pt kicked EE in stomach multiple times
## 18483                                                                                                                                                                                                During eri, pt kicked EE in stomach, scratched EE on left handll ()
## 18484                                                                                                                                                                                                              During eri, pt kicked EE in the groin area/r thigh ()
## 18485                                                                                                                                                                                                                     During eri, pt kicked EE in the right thumb ()
## 18486                                                                                                                                                                                                                            During eri, pt knee'd EE in the ribs ()
## 18487                                                                                                                                                                                                   During eri, pt pulled EE to floor, EE hit left elbow on floor ()
## 18488                                                                                                                                                                    During eri, pt pulled EE's hair, twisted right arm, neck was strained, EE jammed left finger ()
## 18489                                                                                                                                                                                                      During eri, pt pulled leg away fm EE, striking her in nose ()
## 18490                                                                                                                                                                                                                     During eri, pt punched/scratched EE in face ()
## 18491                                                                                                                                                                                                                       During eri, pt scratched EE on left elbow ()
## 18492                                                                                                                                                                                          During eri, pt scratched EE on left side of back, and beside right eye ()
## 18493                                                                                                                                                                                                                       During eri, pt scratched EE on right hand ()
## 18494                                                                                                                                                                                                               During eri, pt scratched EE on right side of neck ()
## 18495                                                                                                                                                                                                                    During eri, pt scratched EE on the left hand ()
## 18496                                                                                                                                                                                                                                     During eri, pt scratched l arm
## 18497                                                                                                                                                                                               During eri, pt slammed door on EE's back and shoulder - left side ()
## 18498                                                                                                                                                                                                     During eri, pt spat at EE and some of it went in EE's mouth ()
## 18499                                                                                                                                                                                                                          During eri, pt spat blood in EE's eyes ()
## 18500                                                                                                                                                                                                            During eri, pt spat in EE's face (possible exposure) ()
## 18501                                                                                                                                                                                                                  During eri, pt spat in EE's face - no exposure ()
## 18502                                                                                                                                                                                                                        During eri, pt spat on EE, blood in spit ()
## 18503                                                                                                                                                                        During eri, pt tried to attack co-worker, EE attempted team control, EE/pt fell to floor ()
## 18504                                                                                                                                                                        During eri, pt was trying to bang head, EE was trying to prevent this, strained shoulder ()
## 18505                                                                                                                                                                                                                            During eri, pt/EE both fell to floor ()
## 18506                                                                                                                                                                                              During eri, pt/EE fell to floor, EE landed on his left knee/should ()
## 18507                                                                                                                                                                                                        During eri, pt/EE fell to floor, EE landing on left knee ()
## 18508                                                                                                                                                                                                                     During erik pt scraped EE's face with teeth ()
## 18509                                                                                                                                     During erj pt was kicking @ staff, EE was knocked off balance fell back & rt foot was under EE side ways. Injured right ankle.
## 18510                                                                                                                                              During escape investigation walked across the yardof the escapee's victim, stepped across ditch & twisted right knee.
## 18511                                                                                                                                                                                               During escort of inmate-inmate threw 2 cups of feces and urine at EE
## 18512                                                                                                                                                                          During falling/catching training, felt pull on lt lower side, could not lift self off mat
## 18513                                                                                                                                                During family & fun day activity at work, employee was playing volleyball and pulled a calf muscle in his left leg.
## 18514                                                                                                                                          During feeding helping carry trays to second level EE felt a pinch in neck and back as turning to check foot placement ()
## 18515                                                                                                                                                                                        During feeding inmate swung arm with a weapon, andpuntured chest left side.
## 18516                                                                                                                  During fight EE was separating two inmates that were fighting one inmate had eye injury that was bleeding EE noticed blood on l shoulder & shirt.
## 18517                                                                                                                  During fire alarm a patient on the floor refused to get up to exacute unit, other staff came to asst, patient pulled on shoulder getting into w/c
## 18518                                                                                                                                                             During fire arm class EE had to kneel on cement over and over-process caused knee to bruise and swell.
## 18519                                                                                                                                                                                                        During fire att to let out smoke window fell on left finger
## 18520                                                                                                                                                           During fire drill EE carried autistic child down 7 flights of stairs felt pain in lower rt side of back.
## 18521                                                                                                                                                                                                During fire drill EE tripped and fell hitting hip on curio cabinet.
## 18522                                                                                                                           During fire drill EE was nearly struck by wheelchair being pushed by staff. This caused EE to stop suddenly. Left ankle is uncomfortable
## 18523                                                                                                                           During fire drill, Ms. Davis walked down grassy slope instead of using the steps to the parking lot. She slipped on acorns in the grass.
## 18524                                                                                                                                                                                                          During fire exercise EE was burned on rt arm and shoulder
## 18525                                                                                                                                                   During fire training EE recieved particles of ropeinto her right eye from a broken rope off an extension ladder.
## 18526                                                                                                                                                                                      During firearm training a fired shotgun slug ricochet and hit EE on the chin.
## 18527                                                                                                                                                                                        During firearm training. EE tripped and fell forward onto his left shoulder
## 18528                                                                                                                       During firearms qualifications at night, holding flashlight w/lt hand and firing w/rt hand, firearmrecoiled, slick went back and cut lt hand
## 18529                                                                                                                During firearms recertification, went to stand up from kneeling position, right foot shifted & employee rolled/twisted right ankle. Fell to ground.
## 18530                                                                                                                                                                                             During firearms training injury resulted from the recoil of the weapon
## 18531                                                                                                                        During firearms training, while moving from standing shooting position to kneeling shooting position strained right knee and visa versa. ()
## 18532                                                                                                                                                                                                                 During fitness run he felt snap within his rt knee
## 18533                                                                                                                                                                                    During foot chase after suspect EE fell on uneven ground and injured left thigh
## 18534                                                                                                                                                                                              During foot chase of a suspect on uneven terrain EE injured left foot
## 18535                                                                                                                                                                                                                         During foot pursuit fell into loose gravel
## 18536                                                                                                                                                                  During football practice, coach eder stepped in a hole on the practice field and injured his knee
## 18537                                                                                                                                                                                                  During forced bath, pt tried grabbing EE's neck, scratching EE ()
## 18538                                                                                                               During forced med, pt started to fall, EE attempted to control & slow fall & got left hand caught b/w the corner of bed & pt upper body causing pain
## 18539                                                                                                                                                   During formal count employee was walking from bed #21 to bed #34, when inmate in bed #26 punched her left hip ()
## 18540                                                                                                                                                                                During formal count, left knee popped while walking down steps in ocracoke c block.
## 18541                                                                                                                                      During girls varsity basketball practice a studnetaccidentally hit EE in the jaw with her hand when trying to go for rebound.
## 18542                                                                                                                                                                                                       During ground defense training EE hyperextended his rt thumb
## 18543                                                                                                                                                     During ground fighting techniques instruction the EE wrenched her neck in a one minute ground fight-ing drill.
## 18544                                                                                                                                                                                           During guard escape technique left knee twisted causing pain & swelling.
## 18545                                                                                                                                                                                                          During guard in/out technique, I was kneed in the ribs ()
## 18546                                                                                                                                                                             During handcuff training it was required EE to be handcuffed, his rt elbow was injured
## 18547                                                                                                                                                          During handcuffing procedures lower back had a pain and discomfort upon arriving to office after training
## 18548                                                                                                                                       During heavy rain, EE walking to rotary auditorium w/ co-worker for faculty training. Carrying umbrella, tripped over 4-5 ()
## 18549                                                                                                                                                                                                                           During heavy training injured left knee.
## 18550                                                                                                                                                                                                                  During heimlich on pt, right arm began hurting ()
## 18551                                                                                                                                                                    During hepatic arteriogram/chemoembolization procedure, EE's right eye was splashed with fluid.
## 18552                                                                                             During her break, she was on the firing range preparing to fire her pistol, when she was struck in the neck by some type of debris or object from the firing range. ()
## 18553                                    During his pre-trip inspection Mr. Callicutt was using a hammer to remove aggregate shoulder borrow(asb) from a tailgate lip on medium truck(1094-7019). While working on the lip debris went into Mr. Callicutt's left eye. ()
## 18554                                                                  During home visit evaluation, walking downhill on gravel road to the family's home, gravel was loose and slid, fell into side ditch landing on my right side hurting my r shoulder and r knee. ()
## 18555                                                                                                                                                                                                        During home visit for survey, slipped on wet carpeton ramp.
## 18556                                                                                                                                                                          During home visit to juvenile client, employee jumped off porch, attempting to escape dog
## 18557                                                                                                                     During home visit, client attempted to runaway - I attempted to grab hime to deter him from leaving& when I grabbed him immediate pain in back
## 18558                                                                                                                                                                                            During hunting patrol, walking in woods something felw into his eye. ()
## 18559                                                                                                                                                   During in service crdt class while learning a takedown manuver was injured when partner palced him on the floor.
## 18560                                                                                                                   During in service training EE was being handcuffed in the prone postion while getting up he felt something in his lt wrist go ping and felt pain
## 18561                                                                                                                                  During in service training for the year EE was participating in a technique during this time her lt wrist became sore and painful
## 18562                                                                                                                 During in-service firearms while on the combat course, EE used the mailbox as a cover to shoot 2 targets and knuckle area on back of hand was cut.
## 18563                                                                                                                                                                   During in-service training her partner in controlled restrain and defense kicked her in the knee
## 18564                                                                                                                                       During in-service training, EE states that previousinjury (3/5/08) was aggrevated. The intitial inj. Was filed w/ krm 3/6/08
## 18565                                                                                                                                                                                           During in-service training/vertical jump exercise EE strained right knee
## 18566                                                                                                                                                                During individual skill workout, EE jumped for a ball, lost her balance and twisted her left ankle.
## 18567                                                                                                                                          During inmate confrontation while restraining inmate, officer fields sprayed oc pepper spray and it got into her eyes. ()
## 18568                                                                                                                                                                                                    During inmate laundry walked into laundry inhaled strong fumes.
## 18569                                                                                                                                                During inmate locker search, c/o was holding foundcontraband & inmate grabbed & twisted her arm to get it from her.
## 18570                                                                              During inspection of attic of facility, he was trying to straddle plumbing pipe; while looking for the bottom cord of a truss to step on, hit his head on the corner of duct work. ()
## 18571                                                                                                                     During inspection of mechanical room at bluford library EE tripped over temporary steam lines from portable boiler & fell on concrete walkway.
## 18572                                                                                       During inspection, Ms. Porter lost her balance and grabbed duct hanger for support when stepping over flexible duct work in the attic. Left arm was cut from duct hanger. ()
## 18573                                                                                                                During instructing and role playing, EE hit some broom sticks, causing them to fall, causing him to fall to his knees. Some sticks tangled his knee
## 18574                              During instruction of controls, restraints and defensive techniques (crdt), ground defense, employee was demonstrating technique with another employee on mat and injured left shoulder. He noticed unusual pain in left shoulder. ()
## 18575                                                                                                                                                                                                       During instruction, EE was sprayed in the face with oc spray
## 18576                                                                                                                                                                                                       During intensified pic, EE made a step and twisted left foot
## 18577                                                                                                                  During interaction with clients during leisure time; sitting in chair and felt something biting causing rash on neck, chest, abdomen and arms. ()
## 18578                                                                                                                                                                                                          During interaction with student EE was infested with lice
## 18579                                                                                                                                                                                      During intervention between 2 patients, staff fell on back hitting the floor.
## 18580                                                                                                                                                                                During intervention with pt pt elbowed l wrist pt required restraint for 20 minutes
## 18581                                                                                                                                                                                                                          During interview, possibly exposed to TB.
## 18582                                                                                                                                                     During investigation, a cylinder was being hung and hit another cylinder, causing one to strike EE in the head
## 18583            During kennel supervision, Dr. Hartsell was in the parking lot with students and animals. She came in the door of the vet tech. Building, walked across the entry mat, and her right foot slipped on the tile floor and she landed on her left knee. ()
## 18584                                                                                                                                                                                        During lab practicals a spine board fell on her left hand and fractured it.
## 18585                                                                                                                                                                      During lab stick, patient started to faint and thrashing aroun and needle pricked EE's finger
## 18586                                                                                                                                       During law enforcement training, EE was instructedto tumble from a standing position. When he tumbledhe injured rt shoulder.
## 18587                                                                                                                                                         During leisure activities client placed EE in headlock, EE twisted neck attempting to break client's hold.
## 18588                                                                                                                                                                                                  During less than lethal self defense training injured lt shoulder
## 18589                                                                                                                                                         During lifting EE reported feeling sharp pain in lower back while lifting from legs. Muscle strain to back
## 18590                                                                                                                                                                                 During lifting and changing clients, EE noticed tightness & burning in lower back.
## 18591                                                                                                                                                                            During lifting more than usual due to shortness of staff neck and shoulder became sore.
## 18592                                                                                                                             During limited light firing exercise supporting right hand w/left forearm while holding flashlightfelt something hit back of left hand
## 18593                               During line exchange: leaning into linen cart to retrieve a wash cloth in bottom of cart. Couldn’t reach; hoisted right side of body over edge of cart with feet off of ground. All of body weight resting on right side of cart. ()
## 18594                                                                                                                                                                                                  During line up having severe chest pain and heart palpatations ()
## 18595                                                                                                                                                                                         During lldt training, EE was pushed backwards, fell, and twisted left knee
## 18596                                                                                                                                                             During locker search picked up paper to throw away and was stuck by needle in finger of right hand. ()
## 18597                                                                                                                                                                      During locker search, EE bent down and hit left side of forehead on top shelf of wall locker.
## 18598                                                                                                                                                                             During locker serach, scratched lt arm on a piece of hanger sticking out of the locker
## 18599                                                                                                                                           During low/limited light fire of shotgun injured neck while firing shotgun. Experienced sharp pain in right side of neck
## 18600                                                                                                                                                                                          During lunch hour, tripped on sidewalk outside of restaurant and fell. ()
## 18601                                                                                                                                                                                During lunch, EE stood up while foot was asleep and sprained lt ankle walking on it
## 18602                                                                                                                               During lunch, employee swinging on lawn swing in park and chain pulled out of swing stand and right hand thumb bumped swing edge. ()
## 18603                                                                                                                                                                        During major clean up EE tripped over a broom and fell on his right hand hurting his wrist.
## 18604                                                                                                                                                                                                                           During making arrest lt hand was injured
## 18605                                                                                                        During making samples for my test, the compressor suddenly stopped working so I tried to run it again but the surface was so hot and my hand got burned. ()
## 18606                                                                          During mandatory defensive tactic training, and while my partner and I were practicing the arm bar technique, I was forcefully pushed to the ground which caused me to injure my back. ()
## 18607                                                                                                                                                                                            During mandatory training. Standing postion learning to fall backwards.
## 18608                                                                                                                                                         During manual hold of an aggressive patient, staff and pt fell down on concrete, outside on playground. ()
## 18609                                                                                                                                                                               During manual hold of patient, EE was struck on her face and glasses were broken. ()
## 18610                                                                                                                                                                                          During manual hold of patient, staff was bitten on his left upper arm. ()
## 18611                                                                                                                                                                                          During manual hold of patient, staff was kicked on left anterior shin. ()
## 18612                                                                                                                                                                                      During manual hold of patient, the employee was bitten on her left lower arm.
## 18613                                                                                                                                                                                       During manual hold of patient, the staff's neck was scratched by patient. ()
## 18614                                                                                                                                                                                                            During manual hold, patient and staff fell to floor. ()
## 18615                                                                                                                                                                                                        During manual hold, patient bit staff on left lower arm. ()
## 18616                                                                                                                                                                                   During manual hold, pt slid to floor bringing EE with her, injuring left knee ()
## 18617                                                                                                                                                              During manual of patient, staff was kicked on her left bicep area and scratched on her left wrist. ()
## 18618                                                                                                                           During manual restraint while off campus on hospital van, staff was hit by patient's head and bitten on her left hand by the patient. ()
## 18619                                                                                                                                                                                                                  During manual restraint, EE twisted lower back ()
## 18620                                                                                                                                                                                                               During manual restraint, jammed left hand/fingers ()
## 18621                                                                                                                                                                                                   During manual restraint, patients arm 'caught' employee's eye ()
## 18622                                                                                                                                                                                      During manual restraint, pt and employee fell to floor injury EE left knee ()
## 18623                                                                                                                                                                            During marijuana search EE received numerous tick and chigger bites to both lower legs.
## 18624                                                                                                                                           During mass imunization, EE helping nurses restrain workers, EE stuck accidentally with dirty needleon left index finger
## 18625                                                                                                                                 During mealtime a consumer became aggitated and flipped the table over and EE's right leg was hit by the table casuing a hematoma.
## 18626                                                                                                     During mealtime, employee was called out to assess a behavioral situation. She was struck by client around the left eye, causing a laceration and swelling. ()
## 18627                                                                                                                                 During mealtime, inmate turned on officer hitting him with the left side of his head with his fist. Reddened area on side of head.
## 18628                                                                                                                                                                                                   During med pass finger was caught in shuting door on seg unit ()
## 18629                                                                                                                                 During med pass, employee pulled a muscle on right side of stomach and back while getting an individual up from his geri-chair. ()
## 18630                                                                                                                                            During medical transport stretcher malfunctioned and had to be physically lifted into ambulance causing back strain. ()
## 18631                                                                                                                                                                      During medication administration, door opened and then closed back striking on left elbow. ()
## 18632                                                                                                                      During meeting w/supervisor EE became extremely stressed which continued to get worse later & EE experienced chest pain & shortness of breath
## 18633                                                                                                                                                                                                   During mock code EE went to her knee to start chest compressions
## 18634                                                                                                                 During mock fire drill practice became light-headed and felt bad states that Dr. Dawkins unit checkd him and gave him meds for high blood pressure
## 18635                                                                                            During morning break - walking up outside concrete steps, hung foot on top edge of first step and tumbled, landing on right knee, scraping knee, rt hand & rt elbow. ()
## 18636                                                                                                                                                                           During morning run twisted left knee on track. Stepped in loose sand on track. Felt pain
## 18637                                                                                                                                                                                                                           During morning run, strain left knee. ()
## 18638                                                                           During movement student became aggressive and refused to go back in the room. The student then began to push Mr. Capers causing him to lose his balance and hit the back of his head. ()
## 18639                                                                                                                                                                                       During multiple officer takedown technique, EE's lt ankle rolled and twisted
## 18640                                                                                                                     During nci 3 person carry, the staff was holding the patient's legs. The patient kept kicking staffinjurying both her wrists & right shoulder.
## 18641                                                                                                                                                                             During nci demonstration staff fell on her right knee when having to change positions.
## 18642                                                                                                                                                              During nci employee fell forward while testing on legs, and his left shoulder popped out of joint. ()
## 18643                                                                                                               During nci hold, patient continued to kick, scratch& bite at staff, left hand & left thumb scratches, left middle finger sprain & mild lumbar strain
## 18644                                                                                                                                                    During nci recertification when lowering to the floor to perform a 3-person carry, felt pain in both thighs. ()
## 18645                                                                                 During nci recertification, employee was performing a procedure with other employees and too much pressure was placed on employee by others causing pain to her right shoulder. ()
## 18646                                                                                                                                                                                                       During nci recertification, employee's right knee popped. ()
## 18647                                                                                                                                                                                              During nci refresher class, employee felt a pull and lost balance. ()
## 18648                                                                                                                                                                                                             During nci testing recertification, employee felt a ()
## 18649                                                                                                                                                                                                  During nci training -coworker bent employee's finger back to far.
## 18650                                                                                                                                                                        During nci training EE strain lower extremities. Strain bulge in back of rt lower extremity
## 18651                                                                                                                                                        During nci training EE was coming back up from a limit control walk & lost balance & fell back on left leg.
## 18652                                                                                                                                                                           During nci training was attempting to lower personto floor, when fell twisting left knee
## 18653                                                                                                              During nci training with the 3 man carry, employeewas walking another staff with assistance and the staff being walked went down to floor bearing wei
## 18654                                                                                                                                                                                               During nci training, EE felt pulling in back and radiating down leg.
## 18655                                                                                            During nci training, I went down to the floor. I heard a pop in my knee and a sharp pain in my back. I suddenly rolled over to get [ct] knee and straighten my back. ()
## 18656                                                                                                                                           During nci training, employee felt a pull in the top inside of her left thigh while squatting down to perform a move. ()
## 18657                                                                                                                                                                                        During nci training, injured back when another employee fell on top of her.
## 18658                                                                                                                                                          During nci training, left knee apparently went outand twisted during writer lowering dummy to the f loor.
## 18659                                                                                                                                                                                 During nci training, staff was prompted to run and felt discomfort in achilles. ()
## 18660                                                                                                                                                           During nci training--practicing hold for patient that May tried to escape. EE had soreness pain in back.
## 18661                                                                                                                                                During nci training-4 man lift and carry-weight if mannequin was against right upper side -chest and shoulder area.
## 18662                                                                                                                                                                During nci, doing theraputic wrap/hold pivoted on rt knee & turned to the right; right knee popped.
## 18663                                                                                                                                                 During night pursuit exercise-student driver lost control of veh causing veh to go off road hitting several trees.
## 18664                                                                                                                                                                                      During normal course of duties EE performs rapid and repetitive hand motiions
## 18665                                                                                                                                                                                             During normal course of duties, repetitive and sustained hand motions.
## 18666                                                                                                                                                                During normal custody work, observed a aa sponsor fall near gate #7 and ran to assist the volunteer
## 18667                                                                                                                                                     During normal field visits was asked by public to aid in securing kitten from traffic and was bittenon rt hand
## 18668                                                                                                                                               During normal surveillance duty work was injured in vehicle accident when her vehicle struck rear of another vehicle
## 18669                                                                                                                                                                                       During nvci apt EE stepped forward w/left foot and exp pain in groin area ()
## 18670                                                                                                                          During nvci intervention training, placing staff in seclusion room and ran out of room tripping over her own feet causing her to fall. ()
## 18671                                                                                                                                                                                                                 During nvci patient intervention, injured elbow ()
## 18672                                                                                                                                                                                                        During nvci therapeutic hold, fell to floor on left side ()
## 18673                                                                                                                                                                                                                           During nvci training EE fell to knees ()
## 18674                                                                                                                                                                                                       During nvci training, practicing a lift, twisted low back ()
## 18675                                                                                                                                                                                                               During nvci training, pulled left shoulder muscle ()
## 18676                                                                                                                                                                                                                       During nvci training, sprained groin area ()
## 18677                                                                                                                                                                                     During oc pepper spray training, ofc was exposed in the eyes with the spray ()
## 18678                                                                                                                                                                                                    During oc pepper spray, developed a pain & bump under eyelid ()
## 18679                                                                                                                                                                   During oc spray training, I was sprayed with mase. Since then I have been experiencing headaches
## 18680                                                                                                                                                                                     During off campus outing on school van, student headbutted staff in the mouth.
## 18681                                                                                                                During officer refresher course doing the bent wrist take down to the floor to be handcuffed, I fellbackwards, landing on the floor on my left hip.
## 18682                                                                                                                                       During officer survival night. Instructor was demonstrating defensive tatic, when EE felt a sharp pain in his left shoulder.
## 18683                                                                                                                                                                      During oleoresin capsicum spray training EE was sprayed in the face - cornea abraison lt eye.
## 18684                                                                                                                                                                                      During one person limited control walk to time out, staff hit his shoulder ()
## 18685                                                                                                                                                                                                                  During oral exam horse bit EE on rt index finger.
## 18686                                                                                                                                                            During oral surgery on inmate, hand hit the handpiece while it was in holder. Reaching for the suction.
## 18687                                                                                                                                              During ort training he pulled a muscle in his right leg while performing a doc approved move-single leg take down. ()
## 18688                                                                                                                                                                          During ort, crdt an officer fell onto sgt. Pott's chest causing a pain in the chest area.
## 18689                                                                                                                                       During outdoor training session on 1st aid, cpr employee twisted her neck and back resulting in muscle pain to neck and ribs
## 18690                                                                                                                                                        During outside firearm traininga a tick was discoved and remvd/06-03 rash occured in area and EE went to Dr
## 18691                                                                                        During outside leisure on the patio, an individualagressed toward employee and during nci procedure, employee's left hand was cut between little finger and fing finger. ()
## 18692                                                                                                                        During outside recreation, student displaying out-of-control behavior, as I turned around to face student she punched me with a closed fist
## 18693                                                                                                                                                                                                      During p. T., while doing pushups hurt his left pinkie finger
## 18694                                                                                                                                                                                   During p/c class EE lost footing and fell on buttocks causing pain in lower back
## 18695                                                                                                                         During pat down search of inmate off. Schneiders left palm of his hand was puncture by a toothpick in the left shift pocket of the inmate.
## 18696                                                                                                                    During pat search, placed hand inside pocket of inmate, inmate turned away after placing his hand on her wrist, trapping her hand in his pocket
## 18697                                                                                                                                                                                                                      During patient aggression, EE twisted neck ()
## 18698                                                                                                                                                                                                        During patient altercation, sprained/strained left wrist ()
## 18699                                                                                                                                                                     During patient care, brushed against metal part of wheelchair brake and scrapped right leg. ()
## 18700                                                                                                                                                                                                     During patient intervention, got hand caught in door handle ()
## 18701                                                                                                                                                                                                           During patient intervention, injured right foot/ankle ()
## 18702                                                                                                                                                                                            During patient intervention, pt and EE feel to floor injurying wrist ()
## 18703                                                                                                                                                                                                   During patient intervention, pt hit employee breaking glasses ()
## 18704                                                                                                                               During patient intervention, staff was kicked and during manual hold staff report both sholders, both wrists and lower back ache. ()
## 18705                                                                                                                                                                                                     During patient manual restraint, hit hand against something ()
## 18706                                                                                                                                                                                                           During patient manual wrap, patient and employee fell ()
## 18707                                                                                                                                                                                   During patient restraint, EE slipped on water on floor, twisted knee and fell ()
## 18708                                                                                                                                                                                 During patient restraint, employee and patient fell to floor injuring EE r knee ()
## 18709                                                                                                                                                                                             During patient restraint, employee fell injuring buttocks and thumb ()
## 18710                                                                                                                                                                                         During patient restraint, employee fell to floor landing on right knee. ()
## 18711                                                                                                                                                                                              During patient restraint, employee kicked in right knee by patient ()
## 18712                                                                                                                                                                                   During patient restraint, patient fell to floor causing employee to fall also ()
## 18713                                                                                                                                                                                                       During patient restraint, pt headbutted EE chipping tooth ()
## 18714                                                                                                                                                                                                                     During patient restraint, twisted left knee ()
## 18715                                                                                                                                                                                                       During patient transfer-patient bent r. Wrist backwaards. ()
## 18716                                                                                                                       During patient wrap, patient grabbed staff's hair, pulling staff to floor striking her head. Received mutiple injuries during th struggle ()
## 18717                                                                                                                                                                      During patrol vehicle pursuit of dirt bike vehicle dropped off into drainage ditch in roadway
## 18718                                                                                                                                              During pelvic exam, while obtaining specimen for wet prep accidentily sprayed body fluids from end of swab into face.
## 18719                                                                                                                                        During pert shakedown, EE pulled a mattress cover from a mattress off a top bunk, picking up mattress with arms extented ()
## 18720                                                                                                                                                                                                         During pert team exercise fell on wrist w/ all body weight
## 18721                                                                                                                 During pert training (bldg searches) EE was going into a room to search when he entered the room a 12 gadge blank was discharged toward the floor.
## 18722                                                                                                                                      During pert training he and another officer were practicing scat tech and he landed on the other officers knee injuring chest
## 18723                                                                                                                                                                                                         During pert training his shoulder made a popping noise. ()
## 18724                                                                                                                                                                                             During pert training twisted left knee during cell extraction exercise
## 18725                                                                                                                  During pert(prison emergency response tea)trainingat randolph com. Col., emergency services trainingsite. While conducting advanced crdt, was con
## 18726                                                                                                                                                                                                           During phase iv takedown-EE twisted rt arm the wrong way
## 18727                                                                                                                    During phase training, we're constantly thrown downon mat. When I awoke on saturday morning, my left knee, thigh & calf were swollen & hurting.
## 18728                                                                                                                                                                                                   During physical activity, a student crashed into EE's right hand
## 18729                                                                                                                                                                          During physical aggression drill (police training), instructor hit w/ baton by student ()
## 18730                                                                                                                                                                   During physical altercation between 2 inmates. EE was employed. Inhaled spray causing discomfort
## 18731                                                                                                                        During physical assessment of sbi academy, EE was doing max bench press when he injured shoulder. Rt shoulder/rt upper back/rt upper chest.
## 18732                                                                                                                                                                                       During physical confrontation with an impaired driver EE sprained left knee.
## 18733                                                                                                                                                During physical confrontation with inmate, EE usedlegs to sweep inmates legs. EE fell on his knees on the concrete.
## 18734                                                                                                                During physical education class(basketball)while trying to drive to the basket, I felt a pull in the left rear part of my foot just above the heel.
## 18735                                                                                                                                                          During physical fitness run, EE stepped into a pothole and rolled left ankle causing lower left leg pain.
## 18736                                                                                                                                                During physical restraint of an aggressive studentthe student leaned back and caused EE to strike head against wall
## 18737                                                                                                                                                                                                                During physical restraint of client he bit staff ()
## 18738                                                                                                                                                                                                  During physical restraint patient struck EE's right lower forearm
## 18739                                                                                                                                                             During physical rstraint, student bit staff on theright forearm & pierced skin with a pen on left arm.
## 18740                                                                                                                             During physical training EE felt a sharp pain in lower right leg. EE felt that injury occured due to counterclockwise running pattern.
## 18741                                                                                                                                                                                                         During physical training EE notice swelling above rt ankle
## 18742                                                                                                                                                                 During physical training EE was to disarm other participant-EE injured little finger on left hand.
## 18743                                                                                                                                                       During physical training exercise working on push up-at end of practice EE complained of pain in rt shouder.
## 18744                                                                                                                               During physical training for alcohol law enforcmntinjured rt knee while running, became sore and confined large amounts of swelling.
## 18745                                                                                                                                                                     During physical training left lower leg began to swell, knot appeared and sharp pain persists.
## 18746                                                                                                                                                                      During physical training left quad-upper thigh tighted and caused severe pain, possible tear.
## 18747                                                                                                                During physical training on the morning of 1/24/94cadet jones accidentally stepped off the shoulder of the road and noticed an intense pain in hip.
## 18748                                                                                                                                                                                                       During physical training running exercise EE injured rt knee
## 18749                                                                                                                    During physical training, felt left knee giveway, and slide to the inside. Immediate pain and swelling soon after. List injury as: left knee ()
## 18750                                                                                                                                                                                                                        During pic class EE felt pain in lower back
## 18751                                                                                                                                                                                            During pic class EE hyperextended knee and while lowering to the floor.
## 18752                                                                                                                                                                                                                                 During pic class EE injured rt leg
## 18753                                                                                                                                        During pic class, they went to block a kick and noticed lt wrist was swollen. The pain occurs when the wrists is bent back.
## 18754                                                                                                                                                                                                                       During pic refresher EE reinjured left knee.
## 18755                                                                                                                                                                                                      During pic retraining EE lost balance and fell scrapping knee
## 18756                                                                                                                                                                During pic training another staff member used knee to hold down EE's shoulder and strained shoulder
## 18757                                                                                                                                                                                                    During pic training while EE was practicing holds twisted back.
## 18758                                                                                                                                                                                        During pic training-EE strained lt arm trying to hold another EE in a chair
## 18759                                                                                                                                                                                              During pic was punched in face by patient -glassesbroken - ? Fx. Nose
## 18760                                                                                                                                                                                           During pic, EE was trying to catch instructors leg and strained rt wrist
## 18761                                                                                                                                                                                                                                     During pic, dislocated shouler
## 18762                                                                                                                                    During pit pt hit my upper nose between eyes & coming out seclusion room grabbed rt arm & pulled to ground striking rt shoulder
## 18763                                                                                                                                                                                                              During placing pt in Mr, Pt spat in EE's face/eyes ()
## 18764                                                                                                                                                                                                          During placing pt in pr, EE noticed right neck hurting ()
## 18765                                        During post game cleanup emp was working with another employee emptying the arena trash. We loaded the truck and drove to the dumpsters. I got out and stepped up onto the back of the truck and my left knee gave away. ()
## 18766                                                                                                                                                                               During practice of unarmed self defense technique two hand, EE injured his shoulder.
## 18767                                                                                                                                                                                 During practice round. Semi-automatic pistol kicked back striking EE on left thumb
## 18768                                                                                                                                                    During pregame batting practice EE was struck in the face by a line drive fracturing orbital and maxillary bone
## 18769                                                                                                                                                                              During prescribed burning crossing debris from chopping operation - twisted left knee
## 18770                                                                                                                                                                                                  During prescribed physical fitness training EE strained his groin
## 18771                                                                                                                                                   During prison emergency response training employeewas taken down with arm bar and employee hit head on mat hard.
## 18772                                                                                                                                                                                       During process of arresting offenfer gun handle was jabbed into his rib cage
## 18773                                                                                                                                      During prone intervention-client kicked leg up-EE tried to block-resulting in jammed left thumb, wrist, arm and shoulder pain
## 18774                                                                                                                                                                                                During pt aggression, pt placed in Mr, Right wrist began hurting ()
## 18775                                                                                                                                                                                                         During pt agitation tv fell off stand onto EE's r shoulder
## 18776                                                                                                                                               During pt intervention EE & pt fell to floor. Pt knee landed on staff lt forearm breaking it. Fracture left forearm.
## 18777                                                                                                                                                                                                                 During pt intervention, EE and pt fell to floor ()
## 18778                                                                                                                                                                          During pt intervention, EE was kneed in abdomen. EE recently pregnant, delivered 7/10/07.
## 18779                                                                                                                                                                                                                   During pt intervention, pt scratched in mouth ()
## 18780                                                                                                                                                                                          During pt redirection, pt kicked EE and had to be place in manual hold ()
## 18781                                                                                                                                                                                                            During pt restraint, EE fell to floor injuring wrist ()
## 18782                                                                                                                                                                                                 During pt restraint, another EE hit employee in ribs with head. ()
## 18783                                                                                                                                                                                                        During pt restraint, hit wrist against snack room window ()
## 18784                                                                                                                                                                                 During pt staff training; tyler missed step and fell onto step during exercise. ()
## 18785                                                                                                                   During pt transport & struggle patient struck EE in face w/fist 2x then spit in face. Abraison rt hand during struggle. Lt thumb/wrist/eye/nose.
## 18786                                                                                                                                                                  During pt(physical training) while flipping a tire, I over corrected with my back. Lower back. ()
## 18787                                                                                                                                                           During pursuit of a felon EE crossed speed bumps at a high rate of speed which caused pain in EE's neck.
## 18788                                                                                                                         During push ups right shoulder popped & felt loose. Physical exercise required push up. Shoulder popped. List injury as: right shoulder ()
## 18789                                                                                                                      During qualification of standard dept. Weapon. EE was in kneeling position and began to experience blur vison & tingle in lt arm, chest pain.
## 18790                                                                                                                                                                                          During ra training employee fractured right wrist while playing football.
## 18791                                                                                                                                                                                                                    During rcdt practice EE pulled his groin muscle
## 18792                                                                                                                                           During rcdt training EE & partner fell to the ground & landed on her knees. Also injured during application of handcuffs
## 18793                                                                                                                                                                   During rcdt training, he obtained hip bursitis on his left leg & hip. Other note says hip strain
## 18794                                                                                                                                                                                                     During rcot testing EE complained of lower body parts hurting.
## 18795                                                                                                                                                                                                        During re-cert training, performing standing brake fall, ()
## 18796                                                                                                                                                                  During re-certification crdt and short baton training, while getting up off floor, rt knee popped
## 18797                                                                                                                                                       During rec activies while playing basketball with juveniles employee was hit in lower lip requiring stitches
## 18798                                                                                                                                                                                                              During recert training employee twisted left knee. ()
## 18799                                                                                                                                                                               During recertification on self-defense when EE went down on right elbow hit her ribs
## 18800                                                                                                                                                        During recertification training on the final technique EE assist take down. Sprain neck, rt shoulder & arm.
## 18801                                                                                                                                 During recertification training, an officer performed a defensive move and tossed hannah over. Hannahlanded on his right shoulder.
## 18802                                                                                                                                                                                During recertification training, employee fell wrong during the training excercise.
## 18803                                                                                                                                                                 During recreation two students began to fight, while breaking up the fight EE's rt leg was injured
## 18804                                                                                                                                                        During recreation, two students began to fight & while breaking up the fight employee's rt arm was injured.
## 18805                                                                                                                                                                                                     During recreattion w/ group (baseball game) EE and pt collided
## 18806                                                                                                                                         During redirection of a patient, EE was scratched or cut by broken cd on rt forearm and left forearmwith no break in skin.
## 18807                                                                                                     During redirection of patient's behavior, staff was struck on right shoulder and left knee banged against floor when holding patient during floor procedure ()
## 18808                                                                                                                                                                                                During regular cashier duties, EE slipped and fellbumping her knee.
## 18809                                                                                                                                   During representation of inmate at disciplinary hearing EE states inmate was angry. When leaving area inmate pushed EE into wall
## 18810                                                                                                                                                   During required less than lethal training EE was injured during the flashlight technique portion of the training
## 18811                                                                                                                                                     During resident care EE lowered bed in position. As lifting resident wheel chair moved and strained lower back
## 18812                                                                                                                                                                                                    During resistance to be escorted inmate kicked EE in right leg.
## 18813                                                                                                                                                                                                                            During restraint a patient hurt lt foot
## 18814                                                                                                                                During restraint in holding patient's hands down to floor, received minor abrasions to right 3rd finger from broken glass on floor.
## 18815                                                                                                                                                                                              During restraint intervention injured low back w/ struggling patient.
## 18816                                                                                                                                                                                During restraint of a client, staff was spit in face and injured left hand and arm.
## 18817                                                                                                                                      During restraint of a patient, left shoulder struck against door and left shoulder struck against seclusion and restraint bed
## 18818                                                                                                                      During restraint of a patient, patient was holdingthe staff's left arm & twisting, then pulled away & started swing at staff with closed fist
## 18819                                                                                                                                                   During restraint of a patient, the patient and staff fell to the floor. During fall staff twisted her left knee.
## 18820                                                                                                                                                                                                                  During restraint of a student, knee struck floor.
## 18821                                                                                                                                                                                   During restraint of a student, staff was bitten onhis right hand by the student.
## 18822                                                                                                                                                          During restraint of an aggressive student receiveda bite on his left distal 3rd finger & left lower calf.
## 18823                                                                                                                                         During restraint of an assaulting student, the employee was pushed into a brick wall, stepped on, and hit by a student. ()
## 18824                                                                                                                                                                                                During restraint of an out if control juvenile EE injured lt wrist.
## 18825                                                                                                                                                               During restraint of disruptive student EE injured knee. Left knee top swollen & painful when walking
## 18826                                                                                   During restraint of juvenile - wanted juvenile to go to his room, he would not, staff attempted to escort him to his room, he refused, kicking staff, out of control behavior ()
## 18827                                                                                                                         During restraint of student was forced to bend in an awkward manner to prevent injury of all staff involved. Injured lower back & left hip
## 18828                                                                                                                                                                                          During restraint of unsafe client, staff was scratchedin the left eye. ()
## 18829                                                                                                                                                                   During restraint student clawed left hand and kicked left shin. Drew blood -strained lower back.
## 18830                                                                                                                                                                                                        During restraint with client, staff was struck in the face.
## 18831                                                                                                                                                                                                       During restraint, student stepped on employees right foot ()
## 18832                                                                                                                                                                         During restrictive intervention employee was thrown down to ground, left ankle was twisted
## 18833                                                                                                                                                                                     During restrictive intervention patient head butted employee in top of head ()
## 18834                                                                                                                                                                       During restrictive intervention patients leg struck EE's left thumb and it hyper-extended ()
## 18835                                                                                                                   During restroom breaks, an inmate exited his room kicking the door open, inmate advanced on employeerefusing instructions, sprayed with oc spray
## 18836                                                                                                                               During ri, EE tripped and was punched in the ribs x2 while laying in the floor, EE hit back/side on edge of scales. Lt chest & back.
## 18837                                                                                                                                                                                           During riot control training EE was grabbed by inmate and fell to ground
## 18838                                                                                                                         During road squad training he injured his upper left side of his head & pulled his right shoulder while acting as inmate during role play.
## 18839                                                                                                                 During road test with customer, when doing three point turn customer jumped curve while backing into a brick wall. Injury: strain to left knee. ()
## 18840                                                                                                                  During rotation of assignments he was in spa room, getting stuff he turned to exit and slipped on dry floor, twisted r ankle and landed on l knee
## 18841                                                                                                                                                                                                          During rounds came into contact w/patient who had scabies
## 18842                                                                                                                                                                                             During rounds while going up stairs pulled something in right knee. ()
## 18843                                                                                                 During rounds, inmate was not responding to staff and window covered. Employee opened trap to check on inmate when inmate threw some type of fluid in his face. ()
## 18844                                                                                                                                                                                                          During rounds, trying to close trap door to the cells* ()
## 18845                                                                                                                                                                    During routine cleaning on restroom employee stated something (bug) flew in to her left ear. ()
## 18846                                                                                                                         During routine compliance inspection, while inspection of waste lagoon sliped on wet grass and fell baclwards onto back and left elbow. ()
## 18847                                                                                                                                  During routine home contact. Officer was leaving resident when a dog ran up beside the officer and bit officer on the rt forearm.
## 18848                                                                                                                    During routine lab facilities maintenance at end of semester clean up. Lifting, pulling, during maintanance. Twitching and tingling in lft leg.
## 18849                                                                                                                                                                                                   During routine locker search removed items & found sewing needle
## 18850                                                                                                                                                                                       During routine patrol was involved in an altercati-on with an unruly inmate.
## 18851                                                                                                                                                          During routine search of inmate he was stuck by a needle hidden in the fold of blanket. Right ring finger
## 18852                                                                                                                                                        During routine transfer of pt from w/c to stretch-er knee popped and EE was unable to bear weight onlt leg.
## 18853                                                                                                                                                                                     During rts, while lifting pt on transport board EE started pain in lower back.
## 18854                                                                                                                                                                During run he noticed pain in lt knee. Throughout the day the pain increased with pain and swelling
## 18855                                                                                                                                                                           During running exercise at basic law enforcement training, EE fell and scraped left knee
## 18856                                                                                                                                                                During safety round a patient styarted pulling staff's hair and tried to pluck out her right eye ()
## 18857                                                                                                                During scat training, EE was pushed to the mat andbent his leg causing pain to lt knee. (EE had already had pain in knee due to tendonitis per Dr.)
## 18858                                                                                  During scott air pack training and acting as the role of unruly offender, he fell back during a take down by another officer and his teeth hit together and chipped his tooth. ()
## 18859                                                                                                                                                                                       During scott air pack training had a mask on that caused rash on forehead ()
## 18860                                                                                                                                                                        During search of defendant, defendant attempted torun. Employee tried to restrain defendant
## 18861                                                                                                                                           During seclusion of pt. Re-injured neck that has previously injured in car accident. Pt grabbed chain and pulled on neck
## 18862                                                                                                                                               During second shift, EE went outside to purchase asoda from drink machine, high winds blew debris into EE's left eye
## 18863                                                                                                                                                                    During security check - walking through block checking electric lock box & under steps/rails ()
## 18864                                                                                                                                                                      During security check of the unit, EE slipped and fell on the front steps of programs office.
## 18865                                                                                                                                 During security sweep prior to closing, subject's hand was caught in door, when door closure devlopefailed tor retard door closing
## 18866                                                                                                                                                                                                                 During security training, injuried tendon in elbow
## 18867                                                                                                                                                                                            During self defense training employees' left wrist& hand were strained.
## 18868                                                                                                                                                      During self defense training employees' left wristwas strained while doing the bent wrist come alongexercise.
## 18869                                                                                                                                                        During self defense training- EE tried to break his fall to the mat with rt hand dislocating rt ring finger
## 18870                                                                                                                                                                                                                         During self defense(drop/flop)sprian back.
## 18871                                                                                                                                                          During self-defense training that she had re-injured her back. Did not desire med attention at this time.
## 18872                                                                                                                                                                  During self-defense training, EE fell backwards and when she landed, her neck was snapped forward
## 18873                                                                                                                  During self-defense training, both of employee's knees popped left to right at same time while lower body (legs) were wraped around another perso
## 18874                                                                                                                                                 During self-defense training, handcuffs were placed on right wrist and the pressure injured the top of wrist area.
## 18875                                                                                                                                During sensory activity with individual, EE turnedaround to attend to another individual, client suddenly spit & bit EE's left hand
## 18876                                                                                                                                                                                     During set-up of projection screen, unit collapsedcatching finger in equipment
## 18877                                                      During shakedown, I was carrying mattresses to and from cells for search. Felt like I twisted or strained something in my back. Awoke the next morning very stiff and unable to move without lots of pain. ()
## 18878                                                                                                             During shotgun recertification, kick back from weapon injured rt shoulder. Afterwards, noticed swelling and significant tremors in rt hand in addition
## 18879                                                                                                                                                                                                    During shotgun training - gun recoiled and bruisedrt upper armm
## 18880                                                                                                                                                                                             During shotgun training EE's right arm became sore, stiff and hurting.
## 18881                                                 During shower sat down on shower bench attached to wall when the bench immediately plastic toggle bolts came out of wall and bench fell to the floor. Bench slammed into the back of my left leg below my knee. ()
## 18882                                                                                                                                                          During showering of client, coming out of shower, slipped & fell on floor; hit head on wall in bath-room.
## 18883                                                                                                                  During situational shooting exercise. Slid into make-shift barricade & scraped his right thumb, middle, & ring fingers, causing abrasions on each
## 18884                                                                                                                           During slp evaluation of resident, approximately 15 minutes into the evaluation the resident stood up and grabbed EE's hand and bit her.
## 18885                                                                                                                                                       During snipe training, employee fell and twisted right knee. Fell on leaves/brush on steep mountain slope ()
## 18886                                                                                             During snow & ice removal truck started down steep gradee and broke traction resulting into hitting guadrail section and rolling over onto drivers side in roadway. ()
## 18887                                                                                                                                                                                           During speech evaluation, client hit staff on right side of head/ear. ()
## 18888                                                                                                                                                             During sponge bath-dropped peri-wash, bent down to pick up and felt a sharp pain in middle of back. ()
## 18889                                                                                                                         During state duty in relief help at hatteras island EE contacted conunctivitis in right eye. ***************see log notes*****************
## 18890                                                                                 During straight baton training, exercising as told- attempting to take hold of toes, leg folded back to stretch during exercising to stretch the hamstring. Strained left knee. ()
## 18891                                                                                                                                                  During stretching while training left leg pulling in towrard right left and touching right thigh hurt left leg ()
## 18892                                                                                                                                                                During striking exercise, EE applied a hammer fist to the suprascapular of the combat mannequin. ()
## 18893                                                                                                                                                                                                       During struggle davis struck the individual with his rt hand
## 18894                                                                                                                                                                                     During struggle to get patient under control, patient kicked EE in right knee.
## 18895                                                                                                                                                             During struggle to move patient from seclusion to restraint room, EE received bite to lower right leg.
## 18896                                                                                                                                                                              During struggle w/ aggressive client EE's hand was shut in door. Fx and cut to finder
## 18897                                                                                                                                                                       During struggle with combative patient to place into restraints, staff injured his low back.
## 18898                                                                                                                              During struggle with fighting patient, staff fell up against wall & floor with the patient twisting left shoulder as he hit the wall.
## 18899                                                                                                                                                                                 During struggle with inmate he was scratched on top of his left hand and right arm
## 18900                                                                                                                                                                           During struggle with patient in a manual hold, staff states caused pain in neck area. ()
## 18901                                                                                                                                                                   During struggle, inmate & EE fell to ground. EE onback and inmate on top. Cervical strain/sprain
## 18902                                                                                                                                                                                    During student restraint EE fell on his back with student landing on top of him
## 18903                                                                                                      During stun shield training officer terry was hit with the stun shield on 12/9/11, however on 12/20/11 the spot where she was hit was still bothering her. ()
## 18904                                                                                                                                                         During subject apprehension drill, had to brake suddenly. Fell forward with the bike, injuring rt shoulder
## 18905                                                                         During subject control arrest technique (scat) another employee rolled over onto the employee's fingers while trying to exit the drill. List injury as: right hand center & ring finger ()
## 18906                                                                                                                                  During supervising, discarding swollen cans, one can exploded and hit EE/20feet away on right side of face, cutting right ear. ()
## 18907                                                                                                                                                                    During supervision of inmates, inmate got in face and inmates nose made contact with EE's noes.
## 18908                                                                                                                                                                      During surgery EE dropped scapel-in attempt to catch scapel from falling to floor cut rt hand
## 18909                                                                                                                        During surgical extraction, passed straight elevator to dentist, he went to grab forcep, dropped elevator, tore glove and broke the skin ()
## 18910                                                                                                                                                                                          During survey Ms. Lassiter stayed at hotel and was bitten by bed bugs. ()
## 18911                                                                                                                            During survey at intercare health services in charlotte, she tripped going up the steps into the building and fell onto the landing. ()
## 18912                                                                                                                                           During survey in goldsboro, Ms. Drake injured her left side of the neck/upper back area when she picked up work bags. ()
## 18913                               During survey of group home, Ms. Vaughn was in contact with staff of home for two hours. It was reported that a client was diagnosed with tuberculosis. It was verified by halifax co health dept that the client was contagious. ()
## 18914                                                                     During survey, Ms. Gogola reached for file in conference room and the heel of her shoe was caught in chair. She fell backwards hitting head and scraped rt elbow and rt buttocks on carpet. ()
## 18915                                                                                                                                                                        During survey, employee was returning from lunch and fell on sidewalk going to facility. ()
## 18916                                                                                                                                                                    During survival exercise, EE was wrestling with an instructor when he fell twisting right knee.
## 18917                                                                                                                                                                                   During tactical training employee was hit by other officer in the left shoulder.
## 18918                                                                                                                                                                                                      During take down of an aggresive pt, EE landed on right knee.
## 18919                                                                                                                                                      During take down of another officer, his foot jammed into my left ribs in training. See susan haper @key risk
## 18920                                                                                                                           During take down of state fair, EE picked up a heavy tree display. Strained lower abdomen. Then strained again 11-06-06 changing a tire.
## 18921                                                                                                                                                                 During take down-another participant fell on EE with knees striking EE in mid-back & felt ribs pop
## 18922                                                                                                                                      During task of lifting multiple fire extinguishers employee developed pain, swelling, and redness in lower abdominal area. ()
## 18923                                                                                                                                                                During tazor practical training, advanceing towards another officer, pushed off felt severe pop. ()
## 18924                                                                                                                                                  During team building exercise employee was playingflag football and accidentally fell and injured leg above knee.
## 18925                                                                                                                                                                                                       During the 1 1/2 mile run EE felt slight pain in his r knee.
## 18926                                                                                                              During the arrest of an offender the claimant was injured on right knee and exposed to hiv by offender when the offender flicked blood on claimant ()
## 18927                                                                                                                                                   During the bent wrist technique while back to backan officer pulled her arm over his shoulder bend- ing it down.
## 18928                                                                                                                                                                                               During the boxing match, EE suffered an injury to his right shoulder
## 18929                                                                                                                                                                                    During the cell extraction the inmate threw an unidentified liquid on my arm ()
## 18930                                                                                                                                      During the cell extraction training trying to dot the upper l flank everyone fell back on EE pinningher right foot under her.
## 18931                                                            During the course and scope of employment as a probation/parole officer and while moving a box weighing approx 10lbs in an awkward fashion, the same caused injury to neck, back and right shoulder. ()
## 18932                                                                                                                                                                                                         During the course of an exam of b. T. P. Services, a 17 ()
## 18933       During the course of replacing barcodes on college materials, joyce encountered nasal problems with sneezing and drainage. During the final stages of working on the reference books, her nasal passages became inflamed and eventually started bleeding. ()
## 18934                                                                                              During the course of shift, client was transferred from one location to next, wheelchair to rocking chair; trolley to bed; injury to neck; back injury; shoulders. ()
## 18935                                                                                                                          During the end of 99-00 legislative session EE was doing mass mailing-EE thinks reaching for and using stapler caused pain in rt shoulder
## 18936                                                                                                                                          During the foot pursuit, the employee fell which resulted in injuries to the employee's head, left foot and right arm. ()
## 18937                                                   During the foot pursuit, the employee tripped over a radio, which had fell from his belt. This caused the employee to fall to the pavement resulting in injuries to the employee's right knee and right hand. ()
## 18938                       During the last week of rcdt training, while taking the final exam, the employee felt pain like a light sprain to the upper left shoulder area. The employee thought he was fine; however the pain has gotten progressively worse over time.
## 18939                                                                                                                                During the oc pepper spray training exercise when sprayed with the pepper spray and flushin I felt there was something still in eye
## 18940                                                                                                                             During the officer survival portion of basic school training, EE fell landing on his right wrist, causing immediate pain and swelling.
## 18941                                                                                                                                  During the period 5-17-07 to 5-25-07, EE was moving boxes from one place to another. Experienced pain in lower back and left leg.
## 18942                                                                                                                                                       During the process of breaking up a fight, the patient caused staff to fall to floor injuring herright hand.
## 18943                                                                                                                               During the process of separating two students involved in a physical fight, prescription glasses were knocked off face and broken ()
## 18944                                                                                                                                                                                         During the restraint of a juvenile EE suffered a strain to the groin area.
## 18945                                                                                                                                                                                              During the restraint of a patient, staff was kicked in the testicles.
## 18946                                                                                                                                               During the restraint of several students while applying bent wrist was being hit on forearm while holding a student.
## 18947                                                                                                                                                                    During the seclusion and restraint of a patient the EE was hit in the lip by the patient's knee
## 18948                                                                                                                                                                                       During the sprscribed 1/2 mile run, EE pulled muscle in his right lower leg.
## 18949                                                                                                                  During the two man take down, officer was pushed down on the mat and her chest area hit the mat very hard causing pain to officer's right breast.
## 18950                                                                                                                                                         During the use of force on an inmate. The officer hit the corner of the cell causing injury to the neck ()
## 18951                                                                                                                                                                                               During therapeautic hold on patient, employee was kicked in mouth ()
## 18952                                                                                                                                                                                     During therapeutic carry of fighting patient, staff's pinky finger was jammed.
## 18953                                                                                                                                During therapeutic escort/restraint, student caused staff to fall to the floor resulting in staff coming down on her right knee. ()
## 18954                                                                                                                                                               During therapeutic hold of a patient, the patient spit in staff's rt eye & bit staff on thier rt arm
## 18955                                                                                                                                                                                         During therapeutic hold, staff was bitten by patient on his right side. ()
## 18956                                                                                                                           During therapeutic intervention client escalated EE was punched in head, bra ripped, breast squezzed have rug burns of knees and elbows.
## 18957                                                                                                                    During therapeutic restraint of combative student staff fell to floor causing staff to strike left elbow on the floor jamming his left shoulder
## 18958                                                                                                                                                         During therapeutic wrap of a student, staff's left middle finger became entangled in student's sweatshirt.
## 18959                                                                                                                                                                                            During time of accident we were involved with use of force on an inmate
## 18960                                                                                                                                               During toothbrush training, consumer was attempting to stop toothbrushing, staff blocked his arm and bent thumb back
## 18961                                                                                                                                      During training EE attempted to stand up after doing sit-ups on ground-felt pull/pop on outside of left knee & fell to ground
## 18962                                                                                                                                    During training EE fell and hit the ground. Injured low back, lt. Hip and lt. Leg. Dx: hnp low back - avn of hip is not covered
## 18963                                                                                                                                                                                                     During training EE fell hitting head & straining neck muscles.
## 18964                                                                                                                                                                                  During training EE felt left shoulder pop pain increased over next couple of days
## 18965                                                                                                                                                                                                                          During training EE injured her right knee
## 18966                                                                                                                                                                             During training EE partner was delivering a hand strike on rt arm. EE had deep bruise.
## 18967                                                                                                                                           During training EE slipped on some ice, she caught herself with her hands. EE suffered from a sever sprain to left wrist
## 18968                                                                                                                                                                            During training EE was handcuffed behind back and partner lifted arms to high over head
## 18969                                                                                                                          During training EE was holding another staff member in an aggravated hold. Staff member leaned back and knee popped and EE fell on ground
## 18970                                                                                                                                                                                                During training EE was running and struck the curb with his rt foot
## 18971                                                                                                                                                                                                      During training EE was sprayed in face with oc spray in eyes.
## 18972                                                                                                                                                            During training a roof collapsed. Employee was trying to exit building and his right clove came off. ()
## 18973                                                                                                                                            During training activity all were in group keepingballoons in air w/feet & hands when EE was kicked in shin by accident
## 18974                                                                                                                   During training as the door was opened jammed my little finger in the cell door as we went through the door my finger was jammed aganist the bed
## 18975                                                                                                                                                    During training at pied. Corr. Inst., felt pain inleft shoulder while pushing officer wilson into holding cell.
## 18976                                                                                                                                                                           During training at the firing range emp appeared to be suffering from heat exhaustion ()
## 18977                                                                                                                                                                 During training class of burning house-EE closed adoor and the glass fell out and cut EE on rt leg
## 18978                                                                                                                  During training class while performing a bent wrist tech his rt wrist & thumb became stiff & sore EE does not know how injured his rt wrist/thumb
## 18979                                                                                                                                                              During training defending against an attacker. Fellbackwards w/force using hands & arms to break fall
## 18980                                                                                                                                             During training doing a tactical handcuffing technique the officer states he injured the lower portion of his back. ()
## 18981                                                                                                                                                                              During training employee slipped & fell on right shoulder in a simulated knife fight.
## 18982                                                                                                                                                                      During training employee was shifting her weight from one foot to the other causing a strain.
## 18983                                                                                                                                                    During training excercise officers partner accidentally throw officer into wall, causing him to hit his head ()
## 18984                                                                                                                                                                   During training excercise, fell to mat and upon returningback to feet, sprained/twisted rt knee.
## 18985                                                                                                                                                                                          During training exercise EE fell on concrete pavement and landed on knee.
## 18986                                                                                                                                              During training exercise another officer fell against the outside of right knee. Right knee acl reconstruction 8/2/11
## 18987                                                                                                             During training exercise on the ropes course was reuires to swing across a 10' area. Slipped on ropinjuring 1st finger on each hand, lt arm during fal
## 18988                                                                                                                                                                                                 During training exercise, EE took a direct strike to the right arm
## 18989                                                                                                                                                                           During training exercise, I was in the redman suitand was injured, doing cell extraction
## 18990                                                                                                                                                    During training exercise, employee entered building 116, walked into a glass door cutting bridge of his nose ()
## 18991                                                                                                                  During training his partner used sankyo take down method in which you sed force to the floor. He gotoff the floor and felt pain in right shoulder
## 18992                                                                                                                                                                                              During training instructor kicked EE's hand and caused some swelling.
## 18993                                                                                                                                                                 During training maneuver, she experienced a sharp pain in upper ribs when taken down on the mat ()
## 18994                                                                                                                                                                                                            During training manuever w/coworker, injured lt ankle..
## 18995                                                                                                                                                                                               During training on bike, ducked to avoid pole, lost balance and fell
## 18996                                                                                                                                                      During training practicing a technique other officer pulled on my head and the cap of my front tooth broke ()
## 18997                                                                                                                                During training pulled something in lower back causing pain across lower back and down right let. Did not complete the training. ()
## 18998                                                                                                                                                                                                                         During training rt leg twisted to hip area
## 18999                                                                                                                                                                     During training session lt foot got caught in mat while being pushed away and twisted my anlke
## 19000                                                                                                                                                                                               During training session, employee hit her head on restraint chair ()
## 19001                                                                                                             During training showing a technique knee spear to the common nerve in thigh. Heard a popping sounds went down on foot, came back up and could not move
## 19002                                                                                                                                                  During training sustained injury to right shoulder during single leg take down at montgomery community college ()
## 19003                                                                                               During training the 2 hand take-away twisting baton to keep control, right shoulder popped several times, shoulder and arm went numb, shot pain to my fingertips. ()
## 19004                                                                                                                                                                            During training there was body to body contact people falling on top of each other etc.
## 19005                                                                                                                                                                                              During training twisted to side with the sheild and fell to the floor
## 19006                                                                                                                                    During training, EE and his partner fell to ground, weight of them caused EE's lt hand, palm down, to hyper extend his lt elbow
## 19007                                                                                                                                                                                                             During training, EE fell on lt shoulder, separating it
## 19008                                                                                                                                               During training, EE was exposed to live shots from firearms. Was wearing hearing protection during this orientation.
## 19009                                                                                                                                                       During training, EE was on top of another officer. Other officer threw her off and she landed on her lt side
## 19010                                                                                                                                                                                                         During training, EE was running and twisted his left knee.
## 19011                                                                                                                                                                                                              During training, EE was sprayed in face with oc spray
## 19012                                                                                                                                            During training, EE was training with baton using strikes and arm bar comalongs and holds. Elbow becam sore and swollen
## 19013                                                                                                                                                                During training, EE's partner had applied bent wrist technique to a takedown and EE pulled a muscle
## 19014                                                                                                                                                                                     During training, attempted forward breakfall, stuck out he rhands to stop fall
## 19015                                                                                                                                                                 During training, came to a ditch in the woods and jumped across. Felt something pull in his rt hip
## 19016                                                                                                               During training, did a take down and laid full on knee, EE twisted hip in an attempt to throw partneroff of her as it was part of the training class
## 19017                                                                                                                                     During training, employee states while performing kneeling breakfalls, a terrible pain appeared in her right hip upon kneeling
## 19018                                                                                                                                                                                                During training, fell backward to ground with trainee on top of him
## 19019                                                                                                                                                                  During training, injured lt foot during two officer take down while playing the part of an inmate
## 19020                                                                                                                                                                                                          During training, injured rt shoulder while firing shotgun
## 19021                                                                                                                                                                                                      During training, left leg slipped when getting up off of mat.
## 19022                                                                                                                                 During training, noticed rt thumb and wrist began to hurt and swell. Could not indentify cause or exact moment the injury occured.
## 19023                                                                                                             During training, ofcr was practicing offender takedown. Was maintaining control of leg of other trainee when lt side of head hit buttock of trnee &pop
## 19024                                                                                                                                                                           During training, officer attempted a tech. Was forced to mat, felt pain in left shoulder
## 19025                                                                                                                                                                                         During training, rt foot slipped & he fell backwards, twisting his rt knee
## 19026                                                                                                                                                                                 During training, running and twisted rt ankle and fell down, striking the pavement
## 19027                                                                                                                                                                                               During training, taken down to floor by partner, felt pop in lt knee
## 19028                                                                                                                                                                                                    During training, while being pepper sprayed her eyes were burnt
## 19029                                                                                                                                             During traning on state firing range, right thumb was too high on gun and slide came back and cut thumb across nuckle.
## 19030                                                                                                                                                               During transfer of patient ees r thumb was injuredright hand was trapped between matress and patient
## 19031                                                                                                                                                                     During transport to vltd, resident displayed physical aggression and scratched EE on right arm
## 19032                                                                                                                          During unanticipated use of force he struck his wrist on steel nightstand inside of inmates room attempting to bring inmate under control
## 19033                                                                                                                                                                                    During unarmed defense training EE pulled, popped, and strained muscles in neck
## 19034                                                                                                                                              During unarmed self defense after one exercise procedure top lt arm had sharp pain in it. Sharp pain in upper lt arm.
## 19035                                                                                                                                                                                                                               During unarmed self defense training
## 19036                                                                                                                                                                       During unarmed self defense training I experienced a tearing feeling and pain in rt shoulder
## 19037                                                                                                                                                                                          During unarmed self defense training practicing moves. Neck & lower back.
## 19038                                                                                                                                  During unarmed self defense training, EE face downon mat, another EE fell on EE lower back with fullbody force, lower back injury
## 19039                                                                                                                                                              During unarmed self-defense EE was hit in the mouth while attempting an uasd technique by co- worker.
## 19040                                                                                                                                                                                        During unarmed self-defense training EE fell on his right shoulder onto mat
## 19041                                                                                                                                                      During unarmed self-defense training, another trainee applied a defensive technique, injuring EE's right hand
## 19042                                                                                                                                                             During unarmed self-defense training, was taking down an officer & his elbow went into her chest area.
## 19043                                                                                                                                                         During unit shakedown while turning a bed mattress over to inspect it he scraped lt upper arm on bed frame
## 19044                                                                                                                                                                                                                          During use of force EE injured lower back
## 19045                                                                                                                                                                                                     During use of force fell on floor w/inmate & twisted his elbow
## 19046                                                                                                                                                                                                                     During use of force felt sharp pain in back ()
## 19047                                                                                                                                                 During use of force in segregation he used both hands to control the inmate and his hands got pressed against cell
## 19048                                                                                                                              During use of force in seregation, the shield was pushed in the EE direction striking him in the facial area on the right cheek bone.
## 19049                                                                                                                                                                                    During use of force incident inmate pulled him down & stuck him on side of nose
## 19050                                                                                                                                                                                                         During use of force inmate became upset and bit left bicep
## 19051                                                                                                                                               During use of force inmate was being restrained and EE's right wrist was injured while trying to handcuff the inmate
## 19052                                                                                                                                                                                                           During use of force left thumb entagled in restraints ()
## 19053                                                                                                                                                                            During use of force on an inmate EE was kicked by inmate who was kicking and struggling
## 19054                                                                                                                                                                                                                During use of force on inmate right hand was bitten
## 19055                                                                                                                                                                                                                       During use of force on inmate she was bitten
## 19056                                                                                                                                                                                   During use of force staff had to enter an area where an agressive inmate hit him
## 19057                                                                                                                                                                                                              During use of force was bit by an inmate. Left thumb.
## 19058                                                                                                                                                                                                              During use of force, EE fell to floor and struck knee
## 19059                                                                                                                                                                                         During use of force, EE was struck by an object causing cut to right palm.
## 19060                                                                                                                                 During use of force, helmet shield hit nose and he hit elbow on door of cell. Cut on right index finger while holding inmate down.
## 19061                                                                                                                 During use of force, holding inmates arm while another officer has holding upper body & went to floor. Scratches lt arm, rt hand, 3rd & 4th finger
## 19062                                                                                                                                                         During use of force, inmate attacked officer by getting his arm around officers neck and twisting his neck
## 19063                                                                                                                                                                                                  During use of force, inmate lunged at EE and bumped his shoulder.
## 19064                                                                                                                                                                        During use of force, inmate stripped handcuffs across EE's middle finger causing it to bend
## 19065                                                                                                                                                               During use of force, inmate tore his shirt, after use of force, he realized shoulder arm was hurting
## 19066                                                                                                                                                                                            During use of force, officer slipped in water and landed on right hand.
## 19067                                                                                                                                               During use of force, trainee refused to be restrained, EE leg slipped from beneath him and trainee fell on his ankle
## 19068                                                                                                                                                  During visit at alberta professionals, greensboro, EE fell as she stepped onto unlevel paved area in parking lot.
## 19069                                                                                                                                                                       During volleyball class, EE was driving the ball over the net & injured her left wrist. Pain
## 19070                                                                                                                                                                           During weapon retention demo, his hand bent backward, heard a popping sound in his wrist
## 19071                                                                                                                                                                                          During weapon retention technique, injured rt forefinger and index finger
## 19072                                                                                                                                                                                                                        During wellness event, EE jammed left thumb
## 19073                                                                                                                                                                                                During wilderness training canoe capsized and employee hit her head
## 19074                                                                                                                                                                                               During wrestling practice employee receive blow to nose from student
## 19075                                                                                                                                                                   During wrestling practice, EE was wrestling 133lb starter and injured his neck on starters knee.
## 19076                                                                                                                                                                               During wrestling training excercise, male trooper punched EE's rt ear and cheek bone
## 19077     During yard call in hu#3, officer jackson noticed inmant bleeding from the mouth and when inmate attempted to fight another inmate he got in between the two inmates and held one inmate against the wall. Officer jackson was scratched by one of the inmates
## 19078                                                                                                                                                                                                                   Duringi training, EE passed out due to the heat.
## 19079                                                                                                             Durning recreation activies a fight broke out between students, while restraining students someone fell across Mr. Browns knee twisting it from behind
## 19080                                                                                                                                     Durning training employee had his left wrist and hand twisted to it popped in his fingers and he has numbness in his left hand
## 19081                                                                                                                                       Durning unarmed self defence training employee rt wrist was twisted and it popped and he had sharp pain from wrist into hand
## 19082                                                                                                                                                                                                                                             Dust blew in right eye
## 19083                                                                                                                                                                                                         Dust blew in right eye as a lawn mower passed by employee.
## 19084                                                                                                                                                                            Dust falling from boxes caused allergic reaction hives on legs, face, arms, and stomach
## 19085                                                                                                                                                                                                                                        Dust fell into EE's rt eye.
## 19086                                                                                                                                                                                                    Dust from a door being sanded caused EE to have anasthma attack
## 19087                                                                                                                                                                                                                 Dust from chemical at work irritating cut on face.
## 19088                                                                                                                                                                                                                         Dust from skill saw went into EE's rt eye.
## 19089                                                                                                                                                                          Dust particles dispersed into eye while throwing away trash in outdoor waste container ()
## 19090                                                                                                                                       Dust particles got into particles eye - contact lens. Caused irritation wokring at secretary's desk on inventory list-rt eye
## 19091                                                                                                                                                                                  Dust, mold and mildew bacteria coming from vent in office. Respiratory congestion
## 19092                                                                                                                             Dust, mold, and paint fumes caused by construction at the local office inflamed employee's sinus cavity, causing swelling and redness.
## 19093                                                                                                                                                                                                    Dust/soot particles coming out of filters in ventilation system
## 19094                                                                                                                                                                                               Duster handle did not retract and caused a scrape on employee's shin
## 19095                                                                                                                                                                                                      Dustig stairrails fell down stairway, caught self w/right arm
## 19096                                                                                                                                                                            Dusting a bookcase in a dormitory room, when a splinter entered into her right forearm.
## 19097                                                                                                                                                       Dusting area to paint that insulation had been pulled out previously thinks piece of insulation in right eye
## 19098                                                                                                                                                                                                      Dusting bookcase in community room and dust went into rt eye.
## 19099                                                                                                                                                                                          Dusting desk off in a office and bumped the desk with my knee. Right knee
## 19100                                                                                                                                                                                                                            Dusting pews and pulled muscle in back.
## 19101                                                                                                                                                                     Dusting stair rail and missed a step; twisted arm when holding on to rail to keep from falling
## 19102                                                                                                                                                                          Dx with lateral epicondylitis 4 yrs ago, increasedworkload aggravated exisiting condition
## 19103                                                                                                                                                                                                                                 Dye on trash got on employee's eye
## 19104                                                                                                                                                 E alleges that he was in a state car and a small object was blown into his left eye by fan on the air condiitoner.
## 19105                                                                                                                                  E estates a box of chicken was about to fall and EE went to catch it and it pinned hand against thefreezer door sill injuring it.
## 19106                                                                                                                                                                      E estates while performing a TB skin test, accidently stuck lft index finger with the needle.
## 19107                                                                                                                                                       E ewas holding elevator door open for inmate to be transferred to another loaction and door cloosed on hand.
## 19108                                                                                                                                                               E ewas monitoring students showers water on the floor caused him to slip and fall twisting his knee.
## 19109                                                                                                                                                                                                            E was carring a patient back to the unit and hurt back.
## 19110                                                                                                             E was preparing to pump gas into his state vehiclewhe mechanism that locks teh gas nozzle in the "open flow" position was left on and gas spilled on e
## 19111                                                                                                                                                                                               E was sitting at control desk when eye became irritated in "c" dorm.
## 19112                                                                                                               E. States she was sitting at the front desk while tech. Was cleaning machine both manually & w/ a vacuum sucion, - chemical could be smelled in air.
## 19113                                                                                                                                                                                                                    EE "blacked out" while driving department buggy
## 19114                                                                                                                                                              EE & 2 other EE's had transferred an obese pt fm bed, to bath, back to bed. Low back began hurting ()
## 19115                                                                                                                                                                     EE & 3 other co-workers were removing a 264lb printer from a shipping pallet. Strain low back.
## 19116                                                                                                                   EE & 3 other employees were in back of truck that was deliverying meals to the other facility. The driver took curve too fast, EE fell to floor.
## 19117                                                                                                                                                      EE & Dr. Were putting dog on echo table for ultra sound, dog resisted, which caused strain of left upper back
## 19118                                                                                                                                EE & a co-worker were moving a box containing chemicals & after smelling a strong odor they dropped the box exposing them to fumes.
## 19119                                                                                                                                EE & and coworker were changing resident, resident got agitated and started kicking, resident kick EE right hand to the bed rail ()
## 19120                                                                                                                                             EE & another EE was placing client in her chair and struck her leg against pedal of bathboard. Bruise to rt lower leg.
## 19121                 EE & another EE was trying to get the resident up out of the bed into the wheelchair. They tried to stand the resident up & he tried to sit down to early EE held up resident & pulled something in the lower part of the back on the left side ()
## 19122                                                                                                                                 EE & another EE were attempting to assist resident in the wheelchair, as they were sitting resident up she kick EE in the chest ()
## 19123                                                                                                                EE & another EE were lifting a patient from the floor. Patient was resting her head on bed EE was on her knees & hurt her arm while picking her up.
## 19124                                                                                                             EE & another EE were moving a desk going up stairsdesk was on hand truck & other EE was pulling up on hand truck. Desk fell & struck EE on low r ankle
## 19125                                                                                                                                                                               EE & another EE were putting resident to bed when he felt a sharp pain in lower back
## 19126                                                                                                                                                                        EE & another hct were pulling resident up in bed EE back started hurting, EE back popped ()
## 19127                                                                                                                                        EE & another staff helping pt up ramp when pt grabbed EE with both hands & squeezed them. Pt began to kick & hit unprovoked
## 19128                                                                                                                                                                       EE & another staff lifted client out of chair intobed & EE felt pull in left shoulder blade.
## 19129                                                                                                                                                           EE & another staff member bumped heads while assisting to try to break up a fight between 2 patients. ()
## 19130                                                                                                                           EE & another staff member were going to turn pt with drawsheet. When lifting patient on drawsheet EE felt numbing feeling in lower back.
## 19131                                                                                                                              EE & another staff member were moving a body on body tray from lower rack to higher area, wgt of tray shifted, twisting EE's rt wrist
## 19132                                                                                                                                                             EE & another staff member were unloading a large genny chair off van. Caused strain in right shoulder.
## 19133                                                                                                                                                   EE & another staff transferred client from bed to wheelchair. EE lifted lower body of client & felt pain in back
## 19134                                                                                                                                        EE & client EE were lifting a box - client let go of box causing all the weight to shif to EE & weight jerked left shoulder
## 19135                                                                                                             EE & client where shreding paper. Next day had re-action to paper particle. Also, client had cold. Allergic reaction head, resp., skin, hip, leg, foot
## 19136                                                                                                                                                                          EE & co-wkr were assisting a pt to standing position, pt dropped down, EE felt bk pull ()
## 19137                                                                                                                                     EE & co-worker had a pt by each of their arm, pt threw them self on floor causing EE to fall in to locker hitting her back. ()
## 19138                                                                                                                      EE & co-worker moving a metal storage cabinet, through doorway, when cabinet shifted on dolly, crushing EE hand betweend cabinet & brick wall
## 19139                                                                                                                                    EE & co-worker was releasing pt out of psych restraints, pt tried to kick co-worker with her leg, back began to hurt. Low back.
## 19140                                                                                                                             EE & co-worker was restraining a juvenile taking him to the floor to place restraints when he rec'dinjury to his left shoulder & neck.
## 19141                                                                                                                                          EE & co-worker were lifting pt to put her in chairdidn't notice pain until she was helping another pt, can't raised r arm
## 19142                                                                                                                      EE & co-worker were loading sea kayaks onto the trailer for afternoon trip, EE stepped over arm of trailer, pin disengage, trailer fell on EE
## 19143                                                                                                                                            EE & co-worker were moving a pine straw baler thathad been built in this shope. EE strained his left lower extremities.
## 19144                                                                                                                           EE & co-worker were transferring a client from thetrolley to wheelchair. After placing client in chair, felt pain in upper part of back.
## 19145                                                                                                                     EE & co-worker were unloading truck when co-workershut EE's finger in tailgate causing laceration tort. Ring finger. Will return to work 4-1-8
## 19146                                                                                                                                                       EE & coworker attempting to arrest subject & she resisted several times causing bruises to EE's rt upper arm
## 19147                                                                                                                                               EE & coworker taking inventory on 2nd floor of music house. As they descended the steps, EE missed the last step. ()
## 19148                                                                                                                                                EE & juvenile was moving materials from 1 locationto another when she tripped on broken pavement injuring rt. Knee.
## 19149                                                                                                                                          EE & nurse was given ad'ls to resident when he swung & hit EE across the face in the nose EE glasses fell to the floor ()
## 19150                                                                                                                                             EE & pt fell to floor & rooled over onto EE left wrist, also pulled lower back. Pt agitation. Left wrist & lower back.
## 19151                                                                                                                               EE & resident entering door when resident jerked away causing her to loose her balance & hit her right knee on metal portion of door
## 19152                                                                                                                                                                       EE & resident lifting box onto truck. EE felt sharp paon in lower back & stopped immediately
## 19153                                                                                                                                                        EE & several students were out hitting golf balls & student mistakenly struck EE in the corner of left eye.
## 19154                                                                                                                                  EE & students were constructing flower pots. One of the students was hammering & a nail flew from the hammer & hit EE in the eye.
## 19155                                                                                                                                                                                      EE & two other staff had to put client in pic, client kicked EE on right hand
## 19156                                                                                                                                                                 EE & two other staff were attempting to restrain an out of control juvenile. EE sprain left thumb.
## 19157                                                                                                                                                     EE - wind blew towwer door and she tried to grab it, to keep it from slamming against railing. Rt wrist sprain
## 19158                                                                                                                                                                                           EE 1:1 w/ pt, pt swung @ EE, EE tried to block w/hand, left thumb hit ()
## 19159                                                                                                                                                                                    EE 1:1 w/pt in bathroom, pt attacked EE, hitting them in head and scratching ()
## 19160                                                                                                                                                 EE @ comfort suites, stood up to walk to bathroom slipped and twisted knee. Knee swelled and could not walk on it.
## 19161                                                                                                            EE EE in use of force training, playin the part of the inmate when EE entered cell using body sheild. Sheild rubbed against forehead, causing abraision
## 19162                                                                                                                       EE EE taking trash from boxes & putting on dollie & carring to dumpster. Back started hurting the next day. May have reinjured back muscles.
## 19163                                                                                                                                                                                  EE EE was walking consumer to bathroom when consumer struck EE in the lower back.
## 19164                                                                                                                                                                                                          EE May have been bitten by unidentified insect on rt hand
## 19165                                                                                                                                                                                                         EE May have been checking in serials and shelf reading doc
## 19166                                                                                                                                                              EE May have been exposed to asbestos while cleaning fan coils; contractor did not fully clean area ()
## 19167                                                                                                                                                                                                                 EE May have been exposed to the hepatitis c virus.
## 19168                                                                                                                                                                                                             EE May have gotten posion oak/ivy while pulling weeds.
## 19169                                                                                                                                                               EE a piece of debris fell into his eyes while supervising inmates replacing a light fixture (lt eye)
## 19170                                                                                                                   EE a pt up fm chair, pt began to fall, EE broke pt's fall, all weight went to EE, the sudden shift of weight caused discomfort in right ankle ()
## 19171                                                                                                                                                                       EE abraded her rt finger on with counter top or broken glass while working with exhaust hose
## 19172                                                                                                                                                                    EE accidentally bumped equipment in the course of performing routine operations and cut rt hand
## 19173                                                                                                                                                                                                                EE accidentally caught left hand in cooler latch ()
## 19174                                                                                                                                                                                                              EE accidentally cut her left middle finger with a saw
## 19175                                                                                                                                                                                                                 EE accidentally cut her rt thumb on a file cabinet
## 19176                                                                                                                                                                                          EE accidentally dropped scapel from hand and the blade cut rt hand thumb.
## 19177                                                                                                                                                                      EE accidentally hit glass; causing it to break and got glass in her eye and scratches to hand
## 19178                                                                                                                                              EE accidentally hit her right knee against the inside corner of her desk when she was getting up from her desk chair.
## 19179                                                                                                                                                  EE accidentally knocked over a cup of hot water that was sitting on a desk causing it to spill on his rt arm/hand
## 19180                                                                                                                                                                                                                 EE accidentally punctured her rt eye with a pencil
## 19181                                                                                                                                                                                           EE accidentally ran into side os desk and got lrg splinter in left thigh
## 19182                                                                                                                                                                                                            EE accidentally shot self in the rt thumb w/ a nail gun
## 19183                                                                                                                                                                                     EE accidentally shut door of van on his hand whilebeginning to leave job site.
## 19184                                                                                                                                                                                      EE accidentally sprayed self in the face with board cleaner... Eye irritation
## 19185                                                                                                                                                                                                           EE accidentally stepped into a hole and fell into a hole
## 19186                                                                                                                                                                                                    EE accidentally struck left index finger while nailing rafters.
## 19187                                                                                                                                                                                                                    EE accidentally stuck exacto blade in left hand
## 19188                                                                                                                                                                                                EE accidentially fell while climbing over a log and landed on wrist
## 19189                                                                                                                                                                                    EE accidentlt stuck self in the palm w/ needle during a neinpuncture procedure.
## 19190                                                                                                                                                                                     EE accidently closed a sliding glass door on his left middle finger. Fracture.
## 19191                                                                                                                                                                                                                               EE accidently closed door on finger.
## 19192                                                                                                                                                                                                                EE accidently drank paint thinner from wrong bottle
## 19193                                                                                                                                                 EE accidently fell on steps trying to enter back door. Rain formed puddle on steps. Right knee and both shoulders.
## 19194                                                                                                                                                                                                              EE accidently fell on wet floor injuring her rt thigh
## 19195                                                                                                                                                                                                                  EE accidently had chemical sprayed on top of head
## 19196                                                                                                                                                                                                                       EE accidently hit left hand on printer stand
## 19197                                                                                                                                                               EE accidently hit or bumped her hand on her computer monitor (contact was on rt. Hand & wrist area.)
## 19198                                                                                                                                                                                            EE accidently hit rt hand between thumb snd index finger on wheelchair.
## 19199                                                                                                                                                                                             EE accidently hit wall when turning around in bathroom and hit rt knee
## 19200                                                                                                                                                                                                                  EE accidently mashed right thumb pulling a wagon.
## 19201                                                                                                                                                                                                             EE accidently needlestick durin surgery. Left fin-ger.
## 19202                                                                                                                                                                                                        EE accidently punctured right middle finger w/a used lancet
## 19203                                                                                                                                                                                                                       EE accidently ran into control room pass box
## 19204                                                                                                                                                                                                            EE accidently rubbed some bengay ointment in her rt eye
## 19205                                                                                                                       EE accidently slipped and fell searching tractor trailer cab used in a bank robbery. Head, back, lthip, lt elbow, rt leg, upper front tooth.
## 19206                                                                                                                                                                                                                EE accidently stepped in a hole and jarred his back
## 19207                                                                                                                                                                                                     EE accidently stuck herself with a needle... Left index finger
## 19208                                                                                                                                                                                                     EE accidently stuck his thumb with needle after drawing blood.
## 19209                                                                                                                                                                                                             EE accidently stuck with a needle after drawing blood.
## 19210                                                                                                                                                                                  EE accidently touched hot muffler of gas powered pressure washer. Burned rt hand.
## 19211                                                                                                                                                  EE accompanyig resident to dining room & noted feeling of pull un rt shoulder. Muscle pulled in rt shoulder area.
## 19212                                                                                                                                                                                               EE acquired a puncture wound on a rusty dumpster while cleaning up..
## 19213                                                                                                                                                                                                  EE adding bottles to a nitic acid bath and splashed into her eyes
## 19214                                                                                                                                                   EE adding water to radiator-appeared to be non-pressured-opend gasket cap and hot water shot out onto EE's arms.
## 19215                                                                                                                                                       EE adjusted a post on large outside tent and notedmuch heavy moving/lifting felt pain between his shoulders.
## 19216                                                                                                                                                                       EE adjusting a denture in lab; no patient involved some acrylic resin got into EE right eye.
## 19217                                                                                                                                                                      EE adjusting belts exhaust fan with fan off some thing flew into eye. Foreign body in lt eye.
## 19218                                                                                                                                                                             EE adjusting fork & it came off causing it to droplt leg, hand abrasion & foot bruised
## 19219                                                                                                                                                                                                                     EE adjusting height of metal shelf-cut rt hand
## 19220                                                                                                                                          EE adjusting position of boat on trailer w/ another EE, strained calf muscle while pushing bow of boat to new position ()
## 19221                                                                                                                                      EE adjusting pumps under deposition chamber. As hestood up, his head was struck by a piece of metal on the deposition chamber
## 19222                                                                                                                                                   EE adjusting the level of box blade on the tractor when left hand slipped and jammed against lift bar of tractor
## 19223                                                                                                                                                                                                                       EE administered cpr w/o a mask/safety device
## 19224                                                                                                                                                                                 EE administering medical tx to unhappy cat-cat's claw penetrated vein on rt wrist.
## 19225                                                                                                                                                                EE administering medication to a horse when horse jerked its head and dislocated the EE rt shoulder
## 19226                                                                                                                                                         EE admitted to hospital as a result of high blood pressure which she is claiming are stress related to job
## 19227                                                                                                                                                                      EE advised that debris got in his left eye while operating creier tractor installing culvert.
## 19228                                                                                                                                                                            EE advised that he was lifting the pood chart up the stairs ib a dorm and he felt a pop
## 19229                                                                                                                                                                        EE advises that while struggling with an arrestinghe thinks he pulled a muscle in his back.
## 19230                                                                                                                                                                                          EE advising client to sit back down-client grabbedee's finger and bit it.
## 19231                                                                                                                                                                                   EE after injecting insulin she pricked her finger with needle. Lt middle finger.
## 19232                                                                                                                                                                                                   EE aggravated injury when lifting leg over steerinwheel of mower
## 19233                                                                                                                                      EE aggravater this preexisting injury during self-defense and baton techniques training. Injureback on 012303 in car accident
## 19234                                                                                                                                                                                                     EE agitated patient bit EE on arm. Human bite on left forearm.
## 19235                                                                                                                                                                                                       EE aided in turning a 276 lb. Patient frequently for 2 days.
## 19236                                                                                                                  EE alleded she was walking the hallway of stone building when she tripped an fell on wet floor that had just been mopped injurying l ankle & knee
## 19237                                                                                                                        EE alleded that when he was going into the door tobreak up a fight the door slammed into his shoulder hitting the upper right shoulder area
## 19238                                                                                                                                                                                               EE alledes anxiety and depression caused by the supervisors conduct.
## 19239                                                                                                                                           EE alledge she was walking to a meeting and fell in the mcnutt parking lot. Twisted foot and felt pain in right hand. ()
## 19240                                                                                                                                EE alledged foot got caught under chair & twisted around causing pain in rt. Foot, leg & hip. Lumbarback strain & rt. Ankle sprain.
## 19241                                                                                                                   EE alledged she was lifting a piece of luggage that a student was retrieving when there as a load popping noise and she felt pain in lower back.
## 19242                                                                                                                                                 EE alledged that he was attemptign to move buffer when he slipped and fell to the floor landing on his right side.
## 19243                                                                                                                        EE alledged that he was involved in a use of force while placing the inmate on the concrete floor, he accidently hit his knee on the floor.
## 19244                                                                                                                               EE alledged that while attempting to disarm her opponent & take him down, she twisted her rt knee & heard a cruching sound with pain
## 19245                                                                                                                                              EE alledged that while he was assigned to the roadsquad he stepped in a hole beside the road twisting his left ankle.
## 19246                                                                                                                       EE alledged that while he was in the process of moving the desk table to the sign out area, and ashe lifted the table his upper back popped.
## 19247                                                                                                                     EE alledged that while sitting in the chair in assigned station c4 & leaned her arm on console forearm wedged between console & frame of panel
## 19248                                                                                                                                                      EE alledges he was hit with the cuffs that were handcuffed to inmate striking him on his lt side of his face.
## 19249                                                                                                                EE alledges he was moving 4 boxes from floor to a cart 14 inches high, 1 at a time. On the 4th box he felt pain & something pull in his lower back.
## 19250                                                                                                                      EE alledges he was watching inmates spreading duston the camp site at hanging rock state park, when he felt like a piece of gravel was in eye
## 19251                                                                                                                                                                         EE alledges she was emptying a bucket and some chemicals splashed on her right forearm. ()
## 19252                                                                                                                                                         EE alledges she was in darkroom when an engineer contractor came up behind her and kissed her on the cheek
## 19253                                                                                                                  EE alledges that he injured his rt upper arm whilepulling on the starter rope of a weed eater while pulling he felt something in his upper rt arm
## 19254                                                                                                                 EE alledges that he was in food svc supr office talking on the wall mounted phone and an inmate pushed on the door and it struck him on l shoulder
## 19255                                                                                                                                                                                    EE alledges that he was walking on break and was stung on the neck by a bee. ()
## 19256                                                                                                                                                            EE alledges that in route to her office, slipped in dooor of office and fell backwards left ankle hurt.
## 19257                                                                                                                                                                                                         EE alledges that she was hit by automatic door segregation
## 19258                                                                                                                                                                                             EE alledges that she was injured in unarmed self-defense on 05. 30. 96
## 19259                                                                                                                                                             EE alledges that while ascending steps of tower # 10 to recieve 2nd shift officer twisted right ankle.
## 19260                                                                                                             EE alledges that while assigned to med. Yard EE threw a bag of trash at the trash and missed. EE picked up and threw it away she stood up and hit head
## 19261                                                                                                                                         EE alledges that while attempting to open the doorat post #7 that he alledgedly felt a sharp pain, while opening the door.
## 19262                                                                                                                                      EE alledges that while escorting and handcuffing inmates to and from the showers, her little fingeron her right hand was cut.
## 19263                                                                                                                                                                              EE alledges that while repairing high voltage line and he was shocked by high voltage
## 19264                                                                                                                                     EE alledges that while supervising road squad inmates and walking backwards she stepped on a can causing a twisting of rt foot
## 19265                                               EE alledges was cleaning 2nd floor offices at euc and brushed against an office chair which had a screw or nail protruding from the ipper part of the chair and received a deep scratch/puncture to right forearm ()
## 19266                                                     EE alledges was coming into the gym, found the door locked and when she looked in the window for assistance in opening the door it was opened on her, the window sill hit her nose with considerable force. ()
## 19267                                                                                                                                                 EE alledges was emptying trash and bruised left index finger trying to dislodge trash from the bot- tom of the can
## 19268                                                              EE alledges was in the golf cart with his supervisor and turned around to look at something and when the golf cart started to move he got his right foot caught between the golf cart and the curb ()
## 19269                                        EE alledges was on approved business trip in orlando, fl, was showering in the hotel and slipped and fell in the tub. She hit her right lower back on the edge of the tub and her right side hip, arm and shoulder area. ()
## 19270                                                                                                                                            EE alledges was putting lumber into the sheet rack and his hand struck the edge of a piece of expanded steel grating ()
## 19271                                                                                                                EE alledges was sitting on couch while other EE's arranged furniture for a staff meeting, other EE's pushed a couch into her right knee bruising it
## 19272                                                                                                               EE alledges was walking around the outside of a campus building and tripped over a pipe, lost her balance and fell injuring her left ankle & rt side
## 19273                                                                                                                       EE alledges while walking back to dirt path on north yard. She stepped in a dirt hole/gulley twisted rt ankle. Cont to walk felt sharp pain.
## 19274                                                                                                                                                                                                EE allegdes repetitive lifting & bending has caused strain in back.
## 19275                                                                                                                                                                  EE allege she was emptying trash into dumpster when she cut her lt hand as she pushed trashbag in
## 19276                                                                                                                                                          EE allege she was walking down stairs & "stepped down wrong" causing her to sprain her left knee & ankle.
## 19277                                                                                                                       EE allege she was working her normal shift when she was over come by fumes from painting in the bldg. EE experienced headache and nausea. ()
## 19278                                                                                                                                                                EE allege that he received a splinter in palm of right hand while lowering a wooden a-frame ladder.
## 19279                                                                                                               EE alleged "felt a sharp pain in my lower back & it felt as if something was pulling" while assisting medical staff in "holding down juvenile legs".
## 19280                                                                                                                                                                                            EE alleged a child threw a toy and hit her in the face close to rt eye.
## 19281                                                                                                                                                                                                                   EE alleged a drawer on desk cut her upper thigh.
## 19282                                                                                                                                                                                                                            EE alleged allergic reaction to gloves.
## 19283                                                                                                                                                     EE alleged as she attempted to get into the doc van she hit her lt knee on the step and corner of the van door
## 19284                                                                                                                                                                                      EE alleged dirt went into his eyes while he was cleaning the parking deck. ()
## 19285                                                                                                                                                                          EE alleged drill bit slipped from work, punctured finger while drilling wood at an angle.
## 19286                                                                                                                                                       EE alleged eh was moving a student desk in a classroom when the desk collapsed and fell on her right toe. ()
## 19287                                                                                                                                                                         EE alleged excessive dust in an old duct that the EE was discarding got into his left eye.
## 19288                                                                                                                               EE alleged he applied the brakes on his bike causing it to throw him over the handlebars injuring his hands, wrists, face and knees.
## 19289                                              EE alleged he exited the oakland parking deck and proceeded down the steps towards spring garden st. When he steeped of the curb, he slipped on some ice and legs came out from under him and he fell on his back. ()
## 19290                                                                                                                                                                       EE alleged he fell on curve when taking trash out of building falling onto his left knee. ()
## 19291                                                                                                                                                                                                                                EE alleged he fell out of chair. ()
## 19292                                                                                                             EE alleged he fell when stepping onto the floor that had just been stripped with wax stripper causing him to fall and hurt lower back, groin, hip/leg.
## 19293                                                                                                                                 EE alleged he grabbed the rope on the fly rail to slow it down and to keep it from falling too fast causing rope burns to fingers.
## 19294                                                                                                             EE alleged he is not exactly sure how injury occurred, but he noticed that his back begin to hurt after training with the ert/swat team 3/19/09 - 3/20
## 19295                                                                                                                                                                                        EE alleged he missed last step going down steps & fell - turned left ankle.
## 19296                                                                                                                                                                                          EE alleged he opened a window from inside, raised up and hit his head. ()
## 19297                                                                                                                                                                     EE alleged he opened back hatch of mail van & did not lift high enough. It fell on his finger.
## 19298                                                                                                                                EE alleged he opened the back door on b dorm and closed it unaware that his lft hand was on door frame-slammed on lft middle finger
## 19299                                                                                                                                                                       EE alleged he performed cpr on a person who was none responsive. He did not use a face mask.
## 19300                                                                                                                                                                      EE alleged he pulled muscle in back when bent overto pick up debris from deck while cleaning.
## 19301                                                                                                                                          EE alleged he pulled muscle in left upper leg nearhip while running & dragging a 150 lb manikin in 2009 swat competition.
## 19302                                                                                                           EE alleged he slipped on stairs between 1st and 2nd floor on his way down to put envelopes in campus mail. () left clavicle fracture & bruise left thigh
## 19303                                                                                                                                                                                                                  EE alleged he stepped on pipe approximately 14 ()
## 19304                                                                                                                                         EE alleged he twisted his knee while directing traffic for camps. He has not returned to work since the accident happened.
## 19305                                                                                                                   EE alleged he walked out the backdoor, twisted hisankle & fell down the stair injurying his knees, lt thumb, rt side chest & head, & left ankle.
## 19306                                                                                                                                       EE alleged he was a passenger in vehicle that driver lost control of vehicle and hit a tree head on causing chest injury. ()
## 19307                                                                                                                                         EE alleged he was approached by an aggressive inmate while working pods inmate attempted to hit EE and injured his rt hand
## 19308                                     EE alleged he was assigned to work on a large-scale move of library materials from one floor to another. This is a repetitive motion injury resulting from grasping and gripping materials to transfer them shelf to shelf. ()
## 19309                                                                                                                                        EE alleged he was attempting to move a copier/printer and was cut by the bottom of the copier/printer. Injured left hand ()
## 19310                                                                                                                                                               EE alleged he was carrying coin bags when he felt pain & numbness in lt arm from shoulder to fingers
## 19311                                                                                                                                                             EE alleged he was carrying out trash to the dumpster and stepped on ice and fell on his left thigh. ()
## 19312                                                                                                                                       EE alleged he was changing out container at springgarden apartments trash chute room & an air borne particle got in his eye.
## 19313                                                                                                    EE alleged he was chasing a suspect that ran from him on a traffic stop and was injured while attempting to take suspect into custody. Inj rt. Knee and shin ()
## 19314                                                                                                                                                                            EE alleged he was cleaning carpet & hit elbow as he was bringing equipment out of room.
## 19315                                                                                                EE alleged he was cleaning caustic mix tank when small amount of caustic splashed into his left eye. EE was wearing face shield and apron but no safety glasses. ()
## 19316                                                                                                                     EE alleged he was cleaning out a drain when glove was caught in rotating snake. It pulled off his glove and four fingers back to the knuckles.
## 19317                                                                                                                                  EE alleged he was clearing a stopped up sink drainwhen he removed the p-trap, the chemical backed out of drain and onto his face.
## 19318                                                                                                                                                                                 EE alleged he was climbing down off the air handler - and had a spasm in his back.
## 19319                                                                                                                                                                                           EE alleged he was cutting a piece of paper and cut finger with scissors.
## 19320     EE alleged he was driving from the science blding up tate st to the shop on oakland and stopped to allow a bus to pass. The bus's mirror hit the truck's mirror causing it to break and glass to hit is face and chest. Gove hlth instructed him to rinse eyes
## 19321                                                                                                                                            EE alleged he was driving into the sink building compound when something flew into his rt eye causing corneal abrasion.
## 19322                                                                                                                 EE alleged he was driving the van from post #6 to post #7 and went too fast through a ditch that hasbeen dug out too deep to drainage across path.
## 19323                                                                                                                                       EE alleged he was filing paperwork, went to remove a staple and staple penetrated through left thumb; dime-size bleeding. ()
## 19324                                                                                                                                                          EE alleged he was getting down from truck he was wworking on, stepped on the rack & twisted his rt ankle.
## 19325                                                                                                                                                                  EE alleged he was getting off lawn mower in shop &fell hitting rt knee & rt elbow on cement floor
## 19326                                                                                                       EE alleged he was getting out of his truck at the weatherspoon art bldg to shovel snow and he fell on the ice and snow injuring lf shoulder and lf hand.. ()
## 19327                                                                  EE alleged he was going into the rec center and bent down to fix the carpet and put his hand on the other door when the door shut on his hand. He hurt his right hand and went to gove health. ()
## 19328                                                                                                     EE alleged he was going up stairwell carrying equipment, missed a step and fell onto a step injuring right lower leg. Equipment was spray bottle and broom. ()
## 19329                                                                                               EE alleged he was handling condenser water at mciver chiller plant and noticed a rash approximately 30 minutes later. Has done this in the past with no reaction. ()
## 19330                                                                                                                                  EE alleged he was hanging banners when wind caughtthe banner; he tried to catch the banner, but cut his rt hand w/ utility knife.
## 19331                                                                                                  EE alleged he was hit by a car while crossing the street on the way to the humanities building. Injured left side face, left ankle, right shin and lower back. ()
## 19332                                                                                                                           EE alleged he was in the back of a truck picking up rocks out of a bin. When he picked up one, another slid falling onto his right hand.
## 19333      EE alleged he was in the dining hall air handler taking 5 gallon buckets of water lifting them overhead thru the roof hatch to someone else for about 4 hours. By sat night the pain kept getting worse. Stayed on mon 8/30, came in tues and went to gove. (
## 19334                      EE alleged he was in the nrl mechanical room doing friday chiller checks and then woke up on the floor. He called phill rash b/c he knew where to find him. Campus police, ambulance and sup were called. Was sent to moses cone hospital. ()
## 19335                                                                                                                                      EE alleged he was injured when he tackled suspect & landed on his knees oright n the asphalt road. Surgery 3/3/09******r knee
## 19336                                                                                                             EE alleged he was inside #3 boiler steam drum removing internal components and laying on left side removing a nut with wrench when he felt a pain in r
## 19337                                                                                                                          EE alleged he was kneeling down to put a boot on avehicle when his knee slipped off the curb which aggravated a pre-existing back injury.
## 19338                                                                                                                              EE alleged he was lifting an electric motor to puton the lift. When he let the motor down, he had pain in the arch of his right foot.
## 19339                                                                                                                                                                                    EE alleged he was lifting an exhaust fan & had pain in his lower right abdomen.
## 19340                                                                                                              EE alleged he was loading straw blower and bale of hay on back of truck when wind blew straw into his face causing him to sway backwards and jerk his
## 19341                                                                                                                               EE alleged he was loading the gantry on back of truck, it slipped & he caught it so it wouldn't fall and hurt his middle-lower back.
## 19342                                                                                                                                                          EE alleged he was making rounds and walking betweethe school building and tripped over some dirt and fell
## 19343                                                                                                                              EE alleged he was moving a desk down a hallway and caught his left pinky finger against a brick column. Pinched finger, left hand. ()
## 19344                                                                                                                                                 EE alleged he was moving sandwich board sign and tripped. Fell on concrete floor of deck. Injured hand and hip. ()
## 19345                                                          EE alleged he was on assignment at smith high scholl when a camera w/ a large lens slipped off his shoulder and right index finger was caught the weight of equipment. Rt index finger bent backwards. ()
## 19346                                                                                                             EE alleged he was painting stripes for parking spaces, he bent slightly over to push roller forward and pulled something in lower back when he straigh
## 19347                                                                                                                                                          EE alleged he was picking up bag of trash that was too heavy and felt something pull in his back/side. ()
## 19348                                                                                                                                                                          EE alleged he was picking up meter collection bagsout of truck and felt pain in his back.
## 19349                                                                                                                                                                               EE alleged he was pressure washing and developed arash on his forearm from the hose.
## 19350                                                                                                                                                          EE alleged he was pulling some concrete bags off the back of the truck ans had pain in his lower back. ()
## 19351                                                                                                                                                                   EE alleged he was pushing 600 lbs motor across concrete floor and jammed his toe into the motor.
## 19352                                                                                                                                                                                      EE alleged he was rotating a large scenic which fell over onto his left foot.
## 19353           EE alleged he was sitting at his desk working on the computer and had some pain in his chest. He went outside to have a cigarette and returned to his desk. He went to the urgent care and was transferred to moses cone-diagnosed w/ a heart attack. ()
## 19354                                                                                                              EE alleged he was sitting in control room waiting 2nd shift to give turn over briefing when he experience severe chest pain and difficulty breathing.
## 19355                                                                                                                   EE alleged he was standing & leaning over computerwhen he felf a pop in his lower back followed by severe pain. He wasn't able to stand of walk.
## 19356                                                                                                                                                               EE alleged he was starting a weed eater & hit his hand on the gas cap, scratching his r. Mid. Finger
## 19357                                                                                                                   EE alleged he was stripping floor when machine hita dry spot & twisted his back. Felt fine for the day, hurt the next. Lb surgery 10/30/08******
## 19358                                                                                 EE alleged he was stripping floors and lifting a low speed buffer when he lost his balance due to a latch giving way shifting the weight of the buffer and causing him to fall. ()
## 19359                                                                                                                                                    EE alleged he was struck by a violent inmate during a use of force in left eye, & his left thumb was bent back.
## 19360                                                                          EE alleged he was traveling south on bitting st when another vehicle failed to clear the intersection and collided w/ hinshaw's vehicle. Bump on left side of head, sm abrasion lf. Knee.
## 19361                                                                                                                                                                                               EE alleged he was trimming a tree and cut lt thumbwith the clippers.
## 19362                                                                                                                        EE alleged he was under building doing repair whencrawling out he felt something bite him in the side. Gove health diagnosed a spider bite.
## 19363                                                         EE alleged he was unloading lights and equipment off the electrics. He had one glove on when the rope began to shoot up at an immense speed. He grabbed it with both hands to stop it injuring rt hand. ()
## 19364                                                                                                                              EE alleged he was using a utility knife to trim a plastic part of the siren off his car when the blade hit his left thumb and cut it.
## 19365                                                                                                                                                                                    EE alleged he was using blower & sweeper & noticeddiscomfort in ears after use.
## 19366                                                                                                                    EE alleged he was using carpet extraction machine & he hit his hand on a computer that had been taken apart; he injure his right little finger.
## 19367                                                                                                              EE alleged he was walking near a construction project at the library and watching what was happeningwith the project when he stepped off the curb and
## 19368                                                                                                                                                    EE alleged he was walking sup steps inside mciver building when he slipped, grabbed rail and injuredlower back.
## 19369                                                                                                                EE alleged he was walking toward jackson library when he felt a sharp pain in left knee. EE claims possible factor is lifting computers on 3/19/09.
## 19370                                                                                                                                                               EE alleged he was walking up sidewalk when steppedon difference in concrete and fell. Injured ankle.
## 19371                                                                                                                                                                      EE alleged he was walking up steps when legs gave out and he fell backwards and hit his head.
## 19372                                                                                                                                                                                                      EE alleged he was working around the a/c units weeding and ()
## 19373                                                                                                          EE alleged he was working in the equipment room in mossman and when he raised up he hit his head on a pipe. He hit the right side of his head and eye. ()
## 19374                                                                                                                                        EE alleged he was working in the lab on a -80 freezer, he touch the corner of his right eye and had a burning sensation. ()
## 19375                                                                   EE alleged he was working on a ladder, came down and missed last two rings, twisted and hurt back. Went home at the end of the day and went to gove health the next day. No follow up needed. ()
## 19376                                                                                                                 EE alleged he was working on a project, went to sit back on a bucket and missed the bucket falling to the ground and hit his head and his hand. ()
## 19377                                                                                                                  EE alleged he was working on the router table whenrouter hit a knot in the wood, the wood kick back and his left middle finger to hit router bit.
## 19378                                                                                                                        EE alleged he was wrestling a student athlete and was kneed in the forehead while attempting a move. Caused deep laceration on forehead. ()
## 19379                                                       EE alleged he went into ceiling looking for misplaced tool and when got back to shop noticed fingers were swollen and rash on fingers, knees, elbows. Went to gove health and got injection for swelling, ()
## 19380                                                                                                                 EE alleged injured left ankle walking down steps at brown slipping on ice causing right foot to slip causing left leg and foot to go backwards. ()
## 19381                                                                                                                                                                          EE alleged injury to back occured when he was stepping out of the transfer bus, wet steps
## 19382                                                                                                                                                                                                           EE alleged inmate threw urine on him. Urine on left arm.
## 19383                                                                                                            EE alleged it was raining & the linoleum floor was wet. EE was entering building & went to go up the stairs when slipped & fell to the floor - fx wrist
## 19384                                                                                                                        EE alleged pick up outside trash to go to big trash can at the back door. He accidentally tripped on carpet and fell down. Injured neck. ()
## 19385                                                                           EE alleged right knee sore due to moving furn. From ground floor to 3 floor in cotton residence hall. The other guy who was helping slipped and all the furn weight went to his knee. ()
## 19386                                                                                                              EE alleged she accidentally stuck left index finger with a syringe while working with protein sample from cells collect from three human subjects. ()
## 19387                                                                                                                                                                                                      EE alleged she contracted MRSA during daily cleaning routine.
## 19388                                                                                                                                                                     EE alleged she cut finger with exacto knife while using it to cut stock paper to make pamplet.
## 19389                                                              EE alleged she entered the building where her office is. The tile floors had just been waxed heavily and she took one step inside the door and completely lost footing and fell on her left wrist. ()
## 19390                                                                                                                                                          EE alleged she fell on icy sidewalk of forrest street while reporting to work. Abrasion to right knee. ()
## 19391                                                                                      EE alleged she fell walking down wet stairs that weren't labelled as being wet and was inside the parking deck. Broke tailbone and rib, muscle strains in lf hip and neck. ()
## 19392                                                                                                                                                                              EE alleged she fell while descending outdoor stairs between mossman and eliot center.
## 19393                                                                                                                                                             EE alleged she felt a sharp pain in her wrist when opening (unlocking) doors and locking them back. ()
## 19394                                                                                                               EE alleged she grabbed the rope on the fly rail toslow it down. The weigh was too much and forced the rope through her fingers causing rope burns an
## 19395                                                                                                                                                                                                         EE alleged she hurt her back moving a mattress. Act 536550
## 19396                                                                                                                    EE alleged she hurt her right ankle at a training exercise. She was asked to run and jump during theexercise. She did so, landed on her r ankle
## 19397                                                                                                                                          EE alleged she injured back from repetitive liftngand carrying boxes to recycle bins at work. Deniesany specific incident
## 19398                                                                                                                                                                  EE alleged she injured rt arm, wrist & shoulder while bagging documents for shredding. Cat 660274
## 19399                                                                                                                                                                                               EE alleged she lifted a sign which caused shoulder pain to start. ()
## 19400                                                                                                                                              EE alleged she missed step and fell on left hand on her lunch break. EE not required to punch out during lunch break.
## 19401                                                                                                                                                                   EE alleged she misstepped off curb while directing traffic on north drive hurting left ankle. ()
## 19402                                                                                                                  EE alleged she mixing a new cleaning chemical withhot water when the mixture produced a chemical fogcausing her to cough & bring on bronchospasm.
## 19403                                                                                                                                            EE alleged she nearly fell when stepping off curb outside of mossman bldg on her way to lunch injuring rt ankle & knee.
## 19404                                                                            EE alleged she noticed burning sensation and swelling on neck while on playground with children. The next morning swelling and pain was worse and EE went to her personal physician. ()
## 19405        EE alleged she opened a letter that had off white powder in it. She touched the letter with a tissue and called police. Later that evening, she start to come down with sore throat, temp of 100. Believes it's just a cold, but police sent to gove health
## 19406                                                                                                                 EE alleged she placed a piece of cardboard to release can of disinfectant-when start to spray, the spray hit her right check and she inhaled some.
## 19407                                                                                                                                                           EE alleged she poured liquid from refrigerator in her cup, dranked from it, and discovered it was bleach
## 19408                                                                                                                                                                                           EE alleged she pulled door of south wing, door was locked, injuring arm.
## 19409                                                                                                                                                                                                         EE alleged she slipped and fell while mopping bathroom. ()
## 19410                                                                                                                                                                EE alleged she slipped on gravel on steps behind mciver parking deck, fell and injured lf. Foot. ()
## 19411                                                                                                                                                           EE alleged she tripped or slipped down a flight ofsteps to landing injuring lt knee, rt shoulder & head.
## 19412                                                                                      EE alleged she tripped over a trash can that she did not see and was in a new place. She stumbled, fell forward and hit the left side of head and right wrist on bookcase. ()
## 19413                                                                                                                                                                            EE alleged she tripped while walking on uneven sidewalk outside of the alumni house. ()
## 19414                                                                           EE alleged she was a passenger in patrol car. When she stepped out of car, driver accidentally hit gas instead of brake causing car to jerk forward and the passenger door to hit EE. ()
## 19415                                                                                                                                                                      EE alleged she was applying stripper to floor and as she walked across, she slipped and fell.
## 19416                                                                                                                                                  EE alleged she was bending over to pick up papers from lower book shelf when she felt a sharp pain in lower back.
## 19417                                                                                                                                                   EE alleged she was buffing classroom & tripped over buffer causing her to fall to floor injuring rt arm and leg.
## 19418                                                                                                                                           EE alleged she was carrying a box to parking lot wwhen she missed a step & fell to ground. Injured right foot and ankle.
## 19419     EE alleged she was carrying four books down the ne stairwell in jackson library when the toe of her shoe caught the rubber on the stair step and she fell to the landing between the 3rd and 2nd floors. She fell forward and struck her head and shoulder. ()
## 19420                                                                                                                           EE alleged she was checking on gas key that wasn'tworking. When she stood up from workstation a sharp pain went down spine and left leg.
## 19421                                                                                                                          EE alleged she was cleaning a bathroom stall. Whenshe was coming out of the stall, she hit her rightarm on the corner part of door latch.
## 19422                                                                                                                                                                        EE alleged she was cleaning a shower when she slipped on some water and fell onto her back.
## 19423                                                                                                                                                          EE alleged she was cleaning a window; when she raised the window, the window came down onto her lefthand.
## 19424                                                                                                                                                                      EE alleged she was cleaning in the bathroom when an insect flew in the window and bit her. ()
## 19425                                                                        EE alleged she was cleaning nmr glass tubes when the cap was trying to be removed the tube broke and went all the way through the plastic gloves injuring the index finger on left hand. ()
## 19426                                                                                                                     EE alleged she was cleaning the police dept kitchen when she hit her rt foot & toes on a computer monitor left on floor. Broke toe on rt foot.
## 19427                                                                                                                                EE alleged she was closing the control booth door after recieving the booth keys and accidently slammed the door on her right hand.
## 19428                                                                                                                        EE alleged she was coming out of a building when EE slipped on ice on the stairs & fell. She injuredright lower leg (scrapped and bruised).
## 19429                                                                                                                         EE alleged she was coming out of a building, stepped onto the cement, & fell landing on her rt side injurying her right hip, back and arm.
## 19430                                                                                                                           EE alleged she was coming out of building, slippedon wet stairs (rain) hitting back on edge of step injuring back, tail bone, and ankle.
## 19431                                                                                                                                                      EE alleged she was crossing spring garden st in the crosswalk when a car hit her and knocked her offher feet.
## 19432                                                                                                                                          EE alleged she was cutting metal & got some shavinin her right long finger while working; went to gove health on 2/22/08.
## 19433           EE alleged she was disposing of trash into a trash dumpster and when closing the door to this equipment, cut her right index finger on an area of the door. This area had been damaged to the point where a sharp edge had been created in the metal. ()
## 19434                                                                                                                                                                   EE alleged she was doing her normal work duties when she discovered she had a rash on her hands.
## 19435                                                                                                                                                            EE alleged she was dusting ledges and cleaning tracks when rt. Fore arm start to swell and turn red. ()
## 19436                                                                                                                                                                                EE alleged she was emptying a trash can, went to turn, and hit her hand on the desk
## 19437                                                                                                                                                                    EE alleged she was engaged in a volleyball game w/students and jammed two fingers on left hand.
## 19438                                                                                                                 EE alleged she was entering back door of the foustbuilding & stepped on a nail that was on the back entrance landing. EE removed the nail, put hyd
## 19439                                                                                                                                        EE alleged she was entering elevator & tripped b/celevator was not flush with the floor injuring herrt. Elbow and rt. Knee.
## 19440                                                                                                                                                     EE alleged she was entering elevator when elevator door closed too fast and banged her left arm near elbow. ()
## 19441                                                                                                           EE alleged she was getting trash from entrance way outside and didn't realize brick was higher than walk way, tripped, fell down & injured left shoulder
## 19442                                                                                                    EE alleged she was getting up from a child sized table and moving around chairs and tripped and fell to the floor catching herself with her kneed and hands. ()
## 19443                                                                                                                                   EE alleged she was going to the restroom. Inmate was cleaning lobby floor, EE slipped and fell on her lft arm, back and buttocks
## 19444                                                                                                                                                                              EE alleged she was going up steps & missed a step causing her to pull left hamstring.
## 19445                                                                                                                                  EE alleged she was in a car accident at the corner of elm st and fisher st. Ran a red light and was struck by another vehicle. ()
## 19446                                                                                                             EE alleged she was in a ft. Pursuit w/ wanted subject and lost her footing, causing her to fall forward onto payment. Lac. On rt. Hand and lf knee. ()
## 19447                                                                                                                        EE alleged she was leaving building via stairs when foot slipped on 3rd stair from bottom causing her to fall hitting hand, hip & shoulder.
## 19448                                                                                                           EE alleged she was leaving the brown building to go to class. She fell outside near the entrance of the building causing injury to her hand and wrist. (
## 19449        EE alleged she was leaving warehouse, went to check bay door to make sure it was secure. While walking back to vehicle and stepped into a sink hole. Tried to break fall w/ rt hand causing rt. Side to hit side of car. Contusion to rt hand and side body
## 19450                                                                                                                                                              EE alleged she was lifting a box of books and felt pain and a pulling sensation in her left shoulder.
## 19451                                                                                                                                              EE alleged she was lifting a full mop bucket to sink to empty & fell down onto sink on one knee with the full bucket.
## 19452                                                                                                                                                                                               EE alleged she was mopping stairwell and felt a pull in her back. ()
## 19453                                                                                                                  EE alleged she was moving a table that had a metalframe underneath it. When she put the table down, she realized she cut her middle right finger.
## 19454                                                                                                                EE alleged she was moving files from cabinet to storage boxes when a staple caught lt thumb cuticle & tore it. About two wks later, it was infected
## 19455                                                                                                                                                                                          EE alleged she was moving kick stool when metal edge hit and cut her leg.
## 19456                                                                                                                          EE alleged she was on the phone during her lunch break walking through back parking lot. As she passed a bush, she was stung by a bee. ()
## 19457                                                                                                                                                                  EE alleged she was over come by fumes from I/m using stripper to do the floors in aggrey building
## 19458                                                                                                                                                             EE alleged she was picking up trash from ground when dumpster door swung back and hit her in the head.
## 19459                                                                                                                                                                                      EE alleged she was pouring mop water-water splashed on rt. Leg burning it. ()
## 19460                                                                                                                                                          EE alleged she was pulling a garbage bag of linensup 3 flights of stairs twice causing a shoulder strain.
## 19461                                                                                                                                            EE alleged she was pushing & pulling on desk to move into another area when felt small pulling sensation in lower back.
## 19462                                                                                                                        EE alleged she was removing an empty 5gallon waterbottle from cooler when the bottle struck her in the chin and knocked her teeth together.
## 19463                                                                                                                                                                     EE alleged she was reporting to work & fell on icelanding hard on her back & hitting her head.
## 19464                                                                                   EE alleged she was returning to office from picking up name tags, opened the exterior door and hit big toe ripping half the toe nail up and cutting toe. Went to gove health. ()
## 19465                                                                                                                                                    EE alleged she was sitting in her parked vehicle writing citation when another vehicle backed into her vehicle.
## 19466                                                                                                                                                                EE alleged she was stacking art tables and picked up a table to mop when injured back and shoulder.
## 19467                                                                                                                 EE alleged she was standing behind bill hardin when he pushed chair back. Chair smashed into her right foot. EE went to gove health for treatment.
## 19468                                                                                                                   EE alleged she was standing beside ladder another EE was using to change fluourescet light bulb whena bulb fell, broke and glass hit her in eye.
## 19469                                                                                                              EE alleged she was stripping floor w/ buffer when buffer hit a hard area on floor causing buffer to jerk away from EE. She tried to control buffer, b
## 19470                                                                                                                                                        EE alleged she was teaching class when a sculpturefell from a board the board hit her finger causinginjury.
## 19471                                                                        EE alleged she was teaming up on carrying a large package, walking backwards. As she was putting the package down, she caught heal on cart and fell forward, landing on rt. Hand and hip ()
## 19472                                                                                                                                            EE alleged she was trying to set-up folding table and tripped and fell on concrete floor injuring rt. And lf. Knees. ()
## 19473                                                                                                                                             EE alleged she was using carpet extractor & the pushing & pulling of machine cause right hand & wrist injury (sprain).
## 19474                                                                                                 EE alleged she was vacuuming steps, turned to go unplug the cord and slipped on step falling forward to the floor. Injured both knees, lf ankle, lf forefinger. ()
## 19475                                                                                                                                                                 EE alleged she was vacuuming when she tripped & fell hurting her right knee & right middle finger.
## 19476                                                                                                                                          EE alleged she was walking across campus when she slipped on loose gravel, fell and injured fifth metacarpal on lt. Hand.
## 19477                                                                                                                                                                             EE alleged she was walking across campus, stepped on pebbles in the sidewald and fell.
## 19478                                                                                                                       EE alleged she was walking back from the restroom near uncg touring room in euc when she tripped on rug in front of doors at college avenue.
## 19479                                                                                         EE alleged she was walking between desk and book truck in office and stepped on a slick spot, slid and fell. She hit wooden book truck ans landed on floor on her back. ()
## 19480                                                                          EE alleged she was walking down the stairs beside the taylor theater coming to work and as she started to come down the last 4 steps, she slipped and fell to the bottom of the steps. ()
## 19481                                                                                                            EE alleged she was walking from oakland parking deck to mossman bldg when she tripped on uneven ground falling injuring left leg, knee and hand, rt eye
## 19482                                                                                                                                                                  EE alleged she was walking from parking garage to building & slipped on ice hurting knee & ankle.
## 19483                                                                                                    EE alleged she was walking into a meeting and walked through a thin glaze on ice that looked like water on the sidewalk. She slipped and twisted right foot. ()
## 19484                                                                                           EE alleged she was walking into the walker parking deck after work. The door leading into the building hit the top of her foot splitting it open and needed stitches. ()
## 19485                                                                                                                                                            EE alleged she was walking on sidewalk & simply lost her footing & fell injuring rt, leg, knee & ankle.
## 19486                                                                                                                EE alleged she was walking through the building toher office when she slipped and fell. The floor was very slippery. EE injured let buttock - muscl
## 19487                                                                                                                                    EE alleged she was walking through the waiting area and tripped on a chair leg. Fell and got large carpet burn on left knee. ()
## 19488                                                                             EE alleged she was walking to deliver paperwork when she was stung by a bee behind the neck on the way to the foust building. She delivered documents and then went to gove health. ()
## 19489                                                                                                                                                                          EE alleged she was walking to her car when she accidentally tripped over uneven pavement.
## 19490                                                                                                                          EE alleged she was walking to her office from the mciver parking deck when she slipped on the icy sidewalk & fell hurting her left ankle.
## 19491                                                                                                                                                                      EE alleged she was walking to stairs, rounded the corner, tripped and twisted her right foot.
## 19492                                                                                                                                                                           EE alleged she was walking to time clock & slippedin a puddle injuring rt. Side and leg.
## 19493                                                                              EE alleged she was walking to work, stepped in a hole in the grass in between the rec center parking and grass and twisted lf. Ankle. She went to own Dr. B/c already had an appt. ()
## 19494                                                                           EE alleged she was walking towards parking lot behind taylor theater, the sidewalk had an uneven loose brick, she tripped and fell over the sidewalk and punctured rt knee w/ pebble. ()
## 19495         EE alleged she was wiping the doors at the village tower apartments. She was using nutra-dis and not wearing gloves. She wiped her face from brow to chin with her hand and almost immediately the irritation started. Facial rash and eye irriatation. ()
## 19496                                                                                                                                                 EE alleged she was working an mendenhall buiiding and on her way back to grayson, she was stung by ayellow jacket.
## 19497                                                                                                                                                EE alleged she's developed tendinitis as a result of repetitive data entry duties. Injured rt hand, arm, and wrist.
## 19498                                                                                                                                                                                              EE alleged stumbled over mail carrier in walkway &injured head & leg.
## 19499                                                                                                                                                                           EE alleged that a large bee stung her on her righthand while she was working at post #6.
## 19500                                                                                                           EE alleged that a machine was turned sideways, she tugged on it to put it in the correct position when she heard three of four pops in left shoulder. ()
## 19501                                                                                                                                                                EE alleged that a violent inmate suddenly turned &struck him on the right cheekbone whith his fist.
## 19502                                                                                                                                         EE alleged that after coming into contact with moldy, dusty clothing in storage, he broke out in a red rash all over body.
## 19503                                                                                                                                               EE alleged that after sitting at her desk for a while, she stood up to leave office, stumbled and sprained ankle. ()
## 19504                                                                                                                        EE alleged that an icon inmate inhis unit opened cell door EE slipped and fell at the inmate's door he tryrd to break his fall with rt hand
## 19505                                                                                                                                                                              EE alleged that an inmate threw his tray of food at him, hitting him in the lt wrist.
## 19506                                                                                                                  EE alleged that another co-worker, mike roberts, jumped up & head butted him, pushed him into lockers & EE had to struggle to get him off. Injure
## 19507                                                                                                                                              EE alleged that as she was leaving the building, she approached the edge, she tripped and fell forward to the ground.
## 19508                                                                                                                                                                                              EE alleged that dust/debris in eye & produced laceration; unsure how.
## 19509                                                                                                                                                                                                   EE alleged that he continued to strike his right arm on the desk
## 19510                                                                                                                                                EE alleged that he injured his rt wrsit during a use of force with an inmate being housed in his unit of assignment
## 19511                                                                                                                                EE alleged that he passing out snack bags and inmate was on the yard EE loss the snack bag through trapdoor hit rt hand on the edge
## 19512                                                                                                                                                                                     EE alleged that he ran into a pothole that caused injury during roving patrol.
## 19513                                                                                                                          EE alleged that he soot up and felt dizzy as well as feeling light headed. At that point EE stated he wasn't sure if he passed out or not
## 19514                                                                                                                                                        EE alleged that he sprayed an inmte with pepper spray when the inmate struck him on the lt side of the face
## 19515                                                                                                               EE alleged that he stepped onto patch of ice that was on stairs outside of building on his way to the parking lot landing on his upper back and head
## 19516                                                                                                                                               EE alleged that he tripped on stairs, stumbled andfell causing him to break toe on right foot and b ruise left ribs.
## 19517                                                                                                             EE alleged that he was coming down the steps on the tower when he slipped on the steps on tower 1. 1foot got caught in the other slipped off other ste
## 19518                                                                                         EE alleged that he was cutting a tree branch off at spring garden and highland when the branch feel and hit him in face. It knocked off his glasses and scratched his eye.
## 19519                                                                                                                     EE alleged that he was in assistant unit chair and when he attempted to turn around and speak to unit manager the chair threw him to the floor
## 19520                                                                                                                EE alleged that he was involved in a use of force with an inmate while placing handcuffs on wrist. Inmate pulled away and injured EE's rt shoulder.
## 19521                                                                                                                 EE alleged that he was lifting cases of sodas and putting them on the cart to carry them to the units when he felt a burning sensation rt shoulder
## 19522                                                                                                                                     EE alleged that he was lifting two 5 gallon containers of liquid & a buffer in & out of a truck when he strained his shoulder.
## 19523                                                                                                                                                               EE alleged that he was making security check when he stepped in a hole thus turning his right ankle.
## 19524                                                                                                                                                            EE alleged that he was taking the cat off the unitwhen the cat bit his rt. Wrist area. Right wrist area
## 19525                                                                                                                                           EE alleged that he was watching a truck on the enterprise yard when he tripped on a cement slab hitting his adbomen area
## 19526                                                                                                                                       EE alleged that inmate accidentally burned him under his right eyelid with a cigarette while escorting him back to the dorm.
## 19527                                                                                                                                                                 EE alleged that inmate struck EE with closed fist in facial area, injury to rt side of cheek, nose
## 19528                                                                                                                                                                                                                               EE alleged that pepper spray drifted
## 19529                                                                                                                                                                  EE alleged that she & another EE were lifting a table when table leg fell off hitting her rt leg.
## 19530                                                                                                                                                                         EE alleged that she bumped knee on desk while at work & it did not hurt until she got home
## 19531                                                                                                                                                                              EE alleged that she fell down while dancing in cone ballroom at staff awards program.
## 19532                                                                                                                                       EE alleged that she fell on the curb outside of her office while returning from lunch. She injuredleft knee, elbow and hand.
## 19533                                                                                                                                                   EE alleged that she slipped & fell on wet floor inthe entrance of the building hitting & injuring her right knee
## 19534                                                                                                                                        EE alleged that she was assigned to 3c and d dorm and while walking by a fan in the hallway she felt an shock on lt forearm
## 19535                                                                                                                       EE alleged that she was entering gate at old adminbuilding when she slipped on a patch of ice. She fell on rt knee. Injured rt knee & thumb.
## 19536      EE alleged that she was exiting curry building elevator. The door started to close, she put her hand against it to stop it, but the door didn't stop closing. Was thrown backwards onto her rollerbag; the back of her head hit the back wall of elevator. ()
## 19537                                                                                                                                                       EE alleged that she was exiting the bathroom area and slipped off step casuing her to twist her right ankle.
## 19538                                                                                                                                             EE alleged that she was getting a bucket out of a closet when the door shut against middle, left finger and jammed it.
## 19539                                                                                                                                  EE alleged that she was getting out of the chair while working in unit control room up when she got light headed and went to step
## 19540                                                                                                                                                    EE alleged that she was going into the staff dining hall offcie and inmate was in the process of going past her
## 19541                                                                                                                                                EE alleged that she was lifting the hetch door on tower and the handle slipped and fell on her left hand and finger
## 19542                                                                                                             EE alleged that she was routing mdf from around a trap door, covering the trap door. EE stepped on breaking through injuring upper ribs, shoulder/back
## 19543                                                                                                                                                      EE alleged that she was standing over the trapdoor and went to put the trap door down and injured rt shoulder
## 19544                                                                                                                                                                                       EE alleged that she was vacuuming and began to complaining about wrist pain.
## 19545                                                                                                                                                                               EE alleged that she was walking over to building &stepped into hole & twisted ankle.
## 19546                                                                                                               EE alleged that she was walking over to the high chair in the tower & hit her rt leg & knee on the corner of the steel step while getting in chair..
## 19547                                                                                                                                                                                EE alleged that she was walking up the stairs and felt something pulling on her leg
## 19548                                                                                                                                                                 EE alleged that the latex gloves she was wearing caused skin irritation to both right & left hands
## 19549                                                                                                                                                                                                  EE alleged that wearing gloves irriated her skin on her hands. ()
## 19550                                                                                                                                                           EE alleged that when letting down the looking device on gate, her ring finger was pinched between metal.
## 19551                                                                                                                                              EE alleged that when moving his empty bus behind another empty bus the brakes failed causing him tohit the other bus.
## 19552                                                                                                                                                EE alleged that when transportation an inmate in a state vehicle the car was hit from behinf at stop light from van
## 19553                                                                                                                                       EE alleged that when working the front area she turned around and walked into the locked storage box containing pepper spray
## 19554                                                                                                                                                EE alleged that while arresting a subject, the subject assaulted him injurying his rt hand, rt wrist and left hand.
## 19555                                                                                                                                       EE alleged that while assisting staff with a fightbetween 2 inmates, he got blood on his hands from an inmate being stabbed.
## 19556                                                                                                                                       EE alleged that while attempting to extinquish fire in a room partially filled with smoke he suffered from smoke inhalation.
## 19557                                                                                                                               EE alleged that while discarding the contaminated needle, it stuck in plastic of share container andflew out striking in left thumb.
## 19558                                                                                                                                                         EE alleged that while escorting an inmate back to security he stepped off the sidewalk and turned rt ankle
## 19559                                                                                                                                                EE alleged that while exiting the van, stepped out and injured upper back. He was putting tools back in the van. ()
## 19560                                                                                                             EE alleged that while getting out of vehicle in parking lot, turned, placed foot on step, slid out ofvehicle seat, twisted rt ankle, pop under rt foot
## 19561                                                                                                                                                       EE alleged that while he was performing unarmed self defense training his rt shoulder locked behind his back
## 19562                                                                                                                                      EE alleged that while moving a table and supervising inmates working outside back dock sharp edge on the table cut her finger
## 19563                                                                                                                                                                                                      EE alleged that while opening cell door caught finger in door
## 19564                                                                                                             EE alleged that while patroling teh dormitories heexited the rear door, used his left hadn to avoid the door alarming and cut left hand with razor bla
## 19565                                                                                                                                                                   EE alleged that while she was practicing unarmed self defense moves, her right wrist was injured
## 19566                                                                                EE alleged that while starting to walk down staircase, left foot slipped while attempting to grasp hand railing with left hand. Fell down stairs injuring head, lf arm and back. ()
## 19567                                                                                                                               EE alleged that while turning buttons to open an dclose door while assigned to control she noticed pain and swelling to her rt wrsit
## 19568                                                                                                                                                                                          EE alleged that while walking down the hall slipped and fell on wet floor
## 19569                                                                                                                    EE alleged that while walking on the sidewalk away from records offcie she slipped and fell on sheet of ice injuring her abdomen and lower back
## 19570                                                                                                             EE alleged that while working he was changing a battery on one of the state radio's one part was stuck when pulled out hit hand on desk cutting lt fin
## 19571                                                                                                                                       EE alleged that while working unit iv control room up he pulled on the trapdoor of the control room and sprained his lt hand
## 19572                                                                                                                                                                                           EE alleged the door to the stair case crushed finger against stair stop.
## 19573                                                                                                                  EE alleged the he was shiedman during cell extrac-tion team, urine was on the floor, EE slipped as he was pushing the shield, lt arm brushed wall
## 19574                                                                                                                                                     EE alleged was cleaing when eyes started burning, headache and started coughing due to chemicals he was using.
## 19575                                                                                                                                                           EE alleged was moving books from one shelf when a metal bookend and approx. 5 books feel on her head. ()
## 19576                                                                                                                  EE alleged was pushing janitorial cart when ran into another EE pushing foodcart w/ container of hotcoffee. Coffee fell off cart & burn left foot
## 19577                                                                                                                                                          EE alleged was tagging equipment in storage room &tripped over a box & fell onto knees on concrete floor.
## 19578                                                                                                                                                          EE alleged was trying to hold rope on flyrail without balance weight causing severe rope burns on fingers
## 19579                                                                                                                                                              EE alleged whe was walking to restroom when she slipped on brick flooring & fell; discomfort in back.
## 19580                                                                                                                                         EE alleged when transfering inmate in a state car was stopped at red light & was hit in rear by a van.. (EE was passenger)
## 19581                                                                                                                     EE alleged while he was shiedman during a cell extraction team urine was on the floor causing EE to slip as he pushed the shield, arm hit wall
## 19582                                                                                                                                     EE alleged while removing needle from container, after drawing blood from inmate, she accidently stuck herself on index finger
## 19583                                                                                                                                                        EE alleged while rolling the gate to make adjustments cover fell off the fork lift striking his lt shoulder
## 19584                                                                                                                                  EE alleged while supervising an inmate cutiing a ditch he stepped into a hole that was covered w/grass which twisted his rt foot.
## 19585                                                                                                                                        EE allegedafter conducting rounds on the end and returning back to the office she accidently slammed her finger in the door
## 19586                                                                                                              EE allegedly contracted a staph infection during his duties as clothes house officer on segregation, he states he handles dirty clothes, staph l calf
## 19587                                                                                                                                EE allegedly walking out of medical treatment room, caught foot on portable table, fell forward hitting face/chin and left side. ()
## 19588                                                                                                                                             EE alleges 2 inmates were throwing large bucket top for frisbee. Hit lft leg w/top. Abrasion of skin below lft kneecap
## 19589                                                                                                                                                                                 EE alleges a piece of lumber fell striking him in the head while repairing a porch
## 19590                                                                                                                                                            EE alleges a table with a broken leg fell while she was vaccuuming, bruising her right knee & left foot
## 19591                                                                                                                                                                                           EE alleges abdominal pain and swelling as a resultof job-related stress.
## 19592                                                                                                                                                                                                                                 EE alleges accumulated work stress
## 19593                                                                                                                                                                        EE alleges after completing call from dispatch stepped down from counter and twisted ankle.
## 19594                                                                                                                                                                        EE alleges after loading sound equipment and tentsinto truck. Noticed tension in lower back
## 19595                                                                                                                                                       EE alleges after sending a fax she was walking down the hall and hit left arm on the corner of laser printer
## 19596                                                                                                                                               EE alleges aggressive inmate attacked him forcing him to strike back in self defense. EE struck inmate with rt hand.
## 19597                                                                                                                                                                                 EE alleges airborne contaminants have been irritating eyes and airway for 3 weeks.
## 19598                                                                                                                                                                                         EE alleges an asthma attack after pest control sprayed the kitchen at work
## 19599                                                                                                                       EE alleges another EE pushed dirty linen closet into resident, and resident fell to floor. EE says she assisted the resident back onto feet.
## 19600                                                                                                                                                      EE alleges as he was coming down d-3 control stairhe slipped and fell down the stairs twisting his left ankle
## 19601                                                                                                                                                                                            EE alleges as he was tackling a suspect who was fleeing injured rt rib.
## 19602                                                                                                            EE alleges assigned to custody office inmate was stripping carpet office floors, chemicals: cleanserpowder, stripper, and bleach combined causing fumes
## 19603                                                                                                                               EE alleges asthma attack after counseling session w/lt. Upon arrival cp-er she advised attacked was caused by paint fumes from 8/28.
## 19604                                                                                                                               EE alleges attempted to close metal door. When the inmate pushed hard against flap, hit EE's handhard, inmate repeated hitting trap.
## 19605                                                                                                                                                             EE alleges attempting to stand up from sitting in chair and felt something pull in lower left abdomen.
## 19606                                                                                                                                                                             EE alleges back strain due to lifting and twistingwhile doing his job over past 2 days
## 19607                                                                                                                                                                                                                          EE alleges back strain from faxing floor.
## 19608                                                                                                                                                                         EE alleges be sprained his lt wrist during unarmed self-defense training. Lt wrist sprain.
## 19609                                                                                                                                                                                         EE alleges being exposed to pepperspray... Co-worker dropped the container
## 19610                                                                                                                                                                                                                            EE alleges being harassed by supervisor
## 19611                                                                                                                                                                                                   EE alleges bilateral carpal tunnel syndrome from inspecting eggs
## 19612                                                                                                                                                                       EE alleges bilateral carpal tunnel syndrome from repetitive motion in preparation of samples
## 19613                                                                                                                                                                                                   EE alleges breaking down table and stacking chairsstrained back.
## 19614                                                                                                                                                                                            EE alleges burning pain in rt groin after lifting a micro-refrigerator.
## 19615                                                                                                                                                                EE alleges cap on bottle was loose and when bottleslipped out of hand-chemical splashed into rt eye
## 19616                                                                                                                   EE alleges caretaking duties (feeding, watering, changing litter) for mice exposed to e. Coli bacteria used in urinary tract infection research.
## 19617                                                                                                                                                                                                  EE alleges carpal tunnel syndrome from repetitive use of pipettor
## 19618                                                                                                                                                                                                      EE alleges carpal tunnel syndrome from use and counting money
## 19619                                                                                                                                                                                                            EE alleges carpal tunnel syndrome; fingers, hand, wrist
## 19620                                                                                                                                               EE alleges checking equipment and moving a box in the trunk of patrol car and strained a muscle in his left rib cage
## 19621                                                                                                                                                                                                                                           EE alleges chestpains ()
## 19622                                                                                                                                                                                                             EE alleges chroninc allergic reaction to latex gloves.
## 19623                                                                                                                                                                   EE alleges cleaning laboratory in brunson room anddeveloped headache, nausea, bad taste in mouth
## 19624                                                                                                                                                                                  EE alleges cleaning outside windows with window spray, spray flew into EE's eyes.
## 19625                                                                                                                                                                                                   EE alleges cleaning table top and developed a rash on both arms.
## 19626                                                                                                                                                                  EE alleges clearing storm debris; picked up a treelimb and the limb brushed/abraded his right eye
## 19627                                                                                                                                                                                                              EE alleges climbing stairs in the sac twisted lt knee
## 19628                                                                                                                                                                                                EE alleges closing a tool closet door and felt pain in rt shoulder.
## 19629                                                                                                                                             EE alleges closing the parking deck and walking to her car, turned lt foot. After got home there was a knot on lt foot
## 19630                                                                                                                                                EE alleges conducting experiment using vibrio vulnificus bacteria, accidently stuck finger with contaminated needle
## 19631                                                                                                                                                                    EE alleges contusion to left elbow when turning inchair to quickly and stricking corner of desk
## 19632                                                                                                                                                                                  EE alleges contusion to top of left foot when footstruck agains open desk drawer.
## 19633                                                                                                              EE alleges driving a golf-cart from training room. The front tire hit railing of the stairs, pushed brake, cart continued forward hit the brick wall.
## 19634                                                                                                                                                                                                      EE alleges dust particles from buffing floors blewinto rt eye
## 19635                                                                                                                                                                                         EE alleges empyting trash out of container in mailroom strained lower back
## 19636                                                                                                                                                                          EE alleges entering veh after a traffic stop and closed the door on left hand and fingers
## 19637                                                                                                                                        EE alleges experienced an allergic reaction from chemicals used by terminex in office, eyes burned itched & began to swell.
## 19638                                                                                                                                                    EE alleges exposure to chemical - possible sink drainage. Employee claims chemical odor caused asthma to react.
## 19639                                                                                                                                                                        EE alleges exposure to cyclopentadiene has resulted in pain and blurred vision in both eyes
## 19640                                                                                                                                                                          EE alleges exposure to poison ivy while assisting with to control a fire in the mountains
## 19641                                                                                                                                                                                                EE alleges extensive data entry and telephone use soft tissue; neck
## 19642                                                                                                                                                                              EE alleges facial and wrist rash due to poison ivyexposure while researching wetlands
## 19643                                                                                                                                                                                                           EE alleges falling down the steps.... Injured both knees
## 19644                                                                                                                                                                                                  EE alleges falling from 4th step on stairs hurtingleft/rt ankles.
## 19645                                                                                                                       EE alleges fire alarm sounded and at this time he made an abrupt turn around in the hall way and felt a stabbing pain in the rt side and hip
## 19646                                                                                                                                                     EE alleges fluoresent light bulb we was carrying shattered when he tripped and fell injuring rt hand and knee.
## 19647                                                                                                                                                                     EE alleges getting into ez-go and slammed the dooron her right hand, injuring her right finger
## 19648                                                                                                                                    EE alleges getting into truck and slipped and hit his rt ankle on the step or metal grate, he also hit his rt shin (knee)ankle.
## 19649                                                                                                                                                                                             EE alleges he May have injured back lifting bag ofrice & moving boxes.
## 19650                                                                                                                                                                                                    EE alleges he almost stepped in drain hole, but caught himself.
## 19651                                                                                                                           EE alleges he and four inmates were working on bracing a truss rod and tension wires. Brace became loose and fell and struck EE on head.
## 19652                               EE alleges he bent forward and sat back in his office chair. When he sat down it felt like his lower back felt compressed, locked up and pain radiated thru his lower back and up his spine. He could not move for a few minutes. ()
## 19653                                                                                                                                                                 EE alleges he bent over to pick up some trash off the floor and felt something pop in his back. ()
## 19654                                                                                                                                                                   EE alleges he came out of tower on the catwalk, turned right and his left arm hit a wooden rail.
## 19655       EE alleges he crawled thru an access panel to get the exhaust duct to fix a loose turning vane. He layed a towel across the entrance to avoid getting cut. The fan sucked the towel in and he slid his arm across the entrance cutting his right forearm. ()
## 19656                                                                                                                                                                                                EE alleges he cut his pinky on his right had using a box cutter. ()
## 19657                                                                                                                  EE alleges he fell & landed on rt side of ribs while transferring from boat to boat in Dec 2007 aggrvtd pain by jarring back entering car 3/17/08
## 19658                                                                                                                                                                                  EE alleges he fell down the steps to tower. EE is having neck/shoulder/back pain.
## 19659                                                                                                                                                                                                            EE alleges he fell down upon tripping over curb. Two ()
## 19660                                                                                                                                                               EE alleges he fell over a curb while holding formsinjured his back and right hip ** not a uncg EE **
## 19661      EE alleges he got into a foot pursuit with a suspect. When he caught the suspect a brief scuffle followed. He suffered several small lacerations on his forehead and had a stick embed itself under his skin in his forehead. Also hit head on tree trunk. ()
## 19662                                    EE alleges he had a small piece of metal stuck in his eye. He does not know how or when it got there. He thought he had conjunctivitis so he went to his physician but found out it was an injury when the doctor examined him.
## 19663                                                                                                                                                                                                                      EE alleges he has a recurring eye irritation.
## 19664                                                                                                                                                                           EE alleges he heard a loud noise behind him, then jumped up causing his back to lock-up.
## 19665                                                                                                                                                                EE alleges he injuried his back while stacking supply baskets for unit clothes change. Pain in back
## 19666                                                                                                                                                                                                   EE alleges he jumped down steps and landed on ankle sideways. ()
## 19667                                                                                                                              EE alleges he lifted a chair with his left hand. He continued to clean the white boards when he noticed the pain in his left hand. ()
## 19668                                                                                                                                                                                                                              EE alleges he lifting a 65lb bar bell
## 19669                                                              EE alleges he picked up a mop bucket to lift it off an electrical cart by the sides of the bucket and cut his left hand when he slid his hand down the rear of the bucket on the wringer attached. ()
## 19670                                                                                                                                                  EE alleges he received a blister on his right foot big toe from walking around the parking deck making rounds. ()
## 19671                                                                                                             EE alleges he responded to code 3 when he got to maintenance alleges that as he was restraining an inmate he alleges the inmate spit and sprayed blood
## 19672                                                                     EE alleges he slipped on ice on his way to the dance building. He tried to catch himself with his right arm while falling backwards and doing so broke and dislocated his arm at the elbow. ()
## 19673                                                                                                                                                EE alleges he slipped on loose rubber sheath that was on the stairwell and injured his left ankle and lower leg. ()
## 19674                                                                                                                                           EE alleges he sprained his left ankle when he missed a stair, carrying curriculum bins and landed on his ankle wrong. ()
## 19675                                                                                                                   EE alleges he stepped out of the building on the ballfield and his left foot slipped off a piece ofbroken concrete, dropping about 8" to ground.
## 19676                                                                                                                                                                   EE alleges he stepped up an enbankment of dirt and felt something pull in his lower leg portion.
## 19677                                                                                                                                                                                           EE alleges he strained his wrist using hand tools while assembling desk.
## 19678                                                                                                                                                                                 EE alleges he strained rt knee while moving a table onto a dolly and then a truck.
## 19679                                                                                                                                                      EE alleges he twisted his rt ankle/foot pushing in gas pedal trying to disengage the brake pedal in the ez-go
## 19680                                                                                                                                                                                                EE alleges he twisted rt ankle as he stepped down to get out of car
## 19681                                                                                                                   EE alleges he walked along side of truck on step unloading tires, lost his footing; body slammed against the truck, slid down; injured left side
## 19682                                                                                                                                    EE alleges he walks a lot during his shift and hasbeen experiencing foot pain because of it. Gove health diagnosed a heel spur.
## 19683                                                                                    EE alleges he was assisting another officer with an arrest. The person being arrested had to be removed from a vehicle and employee strained his left wrist in the struggle. ()
## 19684                                      EE alleges he was at the fabricators picking up a blower that had been repaired. He and the man from the shop picked the blower up, put it in the truck. In pushing it to the back of the truck he injured his left thumb. ()
## 19685                                                                             EE alleges he was attempting to be seated when he misjudged where the chair was located and fell. He states he landed first on his left elbow, then right elbow, then his backside. ()
## 19686                                                                                                                                                                            EE alleges he was attempting to plug in a cord and bumped his head on a shelf above. ()
## 19687                                                                                                                                                         EE alleges he was attempting to step down from stool when upon left foot hitting floor/pain in left ankle.
## 19688                                                                                                                                      EE alleges he was bitten by insects during night firing at the range. Bite(s) did not heal. First reported/documented 6/7/07.
## 19689                                                                                                                                                EE alleges he was carrying four small but heavy boxes from one building to another for an event on the uncg campus.
## 19690                                                                                                                                                              EE alleges he was cutting a broken limb out of a tree when the section fell and hit his left hand. ()
## 19691                                    EE alleges he was de-installing the mfa exhibition in gallery 2. There was a temporary wall constructed that has electrical cords in it and he was pulling them out when he scraped and cut his right wrist on a metal stud. ()
## 19692                                                                                                                                                      EE alleges he was departing post missed the step onto the catwalk in front of the tower.. Sprained rt ankle..
## 19693      EE alleges he was directing exiting traffic congestion in deck when a motorist in exit line bypassed the line and traveled in the opposing lane of traffic, turned corner, did not follow instructions to stop and hit him with the bumper of motorist's car.
## 19694                    EE alleges he was dismantling some plywood storage shelves when one fell on his hand catching his right index finder between the rail and the wood when it fell. He removed his gloves and found lacerations and crush injury to his finger. ()
## 19695                                             EE alleges he was driving north on scott ave when the sun glared on the windshield and he thought something was darting out from the left side and the reflex of action, he swerved to the right into a power pole. ()
## 19696                                                                                                                                                                                   EE alleges he was escorting an inmate, and the inmate struck while handcuffed ()
## 19697                                                                                                                                      EE alleges he was escorting inmates from segregation unit to medical office and EE alleged he did not know how he cut fingers
## 19698                                                                                                                                     EE alleges he was getting tables off wall so more inmates could be seated and he alleges he pulled his back while moving them.
## 19699                                                                                                                  EE alleges he was in the mechanical room in stone, picked up a pump and motor out of a chair and turned and hurt his back, neck and lower back ()
## 19700                                                                             EE alleges he was in the process of disposing of trash into the dumpster at jackson library when something pierced the bag and cut his right hand near the base of his right thumb. ()
## 19701                                                                                                             EE alleges he was in use of force and he alleges his lt hand became tangled in the inmates shirt and as he pulled away he injuried his lt index finger
## 19702                                                                                                                       EE alleges he was inspecting around vehicle seat &as he was adjusting the seat he alleges his rt ring finger got caught b/t the seating bars
## 19703                                                                                                                   EE alleges he was leaving the recreation area as he began to walk through the slider door the door began to close got his rt shoulder twist back
## 19704                                                                                                                      EE alleges he was leaving the staff house he stepped on a root and lost his balance and fell to the ground landing on his rt leg and rt elbow
## 19705                                                                               EE alleges he was lifting a bag of garbage and as he threw the trash into the dumpster he felt a pull in his left forearm and now states that his thumb on his left hand is numb. ()
## 19706                                                                                                                EE alleges he was making traffic security check & when reaching to check lock on ramp door he alleges he slipped on ice on the ramp.. Rib cage pain
## 19707                                                                                                                               EE alleges he was monitoring dorm. Waiting for chowcall; EE alleges he remebers sitting on a stool, then getting up off the floor ..
## 19708                                                                                                                                EE alleges he was mopping floor in control room area. He sprayed cleaner and his eyes started burning and he had trouble breathing.
## 19709                         EE alleges he was on a 6ft ladder to remove a pump motor that was about 8ft up. After removing the screws the motor came out and was heavier than expected. He had to strain to hold it without dropping it and hurt his left shoulder. ()
## 19710                                                                                                                                                           EE alleges he was outside of a dorm after finishing the count when he felt something crawling in his ear
## 19711                                        EE alleges he was parked btwn the srf and hhp buildings getting out of his truck. The handel was stuck and when he pushed on the handle to open the door he hit the back of hand on handle and pulled skin back on hand. ()
## 19712               EE alleges he was participating in a mandatory physical fitness exercise when he jammed his left ring finger causing it to swell and bruise very badly. The swelling was so bad that his ring needed to be cut off and several x-rays were taken. ()
## 19713                           EE alleges he was picking up litter on the east side of tower village when he stepped on a large rock and twisted his right knee. He did not go to gove health right away because he wanted to see if it would get better on its own. ()
## 19714                                                                                                                               EE alleges he was providing aid to a victim of an accident when he got the victims blood on his right forearm where he had a cut. ()
## 19715                                                            EE alleges he was removing painter's tape from an area he finished painting and debris fell into his right eye as the tape was removed. EE was seen at gove health and referred to an opthamologist. ()
## 19716              EE alleges he was replacing a solenoid for a phoenix air valve and dropped a screw and hit himself in the eye with the screwdriver he had in his other had. Gove health did a uv scan on his eye and said he had a cut down the middle of his eye. ()
## 19717                                                                                                                                                                          EE alleges he was responding to an emergency call and slipped on wet ground on a & c yard
## 19718                               EE alleges he was shoveling snow in the handicap parking at cone and had pain in his lower back. Reported to supervisor. He reinjured when he was moving roll carts at the dining hall on 2/15. Then went to gove health on 2/17. ()
## 19719                                                                                                                                    EE alleges he was supervising inmates picking up litter on road squad and he backed over a traffic cone while walking backwards
## 19720                                                                                                                                                                                                EE alleges he was sweeping stairs when he coughed causing a hernia.
## 19721                                                                                                                     EE alleges he was taking in service training with batons & he alleges that while in training he was accidently hit on his lt hand with a baton
## 19722                                                                                                                                                EE alleges he was taking push brooms to the janitor's closet in a-dorm when he felt a twinge in his lft lower back.
## 19723       EE alleges he was trying to repair heat in gym. There was a bleeding valve about 12 feet from the ground. Ladder would not reach and only 8 ft ladder can fit in that space. Coming off the ladder he missed a step and caught his self and injured back. ()
## 19724                                                                                                             EE alleges he was unloading, walked behind concrete saw from flatbed truck wheels on saw fell between truck & dock, picked up on saw to get it on.. ..
## 19725                                                                                                                                                                    EE alleges he was walking down a hill on campus, slipped on wet grass and fell on his shoulder.
## 19726                                                                                           EE alleges he was walking down the stairs at the foust building and slpped due to his boots being wet. His arm and right lower back were bruised/injured in the fall. ()
## 19727            EE alleges he was walking in the grass in front of curry and his shoe was not tied tight and botts are a little big. He bent his foot and caught his nail under the steel toe. Gove health said he had a nail avulsion and gave only a tetanus shot. ()
## 19728                                                                                                                                                     EE alleges he was walking on the sidewalk and stepped on the edge of the sidewalk and twisted his right ankle.
## 19729                                                                                                                                                         EE alleges he was walking over the top of the steel platform when he slipped & fell. Possible back injury.
## 19730                                                                                                                                                     EE alleges he was walking up the stairs outside the mossman building when he fell down striking both knees. ()
## 19731                                                                    EE alleges he was working at the police department warehouse removing patches off previous used uniforms and cut his left thumb with a box cutter while trying to cut a patch off a uniform. ()
## 19732                                                                                                              EE alleges he was working e-dorm when a code 3 wascalled he alleges that two inmates were fighting and in the effort to assist he got blood from inma
## 19733                                                                                                                        EE alleges he was working maintenance and two inmates got to fighting and when trying to break up the fight exposed to blood from an inmate
## 19734                                                                                                                                                                                 EE alleges he went to pull a full bag of trash from the barrel and felt a pull. ()
## 19735                                                                                                                                                  EE alleges heel of left shoe grabbed carpet and tokeep from falling extended rt foot-sprained rt knee in process.
## 19736                                                                                                                                  EE alleges heel of shoe got caught on metal strip on starir step causing left foot to come out of shoe falling into landing wall.
## 19737                                                                                                                                                                                       EE alleges hiking in tall grass and biten by tick on abdomen including groin
## 19738                                                                                                                                     EE alleges his legs and co-worker were tangled together causing hime to twist right knee. They were in foot pursuit of inmate.
## 19739                                                                                                                                                                                            EE alleges his rt foot slipped on ice while walking to shift assignment
## 19740                                                                                                                                                                                   EE alleges hit by stack of papers on rt arm linda washington- 919-733-3388 x 212
## 19741                                                                                                                                                                                      EE alleges holding wooden hand rail on stairs and splinter went into rt hand.
## 19742                                                                                                                                                                                                                             EE alleges illness due to toxic fumes.
## 19743                                                                                                                                                                                                        EE alleges inhalation of mold/fungus while workingin office
## 19744                                                                                                                                                                                      EE alleges injury occurred while lifting trash bagwith heavy substance in it.
## 19745                                                                                                                                                                           EE alleges injury to her back and neck while in a training exercise using a police baton
## 19746                                                                                                                                                                                                  EE alleges injury to right shoulder while restraining a juvenile.
## 19747                                                                                                                      EE alleges inmate started swinging a pen an dpencil around, inmate was oc'd, fight broke out & EE stated they ended up on floor, hurting back
## 19748                                                                                                                                                                            EE alleges inmate threw unknown liquid substance from cell striking member on back area
## 19749                                                                                                                                                                      EE alleges left knee dislocation occurred when knee was hit against bed post while making bed
## 19750                                                                                                                                                        EE alleges left knee sor and swollen; believed to be caused by climbing on and off fuel truck while loading
## 19751                                                                                                                                                                                                                           EE alleges lift a computer; injured back
## 19752                                                                                                                                                               EE alleges lifting a box alone and had to twist to the rt because work area was tight straining back
## 19753                                                                                                                                                    EE alleges lifting a moving tables and chairs in the cone cener on second floor - lated developed pain in back.
## 19754                                                                                                                                                                                EE alleges lifting and moving furniture, after he got home felt pain in lower back.
## 19755                                                                                                                                                                                        EE alleges lifting boxes from floor to table in workroom and strained back.
## 19756                                                                                                                                                                                                              EE alleges lifting boxes of paper work strained back.
## 19757                                                                                                                                                                                  EE alleges lifting container of trach, and some- thing opped as he bent his elbow
## 19758                                                                                                                                                               EE alleges lifting gas can out of truck at parkinglot using side motion, and strained right shoulder
## 19759                                                                                                                                                                                   EE alleges lifting rubber underlayment roll for arena preparation strained back.
## 19760                                                                                                                                                                                   EE alleges lifting rubber unerlayment roll for arena preparation, strained back.
## 19761                                                                                                                                                                                EE alleges lifting spiny brush and scratched his arm then later developed impertigo
## 19762                                                                                                                                                                                                   EE alleges lifting waste can to empty trash, felt pain in wrist.
## 19763                                                                                                                                                                                     EE alleges lneeling down to paint stair treads in lower lobby and knee popped.
## 19764                                                                                                                                                                                                 EE alleges loading and unloading a grill from bed of pick up truck
## 19765                                                                                                                                                                                           EE alleges loss of hand grip and tingling and numbness in hands and arms
## 19766                                                                                                                                                                                      EE alleges lower back pain caused by sitting and twisting movements in chair.
## 19767                                                                                                                                                                                             EE alleges missed last three steps on stairs and fell injuring rt knee
## 19768                                                                                                                                                                                                                                      EE alleges mold complications
## 19769                                                                                                                                                      EE alleges mold exposure and respiratory infectionwhile working in a bldg that is said to have contained mold
## 19770                                                                                                                         EE alleges months of typing and handling books, using computer mouse with left hand. Tendons and joints in the affected area became tender
## 19771                                                                                                                                                  EE alleges moving a metal wash rack during clean up of animal cages when the metal rack contacted his right knee.
## 19772                                                                                                                                                                                         EE alleges moving a table off of a trk-desk slipped and fell on EE's hand.
## 19773                                                                                                                                 EE alleges moving boxes and as he raised up he bumped his head on a protruding screw on the bottom of a table scratching his scalp
## 19774                                                                                                                                                                                   EE alleges moving brewster boards during set ups in the lucas room strained back
## 19775                                                                                                                                                                                                                      EE alleges moving large printer and hurt back
## 19776                                                                                                                                                                          EE alleges moving scientific instrument into placein card room and injured left shoulder.
## 19777                                                                                                                                                     EE alleges offloading heacy equipment with forklift lifted off ground, jerked back trying to maintain control.
## 19778                                                                                                                                                                            EE alleges over use of rt index finger and hand casuing pain in hand, wrist and finger.
## 19779                                                                                                                                               EE alleges packing and loading boxes on library cart; hit her right finger on desk as she lifted a box onto the cart
## 19780                                                                                                                                                                                      EE alleges pain developed in hip and groin area while lifting stage equipment
## 19781                                                                                                                                                      EE alleges pain developed in rt wrist over a period od days while experiencing increase in fallregisteration.
## 19782                                                                                                                                                                                   EE alleges pain in abdomen after lifting heavy boxes of paper towels and tissue.
## 19783                                                                                                                                                                                                     EE alleges pain in lt chest area after struggling with patient
## 19784                                                                                                                                                                                                  EE alleges pain in neck from carrying load of doors that shifted.
## 19785                                                                                                                                                                                                             EE alleges pain in rt elbow when using computer mouse.
## 19786                                                                                                                     EE alleges pain in rt shldr, rt wrist, & cervical spineo from reptv data entry ---- this claim is combined with 2 others #04071723 & #10072184
## 19787                                                                                                                                                                                     EE alleges pain in rt shoulder blade extending down rt arm-numbness in fingers
## 19788                                                                                                                                                                               EE alleges pain in rt upper arm and elbow after lifting boxes of plastic trash bags.
## 19789                                                                                                                                                                                                        EE alleges paper tray fell out of printer onto rt great toe
## 19790                                                                                                                                                                                                       EE alleges performing normal duties as computer support tech
## 19791                                                                                                                EE alleges performing snow/ice removal campus wideee twisted his body reaching for controls to operate the tractor and strained right shoulder/back
## 19792                                                                                                                                                                                      EE alleges picking up liter and pulling weeds rt index finger started to ache
## 19793                                                                                                                        EE alleges picking up trash can to empty trash. Trash contained heavy books. Twisted or sprained wrist before recognizing excessive weight.
## 19794                                                                                                                                                                            EE alleges picking up trash, reaching to pick up abottle and was bitten bu a stray cat.
## 19795                                                                                                                                EE alleges pitching softballs to players during practice when a player batted a line drive and theflew directly into her right hand
## 19796                                                                                                                           EE alleges positioning iron safety rails in slots in the arena; strain his back when he reached out to pull one of the gates; lower back
## 19797                                                                                                                                  EE alleges problems beginning approx 4. 5 yrs ago that have been getting work from typing, work station set up and improper chair
## 19798                                                                                                                                                                             EE alleges pulled muscle in lower back from loading and unloading sheet rock from van.
## 19799                                                                                                                  EE alleges pulling upward on a 2 inch pipe, in a squatting position, to connect to another pipe wita union and felt pain in the lower middle back
## 19800                                                                                                                                    EE alleges pushing cart up incline while pulling atrash barrell and l/control of barrell and twistedback att to catch the cart.
## 19801                                                                                                                                                                                          EE alleges putting up a street sign and scraped his hand on a rusty bolt.
## 19802                                                                                                                                                                                                EE alleges rash on outside of lower left arm whilecleaning at work.
## 19803                                                                                                                                      EE alleges reaching for phones, radio, logs and security equipment has caused pain in left arm from elbow through finger tips
## 19804                                                                                                                                                                EE alleges reaching into briefcase a rusty pin on a name tag was sticking up and puncture EE l hand
## 19805                                                                                                                                                                                EE alleges reaching up into file cabinet and felt a sharp pain in her left shoulder
## 19806                                                                                                                                            EE alleges received a new ear piece for work that caused him a severe infection in his left ear. Reports onset Oct 2006
## 19807                                                                                                                                      EE alleges recieving instructions in gym and became involved in an argument and was attacked bya coworker, injuring shoulder.
## 19808                                                                                                                      EE alleges repairing a steam line while on a ladder and when he cracked the union, steam pushed out hot water and hot water hit his right arm
## 19809                                                                                                                                                                    EE alleges repeat motion of elbow while construction venture challenge course re-injured elbow.
## 19810                                                                                                                                                                                               EE alleges repeat use of computer mouse caused hand and finger pain.
## 19811                                                                                                                                                                                      EE alleges repeated use of her right wrist has caused carpal tunnel syndrome.
## 19812                                                                                                                                                                                               EE alleges repetattive motion & strain while performing mail duties.
## 19813                                                                                                                                                                  EE alleges repetitive data entry work has resultedin numbness & tingling sensations in both hands
## 19814                                                                                                             EE alleges riding in golf cart and fell out after going around a corner quickly, broke 2 front teeth, punctured above lip, scraped chin and right knee
## 19815                                                                                                                                                                                    EE alleges roller barrel was tipping over and caught left ring finger uner rim.
## 19816                                                                                                                                                                               EE alleges rt hand injured when a fire extinguisher fell out of cabinet hitting hand
## 19817                                                                                                                                                             EE alleges rt temple on the corner of metal book- shelf when straightening up from picking up a pencil
## 19818                                                                                                                                                                  EE alleges running down the stairs while wearing flip flops, lost footing, fell and hurt lt ankle
## 19819                                                                                                                                                                                                    EE alleges seizure and nose bleeds caused by job related duties
## 19820                                                                                                              EE alleges she became dizzy and had pain in her ltarm after working during day in heat and having tostand for a long period of time in excessive heat
## 19821                                                                                                                                                              EE alleges she fell down stairs after losing her footing when heel got caught in crevice on steps. ()
## 19822                                                                                                                                                                                                     EE alleges she fell walking in tower 7 and broke left forearm.
## 19823                                                                                                             EE alleges she fell when walking to parking lot outside of mossman bldg where brick meets parking lot. Injured knees, lt. Hand, rt. Elbow, and forehea
## 19824                                                                                                                                                   EE alleges she felt pain in her left knee as she placed labels on boxes containing of files in the storage fault
## 19825                                                                                                                                                                                           EE alleges she felt something bite her as she was getting out of her car
## 19826                                                                                     EE alleges she had a heavier than normal workload that day and when she bent over to remove a piece of paper from the floor she noticed part of her lower back was hurting. ()
## 19827                                                                                                                                          EE alleges she had a staple puller in hand & pressed the staple pulled & caught part of her palm in b/t the metal teeth..
## 19828           EE alleges she had given blood earlier that day and felt slightly dizzy, but felt able to work. She was at her desk typing and felt very limp all of a sudden. She slid out of her chair and fell to the floor, bumping her head lightly on the desk. ()
## 19829                                                                                                                                                             EE alleges she opened the door & was replacing a bar on the door & she alleges she pinched her finger.
## 19830                                                                                                                                 EE alleges she slipped and fell on a hard linolium floor in the lobby. She hit her head and injured her elbow which swelled up. ()
## 19831                                                                                                                                                                                                    EE alleges she slipped on oce and struck her elbow on pavement.
## 19832                                                                                                    EE alleges she slipped on water in restroom. Her right foot slid under her left leg causing her to fall on her right side - knee and hip with twist in foot. ()
## 19833                                                                                                                                                                                                     EE alleges she smelled something in the air that made her sick
## 19834                                                                    EE alleges she tripped over a chair in the biology office lobby and fell. The leg of the chair protruded slightly into walkway. Bruised right knee and elbow, fractured right little finger. ()
## 19835                                                                                                                                                                  EE alleges she tripped while walking up the stairsused rt arm to catch self and strained shoulder
## 19836                                                                                                                                              EE alleges she turned off the light in room 201 after vaccuuming the room and closed the door on her index finger. ()
## 19837                                                                                                                                                              EE alleges she twisted her right forarm as she attempted to transfer resident from bed to wheel chair
## 19838                                                                                                                                                                                                      EE alleges she walked up and down staris, knee became swollen
## 19839                                                                                        EE alleges she walked up stairs going to the rec center and when she entered closet 301 she sat down. When she got up she felt pain on the right side of her lower back. ()
## 19840                                                                                                                                                                                     EE alleges she was assigned to post 7 when a spider bit her right third finger
## 19841                                                                                                                 EE alleges she was at a meeting at the staff house& needed to speak w/her superv. As she stepped off the step her foot slipped.. C/o low back pain
## 19842                 EE alleges she was at the dumpsters emptying trash. She had thrown one bag into the dumpster and accidentally stepped backwards onto the 2nd bag, tripped over it falling backwards to the ground, injuring the back of her head when she fell. ()
## 19843                                                                                                                          EE alleges she was at the staff house for line up and stepped out of her car to put her purse in thetrunk of car she stumbled on a rock..
## 19844                                                                                                                                                                            EE alleges she was bitten by ticks on stomach, legsback and hands while on a site visit
## 19845                                                                                                                                                           EE alleges she was closing the cell door of k1 and her finger got caught b/t the door and the door frame
## 19846                                                                                                      EE alleges she was coming down the steps from the 2nd floor to the 1st floor, carrying 2 chemical bottles, one in each hand, when she suddently fell down. ()
## 19847                                                                                                                             EE alleges she was coming from the sgt station on her way to the dorm with the newspapers when she turned her ankle on uneven pavement
## 19848                                                                                                                                                                 EE alleges she was cranking the ext gate manually when index finger struck bottom of enclosure box
## 19849                                                                                                                                                                                               EE alleges she was departing tower walked 3 steps and slipped on ice
## 19850                                                                                                      EE alleges she was empyting the trash into the dumpster, she turned around to leave and walked into the dumpster door injuring the middle of her forehead. ()
## 19851                                                                                                                                                                EE alleges she was enventoring the weapons in the control room when she was bitten by spider or bug
## 19852                                                             EE alleges she was going to lock the front door and walked too close to a chair in the lobby. She reached toward the chair for balance and jammed her left pinky finger into the back of the chair. ()
## 19853                                                                                                                                         EE alleges she was hanging up keys in equipment key security box and she alleges hooks caught end of middle lt hand finger
## 19854                                                                                                                    EE alleges she was hit in the right hand by a volleyball during pre-game warm-ups/hitting drills. She has torn ligaments in her right thumb. ()
## 19855                                                                                                                                EE alleges she was in route to relieve officer on tower #6. Walked behind adm building twisted foot on a broken blacktop surface ..
## 19856                                 EE alleges she was in the process of dumping trash into the dumpster. When she lifted the bag from the trash cart and felt pain in her hip area and lower back on the right side as she was throwing the bag into the dumpster. ()
## 19857                                                                                                                                  EE alleges she was leaning over the sink when she reached to empy the bucket and she felt a slight pain in her right shoulder. ()
## 19858                                                                                                                   EE alleges she was letting truck enter abcd yards & as she was securing gate her rt ankle got caughtunder the gate & rt thumb got caught in gate
## 19859                                                                                                                               EE alleges she was lifting a trash can and didn't realize there were books in the bottom of it causing a thoracic and lumbar strain.
## 19860                                                                                                                                                                        EE alleges she was lifting and moving heavy boxes when she hurt her back and lower abdomen.
## 19861                                                                                    EE alleges she was lifting up folders inside a recycle can and picked up a couple of recycle papers to put in her can. Just strain a little bit but feel a whole lot better. ()
## 19862                                                                                                                 EE alleges she was making checks & she stepped offpavemnet to check a door when her lt foot got caught in a hole in the ground, twisting her ankle
## 19863                                                                                                                                            EE alleges she was mopping out of a restroom stall when she hit her left elbow on the locking mechanism on the door. ()
## 19864                                                                                                                                                                    EE alleges she was mopping the floor and pulled a muscle in her left back area and left leg. ()
## 19865                                                                                                                                     EE alleges she was moving a case that was 4 feet by 2 feet by 1 foot. The case was top heavy, fell forward and tripped her. ()
## 19866                                                                                                               EE alleges she was on control in h dorm and went to answer the phone and alleges that she fell in c/h hallway and she was going thru the g/h doorway
## 19867                                                                                                 EE alleges she was opening a new 20 liter metal container of ethyl alcohol. The alcohol splashed to her face and eyes when she opened the lid of the container. ()
## 19868                                                                                                                                                                           EE alleges she was opening the door backed into metal piece that protrudes from the bars
## 19869                                                                                                              EE alleges she was patrolling dorm her lower legs began to itch and burn she had large red spots on both legs just above her boots medical was avised
## 19870                                                                                                                                                                      EE alleges she was preparing a folder for inmate to be released when door closed on lt hand..
## 19871                                                                           EE alleges she was pulling the trash out of container on baseball concourse. The bag of trash was compacted down and as she pulled on it she hit her left elbow on a concrete column. ()
## 19872                                                                                                                                EE alleges she was pulling the yellow pulley closeto the dumpster and her finger got trapped while allowing a vehicle to enter unit
## 19873                                                                                                                EE alleges she was reaching up to get a box of tissue and enmotion towels down off shelf, she turned sideways and felt a sharp pain in her back. ()
## 19874                                                                                                   EE alleges she was removing a staple from a 71 page document in order to make a copy. The staple remover slipped from her hand and punctured her right thumb. ()
## 19875                                                                                                                                                             EE alleges she was removing a staple from a form when the staple broke and flew into her right eye. ()
## 19876                                                                                                                           EE alleges she was retrieving an inmate from segregation for transfer when contol booth operator closed the sallyport door on her rt arm
## 19877                                                                                                                    EE alleges she was returning a key to the metal key box, dropped key, bent to pick it up, box slid off the shelf and hit EE in the back of head
## 19878                                                                                                                                                 EE alleges she was sitting at her desk, bent over to lift a file box from the floor and injured her lower back. ()
## 19879       EE alleges she was standing when she began to feel faint. She started to fall backwards. Another employee caught her and helped her to the floor. Employee was not feeling well and began to have pelvic pain and was unable to stand up. 911 was called. ()
## 19880                                                                                                                                                                              EE alleges she was stung my an unknown insect. EE was assigned to post #6 at the time
## 19881                                                                                                                                                              EE alleges she was taking the food cart to the gate and was stung on the lt hand by an unknown insect
## 19882                                                                                                                EE alleges she was trying to catch some folders falling off the desk & had a pencil in her hand. It jabbed into rt hand & lead broke off in rt hand
## 19883                                            EE alleges she was using a metal tape measure in an office for preparation of staff reassignments of spaces. She had the tape measure extended and it suddenly retracted and sliced a gash in her left index finger. ()
## 19884                                                                                                                                      EE alleges she was waking up inmate and when she was walking over to a chair she turned the wrong way she felt her knee twist
## 19885                                                                                                                                                   EE alleges she was walking down the sidewalk rt foot went down on a rock then she alleges she fell to the ground
## 19886                                                                                                                                                               EE alleges she was walking down the stairs and herleft foot slipped causing her left ankle to twist.
## 19887                                                                                                            EE alleges she was walking into f dormitory front door and was called by an inmate. Turned around to walk out and talk to the inmate and tripped on mat
## 19888                                                                                                                         EE alleges she was walking into the building and stepped in a puddle of water that was there, slipped and fell twisting her right knee. ()
## 19889                                                                                                                    EE alleges she was walking on a mulched path to a meeting when her ankle turned as she neared the endo f the path on to a concrete sidewalk. ()
## 19890                                                                                                                EE alleges she was walking to her automobile in state parking lot when she says she stepped on a patch of ice & fell injuring right shoulder & back
## 19891                                                                                                             EE alleges she was walking to the mail room & tripped over higher part of sidewalk & fell on front side of body.. Lt knee & rt hand scrapped/abrasions
## 19892                                                                                                                            EE alleges she was walking toward the telephone operator's station when she slipped and fell EE alsoalleges that she fell on her lt hip
## 19893                                                                                                                                EE alleges she was walking up stairs in the main library and tripped on riser, fell into above riser and injured her right knee. ()
## 19894                                                                                                                                                                                            EE alleges she was walking up steps to tower & tripped about halfway up
## 19895                                                                                                                                                                         EE alleges she was working and she tripped over back drop cord around table fell on lt hip
## 19896                                                                                                                                    EE alleges shoe came off while going down the steps and lost balance on stairs and fell injuring rt great toe and left forearm.
## 19897                                                                                                                                                                                    EE alleges sitting on pair of scissors left open on chair punctured left thigh.
## 19898                                                                                                                                                                       EE alleges sitting outside of sanford hall on break and noticed bumps on elbow and shoulder.
## 19899                                                                                                                                                                                                    EE alleges slipping on loose rock and fell fracturing left foot
## 19900                                                                                                                                                                          EE alleges slipping on scrap lumber on the floor fell scratching inside of upper left arm
## 19901                                                                                                                                                                                                  EE alleges slipping on the stairs, falling and bruising left leg.
## 19902                                                                                                                                                                                                  EE alleges slipping on wet floor hitting rt side of face to floor
## 19903                                                                                                                                                                                                               EE alleges slipping on wet wood and falling on knees
## 19904                                                                                                                                                                                                              EE alleges soap he is using is irritating his leftarm
## 19905                                                                                                                                                                                           EE alleges soreness in lower back developed after moving a box of books.
## 19906                                                                                                                                                                                               EE alleges sprained right wrist while tightening pad on floor buffer
## 19907                                                                                                               EE alleges standing on a chair tearign down a tempwall; grabbed a metal wall stud to brace himself while losing his bal and cut his right index/ring
## 19908                                                                                                                                        EE alleges strained low back while using a shovel to dig a water line in order to run electrical cable to new chicken house
## 19909                                                                                                                                                                                                          EE alleges strained rt elbow while pulling vacuum cleaner
## 19910                                                                                                                                                                                      EE alleges straining back after lifting approx. 15traffice cones at one time.
## 19911                                                                                                                                                      EE alleges straining left foot when it slipped offthe rung of a ladder due to oil on the bottom of work shoes
## 19912                                                                                                                                                      EE alleges stress from assault with deadly weapon by co-employee and false accusation of drug possession/sale
## 19913                                                                                                                                                                    EE alleges stripping floors and several days laterdeveloped a burning rash on his face and lips
## 19914                                                                                                                                                                                                       EE alleges stumbling down 3/4 stairs spraining her rt ankle.
## 19915                                                                                                                                                                                                      EE alleges supervisor attacked on forehead and upper left arm
## 19916                                                                                                                                                                                    EE alleges sweeping north stairway in frewell building and was exposed to dust.
## 19917                                                                                                        EE alleges sweeping out a stairway, stirred up dust and a partical got into his left eye causing irritation that was aggravated by him rubbing the area. ()
## 19918                                                                                                                                                                     EE alleges that 50% caustic dripped onto scalp, forehead, and finger causing 1st degree burns.
## 19919                                                                                                                                 EE alleges that a inmate grabbed the collar of herjacket and that she used her lt hand to push the inmate away hurting her lt hand
## 19920                                                                                                                                                                       EE alleges that a resident stepped on l foot, staff sitting on couch beside another resident
## 19921                                                                                                                                           EE alleges that after cleaning a bathroom she tookoff her gloves, rubbed her right eye and disinfectant got into her eye
## 19922                                                                                                              EE alleges that after completing a routine search of bottom bunk he attempted to stand up and bumped the back of his head on the upper bunk bed frame
## 19923                                                                                                                                       EE alleges that after he let the inmate down inmate swung at EE during alter inmate was refusing to comply with direct order
## 19924                                                                                                                 EE alleges that after searching inmates, left out of tower 7 gate on minimum custody side. Twisted his left ankle on edge of road near grassy area
## 19925                                                                                                                                                      EE alleges that after she opened the door for a customer near the loading dock, she felt a sting in her hand.
## 19926                                                                                                        EE alleges that after standing in a display for 30 minutes she fainted and fell on her right side and hit her head on the ground from locking her knees. ()
## 19927                                                                                                                                  EE alleges that another EE was tapping a pipe in a manhole with a can of spray paint some paint was discharged and went into eyes
## 19928                                                                                                                                        EE alleges that as he was placing signs out for road squad he fell coming in contact with the front of hte road squad sign.
## 19929                                                                                                                           EE alleges that as he was walking around the perimeter he turned around to acknowledge the tower 10 and at that time his rt knee twisted
## 19930                                                                                                              EE alleges that as she started to step out of the doorway to stop an inmate from yelling, her knee hit the steps due to broken cement at edge of door
## 19931                                                     EE alleges that as she was pulling a disinfectant wipe out of the container it comes in, the wipe got stuck and the cap popped off and the liquid in the bottom of the container splashed in her right eye. ()
## 19932                                                                                                                           EE alleges that as she was responding to a distur-bance in the dorm, she hit a slick spot in floor & fell striking left hip & left palm.
## 19933                                                                                                                                  EE alleges that as she was walking down service drive towards her car she was hit by a parked car that suddenly began to move. ()
## 19934                                                                                                                   EE alleges that assisting another officer in stopping a run away horse, he made a turn and while climbing dike on horse, felt sharp pain in back
## 19935                                                                                                                                                                       EE alleges that caught his right hand in the pop open door bruising his right middle finger.
## 19936                                                                                                                                       EE alleges that conducting a routine check of institution, heard a loud noise, started to run, slipped and injured rt thumb.
## 19937                                                                                                                                      EE alleges that driver of car thought she putting car in reverse when she actually put it into firststriking EE on both knees
## 19938                                                                                                                                                                                    EE alleges that during baton training and exercise that he injured his rt thigh
## 19939                                                                                                                                        EE alleges that during grappling training with the pert team she stepped on her foot with her rt foot and her ankle twisted
## 19940                                       EE alleges that excessive, repetitive motions with typing and lifting have resulted in frequent numbness and pain in his left arm. Employee belives the location and symptomology to be in line with carpal tunnel syndrome.
## 19941                                                                                                                                                                           EE alleges that free repell from tower of the ropes course to have caused strain to back
## 19942                                                                                                              EE alleges that he and inmate were moving double bunck out of room into the hallway, while turning with bunk felt sharp pain in top of right shoulder
## 19943                                                                                                             EE alleges that he as an instructor in unarmed self defense was doing control #2 kote gashi with another officer when he felt a sharp pain in shoulder
## 19944                                                                                                                       EE alleges that he bent over to pick up his pen and that when he stood up noticed back pain. EE has previous injury to back 3 years earlier.
## 19945                                                                                                                   EE alleges that he cut his finger on his right hand when changing out a dull blade on his long handle scraper. He did not have his gloves on. ()
## 19946                                                                                                                                                                              EE alleges that he cut his hand while closing the gate in the sallyport. (right hand)
## 19947                                                                                                                                                                                                              EE alleges that he fell on ice/snow injuring his back
## 19948                                                                                                                                                 EE alleges that he felt a pain in his left arm/elbow when bending his left arm while doing regular work/typing. ()
## 19949                                                                                                                EE alleges that he felt something crawling under tthe rim of his service cap & his reflex to push ththe cap upward. Stinging sensation on forehead.
## 19950                                                                                                                                                      EE alleges that he hurt himself in basic training, during breakfalls & training, thought lower back was sore.
## 19951                                                                                                                                                                EE alleges that he injured his left mid back area while practicing unarmed self defense techniques.
## 19952                                                                                                                                                                                                EE alleges that he injured his left shoulder throwing tractor tires
## 19953                                                                                                                                                      EE alleges that he proceeded down the steps, & slipped, falling from stairs. Pain in lower back & right hand.
## 19954                                                                                                                                    EE alleges that he pushed door gh-1a open while turning his head and the door shut, catching the tip of his finger in the door.
## 19955                                                                                                                                      EE alleges that he ran up the emergency stairs while repsonding to second floor and thinks he twisted his ankle at that time.
## 19956                                                                                                                                                                             EE alleges that he received back injury while participating in ground defense training
## 19957                                                                                                                       EE alleges that he sat down on a chair on the cat-walk of post #8 & something bit him on the back of his right leg. It began to sting & burn
## 19958                                                                                                                                                                       EE alleges that he slid in mud and hit his knee on a rock, while working in a crawl space ()
## 19959                                                                                                                                            EE alleges that he squatted down to search under abed in the process EE alleges he hit his head causing his neck to jam
## 19960                                                                                                                                                           EE alleges that he steeped out of vehicle and heard a popping noise in right lower leg (below the knee).
## 19961                                                                                                                                                  EE alleges that he stepped down the steps of the rad squad bus and slipped on one causing a twisting of his back.
## 19962                                                                                                                                                                                                                    EE alleges that he suffered stress on 4/12/1994
## 19963                                                                                                                                          EE alleges that he tripped on a floor rug causing him to fall into a metal "button" cutting his headrequiring 6 stitches.
## 19964                                                                                                                                                             EE alleges that he twisted his lt knee while conducting a check he states that his happened b/t towers
## 19965                                                                                                                                                          EE alleges that he was attempting to give inmate little his night medication when inmate spit in his face
## 19966                                                                                                                      EE alleges that he was carrying personal property from segregation area, stepped in soapy water and twisted back while trying to gain balance
## 19967                                                                                         EE alleges that he was changing filters in the ceiling up on a ladder and had muscle spasms in his back. He called a supervisor and was instructed to go to gove health ()
## 19968                                                                                                                                                 EE alleges that he was coiling cable under a stagewhen he walked into a metal support and hit his head; laceration
## 19969                                                                                          EE alleges that he was down on the floor removing coverbase with a scraper when the scraper slipped and went into his left hand. Gove health put stitches in his hand. ()
## 19970                                                                                                                                                      EE alleges that he was escorting an inmate from unit one to yard and was stabbed by an inmate. Injured chest.
## 19971                                                                                                                                                                 EE alleges that he was exiting a cell block into anothe rnad slipped and fell in a puddle of water
## 19972                                                                                                                                                                                                                     EE alleges that he was exposed to pepper spray
## 19973                                                                                                                                                                                       EE alleges that he was hit in left eye by inmate while supervising the yard.
## 19974                                                                                                                                                             EE alleges that he was hit in the eye and kicked in the head by an inmate while supervising yard call.
## 19975                                                                                                                    EE alleges that he was in from on adm. Building & he picked up right foot to step on sidewalk, his left foot slipped from under him and he fell
## 19976     EE alleges that he was injured due to repetitive heavy lifting, pushing, pulling of office furniture, shelves and equipment in the course of relocating the tlc media center to jackson library and the tlc from mciver bldg to mossman as reqd by university.
## 19977                                                                                                                                                                                                    EE alleges that he was lifting and application injured his back
## 19978                                                                                                                                                                           EE alleges that he was lifting table alone to put against wall and felt pain in his back
## 19979                                                                                                                   EE alleges that he was lifting water cooler to put on back of bus when he lifted cooler, felt a sharp pain in l back, unable to stand for minute
## 19980                                                                                                                                            EE alleges that he was making rounds in the vocational school and he alleges he stepped on an object behind building #2
## 19981                                                                                                                                     EE alleges that he was moving a double oven in thekitchen and pulled something on l side of his abdomen - left inguinal hernia
## 19982                                                                                                               EE alleges that he was pulling weeds in the dog run around the ball field near consitene wire. His lft forearm struck the wire causing approx 3 inch
## 19983                                                                                                               EE alleges that he was pushing a cart loaded with computers and monitors, the cart tilted and the computers and monitors fell striking EE in lft kne
## 19984                                                                                                                    EE alleges that he was relieving the roving patrolwhen he reached under the vehicle seat to adjust the seat when he alleges he cut his rt thumb
## 19985                                                                                                                                                                          EE alleges that he was removing a test tube from atray; tube broke and cut his left thumb
## 19986                                                                                                                                                               EE alleges that he was removing food carts and when he opened the door it slammed closed on his hand
## 19987                                                                                                                                                                     EE alleges that he was removing sling blades from the rack & something got into his right eye.
## 19988                                                                                                                           EE alleges that he was responding to a code 3" and while responding to the code while running thru the yard he felt a pop in his lt knee
## 19989                                                                                                                                                                        EE alleges that he was restrining an inmate and the inmate fell on top of EE's right ankle.
## 19990                                                                                                            EE alleges that he was sitting in the driver seat on the transfer van, bent to pick up mileage log, pest control layed down wand, short burst went mout
## 19991                                                                                                                                                                                                    EE alleges that he was struck by trap door while using a hoist.
## 19992                                                                                                                                      EE alleges that he was supervising inmates on roadsquad & he was crossing the guard rail & his lt leg was scratched by rail..
## 19993                                                                                                                                                            EE alleges that he was walking down k&l chute area he alleges that a flying insect flew into his rt eye
## 19994                                                                                                                                              EE alleges that he was walking to the gym, when he stepped in a hole on the yard and twisted his ankle on his lt foot
## 19995                                                                                                                                            EE alleges that he was working on air conditioner and moved the air conditioner, he caught his left hand under the unit
## 19996                                                                                             EE alleges that he was working with thte basketball players during practice. A player was playing defense and threw a charge. The player side swiped his left knee. ()
## 19997                                                                                                               EE alleges that he went to step back into chair and he alleges that when he did his rt foot slipped and he caught himself with rt hand and felt pain
## 19998                                                                                                                                                                                                        EE alleges that her drawer fell on her foot causing injury.
## 19999                                                              EE alleges that her housekeeping keys come off of a hook and swings down and hits her knee. After 1/19 Dr. Visit she also stated that she hit her knee on a desk at some point in the recent past. ()
## 20000                                                                                                                                                                                             EE alleges that her lt foot turned over and she fell on brick sidewalk
## 20001                                                                                                                                                                                         EE alleges that her right hand hit the corner of atrash can; rt hand/wrist
## 20002                                                                                                                                                                                               EE alleges that his left thumb got caught between two pieces of pipe
## 20003                                                                                                                                             EE alleges that injury occured during pert training while practicing a ground fighting technique that was being taught
## 20004                                                                                                                  EE alleges that inmate had slid off bed & she grabbed inmate & held him to keep him from fallinguntil she could get assistance from another nurse
## 20005                                                                                                                              EE alleges that just as she stepped on the linoleum outside the door she slid to the floor injuring her right shoulder and right hand
## 20006                                                                                                                                                                                  EE alleges that media screen fell hitting his right arm and left side of his face
## 20007                                                                                                                                                                                                               EE alleges that mop water splashed into her left eye
## 20008                                                                                                                   EE alleges that on 09/24-09/25 while monitoring inmate at durham reg hospital she sat in a chair with a somewhat uncomfortable elevated headrest
## 20009                                                                                                                                                          EE alleges that over the last few months that while writing notes her fingers start to cramp; arms tingle
## 20010                                                                                                                                   EE alleges that performing repetitive motions with right hand has developed right elbow pain anddecreased strength in right hand
## 20011                                                                                                                    EE alleges that redness and swelling has appeared on lower legs, was wrking road squad fri, believes condition from wrking in waist high weeds.
## 20012                                                                                                                                                                         EE alleges that she didn't see a ditch in front ofthe building and fell hitting both knees
## 20013                                                                                                                                                   EE alleges that she fell after entering the first set of double doors leading into front lobby the floor was wet
## 20014    EE alleges that she fell from a chair when she was reaching for the top of the bookshelves for items when packing up her office belongings. Her right shlder struck against a bookshelf and her left shlder struck against the desk. Items fell on her back. ()
## 20015                                                                                                              EE alleges that she felt something buring her leg when she pulled the battery out of her pocket a hot solution was running out and the battery was sm
## 20016                                                                                                                               EE alleges that she has a stress fracture of left foot. EE also alleges that chronic back pain was the cause of the stress fracture.
## 20017                                                                                                                                                          EE alleges that she hit her hand on the edge of a table cutting her right thumb on a piece of rusty metal
## 20018                                                                                                                                                                                                           EE alleges that she injured her back while packing boxes
## 20019                                                                                                                                                                                             EE alleges that she injured her foot due to a new required uniform. ()
## 20020                                                                      EE alleges that she made a sharp turn in the golf cart and lost control. She ran the golf cart into a metal trash bin and a brick wall. Her driving hand (left) was jerked in the process. ()
## 20021                                                                                                            EE alleges that she observed a spray bottle sittinon the top of trash can & it appeared to be empty but when she picked it, accidently sprayed in lt ey
## 20022                                                                                                                                            EE alleges that she pulled door gh-1b to enter gate house. Upon opening door, she pulled a musclein her upper right arm
## 20023                                                                                                                                                 EE alleges that she shut her left index finger in the door at the back of ocracoke, contusion to left index finger
## 20024                                                                                                                                 EE alleges that she slipped on water in the ladieslounge in the bathroom; grabbed door without falling and hurt her mid-lower back
## 20025                                                                                                                          EE alleges that she slipped while walking across the floor; did not fall, but May have pulled some thing in her groin; pain in back, neck
## 20026                                                       EE alleges that she stretching her arm to perform the action of opening/closing the window at the counseling and testing center, from left to right and right to left, causes pain in her upper left arm. ()
## 20027                                                                                                              EE alleges that she stumbled over a pipe in the ground at the t-9 area when she was leaving work at ctr prison. EE states that she srpained her... ..
## 20028                                                                                                                                                                                 EE alleges that she twisted her ankle when she stepped through the sallyport door.
## 20029                                                                                                                                                  EE alleges that she walked back from the drie through gates after making a move she had a catch in her lower back
## 20030                                                                                                                     EE alleges that she was approaching the door of the nurses station, when she stopped and her foot slipped from under her, fell on her lft knee
## 20031                                                                           EE alleges that she was assisting the children clean the art area before going outside when a children's chair fell. The chair fell from the table and hit her left foot and big toe. ()
## 20032                                                                                                                  EE alleges that she was bit by something while on duty friday evening. Didn't notice till sat aftework. Red bumps in the ctr and hot to the touch
## 20033                                                                                                                                                EE alleges that she was checking the maintenance of the state vehicles when she shut the hood of van on her fingers
## 20034                                                                                                                          EE alleges that she was entering the main entranceand saw yellow caution sign to the rt she took a step and inmate said wrong way slipped
## 20035                                                                                                                                       EE alleges that she was escorting an inmate to take out the trash and she was walking up the sidewalk and slipped on the ice
## 20036                                                                                                                     EE alleges that she was going through 015b door, stated to close, put her hands up to stop door causing her to be caught between door and wall
## 20037                                                                                                                                        EE alleges that she was going to the holding cell to look for an inmate EE was going through slider door, door hit her body
## 20038                                                                                                                                                       EE alleges that she was going up steps to tower 4 and slipped and fell about one quarter of the way up steps
## 20039                                                                                                                                                                    EE alleges that she was in n dorm observing inmates and alleges something bit her on her lt arm
## 20040                                                                                                                                                                          EE alleges that she was injured while sliding the file cabinet across the floor; left toe
## 20041                                                                                                              EE alleges that she was issuing a handcuff to anoter EE through control room drawer & another EE pyshed drawer towards her & caught l thumb in drawer
## 20042                                                                             EE alleges that she was leaving aycock auditorium. When stepping out the door she missed the step as she ws opening her umbrella in a rain storm when she turned her foot and fell. ()
## 20043                                                                                                                                  EE alleges that she was letting the foodcart out of the kitchen, as she attempted to close th door, she closed her rt hand in it.
## 20044                                                                                                                                EE alleges that she was medication room giving outmedication & she got up to get prn meds & fell down on knees, knee just buckled..
## 20045                                                                                                    EE alleges that she was mopping the floor outside of the restroom 333 hhp. As she mopped she felt a pull on both sides of her nech and the back of her neck. ()
## 20046                                                                                                                                                                        EE alleges that she was moving boxes in the clotheshouse and pulled something in her wrist.
## 20047                                                                                                                                                                                           EE alleges that she was moving furniture when she injured her lower back
## 20048                                                                                                                                                                            EE alleges that she was out of work from 9/28/96 to 10/28/96 due to job related stress.
## 20049                                                                                                                                                                   EE alleges that she was picking up mail from drop boxes in dorms and lid to box fell on her nose
## 20050                                                                                                                                                    EE alleges that she was shaking down cooks in the kitchen, bent down and alleges she heard a crack in her knee.
## 20051                                                                                                             EE alleges that she was shoved into the water fountain and the brick wall while attempting to assist her fellow off. Who was being assaulted by inmate
## 20052                                                                                                                                                     EE alleges that she was sitting in a chair when she wheeled the chair over to her rt her lt knee hit steel box
## 20053                                                                                                                                                                       EE alleges that she was supervising inmates when a inmate threw a rock and hit EE by the eye
## 20054                                                                                                                                                            EE alleges that she was transporting a inmate the fire extinquisher discharged in the truck filling car
## 20055                                                                                                                                                                       EE alleges that she was trying to restrain an aggressive inmate. Left wrist swollen and red.
## 20056                                                                                                                                                               EE alleges that she was turning over a mattress when she noticed her right hand started to swell. ()
## 20057                                                                                                                 EE alleges that she was walking across campus, going down stairs between mossman and the euc when she lost her footing and fell down a few stairs.
## 20058                                                                                                                  EE alleges that she was walking in front of the chapel and stepped into a pothole she states that her rt knee hyperflexed and she felt sharp pain
## 20059                                                                                                                                         EE alleges that she was walking on the sidewalk infront of b dorm when her left foot slipped into a crack in the sidewalk.
## 20060                                                                                                                                                    EE alleges that she was walking out of the front door of medical and her rt hand hit her rt hand hit door latch
## 20061                                                                                                                                                           EE alleges that she was walking to her car when she tripped and fell over the curb backwards; lower back
## 20062                                                                                                                                        EE alleges that somehow in the process of restraining an inmate she must have bumped or jammed or something to her lt thumb
## 20063                                                                                                                                                                                                EE alleges that students were pulling, tugging, and yanking on hand
## 20064                                                                                                                                                                                            EE alleges that the cart that she was pulling rolled over her left foot
## 20065                                                                                                                                                 EE alleges that the decontamination process of pepper spray training, he bumped his left eye withthe water nozzle.
## 20066                                                                                                                                            EE alleges that the door air pressre pinned him between the frame & door. Tenderness to left chestshoulder, back, neck.
## 20067                                                                                                                                                                                      EE alleges that the drill he was using slipped cutting his left middle finger
## 20068                                                                                                                                                             EE alleges that there was ice on the concrete ground and she fell as she was coming out of the kitchen
## 20069                                                                                                                                                                         EE alleges that upon entering EE tripped over a mop that was standing up against the door.
## 20070                                                                                                                                                                                       EE alleges that when he was checking inmate locker he was struck by a needle
## 20071                                                                                                                                             EE alleges that when he woke his eyes were swollenshut. Did not know if the problem was due to fly bites or weed dust.
## 20072                                                                                                                                          EE alleges that when she attempted to sit down in chair the chair slipped from under her causing her to fall in the floor
## 20073                                                                                                                   EE alleges that when she entered the bottom of tower #2, she turned around to lock the door and the door slammed on her index finger of rt. Hand
## 20074                                                                                                                   EE alleges that when traveling north on 401 hwy from another prison he attempted to pass a veh turning left, other veh changed mind causing mva.
## 20075                                                                                                                                                                       EE alleges that when walking to the unpaved park- ing lot and fell on rocks breaking finger.
## 20076                                                                                                                                                             EE alleges that while assigned to kitchen patrol he was making rounds when he slipped on the wet floor
## 20077                                                                                                                                                                                  EE alleges that while assigned to tower #3 something flew into her right eye(bug)
## 20078                                                                                                                          EE alleges that while attending self defense training he was practicing with his partner and his fingers were bent back. Felt little pain
## 20079                                                                                                                                                                                                EE alleges that while attending training he injured his rt shoulder
## 20080                                                                                                                                                   EE alleges that while being relieved at shift change from tower #8 he slipped and fell down steps. Left arm sore
## 20081                                                                                                                                                 EE alleges that while cleaning out the fm compoundpulled on piping material and strained left groin and lower back
## 20082                                                                                                             EE alleges that while closing the fire safety bar on the fire exit door he traumatized his 4th finger on rt hand caught between metal bar and metal su
## 20083                                                                                                                                EE alleges that while coming down flight of stairs from second floor to the first he placed his lt too far forward on the next step
## 20084                     EE alleges that while conducting k-9 training they were working search areas. His dog was altering to a decoy in the tree. He was watching the dog and stepped on uneven ground and felt a sharp pain in his left knee behind the knee cap. ()
## 20085                                                                                                                EE alleges that while conducting mandatory count of inmates he was pushed by one inmate & then hit several times by two more in face, splitting lip
## 20086                                                                                                                                                                EE alleges that while counseling inmates a fight occured b/t two inmates EE injured his rt shoulder
## 20087                                                                                                              EE alleges that while driving the perimeter patrol vehicle he started to smell diesal fuel EE alleges he recalls is that his vehicle hit a security p
## 20088                                                                                                                                          EE alleges that while engaged in a use of force with inmate hooper that inmate struck him on left side of face with fist.
## 20089                                                                                                             EE alleges that while entering a cell the sliding door made contact w/rt shoulder which caused her to be pinned in the doorway upper body became twist
## 20090                                                                                                                                                                                              EE alleges that while entering a vehicle to go to post slipped on ice
## 20091                                                                                                                                                                  EE alleges that while entering inside slider door of single cell 3 the door closed on his lt hand
## 20092                                                                                                               EE alleges that while escorting inmates from dock to kitchen she was holding the metal door open accidentally mashed her rt hand b/t door handle and
## 20093                                                                                                                 EE alleges that while he had stepped from his vehicle & was walking to front door of an offender he tripped over a line of stones 6-8 inches high.
## 20094                                                                                                                                                                 EE alleges that while in training, ofcr dews fell on top of him and his alleges hurt his rt side..
## 20095                                                                                                                                                    EE alleges that while inmate was going up steps, inmate turns around and kicks her three times in the left leg.
## 20096                                                                                                                                                      EE alleges that while learning cell extraction technique EE was on floor ans another officer fell on her back
## 20097                                                                                                                                                                        EE alleges that while lftng a manhole cover his footing slipped causing rt shoulder strain.
## 20098                                                                                                                                                                    EE alleges that while opening the exercise room windows some type of debie fall into his rt eye
## 20099                                                                                                                            EE alleges that while operating the elevators in control room, she hit her right elbow on one of the knobs that controls the elevators.
## 20100                                                                                                                                                  EE alleges that while participating in long baton training he turned his lt knee. Lt. Knee some pain and swelling
## 20101                                                                                                                       EE alleges that while performing routine shakedown, EE stuck a sewing machine needle in l index finger, needle was hidden in inmate's locker
## 20102                                                                                                                                                                        EE alleges that while picking up a gas can she felt a sharp pain go through her lower back.
## 20103                                                                                                                                  EE alleges that while putting a rubber tip onto the glass rod of a stirrer, the rod broke cutting her right hand and index finger
## 20104                                                                                                                             EE alleges that while putting wooden hutch onto the computer desk his fingers got caught under thehutch, cutting his left pinky finger
## 20105                                                                                                                                                                EE alleges that while removing man hole cover, coveslipped from hand and fell on top of his rt foot
## 20106                                                                                                                     EE alleges that while searching the bathroom aftermen's visitation, he cut his left middle finger on razor blade while searching around toilet
## 20107                                                                                                                                          EE alleges that while searching under hood of delivery truck, the driver lowered the hood on topof him across upper back.
## 20108                                                                                                                                      EE alleges that while she was answering the phone a jolt of lightning hit the building. EE felt a jolt and dropped the phone.
## 20109                                                                                                                 EE alleges that while she was attempting to get in to a perimeter vehicle her lt foot slipped on the steps and her lt knee twisted around, popping
## 20110                                                                                                                                                       EE alleges that while she was closing wicker door in segregation, the inmate kicked her on her rightforearm.
## 20111                                                                                                                                                  EE alleges that while she was walking from her vehicle that she stepped up on the speed bump and slipped and fell
## 20112                                                                                                                EE alleges that while sitting in the chair, the chair tipped over backwards and she fell against the corner of hte door striking her right shoulder
## 20113                                                                                                              EE alleges that while standing an attempting to suction patient's mouth her right thumb caught on highspeed handpiece under nail. Poss. Contaminated.
## 20114                                                                                                                                                                              EE alleges that while stepping down from the chairon tower #10she twisted her rt foot
## 20115                                                                                                                           EE alleges that while subduing combative inmate they both slammed against wall. Other officer mistakenly spray him with oc pepper spray.
## 20116                                                                                                                                                                                                    EE alleges that while subduing inmate he scraped his left wrist
## 20117                                                                                                                                      EE alleges that while supervising a hostile immatehe was pushed up against a wall and door injuring his rt wrist and shoulder
## 20118                                                                                                                         EE alleges that while supervising inmates alongside she began to walk backwards to maintain safe distance she claims she stepped in a hole
## 20119                                                                                                              EE alleges that while supervising inmates returninto teh kitchen via the loading dock a cucket was dropped from cart and fell against EE's right ankl
## 20120                                                                                                                                   EE alleges that while supervising inmates watching a movie, she felt something hit her rt arm and brushed it away-sm bump on arm
## 20121                                                                                                                                          EE alleges that while supervising medium custody road squad inmates he stepped into a grass covered hole and twisted knee
## 20122                                                                                                             EE alleges that while trying to restrain a disuptive inmate in segregation that he was kicked by said inmate on the rt side of his neck and chest area
## 20123                                                                                                                                     EE alleges that while unloading surplus from a flatbed truck he slipped on condensation on the truckbed and fell backwards. ()
## 20124                                                                                                                                                                                      EE alleges that while using a pipe wrench to turn a pipe and injured his back
## 20125                                                                                                                    EE alleges that while walking back & forth betweendorms on 05. 31. 96 she felt slight discomfort in left foot, didn't know how or when occured.
## 20126                                                                                                                              EE alleges that while walking in the dog run the purpose of conducting the fence test, he slipped on the gravel and twisted his ankle
## 20127                                                                                                                                            EE alleges that while walking up the steps of tower 7 ahe alleges that she stepped wrong and her lt hip started hurting
## 20128                                                                                                                                                                                                                      EE alleges that while working bug bit her lip
## 20129                                                                                                                                                                           EE alleges that while working out on the road squad, he began to itch all over his body.
## 20130                                                                                                                                EE alleges that while working with drug interdiction at robeson corr., she stepped in a hole twisting her left ankle and left knee.
## 20131                                                                                                                                                                                                                          EE alleges that wrench slipped; left hand
## 20132                                                                                                   EE alleges the injury occured when she filled up a 5 gallon bucket with water and carried it to the bathroom twice. Afterwards, her left arm started hurting. ()
## 20133                                                                                                                                                        EE alleges the ladderwas fallen and EE jumped from the ladder landing on his leg before hitting the ground.
## 20134                                                                                                                                                                               EE alleges top broke off on bottle of cleaner whenit fall and spray went into rt eye
## 20135                                                                                                                                                                EE alleges tripping over a broken chair and fell inot the chair straining lower back and left knee.
## 20136                                                                                                                                                 EE alleges turning down a hallway and walked into a table-tripped over cand and fell on table straining upper back
## 20137                                                                                                             EE alleges turning off water in pipe closet of block 603 cell, pressing down to get a bite of wornfixture, screwdriver slipped off, hit pipe w/ lt han
## 20138                                                                                                                                                                                             EE alleges twisting left ankle while stepping off ramp at loading dock
## 20139                                                                                                                EE alleges unknown back pain he suspects came fromwhile assisting a coworker move a 120lb box of rocks off a truck or couple mos later moving cloth
## 20140                                                                                                                                             EE alleges upon walking from her dorm to her car, she stepped into a hole and fell. She states injuring her left ankle
## 20141                                                                                                                                     EE alleges upper shoulder and neck pain due to repetitive motion involved with pushing dumpsters twice a day with 5 co-workers
## 20142                                                                                                                                                                                                               EE alleges use of computer produced wrist discomfort
## 20143                                                                                                                 EE alleges using a wrench to release a stuck tool changer on a makino cnc mill, the wrench slipped his l arm struck the alumimun block and cut arm
## 20144                                                                                                                                                            EE alleges walking along the brick sidewalk going to parking lot and fell hurting r hand, wrist and arm
## 20145                                                                                                                                                  EE alleges walking down the ramp and slipped and fell on some oil and water and hitting her hand, knee, and ankle
## 20146                                                                                                                                                      EE alleges walking down the steps after exiting scott hall, she lost footing and fell fracturing her lt ankle
## 20147                                                                                                                                                                    EE alleges walking down the steps, slipped on mud on shoes and fell down twisting her left knee
## 20148                                                                                                                                                                                              EE alleges walking near from entrance, tripped andfell bruising ribs.
## 20149                                                                                                                                                                                                  EE alleges walking on 9th floor of scott hall and knee locked up.
## 20150                                                                                                                                                                                 EE alleges walking on campus when her legs began to itch... Thinks from mosquitoes
## 20151                                                                                                                                                  EE alleges walking outside of the bldg and trippedover a hose lying near the bldg and fell hitting her right knee
## 20152                                                                                                                                             EE alleges walking over curb in parking lot, lost balance and fell against restraining wall strikingforehead and hand.
## 20153                                                                                                                      EE alleges walking to car after work using stairs located behind atkins library. Her right foot gaveway causing her to lose balance and fall.
## 20154                                                                                                                                   EE alleges walking to work from parking deck; whenshe slipped on ice as she was walking down the steps and fell hitting her back
## 20155                                                                                                                                                             EE alleges walking up the stairs in the parking deck; fell on the stairs and hit his right ring finger
## 20156                                                                                                                                    EE alleges walking while reading and fell over rock at corner of sidewalk between friday buildingand bookstore, injuring elbow.
## 20157                                                                                                                                                                         EE alleges was bent over picking up trash, stood up& bumped her head on a shelf cutting it
## 20158                                                                                                                                                                          EE alleges was changing a lightbulb when it shattered and cut 2 fingers on his right hand
## 20159                                                                                                                              EE alleges was changing lightbulbs, while climbingdown ladder he missed the bottom rung & fell against cinder block wall hitting head
## 20160                                                                                                                                                                                 EE alleges was cleaning a room in spencer hall andgot a splinter in her right hand
## 20161                                                                                                                               EE alleges was demonstrating trap door for sweeny todd production, door jammed & then released striking EE in the left shoulder/back
## 20162                                                                                                                                                                          EE alleges was exiting co-workers office & trippedover a step stool injuring her tailbone
## 20163                                                                                                                                                    EE alleges was exiting golf cart while it was backing up & fell in the parking lot injuring his face/head/chest
## 20164                                                                                                             EE alleges was helping with fire drill when he was standing in the doorway of a sliding door talking to control booth when sliding door closed and stu
## 20165                                                                                                                                                                                   EE alleges was installing a fan & bent & twisted the wrong way injuring his back
## 20166                                                                                                                       EE alleges was involved in police pursuit, suspectjumped a fence & EE jumped fence after him, when he landed he injured a muscle in his back
## 20167                                                                                                                                                                            EE alleges was kicked in groin and got scrapes on rt wrist from altercation with inmate
## 20168                                                                                                                                                                        EE alleges was loading a drain machine into the back of truck, felt pain in his lt shoulder
## 20169                                                                                                                                                                        EE alleges was mopping bathroom the bathroom floor when she bumped her elbow on her way out
## 20170                                                                                                                                       EE alleges was mopping floor, started to change water, put his hand under the bottom of the mop bucket and cut his finger ()
## 20171                                                                                                                                                                       EE alleges was pushing a car over a stop block at a meter and tripped hurting his left thumb
## 20172                                                                                                                                                                                                EE alleges was pushing a cart and slipped on some spilled liquid ()
## 20173                                                                                                                                                        EE alleges was pushing a genie lift up a ramp whenthe board broke & the lift stopped hurting his lower back
## 20174                                                                                                                                         EE alleges was restraining an inebriated alumni athomecoming to keep him from going on stage & strained her right shoulder
## 20175                                                                                                                                               EE alleges was shoveling dirt and the ground was hard, stomped on the shovel and had pain in his back and right knee
## 20176                                                                                                                                                                                   EE alleges was struck on rt hand w/soccer ball shot at the goal during practice.
## 20177                                                                                                                                                                   EE alleges was taking out trash & 2 yellowjackets stung his left forearm ** cell 336-987-3775 **
## 20178                                                                                                                                             EE alleges was walking between buildings & trippedon an uneven sidewalk fracturing her left wrist & bruising left ribs
## 20179                                                                                                             EE alleges was walking from her building to another on campus, went on the path by the school of music and slipped on an icy step - someone had left a
## 20180                                                                                                                                EE alleges was walking in euc and tripped over a raised ridge used to cover power lines, it was a temp power source for orientation
## 20181                                                                                                                                                          EE alleges was walking into bldg, it had been raining & shoes were wet slipped & fell w/lt foot under her
## 20182                                                                                                                                                                    EE alleges was walking to work area & tripped on the curb hurting her right hip, knee and ankle
## 20183                                                                                                                       EE alleges was wiping up unknown liquid from cart, turned out to be acidic byproduct of moisture & soot resulting in chemical burns to hands
## 20184                                                                                                                                                                    EE alleges was working on some doors in the shop, one slipped and hurt his left wrist and thumb
## 20185                                                                                                                                                                          EE alleges weedeating on grounds and came in contact w/poison ivy-rash on hands and legs.
## 20186                                                                                                                                                            EE alleges when dumping a wastebasket-copier tonerdispersed into air-resulting in toner entering rt eye
## 20187                                                                                                                                                                                              EE alleges when getting off the lawnmower - hit rt shin on mower deck
## 20188                                                                                                                                      EE alleges when getting up from her desk her left leg got caught in chair leg causing her to fall and hit both knees on floor
## 20189                                                                                                                                                                                                 EE alleges when moving a bed it shifted and fell injuring rt hand.
## 20190                                                                                                                                          EE alleges when stepping over a railroad tie, shoegot caught on spike causing EE to fall injuring rt ankle and left elbow
## 20191                                                                                                                                     EE alleges whil getting out of chair she felt a sharpe pain in lower lt hip area, pain shot down leg causing toes to get numb.
## 20192                                                                                                                               EE alleges while assisting a cub scout group builda ramp along a stream, he strained low back unloadlumbar and operating the trailor
## 20193                                                                                                                                                                        EE alleges while at work EE injured his lt thumb on the bottle while destroying the bottle.
## 20194                                                                                                                                             EE alleges while climbing up a ladder, he bumped a cyst on the inner side of lt thigh on ladder, popping open the cyst
## 20195                                                                                                                                                                                    EE alleges while closing a window the pane broke and glass fell out and hit him
## 20196                                                                                                                                        EE alleges while coming out of dorm in the newsomebuilding, she stepped down on the edge of the stepand twisted her rt foot
## 20197                                                                                                                                                         EE alleges while coming to work from cone parking deck, EE tripped on brick and fell bruising arm and knee
## 20198                                                                                                                                                                     EE alleges while conducting rounds on cellblock 3gshe twisted her knee while turning suddenly.
## 20199                                                                                                                                                                              EE alleges while descending stairs he missed two steps and fell landing on left knee.
## 20200                                                                                                                   EE alleges while escorting inmates back from dining hall inmate touched her buttocks EE turned to get pepper spray he inmate hit her in the face
## 20201                                                                                                                                                                                                       EE alleges while hanging sheetrock-debris flew into left eye
## 20202                                                                                                                                       EE alleges while he was assisting cutting plexiglass, the plexiglass got bound up and it kicked back and hit his right hand.
## 20203                                                                                                                       EE alleges while in cell extraction training, he was forced down and pinned under four other officecausing his rt rib cage to be compressed.
## 20204                                                                                                                   EE alleges while involved in a cell extraction to place an inmate in four point restraints, he slipped down on floor in inmate's waste, cut hand
## 20205                                                                                                                                                                                       EE alleges while lifting a chemical jug to shoulder height, hurt lower back.
## 20206                                                                                                                                                                                             EE alleges while lifting a trash bag felt pain in neck and rt shoulder
## 20207                                                                                                                                                                                      EE alleges while locking two tables together EE felt pain in lower back area.
## 20208                                                                                                                                                EE alleges while making a check of the fence line on edwards yard she stepped in a hole turning her lft ankle, foot
## 20209                                                                                                             EE alleges while making a check of the fence line on edwares yard she stepped in a hole turning her l andkle and foot, felt numbness in l hand and arm
## 20210                                                                                                                                                                                  EE alleges while moving a couch-rt index finger got caught between couch and wall
## 20211                                                                                                                                                                                      EE alleges while moving racks of chairs and tablesfelt pain in rt lower back.
## 20212                                                                                                                                                         EE alleges while moving tables from the cage to dump site he slipped on a piece of wood and fell on ground
## 20213                                                                                                                                                                     EE alleges while operating a weedeater he felt a prick on his right knee. Possible spider bite
## 20214                                                                                                                                                   EE alleges while performing housekeeping duties using the powder free gloves her hands developed cuts and cracks
## 20215                                                                                                                         EE alleges while preparing for rotation on the yard she was sitting in the chair turned to the rt hitting the rt corner top of the printer
## 20216                                                                                                                                                                                  EE alleges while pulling pump in manhole EE experienced severe pain in low back .
## 20217                                                                                                                                                                                          EE alleges while pulling trash bag out of barrell felt a pain in rt wrist
## 20218                                                                                                                                                                    EE alleges while pushing a ptaient in a wheelchair over carpeted floor felt pain in lower back.
## 20219                                                                                                                             EE alleges while putting up promotional materials in a glass display case, case broke cutting EE on left thumb, right calf and rgt arm
## 20220                                                                                                               EE alleges while removing a screw from a 2-way con-trol valve, the screwdriver slipped out of groove& went under fingernail on his left pinky finger
## 20221                                                                                                                                                                                                     EE alleges while removing doors and closers, pulled lower back
## 20222                                                                                                                                                                      EE alleges while rover patrol she started itching all over as if she was being bitten by bugs
## 20223                                                                                                                      EE alleges while setting up a stage, the stage platform fell and landed on his right thumb, catching it between the stage and the steel frame
## 20224                                                                                                                                                                        EE alleges while she was working on post #9, she was bitten on her right thigh by a spider.
## 20225                                                                                                                                                                                         EE alleges while stepping off the van onto the ground EE twisted rt ankle.
## 20226                                                                                                                                                                           EE alleges while straightening upcart vaccum cart fell striking EE ans scraping lt ankle
## 20227                                                                                                                           EE alleges while supervising the inmates in segregation, he turned to try and plug in a fan cord. EE got out of chair and fell in floor.
## 20228                                                                                                                                                      EE alleges while taking down a metal and glass door for repair he felt a pain and saw a bulge in his abdomen.
## 20229                                                                                                                                                                                                EE alleges while vacumming, moved wrong and dislocated rt shoulder.
## 20230                                                                                                                                              EE alleges while walking beneath cone center, tripped at point where asphalt and concrete meet injuring left shoulder
## 20231                                                                                                                                                                      EE alleges while walking down the steps he slipped on last five steps holding on to the rails
## 20232                                                                                                                                                                        EE alleges while walking from staff house she steeped on a rock and turned her rt foot over
## 20233                                                                                                                                                                        EE alleges while walking to the parking lot he stepped on a rock and twisted his left ankle
## 20234                                                                                                                                                                                         EE alleges while weedeating on grounds notice rash on lower and upper legs
## 20235                                                                                                                                                               EE alleges while working at computer, EE turned chair around to desk and splinter went into left leg
## 20236                                                                                                                                                       EE alleges while working in a close space was moving to get in position to paint and strained left shoulder.
## 20237                                                                                                                                   EE alleges while working she hurt her right middlefinger causing damage to her acrylic finger nail and partially pulling it off.
## 20238                                                                                                                                                                                EE alleges while wringing out mop-pressed too hard on the lever and strain rt wrist
## 20239                                                                                                                                                                                 EE alleges working on chemistry lab when his experiment exploded on left lower arm
## 20240                                                                                                                                                                              EE alleges wshe was moving tables and injured her neck/back/shoulder, arm and finger.
## 20241                                                                                                                  EE alleges, riding her assigned bike back to the police department when the gears jammed causing her to go over the handlebars & scrape her knees
## 20242                                                                                                                                                                                       EE allegies might have done something to lf elbow when repositioning client.
## 20243                                                                                                                                                                                                                                             EE alleging asbestosis
## 20244                                                                                                                         EE allegs that while enroute to his assignment in l control he stepped off the lt side of the snow covered sidewalk he turned his lt ankle
## 20245                                                                                                                                                                                                                  EE allergic to latex gloves - rash on both hands.
## 20246                                                                                                                                                                                                                                             EE allergic to mold ()
## 20247                                                                                                                           EE allergies became more problematic in spring after re-occupying the trailer office left nostrilclosed, sneezing, headaches, eye mucous
## 20248                                                                                                                                                                        EE allged he was scraping floor on stripper & lostbalance falling backwards onto wet floor.
## 20249                                                                                                                                                                                               EE allged she was moving a table when it fell injuring her ankle. ()
## 20250                                                                                                                               EE along with 2 other people were moving a large incubator about 500lbs EE had hold of the cart when all the weight fell on the cart
## 20251      EE along with an assistant instructor were positioning vehicles for afternoon practices. While lifting a vehicle using a high lift jack, the bottom pin on the jack fell, causing the jack to collapse. EE sustained a laceration to the palm of his lt. Hand
## 20252                                                                                                                                     EE along with another employee removed a barrel from the floor and started unlading trash into bens. EE injured lower back. ()
## 20253                                                                                                                     EE along with another staff member and restrainingpatient and hand slipped off patient's arm and EE fell on chair onto floor. Injured rt knee.
## 20254                                                                                                                                                                           EE along with co-workers where pushing library bin, when bin fell hitting EE left ankle.
## 20255                                                                                                                           EE along with supervisor were in process of trans-porting a female juvenile in secure custody. Juven-ile began to kicking and screaming.
## 20256                                                                                                                                                                          EE already had a cut on forehead. Re-opened cut by hitting head on corner of bottle cage.
## 20257                                                                                                                                       EE and 2 co-workers were driving EE appreciation fair. They were hit by drunck driver who ran red light. Back pain soreness.
## 20258                                                                                                                             EE and 2 other EE's had to use physical force to restrain an inmate, he fell on his left knee whiletrying to subdue him to the ground.
## 20259                                                                                                            EE and 2 others in front seat of state truck on business, they were hit by a drunk driver who ran rdlight, EE thrown forward and bruised knees, sprn bc
## 20260                                                                                                                                                        EE and 3 others were loading an ac unit onto a truck; a park broke off (tank) and fell-EE injuredright foot
## 20261                                                                                                                                                                                         EE and EE was talking- patient stamped on EE's lt foot for unknown reason.
## 20262                                                                                                                                                                             EE and a co-worker was trying to lower foot of thebed and the spring smashed the hand.
## 20263                                                            EE and a coworker were making some plumbing repairs on a water located in the jim graham building. EE stated that as he pulled the front door panel away it flew off and hit him above his left eye. ()
## 20264                                                                                                                 EE and an inmate were trying to move the lift through a door. The lift was too tall to fit so eetried to tilt lift. Lift fell onto right shoulder.
## 20265                                                                                                                                                                                         EE and another EE repositioning client w/sheet-EE felt pull in lower back.
## 20266                                                                                                                                                EE and another EE was attempting to move desk to allow surge protector to go underneath desk and injured lower back
## 20267                                                                                                                                                                EE and another EE was bring resident to head of bed while resident was resistant hurt r shoulder ()
## 20268                                                                                                                                                      EE and another EE was disassembling basket rack EE was accidently struck by pull up door injuring rt shoulder
## 20269                                                                                                                                                                                       EE and another EE was lifting an I beam and one end was dropped on EE's hand
## 20270                                                                                                                                              EE and another EE was lifting client out of wheelchair. When EE stood up she could not move. Injury to middle of back
## 20271                                                                                                                                                                               EE and another EE were getting a patient out of bed, the patient kicked EE in crotch
## 20272                                                                                                                              EE and another EE were lifting resident into bed when resident fell causing EE's thumb to bend backcausing pain in joint around thumb
## 20273                                                                                                                                                                             EE and another EE were moving tables to set up work area. Pulled something in the back
## 20274                                                                                                                                                                                      EE and another EE were pulling an ac unit out of a windown and strained back.
## 20275                                                                                                                                                         EE and another EE were putting a patient to bed using the lift and the lift tilted over on to EE's foot ()
## 20276                                                                                                                                                   EE and another EE were working on concession stand - door support was moved and lift door fell on EE rt shoulder
## 20277                                                                                                                                EE and another employee moving a filing cabinet out of hall down some steps. Cabinet slipped off of dolly and hit EE on right shin.
## 20278                                                                                                                                                        EE and another employee was putting a client in a rocking chair from a wheelchair and EE's rt elbow popped.
## 20279                                                                                                                     EE and another employee were holding a heavy vaultthat was falling. Next week had to lift heavy cases of I. V. S and felt lots of pain in back
## 20280                                                                                                                   EE and another emt were lifting a resident on the stretcher EE felt a sharp pain in her right shoulder & tingling down her arm to her fingers ()
## 20281                                                                                                                                                                          EE and another hct was transfering pt to his bed when pt grabbed EE wrist and twisted it.
## 20282                                                                                                                                     EE and another officer was attempting to place a juvenile in custody. The juvenile struggled and bit EE on the upper right arm
## 20283                                                                                                                                                                            EE and another person did a two person lift and eefelt pain in her rt side of her back.
## 20284                                                                                                                    EE and another person were unloading pickup truck of twine to stack. Other EE was throwing boxes to EE and fingers bent back while catching box
## 20285                           EE and another staff lifted client off van lift (lift would not work and no manual bar available). EE and three staff lifted another client off of van from the inside entrance. EE states fells like a pull in back (mid back pain). ()
## 20286                                                                                                                                                  EE and another staff lifting client into recliner staff didn't lift client high enough-EE felt pull in lower back
## 20287                                                                                                                                                              EE and another staff member lifted a client from trolly to chair. EE felt a pull in back. Back strain
## 20288                                                                                                                      EE and another staff member were demonstrating playing tennis and ball went toward EE's face- EE blocked ball-strained rt knee in the process
## 20289                                                                                                             EE and another staff member were lifting a patientfrom bed to the chair the chair rolled to the door and EE's hand was caught between the door and cha
## 20290                                                                                                                                          EE and another staff member were transferring client from the dinning room to wheelchair and client refused to cooperate.
## 20291                                                                                                                               EE and another staff pulling up resident's pants. EE went behind resident and slightly lifted him up. Strain to right lower back. ()
## 20292                                                                                               EE and another staff putting client to bed. EE had the bottom of the client. Client started wiggling. As EE bent over to put client in bed her lower back popped. ()
## 20293                                                                                                                                  EE and another staff took client to pool-client getting out of pool and started to roll-EE felt something pull under rt shoulder.
## 20294                                                                                                                                                EE and another staff walking client to dining roomclient went down and EE stumbled over client, twisting left ankle
## 20295                                                                                                                                                                 EE and another staff was carring a pt to time out and had to stop because EE back started to hurt.
## 20296                                                                                                                              EE and another staff were changing an individual in the back of wheelchair van, EE felt a twinge in her back when lifting individual.
## 20297                                                                                                               EE and another staff were transferring client frm bed to bath when client started hitting self-otheree slipped causing EE to hold all wgt of client.
## 20298                                                              EE and another staff were transferring client from wheelchair to bed. Chair wasn't positioned correctly; EE had to bend over chair to get client into bed. EE felt a twinge in lower back muscles. ()
## 20299                                                                                                                EE and another trooper were attempting to arrest asuspect. He pushed holcombe causing him to fall toground, striking back of head on cement marker.
## 20300                                                                                                                                      EE and bank robbery suspect involved in collision. After impact suspect shot EE in left arm thru windshield of patrol vehicle
## 20301                                                                                                                                      EE and client outside for cookout-client became upset when asked to go to bathroom-grabbed EE's shirt and kicked EE in chest.
## 20302                                                                                                                                                                                                          EE and client slippe don wet floor. Injured groin muscle.
## 20303                     EE and client taking laundry out of washer putting into dryer; client became aggressive. When EE intervened, client started behavior; EE blocked client from slapping himself; felt right wrist pop; swollen right hand; wrist and fingers. ()
## 20304                                                                                                                                                    EE and client were making bed, client pushed bed against EE causing EE to turn suddenly, twisting back. Strain.
## 20305                                                                                                                                                                                      EE and co worker were lifting and dumping a bin of grain EE felt pain in back
## 20306                                                                                                                     EE and co worker were manually adjusting forks on forklift, thought adjustments were complete and letgo, fork crushed EE's left middle finger.
## 20307                       EE and co-worker chitra iyer were working in central files. The electronic button used to move the shelves wasn't working, and EE and chitra both pushed on either end of shelves to try to move them without notifying their supervisor. ()
## 20308                                                                                                                                                         EE and co-worker climbing ladder to open hatch and check chemicals-head, neck, back, shoulder and left leg
## 20309                                                                                                                                          EE and co-worker had to lift container of waste about 36in off ground to put on cart. EE felt pop in back. Coworker heard
## 20310                                                                                                                        EE and co-worker in golf cart making delieveries. Co-worker pushed gas peddle which jerked EE head backwards. Head struck pole. Neck strain
## 20311                                                                                                                                                        EE and co-worker involved with client co-worker raised up hitting EE in the nose with head. Fractured nose.
## 20312                    EE and co-worker melissa jones were working in central files. The electronic button used to move the shelves wasn't working, and EE and melissa both pushed on either end of shelves to try to move them without notifying their supervisor. ()
## 20313                 EE and co-worker were entering and exiting a door at the same time. As one EE was pulling the door open from one side, the other EE was pushing the same door open from the other side and the door was pushed into injured EE’s left shoulder. ()
## 20314                                                                               EE and co-worker were lifting a hp 550 color printer onto a cart to transport from science and technology building to slay/ engineering dept. EE felt a strain in his lower back. ()
## 20315                                                                                                                                                                                EE and co-worker were moving desk, co-worker dropped his end. EE strained low back.
## 20316                                                                                                                                                                          EE and co-worker were picking up wooden platform when it slipped from both of their hands
## 20317                                                                                                                        EE and co-worker were placing client in pic when co-worker leaned across her causing knees to be injured. Pain, swelling, soreness to knees
## 20318                                                                                                                           EE and co-worker were straightening out a steel rod on a landscape timber and the hammer slipped hitting EE on the top of his left hand.
## 20319                                                                                                                                        EE and co-wrker were installing upright headstones, hurt lower back when lifting one headstone off truck to place on ground
## 20320                                                                                                                     EE and coworker returning from lunch, stop to pickup autopart, coworker returned to vehicle, found EE slumped over steering wheel unresponsive
## 20321                                                                                                                          EE and coworker were in state vehicle on the way to survey a long term facility when another vehicle ran a red light and struck EE's car.
## 20322                                                                                                                                                             EE and coworker were putting patient on commode chair. Patient was fighting and EE's wrist was injured
## 20323                                                                                         EE and coworker were removing a chalkboard from wall. The chalkboard bracket broke away from wall and ie broke the fall of the board to prevent it hitting his coworker ()
## 20324                                                                                                                                          EE and coworker were removing patient from stretcher. Stretcher dorpped to ground with a jolt casuing pain in lower back.
## 20325                                                                                                              EE and coworker were rolling epoxy floor paint on floor at the vet school. Rash on head, arms, upper extremity, abdomen, chest, shoulder, legs, feet.
## 20326                                                                                                               EE and fellow EE were moving tables and other equip when he notice strain in his elbow & above elbowmuscle. Hurts to move arm upward and to twist it
## 20327                                                                                                                       EE and gabel were guests at a high school. Studentintentionally bumped back of patrol car when approached he fled. EE ran and strained back.
## 20328                                                                                                               EE and her supervisor were moving dogs. A dog ran up from behind her knocking her off her feet. She fell back. Landing on back hitting head on floor
## 20329                                                                                                                                                                EE and inmate got into altercation injuring EE's neck, left elbow, left cheek, nose, and both knees
## 20330                                                                                                                                            EE and inmate went to empty mop bucket, EE steppedoff sidewalk were dirt had washed away, into a hole and hurt l ankle.
## 20331                                                                                                                 EE and inmate were attempting to lift a concrete table top onto the pedestal, were only able to move the top, right middle finger caught underneat
## 20332                                                                                                               EE and officer minton were patrolling for boating enforcement while officer minton was approaching a vessel to checkm EE had to grab vessel to avoid
## 20333                                                                                                                                    EE and other EE carrying radio equipment. Other eedropped equipment causing injury to EE. Injured right shoulder and left wrist
## 20334                                                                                                                                                         EE and other EE working on sprayer when it malfunccaused EE to spry lower face and chest with insectkiller
## 20335                                                                                                                               EE and other coworker were moving a table out of her office when the legs broke off causing top of table to fall on her leg and foot
## 20336                                                                                                                               EE and other patrol members were in pursuit of violators when they discarded controlled substancecocaine was ingested thru air vents
## 20337                                                                                                                            EE and other patrol members were in pursuit of violators when they discarded controlled substancesubstance was ingested thru air vents.
## 20338                                                                                                                                                   EE and other staff members were intervening with clients behavior. He was bending up and down. Chest wall strain
## 20339                                                                                                                                           EE and other staff were escorting client to restraint room when client started fighting EE's and fell on EE's left knee.
## 20340                                                                                                                                                      EE and other staff were getting patient up when patient fell to knees. EE had back and neck pain. Back strain
## 20341                                                                                                               EE and others getting into taxi. Driver started driving off while EE was still getting in. Others yelled for driver to stop, EE hit knee on door jam
## 20342                                                                                                                                     EE and partner were lifting rack of amplifiers off the stage in memorial. The partner dropped hisend causing EE to strain back
## 20343                                                                                                                                          EE and passenger were stopped for traffic when vehicle was struck from behind by another vehicle. Acute pain to neck area
## 20344                                                                                                                                                               EE and patient moved towards each other at the same time accidently bumping heads together--forehead
## 20345                                                                                                                                                                                                                        EE and pt fell on wet floor in the bathroom
## 20346                                                                                                                              EE and pts playing basketball. Ball went toward bldg, EE recahed for ball. Hit hand on window breaking it, received laceration on arm
## 20347                                                                                                                                                               EE and second hct were taking pt to hold, pt began struggling and EE fell on floor, landed on l side
## 20348                                                                                                                                                                       EE and staff was lifting client into wheelchair and complained later of catch in lower back.
## 20349                                                                                                                                                                         EE and staff was putting client into wheelchair when wheelchair ran over EE's left big toe
## 20350                                                                                                                                                                  EE and staff was walking a client to classroom both slipped in water on floor-EE twisted rt ankle
## 20351                                                                                                                                                                                EE and student were moving a piece of plywood; eestepped backwards into a table saw
## 20352                                                                                                                                               EE and students were in a training exercise. A piece of glass fell and hit EE on his rt hand. 4 stitches on rt hand.
## 20353                                                                                                                                                                           EE and students were playing basketball and EE came down and felt sharp pain from block.
## 20354      EE and supervisor were installing the blower attachment to the tractor. The left side of the blower hooked up to the tractor but the right side was having difficulty connecting. EE tried to pull the blower into place, like he has done many times before,
## 20355                                                                                                                                                                                    EE and supvsor moving equipment-equipment shifted and caused EE to strain back.
## 20356                                                                                                            EE and teacher was trying to assist client to another table to participate in activities and when eeasked client was he going to leave group stated. ..
## 20357                                                                                                                                   EE and two co-workers were in the process of up-righting from the floor a set of metal wall lockers when the load shifted on him
## 20358                                                                                                                                              EE and two other co-workers were wlaking down hallone slipped in water and grabbed EE, the other hit EE's coffee cup.
## 20359                                                                                                                EE and two other employees were walking together. Other EE grabbed EE's back and jumped up. This pulled EE's back and right front side and stomach.
## 20360                                                                                                                                                EE and two others were welding a clamshell bucket at the same time. Protective welding hoods and glasses were used.
## 20361                                                                                                                                                                                                         EE anesthestizing a cat when it bit him on the left wrist.
## 20362                                                                                                                         EE another vehicle pulled out of the winn-dixie parking lot & struck vehicle in rt front door. Other driver charged. Neck & back injuries.
## 20363                                                                                                                    EE answering call to assess child, approaches front door where a small dog is waiting. EE walks up steps & dog bits EE between the calf & ankle
## 20364                                                                                                                                                                             EE answering phone at phone center. Caught top offoot under (in between) legs of chair
## 20365                                                                                                                                                                EE answering phone in dining hall-inmate pushed door open & door hit EE in back-caused pain in neck
## 20366                                                                                                                                                                                     EE apparently fainted hitting sharp edge & causing extensive bleeding of head.
## 20367                                                                                                                                                                                              EE appears to have had a seizure as he was standing in the sgt office
## 20368                                                                                                                                                                             EE applied &removed asbestos containing insulationregularly during employment with doc
## 20369                                                                                                                                                          EE applied pressure to screw while holding receptacle resulted in slippage to impact and penetrated hand.
## 20370                                                                                                                                              EE applied too much pressure trying to twist open a solvent trap and the l-shaped connection broke and cut left hand.
## 20371                                                                                                                          EE applied vehicle brakes abruptly and with force to avoid vehicle accident. Pain and swelling in rt ankle/foot occurred within 24 hrs ()
## 20372                                                                                                                                                                                              EE applying pressure to caulk gun and piece of caulk went into rt eye
## 20373                                                                                                                                                                                        EE applying resident's behavior support plan when resident bit EE's rt calf
## 20374                                                                                                                                                                                          EE applying splint to someone when he struck across face hitting left eye
## 20375                                                                                                                                                                                 EE applying thermosplastic patch for ballrd installation at cobb deck-rt foot/toes
## 20376                                                                                                                  EE apprehended wanted person in another vehicle that attempted to leave parkin lot. EE attempted to mainted tripped falling on lt wrist & rt hand
## 20377                                                                                                                                                                                           EE approached a patient and patient punched EE in the face breaking nose
## 20378                                                                                                                  EE approached by patient asked what she needed thepatient hit EE in mouth. 1 cm laceraton to rt upper lip&chipped ft tooth. Swelling the rt cheek
## 20379                                                                                                                      EE approached cart of cleaning supplies. Inmate stopped cart suddenly causing mop bucket full of hot water to fall onto his feet. Burned feet
## 20380                                                                                                                     EE approached door of residence answering call forservice. EE foot slipped in crack between door/ porch. EE fell thru crack injuring upper leg
## 20381                                                                                                                                 EE approached door to open it, another person open-ed it from the opposite side and the door struck her big toe on her right foot.
## 20382                                                                                                                                                                                   EE approached drivers veh when a small dog came through window and bit EE on lip
## 20383                                                                                      EE approached individual incorrectly as trained, causing him to go into a behavioral pattern. Employee fought with individual, injuring him by scratching and lacerations. ()
## 20384                                                                                                                                                                    EE approached inmate to give him an order. He placed left hand on left shoulder and pushed her.
## 20385                                                                                                                                    EE approached mobile home, probationer escaped back door. EE pursed on foot stepped uneven groundinjuring lower lt calf muscle.
## 20386                                                                                                                            EE approached patient without warning patient hit EE on left side of hand with fist EE fell to floorbruising top left hand & right hip.
## 20387                                                                                                                                                              EE approached pt re doing an activity, pt said no, grabbed EE's hair, scratched EE in the left eye ()
## 20388                                                                                                                                                           EE approached resident who was sitting on floor resident swung at EE and grab her hand a& scratch her ()
## 20389                                                                                                                                                                           EE approached stairs to go down, foot slipped on floor, causing her to twist right ankle
## 20390                                                                                                                       EE approached subject who broke ran away foot across parking lot of food pride stone main st upon reaching the roadway agent tripped & fell.
## 20391                                                                                                                          EE approached while he was being escorted to adminsgt struck him on lt side of face with his fist. Lt side of facial area lt ring finger.
## 20392                                                                                                                                                 EE approaching cafeteria and turned head and tripped over a cigarette urn-bruised left side of face, knee and hand
## 20393                                                                                                                                             EE approaching slower traffic-went to the rt and lost control of veh-skidding left across roadway and stuck embankment
## 20394                                                                                                                                           EE approaching van & felt something sticking her upper lt arm lifted sleeve & saw brown flying insect that had stung her
## 20395                                                                                                                                                                                                                 EE approaching water fountain and slipped in fell.
## 20396                                                                                                                                EE arm (l) hand (l) back (lower) neck.. Work in office answering phones, computers, multi tasking.. Working w/ numbness in arm/hand
## 20397                                                                                                                                                                                   EE arm and shoulder started hurting her, due to reaching for the mouse/mouse pad
## 20398                                                                                                                                                                                                                      EE arm started swelling after blood donation.
## 20399                                                                                                                                                                          EE arose from sitting position quickly to asist two residents that became confrontational
## 20400                                                                                                                                                                                                                  EE arranging chairs in atking annex strained back
## 20401                                                                                                                  EE arrested a male for dwi & transported some to robeson county jail. EE was in close contact with1hr & was exposed to male with active TB virus.
## 20402                                                                                                                                                                                     EE arrested a man who is a known carrier of t. B. EE was exposed in patrol car
## 20403                                                             EE arrested a suspect for hit-in-run and driving while impaired. The suspect refused to walk, so the EE with help from other officers carried the suspect up an embankment hurting his right shoulder.
## 20404                                                                                                                                                                 EE arrested and transported an individual to jail. If was discovered later that individual had TB.
## 20405                                                                                                                      EE arrested curtis brook for driving while impaired & transported him to police dept. EE was told that the prisioner was a active TB carrier.
## 20406                                                                                                                                         EE arrested drunk driver-placed him in car-walked around to driver's side & stepped in hole injuringleft foot & right knee
## 20407                                                                                                                                   EE arrested subject for driving while impaired. While enroute to the detention center arrestee coughed & saliva struck ees face.
## 20408                                                                                                                                                 EE arresting a probation violater. Violater rec'd lacerations from briars and bled on EE. Index finger of rt hand.
## 20409                                                                                                                                                                                   EE arresting a supect injured right thumb by scratching it on the asphalt street
## 20410                                                                                                                                      EE arresting offender. Offender resisted by pulling away & running from EE. EE tried to restrain & they both fell in a ditch.
## 20411                                                                                                                                        EE arresting probation violator, offender resisted a struggle ensued, offender and two others fell onee bruising right knee
## 20412                                                                                                                                                               EE arresting probationeer for probation violation and he resisted knee was bruised and foot srpained
## 20413                                                                                                                         EE arresting suspect who was resisting arrest, whilattempt to control suspect both went to ground, suslanded on EE hand, contusion rt hand
## 20414                                                                                                                                          EE arresting suspect, suspect struck EE in face & tried to escaped custody, laceration to left arm abrasion and contusion
## 20415                                                                                                                                                              EE arresting suspect-both fell to groud causing suspect to land on EE injuring rt elbow and shoulder.
## 20416                                                                                                                                                                  EE arrived at and exited the car and sliped and fell on icy pavement. Injured rt shoulder, thigh.
## 20417                                                                                                                                                                                                                     EE arrived at work and slipped and fell on ice
## 20418                                                                       EE arrived at work she slipped and fell in the hallway outside work breakroom. It was raining hard that morning and the floor and EE's shoes were wet; EE slipped and fell twisting ankle ()
## 20419                                                                                                                                           EE arrived at wrk, & escaped patient jumped in hisvehicle attacking & pulling him out of the car trying to get his keys.
## 20420                                                                                                                                   EE arrived for work got out of the car in staff parking lot slipped and fell on black ice in parking lot face down onto pavement
## 20421                                                                                                                             EE arrived in seg. 1 inmate refused to put his hands out & they were forced to go in his cell & during the struggle his wrist was cut.
## 20422                                                       EE arrived on west side of nursing building to attend an event at the new dental school. He exited his patrol vehicle and closed the patrol car door, he accidentally closed his right thumb in the door. ()
## 20423                                                                                                                                                    EE arriving at pcs clients home to begin work day and slipped on ice in yard she fell on lt side hitting elbow.
## 20424                                                                                                                                                                                   EE arriving the following day, was unable to hear in right ear, from firing line
## 20425                                                                                                                                                                                                       EE as assisting patient off of floor and strained rt scapula
## 20426                                                                                                                                                                EE as at pool with resident-resident kept pulling EE in different directions and EE strainedrt knee
## 20427                                                                                                              EE as attempting to gain control and return the fire exting to it's appropiate location, student released the chenicals in EE face and EE inhaled it.
## 20428                                                                                                                                                                                              EE as helping client to her feet and felt a pull in pain to her back.
## 20429                                                                                                                         EE as helping her supervisor store tissue in basement closet. As she exited towards the freight elevatr she hit her head on overhead pipes
## 20430                                                                                                                                                                              EE as helping to clean co-workers office and was bitten by a spider. Injured rt hand.
## 20431                                                                                                                                                                                                         EE as making resident bed and hit rt lower leg on bed rail
## 20432                                                                                                                                                                        EE as packing up equipment and stepped off an elevated platform and twisted his left ankle.
## 20433                                                                                                                                                            EE as walking around beaufort/ft macon and startedshe did not drink enough water and became dehydrated.
## 20434                                                                                                                                                 EE ascended the stairway returning to duty after responding to code 400, her knee gave out, causingher to stumble.
## 20435                                                                                                                                                                                             EE ascending off ladder, approached top of ladder and hit head on roof
## 20436                                                                                                                                                EE asisted a classroom teacher trying to remove a student from the playground and the student bit EE on the rt arm.
## 20437                                                                                                                             EE ask client to come out of hallway, client refused, started to tear shirt off and EE tried tostop. Client scratched EE on left hand.
## 20438                                                                                                                                                                     EE ask pt to lv classroom, pt threw book at EE, attacked EE, scratching them in multiple areas
## 20439                                                                                                                        EE asked a disruptive student to leave class when the student attacked EE and other students attackd the attacker. Injured foot, arm, neck.
## 20440                                                                                                                                EE asked client to go to his room. Client walked by EE and hit her on head. When EE went to put client in pic client hit lower arm.
## 20441                                                                                                                                                                                                          EE asked client to hang up hander. Client spit and kicked
## 20442                                                                                                                                                                  EE asked client to sit on bed, client hit EE in faccausing scratch to lip and breaking eyeglasses
## 20443                                                                                                                                          EE asked client to take medication client threw cup at EE and attacked EE client was placed in pin hold client hit rt arm
## 20444                                                                                                                                                       EE asked client to wait her turn after breakfast grooming. Client grabbed EE's hand causing cuts and scratch
## 20445                                                                                                                                               EE asked inmate to help move fan away from phone as the fan was uprighted the metal base came down on EE right foot.
## 20446                                                                                                                                               EE asked patient in put her tray & plates up and patient scratched EE. EE fell to floor hitting knee, wrist and neck
## 20447                                                                                                                                                                                           EE asked patient not to go back into room and patient punched EE in face
## 20448                                                                                                                                                                  EE asked patient to go to quiet room and patient became combative and bit EE on the right forearm
## 20449                                                                                                                                               EE asked patient to leave phone room and patient pushed EE into the phone-EE struck head on phone causing laceration
## 20450                                                                                                                                                     EE asked patient to return cd player and patient struck EE in the (left side) face 3 x's with an open hand. ()
## 20451                                                                                                                                                                     EE asked patient to sit down, EE then turned and the patient hit EE in the face with his fist.
## 20452                                                                                                                                                                   EE asked pt to get out of another pt face. Pt kicked EE on l leg & bent finger from side to side
## 20453                                                                                                                                                                         EE asked pt to lv restraint rm, pt turned hitting EE in the face, throwing EE to ground ()
## 20454                                                                                                                           EE asked pt to sit down, pt refused, picked up a chair and tried to hit EE, EE blocked hit with left hand, chaired hitted EE's left hand
## 20455                                                                                                                                                                                     EE asked pt who shoes he had on pt turn and hit her in the head with his fist.
## 20456                                                                               EE asked resident did he want anything to eat, resident said ice cream, EE gave him ice cream, EE was wiping resident mouth with a towel when resident bit EE right index finger. ()
## 20457                                                                                                             EE asked resident to stop rubbing injuried rt eye resident then began hitting her head, EE held resident arms resident butted EE in face hitting nose.
## 20458                                                                                                                                                          EE asked staff about lifting client from chair, EE went to lift clients upper body and pulled lower back.
## 20459                                                                                                                                                          EE asked student to move and when he wouldn't EE tried to move his-student bit EE three times on her arms
## 20460                                                                                                                                                                                                     EE asked to got othe bathrooma nd client punched EE in the jaw
## 20461                                                                                                                                                                                                EE assaulted by a student. EE was hit upside the head by a student.
## 20462                                                                                                                                                                                                                      EE assaulted by client-bruised about left eye
## 20463                                                                                                                                                                 EE assaulted by inmate while trying to subdue him to be placed in segregation, bruises to low back
## 20464                                                                                                                                                                   EE assaulted by inmate with sharpened metal objectinjury upper left chest puncture and abrasions
## 20465                                                                                                                                               EE assaulted by inmate. Inmate struck EE in face and head w/fists. EE also fell to floor and struck head on concrete
## 20466                                                                                                                                                                                                                              EE assaulted by passenger riding bus.
## 20467                                                                                                                                                                                       EE assembled a desk then picked up to move onto unit-pulled rt shoulder/arm.
## 20468                                                                                                                                                    EE assembling beds when wrench slipped off bolt causing EE thumb to strike bed frame, which causedsmall scratch
## 20469                                                                                                                                                                                     EE assending steps to tower #10 to relieve second shift EE twisted right ankle
## 20470                                                                                                                                                                                                                      EE assessing pain on animal & dog bit rt hand
## 20471                                                                                                                   EE assigned as patrol officer in single cell, she was maker her check when inmate threw cup liquid at her. Injured rt arm, shoulder, neck & face
## 20472                                                                                                                           EE assigned to 2nd floor. Was attempting to cuff inmate. Inmate refused to be cuffed & while attempting to restrain inmate hit EE in eye
## 20473                                                                                                                             EE assigned to back yard. Reached his hand throughgate outside kitchen door to gain access. Scrapedindex finger on sharp edge of wire.
## 20474                                                                                                                EE assigned to e-block when he began to smell the fumes from cleaning solution. EE began experienc- ing shortness of breath and pain in chest area.
## 20475                                                                                                                                                           EE assigned to master control, while using phone went to turn chair broke, fell on right sideof body. ()
## 20476                                                                                                                                                               EE assigned to mple dorm EE securing c entrance door left hand caught btwn door and frame, contusion
## 20477                                                                                                                  EE assigned to patrol on the yard, upon making fence line EE fell down onto left side in a muddy area, radio help, refused treatment. EE was fine
## 20478                                                                                                                                                         EE assigned to post 2 - lowered supply basket fromcatwalk. Basket hit EE in top of head. Bump top of head.
## 20479                                                                                                                    EE assigned to post 4 - he dropped a piece of trash on floor bent down to pick up and struck his head against rack. Abrasion on rt side of head
## 20480                     EE assigned to proscribed burn - upon completion of lighting an area the employee walked down a steep slope and then had to jump down approximately 6-8 feet to the road. EE indicates this action resulted in an injury to his right knee. ()
## 20481                                                                                                                                EE assigned to segregation-inmate threw tray of food & refused to return to cell. Inmate hit EE on upper lip causing nose to bleed.
## 20482                                                                                                                                       EE assigned to sills e & f dorms-she was eating pizza when something lodged in her throat coworker performed heimlich on her
## 20483                                                                                                                                                                       EE assigned to the construction crew and stepped on a brick and slightlu turned right ankle.
## 20484                                                                                                                                                                 EE assigned vehicle was struck in the rear when other vehicle was following to close. Neck & back.
## 20485                                                                                                                      EE assigned yard duty, retrieving some cats from yard, picked up 2 cats and was walking down front sidewalk - cat bite lower part of rt palm.
## 20486                                                                                                                EE assissting pa in medical clinic as EE reached to secure a pair of hemostats the pa accidently punclured lt index finger with contaminated scapel
## 20487                                                                                                                                                                      EE assist another staff in getting client off floor and strain left side of neck and shoulder
## 20488                                                                                                                                        EE assist in conducting cell searches. Came in contact w/white powder. While sitting in visitation, arms began to swell. ()
## 20489                                                                                                                                                         EE assisted client into chair-EE was standing in front of client. Client kicked EE in knees with his foot.
## 20490                                                                                                                                     EE assisted client to dining room-food tray started to fall-EE tried to catch it and in the process it struck EE on the wrist.
## 20491                                                                                                                                                            EE assisted client to stand-when in hgallway client pushed EE w/forearm and elbow in stomach. Pregnant.
## 20492                                                                                                                                                     EE assisted drawing blood on patient who became agitated, jerking arm, needle came out hitting EE's inner arm.
## 20493                                                                                                                                                                          EE assisted hct lift client up out of floor into a standing position, hurting lower back.
## 20494                                                                                                                                                                                                 EE assisted in carrying client to ito room-felt pain in lower back
## 20495                                                                                                                                                                                                 EE assisted in getting client up off sidewalk and injured her back
## 20496                                                                                                                                                                      EE assisted in lift of client from toilet during fire drill and felt pull in right lower back
## 20497                                                                                                                                 EE assisted in lifting client up off of the floor to put in bed and felt pull in lower back and later felt pain in middle of back.
## 20498                                                                                                                                                         EE assisted in placing a child patient in thera- peutic hold and hit her back against wall. Low back pain.
## 20499                                                                                                                                                                                                                EE assisted in placing ptin pic hold and hurt back.
## 20500                                                                                                                                                                                  EE assisted in prone restraint of client and afterprone noted pain in right hand.
## 20501                                                                                                                                                 EE assisted in removal of personal property from inmate during process in attempting to restrain twisted lt ankle.
## 20502                                                                                                                                                                           EE assisted inmate to floor and got blood on her hands due to inmate bleeding from mouth
## 20503                                                                                                                                                                                         EE assisted inmates and staff in evacuating duringa fire and inhaled smoke
## 20504                                                                                                                      EE assisted lift a client, client stiffened legs, resulting in EE having difficulty repositioning client in recliner, felt pull/pain in back.
## 20505                                                                                                                                                  EE assisted lift client off of tub-EE came in contact w/drainage from open wound on client-EE diagonsed with MRSA
## 20506                                                                                                                                                                                                 EE assisted moving patient and both hands now have pain & are numb
## 20507                                                                                                                                                           EE assisted stranded motorist change tire. Strain-ing to loosen lug nut, felt burning in middle of back.
## 20508                                                                                                                                                                          EE assisted to lift client in bed- no pain noted at time- next day noticed low back pain.
## 20509                                                                                                                                                                                      EE assisted with chair restrain. Client rocked intensely spraining EE's back.
## 20510                                                                                                                          EE assisted with patient's bath & helped him standup. Did not feel any pain until next morning & tried treating it on her own. Out 2 days
## 20511                                                                                                                                                                  EE assistin client from wheelchair to commode and pulled back trying to keep cleint from falling.
## 20512                                                                                                                                                        EE assisting 2 hct's put pt on portable commode & while trying to lift him EE felt a pulling strain in back
## 20513                                                                                                                                                                                          EE assisting 2 other EE's putting client to bed- felt pull in lower back.
## 20514                                                                                                                                                                                       EE assisting 3 other EE's lift a motor-strained back when stepping backwards
## 20515                                                                                                                                                                               EE assisting 4 other EE's to get bulldozer unstuck in mud and pulled left lower back
## 20516                                                                                                                                                                                                                  EE assisting a client and injured left foot/ankle
## 20517                                                                                                                                                                    EE assisting a client in process of going down to floor EE landed on her lt knee. Pain lt knee.
## 20518                                                                                                                                                  EE assisting a client who had a seizure, client fell on EE right knee. EE had surgery on the same knee 2 yrs ago.
## 20519                                                                                                                                EE assisting a disabled tractor-trailer-had veh lights and warning flashers on-oncoming veh failedto see EE and hit EE in the rear.
## 20520                                                                                                                                          EE assisting a gso police k-9 officer. K-9 bit EE on left ankle and right calf. Puncture lt ankle and laceration rt calf.
## 20521                                                                                                                EE assisting aggitated pt who was crawling on floor. EE trying to prevent pt fm harming self and others with iv pole. Right wrist was hyperextended
## 20522                                                                                                                                   EE assisting agitated client-advised to take meds when client picked up table and overturned it and EE used arms to block table.
## 20523                                                                                                                                                                                 EE assisting allied agency effect the arrest of impaired driver injured left knee.
## 20524                                                                                                                                                                                                EE assisting another EE in putting client in chairand strained back
## 20525                                                                                                                                                                                                                  EE assisting another EE turn heavy pan in kitchen
## 20526                                                                                                                                                               EE assisting another EE w/aggressive client-EE attto put client in pic hold and was pushed into door
## 20527                                                                                                                  EE assisting another EE w/loading a wall partitioninto a van. Partition slipped as they were loading& mashed finger. Contusion/sm finger, lt hand
## 20528                                                                                                                                           EE assisting another EE with lifting a lrg stainless steel can to place on counter-felt a pull in lower rt side of back.
## 20529                                                                                                                                     EE assisting another EE with patient onto commode. Patient about to fall EE lifted patient causing pain in lower left back. ()
## 20530                                                                                                                                                                                              EE assisting another cna to hold client to keep from hurting employer
## 20531                                                                                                                                                                                         EE assisting another doctor and collapsed and taken to hospital-back pain.
## 20532                                                                                                                                                                                               EE assisting another officer inmate kicked me in groin with lt foot.
## 20533                                                                                                                                                   EE assisting another picking up heavy person both did not pick up at same time injury rightsideneck and shoulder
## 20534                                                                                                                                                              EE assisting another police officer in making an arrest, & was kicked on rt knee by unknown assailant
## 20535                                                                                                                                       EE assisting another staff move client to trolley for bath; client was leaning. When trying to lift again felt pain in back.
## 20536                                                                                                                                                                                        EE assisting another staff to hold up patient whenlower back began to hurt.
## 20537                                                                                                                                                                  EE assisting another staff to lift client into shouwer chair-EE felt something pop in lower back.
## 20538                                                                                                                                                           EE assisting chairside when the cleint went into a seizure restraining client-injuring left arm and hand
## 20539                                                                                                                EE assisting change a client, client began to fall, EE tried to catch, lost balance and fell against door catching left 4th finger in closing door.
## 20540                                                                                                                                                                                            EE assisting change client, client kicked emp. In the right side of jaw
## 20541                                                                                                                                                                                                    EE assisting change client-client squeezed EE rt hand and wrist
## 20542                                                                                                                                                       EE assisting child who jumped off comode onto EE'slegs causing EE to fall down injuring back, rt hipand leg.
## 20543                                                                                                                                                                                                          EE assisting cleint out of bed-client grabbed EE'sthumbs.
## 20544                                                                                                                                              EE assisting cleint prepare for bath-EE bent down to retreive client's clothes-stood back up and felt pain in rt knee
## 20545                                                                                                                                                                                   EE assisting client - client grabbed EE's rt wrist and twisted. Rt wrist sprain.
## 20546                                                                                                               EE assisting client carrying laundry basket into laundry room. Client in front, opened door, once inside released it, closing door struck EE rt foot
## 20547                                                                                                                                                                                                  EE assisting client client fell to floor sprain to EE right wrist
## 20548                                                                                                                                                                    EE assisting client down hallway; client started to turn away and stepped on EE's left foot. ()
## 20549                                                                                                                                                                   EE assisting client dress for bed-client pushed eeinot frame of other bed-resulting in back pain
## 20550                                                                                                                                                                          EE assisting client during bathing attempted to keep from falling and injured left wrist.
## 20551                                                                                                                                        EE assisting client during fire drill from commodeto wheelchair-client slide out of wheelchair causing EE to injury rt knee
## 20552                                                                                                             EE assisting client during grooming. Client became agitated and started pulling back on EE. EE tried to prevent client from falling and hurt rt thumb.
## 20553                                                                                                                                                                                       EE assisting client from bathing area when client hit EE in rt side of neck.
## 20554                                                                                                                                                                                                            EE assisting client from falling and injured left wrist
## 20555                                                                                                                                                                                                         EE assisting client from falling strained rt side of neck.
## 20556                                                                                                                                                                                      EE assisting client from tub into chair noted pain in back down through legs.
## 20557                                                                                                                            EE assisting client from walker to dining chair when the client started to fall; EE tried to catch client and fell cutting forehead. ()
## 20558                                                                                                                                                EE assisting client in bathroom when knees startedto buckled and EE pulled lower back catching client from falling.
## 20559                                                                                                                                                                                     EE assisting client in bathroom, client opened door& the door hit EE left hand
## 20560                                                                                                                               EE assisting client in bed from wheelchair-client kept going up and down causing pain in left part of middle back and left shoulder.
## 20561                                                                                                                                              EE assisting client in sitting up in bed-client leaned back, EE grabbed client to keep from falling and pulled rt arm
## 20562                                                                                                                                                                         EE assisting client in standing when client swung around w/left elbow and hit EE in rt leg
## 20563                                                                                                                                      EE assisting client in toilet-client cut top rt hand of EE's hand with teeth causing EE to hit rt elbow on wall and hurt back
## 20564                                                                                                                                                                                                      EE assisting client into bed when client kicked EE in throat.
## 20565                                                                                                                                                                                EE assisting client into behavior program when client slammed door on EE right hand
## 20566                                                                                                                                                                                       EE assisting client into tub-resulting in EE bearing wgt on EE's rt shoulder
## 20567                                                                                                                                               EE assisting client into wheelchair clients legs dropped EE tried to break clients fall causing injury to lower back
## 20568                                                                                                                                                                                               EE assisting client into wheelchair during fire drill injury to back
## 20569                                                                                                                                  EE assisting client into wheelchair, EE left arm caught between clients arm & body. Weight of client resting on EE, lt arm & hand
## 20570                                                                                                                                                           EE assisting client off toilet, when client turnedaround to sit down client fell back on EE right thumb.
## 20571                                                                                                                                                                         EE assisting client on toilet when client kicked EE in the stomach - EE is 19wks pregnant.
## 20572                                                                                                                                                      EE assisting client ou of lunchroom-client became angry-pulled EE arms & twisted/squeezed hands-rt wrist pain
## 20573                                                                                                                                                         EE assisting client out of bathtub-client agitatedand bent EE's left ring finger backwards and bit rt arm.
## 20574                                                                                                                                                           EE assisting client out of dining room when clientattacked EE-knot on side of head, soreness of shoulder
## 20575                                                                                                                                                          EE assisting client out of wheelchair to commode when client slipped and EE caught finger in wheel-chair.
## 20576                                                                                                                                              EE assisting client put on shirt-client popped EE on left wrist with back of hand-EE later noticed wrist was painful.
## 20577                                                                                                                                                                                   EE assisting client put shoe on, client hit EE in right eye. Bruise to right eye
## 20578                                                                                                                 EE assisting client sit down in showerchair clientpushed chair back & started to fall, EE attempted to break fall, EE fell hitting shoulder, knees
## 20579                                                                                                                                              EE assisting client to bathroom when client swung at EE-EE caught clients arm and lost balance and client fell on EE.
## 20580                                                                                                                                                                             EE assisting client to bathroom-client was having a behavior and fell on EE's rt foot.
## 20581                                                                                                                         EE assisting client to bed when client began to fall. EE tried to break fall. After she left work she began having pain in her lower back.
## 20582                                                                                                                                                                  EE assisting client to chair-client sat on seat belt-EE pulling belt and felt pain in lower back.
## 20583                                                                                                                                                       EE assisting client to dining area - client tripped and fell on staff rt knee, elbow, shoulder, hip and back
## 20584                                                                                                                                                                  EE assisting client to dinning room when client fell on floor - EE has stiffness in neck and hand
## 20585                                                                                                                               EE assisting client to get back was turned client grabbed around twisted around rt leg dipped fell backwards on floor. Injured back.
## 20586                                                                                                                                                                                                  EE assisting client to get up when client fell on EE's left hand.
## 20587                                                                                                                                                         EE assisting client to get up, client hit EE in face, left cheek and kicked EE knocking down, twisted knee
## 20588                                                                                                                                                                                                    EE assisting client to his feet and pulled back low back strain
## 20589                                                                                                                                                 EE assisting client to move wheelchair-client pushed chair real hard-rest hit EE's lower lt leg causing EE to fall
## 20590                                                                                                                                                                                 EE assisting client to quiet room - EE slipped on wet floor and client fell on EE.
## 20591                                                                                                                                                                                             EE assisting client to restrain when client bent EE's thumb backwards.
## 20592                                                                                                                                                                       EE assisting client to sit down to keep from falling and noted pain in back and rt shoulder.
## 20593                                                                                                                                                                                                           EE assisting client to sit in chair - noted pain in back
## 20594                                                                                                                                                                                        EE assisting client to sit up and bed and felt a pain on left side of back.
## 20595                                                                                                                                                                                                             EE assisting client to sit up felt pain in pelvi area.
## 20596                                                                                                                                                                                              EE assisting client to stand and stubbed left big toe on wheel of bed
## 20597                                                                                                                         EE assisting client to stand and transfer from toilet into wheelchair-durning process EE att to keep client frm falling felt pull in neck.
## 20598                                                                                                                                                                                                EE assisting client to stand pivot and felt a pop in left shoulder.
## 20599                                                                                                                                  EE assisting client to stand. Client started to slide while EE was assisting to lift. EE felt pop in left side of neck & shoulder
## 20600                                                                                                                                                                       EE assisting client to toilet-client started to fall-EE grabbed gate belt causing EE to fall
## 20601                                                                                                                                        EE assisting client to transfer from wheelchair to recliner-client's legs gave away-EE att to catch client and injured back
## 20602                                                                                                                                                               EE assisting client to wheelchair when client dropped all wgt on EE causing EE to strain lower back.
## 20603                                                                                                        EE assisting client to wheelchair. The client sat down while EE positioning client; EE's arm was under client. The EE heard a small pop in left shoulder ()
## 20604                                                                                                                               EE assisting client to wheelchair; client lifted up feet off floor; throwing client & EE off balance& causing client and EE to fall.
## 20605                                                                                                                                                                                            EE assisting client up and out of chair when he felt a pop in low back.
## 20606                                                                                                                                                     EE assisting client up to dining room when EE feltback pop-another client pushed EE into door aggravating back
## 20607                                                                                                                                EE assisting client w/ putting on clothes; client became aggresive & grabbed her. EE snatched back arm & her wrist hit wall of tub.
## 20608                                                                                                                                                                       EE assisting client w/bath who started fighting-eemoving from client and felt left knee pop.
## 20609                                                                                                                                                                                         EE assisting client w/bath-client became aggressive and twisted EE's hand.
## 20610                                                                                                                                                                                                         EE assisting client walking-caused strain to EE's mid-back
## 20611                                                                                                                                                             EE assisting client when left bottom of rollalor hit EE right foot causing a cut on the inside of foot
## 20612                                                                                                                                                              EE assisting client with bath, client started to stand then not, EE twisted back sitting client down.
## 20613                                                                                                                                                                                    EE assisting client with bath-cleint went into behavior and both fell to floor.
## 20614                                                                                                                                                                              EE assisting client with cast on foot - client started fighting and hit EE on rt hand
## 20615                                                                                                                                                                                                                  EE assisting client with conjunctivities - rt eye
## 20616                                                                                                                                                                             EE assisting client with program-client became aggressive and hit EE on left shoulder.
## 20617                                                                                                                                                                                                         EE assisting client with toileting - client hit EE in face
## 20618                                                                                                                                                                                                 EE assisting client with walker, client hit left ankle with walker
## 20619                                                                                                                                                                                          EE assisting client. Client dropped to floor several times. Muscle sprain
## 20620                                                                                                                                                                                         EE assisting client. Gate fell hitting top of lft foot. Lft foot contusion
## 20621                                                                                                                                EE assisting client; client became aggressive - client swung at staff; scratched and bite EE on botharms; both hands and both legs.
## 20622                                                                                                                                                      EE assisting client; client lost his footing and tripped over feet causing client and EE to fall tothe floor.
## 20623                                                                                                                                                      EE assisting client; client slide off toilet; pushed EE down. While assisting client up, felt back straining.
## 20624                                                                                                                                                                                             EE assisting client; client started spitting. Client spit in left eye.
## 20625                                                                                                             EE assisting client; client tried to get up; unsteady; tried to catch client to keep from falling; pulled muscle in buttocks; right thigh and knee are
## 20626                                                                                                                                               EE assisting client; moved stool closer to client to feed. Top of stool was loose & pinched EE's right index finger.
## 20627                                                                                                                                                                                         EE assisting clients through out the day and laternoted pain in left hand.
## 20628                                                                                                                                                                                        EE assisting cliet to get dress-client lifted leg and EE noted pain in back
## 20629                                                                                                                         EE assisting clinton police department chase down a fleeing suspect. While running, EE stepped in a ditch & pulled/or tore right hamstring
## 20630                                                                                                                                                                    EE assisting cna with client-client grabbed EE by the leg jerking to the floor landing on back.
## 20631                                                                                                                           EE assisting co-worker -client threw chair-kicked clmt on left thumb during restraint *clmt rec'd 6% ppd/thumb on 12-26-01/add'l 5% due*
## 20632                                                                                                                                                                 EE assisting co-worker change a client-started to pull pants up & felt a pull on left side of ribs
## 20633                                                                                                                    EE assisting co-worker she tried to move buffer cord out of way co-worker stepped back and kicked her on hand causing her to jam little finger.
## 20634                                                                                                                                               EE assisting combative client who pushed EE backwards while EE placing in chair-client jerked away an sat EE's hand.
## 20635                                                                                                                                               EE assisting combative patient with dressing and getting up, patient was kicking, hitting and re- sisting assistance
## 20636                                                                                                                                                            EE assisting consumer on phone, stretched arms vertically and experienced sharp pain in shoulder joint.
## 20637                                                                                                               EE assisting controlling inmate, fell forward withthe inmate & the other staff members pinning rightwrist under the inmate. Split on l middle finger
## 20638                                                                                                                                                                                      EE assisting customer in preparing side of flat bed truck pinched left finger
## 20639                                                                                                                                                                            EE assisting demonstrate handcuffing technique. Injured rt shoulder demonstrating tech.
## 20640                                                                                                                                               EE assisting in apprehension of suspect when EE tripped over numberous large tree roots causing EE to fall to ground
## 20641                                                                                                                                                                       EE assisting in co-workers cuffing student. Student rolled back on EE hand during resistance
## 20642                                                                                                                                       EE assisting in escorting a patient to the quiet room and in the process, EE/patient fell to floor and landed on both knees.
## 20643                                                                                                                                                                           EE assisting in lifting client into chair-client headbutted EE in mouth cracking tooth..
## 20644                                                                                                                                                                                                 EE assisting in lifting client into tub felt a pull in lower back.
## 20645                                                                                                                                                                                                      EE assisting in lifting stretcher felt something pull in back
## 20646                                                                                                                           EE assisting in lighting of gas stove in plans trailer. Gas escaped from another line. First degree burn to rt hand, eyebrows, and hair.
## 20647                                                                                                                                                       EE assisting in movement of non-compliant student who was out of control. Student bit staff member on chest.
## 20648                                                                                                                                                                  EE assisting in opening gate lifted gate post out of hole which caused gate to pinch EE's lt hand
## 20649                                                                                                                                                                                    EE assisting in recling sewer line when rod kickedback hitting EE above rt eye.
## 20650                                                                                                             EE assisting in removing a hostile inmate from cell, inmate rushed out door struggling with staff. Staff/inmate fell against EE. EE. Fell against door
## 20651                                                                                                                                            EE assisting in restraing an inmate, when inmate kicked EE in groin area, also kicked rt thumb causing it to bend back.
## 20652                                                                                                                                                                               EE assisting in restraining a student when he was poked in lt eye by students finger
## 20653                                                                                                                                                                                                            EE assisting in restraining an inmate injurying rtelbow
## 20654                                                                                                                                                                                                     EE assisting in restraining an inmate who bit EE on left elbow
## 20655                                                                                                                                                  EE assisting in restraining an irate client sprain lft ankle, mod contusion of side & lft paraspinous back strain
## 20656                                                                                                                                                                                                  EE assisting in restraint of client EE injured back. Back strain.
## 20657                                                                                                                                             EE assisting in transferring client from bed to wheelchair when rt index finger got caught betweensling and wheelchair
## 20658                                                                                                                                                                      EE assisting in transporting client from water bedto bath troley, later felt pain in left arm
## 20659                                                                                                                                                  EE assisting in transporting patient to seclusion, patient was kicking and hitting/ jerked EE right shoulder/arm.
## 20660                                                                                                                                                                                       EE assisting individual with bath reaching over individual felt pain in back
## 20661                                                                                                                         EE assisting inflating tire on tiller when injury occurred-EE inserting air compressor hose through razor wire-laceration left ring finger
## 20662                                                                                                            EE assisting inmate back to cell, inmate resisted and dropped to floor falling on EE. L hand trapedbetwn inmate and floor, sprain scapula, cont lft han
## 20663                                                                                                                                   EE assisting inmate that hand seizure EE turned inmate over on his side to keep him from choking fluid splashed lt side of face.
## 20664                                                                                                                        EE assisting inmates in cleaning and stripping floors in visitation center she inhaled fumes. Lightheaded and rash on face, neck and hands.
## 20665                                                                                                                                                        EE assisting lift a client-client started to fall and EE caught client on left knee-stood up felt knee pop.
## 20666                                                                                                                                                           EE assisting lift client up from floor into wheel-chair and client's wgt shifted and EE felt pain inback
## 20667                                                                                                                                                                                                            EE assisting lift client-stated pull in lower left back
## 20668                                                                                                                                                                                   EE assisting lift resident when he felt a sudden sharp pain his rt groinal area.
## 20669                                                                                                                                                                     EE assisting lifting client into wheelchair and felt sharp pain in back when standing upright.
## 20670                                                                                                                                                                                     EE assisting lifting client onto cot to transport to hospital and pulled back.
## 20671                                                                                                                                                              EE assisting lifting client out of bed, client pulled/pushed backwards onto bed, pulling EE with him.
## 20672                                                                                                                                             EE assisting lpn's draw blood client jerked arm and nurse let go of the needle which stuck EE on the back of left hand
## 20673                                                                                                                   EE assisting motorist who lost unsecured appliancefrom truck, while lifting a refrigerator off road way, EE felt tearing sensation in left bicep
## 20674                                                                                                                                                                                       EE assisting nurse giving client a shot-and hit left knee on side of bedrail
## 20675                                                                                                                                             EE assisting nurse in giving medicine to client; EE was pushed by client causing EE to fall and injhis rt fifth finger
## 20676                                                                                                                                                               EE assisting nurse w/clients labwork-EE holding down client-client raised up EE strained rt shoulder
## 20677                                                                                                                                           EE assisting obese client in bathroom who couldn'tstand on feet-EE lowered client to floor causing strain to lower back.
## 20678                                                                                                                                                               EE assisting officer w/securing patient to cell patient bent head causing EE to be sprayed in lt eye
## 20679                                                                                                                        EE assisting officer who was sick, stood in front of officer her rt arm on side of chair to prevent from falling. Sharp pull to lower back.
## 20680                                                                                                              EE assisting on inmate escape detail, he was closing door of state van and he alleges driver moved and his hand caught in door. Abrasion index finger
## 20681                                                                                                                                                                     EE assisting other EE in providing care for pt 1 pputting patient to bed, pt scratched forhead
## 20682                                                                                                                                                             EE assisting other cna with agitated client-using pic hold taking client to room-felt pain in left arm
## 20683                                                                                                                                                                      EE assisting other staff to get client off floor after client choked and during the heimlich.
## 20684                                                                                                                                                                      EE assisting other staff with client; client leanedforward & bit EE on top of right shoulder.
## 20685                                                                                                                                   EE assisting other staff with redirecting patient, patient became aggitated scratching EE in the face & hit EE in the stomach ()
## 20686                                                                                                                                EE assisting others extinguish a burning truck in parking lot upon return from dinner at 1900 on 01231996. Throat sore and bleeding
## 20687                                                                                                                                                                  EE assisting others in chaning a display-picked up short strips and raised up and hit top of head
## 20688                                                                                                                  EE assisting patient in restroom & patient fell & EE tried to keep him from falling & held him underhis arms & hurt her rt. Shoulder & lower back
## 20689                                                                                                                                   EE assisting patient to bath, bed. Patient was sliding from chair, went to chart room bent over felt sharp pain lt side of back.
## 20690                                                                                                                   EE assisting patient to bathroom & patient trippedee causing her to fall hitting left knee on floor. Contusion/sprain of left knee and lower leg
## 20691                                                                                                                                                                                                              EE assisting patient up from floor injury to low back
## 20692                                                                                                                    EE assisting patient up from floor, when EE felt apull in rt shoulder, no pain at time. EE felt burn-ing sensation in shoulder later in the day
## 20693                                                                                                                                                                                                                   EE assisting patient when pt bit EE right finger
## 20694                                                                                                                              EE assisting police dept with robbery suspect-k9 unit became untangeled in barbed wire-EE att to get k9 out but k9 bit EE on rt wrist
## 20695                                                                                                                                                                                                                EE assisting pregnant bat and bat bit EE on rt hand
## 20696                                                                                                                                        EE assisting prone client during intervention resulted in constant pressure being exerted to EE wrist, elbows and shoulders
## 20697                                                                                                                                                                                           EE assisting proning a client in process twisted rt wrist. Wrist sprain.
## 20698                                                                                                                                                                                                           EE assisting pt by trying to break fall injury back pain
## 20699                                                                                                                         EE assisting pt in bathroom doing personal care, ptbegan to slip when standing and EE tried to hold pt, EE felt something pull in rt elbow
## 20700                                                                                                                                                              EE assisting pt in shower with another cna, when pt began fighting. Floor wet, & EE pulled lower back
## 20701                                                                                                                                                                                                                                       EE assisting pt out of floor
## 20702                                                                                                                                                                            EE assisting pt showering pt became aggressive causing injury to EE right knee and back
## 20703                                                                                                                                                                     EE assisting pt to seclusion rm, pt head butted staff in nose/face, complaining of headache ()
## 20704                                                                                                                                                                                                               EE assisting pt, knee of pt hit EE under chin, bruis
## 20705                                                                                                                                                                       EE assisting putting supports in storage building supports fell striking EE on left forehead
## 20706                                                                                                                                           EE assisting randolph county with chase, when a chase vehicle hit patrol unit on left front. EE tried to avoid collision
## 20707                                                                                                                 EE assisting removing folding tables from staff clothing room. On the tables were boxes of uniforminventory that was being restacked upon removal.
## 20708                                                                                                                                   EE assisting res from bed to chair when res stood EE let go and EE had to keep res from falling, EE supported res weight, sprain
## 20709                                                                                                                                           EE assisting resident from bbc to bed, resident leaned over & bit EE on lt hand human bite to rt hand, medical treatment
## 20710                                                                                                                               EE assisting resident from wc to bsc risdent sat down on floor. Her arm lt arm supporting resident. Impingment syndrome lt shoulder.
## 20711                                                                                                                                                   EE assisting resident in dental chair- resident pulled her arm ********"overpayment of ttd"*********************
## 20712                                                                                                                                                  EE assisting resident in dinning room resident pushed back from table catching my left hand between chair & wall.
## 20713                                                                                                                                            EE assisting resident in restroom-had resident in lift-EE protected resident from fall & strained shoulder **atty rep**
## 20714                                                                                                                                                                                    EE assisting resident out of Dr- Resident began tofall & EE caught pulling back
## 20715                                                                                                                                                                               EE assisting resident to bathroom. Resident fell to floor, took staff down with her.
## 20716                                                                                                                                                                                  EE assisting resident to get out of bed and felt pull on right side of lower back
## 20717                                                                                                                  EE assisting resident with toothbrushing another resident touched EE from behind causing EE to tripfall over wheelchair injury (r)shoulder(l)knee
## 20718                                                                                                                                                                                              EE assisting resident, resident hit EE in mouth w/elbow & broke tooth
## 20719                                                                                                                                                                                       EE assisting resident---resident grab EE left handbite to middle left finger
## 20720                                                                                                                                                               EE assisting restrain an inmate while he was havinseizure-during seizure inmate struck EE on rt face
## 20721                                                                                                                                                                                  EE assisting restraining inmate when inmate struckee's left knee with hand & foot
## 20722                                                                                                                       EE assisting staff in escorting patient to seclusion room walking 2 man walk when patient lunged forward to door pulling EE down on rt knee.
## 20723                                                                                                                                                                EE assisting staff with compative patient, left arm/shoulder strain when patient escaped from sheet
## 20724                                                                                                                                                EE assisting staff with placing an individual in physical restraint when individual kicked EE in left side of ribs.
## 20725                                                                                                                          EE assisting stopping inmate fight-EE squatted to place handcuffs on inamte on ground when he stood he felt pain around left big toe/foot
## 20726                                                                                                                                                                                                EE assisting to dress client-client agitated and kicked EE in ribs.
## 20727                                                                                                                EE assisting to get client to unit, client broke away & hit EE in face, contusion, abrasion, knocked glasses from face, lens scratched, frame bent.
## 20728                                                                                                                                            EE assisting to lift cleint to change-client stiffened up and jerked-pulling EE left arm down pain in left arm and neck
## 20729                                                                                                                                                    EE assisting to lift client from chair-both arms under clients arms, felt left wrist pop, pain in left shoulder
## 20730                                                                                                                                                                                           EE assisting to lift client from floor noted pain in neck into both legs
## 20731                                                                                                                  EE assisting to lift client out of bed-reached across to sit client up-then pulled client over to left side-felt gightening in neck along rt side
## 20732                                                                                                                                                                       EE assisting to lift client out of floor-client would not bear wgt-EE felt catch in mid back
## 20733                                                                                                                                                             EE assisting to lift client when rt hand got caughbetween client's arm and body injuring EE's rt wrist
## 20734                                                                                                                                                        EE assisting to lift patient in geri chair to upright position, felt sharp pain in lower back down rt foot.
## 20735                                                                                                                                                                             EE assisting to pick client up from floor to take back to room and noted pull in back.
## 20736                                                                                                                                                                                                EE assisting to pull patient up to bed strain to back and shoulders
## 20737                                                                                                                                                             EE assisting to restrain aggressive client when client hit EE on rt side of head, ear, wrist and hand.
## 20738                                                                                                                                                                                                   EE assisting to restrain client and sprained finger on left hand
## 20739                                                                                                                                      EE assisting to restrain combative resident resident rec'v injection kicked causing needle discharge. Need puncture rt thumb.
## 20740                                                                                                                                        EE assisting to transfer client into wheelchair when client began to fall-EE att to hold client and pulled back in process.
## 20741                                                                                                                                           EE assisting to transport client to work location asked client to exit van-client grabbed EE's rt arm band bit down hard
## 20742                                                                                                                                                                                                                 EE assisting to turn client in bed and pulled back
## 20743                                                                                                                    EE assisting transfer client into wheelchair & client started to fall. EE caught client, client fell on top of EE. EE landed on back- felt pop.
## 20744                                                                                                                                                         EE assisting transfering client from bed to wheelchair felt a pull and pop in lft shoulder, neck and back.
## 20745                                                                                                                                                                                            EE assisting two other EE's lift a client into chair-felt pain in back.
## 20746                                                                                                                                              EE assisting two other staff members restrain a student due to student pushing on member possible broken right finger
## 20747                                                                                                                                                                                                     EE assisting visitor with parking boat and got rt foot trapped
## 20748                                                                                                                                                                                                                  EE assisting w/ induction of a cat, animal bit EE
## 20749                                                                                                                                                                                                  EE assisting w/ meeting and tripped over feet & fell on l side ()
## 20750                                                                                                             EE assisting w/ necropsy of white-tailed deer. While attempting to remove skull cap to examine the brain for trauma, handsaw slipped and cut EE's hand
## 20751                                                                                                                                                                                        EE assisting w/ transfer from trolley to day bed and felt pull in shoulder.
## 20752                                                                                                                       EE assisting w/client who became aggressive-clientgrabbed and scratched EE's arm and forearm, and head hit EE's mouth chipping rt frt tooth.
## 20753                                                                                                                                                                                     EE assisting w/intervention taking client down to floor jammed her right thumb
## 20754                                                                                                                                                                          EE assisting walk client when EE tripped over another's client feet and fell on left knee
## 20755                                                                                                                                        EE assisting wheelchair bound parent, slipped on icy wheelchair ramp, struck chin on ramp, wheelchair went over rt shoulder
## 20756                                                                                                                                                                                          EE assisting with 4 other workers in moving a deskand felt pain in chest.
## 20757                                                                                                                                                       EE assisting with a behavior client who had pouredsoap on floor-EE slipped and fell felt pain in lower back.
## 20758                                                                                                                                                             EE assisting with a client that had eloped. EE ran across yard and injured foot in a low spot of yard.
## 20759                                                                                                               EE assisting with a combative patient-inj rt arm. Clmt has been paid 18% ppd to the arm. EE workingfor diff er-randolph cty mental health 3366337200
## 20760                                                                                                                                                  EE assisting with behavior cleint who poured soap and drink on floor-client kicked EE-EE jumped slipped and fell.
## 20761                                                                                                                                                 EE assisting with behavioral client who poured soap on the floor causing EE to fall and cleint hit EE in the back.
## 20762                                                                                                                                                                                                            EE assisting with carrying client and felt pain inback.
## 20763                                                                                                                                                                             EE assisting with client intervention-placing client in restraints-noted pain in back.
## 20764                                                                                                                                                   EE assisting with client that had barricaded self in bedroom - pushing against door to get open injuring rt knee
## 20765                                                                                                                                                                                                         EE assisting with client, felt pain in upper left shoulder
## 20766                                                                                                                                                                                                      EE assisting with clients-afterwards noted pain in lower back
## 20767                                                                                                                                                                       EE assisting with combative client to transport when client kicked EE in rt knee and he fell
## 20768                                                                                                                                                                          EE assisting with combative client who was pushingand pulling on EE-EE noted pain in back
## 20769                                                                                                                                                     EE assisting with combative patient, patient and staff fell to the floor, EE kicked in the chest several times
## 20770                                                                                                                                                                                        EE assisting with cooking class and hot oil splashed on rt hand and fingers
## 20771                                                                                                                          EE assisting with graduation rehearsal & walking towards the stage, when tripped over raised ramp (covering wiring on the floor) and fell
## 20772                                                                                                                                      EE assisting with holding client up while being cleaned and linen changed-after putting client down felt sharp pains in neck.
## 20773                                                                                                                                                                     EE assisting with injured victim-lost footing and fell onto a sall tree which struck left eye.
## 20774                                                                                                                                                                                          EE assisting with medication into g-tube, medicinesplashed into left eye.
## 20775                                                                                                                                                                                                  EE assisting with mole removal when chemical splashed in left eye
## 20776                                                                                                                                                                                        EE assisting with moving a couch into the gym feltpain in left hip and leg.
## 20777                                                                                                                                                                    EE assisting with other staff to lift client onto bed when EE straightened up noted pop in back
## 20778                                                                                                                                                                                                                                     EE assisting with patient care
## 20779                                                                                                                                                                           EE assisting with patient when patient came back against EE mashing right hand and wrist
## 20780                                                                                                                                                                                  EE assisting with patients son to left patient on exam table. Hurt middle of back
## 20781                                                                                                                                                                  EE assisting with pic patient restraint, patient was combative and was repeatedly kicked rt hand.
## 20782                                                                                                                                                                                        EE assisting with placing patient in eri when EE felt his left shoulder pop
## 20783                                                                                                                                                                                   EE assisting with putting a client in a stretcher-went down and pulled back out.
## 20784                                                                                                                             EE assisting with search warrant, instructed un- known female to lie on ground, EE knelt down to cuff female & felt pop in right knee.
## 20785                                                                                                                                                                                        EE assisting with seclusion and restraint of client and spraing left wrist.
## 20786                                                                                                                        EE assisting with state testing, leaned against table that was unassembled but did not appear to be, table fell causing EE to fall to floor
## 20787                                                                                                               EE assisting with student, when another student came from behind & repeatedly struck EE with hands& striking on head with stapler. See log notes!!!!
## 20788                                                                                                             EE assisting with traffic stop-notice veh started to roll-jumped in veh and left leg was out of veh-when EE's veh hit anto veh cusing leg to ge pinned
## 20789                                                                                                                                                        EE assisting with transferring a client to chair -right shoulder---back began to hurt. Shoulder/backstrain.
## 20790                                                                                                                                                     EE assisting with unit clean up when she slipped/fell on wet floor, hitting her right elbow/arm on a table. ()
## 20791                                                                                                                                            EE assisting women getting keys out of car-EE was in bent over position for long period of time and strained lower back
## 20792                                                                                                                                                           EE assisting youth with fishing, trying to untangle lines, youth moved pole and hook went into finger ()
## 20793                                                                                                                                                              EE assit in removal of personal property from inmate, attempting to restrain inmate twisted lt ankle.
## 20794                                                                                                                                                                                              EE assiting agitated client who picked up trashcanand hit EE on hand.
## 20795                                                                                                                                                                               EE assiting allied agency effect the arrest of an impaired driver injured left knee.
## 20796                                                                                                                                                                                           EE assiting another staff lift client into chair, EE hit l hand on chair
## 20797                                                                                                                                                 EE assiting break up of fight between two clients. EE kicked on rt & lt shin area, causing bruising and abrasions.
## 20798                                                                                                                    EE assiting client in walking to wheelchair-clientstopped walking and fell back-EE attempted to holdclient from falling and injured lower back.
## 20799                                                                                                                      EE assiting client w/staff in transferring from toilet to wheelchair-during transfer client dropped to her knees pulling EE down-pain in back
## 20800                                                                                                                                                                                                        EE assiting client when she felt something in rt knee tear.
## 20801                                                                                                                                                                                                                     EE assiting client with conjuntivetis - rt eye
## 20802                                                                                                                                                                        EE assiting client with pajama pants-tried to straighten up could not stand up-pain in back
## 20803                                                                                                                                                                 EE assiting co-worker and put hanb in a place it should not be and finger on left hanb was smashed
## 20804                                                                                                                                                                            EE assiting co-worker subdue resisting probationerstiffness rt shoulder and upper back.
## 20805                                                                                                                                EE assiting giving horse anes. To wake up after sxhorse fell against the doors and burst into surgical suite-EE strained both knees
## 20806                                                                                                                                  EE assiting in client intervention placing client in splints & helment when clients arm came down hit EE hand against wheelchair.
## 20807                                                                                                                                        EE assiting motorist with flat tire-bumper jack would was stuck-EE tapped jack with tire tool which struck EE on left hand.
## 20808                                                                                                                                                                           EE assiting rn draw blood from client- when client grabbed needle and struck EE in l arm
## 20809                                                                                                                                                                                                 EE assiting student with palpate cow and cow kicked EE onto ground
## 20810                                                                                                                                                                                                EE assiting to get client off commode and felt a pull in lower back
## 20811                                                                                                                                                                                                    EE assiting to lift client off of floor noted painin lower back
## 20812                                                                                                                                                             EE assiting to transfer client to bath-client started to sit down pulling EE back causing pain in legs
## 20813                                                                                                                                     EE assiting with a conference, alleged walking and climbing stairs more than normal. Shin splintsboth leg - inflammed lt foot.
## 20814                                                                                                                                                                                              EE assiting with clients throughout the day and noticed pain in back.
## 20815                                                                                                                                                                                     EE assiting with putting client in restraints and client kicked EE in the nose
## 20816                                                                                                                                                                                         EE assiting with stranded veh in pushing out of the road and injured back.
## 20817                                                                                                                                                                 EE asssiting w/placing patient in nci hold & was pushed into corner of table hitting her hip/thigh
## 20818                                                                                                                                                                                              EE asst client who was throwing shoes then grabbedee's hair and neck.
## 20819                                                                                                                                               EE asst doctor w/client to do exam-client trying to get off table and pushed backwards into sink hurting lower back.
## 20820                                                                                                                                       EE asst in lunch for clients walked toward the sindid not see water on floor slipped and fell injured lt leg and rt hip area
## 20821                                                                                                                                                         EE asst lifting a client onto the bathing table- when lifting client by legs felt a pulling in lower back.
## 20822                                                                                                                                      EE asst. Coach for soccer team student accidently hit EE on side of face, face is fine but having soreness in lt side of back
## 20823                                                                                                                                                     EE assting client up from the dinning rm. Table and client squezzes EE hand. EE has had carpal tunnel surgery.
## 20824                                                                                                                EE assulted by an intoxicated driver. EE struck defendant with his fist & was kicked in shin. Jam-index finger rt hand, scrape & contusion lt shin.
## 20825                                                                                                                               EE at a business meeting when stung by a scorpion wound became infected. EE# 334-8935 ***do not return any bills to providers*******
## 20826                                                                                                                                                                                                       EE at a training show and noticed her lower back was hurting
## 20827                                                                                                                                                                 EE at county dention center to pick up warrents, snow & ice on floor & steps, EE slipped on floor.
## 20828                                                                                                                     EE at crdt receretification training practicing a one leg take down manuever, officer performing themanuever failed to release EE's left foot.
## 20829                                                                                                                                                                                 EE at demolition site-moving out the way and stepped in a hole and fell backwards.
## 20830                                                                                                                                                        EE at desk, and when she stood up to walk away, heel was caught in a cord, and fell on right arm &shoulder.
## 20831                                                                                                                     EE at fire arms training stepped on rock lost balance and planted right foot when planted right foot stepped on small stick right knee buckled
## 20832                                                                                                                                              EE at firing range - riot helments required part of training. After firing hand slight ringing and pain to right ear.
## 20833                                                                                                                     EE at gym all day climbing wall in training, felt pain and sore next day, 2 days later helped move sand bags, felt pain in lt shoulder of back
## 20834                                                                                                                                                                      EE at her desk working when she hit her rt foot & toes on corner of her computer table, metal
## 20835                                                                                                                      EE at juh picking up meat b/c out freezer was broke. Went to pick up meat. Boxed froze together got damp-back snapped. Lower back and lt leg.
## 20836                                                                                                                       EE at mail center completing inter-campus mail. Other staff reached around EE to get mail, tray fell & envelopes or tray hit EE in left eye.
## 20837                                                                                                                                                   EE at offender's residence doing curfews & the offender picked EE up & hugged him causing soreness in lower back
## 20838                                                                                                                                                                                                     EE at red light struck by another vehicle causing neck strain.
## 20839                                                                                                                          EE at residence of informant, family dog being playful, owner tied dog outside, when EE was leaving dog jumped on EE and bit rt lower arm
## 20840                                                                                                                                                         EE at training session at embassey suites-tripped & fell going up steps injuring right arm-shoulder & neck
## 20841                                                                                                                                         EE at water fountain drinking water, got strangledlost breath, EE passed out. Fell face down was out for about 30 seconds.
## 20842                                                                                                                     EE at work dump truck backed up and inadvertenly hit him - knocked to ground and sustained servere pain over t hip and back. Bruised all over.
## 20843                                                                                                             EE at work, in bathroom when EE got dizzy, blackedout and fell face first on tile bathroom floor. Broke nose, strained neck/back, bruised mouth, teeth
## 20844                                                                                                                                                                         EE atated I/m was complaining about snack bag then threw a liquid substance in her face ()
## 20845                                                                                                                                                                                                              EE ate a brazil nut and began to have severe reaction
## 20846                                                                                                                                                           EE att arrest suspect-suspect approached EE w/gun EE pushed gun away w/hand receiving cut to right hand.
## 20847                                                                                                                                                    EE att to access the port of an iv line needle andpierced port came through rubber and stuck left index finger.
## 20848                                                                                                                                                               EE att to apply pic hold-door to restraint room hit EE on left forearm and client fell on left wrist
## 20849                                                                                                                                                                                        EE att to apprehand a felon and received a minor laceration to left forarm.
## 20850                                                                                                                                                                                               EE att to apprehened suspect-jumped into a creek and injured rt knee
## 20851                                                                                                                             EE att to arrest an suspect with hand caught in sweater-suspect took off running and stopped then running again-EE's hand was injured.
## 20852                                                                                                                                                                                 EE att to arrest person for dui-person resisted and EE struck person with rt fist.
## 20853                                                                                                                                            EE att to arrest suspect for dui-suspect resisted and a struggle ensued on the ground-EE rcvd minor cuts and scratches.
## 20854                                                                                                                                                                                                   EE att to arrest suspect-suspect resisted an altercation ensued.
## 20855                                                                                                                                                                 EE att to arrest suspect-suspect resisted and both fell to the ground causing EE break front tooth
## 20856                                                                                                                                                                  EE att to assist w/combative suspect who was rolling on the ground and kicked EE in the left eye.
## 20857                                                                                                                                                                                             EE att to brace self from falling out of broken chair and strain back.
## 20858                                                                                                                                                                               EE att to break up a fight went to the floor injuring left hip, rt forearm and knee.
## 20859                                                                                                                                                            EE att to capture suspect-suspect resisted arrest an a fight ensued resulting in EE receiving injuries.
## 20860                                                                                                                                                                                                       EE att to catch client from falling and injured rt. Shoulder
## 20861                                                                                                                                                                                      EE att to catch client that was falling and twisted neck and back in process.
## 20862                                                                                                                                                                                   EE att to catch client when having a seizure and pulled shoulder and lower back.
## 20863                                                                                                                                                                                                         EE att to catch door from closing and caught hand in door.
## 20864                                                                                                                                                                                       EE att to catch falling board student was carring and injured left shoulder.
## 20865                                                                                                                                                                                             EE att to catch patient from falling and felt painin shoulder, rt arm.
## 20866                                                                                                                                                                                       EE att to catch wheelchair from rolling over student and twisted left wrist.
## 20867                                                                                                                                                                                         EE att to exit elevator-toe got caught in lip of floor causing EE to fall.
## 20868                                                                                                                                                                                                   EE att to fill veh with gas-stepped off curb and jammed rt knee.
## 20869                                                                                                                                                                                                 EE att to get client off another client and felt a pull in rt arm.
## 20870                                                                                                                                            EE att to get on elevator-put hand betwn motion devices for door to open-door closed and caught rt thumb between doors.
## 20871                                                                                                                                                               EE att to grab gate belt of a western carolin ctr client when she turned and twisted and pulled back
## 20872                                                                                                                                                                              EE att to handcuff a combative prisoner and a struggle began and EE injured rt thumb.
## 20873                                                                                                                                                                              EE att to handcuff suspect placed under arrest when left knee hit the ground w/force.
## 20874                                                                                                                                                                                  EE att to hold client from falling backwards-felt pain in the middle of her back.
## 20875                                                                                                                                        EE att to hold extremely aggresive client with numerous staff members-client and EE fell across bookcase broke front tooth.
## 20876                                                                                                                                                                        EE att to lift 500lbs including handcart from street onto sidewalk to be brought into bldg.
## 20877                                                                                                                                                                                                       EE att to locate a students file folder injured rt shoulder.
## 20878                                                                                                                                                       EE att to make an arrest-suspect resisted EE struggling with suspect injured rt hand and bruised rt shoulder
## 20879                                                                                                                                                                                      EE att to open door that was stuck and fingers were caugh between door frame.
## 20880                                                                                                                                                                   EE att to over take a violator veh and l/control of his veh and hit a ditch bank and overturned.
## 20881                                                                                                                                                                                    EE att to restrain porcupine for a procedure rcvd a puncture wound to left hand
## 20882                                                                                                                                  EE att to stop client from attacking another EE- client turned and kicked EE in side and then swungat EE hitting rt ear and side.
## 20883                                                                                                                                                                                                     EE att to stop client from running in hallway and hurt finger.
## 20884                                                                                                                                  EE att to stop client from running when tray mealswere delivered-client knocked fire extngshr off wall and it hit EE in the head.
## 20885                                                                                                                                                                                EE att to stop client from swinging at another client and was hit in the right eye.
## 20886                                                                                                                                                                                   EE att to stop food cart when unhooked, force of cart to stop caused neck strain
## 20887                                                                                                                                               EE att to stop one client from hitting another client-client fell on EE causing EE to hit wall with face and rt arm.
## 20888                                                                                                                                                                           EE attached by patient, hit sidways to ground. Struck back of head and back on concrete.
## 20889                                                                                                                                                                                                       EE attached by pt who put EE in a headlock injury to EE neck
## 20890                                                                                                                                                        EE attached by the offenders large dog, sustained scratches to back of neck and a bruise to her right elbow
## 20891                                                                                                                                                                                                   EE attaching boat trailer to truck and bent down and foot popped
## 20892                                                                                                                                                                                            EE attaching flatt mower to rear of tractor and hit rt hand on tractor.
## 20893                                                                                                                                                                                                  EE attacked by client when putting into eto for hostile behavior.
## 20894                                                                                                                                                                                     EE attacked by combative patient (struck in mouth, & about the face & rt knee-
## 20895                                                                                                                                EE attacked by inmate pushed into bunk rack and injured lt shoulder and scratched back of rt hand. Injured lt shoulder and rt hand.
## 20896                                                                                                                                                                                                       EE attacked by patient and pushed against bathroom door knob
## 20897                                                                                                                                                           EE attacked by patient staff attempted to subdue and place the theraputic hold exposure to patient blood
## 20898                                                                                                                                                                                                          EE attacked by patient. Contustion to left knee, & chest.
## 20899                                                                                                                                                                                              EE attacked by patient. Multilple abrasions and possible back strain.
## 20900                                                                                                                                                                                                                      EE attacked by pt, hit 4 times in the head ()
## 20901                                                                                                                                                                                                                      EE attacked by pt, scratches to right hand ()
## 20902                                                                                                                                                                       EE attacked by student. Multiple bites on rt arm knots in head from student pulling her hair
## 20903                                                                                                                                                                    EE attemped to catch a client who was falling an d noted pain in her left hip, chest, and neck.
## 20904                                                                                                                                                        EE attemped to change a resident who has in bed. Resident became agitated scrated EE. Minor scratchlt wrist
## 20905                                                                                                                        EE attemped to place a dwi suspect under arrest, the subject resisted arrest & a scuffle ensued. Sprained left thumb abrasion on left hand.
## 20906                                                                                                                      EE attemped to pull water hose out of a closet & in the attempt to pull it loose, EE pulled a muscle between her thumb & index finger rt hand
## 20907                                                                                                                                                                                  EE attemping to lift chair to bring to staff meeting. Injured lower left abdomen.
## 20908                                                                                                                                                                                        EE attemping to restrain an inmate who was violentrt hand struck metal bed.
## 20909                                                                                                                                             EE attempted capture of a cottonmouth, for measurement and marking. The snake turned in his lt hand & bit his lt thumb
## 20910                                                                                                                                 EE attempted one man hold on patient. Patient struck EE's lower right jaw with hand. While working with patient, back became stiff
## 20911                                                                                                                              EE attempted the taledown technique with the shortbaton, fell forward with the inmate & the other staff members pinning my left wrist
## 20912                                                                                                                                      EE attempted to apprehend fleeing suspect when struggle ensued, suspect continued to flee on footee injured rt middle finger.
## 20913                                                                                                                                           EE attempted to arrest a combative suspect, who resisted. As a result, some form of strain occured to his right shoulder
## 20914                         EE attempted to arrest a suspect for failing to stop for blue lights and siren. The suspect resisted and a fight ensued. The suspect head-butted the EE with his motorcycle helmet causing the injuries to his right eye and left hand. ()
## 20915                                                                                                                                                               EE attempted to assist a student with a removing a syringe and dcm fluid squirted into his left eye.
## 20916                                                                                                                                                                                         EE attempted to assist in a pit major and felt a pull in right upper thigh
## 20917                                                                                                                                                                                                      EE attempted to assist resident when she slipped on wet floor
## 20918                                                                                                                                                                 EE attempted to break a disabled student's fall. Full weight of student caused EE lower back pain.
## 20919                                                                                                                                                                                EE attempted to break a piece of thread when finger slipped and thread cut into it.
## 20920                                                                                                                                    EE attempted to calm patient self-abuse, patient became aggressive and caused both to fall on flooree injured r wrist and hand.
## 20921                                                                                                                                                                                   EE attempted to calm patient, patient bit EE's leftforearm and twisted left arm.
## 20922                                                                                                                                                                                           EE attempted to catch falling jar, jar shattered lacerating EE's finger.
## 20923                                                                                                                                                                                                  EE attempted to catch resident from falling and strained shoulder
## 20924                                                                                                                                                                EE attempted to catch resident who was falling outof chair. Hand swollen. Continue restricted duty.
## 20925                                                                                                                                                                           EE attempted to clear jammed bowling balls and gotpinkie finger jammed between two balls
## 20926                                                                                                                      EE attempted to close heavy, wooden, slinding door that had no grip handle, had to use force, felt sharp pain in left hand radiate to forearm
## 20927                                                                                                                                                                EE attempted to close kitchen door and missed the door handle. The door then closed on his hand. ()
## 20928                                                                                                                                                                              EE attempted to close sharpe container lid needle stuck in third finger right hand ()
## 20929                                                                                                                                                                                          EE attempted to close students door, student slam- med door on EE's hand.
## 20930                                                                                                                                          EE attempted to close the door to sgt office with his hand between the door jam. Hematoma nail red middle finger rt hand.
## 20931                                                                                                                                                                                           EE attempted to cross electric fence but pants gotcaught in barbed wire.
## 20932                                                                                                                        EE attempted to diffuse irrated inmate to no availee decided to move inmate to more secure cell, inmate refused to comply. Inmate advanced.
## 20933                                                                                                                         EE attempted to disperse two student who were arguing. Arugment became physical, EE was inadvertently struck on rt-side of head by student
## 20934                                                                                                                                                                               EE attempted to dress client-client combative started kicking at EE hitting rt hand.
## 20935                                                                                                                                                                                       EE attempted to enter maintenance vehicle when he slipped on ice and fell ()
## 20936                                                                                                                                                                                           EE attempted to enter shu area gate outside and wind blew into my lt arm
## 20937                                                                                                                      EE attempted to extinguish a fire in single cell facility using abc dry chemical fire extinguisher inhaled chemicals and smoke from the fire.
## 20938                                                                                                                                                                                         EE attempted to get cup from patient & patient scratched EE in the face ()
## 20939                                                                                                              EE attempted to get down from the ladder very quickly to avoid steam burns, missed a step and fell on his knees on the concrete floor***marc sneed***
## 20940                                                                                                                      EE attempted to get out of a chair the leg on chair broke, he fell on the floor landing on his back. Contusions- right hip, strain- low back.
## 20941                                                                                                                                                                                             EE attempted to get tail gate down on truck when he pinched his finger
## 20942                                                                                                              EE attempted to get up in low boy to remove steel gates. It was raining and EE's right foot slipped causing injury to leg and ring finger right hand.
## 20943                                                                                                                                                                       EE attempted to get up out of a chair that she wassitting in at the officers desk. Buttocks.
## 20944                                                                                                                                                                             EE attempted to give medication to cat when cat lunged forward and scratched EE's hand
## 20945                                                                                                                  EE attempted to handcuff arrestee for dui. Arresteresisted & both fell to ground, causing arrestee to fall ontop of EE & breaking EE's left ankle
## 20946                                                                                                                                                                     EE attempted to hold door open, howerver door closed crushing 1st and 2nd fingers on left hand
## 20947                                                                                                                                                                                 EE attempted to intervene btw. 2 clients, client began punching EE, hit EE in nose
## 20948                                                                                                                                                                                 EE attempted to intervene to protect a patient from another aggressive patient. ()
## 20949                                                                                                                                                                                           EE attempted to keep a client from falling strained back om the process.
## 20950                                                                                                                                                                                                  EE attempted to keep client from falling to floor-noted back pain
## 20951                                                                                                                                                                             EE attempted to keep pt from striking head on sideof chair & pt bounced back on EE arm
## 20952                                                                                                                                                                                                                 EE attempted to lift 2 boxes at once and they fell
## 20953                                                                                                                                                                             EE attempted to lift 50lb detergent barrel off pallet. EE felt pull and pop in stomach
## 20954                                                                                                                                                                                    EE attempted to lift a bench press along w/a co- worker and inured elbow joint.
## 20955                                                                                                                                                                                                      EE attempted to lift a box that was heavy. Strained low back.
## 20956                                                                                                                                                                                               EE attempted to lift patient and heard wrist pop. Pain in left wrist
## 20957                                                                                                                   EE attempted to lift stack of boxes with left arm and shoulder. As he was lifting the boxes, he hard something pop and felt sharp pain in bicep.
## 20958                                                                                                                                               EE attempted to lift state laptop form the trunk of her state car, and immediately felt a shock in lower right back.
## 20959                                                                                                                      EE attempted to lt patient, then patient hit EE. Patient grabbed staffs lt hand scratcehd wrist. Grabbed rt hand & scratched hand & rt thumb.
## 20960                                                                                                                                         EE attempted to make a left turn on to us-701. EE traveled into the path of a north bound vehicle and a collision occured.
## 20961                                                                                                                                         EE attempted to move a pick-up truck from shoulder of I-40. While moving truck some unknown debris went into EE right eye.
## 20962                                                                                                                                              EE attempted to move client. Client slipped and fell on EE causing EE to fall onto floor. Pain in back and left knee.
## 20963                                                                                                            EE attempted to move from drawing patient's blood when tripped over stool and hit floor catching on right arm, hand and body especially right leg, hip.
## 20964                                                                                                                                           EE attempted to open a bag of peanuts with a knifewhile on break, knife slipped off plastic bag & cut his middle finger.
## 20965                                                                                                                                                                     EE attempted to open a bottle of cleaning using a pocket knife, lacerated right middle finger.
## 20966                                                                                                                                          EE attempted to open a can of hot spaghetti when it exploded in her face causing burning and swelling in the facial area.
## 20967                                                                                                                                                                                       EE attempted to open a door to cell with a key when she injured her rt wrist
## 20968                                                                                                                                                                                                                 EE attempted to open an aluminum can and cut thumb
## 20969                                                                                                                                                            EE attempted to open door to women's bathroom stall, door fell off hinges, hitting EE on rt shoulder ()
## 20970                                                                                                                   EE attempted to pass a slow vehicle when that vehicle attempted to make a left turn and struck EE in passenger side. Sprain to shoulder and back
## 20971                                                                                                                           EE attempted to pass coworker by stepping over stpstool, caught foot on top of stool which caused falee fell to floor landing on rt side
## 20972                                                                                  EE attempted to pick-up a box of equipment to be transported to another highway patrol office. EE lifted the box he felt a sharp pain in the back of his right shoulder and neck.
## 20973                                                                                                                                                                                EE attempted to place restraints on inmate, inmate became upset and spit in EE face
## 20974                                                                                                                       EE attempted to push door handle open in I/j dorm when he felt his wrist bend in a strange way. There was a sharp pain that moved up his arm
## 20975                                                                                                               EE attempted to push engine stand out of cage. EE was pushing and coworker was pulling. The tow bar gave and coworker fell dropping tow bar on knee.
## 20976                                                                                                                                                                                  EE attempted to put tralier on to vehicle hitch and pulled a muscle in lower back
## 20977                                                                                                                                                                                                       EE attempted to raise chair and hit head against metal shelf
## 20978                                                                                                                         EE attempted to re-direct client, client stepped on EE's left big toe, pivoted w/full weight pushing nail into toe. Toe swollen &infected.
## 20979                                                                                                                                                                                           EE attempted to reach for student to get their attention & jammed finger
## 20980                                                                                                                                                                                   EE attempted to redirect patient, EE tripped over other staff & twisted knee. ()
## 20981                                                                                                                                                EE attempted to remove a non-responsive hawk, hawk suddenly grabbed his wrist and hand, leaving puncture wounds. ()
## 20982                                                                                                                                                                               EE attempted to remove a table from cart-EE lost control of table and strained back.
## 20983                                                                                                                                                                                            EE attempted to remove partial plate & inmate bit down on index finger.
## 20984                                                                                                                                     EE attempted to remove pull pin with teeth becausee couldn't remove by hand, while attempting to extinguish an ambulance fire.
## 20985                                                                                                                                                         EE attempted to remove resisting subject from car EE had to break window to gain entry cut rt middlefinger
## 20986                                                                                                                                                                 EE attempted to restrain an unruly vendor at the fairgrounds. The vendor punched him in the chest.
## 20987                                                                                                                                                                                                 EE attempted to restrain patient & was pushed up against the wall.
## 20988                                                                                                                                           EE attempted to restrain patient that was attacking physician, fell to ground kicked multi times on head left hand, ribs
## 20989                                                                                                                                                                                                                              EE attempted to restrain the juveile.
## 20990                                                                                                                  EE attempted to retrieve a box filled with paper located high on a shelf. The box slipped from her grasp, falling forward and hitting EE on head.
## 20991                                                                                                                                     EE attempted to search an inmate, inmate pushed past the EE, causing EE to experience pain in back. Pain in lower lt back area
## 20992                                                                                                                                                                         EE attempted to secure a student who was hitting him in the head with his fists. Headache.
## 20993                                                                                                                                                           EE attempted to seperate two inmates that were engaged in a physical confrontation. Injured inner lt arm
## 20994                                                                                                                                                                        EE attempted to shut off electrical circuit when he received a shock to his rt index finger
## 20995                                                                                                                                       EE attempted to sit down in chair with wheels. It rolled out from under her causing EE to fall onto base of chair and floor.
## 20996                                                                                                                                          EE attempted to sit down in her chair with casters. The chair rolled out from under her and she ended up on the floor. ()
## 20997                                                                                                                                                                                        EE attempted to sit in a chair chair moved tried to brace fall with rt hand
## 20998                                                                                                                                                                                   EE attempted to sit in a chair the chair broke causing EE to fall onto the floor
## 20999                                                                                                                                                           EE attempted to sit in a chair when the chair accidentally pulled out from under her causing EE to fall.
## 21000                                                                                                                                                         EE attempted to sit in chair and chair slipped outfrom under her causing her to fall on right arm and side
## 21001                                                                                                                                                                                                     EE attempted to sit in chair and fell hitting left arm on desk
## 21002                                                                                                                                                                       EE attempted to stand with two projectors in her hand when she felt a sharp pain in her back
## 21003                                                                                                                                                                                    EE attempted to step up on curb and missed step causing wgt to bear on rt foot.
## 21004                                                                                                                                                                                                 EE attempted to stop a client from going awol and twisted rt knee.
## 21005                                                                                                                      EE attempted to stop an unmanned forklift from rolling and left leg was caught under the wheel of the forklift causing laceration and sprain.
## 21006                                                                                                               EE attempted to stop fleeing inmate by grabbing him with both hands at the top of inmates t shirt inmate turned lt causing EE to go airborne rt side
## 21007                                                                                                                        EE attempted to stop garbage carts from moving offthe trailer. As he tried to slow them from moving, he strained his rt. Ankle and rt. Knee
## 21008                                                                                                                    EE attempted to stop patient from escaping off ward, became assaultive and swing at EE, EE fell andpatient fell on top of EE's right leg/ankle.
## 21009                                                                                                                        EE attempted to tie endo trachael tube with gauze while cut was under anesthesia and cat bit down onfinger. Puncture wound lt second digit.
## 21010                                                                                                                                                                             EE attempted to walk around wet floor sign, end upslippling anyway, striking left knee
## 21011                                                                                                                                                EE attempted to walk down steps from chair tower #1 and hit her rt knee on light switch cover. Abrasion to rt knee.
## 21012                                                                                                                                                    EE attempting a verify residence when a dog approached EE and attacked without provocation and bit EE on thigh.
## 21013                                                                                                                                                     EE attempting catch cat to be put in a box & re- moved from unit, cat bite 2 fingers on rt hand several times.
## 21014                                                                                                                                EE attempting cpi hold on patient. EE was thrown into a wall, hit in the right breast, & jammed the 5th finger on her left hand. ()
## 21015                                                                                                                                                                                 EE attempting lift client from very low couch and strained lower back and shoulder
## 21016                                                                                                                                                                                 EE attempting to Sep two inmates that were engagedin fist fight,, second finger fx
## 21017                                                                                                                                                                           EE attempting to apply pic to upset client when client scratched, kicked and slammed EE.
## 21018                                                                                                                     EE attempting to apprehend fleeing motorcycle, EE lost control of vehicle rounding curve, collided with ditchbank. Strained neck & head trauma
## 21019                                                                                                                                                                                          EE attempting to apprehind suspect, lost footing and sustained injuries -
## 21020                                                                                                                                                        EE attempting to arrest a subject and had to strike subject using left hand. Hand was bruised at the wrist.
## 21021                                                                                                                                        EE attempting to arrest a suspect for dui when struggle ensued-EE injured rt thumb and suffered scratches on face and head.
## 21022                                                                                                                                           EE attempting to arrest an offender at which point the offender became irrational EE responded with unarmed self defense
## 21023                                                                                                                     EE attempting to arrest driver, EE partially in car when subject caused vehicle to move forward. Lt door post struck EE on right side and back
## 21024                                                                                                                                EE attempting to arrest individual for possession controlled substance, suspect reisited splattered blood on EE. Blood on EE hands.
## 21025                                                                                                                     EE attempting to arrest subject for dwi, subject resisted, struggle between EE, subject, hospital EE, all fell to floor, EE bruised right knee
## 21026                                                                                                                                              EE attempting to arrest suspect - struggled greatly resulting in EE striking suspect in jaw EE has swollen right hand
## 21027                                                                                                                                  EE attempting to arrest suspect when a struggle broke out and EE fell to the pavement falling on left forearm, knee and rt wrist.
## 21028                                                                                                                                          EE attempting to arrest suspect when a struggle ensued-EE had to hit suspect in the head to gain custody injuring rt hand
## 21029                                                                                                                                                                                     EE attempting to arrest suspect when altercation began and EE injured rt hand.
## 21030                                                                                                                             EE attempting to arrest suspect when suspect fled on foot. Stepped on a rock injuring ankle. Lt ankle, swelling, slight discoloration.
## 21031                                                                                                                                EE attempting to arrest suspect, suspect drove into EE pinning against some gas pumps in p/lot, suspect drove away - injury to back
## 21032                                                                                                                                                                 EE attempting to arrest suspect-had handcuffs on suspect fell to ground-falling on EE's right hand
## 21033                                                                                                                                                                                            EE attempting to arrest suspected drug dealer whendrag by suspects veh.
## 21034                                                                                                                EE attempting to arrest, was pulled to ground by suspect. EE was struck in chin by suspects head. Injured lt rib cage & filling removed from tooth.
## 21035                                                                                                                               EE attempting to assist EE in ending confrontationbetween two inmates. Pressed against wall & rt ankle was twisted. Sprain rt ankle.
## 21036                                                                                                                                                                                 EE attempting to assist client-client grabbed EE'srt hand and twisted ti backwards
## 21037                                                                                                              EE attempting to assist in arrest of dwi suspect, who had fled on foot. In process slipped and fell on hands, after caught suspect, strained shoulder
## 21038                                                                                                                EE attempting to assist resident to place her legs and feet from the floor into her bed. She began resisting and I felt severe pain in right wrist.
## 21039                                                                                                                                                    EE attempting to assist with agitated pt & right elbow was slammed to the floor. Causing right elbow contusions
## 21040                                                                                                                                                                                       EE attempting to attach boat trailer to truck and bent down and foot popped.
## 21041                                                                                                                          EE attempting to attained handcuff key from another EE during trianing session with handcuff on rt wrist - struggling - injured rt wrist.
## 21042                                                                                                                                                                      EE attempting to block sib headbanging and fell off air flow mattress on right elbow and hip.
## 21043                                                                                                             EE attempting to break fight, male subject struck EE in mouth with fist & was arrested for assault. Ems transported EE to er for mouth injuries stitch
## 21044                                                                                                                                                                  EE attempting to break up a fight between inmates & she was kicked by inmate in chest w/both feet
## 21045                                                                                                                                                                                    EE attempting to break up fight & was hit in the jaw by student. Jaw contusions
## 21046                                                                                                                                      EE attempting to break up fight at swain county courthouse when struck his hand against floor. Injured middle finger lt hand.
## 21047                                                                                                                                                                    EE attempting to break up fight between several students which caused aggrevation to lower back
## 21048                                                                                                                                                                                    EE attempting to break up patient fight. Struck head on wall during altercation
## 21049                                                                                                                                                EE attempting to break up two client's from fighting-client kneed EE in rib on left side and injuredthumb in fight.
## 21050                                                                                                                          EE attempting to break up two patients from fighting, when one patient started to fight EE and both fell to floor - rt elbow and rt shin.
## 21051                                                                                                                                                                                                 EE attempting to capture a stray dog - injured left wrist, rt palm
## 21052                                                                                                                                                                                EE attempting to catch runaway juvinile & slid on a grass back twisting his rt knee
## 21053                                                                                                                                                            EE attempting to catch suspect on foot and slippedon wet ground and fell injuring rt shoulder and head.
## 21054                                                                                                                                        EE attempting to catilize manual restraint with a pt who attempted escape. Causing small laceration middle finger left hand
## 21055                                                                                                                                                                          EE attempting to change trk tire when he slipped on grease on floor and cut rt side chin.
## 21056                                                                                                                                                                         EE attempting to clear jammed bowling ball and got pinkie finger jammed between two balls.
## 21057                                                                                                                                                                                       EE attempting to close door when door slipped and closed on left ring finger
## 21058                                                                                                                                             EE attempting to close door when foot slipped & hepulled somethin in back. Inmate was pushing on door from other side.
## 21059                                                                                                                  EE attempting to close trap door to inmate cell door when inmate stabbed EE with homemade knife in rt hand palm area. Puncture wound rt hand palm
## 21060                                                                                                                                                                                                        EE attempting to control irrate inmate bit him on rt thumb.
## 21061                                                                                                                                                                                       EE attempting to control pt, pt pulled EE down on to restraint bed by arm ()
## 21062                                                                                                                                                               EE attempting to control unruly inmate to prevent inmate from assaulthing staff. No injury specified
## 21063                                                                                                                                                                                     EE attempting to cross guard rail when he struck lt knee on back of guard rail
## 21064                                                                                                                                                  EE attempting to cross the beam approx. 8 ft high slipped and fell to the ground resulting in pain in lower back.
## 21065                                                                                                                                                          EE attempting to disengage two inmate who were fighting. Aggravated lt knee which was swollen andpainful.
## 21066                                                                                                                   EE attempting to draw blood from patient, when EE pulled needle out EE accidentally stuck index finger of left hand with contaminated needle. ()
## 21067                                                                                                                                  EE attempting to effect an arrest & was tackled bysuspect to ground. EE struck in face by supspect elbow. Abrasions to left hand.
## 21068                                                                                                                                                              EE attempting to enter building from parking lot EE fell on ice injury to left hip and arm lower back
## 21069                                                                                                                                                                EE attempting to escort a combative patient, EE fell to ground injury lt wrist and hand, both knee.
## 21070                                                                                                                     EE attempting to execute arrest of probationer. Probationer resisted. Officer attempted to detain probationer pushed EE. EE fell, broke finger
## 21071                                                                                                                                                   EE attempting to feed an inmate when he threw a cup a unknown liquid on the officer's shirt and lt side of face.
## 21072                                                                                                                                                                                       EE attempting to free a trapped horse from restraint and horse stuck rt toe.
## 21073                                                                                                                                                                               EE attempting to get an aggressive client off of another EE and injured back of head
## 21074                                                                                                                                  EE attempting to get client out of bed with another client-client started kicking EE several times in lower back, left leg, ankle
## 21075                                                                                                                                                                        EE attempting to get dustmop out of housekeeping closet, mop fell hitting EE in the head ()
## 21076                                                                                                                                                                           EE attempting to give client bath-client resistingcausing EE to hurt rt thumb and wrist.
## 21077                                                                                                                                                                                             EE attempting to hang her coat in closet when filehanger fell on head.
## 21078                                                                                                             EE attempting to install a radiator into transportvehicle alone, had to stand in veh cavitity, awkwrdposition, twisted wrong, felt pain in rt low back
## 21079                                                                                                                      EE attempting to install computer board into com- puter, board went in forcefully causing hand to strike metal frame. Laceration right thumb.
## 21080                                                                                                                                 EE attempting to install new fuser unit in large color printer pulling & pushing on printer when she felt pain/pinch in lower back
## 21081                                                                                                                                                                                    EE attempting to keep client from falling to floorand felt pain in rt shoulder.
## 21082                                                                                                                                                                                                  EE attempting to keep combative client in bed feltpain in rt back
## 21083                                                                                                          EE attempting to keep patient from falling, patient grabbed EE & EE was trying to hold patient. Patient wrapped her legs around EE causing EE to fall. ()
## 21084                                                                                                                                                                                       EE attempting to lay a dog on its side and dog scratched EE on neck to chin.
## 21085                                                                                                                                                               EE attempting to leave inmates cell. Inmate struck EE on lt side of head, knocking him to the floor.
## 21086                                                                                                                                                    EE attempting to lift a manhole cover with crowbarand crowbar slipped hitting EE in the face chipping two teeth
## 21087                                                                                                                                                                                  EE attempting to lift client from bed to wheel- chair. EE felt pain at that time.
## 21088                                                                                                                                                     EE attempting to lift metal road gate arm onto support post when he felt a stinging sensation in lower back ()
## 21089                                                                                                                          EE attempting to lift trash can off of pickup trucin order to place its contents into facility dump strain to shoulders, arms, chest, bck
## 21090                                                                                                                                                                                                             EE attempting to light grill, dropped on tip of finger
## 21091                                                                                                                                                        EE attempting to load a storage cabinet onto a hand truck-cabinet fell hitting EE on the left middle finger
## 21092                                                                                                                                                                                           EE attempting to lock security gate lock jammed halfway jolting rt wrist
## 21093                                                                                                                                                                                   EE attempting to loosen wing nut on tailgate of trailer. Injured shoulder & neck
## 21094                                                                                                                                                                       EE attempting to lower pt out wheel chair severe pain started in abdomen - 8 months pregnant
## 21095                                                                                                                                      EE attempting to make an arrest when he and the suspect began to struggle and both fell to ground EE's elbow hit the pavement
## 21096                                                                                                             EE attempting to make lft turn into parking lot ofmercy hospital EE pulled into path of oncoming vehicle causing other veh to strike left front EE car
## 21097                                                                                                                                                                     EE attempting to move a mouse from trap. Mouse was not dead bit EE on his right middle finger.
## 21098                                                                                                                 EE attempting to move boat trailer to align with vehicle to hook up trailer while other officer backed up vehicle. Strain shoulder pulling trailer
## 21099                                                                                                                                                               EE attempting to obtain blood fm pt, pt was aggressive, grabbed EE's chest area and scratched her ()
## 21100                                                                                                                                                EE attempting to open milk house cooler, door is air tight & hard to open, EE placed foot on wall to pull door open
## 21101                                                                                                                                          EE attempting to open window, had to turn sidwways to reach it. While lifting window EE felt & hearda crack in chest area
## 21102                                                                                                                  EE attempting to overtake impaired driver. EE lostcontrol of vehicle striking bridge abutment. His vehicle overturned. Had to be extracted by ems
## 21103                                                                                                                    EE attempting to overtake violator-tried to pass when violator began to turn lt-EE avoided running off road striking trees and stopped in ditch
## 21104                                                                                                                                                   EE attempting to place restraints on inmate. Inmate assaulted EE, during incident injured rt hand. Rt hand/thumb
## 21105                                                                                                                 EE attempting to place suspect under arrest with co-workers-in struggle all 4 fell back & EE's right ankle caught under-torn ligaments in rt ankle
## 21106                                                                                                                                        EE attempting to prevent individual from falling by catching him as he was falling & felt pain in shoulder & left upper arm
## 21107                                                                                                                    EE attempting to pull a speeding vehicle with bluelights and siren activated. Vehicle entered hwy southbound lanes and collided with EE vehicle
## 21108                                                                                                                 EE attempting to pull down the overhead projector screen. The screen fell from its mount in the ceil-ing and landed on the EE rt shoulder and arm.
## 21109                                                                                                                                                EE attempting to puncture a plastic tube to with a needle when needle slipped and punctured left hand index finger.
## 21110                                                                                                                                                                                      EE attempting to put client in pic hold and clientkicked EE on the left knee.
## 21111                                                                                                                                                                                        EE attempting to put client in pic hold when client kicked EE in left knee.
## 21112                                                                                                                                                                                   EE attempting to put diaper on resident, EE was scratched and bitten, thumb area
## 21113                                                                                                                                                                          EE attempting to put handcuffs on suspect when suspect swung and hit EE in lower abdomen.
## 21114                                                                                                                                     EE attempting to qualfiy for firearms training at local police firing range, she substained injury rt shoulder @ arm bruising.
## 21115                                                                                                                                                                                        EE attempting to raise overhead door which was stuck and strain lower back.
## 21116                                                                                                                                                                                                    EE attempting to redirect patient slammed door & hit EE in back
## 21117                                                                                                                                                                                EE attempting to remove 40 gallon kettle from kitchen for repair strained rt ankle.
## 21118                                                                                                                                                                                       EE attempting to remove client's foot from walker when client hit EE in face
## 21119                                                                                                              EE attempting to remove dog from veh to put into the kennel on back of the er truck. EE grabbed dogby collar, dog turned around, fx EE rt ring finger
## 21120                                                                                                                                                                     EE attempting to remove lodged staples in stapler, staple penetrated lt middle & index fingers
## 21121                                                                                                                                                                           EE attempting to respond to call and fell at door injuring left shoulder, ankle and foot
## 21122                                                                                                                                                         EE attempting to restrain a violent pt who was advancing on staff with a steel pole. Soreness of lt elbow.
## 21123                                                                                                                                                                                                      EE attempting to restrain aggressive client-injuryto left eye
## 21124                                                                                                                                                                                                    EE attempting to restrain inmate and injured lt wrist and hand.
## 21125                                                                                                                        EE attempting to restrain inmate-inmate struck EE on top of head with broom handle-injured left forearm blocking another strike from inmate
## 21126                                                                                                                        EE attempting to restrain student in cafe, EE escorting student from cafe both EE and student fell on floor, contusion and sprain left knee
## 21127                                                                                                                                  EE attempting to restrain violent inmate when inmtstruck EE in chest and upper back area with fists EE experienced and was bruise
## 21128                                                                                                                                                                       EE attempting to restraint student, student knockedee backward on ground, punched EE in face
## 21129                                                                                                                            EE attempting to retrieve a metal fragment lodged in the motor housing when preparing for a districtinspection, laceration to left hand
## 21130                                                                                                                                                                         EE attempting to roll client over; felt pulling in left shoulder. Client was resisting. ()
## 21131                                                                                                                                                           EE attempting to secure gate at millennium campus when lock banged his rt knee causing swelling and pain
## 21132                                                                                                                                                            EE attempting to shift a column of 25 cases acrossa wooden pallet when one case fell hitting EE on head
## 21133                                                                                                                                                                      EE attempting to shoot shotgun, sustained a bruiseto neck & right upper arm & shoulder areas.
## 21134                                                                                                                                                                                EE attempting to show plumber where toilet leakingwas stuck in lt eye with plunger.
## 21135                                                                                                                           EE attempting to sit down at desk-chair rolled outfrom under him & EE fell back onto floor with right arm around back-injury rt shoulder
## 21136                                                                                                                                         EE attempting to step back off stool & stepped on a cleaning bottle & fell to floor, landing on lower back & buttocks area
## 21137                                                                                                                                                        EE attempting to stop a suspect from fleeing & wascut on lt index finger by handcuffs during alter- cation.
## 21138                                                                                                                                                          EE attempting to stop client from falling out of chair-reached for clint-didn't fell pain until next day.
## 21139                                                                                                                                                       EE attempting to stop client from going into shower w/another client when client scratched EE on the rt arm.
## 21140                                                                                                                                             EE attempting to stop client from hitting self- during process EE got hit by client causing injuryto left index finger
## 21141                                                                                                                                          EE attempting to stop suspect fleeing from law. Eevehicle in front of suspect. Suspect vehicle struck EE vehicle in rear.
## 21142                                                                                                                                   EE attempting to stop vehicle when driver & passanger jumbed and run - EE perued falling on rocks. Fell on knee and sprained it.
## 21143                                                                                                                EE attempting to store keys into cabinet when she fell from stool she was standing on causing injuryto her rt leg. Bruise to rt leg - upper & lower
## 21144                                                                                                                                        EE attempting to strain youth, youth started fighting with EE, EE fell and hit back of head on commode & center of buttocks
## 21145                                                                                                                                                                                             EE attempting to subdue an aggressive client injured rt arm and chest.
## 21146                                                                                                                                                                                                       EE attempting to subdue an aggressive patient and was kicked
## 21147                                                                                                                EE attempting to subdue intoxicated person in breathalyzer room EE fell agianst wall, onto floorw/rt hand under his body. Fracture rt hand 4th fing
## 21148                                                                                                                                                                  EE attempting to take control of alligator when reptile lunged upward & bit EE on rt pinky finger
## 21149                                                                                                                          EE attempting to take suspect into custody. Suspectresisted & subsequently assaulted EE. Laceration, sprained lt ankle & bruised rt knee.
## 21150                                                                                                                  EE attempting to talk to inmate about an earlier mattter - discharged him an order to leave bath- room. Inamate drew back struck with fist. Head.
## 21151                                                                                                                                                                        EE attempting to turn and change client in bed-client resisted and EE felt pain in rt hand.
## 21152                                                                                                                               EE attempting to turn left into client drive, whenee struck on coming vehichle she did not see. Left knee/right hip/chest/neck/back.
## 21153                                                                                                                                                                                         EE attemtped to place patient in cpi hold & felt pain in left shoulder. ()
## 21154                                                                                                                                         EE attemtpting to apprehend a traffic violator, when he lost control and overturning his patrol car. Laceration upper lip.
## 21155                                                                                                                      EE attended crdt qualification & was participatingon the hands on self defense activities. Some of of the techniques involved being on floor.
## 21156                EE attended crdt training for re-certification on 1/28/2010. Believes that her swollen knee was injured during training excercises. Knee was swollen the next morning and she notified the training coordinator that her right knee was swollen. ()
## 21157                                                                                                                        EE attended oc pepper spray training, was sprayed in the eyes causing a burning sensation. EE couldnot open eyes for approximatley 2 hours.
## 21158                                                                                                                        EE attended work related workshop in boone. He stopped at intersection on return trip to charlotte. A car failed to stop and rear-ended him
## 21159                                                                                                                                                                                           EE attending a dinner, bit into a piece of french bread and broke tooth.
## 21160                                                                                                                 EE attending basic training - participated in riottraining injured back. While doing manuever that required twisting motion. Injured back and hip.
## 21161                                                                                                                         EE attending crdt training & possibly injured an recent hernia repaired area in abdomen. Not sure exactly when or how the injury occurred.
## 21162                                                                                                                                                                               EE attending field class, working in stream/buffer areas, tick bite on upper buttock
## 21163                                                                                                                      EE attending funeral of client, began to turn leftinto funeral home, saw other cars, stopped for red light, started forward and was hit by ov
## 21164                                                                                                                                                                    EE attending meeting for board of directors and slipped in hallway twisting knee, hip and back.
## 21165                                                                                                                                                                                    EE attending off campus function walking from car to bldg and twisted rt ankle.
## 21166                                                                                                                                                             EE attending pic class, while practicing take down with other student, pulled muscle in neck and shoul
## 21167                                                                                                                              EE attending required training session held in brady auditorium. Missed step down while finding a seat. Injured knees/left foot/shins
## 21168                                                                                                                                               EE attending school of education meeting. Sat in abroken chair in hoagin hall auditorium. Cut/puncture rt leg/thigh.
## 21169                                                                                                                                            EE attending training was taken to mat in head lock escape when his rt arm was pushed into his upper rt side chest area
## 21170                                                                                                                      EE attending unarmed self defense class instructorwas using her to demonstrate unarmed self defense tatic in front of class. Rt hand and arm.
## 21171                                                                                                                           EE attmepting to open door top portion of door came detached from track folding over & landing onto EE's head. Hit top of skull of head.
## 21172                                                                                                                                   EE attnding pepper mace training EE sprayed facialarea. Used water to flush out eyes & facial area. Eyes have burning sensation.
## 21173                                                                                                                                                                       EE augur from food pulper feel rt foot when inmatewas trying to pull apart. Injured rt foot.
## 21174                                                                                                                                 EE auto was struck in rear by another vehicle. EE head & upper body was thrown backward against the headrest, hurting back & neck.
## 21175                                                                                                                                                                             EE back down at desk and chair slid back causing EE to fall and hit tailbone on floor.
## 21176                                                                                                                                                  EE back of truck loaded book buggy carriers go loose and fell on my shoulder, neck and back, pinning me to truck.
## 21177                                                                                                                                                                                                      EE back started hurting after transfering residentto his bed.
## 21178                                                                                                                                                                                                              EE back was hurting yesterday caused by the resident.
## 21179                                                                                                                EE back was sore when reporting for duty and then bent over to pick up waist chain off floor and back popped little later hurt back with inmate for
## 21180                                                                                                            EE backed her chair away from her desk & stood up, her back popped & there was a tingling sensation going up to her left hip/down her left leg & ft. ..
## 21181                                                                                                                                                                        EE backed into pole leaving hilton james parking lot with state truck straining neck & back
## 21182                                                                                                                                                                                                  EE backed into tree, states left side of neck & shoulder hurting.
## 21183                                                                                                                            EE backed up not knowing file drawers were open and tripped over drawer and fell backwards hit head and back and scratched back of leg.
## 21184                                                                                                                                                                               EE backing a cleint into bathroom when the door swung back and caught EE's left hand
## 21185                                                                                                                                                      EE backing client in a wheelchair into the restoomthe floor goes up ant an angle and felt pain in lower back.
## 21186                                                                                                                           EE backing mail cart out & vision was blocked. Boxof envelopes were in the way & EE tripped and fellover them. Injured knee & lower back
## 21187                                                                                                                                                                                                   EE backing out into hall out of doorway. Ring was caught on door
## 21188                                                                                                                                                                                                                   EE backing out of parking lot hit by another car
## 21189                                                                                                                         EE backing up ditch witch to smooth over rough ground, EE stepped in a rut, causing him to fall, machine fell over on his left ankle/foot.
## 21190                                                                                    EE backing up steep enbankment on yanmar crawler carrier to curve new trail when 6' root mat elevated machine and rolled machine to it's side pinning EE left leg underneath ()
## 21191                                                                                                                                                                               EE backpacking in pisgah national forest. While hiking EE rolled right ankle & foot.
## 21192                                                                                                  EE baggage stuck at bottom edge of escalator; pulled her back until landed on back while escalator still moving; tried to get up; burst lips and chipped teeth ()
## 21193                                                                                                                                                                                                                                 EE band saw to remove brain rabies
## 21194                                                                                                                      EE banded a swan and was carrying bird to pond when it clar puncture finger, claw stuck in fingerand bird pulled out and re-punctured finger.
## 21195                                                                                                                                                                                                 EE banged her right knee cap into the side edge ofthe file cabinet
## 21196                                                                                                                                                                                                                             EE banged knee against desk foundation
## 21197                                                                                                                                                                                     EE bathed and redressed pt that needs assistance-next morning back was hurting
## 21198                                                                                                                                 EE bathing a patient & attempted to position patient who weighed about 250lbs. And her right hand accidentally got stuck under him
## 21199                                                                                                                                                   EE bathing and dressing client-client falling to floor and EE getting client up and client's head hit EE's chin.
## 21200                                                                                                                                                                                                             EE bathing client in bathroom, EE turned & twisted leg
## 21201                                                                                                                                                                 EE bathing client pulled something in rt side while assisting client from wheelchair to the shower
## 21202                                                                                                                                                                               EE bathing client, shower bench slipped- EE caught client- pulled shoulder neck area
## 21203                                                                                                                                       EE bathing client-client is a stand-pivot-EE started to pivot client onto tub when EE turned felt pop/cramp/pain in low back
## 21204                                                                                                                                                                                             EE bathing client-rolled client over felt sharp pain in neck down back
## 21205                                                                                                                                                                                              EE bathing individual, when individual threw bath water in EE's face.
## 21206                                                                                                                                                                                                              EE bathing pt who was very resist, scratched EE wrist
## 21207                                                                                                                                      EE bathing resident in shower, EE leaned forward and & chair went to flip, EE caught it & turned it EE had pain in lower back
## 21208                                                                                                                                                                                                           EE bathing, feeding and turning patient-skin upper torso
## 21209                                                                                                                       EE became aware of spot approx one inch in size, itching and discoloration, EE states fingers feel numb and tingling. Bite on right fore arm
## 21210                                                                                                                                                                   EE became conjested in chest and nose running after being exposed to cleaning solution for floor
## 21211                                                                                                                                                                               EE became dehydrated during tryouts for the pert pat training exercise, blacked out.
## 21212                                                                                                                                                                      EE became disoriented due to low sugar count and collided w/ stopped vehicle @ traffic light.
## 21213                                                                                                                                                                                                                       EE became dizzy and light headed during heat
## 21214                                                                                                                                                                                                                     EE became dizzy and weak in the arms and legs.
## 21215                                                                                                                                            EE became dizzy from the smell of the goop off that was being used near her desk; she got hot andsweaty, saw black dots
## 21216                                                                                                             EE became dizzy while driving his patrol car. He attempted to stop his vehicle, traveled off the right side of the roadway and struck several trees ()
## 21217                                                                                                                                                                                              EE became dizzy, nausea and lightheaded from fumesused to unclog sink
## 21218                                                                                                                                                                                             EE became entangled with a strap off of seeding bag; injured left knee
## 21219                                                                                                                  EE became entangles in under brush where the posion ivy was not clearly visible & he had already touched it. Swelling forehead hands, neck & face
## 21220                                                                                                                                                                                                      EE became exposed to poison ivy while weedeating at lake holt
## 21221                                                                                                                                                                                                                                       EE became hot and overheated
## 21222                                                                                                                                       EE became hysterical and began to collapse upon hearing of world trade ctr attack. EE strained back trying to catch student.
## 21223                                                                                                                                                                                 EE became ill - dizziness, shortness of breath and disorientation - no known cause
## 21224                                                                                                                                                                                EE became ill after inhaling fumes for five days while work being done to building.
## 21225                                                                                                                                                                                                    EE became overheated while driving tram causing heat exhaustion
## 21226                                                                                                                                                           EE became overly upset after a disciplinary meeting with supervisors and was transported to the hospital
## 21227                                                                                                                                                     EE became sick due to an icu patient with leptospiresis-an infectous disease that can be contracted by people.
## 21228                                                                                                                                                                                                          EE became sick on her stomach after pepper spray training
## 21229                                                                                                                                                                                        EE began complaining of pain in hands as result ofdaily typing and writing.
## 21230                                                                                                                                                              EE began complaining of wrist, forearm pain in right arm after beginning work on new lap top computer
## 21231                                                                                                                                                 EE began experiencing pain in wrists from normal workday requirements that EE use a keyboard/mouse 4/6 hrs per day
## 21232                                                                                                                                                EE began feeling pain in her rt arm from the shoulder to finger tips shortly after being assigned tospecial housing
## 21233                                                                                                                                        EE began fighting staff to pic. Was to take pt in restraints. Pt resisted causing hct to hit leftinner knee on edge of bed.
## 21234                                                                                                                            EE began having allergy problems-moved to another office & symptons improved-relocated to another office near 1st and sympton returned.
## 21235                                                                                                                 EE began having pain in lower abdomen, back, & hip are. Pain started out mild & gradually developed more severe as EE continued lifting residents.
## 21236                                                                                                                                                                                      EE began having pain in lt elbow and numbness in fingers from use of computer
## 21237                                                                                                                                                                      EE began having pain in right shoulder which gradually moved down to her elbow and right hand
## 21238                                                                                                                                                                                                  EE began having severe pain in arm. Tendonitis with secondary cts
## 21239                                                                                                                                                                                                                             EE began itching while folding laundry
## 21240                                                                                                                                                                                                       EE began suffering from unknown skin irritation on both legs
## 21241                                                                                                                           EE began to cry uncontrollably when fellow EE asked how he was doing. He was admitted to frye regional medical ctr. Psychological stress
## 21242                                                                                                                                                                                              EE began to drop things due to the pain in l wristthen knots appeared
## 21243                                                                                                                                                                             EE began to experience pain in her left arm and upper back... While carrying a bookbag
## 21244                                                                                                                                                                                                  EE began to feel discomfort in back after moving resident in bed.
## 21245                                                                                                                                                                         EE began to feel light headed, faint, and heart palpitations while driving work vehicle ()
## 21246                                                                                                                                              EE began to fell light-headed and weak while emptying trash in building. Smelled strange odor. Headache and dizziness
## 21247                                                                                                                                                                                                  EE began to have breathing complications; went into seizure; died
## 21248                                                                                                                                                                                      EE began to have trouble with speech and weakness of the lt side, very dizzy.
## 21249                                                                                                                                                                           EE began to prep tissue samples while adding penn/strep some accidentally spilled on her
## 21250                                                                                                                                         EE began to pull away from loading dock in truck. Another driver backing his truck. EE stopped and the truck hit his truck
## 21251                                                                                                            EE began to run out of the unit due to responding to what sounded like urgent call, it was still raining, stepped in mud and slipped, hit right knee on
## 21252                                                                                                                                                                           EE began to sit down in a chair with wheels and chair rolled back and EE fell on bottom.
## 21253                                                                                                             EE began to smell something that gave her a severeheadache, followed by nausea; later she fainted inthe sick room & was later transported to hosp. Er.
## 21254                                                                                                                                                                                                                           EE begin to have chest pain and dizzness
## 21255                                                                                                                                                              EE behind 18 wheeler trk that was backing up and trk hit EE causing strain to left shoulder and back.
## 21256                                                                                                                                               EE being evaluated for chronic cough which May be related to air quality in bldg-ventilation system being overhauled
## 21257                                                                                                               EE being picked up by another EE to drive because of rain, getting in truck, foot slipped off truck rim & hand slipped off hand grasp, fell in water
## 21258                                                                                                                                                  EE being placed in handcuffing position caused discomfort to rt arm & shoulder area. Rt arm, rt shoulder and neck
## 21259                                                                                                                                                                   EE being pulled up a wet bank by another employee later rt arm became limp, swollen and bruised.
## 21260                                                                                                                                                                         EE being shown escape hatch-as he was coming down ladder-foot slipped & twisted left ankle
## 21261                                                                                                                                                                            EE being sprayed with pepper spray, EE turned head to right and spray got into left ear
## 21262                                                                                                                                                                 EE being trained on oc pepper & fully exposed, EE alleges pepper spray caused an allergic reaction
## 21263                                                                                                                                 EE believes he was scratched by patient while trying to put them in seclusion and restraint. Scratch lt side of neck and headache.
## 21264                                                                                                                                                                                                    EE believes injury occurred while dusting and waxing furniture.
## 21265                                                                                                                                                                                                                     EE believes she was bitten by a spider/insect.
## 21266                                                                                                                                                                                                             EE believes that he was contacted the mrda infect-ion.
## 21267                                                                                                                                                                                             EE believes that she May have come into contact w/ mold in the office.
## 21268                                                                                                                                                                                                           EE believeshe injured ankle during unarmed self defense.
## 21269                                                                                                                            EE bend down to pick up a box on floor that was under counter. EE straighten up felt sharp pain in lower back. Injured rt side of back.
## 21270                                                                                                                                      EE bend down to pick up case of bleach when EE heard something pop or pinched in my rt side of back. EE dropped box on floor.
## 21271                                                                                                                                                                  EE bending & attempted to stand when he struck hislt shoulder against security latch on van door.
## 21272                                                                                                                                                                                                      EE bending & lifting, and using a shovel. Pain in lower back.
## 21273                                                                                                                                                                                           EE bending down to get apron and stood up and hit head on back of grill.
## 21274                                                                                                                                                                          EE bending down to pick up something in the closetand stood up and struck head on a nail.
## 21275                                                                                                                                                                                  EE bending down to wash rags and struck her head on the faucet causing laceration
## 21276                                                                                                                                  EE bending neck, cradling phone while entering computer data - noticed left side of neck & shoulder hurting & keeping up at night
## 21277                                                                                                                                                                                       EE bending over arrange items on table-stood up and hit head on shelf above.
## 21278                                                                                                                                                                        EE bending over culvert, filling gallon jar with sample water, muscle strain, upper back ()
## 21279                                                                                                                                                       EE bending over filing cabinet in awkward position to retrieve old files injury pain neck and cervical spine
## 21280                                                                                                                                                                                           EE bending over moving supplies, strained back. Lower right side of back
## 21281                                                                                                                                                                             EE bending over printer, changing cable--raised upand struck forehead on wall cabinet.
## 21282                                                                                                                                           EE bending over pulling heavy box of law books stepped backwards with rt foot and felt tearing inheel and up back of leg
## 21283                                                                                                                                                              EE bending over squeezing mop out when door that was propped open slammed shut hitting EE on forehead
## 21284                                                                                                                                     EE bending over to change client. Client on a verylow bed. When she straightened up, she felt a sha rp pain in lower mid back.
## 21285                                                                                                                                                                         EE bending over to cut freon lines under exhaust fan-stood up and felt pain in lower back.
## 21286                                                                                                                                                                                                        EE bending over to gather items for travel, strain low back
## 21287                                                                                                                                                                          EE bending over to look under locker, his back arched in. Felt a pull his back then pain.
## 21288                                                                                                                                                                 EE bending over to lower patient's bed-when retd to standing position felt severe pain in rt knee.
## 21289                                                                                                                                                                                                                      EE bending over to move a chair, back popped.
## 21290                                                                                                                                                                              EE bending over to move shredder & something snapped in lower back causing sharp pain
## 21291                                                                                                                                                                      EE bending over to pick trash out of the trash can and felt a sharpe pain in lower left back.
## 21292                                                                                                                                                                               EE bending over to pick up dirty napkin-struck rt eye on the adaptive equipment box.
## 21293                                                                                                                                                                                           EE bending over to pick up trays and went to standup felt catch in back.
## 21294                                                                                                                   EE bending over to put retain tag on product when she bumped into a rack of chicken parts-hit on lf side causing EE to fall injury rt hip, thigh
## 21295                                                                                                                                     EE bending reaching inside the double sided metal cabinet-stepped back into cabinet leaving a 2" laceration-top lt scalp area.
## 21296                                                                                                                                                                            EE bending to pickup a stack of files when liftingshe felt snapping towards upper back.
## 21297                                                                                                                     EE bending to place tray of liquid into fridg, EE behind fridge, moved it causiong EE to pitch forward to keep tray from falling, pain in back
## 21298                                                                                                                                                                                   EE bending to pull out stool for handwashing could not stand back up injury back
## 21299                                                                                                                                              EE bending to transfer resident pulled muscle in lower back feels tight with spasms did not actually pick up resident
## 21300                                                                                                                              EE bending, squattin, or stooping while collecting oak seed on ground. EE balanced himself on toes &ball of rt foot, became very sore
## 21301                                                                                                                                                                                                EE bends neck and shoulder doing daily activities involving filing.
## 21302                                                                                                                                                                                                                               EE bent and felt pain in lower back.
## 21303                                                                                                                                   EE bent down and turned sideways to secure an electric fence. Unable to stand after bending down because of severe pain in back.
## 21304                                                                                                                                                             EE bent down from seated position to pick up ear plug from floor-when went to get up felt pain in back
## 21305                                                                                                                                                                                                       EE bent down to catch a resident who thought he was falling.
## 21306                                                                                                                                                                 EE bent down to check hole for turtles and a needle rush poked EE in lt eye causing blurred vision
## 21307                                                                                                                                                                       EE bent down to clean drain-bent toes in shoes-stood up and felt pain in big toe on rt foot.
## 21308                                                                                                                                                                           EE bent down to clean wheelchair and bumped lt shoulder and arm on the wheelchair wheel.
## 21309                                                                                                                                                                                                 EE bent down to empty trash and hit right eye hardon copy machine.
## 21310                                                                                                                                                                                     EE bent down to fix basket under tv and struck head under tv while standing up
## 21311                                                                                                                                                                EE bent down to fix bucket for mopping came up head hit corner of electric box in housekeeping room
## 21312                                                                                                                                                                                            EE bent down to get medication from refrigerator and door hit left eye.
## 21313                                                                                                                                                                                              EE bent down to get something out of treatment cart and strained back
## 21314                                                                                                                                                                       EE bent down to get spoon out of med cart and felt severe pain in back when straightening up
## 21315                                                                                                                                            EE bent down to get water from tunel washer and had pain in bakc when he went to stand up-was bent for approx 3 minutes
## 21316                                                                                                                                                                                                        EE bent down to handcuff inmate and felt pain in lower back
## 21317                                                                                                                                                                                                        EE bent down to lift barrel into dumpster and strained back
## 21318                                                                                                                                                                                EE bent down to lift gate, stood up and lost balance, falling hit head on the gate.
## 21319                                                                                                                                                                                    EE bent down to lift up tub of mail and strained muscle in upper back and chest
## 21320                                                                                                                                                                  EE bent down to open gate door which stopped unexpectedly and EE cut rt side of eye and forehead.
## 21321                                                                                                                                         EE bent down to open up a cabinet and was reachingfor a bottle when the lower part of her back popped and started burning.
## 21322                                                                                                                                                                                     EE bent down to pcikup trays off floor and came upand hit his head on machine.
## 21323                                                                                                                                                                                   EE bent down to pck up keys and back popped in same place as injury on 02/26/03.
## 21324                                                                                                                                                                                                EE bent down to pick 5gal bucket of sealer felt pull in lower back.
## 21325                                                                                                                                                                                                                  EE bent down to pick and pulled something in knee
## 21326                                                                                                                      EE bent down to pick something off floor, rubbed her fingernail against wall as she bending and a splinter was pushed under righ middle nail.
## 21327                                                                                                                                                                              EE bent down to pick something up from under desk and struck left ear on side on desk
## 21328                                                                                                                                                                                                         EE bent down to pick up a box of sausage and strained back
## 21329                                                                                                                                                                         EE bent down to pick up a box on office floor. Felt pulling in left arm around elbow area.
## 21330                                                                                                                                                  EE bent down to pick up a ink pen off the floor and when she came back up, hit eye on corner of the keyboard tray
## 21331                                                                                                                                                                                              EE bent down to pick up a key when he felt something snap in his back
## 21332                                                                                                                                                                                   EE bent down to pick up a piece of paper from m the floor and right knee popped.
## 21333                                                                                                                                                                                               EE bent down to pick up a piece of trash that fell and strained back
## 21334                                                                                                                                                                                               EE bent down to pick up a sock & noticed tingling in lower back area
## 21335                                                                                                                                                                        EE bent down to pick up a trash bag and when she pulled up, she caught a catch in her back.
## 21336                                                                                                                                                                                                EE bent down to pick up carry tray from floor and strained rt wrist
## 21337                                                                                                                                                          EE bent down to pick up clipboard off the floor and hit his head on one of the nails when standingback up
## 21338                                                                                                                                                                                                           EE bent down to pick up clipboard, arm caught in lifter.
## 21339                                                                                                                                                      EE bent down to pick up his keys to open the door and when came up struck his head on the fire alarmpull box.
## 21340                                                                                                                                                                                            EE bent down to pick up mop bucket and felt a pullin left side of back.
## 21341                                                                                                                                          EE bent down to pick up mop bucket to put it over the kickplate, the water shifted and she felt a pain in her middle back
## 21342                                                                                                                                                                                                                EE bent down to pick up napkin and strained rt knee
## 21343                                                                                                                                                                                                           EE bent down to pick up pad off the floor and hurt back.
## 21344                                                                                                                                                                                                                    EE bent down to pick up paper and strained back
## 21345                                                                                                                                            EE bent down to pick up paper clip off floor. When straightening up severe pain radiated from lower back into right leg
## 21346                                                                                                                                                                                                                      EE bent down to pick up paper. Low back pain.
## 21347                                                                                                                                                                              EE bent down to pick up pt shoes to get him out ofbed when pt kick EE in the back 2x.
## 21348                                                                                                                                              EE bent down to pick up several manuals from the floor. Upon getting up felt a sharp pain on left side of lower back.
## 21349                                                                                                                                                                   EE bent down to pick up snack tray. She heard a popping sound and felt a sharp pain in her back.
## 21350                                                                                                                                                                                               EE bent down to pick up some paper & when EE stood up rt knee popped
## 21351                                                                                                                                                               EE bent down to pick up something off floor when stood up she struck her head on a fire extinquisher
## 21352                                                                                                                                    EE bent down to pick up the box of legal pads thatwas on top of another box on the floor and twistedto turn around. Lower back.
## 21353                                                                                                                                        EE bent down to pick up trash on the floor of the breakroom and upon standing, struck the top of head on wooden cabinet. ()
## 21354                                                                                                                                                                       EE bent down to place a piece of wood on the floor and stood up hitting ear on shelf bracket
## 21355                                                                                                                                                                                   EE bent down to place sling under client, when she raised up noted catch in back
## 21356                                                                                                                                                                                          EE bent down to pull up the door stop & hit his rtcheek on the door knob.
## 21357                                                                                                                                                  EE bent down to put something in trash can under desk and struck his forehead on ruler to paper drilling machine.
## 21358            EE bent down to read the serial number of the cpu on the floor, attempted to put in on top of the desk, the cords were to short and it started to slip out of her hands. EE tried to grab it, when leaning over to put it on the floor she heard a pop.
## 21359                                                                                                                                             EE bent down to remove a broken free branch, so hecould park his car, felt a pain in his back. Oow 1/2 til 1/8 rtw 1/9
## 21360                                                                                                                                                                     EE bent down to remove boxes out of cabinet and bumped head on the 1st door on the cabinet. ()
## 21361                                                                                                       EE bent down to restrain the front of the client's wheelchair and when she attempted to stand up her back struck the arm of the wheelchair bruising back. ()
## 21362                                                                                                                                                                        EE bent down to retrieve a pair of scissors and struck his head on the corner of book shelf
## 21363                                                                                                                                                                       EE bent down to retrieve paper when she stood up she hit her head on the side of the shelve.
## 21364                                                                                                                                                                                    EE bent down to turn over flat bed cart to change wheels and injured lower back
## 21365                                                                                                                                                            EE bent down to wrap the cord up on the vacuum and hit the top of the vacuum handle with her throat. ()
## 21366                                                                                                                                     EE bent down topick up trash can, twisted back when turning to the left, something ripped in backlike a muscle had torn loose/
## 21367                                                                                                                                                                            EE bent forward to move a chair, felt sharp pain in lower back when placing chair down.
## 21368                                                                                                                                                                                                                      EE bent over and felt pain when she got up ()
## 21369                                                                                                                                                                              EE bent over and hit his forehead on the corner of the table causing slight cut/scrap
## 21370                                                                                                                                                                                                                         EE bent over and pulled a muscle in rt leg
## 21371                                                                                                                                                                                    EE bent over assisting client out of bed when she felt sharp pain in lower back
## 21372                                                                                                                                                   EE bent over doing a med treatment to client, upon walking back to med cart felt a sharp pain in her lower back.
## 21373                                                                                                                                                                  EE bent over for a long period of time cleaning scrubbing and waxing floors-felt pain in low back
## 21374                                                                                                                                                           EE bent over from standing position to pick up a stack of files off the floor. EE felt pain in low back.
## 21375                                                                                                                                                                                                    EE bent over open file drawer twisted back & sharppain occurred
## 21376                                                                                                                                            EE bent over to answer phone, picked up receiver with left hand and twisted to rt to pick up pen and felt left hip pain
## 21377                                                                                                                                                    EE bent over to cahnge buffing pad and when he started to straighten up he felt pain in lt side area(low back).
## 21378                                                                                                                                                         EE bent over to care for client and felt sharp pain in back and when stood up pain increased. Strain back.
## 21379                                                                                                                                                                                                EE bent over to chabge trash bag, client ran up and hit EE in back.
## 21380                                                                                                                                                                                             EE bent over to check resident diaper when she felt pain in lower back
## 21381                                                                                                                                                           EE bent over to clean commode, back began to hurt when he straightened up. Injury to left side lowerback
## 21382                                                                                                                                            EE bent over to clean thresholds and elevator tracks and developed low back pain-EE did not report injury until 5/18/03
## 21383                                                                                                                                                                                              EE bent over to clean toilet and rose up and had pain in the low back
## 21384                                                                                                                                                                                           EE bent over to clean toilet, felt sharp pain in back when she stood up.
## 21385                                                                                                                                                                     EE bent over to connect vaccum attachment to riding lawn mower-instantley developed back pain.
## 21386                                                                                                                                                                                                 EE bent over to cut tape on box and back popped. EE felt back pop.
## 21387                                                                                                                                                  EE bent over to flip a piece of metal-when he flipped the metal felt a sharp pain go down lower backand left leg.
## 21388                                                                                                                                                                                                 EE bent over to get a large notebook and EE felt and heard a tear.
## 21389                                                                                                                                                                   EE bent over to get into a car and the door frame of the car closed and struck EE in the rt eye.
## 21390                                                                                                                                                                                   EE bent over to get liner for linen cart and he stood up twisted his lower back.
## 21391                                                                                                                                                               EE bent over to get paper out of the fax machine and hit her head on the shelf above the fax machine
## 21392                                                                                                                                                                                                               EE bent over to get patient's tray and strained back
## 21393                                                                                                                                                                                                           EE bent over to get trash from trashcan and injured back
## 21394                                                                                                                                                                                  EE bent over to lift boxes and boxes were too heavy causing a strain on his back.
## 21395                                                                                                                                                                                                                EE bent over to lift empty bucket and strained back
## 21396                                                                                                                                                                               EE bent over to log on to his computer, sharp pain shot up his back. Low back strain
## 21397                                                                                                                                                                                                                 EE bent over to move bookshelf, injured lower back
## 21398                                                                                                                                                                                                                 EE bent over to move garden hose and strained back
## 21399                                                                                                                                                                                                   EE bent over to pick a mat up out of an animal penstrained back.
## 21400                                                                                                                                                                        EE bent over to pick of mop bucket, twisted/turnedto pour out water and felt catch in back.
## 21401                                                                                                                                  EE bent over to pick pen off floor and chair shot out from underneath EE causing EE to fall to flooratt to break fall w/rt wrist.
## 21402                                                                                                                                                                                         EE bent over to pick up 11x17 ream of paper and felt back tighten and snap
## 21403                                                                                                                                                                                                    EE bent over to pick up 5 gallon bucket of paint and hurt back.
## 21404                                                                                                                                                                                         EE bent over to pick up 8' 4x4 to saw-felt pain in lower back and left leg
## 21405                                                                                                                                        EE bent over to pick up a basket of field jackets and when she stood up her back starting hurting across the lower back. ()
## 21406                                                                                                                                                                                     EE bent over to pick up a box of clothes and felt catch in right side of back.
## 21407                                                                                                                                                                   EE bent over to pick up a cup from ground when he felt a pull in his lower back form 18 filed***
## 21408                                                                                                                                                                                                            EE bent over to pick up a food tray and her back popped
## 21409                                                                                                                                                                                                  EE bent over to pick up a mail tray from floor and had back pain.
## 21410                                                                                                              EE bent over to pick up a paper that fell in the floor and lost his balance, fell out of desk chair & landed on back & rt shoulder. Low back/rt shldr
## 21411                                                                                                                                                                                EE bent over to pick up a piece of paper when she struck her head on the door latch
## 21412                                                                                                                                                                                          EE bent over to pick up a piece of wood and alleges back started hurting.
## 21413                                                                                                                                                                                                         EE bent over to pick up a printer when he injured his back
## 21414                                                                                                                                                                                        EE bent over to pick up a resident's book off the floor and her back popped
## 21415                                                                                                                                                                                                                                  EE bent over to pick up a stapler
## 21416                                                                                                                                                                EE bent over to pick up blanket and pulled his back. He complains of tingling and numbness in back.
## 21417                                                                                                                                                                                              EE bent over to pick up box of pool balls and felt sharp pain in back
## 21418                                                                                                                                                                         EE bent over to pick up box with contents-felt something rip around right hip & lower back
## 21419                                                                                                                                                                                                                               EE bent over to pick up cable and ()
## 21420                                                                                                                                                        EE bent over to pick up canteen money from safe and felt a sharp pain. Pain went through back and left leg,
## 21421                                                                                                                           EE bent over to pick up car keys in parking lot oflinwood fish fry. When he felt a sharp pain in lower back. Muscle spasm in lower back.
## 21422                                                                                                                                                              EE bent over to pick up chart and heard a pop in my back and felt pain in back weakness in lt leg. Lt
## 21423                                                                                                                                                                      EE bent over to pick up corner of a hand cart loaded with centerpieces to fit on elevator. ()
## 21424                                                                                                                      EE bent over to pick up eha equipment brief case she felt a severe pain in her lower back heard a crack sound and was unable to stand upright
## 21425                                                                                                                         EE bent over to pick up front legs of steel chair to remove 2x4 so he could move chair, when EE stoodup he felt a pain in left lower back.
## 21426                                                                                                                                                                                      EE bent over to pick up frozen chicken felt twinge in back, back became stiff
## 21427                                                                                                                                                                                            EE bent over to pick up napin when back popped andpain went threw back.
## 21428                                                                                                                                                                                                         EE bent over to pick up object off the floor injured back.
## 21429                                                                                                                                                                                         EE bent over to pick up pack of matches off the floor and pulled his back.
## 21430                                                                                                                                                                                                                    EE bent over to pick up parts and strained back
## 21431                                                                                                                                                     EE bent over to pick up pen and struck head on bookcase corner he was working on to add printer to computer ()
## 21432                                                                                                                             EE bent over to pick up pill off floor. She hit her head on door jam, fell on floor hitting face. Unconsciousness, pain in right wrist
## 21433                                                                                                                                                                                          EE bent over to pick up server - standing up and hit head on server deck.
## 21434                                                                                                                                                                                   EE bent over to pick up sheets from floor and hit top of head on bottom of door.
## 21435                                                                                                                                  EE bent over to pick up sign drawing that had fallen on floor and when he sttod back he had sharp pain in back and down both legs
## 21436                                                                                                                                  EE bent over to pick up something from the floor, when she stood up, her nose came in contact with apartially open wooden drawer.
## 21437                                                                                                                                                                                EE bent over to pick up something off floor when she felt something pop on her back
## 21438                                                                                                                                                                                                EE bent over to pick up telephone log and hit headon corner of desk
## 21439                                                                                                                                                                                EE bent over to pick up tool tray-turned to exit mechanical room-lower back popped.
## 21440                                                                                                                                                                                EE bent over to pick up trash from the floor & felt something pop in lower lt back.
## 21441                                                                                                                                                                                                   EE bent over to pick up truck scales and felt a pull in his back
## 21442                                                                                                            EE bent over to pick up wet socks off. The pt kicked and EE moved to avoid being kicked. Pt kicked neck/shoulder. Tabletop fell hitting leg, below knee
## 21443                                                                                                                    EE bent over to place a 3 inch 3 ring binder in slide carosel in office chair and experienced sudden pain in lower back upon returning upright.
## 21444                                                                                                                                                                             EE bent over to place some binoculars on ground when he experienced pain in lower back
## 21445                                                                                                                                                                                EE bent over to pull document from files - she felt pain in her back - back strain.
## 21446                                                                                                                                                                                                 EE bent over to pull patient up from bed when she injured her back
## 21447                                                                                                                                                                                                                            EE bent over to pull pole out of ground
## 21448                                                                                                                                                                                                                    EE bent over to pull resident and strained back
## 21449                                                                                                                                                                                                        EE bent over to pull trash and resident hit EE with fist ()
## 21450                                                                                                                               EE bent over to push button to open gate. She felt sharp pain in her back locked in bent postionleft arm and finger began to tingle.
## 21451                                                                                                                                                    EE bent over to put a file in the bottom drawer on a file cabinet in the office and felt pain in herlower back.
## 21452                                                                                                                                                                                                     EE bent over to put fittred sheet on bed, back started to hurt
## 21453                                                                                                                                                                              EE bent over to put food tray on a serving cart and my lower back started having pain
## 21454                                                                                                                                                            EE bent over to raise the arm rail of bed when injury occurred. Pulled muscle in lower back & right leg
## 21455                                                                                                                                                                            EE bent over to remove clients clothes from drawerand felt a sharp pain down right leg.
## 21456                                                                                                                                                                                                  EE bent over to repair vcr chair swung around and hit EE rt cheek
## 21457                                                                                                                                                                                            EE bent over to replace food tray on cart when hisback caught & popped.
## 21458                                                                                                                                                                                           EE bent over to reposition a client in chair and felt pain in lower back
## 21459                                                                                                                                                                                                     EE bent over to retreive object and felt twinge in lower back.
## 21460                                                                                                                               EE bent over to sit on stoll & stool rolled away & she fell on rt ankle & pulled lt shoulder tryingto grab shelf to break her fall..
## 21461                                                                                                                                                                                           EE bent over to sit pt up right in chair, pain shoot across EE's back ()
## 21462                                                                                                                                 EE bent over to speak to client-when another client bumped into EE causing EE to hit forehead on wheelchair cutting left eye brow.
## 21463                                                                                                                                                                                          EE bent over to throw trash away and when she came up hit head on cabinet
## 21464                                                                                                                         EE bent over to turn off water faucet after rinsing protective gear following sampling trip. Struck head on hose holder bracket. Cut scalp
## 21465                                                                                                                                EE bent over to unlock resident drawer to get out clothes for the day, when bent over heard pop in back and had pain and stiffness.
## 21466                                                                                                                                                                                           EE bent over to work on the wheel of a v-blade & pulled muscles in back.
## 21467                                                                                                                                                                   EE bent over to write on table top and could not straighten up due to severe pain in lower back,
## 21468                                                                                                                                                                                 EE bent over tub to pull stopper and and hit ribs on side of tub-felt pull in ribs
## 21469                                                                                                                                                                                       EE bent overt o pick up a mat up put of an animal pen and strained her back.
## 21470                                                                                                                                                                                              EE bent ovr to lift mail tub and the tub was heavy and strained back.
## 21471                                                                                                                                                                                                 EE bent thumb backwards when he picked up bed to raise head board.
## 21472                                                                                                                                                                                            EE bent to grease air handler on boiler, hit left eye on extended pipe.
## 21473                                                                                                                                                                            EE bent to lift a case of soda from a tight location and incorrectly lifted using back.
## 21474                                                                                                                                                                                                               EE bent to pick up a rad and felt pain in lower back
## 21475                                                                                                                                   EE bent to pick up something that had fallen from her desk when her chair rolled from under her causing her to fall to the floor
## 21476                                                                                                                                                            EE bent to pick up trash can and lifted too fast and corner of can and hit EE in the side of the mouth.
## 21477                                                                                                                                                                                 EE bent to tie shoe slipped and fell hitting rt knee on bath tub. Injured rt knee.
## 21478                                                                                                                                                        EE bent under truck to fuel and struck back rt shoulder blade on body of truck. Cut rt back shoulder blade.
## 21479                                                                                                                                                                              EE bit by client while assising staff with a therapeutic hold. EE seen at urgent care
## 21480                                                                                                                                                                                                                    EE bit by dog on left thigh, puncturing skin ()
## 21481                                                                                                                                                                                                                         EE bit by mouse while giving and injection
## 21482                                                                                                                                                                           EE bit into bone in meat on 2 seperate occassions in the cafeteris and fractured 3 teeth
## 21483                                                                                                                                                                                                                                 EE bite by patient on right breast
## 21484                                                                                                                                                                                                           EE bitten by a cat when restraining on left index finger
## 21485                                                                                                                                                                                           EE bitten by a dog on upper rt arm & wrist during surveiliance contacts.
## 21486                                                                                                                                                                                                     EE bitten by an otter during feeding. Cut to rightindex finger
## 21487                                                                                                                                                                                                                                            EE bitten by cat on arm
## 21488                                                                                                                                                                                  EE bitten by many ticks, latest bite of concern was on 8/4/11 (lymes disease). ()
## 21489                                                                                                                                                                                                                              EE bitten by mice on left 3rd finger.
## 21490                                                                                                                                                                                                                   EE bitten by patient while helping to change her
## 21491                                                                                                                                                                                                                        EE bitten by rat during feeding on rt thumb
## 21492                                                                                                                                                                                                                             EE bitten by spider on rt index finger
## 21493                                                                                                                                                                                                         EE bitten by student on hand. Broke skin left index finger
## 21494                                                                                                                                                                           EE bitten by student on left hand between index finger and thumb while subduing student.
## 21495                                                                                                                                                                                                       EE bitten by tick or other insect causing rash on lower leg.
## 21496                                                                                                                                                                                                       EE bitten by tick while spraying pesticide in wooded area ()
## 21497                                                                                                                       EE bitten by unknown insect while maintaining custody and security gym, right side of neck, chin, ear, shoulder, chest and trouble breathing
## 21498                                                                                                                                                                     EE bitten on lt index finger by patient that was being restrained. Human bite lt index finger.
## 21499                                                                                                                                                                                                           EE bitten on right hand while filling up shavings carts.
## 21500                                                                                                                                                                                               EE bitten on right wrist while sitting at desk filling out paperwork
## 21501                                                                                                                                                                                                                                EE blacked out after feeling faint.
## 21502                                                                                                                                                                                                                          EE blacked out and backed car into ditch.
## 21503                                                                                                                                                                                                        EE blacked out and fell against power lift and hithis head.
## 21504                                                                                                                                                EE blacked out and fell face first to the ground, nose fractured, face and forehead cut and scraped and neck strain
## 21505                                                                                                                                                                                                                   EE blacked out and fell hitting head and elbows.
## 21506                                                                                                                                                                                                      EE blacked out applying band-aid to finger (EE hadnot eaten).
## 21507                                                                                                                                                                                          EE blocked client from hitting co-worker and twisted back in the process.
## 21508                                                                                                                                                EE blood pressure went up after being sprayed with pepper spray during training. Face was sprayed with pepper spray
## 21509                                                                                                                                                    EE blood sugar dropped causing EE to drive pickup truck into back of dumptruck - EE type 1 diabetic cat- 448858
## 21510                                                                                                                                                                                      EE blowing leaves off loading dock, fell off the dock, contusion to left knee
## 21511                                                                                                                                             EE boarded bus at columbia st, and while walking to sit down bus took off and EE slipped on wet floor. Injured rt leg.
## 21512                                                                                                                      EE boarded hospital shuttle to go to parking deck-had surgery on lt foot-need to be elevated, foot hit concrete post when driver accelerated.
## 21513                EE boarded the bus and the it took off, stopped, then took off again before she could get seated properly. She plopped down into a seat and felt a sharp pain radiate from the top of her neck to the bottom part of her back on the right side. ()
## 21514                                                                                                                                                EE boiled a cup of wtr for four minutes in the microwave, put in a tea bag and it exploded hot water ont EE's face.
## 21515                                                       EE boiled an agarose solution in the lab microwave, removed the ehrlenmeyer flask and swirled. The flask slipped from his hand and hit the centrifuge surface below. Hot solution splashed into his face. ()
## 21516                                                                             EE boxing office contents for move to new location approx 2 weeks and unboxing apprx 3 weeks after move, lifting and moving boxes. EE felt pain in lower abdomen, shoulder and back ()
## 21517                                                                                                                EE bracing himself ctd & rossette frame were being disployed from ship. Lt hand was pinned (loss ofpart of thumb & middle finger, index total loss.
## 21518                                                                                                                                                                     EE braked and turned right to avoid stopped car and ran into parked dump truck on side of road
## 21519                                                                                                                                                                                                                 EE breaking down table to move and it fell on foot
## 21520                                                                                                                                                                                           EE breaking ice on sidewalks. It was slippery. Fell on ice head hit ice.
## 21521                                                                                                                                                                          EE breaking pipe loose w/pipe under chiller mchn when metal frm wrench split knuckle open
## 21522                                                                                                                                                           EE breaking up a fight between inmates. Shoulder was injured while trying to remove inmate from thedorm.
## 21523                                                                                                                  EE breaking up an altercation between two inmates inmate struck in shoulder several times. Struck shoulder again. Contusion & sprain lt shoulder.
## 21524                                                                                                                                           EE breaking up fight between 2 clients, 1 jumped EE & pushed against wall causing fall, and felt pain in right shoulder.
## 21525                                                                                                                              EE breaking up fight between two inmates, hitting left elbow on wall scratching and bruising arm. Injured lt elbow, lt shoudler area.
## 21526                                                                                                                                                                                                    EE breaking up fight between two patients & injured right thumb
## 21527                                                                                                                                                                                        EE breaking up fight when she was hit in face & fell backwards with inmate.
## 21528                                                                                                                                                                                                EE breaking up fight with inmate when he was scratched on rt elbow.
## 21529                                                                                                                                      EE breaking up two juveniles fighting & was assaulted by one of the juvenile & hit on upper left back; head & left cheek bone
## 21530                                                                                                                                      EE breathed in construction dust and odors over anextended period of time throughout summer & fall 2003 - - form 18 filed. ..
## 21531                                                                                                                                                                                                   EE breathed in fumes from chemical being mixed to strip a floor.
## 21532                                                                                                                                     EE breay up physical altercation between 2 patientwas pushed against. Table fell to floor, two patients - injured finger, neck
## 21533                                                                                                                                                                                   EE bringing a cart of office supplies up stairs felt discomfort in left shoulder
## 21534                                                                                                                                                                   EE bringing a food cart into the housing unit whenthe door slammed shut on his left shoulder/arm
## 21535                                                                                                                                                              EE bringing client back to living tenit riding elevator, client became upset and kicked me in rt leg.
## 21536                                                                                                                                                      EE bringing client up the hall-client kicking and pulling-EE holding client and felt pull in rt siderib cage.
## 21537                                                                                                                                                       EE bringing easels down steps from storage and missed first step-landed at bottom of stairs on back of head.
## 21538                                                                                                                       EE bringing in drug crates, slipped on ice on loading dock and fell approximately 4 feet onto cement below. Lower back neck and leg injuries
## 21539                                                                                                              EE bringing individual back from haircut. Walked by another resident. Resident jumped out of chair and began to hit EE on top of back, shoulder, neck
## 21540                                                                                                                                                           EE bringing mail from physical plant office slipped and fell on ice, bruised lt lumbar and pinched nerve
## 21541                                                                                                                                                                EE broke a nmr tube in her hand. Broken glass caused cut and chemicals came in contact with cut. ()
## 21542                                                                                                                                                                                 EE broke a pt fall when he was going down the steps causing him to have back pain.
## 21543                                                                                                                                           EE broke a window on gun tower... While driving vehicle to facility infirmary lost control and struck tree with vehicle.
## 21544                                                                                                                                                                                                 EE broke out in a rash after working in an attic whith insulation.
## 21545                                                                                                                                                                                                EE broke out in a rash caused by an allergic reaction to her shoes.
## 21546                                                                                                                                                                                        EE broke out in a rash on face, neck, arms, and handswhile shredding paper.
## 21547                                                                                                                                                                                                                        EE broke out in rash after grooming clients
## 21548                                                                                                                                                                      EE broke out in rash all over body. The physician has indicated the rash is not work related.
## 21549                                                                                                                                                                                      EE broke out in rash and had problem breathing frmsprayed deodorizer in hall.
## 21550                                                                                                                                                                 EE broke out into a rash while she was cleaning out the basement, taking trash out and bookshelves
## 21551                                                                                                                                                                                                                              EE broke out on arms, back & hands ()
## 21552                                                                                                                                                          EE broke out with an unknown rash on his neck. Checked out by medical then sent to anson county hospital.
## 21553                                                                                                                                                    EE broke the driver side window on the car of an offender that was resisting arrest and cut both hands and arms
## 21554                                                                                                                                                                 EE broke up a fight between two students, while restraining the youth he was struck in the back ()
## 21555                                                                                                                                                                                                               EE bruised hand trying to force rack into sanitizer.
## 21556                                                                                                                                                                                                    EE bruised her left hand in the thumb area firing the revolver.
## 21557                                                                                                                                                                                                                            EE bruised left arm restraining student
## 21558                                                                                                                                                                                                                  EE bruised left index finger restraining juvenile
## 21559                                                                                                                                                                                    EE bruised right hand when she got it caught be- tween a foodcart and the wall.
## 21560                                                                                                                                                                                                 EE bruised right shoulder/upper arm during shotgun qualifications.
## 21561                                                                                                                                                                                                       EE bruised shoulder and scratched arm scuffling with patient
## 21562                                                                                                                                                                                  EE brushed hand against metal cabinet resulting in a deep cut on lt small finger.
## 21563                                                                                                                                                                                   EE brushed hand with sharp edge of pipe cutting the back of his hand; right hand
## 21564                                                                                                                                                                                            EE brushed her leg against a wooden bench and got a splinter in her leg
## 21565                                                                                                                                                                                         EE brushed rt thumb across edge of clipper. Cut approx. 1/4 in. In length.
## 21566                                                                                                                                                                                          EE brushed up against a wooden cabinet and got a splinter in her left hip
## 21567                                                                                                                                                                                                                         EE buffing fllor when back started hurting
## 21568                                                                                                                                                                    EE buffing floor & got foot hung in cord then knocked down on floor, bruised hand, hip and legs
## 21569                                                                                                                                                                        EE buffing floor and slipped in water causing injuries to nose, eye, chin, rt side of body.
## 21570                                                                                                                                                                                                       EE buffing suite hall moved buffer to left and hitleft elbow
## 21571                                                                                                                                                                           EE bulldozing a large rock for parking lot-rock jerked shoulder and caused a sharp pain.
## 21572                                                                                                                                 EE bumped a sterile pasteur pippette inside a bac-terial hood. It shattered. Glass was blown out, EE felt irritation in right eye.
## 21573                                                                                                                                                                                                         EE bumped against circuit breaker door. Scratched left leg
## 21574                                                                                                                                                                                                                                       EE bumped elbow on maid cart
## 21575                                                                                                                                                                                                              EE bumped face on fire extinguisher injured face/head
## 21576                                                                                                                                                                         EE bumped finger on end mill, changing end mill in holder. Cut index finger on right hand.
## 21577                                                                                                                                        EE bumped hand while moving computer; because of repetitive typing her hand continues to hurt. Right hand, thumb, and wrist
## 21578                                                                                                                                                                                                                        EE bumped head against a log in an exhibit.
## 21579                                                                                                                                                                                                                          EE bumped head aganist wall while filing.
## 21580                                                                                                                                                                                                                                     EE bumped head getting vehicle
## 21581                                                                                                                                                                                                                                       EE bumped head on cabinet ()
## 21582                                                                                                                                                                                                                              EE bumped head on corner of building.
## 21583                                                                                                                                                                                                       EE bumped head on desk causing a laceration above right eye.
## 21584                                                                                                                                                                                                             EE bumped head on entrance. Small bruise and headached
## 21585                                                                                                                                                                                                                        EE bumped head on fuel box on single cell b
## 21586                                                                                                                                                                                                                                            EE bumped head on shelf
## 21587                                                                                                                                                                                                                                           EE bumped head on stairs
## 21588                                                                                                                                                                                       EE bumped head on tv table in pt's room prev 22. 5% ppd to back on old clm..
## 21589                                                                                                                                                                                             EE bumped her lt knee on the edge of a wood desk. Contusion of lt knee
## 21590                                                                                                                                                                                                                         EE bumped his head against the trash truck
## 21591                                                                                                                                                                                                                                    EE bumped his head on a cabinet
## 21592                                                                                                                                                                         EE bumped his head on a water pipe that was over his head when he stepped on the platform.
## 21593                                                                                                                                                                                     EE bumped his head on a/c duct. Cut on right side of head requiring 3 stitches
## 21594                                                                                                                                                                                  EE bumped his head on gate while helping clients take out train. Small laceration
## 21595                                                                                                                                                                           EE bumped his leg on the front bumper of a truck while walking out of recycling building
## 21596                                                                                                                                   EE bumped his lower leg into a pallet and a one inch splinter penetrated the leg. Splinter was removed but area became infected.
## 21597                                                                                                                                                                                           EE bumped his lt leg below the knee while working on the tobacco sprayer
## 21598                                                                                                                                                              EE bumped ino a picture along wall. Picture fell eeattempted to catch and glass edge cut right thumb.
## 21599                                                                                                                                        EE bumped into a can covering a hole & his lt footwent into the hole he strained his lt hip & back trying to avoid falling.
## 21600                                                                                                                                                                                                                EE bumped into a wheelchair injuring his right knee
## 21601                                                                                                                                                                                                                                           EE bumped into aijo lift
## 21602                                                                                                                                                                EE bumped into dolly, it bounced up and EE steppedbackwards to regain balance and twisted my ankel.
## 21603                                                                                                                                EE bumped into pvc airline which broke-air pressure threw EE backwards and over 2 gas heaterslanding sideways-back, elbow, forearms
## 21604                                                                                                                                                                                            EE bumped into the corner of the printer table injuring her right elbow
## 21605                                                                                                                                     EE bumped into the table hitting her shins and began to fall; caught herself; pulled her back; existing chronic back condition
## 21606                                                                                                                                                                                                                        EE bumped knee under desk causing contusion
## 21607                                                                                                                                                                                                   EE bumped left elbow on the tray of chalkboard while washing it.
## 21608                                                                                                                                                                                                                 EE bumped left elbow while installing water heater
## 21609                                                                                                                                                                                             EE bumped left hand middle finger on lighting fixture during practice.
## 21610                                                                                                                                                                                       EE bumped left knee against hand rail causing a bruised & twisted right knee
## 21611                                                                                                                                                                                                    EE bumped open edge of light fixture frame and cut lt lower arm
## 21612                                                                                                                                                                                                        EE bumped right knee on desk as she rose to answer phone ()
## 21613                                                                                                                                                                                                           EE bumped rt elbow against door when resident pushed him
## 21614                                                                                                                                                                                                           EE bumped rt elbow on drink crates while stocking cooler
## 21615                                                                                                                                                                                                            EE bumped rt hand on bedrail while doing a diaper check
## 21616                                                                                                                                                                                              EE bumped rt knee against corner of desk causing pain in rt knee cap.
## 21617                                                                                                                                                                                                                          EE bumped rt knee against pinball machine
## 21618                                                                                                                                                                                                                                 EE bumped rt knee on end of table.
## 21619                                                                                                                                                                                                     EE bumped rt leg into a trash can causing him to trip and fall
## 21620                                                                                                                                                                                      EE bumped the rotating stone. Abrasion of finger tip pad on lt middle finger.
## 21621                                                                                                                                                                                                 EE bumped van she was driving into another vehicle-no injury noted
## 21622                                                                                                                                                                                                             EE burned both hands when coffee slipped off the table
## 21623                                                                                                                                                                                                               EE burned eyes from the rays on the welding machine.
## 21624                                                                                                                                                                                             EE burned forearm on lawnmower while loading it onto the bed of truck.
## 21625                                                                                                                                                              EE burned hand on oven door while heating food. Wound became infected and EE sought treatment on 12/5
## 21626                                                                                                                                                                                                                      EE burned hand while pulling pan out of oven.
## 21627                                                                                                                                                                                                                   EE burned his forearm on a hot pipe.... Left arm
## 21628                                                                                                                                                                                                                          EE burned his lt hand while using a torch
## 21629                                                                                                                                                                                                                      EE burned his right hand with a smoke grenade
## 21630                                                                                                                                                                EE burned left arm while washing & rinsing dishes in sanitizing hot water with gloves on. Left arm.
## 21631                                                                                                                                                                                                               EE burned left forearm and left thigh with hot beans
## 21632                                                                                                                                                                                                                                 EE burned left hand on hot muffler
## 21633                                                                                                                                                                                                                     EE burned left hand when moving pan from stove
## 21634                                                                                                                                                                      EE burned right hand with popcorn oil while emptying popped corn from kettle in candy shoppe.
## 21635                                                                                                                                                                                                                             EE burned rt 2nd finger on boiling pot
## 21636                                                                                                                                                                                                                               EE burned rt hand on acetylene torch
## 21637                                                                                                                                                                                                                                   EE burned stomach on steam table
## 21638                                                                                                                                                                                                                                           EE burnt forearm on oven
## 21639                                                                                                                                                                                                EE burnt rt arm on sheet pan that she was taken out to serving line
## 21640                                                                                                                                                                                                                       EE burnt rt hand on hot gravy from food tray
## 21641                                                                                                                                                         EE bus ran into a ditch impact of accident caused him to loose seat and land on roll bar, striking lt rib.
## 21642                                                                                                                                                            EE c/o elbow pain when helping to move furnitue also dizziness, upset stomach and tingling in bothhands
## 21643                                                                                                                         EE c/o hand & wrist pain--pressing hard on wax dispenser button & cleaning the tissue cassettes. Repetitive motion. Strain rt wrist & hand
## 21644                                                                                                                                                                                                                                                EE c/o rash on back
## 21645                                                                                                                                                                                                                                           EE c/o rash on both arms
## 21646                                                                                                                             EE called by sgt to assist breaking up a fight among inmates when he ran out of door, he slipped on gravel and fell down hurting knee.
## 21647                                                                                                                                               EE called for assistance on radio, patient came towards EE yelling & swinging. Patient hit EE on the (left) hand. ()
## 21648                                                                                                                                                 EE called hr on 4/24/09 that she was having tingling in her left thumb and wrist. Occupation is repetitive motion.
## 21649                                                                                                                                           EE called in on April 12, 1999 and indicated to boiler operator on duty that he had a mild heart attack over the weekend
## 21650                                                                                                                                                                                             EE called into work and advised he pulled something in his groin area.
## 21651                                                                                                                                 EE called into work complaining that her feet hurtbecause of her safety shoes. She went to Dr. And was put out of work for 3 days.
## 21652                                                                                                                                        EE called patient for supper at which time patientbecame hostile, kicking and slapping and cursing. Scratched EE's left arm
## 21653                                                                                                                                                                         EE cam in contact with something that broke skin out on hands. Skin irritation on fingers.
## 21654                                                                                                                                                                                                     EE cam into contact with broken glass and lacerated both knees
## 21655                                                                                                                       EE came back from taking a helmet to pt/ot and fell bruising and scrapping her knee and lower leg. She thinks she May have fallen in a hole.
## 21656                                                                                                                                                    EE came by office & reported her left lower ankle & calf area swollen & blue. Turned ankle on rug in dish room.
## 21657                                                                                                                                                                                                    EE came down from a step ladder and back went into muscle spasm
## 21658                                                                                                                                     EE came down off the last step and turned lt and EE fell onto sidewalk causing injury to knee/handssalary continuance employee
## 21659                                                                                         EE came down the parking deck stairwell, opened the door and tripped down elevated area by the door and landed on her right knee. The unleveled area is not noticeable. ()
## 21660                                                                                                                                                                                       EE came down the stairs, tripped and fell. Injuredtop of right foot--sprain.
## 21661                                                                                                                                           EE came from dishroom carrying 6 1/2 pints milk she slipped & fell on bean soup that was on the floor. Injured left knee
## 21662                                                                                                                                                                      EE came from inside of bldg to outside and the tmpchanged and EE fainted and fell on sidewalk
## 21663                                                                                                                                                                             EE came in between two inmates fighting was struckin the left shoulder numerous times.
## 21664                                                                                                                                                               EE came in building from parking lot. Was walking past trash can. Bee stung EE on right index finger
## 21665                                                                                                                                                                                                                  EE came in contact w/latex noted rash on abdomen.
## 21666                                                                                                                                           EE came in contact w/poison ivy leaves & roots while excavating assigned arch. Units. Though wrnggloves contact was made
## 21667                                                                                                                                                                                EE came in contact w/poison ivy while collecting env samples fromm the neuse river.
## 21668                                                                                                                                                                                                                             EE came in contact with TB from inmate
## 21669                                                                                                                                                                                                                   EE came in contact with a bees nest... Both arms
## 21670                                                                                                                                                                                          EE came in contact with a client diagnosed with meningococcal meringitis.
## 21671                                                                                                                                                                   EE came in contact with a yellow jacket nest and stung several times... Had an allergic reaction
## 21672                                                                                                                                                                                                       EE came in contact with abrasive material on bridge of nose.
## 21673                                                                                                                                                                                              EE came in contact with an inmate who tested postive for tuberculosis
## 21674                                                                                                                                                                                                EE came in contact with an inmate who was diagnosewith tuberculosis
## 21675                                                                                                                                                                                                                     EE came in contact with another EE who has TB.
## 21676                                                                                                                                                                                                       EE came in contact with blood of suspect while making arrest
## 21677                                                                                                                                                                                          EE came in contact with blood that was on inmates arm due to an abrasion.
## 21678                                                                                                                                                                                             EE came in contact with blood while helping young child with cut knee.
## 21679                                                                                                                                                                           EE came in contact with chemical on her face either by touch or spray while cleaning. ()
## 21680                                                                                                                                                                                                                         EE came in contact with inmate that had TB
## 21681                                                                                                                                                                                                 EE came in contact with inmate who tested postive for tuberculosis
## 21682                                                                                                                                                                                                       EE came in contact with inmate who was infected with scabies
## 21683                                                                                                                                                                                                EE came in contact with poison ivey while working on resnake river.
## 21684                                                                                                                                                                                                                  EE came in contact with poison ivy cutting bushes
## 21685                                                                                                                                                                                                                  EE came in contact with poison ivy hands and face
## 21686                                                                                                                                                                                                 EE came in contact with poison ivy while chipping wood in the park
## 21687                                                                                                                                                                                           EE came in contact with poison ivy while conducting wet land delimation.
## 21688                                                                                                                                                                                      EE came in contact with poison ivy while going thru woods on training mission
## 21689                                                                                                                                                                                    EE came in contact with poison ivy while on foot patrol for hunting violations.
## 21690                                                                                                                                                                                                             EE came in contact with poison ivy while pulling weeds
## 21691                                                                                                                                                                                                  EE came in contact with poison ivy while weedeating.... Both arms
## 21692                                                                                                                                                                                EE came in contact with poison ivy, it was growing in the daylilies he was planting
## 21693                                                                                                                                                                                                                   EE came in contact with poison ivy.. Entire body
## 21694                                                                                                                                                   EE came in contact with poison oak while doing research in field. Rash covering face, ears, mouthneck and chest.
## 21695                                                                                                                                                                                     EE came in contact with poison oak while out on a fishing outing with clients.
## 21696                                                                                                                                                                                                                           EE came in contact with poisonous plants
## 21697                                                                                                                                                                EE came in contact with probationer on supervised probation for failing to report for TB treatments
## 21698                                                                                                                                                          EE came in contact with pt that had scabies and a pt that had shingles. EE noticed rashes on both thighs.
## 21699                                                                                                                                                                                                                                 EE came in contact with rabid fox.
## 21700                                                                                                                                                                                                                        EE came in contact with student with a rash
## 21701                                                                                                                                                                                                              EE came in contact with student with possible scabies
## 21702                                                                                                                                                         EE came in contact with sumac plants with bare hands & spread sumac contact to face, arms, eyes, & crotch.
## 21703                                                                                                              EE came in contact with ticks while working in thewoodlands. Months of feeling fever/sinus problems & weakness EE went to Dr-Dx rocky mtn spotted fvr
## 21704                                                                                                                                                                                                    EE came in contact with unseen insect causing allergic reaction
## 21705                                                                 EE came in side door of scott carrying vacuum and tripped on corner of rug, caught herself and tripped on corner of vacuum; fell down stairs; hit elbow; twisted back; went home upset and hurt ()
## 21706                                                                                                               EE came in the housekeeping area to get her key for work and on her way back to her car she fell in the parking lot where the pavement is broken. ()
## 21707                                                                                                                 EE came in to work and noticed a stong odor-smell-ed like kerosene, EE was working on computer when the building was evacuated around 10:30. None.
## 21708                                                                                                                                                                          EE came into building from outside. She started down the steps when she slipeed and fell.
## 21709                                                                                                                                                                                                      EE came into contact with a stinging sea creature right cheek
## 21710                                                                                                                                                                    EE came into contact with poison ivy and was bitten by chiggers and ticks when surveying stream
## 21711                                                                                                                                                                                                           EE came into contact with poison ivy while pullingweeds.
## 21712                                                                                                                                                                              EE came into contact with poison ivy while weed- eating... Arms, hands, neck and face
## 21713                                                                                                                                                                                    EE came into contact with poison ivy while workingin the woods in gates county.
## 21714                                                                                                                                   EE came into contact with poison ivy while workingoutside in garden on cclc grounds while cutting a tree. Face, arms, and waist.
## 21715                                                                                                                                                                                                     EE came into contact with poison ivy... Arms, legs, face, neck
## 21716                                                                                                                                                                                                              EE came into contact with poison ivy... Back and neck
## 21717                                                                                                                                                                                                             EE came into contact with poison ivy... Hands and face
## 21718                                                                                                                                                                                                      EE came into contact with poison ivy.... Right arm alon elbow
## 21719                                                                                                                                                                                                 EE came into contact with poison ivy..... Left arm above the elbow
## 21720                                                                                                                                                                                                         EE came into contact with unknown white powder in package.
## 21721                                                                                                                                                                                                                       EE came into office, grabbed ?? And fainted.
## 21722                                                                                                                                                                                             EE came into physical contact with pepper spray during a use of force.
## 21723                                                                                                                                                                                             EE came into to contact with poison ivy... Arms, hands, neck, and face
## 21724                                                                                                                                                      EE came out and bumped leg on food wagon, lost bal-ance and fell, bumping head, knees and caught on her hand.
## 21725                                                                                                                                                                                                                    EE came out of bathroom and twisted ankle, knee
## 21726                                                                                                                                                             EE came out of client's room & was attacked from behind by a client. Client pulled her hair. Neck pain
## 21727                                                                                                                    EE came out of door of dormitory and fell over a 5 gallon bucket that was used to hold the door open. Injury to right lower back and right knee
## 21728                                                                                                                                                                                                                EE came out of firing range felt light headed faint
## 21729                                                                                                                                                                                                                EE came out of ofc, slammed door on right finger ()
## 21730                                                                                EE came out of pharmacy and when turned around to go back in the pharmacy, my knee twisted around and gave out on me. EE fell down on to my left knee in front of pharmacy door. ()
## 21731                                                                                                                                                                  EE came out of room and consumer tried to hit EE. Consumer hit EE's arms and back into EE's face.
## 21732                                                                                                                                          EE came out of the back door of the chancellor's home and slipped in some ice that had melted from the displaced snow. ()
## 21733                                                                                                                                                                                                       EE came out of water with sever pain in both ears from dive.
## 21734                                                                                                                 EE came out office going to make security check offence. At end of building near wall. EE tripped over wall. Contusion lt hip, broke tooth, crown.
## 21735                                                                                                                                                       EE came through rear door of tower from the cat-walk. He caught hi left middle finger in door when it closed
## 21736                                                                                                                         EE came to adminstration building to pick up the mail. EE was walking back to cottage when he slip and fell on ice. Injury to right ankle.
## 21737                                                                                                                     EE came to lunch with office asst. Stopped at red light at intersection when a truck hit back of EE's care. General soreness and pain in back.
## 21738                                                                                                               EE came to the wc office on 7/24/09 to say that she has been out of work since 7/5/09 due to back pain and wanted to know if she could get on wc. ()
## 21739                                                                                                                EE came up to operator and asked that he get down to discuss workplace. She turned to leave he got up, foot hit lever and bucket swung and hit head
## 21740                                                                                                                              EE came upon an automobile accident and stopped tohelp. He jumped down to ground and hit arm on the ground. Victim was another doc EE
## 21741                                                                                                                                                                                                           EE can not move rt thumb - no specific injury identified
## 21742                                                                                                                                                                                        EE car was rear ended by another. EE hit back of head on vehicle head rest.
## 21743                                                                                                                                                                                     EE carried 2 buckets of soil then started raking & lower back started hurting.
## 21744                                                                                                                                                                                       EE carried a 24 cup coffee pot full of water to other bldg and injured back.
## 21745                                                                                                                                                               EE carried compressor upstairs, installed a motor and while kneeling rt knee became sore and swollen
## 21746                                                                                                                                                                               EE carried fiberglass filter. Later rubbed eye andfiberglass got into the right eye.
## 21747                                                                                                               EE carried large supply of reports back to dol. Side of back started huritn about 30 minutes laterleft arm, back of hand and fingers started to hurt
## 21748                                                                                                                                            EE carried patient to the bathroom. Patient was kicking & being very aggressive towards staff. Sprain to right shoulder
## 21749                                                                                                                                                                                                             EE carried portable air tank to inflate golf cart tire
## 21750                                                                                                                                                EE carried water pan in client room to give sponge bath - squatted down to put pan down and felt sharp pain in back
## 21751                                                                                                                                    EE carries briefcase with caseload files to and from office, because the files are heavy, she feels her pain in her left elbow.
## 21752                                                                                                               EE carries mail bins of approx 20 files to recordsroom twice a day. Also carries boxes of files to be mailed each week. Rt--hand/arm/elbow/shoulder.
## 21753                                                                                                                                                        EE carring box of supplies down steps when foot slipped and EE fell backwards landing on left hip and back.
## 21754                                                                                                                                                                                                                                EE carring something, strained back
## 21755                                                                                                                        EE carring strawberry pan to serving line, slippedon wet floor being mopped. Warning sign on bucketlpulled lower back and bruised right hip
## 21756                                                                                                                                                                                            EE carring to trash barrel, right hand hit sharp edge of plastic flask.
## 21757                                                                                                                                                                                  EE carrying 15lb stack of paper from 1st floor to library bldg strain lower back.
## 21758                                                                                                                                                                                EE carrying 3 reports from 1st floor to 4th floor felt something pull in lower back
## 21759                                                                                                                                         EE carrying 45 lb box full of brochures and daily planner, went down flight of 25 steps leg went stifbruise to rt knee cap
## 21760                                                                                                                                                   EE carrying 45 lb portable scale EE lost his footing and stumbled which caused the scale to twist his left elbow
## 21761                                                                                                                                                                                                              EE carrying 5 gallon bucket of wax felt pain in hand.
## 21762                                                                                                                                                                                                     EE carrying a bookbag with 425 pages of paper handouts to car.
## 21763                                                                                                                                                                                       EE carrying a box of equipment into office and tripped over object in floor.
## 21764                                                                                                                                                  EE carrying a computer when she tripped on crack in concrete. Sprain to right 3rd finger & bruises to right knee.
## 21765                                                                                                                                                                                               EE carrying a counter top into the shop-top broke and cut rt forearm
## 21766                                                                                                                                     EE carrying a hitch piece of farm equipment. It fell out of my hand - bent finger back. Deep bruise/sprain 4th finger rt hand.
## 21767                                                                                                                                                                                     EE carrying a load to outside, stepped on loose debris and twisted right ankle
## 21768                                                                                                                                                                                                            EE carrying a pc across school campus via rt arm elbow.
## 21769                                                                                                                                                                             EE carrying a piece of equipment and lost balance grabbed lot pipe injuring left hand.
## 21770                                                                                                                                                                   EE carrying a printer to her car to take to maint. Bldg-stepped off curb and injured left ankle.
## 21771                                                                                                                                                                                               EE carrying a worktop table when he experienced pain in his rt elbow
## 21772                                                                                                                 EE carrying all equipment required for third shiftclock, yard keys, walkie talkie, and had extra clothes on for cold weather. Strain to back, neck
## 21773                                                                                                                                                                        EE carrying bag of personal belongs - front officeee stepped into a hole and twisted ankle.
## 21774                                                                                                                                                               EE carrying baskets from upstairs to downstairs and fell missed last step and fell-basket cut rt eye
## 21775                                                                                                                                                                                                                       EE carrying bed springs injury to right hand
## 21776                                                                                                                                                                                          EE carrying biohazard bag & got blood on him from outside of bag-left arm
## 21777                                                                                                                                         EE carrying biohazard trash bag to be thrown away when jagged glass pipet pocked through and cut EE on calf while walking.
## 21778                                                                                                                                 EE carrying block into small tool repair building EE squated down to lay block on top of other blockfelt catch in low back, strain
## 21779                                                                                                                                                EE carrying boards across wet bleachers EE slippedand fell injury right shoulder right arm right leg and lower back
## 21780                                                                                                                                                                                                                       EE carrying box and felt pain in lower back.
## 21781                                                                                                                                                                                 EE carrying box down flight of stairs & misjudged by distance and fell, left ankle
## 21782                                                                                                                                             EE carrying box of supplies and tripped over concrete on sidewalk falling on left breast, kneesand cuts on both hands.
## 21783                                                                                                                                                                               EE carrying box on shoulder down stepts at unc baseball stadium strained rt shoulder
## 21784                                                                                                                                                                                          EE carrying boxes and tripped over cart, contusionto left arm, both knees
## 21785                                                                                                                                                                       EE carrying boxes towards door-someone opened doorfrom inside causing door to hit EE's hand.
## 21786                                                                                                                                                                                 EE carrying boxes when tripped by chairs blocking aisleway-hit floor on right knee
## 21787                                                                                                                              EE carrying briefcase full of folders-shifted wgt of briefcse from left hand and arm opened door of car and felt pain in left forarm.
## 21788                                                                                                                                                                                                                    EE carrying bus pan and bent right pinky finger
## 21789                                                                                                                           EE carrying cases of wtr from car to rolling cart on sidewalk and heel of shoe got caught on cement block causing EE's rt knee to twist.
## 21790                                                                                                                                                                                              EE carrying cases to big in the unit & tripped andfell. Rt knee pain.
## 21791                                                                                                                                                                   EE carrying client down hallway and up stairs client kicking and twisting - EE pulled left elbow
## 21792                                                                                                                                                                                   EE carrying client to restraint room-during process rt thumb caught in clothing.
## 21793                                                                                                                                                                                     EE carrying computer when he tripped and fell and hit head and eye on computer
## 21794                                                                                                                           EE carrying display case into work site building EE stubbed toe on case, toe nail cracked, bleedingensued. Scrapped third toe right foot
## 21795                                                                                                                                                                        EE carrying equipment to chaple hill and monitor slipped out of hand and fell onto rt foot.
## 21796                                                                                                                                                                                                        EE carrying evidence up to court-twisted rt ankle and fell.
## 21797                                                                                                                                                                          EE carrying files and went around corner-tripped over files in floor injuring left ankle.
## 21798                                                                                                                                               EE carrying fire rake down rocky terrain when footslipped on rocks causing EE to fall and rake stuckee on lower leg.
## 21799                                                                                                                                                               EE carrying food and trying to unlock heavy door- door started to closed pushing food tray into ribs
## 21800                                                                                                                                                                                                        EE carrying heavy buffing machine down stairs & pulled back
## 21801                                                                                                                                                                                             EE carrying heavy casket from hearse to lowering devise injury to back
## 21802                                                                                                                                                                  EE carrying heavy equipment and slipped falling back into rail causing equipment to land on chest
## 21803                                                                                                                                                   EE carrying heavy plastic bag. The plastic bag duginto the finger making the tip of finger go numb. Left finger.
## 21804                                                                                                                                                                                     EE carrying ice chest out of building when welding machine fell on rt foot/toe
## 21805                                                                                                                       EE carrying lap top computer, printer & accesoriesweighing 15lbs. Weight on rt shoudler strain & re-sulted in pain to collarbone & shoulder.
## 21806                                                                                                                                                                                         EE carrying laptop computer and missed a step and fell landing on left arm
## 21807                                                                                                                                                                 EE carrying laundry basket and bags to storage andslipped and fell in hallway sprained left ankle.
## 21808                                                                                                                                                                                 EE carrying mail and turned over ankle walking. Hefell, injured side/arm and ankle
## 21809                                                                                                                                                                      EE carrying materials stepped down onto edge of parking lot and fell, twisting right knee. ()
## 21810                                                                                                                                                                                     EE carrying metal bucket to da office-weight of bucket strained left shoulder.
## 21811                                                                                                                                                                      EE carrying metal door jamb in bldg-turned a sharpcorner and jamb twisted injuring rt. Wrist.
## 21812                                                                                                                                                                                                  EE carrying metal sides and foot slipped and landed on left knee.
## 21813                                                                                                                                                               EE carrying papers from the hr office and fell down stairs burised left ankle, buttock, legs and arm
## 21814                                                                                                                      EE carrying printer on hand trk to another bldg- one wheel on hand trk came off-which caused EE to struggle w/trk staining back for pressure.
## 21815                                                                                                                                                                                                               EE carrying pt on transport board injury pulled back
## 21816                                                                                                                                                                                      EE carrying some heavy files to basement-felt painin left knee during process
## 21817                                                                                                                                                                                          EE carrying supply of paper in box to secretarys office and strained back
## 21818                                                                                                                                                                          EE carrying the portable stage up two flights of stairs and pulled a muscle in right leg.
## 21819                                                                                                                                                                                              EE carrying tortoise out of holding area and backed into crane shaft.
## 21820                                                                                                                                                      EE carrying trash out, stepped wrong and slipped off handicap ramp(2 inches off ground) spraining left ankle.
## 21821                                                                                                                                                                                 EE carrying tray mail down steps and slipped and fell injuring mult parts of body.
## 21822                                                                                                                                                                                             EE carrying xerox copies across street from copy center injury to back
## 21823                                                                                                                  EE catching softball game. EE caught off guard & did not have time to cover with gloved hand & ballhit lt ring finger. Dislocated lt ring finger.
## 21824                                                                                                                                                                                  EE caught (left) arm / wrist in door while trying to exit the nursing station. ()
## 21825                                                                                                                                                           EE caught a case of poison ivy while cutting and hauling trees and underbrush wile on state active duty.
## 21826                                                                                                                                   EE caught a client who was escaping from building. Client fell to floor pulling EE forward causing EE to pull something in back.
## 21827                                                                                                                                                                                            EE caught a falling patient & immediately felt pain in neck & right arm
## 21828                                                                                                                                                       EE caught a football that was thrown to him, whileattending a departmental luncheon. Broke left ring finger.
## 21829                                                                                                                                                                                                                      EE caught ahnd in walker and strained wrtist.
## 21830                                                                                                                                                                                                                            EE caught arm between chart and desk ()
## 21831                                                                                                                           EE caught bat in pillow case, it escaped, EE caught again, uncovered bat outside, took left finger and rubbed bats back, then flew away.
## 21832                                                                                                                                                                                                              EE caught client from falling resulting in back pain.
## 21833                                                                                                                                                                                                       EE caught client that was falling and pulled middle of back.
## 21834                                                                                                                                                                           EE caught client when client began to fall during bath time, EE felt pain in lower back.
## 21835                                                                                                                                                                                            EE caught client's fall and felt and sharp pain inher black right side.
## 21836                                                                                                                                                                                                       EE caught co-worker falling down stairs while taking a break
## 21837                                                                                                                                                                                       EE caught elbow in nose while participating in recreation with his students.
## 21838                                                                                                                                                 EE caught elevator to the 6th floor and slipped on wet floor near snack bar area. Probably from rain that morning.
## 21839                                                                                                                                                                                                                          EE caught fall and injured wrsit and hand
## 21840                                                                                                                                                                                                     EE caught falling patient and went to floor strained left knee
## 21841                                                                                                                                                                                                       EE caught finger in door when locking and closing for night.
## 21842                                                                                                                                                                                                                                         EE caught finger in drawer
## 21843                                                                                                                                                                                                    EE caught finger on metal folder. Laceration rightpinky finger.
## 21844                                                                                                                                                                                                                          EE caught fingers in wheels of wheelchair
## 21845                                                                                                                               EE caught fingers of rt hand in paint buckets while carrying them across the room- contusion to rt hand, abrasion to rt hand & legs.
## 21846                                                                                                                                                                 EE caught foot in indetions in sidewalk, pitched forward, and fell at employee meeting in raleigh.
## 21847                                                                                                                                                          EE caught foot in sidewalk divider behind pine bldg. Fell onto sidewalk with rt knee hitting on concrete.
## 21848                                                                                                                                                                                          EE caught foot on desk drawer getting up to walk to door and fell on arm.
## 21849                                                                                                                                                                                                                 EE caught foot on edge of stairs and twisted ankle
## 21850                                                                                                                                                                                                       EE caught foot on metal piece in floor; fell, twisting knee.
## 21851                                                                                                                                                                            EE caught foot on roller of chair as she entered office- turned left foot over and fell
## 21852                                                                                                                                                                                              EE caught hand between drying rack and shelf while moving drying rack
## 21853                                                                                                                                 EE caught he thumb under a resident when she was turning a resident on he side to change her. She has been put on restricted duty.
## 21854                                                                                                                                                                                                        EE caught heel on unlevel piece of concrete, tripped & fell
## 21855                                                                                                                         EE caught her finger between cows head and the handle on the headgate causing a cut to the end of her left index finger requiring stitches
## 21856                                                                                                                                EE caught her foot on the running board of the vanwhen she stepped out and bent her leg back behind her.... Left hip, lumbar injury
## 21857                                                                                                                                                                                                                        EE caught her hand between bedrail and pad.
## 21858                                                                                                                                                      EE caught her shoe on rug protector pad and hit head on desk. Cut to left side of head and fractured left hip
## 21859                                                                                                                                                                            EE caught her thumb in elevator door when she pushed it open. Door May have been stuck.
## 21860                                                                                                                                                                                             EE caught his finger between trash bin & dumpster when emptying trash.
## 21861                                                                                                                                                                                                                  EE caught his fingers in a door as it was closing
## 21862                                                                                                                                                                                                        EE caught his right middle finger between two railroad ties
## 21863                                                                                                                                                                                                                  EE caught index finger on right hand in van door.
## 21864                                                                                                                                                                                                                      EE caught l hand between door and door facing
## 21865                                                                                                                                                                   EE caught left foot on base of desk chair while turning to the right in the chair twisting knee.
## 21866                                                                                                                                                                                      EE caught left hand and little finger in the door as EE was exiting work area
## 21867                                                                                                                                                                                       EE caught left index finger in door while letting inmates out of dining hall
## 21868                                                                                                                                          EE caught left middle finger in elevation feeder of the printing press. EE has soft tissue contusionof left middle finger
## 21869                                                                                                                          EE caught left ring finger on door lock plate while attempting to exit snatched ring & finger back caused pain & swelling & discoloration
## 21870                                                                                                                                                                                                  EE caught lft ring finger in door trying to keep it from slamming
## 21871                                                                                                                                                                                                         EE caught lt hand in door as she was attempting toclose it
## 21872                                                                                                                                                                                                               EE caught middle finger of lt hand between the door.
## 21873                                                                                                                                                                                                EE caught middle finger on right hand in swinging door when closing
## 21874                                                                                                                                                               EE caught patient who was unsteady on their feet and falling which caused her to re-injure her back.
## 21875                                                                                                                                                             EE caught resident and fuul weigth of resident wason EE's wrist that was between the rail and the van.
## 21876                                                                                                                                                                                                   EE caught resident as he began to fall, felt pain in upper back.
## 21877                                                                                                                                                                                                                  EE caught resident that was falling. Injured back
## 21878                                                                                                                                                                                 EE caught resident who was falling and lowered him to the floor straining left leg
## 21879                                                                                                                                                                                  EE caught ring on striker plate on door jam while going out. Cut left ring finger
## 21880                                                                                                                                                                               EE caught rt great toe on edge of parking lot space and fell fracturing rt great toe
## 21881                                                                                                                                                                                                       EE caught rt index finger between steel sculpture components
## 21882                                                                                                                                                                                                                         EE caught rt index finger in bathroom door
## 21883                                                                                                                                                                                                               EE caught rt ring finger on med cart and strained it
## 21884                                                                                                                                                                              EE caught shoe heel in chair wheel and fell causing pain to wrist neck and upper back
## 21885                                                                                                                                                                                 EE caught small finger of left hand in door while securing a student back to class
## 21886                                                                                                                                                                      EE caught something under her heel of shoe and fell to knees catching herself with her hands.
## 21887                                                                                                                                                                                                                                         EE caught thumb in machine
## 21888                                                                                                                                                                                  EE caught toe of shoe on the leg of table and whengetting up and twisted rt knee.
## 21889                                                                                                                                                                                    EE caught toe on uneven sidewalk & fell scraping rforearm causing pain in r leg
## 21890                                                   EE changed a tire and was loading the tire in the back of the imap unit. EE was moving cones in the back of the unit, to better position the tire, and felt pain above his hip on the right side of his back. ()
## 21891                                                                                                                                                                  EE changing a patient & was unaware of posion on container of aloe & sprayed solution in her face
## 21892                                                                                                                                                                                     EE changing a patient EE's arm grabbed by aggress-ive patient. Rt hand injury.
## 21893                                                                                                                                                                             EE changing a trashcan and was walking away and fell on rt knee and twisted left anke.
## 21894                                                                                                                                                                                                                          EE changing batteries out of hauling unit
## 21895                                                                                                                                                             EE changing box in ceiling duckwork/register fell through ceiling grid striking right hand and forearm
## 21896                                                                                                                                                                         EE changing cartridge for water fountain when wrench slipped cut thumb - injured rt thumb.
## 21897                                                                                                                                                                     EE changing client into pajama top-client became agitated and pulled EE's left thumb backwards
## 21898                                                                                                                                                                        EE changing client into pajamas when client grabbed EE's left hand and twisted index finger
## 21899                                                                                                                                                                                                                   EE changing client-client stuck finger in rt eye
## 21900                                                                                                                                                                                     EE changing client; client fell back; EE tried to catch her and hurt her back.
## 21901                                                                                                                                                                           EE changing clients sheets, turned the wrong way when removing sheet, pain in chest/side
## 21902                                                                                                                EE changing diaper, then directing resident out ofbathroom. Hit staff on lt side of face w/elbow on side of jaw. Lt side of face below ear-jawbone.
## 21903                                                                                                                 EE changing from snow tires to regular tread tires& placing hubcap back on rim. EE cut his right index finger when he was dislodging a valve stem.
## 21904                                                                                                                                                             EE changing light bulb went to get out of truck foot slipped on back bumper falling to concrete floor.
## 21905                                                                                                                                      EE changing light tube-one end in fixture and raised the other end and the tube exploded which resulted in cuts on left hand.
## 21906                                                                                                                                                  EE changing mop head, caught her rt index finger inside mop frame causing a small laceration. Cut finger rt index
## 21907                                                                                                                                                                EE changing nitrogen fitting when fitting slipped into vice and EE's hand hit vice cutting rt hand.
## 21908                                                                                                                       EE changing offices to teach at cosmetology centerin kannapolis. When moving teaching supplies to car & storage room EE injured right elbow.
## 21909                                                                                                                                                                                                        EE changing out ceiling overhead when debri got into rt eye
## 21910                                                                                                                                                                      EE changing out ceiling tiles while standing on a ladder; felt a pull in right lower back. ()
## 21911                                                                                                                          EE changing paper on copy machine, finger cut fromside of paper holder by sharp metal clip on holderlaceration of middle finger, rt hand.
## 21912                                                                                                                                                                                      EE changing plug on generator-stepped up to walk out and struck head on pipe.
## 21913                                                                                                                                                                                                                    EE changing pressure pump, squirted in left eye
## 21914                                                                                                                                                                                                     EE changing pt padding, while moving pt, ees arm was pinned ()
## 21915                                                                                                                                            EE changing pts clothing in bathroom and assistingpt stand when pt cursing and digging nails into eearm, bruised rt arm
## 21916                                                                                                                                                  EE changing resident bed when lifting matters put shoes on caught cramp in her lower back. Acute lower bac strain
## 21917                                                                                                                                                                                                                     EE changing resident when he scratched lt arm.
## 21918                                                                                                                                                                                     EE changing resident, resident scratched lt hand. Screened for blood exposure.
## 21919                                                                                                                          EE changing tire on a state boat trailer, while using the wrench, it slipped off the lug end & struck EE on the end side of his left knee
## 21920                                                                                                                                                  EE changing tire on riding mower (which was on trailer) EE jumped off sid, spraingin lt knee. Sprain to left knee
## 21921                                                                                                                                                                                                                 EE changing tire on veh bar slipped cut left thumb
## 21922                                                                                                                                                                         EE changing tire when jack slipped & EE attempted to pull jack out & EE strained right arm
## 21923                                                                                                                                                                      EE changing water bottle, took a case off rack and felt sharp pain in left shoulder and knee.
## 21924                                                                                                                                                                                                   EE chaning out an compressor and a insect bit EE on the rt cheek
## 21925                                                                                                                                                                     EE chaning pt- trying to get back in bed. Pt triedto hit staff member. Injured fingers rt hand
## 21926                                                                                                                         EE chased a subject on foot who was resisting arrest. A scuffle ensued and while trying to subdue the subject, EE fell striking right hand
## 21927                                                                                                                                                                 EE chased fleeing violator on foot, fell when feet became entangled in vines and broke right hand.
## 21928                                                                                                                                                                                            EE chased patient down steps and fell down steps while catching patient
## 21929                                                                                                                  EE chased suspect on foot and injured left wrist when he tackled suspect and suspects weight landedon EE's wrist at akward angle. Sprained wrist.
## 21930                                                                                                                                                                 EE chased violator on foot. During chase, EE ran into a chain link fence post. Rt knee struck post
## 21931                                                                                                                                                       EE chasing a subject on foot when he stepped on a pieces of sheet metal and slid down hill bending foot back
## 21932                                                                                                                                                       EE chasing an intoxicated driver who was running on foot and while crossing a fence, out lt forearmon fence.
## 21933                                                                                                                                                                                  EE chasing client-floor had been mopped-EE slipped& fell landing on buttocks/back
## 21934                                                                                                                            EE chasing inmate who was running away. Grabbed t-shirt of inmate & tripped over sidewalk rope. Hit thigh on door stop & fell to ground
## 21935                                                                                                                                        EE chasing prisoner fell on rock slate steps causint abrasions to both palms, severe bruises to lt forearm & bruised chest.
## 21936                                                                                                                                          EE chasing resident injuryed right ankle when he made a sudden turn and while performing nci ***rtw full duty 11-15-06***
## 21937                                                                                                                                                                     EE chasing runaway student and tripped over a fallen tree causing injuries to the right ankle.
## 21938                                                                                                                                                                            EE chasing subject through wooded area, tripped over a fallen tree & injured left knee.
## 21939                                                                                                                                                                                                                EE chasing suspect in wooded area & ran into a tree
## 21940                                                                                                                                                                                                                EE chasing suspect on foot and strained his rt leg.
## 21941                                                                                                                                                                                           EE chasing suspect on foot though woods and injured rt ankle in pursuit.
## 21942                                                                                                                                                                                              EE chasing suspect on foot to place into custody and twisted rt knee.
## 21943                                                                                                                                                                                       EE chasing suspect on foot-fell & struck face on log on ground breaking nose
## 21944                                                                                                                                                            EE chasing suspect vehicle, attempted a right turn, lost control of his vehicle and struck a ditch bank
## 21945                                                                                                                                            EE chasing suspect when he grabbed suspect's shirtand suspect pulled away causing EE to fall and cut left knee on rocks
## 21946                                                                                                                      EE chasing violator through woods. Was struck in the face & hands by branches from several thorn bushes which caused several small scratches.
## 21947                                                                                                                          EE checked bathrooms for inmates and found a fire, EE grabbed extinguisher, put fire out. Upon pullingpin out, EE cut right index finger.
## 21948                                                                                                                                                         EE checked student's head/scalp to find presence of head lice. EE later became infected with head lice. ()
## 21949                                                                                                               EE checking bathroom in n block of dorm 4, toilet stall door was hanging only on screw. Pulled door for security reasons. Door fell on foot swollen.
## 21950                                                                                                                                                                                     EE checking cages on weekend, pulled rack out to view cages, twisted shoulder.
## 21951                                                                                                                                                               EE checking colvard bldg, pushed open door, door swung back and struck rt elbow. Contusion rt elbow.
## 21952                                                                                                                                   EE checking commercial stapler for staple supply prior to using. EE picked up stapler by wrong end causing stapler to discharge.
## 21953                                                                                                                                                                                      EE checking doors on bldg opended car door to exitvehicle and slipped on ice.
## 21954                                                                                                                                                                                  EE checking dorm wings, and door open court being blown off dirt flew in left eye
## 21955                                                                                                                                                                                     EE checking fire door, tried to avoid a muddy areaslipped and hurt left ankle.
## 21956                                                                                                                     EE checking first aid kits in maintenance shop hadto move items off top of kit went back to dorm washed hands noticed burning swelling & bumps
## 21957                                                                                                                                                                                                  EE checking floor, walk in stripper slipped and fell, hurt rt arm
## 21958                                                                                                                          EE checking for contraband. Entered room at porch area, bent over to look out window, window fell hitting her in the shoulder-blade area.
## 21959                                                                                                                                           EE checking for dust on window sill when cut his lt middle finger on unknown object on window. Laceration lt 3rd finger.
## 21960                                                                                                                                                                    EE checking for water leak on toilet bowl injury cut right ring finger on shattered toilet bowl
## 21961                                                                                                                                                                                                EE checking grounds and found a tick in his naval and pulled it out
## 21962                                                                                                                                            EE checking hematoma on resident, hematoma burst with pressure & squirted blood - face & chest, blood got in EE's mouth
## 21963                                                                                                                                                                    EE checking in inmate to maintenance to return to work & a yellow jacket stung him on left arm.
## 21964                                                                                                                                             EE checking in patients-answered Dr. 'S call by turning to go into clinic and lt leg popped causing pain on lower calf
## 21965                                                                                                                                                   EE checking in rx-came in contact with adhesive oninsert-started itching and splotches on rt/left forarms/hands.
## 21966                                                                                                                                   EE checking janitor's closet d-dorm. Reaching to turn off light, the doorstop did not hold; door slammed into his left wrist. ()
## 21967                                                                                                                                                                              EE checking lots to insure blocked for construciton-injury to rt shoulder, upper arm.
## 21968                                                                                                                                                                             EE checking on client who became combative and fighting and kicked EE on left shoulder
## 21969                                                                                                                     EE checking on complaint in agr. Annex bldg. Saw a liguid on the floor. EE took a broom to move themixture away from pump nose & eyes burning.
## 21970                                                                                                                EE checking on experiment in water behind the marine lab while moving the cages & stepped on something very sharp that went thru boots into lf foot
## 21971                                                                                                                                             EE checking on paperwork that police officer had in his posseession-started up the stairs and fell injuring left wrist
## 21972                                                                                                                                                    EE checking on suspicious activity by inmates. He open pill bottle and material from bottle went into his face.
## 21973                                                                                                                                                                              EE checking pavement of loading docks for trks andslipped on ice extending left knee.
## 21974                                                                                                             EE checking pipe leak in wall, opened vent, suction of air blew into his face causing debris (dust) to shoot down EE throat caused a severe throat irr
## 21975                                                                                                                                                                                       EE checking prices of books on shelf - lifted books & twisted wrist and arm.
## 21976                                                                                                                                                                                                          EE checking property, stepped in hole and twisted l ankle
## 21977                                                                                                                                                               EE checking supplies @ central receiving when they were bitten by spider. Area became sore & swollen
## 21978                                                                                                                                                                                       EE checking temperature in the composting pile andwind blew matter into eye.
## 21979                                                                                                                     EE checking temperature of meat, the pan started to slide off cart and he attempted to save the meat & the hot grease poured on his arm & hand
## 21980                                                                                                                                                 EE checking the fire exit door, pushed the bar to open the door full face forward when she slippeand fell forward.
## 21981                                                                                                                                        EE checking trough for feed & a bird attempted to peck her hand. EE moved her hand quickly away & struck cage with her hand
## 21982                                                                                                                   EE checking under vehicles with rolling mirror, stepped back on mirror which rolled out from underher causing her to fall. Sprain to right wrist
## 21983                                                                                                            EE checking west side vocation build, and perimeterfence EE walked toward gate missed step onto raisdsidewalk, foot slipped EE fell, sprain to rt ankle
## 21984                                                                                                                                                                                          EE checking wooded area for traps & struck by a briar branch in right eye
## 21985                                                                                                                                                                                            EE checking yard and stepped into uneven ground felt pain in lower back
## 21986                                                                                                                                                                       EE checking yard which was muddy from rain & fell on rt side causing injury to rt arm & hand
## 21987                                                                                                                                  EE chest was against the edge of a buggy-EE leanedover to reposition wet fabric inside the buggy andfelt pain in lower chest area
## 21988                                                                                                             EE child support clk & data entry for majority of workweek. Both jobs req repetitive movement w/hand& wrists. Carpal tunnel symptoms both hands/elbows
## 21989                                                                                                                                 EE citing re-occurrence to a 1/4/99 first aid claim-while lifting client rt leg turned and twisted right knee- same pain as 1/4/99
## 21990                                                                                                                                                EE claimed as he was walking back to segregation he twisted his left ankle on the floor mat. Swelling to left ankle
## 21991                                                                                                                                                                                                                                EE claimed she was infected by lice
## 21992                                                                                                                                                                      EE claimed strained pain in left elbow from repetitive motion in daily work and heavy lifting
## 21993                                                                                                                                                  EE claimed to have stepped off of curbing in frontof post #1, and pulled or sprained a muscle in lower left back.
## 21994                                                                                                                                                                                               EE claimed to pull arm muscle lifting saddles or campers onto horses
## 21995                                                                                                                                                                                                                   EE claiming asbestosis from exposure to asbestos
## 21996                                                                                                                                                                                                EE claiming treatment for job related stress pl-atty: pam destefano
## 21997                                                                                                                                                                              EE claiming work related carpal tunnel in both hands as a result of repetitive motion
## 21998                                                                                                                                          EE claims back pain after series of work days 10/9-10/26-carrying quickcrete bags, bending for hours, carrying heavy pack
## 21999                                                                                                                                                                                                                         EE claims bilateral carpal tunnel syndrome
## 22000                                                                                                                                                                                            EE claims bilateral pain in hand from 24 years of repetitive motion job
## 22001                                                                                                                                                  EE claims bruised calf and pain in shoulder down to lower back from continuously lifting resident from wheelchair
## 22002                                                                                                                                                                                                                  EE claims carpal tunnel syndrome for computer use
## 22003                                                                                                                                                                                                   EE claims carpal tunnel syndrome from repetitive use of keyboard
## 22004                                                                                                                                                                                                                       EE claims carpal tunnel syndrome from typing
## 22005                                                                                                                                                                          EE claims carpal tunnel syndrome in rt hand from repetitive use of keyboard, and stapling
## 22006                                                                                                                                                                                        EE claims carpal tunnel syndrome rt hand from use of telephone and computer
## 22007                                                                                                                                                                                      EE claims chronic injury to rt shoulder, arm and fingers from use of computer
## 22008                                                                                                                                                                                      EE claims conducting fence test & slipped & fell injuring right knee and back
## 22009                                                                                                                                                                                                         EE claims constant typing caused lt carpal tunnel syndrome
## 22010                                                                                                                                                                                   EE claims development of a cyst from repetitive computer mouse and keyboard work
## 22011                                                                                                                                                                         EE claims dx of hyperacusis/tinnitus resulting from noise emitted from computer hard drive
## 22012                                                                                                                                                                                                                     EE claims fibromyalgia aggravated by wc injury
## 22013                                                               EE claims he and two other persons were transporting a heavy tabletop using 2 dollies. One of the dollies got caught on the door mat, causing the tabletop to slide off and land on EE left foot. ()
## 22014                                                                                             EE claims he had left the shop to start work, his vehicle hit another vehicle at the intersection of gorman & sullivan streets, when the other car ran a red light. ()
## 22015                                                                                                                                                   EE claims he lifted a bag of trash into the dumpster when his wrist was cut by an object inside the trash bag ()
## 22016                                                                                                                                                                  EE claims he planted his left leg to kick a soccer ball during training and his knee gave out. ()
## 22017                                                                                                        EE claims he stepped onto a ladder bracket to step onto the back walkway of the trailer. The ladder bracket broke and he fell onto edge of metal walkway ()
## 22018    EE claims he was applying salt to snow & ice areas to the back side of dh hill library, he stepped on an ice patch, and fell onto his back and slid down the ramp about 8 feet. A few hours later, he returned to finish the salting & slipped & fell again. ()
## 22019                                                                                                   EE claims he was attempting to administer an injection into a large uncooperative pig, the needle came out of the patient and sprayed the EE in the left eye. ()
## 22020                                                                                                                                         EE claims he was bent down to clean the bottom window ledges, when he stood up, he hit his head on top of window ledge. ()
## 22021                                                                                                                                                    EE claims he was bitten on his right hand by a patient (cat), while performing an evaluation on the patient. ()
## 22022                                                             EE claims he was carrying/dragging/lifting a 150 pound dummy across the popat field repeatedly. Lifting the dummy & placing it in a police car. Felt intense pain in the lower body (testicle) area ()
## 22023                                                                                                                            EE claims he was cleaning a baseboard table when he hurt his right hand with the end of a metal that was around the baseboard table. ()
## 22024                                                                                                                                          EE claims he was closing the door between the yellor room and main area, and the door closed on his left middle finger ()
## 22025                                                                                                                   EE claims he was crossing over a duct and hit his head on an electrical junction box, while checking on an hvac problem in a mechanical area. ()
## 22026                                                                                                                                                          EE claims he was decending a wall ladder that leads to the catwalk. EE claims his knee hit against a pipe
## 22027                                                                                                                                                     EE claims he was drilling a hole in a metal strap, the drill slipped, EE's head went down & hit a metal piece.
## 22028                                                                                                                                                             EE claims he was emptying buckets in the mop room and turned and banged his head on the hose mount. ()
## 22029                                                                                                                                          EE claims he was getting out of the back of the service truck when he slipped and fell, lift gate was wet and slippery ()
## 22030                                          EE claims he was in process of operating a front end loader to empty a dumpster. He saw a fire coming from the exhaust. Was putting out fire when a burning glove someone left on the exhaust fell onto his right hand ()
## 22031                                                                                                                                        EE claims he was installing a track that came off a mini skid steer, that prying and pulling on track strained his back. ()
## 22032                                                                                                                                                                   EE claims he was installing an air supply grill and some fiberglass particles blew into his eye.
## 22033                                                                                                                                         EE claims he was jointing plexiglas on jointer, small chards of plexiglas shot out of jointer hitting corner of his eye ()
## 22034                                                                                                              EE claims he was just outside the segregation building front door and the holding it open ith his rt hand waiting wind pushed the door closed on hand
## 22035                                                                                                                                                                    EE claims he was leaning against a file cabinet and a glass framed painting fell on his head ()
## 22036                                                                                                                              EE claims he was lifting a cabinet onto a truck bed, he turned to set the cabinet down and felt a pain in his lower left side of back
## 22037                                                                                                        EE claims he was lifting a vacuum pump from the floor to a dolly, the pump slipped out of his hand and caught his finger between the dolly and the pump. ()
## 22038                                                                                  EE claims he was loading biohazard bags onto cart to be disposed, when he grabbed the bag, a piece of broken glass poked through the bag and cut his finger through his glove. ()
## 22039                                                                                                                             EE claims he was on international travel to kenya and uganda and upon returning home, had cramps and pain in his calves and thighs. ()
## 22040                                                                                                               EE claims he was on the floor, patching a hole in the floor. When he started to get up, he felt a pop and sharp pain in the back of his left knee ()
## 22041                                                                                                    EE claims he was opening the dumpster door to deodorize the dumpster and ants got on his right hand, wrist and arm. It was dark and EE did not see the ants. ()
## 22042                                                                                      EE claims he was organizing his work area, placing items in a beaker and lower part of his thumb was punctured by a pasteu pipette, that someone had placed in the beaker. ()
## 22043                                                                                                                                 EE claims he was participating in skill development activity, having to do with racquet sports. He tore the muscle in his calf. ()
## 22044                                                                                                                       EE claims he was picking up holly bush clippings with a pitchfork to load into truck, pitchfork hit a brick sticking up, jarred his elbow ()
## 22045                                                                                                                                               EE claims he was pulling tree limbs out of dump truck to put them in a chipper and felt a pop in his right elbow. ()
## 22046                                                                           EE claims he was pushing a cart from the dumpster. The cart wheels hit a raised portion of brick concrete, cart suddenly stopped, causing EE to hit his right foot on corner of cart. ()
## 22047                                                                                                            EE claims he was reinstalling the mast on the forklift, while unhooking the chain, a piece of metal or glass stuck in his right hand thru his glove. ()
## 22048                                                                                                                                                             EE claims he was scraping brick sidewalks to remove ice and the constant jabbing made his arm hurt. ()
## 22049                                                                                                                                                  EE claims he was sweeping, he stopped to gather the dirt, lifted his head and hit his head on edge of a locker ()
## 22050                                                               EE claims he was tearing down the inlets to the pasteurized tanks and bringing the parts to the cop vat, when he slipped on the steps & fell, hitting his back & buttocks on corner of the steps. ()
## 22051                                                                                                    EE claims he was traveling west on ligon street in company vehicle and he glanced over at his radio, and crossed method road and was hit by another vehicle. ()
## 22052                                                                                                                                                                EE claims he was trying to return a patient to his cage, when the patient bit him on his right hand
## 22053                                               EE claims he was under a sink tightening two fittings together with channel locks and adjustable wrench. The wrench slipped off the fitting and out of his hand, his hand and finger then hit the pipe very hard. ()
## 22054                                                                                                                                                                                      EE claims he was using a box cutter to open a box and cut his right thigh. ()
## 22055                                                                                          EE claims he was using a hand saw to cut a piece of wood, the saw slipped and cut the second knuckle on left index finger. He was holding the wood with his left hand. ()
## 22056                                                                                                                       EE claims he was using a shovel to clear entrance ways of ice and snow. The next day, he was having pain in his lower right back and leg. ()
## 22057                                                                                                                                           EE claims he was using a weedeater to cut tall grass at a fence line and something flew up and struck him on the nose ()
## 22058                                                                                                                                  EE claims he was using his pocket knife to cut open a carton of copy paper and swung the knife upward and cut his left forearm ()
## 22059                                                                         EE claims he was walking from conference table in director's office to her desk, turned corner to get behind desk, hit his knee on free standing magazine table & fell to floor in pain ()
## 22060                                    EE claims he was walking into a meeting, he moved over to get out of the way of a vehicle, he stepped on uneven surface, causing his foot to roll over the edge of the concrete. Lost his balance and fell onto the asphalt. ()
## 22061                                                                                                                EE claims he was walking out the back door at the end of his work shift, cut the tip of left thumb on the bent stainless steel on the exit door. ()
## 22062                                                                                                                         EE claims he was working with another mechanic removing a piece of metal from a cooling tower, and he bumped his knee on piece of metal ()
## 22063                                                                                                                                                                    EE claims headache, chemical taste in mouth, burning eyes, weak and sluggish, and upset stomach
## 22064                                                                                                                                        EE claims her nose became sore and irritated while using spray paint and sandpaper while distressing books and documents ()
## 22065                                                                                                                                                                                                                 EE claims herniated l5 disc from lifting trash bag
## 22066                                                                                                                                                                                                                        EE claims hip pain from repetitive climbing
## 22067                                                                                                                             EE claims his left foot slipped while climbing a permanent ladder, scraping his shin and he felt pain in the heel of his left foot. ()
## 22068                                                                                                                                                                                                                   EE claims increased pain and numbness in rt hand
## 22069                                                                                                                                                                       EE claims injury from repetitive motion of data entry. Lt arm, shoulder, forearm, and wrist.
## 22070                                                                                                                                                                                                                                       EE claims job related stress
## 22071                                                                                                                                                                                                                   EE claims knot of rt wrist from excessive typing
## 22072                                                                                                                                                                                                                                            EE claims latex allergy
## 22073                                                                                                                                                                                                                                        EE claims left sided hernia
## 22074                                                                                                                                                                                           EE claims limited seating and leg room in golf cart caused lumbar strain
## 22075                                                                                                                                                                                                      EE claims low back pain arising out of motor vehicle accident
## 22076                                                                                                                             EE claims mental anquish after he & another co- worker saw three ropes tied in hangman/noose knotsin a bucket in one of the buildings.
## 22077                                                                                                                                                                                                                  EE claims nausea, chest pain, and lightheadedness
## 22078                                                                                                                                 EE claims neck and back strain from working in station not suitable for EE physically- appropriate equipment was lost in the flood
## 22079                                                                                                                                                                                                                                EE claims neck pain from data entry
## 22080                                                                                                                                                                                             EE claims neck pain from sitting long periods of time at steno machine
## 22081                                                                                                                                        EE claims neck, back and leg pain from working in front of computers or reading student assign. For a longer period of time
## 22082                                                                                                                                                                                           EE claims nerve damage in both arms due to repetitive motion from typing
## 22083                                                                                                                                                                                                                 EE claims nose bleeding, headaches and sore throat
## 22084                                                                                                                 EE claims numbness and discomfort in right hand in3/2003-over time discomfort increased-3/2006 had anerve cond. Study-diagnosed with carpal tunnel
## 22085                                                                                                                                                                                                                             EE claims numbness and pain in rt hand
## 22086                                                                                                                                                                                                  EE claims numbness and tingling in left hand from use of keyboard
## 22087                                                                                                                                                                      EE claims occupational depression from stressors and other demeaning comments from supervisor
## 22088                                                                                                                                                          EE claims over period of time while loading trash truck, he developed an hernia on lt side of groin area.
## 22089                                                                                                                                                                                                                   EE claims pain and burning in wrists from typing
## 22090                                                                                                                                                                                      EE claims pain and tingling in rt hand from repetitive keyboarding and typing
## 22091                                                                                                                                                                                                                   EE claims pain down arm with tingling into hands
## 22092                                                                                                                                                                                                         EE claims pain in both arms, hands, and wrists from typing
## 22093                                                                                                                                                                                             EE claims pain in both hands from repetitive use of keyboard and mouse
## 22094                                                                                                                                                                             EE claims pain in both wrists and arms from repetitive use of keyboard 3-4 hours a day
## 22095                                                                                                                                                                                                            EE claims pain in hands and arms from repetitive typing
## 22096                                                                                                                                                                                                 EE claims pain in left wrist from lifting and transferring clients
## 22097                                                                                                                                                                                                                    EE claims pain in lt hand from wrist to fingers
## 22098                                                                                                                                                                                               EE claims pain in rt and left wrist from using computer 8 hours/ day
## 22099                                                                                                                                                                                                       EE claims pain in rt arm and hand from typing at a high desk
## 22100                                                                                                                                                                                                     EE claims pain in rt hands, wrist and arm from use of computer
## 22101                                                                                                                                                                                               EE claims pain in rt wrist and shoulder from repetitive interpreting
## 22102                                                                                                                                                                                               EE claims pain in rt wrist from repetitive striking of steno machine
## 22103                                                                                                                                                                                                EE claims pain in shoulder from change in set up of computer system
## 22104                                                                                                                                                                               EE claims pain in wrist and hands from use of keyboard and mouse over several months
## 22105                                                                                                                                                          EE claims pain in wrist from lifting and pulling trays in washroom **given 10% ppd rating to right hand**
## 22106                                                                                                                                                                                                                EE claims pain in wrist from working with computers
## 22107                                                                                                                                                                                                           EE claims pain the rt arm from typing on laptop computer
## 22108                                                                                                                                                                         EE claims possible carpal tunnel syndrome in both hands from repetitive motion on keyboard
## 22109                                                                                                                                       EE claims progressive pain in lower back from sitting several hours a day, answering phones, opening mail and using computer
## 22110                                                                                                                                       EE claims radiographs were being taken on the patient and the patient was struggling and scratched her on her neck and chin.
## 22111                                                                                                                                           EE claims received a spider bite while weedeating the grounds at deppe hq; he didn't notice the bite until sat the 29th.
## 22112                                                                                                                                                                                                       EE claims repetitive motion from job duties reported 6/26/00
## 22113                                                                                                                                                                                                               EE claims repetitive motion injury from interpreting
## 22114                                                                                                                                                            EE claims repetitive motion injury to both hands from pulling files and reviewing charts- turning pages
## 22115                                                                                                                                                                                                               EE claims repetitive motion with left hand and wrist
## 22116                                                                                                                                                                                                             EE claims repetitiver motion in rt elbow from painting
## 22117                                                                                                                                                                                                        EE claims respiratory problems from smelling stagnant water
## 22118                                                                                                                                                                  EE claims rt carpal tunnell from job duties-chart maintenance, filing, pulling charts, and typing
## 22119                                                                                                                                                                                                   EE claims rt wrist and hand pain from repetitive use of computer
## 22120                                                                                                                                                                                   EE claims she becomes hoarse when she remains in the office for a period of time
## 22121                                                                                                                                                                       EE claims she fell on uneven ground/pavement at the entrance of the dock before the gate. ()
## 22122                                                                                   EE claims she grabbed the coffee filler to empty coffee grounds, did not realize container was full of water. Container fell into bucket and hot water splashed on EE's hand. ()
## 22123                                                                                                                                                       EE claims she injured her right hand while carrying a water polo goal. Her hand slipped and hit the pole. ()
## 22124                                                                                                                                                                                                            EE claims she slipped on ice and fell to the ground. ()
## 22125                                                                                                                                                           EE claims she slipped on the ice after exiting her car. States her left knee twisted and then popped. ()
## 22126                                                                                                                 EE claims she slipped on wet floor, fell and hit her head on a garbage can, scraped her shoulder & forearm and left little finger on floor rack ()
## 22127                                               EE claims she was attempting to take the horse's temperature, the horse moved away. The EE backed away from the horse, then the horse turned and kicked the EE right elbow before she could get out of the stall. ()
## 22128                                                                                                                         EE claims she was attempting to turn a cow around to move into a laneway toward a chute, the cow reared her head back and hit EE's hand ()
## 22129                                                                                                                                                                                           EE claims she was bitten by a spider. No evidence of spider. Right foot.
## 22130                                                                                                                                             EE claims she was cleaning tables and a desk in the library and hit her right foot on the bottom frame of the desk. ()
## 22131                                                                                                                                          EE claims she was cleaning the deli bar and cut her finger on a sharp edge on the metal bar. It cut through her glove. ()
## 22132                                                                                                                                             EE claims she was cutting a bagel and cutting the wrong way and the knife slipped and cut her finger on her right hand
## 22133                                                                                                                                                            EE claims she was cutting a croissant, using a new cutting knife, and cut the tip of her left thumb. ()
## 22134                                                                                                                                EE claims she was cutting bagels, when she finished, she tripped over herself and accidentally pushed the knife into her finger. ()
## 22135                                                                                                       EE claims she was cutting plastic for drawer divisions with a box cutter, plastic is supposed to snap where scored. When it snapped, EE's finger was cut. ()
## 22136                                                                                                                                                                            EE claims she was cutting rolls and cut the palm of her left hand with edge of knife ()
## 22137                                                                                                       EE claims she was departing the motel for last day of extension conference, she tripped on uneven pavement in parking lot of the inn, fell & hit her head ()
## 22138                                                                                                                                                   EE claims she was emptying bucket from dehumidifier, when weight of water shifted and she twisted her left wrist
## 22139                                                                                  EE claims she was emptying recycling paper, cans, bottles, into bins. When she walked away, she stepped on wet bricks with green moss, she slipped & fell against a light pole ()
## 22140                                                                                                             EE claims she was going to take a patient for a walk, removed his muzzle, patient jumped up and bit her right hand that was holding the dog's leash ()
## 22141                                                                                                                                                                     EE claims she was grabbing a dish from next to the waffle iron and burned her right forearm ()
## 22142                                                                                                                                                           EE claims she was hiking with a backpack, slipped on a trail and caught herself with her right wrist. ()
## 22143                                                                                                                                            EE claims she was holding bar handle of machine & when she turned it loose, her hand & wrist startedto hurt & swell up.
## 22144                                                                                                                                                                                        EE claims she was intubating a cat and the cat bit her left index finger ()
## 22145                                                                                                                                                                   EE claims she was leaving the building from a majors fair, she slipped and fell on the stairs ()
## 22146                                                                                          EE claims she was lifting a 35 lb dog with another employee, using a green pad. EE was holding corners of pad to lift dog onto a cart and felt a pop in her left wrist ()
## 22147                                                                                                                                                                     EE claims she was lifting and moving stacks of containers and aggravated an old back injury ()
## 22148                                                                                                                                                            EE claims she was opening the top of a cat carrier and the cat lunged and bit EE on her right wrist. ()
## 22149                                                                                                                                                                 EE claims she was participating in firearms training when the slide on her pistol cut her wrist ()
## 22150                                                                                                                                                              EE claims she was pulling items off the grill and burned her right hand/fingers on the grill press ()
## 22151                                                                                                                           EE claims she was reaching for a pan on an upper shelf. Pan had scalding water in it. The pan fell and water ran down EE arm and back ()
## 22152                                                                                                                                                      EE claims she was removing a muzzle from a dog after completing its treatments and the dog bit her left hand.
## 22153                                                                                                           EE claims she was removing the vacuum from the pool and wrapping vacuum cord, the battery box from the vacuum fell off its rack and landed on her toe ()
## 22154                                                                                                               EE claims she was restraining a horse for tubing and the horse rammed against the stocks, smashing her hand between the stocks bar and the horse. ()
## 22155                                                                                                                                        EE claims she was running experiments and reactions, got a chemical burn on her right hand due to exposure to a chemical ()
## 22156                                                                                                                                                 EE claims she was running the cash register, checking out customers and hit her left hand on the register stand ()
## 22157                                                                                                                                     EE claims she was sitting in the control booth shewas leaning over & the wheel on chair did not roll& she fell on her rt elbow
## 22158                                                                                                 EE claims she was slicing open a croissant when the knife cut her left ring finger. She then rinsed t he blood off her finger, became lightheaded, and fainted. ()
## 22159                                                                                                                                      EE claims she was unloading hay bales off a truck. The bales are wrapped with wire. A piece of wire punctured EE left leg. ()
## 22160                                                                     EE claims she was unloading materials out of the van to a cart on the landing, she moved to readjust materials on bottom of cart, slipped and fell off the step, weight landed on left hand ()
## 22161                                                                                                  EE claims she was walking back to her office from her supervisor's office. EE was getting ready to sit down in her chair and felt a sting on her stomach area. ()
## 22162                                                                                                                                                            EE claims she was walking on the sidewalk at daniel hall and slipped on the ice and fell onto her knees
## 22163                                                                                                                           EE claims she was walking out of room 2118r and slipped and fell, due to residue from a deodorizer that had been sprayed in the room. ()
## 22164                                                                                                                                                                                          EE claims she was walking up stairs and slipped on wet leaves and fell ()
## 22165                                                                                                              EE claims she was weighing reagent, she inhaled negligible amount of the chemical which was a respiratory irritant. Has minimal throat irritation. ()
## 22166                                                                                   EE claims she was working at the microscope, she attempted to sit on a stool. The stool rolled and EE fell, hitting her chin and head on a table, she then fell to the floor. ()
## 22167                                                                                                                                            EE claims skin infection from continuous contact with poisonous plant while conducting vegetation census in puerto rico
## 22168                                                                                                                                                                                                             EE claims strain in rt shoulder from repetitive motion
## 22169                                                                                                                                                                                              EE claims strain to both hands and wrists from repetitive keyboarding
## 22170                                                                                                                                                                                                            EE claims strained rt shoulder from working at computer
## 22171                                                                                                                                                          EE claims stress as result of harrassment from co-workers and sexual harrassment by center administrator.
## 22172                                                                                                                                                       EE claims stress due to increased number of injuries she had had and the high level of stress in cluster 7-9
## 22173                                                                                                                                                                                         EE claims tenderness and swelling in rt arm while doing normal work duties
## 22174                                                                                                                                                                               EE claims tendonitis in both hands from using laptop computer in an awkward position
## 22175                                                                                                                                                                                                            EE claims tendonitis in rt wrist from repetitive motion
## 22176                                                                                                                                                                                                      EE claims tendonitis of left hand from repetitive keyboarding
## 22177                                                                                                                                                                        EE claims that during a use of force that his right thumb was jammed against the door edge.
## 22178                                                                                                              EE claims that he entered the admin. Builidng and wiped his feet on floor mat. Stepped off mat & hisfoot slipped from beneath him causing him to fall
## 22179                                                                                                                                                        EE claims that he stepped on a piece of ice with rt foot fell on his hip and hands and hit back of his head
## 22180                                                                                                                                                     EE claims that he was escorting an inmate in e block when he slipped and fell on the wet freshly mopped floor.
## 22181                                                                                                                                                        EE claims that head hit the corner of a cabinet in the ladies room, EE hit head when rising from a chair ()
## 22182                                                               EE claims that his arms were sore, tingling with numbness from ongoing and repetitive motion from spreading mulch and the vibrations from using equipment such as blowers, leaf vacuums & mowers. ()
## 22183                                                                                                                           EE claims that inmate charged at him and he placedinmate on the ground and struck his right shoulderand neck on the ground when he fell.
## 22184                                                                                                                                                                      EE claims that over a 2 month period of time rt hand, arm shoulder has become sore and tender
## 22185                                                                                                                               EE claims that she stepped out of switchboard going to parking lot and twisted her left ankle & also injured right palm of her hand.
## 22186                                                                                                                   EE claims that she was leaving the staff dining area and took a short cut across a rope barrier and her foot struck the rope causing her to fall
## 22187                                                                                                                  EE claims that she was looking in delta for offcier's cabinet for some gloves when she hit her head on the officer's desk as she was bending down
## 22188                                                                                                                                                                                EE claims that she was preparing food and reached for a knife and cut her finger ()
## 22189                                                                                                                                                                         EE claims that she was walking up stairway and slipped & hit her right knee and left elbow
## 22190                                                                                                                              EE claims that while using a pickaxe to take turfgrass samples, the iron part loosened from the wood handle and fell onto his head ()
## 22191                                                                                                                                                         EE claims that while watering plants from the water truck, he was stung on his left thumb by an insect. ()
## 22192                                                                                                                                                EE claims the odor of mildew/molding from water leaks at her workstation is causing sinus and other body reactions.
## 22193                                                                                                                                                                                                    EE claims to have hit her right arm below the elbow on the door
## 22194                                                                                                                                                                                            EE claims weakness and soreness in rt wrist from increase computer work
## 22195                                                                                                                                                           EE claims while stepping into the security van, she became dizzy and fell backwards, striking the ground
## 22196                                                                                                                                     EE claims while untightening steel bars from ceiling as part of a research project, a steel nut fell off and hit his mouth. ()
## 22197                                                                                                                                                                                                                EE claims wrist and arm pain from repetitive motion
## 22198                                                                                                             EE clalims that inmate curtis alston charges at him & he placed inmate alston on the ground & struckhis rt shoulder & neck on the ground when he fell.
## 22199                                                                                                                                                                                                                  EE clamped on paper cutter mashed and cut finger.
## 22200                                                                                                                                                                                            EE cleaing using a bleach solution which splashed and went into rt eye.
## 22201                                                                                                                                                                EE cleaing windowns stooping down and got up to fast which caused a cramp in upper leg and EE fell.
## 22202                                                                                                                   EE cleaining elevator tracks in a squatting posi- tion stood up lost her balance hitting her head against mop wringer. Bent glasses-injured eye.
## 22203                                                                                                                                                                          EE clean ball with clorox wipe, begin ball toss activity, eyes started burning & itching.
## 22204                                                                                                                                                                   EE cleaned floor with exercise equipment on it, thebars were low, EE hit head on her right side.
## 22205                                                                                                                                                                                                                    EE cleaning & vaccuming offices & injured back.
## 22206                                                                                                                                                                                           EE cleaning a pan, when cleaner popped entering left eye. Eye irritation
## 22207                                                                                                                                    EE cleaning animal bedding cages, scraping wast material out of tercoplast cages, got bedding in eyepopped under safety glasses
## 22208                                                                                                                                      EE cleaning animal room, took floor drain cover off, blower unit accidentally fell into drain, tipped over and hit EE on back
## 22209                                                                                                                                                               EE cleaning barrell of shotgun, cleaning rod slippdand EE hand hit end of barrell, cut to mid finger
## 22210                                                                                                                                                                  EE cleaning basement with oil and floor finish remover and wipe forehead with arm left eye burned
## 22211                                                                                                                                                                       EE cleaning bathroom sink with sentinel disfectantsolution and it splashed into rt eye; burn
## 22212                                                                                                                               EE cleaning bathroom-got upon a chair to wipe off shelf-getting down and feet slipped causing EE to fall landind on buttock and head
## 22213                                                                                                                                 EE cleaning beverage area attempted to remove 5-gal. Soda mix box he lifted & twisted at same time causing a strain in groin area.
## 22214                                                                                                                                                                     EE cleaning breakroom-bent down to pick up can andwhen standing up hit head on wooden cabinet.
## 22215                                                                                                                                                                                                     EE cleaning broken desk chair arm wrist which struck rt wrist.
## 22216                                                                                                                                                                 EE cleaning bullentin board, EE caught ring fingeron exposed head of push pin, cuttin right finger
## 22217                                                                                                                          EE cleaning calcuim buildup from drain outside bldhand slipped causing rt thumb to jam into concretecontusion rt thumb (under fingernail)
## 22218                                                                                                                                                                      EE cleaning campsite-stepped back and tripped overa lrg limb falling to the ground very hard.
## 22219                                                                                                                                    EE cleaning candy off tower floor when he slipped on wet floor and hit rt elbow on steel frame of tower chair. Bruised rt elbow
## 22220                                                                                                                                                                                              EE cleaning cart when hand hit spray trigger and spayed her right eye
## 22221                                                                                                                                                                     EE cleaning cart, when she hit the trigger on a bottle full of chemical.. Sprayed in right eye
## 22222                                                                                                                                                                                                                        EE cleaning cat room-rash broke out on legs
## 22223                                                                                                                                                                                                 EE cleaning classroom began itching & noticed red patches on r arm
## 22224                                                                                                                                                          EE cleaning classroom reached to pick up some paper and slipped on liquid on the floor hit rt side of arm
## 22225                                                                                                                                                                     EE cleaning cold block prior to use, broken capillary came out and punctured gloves on rt hand
## 22226                                                                                                                                                                   EE cleaning commissary and moving boxes around whncase of beans fell on his hand sore right hand
## 22227                                                                                                                                                                         EE cleaning control desk, jammed her lt pinky finger in the desk. Injured lt pinky finger.
## 22228                                                                                                                                        EE cleaning control room, reached over to pick up 5-gallon bucket full of water, hurt something in back. Pain in lower back
## 22229                                                                                                                                                      EE cleaning cooling tower metal edge of the pipe insulation sleeving material and cut his right middle finger
## 22230                                                                                                                                      EE cleaning corsers and edges w/stripper soap- while getting on elevator slipped and fell on rt knee, lower back and rt side.
## 22231                                                                                                                                                                                           EE cleaning counter in kitchen, cut rt index finger on electrical outlet
## 22232                                                                                                                 EE cleaning debri in pasture. Using chain saw cut up light line pole which had fallen. Pulled rope catch in rt shoulder. Pulled muscle rt shoulder
## 22233                                                                                                                                EE cleaning debris from north slope - EE stepped in hole - causing his weight to shift to rt leg sprained rt knee - slight swelling
## 22234                                                                                                                                                                EE cleaning deck with cold water and prolonged exposure to damp and cold caused arthritis in rt hip
## 22235                                                                                                                                 EE cleaning dorm area that inmate had gone to clean fan as officer turned back around to fan blew dust on him - had asthma attack.
## 22236                                                                                                                                                                                                EE cleaning facility in wood working area and got something in eye.
## 22237                                                                                                                       EE cleaning floor on post #6 when mop bucket from floor to porch - lifted mop bucket releasing mop bucket felt tingle & pain in shoulder lt.
## 22238                                                                                                                                                                                        EE cleaning floor with wax stripper and slipped and fell fracture tailbone.
## 22239                                                                                                                                                                                                                        EE cleaning floors in gameroom on her knees
## 22240                                                                                                                                                                                                  EE cleaning hurricane debris, stepped in hole, twisted left knee.
## 22241                                                                                                                                                                                   EE cleaning in mop closet-shaking out dust rag when particules went into rt eye.
## 22242                                                                                                                                                                                 EE cleaning isolation for pigs-turned around and was stuck in rt eye by tree limb.
## 22243                                                                                                                                                                                                             EE cleaning out bens and something flew into left eye.
## 22244                                                                                                                                              EE cleaning out bin in bottom of refrigerator, while wiping top of bin, something popped in her right shoulder & neck
## 22245                                                                                                                                                                                                                 EE cleaning out cage and cat bit EE on rt forearm.
## 22246                                                                                                                                                                                                        EE cleaning out closets and stepped wrong and turned ankle.
## 22247                                                                                                            EE cleaning out dead brush, shrubbery from banks, weed eating, placing dead brush on trunck removal came into contact with poison ivy. Arms, neck, face
## 22248                                                                                                                                         EE cleaning out files in office. Stack of books from bookcase fell and mashed or jammed left thumbwhen tried to catch them
## 22249                                                                                                                                                                             EE cleaning out floor drain and stood up in a small space and felt pain in lower back.
## 22250                                                                                                                                                                        EE cleaning out the trap of vaccum cleaner top went down on left index finger causing a cut
## 22251                                                                                                                                                                                                        EE cleaning out walk-in closet and ran into overhead shaft.
## 22252                                                                                                                                                                                      EE cleaning out water tank upon leaving tank slipped and hit EE in chest area
## 22253                                                                                                                                         EE cleaning parts near filler machine-during cleaning exhaust started spraying out cleaning solution-some got in right eye
## 22254                                                                                                                                                                     EE cleaning patient teeth instrument slipped, EE received puncture to tip of right ring finger
## 22255                                                                                                                                                                           EE cleaning pig stall and pulling pig back into stall when he felt a pull in rt shoulder
## 22256                                                                                                                                           EE cleaning rabbit cages & EE slipped on cleaning solution and hit back against rabbit rack and felldown, straining back
## 22257                                                                                                                                                                     EE cleaning rails bent down to dust bottom of railand struck rt knee against metal guard rail.
## 22258                                                                                                                                                                      EE cleaning rat cages and rat scratched left forearm resultin in hives, itching and swelling.
## 22259                                                                                                                                             EE cleaning room after patient seen-moved bottle of tca-cap not secure and splashed on both arms and rt side of chest.
## 22260                                                                                                                                                               EE cleaning room alleges allergy to paint thiner in use caused couching, runny nose and watery eyes.
## 22261                                                                                                             EE cleaning serving trays, he went to broom closetand pullled 2 brooms off wall to get towel pulled down second one handle chipped off splinter lt eye
## 22262                                                                                                                                                                                                        EE cleaning sewer line, pulled back with push/ pull motion.
## 22263                                                                                                                                                                             EE cleaning shower with chem-cole and slipped on wet floor and fell twisting left knee
## 22264                                                                                                                                                                                EE cleaning showers in martin village and picked up scabies on both hands and arms.
## 22265                                                                                                                                                                                           EE cleaning showers in women's locker room slippedand fell on left knee.
## 22266                                                                                                                                                                                                            EE cleaning sink and chemical sprayed back into rt eye.
## 22267                                                                                                                                                                                       EE cleaning snow from park trucks & stepped on ice& slipped & fell onto back
## 22268                                                                                                                                                                                              EE cleaning soot and debris from building, noticeddiscomfort in eyes.
## 22269                                                                                                                                                      EE cleaning stairs in one of apartments EE slippedand fell on the two toes on right foot bruise to right toes
## 22270                                                                                                                                                                                                         EE cleaning sterlizing patient room, right hand 3rd finger
## 22271                                                                                                                                                                                                          EE cleaning storage are when hydralic jack fell onrt foot
## 22272                                                                                                               EE cleaning storage closet of old files that were authorized by aoc to be destroyed. Box of citationbook on top shelf fell landed on EE lt shoulder.
## 22273                                                                                                                                                     EE cleaning the storage room when a student pulledout a pipe and threw it across the room hitting eeon rt foot
## 22274                                                                                                                                                                     EE cleaning the stove top-turned it off another eeturned stove back on-EE burned palm of hand.
## 22275                                                                                                                                                                                   EE cleaning trash & cut herself on metal lid between first 2 fingers on rt hand.
## 22276                                                                                                                                                                         EE cleaning trash out of dumpster box - rake struck EE finger- injured rt hand four finger
## 22277                                                                                                                                                                     EE cleaning up chemicals in freezer-crack in lid cause hci to remiage out of bottle into face.
## 22278                                                                                                                                                               EE cleaning up instruments after cleaning inmates teeth, sharp instrument stuck thru skin on rt hand
## 22279                                                                                                                                                               EE cleaning up juice spill in back of trk and slipped and fell hitting rt side rt arm, leg and back.
## 22280                                                                                                                                                                   EE cleaning up old chemicals in freezer-crack in lid and chemicals started coming out into face.
## 22281                                                                                                                                 EE cleaning up spill off table, client spit at EE cleint was ask to leave kitchen, client slapped eeon rt side of face and stomach
## 22282                                                                                                                                                                                                    EE cleaning up work area, dropped a battery on hisright big toe
## 22283                                                                                                           EE cleaning vent when the vent swung open. EE climbed up on chair, then table to close vent. Then losther balance as she was climbing down. Gash forearm
## 22284                                                                                                                                                                 EE cleaning w/oven cleaner. Fan on and blowing toward kettle and blew cleaner in face. Into rt eye
## 22285                                                                                                                                                      EE cleaning weapon, spray solution shot up in eye when it was applied weapon. Injured rt eye - extremely red.
## 22286                                                                                                                     EE cleaning window in tower & she turned round to walk away, tripped on metal chair leg & fell hit her head. Knot on scalp/tenderness rib cage
## 22287                                                                                                                                                                                                         EE cleaning work area, cut her right hand on broken glass.
## 22288                                                                                                                                                           EE cleaningup wheelchair shop-pushed saws to cleanbehind and felt pulling sensation in back. Back strain
## 22289                                                                                                                                                                                        EE clearing basketball ct and someone hit EE with ball, struck EE in rt eye
## 22290                                                                                                                                                               EE clearing brush and leaves on 8/21, then EE had severe rash and irritation from groin to chest. ()
## 22291                                                                                                                                                                                     EE clearing creek at the playing fields and was bitten by fire ants on rt arm.
## 22292                                                                                                                                 EE clearing ditch bank of vegetation and slipped ddown bank side and fell on left elbow, crushed nerve, chipped bone in left elbow
## 22293                                                                                                                                                                                                  EE clearing jammed bowling pin when arm got caughtin the sweeper.
## 22294                                                                                               EE clearing old tires, trash and debris behind pisgah house, hypodermic needle was in ground with debris, needle pierce work glove and needle stuck in right palm ()
## 22295                                                                                                                                                                          EE clearing out belongings from arson fire with shovel and pulled muscle in left forearm.
## 22296                                                                                                                                                                                           EE clearing the north yard of inmates. Reported temperature extremes. ()
## 22297                                                                                                                                                              EE clearing trees from fire lines in swamp. EE crossing a five line & struck his lt leg on a treesnag
## 22298                                                                                                                                                                                           EE clearing vegetation that was infested with poison ivy-arms/hands/legs
## 22299                                                                                                                                                                                                                       EE cliams lifting caused flare up and bleed.
## 22300                                                                                                                                   EE climbed a 10 ft ladder to investigate a safety problem & came down. Felt pain in lower back next morning. Referred to glenda.
## 22301                                                                                                                       EE climbed a container to release a rope when he fell, hitting his chest on the container & back & ead on ground, causing a chest contusion.
## 22302                                                                                                                                       EE climbed fence to access monitoring well site, tripped on chain link fence, immediately felt pain in rt leg calf muscle ()
## 22303                                                                                                                EE climbed in chair to reach bottle of omega, when comming down, stepped on utility cart with rollers and lost balance, fell, right elbow and hand.
## 22304                                                                                                                                               EE climbed into truck bed to get a better view off accident scene. He jumped from truck bed to roadway. Pain in head
## 22305                                                                                                                EE climbed ladder to replace bolts in lid. Left leg of ladder gave away causing ladder to fall to left. EE grabbed a pipe, hung there and slid down
## 22306                                                                                                                 EE climbed on top of a pallet of boxes to get another box off the top of the pallet. The top boxfell and EE lost balance as he was trying to catch
## 22307                                                                                                                                                                                             EE climbed on top of desk to remove notebooks fromshelves above desks.
## 22308                                                                                                                                                                      EE climbed on tractor to fill engine with radiatorfluid, while stepping down EE injured back.
## 22309                                                                                                                                                                                        EE climbed on trailer to re-secure exhibit when he slipped and twisted knee
## 22310                                                                                                                                                                        EE climbed onto truck to get screwdriver-stepping over tailgate when foot slipped and fell.
## 22311                                                                                                                                          EE climbed step stool to retrieve a light weight box and repeated process to replace the box on the shelf, replaced stool
## 22312                                                                                                                                EE climbed tower to work on a high power radio antenna which he thought had been disconnected... Which was not.. Possible radiation
## 22313                                                                                                                     EE climbing a fixed ladder taking tools and refrigto the roof with our mechanic his hand slipped offladder. Bruised lower rt leg and buttocks.
## 22314                                                                                                                             EE climbing down into a ditch to investigate an accident when he began to fall-att to catch self w/left hand before falling to ground.
## 22315                                                                                                                                                 EE climbing down ladder, bumbed hand on side while grasping metal fragment broke off unable to removesome of metal
## 22316                                                                                                                                EE climbing interior staircase; tripped between ground and first floor and hit the bony area below right knee on the step's edge ()
## 22317                                                                                                                                                                                                    EE climbing into attic off of scaffolding and his knee twisted.
## 22318                                                                                                                                                                                         EE climbing ladder EE hit head on unistrut and jammed neck. Strained neck.
## 22319                                                                                                                                                                             EE climbing ladder to conduct inspection a few hrs. Later complaints of ankle pain. ()
## 22320                                                                                                                                                                              EE climbing ladder-while standing on ladder and turning felt sharp pain in left knee.
## 22321                                                                                                                                                                                        EE climbing on back of truck when foot slipped. Eehit neck on side of truck
## 22322                                                                                                                                                                      EE climbing on ladder and foot slipped and EE lost balance and fell with ladder in groin area
## 22323                                                                                                                                                                                            EE climbing on pipe & stretched out leg too far & the knee bent inward.
## 22324                                                                                                                                                                                           EE climbing over hugh loader trying to get it started injury back strain
## 22325                                                                                                                                                     EE climbing stairs in dorm 2c right foot caught step and he fell forward jamming his pinky finger on l-hand ()
## 22326                                                                                                                                                             EE climbing stairs of control room bumped knees onmetal steps & sat down on bar stool & lt knee popped
## 22327                                                                                                                                                                 EE climbing stairs up to tower 2 EE tripped and bumped right leg in shin area. Bruise to right leg
## 22328                                                                                                                   EE climbing steps to booth#2 foot slipped off stepee held to railing with right arm felt pain and heard noise in rt forearm, strain to right arm
## 22329                                                                                                                                      EE climbing steps to next floor, shoe edge caught step, EE fell toward stairs, striking rt wrist andhand on stair tread edge.
## 22330                                                                                                                 EE climbing steps to the rear entrance when foot caught on narrow step overhand. Twisted knee & felagainst wall a couple steps down from rear door
## 22331                                                                                                                                                                                                      EE climbing the low wall middle finger of rt hand was jammed.
## 22332                                                                                                                                 EE climbing tower ladder underneath the tower, hand slipped off the ladder when EE went to catch himself and felt pull in left arm
## 22333                                                                                                                                                                                EE climbing tree to remove a broken branch-branch broke and struck EE above rt eye.
## 22334                                                                                                                                                                                               EE climbing up onto roof, foot slipped off edge injury cut right leg
## 22335                                                                                                                                                                      EE climbing up stairs, tripped on last step and fell on concrete landing. Injured right hand.
## 22336                                                                                                                                                         EE climed ladder to step over to get on ash truck tanker. Foot slipped & EE fell causing fx to lt forearm.
## 22337                                                                                                                                                                                 EE clinbed under desk to hook up computer speakers and something went into her eye
## 22338                                                                                                                                                                                         EE closed a door on his fingers; injured his thumb & pointer on right hand
## 22339                                                                                                                                                                                                                            EE closed a metal door on his rt finger
## 22340                                                                                                                                                                                                                             EE closed bathroom door on left finger
## 22341                                                                                                                                                                                                                      EE closed bathroom door on left index finger.
## 22342                                                                                                                                                                                                                        EE closed bathroom door on left ring finger
## 22343                                                                                                                                                                                                                  EE closed car door and finger was caught in door.
## 22344                                                                                                                                                                                                                            EE closed car door on left index finger
## 22345                                                                                                                                                                                                                                 EE closed car door on right thumb.
## 22346                                                                                                                                                                                                                        EE closed car door on the tip of his finger
## 22347                                                                                                                                                                                                                        EE closed cooler door on left middle finger
## 22348                                                                                                                                                                                    EE closed cooler door, went around table too fast and slipped on the wet floor.
## 22349                                                                                                                                                                                              EE closed desk drawer and a pencil went into her finger. Right third.
## 22350                                                                                                                                                                                                     EE closed desk drawer and jammed her left finger in the drawer
## 22351                                                                                                                                                                                                           EE closed desk drawer on finger, causing nail avul-sion.
## 22352                                                                                                                                                                                                          EE closed desk drawer on her 4th finger on her right hand
## 22353                                                                                                                                                                                                     EE closed door of helicopher on left finger requiring stitches
## 22354                                                                                                                                                                                                                         EE closed door of patrol veh on left thumb
## 22355                                                                                                                                                                                                                  EE closed door on hand injuring left index finger
## 22356                                                                                                                                                                                                                       EE closed door on her finger with a ring on.
## 22357                                                                                                                                                                                           EE closed door on her fingers, see in by urgent care rtw on same day. ()
## 22358                                                                                                                                                                                                                                        EE closed door on left hand
## 22359                                                                                                                                                                                                                                             EE closed door on leg.
## 22360                                                                                                                                                                                                                              EE closed door on right middle finger
## 22361                                                                                                                                                                                                                             EE closed door on right pointer finger
## 22362                                                                                                                                                                                                                          EE closed door on right thumb. Contusion.
## 22363                                                                                                                                                                                                                            EE closed drawer on right hand/swelling
## 22364                                                                                                                                                                                                                        EE closed file cabinet drawer on left thumb
## 22365                                                                                                                                                                                                                                      EE closed finger in car door.
## 22366                                                                                                                                                                                                                       EE closed finger in door during an emergency
## 22367                                                                                                                                                                                                                    EE closed finger in door. Hematoma of rt thumb.
## 22368                                                                                                                                                                                              EE closed fingers in cabinet drawer while trying to get something out
## 22369                                                                                                                                                                                                                        EE closed her rt thumb in the file cabinet.
## 22370                                                                                                                                                                                                                 EE closed his rt hand middle finger in a trap door
## 22371                                                                                                                                                                                                                                 EE closed left hand in milk cooler
## 22372                                                                                                                                                                                                                   EE closed locker door it scraped across my hand.
## 22373                                                                                                                                                                                                                  EE closed lt pinky finger in door - fracturing it
## 22374                                                                                                                                                                                                                               EE closed lt thumb in student's door
## 22375                                                                                                                                                                                                                          EE closed office door on left hand finger
## 22376                                                                                                                                                                                                                               EE closed rt hand finger in van door
## 22377                                                                                                                                                                                                                                          EE closed rt hand in door
## 22378                                                                                                                                                                                                                   EE closed rt little finger in door fracturing it
## 22379                                                                                                                                                                                                                                      EE closed safe door on finger
## 22380                                                                                                                                                 EE closed the car door and it caught him on back, breaking skin enough to cause moderate bleeding for few minutes.
## 22381                                                                                                                                                                                   EE closed the cooler door and the heel of her rt foot got caught under the door.
## 22382                                                                                                                                                                                                                       EE closed the door of a bus on his lt thumb.
## 22383                                                                                                                                                                                       EE closed the door on his fingers... Thumb and pointer fingers on right hand
## 22384                                                                                                                                                                                                      EE closed the door on his right hand injuring her ring finger
## 22385                                                                                                                                                                                        EE closed the door to the truck on his right hand cutting his middle finger
## 22386                                                                                                                                                                    EE closed the drivers car door on right index finger/ finger wedged between door and door frame
## 22387                                                                                                                                                                                                        EE closed the file cabinet drawer on middle and forefingers
## 22388                                                                                                                                                                                                                      EE closed thumb in van after loading clients.
## 22389                                                                                                                                           EE closed window & turned into another window thatwas extended out. He hit the window with his rt eye before he seen it.
## 22390                                                                                                                                                                                                       EE closing activity room door and mashed left middler finger
## 22391                                                                                                                                                                               EE closing bath house-stepped on a ladder to reachdoor-causing door to injured back.
## 22392                                                                                                                                                                                                  EE closing cell door & wedged hi finger between door & door frame
## 22393                                                                                                                                                                                                                                EE closing door & mashed her finger
## 22394                                                                                                                                                                                                          EE closing door and bumped finger on door. Injured finger
## 22395                                                                                                                                                            EE closing door and didn't move hand from between door and the latch. Bruised 2nd & 3rd finger rt hand.
## 22396                                                                                                                                                                                     EE closing door on vec & caught finger between rear door handle & storage rack
## 22397                                                                                                                                                                  EE closing door to dorm and EE placed hand on doorcausing it to close faster mashed finger, bruis
## 22398                                                                                                                                                                                                    EE closing door to mail room when she hit door with right elbow
## 22399                                                                                                                                                                                             EE closing door when inmate slammed door against EE right index finger
## 22400                                                                                                                                                                               EE closing door when right finger was caught in the door. Bruised right ring finger.
## 22401                                                                                                                                                                                                             EE closing door when she caught her finger int thedoor
## 22402                                                                                                                                                  EE closing food passage door to single cell when she caught her finger in door. Bruised second finger on lt hand.
## 22403                                                                                                                                                          EE closing gate, when closing gates together it fell on her right top hand, causing bruising to this area
## 22404                                                                                                                                                    EE closing johnson ward he felt some stings in theback of his head he realized there were yellow jackets, wasp.
## 22405                                                                                                                                                                                  EE closing laundry chute when the gate struck against left forearm scratching him
## 22406                                                                                                                                                                                                    EE closing main door and accidently closed screen door on thumb
## 22407                                                                                                                                                                                            EE closing stall door and caught hand in door fracturing middle finger.
## 22408                                                                                                                                                                                                    EE closing the isolator inside port injury twisted pinky finger
## 22409                                                                                                                                                  EE closing the sally port gates, gate came around and struck her on back of her lt foot & became hung under gate.
## 22410                                                                                                                                                                                           EE closing tray door to unit 1 and caught finger in it cut to rt pointer
## 22411                                                                                                                                                                                        EE closing van door, and the door came back at herpushing right thumb back.
## 22412                                                                                                                                                                                                     EE closing window and trash from window screen blw into rt eye
## 22413                                                                                                                                            EE collapse during line up by falling to floor scratching forehead and then noticed he had a cut on top rt side of eye.
## 22414                                                                                                                                                                                              EE collapsed after completing assessment swim for in-service training
## 22415                                                                                                                                                                                                            EE collasped in the dining hall which supervising lunch
## 22416                                                                                                                                                                                     EE collecting algae for experiments, was snorkeling and cut knee on oyster bed
## 22417                                                                                                                                                                     EE collecting canteen orders, when inmate spit grapefruit juice in her face, hair, and clothes
## 22418                                                                                                                                                                                     EE collecting laundry basket to do laundry and stood up and hit head on shelf.
## 22419                                                                                                               EE collecting parking meter vault boxes. Placed boxes on bumper of truck. One fell EE bent to pickit up. When lifting vault to truck felt sharp pain
## 22420                                                                                                                                                                              EE collecting samples dropped a bag-bent over to retreive bag felt pain in lower back
## 22421                                                                                                                                   EE collecting supplies to draw blood put hand in container to get needle cap came off needle & stuck lt 3rd finger- clean needle
## 22422                                                                                                                                                                                         EE collecting water samples at stream, made contact with poison ivy plants
## 22423                                                                                                                                                                                                       EE collided into side of other vehicle no injuriessubstained
## 22424                                                                                                                                                 EE collided with another vehicle turning in front of him(injury to right hand and neck from air bag) see log notes
## 22425                                                                                                                                                           EE collided with another vehicle while he was assisting stranded motorist. Soreness and scrapes on knees
## 22426                                                                                                                                               EE collided with another vehicle, when vehicle attempted to make a left turn in EE path. Injured left arm and wrist.
## 22427                                                                                                                                                                              EE comes in contact w/claved material and face starts to tingle and burning sensation
## 22428                                                                                                                                                                                                               EE coming back from break and passed out in hallway.
## 22429                                                                                                                                                                            EE coming back from lunch and stepped off sidewalkonto cement into a split in concrete.
## 22430                                                                                                                                                                                  EE coming back from lunch-walking down walkway andstepped in hole hidden by grass
## 22431                                                                                                                                                  EE coming back from restroom tripped on curb outside booth breaking nose, bruise lip, hip, knee & damaged glasses
## 22432                                                                                                               EE coming back inside-closed door-resident came down hall looked out window then tried to get out EE tried to stop him and he pushed EE against door
## 22433                                                                                                                                         EE coming back to work from lunch at about 1410 eefell in bell tower parking lot and broke 2 bones above wrist in left arm
## 22434                                                                                                                                                                                                EE coming down from ladder and struck left elbow on damper linkage.
## 22435                                                                                                                                         EE coming down hall when fire alarm went off-floors were being buffed and EE stepped on a moist spotand fell on left knee.
## 22436                                                                                                                                        EE coming down hallway stepped on slick spot on floor. Tried catch myself before I feel and hit rt index finger on doorway.
## 22437                                                                                                                           EE coming down ladder after putting up a box and made a mis-step steppin to ground. Middle & both side of back into buttocks area - pain
## 22438                                                                                                                                                                                                   EE coming down ladder and missed bottom step straining left knee
## 22439                                                                                                                                                                                                      EE coming down ladder and slipped causing left foot to twist.
## 22440                                                                                                                                                                                               EE coming down ladder-missed the bottome step and twisted left knee.
## 22441                                                                                                                                                                  EE coming down off ladder-missed one step and fellbackwards into the floor and wall injuring back
## 22442                                                                                                                                                                   EE coming down off step ladder-missed last step onladder to floor rt knee gave away and twisted.
## 22443                                                                                                                                                                   EE coming down set of steps when left foot went out from under him and e fell on his right knee.
## 22444                                                                                                                                                                                                        EE coming down stairs and lost balance falling on left knee
## 22445                                                                                                                                                                                                                    EE coming down stairs and slipped on wet floor.
## 22446                                                                                                                                                                               EE coming down stairs and stepped off edge of stair and landed sideways on left foot
## 22447                                                                                                                                                                  EE coming down stairs from setting up headsets forspot operators and slipped and fell on buttocks
## 22448                                                                                                                       EE coming down stairs he stumbled at bottom of stairs and when his foot came incontact w/floor toes hit causing sharp pain. Lt foot and toes
## 22449                                                                                                                                     EE coming down stairs in cell block on fourth flr EE tripped on next to last step and fell to floor with all weight on rt knee
## 22450                                                                                                                EE coming down stairs on fourth or fifth step whenhe told davenport ill be back. EE slid on something EE thinks food and fell into officer rt knee.
## 22451                                                                                                                                   EE coming down stairs slipped on metal edging of stairs legs folded bending at knees causing body to bounce down approx 4 stairs
## 22452                                                                                                                                                                                         EE coming down stairs, foot went out from under eefell back bruise to back
## 22453                                                                                                                                 EE coming down stairs, rt foot slipped on carpet. EE stumbled several steps before falling on 3rd step & hitting head against rail
## 22454                                                                                                                                                                                                                           EE coming down steps & twisted left knee
## 22455                                                                                                                                                                                                                                     EE coming down steps and fell.
## 22456                                                                                                                                                                                                EE coming down steps and lost balance and fell into entrance foyer.
## 22457                                                                                                                                                                                                         EE coming down steps and missed two steps falling on knees
## 22458                                                                                                                                                                                  EE coming down steps and slipped and fell on left elbow, hand, rt shin, foot, hip
## 22459                                                                                                                                                                  EE coming down steps and slipped, attempted to catch self and stepped wrong felt a pain in rt hip
## 22460                                                                                                                                                                                                      EE coming down steps mopping and l/balance sprain left ankle.
## 22461                                                                                                                                                                     EE coming down steps of control tower, when he slipped and fell striking his back on the rail.
## 22462                                                                                                                                                                                                                EE coming down steps slipped and twisted right foot
## 22463                                                                                                                                                                                   EE coming down steps to house and missed last step falling and twisting rt ankle
## 22464                                                                                                                                       EE coming down steps, before she reached the bottom she slipped to right and missed last step falling and twisting her ankle
## 22465                                                                                                                                                                  EE coming down steps-loose construciton tape came loose causing EE to fall hitting knee and head.
## 22466                                                                                                                                                                         EE coming down stree, vehicle ran the stop sign and pulled into my vehicle off bluford st.
## 22467                                                                                                                                                                  EE coming down the stairs and her foot slipped from underneath causing her to fall down each step
## 22468                                                                                                                  EE coming down tower steps, EE slipped on wet stepcausing her to fall down one section of stairs on her lt side of body. Injured lt side arm, leg
## 22469                                                                                                                                            EE coming from 4th to 5th floor. Elevator not even with floor. EE's shoe caught and she fell on floor. No inj specified
## 22470                                                                                                                                                                         EE coming from across the hall other pt coming dwnhall hit EE and EE fell hit head on wall
## 22471                                                                                                                                                                             EE coming from back area and missed a step fell down on rt knee, left arm and shoulder
## 22472                                                                                                                           EE coming from d-dorm, noticed newspaper that Miss-Ed the trash can. Bent down to pick it up too fastlost balance, catching self on bars
## 22473                                                                                                                                                                                EE coming from ladder and slipped and fell injuring left hip, knee, ankle and ribs.
## 22474                                                                                                                                                     EE coming from meeting towards bldg on sidewalk water on sidewalk-EE slipped & fell injuring rightankle & knee
## 22475                                                                                                                                      EE coming in back door of office facility, another EE going out which resulted in door hitting EE fotand tearing off toenail,
## 22476                                                                                                                                                                                                                  EE coming in door and client stepped on left foot
## 22477                                                                                                                                                                                                                      EE coming in door and slammed door on finger.
## 22478                                                                                                                                EE coming in from outside, it was raining. She came through the door when she slipped and her feet came out from under her and fell
## 22479                                                                                                                                                                    EE coming in to work-approaching electric door- door opened and caught EE's big toe on rt foot.
## 22480                                                                                                                                                                                                         EE coming into bldg and missed a step and fell on rt knee.
## 22481                                                                                                                                                                              EE coming into bldg and shoes were wet slipped andfell on floor injuring left/rt knee
## 22482                                                                                                                                                                                   EE coming into bldg slipped and fell where tile and carpet meet spraining ankle.
## 22483                                                                                                                                                                         EE coming into bldg-slipped on icy covered steps lost footing and broke fall with rt hand.
## 22484                                                                                                                                                                                 EE coming into building slipped and fell forward oonto floor, abrasion rt fore arm
## 22485                                                                                                                                                 EE coming into building using basement entrance on4th st and fell down the steps to entrance. Left elbow and back.
## 22486                                                                                                                                                                                                        EE coming into entrance and fell on buttock and lower back.
## 22487                                                                                                                                                                                                                  EE coming into work an a bee stung EE on left arm
## 22488                                                                                                                          EE coming into work on day it was snowing, opened the door, stepped on linoleum floor and feet went out from under her, fell flat on back
## 22489                                                                                                                                                                                   EE coming into work slipped and fell on acorns on sidewalk causing mult injuries
## 22490                                                                                                                                                                                          EE coming into work slipped and fell on icy pavement landing on left hip.
## 22491                                                                                                                                                             EE coming into work walking on sidewalk, tripped on uneven brick, and fell on knees & elbows and hand.
## 22492                                                                                                                                                                                       EE coming into work, tripped over curb & fell hitting right side of face. ()
## 22493                                                                                                                                            EE coming on duty through second gate, closed before he cleared gate catching rt hand. Painful rt hand with some edema.
## 22494                                                                                                                                                                  EE coming out of back door of gym and stepped wrong causing foot to turn under causing EE to fall
## 22495                                                                                                                                                                                  EE coming out of building---student ask a question---door closed on EE left hand.
## 22496                                                                                                                                           EE coming out of closet carrying coffee pot, slippdon water on floor fell cutting rt hand on broken glass, hurt left hip
## 22497                                                                                                                                                       EE coming out of medicare pt pushed EE back in rm closed door, pulled EE, EE broke nail on left index finger
## 22498                                                                                                                                                                              EE coming out of office foot slipped on slick spoton floor and fell on her left side.
## 22499                                                                                                                                                                                 EE coming out of office tripped/fell over box sitting at door spraining left ankle
## 22500                                                                                                                                                                                   EE coming out of restroom and slipped and fell injuring rt knee, hand, and back.
## 22501                                                                                                                  EE coming out of staff dining hall, foot slipped out and fell on right hip. No water on floor seemto be just waxed. Bruise to right hip and elbow
## 22502                                                                                                                                                           EE coming out of surgery room with machine-slippedin oil in floor & fell back onto buttocks, back & neck
## 22503                                                                                                                                                        EE coming out of the back door of the manor when tripped & fell left wrist sore, face & right knee scrapped
## 22504                                                                                                                                                                                            EE coming out of the bathroom with pt, pt fell and EE went down with pt
## 22505                                                                                                                                                  EE coming out shower both feet slipped from under him, causing him to fall backwards hitting his head on barrier.
## 22506                                                                                                                                         EE coming through avery bldg carring food and drinks for dinner, slipped and fell on wet floor injuring lower back and hip
## 22507                                                                                                                       EE coming through door, as jailer on other side. EE blocked door with right hand, struck hand with door, fingers would not move. Applied ice
## 22508                                                                                                                                                                                  EE coming through swinging doors carrying computerin box-door closed on EE's arm.
## 22509                                                                                                                                                                                   EE coming throught through gate to report to work gate began to close on rt knee
## 22510                                                                                                                                                                        EE coming to aid co-worker being attacked by inmatstrained neck/rt shoulder/rt hand/fingers
## 22511                                                                                                                 EE coming to aid of another correc. Officer whom was being assaulted. EE states he was taking inmatdown, glasses knocked off & bent, watch broken.
## 22512                                                                                                                                                    EE coming to aid of other EE on arrest, EE stepped in hole and fell down embankment abrasion to rt knee and hip
## 22513                                                                                                                                                                                                 EE coming to work and fell on uneven brick at entrance of building
## 22514                                                                                                               EE coming to work crossed street from parking deckwent up 1st set of stairs/fell after 1st or 2nd step on 2nd flight of stairson mall across frmbldg
## 22515                                                                                                                                                                                          EE coming to work, walking through parking lot tripped over iron rod in 6
## 22516                                                                                                                                                           EE comint into work up steps a wrong step made and EE tripped but caught self before falling pulled back
## 22517                                                                                                                                                                                                  EE complain of pains in hands, after mass mailing pain got worse.
## 22518       EE complained of a very strong paint and chemical smell coming through the ventilation system and in the ambient air in sections of the building. EE complained of flu like symptoms, scratchy throat, chills and body aches. EE thinks illness is from fume
## 22519                                                                                                                                                               EE complained of chair moving back uncomfortably. EE also later complained of right shoulder hurting
## 22520                                                                                                                                                                                                                 EE complained of chest pain after lifting patient.
## 22521                                                                                                                                                                                                                 EE complained of chest pains during baton training
## 22522                                                                                                                                                                             EE complained of discomfort in jaw and arms. Showed symptoms of possible heart attack.
## 22523                                                                                                                                                                                              EE complained of dizziness, hyperventalation, weaknesss & chest pains
## 22524                                                                                                                                   EE complained of left wrist hurting for weeks while performing job duties & has worn wrist bracethis morning pain was unbearable
## 22525                                                                                                                                                  EE complained of nausea and headache from paint fumes-felt faint. Walked to door and fainted in fellow EE's arms.
## 22526                                                                                                                                               EE complained of pain and left work and went to doctor without advising supervisor-pain to shoulder neck, arms, back
## 22527                                                                                                                            EE complained of pain in his lower abdomen a few hours after assisting another employee lift a portable generator onto the bed of truck
## 22528                                                                                                                                                                       EE complained of pain in right foot since walking down steps w/ a slight twisting injury. ()
## 22529                                                                                                                                                     EE complained of pain in rt hand wrist EE stated that pain has been ongoing but has recently became much worse
## 22530                                                                                                                                                                                                                    EE complained of pain in shoulder from painting
## 22531                                                                                                                                                                                                   EE complained of pain in wrist/ EE types information in computer
## 22532                                                                                                                                                     EE complained of severe pain and pressure in her chest. Supvr advised to lay on floor until ambulance arrived.
## 22533                                                                                                                                                  EE complained of soreness/stiffness of right thumb and joint popping due to repetitive scrubbing of tubs, etc. ()
## 22534                                                                                                                                                                                                                EE complained of wrist hurting... No incident noted
## 22535                                                                                                                                                                        EE complaining of pain (poss. Carpel tunnel) due to repeditive job duties, I. E. Data entry
## 22536                                                                                                                                                                       EE complaining of pain and numbiness in both handsfrom computer, calculator and typerwritter
## 22537                                                                                                                                                                                                               EE complaining of possible muscle pull in left side.
## 22538                                                                                                                                                                                                      EE complaining of tendonitis due to moving and packing boxes.
## 22539                                                                                                                                                                         EE complaining of tightness in chest and head and shortness of breath dut to fumes inhaled
## 22540                                                                                                                                                    EE complains of ailments that usually occur while at work... Unbearable smell, and exposure to contaminated air
## 22541                                                                                                                                                            EE complains of chronic lt shoulder/back pain possibly attributed to ergonomically inadequate furniture
## 22542                                                                                                                                                                                         EE complains of discomfort in lower back after lifting resident from chair
## 22543                                                                                                                                                                 EE complains of headache, nausea, sore throat, congestion, blurry vision and bitter taste in mouth
## 22544                                                                                                                                                                                                  EE complains of left wrist pain and cramps from repetitive motion
## 22545                                                                                                                                                                                                           EE complains of leg pain (r&l) due to pulling linen bins
## 22546                                                                                                                                                                                       EE complains of numbness in rt hand-carpal tunnel ***left hand cts denied***
## 22547                                                                                                                                                                               EE complains of pain in lower bac and rib cage area when pushing food serving trucks
## 22548                                                                                                                                                                 EE complains of pain in right hand. Specifically the mid finger; injury occurred over 15 yr period
## 22549                                                                                                                                                                                                                             EE complains of pain in the groin area
## 22550                                                                                                                                                                                               EE complains of tingling in leg with sharp pain inleg and lower back
## 22551                                                                                                               EE complaint of pain, stiffness & tingling in fingers from repetitive motion due to job activities. Injury found not to be releated to job activties
## 22552                                                                                                                               EE completed a 13. 1 mile endurance challenge and felt nauseated and was taken to the hospital. Also injured both feet while running
## 22553                                                                                            EE completed a driving course for students in a driver's education class and loading traffic cones on a trailer. EE heard a pop in right shoulder and experienced pain.
## 22554                                                                                                                                           EE completed a maint. Assignment & was walking through the parking lot & tripped on raised concrete causing him to fall.
## 22555                                                                                                               EE completed bathing client-client leaving bath area plcd fingers in doorway-EE lunged to prevent door closing on clients hand and fell on wet floor
## 22556                                                                                                                       EE completed nailing forst course of roofing paperdown and started on second. Fisrt course came0 loose and EE slid off roof landing on feet.
## 22557                                                                                                              EE completed painting area on scaffold, when the scaffold needed to be relocated, EE climbed down &slipped, right leg landing on floor with bend knee
## 22558                                                                                                                  EE completed rehab task and was walking down deiced w/c ramp the had to walk through some ice and fell injured hip, knee and slid up under a car.
## 22559                                                                                                                                                                                                        EE completed search, went to stand up- hit head onthe table
## 22560                                                                                                                               EE completed the curfew check and stepped onto uneven pavement and broken cement in a hole causing her to lose her balance and fall.
## 22561                                                                                                                    EE completed the locker inventory. She stepped back on her left leg. When she stepped back she stepped on an empty bag and hit shoulder on bar.
## 22562                                                                                                                         EE completing fire drill, responsible for closing doors in timely fashion-tried to turn and run and fell on both knees, rt thigh and elbow
## 22563                                                                                                                 EE completing inspection, lying on back on creeperas reached back above head towards brake chamber, heard pop in shoulder, strong pain immediately
## 22564                                                                                                                                          EE completing vertical wrist release, pressure on EE shoulder caused pain and EE felt it was injuredsprain to rt shoulder
## 22565                                                                                                                                    EE completly sterile transfer of dragwabs & bpw into bags. Light & blower turned on. EE not aware fo light. Burned rt & lt eye.
## 22566                                                                                                                                  EE concentrating on sample over boiling water, spilling solvent boilig water caused solvent to boil over - burn to face and neck.
## 22567                                                                                                                               EE condcuting licenses checkpoint. Motor cycle approached & stopped. Accelerated pass my locationgrabbed him - noticed pain in elbow
## 22568                                                                                                                      EE conducted a lab experiment that was not under proper ventilation & inhaled vapors irritating lungs & sinuses. Worked next scheduled shift.
## 22569                                                                                                            EE conducted veh. Stop on buffalo shoals rd, when EE noticed passenger was wanted, passenger fled & EE chased thru field, jumped l ditch & fell r shoul
## 22570                                                                                                                       EE conductig search of bed area during inspection of bottom bunck in f-dorm. She stood up hit her ltshoulder on bed rail - lt shoulder pain.
## 22571                                                                                                                                EE conductiig office interview with probatiner during interview offender coughed in close proxim-ity. Upon leaving told she had TB.
## 22572                                                                                                                                                                  EE conducting EE perimeter check while walking on the upper yard when foot was caught in pot hole
## 22573                                                                                                                       EE conducting a cell search & bent down to look under the bed & table & leaned back on legs & felt left knee pop & cause a burning sensation
## 22574                                                                                                                                                    EE conducting a controlled burn around woodpecker trees, wind shift caused ash and smoke to blow in left eye ()
## 22575                                                                                                                                                                EE conducting a home visit to juvenile on her caseload; and was bit on the lower left leg by dog ()
## 22576                                                                                                                                              EE conducting a lab class of farm-poison ivy all over the farm-EE had alergic reaction to rash, arms, neck and chest.
## 22577                                                                                                              EE conducting a rock filed study out in the woods walking down steep slope, slipped on slippery log lost balance, fell to ground, felt pop in rt knee
## 22578                                                                                                                          EE conducting a search of an inmate bunk when he bent over to lift mattress he pulled a muscle or injured his lower back. Low right back.
## 22579                                                                                                                EE conducting a security door check & stepped in ahole in the prayer circle yard. EE states this caused his right ankle to twist & he fell on knee.
## 22580                                                                                                                EE conducting a sercurity check, she turned to go back to truck, slipped mud & fell, catching herselfw/her lt hand. Injured lt knee/shoudler/wrist.
## 22581                                                                                                                                             EE conducting a site visit for a complaint investigation walking around property hand was scraped on something rt hand
## 22582                                                                                                                          EE conducting a tour of dormitory 1, she slipped because of water puddled by bathroom door. Swelling rt knee. Surgery 10/7/98 - Dr Sutton
## 22583                                                                                                                    EE conducting a traverge during geologic - EE was travorgins through crabapple thicket thorn embedded into lt calf. Lt calf, lt side below knee
## 22584                                                                                                                                                                                    EE conducting a wall locker search, inmate grabbedtwisted & pulled on right arm
## 22585                                                                                                                                                             EE conducting an investigation-unwrapped syringe to see if it had been used-needle stuck EE's rt thumb
## 22586                                                                                                                           EE conducting bodies in motion exercise program when patient raised arm striking EE under chin. Pain in both sides of jaw, EE bit tongue
## 22587                                                                                                            EE conducting cell search, when inmate attacked eestriking him on lt. Cheek & eye.. While struggling inmate scratched EE on lt hand with ball point pen
## 22588                                                                                                                                        EE conducting cell search. Inmate became angry duestruck EE in face hitting lt eye inmate handcuffedat the time. Lt eye red
## 22589                                                                                                           EE conducting curfew check, attempting to turn leftinto kings way mobile home park, when the vehicle behind her failed to stop. Chest, back, neck sprain
## 22590                                                                                                                                               EE conducting cvsa inspection-walked to trailer & attempted to wipe clean vin plate when pain went down left hip/leg
## 22591                                                                                                                                                                               EE conducting home visit - offender's dog came up to offender and bit right ankle ()
## 22592                                                                                                                                              EE conducting home visit at residence, a black & bbrown chow dog approached EE from behind and bit EE on left buttock
## 22593                                                                                                                            EE conducting in-service firearms training. During training, EE sprained right hand/palm cuasing extreme pain and abnormal swelling. ()
## 22594                                                                                                                                                                  EE conducting inside recreation upon placing inmate in cell inmate turned & headbutted EE in head
## 22595                                                                                                                                                                        EE conducting inspection-lost balance & fell from catwalk injuring left arm-possibly broken
## 22596                                                                                                                                                                          EE conducting live fire excercise. EE rose to force door open when he was burned on ears.
## 22597                                                                                                                                                                EE conducting locker search, unrolling pair of socks, left index finger was punctured by tatoo gun.
## 22598                                                                                                                                                                      EE conducting locker search-backed up and stuck pencil in right elbow that was on locker door
## 22599                                                                                                                                                                                     EE conducting nci testing, involving lifting, right elbow increasingly painful
## 22600                                                                                                                                                                                         EE conducting orientation for new workers when his lt eye started to itch.
## 22601                                                                                                                             EE conducting prescribed burning, right foot became tangled in brush causing EE to fall and pull right heel. Heel severely bruised. ()
## 22602                                                                                                                                                             EE conducting rescue instructor qualification exams, pulled lt arm while trying to support the ladder.
## 22603                                                                                                                                   EE conducting residence check/the offenders dog nipped the back of his left calf then bit the side of his l leg in the calf area
## 22604                                                                                                                                               EE conducting rope challenge course, mounting incline began her foot slipped and fell. Injured lt neck and shoulder.
## 22605                                                                                                                                                       EE conducting search of residence-walking back to vehicle-dog belonging to residence bit EE on lowerleft leg
## 22606                                                                                                                              EE conducting security patrol checking inside mechanic rm tripped over object & fell to concretefloor lt shoulder sprain pain in neck
## 22607                                                                                                                                                         EE conducting security rounds-began to feel dizzy when he attempted to sit-fell hitting head & rt shoulder
## 22608                                                                                                                                                                                                                              EE conducting take down twisting knee
## 22609                                                                                                                     EE conducting traffic stop when driver exited his vehicle, drew a. 45 caliber handgun and struck EE in lt thigh, upper chest, rt side, lt side
## 22610                                                                                                                                                  EE conducting vehicle stop on greenfield pkwy was tackled and forced to ground, EE fell and right shoulder popped
## 22611                                                                                                                                                                                    EE conducting yard inspection, EE foot went into ahole and EE twisted ankle, rt
## 22612                                                                                                                    EE conductinga fire drill in inmate housing unit EE slipped on water dripping from fire when rewinding hose on reel. Lower back & lower abdomen
## 22613                                                                                                                                                                                     EE confiscated disposable razor when she received a cut to her rt index finger
## 22614                                                                                                                                                                                                         EE confronted a hunter who challenged EE with lethal force
## 22615                                                                                                                       EE connecting patrol boat & agency patrol boat car& made a mis-step on rt foot rolled when lost balance. Fractured small bone, lower rt knee
## 22616                                                                                                                                                                                    EE constantly lifting residents and has been experiencing reoccuring back pain.
## 22617                                                                                                                           EE constantly sneezed, which caused respiratory problems & headaches. EE did not take time off, continued to work, difficulty breathing.
## 22618                                                                                                                                             EE contact w/drain cleaner/chemical in ladies bathroom - allegric reaction to envir. Poison/chemicalsubstance product.
## 22619                                                                                                                                                         EE contacted a tick that attached itself to EE rt leg while on reg. Patrol.... Later tick found andremoved
## 22620                                                                                                                                                                                                          EE contacted dermatitius on right wrist and left forearm.
## 22621                                                                                                                                                     EE contacted poision ivy during permitting site visit. EE indicates severe inflammation of lf wrist/hand area.
## 22622                                                                                                                                                                                                                    EE contacted poison ivy while in a wooded area.
## 22623                                                                                                                                                                                                             EE contacted poison ivy while in wooded area on rt arm
## 22624                                                                                                                                                                               EE contends rep motion during use of wordprocessorcaused condition, pain in rt wrist
## 22625                                                                                                                 EE continually inputting admission application data in two systems on 5-1-07, started having painin wrist & hands. 8-6-07 radiating pains arm/neck
## 22626                                                                                                                                                                     EE continually works with computer systems using repetitive movements. Right hand/wrist/elbow.
## 22627                                                                                                                                                                                                                             EE contract conjunctivitis from client
## 22628                                                                                                                                                    EE contracted "fish poison" infection to middle finger of lt. Hand from handling fish without gloves too often.
## 22629                                                                                                                                                                                                             EE contracted MRSA (occupational illness) from client.
## 22630                                                                                                                                                                                                                                    EE contracted MRSA from client.
## 22631                                                                                                                                                                                                       EE contracted conjuctivitis by treating contaminated patient
## 22632                                                                                                                                                                                                                        EE contracted conjunctivitis from a client.
## 22633                                                                                                                                                                          EE contracted infection in right eye through casual contact with patient providing meals.
## 22634                                                                                                                                                                                                   EE contracted poison ivy or some kind of rash while on property.
## 22635                                                                                                                                                                                EE contracted poison ivy while searching for birdsnests in a woody observation area
## 22636                                                                                                                                                                          EE contracted rash after scuba diving in the polar bear pool. Rash on legs, arms and back
## 22637                                                                                                                                                                                                                     EE contracted scabies from unit- rx prescribed
## 22638                                                                                                                                                                                                        EE contracted scabies while EE was interpreting for patient
## 22639                                                                                                                                                                                                                          EE contributes back pain to daily lifting
## 22640                                                                                                                                                                              EE cooking blueberry filling, filling boilded overburn right hand/wrist 2 degree burn
## 22641                                                                                                                                                                                               EE cooking in deep fryer right index finger slipp-ed into hot grease
## 22642                                                                                                                                                             EE copying inside warehouse tripped on a wooden pallet & fell, landing on arm. Contusion to left wrist
## 22643                                                                                                                                                                                                                  EE correcting inmate for entering secured dorm ()
## 22644                                                                                                                                                      EE coughing, choking, shortness of breath and sickon stomach. Several other EE felt bad but did not get sick.
## 22645                                                                                                                                                                                 EE could not drive boat onto trailer and had to hand wench it hurting his back. ..
## 22646                                                                                                                                                                                     EE couldn't tell whether the floor was wet and I slipped and twisted rt ankle.
## 22647                                                                                                                                EE counseling a student---student charged out of room---EE tried to prevent student from exiting---hit left arm on door. Contusion.
## 22648                                                                                                                                                                                                          EE crashed knee into cement during appehension of suspect
## 22649                                                                                                                                                                                  EE crashed while riding in a helicopter *************fatality********************
## 22650                                                                                                                                                                              EE crashed while riding in a helicopter ************fatality*************************
## 22651                                                                                                                                                                      EE crawled in manhole to inspect steam value, feltsomething go down his shirt bitting stomach
## 22652                                                                                                                         EE crawled under a coworker's desk to unplug a computer when she came into contact w/ an irritantcausing itching & red bumps on her r arm.
## 22653                                                                                                                                                                                               EE crawling across some duct and hit knee where duct joins together.
## 22654                                                                                                                                               EE crawling under building came in contact with broken glass injury cut right wrist and injury to right hand and arm
## 22655                                                                                                                                                                   EE crawling under chill water pipes - got up and twisted and fell to one knee-felt pain in back.
## 22656                                                                                                                                                                             EE crawling up into 25 ft boat parked on trailer to retrieve book, strained lower back
## 22657                                                                                                             EE crew was unloading a tank from a truck when one(1) of the men knocked a lid shut which fell onto EE's hand, smashing lt little & lacerated ring fgr
## 22658                                                                                                                     EE crossed drainage ditch at night to retrieve deer shot in thicket & rt eye of EE made contact with clump of briars. Laceration outer rt eye.
## 22659                                                                                                                                    EE crossed in front of forklift-driver could not see him-struck by pallet on forklift-injured rt ankle, lt knee, hand and elbow
## 22660                                                                                                                           EE crosses the street and truned around on side- walk and was struck in the right eye area by an unknown object about size of golf ball.
## 22661                                                                                                                                                                                   EE crossing a ditch to examine accident vehicle when EE hyper-extended left knee
## 22662                                                                                                                                                                                                      EE crossing hallway to clock out for day and fell on rt side.
## 22663                                                                                                                            EE crossing large tree when he pierced his right calf by branch, trying to evade futher injury he pulled leg away causing knee to twist
## 22664                                                                                                                    EE crossing over barbed wire fence, EE became tanglin fence and was cut by fence, tetanus shot reqrd due to rust on fence, cut inside left knee
## 22665                                                                                                                                                                                              EE crossing small creek slipped and fell on slick rock injury to back
## 22666                                                                                                                EE crossing through hallway in medical slipped on wet floor fell hard on fresh mopped floor causing contusion rt elbow/ankle/shoulder/knee & lt hip
## 22667                                                                                                                                                                                    EE crushed four fingers on right hand in file cabinet while moving file cabinet
## 22668                                                                                                                                                            EE cuffing inmate who had been fighting w/ inmatesduring process-EE's hand became contaminated w/ blood
## 22669                                                                                                                                                                                                                         EE cut 2 fingers while opening inmate mail
## 22670                                                                                                                                                                                                                                    EE cut 3rd finger on right hand
## 22671                                                                                                                    EE cut a deep wound into index finger on a rotary micro-tome blade while attempting to wipe off wet wax on the blade using a kim wipe towel. ()
## 22672                                                                                                                                                                          EE cut across grass toward rear door-tripped over hole & landed on knee-elbow-hip & hands
## 22673                                                                                                                                                                                EE cut back side of rt hand while removing old water heater from underneath counter
## 22674                                                                                                                                                                                                                                 EE cut finger on bathroom door. ()
## 22675                                                                                                                                                                                         EE cut finger on can in trash can, cut rgt finger. EE finger got infected.
## 22676                                                                                                                                                                                                                                          EE cut finger on doorknob
## 22677                                                                                                                                                                                                                                       EE cut finger on edge of pan
## 22678                                                                                                                                                                                                                  EE cut finger on instation band pulling pipe out.
## 22679                                                                                                                                                                                                                              EE cut finger on metal filing cabinet
## 22680                                                                                                                                                                                                                  EE cut finger on outlet plate when wipping it off
## 22681                                                                                                                                                                                                                                      EE cut finger on paper cutter
## 22682                                                                                                                                   EE cut finger on piece of glass that was on table. She didn't see it and cut herself when she picked up some bread. Cut to thumb
## 22683                                                                                                                                                                     EE cut finger on piece of glass when she searchingthrough a patient's belongings on admission.
## 22684                                                                                                                                                                                                                       EE cut finger on sharpe edge of light switch
## 22685                                                                                                                                                                                                EE cut finger on surgical blade while cleaning up surgery table. ()
## 22686                                                                                                                                                                                                         EE cut finger on the chain of the saw while assembling it.
## 22687                                                                                                                                                                                                                         EE cut finger on wood as he was loading it
## 22688                                                                                                                                                                                             EE cut finger when a glass that was being used foran experiment broke.
## 22689                                                                                                                                                                                                            EE cut finger when pulling trash from the trash can. ()
## 22690                                                                                                                                                          EE cut finger while cutting a strap of a roll of sheet metal. EE seen at urgent care and rtw same day. ()
## 22691                                                                                                                                                                                                            EE cut finger while learning how to uncap honey frames.
## 22692                                                                                                                                                                                EE cut finger while pulling wires from a ballast and now the finger is infected. ()
## 22693                                                                                                                                                                                                                              EE cut finger while reciprocating saw
## 22694                                                                                                                                                                                                                   EE cut finger while seperating hamburger patties
## 22695                                                                                                                                                                                                 EE cut finger while trying to secure badge under seat in state car
## 22696                                                                                                                                                                                                                                   EE cut finger with utility knife
## 22697                                                                                                                                                                             EE cut finger/hand on dirty scapel after using it on patient who had a abcess on foot.
## 22698                                                                                                                                                                                            EE cut fingers on tomato slicer as she was wiping it down after use. ()
## 22699                                                                                                                                                        EE cut from box and box fell on finger. Large blood blister 3rd finger with contusions on posterior side.\\
## 22700                                                                                                                                                                                             EE cut hand on a rusted nail that was sticking up punctured my rt hand
## 22701                                                                                                                                                                                                          EE cut hand on brass tab on evenvelope while sorting mail
## 22702                                                                                                                                                                        EE cut hand on exposed screw while moving a desk in a flooded building during storm cleanup
## 22703                                                                                                                                                                                                                                      EE cut hand on light fixture.
## 22704                                                                                                                                                          EE cut hand on metal file cabinet while attemptingto remove a metal divider from shelf. Rt middle finger.
## 22705                                                                                                                                                                                                                    EE cut hand on saw blade helping hold plyglass.
## 22706                                                                                                                                                                                                      EE cut hand on table saw, while cutting plyboard for project.
## 22707                                                                                                                                                                                                                                    EE cut hand while wrking on fam
## 22708                                                                                                                                                                                                              EE cut her finger on an envelope clasp... Right thumb
## 22709                                                                                                                                                                                   EE cut her finger on side of a can while removing lid. Cut to left middle finger
## 22710                                                                                                                                                                                                        EE cut her finger while assisting resident recline in chair
## 22711                                                                                                                                                                                                 EE cut her finger while working on refrigerator right index finger
## 22712                                                                                                                                                                                                        EE cut her finger with scissors while cutting client's belt
## 22713                                                                                                                                                                                                                             EE cut her left hand on a lid of a can
## 22714                                                                                                                                                                              EE cut her left index finger on a razor inside an evelope that she was going through.
## 22715                                                                                                                                                                                                          EE cut her left index finger on the lid of can of sterno.
## 22716                                                                                                                                                                                             EE cut her left index finger with a pocket knife.. Received 8 stitches
## 22717                                                                                                                                                                                                                            EE cut her left pinky finger on a chart
## 22718                                                                                                                                                                                EE cut her left ring finger as she was openning a box of oranges with a box cutter.
## 22719                                                                                                                                                                                EE cut her left thumb while closing metal storage door cabinet while teaching class
## 22720                                                                                                                                                                                                         EE cut her lt hand middle finger while turning a door knob
## 22721                                                                                                                                                                                                                            EE cut her right mid finger on a blade.
## 22722                                                                                                                                                                            EE cut her upper left outer thigh when she was disposing a downed tree with a chainsaw.
## 22723                                                                                                                                                                                                                       EE cut himself with a scapel while operating
## 22724                                                                                                                                                                                                                             EE cut his finger handling sheet metal
## 22725                                                                                                                                                                                                                         EE cut his finger inside a washer/dryer ()
## 22726                                                                                                                                                                                                                    EE cut his finger on rotary cutter... Left hand
## 22727                                                                                                                                                                                                    EE cut his finger on testing apparatus middle finger... Rt hand
## 22728                                                                                                                                                                                                      EE cut his finger on the filing cabinet... Left middle finger
## 22729                                                                                                                                                                                   EE cut his finger while cutting fringe from a piece of paper right little finger
## 22730                                                                                                                                                                                                               EE cut his knee with saw while pruning tree limbs ()
## 22731                                                                                                                                                                                                              EE cut his left index finger with a pair of scissors.
## 22732                                                                                                                                                                                                           EE cut his left thigh with a hedger while trimmingshrubs
## 22733                                                                                                                                                                                                       EE cut his left thumb with scissor while doing plaster work.
## 22734                                                                                                                                                                                                EE cut his left wrist on a metal edge while putting on a roof panel
## 22735                                                                                                                                                                                                               EE cut his leg on barbed wire while chasing runaway.
## 22736                                                                                                                                                                                                 EE cut his lt forefinger while replacing a bolt with an air wrench
## 22737                                                                                                                                                                                             EE cut his lt hand finger while waiting for the sallyport gate to open
## 22738                                                                                                                                                                                                                                     EE cut his lt knee on barnacle
## 22739                                                                                                                                                                                                       EE cut his lt middle finger on the tail gate lift of a truck
## 22740                                                                                                                                                                                                                        EE cut his middle index finger with a knife
## 22741                                                                                                                   EE cut his right hand on the sliding door between albemarle control and sergent's office while re- sponding to a code yellow on safekeeper yard.
## 22742                                                                                                                                                                                                                 EE cut his right hand with a piece of broken glass
## 22743                                                                                                                                                                                                               EE cut his right thumb on the edge of a file cabinet
## 22744                                                                                                                                                                                                 EE cut his right thumb when the gun that he was cleaning went off.
## 22745                                                                                                                                                                                                         EE cut his right thumb while cutting fruit (watermelon) ()
## 22746                                                                                                                                                                                                                           EE cut his right thumb while using a saw
## 22747                                                                                                                                                                                              EE cut his right thumb with a knife while repairing a projection unit
## 22748                                                                                                                                                                                                EE cut his rt hand finger while checking inmate's personal property
## 22749                                                                                                                                                                                                                           EE cut his rt hand on a fence razor wire
## 22750                                                                                                                                                                                                                             EE cut his rt thumb on a aluminum pipe
## 22751                                                                                                                                                                                                 EE cut his small finger on left hand while trimming piece of foam.
## 22752                                                                                                                                                                                                                       EE cut is rt index finger with a razor blade
## 22753                                                                                                             EE cut l small finger on metal kick plate just below the handle on the door into medical, when EE pushed down on door handle her hand slipped hit plat
## 22754                                                                                                                                                                                 EE cut left arm on broken glass while transferringwater from one beaker to another
## 22755                                                                                                                                                                                               EE cut left arm on file cabinet while trying to catch falling client
## 22756                                                                                                                                                                                                                                  EE cut left foot on oyster shell.
## 22757                                                                                                                                               EE cut left hand and left knee on shattered glass while attempting to extract driver form vehicle. Lt hand & lt knee
## 22758                                                                                                                                                                                                                       EE cut left hand index finger on meat slicer
## 22759                                                                                                                                                                                          EE cut left hand on sharp edge of metal lid she was removing from crates.
## 22760                                                                                                                                                                                               EE cut left hand trying to remove glass bottle from sampling holder.
## 22761                                                                                                                                                                                                     EE cut left hand underneath vehicle the class was working with
## 22762                                                                                                                                                                                                                            EE cut left hand while cutting potatoes
## 22763                                                                                                                                                                                                                                   EE cut left heel on chair caster
## 22764                                                                                                                                                                                                                            EE cut left index finger on meat slicer
## 22765                                                                                                                                                                                               EE cut left index finger when a broken glass pipette jabbed into it.
## 22766                                                                                                                                                                                                   EE cut left index finger while attempting to repair 3 hole punch
## 22767                                                                                                                                                                           EE cut left index finger with a knife while attempting to remove spinal cord from a dog.
## 22768                                                                                                                                                                                                   EE cut left index finger with exacto knife while trimming boxes.
## 22769                                                                                                                                                                                                                                EE cut left leg with box cutter. ()
## 22770                                                                                                                                                                                                            EE cut left leg with thinning knife while thinningcorn.
## 22771                                                                                                                                                                                                                        EE cut left middle finger with paper cutter
## 22772                                                                                                                                                                                                                         EE cut left middle finger with razor blade
## 22773                                                                                                                                                                                                                                    EE cut left ring finger on desk
## 22774                                                                                                                                                                                                               EE cut left ring finger on sharp edge of table frame
## 22775                                                                                                                                                                                                                        EE cut left thumb during fire arm practice.
## 22776                                                                                                                                                                                                     EE cut left thumb on scalpel plate while trying to open a vial
## 22777                                                                                                                                                                                                EE cut left thumb when cutting back lirriope with a hand prunner ()
## 22778                                                                                                                                                                                                        EE cut left thumb while cutting clips from computer cables.
## 22779                                                                                                                                                                                                                         EE cut left thumb while disposing of razor
## 22780                                                                                                                                                                                                                        EE cut left thumb while removing borer bit.
## 22781                                                                                                                                                                                                                            EE cut left thumb while working on case
## 22782                                                                                                                                                                                                                 EE cut left thumb with knife while working in lab.
## 22783                                                                                                                                                                                EE cut left thumb with utility knife being used tocut material. Referred to glenda.
## 22784                                                                                                                                                                   EE cut limb off of oak tree and was pushing it outof the way. The limb hit EE on the right palm.
## 22785                                                                                                                                                                                                                            EE cut little finger on plastic banding
## 22786                                                                                                                                                                               EE cut lt forearm on broken auto radio antenna parked by the summer ventures cottage
## 22787                                                                                                                                                                                                                           EE cut lt index finger w/ some scissors.
## 22788                                                                                                                                                                                      EE cut lt index finger with hubcap while changing tire on his patorl vehicle.
## 22789                                                                                                                                                                                                                               EE cut lt leg on the drawer of desk.
## 22790                                                                                                                        EE cut lt middle finger on chain link fence clmt has already rec'd 50% ppd to middle finger **do not pay labcorp charges-not work related**
## 22791                                                                                                                                                                                                                     EE cut lt pinky finger on can while opening it
## 22792                                                                                                                                                                                                                      EE cut lt ring finger on can while opening it
## 22793                                                                                                                                                                                                                          EE cut lt thigh while carving wooden sign
## 22794                                                                                                                                                                                                                                        EE cut lt thumb with knife.
## 22795                                                                                                                                                                                EE cut metal band which was around a bundle of wood band popped and cut right thumb
## 22796                                                                                                                                                                                                       EE cut off part of left thumb with electric slicinmachine.\\
## 22797                                                                                                                                              EE cut off valves to sight glass on temp boiler, started to turn gasket nut and glass blew out cutting right forearm.
## 22798                                                                                                                                          EE cut palm of hand with utility knife while cut- ting a plastic bottle. EE indicated that accident was not work related.
## 22799                                                                                                                                                               EE cut r pinky finger with a saw blade. EE treated at urgent care and released to rtw on same day ()
## 22800                                                                                                                                              EE cut r thumb using a saw to mold a seat. EE was seen at urgent care and rtw on 5-8-09. No missed time, medical only
## 22801                                                                                                                                                                                               EE cut right index finger on knife blade while cleaning the utensil.
## 22802                                                                                                                                EE cut right index finger on mixing bowl when it fell on her hand. She was helping another EE move bowls. Cut to right index finger
## 22803                                                                                                                                                                                                            EE cut right index finger while cutting a piece of rope
## 22804                                                                                                                                                                                                        EE cut right little finger with knife while preparing lunch
## 22805                                                                                                                                                                      EE cut right ring finger at tip on chipped edge ofglass blender jar while mixing milk powder.
## 22806                                                                                                                                                                               EE cut right ring finger while providing cpr to injured suspect who is hiv positive.
## 22807                                                                                                                                                                                                                   EE cut rt finger on dish conveyor assembley belt
## 22808                                                                                                                                                                                                     EE cut rt hand on sheet metal while moving it acroos the table
## 22809                                                                                                                                                                               EE cut rt hand on the jagged edge of a bean can while preparing lunch for a resident
## 22810                                                                                                                                                                                          EE cut rt hand when trying to retrieve a laptop computer from the cabinet
## 22811                                                                                                                                                                                        EE cut rt index finger on razor blade found in match book during shake down
## 22812                                                                                                                                                                                         EE cut rt little finger while loading stainless steel trays into a trailer
## 22813                                                                                                                                                                                                               EE cut rt middle finger while installing window unit
## 22814                                                                                                                                                                                            EE cut rt middle finger while trying to uncuff inmate through trap door
## 22815                                                                                                                                                                                                                             EE cut rt ring finger on his handcuffs
## 22816                                                                                                                                                                EE cut rt ring finger on piece of broken glass that apparently fell thru window & stuck in arm rest
## 22817                                                                                                                                                                                             EE cut rt thumb on box cutter while picking it up from under handtruck
## 22818                                                                                                                                                                                                                                EE cut rt thumb on client on razor.
## 22819                                                                                                                                                                                                     EE cut rt thumb on glass while picking up pieces off the floor
## 22820                                                                                                                                                                                                              EE cut rt thumb on metal stud while hanging sheetrock
## 22821                                                                                                                                                                                                                 EE cut rt thumb on razor blade left in desk drawer
## 22822                                                                                                                                                                                                    EE cut rt thumb while using a microtome to sectiontissue sample
## 22823                                                                                                                                                                                                                          EE cut rt wrist on corner of wall locker.
## 22824                                                                                                                                                                                                            EE cut second finger on rt hand while retrieving files.
## 22825                                                                                                                                                                                                                             EE cut self on sharpe edge of tire rim
## 22826                                                                                                                                                                                                                                  EE cut the inside of his lt wrist
## 22827                                                                                                                                                                                                            EE cut the top of his left finger with a kitchen knife.
## 22828                                                                                                                                                                                                            EE cut thru a piece of tape & cut his left index finger
## 22829                                                                                                                                                                                                                                                    EE cut thumb ()
## 22830                                                                                                                                                EE cut thumb at joint on a rotary cutter blade used in a device that Dr. Cornier isbuilding for a research project.
## 22831                                                                                                                                                                                                        EE cut thumb on broken glass while breaking a glass ampoule
## 22832                                                                                                                                                                                                                                        EE cut thumb on meat slicer
## 22833                                                                                                                                                                                                            EE cut thumb while attempting to weigh and measure fish
## 22834                                                                                                                                                                                                                               EE cut thumb while preparing veggies
## 22835                                                                                                                                                                                               EE cut thumb with pruners while removing blueberry hardwood cuttings
## 22836                                                                                                                                                                                                                                   EE cut thumb with razor blade ()
## 22837                                                                                                                                                                                                          EE cut tip of left thumb with knife while dicing peppers.
## 22838                                                                                                                                                                                                EE cut tip on rt thumb on blade of meat slicer while cutting turkey
## 22839                                                                                                                                                                                                                  EE cut to index finger while operating a bandsaw.
## 22840                                                                                                                                                                                                              EE cut top of head while positioning wet tap machine.
## 22841                                                                                                                                                                                  EE cut wrist and hand while breaking a car window that was locked and hit a pole.
## 22842                                                                                                                  EE cutting & putting reflective tape on the entry gates when the knife she was using to cut the tapeslipped out her hand & stabbed her in the toe
## 22843                                                                                                                         EE cutting 3/4 plywood when the wood caught a rough spot on the saw and the wood flew back and hit him across abdomen and took his breath.
## 22844                                                                                                                                         EE cutting a brain as part of the autopsy, tip of the scalpel punctured her left index finger through two pairs of gloves.
## 22845                                                                                                                                                                                                               EE cutting a hose with a razor blade cut right thumb
## 22846                                                                                                                                                                                                    EE cutting a piece of conduit knife slipped cutting right thumb
## 22847                                                                                                                 EE cutting a rope holding a trashcan to tree. EE cut throug rope and accd. Stabbed leg. Puncture wound to lateral rt calf approx 4" dstal to knee.
## 22848                                                                                                                                                                                         EE cutting a strap off a battaing cage net when heslipped and cut rt hand.
## 22849                                                                                                                                                                            EE cutting a total knee replacement bone and rt index finger tapped the saw and was cut
## 22850                                                                                                                                                       EE cutting back linriope with a push mower when he stepped back in a hole that was covered and sprained knee
## 22851                                                                                                                                                                                                                   EE cutting biscuit, cutter slid right elbow sore
## 22852                                                                                                                                                                                                    EE cutting board. Saw kicked back and hit him in groin and leg.
## 22853                                                                                                                                                           EE cutting body tower glue stuck to bottle with razor blade. Blade slipped out of her hand cut lt thumb.
## 22854                                                                                                                                                                                         EE cutting box on his lap, knife slipped and cut his leg above right ankle
## 22855                                                                                                                                                                                                                    EE cutting boxes and cut hand below left thumb.
## 22856                                                                                                              EE cutting brace post for fence. Went to make downcut with chainsaw, the saw grabbed the wood caus- ing it to swing aroud stricking inmate asst. Him.
## 22857                                                                                                                                                                                 EE cutting bread and accidently cut finger with knife. Laceration lt index finger.
## 22858                                                                                                                                                                                                   EE cutting bread for croutons. Knife slipped & he cut his finger
## 22859                                                                                                                                                                                                        EE cutting bucket lid-knife slipped out and cut left thumb.
## 22860                                                                                                                                                                                                                           EE cutting cabbage up and cut left thumb
## 22861                                                                                                                                                                                                     EE cutting down boxes and cut lt index finger with box cutter.
## 22862                                                                                                                                         EE cutting fallen tree to clear road. Chain saw pinched by tree as it shifted. Used second saw to free saw. Fx to lt hand.
## 22863                                                                                                                                                                                                        EE cutting fallen trees, limb fell on head. Injury to head.
## 22864                                                                                                                                                                                                       EE cutting frozen meat with knife & cut finger of right hand
## 22865                                                                                                                                                                                            EE cutting instalation with gloves on-cut through gloves cut left hand.
## 22866                                                                                                                                                                    EE cutting lock out of door when saw kicked back &blade jammed. Jammed index finger on lt hand.
## 22867                                                                                                                                                                  EE cutting lumbar-went to pull a piece of wood outfrom side of guard and blade cut rt hand/finger
## 22868                                                                                                                                                                             EE cutting magnetic tape strips w/scissors and scissors slipped and closed on rt hand.
## 22869                                                                                                                                                                                                                      EE cutting meat on slicer and cut left thumb.
## 22870                                                                                                                                                                                  EE cutting metal rod with bolt cutter, used chest for support, felt pop in chest.
## 22871                                                                                                                                         EE cutting metal rods with saw and sparks off of saw caught pant leg on fire, burned three or four inch spot on right leg.
## 22872                                                                                                                                                                                   EE cutting out a model, cut tip of middle finger. Right finger. **r/I # 138030**
## 22873                                                                                                                                          EE cutting out felt valentines using scissors to cut when scissors went through the material. Left pointer and thumb cut.
## 22874                                                                                                                                                                                              EE cutting paper & had sharp pain in right wrist still ached next day
## 22875                                                                                                                                                                                                     EE cutting paper-arm of cutter slipped out and cutee's finger.
## 22876                                                                                                                                                                            EE cutting pcr bound out of a gel over a uv transilluminator box. Uv burn to both eyes.
## 22877                                                                                                                                                                                              EE cutting piece of tubing and knife went through and cut left thigh.
## 22878                                                                                                                                                                                                        EE cutting pieces of an apple, cut ring finger with a knife
## 22879                                                                                                                                                                                       EE cutting pipe with pipe cutter and grit came offpipe and went into EE eye.
## 22880                                                                                                                                                                                       EE cutting plastice off of spoons-pushed nail scissors to hard and cut hand.
## 22881                                                                                                                                                                                                   EE cutting shrubs when a foreign object cut EE on back and neck.
## 22882                                                                                                                                                                    EE cutting steaks & took steak off slicer & got her finger into slicer blade causing laceration
## 22883                                                                                                                                                                             EE cutting storm damaged trees when EE stepped over and slipped twisting left ankle ()
## 22884                                                                                                                                                                                    EE cutting strap on box of text books when the knife slipped and cut left thigh
## 22885                                                                                                                                                                                        EE cutting the lights on and cut her right pinky finger on the switch plate
## 22886                                                                                                                                             EE cutting trap pan covers out of wire screen, rt thumb became numb from continuous application of pressure on a nerve
## 22887                                                                                                                                                                           EE cutting tree down and moving log from tree and felt a pull in left arm and lower back
## 22888                                                                                                                                                                      EE cutting tree down-pushing to make fall when a limb fell and hit EE in the top of the head.
## 22889                                                                                                                                             EE cutting tree limb off fence. Limb was wedged against fence, when limb was cut, it snapped off fence hitting EE arm.
## 22890                                                                                                                            EE cutting tree that was lying across road. EE states tree split, EE started cutting again, next thing EE remembers, EE was under tree.
## 22891                                                                                                                                     EE cutting tree with chain saw, as tree started tofall, saw kicked back causing chain to cut through laceration to upper thigh
## 22892                                                                                                                                                                                                                    EE cutting tubing and cut finger w/razor blade.
## 22893                                                                                                                                                                                                   EE cutting tubing with razor blade, hand slipped and hit knuckle
## 22894                                                                                                                                               EE cutting twisted tape off extension cord way from body when knife slipped & cut into hand cutting lt middle finger
## 22895                                                                                                                 EE cutting using a 10' miter saw. He reached acrossw/ his lt hand to hold the moulding down & pulled the saw down & his view was not clear to cut.
## 22896                                                                                                                                                                                              EE cutting vinyl floor tile w/knife-knife slipped and cut left thumb.
## 22897                                                                                                                                                                                             EE cutting wire and it recoiled after being cut and cut EE on left arm
## 22898                                                                                                                                                                                                      EE cutting with knife that slipped and cut left index finger.
## 22899                                                                                                                                                                                                     EE cutting wood when bee stung him. EE allergic to bee stings.
## 22900                                                                                                                                                                                               EE cutting wood, accidently touched blade of saw cutting right thumb
## 22901                                                                                                                   EE cutting wood, reached to pull through, wood kicked back taking EE lt hand to saw blade. Blade guard not attached. Lacerationns fingers & hand
## 22902                                                                                                                                                                                   EE cutting wrap from pallet a& cut left index finger on box cutter/utility knife
## 22903                                                                                                                                                                      EE cutting/spraying herbicide on trail and stepped over vine, foot caught and twisted knee ()
## 22904                                                                                                                                                                                                                            EE damaged glasses during pic training.
## 22905                                                                                                                                                                                                                   EE dancing with class and fell spraining rt foot
## 22906                                                                                                                                                                                          EE de-bunking beds w/co-worker when bed came apartand fell on left thumb.
## 22907                                                                                                                                                                  EE dealing with an out of control juvenile and hurt her left wrist & left knee during altercation
## 22908                                                                                                                                                                                                   EE decided to move her desk and hurt her back while pushing desk
## 22909                                                                                                                                           EE deer crashed into the side of the state vehiclethat the EE was driving... Head, neck, shoulders, side, back, and hips
## 22910                                                                                                                                                             EE defensive tatics training at wildlife training school injury to right shoulder due to falling wrong
## 22911                                                                                                                                                         EE delivering boxes of booklest to sch of education while pushing dolly up stairs felt sharp pain in back.
## 22912                                                                                                                                             EE delivering copy paper when taking case off counter strap broke-put other hand out to catch case and pulled shoulder
## 22913                                                                                                                        EE delivering dinner tray to student locked in room. Student attempted to come out of room swining his fist hitting EE in rt eye sal contin
## 22914                                                                                                                          EE delivering medication from window. Closed window door slammed into her back, inmate slammed door into her. Injured back, head, & neck.
## 22915                                                                                                                                                                          EE delivering medications to dorms in the rain andslipped & fell in front of medical unit
## 22916                                                                                                                                                                             EE delivering package-stumbled while entering bldgand fell into door injuring rt knee.
## 22917                                                                                                                                                                EE delivering paper to davie hall-packing/putting cases on hand trk to deliver-felt pain in rt leg.
## 22918                                                                                                                                               EE delivering papers to pt office when leaving room foot turned and EE slipped and fell in hallway injuring rt foot.
## 22919                                                                                                                                                EE delivering supplies, when strap around one of the boxes broke. EE tried to catch it, and injured upper left arm.
## 22920                                                                                                                                                 EE demonstrated to students how to pull weed out of garden bent down at knees pulled weed felt severe pain in back
## 22921                                                                                                                                                            EE demonstrating cutting process-went to pick up a piece of sheet metal and severly cut rt index finger
## 22922                                                                                                                                                                                                         EE demonstrating defense training and fell landingon ankle
## 22923                                                                                                                                                                                                     EE demonstrating pitching techniques when right knee collapsed
## 22924                                                                                                                                                                                                  EE demonstrating pulling hose for class-pulled back out of place.
## 22925                                                                                                                                                 EE demonstrating quick stop on motorcycle-applliedbrakes and tire slid-EE fell and motorcycle fell on EE left leg.
## 22926                                                                                                                                                                                                            EE demonstrating rapelling and foot slipped and twisted
## 22927                                                                                                              EE demonstrating use of hobble restraining device after having his leg restrained with hobble. Lost balance and fell from chair hitting head/shoulder
## 22928                                                                                                                           EE deployed his stop stics during a high speed chase-reel and string was pulled from EE's hand byveh causing cuts and burns to left hand
## 22929                                                                                                                                                                                        EE descending steps at the frt of telcom ctr and missed last step and fell.
## 22930                                                                                                                                                                    EE descending steps reached to press garage door opener missed and tripped and sprain left leg.
## 22931                                                                                                                                                           EE descending steps, reat dock, when she slipped on drippings from trash and fell to the bottom of steps
## 22932                                                                                                                                                                                                         EE descending steps-shoe heel caught in steps and EE fell.
## 22933                                                                                           EE descending the rear metal steps from lobby stepped on acorn and lost balance causing ankle to rune inward falling down the last few steps on to the concrete walk. ()
## 22934                                                                                                                                                                                                                  EE described shoulder pain from repetitive use ()
## 22935                                                                                                                                                                     EE desk drawer was stuck and she attempted to pullit open and the top drwaer and her rt thumb.
## 22936                                                                                                                                                                      EE developed a hernia after lifting and carrying stack of boxes... Rt hernia repair only.. ..
## 22937                                                                                                                                                        EE developed a microbaterium lesion on his right pinky finger after being exposed to a dying aquatiseahorse
## 22938                                                                                                                                                                                                  EE developed a rash on hands after wearing latex gloves to clean.
## 22939                                                                                                                                                                              EE developed a rash on inner left arm aftr contactwith unknown substance or material.
## 22940                                                                                                                                                                                                                           EE developed a rash on legs above ankles
## 22941                                                                                                                                                                                                                    EE developed a rash since she has been at work.
## 22942                                                                                                                                                                                                                                EE developed a reaction to flu shot
## 22943                                                                                                                                                            EE developed a red macular skin rash of both hands after washing and drying hands w/ brown paper towels
## 22944                                                                                                                                                                                         EE developed a red rash on face - think it May be caused by lymes disease.
## 22945                                                                                                                                                                                      EE developed a sever back pain while cleaning baseboards and running a buffer
## 22946                                                                                                                                                                                                    EE developed allergic reaction while mopping floors in lab area
## 22947                                                                                                                                                                                                       EE developed an allergic reaction while wearing latex gloves
## 22948                                                                                                                                                                                            EE developed back pain after moving a bed on ward. Right low back pain.
## 22949                                                                                                                                                                                 EE developed back pain from wearing a duty belt while performing maintenance tasks
## 22950                                                                                                                                                          EE developed bilateral tenderness in his elbows from repetitive loading and unloading 45 lb oysterbaskets
## 22951                                                                                                                                                                     EE developed bronchitis as a result of working in smoky, dusty conditions on fires in florida.
## 22952                                                                                                                                                                                  EE developed carpal tunnel syndrome in both hands due to computer work on the job
## 22953                                                                                                                                                                                                                        EE developed chest pain while mowing grass.
## 22954                                                                                                               EE developed chronic pain over recent weeks in hisright hand, source of long computer usage. EE has continued to work pending approval of medical tx
## 22955                                                                                                                                                                                             EE developed contact dermititis on arms, hands, neck, and behind ears.
## 22956                                                                                                                                                                                                  EE developed cts in both wrist. Use of office machines caused cts
## 22957                                                                                                                                                                            EE developed flu-like symptoms while traveling hearing impairment and tinia.. Right ear
## 22958                                                                                                                              EE developed headache and her eyes became irritat-ed from inhaling fumes of bleach cleaning solutionafter inmate cleaned office area.
## 22959                                                                                                                                                                                         EE developed lower back pain after mopping steps, classrooms and hallways.
## 22960                                                                                                                                              EE developed pain in left forearm (shoulder) extending down to wrist and fingers. EE does repetitive duties at times.
## 22961                                                                                                                                                                                            EE developed pain while preventing resident from hitting head on floor.
## 22962                                                                                                                                                        EE developed rash after contact with poison ivy plant. Received med. Treatment after rash appeared on skin.
## 22963                                                                                                                                                                                                               EE developed rash after using chemicals for lawncare
## 22964                                                                                                                                                                             EE developed rash on arms, legs, stomach and neck after contact with weeds in pond. ()
## 22965                                                                                                                                                                            EE developed rash on both arms after searching suspect's apartment for stolen property.
## 22966                                                                                                                                                                                   EE developed rash under rt breast area, 3rd reportof dermatitis from th g3 unit.
## 22967                                                                                                                                                                                                         EE developed red irritation on his hands from dish washing
## 22968                                                                                                                                                                                             EE developed red spots on right lower leg that developed into blisters
## 22969                                                                                                                                                                       EE developed right arm/elbow/wrist/thumb pain diagnosed as being caused by repetitive motion
## 22970                                                                                                                                                                                           EE developed ringing in ears during stack test observation & inspection.
## 22971                                                                                                                     EE developed soreness & swelling in left foot overtime. Diagnosed with acute gout. Medical provider notified EE that gout is not work related.
## 22972                                                                                                                                                                                                                       EE developed soreness in left hand over time
## 22973                                                                                                                                                              EE developed soreness, numbness and tingling pain in right shoulder, arm, wrist and hand over time ()
## 22974                                                                                                                                                                  EE developed tendonitis in right shoulder as result of extensive use of machete to create trails.
## 22975                                                                                                                                                           EE developed well pages and electronic course materials using a mouse-felt pain in rt arm, wristand hand
## 22976                                                                                                                                                                            EE diagnosed with carpal tunnel right hand on 4-2-08. Right elbow/wrist/hand/lower arm.
## 22977                                                                                                                                                                                                                           EE diagnosed with carpal tunnel syndrome
## 22978                                                                                                                 EE diagnosed with carpel tunnel rt wrist - result of repetitive use of rt hand/wrist. EE keyboard ison desk to high - causes cts. Rt hand & wrist.
## 22979                                                                                                                                                                                               EE diagnosed with rt carpal tunnel syndrome or rt forearm and wrist.
## 22980                                                                                                                                                                                                       EE did a brake fall and came down more on her right side. ()
## 22981                                                                                                               EE did his warm up by swimming for a few minutes and then he got his surfboard and started surfing when he fell and hit his head on the ocean floor.
## 22982                                                                                                                                                                                                                  EE did indicate problems with hand while employed
## 22983                                                                                                                                                                                     EE did not know floor was wet and slipped, injuring his right knee/right hand.
## 22984                                                                                                                                                   EE did not move his hand out of the way in time resulting in his hand getting caught in between door & lockback.
## 22985                                                                                                                                                                EE did not realize how heavy recycling materials were and injured left wrist when lifting materials
## 22986                                                                                                                    EE did not report that injury had occurred nor did she have any difficulty walking during shift next day went to er-did not indicate any injury
## 22987                                                                                                                                                                        EE did not secure collimater plate on camera and it fell on both feet. Right foot fracture.
## 22988                                                                                                                                                                                     EE did not see a on coming truck while making a lt turn on from the wrong lane
## 22989                                                                                                                                                                                                EE did not see crane in the middle of walking pathand fell over it.
## 22990                                                                                                                                                                                            EE did not see dog and stepped on him causing the dog to bite his knee.
## 22991                                                                                                                                                                                                   EE did not see fire ants, and ants bit EE extensively over body.
## 22992                                                                                                                                                                                      EE did not see puddle of water at end of truck slipped and fell on both knees
## 22993                                                                                                                                                                                                         EE did not see step down at sidewalk - fell twisted ankle.
## 22994                                                                                                                                                                                          EE did not yield off a ramp. She hit side and thenback of transfer truck.
## 22995                                                                                                                                                   EE didn't know how it happened noticed rt shoulderwas hurting after finished putting clients to bed. Rt shoulder
## 22996                                                                                                                                                         EE didn't know when it happened, relized that metalwas in eye late wednesday when it started to bother EE.
## 22997                                                                                                                                                                                          EE didn't notice how close she was to the building and backed into it. ()
## 22998                                                                                                                                                      EE didn't see the last step (no light at entrance)missed last step and fell to the ground. Fracturedrt ankle.
## 22999                                                                                                                                                                                          EE didn't see the wood and stomped on one side of it and turned his ankle
## 23000                                                                                                                                                                                                                 EE digging a hole and hit rt hand on top of shovel
## 23001                                                                                                                                                                             EE digging fire line & a stick went in his ear canal scratching & bruising lt ear drum
## 23002                                                                                                                                                                                    EE digging hole in ground to place 4x4 to stabilize deck and strained rt wrist.
## 23003                                                                                                                          EE ding a lesion on a stdt's pina, some purulent/ bloody fluid squirted hitting EE on face, some in to eye. EE irrigated & instilled eye.
## 23004                                                                                                                                EE dipensing medication - got needle stick. Inmaterecap the needle like usual do & she noticted she picked up needle stuck rt thumb
## 23005                                                                                                                                                              EE directed client to go to another area, client grabbed his right arm and bit him on the right wrist
## 23006                                                                                                                                              EE directed visually impaired students hand to a bloody cloth for applying pressure and blood got on left hand of EE.
## 23007                                                                                                                                                                              EE directing a tour, when EE was stung on left hand by a hornet. Punctured by insect.
## 23008                                                                                                                                                                                    EE directing client to come in when cleint took EE's rt arm and yanked it back.
## 23009                                                                                                                                                                                  EE directing client to table when client hit EE with open hand to rt side of face
## 23010                                                                                                                                                     EE directing consumer to put her shoes on then consumer became physically aggressive and kicked EE in abdomen.
## 23011                                                                                                                        EE directing resident to class as work assignment resident aggressed toward staff resulting in superficial scratch under right eye & finger
## 23012                                                                                                                              EE directing traffic when a vehicle made aggresivemaneuver (turning) EE moved quickly to avoid car causing rt achillies tendon strain
## 23013                                                                                                                           EE directing traffice after basketball game-a veh came straight at EE-EE hit palm of hand on hood ofveh and roll to side straining back.
## 23014                                                                                                                                    EE disasembling lrg tables on his knees, bending & stooping to get tables apart. Pulled pieces up stairs felt pain in left leg.
## 23015                                                                                                                                                                                      EE disassemblin old lab experiment hand slipped and was cut on piece of metal
## 23016                                                                                                                  EE disassembling a herman miller unit EE saw that panel was about to fall on another EE & grabbed itthe panel then fell on top of EE's left foot.
## 23017                                                                                                                                                                                EE disasssembling bunk, fingers were pinned between springs and top of bar on bunk.
## 23018                                                                                                                                                                              EE discarding books using blade to remove pockets and spine lables and cut left hand.
## 23019                                                                                                                              EE discarding of needle into sharp box, tubing coiled up, needle hit side of opening, bounced up and stuck gloved right index finger.
## 23020                                                                                                                                                                                                             EE discarding plastic trash can and cut rt ring finger
## 23021                                                                                                                                                                                       EE disconnecting iv tubing when blood and splashedon EE's face and left eye.
## 23022                                                                                                                                                                                            EE discovered a rash on his abdomen after working with treated wood. ()
## 23023                                                                                                                                                                                                                     EE discovered a tick attached to lower abdomen
## 23024                                                                                                                                                                EE discovered a tick on his left hip after shower-ing and beign out on timber exam most of the day.
## 23025                                                                                                                EE discovered an object in an inmates pocket, object came thru the pants and into EE right thumb, ear piece from a pair of glasses, thumb left hand
## 23026                                                                                                                                                                   EE discovered imbedded tick 1 week earlier then joint pain, fatigue and discoloration to area ()
## 23027                                                                                                                                                                       EE discovered offender cooking meth-came into contact with phosphorus & ioding-hands burning
## 23028                                                                                                                                                                                                                     EE discovered rash on left thigh during shower
## 23029                                                                                                                                                                                                                           EE discovered tick on his left leg joint
## 23030                                                                                                                    EE disinfecting dorm for lice and crabs. Other officers were spraying quads with lice spray. Fumes from lice spray got into lungs causing pain.
## 23031                                                                                                                                                                                   EE disinfecting stall spray got onto hands-notice blisters and itching on hands.
## 23032                                                                                                                                                                      EE dislocated his finger while trying to apprehenda suspect; fifth digit finger on right hand
## 23033                                                                                                                                                                                                                 EE dislocated his shoulder during defense training
## 23034                                                                                                                                                                                     EE dislocated right thumb while attempting to push stopper into sink drain. ()
## 23035                                                                                                                                                  EE dislodge a 4 ft section of tree result of middle finger on left hand tearing the skin & mashing the knuckle ()
## 23036                                                                                                                                                                                  EE dismantleling metal shelving to relocate-shelving fell and hit EE in the head.
## 23037                                                                                                                                                                                EE dismantling fence when a board w/nail sprang forward and hit EE in the forehead.
## 23038                                                                                                                                                                       EE dismantling sterilizing biohazard caging water bottles too hot and burned EE on left calf
## 23039                                                                                                                                                                                        EE dismounted tractor in a field and stepped in a hole with his right foot.
## 23040                                                                                                                                                             EE disposed of some furniture drawers and noticed pain in his back saturday morning when waking up. ()
## 23041                                                                                                                                                                                                                  EE disposing needle and stuck finger on left hand
## 23042                                                                                                                                                                                             EE disposing of syringe into sharps container stuck left third finger.
## 23043                                                                                                                                                                                             EE disposing of trash at dumpste and finger got caught in strike plate
## 23044                                                                                                                                                                           EE disposing of trash butterfly needle came through the rubber part and cut EE left hand
## 23045                                                                                                               EE distracted by 2-way radio-when sawing piece of wood-EE slipped on sawdust on floor and reached tocatch radio when his rt thumb caught on sawblade
## 23046                                                                                                                                                                                      EE distracted by construction work and turned and walked into a traffic sign,
## 23047                                                                                                                                                                                                                EE disturbed a bees nest and was stung on the hands
## 23048                                                                                                                                                                            EE disturbed a nest with yellow jacket and was stung by a yellow jacket on the lt wrist
## 23049                                                                                                                                          EE does 80% of all phlebotomy work. Hands are heldin hinged position with venipuntive due to uncoopertiveness of clients.
## 23050                                                                                                                                    EE does a court run every morning walked to the court house went up step to entrence fell after entering the first set of doors
## 23051                                                                                                                                                           EE does a lot of data entry on computer & this has over a period of time caused pain in her wrist & arm.
## 23052                                                                                                                                                                                  EE does a lot writing and typing in job and is having pain in her wrist and hand.
## 23053                                                                                                                                                                                                                                                 EE does data entry
## 23054                                                                                                                                                                                                                                 EE does data entry 90% of the time
## 23055                                                                                                                                                                                                   EE does data entry all day and noticed swelling inher left wrist
## 23056                                                                                                                                                       EE does data entry daily - trigger finger for middle finger of right hand is a possible result per physician
## 23057                                                                                                                                                                                                      EE does keyboarding as key function of job - pain in rt wrist
## 23058                                                                                                                         EE does not indicate on injury report a specific injury only states hurting when left work slightlywhen awoke next day, couldn't move neck
## 23059                                                                                                                                                                          EE does not know what occurred to cause his eyes scratchy and watery or why rash appeared
## 23060                                                                                                                                                                        EE does not know when or with whom she hurt her back. Complains of dull ache in lower back.
## 23061                                                                                                                                                                                 EE does repetitive work on the computer, process massive form of work on computer.
## 23062                                                                                                                                     EE does significant amount of computing use required. EE does repetitive motion with wrist in awkward environmental condition,
## 23063                                                                                                                                                                                                       EE doesn't know how injury happened but lt eye was scratched
## 23064                                                                                                                                                               EE doesn't know how injuty occured stated went for physical and was told he might have a biceps tear
## 23065                                                                                                                                                                                             EE doing 3am round and slipped and fell on wet floor injuring left hip
## 23066                                                                                                                                            EE doing a call search EE involved in use of forceinmate placed on floor EE scrapped left inside armon door frame, left
## 23067                                                                                                                                                     EE doing a security check of nurse trailer. He slipped while coming up steps of building. EE has pain in back.
## 23068                                                                                                                                                         EE doing administratin duties in lt office, she turned to answer telephone and bopped her rt knee on desk.
## 23069                                                                                                                        EE doing bench presses as part of physcial assese-ment evaluation. Strained rt shoulder while doing a bench press. Rt arm - pain/discomfort
## 23070                                                                                                                        EE doing body check with pt, turned pt to side, pt head went off table, EE grabbed pt knees to keep pt from falling, EE twisted middle back
## 23071                                                                                                                                                                                  EE doing cartwheels went into split rt patella dislocated pushed back into place.
## 23072                                                                                                                                                                                                                          EE doing cleaning and cut rt hand on cart
## 23073                                                                                                                                                                                 EE doing cleaning in room and went to turn on light switch and got shock on rt amr
## 23074                                                                                                                                                                                                      EE doing computer data entry. Injured neck, arms, leg, hands.
## 23075                                                                                                                                                         EE doing construction of decking, went to put board in place and his hand came in contact with a splinter.
## 23076                                                                                                                                                               EE doing cpr, helped other staff transfer resident from stretcher to tray in morgue. Herniated disc.
## 23077                                                                                                                          EE doing crunches for warm-up exercises EE felt grinding in her lower back which left her unable to get off floor. Middle lower back pain
## 23078                                                                                                                                     EE doing curfew check on a officer, he was closingfront door jammed and pulled wrist and hand. Shoting tendonitis of lt wrist.
## 23079                                                                                                                     EE doing curfew check, after leaving probation house traveling down walter gibson rd. Deer jumpedin road causing object into chest and stomach
## 23080                                                                                                                                                EE doing curfew check-walking back to car-stepped in hole stretching left calf muscle causing pain in leg/foot/toes
## 23081                                                                                                                                                                                                            EE doing daily routine when he twisted rt foot on deck.
## 23082                                                                                                                                                                                EE doing daily weed extraction-contracted poison ivy on rt arm-lower neck & stomach
## 23083                                                                                                                                                         EE doing demonstration walked around vehicle when he stepped on loose asphalt causing him to turn rt ankle
## 23084                                                                                                                                                                                                                    EE doing everyday work in smoke filled building
## 23085                                                                                                                                EE doing field visits. Stopped at stop sign. Thought it was clear to move fwd, however truck infront of EE did not move. No injury.
## 23086                                                                                                             EE doing her normal work duties, data entry, letters, filing, and she noticed a crackling sound whenshe moved her wrist, numbness in fingers and hands
## 23087                                                                                                                      EE doing his duties as the porch yard officer nearnorth yard gate he was bitten by a spider or mosquito, swelling occured over night. Lt hand
## 23088                                                                                                                                                     EE doing his house cleaning chores and his ankle started hurting. He was not sure how he hurt it. Sprain ankle
## 23089                                                                                                                           EE doing home visit-offender refused to respond toverbal command & was taken down-he then kicked EE behind her left ear with cowboy boot
## 23090                                                                                                                                                                                            EE doing home vist, dog ran around the side of house and bit EE on leg.
## 23091                                                                                                                   EE doing inspection fire safety equipment c/o large tripped orver a mop bucket falling backwardslanding in small of back. Pain in small of back.
## 23092                                                                                                                                                                                                 EE doing inspection in attic and left elbow hit roof truss member.
## 23093                                                                                                                                                                                                                      EE doing intensive computer work injury elbow
## 23094                                                                                                                                                                                           EE doing inventory on boat-jumpmed from boat to ground and turned ankle.
## 23095                                                                                                                                                                                                  EE doing job everyday spending most of time at computer keyboard.
## 23096                                                                                                                                 EE doing job. Checked self for ticks after coming out of woods on 4-19. EE found a tick embedded onsaturday 4-26 behind right knee
## 23097                                                                                                                                                     EE doing knee bends and other exercises during "staying healthy on the job" workshop & felt pain in right knee
## 23098                                                                                                                                                                  EE doing labwork----tilted a cup of formaldehyde 4% on floor----splashed into right and left eye.
## 23099                                                                                                                                                                                   EE doing multiple duties above head using both arms noticed pain in both elbows.
## 23100                                                                                                                                                       EE doing paperwork. She moved the engraver ( used for debit cards) to the left & hit the point of itw/wrist.
## 23101                                                                                                                         EE doing pelvic exam-collecting specimen when qtipcame out of test tube went up in the air striking EE on head-EE emotionally traumatized.
## 23102                                                                                                                                                    EE doing physical fitness training for sort & injured his rt knee while carrying another ofcr over his shoulder
## 23103                                                                                                                                                EE doing physical fitness training-running in gym stepped on cushioned mat, rolled ankle & fell to floor. Lt ankle.
## 23104                                                                                                                                                                    EE doing prescibed boxing exercise and was punchedby another cadet, strain to right back muscle
## 23105                                                                                                                                                                           EE doing prescribed boxing exercises and punched in hed by another cadet. Bruise to head
## 23106                                                                                                                  EE doing roll & rock exercise to learn how to fallee dropped down from standing position & rolling back. After training back got worse - bruised.
## 23107                                                                                                                                                 EE doing roomchecks & found broken tile in rm 12. EE reached for the broken tile, pulled lower back during process
## 23108                                                                                                                                                        EE doing routine cell search - inmate assaulted her beating her in face and head with his fists 15-20 times
## 23109                                                                                                                                                                          EE doing routine locker search when an inmate threw a chess piece & struck EE on lt knee.
## 23110                                                                                                                    EE doing routine patrol on I-40, conducted a traffic stop, got out of veh quickly and twisted his body, felt sharp painin lt leg and lower back
## 23111                                                                                                                                                                                     EE doing routine patrol when hit in the rear by another veh - injury to rt arm
## 23112                                                                                                                                                             EE doing routine search when he turned around and slipped which caused him to land on his right elbow.
## 23113                                                                                                                                                                      EE doing security check on her dorm when she slipped and fell against the wall. Injured back.
## 23114                                                                                                                                                                                                         EE doing swimming rescue of student. Soreness of lft knee.
## 23115                                                                                                                                            EE doing test on patient when patient moved abruptly, needle came out of patient and stuck EE in finger below nail bed.
## 23116                                                                                                                                                                                                       EE doing traffic enforcement struck on lt side of patrol car
## 23117                                                                                                                                            EE doing unarmed self-defense training injured rt shoulder. Put rt down to brace himself and then hurt his rt shoulder.
## 23118                                                                                                                                                                              EE doing warm up exercise at self defense class, istrained my lower back on left side
## 23119                                                                                                                                                         EE doint pt tx on client when client grabbed EE's left arm when getting up from chair scratching the same.
## 23120                                                                                                                                       EE door on driver side of vehicle hit her in fore-head when she open it. Attempting to fuel vehicle. Hit center of forehead.
## 23121                                                                                                                                                 EE downstairs loading catalogs on cart, went to get inserts off shelf, lost balance & fell back- wards over boxes.
## 23122                                                                                                                                                                                                       EE dragging canoe from catawba river and hurt his lower back
## 23123                                                                                                                                  EE draining moisture from air line, valve was stop-ped up with rust, air pressure pushing rust particlinto the skin of left hand.
## 23124                                                                                                                                             EE drank from a bottle he had left unattended in the dormitory and discovered that someone had urinated in the bottle.
## 23125                                                                                                                                                                                                                       EE drank water contaminated with body fluids
## 23126                                                                                                                                        EE draw blood on immate. After completing this task she accidentally stuck the needle into the second finger of her lt hand
## 23127                                                                                                                                                                                                        EE drawing blood & received a needle stick to rt 3rd finger
## 23128                                                                                                                        EE drawing blood from a eee positive chicken. 1st try unsuccessful. 2nd try chicken moved & EE punctured lt thumb with contaminated needle.
## 23129                                                                                                                                                                                 EE drawing blood from client-client jerked arm andneedle pricked EE on left thumb.
## 23130                                                                                                                       EE drawing blood from inmate and lt hand hit on needle lt on counter in upright position in needleholder. Lt hand palm near thumb punctured.
## 23131                                                                                                                                                               EE drawing blood from inmate as ordered by MD, suffered needle stick to rt thumb, blood contaminated
## 23132                                                                                                                                                                            EE drawing blood from inmate needle stick injury while attempting to dispose of needle.
## 23133                                                                                                                                                       EE drawing blood from inmate per doc protocol. Needle came out of arm. Needle fell and stuck EE in rt thumb.
## 23134                                                                                                                                EE drawing blood from inmate, after comp'd, was disengaging needle from lab cover & accidentally stuck 2nd index finger with needle
## 23135                                                                                                                                      EE drawing blood from inmate, inmate became agitated, inmate knocked cathater out of hand causing needle to nick outer lt arm
## 23136                                                                                                                                              EE drawing blood on student was returning - needleto container - needle piercing finger. Puncture 2nd finger rt hand.
## 23137                                                                                                                                     EE drawing lab from inmate and sustained a needle stick after blood draw completed area bleed and cleaned and soap and alcohol
## 23138                                                                                                                            EE drawn blood on inmate, was gathering equipment to disposs of properly when picked up needle pokedlt thumb with it. Injured lt thumb.
## 23139                                                                                                                                          EE dressing client and saw something sticking out of left thumb-thought it was a splinter-turned outto be insulin needle.
## 23140                                                                                                                                                                          EE dressing client in bed-rolled client to put lift pad underneath and hit finger on bed.
## 23141                                                                                                                                                                                           EE dressing client who grabbed EE's little finger and bent it backwards.
## 23142                                                                                                                                  EE dressing client. EE attempted to pull up pants when pain in back of neck or perhaps when EE attempted to pull client up in bed
## 23143                                                                                                                                                                                                            EE drew blood on patient with menlagacorcal meningitis.
## 23144                                                                                                                                                                                         EE drew pt blood, trying to pull up the safety piece and stuck right thumb
## 23145                                                                                                                                          EE drillin hole through stainless steel to put a rack together & the bit popped through & went in his right index finger.
## 23146                                                                                                                                                                 EE drilling a block and broke, EE lunged forward and punctured his index finger with the drill bit
## 23147                                                                                                                                                                                  EE drilling a hole and the drill bit ran off ctr and drilled a hole in left thumb
## 23148                                                                                                                                                       EE drilling awkward position for extended period time. Noticed back giving him trouble. Pain going down leg.
## 23149                                                                                                                                                    EE drilling hole in a metal bracket when drill slid and the broken drill bit caught right wrist and cut open ()
## 23150                                                                                                                                                                                                EE drilling holes in overhead door frame and metalgot into left eye
## 23151                                                                                                                                                                                                       EE drilling in ceiling and a piece of concrete hitright eye.
## 23152                                                                                                                                                              EE drilling into concrete when dust or concrete particle got behind safety glasses & into to his eyes
## 23153                                                                                                                                               EE drilling out holes using drill press while drilling hole in angle iron. Piece slipped from hold & caught by drill
## 23154                                                                                                                                                                              EE drilling out old line hook to install new one and metal shavings went into rt eye.
## 23155                                                                                                                                                                          EE drilling weeds in plant bed and came in contact with poison ivy-rash on arms and face.
## 23156                                                                                                                                                                                                  EE drinking from cup when a bee flew onto his tongue stinging him
## 23157                                                                                                                                       EE driver of state car enroute on state business car was struck from the rear by antoher - cut handneck, back and leg hurts.
## 23158                                                                                                                                                            EE driver opened door as EE was standing up from looking under vehicle, as EE stood up hit head on door
## 23159                                                                                                                                                                   EE drives & operates equipment. Has pain, tinglingloss of grasp in hands, wrists, and shoulders.
## 23160                                                                                                                                                                                          EE driving a car w/seatbelt on. Someone rear ended the car he was driving
## 23161                                                                                                                                                     EE driving a track pin with a sledge hammer, a small piece of metal came off pin and struck the EE on rt shin.
## 23162                                                                                                                                                       EE driving a van leaving us postal service, when another vehicle hit passenger side of the van. Contustions.
## 23163                                                                                                                                                                                                                   EE driving a van when a car backed into the van.
## 23164                                                                                                                       EE driving along w morgan st & attempted to move from inside lane to outer lt hand lane collided w/another vehicle. Injury to lower rt back.
## 23165                                                                                                                                                                        EE driving and felt tired, pulled over put on haz ard lights was rear ended by a dodge van.
## 23166                                                                                                               EE driving and was struck in the rear by another vehicle at I85 & intersection of billy graham parkway, which forced EE vehicle off road & in median
## 23167                                                                                                                                        EE driving automobile when auto. Hit ice on high- way, skidded and turned over. Head injury-skull fracture with blood clot.
## 23168                                                                                                                                                    EE driving back to office, a food truck turned l on red and hit the passenger side/back of car, no one hurt. ()
## 23169                                                                                                                       EE driving car on us 64 east, car in front stopped, hit back of that car, could not stop due to rain. Neck, shoulders, arms, hands, fingers.
## 23170                                                                                      EE driving down ashe street when another vehicle did not yield; hit rear of other vehicle. On impact body jerked hard pain in left knee and lower back and right shoulder. ()
## 23171                                                                                                                                                             EE driving down road on wet pavement and hit the veh in front if him which stopped abruptly on brakes.
## 23172                                                                                                                                                                                                                 EE driving down road when object flew into rt eye.
## 23173                                                                                                                    EE driving east on person st. Approaching deep creek road, vehicle traveling at high rate of speed on deep creek ran stop sign and pulled out I
## 23174                                                                                                                                             EE driving fork lift when a spider fell on his face-EE began slapping spider with both hands causing hit to hit a pole
## 23175                                                                                                                                         EE driving from durham hosp as security superv. & hit another vehicle with state vehicle she was driving. Injured lt knee.
## 23176                                                                                                                                                                                                          EE driving golf cart and ran into a car in parking lot ()
## 23177                                                                                                                                                                                                        EE driving golf cart ran off road into a ditch andhit head.
## 23178                                                                                                                                                      EE driving golf cart with left hand, holding client with right arm when the client bit EE's right forearm. ()
## 23179                                                                                                                                                                          EE driving golfcart, resident pushed brake caused golfcart to to sideways. EE flipped off
## 23180                                                                                                                    EE driving her car to pick up food for school event, when she was hit by another car. Police report # 07-011431. Lt arm & hand contusion/sprain
## 23181                                                                                                                  EE driving home from work & was stopped at trafficlight, turning lt. Other vehicle behind EE vehiclefailed to stop hitting EE vehicle in the rear
## 23182                                                                                                                                EE driving in course of work, ice on road, car spun& hit guardrails, EE reported soreness next day & sent to nextcare-no lost time.
## 23183                                                                                                                                                    EE driving in heavy rain below speed limit, car hydroplanned on standing water & skidded into concrete barrier.
## 23184                                                                                                                                                                                                                      EE driving in patrol car, back began hurting.
## 23185                                                                                                                                                     EE driving in snowy conditions car lost tration and slid into small tree. No injuries to driver or passangers.
## 23186                                                                                                                EE driving in storm-a tractor-trailer very close behind EE-her car hydroplaned & spun out-crossing median-when car stopped hhe slammed against door
## 23187                                                                                                                                             EE driving motorcycle conducting escort when a vehicle made left-hand u-turn into EE's path throwing EE onto pavement.
## 23188                                                                                                                                                         EE driving object flew into window and hit EE in lft upper eyelid. Erythema & puritis to eylid w/ swelling
## 23189                                                                                                                              EE driving on 2 lane rd when a car made a left turn across her lane in front of her, she swerved to avoid car and struck another car.
## 23190                                                                                                                           EE driving on airport rd. Began to slow for traffic, car infront of EE slowed abruptly, EE took eyes off road for second, rear ended car
## 23191                                                                                                                 EE driving on hwy, when horse ran across road in front of vehicle, EE unable to avoid hitting horseee experience soreness where seatbelt held her.
## 23192                                                                                                                                                              EE driving on n. Borad and parson street, while turning hit in the bumper by another veh. No injuries
## 23193                                                                                                              EE driving on tyron rd, turned lt into crime lab &vehicle came around curve hitting EE in left side causing EE to get laceration to left side of head
## 23194                                                                                                                                                                                       EE driving own veh exiting lot onto raleigh road and struck by oncoming car.
## 23195                                                                                                                EE driving personal car after completing a home visit, EE was struck by another vehicle-inj neck **subro - state farm ins co**subro ltr sent 4/2004
## 23196                                                                                                                                                                         EE driving post-post driver slipped off post as itwas being driven and contacted EE's head
## 23197                                                                                                                                                 EE driving roving vehicle, when she turned around the mini-14 rifle fell from rack and hit EE on lower arm, right.
## 23198                                                                                                                EE driving sad on beach in wilminton area on Miss-Ion of reporting damage. Felt piece of grit or sand in eye. Tried to blink it out and rub it out.
## 23199                                                                                                                                                               EE driving state car on I95. Road construction resulted in lane merging. EE hit car in front of her.
## 23200                                                                                                                                                                                EE driving state issued vehicle on routine duty when broad sided by another vehicle
## 23201                                                                                                                          EE driving state issued vehicle, performing dutiesof s/o. Repeadley opens & closes door at residencepulling caused injury to rt shoulder.
## 23202                                                                                                                                                 EE driving state van hit another vehicle pulled out in front causing her injury to back, neck, chest, pelvis area.
## 23203                                                                                                             EE driving state veh. Box truck - green light & eebegan to proceed & was struck by oncoming vehicle colliding w/veh. Rt rear- overturned veh. On l sid
## 23204                                                                                                             EE driving state vehicle from works site - driver pulled out in front. EE hit other vehicle on pass-anger side. Bruised & sprained shoulder, neck, arm
## 23205                                                                                                                                                            EE driving state vehicle on course field trip-stopped in traffic and was rear-ended by another vehicle.
## 23206                                                                                                                                            EE driving state vehicle when deer came out of cornfield on rt side of rd and unable to avoid deer. No injury sustained
## 23207                                                                                                                    EE driving to building assignment, and turned around on lindsay st to park on campus on sullivanst and was hit by a car. Injured back and neck.
## 23208                                                                                                                                              EE driving to campground & was struck in left eye by flying dust & debris. After flushing, still felt objects in eye.
## 23209                                                                                                                                                                                                           EE driving to client's home, car brakes failed, hit tree
## 23210                                                                                                                                                                                                   EE driving to job site and ran over pothole strained lower back.
## 23211                                                                                                                                      EE driving to school where she was to work for that day tried to pass truck & truck forced EE off road into ditch - sore neck
## 23212                                                                                                                                                                                                     EE driving tractor making fire lines when rt eye began buring.
## 23213                                                                                                                                                              EE driving truck when something made a noise and caused trk to go out of control and run into a tree.
## 23214                                                                                                                                                                        EE driving unmarked police car struck from behind by another vehicle causing unknown injury
## 23215                                                                                                                                                                                          EE driving van back from school related function and was hit in the rear.
## 23216                                                                                                                                  EE driving van on I-77 near statesville, involved in multi-care chain reaction - vehicle infront stopped suddenly. Whiplash, neck
## 23217                                                                                                                      EE driving van, pulled upt to cluster 4 to pickingup clients, van was idoling - lunged forward over crub and hit building, - rt leg contusion
## 23218                                                                                                                                   EE driving veh over bridge when secured lawnmower in back of veh scraped bridge causing EE's veh to go into ditch injuring chest
## 23219                                                                                                                                                            EE driving vehicle going to forest fire was stopped at intersection, was hit in back by another vehicle
## 23220                                                                                                             EE driving water line in ground w/sledgehammer. Eemissed pipe & finger lt hand were pinched between hammer & pipe. Cuts, bruises and fracture fingers.
## 23221                                                                                                                                                                         EE driving when a deer came out of road ditch on left side, hitting pickup on driver side.
## 23222                                                                                                                                        EE driving with both his driver's and right front passenger's side window open when an unknown object struck his right eye.
## 23223                                                                                                                                 EE driving work vehicle home after attending a meeting stopped a red light hit from behind by another vehicle. Injured back & neck
## 23224                                                                                                                                                                                                                         EE drop full can food box on her finger ()
## 23225                                                                                                             EE droped some forms in the elelvator and bent down to pick them up when and turned to get out the toe of her rt shoe hit the track and caused her fal
## 23226                                                                                                                                                                                                              EE dropped 60 lb cooler on rt foot while sorting mail
## 23227                                                                                                                                                                                                               EE dropped a 10lbs can of fruit cocktail on lt foot.
## 23228                                                                                                                                                                                                                      EE dropped a 60lb box on his right second toe
## 23229                                                                                                                                                                          EE dropped a bottle of ez scrub while cleaning out a freezer and it splashed into eye. ()
## 23230                                                                                                                                    EE dropped a bottle on a test strip and bacterial culture splashed into her eyes. Note: EE paid outof pocket for prescriptions.
## 23231                                                                                                                                                                               EE dropped a case on his finger... Laceration and possible broken left middle finger
## 23232                                                                                                                                          EE dropped a delivery box which landed on her left foot. The corner of the plastic box struck the top of her left foot ()
## 23233                                                                                                                                                                                                 EE dropped a glass casserole dish on floor injuring rt inner thigh
## 23234                                                                                                                   EE dropped a grey display cube on left toe while moving it off the floor. Soft tissue erythema swelling and small fracture blister left big toe.
## 23235                                                                                                                                                       EE dropped a jug of bleach and it hit the floor, cap came off and bleach splashed in his face and both eyes.
## 23236                                                                                                                                                                                                                     EE dropped a large can of fruit on her big toe
## 23237                                                                                                                                             EE dropped a large stock pot full of liquid on right index finger. EE was instructing students when accident occurred.
## 23238                                                                                                                                                                                                     EE dropped a large stock pot full of liquid on rt index finger
## 23239                                                                                                                                                                                                                                    EE dropped a needle on his foot
## 23240                                                                                                                                                                                                                       EE dropped a no parking sign on her lt foot.
## 23241                                                                                                                                                                                                                                 EE dropped a pallet on her lt foot
## 23242                                                                                              EE dropped a paper on the floor. Bent over from chair to pick up & the rolling chair went out from under EE, causing EE to fall to floor on left elbow & left hip. ()
## 23243                                                                                                                                                                                                                       EE dropped a piece of pipe on his right foot
## 23244                                                                                                                                                                                   EE dropped a pin on the floor, reached down to pick it up, hit head on the desk.
## 23245                                                                                                                     EE dropped a set of keys and reached to pick them up, received a small cut on left palm between his thumb and forefinger from one of the keys.
## 23246                                                                                                                                     EE dropped a sheet of paper, and while pocking it up, struck his head on the edge of a shelf causinga laceration to his scalp.
## 23247                                                                                                                                                                                                                                     EE dropped a table on his foot
## 23248                                                                                                                                                                                                EE dropped a vial of glutaraldehyde in phosphate splashed in lt eye
## 23249                                                                                                                                                                                                EE dropped a wooden pallet, cut. Bruised and scraped her right leg.
## 23250                                                                                                                             EE dropped an envelope, the envelope fell btwn 2 tables. Her pinkie finger rt hand hit the fan when she tried to retrieve the envelope
## 23251                                                                                                                                                                                                                        EE dropped back in roller. Injury to finger
## 23252                                                                                                                                                                                                     EE dropped battery and battery acid flew up and in EE's rt eye
## 23253                                                                                                                                                                                                                                          EE dropped bucket on head
## 23254                                                                                                                                                                           EE dropped car keys, bent down to pick them up & hit head on corner part of his car door
## 23255                                                                                                                                                                                                  EE dropped container of reflecta which splashed into his left eye
## 23256                                                                                                                                                                                                                                     EE dropped container on toe ()
## 23257                                                                                                                                                                                                            EE dropped dish and hit left hand on top of hot station
## 23258                                                                                                                                                                             EE dropped dorm log book on floor. Injured lower back when he bent down to pick it up.
## 23259                                                                                                                                                                                                                                 EE dropped easel on her right foot
## 23260                                                                                                                                                                                                                              EE dropped fluid tank on rt great toe
## 23261                                                                                                                                                                                                                        EE dropped head board on lower right leg ()
## 23262                                                                                                                                                                                           EE dropped heavy shipping crate on lt foot loadingcrate onto trash truck
## 23263                                                                                                                                                                                           EE dropped her car keys and while picking them up she turned her lt foot
## 23264                                                                                                                                     EE dropped her lunch bag and bent down to pick it up, EE was bending down the door was closing and the door hit her left wrist
## 23265                                                                                                                                                                                   EE dropped hub cap bend down to pick it up and sliced hand with edge of hub cap.
## 23266                                                                                                                                             EE dropped id badge on floor, bent down to pick up badge, hit corner of desk pull-out table with left side of head. ()
## 23267                                                                                                                                                   EE dropped intake keys at front gate of twr #3, eestood up head struck fence causing bruise to left side of head
## 23268                                                                                                                                                                                                                                 EE dropped laptop on right foot ()
## 23269                                                                                                                                                                                                                            EE dropped large rolled plan on rt foot
## 23270                                                                                                                                                                                                        EE dropped lock bag on foot when getting change out of bag.
## 23271                                                                                                                                                                            EE dropped mortar box on left shin while carrying it to job site. Puncture to left shin
## 23272                                                                                                              EE dropped off the phone logs to the south operations yard officer he was walking back to hu#8 when he got in front of hu#8 he hit something on... ..
## 23273                                                                                                                                                       EE dropped paper on floor and leaned over while inchair and chair slipped causing employee to fall on floor.
## 23274                                                                                                                                                                                                                     EE dropped pencil and attempted to catch it ()
## 23275                                                                                                                                                EE dropped phone looked up and EE was left of center swerved to Miss Vehicle hit pothole took out transformer pole.
## 23276                                                                                                                                                                EE dropped pickup tailgate on hand. Smashed index finger on (l) hand which led to 8 to 10 stitiches
## 23277                                                                                                                                                               EE dropped pliers, caught them before they hit thefloor & point of pliers pierced right index finger
## 23278                                                                                                                                                                                   EE dropped soda and hit forehead on jeep mirror while bending down to pick it up
## 23279                                                                                                                 EE dropped some papers on the ground and reached own to pick them up and hit his head on the bottomof open car door. EE had seven stitches to head
## 23280                                                                                                                                                           EE dropped something on the floor, when she bent down to pick it up & hit her forehead on a shelf. Helf.
## 23281                                                                                                                                                            EE dropped sweatshirt on dmg battery-shook shirt off and a few drops of acid splashed on face and arms.
## 23282                                                                                                                                                                                                                                     EE dropped table on right foot
## 23283                                                                                                                          EE dropped the needle by a butterfly in box and attempted to dislodge needle from tubex, lower needle jumped up, hit my lt middle finger.
## 23284                                                                                                                                                                                                                   EE dropped trash can on toe and broke rt big toe
## 23285                                                                                                                                                                                       EE dropped wite-out bottle on desk, fluid flew up into his face & right eye.
## 23286                                                                                                                                                                            EE drove mule up on curb - did not wear seatbelt - nose hit roll bar and knee hit dash.
## 23287                                                                                                                                                                EE drove on sullivan st, driver of van ran the stop sign at winston st hitting vechicle. No injury.
## 23288                                                                                                                                                   EE drove thru open gate/win blew gate toward him and he reached out to catch it causing sp6241rain to left elbow
## 23289                                                                                                                      EE drove to residence, walked up on front porch andknocked on door, dog pushed door open, jumped up andbit EE on the lower left stomach area.
## 23290                                                                                                                     EE drove upon broke down vehicle on I-40 w\\two elderly ladies due to safety issues EE pushed vehicle off roadway. Sore lt shoulder/upper back
## 23291                                                                                                                                                                           EE drying resident, as resident was being turn to the left, he hit EE in nose with fist.
## 23292                                                                                                                                                                                                                 EE drying resident-resident scratched/pinched her.
## 23293                                                                                                                                                             EE ducked to Miss Bag of laundry being put into line and lost control causing her to fall on rt wrist.
## 23294                                                                                                                                                                                                       EE ducked to avoid being hit by a resident and strained back
## 23295                                                                                                                                                                            EE due to repetitive motions with wrists and handsinjury to wrist, hand, arm and elbow.
## 23296                                                                                                                                                                                       EE dumped trash can and felt a sharp pain in shoulder and her arm went numb.
## 23297                                                                                                                                                                   EE dumping cages on dirty side of the washroom, elbow started hurting and it was red and swollen
## 23298                                                                                                                                                                                                  EE dumpting wheel barrel and wind blew trash and dust into rt eye
## 23299                                                                                                                                                                                                               EE during a fire she inhaled a large amount of smoke
## 23300                                                                                                                                                                                                   EE during a pic training class she struck her lt knee on a couch
## 23301                                                                                                                                    EE during a use of force he was pinned against a screw sticking out of panel covering a light switch. Injured rt rear shoulder.
## 23302                                                                                                                                                   EE during a use of force lifted an inmate off of another inmate while bending over. Injured middle area of back.
## 23303                                                                                                                                           EE during lunch hour break he was playing basket- ball in gym. EE was trying to block shot and came down on his lt knee.
## 23304                                                                                                                                                         EE during normal serveillance duty work was injured in vehicle accident. Neck & rt shoulder muscle sprain.
## 23305                                                                                                                                                           EE during pepper spray training she received a rash to her facial area, possibly a reacting to thespray.
## 23306                                                                                                                                                      EE during routine locker search pricked tip of middle rt hand finger on a needle when handling a plastic bag.
## 23307                                                                                                                                              EE during staff/inmate basketball game, jumped & landed on inmates foot & twisted lt ankle. Sprain lt foot and ankle.
## 23308                                                                                                                                                  EE during use of force twisted her right knee. Try-ing to restrain inmate and felt pop and sharp painimmediately.
## 23309                                                                                                                                                   EE during use of force was pushed backwards and hit his head against the concrete wall. Injured rt side of head,
## 23310                                                                                                                 EE during use of force, rec'd injuries resulting from bringing inmate under control. Cut finger on lt hand & cut lt wrist, some swelling lt wrist.
## 23311                                                                                                                                                          EE dusting book cabinet standing on top of bed- getting down and slipped and fell on rt hand and forearm.
## 23312                                                                                                                                                                                                                           EE dusting in old adm wall injury to eye
## 23313                                                                                                                                                                                  EE eas biten by a canine patient in icu. EE was treating the patient at the time.
## 23314                                                                                                                   EE eas lifing up board that typewriter was placed on and the board lifted up too quickly and caught rt 2nd and 3rd finger between desk and board
## 23315                                                                                                                                                               EE eas pushing a large ratchet attached to top track bolt when he felt something pull in pelvic area
## 23316                                                                                                                       EE eased pt down to floor to soften fall and then helper patient back up twice. She reported pain inleft arm and wrist. Strain to left wrist
## 23317                                                                                                                                                                                                   EE eating candy and it got hung in her throat. Injury to throat.
## 23318                                                                                                                                                                                      EE eating chicken during lunch and swallowed a bone causing hole in esophagus
## 23319                                                                                                             EE eating sandwich when chair leg roller came out from under chair & fell on floor on his back when chair shifted. Inner lt elbow, scratch, lower back
## 23320                                                                                                                                                                                                      EE elevating head of client's bed upward felt pull in rt arm.
## 23321                                                                                                                                                                     EE ell down 6 steps while falling she straddled the steps on her back before coming to a stop.
## 23322                                                                                                                                                               EE elliot stated the during cell extraction traini-ng, he enter the cell his left hand hit the wall.
## 23323                                                                                                                          EE employee stood up and resident pulled her hand backwards. EE felt pain but thought it would be okay until that evening began to swell.
## 23324                                                                                                                                                                                                              EE emptied a water bucket when left shoulder strained
## 23325                                                                                                                             EE emptied sea kayak of water & pulled it onto beach felt something pull/pop in lower left groin diagnosed with a left inguinal hernia
## 23326                                                                                                                                                                                  EE emptied trash bent over to replace liner when stood back up felt pain in back.
## 23327                                                                                                               EE empting trash in men restroom when she finish empting trash she proceed to push trash down w/herhand & needle stuck her hand. Lt hand palm-needle
## 23328                                                                                                                                                                                    EE empting trash, trash was heavey, when being throwing in dumpster neck poped.
## 23329                                                                                                                                                                                                EE emptying garbage cans that were full of water injuring neck/back
## 23330                                                                                                                                                    EE emptying mop bucket-bent down to pick up debrisfallen into sink-upon lifting head hit back of head on faucet
## 23331                                                                                                                                                                     EE emptying solvent from waste bottle-bottle brushed exposed right wrist causing chemical burn
## 23332                                                                                                                                                                                                EE emptying towels out of barrel, felt something pull in upper back
## 23333                                                                                                                                                                              EE emptying trash & stocking all restrooms, and about 2pm lower back started to hurt.
## 23334                                                                                                                                                   EE emptying trash can, dust from copier cartridge in the trash blew into face. Irritation eyes, dust inhalation.
## 23335                                                                                                                                                                                        EE emptying trash cans into dumpster injury to right ring finger-laceration
## 23336                                                                                                                                                               EE emptying trash, opened small bag something went into right eye causing burning/cutting sensation.
## 23337                                                                                                                     EE encounter several unleveled inclines while conducting an inspection on June 23, 2008. EE complaints of left knee snapping on June 25, 2008.
## 23338                                                                                                                                                                       EE encountered suspicious, suspect ran & EE chased suspect where he fell injuring rt knee ()
## 23339                                                                                                                             EE ending day shift & noticed a tick attached to his body above the belt line at abdomen. Removed tick & saved it - symptoms on 06. 02
## 23340                                                                                                                                                                    EE engaged high speed chase and was involved in auto accident. Rt thumb possible torn ligaments
## 23341                                                                                                                                                                          EE engaged in a conversation while stitching and placed left hand to close to the needle.
## 23342                                                                                                                          EE engaged in a foot chase with an offender while investigating a crime as part of his job duties. EE and offender fell to the ground. ()
## 23343                                                                                                                                                                                     EE engaged in crdt training & received 3 injuries lt wrist/shoulder & tailbone
## 23344                                                                                                                                                                                    EE engaged in exercise in cell extraction & right thumb was injured in exercise
## 23345                                                                                                             EE engaged in firearm training and had difficulty holding 12 gauge shotgun, gun slipped on shoulder as EE was firing, severe pain/stiffness neck, back
## 23346                                                                                                                    EE engaged in group activity. 4 people in sittingposition with backs joined & arms locked, proceeded to work on standing. EE pulled lt shoulder
## 23347                                                                                                                EE engaged in prison emergency response exercise &while moving thru woods, EE stepped into hole in ground fell forward causing injury to right knee
## 23348                                                                                                                       EE engaged in unarmed self-defense training & involved in the side kick manuever when he tucked the wrong leg & fell to the mat & felt pain.
## 23349                                                                                                                                                                 EE engaging in recreational activity w/inmates twisted lft hip @ distal joint that joins lft thigh
## 23350                                                                                                                                                   EE enrout to assist officers, he was running and fell on concrete sidewalk. EE states the area was wet from rain
## 23351                                                                                                                             EE enroute in personal vehicle to local vendor. Eeveh. Was rear ended, when he pulled onto left sideof hwy. Contusion shoulder & neck.
## 23352                                                                                                                                                                                              EE enroute to a meeting involved in auto accident head, neck and nose
## 23353                                                                                                               EE enroute to call for svc-road wet-turned curve- lost control ran off road-struck ditch & overturnefracture spine-cuts to head-contusion right hand
## 23354                                                                                                                                                                               EE enroute to her car in parking lot when she stepped on a rock twisting her rt knee
## 23355                                                                                                                      EE enroute to his residence-end of shift-suffered seizure causing vehicle to speed up across inter- section-off road-colliding with a backhoe
## 23356                                                                                                                                                                                            EE enroute to job and slipped and fell on wet floor injuring left knee.
## 23357                                                                                                                                                                                                   EE enroute to training session. Stopped @ stop light hit in rear
## 23358                                                                                                                                                                              EE enter in stair way put hand forward hitting wall sprained left hand, little finger
## 23359                                                                                                                      EE entered 2nd floor tunnel & slipped in puddle ofwater from leaking roof (raining). She fell to left knee & slipped again falling on bottom.
## 23360                                                                                                                                                                                                                EE entered a dark room with a wet floor and slipped
## 23361                                                                                                                                                   EE entered a dog cage to give oral medication to the dog (patient), the dog lunged at her and bit her finger. ()
## 23362                                                                                                                                             EE entered a hatteras "a" block when an inmate was washing the windows and the cleaner accidentally went into EE eyes.
## 23363                                                                                                                                            EE entered a inmate cell and and trhere was a odorit made EE sick to stomach, lightheaded, and bad taste in EE's mouth.
## 23364                                                                                                                                              EE entered a inmate cell and smelled a foul odor and it made EE sick to stomack. Lightheaded, and bad taste in mouth.
## 23365                                                                                                                                                                                                EE entered a manhole with a condensate leak with rt foot into water
## 23366                                                                                                                                     EE entered a pipe closet to adjust water pressure from an inmate's toilet when some of the urine splashed into face and rt eye
## 23367                                                                                                                    EE entered a room inside the daily bldg, with a worker from overhead door and both fell into a pit approx. 6x7 into the room. Room had no light
## 23368                                                                                                                   EE entered admin building check mail, shoes were wet from rain outside, wiped feet on floor mat. Fell and hit head on door. Injured top of head.
## 23369                                                                                                                                                    EE entered an inmate cell and smelled a strange odor and became light headed, nausea, and a bad taste in mouth.
## 23370                                                                                                                                                                                          EE entered bld & slipped on wet floor-twisted rt leg & fell on right hand
## 23371                                                                                                                                                                            EE entered bldg to investigate cause of fire alarmwhich May have caused ear discomfort.
## 23372                                                                        EE entered building entrance while it was raining and began to slip when she stepped on to the landing. Lost balance and fell with weight on left knee&foot. Twisted back while falling. ()
## 23373                                                                                                                        EE entered building from out doors where it was raining. EE walked across floor mat onto waxed floor. EE's foot slipped causing her to fall
## 23374                                                                                                                                                            EE entered building that was treated for insecticide several times, EE experienced bleeding in his nose
## 23375                                                                                                                                                                 EE entered building through loading dock area, tripped on buckled rug, which caused EE to fall. ()
## 23376                                                                                                                                                               EE entered building to go through the security check and fell on stone flooring injuring right knee.
## 23377                                                                                                                                                                   EE entered building water on floor, no sign, floorhad been mopped, causing EE to twist left knee
## 23378                                                                                                                                 EE entered building- did not see thin layer of rain which caused her to slip and fall- knee, elbow, left ankle, foot and neck area
## 23379                                                                                                                                                                                              EE entered c-block door and it began to close and hit his right elbow
## 23380                                                                                                                                       EE entered cafeteria on break-stepped on wet spot on floor and fell forward hitting rt side of head, left knee and shoulder.
## 23381                                                                                                                   EE entered cell to open a window to help smoke escape. Exhaust fan was brought to cell door and wind caused dry chemical to get in eyes and nose
## 23382                                                                                                                            EE entered cell to remove a blanket, inmate grabbed baton; EE & inmate fell onto the floor & EE fell against cell door injuring rt arm.
## 23383                                                                                                                            EE entered cell when contact was made w/inmate using security shield. Hand accidentally left handles of shield & struck back of shield.
## 23384                                                                                                                                      EE entered core area of central control and slipped and fell on wet floor. Cut left forearm and bruised arms causing swelling
## 23385                                                                                                                 EE entered d-block housing and a broom came through the window beside the door. Glass flew into EE's face and chest. There were no noted injuries.
## 23386                                                                                                                                    EE entered dark hallway and atttempted to turn on light and it did not work and tripped over metal debris that was left behind.
## 23387                                                                                                                                                                                                        EE entered dishroom and slipped and fell twisting rt ankle.
## 23388                                                                                                                     EE entered door to the administration building from outside and slipped and fell. Pain in right shoulder, lower back, right hip and right knee
## 23389                                                                                                                                                         EE entered elevator door started to close was trying to push door open when finger got cut on sharp object
## 23390                                                                                                                                                                           EE entered elevator on 3rd floor when elevator doors closed on his lt arm near lt elbow.
## 23391                                                                                                                                                               EE entered essex unit elevator the steel elev doorslammed to crushing the end of right middle finger
## 23392                                                                                                                        EE entered exam room and patient was off leash with owner. EE introduced self to owner and patient lunged at EE and bit hip and fingers. ()
## 23393                                                                                                                                              EE entered green unit first door then opened the second door when the first door closed on EE left hand middle finger
## 23394                                                                                                                            EE entered hallway, feet slipped on marble type floor, lost balance and fell, landing on buttocks and lower back. Pain in hips and back
## 23395                                                                                                                                                   EE entered his patro; car and attempted to close his door as he grabbed the door handle he heard his fingers pop
## 23396                                                                                                                                       EE entered horse stall, while holding horses halterwith right arm, horse swung head up quickly pullingee's arm and shoulder.
## 23397                                                                                                                                         EE entered immate's room to give him his breakfast tray as she attempted to sit tray on table EE hit leg on his wheelchair
## 23398                                                                                                                         EE entered inmate cell to assist co-worker in sub-dueing an inmate that was assaulting staff. During struggle inmate elbow hit EE in mouth
## 23399                                                                                                                                                                                    EE entered inmates cell to place restraints on herand she spit in EE's left eye
## 23400                                                                                                                                                                                              EE entered into room to check and slipped and fellinjuring wrist/arm.
## 23401                                                                                       EE entered into the bsl-3 facility to carry out a growth curve on brucella cultures and discovered that one of my 50ml flasks that I had previously inoculated was empty. ()
## 23402                                                                                                                                                                                        EE entered into work(building 29) stepped into water and twisted her ankle.
## 23403                                                                                                                   EE entered juvenile room & was struck on rt side of head. EE injured rt hand & scraped knuckle while restraining juvenile. Rt hand/rt eye & head
## 23404                                                                                                                                                EE entered kitchen to get afternoon snacks for residents, when she lost footing on wet floor and fell on right knee
## 23405                                                                                                                                                                 EE entered lab to clean she saw fog and smelled fumes she felt light headed and throat was burning
## 23406                                                                                                          EE entered lobby; slipped and fell hitting his buttocks, back & head on the floor. Flr was being cleaned. EE states that there was no sign indicating wet
## 23407                                                                                                                                                                                        EE entered manhole upon entry bent down which caused him to pull lower back
## 23408                                                                                                                                                                                 EE entered me room, looking at new pipes in ceiling and tripped, straining lt knee
## 23409                                                                                                                 EE entered mop closet to get supplies, EE noticed bottle hidden in pipes over door, EE took it down as EE put bleach backsome spilled in both eyes
## 23410                                                                                                                                            EE entered mossman building, floor was wet from rain and slick from being waxed, she slipped and twisted her right knee
## 23411                                                                                                                                           EE entered north gate, by operation and lock on the gate lock was difficuly to close, EE hit it with palm of her rt hand
## 23412                                                                                                              EE entered office & stepped onto plastic chair matleft foot skidded on mat out from under EE causingright ankle-twist over. Fell & bruised l hip-knee
## 23413                                                                                                                                                                             EE entered pt's room to assist getting pt off transport board, pt spat in EE's face ()
## 23414                                                                                                                                        EE entered room and heard hissing noise. He was trying to locate the noise but he had to leave because odor was too strong.
## 23415                                                                                                                                                                    EE entered room to clean it and slipped on liquid on floor, and fell on rear and back and hand.
## 23416                                                                                                                                                                            EE entered side of van and his head hit top of door frame. Abrasion/knot to top of head
## 23417                                                                                                                                                    EE entered staff meeting and sat in chair which collapsed she fell backward in chair hitting aganist floor wall
## 23418                                                                                                                                                                                                       EE entered stall to clean and horse kicked EE in the stomach
## 23419                                                                                                                                                               EE entered the building, starts to itch on her handarms and face. Eyes felt like they were swelling.
## 23420                                                                                                                                              EE entered the c/3 office from outside during a rain storm, slipped on the tile floor and fell on his right shoulder.
## 23421                                                                                                              EE entered the cosmotology area, where smoke was coming from an overload dryer. EE attempted to extinguish the fire, entering and existing the.... ..
## 23422                                                                                                               EE entered the courtroom to prepare the recorder for court. The area was not well lighted and she sis not see step down. She fell on her right knee.
## 23423                                                                                                                                                                           EE entered the door and the door closed on the shoudler and arm were caught in the door.
## 23424                                                                                                                                                   EE entered the gatehouse after getting off duty slipped and fell, the janitor was stripping the gatehouse floor.
## 23425                                                                                                                                         EE entered the gatehouse to relieve officer when he was exposed to a very strong odor and his eyes and nose began to burn.
## 23426                                                                                                                                                                                    EE entered the highway into the path of another veh and was hit on the rt side.
## 23427                                                                                                                                           EE entered the lobby area and slipped on floor that was slippery after it had been mopped by inmate. Right knee bruised.
## 23428                                                                                                                                                                     EE entered the marting bldg, water on floor, slipped & fell landing on lt hip, lt wrist & hand
## 23429                                                                                                                                       EE entered the office on the admin office asst stated she had been sprayed nad was going to the er and then left the office.
## 23430                                                                                                                                                 EE entered the room looking for the light switch &missed her step & fell down the stairs breaking her right wrist.
## 23431                                                                                                                                                                                             EE entered unit & hit rt 1st finger on side of door frame & cut finger
## 23432                                                                                                                 EE entered vacant house to acess heating tank for us t purpose area unlit EE missed floor boards EE stepped in heating vent hurting rt arm & elbow
## 23433                                                                                                                                                                                                   EE entered warehouse room and property stand fell on EE rt side.
## 23434                                                                                                                                                                                            EE entered yard vehicle, hit the corner of lt eye on vehicle rear door.
## 23435                                                                                                                        EE entering #165 that leads into custody. Opened door and walked in. EE preventing theo door from slamming he mashed third & fourth finger.
## 23436                                                                                                                                                                                                             EE entering admin. Conference room door shut on rthand
## 23437                                                                                                                                                                 EE entering bathroom before wet sign put up fall on wet floor injury to left shoulder, arm and hip
## 23438                                                                                                                                     EE entering bathroom in c4-a, when they closed thedoor EE caugh finger between door & door jamb. Third (3rd) finger right hand
## 23439                                                                                                                                                                                                              EE entering bld and missed a step twisting left ankle
## 23440                                                                                                                                                                                           EE entering bldg and slipped and fell on wet floorand sprained rt ankle.
## 23441                                                                                                                                                                                                  EE entering bldg and slipped on wet floor and caught self w/hand.
## 23442                                                                                                                                                                                                   EE entering bldg slipped and fell on icy sidewalk injuring back.
## 23443                                                                                                                                                                                                         EE entering bldg, slipped on wet floor while on wayto work
## 23444                                                                                                                                                                               EE entering bldg, tripped on steps, fell, scraping right knee/wrist/left shoulder ()
## 23445                                                                                                                                                                                                        EE entering bldg-reached to open door and twisted rt ankle.
## 23446                                                                                                                                           EE entering boat on dock-as he stepped on the gumwale his foot slipped form under him falling into the boat on his back.
## 23447                                                                                                                                                                                   EE entering building and tripped over steps straining left shoulder and rt elbow
## 23448                                                                                                            EE entering building from personal car, ice and leaves, parking lot wet in area where fall occurred EE slipped and fell, sprain to right hand, lft knee
## 23449                                                                                                                 EE entering building from personal car. There was some ice and leaves, parking lot was wet in the area where fall occurred. Slipped and fell. Mult
## 23450                                                                                                                                                          EE entering building on 1st floor floor was wet EE slipped and fell on right knee and landed on left knee
## 23451                                                                                                                        EE entering building on rainy morning, placed her left foot too close to the door and sharp corner of door across the outside of left foot.
## 23452                                                                                                                                                             EE entering building through sliding doors fell to floor (nothing noted on floor) landed on both knees
## 23453                                                                                                                       EE entering cell during planeed use of force, struck rt knee against cell wall as he attempted to gain control. Injured rt knee and lt foot.
## 23454                                                                                                                 EE entering cell remove a breakfast tray to give water. Patient attacked EE from behind grabbing her neck & hands. Injured rt upper arm - lacerat.
## 23455                                                                                                                                            EE entering classroom with boxes and rt foot got caught on loose floor tile causing EE to fall landing on rt hip/wrist.
## 23456                                                                                                                                                    EE entering compound through gate when the gate closed on her wedging her between fence & gate. Injured rt arm.
## 23457                                                                                                                                                            EE entering control room and foot slipped causing EE to fall on rt knee also catching self with rt hand
## 23458                                                                                                                                                                                                                   EE entering court, slipped and fell on left knee
## 23459                                                                                                                                                                                           EE entering door same time client exiting and got hand jammed- left hand
## 23460                                                                                                                                                                            EE entering doorway and it was closed by officer in control booth. Injured rt shoulder.
## 23461                                                                                                                                                          EE entering double doors from hallway, another EE accidently pushed one of doors into her left shoulder -
## 23462                                                                                                                                                                                     EE entering front door with client EE hit right hand on door as it was closing
## 23463                                                                                                                                                                                                         EE entering gate house for duty & cut finger on metal door
## 23464                                                                                                                     EE entering his vehicle after completing accident investigation. When another vehicle skidded on icestriking EE and knocking him into his car.
## 23465                                                                                                                                                                                        EE entering housekeeping office and closed door on ring finger of left hand
## 23466                                                                                                                                    EE entering in front doors, door closed causing the metal door stop to catch his shoe and pull it off, laceration to right heel
## 23467                                                                                                                                                                                          EE entering institution & felt pain like bee stingon left side of abdomen
## 23468                                                                                                                                                                             EE entering into pe bldg-slipped on wet floor fellbroke left wrist and bruise left hip
## 23469                                                                                                                                                                                              EE entering men's room and slipped on wet floor abrasion to rt elbow.
## 23470                                                                                                                                                                    EE entering narrow bathroom stall & hit l elbow on sharp edge on metal door latch cutting elbow
## 23471                                                                                                                                                                                        EE entering office when she slipped and fell on wet floor. Injured rt knee.
## 23472                                                                                                                                                    EE entering old dorm on east side, EE tripped and fell on steps on her left knee. EE stattted that knee was ok.
## 23473                                                                                                                                      EE entering receiving area, foot slipped, fell back-wards, caught his balance then proceeded to walk into the receiving area.
## 23474                                                                                                                                                                                     EE entering restraint room and stepped on wet spot on floor twisting left knee
## 23475                                                                                                                                                 EE entering restroom and shut left index finger inbathroom door. Injured lt index finger/fingernail and area above
## 23476                                                                                                                                                             EE entering room and tripped over slightly elevated floor causing her to fall on left arm & right knee
## 23477                                                                                                                                                                              EE entering shiloh headstart when computer bag turned over sideways twisting lt-wrist
## 23478                                                                                                                                                           EE entering single cell to do search & struck his hand against door. Right knuckle middle finger swollen
## 23479                                                                                                                                                                                            EE entering stairwell & tripped hitting the back of her head on doorway
## 23480                                                                                                                                                         EE entering state archives building tripped on raised threshold, falling to knees jarring back, knees& jaw
## 23481                                                                                                                                                                                            EE entering student lounge and slipped on wet floor injuring left knee.
## 23482                                                                                                                                                                               EE entering through door and slipped on wet floor injuring rt knee, hip, left ankle.
## 23483                                                                                                                                                  EE entering tower 3, slipped & twisted rt ankle. EE implyed the accident was a result of mud fixated on her shoe.
## 23484                                                                                                                                                                             EE erecting a roadside side-when tamping the sign post dropped tamping rod on rt foot.
## 23485                                                                                                                    EE escorted client to bathroom. Client became upset, started jumping, yelling trying to strip. Client almost fell, EE pulled back catching her.
## 23486                                                                                                               EE escorted inamte into treatment room w/officer, went to change dressing & inmate hit in face with fist. Rt side face swollen & upper & lower lips.
## 23487                                                                                                                                                    EE escorted inmate to rec cage, proceed to take thehandcuffs off and the inmate stuck EE on right side of head.
## 23488                                                                                                                                    EE escorted patients to time out room. One patientwas being taken in pcl hold. While lifting patientee felt pull in upper back.
## 23489                                                                                                                                 EE escorted pt to eto, EE turned to close door and pt ran up and kicked door and EE on l knee, during restraint pt kicked EE r leg
## 23490                                                                                                                     EE escorting a client to a van client became confused and threw briefcasw with two hands from over head. Bruising rt arm, breast, palm & hand.
## 23491                                                          EE escorting a patient to the dining room for supper; another patient came after EE, attacking EE. The patient slightly nicked EE on lower left cheek, pushed EE against wall causing EE to bump head. ()
## 23492                                                                                                                                          EE escorting arrestee down icy steps-arrestee losthis balance-EE att to catch arrestee from falling and twisted his back.
## 23493                                                                                                                                                                                    EE escorting cleint to room stepped on a rock on sidewalk and twisted rt ankle.
## 23494                                                                                                                                                                   EE escorting client down hallway-client attempt torun ramming his head into wall and fighting EE
## 23495                                                                                                                                                       EE escorting client from bathroom to day room, client would not relase EE's left arm causing strain to elbow
## 23496                                                                                                              EE escorting client from bathroom- client became aggitated -tried to hit EE in face, EE tried to cover face, client grabbed EE l thumb and twisted it
## 23497                                                                                                                                                                   EE escorting client ot sun porch holding hands- client squeezed and pulled twisting EE left hand
## 23498                                                                                                                                                  EE escorting client to bedroom-client become unsteady and fell-resulting in EE falling landing on left wrist/knee
## 23499                                                                                                                                                                                                               EE escorting client to itd-client bit EE on rt hand.
## 23500                                                                                                                                                                                        EE escorting client to lto when client shoved EE unto door pinning rt hand.
## 23501                                                                                                                                                               EE escorting client when client began to fall-EE caught client and was pinned to wall injuring back.
## 23502                                                                                                                                                              EE escorting client, client started falling to flooee tried to support fall with body, twisting back.
## 23503                                                                                                                                                                     EE escorting clients out of pt bedroom when clientfell and clt head struck EE in low left back
## 23504                                                                                                                                 EE escorting inmate back to cell from shower, wheninmate sprayed EE in eyes & face area then head- butted EE in face lt side cheek
## 23505                                                                                                                                  EE escorting inmate back to cell. After removing handcuffs inmate jerked EE's hand back in cell jamming the back of hand on door.
## 23506                                                                                                                             EE escorting inmate from emergency room-inmate lost balance and fell into shrubs-EE asst inmate and lost balance and twisted left knee
## 23507                                                                                                                                                                                            EE escorting inmate to cell and slipped on wet floor landing on buttock
## 23508                                                                                                                                                                                                           EE escorting inmate to cell and was assaulted by inmate.
## 23509                                                                                                                                                                 EE escorting inmate to cell in when antoher inmate threw urine through bars. Urine went on eesarm.
## 23510                                                                                                                                                                                 EE escorting inmate to diagnostic center when she slipped and fell on ice outside.
## 23511                                                                                                                                        EE escorting inmate to dining room stepped off edge of sidewalk causing her to twist rt ankle & falling down on both knees.
## 23512                                                                                                                    EE escorting inmate to his cell, inmate became verbally disruptive, agressive move towards EE, causing EE to use force, fractured l hand finger
## 23513                                                                                                                 EE escorting inmate to medical when inmate attempted to get away from him. EE hand caught in chains at handcuffs. Three fingers rt hand & lt elbow
## 23514                                                                                                                                                                                      EE escorting inmate to visit when officer in c-3 closed door on EE left knee.
## 23515                                                                                                                                                                     EE escorting inmate when he slipped in water on floor causing injury to rt leg and rt shoulder
## 23516                                                                                                                                                                                    EE escorting inmate when inmate turned & assaultedee by kicking him in the ribs
## 23517                                                                                        EE escorting inmate who was placed in restraints to segregation. Inmate resisted escort. Fingers of left hand caught between cuffs as inmate squeezed his arms together. ()
## 23518                                                                                                                                                   EE escorting inmates for showers in unit iv when he slipped on wet floor-pulled something in lower left rib area
## 23519                                                                                                                     EE escorting inmates from one building towards main building. Standing on step outside main building, stepped on bottom step, fell on his back
## 23520                                                                                                                        EE escorting inmates from sgt area, inside fence area to exit. Inmate disruptive, taking fence door& striking officer. Lt forearm, bruised.
## 23521                                                                                                                                                                                                            EE escorting inmates out of cellblock due to paperfire.
## 23522                                                                                                                                                           EE escorting inmates to & from showers states she fell & hurt rt knee & hip due to food/liquid on floor.
## 23523                                                                                                                            EE escorting patient in cafeteria, patient tried torun away & while I was holding on to her... Patientjerked arm & I felt catch in back
## 23524                                                                                                                             EE escorting patient to seclusion room; patient became combative & hit EE on left cheek. Right side of collarbone & left middle finger
## 23525                                                                                                                 EE escorting pt through tunnel. Pt began swinging at EE, pulled hair, EE fell against wall hitting head, & lt shoulder, rt 5th finger/low rt back.
## 23526                                                                                                                        EE escorting resident to unlocked thime out, staff& resident stumbled into corner of wall, hitting back upper lt arm causing bump & bruise.
## 23527                                                                                                                    EE escorting student back to room EE placed his hand on students shoulder student pushed his arm EE felt something pull injury to left shoulder
## 23528                                                                                                                                                                                 EE escorting student to his room when he kicked eein back of his leg in knee area.
## 23529                                                                                                                                                                             EE escorting students into a locked unit as EE turned key felt sharp pain through arm.
## 23530                                                                                                                                                                                     EE escourted inmates to their housing when she twisted or pulled her left knee
## 23531                                                                                                                                 EE evacuating inmates from fire in cellblock. Did have an air pack on. EE also states put another fire out in cellblock. No air on
## 23532                                                                                                                                                                                                               EE evacuating inmates from paper fire in cell- block
## 23533                                                                                                                                                                                 EE evacuating inmates out or cellblock due to fireee was wearing a scott air pack.
## 23534                                                                                                                                                                                 EE evaluating patient when he hit her in lt hip and back area. Lt low back strain.
## 23535                                                                                                                                                                                                                        EE examing child & was exposed to pertussis
## 23536                                                                                                                                                                                                       EE examing fire scene and fell through floor injuring groin.
## 23537                                                                                                                                                  EE examinied dna fragment in an agaror gel, he us-ed the wrong shield for protection, uv irradiated face and eye.
## 23538                                                                                                                                                                                                                                    EE examining a dog and was bit.
## 23539                                                                                                                                  EE examining gel with students using uv light, EE not wearing protective eye glasses, prolonged exposure to uv light injuring eye
## 23540                                                                                                                                                                                       EE exerted during a exercise work out and complained of pain to lower wrist.
## 23541                                                                                                                            EE existing work vehicle and stepped onto gravel surface when pain was felt in left foot. Pain continued for 2 days before reporting ()
## 23542                                                                                                                                                                                                      EE exit d cell block slipped on some butter that on the floor
## 23543                                                                                                                                                                                      EE exited building and tripped on sidewalk, scraped cheek, shoulder, and knee
## 23544                                                                                                                         EE exited building and tripped on uneven sidewalk. Scratches, bruises & swelling rt knee, abrasions both hand, rt wrist swelling and pain.
## 23545                                                                                                                                                                                                  EE exited dorm and slipped and fell on steps. Injury to right leg
## 23546                                                                                                                   EE exited elevator, weaved way thru students waiting for elevator, headed down hall & fell on her face. Broke 2 teeth @ gumline & cracked 3 more
## 23547                                                                                                                                           EE exited examination room the infirmary, slipped newly waxed floor. No signs up. Acute contusion and abrasions rt knee.
## 23548                                                                                                                        EE exited from one office room to the testing lab and felt left ankle give way/twist. Two ees assisted in picking her up from the floor. ()
## 23549                                                                                                                          EE exited his car to report for duty in the parking lot he stepped on an icey spot and los his balance and fell to the ground struck head
## 23550                                                                                                                EE exited his patrol car to retrive an item of hispersonal car which was parked alone side of the patrol car, facing in the opposite direction.. ..
## 23551                                                                                                                                                                               EE exited his patrol vehicle and felt a strain in his low abdomen and testicle area.
## 23552                                                                                                                                      EE exited his patrol vehicle to aprehend violator as the EE placed his left foot onto the pavement, he twisted his left knee.
## 23553                                   EE exited his vehicle to check his front tires due to a low warning light. EE exited his vehicle, lost his footing, attempted to break his fall, and struck his right hand against the left front tire spraining his right hand.
## 23554                                                                                                                                                                                      EE exited patrol vehicle and slipped on leaf covered slope. Left knee strain.
## 23555                                                                                                                                                EE exited philips by back steps, slipped and felldown steps due to ice. Injured foot, side, ankle, thigh, shoulder.
## 23556                                                                                                                                                                                             EE exited pool & slipped on wet surface; injured left great toe & foot
## 23557                                                                                                                                                                                     EE exited sliding door of van and struck head on frt passenger when it opened.
## 23558                                                                                                                                                                    EE exiting & realized oily substance on floor grabbed wall & door closed onto left index finger
## 23559                                                                                                                                      EE exiting - reaching through door slot to push open outer metal door. Wind caught door closing lthand middle finger - mashed
## 23560                                                                                                                                                                          EE exiting a-wing & hit head on top of door frame which caused him to fall-contusion head
## 23561                                                                                                                       EE exiting area after filling state vehicle with gasoline, went to turn right & steering wheel locked causing collision with another vehicle
## 23562                                                                                                                                                                  EE exiting back door, slipped on concrete & fell. Rt hand hit asphalt, left knee impacted cement.
## 23563                                                                                                                   EE exiting back of mechanical tree planter, hold- ing hand rail. Foot slipped off back weights caus-ing him to loose grip fell on ground-rt knee
## 23564                                                                                                                                                                                                              EE exiting basement hit top of head on window header.
## 23565                                                                                                             EE exiting bldg -side exit. Carrying paperwork against her chest & step up from sidewalk to grasstripped&fell. Lt clavicle, shouler, rib, wrist, back.
## 23566                                                                                                                                                                             EE exiting bldg and foot slipped on steps-lost balance and fell landing on left ankle.
## 23567                                                                                                                                                                                        EE exiting bldg and foot slipped-EE fall forward injuring rt knee and foot.
## 23568                                                                                                                                                                                     EE exiting bldg missed step near platform ground causing rt foot/knee to twist
## 23569                                                                                                                                                                                                EE exiting building and fell on concrete sprainingleft pinky finger
## 23570                                                                                                                                                                                EE exiting building and fell on sidewalk injuring rt knee, neck, shoulder and back.
## 23571                                                                                                                                                  EE exiting building during fire alarm, stairs wet from snow flurries, missed last step & fell injured ankle/foot.
## 23572                                                                                                                                              EE exiting building to deliver packages to ups drop box; EE tripped over wooden pallets & fell, injuring hand and arm
## 23573                                                                                                                                                                                 EE exiting building, caught in revolving door. Contusion to right knee & right hip
## 23574                                                                                                                   EE exiting bus began descending steps bus jerked caused EE to slip down steps to ground he support fall by holding on bar caused strain lt elbow
## 23575                                                                                                                                                                           EE exiting bus, jammed her knee & fell to the ground (2005 chancellor's state tour stop)
## 23576                                                                                                              EE exiting c & d cellblock EE opened metal slidingdoor from block to lobby and fire alarm went off closing doors auto, struck EE on left side of head
## 23577                                                                                                                                         EE exiting cell block bc-10 westside door was openslowly so he attempted in pull it open. Small abrasion rt middle finger.
## 23578                                                                                                                                                           EE exiting central bath when client struck EE on left check causing EE to fall and hit head againstwall.
## 23579                                                                                                                                                                      EE exiting door and going into another bldg tripped over door stop in walkway straining knee.
## 23580                                                                                                                                                     EE exiting dorm when EE caught second left finger betwn metal and wood doors mashing end severely nail remover
## 23581                                                                                                                                                    EE exiting food service office in dining hall tripped over telephone cord causing fall hitting head on lt side.
## 23582                                                                                                                                         EE exiting from building and missed a step and fell. Clinchered 3/31/06 at $65k plt atty-scott galagier ag gary scarzafava
## 23583                                                                                                                                                                         EE exiting from veh when EE dropped item, reached to pick up item bumped head on veh door.
## 23584                                                                                                                                                                                               EE exiting living area, collided w/ another EE who is vision impared
## 23585                                                                                                                      EE exiting main bldg using concrete ramp; foot caught rough area of material and fell forward onto knees, using hands/wrists to catch fall ()
## 23586                                                                                                                                                                                                   EE exiting office suite, hit rt elbow on railing. Still treating
## 23587                                                                                                                              EE exiting operations she slipped on wet floor in hallway in front of operations. Injured rt elbow, area of redness, slight swelling.
## 23588                                                                                                                                                                                       EE exiting patol veh and stepped into a hole felt a sharp pain in left knee.
## 23589                                                                                                                                                                                         EE exiting patrol veh and heard a pop coming from left knee and felt pain.
## 23590                                                                                                                                                          EE exiting patrol vehicle & felt burning sensationin right inner leg/thigh-pain worsened as day continued
## 23591                                                                                                                                           EE exiting restroom door, when another EE enteringrestroom door, causing door to strike EE's right wrist, arm & shoulder
## 23592                                                                                                                                                                                                   EE exiting ship/receiving & scrapped lower left leg on iron pole
## 23593                                                                                                                                                          EE exiting storage room caught foot in strap fell on floor injuring left arm, left knee, right lower back
## 23594                                                                                                                                            EE exiting tower 2 through trap door above slamming down to top of head causing EE - head pain, shoulder and neck pain.
## 23595                                                                                                                                                         EE exiting transfer bus, when he ran into the dooroverhang. Injury occured on forehead and bridge of nose.
## 23596                                                                                                                                                                               EE exiting van falling on side. Injury to knees. **claim received 1/11/2008-friday**
## 23597                                                                                                                                                       EE exiting van through passenger door-lost balanceatt to catch self w/left hand and broke a bone on rt hand.
## 23598                                                                                                                                                                  EE exiting veh 550 in reverse-EE backed into a free standing cylinder rolled down the log to foot
## 23599                                                                                                                                                                           EE exiting ward missed step & fell rt knee struck concrete scraped knuckle lt 4th finger
## 23600                                                                                                                                                                                                     EE exiting work van, stepped on a patch of ice, rt knee popped
## 23601                                                                                                                                                        EE experencing tingling to l arm above elbow down to finger tips. EE used mouse with left hand for 10 years
## 23602                                                                                                                                                             EE experience a needle stick in her left fourth finger by dental ass. During cross reach in procedure.
## 23603                                                                                                                                                                     EE experience pain in left wrist and hand with increased pain when using the computer keyboard
## 23604                                                                                                                                                                                    EE experience rise in his blood pressure and pulse while stressful situation ()
## 23605                                                                                                                                                                 EE experienced a popping feel in rt knee while walking from grass area to concrete walk in kc park
## 23606                                                                                                                                                                            EE experienced a respiratory reaction to the air in the room in which she was teaching.
## 23607                                                                                                                                                                               EE experienced a sharp pain in his left shoulder while swing a baton during training
## 23608                                                                                                                                                                                      EE experienced a sudden sharp pain in lower back while lifting a 30-40lb pan.
## 23609                                                                                                                                                           EE experienced breathing problems, kept working day after day, but ran out of breath as the day wore on.
## 23610                                                                                                                                                           EE experienced burns on fingers and started feeling ill - shortly after drug bust where he handled drugs
## 23611                                                                                                                                                                                                 EE experienced constant harrassment, stress, and work overload. ()
## 23612                                                                                                                        EE experienced difficulty breathing. Making wheezing noise. EE states this is from the smell of clorox being used to clean up in dormitory.
## 23613                                                                                                                                                                                        EE experienced discomfort in rt hand & wrist & at time - computer terminal.
## 23614                                                                                                                                                                         EE experienced headache & respiratory problems when carpet was removed from her work area.
## 23615                                                                                                               EE experienced headache, dizziness, irritate eyes/throat, coughing and tightness in chest due to torched tar fumes in grants and contracts suite. ()
## 23616                                                                                                                                                                                                                  EE experienced irritation to left eye during work
## 23617                                                                                                                                            EE experienced nausea & vomiting after exposure tofume from fire extinguisher & smoke from fire thatinmate had started.
## 23618                                                                                                                                                                               EE experienced neck cramping and spasms while painting ceilings in eagles dormitory.
## 23619                                                                                                                                                                                                   EE experienced numbness & pain in hand wrist & armduring keying.
## 23620                                                                                                                                                                              EE experienced numbness and tingling in both wrists and hands from repetitive motion.
## 23621                                                                                                                                                                                EE experienced numbness in fingers and thumb and pain at base of wrist on left hand
## 23622                                                                                                                                                                                                      EE experienced numbness/tingling in right hand, arm, shoulder
## 23623                                                                                                                                                                     EE experienced paid after lifting client on and ofrides at six flags in georgia sprain to back
## 23624                                                                                                                                                                                               EE experienced pain & burning in shoulder & neck restraining client.
## 23625                                                                                                                                                                                                       EE experienced pain and swelling in elbow when lifting boxes
## 23626                                                                                                                                                                                                           EE experienced pain and swelling in hand due to writing.
## 23627                                                                                                                              EE experienced pain in back and feet after over 8 hours standing on uneven surface with duty belt onduring shift. Referred to glenda.
## 23628                                                                                                                                                                                                          EE experienced pain in both wrists and numbness in hands.
## 23629                                                                                                                                                      EE experienced pain in both wrists. She believes it's carpal tunnel syndrome. EE keys data entry for 8 hours.
## 23630                                                                           EE experienced pain in her right shoulder and right side of her neck when she turned her body to the left when opening/stamping incoming mail and packaging/lifting of archive boxes. ()
## 23631                                                                                                                                                                    EE experienced pain in lt forearm after scanning very large patient. Forearm ached and tingled.
## 23632                                                                                                                                                                EE experienced pain in r side of neck, shldr, and back due to lifting multiple dogs onto exam table
## 23633                                                                                                                                                              EE experienced pain in rt rib cage area while attempting to lift a box with computer monitor enclosed
## 23634                                                                                                                                                                                                                  EE experienced pain while sleeping in rt shoulder
## 23635                                                                                                                                                                                                         EE experienced pain while walking, performing workrt. Foot
## 23636                                                                                                                                                                                          EE experienced pain while working. The cause is unknown. EE injured back.
## 23637                                                                                                                                                                                        EE experienced repetitive trauma to shoulder over two years by two clients.
## 23638                                                                                                                                                                                                       EE experienced right wrist pain from continued use of mouse.
## 23639                                                                                                                                                                               EE experienced severe trauma, anguish, anxiety, depressiom, post traumatic disorder.
## 23640                                                                                                                                                                    EE experienced sharp pain from her wrist to the pads of her hands, mainly in the thumb area. ()
## 23641                                                                                                                                                                                     EE experienced sharp pain in left wrist subsequent to extended keyboard usuage
## 23642                                                                                                                                                                     EE experienced sinus irritation, throat & eye irritation while breathing kodak cleaning fumes.
## 23643                                                                                                                                 EE experienced soreness in hands, mostly right hand, but sometimes left. Seems to be worse when she works extensively on computer.
## 23644                                                                                                                                                                         EE experienced stinging sensation in back while helping two clients move a box of supplies
## 23645                                                                                                                                                                                                        EE experiences gastrointestinal & anxiety related symptoms.
## 23646                                                                                                                                                              EE experiences pain in both wrists and hands after use of computer - part of regular responsibilities
## 23647                                                                                                                                                                                             EE experiencing burning in both hands which she says comes from typing
## 23648                                                                                                                                      EE experiencing intense pain when speaking on the phone (8 hrs a day). Unable to turn head to the ltdiagnosed with tmd (tmj).
## 23649                                                                                                                                                                                                          EE experiencing pain in both hands & wrists while keying.
## 23650                                                                                                                                                          EE experiencing pain in both wrists since 2007, diagnosed with tendonitis in right hand/wrist on 1/30/09.
## 23651                                                                                                                                                           EE experiencing red rashes on both cheeks while atwork. May have been exposed to mold, or other irritant
## 23652                                                                                                                                                                                        EE experiencing sharp pain and tingling in l wristwhile working at computer
## 23653                                                                                                                                                     EE experiencing some discomfort in lower arm with a tingling sensation from the elbow down towards the wrists.
## 23654                                                                                                                                                                           EE experiencing tremors in right hand, after shooting shotgun pain in neck & rt shoulder
## 23655                                                                                                                                                         EE explains that rt hand and wrist became numb and tingles, EE feels that injury is related to job duties.
## 23656                                                                                                                                                                                            EE exploring nature trails at park when bitten by ticks on lower rt arm
## 23657                                                                                                                                                                                                              EE expose to inmate's blood to right and left forarms
## 23658                                                                                                                                                                                      EE exposed rt hand to liquid nitrogen while trying to retrieve dropped object
## 23659                                                                                                                                                                                                                     EE exposed to TB-tested positive on skin test.
## 23660                                                                                                                                                                                                                        EE exposed to a person having tuberculosis.
## 23661                                                                                                                                  EE exposed to acid aerosol resulting from imhersonof metal into sulfuric acid bath while retriving equip. -eyes/skin/hands/throat
## 23662                                                                                                                                                          EE exposed to chemicals used by contractors, EE haschemical irriation in throat & chest causing infection
## 23663                                                                                                                                                                                                              EE exposed to chemicals which caused a bag reactioon.
## 23664                                                                                                                                                                                                                        EE exposed to client who died of meningitis
## 23665                                                                                                                                                                                                                  EE exposed to coworker with confirmed case of TB.
## 23666                                                                                                                        EE exposed to fumes due to repair work being done on lrg animal stall-broke out w/rash on neck, stomach, arms, legs, headache, eyes burning
## 23667                                                                                                                                                                                 EE exposed to iodine sprayer which caused rash on both hands, forearms and elbows.
## 23668                                                                                                                                                                                                     EE exposed to paint fumes/carpet fumes while working at her pc
## 23669                                                                                                                                                                                                                     EE exposed to poison ivy during field research
## 23670                                                                                                                                                                                                                              EE exposed to smoke from a paper fire
## 23671                                                                                                                                                                                                                                       EE exposed to students blood
## 23672                                                                                                                                                                                                                                  EE exposed to sulfuric acid fumes
## 23673                                                                                                                                                                    EE exposed to the pepper gas by being sprayed in the face by captain kenworthy. Head/scalp area
## 23674                                                                                                                                                                                                             EE exposed to toxic chemicals resulted in liver damage
## 23675                                                                                                                                                                             EE exposed tp client who died on 4/21/96 of menagitis at time of death, EE is preganat
## 23676                                                                                                                                                                                                                        EE extended back while doing research work.
## 23677                                                                                                                                                                                                                 EE extented right leg to press pedal for blower ()
## 23678                                                                                                                                                                              EE extracting inmate's tooth when elevator slippedpuncturing skin on right 1st finger
## 23679                                                                                                                                                                   EE extraction training he was the shield man when inmate hit EE in the left knee with his helmet
## 23680                                                                                                                EE fail appox. 1 1/2 feet to same level dry floor when conducting air tank inspection. Injuried (r) knee - EE recently had knee surg. For n-related
## 23681                                                                                                                                                                                    EE failed to reduce speed for stopped traffic and struck a vehicle in the rear.
## 23682                                                                                                                                                                                                      EE failed to stop due to not observing stop sign. No injuries
## 23683                                                                                                                                                                                                          EE failed to yield the right of way of on coming vehicle.
## 23684                                                                                                                                                  EE fainted due to very high stress level in day care the director died on sun. & EE was told just before fainting
## 23685                                                                                                                            EE fainted in office chair. Fell on floor and impact caused laceration in chin, jaw and face soreness and headache. Referred to glenda.
## 23686                                                                                                             EE fainted in office requiring med attn, when ems was loading EE onto elevator, EE foot was caught in rail causing severe muscle sprain to foot, ankle
## 23687                                                                                                                                                                                               EE fainted in the bathroom and hurt her head. EE is in the hospital.
## 23688                                                                                                                                                                                                   EE fainted walking down hall and hit face against wall and floor
## 23689                                                                                                                                                                                                                              EE fainted while putting up the mail.
## 23690                                                                                                                                                                                                                               EE fainted, blood pressure elevated.
## 23691                                                                                                                                                                           EE fall and slipped on water that has leaked on floors--injuring rt hip, rt arm/shoulder
## 23692                                                                                                                                                               EE fall going down steps from judges bench to clerks desk. Taking EE from second step to the bottom.
## 23693                                                                                                                                                                                              EE fall of top step in the back of bldg 44 and injured knee and foot.
## 23694                                                                                                                                                                                                       EE fe; t pain in lower back while putting away diaper boxes.
## 23695                                                                                                                                                                                  EE feall on wet ramp coming out of trailer #24 injuring left wrist and left knee.
## 23696                                                                                                                                   EE fee on concrete while attempting to arrest person for driving while impaired. Injury to left elbow, right hand and right knee
## 23697                                                                                                                                                                                            EE feeding client jello when client balled up fist and hit EE in rt eye
## 23698                                                                                                                                                        EE feeding client when hand went up in the air andhit EE under the chin causing EE's bottom teeth to break.
## 23699                                                                                                                             EE feeding client, client is usally in restraint was taken out as bsp, staff was holding client hand, client lowered head & bit staff.
## 23700                                                                                                                                                                  EE feeding client-client got up walked a few stepsturned and fell on EE hitting his leg with head
## 23701                                                                                                                                                EE feeding inmate who grabbed EE left arm pulled it inside cell proceeded to cut EE on left arm from elbow to wrist
## 23702                                                                                                                                                              EE feeding student when chair tilted over, causingback of chair to hit EE on the head, near left ear.
## 23703                                                                                                                                                        EE feel forward onto platform, landed on hands and knees. Bruise (r) knee - (r) knee problems pre-existing.
## 23704                                                                                                                                                                                                                                    EE feel on hip while in shower.
## 23705                                                                                                                                                           EE feel that using her wrist and arms repeatly over the years has caused her problems. Injured lt wrist.
## 23706                                                                                                                                                                                         EE feels burning, itching and stinging on both hands, pain comes and goes.
## 23707                                                                                                                                                                          EE feels due to poor computer/desk configuration has caused possible tendonitis of elbow.
## 23708                                                                                                                                                                           EE feels injury was caused by repeated typing and writing in a poorly designed workspace
## 23709                                                                                                                                                                                                             EE feels repetitive work has caused pain in left hand.
## 23710                                                                                                                                                                                                            EE feels she has early stages of carpal tunnel syndrome
## 23711                                                                                                                                                                           EE feels that constant use of keyboard feels that keyboard caused carpal tunnel syndrome
## 23712                                                                                                                                                                          EE feels that she injured her back when she was getting a patient dowm that hung herself.
## 23713                                                                                                                                    EE feels that this was a flare-up from previous injury that happened on 03 July 2013, while buffering gatehouse in the past. ()
## 23714                                                                                                                                                                  EE feels using her wrist & arms repeatly over the years has caused her problem. Injured lt wrist.
## 23715                                                                                                                                    EE feet got caught in fig tree limbs, he fell cutting his forehead, he unable to catch self due to the fact his hand were full.
## 23716                                                                                                                                                                       EE feet slipped on step of transfer but and in attempt to catch himself injured rt shoulder.
## 23717                                                                                                                                                                                  EE feet slipped while walking down stairs/ injuredface, eyes, nose, wrist & hands
## 23718                                                                                                                                                                                                      EE fel in the parking on her way to he car. Broke lt forearm.
## 23719                                                                                                                                                                                                   EE fell & hit head on door. Bruise to multiple parts above waist
## 23720                                                                                                                 EE fell & hurt rt knee while apprehending a suspecwho had a shot gun in his pants. Suspect attemptedto run, officer grabbed supspect and both fell
## 23721                                                                                                                                                                                                                              EE fell & twisted ankle. Scraped knee
## 23722                                                                                                                                                      EE fell across top of a visitor's folded stroller injuring left arm, shoulder, upper back, elbow and rt knee.
## 23723                                                                                                                                                                                                                  EE fell after a chair rolled from underneath her.
## 23724                                                                                                                                                                                                          EE fell after slipping on wet floor. Injuring rt forearm.
## 23725                                                                                                                                                                                                                              EE fell after tripped over floor fan.
## 23726                                                                                                                                                                                       EE fell against a log while trying to evacuate a camp quickly. Finger jammed
## 23727                                                                                                                                                                                EE fell against wire reel and concrete floor whilechecking wire inventory on shelf.
## 23728                                                                                                                                                                                                                          EE fell and bruised her rt knee and ankle
## 23729                                                                                                                                                                                                                     EE fell and caught herslef with her left hand.
## 23730                                                                                                                                                                                                                                       EE fell and fractured lt arm
## 23731                                                                                                                                                                                                                 EE fell and hit his chest on the side of the truck
## 23732                                                                                                                                                                                           EE fell and hit his head on door/doorway; laceration above his right eye
## 23733                                                                                                                                                                     EE fell and hit the back of her head and right hand on the desk... Right hip bone hurting also
## 23734                                                                                                                                                                                EE fell and hit the floor; became nauseated; not sure of injury at time of accident
## 23735                                                                                                                                                                   EE fell and hurt left elbow while struggling with an aggressive patient. Contusion to left elbow
## 23736                                                                                                                                                                                                                                       EE fell and injured her knee
## 23737                                                                                                                                                                                                                                  EE fell and injured her left foot
## 23738                                                                                                                                                                                                                                 EE fell and injured her right hand
## 23739                                                                                                                                                                                                        EE fell and injured his back while trying to catcha patient
## 23740                                                                                                                                                                                                                                       EE fell and injured his knee
## 23741                                                                                                                                                                                                                         EE fell and landed on lt elbow and lt knee
## 23742                                                                                                                                                                                                                    EE fell and lost his balance falling on buttock
## 23743                                                                                                                                                                                                             EE fell and slipped on a wet floor causing back injury
## 23744                                                                                                                                                                   EE fell and slipped on metal object that was attached to floor--striking both elbows and lt knee
## 23745                                                                                                                                                                                                          EE fell and slipped on wet floor injuring his rt shoulder
## 23746                                                                                                                                                                                                                                   EE fell and struck head on floor
## 23747                                                                                                                                                                                                                            EE fell and struck her head on pavement
## 23748                                                                                                                                              EE fell and struck his rt knee aganist the toilet and floor inside the cell while trying to gain control of an inmate
## 23749                                                                                                                                                                                                    EE fell and tripped while stepping over a curb injuring lt knee
## 23750                                                                                                                                                                                                            EE fell and twisted his lt knee while climbing a ladder
## 23751                                                                                                                                                                                                                                    EE fell and twisted left ankle.
## 23752                                                                                                                                                                                                                                        EE fell and twisted rt knee
## 23753                                                                                                                                                                                         EE fell appox 20-30 ft off rock face and waterfallback began hurting badly
## 23754                                                                                                                                                            EE fell as she approached the steps. She struck her chest on the bottom step and her chin on next step.
## 23755                                                                                                                                                           EE fell as she was getting out of van-broke fall with rt arm and hit left ankle/elbow on van and asphalt
## 23756                                                                                                                                                                                                    EE fell as she was going to printer, and twist left foot/ankle.
## 23757                                                                                                                                                                                                    EE fell as she was walking down stairs. Broke 3 bones in ankle.
## 23758                                                                                                                                                                                      EE fell as she was walking in the parking lot intowork. Sprained right wrist.
## 23759                                                                                                                             EE fell asleep at the wheel and ran off the road striking guardrails on both sides of the road- complaining of headaches and back pain
## 23760                                                                                                                                                                                                                 EE fell at front gate from a crack in the pavement
## 23761                                                                                                                                                                                     EE fell back in chair when after someone had sat in her chair & readjusted it.
## 23762                                                                                                                                                                                                EE fell back into a chair striking a bookshelf injuring rt shoulder
## 23763                                                                                                                                                                                         EE fell back trying to sit in desk chair & hit the back of head on desk ()
## 23764                                                                                                                                                                                                EE fell back when she opened door to the small supply refrigerator.
## 23765                                                                                                                                                                                                               EE fell backward onto steps-bruised lt hand and knee
## 23766                                                                                                                                                                      EE fell backwards after falling when her feet slipped out from under her. Injured neck, back.
## 23767                                                                                                                     EE fell backwards landing on her buttocks/tailboneon the paved parking lot and hit the back of head on car parked nex to her and twisted foot.
## 23768                                                                                                                                                            EE fell backwards off of the back of a truck.... Injuring his right shoulder, left wrist, and left side
## 23769                                                                                                                                                                    EE fell backwards on hand drill while holding mast for weather station, injured shoulder, back.
## 23770                                                                                                                                                                                                             EE fell backwards out of office chair and strainedback
## 23771                                                                                                                                                                            EE fell backwards when client jerked away from EE and her rt leg was twisted under her.
## 23772                                                                                                                                                                 EE fell backwards while holding the student landing ackwardly on some chairs, strain to lower back
## 23773                                                                                                                                                                                   EE fell backwards while trying to rise from a wheeled lab chair injuring rt knee
## 23774                                                                                                                                                                        EE fell backwards, during stream cleanup, caught balance on object that cut hand-wrist area
## 23775                                                                                                                         EE fell between dock and boat getting caught on a line from the boat to dock injury to right side ofbody from ankle to upper arm and chest
## 23776                                                                                                                                                                                                            EE fell causing head to strike floor and bruised lt eye
## 23777                                                                                                                                                                                                     EE fell coming down steps and broke left wrist unknown reason.
## 23778                                                                                                                                                                                        EE fell coming down steps inside the building injuring left knee and rt arm
## 23779                                                                                                                                                                                       EE fell coming downstairs across rope blocking stairs. Injury to right wrist
## 23780                                                                                                                                                             EE fell coming into building landing on right knee. **clmt deceased 1-20-2003 as result of lung cancer
## 23781                                                                                                                                                                                                                                                EE fell doen stairs
## 23782                                                                                                                                                                                    EE fell doing down stairs as she was leaving work contusion rt elbow & rt thigh
## 23783                                                                                                                                                                                                                                               EE fell doing floors
## 23784                                                                                                                                                                                          EE fell down 2 steps leading from dart office to ground-injured right arm
## 23785                                                                                                                                                                                                  EE fell down 3 steps will walking to a table-fractured right foot
## 23786                                                                                                                                                     EE fell down 3 wet steps leading to soap plant. Sustained injuries to both wrists, right elbow and lower back.
## 23787                                                                                                                                                                                                                EE fell down 5 stairs at meck. County courthouse ()
## 23788                                                                                                                                                                                                     EE fell down 6 stairs & landed on lt shoulder/arm & right leg.
## 23789                                                                                                                                                                                         EE fell down 7-8 steps at rowan co. Courthouse. Injured forehead and knee.
## 23790                                                                                                                                                                                           EE fell down a few steps in the rear stairwell. Injured left hand & arm.
## 23791                                                                                                                                                                                            EE fell down a flight of stairs & has pain in left groin & pelvis area.
## 23792                                                                                                                 EE fell down a flight of stairs before leaving bldg at the end of the work day - wrenched r wristsprain r ft, battered both knees, abrasion r hand
## 23793                                                                                                                                                                           EE fell down a flight of stairs while walking froma business meeting back to her office.
## 23794                                                                                                                                                                                                      EE fell down a flight of stairs. Right shoulder & left elbow.
## 23795                                                                                                                                                                                                       EE fell down a flight of steps contusion left arm & buttocks
## 23796                                                                                                                                                                                                                  EE fell down about 4 steps landing on both knees.
## 23797                                                                                                                                              EE fell down aprox 5 stairs located in plaza outside courthouse. Happened on EE's lunch hour. Scrapped knees & elbow.
## 23798                                                                                                                                                        EE fell down cement steps walking to parking lot, could not get up, emg called and took her to e/r, no fxs,
## 23799                                                                                                                                             EE fell down embankment during basic law enforcement training. EE slipped while trying to clear brush from embankment.
## 23800                                                                                                                                                                                                           EE fell down flight of stair bruising left arm andwrist.
## 23801                                                                                                                                                                                          EE fell down flight of stairs after close of courthead, tooth, hand, hip.
## 23802                                                                                                                                                                                                              EE fell down flight of stairs at the sedug conference
## 23803                                                                                                                                                                    EE fell down flight of stairs going from office toclerks office. Bruised left hip and tailbone.
## 23804                                                                                                                                                                                                          EE fell down flight of stairs, missed a step - contusion.
## 23805                                                                                                                                                                                                                                     EE fell down flight of stairs.
## 23806                                                                                                                                                                                                                         EE fell down front steps outside building.
## 23807                                                                                                                                                            EE fell down in corridor. Fell on something(piece of banana smeared on floor. Slipped & fell on her hip
## 23808                                                                                                                                                                                                                 EE fell down in ditch because ground is not level.
## 23809                                                                                                                                                                                                           EE fell down indoor stairs, injuring head and rt knee ()
## 23810                                                                                                                                                                                              EE fell down last 3 steps, feet got tangled, landedon knee and elbow.
## 23811                                                                                                                                                                                                                        EE fell down loading dock steps at pharmacy
## 23812                                                                                                                                                                                                                                       EE fell down on bleachers ()
## 23813                                                                                                                             EE fell down on low spot and fell on rt shoulder when picking up papers and trash on the site of the road when this accident happened.
## 23814                                                                                                                                                                           EE fell down on path going to parking lot. She slipped on wet leaves on stepping stones.
## 23815                                                                                                                                                                                                          EE fell down ouside stairwell causing both knees to swell
## 23816                                                                                                                                                                                                                          EE fell down outside steps coming to work
## 23817                                                                                                                                                                               EE fell down over some chairs while attempting to subdue an out of control juvenile.
## 23818                                                                                                                                                                                            EE fell down side steps at security services building. Strained muscles
## 23819                                                                                                                                                                 EE fell down some stairs at the chamber of commerce following a meeting of the education committee
## 23820                                                                                                                                                                                                                       EE fell down some stairs injuring his lt leg
## 23821                                                                                                                                                                                 EE fell down some stairs while taking mail to the judge. Injured waist, hip, hand.
## 23822                                                                                                                                                                  EE fell down some steps and was transported to hospital by ambulance to raleigh community hosptl.
## 23823                                                                                                                                                                                                                  EE fell down some steps. Injured elbow, knee, leg
## 23824                                                                                                                                                                                                                                          EE fell down staircase ()
## 23825                                                                                                                                                                                                                                                EE fell down stairs
## 23826                                                                                                                                                                                                                      EE fell down stairs and broke his right ankle
## 23827                                                                                                                                                                                                                         EE fell down stairs and fractured rt ankle
## 23828                                                                                                                                                                                                                          EE fell down stairs and injured left hand
## 23829                                                                                                                                                                                                  EE fell down stairs bruised lt hand and arms and has pain in back
## 23830                                                                                                                                                                                                             EE fell down stairs fx rt shoulder and sprain rt ankle
## 23831                                                                                                                                                                                                                 EE fell down stairs in council bldg. Injured knees
## 23832                                                                                                                              EE fell down stairs in the back of the building and as she stood up again she slipped and landed with her back against the stairs. ()
## 23833                                                                                                                                        EE fell down stairs of basement when attempting to retrieve old files for destruction-injury left shoulder blade/lower back
## 23834                                                                                                                                                                                               EE fell down stairs on left side fracturing arm and breaking glasses
## 23835                                                                                                                                                                                                                            EE fell down stairs onto buttocks hands
## 23836                                                                                                                                                                                                        EE fell down stairs when responding code 300 on canada unit
## 23837                                                                                                                                                                                                                    EE fell down stairs while light was turned off.
## 23838                                                                                                                                                                                                              EE fell down stairs while returning to file to clerk.
## 23839                                                                                                                                                                                                    EE fell down stairs-headaches/right shoulder/rightarm/back/neck
## 23840                                                                                                                                                                                                                          EE fell down stairs. Injury to left ankle
## 23841                                                                                                                                                                                       EE fell down stairs. Landed on back and butt lt elbow. Elbow felt most pain.
## 23842                                                                                                                                                                                                                                             EE fell down stairwell
## 23843                                                                                     EE fell down stairwell where they had installed a new gate. EE opened gate and walked around it but missed footing on first step and slid sideways down the rest of stairs. ()
## 23844                                                                                                                                                                                                        EE fell down stairwell with full doty weight on left wrist.
## 23845                                                                                                                                                                                                                                              EE fell down steps ()
## 23846                                                                                                                                                                                                              EE fell down steps and fractured her ankle left ankle
## 23847                                                                                                                                                         EE fell down steps and landed face forward on landing hitting her left leg on the corner of the stairs. ()
## 23848                                                                                                                                                                                                                          EE fell down steps and severly cut l hand
## 23849                                                                                                                                                                                                      EE fell down steps and sprained ankle her left ankle and foot
## 23850                                                                                                                                                                                                                         EE fell down steps and sprained both feet.
## 23851                                                                                                                                                                                                   EE fell down steps and wrapped arm around banisterto catch self.
## 23852                                                                                                                                                                                                               EE fell down steps at police department and hit head
## 23853                                                                                                                                                                                                                             EE fell down steps at trailer an fell.
## 23854                                                                                                                                                                                         EE fell down steps due to missing a step and injured rt hand, lt leg/knee.
## 23855                                                                                                                                EE fell down steps in william jones bldg., foot slipped off of the step and foot skidded across the floor causing employee to fall.
## 23856                                                                                                                                                                                                                EE fell down steps injured both arms and right knee
## 23857                                                                                                                                                                                                               EE fell down steps injuring neck, leg & r lower back
## 23858                                                                                                                                                                                                                  EE fell down steps injuring rt elbow and rt ankle
## 23859                                                                                                                                                                                    EE fell down steps leaving from womens hospital & sprained knee/foot & cut foot
## 23860                                                                                                                                                                   EE fell down steps of office building while going to meet a cab to go to a doctor's appointment.
## 23861                                                                                                                                                                                                                     EE fell down steps on lower back and tail bone
## 23862                                                                                                                                                                                                                          EE fell down steps spraining her rt ankle
## 23863                                                                                                                                                                                                                   EE fell down steps striking forehead and rt knee
## 23864                                                                                                                                                                                                                         EE fell down steps twisting her right foot
## 23865                                                                                                                             EE fell down steps when shoe heel caught on step & broke. EE twisted her ankle. EE was leaving for the day. Painful left ankle & foot.
## 23866                                                                                                                                                         EE fell down steps while on her way to a meeting injured arm, knee, and foot on the right side of her body
## 23867                                                                                                          EE fell down steps, EE skipped 1 step due to EE waswearing glasses(cold) & ususally wears contacts - changed her distance perception, lip, leg, ft, ankle
## 23868                                                                                                                                                                                                                    EE fell down steps..... Shoulder, neck and back
## 23869                                                                                                                                                                                                                 EE fell down the front steps and twisted her ankle
## 23870                                                                                                                                                         EE fell down the narrow, poorly lit back stairs while carrying meeting materials and equipment to her car.
## 23871                                                                                                                                                                                                                EE fell down the stairs in courtroom injuring ankle
## 23872                                                                                                                                                                                               EE fell down the stairs.. Injured right arm, ear, neck and both legs
## 23873                                                                                                                                                        EE fell down the step and twisted lt ankle and rt knee was bleeding. Fell down the step on a twisted carpet
## 23874                                                                                                                                                                                         EE fell down the stepps outside & broke lt wrist in 2 places/ strain ankle
## 23875                                                                                                                                                                                                                           EE fell down two steps twisting rt foot.
## 23876                                                                                                                                                                                                                 EE fell down walking to lunch injuring rt shoulder
## 23877                                                                                                                                                                                             EE fell down wet stairs in front of building injuring leg and knee. ()
## 23878                                                                                                                                                                                                                   EE fell down wet stairs, dislocating rt shoulder
## 23879                                                                                                                                                                   EE fell down while trying to defrost a vehicle to return it. Injured head, tailbone, and elbows.
## 23880                                                                                                                                                                                                            EE fell downstairs and bent leg under her. Foot twisted
## 23881                                                                                                                                                                                     EE fell due to slippery, newly waxed floor at the elevator injuring her knees.
## 23882                                                                                                                                                                                                       EE fell due to some ice on his deck. Injured back, shoulder.
## 23883                                                                                                                                                                                                            EE fell during entry to cooling tower and sprainedwrist
## 23884                                                                                                                                                                                EE fell during fitness training to avoid an attacking dog - lower back and left hip
## 23885                                                                                                                                                                                                                              EE fell during self defense training.
## 23886                                                                                                                                                                                                                             EE fell during train and hurt his hand
## 23887                                                                                                                                                                           EE fell face down in the parking lot breaking nose and cutting nose, chin, lip and knees
## 23888                                                                                                                                                                                              EE fell face down while in the bathroom injuring her rt knee and foot
## 23889                                                                                                                 EE fell face first in hall while responding to et call. Upon arrival to pt room, pt attacked EE hitting & kicking EE on rt side. Rt side/lt flank.
## 23890                                                                                                                                                                                                                                 EE fell face forward on a sidewalk
## 23891                                                                                                                                                                                                 EE fell face forward on the floor. She fell on herhands and knees.
## 23892                                                                                                                                                                EE fell face forward onto knees and hands. Abrased both knees, sore hands and wrists, back and neck
## 23893                                                                                                                                                       EE fell forward on the floor outside of her officeinjuring rt knee as she was away from door. F18 filed.. ..
## 23894                                                                                                                                                                                                      EE fell forward on uneven brick walkway, sprained left wrist.
## 23895                                                                                                                                                                               EE fell from 2 step stool while reaching for box at stationery from top of bookcase.
## 23896                                                                                                                                                                                                         EE fell from a 6 foot ladder & injured his right shoulder.
## 23897                                                                                                                                                                                                 EE fell from a groove on indenton in the pavement on the sidewalk.
## 23898                                                                                                                                                    EE fell from a scaffold injurying his back, spleen, chin, ribs--EE is having severe headaches and passing blood
## 23899                                                                                                                                                                       EE fell from bike while returning to the office after parking - disloaction of left shoulder
## 23900                                                                                                                                                                                                            EE fell from bobcat nad slipped on ice and injured leg.
## 23901                                                                                                                                                                                                                 EE fell from broken chair injuring lt hip and arm.
## 23902                                                                                                                                                           EE fell from chair when EE leaned back to read a report chair fully reclined and broke injury lower back
## 23903                                                                                                                                                                                                               EE fell from chair while reaching for book on shelf.
## 23904                                                                                                                                                                                              EE fell from chair, as a result losing her balance. Upper/lower back.
## 23905                                                                                                                                                                                                                            EE fell from gas vehicle injuring face.
## 23906                                                                                                                                                                                           EE fell from geni lift approx 15' - possible spinal cord and neck injury
## 23907                                                                                                                                                         EE fell from loading dock while loading a truck. EE stepped backwards off edge as a result of a misstep ()
## 23908                                                                                                                                                                                     EE fell from steps leaving the courthouse falling to the ground injuring back.
## 23909                                                                                                                                                                                EE fell from steps of judges bench injuring lft ankle, lft hand, right side & elbos
## 23910                                                                                                                                                                                                                         EE fell from table trying to silence alarm
## 23911                                                                                                                                                                                                                     EE fell from the stairs and hit face and knee.
## 23912                                                                                                                                                                                                              EE fell from the stairs of the front of the building.
## 23913                                                                                                                                                                                EE fell from trailer steps while loading video equipment for unit volunteer program
## 23914                                                                                                                                                                    EE fell from utv tailgate and incurred a laceration on the inside of left arm near his elbow ()
## 23915                                                                                                                                                                                                             EE fell going down stairwell and fractured left ankle.
## 23916                                                                                                                                                                               EE fell going down steps out of building. EE has contusion and abrasion to forehead.
## 23917                                                                                                                                                                                                     EE fell going down steps out of parking lot injuring left leg.
## 23918                                                                                                                                                EE fell going down steps while going to deans office in macneider, broke lt shoulder and trauma to lt side of body.
## 23919                                                                                                                                                                                                                                          EE fell going down steps.
## 23920                                                                                                                                                                                         EE fell going into test kitchen. Shoes got stuck on floor & employee fell.
## 23921                                                                                                                                                                          EE fell going to park deck scraping right lens of glasses and bruise r cheek and eye lid.
## 23922                                                                                                                                                                                    EE fell going to the car. Someone had picked EE up and EE went down on rt knee.
## 23923                                                                                                                                                                                            EE fell going up front steps at ward hall, injured neck, left &rt wrist
## 23924                                                                                                                                                                                                                      EE fell going up office steps hitting rt knee
## 23925                                                                                                                                                                                     EE fell going up outside steps to make dept delivers injuring rt leg and back.
## 23926                                                                                                                                                                                                                                            EE fell going up stairs
## 23927                                                                                                                                                                                                                                           EE fell going up stairs.
## 23928                                                                                                                                                                                                              EE fell going up the mailroom steps, rainy weather ()
## 23929                                                                                                                                                                          EE fell hit left wrist and elbow on bed trying to separate two students who were fighting
## 23930                                                                                                                                                                                                                               EE fell hit the floor, injured knee.
## 23931                                                                                                                                                          EE fell hitting a desk at which time the computer that was on it slid down hitting him on the right cheek
## 23932                                                                                                                                            EE fell hitting head & knees on floor during the restraint of a student. Mild head contusion & contusion to both knees.
## 23933                                                                                                                                                                                                                        EE fell hitting his arm on the dish machine
## 23934                                                                                                                                           EE fell hitting the hand bar on the school bus when the bus stopped abruptly..... Left leg, right arm, and pain in chest
## 23935                                                                                                                                                                                                                               EE fell hurting right arm & shoulder
## 23936                                                                                                                                                                                                     EE fell in a 5 foot hole that was covered by black plastic. ()
## 23937                                                                                                                                                                                                                     EE fell in a boat during rough water/high wave
## 23938                                                                                                                                                                                                                               EE fell in a hole in the parking lot
## 23939                                                                                                                                                                                                        EE fell in a hole near rjr bldg parking lot injuring ankle.
## 23940                                                                                                                                                                                   EE fell in a hole walking from one building to another and sprained her rt ankle
## 23941                                                                                                                                                                                                              EE fell in a parking lot injuring her lt arm and nose
## 23942                                                                                                                                                                                      EE fell in bathroom injury left hand and fingers upper right leg and tailbone
## 23943                                                                                                                                                                                                               EE fell in bed of truck and injured his back and leg
## 23944                                                                                                                                                                                                          EE fell in floor while trying to put patient in pic hold.
## 23945                                                                                                                                                                            EE fell in garbage dumpster while unloading garbage from pick up truck and scraped leg.
## 23946                                                                                                                                                                                        EE fell in grease that had spilled the night before, twisting left ankle ()
## 23947                                                                                                                                                                                                                          EE fell in hall on knees ag file # 021061
## 23948                                                                                                                                                                                           EE fell in hallway coming from the rest room, injuring rt knee & hip. ()
## 23949                                                                                                                                                                                                                      EE fell in hallway landing on her rt knee/arm
## 23950                                                                                                                                                                                                 EE fell in hallway near kitchen. Hit head and hip. Scraped arm. ()
## 23951                                                                                                                                                                                                                                              EE fell in her office
## 23952                                                                                                                                                                           EE fell in hole due to poor lighting in parking deck injured left elbow, knee and ankle.
## 23953                                                                                                                                                                                                        EE fell in lobby of weisiger-brown, arriving early for work
## 23954                                                                                                                                                                                                                           EE fell in p/lot of bldg blocks daycare.
## 23955                                                                                                                                                                            EE fell in parking lot at education building and struck left cheek and chin on pavement
## 23956                                                                                                                                                                                                EE fell in parking lot behind allman. Injured ankle & leg--rt side.
## 23957                                                                                                                                                                                            EE fell in parking lot coming into work, bruised rt side, hand and knee
## 23958                                                                                                                                                                                                 EE fell in parking lot en route to her car and bruised rt shoulder
## 23959                                                                                                                                                                                  EE fell in parking lot injuring her left knee, shoulder, arm, hand and right foot
## 23960                                                                                                                                                                                                      EE fell in parking lot on ice when entering bldg hitting head
## 23961                                                                                                                                                                                                                        EE fell in parking lot sprained left ankle.
## 23962                                                                                                                                                                                                     EE fell in parking lot taking work to car to complete at home.
## 23963                                                                                                                                          EE fell in parking lot when taking picture when his foot hit concrete edge. He fell down & injuredhis right arm and elbow
## 23964                                                                                                                                                                                EE fell in parking lot while climbing out of a dump truck injuring his rt arm/elbow
## 23965                                                                                                                                                                                                         EE fell in parking lot while on field trip and cut rt knee
## 23966                                                                                                                                                              EE fell in parking lot while walking to car. Foot caught in pot hole at cherry hospital, royster bld.
## 23967                                                                                                                                                                                                             EE fell in parking lot, twisting right ankle. Swollen.
## 23968                                                                                                                                                                                                          EE fell in parking when entering building landing on back
## 23969                                                                                                                                                                                                 EE fell in play area while supervising children bruised both knees
## 23970                                                                                                                                                        EE fell in puddle of water at walker complex. EE thought she got all of water off floor when mopping floor.
## 23971                                                                                                                                                       EE fell in rain water on her way to a meeting in the winningham bldg. Twisted right knee strained right arm.
## 23972                                                                                                                                                                        EE fell in small hole on the playground while interacting with resident. Twisted left ankle
## 23973                                                                                                                                                                                       EE fell in some water on the floor during a tornado drill. Injured ahnd/knee
## 23974                                                                                                                                                                                           EE fell in stairwell between second floor and plaza floor twisting ankle
## 23975                                                                                                                                                                                                                          EE fell in stairwell fracturing her ankle
## 23976                                                                                                                                                                                                                    EE fell in standing water in ladies bathroom ()
## 23977                                                                                                                               EE fell in water that was left on floor from cleaning machine as EE was exiting bedroom and slipped and fell injury to left knee cap
## 23978                                                                                                                                                                                                                EE fell in wet spot in hallway. Injury to left knee
## 23979                                                                                                                                                                                                                             EE fell injuring her left hip and side
## 23980                                                                                                                                                                                                                                     EE fell injuring her left knee
## 23981                                                                                                                                                                                                           EE fell injuring his hitting his arm on railing left arm
## 23982                                                                                                                                                                                                                                       EE fell injuring his lt knee
## 23983                                                                                                                                                                                 EE fell injuring his right knee while assisting with the apprehension of a suspect
## 23984                                                                                                                                                                                                           EE fell into a 24 ft ditch injurying his back and rt leg
## 23985                                                                                                                                                                                                   EE fell into a hole in the parking lot returning from fire drill
## 23986                                                                                                                                                                                                                  EE fell into a low spot in yard injuring rt ankle
## 23987                                                                                                                                                                       EE fell into an open basement of an out building injuring neck, arm, back, leg, and shoulder
## 23988                                                                                                                                                                                              EE fell into center of raised platform of stage during a performance.
## 23989                                                                                                                                                                                               EE fell into mail tub while loading vehicle, contusion side and ribs
## 23990                                                                                                                                                    EE fell into sinkhole that was covered with pine straw and injured rt knee while performing stream assessments.
## 23991                                                                                                                                                                   EE fell into the door when steped on raised floor. Sprained left ankle, cut under left knee cap.
## 23992                                                                                                                                                                                                                           EE fell lost footing and fell off a bank
## 23993                                                                                                                                                                                                                     EE fell of corner of a ramp, twisting lt ankle
## 23994                                                                                                                     EE fell of trailer being pulled by a tractor. Contusion, lower back, sprain/pain, sprained rt foot, muscle spasm & sharp pain in pelvis, back.
## 23995                                                                                                                                                                                                         EE fell off a bike fracturing his clavicle--- (collarbone)
## 23996                                                                                                                                                                                                    EE fell off a cart while driving the cart striking back of head
## 23997                                                                                                                                                                                           EE fell off a chair while changing clocks that were hung on the wall. ()
## 23998                                                                                                                EE fell off a chair while trying to remove a tail rotor drive shaft from tail boom of a helicopter EE lost balance while stretching hit foot wrong.
## 23999                                                                                                                                                                                                                 EE fell off a horse injuring his rt elbow/shoulder
## 24000                                                                                                                                                                                                                        EE fell off a ladder and landed on left arm
## 24001                                                                                                                                                                                                                                 EE fell off a two foot cement wall
## 24002                                                                                                                                                                                                                 EE fell off back of tram injuring left hand & knee
## 24003                                                                                                                                            EE fell off back of truck gate/platform onto gaylord box. Struck box on right side. Fracture, bruise to lower right rib
## 24004                                                                                                                                                                                                          EE fell off back of truck onto tailbone EE is maintenance
## 24005                                                                                                                                                                                         EE fell off bike when he hit a tree root. EE landed on root with his back.
## 24006                                                                                                                                                                                       EE fell off boat trailer-rt hand 3 stitches, bruises to rt calf and left leg
## 24007                                                                                                                                                                                                                                                  EE fell off chair
## 24008                                                                                                                                                                 EE fell off corner of sidewalk & hit the ground falling on right wrist. *** work 704 852 3123 ****
## 24009                                                                                                                                                                              EE fell off curb and lost balance, fell on sidewalk and pavement. EE fractured wrist.
## 24010                                                                                                                                                                      EE fell off golf cart and her cart ran over her right foot ()confirmed with wca no lost time.
## 24011                                                                                                                                                                                                EE fell off golf cart when it overturned, bruisingfigner and thumb.
## 24012                                                                                                                                                                                                     EE fell off golfcart as passenger when driver tooka sharp turn
## 24013                                                                                                                                                                                                               EE fell off ladder while doing work injuring rt knee
## 24014                                                                                                                                                                                        EE fell off ladder while trying to cross over a picket fence at state fair.
## 24015                                                                                                                                                                                                  EE fell off of a chair she was standing on and strained left knee
## 24016                                                                                                                                                                                                              EE fell off of a ladder....... Injured his lower back
## 24017                                                                                                                                                                                           EE fell off of a work station. Injured elbow, wrist. Low back, shoulder.
## 24018                                                                                                                                                                                              EE fell off of back of truck injuring right shoulder and right elbow.
## 24019                                                                                                                                                                            EE fell off of dock and landed on back onto unc marine sciences boat. Injuredback/neck.
## 24020                                                                                                                                                                     EE fell off of his patrol motorcycle; concussion, contusion; shoulder, hip, face, hands, knees
## 24021                                                                                                                                                                                                                            EE fell off of ladder and strained back
## 24022                                                                                                                                                                                                   EE fell off of the back of a truck while unloadinga wheel barrow
## 24023                                                                                                                                                                                        EE fell off of the tractor when his pant leg got caught on the clutch pedal
## 24024                                                                                                                                                                          EE fell off of truck while trying to clean top of dumpster-injuring rt back, hip and legs
## 24025                                                                                                                                                                               EE fell off platform and hit the ground while participating in a training excercise.
## 24026                                                                                                                                                                                                                 EE fell off running board of frame injurying knee.
## 24027                                                                                                                                                                       EE fell off scaffold and broke left foot. **statutes has expired for any future ttd benefits
## 24028                                                                                                                                                                                                              EE fell off scaffold injuring rt ankle and left elbow
## 24029                                                                                                                            EE fell off sidewalk while snapping pictures of flowers in front of the building, she was walking backwards and landed on her right hip
## 24030                                                                                                                                                                                                         EE fell off stage because of darkness injury to right knee
## 24031                                                                                                                                                                                                    EE fell off stairs injuring her right hand, both knees and legs
## 24032                                                                                                                                                                                 EE fell off stool when attempting to sit down; stool rolled out form under her. ()
## 24033                                                                                                                                                                                            EE fell off stool when reaching for bulletin boardonto lt hip and ankle
## 24034                                                                                                                                                         EE fell off stool while reaching for files on top of filing cabinet, fell back towards hit arm on doorway.
## 24035                                                                                                                                               EE fell off the back of a stage when she moved herchair. Landed on her head, causing a concussion &brusing her back.
## 24036                                                                                                                                                                                  EE fell off the climbing wall while demonstrating a simulating a practice fall ()
## 24037                                                                                                                                                                                        EE fell off the curb while moving a refridgerator, contusion left lower leg
## 24038                                                                                                                                                                                                                            EE fell off the forks of the fork lift.
## 24039                                                                                                                                                         EE fell off the front bumper of the truck. Rt handwas caught in the engine, and his middle finger was cut.
## 24040                                                                                                                                                                                                         EE fell off the stool, moderate swelling on r sideof head.
## 24041                                                                                                                  EE fell off top of van while loading backpacks. Whilr strapping jacks down board broke landing on edge of truck. Fine line rib fracture & bruises
## 24042                                                                                                                                                                EE fell on a floor injurying his back while tryingto get away from a pt who attemped to attack him.
## 24043                                                                                                                                                                                       EE fell on a fresh waxed floor striking lt hip andelbow against a door frame
## 24044                                                                                                                                                                     EE fell on a magnolia burr while on the way to a client meeting and twisted ankle/bruied knee.
## 24045                                                                                                                                                                                             EE fell on a nail that was being used as a weapon. Injury to left hand
## 24046                                                                                                                                              EE fell on a patch of ice coming into the buildingthis morning. Abrasions left wrist and elbow, fracture of left toe.
## 24047                                                                                                                                                                         EE fell on a raised portion of the sidewalk.... Injuring her left arm/elbow and right knee
## 24048                                                                                                                                                                                                        EE fell on a ramp injurying his lt arm, shoulder, and neck.
## 24049                                                                                                                                                                                                  EE fell on a rocky terrain while fighting a fire injured his back
## 24050                                                                                                                                                                                    EE fell on a slippery floor while talking with an instructor in the diesel shop
## 24051                                                                                                                                                                                                                        EE fell on a wet floor injuring his rt foot
## 24052                                                                                                                                                                                 EE fell on a wet/wax floor w/o sign being displayed. Injuring back and groin area.
## 24053                                                                                                                                                                                  EE fell on an icy pathway while taking a shortcut into work. Injured back & side.
## 24054                                                                                                                                                                                                                 EE fell on an uneven pavement injuring her rt knee
## 24055                                                                                                                                                                                                                 EE fell on an uneven sidewalk injuring his rt knee
## 24056                                                                                                                                                                                                                          EE fell on anuneven sidewalk leaving work
## 24057                                                                                                                                                                                                 EE fell on back of stairs of bynum hall and hit head concemt wall.
## 24058                                                                                                                                                                                               EE fell on back while playing basketball. He jumped to block a shot.
## 24059                                                                                                                                                                                                            EE fell on bathroom floor in clients room hitting head.
## 24060                                                                                                                                                                                 EE fell on black ice when crossing street. Scrappedand bruised r palm and r wrist.
## 24061                                                                                                                                                                  EE fell on black ice. Landed on her back, heard a pop. Sprained right leg, strained back and neck
## 24062                                                                                                                                                                                                                                    EE fell on both knees and hands
## 24063                                                                                                                                                                                             EE fell on brick outside of student union injuringarm, elbow and wrist
## 24064                                                                                                                                                                                                        EE fell on bricks that were not leveled injuring both knees
## 24065                                                                                                                                                                                                     EE fell on broken exhibit and hit head, shoulder on rock work.
## 24066                                                                                                                                                                                                            EE fell on buttocks while participating in ropes course
## 24067                                                                                                                                                                                                             EE fell on carpet in atkins building bruising leftknee
## 24068                                                                                                                                                                    EE fell on cement due to slipping on gravel at thecollege. Hard blow to the back of right hand.
## 24069                                                                                                                                                                  EE fell on chair under patient when assisting w/ placing patient in nci hold. Out of work 5 days.
## 24070                                                                                                                                                                            EE fell on concrete steps and struck chin on step jarring head, cut left hand and knees
## 24071                                                                                                                                                                EE fell on concrete walk while returning from chkng the mail- scraped her l hand, l foot, and ankle
## 24072                                                                                                                                                                                       EE fell on concrete while running after an inmate injurying lt knee and back
## 24073                                                                                                                                                                                                              EE fell on concrete while trying to subdue an inmate.
## 24074                                                                                                                                                                            EE fell on cracked protruding cement in the side-walk while walking back from mem. Bldg
## 24075                                                                                                                                                                                                         EE fell on cracked sidewalk and injured left palm of thumb
## 24076                                                                                                                       EE fell on debris in the parking lot & hit her face on the side of her car, breaking her nose, lacerating her face & causing a leg contusion
## 24077                                                                                                                                                                                 EE fell on deck of patrol boat while in the process of posting signs... Left ankle
## 24078                                                                                                                                                                                                  EE fell on dishroom floor due to wet tiles, land- ing on rt side.
## 24079                                                                                                                                                                 EE fell on envelopes on the floor during mail opening at our raleigh service center training area.
## 24080                                                                                                                                                                                                                     EE fell on floor in dining hall. Injured head.
## 24081                                                                                                                                                                                                   EE fell on floor mat exiting the building causing knee contusion
## 24082                                                                                                                                                                                                     EE fell on floor that was extremely slippery at the elevators.
## 24083                                                                                                                                                                                                                EE fell on floor while mopping injuring her lt knee
## 24084                                                                                                                                                                                                         EE fell on frozen rocks and got hand lodged between rocks.
## 24085                                                                                                                                                                                               EE fell on gravel while trying to break up a fight and strained back
## 24086                                                                                                                                                                                                     EE fell on hip due to ice on a sidewalk-pain in back and neck.
## 24087                                                                                                                                                                               EE fell on his knee while struggling with subject he was arresting/sprain right knee
## 24088                                                                                                                                                                                                                            EE fell on his left knee while teaching
## 24089                                                                                                                                                                                                         EE fell on his left right hand while he was unrolling mats
## 24090                                                                                                                                                                              EE fell on his rt arm while avoiding a fox that was released from unlawfully set trap
## 24091                                                                                                                                                                                                                                  EE fell on ice and broke left hip
## 24092                                                                                                                                                                                                  EE fell on ice and hit her left shoulder and left side of her leg
## 24093                                                                                                                                                                                                              EE fell on ice and injured her left knee and buttocks
## 24094                                                                                                                                                      EE fell on ice and twisted ankle returning to garage after assisting stuck patrol car in distric3 parking lot
## 24095                                                                                                                                                                                                                                 EE fell on ice at camp activity ()
## 24096                                                                                                                                                                                                                                   EE fell on ice contusion to back
## 24097                                                                                                                                                                  EE fell on ice covered trail; attempted to controlwhen she received injury to right lower abdomen
## 24098                                                                                                                                                                                                  EE fell on ice getting to car. Hurting her foot, knee, and ankle.
## 24099                                                                                                                                             EE fell on ice in front of ice plant while loadingsupplies for kitchen to van. Injured shoulder, elbohand, wrist, hip.
## 24100                                                                                                                                                                                                            EE fell on ice in p/lot getting into car to leave work.
## 24101                                                                                                                                                                                                            EE fell on ice in parking lot and hit head on concrete.
## 24102                                                                                                                                                                         EE fell on ice in parking lot walking to back of prison bus to unclock door. Back of neck.
## 24103                                                                                                                                                                                                                   EE fell on ice in parking lot. Bruised right hip
## 24104                                                                                                                                                                                                                       EE fell on ice in parking lot. Injured knee.
## 24105                                                                                                                                                              EE fell on ice in the parking lot while entering the building to report for work. Injured knee, elbow
## 24106                                                                                                                                                                                                                  EE fell on ice injuring her left shoulder and hip
## 24107                                                                                                                                                                                                                 EE fell on ice patch on breezway bruised lf wrist.
## 24108                                                                                                                                                                                                        EE fell on ice returning to south building from trailer #41
## 24109                                                                                                                                                                                                                           EE fell on ice walking from car to bldg.
## 24110                                                                                                                                                                                                                EE fell on ice when loading car to leave for clinic
## 24111                                                                                                                                                                                   EE fell on ice when she was exiting a building a to go home and fell on rt side.
## 24112                                                                                                                                                                                                                          EE fell on ice when walking into work. ()
## 24113                                                                                                                                                                                                                      EE fell on ice. Full body weight on lt elbow.
## 24114                                                                                                                                                                                                                 EE fell on icy sidewalk on her way to work... Knee
## 24115                                                                                                                                                                                                                           EE fell on icy stairs, chipping tailbone
## 24116                                                                                                                                                                                EE fell on icy steps while reporting to work, front entrance - sontusion to rt knee
## 24117                                                                                                                                                                                        EE fell on icy stiars, sprain right wrist, bruisedback, left knee and ankle
## 24118                                                                                                                                                                                                           EE fell on icy street while walking from vehicle to bldg
## 24119                                                                                                                                                                                                                         EE fell on l knee when putting pt on floor
## 24120                                                                                                                                                                   EE fell on l shoulder when electric wheelchair pushed her into wall and knocked her off her feet
## 24121                                                                                                                                                                                                      EE fell on last two staris-rt leg swollen, left ankle twisted
## 24122                                                                                                                                                                                  EE fell on left hip while carrying trash to dumpster. EE landed hard on concrete.
## 24123                                                                                                                                                                                                           EE fell on left knee during "pic" incident with patient.
## 24124                                                                                                                                                                                                                           EE fell on left knee during pit incident
## 24125                                                                                                                                                                                                        EE fell on left knee when trying to assit a agitated client
## 24126                                                                                                                                                                                                                      EE fell on left knee while assisting a client
## 24127                                                                                                                                                             EE fell on loose gravel in parking lot, hit head and paving. Injured hand, knee, head, nose(fracture).
## 24128                                                                                                                                                                                      EE fell on loose gravel on roadway - north side ofkennedy-abrasion to lt arm.
## 24129                                                                                                                                                                                EE fell on loose gravel..... Her head went into thebuilding...... Head & right hand
## 24130                                                                                                                                                                                                                      EE fell on microphone pack and bruised lt rib
## 24131                                                                                                                                                                       EE fell on parking deck of courthouse. Deck was covered in ice and snow. Injury to right arm
## 24132                                                                                                                                                        EE fell on paved parking lot at federal building while pursuing a juvenile that escaped from securecustody.
## 24133                                                                                                                                                                                          EE fell on pavement and injured left foot, right shoulder, wrist and knee
## 24134                                                                                                                                                                                                                       EE fell on pavement due to ice head and back
## 24135                                                                                                                                                                  EE fell on porch while walking to probation resident striking her knee and injurying her forehead
## 24136                                                                                                                                                                                                                                          EE fell on raised cement.
## 24137                                                                                                                                                                                                                            EE fell on ramp... Right hand... Wrist?
## 24138                                                                                                                                                                                                            EE fell on right ankle while demonstrating a practical.
## 24139                                                                                                                                                                                     EE fell on right knee while taking probationer to the ground to be handcuffed.
## 24140                                                                                                                                                                                    EE fell on right knee while trying to close door on tower 7 during a hail storm
## 24141                                                                                                                                                                                                  EE fell on right knee while trying to put a patient in seclusion.
## 24142                                                                                                                                                                                                       EE fell on right leg, but caught herself with her right hand
## 24143                                                                                                                                                                                                            EE fell on right shoulder walking across kitchen floor.
## 24144                                                                                                                                                                               EE fell on right shoulder while participating in in-service ground fighting training
## 24145                                                                                                                                                                                                                             EE fell on right wrist injury sprained
## 24146                                                                                                                                                                                                     EE fell on rt hip while walking quickly in hallway to restroom
## 24147                                                                                                                                                                                                            EE fell on rt knee while holding client who was agitaed
## 24148                                                                                                                                                                                                                                EE fell on rt knee while patrolling
## 24149                                                                                                                                                                           EE fell on rt knee while trying to put patient in therapeutic hold -contusion to rt knee
## 24150                                                                                                                                                                        EE fell on side walk while walking. Caused small abrasions on jaw, elbow & shoulder (right)
## 24151                                                                                                                                                           EE fell on sidewalk and hurt left knee, elbow, shoulder, hip and ankle; right foot jammed, scrapped knee
## 24152                                                                                                                                                                                                               EE fell on sidewalk breaking a bone in her left hand
## 24153                                                                                                                                                                                EE fell on sidewalk exiting stairs from parking lot injuring chin, knee and rt hand
## 24154                                                                                                                                                                                                                            EE fell on sidewalk twisting left ankle
## 24155                                                                                                                                                            EE fell on sidewalk while getting files from veh for use in teaching a class injuring rt foot and toes.
## 24156                                                                                                                          EE fell on sidewalk while going across the street from worksite to pick up a replacement id badge from facility svcs. Fell on right knee.
## 24157                                                                                                                                                                                                      EE fell on sidewalk while returning to work. Injured rt foot.
## 24158                                                                                                                                                                                      EE fell on sidewalk while stepping up on curbside to entrance of building. ()
## 24159                                                                                                                                                                                   EE fell on sidewalk with both hand and knee. EE hurt her right hand and her back
## 24160                                                                                                                                                                                       EE fell on sidewalk, scrapping left leg and both hands/superficial abrasions
## 24161                                                                                                                                EE fell on sidewalk; struck her foot on broken pitted sidewalk; injured both knees, palms, bruised left elbow, bruised right breast
## 24162                                                                                                                                                                                 EE fell on slick floor trying to assist in a restraining a resident. Injured knee.
## 24163                                                                                                                                                                                                                EE fell on slippery floor and injured his left knee
## 24164                                                                                                                                                                                                    EE fell on slippery floor while trying to unstop clogged drain.
## 24165                                                                                                                                                                                                                                         EE fell on slippery stairs
## 24166                                                                                                                                                                                                  EE fell on slippery walkway in frt of bldg and landed on buttock.
## 24167                                                                                                                                                                EE fell on snow and ice outside while taking out trash. EE injured l hand, l wrist, l elbow, l knee
## 24168                                                                                                                                                                                                               EE fell on snow and ice when trying to get to office
## 24169                                                                                                                                                                                                             EE fell on some water that was on the cafeteria floor.
## 24170                                                                                                                                                           EE fell on stair steps. Sm laceration of knee scrape on rt skin area between thumb & forefinger lft hand
## 24171                                                                                                                                                                                                 EE fell on staircase, used hand to break fall injured right wrist.
## 24172                                                                                                                                                                             EE fell on stairs & landed on her left side, twisted her ankle & hit her thigh & elbow
## 24173                                                                                                                                                                      EE fell on stairs (wet leaves) injuring left hand & knee. Swelling around thumb of left hand.
## 24174                                                                                                                                                                                                                  EE fell on stairs - dislocated 5th didgit rt hand
## 24175                                                                                                                                        EE fell on stairs and injured right hand and ankleon 12/2 EE was replacing paper in copier and reinjured hand on equipment.
## 24176                                                                                                                                                                                                                          EE fell on stairs and twisted right ankle
## 24177                                                                                                                                                                                                                                    EE fell on stairs going to mail
## 24178                                                                                                                                                                                                           EE fell on stairs injuring her lt arm and both shoulders
## 24179                                                                                                                                                                                                             EE fell on stairs outside building injuring left knee.
## 24180                                                                                                                                       EE fell on stairway which was wet when EE was leaving building. Bruised left knee, hip, shoulder, slight abrasians to hands.
## 24181                                                                                                                                                                                                                                   EE fell on step and injured back
## 24182                                                                                                                                                                                                      EE fell on step while trying to catch patient. Injured ankle.
## 24183                                                                                                                                                                                                         EE fell on steps and injured her right leg, hip, and ankle
## 24184                                                                                                                                                                   EE fell on steps between 1st and 2nd floors. She missed a step and fell forward and to the left.
## 24185                                                                                                                                                                                                                  EE fell on steps between first and second floors.
## 24186                                                                                                                                                                                                                      EE fell on steps bracing fall with left side.
## 24187                                                                                                                                                                       EE fell on steps coming out of personnel office. Steps were very wet and floor was slippery.
## 24188                                                                                                                                                                 EE fell on steps in brooks hall basement. The lights were not on and the hallway was very dark. ()
## 24189                                                                                                                                                                                               EE fell on steps in front of entrance of building injuring left eye.
## 24190                                                                                                                                                                                                                     EE fell on steps landing on rt foot/ankle/heel
## 24191                                                                                                                                                                            EE fell on steps while removing bicycle from storage area laceration to legs and wrist.
## 24192                                                                                                                                                                                        EE fell on steps, striking knees on marble steps and catching self on hands
## 24193                                                                                                                                                      EE fell on the floor twisting back while pushing a riser under the counter in the sinkroom. Strained low back
## 24194                                                                                                                                                                                           EE fell on the floor while attempting to sit back in chair... Lower back
## 24195                                                                                                                                                                     EE fell on the floor while performing defensive tactics technique and dislocated left shoulder
## 24196                                                                                                                         EE fell on the floor while restraining student- inj rt shoulder - salary continuance EE pl atty- t. Taft***EE rec'd prior 5% ppd/Dr Parent
## 24197                                                                                                                                                                                                EE fell on the floor while running after a resident. Right hip pain
## 24198                                                                                                                                                                 EE fell on the ice when moving from the dock to the ice covered estuary injured left ankle and leg
## 24199                                                                                                                              EE fell on the tile floor of the lounge in the lobby, as she was attempting to carry a small table from the lobby to conference room.
## 24200                                                                                                                                                                                                                   EE fell on the wet floor outside of the elevator
## 24201                                                                                                                                                                                            EE fell on tile floor in lobby, injuring left ankle, rt knee and rt hip
## 24202                                                                                                                                                                                      EE fell on to floor hitting his right knee while trying to restrain a student
## 24203                                                                                                                                                                         EE fell on unclean floor injurying unspecified hipunsure if EE tripped or slipped on floor
## 24204                                                                                                                                                      EE fell on uneven pavement in parking lot and injured her thumb and knee. EE did not have any lost work days.
## 24205                                                                                                                               EE fell on uneven sidewalk in washington dc returning from a meeting on capital hill and going to hotel. Injured finger, hand thigh.
## 24206                                                                                                                                                                                             EE fell on very old stairs while preparing to file injuring left knee.
## 24207                                                                                                                                                                       EE fell on walkway and fell on right hand that wasoperated on 062003, also twisted her ankle
## 24208                                                                                                                                                                                                                                               EE fell on wet floor
## 24209                                                                                                                                                                                                               EE fell on wet floor and injured back, head, and arm
## 24210                                                                                                                                                                                        EE fell on wet floor and there were no wet floor signs. Fell going to work.
## 24211                                                                                                                  EE fell on wet floor going down hall-way after being mopped up front in administrative area. No wet floor signs were out. Twisted left leg &ankle
## 24212                                                                                                                                                                     EE fell on wet floor injuring head (struck the wall), neck, shoulder, right hip, and left knee
## 24213                                                                                                                                                                                                                            EE fell on wet floor injuring left knee
## 24214                                                                                                                                                                                                                   EE fell on wet floor injuring wrist, hip, elbow.
## 24215                                                                                                                                                                            EE fell on wet floor on admin wing at whitaker school, EE fell on rt knee, wrist(hand).
## 24216                                                                                                                                                                                                            EE fell on wet floor while mopping it. Injured fingers.
## 24217                                                                                                                                                                                           EE fell on wet floor while trying to restrain patient. Injury to rt knee
## 24218                                                                                                                                                                                       EE fell on wet floor, fell on my back and rt side injuring rt elbow and arm.
## 24219                                                                                                                                                                                                                         EE fell on wet floor- no wet floor sign ()
## 24220                                                                                                                                                                                                   EE fell on wet floor. Cracked knee in 3 places. Surgery refused.
## 24221                                                                                                                                                                                                       EE fell on wet floor; there were no signs; injured left knee
## 24222                                                                                                                                                                                                                       EE fell on wet grass and twisted left ankle.
## 24223                                                                                                                                                                                                                  EE fell on wet grass on incline and fell on back.
## 24224                                                                                                                                                                                                                 EE fell on wet metal stairs... Contusion of coccyx
## 24225                                                                                                                                                                                                                          EE fell on wet sidewalk; injured left leg
## 24226                                                                                                                                                                                           EE fell on wet spot on floor on both hands & kneesinjured hands & knees.
## 24227                                                                                                                                                                                                             EE fell on wet stairs injuring lower back and tailbone
## 24228                                                                                                                                                                                    EE fell on wooden sidewalk injured her upper arm left shoulder near collar bone
## 24229                                                                                                                                                                                                          EE fell on wrist while going out to state van right wrist
## 24230                                                                                                                                                                                                                             EE fell on wrist while preparing food.
## 24231                                                                                                                                                                                           EE fell onto floor, while escorting pt to timeout. Right elbow/knee/hip.
## 24232                                                                                                                                               EE fell onto his right knee and elbow after stepping off a change elevation of sidewalks on waterside of building ()
## 24233                                                                                                                                                                                                            EE fell onto sidewalk injuring her left hand, and thumb
## 24234                                                                                                                                                                                                                                         EE fell out of a chair. ..
## 24235                                                                                                                                                                                                      EE fell out of aircraft pulling a muscle in his rt groin area
## 24236                                                                                                                                                                                                                      EE fell out of broken chair and strained back
## 24237                                                                                                                                                                                                           EE fell out of chair and hit floor hitting back and leg.
## 24238                                                                                                                                                                                                                 EE fell out of chair and struck elbow against pipe
## 24239                                                                                                                                                                                                   EE fell out of chair in her cubicle; injured right shoulder/back
## 24240                                                                                                                                                                                                      EE fell out of chair while talking on the phone rt knee/ankle
## 24241                                                                                                                                                                                                           EE fell out of golf cart and fell face down on sidewalk.
## 24242                                                                                                                                                                                       EE fell out of golf cart and hit right side of face on parking lot pavement.
## 24243                                                                                                                                                                                        EE fell out of golf cart at EE picnic at bermuda run course. Chest and ribs
## 24244                                                                                                                                            EE fell out of his chair three times during the course of the hearing and at least one of the times he hit the wall. ()
## 24245                                                                                                                                                                                                                         EE fell out of passenger side of state veh
## 24246                                                                                                                                                                    EE fell out of roller chair bending down to pick up something and injured left shoulder and leg
## 24247                                                                                                                                                                                                                        EE fell out of the chair and hit the floor.
## 24248                                                                                                                                                                                                                                EE fell out of tree. Back and neck.
## 24249                                                                                                                   EE fell outside aiken building on cracked pavementmutiple injuries occurred-infraorbital superficialabrasion-right upper lid v-shaped laceration
## 24250                                                                                                                                                                                                       EE fell outside building 44 hurt hand, leg, foot, and ankle.
## 24251                                                                                                                                                                                                            EE fell outside on wet pavement. EE was carrying boxes.
## 24252                                                                                                                                                                                                        EE fell over a box while carrying a box injuring his rt leg
## 24253                                                                                                                                                                                                EE fell over a dolley and injured her lower back, hip and left knee
## 24254                                                                                                                   EE fell over a walker as EE was moving it to make path safer for participant from in front of a firedoor; injury right elbow, head, and lt knee.
## 24255                                                                                                                                                                                                        EE fell over an open drawer.... Injured both legs, shoulder
## 24256                                                                                                                                                                                            EE fell over bicycle rack on a dark, rainy night. Sprain to right elbow
## 24257                                                                                                                                                                                                                                                 EE fell over boxes
## 24258                                                                                                                                                          EE fell over briefcase left in floor. Fell to floor face down. Knee was hit on floor. Eyeglassescut face.
## 24259                                                                                                                                                                                                             EE fell over carpet and injured wrists and right ankle
## 24260                                                                                                                                                                                                                EE fell over concrete packing bumper in parking lot
## 24261                                                                                                                                                                                                                   EE fell over floor mat and injured her left knee
## 24262                                                                                                                                                                                                                EE fell over her draw, and landed on her left knee.
## 24263                                                                                                                                                                                                                  EE fell over mop landed on rt elbow against wall.
## 24264                                                                                                                                                       EE fell over pipe and hit EE on head and rt shoulder- laceration to rt forhead and contusion of rt shoulder.
## 24265                                                                                                                                                                     EE fell over raised door mat when entering bldg injuring chest, arms, left ankle & upper thigh
## 24266                                                                                                                                                                                                                      EE fell over students foot, injuring her back
## 24267                                                                                                                                                                                                 EE fell over typewritter cord and injured wrist, shoulder, lt arm.
## 24268                                                                                                                                                                                                                     EE fell over weight bench and injured her back
## 24269                                                                                                                                                                                                       EE fell over wet mat in front of door injured right shoulder
## 24270                                                                                                                                                                                                        EE fell ramming his elbow into his rib cage... Bruised only
## 24271                                                                                                                                                                             EE fell several times injuring her knees while performing therapeutic holds on a dummy
## 24272                                                                                                                                                                                  EE fell spraining her left ankle, hairline fx lefthip and tendon in left shoulder
## 24273                                                                                                                                                                                                                   EE fell stepping up onto curb. Fracture lt foot.
## 24274                                                                                                                                                                                         EE fell stricking her forehead against the wheel well causing a laceration
## 24275                                                                                                                           EE fell through a step while conducting a migrant housing inspection in robeson county. The step broke when EE stepping down-appox. 1ft.
## 24276                                                                                                                                                                            EE fell to a mat and dislocated his lt shoulder during staged cell extraction f18 filed
## 24277                                                                                                                                                                EE fell to floor when using her rolling office chair to get from the computer to opscan machine. ()
## 24278                                                                                                                  EE fell to floor while attempting to restrain a violent inmate landing on rt shoulder and also injury his back in fall. Injury to shoulder & back
## 24279                                                                                                                                                                  EE fell to floor while trying to remove patient from another EE, pt & other EE fell onto this EE.
## 24280                                                                                                                                                                                                                  EE fell to ground and 2nd trainee fell on top him
## 24281                                                                                                                                                                                                              EE fell to ground striking face, rt hand, and lt knee
## 24282                                                                                                                                                                                         EE fell to ground while trying to restrain juvenile and bruised both knees
## 24283                                                                                                                                                                                                    EE fell to his (right) knee during cpi physical intervention ()
## 24284                                                                                                                                                                                                      EE fell to the floor and landed on face after donating blood.
## 24285                                                                                                                                                     EE fell to the floor as a result of an emt that had fallen on the wet floor as he came in due to an emergency.
## 24286                                                                                                                                                                                                                       EE fell to the floor injuring his left elbow
## 24287                                                                                                                                                                                                      EE fell to the floor to prevent two juveniles from fighting .
## 24288                                                                                                                                                                       EE fell to the floor when he interferred in an altercation between two patients... Right arm
## 24289                                                                                                                                                EE fell to the floor while trying to place patientin pt hold and elbow struck floor. And patient fell on top of EE.
## 24290                                                                                                                                                                                                   EE fell to the ground attempting to take cover from gun fire. ()
## 24291                                                                                                                                                                                               EE fell to the ground injuring her left ear, shoulder, hand and knee
## 24292                                                                                                                                                                                                          EE fell to the ground stepping off top step from trailor.
## 24293                                                                                                                                                                             EE fell to the ground to avoid getting hit by a truck door the wind was slamming shut.
## 24294                                                                                                                                                                                                   EE fell to the ground while to stop a fight injur-ing his elbow.
## 24295                                                                                                                                                      EE fell to the ground, struggling with suspect, eestruck his left knee on the pavement/contusion to left knee
## 24296                                                                                                                                                                EE fell trying to attach the boat trailer to the back of the tour vehicle; injured his left forearm
## 24297                                                                                                                                          EE fell trying to get to a resident whowas having a seizure. Tried to catch herself using her lt arminjuring lt shoulder.
## 24298                                                                                                                                                                                               EE fell twice on snow in sidewalk injuring rt side and back and hips
## 24299                                                                                                                                                                                                                                       EE fell twising his rt ankle
## 24300                                                                                                                                                                                                    EE fell up entering bldg, attempted to stand up and fell again.
## 24301                                                                                                                                                                                                                           EE fell up stairs outside the mail room.
## 24302                                                                                                                                                                                                                          EE fell up steps of f, landed on knees ()
## 24303                                                                                                                                                                                                                         EE fell up steps. Right shoulder and knee.
## 24304                                                                                                                                                                                                                    EE fell upstairs and twisted her rt foot/ankle.
## 24305                                                                                                                                                                        EE fell walking down steps which were ice and snowcovered. Left thumb, right side and back.
## 24306                                                                                                                         EE fell walking down the stairs coming out of worklocation, she grabbed the hand rail & there was a sharp pain in her left hand and wrist.
## 24307                                                                                                                                                                                                                       EE fell walking down the steps of u1 bldg ()
## 24308                                                                                                                                                                                              EE fell walking from classroom to parking lot and fracture right foot
## 24309                                                                                                                                             EE fell walking from projection booth into anotherroom - heel of shoe got caught on step of staircase - broken rt foot
## 24310                                                                                                                                                                                                                                         EE fell walking in hallway
## 24311                                                                                                                                                                                                                          EE fell walking to car, stepping off curb
## 24312                                                                                                                                   EE fell when EE's foot got caught on the floor mat rug as EE was leaving the courthouse EE fell forward and landed on EE's knees
## 24313                                                                                                                                                                                EE fell when a broken chair she was sitting in gave away causing back and neck pain
## 24314                                                                                                                                                   EE fell when coming out of bathroom during bathingof patients. Struck lt shoulder on floor. Did not strike head.
## 24315                                                                                                                                                                   EE fell when getting up off commode. Her right leggave way causing her to fall. Left foot sprain
## 24316                                                                                                                                                                                                  EE fell when he stepped on ice; hurting his left arm and shoulder
## 24317                                                                                                                                                                             EE fell when patient fell while EE was cleaning pt - EE hit wrist on metal part of bed
## 24318                                                                                                                                                                                  EE fell when she was attempting to stop a fight between two patients... Right leg
## 24319                                                                                                                                                                                                            EE fell when starting down stairs falling on lower back
## 24320                                                                                                                                                                                               EE fell when stepping off curb. Injured left foot, head, both knees.
## 24321                                                                                                                                                                                          EE fell when the chair that he was sitting in broke... Injured left elbow
## 24322                                                                                                                                                                                         EE fell when trying to retrieve a steering ball that fell off and ind. W/c
## 24323                                                                                                                                                                                                EE fell when walking across parking deck covered with ice and snow.
## 24324                                                                                                                                                  EE fell while attepmt to move self & safety line next to tie in point. Mulitpe injuries to ribs, hip, leg & lung.
## 24325                                                                                                                                                                                             EE fell while bending down to keep resident's head from touching floor
## 24326                                                                                                                                 EE fell while bowling at bowling alley for apprec-iation week. A party was given for the all of the employees at combined records.
## 24327                                                                                                                                                                                                                                 EE fell while bringing in the mats
## 24328                                                                                                                                                                                              EE fell while carrying nitogen tank on uneven terrain - neck and back
## 24329                                                                                                                                                                                                                               EE fell while chaperoning a ski trip
## 24330                                                                                                                                                                        EE fell while checking building on steps outside our academic bldg. Lt knee, rt hand/wrist.
## 24331                                                                                                                                                                                  EE fell while climbing into truck. Rt. Foot slippedoff & he fell on left shoulder
## 24332                                                                                                                                                                                              EE fell while climbing stairs to her office. Contusion to right ankle
## 24333                                                                                                                                                                                              EE fell while climbing the steps on the deck at the rear of building.
## 24334                                                                                                                                                                                   EE fell while collecting samples in ocean and cut his right hand on oyster shell
## 24335                                                                                                                                                                                               EE fell while coming down stairs & caught herself with her left hand
## 24336                                                                                                                                                                                                    EE fell while coming into doorway in front of student ctr bldg.
## 24337                                                                                                                                                EE fell while crossing parking lot causing bruise and lacerations on rt knee and rt wrist, soreness in back and jaw
## 24338                                                                                                                                                                                               EE fell while desending the outside steps of the gh leslie building.
## 24339                                                                                                                                                                                                                EE fell while entering building and injured rt knee
## 24340                                                                                                                                                                   EE fell while entering the workforce. Gripped on raised area of sidewalk behind cooper building.
## 24341                                                                                                                                                                                                          EE fell while getting into service van landing on lt hand
## 24342                                                                                                                                                                          EE fell while getting on handicap lift **iw has already rec'd 3-days of wp- due 4/7 wk wp
## 24343                                                                                                                                                                                                                            EE fell while going down a staircase ()
## 24344                                                                                                                                                                                                     EE fell while going downstairs at work and broke his left foot
## 24345                                                                                                                                                                                                              EE fell while going up steps injuring hands and wrist
## 24346                                                                                                                                                                                 EE fell while going up the steps.... Left wrist andhand *er- 252-492-2061 x 3469**
## 24347                                                                                                                                                                                                                   EE fell while he was pursuing a suspect on foot.
## 24348                                                                                                                                                                                                                                       EE fell while helping client
## 24349                                                                                                                                                                                                        EE fell while helping client in bathroom and injured rt hip
## 24350                                                                                                                                                                                                             EE fell while lifting heavy boxes - sprained left knee
## 24351                                                                                                                                                                                                                   EE fell while loading on a van injuring rt wrist
## 24352                                                                                                                                                                         EE fell while loading stroller onto tram-foot got caught in chair-fell scraping both knees
## 24353                                                                                                                                                                                                                                 EE fell while moving a recliner ()
## 24354                                                                                                                                                                       EE fell while moving heavy boxes and injured her right knee, right wrist, and right shoulder
## 24355                                                                                                                                                                                                                               EE fell while moving truck of boxes.
## 24356                                                                                                                                                                                                                                      EE fell while on a foot chase
## 24357                                                                                                                                                                                                  EE fell while participating in a game and hit chest on tree stump
## 24358                                                                                                                                                                                             EE fell while performing a carry in nci training went down on the knee
## 24359                                                                                                                                                                                         EE fell while playing football with clients and injred shoulder. Ac strain
## 24360                                                                                                                                                                                                                         EE fell while putting patient in prone pr.
## 24361                                                                                                                                                                                                       EE fell while putting patient in restraints and injured leg.
## 24362                                                                                                                                                                 EE fell while responding to assist another staff member--received a scrape to lt elbow and lt knee
## 24363                                                                                                                                                                                  EE fell while restraining patient and hit his leg against couch. Abrasion rt leg.
## 24364                                                                                                                                                                                                                     EE fell while running and struck head on floor
## 24365                                                                                                                                                                                      EE fell while shoveling ice and snow from walks in the park-injuring left hip
## 24366                                                                                                                                                               EE fell while standing in chair putting up decorations on bullentin board. Injured hand and abdomen.
## 24367                                                                                                                                                                                                              EE fell while standing. EE fell on buttocks and back.
## 24368                                                                                                                                                   EE fell while stepping onto the sidewalk. EE says she couldn't see. EE injured her left wrist, treated at lmh er
## 24369                                                                                                                                                                                                          EE fell while stepping over curb. Contusion to left knee.
## 24370                                                                                                                                                                                                                    EE fell while stripping floors and hurt r wrist
## 24371                                                                                                                                                                           EE fell while trying restrain a juvenile, on his arm causing the injury to EE 's lt arm.
## 24372                                                                                                                                                                                                   EE fell while trying to asst with resident. Injured rt shoulder.
## 24373                                                                                                                                                                                               EE fell while trying to catch hold of two students who were fighting
## 24374                                                                                                                                                                                                       EE fell while trying to pick up her jacket and strained back
## 24375                                                                                                                                                                                                                                              EE fell while walking
## 24376                                                                                                                                                                                            EE fell while walking across 6th floor while walikng around trash cart.
## 24377                                                                                                                                                                                                          EE fell while walking across campus - broke bone on ankle
## 24378                                                                                                                                                                EE fell while walking down hall doing partial splint on floor and injuring back. Atty: holly cutler
## 24379                                                                                                                                                                                                           EE fell while walking down some stairs injuring lt ankle
## 24380                                                                                                                                                                                                                                  EE fell while walking down stairs
## 24381                                                                                                                                                                                         EE fell while walking down stairs. Injured left leg, right ankle, and back
## 24382                                                                                                                                                                                                    EE fell while walking down steps injuring rt shoulder, arm hand
## 24383                                                                                                                                                                                   EE fell while walking down the steps at the back door entrance of building #165.
## 24384                                                                                                                     EE fell while walking from car to building 165. EE stepped on the curb and then stepped down onto the uneven sidewalk/parking lot and fell. ()
## 24385                                                                                                                                                                               EE fell while walking from housing unit injuring rt thigh and kneecap-EE is pregnant
## 24386                                                                                                                                                                                EE fell while walking in a wet carpet... Injuring her buttocks and right forearm ()
## 24387                                                                                                                                                                                         EE fell while walking in frt of building-stepped on rock injuring left rib
## 24388                                                                                                                                                                                                    EE fell while walking in hallway to lock the elevator and doors
## 24389                                                                                                                                                                                                          EE fell while walking in work area-injured back and knee.
## 24390                                                                                                                                                                                                                 EE fell while walking on sidewalk outside building
## 24391                                                                  EE fell while walking on the brick sidewalk in front of building and landed face down on the parking lot pavement, before falling onto back while right foot twisted & remained on the bricks. ()
## 24392                                                                                                                                                                                      EE fell while walking over plowed field on her property. Fracture left fibula
## 24393                                                                                                                                                                                  EE fell while walking through courtroom. Fall caused EE to sprain her right ankle
## 24394                                                                                                                                                                                                   EE fell while walking to office; injured right knee & lower body
## 24395                                                                                                                                                             EE fell while walking to the parking lot for a fire drill; injured left palm, knees cut, fractured arm
## 24396                                                                                                                                                                                             EE fell while walking up the stairs, trip and jammed finger on railing
## 24397                                                                                                                                                                                                          EE fell while walking up the steps.. Knees and right hand
## 24398                                                                                                                                                                                                EE fell while working with a screwdriver injuring his elbow and arm
## 24399                                                                                                                                                                                               EE fell, tripping out of car in handicap lot--- injured left 2nd toe
## 24400                                                                                                                                                                                                          EE fell---landed on butt. Injuring buttocks and tailbone.
## 24401                                                                                                                                                                                                                                EE fell... Cut above eye, right arm
## 24402                                                                                                                                                                                EE felled and injured his rt eye on a concrete paving while running after an inmate
## 24403                                                                                                                                                                                               EE felled and twisted her back while assisting with an agressive pt.
## 24404                                                                                                                                                                                                                      EE felled off boat trailer while loading boat
## 24405                                                                                                                                                                                                        EE felled on uneven pavement while going to the atm machine
## 24406                                                                                                                                                                                               EE fellon icy pavement in extension center parkinglot while working.
## 24407                                                                                                                                                                                       EE felt a deep pain in low back as she lifted up bottom part of seat in van.
## 24408                                                                                                                                                            EE felt a loud pop and went to take another step and felt a sharp pain around her lower back and hiprea
## 24409                                                                                                                                 EE felt a pain in left back side of neck, it was sore the reminder of the day by friday night EE was unable to move head and neck.
## 24410                                                                                                                                                                                            EE felt a pop between her elbow and shoulder while bathing a client. ()
## 24411                                                                                                                                                                                             EE felt a pop in her lower back after placing clients feet on the bed.
## 24412                                                                                                                                                                                                                 EE felt a pop in her lt knee while loading a dryer
## 24413                                                                                                                                                                                                                   EE felt a pop in left knee while going up steps.
## 24414                                                                                                                                            EE felt a pop in lower back when helping a pt to commode. Pain was then felt on the lumbar area five minutes afterwards
## 24415                                                                                                                                                                                                           EE felt a pop in lt hip while operating a floor scrubber
## 24416                                                                                                                                                                                                 EE felt a pull in back while assisting client in changing clothes.
## 24417                                                                                                                                                                          EE felt a pull in her left shoulder while moving a client from the wheelchair to the bed.
## 24418                                                                                                            EE felt a pull in her neck and back after bathing and dressing a client. EE seen in er taken out of work for 7 days, she returned to work on 9/27/09 ()
## 24419                                                                                                                                                          EE felt a pull in lower stomach while transferringa non-compliant client from wheelchair to toilet stool.
## 24420                                                                                                                                                                                         EE felt a pull in rt knee while performing lift in new employee nci class.
## 24421                                                                                                                                              EE felt a pulling pain in right shoulder and developed a bump on left mid shin, while doing the behavior intervention
## 24422                                                                                                                                                                                                             EE felt a sharp object in thumb after lifting a broom.
## 24423                                                                                                                             EE felt a sharp pain in her left rib cage and could not move her left arm. Pain radiated to her back and right side... Chest wall pain
## 24424                                                                                                                                                                                  EE felt a sharp pain in her neck and shoulder while placing a client in her seat.
## 24425                                                                                                                                                                                                       EE felt a sharp pain in lower back while getting trash bags.
## 24426                                                                                                                                                                                                                        EE felt a sharp pain when turning a patient
## 24427                                                                                                                                                     EE felt a sharp pain/snap in back of right calf while running down floor at practice. Achilles tendon rupture.
## 24428                                                                                                                                                  EE felt a sharp stabbing severe pain in spine whilbuttoning clients blouse. Back strain and possiblegroin strain.
## 24429                                                                                                                           EE felt a stinging pain in his rt ring finger while doing pushups during training from a spider bite. Finger became swollen & blistered.
## 24430                                                                                                                 EE felt acute pain in rt shoulder/low back after lifting/transfering patient from chair to bed *iw overpaid 963. 72 due to child support not paid*
## 24431                                                                                                                           EE felt an electrical shock when he put his hand on the control panel. EE's palm of hand was exposed to metal piece surrounded by rubber
## 24432                                                                                                                                                            EE felt and or heard pop in left shoulder when struggling with a combative patient. Left shouldersprain
## 24433                                                                                                                                   EE felt arm sore kept getting worse and told supervisor. He was aerating the north side of mendenhall putting out grass seed. ()
## 24434                                                                                                                                    EE felt back pain while walking down the stairs carrying a scaffold holding back end while another person carried the front end
## 24435                                                                                                                                                                                               EE felt bit to top of left foot-looked down & saw bug on top of foot
## 24436                                                                                                                                                                                         EE felt bite or sting on back of right middle hamstring doing safety check
## 24437                                                                                                                                                                                      EE felt burning in rt wrist resulting from repetitive motion of cage changing
## 24438                                                                                                                                                                        EE felt catch in her back while putting a towel on shelf in linen room. Lumbosacral strain.
## 24439                                                                                                                                                                                            EE felt chest pains while installing sensors above ceiling in duct work
## 24440                                                                                                                                                                                                       EE felt discomfort after assisting patient off of the floor.
## 24441                                                                                                             EE felt discomfort in her shoulder and that her rtwrist was swollen. EE stated that she felt that this was a result of testing tech. On previous frida
## 24442                                                                                                                            EE felt dizzy went to put her head in her hands to rest & passed out. She woke up on the floor with nurses & residents surrounding her.
## 24443                                                                                                                                                                                              EE felt faint and passed out hitting head on scalecutting rt eye lid.
## 24444                                                                                                                                                                      EE felt faint on her way to the bathroom and fell injuring her rt knee, eye, knot on forehead
## 24445                                                                                                                                          EE felt faint, laid on floor to prevent further injury, tried to move to new location, but was unable to move very far ()
## 24446                                                                                                                                                                                                   EE felt faint, sat on bridge deck, fainted, fell hitting head ()
## 24447                                                                                                                                                                                                                                   EE felt itching on left shoulder
## 24448                                                                                                                                                               EE felt light headed & temp. Passed out & fell on the floor face down, cut his eye with his glasses.
## 24449                                                                                                                                                                                           EE felt lightheaded and fell backwards bruising left elbow and upper arm
## 24450                                                                                                                                                                                            EE felt numbness and tingling in both toes when pusjing a ground truck.
## 24451                                                                                                                     EE felt overwhelmed based on supposed undue harassment from the administration of er. Complains of having trouble sleeping/enjoying his family
## 24452                                                                                                                                                                                       EE felt pain after unarmed self defense training treating phy- Dr Karan- nlt
## 24453                                                                                                                                                                                EE felt pain and stiffness in rt arm from emptyingdirty trays into garbage disposal
## 24454                                                                                                                                                                                                             EE felt pain in back after lifting client from toilet.
## 24455                                                                                                                                                                                                                 EE felt pain in back after repositioning a residnt
## 24456                                                                                                                                                                                                                        EE felt pain in back while assisting client
## 24457                                                                                                                                                                                                            EE felt pain in back while changing patient bed sheets.
## 24458                                                                                                                                                                                      EE felt pain in back while lifting resident from wheelchair to changing table
## 24459                                                                                                                                                                           EE felt pain in chest at home in the evening afterlifting client at work that afternoon.
## 24460                                                                                                                                                                                            EE felt pain in her back when she slid a box of files across the floor.
## 24461                                                                                                                                                                                                                       EE felt pain in her back while bending over.
## 24462                                                                                                                                                                                                  EE felt pain in her back while repositioning a client in the bed.
## 24463                                                                                                                                                                                       EE felt pain in her lower back after lifting an armful of sheets out of box.
## 24464                                                                                                                                                       EE felt pain in her wrists and neck after pulling up the rails on crib bed. Rails were very hard to pull up.
## 24465                                                                                                                                                                                        EE felt pain in hip while struggling with client during therapeutic escort.
## 24466                                                                                                                                                                                                                           EE felt pain in his lt leg while working
## 24467                                                                                                                                                                   EE felt pain in left and right arms, wrists, hands, and fingers while typing emails to students.
## 24468                                                                                                                                                                                                            EE felt pain in left eye progress more over a few days.
## 24469                                                                                                                                                                                                                    EE felt pain in left hip after running sprints.
## 24470                                                                                                                                             EE felt pain in left wrist and lower arm, continued for a few days. Developed from repetitive motion of cage changing.
## 24471                                                                                                                                                                                         EE felt pain in left wrist just developed and progressively gottent worse.
## 24472                                                                                                                                                                                                              EE felt pain in low back while lifting crate of milk.
## 24473                                                                                                                                                                                                                 EE felt pain in lower back after lifting equipment
## 24474                                                                                                                                                                                           EE felt pain in lower back and hip area. Helping pull resident up in bed
## 24475                                                                                                                                                                EE felt pain in lower back and leg after getting out of car-earlier had lifted a 65 lb concentrator
## 24476                                                                                                                                                                                                    EE felt pain in lower back when EE attempted to clean resident.
## 24477                                                                                                                                                                   EE felt pain in lower back while helping a patientfrom the floor w/asst w/ another staff member.
## 24478                                                                                                                                                                                                          EE felt pain in lower back while placing a client in bed.
## 24479                                                                                                                                                                                                          EE felt pain in mid back when she pulled client upin bed.
## 24480                                                                                                                                                                                        EE felt pain in middle back after pushing client in wheelchair to workshop.
## 24481                                                                                                                                                                                            EE felt pain in right shoulder when liftin linen after turning pt over.
## 24482                                                                                                                                                                                                       EE felt pain in right wrist and thumb area while keyboarding
## 24483                                                                                                                                                                                            EE felt pain in right wrist while typing and it got progressively worse
## 24484                                                                                                                                                                                                         EE felt pain in rt wrist while moving resident out of bed.
## 24485                                                                                                                                                                                                              EE felt pain on low rt side after tranferring client.
## 24486                                                                                                                                                                               EE felt pain pain in rt shoulder of neck while getting into position to clean drain.
## 24487                                                                                                                                                                                  EE felt painin her foot. When she got home her foot was swollen around arch area.
## 24488                                                                                                                                                                                                                 EE felt pull in back when sitting down an cabinet.
## 24489                                                                                                                                               EE felt pull in her lower back when lifting a patient from gerochair to bathtub chair. Also feltpull in abdomen area
## 24490                                                                                                                                                                                                                  EE felt pull in lower abdomen when lifting copier
## 24491                                                                                                                                                                                                        EE felt pull in neck while doing nci training, hurting back
## 24492                                                                                                                                                                                         EE felt rash on lt wrist and scratched rash - rashspread about 3-4 inches.
## 24493                                                                                                          EE felt severe numbness & coldness in right index finger & thumb when using computer mouse copying & pasting about 23 spreadsheets for a work project. ()
## 24494                                                                                                                                                                        EE felt sharp a burning sensation in his rt hand was searching an inmate (needle stick clm)
## 24495                                                                                                                                                                                                               EE felt sharp pain & a knot in hand hurting x 2-days
## 24496                                                                                                                                                                                                       EE felt sharp pain in back after putting client inher chair.
## 24497                                                                                                                                                                    EE felt sharp pain in left arm while lifting handtruck to put into club car. Strain to left arm
## 24498                                                                                                                                                                                           EE felt sharp pain in left side of back when lifting resident out of bed
## 24499                                                                                                                                                                 EE felt sharp pain in lower back when she tried to support a patient who was falling to the floor.
## 24500                                                                                                                                                     EE felt sharp pain in lower back while bathing resident that was twisting around in the bath tub. Pain in back
## 24501                                                                                                                                                                                                   EE felt sharp pain in lower right back during physical training.
## 24502                                                                                                                                                                                            EE felt sharp pain in middle of back after liftingclient to wheelchair.
## 24503                                                                                                                                                                                                                EE felt sharp pain in right knee during fitness run
## 24504                                                                                                                                                                                                  EE felt sharp pain in shoulder due to picking up & throwing paper
## 24505                                                                                                                                                         EE felt sharp pain right shoulder, when she went down on the mat and the pain radiated down her lower back
## 24506                                                                                                                                                                                                EE felt sharp pains in heel of left foot while walking down stairs.
## 24507                                                                                                                                                                                EE felt shoulder pop when sliding client from bed to trolley. Injured shoulder/neck
## 24508                                                                                                                                                                                        EE felt snap in back when reaching down for an item on grocery store shelf.
## 24509                                                                                                                                                                                                                                  EE felt something bite his lt leg
## 24510                                                                                                                                                                                                                        EE felt something bite his right arm/wrist.
## 24511                                                                                                                                       EE felt something crawling on ear so he reached up and killed spider by smashing it between his fingers. Spider bite to ear.
## 24512                                                                                                                                             EE felt something in her hair and brushed through hair with hand; felt sting on finger and stinger broke off in finger
## 24513                                                                                                                                                                                                                                        EE felt something in rt eye
## 24514                                                                                                                                                                EE felt something on her leg and after hitting it found a small area that resembled an insect bite.
## 24515                                                                                                                                                                              EE felt something pull in back before lifting trays to load for delivery. Back strain
## 24516                                                                                                                                                                                 EE felt something pull in upper abdomen when attempting to assist client off floor
## 24517                                                                                                                                                                                                                                        EE felt something sting ear
## 24518                                                                                                                                                   EE felt something tear in right hand and finger ashe was pulling client up in chair. Right hand and wrist strain
## 24519                                                                                                                                                                                                       EE felt stiffness in both hands from repeated cage assembly.
## 24520                                                                                                                                                                                                           EE felt sting on left breast and breast started toswell.
## 24521                                                                                                                                                                                                                      EE felt sting/bite when unloading recyclables
## 24522                                                                                                                                                                       EE felt stinging sensation on lt arm below elbow. EE had small bump similiar to insect bite.
## 24523                                                                                                                                                                                                                      EE felt strain in back while helping resident
## 24524                                                                                                                                                                                                              EE felt strain in lower back while pushing food cart.
## 24525                                                                                                                                                              EE felt strain to left eye when he bent over to pick up files injury detachment of retina to left eye
## 24526                                                                                                                                                         EE felt sudden onset of pain in lower back while bending over and lifting the base of exercise wgt machine
## 24527                                                                                                                                                                                     EE felt sudden pain in low back while doing a three man carry. Strain low back
## 24528                                                                                                                                     EE felt what could be described as a mosquito biteon left wrist, aprrox 10-15 minutes later a rash broke out on his left hand.
## 24529                                                                                                                                                                                                        EE fighting redman when stepped off mat twisting right knee
## 24530                                                                                                                                                                                                                          EE fighting wild fires & was bite by tick
## 24531                                                                                                                                                                                                   EE fileting a fish when knife slipped & cut lt hand near knuckle
## 24532                                                                                                                                                                                            EE filing and stood up and scraped lower back on another filing drawer.
## 24533                                                                                                                   EE filing architecture prints in file drawer EE pulled drawer past stops. Drawer fell out & struckee rt foot causing soft tissue trauma rt foot.
## 24534                                                                                                                                                         EE filing case files on a high shelf, standing on step stool. Also, she uses a computer. Injured shoulder.
## 24535                                                                                                                      EE filing documents in a 4 drawer file cabinet. Thecabinet fell over & landed on EE lt foot, multiplefractures/contusions. Medical/lost time.
## 24536                                                                                                                                    EE filing files on top of shelf on metal cabinet when stool tipped over and EE fell cutting left foot on metal or file cabinet.
## 24537                                                                                                                                                                            EE filing papers while standing on step stool-lostbalance and fell injuring lower back.
## 24538                                                                                                                                                                              EE filing paperwork and file cabinet fell forward grazing EE's rt hand, arm and side.
## 24539                                                                                                             EE filled a crate of bottles with water and moved to place them on a cart, felt and heard a pop, pain starting in right side lower back, down rt thigh
## 24540                                                                                                                                                                                EE filled mop bucket up and attempted to life with rt hand hurt back lifting bucket
## 24541                                                                                                                                                                                 EE filled the mop bucket with water and picked it up., pulling muscle in shoulder.
## 24542                                                                                                                                                                                   EE filled up a mop bucket with water and carried it two small flights of stairs.
## 24543                                                                                                                                                                       EE filling buckets w/water to put used spectrumns in-water splashed in the corner of rt eye.
## 24544                                                                                                                                                                                                             EE filling can with bedding-bedding got into right eye
## 24545                                                                                                                                                                                             EE filling orders for cottages and when lifting a box EE wrist twisted
## 24546                                                                                                                                                                                  EE filling pail with water to empty into her mop bucket & felt pain in lower back
## 24547                                                                                                                                                                              EE filling up shavings cart, got shavings into hisright eye. Scratched right eye lid.
## 24548                                                                                                                                                          EE finger became caught in lead leash of dog whiledoing obedience training and cut into left index finger
## 24549                                                                                                                                                                EE finger brushed against the cutting blade of tape cutter while retrieving tape label from roller.
## 24550                                                                                                                                                               EE finger got caught between a jack and a tire when assisting a student with changing a flat tire ()
## 24551                                                                                                                                                                                   EE finger was caught between handcuff with restraining an inmate--rt hand finger
## 24552                                                                                                                                                                EE finger was caught between the patient and the door when the patient resisted wa walk to his room
## 24553                                                                                                                                                                                                                        EE finger was caught in between a gate door
## 24554                                                                                                                                                                                                                                   EE finger was caught in handcuff
## 24555                                                                                                                                                                         EE finger was caught when car door closed. Lacera-tion on inside of middle finger rt hand.
## 24556                                                                                                                                                                                                              EE finger was closed in door whe doscharging patient.
## 24557                                                                                                                                                                                                   EE finger was pushed to far rt while placing patient in pic hold
## 24558                                                                                                                                                                                                                             EE finger was slammed in electric door
## 24559                                                                                                                                                             EE finger was wedged of the bathroom door; door closed automically and skin came off rt middle finger.
## 24560                                                                                                                                                                                      EE fingernail got caught in buckle of seatbelt causing laceration to rt thumb
## 24561                                                                                                                              EE finished aligning front-end of patrol car when EE stepped off machine knee twisted and popped, eefell to ground, holding left knee
## 24562                                                                                                                        EE finished cleaning break in room 131, murrow hall went to get a mop. Mop soaking when bent overto squeeze overcome by fumes. Chest/lungs.
## 24563                                                                                                                                                EE finished cleaning up water station and was returning to metrics. EE slipped and fell down, skinning her knee. ()
## 24564                                                                                                                        EE finished hose washing window a/c and turned it 90 degrees to drain--burning sensation lower lft side of stomach to groin area. Dx=hernia
## 24565                                                                                                                                                                         EE finished ironing and sat iron on counter top, was washing windows when her arm hit iron
## 24566                                                                                                                                         EE finished loading cart of med records. Needed another record, pushed cart out of way to get to rec shelf, strained back.
## 24567                                                                                                               EE finished mowing the slope on side of building upon leaving slope the mower started sliding down slope EE fell after applying brakes to stop mower
## 24568                                                                                                                                                                                  EE finished necropsying monkey, removed gloves, and EE had blood on left hand. ()
## 24569                                                                                                                          EE finished putting sugar in tea, stood up reachedfor lid, when tea fell over onto cord on EE's headset, causing it to fall onto left leg
## 24570                                                                                                                                                                                               EE finished shooting a production from a seat and could not stand up
## 24571                                                                                                                                                                  EE finished sweeping and went to sit back in chairfoot slipped off step and he twisted right knee
## 24572                                                                                                                   EE finished unloading wet barrels from truck. Waspreparing to exit truck & slipped on wet floor. Suffered several contusions to l elbow, r side,
## 24573                                                                                                             EE finished work & was walking to his car in the park. Lot near the e. Gate when his lt leg gave out& he fell backwards w/ his lt leg pinned under him
## 24574                                                                                                                                                                                                              EE fired a shotgun and the recoil hit upper left arm.
## 24575                                                                                                                                                                 EE fired rifle and the recoil came back and hit him on the bridge of his nose causing it to bleed.
## 24576                                                                                                                                                                                                            EE fired up torch, hose was loose, burned right hand ()
## 24577                                                                                                                        EE firing gun for requalification over course of firing hand became sore and began to hurt. Gradually gotten worse since that time. Rt hand
## 24578                                                                                      EE firing pistol next to plastic drums during night combat firearms training. EE noticed loud ringing in both ears after shooting night combat course. Later ear drainage. ()
## 24579                                                                                                                                                  EE firing shot gun, weapon slipped and hit his safety glasses causing a cut under lt eye. Small cut under lt eye.
## 24580                                                                                                                                                                                                    EE firing shotgun during training-shotgun made impact with nose
## 24581                                                                                                                                                                                           EE firing shotgun, approx 1 foot from the left side of face and left ear
## 24582                                                                                                                          EE first injury occurred 02/02/2008, pulling sticky-back blanket off of envelope press, re-injured 03/27/2008, and 04/11/2008 again. Back
## 24583                                                                                                                                                                                                                   EE first noticed an enlargement on her rt thumb.
## 24584                                                                                                                                                                                                                                    EE first noticed hand numbness.
## 24585                                                                                                                                                        EE first stated that her eye was hurting whn she got to the infirmary she stated that something flew in eye
## 24586                                                                                         EE fisher injured his groin during physical fitness training at the nc highway patrol training academy. Cadet fisher was doing leg lifts when he felt a pull in his groin.
## 24587                                                                                                                   EE fixing bus when fell cutting second finger right hand and striking back on steps of bus. Laceration of right index finger strained lower back
## 24588                                                                                                                                                                               EE fixing snacks, water in sink uneven flow, waterhot and burnt right thumb and hand
## 24589                                                                                                                                                                             EE fixing soap bucket water - chemical tex-phene fell off shelf and spilled on rt shoe
## 24590                                                                                                                                                                                                                                                     EE flipped atv
## 24591                                                                                                                               EE flipped officer over left leg & when they fell to floor-lt hand landed on floor & officer landed on top of left wrist-heard crack
## 24592                                                                                                                                          EE flushed a urinal in the men's room and water came through the pipe. As she tried to move away she fell in the process.
## 24593                                                                                                                                                              EE following another EE into bldg-notice trash leaking and turned to get a bag and slipped on stairs.
## 24594                                                                                                                 EE following behind another car, car put on brakes& veered to left, there was a truck in the road nolights on and EE collided with truck. Low back
## 24595                                                                                                                                                                      EE following up a hog lagoon complaint when he encountered bad smell rotten or moldly animal.
## 24596                                                                                                                                                       EE following up on a complaint of discharge of waste in waters-while walking through woods becamedehydrated.
## 24597                                                                                                                                                                                                                               EE foot got caught between slider ()
## 24598                                                                                                                                                                      EE foot got caught in hole twisted and fell to the floor and injured leg, shoulder, and back.
## 24599                                                                                                                     EE foot got caught on concrete that surronds tank cover while coming down grassy hill and fell on his buttock and hip. Pain in hip leg & back.
## 24600                                                                                                                                                                              EE foot got tangled in cords/surge protector----- tripped and fell. Injured shoulder.
## 24601                                                                                                                       EE foot patrolling woods, stepped over old stump and heards some buzzing; turned into yellow jackets coming at his face. Started running. ()
## 24602                                                                                                                                     EE foot slid forward part of foot folding underneath EE putting full weight on folded foot heard a crack broken bone left foot
## 24603                                                                                                                                                                                                       EE foot slipped causing him to fall on top of a tractor tire
## 24604                                                                                                                                                                                                       EE foot slipped of the step.... Fell injuring her left ankle
## 24605                                                                                                                                                                              EE foot slipped off curb in parking lot. Felt painin left foot. Fracture to left foot
## 24606                                                                                                                                                                                         EE foot slipped off of loading dock and EE hit foot and elbow on dumpster.
## 24607                                                                                                                                                                              EE foot slipped off wet steps, causing sprain or twisting of left ankle or heal area.
## 24608                                                                                                                                                               EE foot slipped on a rubber piece of floor and foot extended, twisted knee and she hit the concrete.
## 24609                                                                                                                                                                                                                            EE foot slipped on some ice and he fell
## 24610                                                                                                                                              EE foot slipped on wet floor while she & another EE lifted client from wheelchair to recliner causing rt groin strain
## 24611                                                                                                                                                           EE foot was caught in the cord of buffer when he slipped and fell injurying his neck and shoulder blade.
## 24612                                                                                                                                                            EE foot was caught/tangled in cords from keyboard & mouse, causing EE to trip & fall, hurting left knee
## 24613                                                                                                                                                                                                        EE foot wasaching afetr walking around the wtc in new york.
## 24614                                                                                                                                                                                              EE footing slipped and got finger stuck in metal grate on tractor. ()
## 24615                                                                                                                                                              EE for 3 days moved 5, 000 pieces of shelves and racks from wilson library annes to surplus warehouse
## 24616                                                                                                                                                         EE for job related stress in hostile work enivron-ment created by surpervisor. Stress, anxiety, deprssion.
## 24617                                                                                                                                                                                              EE forced the door while students were fighting injured left arm/hand
## 24618                                                                                                                                        EE forcefully entered a room by pushing shoulder against door to rescue a student in immediate dan-ger of death by hanging.
## 24619                                                                                                                                                                                                           EE forehead was struck by a tiedown while unloading tire
## 24620                                                                                                                                                                                                   EE fought with 2 suspects during an arrest and fractured rt hand
## 24621                                                                                                                       EE found a bottle in a dorm bathroom, took it to control officer and accidentally sprayed herself in the face-had irritated cheek and throat
## 24622                                                                                                                   EE found a razor blade in the bathroom of dorm 2 and placed it in a envelope EE states that as she was writing on the envelope the blade cut her
## 24623                                                                                                               EE found a sealed cup in the trash that looked suspicius and and opened it and later started to get bitten by something and broke out all over body.
## 24624                                                                                                                                                                                                                    EE found a tick on the back lt side of his head
## 24625                                                                                                                                                                                           EE found a tick on upper thigh after chasing juveniles through the woods
## 24626                                                                                                                                                                                                                   EE found an embedded tick on the lt side of head
## 24627                                                                                                               EE found and pulled several ticks from his pants and found one attached to his right upper thigh. Was later diagnosed with rocky mount scarlet fever
## 24628                                                                                                                                                                            EE found inmate hanging. EE states she has not been able to sleep and gets real nervous
## 24629                                                                                                                                                                                                         EE found lying on floor after everyone heard a loud nosie.
## 24630                                                                                                                         EE found needle during search & put it in pocket, the sharp end pricked her lt thigh. After removingneedle from pocket, scratched left arm
## 24631                                                                                                                                                                                        EE found needle in bushes, punctured finger while carrying it to trash can.
## 24632                                                                                                                                      EE found patient on floor with shoe string around neck, EE attempted to remove string from around neck and received injuries.
## 24633                                                                                                                                                          EE found pt lying in floor in shower room, during struggle with the patient, EE hit her head on the wall.
## 24634                                                                                                                                                                EE found pt urinating in floor, tried to correct pt, pt grabbed EE by right wrist, scratching EE ()
## 24635                                                                                                                                                                         EE found serval ticks on him and stared to developfever and started breaking out in a rash
## 24636                                                                                                                                                                                         EE found tick bite on lthigh during routine inspection of service station.
## 24637                                                                                                                                                                                                   EE found tick on back of head after mowing and weedeating ground
## 24638                                                                                                                                                                                                                              EE found tick on her waist after work
## 24639                                                                                                                                                                                          EE found tick on left breast. Did not get incected or swell until 4/2/98.
## 24640                                                                                                                                                                                                                                      EE found tick under left arm.
## 24641                                                                                                                                                                                                                                      EE fractured her right elbow.
## 24642                                                                                                                                                                                                             EE fractured left 4th finger while restraining inmate.
## 24643                                                                                                                                                                                                                                              EE fractured left arm
## 24644                                                                                                                                                                                                  EE fractured lt ring finger trying to restrain aggressive student
## 24645                                                                                                                                       EE fractured right rib while playing basketball with children & tripped over a students foot of which caused the EE to fall.
## 24646                                                                                                                                                                             EE frying chicked in deep fat fryer, grease popped on her arm. Burn to right lower arm
## 24647                                                                                                                                                                                 EE fx rt ankle when dolly tipped over, causing plywood to fall and strike rt ankle
## 24648                                                                                                                  EE gave an immate three orders to put hands out tobe cuffed, EE sprayed with pepper spray. Immate hitee in forehead and in jaw with fist. EE fell
## 24649                                                                                                                                                                 EE gave an inmate a belt out of yard basket & a few minutes later his hand started to swell & hurt
## 24650                                                                                                                                                                            EE gave direct order to inmate. The inmate refused to compy and them pushed EE in chest
## 24651                                                                                                                                                                             EE gave patient medication, EE hit by patient, breaking eyeglasses. Broken eyeglasses.
## 24652                                                                                     EE gave resident a shower in a shower chair. After shower, resident did not stand-pivot. While transferring resident knees buckled and staff caught resident before falling ()
## 24653                                                                                                                                                                     EE gave shower to patient. At 7 pm started itchingon both thighs and other parts of EE's body.
## 24654                                                                                                                                                                                                      EE get numbness in both hands from repetitive use of keyboard
## 24655                                                                                                                                                                              EE getting 40# box of potatoes off shelf in coolerwhile in mid-air, EE felt arm twist
## 24656                                                                                                                                                                                      EE getting a large binder down from high shelf injury to right hand and wrist
## 24657                                                                                                                    EE getting a wheelchair to assist with getting client off trolley. As she turned the corner to come out of the room EE twisted her right ankle.
## 24658                                                                                                                                                  EE getting away from frontal choke in self-defensetraining she felt her finger hurting. Injured rt middle finger.
## 24659                                                                                                                                            EE getting back into wheelchair, missed chair and hit her side on commoded, fell on knees, hit side of head on handrail
## 24660                                                                                                                                                                   EE getting books from cabinet and tripped over a table and bike fell into a chair then on floor.
## 24661                                                                                                                                                 EE getting cleint out of chair-cleint put feet on bed and pushed chair against EE knocking EE into another client.
## 24662                                                                                                                               EE getting client dressed-client began swing arm and jerking away-EE tring to get client down and felt something pull in lower back.
## 24663                                                                                                                                                                                                                     EE getting client out of bed and injured back.
## 24664                                                                                                                                            EE getting client up for breakfast-client became combative -kicked EE. X2 in left leg then headbutted employee in nose.
## 24665                                                                                                                                    EE getting client up to chng brief-client leaned over about to fall and EE grabbed on to clients wrist who jerked back from EE.
## 24666                                                                                                                                                           EE getting dish, turned neck because truck was rolling to EE. Felt like a charlie horse went up EE neck.
## 24667                                                                                                                                         EE getting dog out of pen to bring inside-lost balance when another dog ran through EE's leg-EE hit rt foot on block wall.
## 24668                                                                                                                                                                                             EE getting down from stool-stepped back and all weight went on rt foot
## 24669                                                                                                                                               EE getting drink crate down and felt numbness in hand-dropped crated bent over to pick it up and could not stand up.
## 24670                                                                                                                                                                                                 EE getting envelope from cabinet drawer and closedfinger in drawer
## 24671                                                                                                                       EE getting equip out of control box while putting on equipment the slider door closed while head wasdown, hit right wrist and right rib area
## 24672                                                                                                                                        EE getting food cart ready to load for transporta-tion, cart rolling towards the kettles, EE stoppedcart - twisted lt knee.
## 24673                                                                                                                                       EE getting glazed chicken from freezer, had to remove cake from top chcken and piece of ice broke off and hit EE in the eye.
## 24674                                                                                                                                                                                          EE getting in van to transport residents & struck head against metal door
## 24675                                                                                                                                                                                              EE getting info. Frm cabinets foot hit chair and cut skin on rt foot.
## 24676                                                                                                                                EE getting into car @ wal-mart when lame person came up from behind car and jumped across EE's back forcing EE into steering wheel.
## 24677                                                                                                                                      EE getting into elevator and tripped over the unbalanced elevator entrance falling to both kneesboth palms and twisting neck.
## 24678                                                                                                                                                                                     EE getting into own veh l/balance fell and hit left knee on side of inside car
## 24679                                                                                                                                                           EE getting into patrol veh w/campaing hat on-the hat caught the top of the veh's door jerking EE's neck.
## 24680                                                                                                                                                          EE getting into position during a tornado drill, she bent down and struck her knee on the floor very hard
## 24681                                                                                                                                 EE getting into state car in inclement weather, a strong gust of wind blew car door striking EE onthe head, extreme pain and dazed
## 24682                                                                                                                            EE getting into the vann at side of door, hit footslipped and EE fell, hitting his knee on door step of van. Rt knee - pain & swelling.
## 24683                                                                                                                                                                                         EE getting into trk parked on an incline-when doorclosed struck left knee.
## 24684                                                                                                                                                                                                                       EE getting into truck and twisted left knee.
## 24685                                                                                                                                                                               EE getting into van rt foot made contact with metal step striking her rt lower shine
## 24686                                                                                                                                                                                                  EE getting linen out of cart, leaned over cart and felt back pull
## 24687                                                                                                                                                                                                       EE getting mail out of box and received splinter in rt thumb
## 24688                                                                                                                   EE getting money from officer in tower one when bucket was lowered for her to use in doing so she reached in & scratched her rt hand & rt thumb.
## 24689                                                                                                                                                                                EE getting mop from closet when door closed on right thumb. Hematoma to right thumb
## 24690                                                                                                                                             EE getting off elevator and collied with client- grabbed cleint to keep from falling both fell hurt leg, knee and back
## 24691                                                                                                                                             EE getting off elevator didn't notice it was not level-foot got stuck between landing and EE fell injuring left ankle.
## 24692                                                                                                                                                                                           EE getting off forklift-something fell off head guard and blew into eye.
## 24693                                                                                                                                          EE getting off stool & left foot slipped on foot rail & went inside stool causing EE to loose his balance & fall to floor
## 24694                                                                                                                                                                                                                         EE getting off tractor and foot got caught
## 24695                                                                                                                                                                         EE getting off van to help client get off van whenfoot hit the ground and twisted rt anke.
## 24696                                                                                                                                                                                            EE getting on elevator and the door closed on her mashing her shoulder.
## 24697                                                                                                                                                                            EE getting on elevator, tripped on apparant uneven surface & caught herself on rail. ()
## 24698                                                                                                                                                                       EE getting on the back of pickup truck to unload trash when he heard a pop in his left knee.
## 24699                                                                                                                                                                     EE getting ont elevator-fell due to elevator not connecting with floor-injuring lower rt back.
## 24700                                                                                                                 EE getting orange juice out of carton, dropped one, it bursted. She was going after mop to clean it up. Slipped and fell injuring left hip and leg
## 24701                                                                                                                                                                                    EE getting out of canoe to help another camper and cut left foot on oyster rock
## 24702                                                                                                                                                                                           EE getting out of car and slipped on block of ice bruised legs and arms.
## 24703                                                                                                                                  EE getting out of car and stepped on an object & fell injuring his neck & back (ken king, pa withdrew but wants cut of settlement
## 24704                                                                                                                 EE getting out of car for visit, held work bag in rt hand and lt arm to close car door, closing doorand rt thumb was slammed between door and car.
## 24705                                                                                                                                                                              EE getting out of car slipped and fell on ice causing rt non-displaced head fracture.
## 24706                                                                                                                                    EE getting out of car when EE slipped on banana peel causing EE to fall injury to left arm, right knee, head and broken glasses
## 24707                                                                                                                                                                                                                EE getting out of car, left hand caught in car door
## 24708                                                                                                                                                                                               EE getting out of car-door came forward striking EE on rt front lobe
## 24709                                                                                                                                                                                                           EE getting out of care unbalanced and injured left foot.
## 24710                                                                                                                                                                        EE getting out of hauling unit, hand slipped off handrail, fell to the ground on left knee.
## 24711                                                                                                                               EE getting out of patrol car EE fell on cement hitting her head against vehicle door. Pain in neck and upper back - rt shoulder area
## 24712                                                                                                                                                                           EE getting out of patrol veh and slipped on wet leaves next to curb spraining lft ankle.
## 24713                                                                                                                                                                                              EE getting out of patrol veh when he closed door on rt middle finger.
## 24714                                                                                                                                                                   EE getting out of the car and slipped on pine straw/leaves on ground. EE injured right lower leg
## 24715                                                                                                                                                                                          EE getting out of trk and slipped on and icy area falling on his buttock.
## 24716                                                                                                                                                                                 EE getting out of trk and stepped down on a ridge oc concrete and turned rt ankle.
## 24717                                                                                                                                                                                                                         EE getting out of truck & hit knee on door
## 24718                                                                                                                          EE getting out of van & was caught in door, lost balance. While trying to prevent himself from falling he struck neck on top panel of van
## 24719                                                                                                                                                                                                                                EE getting out of van and hit head.
## 24720                                                                                                                                                                                          EE getting out of van and the door closed on left hand--3rd index finger.
## 24721                                                                                                                                        EE getting out of van from driving and was carrying cell phone and radio. Went to close door and jammed lt hand 3rd finger.
## 24722                                                                                                                                                    EE getting out of veh and slipped and fell on black ice inuring rt shoulder, neck, hip, thigh, elbow and knees.
## 24723                                                                                                                                                   EE getting out of veh and stepped on curb foot hitdrain that was uncovered-metal casing broke loose and EE fell.
## 24724                                                                                                                                                                               EE getting out of veh and tripped and fell hurtingknees, palm of hands and left foot
## 24725                                                                                                                                                                                       EE getting out of veh slipped on ice, abraison on rt arm and lower back pain
## 24726                                                                                                                                                                   EE getting out of veh to go into bldg to get a report-slipped on wet pavement and twisted ankle.
## 24727                                                                                                                                                                                            EE getting out of veh when coming from lunch-hit rt foot on cement curb
## 24728                                                                                                                                                                                          EE getting out of vehicle in morrisons parking lota bug hit EE on rt hand
## 24729                                                                                                                        EE getting paper for computer printer, opening door paper stored thumb got jammed between safe door and outer office door. Injured rt thumb
## 24730                                                                                                                                                                            EE getting patient out of bed & patient kicked EE in the knee causing bruising & sprian
## 24731                                                                                                                                                                                                 EE getting patient under control injured lt knee. Injured lt knee.
## 24732                                                                                                                    EE getting ready for visitation a large folding chair, which was not secure, fall on her rt foot hitting her big toe, injured rt foot, big toe.
## 24733                                                                                                                                                                                      EE getting ready to mop and was moving (barn) doors, chairs to clean rooms ()
## 24734                                                                                                                                    EE getting ready to push had handle with pto goingback to get lever and fell into handle on hay bailer, bruise to left rib cage
## 24735                                                                                                                                                                       EE getting ready to sit in chair when chair rolledaway and EE fell to floor injuring rt hip.
## 24736                                                                                                                                                                                   EE getting ready to sit in chair when it was pulled away injury EE fell to floor
## 24737                                                                                                                                                                        EE getting ready to wash wheelchair, turned the wheelchair up side down and rt hand slipped
## 24738                                                                                                               EE getting resident dressed, resident grabbed holdof her hand, tired to get resident to turn loose resident thumb backwards & poppled - sprain thumb
## 24739                                                                                                                                                 EE getting resident from the floor whiel resident was exhibiting inappropraite behavior pulled muscle in rt wrist.
## 24740                                                                                                            EE getting resident out of bed to potty chair. Resident started spitting. Resident reached up & grabbed EE's arm with finger causing scratch& nail mark
## 24741                                                                                                                                                               EE getting rid of contraband - had razor in hand, started to break in half, finger slipped on blade.
## 24742                                                                                                                                                                                              EE getting something from underneath aircraft and injured lower back.
## 24743                                                                                                                                                                       EE getting supplies from housekeeping room and tripped over buffer and fell hurting rt knee.
## 24744                                                                                                             EE getting supplies needed for day; restocking requires lifting boxes several times during the day. Suddenly started feeling pains in left wrist & arm
## 24745                                                                                                                                                                                           EE getting supplies out of car and accidently jammed papers in left eye.
## 24746                                                                                                                                          EE getting tissue frm shelf when box of trash bagsfell and hit EE in the mouth breaking causing top plate to break loose.
## 24747                                                                                                                                               EE getting tower key out of metal drawer it was pulled back accidently mashing finger. Lt hand middle finger mashed.
## 24748                                                                                                                      EE getting trash out of office, upon lifting heavier than expected trash can, felt a sting on the rt side of chest, felt pain through out day
## 24749                                                                                                                                            EE getting trays off trk-when letting lift down the food cart came loose-EE holding on to cart when lift jerked rt arm.
## 24750                                                                                                                                                                                                     EE getting turkey frm freezer fell through bag onto right foot
## 24751                                                                                                                                                   EE getting up from chair-another EE passing accidently hit foot causing EE to loose balance and fall hitting hip
## 24752                                                                                                                                                                                  EE getting up from desk foot got caught in phone cord causing EE to fall to floor
## 24753                                                                                                                                                                                         EE getting up from desk to answer phone and tripped and twisted left ankle
## 24754                                                                                                                                                     EE getting up from desk to go, & foot was tangled up with the desk causing EE to fall. Injured righthip & arm.
## 24755                                                                                                                                                      EE getting up from desk to help at counter and tripped over cords in floor and fell on back and hitting head.
## 24756                                                                                                                                                         EE getting up from desk-foot got entangled in telephone cord causing EE to lose balance and twist rt foot.
## 24757                                                                                                                                                                                         EE getting up from practinc cpr and fell back and caught self w/left hand.
## 24758                                                                                                                                                               EE getting up from table to run after a client that was going out the door EE hit left knee on table
## 24759                                                                                                                                                                    EE getting up from working in frt of lawn tractor and slipped striking left hand on metal guard
## 24760                                                                                                                                                                                                             EE getting up while foot asleep-left foot over turned.
## 24761                                                                                                                                                     EE getting water from water fountain falling over box that was in front of cooler injury to rt knee & rt elbow
## 24762                                                                                                                EE gettingup from table @ law library when trippedon a power box located in floor next to chair. EE hit rt arm on writing board & landed on rt knee
## 24763                                                                                                                                EE gettubg out of vehicle in parking lot a bug hithim on rt hand - across knuckle area. Insect bite on rt hand across knuckle area.
## 24764                                                                                                             EE giving a client a breathing treatment, client rresisted & hit staff on the forearm causing an ab rasion. EE did not Miss Any days from work. Medica
## 24765                                                                                                                                                                                                         EE giving a student ointment for rash on student lower leg
## 24766                                                                                                                                                                                                                               EE giving care to resident w/scabies
## 24767                                                                                                                                                             EE giving client a bath-client tilted over and EE catching client frm falling felt pull in lower back.
## 24768                                                                                                                                                  EE giving client a shower when client turned forward and knocked glasses off EE's face putting a scratch on nose.
## 24769                                                                                                                                           EE giving client a shower-client pushed EE backwards causing EE to slip on wet floor and caught selfin awkward position.
## 24770                                                                                                                                                                          EE giving client mouth care-client bit end of swaboff-EE removing objct client bit finger
## 24771                                                                                                               EE giving client sponge bath-trned to get washcloth notice client leaning over bed-ran to keep client from falling and client grabbed EE's left arm.
## 24772                                                                                                                                                                                                        EE giving client's meds per g-tube. Client spit inright eye
## 24773                                                                                                                                                          EE giving cosmetology exam when EE slipped but caught herself so that she did not fall injury back strain
## 24774                                                                                                                    EE giving first aid to park visitor with cuts and lacerations. Gloves became torn exposing hands to victim blood. Hands exposed to victim blood
## 24775                                                                                                                                            EE giving inmate some ice, inmate grabbed EE left arm, EE tried to free arm, inmate finger nails cut EE arm in 2 places
## 24776                                                                                                                                               EE giving insulin injection flipped protective covering down over needle didn't cover tip pricked EE's lt 2nd finger
## 24777                                                                                                                            EE giving insulin shot started fallin forward tried to grab him so he would not fall stuck myself in lt upper palm of hand with needle.
## 24778                                                                                                                                                                                 EE giving medication to patient who punched EE in right eye and right side of face
## 24779                                                                                                                                 EE giving medicine to inmate when she fell and twisted her ankle. Hurting knees, and hitting arm and railing. Bruised knee and arm
## 24780                                                                                                                                                          EE giving meds to client-meds spilled on client and EE had to reposition client-EE noted pull in rt back.
## 24781                                                                                                                                                                EE giving res a bath while rolling res over on sidee felt stinging sensation on low rt side of back
## 24782                                                                                                                            EE giving resident his dulcolx suppository & he was fighting. Residents knee hit EE in mouth. Broken skin & bruising inside bottom lip.
## 24783                                                                                                                                                                              EE glasses fell off when broke fight up & studentsstepped on glasses, breaking frames
## 24784                                                                                                                                                                                                             EE going back to area after lunch & turned right ankle
## 24785                                                                                                                                                                 EE going back to bldg to check the mechanical room& fell down due to rain injuring his right knee.
## 24786                                                                                                             EE going down fire escape stairs during alarm, caught foot in front, fell down several stairs, injured both legs/knees/rt hand, swelling/bruised/cuts.
## 24787                                                                                                                                                                                              EE going down ramp and slipped on frozen ice, lt knee and lt shoulder
## 24788                                                                                                                                                                         EE going down stairs and lost balance and fell on ground hitting head and hurt left ankle.
## 24789                                                                                                                                           EE going down stairs and slipped and fell falling down 3-4 steps causing injury to rt hand, left buttock, left leg/foot.
## 24790                                                                                                                                                                     EE going down stairs to do laundry and stepped offof the step onto a football and twisted knee
## 24791                                                                                                                                                                                EE going down stairs to get bag of cake mix and slipped and fell bruising left arm.
## 24792                                                                                                                              EE going down stairs to get to her office foot slipped on wet top. Broke fall with hand rail. Lt ankle red & swollen, no broken bones
## 24793                                                                                                                                                                          EE going down stairs to leave for day and missed step fallin on ground injuring left leg.
## 24794                                                                                                                             EE going down stairs-people in ft/back of EE-person in frt of EE stopped suddenly and turned around causing EE to fall down the stairs
## 24795                                                                                                                                      EE going down stairwell from 4th to 3rd floor. Herfoot slipped off the first of the top step & she ?? Down step on her bottom
## 24796                                                                                                                             EE going down steep slope on a trail when his rt foot twisted to one side & he felt his rt knee popknee became swollen and stayed that
## 24797                                                                                                                                                                                                                        EE going down step & felt pop in left ankle
## 24798                                                                                                                                                                                                            EE going down steps and foot slipped and twisted ankle.
## 24799                                                                                                                                                                                        EE going down steps and missed a step-twisted lft foot as landing on floor.
## 24800                                                                                                                                                                                                        EE going down steps and slipped on ice landing on left hip.
## 24801                                                                                                                                                                                          EE going down steps and stepped on pebbles lost balance and twisted knee.
## 24802                                                                                                                                                                                           EE going down steps and tripped and fell heard something pop in rt knee.
## 24803                                                                                                                                                                                                           EE going down steps carrying letters and turned rt ankle
## 24804                                                                                                       EE going down steps in courthouse, on second flightee slipped & fell down steps. Fall broken by brickwall. Abrasions on hand, arm, shoulder, back, leg, shin
## 24805                                                                                                                                                                                                                                 EE going down steps sprained ankle
## 24806                                                                                                                                                                                    EE going down steps to ladies room when footing slipped and EE fell down steps.
## 24807                                                                                                                             EE going down steps w/ canoe on shoulder-canoe gothung on fence-the sudden stop pulled EE back and caused pain in lt shoulder and back
## 24808                                                                                                                                                            EE going down steps, stepped off last step, feet slide on water and she fell. Neck, buttocks, leg, back
## 24809                                                                                                                                                                    EE going down steps, stepped on to sidewalk, too close to edge, twisted r ankle, fell on l knee
## 24810                                                                                                                                                         EE going down steps, twisted right ankle & fell tothe floor. Stated her right ankle was all that was hurt.
## 24811                                                                                                                                                                  EE going down the exterior steps of marteena hall missed step and fell. Severe sprain of lt foot.
## 24812                                                                                                                                                            EE going down the stairs fairly fast lost her balance & fell backwards injuring the lt side of her back
## 24813                                                                                                                                                                                                   EE going down wet steps and slipped and fell spraining left leg.
## 24814                                                                                                                                                                     EE going down wet steps and slipped-caught self before falling but strained back and shoulder.
## 24815                                                                                                                           EE going downstairs & shoe caught on steps & started to fall, body fell into railing. Injured both arms, rt knee area, & rt ribcage area
## 24816                                                                                                                             EE going downstairs and caught on stairs and startto fall, to catch fall EE caught railing, bruise both arms, right knee, ribcage area
## 24817                                                                                                                                                              EE going downstairs when she missed last step & fell face down on concrete floor bruising ribs & knee
## 24818                                                                                                                                    EE going from dishroom back into cafeteria, when she hit standing water at drain, fell landing on both knees and l arm/shoulder
## 24819                                                                                                                                                                  EE going in and out of bldgs caused him to perspire due to the change of temperature in the bldg.
## 24820                                                                                                                                                                          EE going into bedroom, steel door flew back and eewent to catch it and door hit left hand
## 24821                                                                                                                                                                                                EE going into bldg when rain began, slipped and fell injured rt leg
## 24822                                                                                                                                                                                             EE going into clients room-slipped and fell on wet floor on left knee.
## 24823                                                                                                                                         EE going into court house as she walked between two cars slipped and fell truning left ankle on water and broken concrete.
## 24824                                                                                                                                                                               EE going into motor pool to check on vehicles and slipped on ice landing on his back
## 24825                                                                                                                                                                                   EE going on break and hit her lt wrist on corner of cubicle wall down the aisle.
## 24826                                                                                                                                                              EE going on break, client pass EE quickly & knocked EE down. Caught with rt hand and fell on left arm
## 24827                                                                                                                                                                         EE going on break, while adjusting her shirt, she hit her right hand on the cubical corner
## 24828                                                                                                                                                                 EE going on lunch break-walking on grass and stepped in a tire trench and turned rt ankle and fell
## 24829                                                                                                                                                                                   EE going out back door and fell on steps injuring rt arm, hand, hip and fingers.
## 24830                                                                                                                                                                                     EE going out back door and stepped off curb when rt ankle twisted and EE fell.
## 24831                                                                                                                                                                                           EE going out back entrance and stepped on a rock and twisted left ankle.
## 24832                                                                                                                                                 EE going out bldg-computer was on a rolling cart- cart got stuck on door seal and computer fell on EE's left foot.
## 24833                                                                                                                                                                                              EE going out door and door closed on firts three fingers on left hand
## 24834                                                                                                                                                                                           EE going out door, client pushed door real hard & jammed rt hand in door
## 24835                                                                                                                                           EE going out door-turned to closed by pulling on bars-bars popped away and fell backwards down the steps on the pavement
## 24836                                                                                                                                                                                                  EE going out exit door and tripped over student sitting on floor.
## 24837                                                                                                                                                                       EE going out the manning hall and fell down steps to bricked pavement injuring left forearm.
## 24838                                                                                                                                                            EE going outside to put money in parking meter- slipped and fell on a large piece of glass or plastice.
## 24839                                                                                                                                                                 EE going through door and officer in booth closed door before EE was clear. Burised left shoulder.
## 24840                                                                                                                                                                               EE going through intersection on green light when ov ran red light and hit EE's veh.
## 24841                                                                                                                                                                                             EE going through obstacle course & hit her back onthe beam, left side.
## 24842                                                                                                                                                                          EE going through pepper spray training he inhaled fumes causing his lungs to be infected.
## 24843                                                                                                                                   EE going through slider to take inmates to recrea-tion yard, EE in control room shut door on her. Injured rt hand near knuckles.
## 24844                                                                                                                                                EE going through the gate to work truck & tripped on curve. Landed on knees & jammed fingers tryingto balance fall.
## 24845                                                                                                                                                                 EE going to a meeting slipped and fell on wet floor - knee, arms, wrist, fingers, ankles and chest
## 24846                                                                                                                                                                                                  EE going to car slipped and fell on wet pavement landing on knee.
## 24847                                                                                                                                                                 EE going to car, & fell on wet oily pavement. Fell on back as her feet slipped out from under her.
## 24848                                                                                                                                                                                EE going to car, a passing car hit a large rock & threw it against EE's right ankle
## 24849                                                                                                                                          EE going to car, slipped on slick spot, feet went out from under me fell on lt side on hip, leg, shoulder and lower back.
## 24850                                                                                                                                                                                                                     EE going to class and struck rt arm on window.
## 24851                                                                                                                     EE going to class with books in hands and slipped on 3rd step from bottom, landing with legs folded under torso. Rt thigh/knee/wrist/low back.
## 24852                                                                                                                                         EE going to classroom floor wet EE crutches slipped and EE fell backwards hitting head injury to back of head on left side
## 24853                                                                                                                                                                         EE going to clean restrooms when student ran pass EE and stedped on left foot and coworker
## 24854                                                                                                                                   EE going to clean work area picked up spray bottlecleaner. Top came off bootle spilled onto him not-iced urine smell. Arms, ect.
## 24855                                                                                                                                                                       EE going to court, fell down on outside steps due to rain. Left thigh, left leg, lower back.
## 24856                                                                                                                                                              EE going to develop xray-pulled cassette out of bin and cassette flipped and fell on EE's rt forearm.
## 24857                                                                                                                                                                              EE going to fron entrance of building and stepped on pin & twisted her ankle. Lt foot
## 24858                                                                                                                                             EE going to get crash cart for code blue. Turned the wrong way and twisted lt ankle. Sprain/strain lt achilles tendon.
## 24859                                                                                                                    EE going to get training supplies located in bed room of home where having planning meeting. EE picked up supplies, turned, lost balance & fell
## 24860                                                                                                                       EE going to greenville ortho. Rounded curb w/no rail. EE stepped on round part causing falling forward. Toe caught fell hurting rt shoulder.
## 24861                                                                                                                          EE going to learning ctr to teach students w/ disabilities when a student came running out pushing open doors and striking EE in the face
## 24862                                                                                                                                                                                                        EE going to lunch and stumbled over a cement blockand fell.
## 24863                                                                                                                                                                   EE going to lunch, turning in wendy's parking lot when second car struck his vehicle in the rear
## 24864                                                                                                                    EE going to lunch-going across cross walk when a car came flying up making a sharp rt turn and ran over EE's rt foot, also injuring rt knee. ..
## 24865                                                                                                                                                                                            EE going to lunch-stepped down off steps and twisted rt foot and ankle.
## 24866                                                                                                                         EE going to norht wing to get inmates for medica- tions time, she slipped in water on the floor. Contusion lt hip & buttocks, back strian.
## 24867                                                                                                                               EE going to registar's office for student's info., approached the second floor landing, tripped on one step, fell on rt hand/lt knee
## 24868                                                                                                                         EE going to see juvenile in their room-slipped on a rug as she turned the corner landing on her kneerehab nurse-tonya johnson 910-494-4941
## 24869                                                                                                                                                           EE going to see supervisor she opened door & air from first floor caused door to pull back on her finger
## 24870                                                                                                                                                                   EE going to sit in chair and chair rolled out fromunder her causing her to fall flat on her back
## 24871                                                                                                                                                                                    EE going to teach a class, tripped & fell on the stairs, injuring both knees ()
## 24872                                                                                                                                   EE going to work-stopped for traffic hit in the rear by ov-then pushed into another stopped veh injured forehead, neck and back.
## 24873                                                                                                                                                                                                          EE going up stairs and tripped and fell injuring rt knee.
## 24874                                                                                                                                                      EE going up stairs, stumped foot on steps, fell down at top of stairs, landing on left knee/right shoulder ()
## 24875                                                                                                                                                                        EE going up steps and toe caught on step and fell against hand rail twisting right ankle ()
## 24876                                                                                                                                                                                       EE going up steps and tripped on a metal strip injuring left knee and ankle.
## 24877                                                                                                                                                                                                  EE going up steps from medical office stepped on last step & fell
## 24878                                                                                                                                               EE going up steps to program office bldg, lt foot caught top step causing him to trip & fall forwardinjured lt knee.
## 24879                                                                                                                                                                                            EE going up the stairs something felt like it had torn in her left knee
## 24880                                                                                                                                                       EE going upstair onto the stage in auditorium whenhe missed step. Fell and skinned lt leg. Contusion lt leg,
## 24881                                                                                                                                              EE going upstairs to duty station, EE bumped knee on very top of step which is also the concrete floor of the station
## 24882                                                                                                                                                                                             EE got a envelope that contained a unidentified white powder substance
## 24883                                                                                                                                                                                                             EE got a fish hook embedded in his fourth right finger
## 24884                                                                                                                                                                                                                    EE got a foreign particle in eye while cleaning
## 24885                                                                                                                                                                                    EE got a splinter stuck underneath fingernail of the 4th finger on the rt hand.
## 24886                                                                                                                     EE got angry due to people coming by hitting his station window, punched the back glass with his right hand cracking window/right pinky finger
## 24887                                                                                                                                                                                                                                  EE got back pain while vaccuuming
## 24888                                                                                                                                                                                               EE got battery acid on hands while changing batteries in flashlights
## 24889                                                                                                                 EE got between another EE and client to block hitsthe client scratched EE's face and pulled her hairduring blocking the hits, EE hit her right han
## 24890                                                                                                                                                                   EE got bit by dog while trying to restrain him. O lt hand & wrist shallow puncture with swelling
## 24891                                                                                                                                                                                                                                       EE got bitten by dog on leg.
## 24892                                                                                                                                                                                                        EE got blood on hands while restraining inmate after fight.
## 24893                                                                                                                                                                                                     EE got blood on his hand while placing a subject under arrest.
## 24894                                                                                                                                                                                    EE got caught in automatic door, and it closed on and hit her right forearm. ()
## 24895                                                                                                                    EE got caught in the powered gate when the officerin the tower accidentally closed it; the gate cameto rest on EE's rt arm pressing it to gate.
## 24896                                                                                                                                                 EE got caught in the seatbelt when trying to get out of the van and hurt her shoulder trying to keep from falling.
## 24897                                                                                                                                                                          EE got caught up in some thick briars while attempting to arrest a suspect... Right wrist
## 24898                                                                                                                                                                                                                        EE got chemical burn on right side of neck.
## 24899                                                                                                                                         EE got cleaning liquid that req'd work, also got the brick & started scrubbing as I scrubbed greasesplattered onto my face
## 24900                                                                                                                                                                                                                              EE got cleaning solution in right eye
## 24901                                                                                                                                                                                                                                            EE got debris in eye ()
## 24902                                                                                                                                                                                                                                         EE got debris in left eye.
## 24903                                                                                                                                                                                               EE got dirt in his eye while he was working in theradio repair shop.
## 24904                                                                                                                                                                         EE got down on mat on floor to give client medication felt a pop in left knee and pain. ()
## 24905                                                                                                                                                                                                                 EE got dust and small piece of metal in right eye.
## 24906                                                                                                                                                                                                                             EE got dust in eye while loading truck
## 24907                                                                                                                                                                                                                     EE got dust in right eye while feeding animals
## 24908                                                                                                                                                                             EE got end of left thumb and thumbnail caught while sanding a piece of metal on sander
## 24909                                                                                                                                                                                                            EE got finger caught in conference room door on rt hand
## 24910                                                                                                                                                                                EE got foot caught in crack of cement and fell forward on left hand, wrist and face
## 24911                                                                                                                                                                                                              EE got foot tangled in chain and fell spraining ankle
## 24912                                                                                                                                                                                                                                        EE got foreign body in eye.
## 24913                                                                                                                                                                                                                                    EE got foreign body in left eye
## 24914                                                                                                                                                                                                                                     EE got hand caught in cabinet.
## 24915                                                                                                                                                                                         EE got hand caught in door as she was getting inmates out for school call.
## 24916                                                                                                                                                                                                        EE got hand caught in sliding glass door causing laceration
## 24917                                                                                                                                      EE got heel of shoe caught in auto door-shw jerkedher foot free as the door closed and fell backwrdshitting head on doorframe
## 24918                                                                                                                                                                                                                           EE got her right foot caught in a drawer
## 24919                                                                                                                                                                                            EE got her right ring finger caught between two metal cages.... Knuckle
## 24920                                                                                                                                                                 EE got his eyes burned when he was doing dna-gel straining occasionally without sheild protection.
## 24921                                                                                                                                                                                                                            EE got his finger caught under a chair.
## 24922                                                                                                                                                                                                       EE got his hand caught between a cart and chairs; right hand
## 24923                                                                                                                                                                    EE got hit in nose by an inmate while trying to subdue him during use of force. Injury to nose.
## 24924                                                                                                                                                                                                                                        EE got hornet sting to neck
## 24925                                                                                                                      EE got ice for research team meeting EE was carrying bowl of ice w/both hand up stairs. EE tripped fell up stairs. Injuring rt knee mid back.
## 24926                                                                                                                                                                                                          EE got in elvator face frward fell on fl trip fl not even
## 24927                                                                                                                               EE got in fight with inmate, after fight was over EE observed blood on inmate & on EE right middle nuckle, which was cut & bleeding.
## 24928                                                                                                                                                                 EE got into a confrontation with suspect during apprehension and fractured tip of left ring finger
## 24929                                                                                                                                                                                                     EE got into a nest of ticks while making stream deteminations.
## 24930                                                                                                                                   EE got into a nest of ticks while making stream determinations. She spoke to the supervisor about it when she rtn to the office.
## 24931                                                                                                                      EE got into altercation with inmate. She tried to put him in a head lock, and was unsucessful. Inmate then put her in a bear hug from behind.
## 24932                                                                                                                                                        EE got into state vehicle and had hand on door frame when another EE closed car door closing finger in door
## 24933                                                                                                                                    EE got into van and sat down at which time the firextingusher descharged in the front of van locatedbetween the radio and seat.
## 24934                                                                                                                                                                                                                               EE got large splinter in right palm.
## 24935                                                                                                                                                                                          EE got left hand stuck in box handle-became bruised and continues to hurt
## 24936                                                                                                                                                                                                       EE got left thumb caught in handcuffs while cuffing juvenile
## 24937                                                                                                                                                                                                    EE got leg hung between return duct and crawling across catwalk
## 24938                                                                                                                                                                      EE got leg tangled in vacuum cord and lost her balance causing her to fall and twist her knee
## 24939                                                                                                                                                                                    EE got lt hand caught in wheelchair spoke while cleaning it -lt wrist contusion
## 24940                                                                                                                                                                                                             EE got lt little finger caught in outside door of bldg
## 24941                                                                                                                                                                                                                                            EE got mulch in his eye
## 24942                                                                                                                                                                                                                                EE got needle stick while suturing.
## 24943                                                                                                                       EE got off bus, was walking to vestal hall and fell on concrete barrior. She fell flat and injured both legs and middle finger on left hand.
## 24944                                                                                                                                                                    EE got off elevator and was told to walk around area, EE did so and slipped and fell. No injury
## 24945                                                                                                                               EE got off elevator walked through lobby and fell. Susan breedlove cm 336 498 3241 injured lt knee strained back ** surg knee 6/15**
## 24946                                                                                                                                                      EE got off elevator, turned the corner, slipped and fell causing lt foot to turn over and felt immediate pain
## 24947                                                                                                                                                                      EE got off of his forklift and tripped over board and fell to the floor and injured shoulder.
## 24948                                                                                                                                                                                  EE got off the elevator and tripped over someone's foot while leaving to go home.
## 24949                                                                                                                                                  EE got on a table to get a backet off the wall and when getting down hit her foot on the uppersidflat on a chair.
## 24950                                                                                                                          EE got on elevator on the third floor and she was going to the the ground floor. The elevator stopped between the 1st floor and basement.
## 24951                                                                                                                                                           EE got on stool to cut off ceiling fan. Stool began to tip over. EE shifted her weight and strained back
## 24952                                                                                                              EE got on the elevator and it was stuck. He went to open the door and pushed the ? Which was jammedhe was pushing it open & slipped, hurting shoulder
## 24953                                                                                                                                                                                       EE got out of a bob cat forklift after operating it & felt pain in his back.
## 24954                                                                                                                                                EE got out of car and did not see parking barricade-tripped and fell into second barricade broken rt wrist and nose
## 24955                                                                                                                                                   EE got out of car and lost footing & slipped on the pavement covered with ice/snow. Injured back &rt. Arm/wrist.
## 24956                                                                                                                                   EE got out of car and proceeded out of the parkinglot and fell flat on her back twice. Both hands hurt in the palm and buttocks.
## 24957                                                                                                                                                                                         EE got out of car and stepped up onto sidewalk andfell on rt side of body.
## 24958                                                                                                                                                                              EE got out of car to report to work and slipped on ice and fell hitting back and head
## 24959                                                                                                                                                                                                                EE got out of car, slipped on ice and fell on knees
## 24960                                                                                                           EE got out of car, walked around car to open other door, took bad fall, both feet went out from under her and fell flat on back. Both hands and backside
## 24961                                                                                                                                                                                    EE got out of chair to assist she came down on herfoot. Bruised lt foot - heel.
## 24962                                                                                                                                                                                                         EE got out of chair to respond to et call and twisted knee
## 24963                                                                                                                                                                                                                    EE got out of chair, lower back started hurting
## 24964                                                                                                                                               EE got out of her car and walked around to the front to step up on curb. She stepped up and fractured her left foot.
## 24965                                                                                                                                              EE got out of his vehicle at rear of ssb, step on drain and lost footing causing him to fall on rt shoulder and side.
## 24966                                                                                                                                                                                       EE got out of the car and walked to building, slipped & fell in parking lot.
## 24967                                                                                                                                                                                                EE got out of the fire truck, stepped down, and twisted right ankle
## 24968                                                                                                                                                                                       EE got out of trk and stepped in a puddle of waterand fell hurting rt wrist.
## 24969                                                                                                             EE got out of truck-truck began to drive away-sm. Sprayer boom fell beside truck knocking EE's feet out from under him-he flipped & landed on pavement
## 24970                                                                                                                   EE got out of van walked around front of van and sslipped on some loose gravel when EE fell EE used rt hand to try & catch fall, fell on rt hand
## 24971                                                                                                                                                                    EE got out of van, turned to open door for pt to get out, pt opened door hitting EE in shoulder
## 24972                                                                                                                     EE got out of vehicle and slipped on ice and fell to ground. He put right hand out and tried to brace himself and injured right middle finger.
## 24973                                                                                                                                 EE got out of vehicle to walk to building, stepped over a gravel and rough area in pavement, foot twisted, painin top area of foot
## 24974                                                                                                                                                                                                               EE got out of vehicles stumbled and fell over the ()
## 24975                                                                                                                                                  EE got out of work vehicle, slipped in muddy conditions, lost balance, fell, placing rt hand out to brace self ()
## 24976                                                                                                               EE got out to parking lot early sat in car, then was going to go in early to get cup of coffee. Shewas walking & fell. Fell on metal piece in ground
## 24977                                                                                                                                                                                                                           EE got particle ing rt eye while working
## 24978                                                                                                                           EE got pt out of bed was about to fall out of wheel chair, from behind I pulled her back into wheelchair to prevent her from falling. ()
## 24979                                                                                                                                                                              EE got ready to sqeeze door handle, slipped and fell over the mop cart injuring back.
## 24980                                                                                                                                                                   EE got resident up to change her and resident fell back down and EE felt pain in shoulder blade.
## 24981                                                                                                                                                                                                                       EE got right hand caught in wheelchair wheel
## 24982                                                                                                                                                                                                       EE got rt index finger caught in gate causing puncture wound
## 24983                                                                                                                                                                                        EE got rt index finger caught in truck lift causing fracture and laceration
## 24984                                                                                                                                               EE got rt index finger lodged between hand truck and liquid nitrogen tank while loading vehicle and fractured finger
## 24985                                                                                                                                                                                                     EE got rt middle finger got caught in filing in cabinet drawer
## 24986                                                                                                                                                                                                                    EE got rt middle finger mashed in elevator door
## 24987                                                                                                                                                                                                                               EE got scabies performing cna duties
## 24988                                                                                                                                                                                                                     EE got scratches to rt wrist form briar bushes
## 24989                                                                                                                                                                                EE got sick after initial pepper spray training. EE was exposed to oc pepper spray.
## 24990                                                                                                                                                                             EE got some cleaning stuff in eye. Was putting it in some water and some poped in eye.
## 24991                                                                                                                                                                                                                                         EE got something in eye ()
## 24992                                                                                                                                                                                                                        EE got something in eye while moving boxes.
## 24993                                                                                                                                                                                          EE got something in lt eye while looking for something in the dispensory.
## 24994                                                                                                                                                                                                             EE got staple in finger while trying to unjam stapler.
## 24995                                                                                                                                                          EE got struck on rt 4th finger by a officers batonwhile in process of physical force of control an inmate
## 24996                                                                                                                                                                                  EE got stuck in elevator-had to climb out injuringshoulders, elbow, neck and legs
## 24997                                                                                                                                                                                         EE got tangled in o2 tubing and fell to floor, hitting both knees and face
## 24998                                                                                                                                                                                                             EE got three tick bites while collecting water samples
## 24999                                                                                                                                                                                   EE got thumb caught between box and edge of steel cart shelf while removing box.
## 25000                                                                                                                                                                     EE got thumb caught in back of potty chair while placing EE on chair and thumb was jammed back
## 25001                                                                                                                                                                                                              EE got thumb caught in cooling fan causing laceration
## 25002                                                                                                                                                                                                                         EE got tick bite and later became infected
## 25003                                                                                                                            EE got trapped in walk-in freezer when door closed behind him. EE banged on freezer door with right to get help and suffered contusion.
## 25004                                                                                                                                                       EE got up & foot tangled in computer cord & EE fell into 2-drawer file cabinet striking chest rt elbow/wrist
## 25005                                                                                                                   EE got up & turned around to start giving meds, she felt pain in her lt knee around kneecap & downthe back of knee she felt a pulling sensation.
## 25006                                                                                                                                                                                                     EE got up and turned in a hurry striking left foot on the desk
## 25007                                                                                                                                                                              EE got up fm desk, foot got caught under desk, fell hitting right shoulder on door ()
## 25008                                                                                                                                                                             EE got up from chair and knee gave way and sat back down and noticed knee was swollen.
## 25009                                                                                                              EE got up from chair and sat back when the chair rollers had moved causing EE to fall to the floor causing elbow to strike floor and jamming shoulder
## 25010                                                                                                                                                                               EE got up from chair to open door & tripped on a phone cord & fell onto her rt knee.
## 25011                                                                                                                                                                                           EE got up from desk and struck lt knee on desk drawer that was left open
## 25012                                                                                                                          EE got up from desk chari to remove paper jam and she caught her left heel on the edge of carpet protector and fell backwards onto floor.
## 25013                                                                                                                                                                                           EE got up from desk to do rounds, stepped wrong and twisted right ankle.
## 25014                                                                                                                                    EE got up from desk to get a cup of coffee and began to shake uncontrollably-legs went out from under her-fell fracturing ankle
## 25015                                                                                                                       EE got up from desk to go into hallway, tripped ashe pass corner of desk, fell onto floor between desk and bookcase - lt knee, leg, shoulder
## 25016                                                                                                                                                                         EE got up from desk, caught feet in telephone cord, tripped and fell, hit head on door jam
## 25017                                                                                                                                        EE got up from desk, turned to pick up glasses andfoot slipped. EE caught balance, pain went throughback and down left leg.
## 25018                                                                                                                                                                                           EE got up from desk-tripped over computer cord & fell-injured right foot
## 25019                                                                                                                                                                                 EE got up from her desk & caught her ankle on the inside bottom corner of the desk
## 25020                                                                                                              EE got up from her desk to go in hall, slipped in a puddle of water outside of door, did not fall, turned rt ankle, hit lt shin, twisted lt knee, han
## 25021                                                                                                                                                                                     EE got up from her desk to leave area and hit her foot (toe) on filing cabinet
## 25022                                                                                                                                                                                                     EE got up from table & slipped & fell onto floor onto buttocks
## 25023                                                                                                                                                 EE got up from table and was walking to drink dispenser. Stepped on tile floor and fell. Injury to left upper back
## 25024                                                                                                              EE got up from table while feeding resident, went to sit down and stool slipped from underneath her causing fall, complained of stabbing pain in back
## 25025                                                                                                                                                                                EE got up out of chair and was dizzy tripped and fell to the floor. Injured lt arm.
## 25026                                                                                                                                                                                                  EE got up to get the mail delivery and fell on herknee and ankle.
## 25027              EE got up to go to medical and as she walked around (behind)the inmate, he stuck one foot out while tying his shoe on the other foot, not realizing EE had came around him. EE tripped over foot and fell to the floor on her right hand &shoulder ()
## 25028                                                                                                                                                         EE got up to open door for code yellow she accidently struck the counter w/ her lt foot & fell on lt knee.
## 25029                                                                                                                                                  EE got up togo the copier and got caught in the keyboard cord and fell fell hitting both knees & rt index finger.
## 25030                                                                                                                                                                            EE got upout of the chair to leave and twisted her knee as she walked towards the door.
## 25031                                                                                                                                                                                                                          EE got urine on feet while changing linen
## 25032                                                                                                                                                                    EE got wax on shoes and leaving outside medical door, EE caught herself and felt right knee pop
## 25033                                                                                                                                                                 EE got wet curing light on eyes, hands, feet, elbow, and knees. Caused whelps and redness of skin.
## 25034                                                                                   EE grabbed a bag of trash from trash can with a lot of books & magazines. Trash can tilted, witness grabbed trash can. I wasn't balanced very well and threw bag in dumpster. ()
## 25035                                                                                                                                                            EE grabbed a fleeing suspect through an open windown and struck her head on the bottom of window frame.
## 25036                                                                                                                                                                                 EE grabbed a metal binding clip that was damaged, laceration to right index finger
## 25037                                                                                                                                                                                   EE grabbed a pan of cornbread to put on line and turned, felt pain in lower back
## 25038                                                                                                                              EE grabbed a patient from falling on wet floor andpatient grabbed EE and caused both to fall on the wet floor, injured back and neck.
## 25039                                                                                                                                                            EE grabbed a patient to keep them from falling and EE pulled a muscle in lower back while bending over.
## 25040                                                                                                                                                                     EE grabbed a patient who was trying to hit anotherpatient. He felt a strain in his lower back.
## 25041                                                                                                                                                                                                         EE grabbed bathroom door to close it, slammed righ hand ()
## 25042                                                                                                                             EE grabbed by patient which caused her to fall to the floor trying to prevent patient from fall hitting her, she pulled muscle in back
## 25043                                                                                                                     EE grabbed by patient. Rt third finger pulled backwhen EE trying to get iv tubing out of patient hand. Rt third finger sore small amt of edema
## 25044                                                                                                                                                                                         EE grabbed chain to metal roll up door. Finger was caught in chain and cut
## 25045                                                                                                                                                                                                   EE grabbed client by the hair and jerked her down straining neck
## 25046                                                                                                                                                EE grabbed client from going into another clients room-client grabbed EE by shoulder both went to the floor - elbow
## 25047                                                                                                                                                                           EE grabbed client rt wrist-client began moving arms and legs - EE pulled muscle in chest
## 25048                                                                                                                                                                                                        EE grabbed client to break her fall and felt pain in chest.
## 25049                                                                                                                                                                                                EE grabbed client to prevent falling to floor and felt pain in back
## 25050                                                                                                                                               EE grabbed clients arm to prevent client from striking another EE, causing EE's left arm to twist and felt elbow pop
## 25051                                                                                                                                                                                                    EE grabbed door to keep it from slamming and twisted lower back
## 25052                                                                                                                                                    EE grabbed gait belt of pt who was trying to run into street and pt dropped to the ground pulling EE's rt wrist
## 25053                                                                                                                                                                                              EE grabbed resident that was falling and felt a pull in her shoulder.
## 25054                                                                                                                   EE grabbed the door handle while entering the dining facility. After entering the building EE noticed something on his arm. Door handle had drie
## 25055                                                                                                                                                                  EE grabbed the pull cart the wrong way, causing handle to fall on her lt hand & cut her lt thumb.
## 25056                                                                                                                                                                                 EE grabbed to bus door latch and when she didm it caught her finger and picked it.
## 25057                                                                                                                                                                                                   EE grabbing hot tray of food, that was sliding off serving line.
## 25058                                                                                                                                                                             EE grasped the lock to each trapdoor during feeding incurred a sharpe pain in rt thumb
## 25059                                                                                                                                        EE greasing air handler hand slipped off grease fitting hit sharp edge on metal cabinet. Small cuton little finger lt hand.
## 25060                                                                                                                                                                                  EE grinding and patching concrete-possible skin irritation to both arms and legs.
## 25061                                                                                                                                                                                  EE grinding out a keeper and grinder wheel exploded and shot metal into EE's eye.
## 25062                                                                                                                                                                          EE grinding, drilling & cuting metal during the dayand got some metal & rust in right eye
## 25063                                                                                                                                              EE groundfighting with student during subj/controlarrest techniques when student inadvertently elbowed above left eye
## 25064                                                                                                                                                    EE guiding a table thru door, loose part of table stabbed EE in rt hand. Injured rt hand upper portion of palm.
## 25065                                                                                                                                                                 EE had Dr Appt 9/10/07 given nerve test possible carpal tunnel syndrome. Will get results on 9. 12
## 25066                                                                                                                                                                                                                         EE had a 20lb steel valve fall on lt foot.
## 25067                                                                                                                                                                                                                               EE had a allergic reaction to gloves
## 25068                                                                                                                                                                          EE had a allergic reaction to some food, he ate for breakfast on his way to a conference.
## 25069                                                                                                                                                        EE had a bad coughing episode and ran off the right side of the road striking three mailboxes and a culvert
## 25070                                                                                              EE had a bad rash onlegs and arms. Reported that he had been having this problem for quite some time and not sure if it was related to working in the heat or not. ()
## 25071                                                                                                                                                                                                         EE had a bad reaction to oc pepper spray exposure training
## 25072                                                                                                                                                                                                EE had a bad reaction to sentainal chemical spray used in cleaning.
## 25073                                                                                                                                                                                               EE had a chemical reaction to cleaning solution shortness of breath.
## 25074                                                     EE had a close proximity to dry ink inhaled, throat slightly irritated and EE has asthma. Printer repair person inadvertently dropped magenta dry ink causing spillage on the floor and dry ink in the air. ()
## 25075                                                                                                                                                                                                  EE had a collison with cement pillar-injury to chest and abdomen.
## 25076                                                                                                                                                                                                                               EE had a complete neervous breakdown
## 25077                                                                                                                                                          EE had a flat tire on patrol vehicle and while lifting spare tire out of trunk he felt pain in lower back
## 25078                                                                                                                                                                                     EE had a flu vaccine on 12/18/00 and on 12/21 awakened with a rash on her face
## 25079                                                                                                                                                                                                         EE had a grand mal seizure and fell - injury not specified
## 25080                                                                                                                                                               EE had a headache and nauseated feeling while working in the serials area-also had trouble breathing
## 25081                                                                                                                                                               EE had a headache and was nauseated while working because of a foul odor in the reference department
## 25082                                                                                                                                                                                                  EE had a headache, stood up, passed out and hit her head on floor
## 25083                                                                                                                    EE had a home injury with a cut to her hand. When she seeked medical treatment for injury the Dr Detected carpal tunnel syndrome in right hand.
## 25084                                                                                                                                        EE had a lot of drainage in throat, EE had blood insputum, chemicals in tissue processor and stainner could be the problem.
## 25085                                                                                                                                                                                                                                         EE had a mild heart attack
## 25086                                                                                                                                                                                                        EE had a needle stick to left index finger during operation
## 25087                                                                                                                                               EE had a negative reaction to pepper spray. Blood pressure went up in respitory system. Eyes & lungs were irritated.
## 25088                                                                                                                     EE had a pencil in his right hand & turned in his chair to type when the pencil hit the typewriter & lead went into his right palm near thumb.
## 25089                                                                                                                                                                     EE had a pile of rat cages stacked on floor, cage began to tip, EE grabbed them, twisted back.
## 25090                                                                                                              EE had a previous injury to his left foot and worean orthopedic boot. A client rolled a rocking chairon the EE's foot. EE was seen in the er for pain
## 25091                                                                                                                                                                                                             EE had a rash on both hands and lower part of his arm.
## 25092                                                                                                                                                                                                                                     EE had a reaction to ppd test.
## 25093                                                                                                                                                                                                                           EE had a reaction to yellow jacket sting
## 25094                                                                                                                                                              EE had a reactiong to chemicals palced in the dish washing machine. Coughing, headache, eyes burning.
## 25095                                                                                                                                                                                         EE had a seizure and fell off loading dock. Injury to right leg and tongue
## 25096                                                                                                                                                                              EE had a seizure and fell. Due to the way he fell possibly has a head or back injury.
## 25097                                                                                                                                                                       EE had a seizure causing her to fall against the a countertop striking her head on the floor
## 25098                                                                                                                                                                                                         EE had a seizure-lost conciousness and hit head on floor.3
## 25099                                                                                                                                                                                                EE had a seizure. Hit his head on the floor when he fell out chair.
## 25100                                                                                                                                                                                             EE had a sever allergic reaction to poison ivy while doing camp duties
## 25101                                                                                                                                                  EE had a stroke due to working in a close building with no air---this was an old building that has been shut down
## 25102                                                                                                                     EE had a vehicle stopped and a white 4 pound maltese dog got away from the passenger and bit jumped up and bit the EE n the upper left arm. ()
## 25103                                                                                                               EE had a vehicle stopped off the right side of the roadway, a motorist collided with the rear of EE vehicle, forcing it into the rear of another veh
## 25104                                                                                                                             EE had a vehicle stopped on us 70. EE was seated inside his patrol vehicle when his vehicle was struck from behind by another vehicle.
## 25105                                                                                                                                EE had abrasions on feet which was aggravated by working on feet in combat boot during hurricane floyd relief - infection to rt leg
## 25106                                                                                                            EE had administered a I. M. Injection to patient eereached up to put empty tube into sharps containerbut missed tube fell to floor bounced up & hit EE.
## 25107                                                                                                                                                                                      EE had adverse to flu shot given, EE broke out in hives and was light headed.
## 25108                                                                                                                                                                                            EE had airborne debris blown in eye while using a gas-powered blower ()
## 25109                                                                                                                                                                  EE had all safety gear & was ready to start strip-ping fl & then slipped on floor hurting hip/leg
## 25110                                                                                                                                                                                                                           EE had allegic reaction to latex gloves.
## 25111                                                                                                                                                                           EE had allergic reaction - possibly from food ingested - was also working with chemicals
## 25112                                                                                                                                       EE had allergic reaction to face mask & hair bonnets along face/hair line... Items req'd to enter any animal facility on unc
## 25113                                                                                                                                                                                                                              EE had allergic reaction to flu shot.
## 25114                                                                                                                                                                                                                   EE had allergic reaction to grass and passed out
## 25115                                                                                                                                                                               EE had allergic reaction to latex gloves injury to right and left hands, right wrist
## 25116                                                                                                                                                                                               EE had allergic reaction to laundry detergent. Hands and lower arms.
## 25117                                                                                                                                                  EE had allergic reaction to new uniform around waist and upper thighs since 1 1/2 months ago. Happens once a week
## 25118                                                                                                                                                                                                                            EE had allergic reaction to paint fumes
## 25119                                                                                                                                                                                                     EE had allergic reaction to paint fumes causing ulcers in nose
## 25120                                                                                                                       EE had allergic reaction to powder in gloves. Has worn sensi care gloves and used ointment for past year with no improvement. Rash on hands.
## 25121                                                                                                                                                                                                     EE had allergic reaction to vinyl gloves, rash noted on hands.
## 25122                                                                                                                                                                 EE had an accident while in company truck... Injured back, side, left arm, and hand, left shoulder
## 25123                                                                                                                                                          EE had an accident with a truck, hitting and breaking side mirror causing mirror to break. Glass in mouth
## 25124                                                                                                                                                                                                             EE had an allergic reaction from a insect causing rash
## 25125                                                                                                                                                                                                                           EE had an allergic reaction to a TB shot
## 25126                                                                                                                                                                                                            EE had an allergic reaction to a hepatitus vaccination.
## 25127                                                                                                                                                                                           EE had an allergic reaction to a rabies vaccination; headache and nausea
## 25128                                                                                 EE had an allergic reaction to eating a spring roll at a reception following a meeting she was attending. She used her epipen and then went to unc ed for additional treatment. ()
## 25129                                                                                                                                                                                                     EE had an allergic reaction to gloves causing lesions to hands
## 25130                                                                                                                                                                                       EE had an allergic reaction to glue which was being used to lay ne carpeting
## 25131                                                                                                                                                                                                                      EE had an allergic reaction to hepatitis shot
## 25132                                                                                                                                                                                                                   EE had an allergic reaction to hepatitis vaccine
## 25133                                                                                                                                                                                                                          EE had an allergic reaction to lab animal
## 25134                                                                                                                                                                                                                        EE had an allergic reaction to latex gloves
## 25135                                                                                                                                                                                        EE had an allergic reaction to latex gloves-hands have rash and deep cracks
## 25136                                                                                                                                                                                                      EE had an allergic reaction to latex paint on rt eye and face
## 25137                                                                                                                                                                                          EE had an allergic reaction to malaria prophylaxisdoxycycline and malrone
## 25138                                                                                                                                                                                                                                EE had an allergic reaction to mold
## 25139                                                                                                                                                                                            EE had an allergic reaction to pain reliever aftertaken for a headache.
## 25140                                                                                                                                                                                                     EE had an allergic reaction to pepper spray affecting his eyes
## 25141                                                                                                                                                                               EE had an allergic reaction to something that he came in contact with while at work.
## 25142                                                                                                                                                                                  EE had an allergic reaction to spray that was usedduring cadet training right eye
## 25143                                                                                                                                                                                      EE had an allergic reaction to the gloves that shewas wearing..... Both hands
## 25144                                                                                                                                                                                                                   EE had an allergic reaction to the lated gloves.
## 25145                                                                                                                                                                                                   EE had an allergic reaction to the spray thae is put on the hay.
## 25146                                                                                                                                                                                                         EE had an allergic reaction to unknown source swollen face
## 25147                                                                                                                                                                                                  EE had an allergic reaction-became sick and broke out with a rash
## 25148                                                                                                                                                 EE had an allergic reacttion to the insecticide that was sprayed. EE had an existing allergy. Swelling; aplotches.
## 25149                                                                                                                                                                                                         EE had an altercation with a patient; injured jaw and neck
## 25150                                                                                                                                                                                             EE had an altercation with patient and patient broke EE's right thumb.
## 25151                                                                                                                                                                                                    EE had an altercation with patient when he injuredhis left knee
## 25152                                                                                                                              EE had an eye irritation, she noticed later to be discovered as scratched cornea in her left eye. Possibly done when leaf blowing. ()
## 25153                                                                                                                                         EE had an incident w/pro EE litigant - experiencedextreme pain in hand-taken to hospital where blood pressure was 210/105.
## 25154                                                                                                                                                                  EE had anxiety attack in attorney's office taken to hospital injury nerves, back & blood pressure
## 25155                                                                                                                 EE had approximately 13 ticks on his body that he pulled off of him, EE was doing his job dties. EE transported to primecare, EE has lyme disease.
## 25156                                                                                                                          EE had appt with a client @ 9:30am & during registration for lab results clt did not like lab result & hit EE on arm & rt shoulder blade.
## 25157                                                                                                                                                     EE had arm around horse's neck/head to catch & halter it. Horse lifted head up & strained EE's right shoulder.
## 25158                                                                                                                                                                                          EE had arms full of training materials with her view obstructed and fell.
## 25159                                                                                                               EE had arrested a subject and was attempting to handcuff him when the violator jerked his arms in effotr to free himself, straining EE's rotator cuf
## 25160                                                                                                                  EE had arrested suspect. Suspect was handcuffed & was being unruly. EE's thumb was bent into an unnatural position when suspect lunged backwards.
## 25161                                                                                                                                                                                         EE had arrived at the area office for managers meeting, no injury claimed.
## 25162                                                                                                                                                                                                 EE had arrived in the area office for managers meeting. No injury.
## 25163                                                                                                                      EE had ascended to fourth step-turned to go back down stairway to close door. Lost balance and felldown 4 stairs. Injured lt ankle & leg sore
## 25164                                                                                                                                                                                        EE had automobile accident while traveling between jobs - multiple injuries
## 25165                                                                                                                                                                   EE had back pain after pushing food trucks up and down the floor and washing and sanitizing them
## 25166                                                                                                                                                                                                         EE had back pain, after moving boxes of canned vegetables.
## 25167                                                                                                                     EE had back surgery 11-19-07. Feels harrassed b/c she has to time off for appts. Harrassment has created stress & has affected healing process
## 25168                                                                                                                                                                EE had backed under the trailer and pin went over the 5th wheel he had to raise the landing gear up
## 25169                                                                                                                                                                                                                               EE had bad reaction to vaccine shot.
## 25170                                                                                                                                                               EE had bag in rt hand and turned w/lt arm to close the door and felt a sharp pain shoot through back
## 25171                                                                                                             EE had bathed & was dressing client, stood client up to pull pants up & put walking belt on, client tried to sit & EE tried to hold him up pain in hip
## 25172                                                                                                                                                               EE had bathed client, cleint required some liftinglater on that afternoon had pain in right shoulder
## 25173                                                                                                                        EE had been assisting with loading livestock on a truck he was walking in muddy steer barn when his feet started to slip out from under him
## 25174                                                                                                                 EE had been at the division offcie to pick up her work she returned to her vehicle nd when she attempted to get into her car she pulled the muscle
## 25175                                                                                                                                                                                            EE had been carrying ladders back and forth all day; injured upper back
## 25176                                                                                                                                                            EE had been cleaning pt's room, coming out of rm, pt picked up the wet floor sign hitting EE in face ()
## 25177                                                                                                                                                            EE had been dispatched to a motor vehicle accidentee entered sharp curve and hit a median concrete wall
## 25178                                                                                                                                                                                      EE had been doing a lot of latex typing noticed left and rt wrist were stiff.
## 25179                                                                                                                                                                                                                 EE had been draining since her TB test.. Right arm
## 25180                                                                                                                                                                               EE had been handling cats & dogs all day and foundtick attached to back of left knee
## 25181                                                                                                                                                                                    EE had been lifting and moving clients all on the weekend and injured shoulder.
## 25182                                                                                                                                                                                                EE had been moving pots and cleaning boat which caused back strain.
## 25183                                                                                                              EE had been moving tables from storage trailers to3rd floor of build. EE was locking the stor. Traillock jammed & EE applied pressure & caught finger
## 25184                                                                                                                                                                               EE had been packing, lifting and delivering boxes of material.... Injured lower back
## 25185                                                                                                                                     EE had been pulling and pushing filing cabinet drawers in current assignment and pain occured to straining muscles in left arm
## 25186                                                                                                                                                                             EE had been putting hay in the feed room and wrenched back when lifting a bale of hay.
## 25187                                                                                                                                                         EE had been putting supplies up on shelf standing on 5gal bucket-next day began to fell pain in lower back
## 25188                                                                                                                                                            EE had been relieved from upper tower, walking in roadway when his feet slipped pulling his lower back.
## 25189                                                                                                                                                  EE had been running a fever-went to doctor did notimprove-admitted to hosp-diagnosed with rocky mt spotted fever.
## 25190                                                                                                                                                         EE had been squatting for quite some time fixing boiler and twisted to get a tool and felt pain in rt foot
## 25191                     EE had been talking with a patient in EE's office. Patient left EE's office, then returned & seemed to be asking another question then pt began punching EE. Causing abrasions under EE's (l) eye, (rt side) neck, & across bridge of nose. ()
## 25192                                                                                                                  EE had been testing inmates & had turned ligts offescorting inmates thru building tripped over chairtwisted lower back and hitting rt knee & leg.
## 25193                                                                                                                                       EE had been transcribing medical tapes for 8 hrs. For the past 9 days. Work station was not equippedwith correct ergonomics.
## 25194                                                                                                                     EE had been using sharpening cutter machine which had left a metal fragment on his finger and while scratchin eye fragment stuck in right eye.
## 25195                                                                                                                                                                   EE had been welding the day before and the next day had redness, itching, and sensitive to light
## 25196                                                                                                                                                                           EE had been working all day replacing old valves that were rusty and strained lower back
## 25197                                                                                                                                                               EE had began work and walked back out to her car to get something slipped on ice on curb and fell ()
## 25198                                                                                                                                                                                           EE had bent down to get stool and raised up and hit head on cabinet door
## 25199                                                                                                                                                         EE had blood drawn as part of the pilot program nc wellness program within a couple hours bruised area. ()
## 25200                                                                                                                                        EE had blood was present on handcuffs disruptive inmate feels he was not exposed to anything. Possible blood on both hands.
## 25201                                                                                                                                      EE had brought the mail to the office when he was leaving he slipped on the snow covered steps and fell down on his buttocks.
## 25202                                                                                                                                                                                                                                     EE had bug bite on left finger
## 25203                                                                                                                                                    EE had car accident in personal car enroute to community agency-car hydroplaned and hit truck multiple injuries
## 25204                                                                                                                                                                                                                              EE had ceiling tile fall in right eye
## 25205                                                                                                                                                                                EE had check client sugar level-did not recap usedlancet and was stuck on rt thumb.
## 25206                                                                                                                                                                                                     EE had chest pain after lunch. EE was laying carpet for nccat.
## 25207                                                                                                                                                                                                                             EE had chest pains ***denied case*****
## 25208                                                                                                                                                                                                  EE had client in a therapeutic hold and strained rt little finger
## 25209                                                                                                                                              EE had climbed on side of truck to unload a sprayer and weedeater, stepped down and pulled something in right knee ()
## 25210                                                                                                               EE had climbed scaffold to verify valve was closedstarted climbing down & caught shoe heel on bottomrung of scaffold & fell 18 inches down on floor.
## 25211                                                                                                                                       EE had closed the cell door ordered inmate to stayinside, but the inmate pushed in an attempt to come out. Lt wrist injured.
## 25212                                                                                                                                                                                    EE had completed mopping the stairwell and felt dizzy, faint and had a headache
## 25213                                                                                                                                      EE had computer class and was organizing materialsand securing class room. EE reached into desk and felt a prick on rt thumb.
## 25214                                                                                                                                                                                                                                      EE had conjunctivitis in eyes
## 25215                                                                                                                                                                                                                       EE had contact with client that had scabies.
## 25216                                                                                                                       EE had contact with person filling 50-b order. Person was arrested & quarenteened. EE was told later that person was tested positive for TB.
## 25217                                                                                                                                                                                                                           EE had contact with poison ivy on wrist.
## 25218                                                                                                                                                                                                                                    EE had contact with poison ivy.
## 25219                                                                                                                                                                                                                  EE had contact with probationer with active t. B.
## 25220                                                                                                                                                  EE had cpi training during the day. Felt back pain @ 5:30 that evening, increasing throughout evening & night. ()
## 25221                                                                                                                                                                                              EE had crossed the street and stumbled on curb, fell and hit her head
## 25222                                                                                                                      EE had delivered meds and was walking down the steps. The steps were slick and he fell down approximately six steps and landed on left elbow.
## 25223                                                                                                                                                   EE had dictaphone earplugs in ears when EE sneezedand EE felt a pop in her rt ear and then later had severe pain
## 25224                                                                                                                                                                             EE had discomfort in right hand and middle finger. Subacute right long trigger finger.
## 25225                                                                                                                                                 EE had dishes in hand and turned to go out of room and slipped -EE started to fall and hit rt arm on metal counter
## 25226                                                                                                                                                                              EE had dog in arms while walking down steps. EE missed a step and twisted left ankle.
## 25227                                                                                                                                                                         EE had door open cleaning bathroom & the door shut mashing her left hand & four fingers ()
## 25228                                                                                                                              EE had door pulled from hand, cut to hand, hit by client, fell to floor w/ injury to both knees, client cont hitting EE after he fell
## 25229                                                                                                                   EE had drawn blood on inmate using butterfly needlhave difficulty unscrewing, so she separated butter-fly tubing by hand at the white connection
## 25230                                                                                                                     EE had dropped paper work behind copy machine, EE pulled copier out, leanded over to pick up papers, lost balance and fell agianst table edge.
## 25231                                                                                                                                                                                                                                             EE had dust in his eye
## 25232                                                                                                                                                                         EE had elevator door close on left hand and would not immediately release causing bruising
## 25233                                                                                                                               EE had entered dorm #3b preparing to count inmatesand she slipped and fell. Lt leg went back she fell on knee. Lt leg and lower back
## 25234                                                                                                                                         EE had escorted inmate to holding cell inmate had injuries to mouth and was bleeding inmate spit blood in EE face and eyes
## 25235                                                              EE had exited vehicle and was walking up to the loading dock on the west side at brody school of medicine. He stepped on what he believed to be water and it was ice causing him to slip. EE fell and
## 25236                                                                                                                      EE had exited vehicle to investigate collision involving second vehicle. EE was standing at passenger side when vehicle rolled forward. Knees
## 25237                                                                                                                                                                                EE had extreme soreness in left and right fore armhas been getting worse over time.
## 25238                                                                                                                                                                                                                                        EE had fallen in his office
## 25239                                                                                                                                                                        EE had filed paperwork in armoire-when shutting armoire door, the door struck her left knee
## 25240                                                                                                                EE had finished a day's work and was preparing to leave. She had her hands full, while trying to close door, lost balance and fell hitting shoulder
## 25241                                                                                                                                                      EE had finished clients bath & it slipped water went on floor fell striking lt arm on rail. Bruise on lt arm.
## 25242                                                                                                                                        EE had finished ice machine and put his shoulder against the machine and to place it back in position and injured shoulder.
## 25243                                                                                                                                               EE had finished in courtroom was carring box of work to office downstairs. EE missed last two steps and stumbled. ()
## 25244                                                                                                                      EE had finished mopping floor. She bent down to pick up the bucket of water to empty it. As EE came up she felt a tearing, burning sensation.
## 25245                                                                                                             EE had finished passing meds on ist floor placed med chart on the elevator to bring to 2nd floor pushed back wheel dropped into crack chart samshed ha
## 25246                                                                                                                                                                  EE had firearm training on 4/26/05. Stated left elbow had been hurting since training on 5/16/05.
## 25247                                                                                                                   EE had five bags of wet laundry to take off the ward. When EE bent down to pick up laundry bag to put onto cart she felt pain in her lower back.
## 25248                                                                                                                                                              EE had flat tire. After changing tire he was replacing hubcap and right thumb hit sharp edge ofhubcap
## 25249                                                                                                                                       EE had foot propped on bumper of truck, another EE was loading fertilizer, when EE finished he shut tailgate & hit EE's knee
## 25250                                                                                                                                                                                                   EE had foreign body in lt eye - does not recall how it got there
## 25251                                                                                                                                                 EE had given allergy injection to patient. Upon attempting to put needle in, got needle stick to left index finger
## 25252                                                                                                                                                  EE had given blood at a blood drive, fainted & hitforehead on the floor, causing a laceration above her left eye.
## 25253                                                                                                                                         EE had given blood that day... Went to restroom became light headed... Passed out hitting her head on the wall in restroom
## 25254                                                                                                                                      EE had given injection to an inmate, almost dropped needle, when she grasped & recaptured needle, she stuck herself in finger
## 25255                                                                                                                                                                                         EE had given patient a walk and patient turned and struck EE in the mouth.
## 25256                                                                                                                                                                                              EE had glaucoma screening and wellness fair. EE had reaction to drugs
## 25257                                                                                                                   EE had gone to post office to pick up mail(part of daily duties) EE slammed left foot in drivers door of vehicle. Bruised, swollen toes and foot
## 25258                                                                                                                 EE had gone upstairs in the probation bldg to do some paper work started back downstairs & fell bruising rt facial bone, lt hand, both knees, back
## 25259                                                                                                               EE had gotten a second hepatitis b shot and arriv-ing back on campus, began difficult breathing, dizziness, weakness, headache, side effect of shot.
## 25260                                                                                                                                                                                                        EE had gotten water into eye causing infection and pink eye
## 25261                                                                                                                                  EE had grabbed the back of an impaired driver's shirt as he was fleeing from the arrest. It causedee to strain his left shoulder.
## 25262                                                                              EE had green light and was beginning to turn north on capital blvd. Employee's vehicle was struck by another vehicle than ran a red light in the south bound lane of capital blvd. ()
## 25263                                                                                                                                                                                                       EE had hand caught in elevator while trying to hold it open.
## 25264                                                                                                                                                                                      EE had hand come up & grab her around neck & held & hit in middle of forehead
## 25265                                                                                                                                                                    EE had hand in presizer trying to dislodge peanuts when co worker came along and cut machine on
## 25266                                                                                                                                                                                                  EE had hand in van door and another EE pushed door closed on hand
## 25267                                                                                                                   EE had hand on chair started to sit down and chairmoved out from under EE, EE fell hit head on wall scraper back on front of chair, pain to back
## 25268                                                                                                                                                                                         EE had hand on corner of door. Van door shut, injuring EE's hand and wrist
## 25269                                                                                                                                                                 EE had hand truck tipped back loading boxes and handtruck flipped back striking EE in the forehead
## 25270                                                                                                                                                                              EE had hands full and was trying to hang up a mop in the mop holder and turned wrong.
## 25271                                                                                                              EE had head tilted to hold the handset while working on payphone. When he turned head to normal position, experienced burning between shoulder blades
## 25272                                                                                                                                                                                                EE had hematoma to right eardrum, then bacterial infection occurred
## 25273                                                                                                                             EE had her 2nd hepatitis shot and she was having a reaction to it. She also had the same problem with the first one. Multiple injuries
## 25274                                                                                                                                                                      EE had her back turned and two students were fighting snd struck her in the back of the head.
## 25275                                                                                                                                                                 EE had her hand in the dish machine and another employee accidentally closed the door on EE's hand
## 25276                                                                                                                                                    EE had her hand on the last toilet door, a student opened the exit door and mashed EE's fingers in the door. ()
## 25277                                                                                                                                                                                                            EE had her hand on the wall when the door opened on it.
## 25278                                                                                                                                                                                               EE had her right hand in door joint, door closed onher pinky finger.
## 25279                                                                                                                                    EE had high dusted and lean the entire kitchen, began to wring out mop pulled down on the handle and felt a click in lower back
## 25280                                                                                                                                                    EE had his finger pinned between ramp and safety chain causing broken bone on tip of index finger on right hand
## 25281                                                                                                                              EE had his hand in the door jam when a client let the door go, causing the door to close on the EE's 3rd and 4th finger of left hand.
## 25282                                                                                                                                                           EE had his lt hand on the control box and pulled th handle w/my rt hand and my finger was caught opened.
## 25283                                                                                                                                               EE had home visit w/ consumer, headed to porch, dobermnan dog came up from behind care & grabbed leg bit above ankle
## 25284                                                                                                                                                                                             EE had hot grits on arm. First and second degree burn to right forearm
## 25285                                                                                                                                                                EE had hurriedly pushed vehicle door shut when herright thumb was pinched and slmmmed against door.
## 25286                                                                                                             EE had initiated a traffic stop on a violator veh. After completing violator stop EE had an allergic reaction to unknown susbstance. Rash/itching/body
## 25287                                                                                                                        EE had inmate cell opened to give him clothes, whenthe door opened the inmate assaulted EE by hittinghim with his closed fist in the mouth.
## 25288                                                                                                                            EE had inmate in a restraint hold when inmate struggled & both men went down to floor and EE hit r elbow on floor and r shoulder popped
## 25289                                                                                                                      EE had inmate to remove objct from toilet-EE became dizzy and began to fall-EE att to catch EE from falling an injured rt thumb and left leg.
## 25290                                                                                                                                                                EE had interaction with client, client threw a 2 pound weight against the head over EE's right eye.
## 25291                                                                                                                                                           EE had interactions with patient with the scabies infection. Low back, buttocks, wrists, stomach, chest.
## 25292                                                                                                                                     EE had irritation in his throat followed by heartburn which it was allergic reaction/nervous system causing swelling and hives
## 25293                                                                                                                                                                                                 EE had itching in left eye; conjunctivitis exposure by clients. ()
## 25294                                                                                                                                                          EE had just brought her boys in from school and she bent over to check their shoes and felt pain in back.
## 25295                                                                                                                                                                            EE had just changed client wet bed and was putting shirt on, client sruck finger in eye
## 25296                                                                                                                                 EE had just completed giving blood when she passedout hitting her head on lid of closed cooler containing drinks for blood donors.
## 25297       EE had just conducted proctoring an exam. EE did a final sweep of auditorium to ensure students had exited. EE was walking up the ramp to exit the auditorium and her right foot turned sideways causing her to stumble. EE injured right foot and ankle. ()
## 25298                                                                                                                                                              EE had just cut limbs fm shrubbery, stubble in wood debris, fell in to shears that were propped up ()
## 25299                                                                                                                                                                                 EE had just escorted inmate to the ???????? The sallyport door closed on EE thumb.
## 25300                                                                                                                                                                                                        EE had just exited the elevator and fell on her right side.
## 25301                                                                                                                                                     EE had just filled small carpet extractor, bent over to pick up and felt back pull falling forwardon lt wrist.
## 25302                                                                                                                                                         EE had just finish welding, lifted welding hood, the metal popped and a piece of metal went into his r eye
## 25303                                                                                                       EE had just finished administering shots; pt was very angry about getting shots & attacked EE, hitting EE in the left eye and scratching neck & both arms ()
## 25304                                                                                                                                                                                                    EE had just finished making patient's bed and felt pain in back
## 25305                                                                                                                                                    EE had just finished stocking & pulled hepcon machine from its box 3 times then got chest pain. Heart attack mi
## 25306                                                                                                                                EE had just finished trimming on grounds, tripped over a tree root, fell on a bush axe, bush axe cut through glove and cut rt thumb
## 25307                                                                                                             EE had just given inmate an injection, turned to dispose of needle, laid needle on counter, washed hands & remove gloves. Pick up needle stuck in hand
## 25308                                                                                                                                                                                                       EE had just got off work, in parking lot was hit by a car ()
## 25309                            EE had just gotten to work from doctors apointment where had to fast for testing; she was in the bathroom stall in the ids area; felt light headed and doesn't know if she blacked out or not when she fell or just lost her balance ()
## 25310                                                                                                                                                                     EE had just installed and exhaust ignator and EE was standing in the path and burned EE's eye.
## 25311                                                                                                                                EE had just issued a speeding citation and was sitting in vehicle on shoulder of road. A vehicle ran into the rear of EE's vehicle.
## 25312                                                                                                                                                             EE had just left the district office driving her state vehicle and was involvedin automobile accident.
## 25313           EE had just left work and was stepping off a curb into the parking lot when she fell. Employee stated that the pavement was uneven, and when she stepped onto it, her right foot/ ankle rolled and she fell to the ground, hitting her left shoulder. ()
## 25314                                                                                                                                                                                                EE had just lifted some books-put them down and felt pain in rt arm
## 25315                                                                                                                                EE had just put trash in dumpster, tripped and fell on curb around base of barrier to steele parkinglot. Rt wrist, knees, and chin.
## 25316                                                                                                                  EE had just relieved security officer for break. As she was leaving library, she slipped on marble steps, causing her to fall on her knee & ankle
## 25317                                                                                                               EE had just return from lunch. She was standing and passed out. Her vitals were taken bp:158/90, blood sugar:90; pulse 100; EE hit her on the floor.
## 25318                                                                                                                                                      EE had just secured suspect and was walking out of residence. Stepped in unseen hole and twisted right ankle.
## 25319                                                                                                                     EE had just spilled liquid on floor in the kitchenand upon going to retrieve mop to wipe up spill EE slipped & fell, landing flat on his back.
## 25320                                                                                                                          EE had just taken mail to another employee and turned to enter bathroom, slipped and fell down hitting bathroom door; chipping her tooth.
## 25321                                                                                                                      EE had knelt down to the floor to get a record, when she stood up she hit her head on extension of the file rack. Contusion left side of head
## 25322                                                                                                                                                  EE had labwork done, causing a red streak going uphis arm. Er diagnosed it as phlebitis, early signsof cellulitis
## 25323                                                                                                                                                                                                    EE had lacerations to right hand and pain in rightarm and foot.
## 25324                                                                                                                                                                         EE had lap case strap on shoulder the case hit EE in the back hurting back above tail bone
## 25325                                                                                                                                                                                             EE had latex gloves on, hands/wrists broke out in small welps/bumps ()
## 25326                                                                                                                                                                                                 EE had laundry in arms, tripped over back of bed, fell to floor ()
## 25327                                                                                                                                             EE had left dorm at speedy face. On side of build-ing her foot turned inward when she stepped into hole. Twisted foot.
## 25328                                                                                                             EE had left hand placed against window frame near door, door was accidently opened against his left hand causing it to be trapped. Small hole/swelling
## 25329                                                                                                                                                                                                                                   EE had left lower abdominal pain
## 25330                                                                        EE had left office to put something in the car; on her way back into the office, she tripped over a concrete block in the parking lot and fell hitting her face and knee on the pavement ()
## 25331                                                                            EE had left umstead hall and was coming across the grass next to the building. When she was walking the ground was unlevel and she stepped wrong and felt pressure on her left knee. ()
## 25332                                                                                                                                                                                   EE had let inmate out of cell to use bathroom. EE was assaulted by three inmates
## 25333                                                                                                                         EE had lifted 2 cases of copy paper then drove to greensboro for special assignment with nc state suffered from inflammed disc lower back.
## 25334                                                                                                                                                                                                       EE had lifted a client to the bed position and injured back.
## 25335                                                                                                                                        EE had lifted and carried the food tray holder thawas filled with empty trays from inmates on 3rd to1st floor. Middle back.
## 25336                                                                                                                     EE had lifted client from a sitting to a standing position and was assisting client back into wheelchair when she felt pain in her lower back.
## 25337                                                                                                                                                                                              EE had lifted several individuals and felt a strong pain in rt wrist.
## 25338                                                                                                                                       EE had loaded revolver which was in window ledge. Revolver & clipboard fell discharge a live round EE has ringing in lt ear.
## 25339                                                                                                                                                                                    EE had made a veh stop-issued a citation and rtnd to car-felt pain in left knee
## 25340                                                                                                                                                                                    EE had mop ringer in hand when he bent over to attach mop ringer. Pain in back.
## 25341                                                                                                                                        EE had more than one file drawer open- cabinet began to fall and EE tried to catch it to prevent this. Injured rt shoulder.
## 25342                                                                                                                                                                                                   EE had moved a couch back into area and felt a catch in shoulder
## 25343                                                                                                                                           EE had mower seat in raised position and was working on motor compartment and latch gave way and seat fell on rt forearm
## 25344                                                                                                                                                                                                           EE had muscle spasm in back while restraining 2 students
## 25345                                                                                                                                                                                  EE had no assistance with two truck tires that were buried in sand-injury to back
## 25346                                                                                                      EE had office visit with offender, alice peele, on 11/24/09. EE discovered today, confirmed by pitt county health department, that offender has active TB. ()
## 25347                     EE had office visit with offender. Offender has active TB (confirmed by pitt co. Health dept) - but offender did not inform po of this at that time. Po learned from health dept today that offender has active TB. EE has direct exposure. ()
## 25348                                                                                                                                                                                        EE had on all the aafety equipement and not sure how what got into the eye.
## 25349                                                                                                                  EE had on safety glassed while cleaning bathroom and the bottle was turned towards EE and sprayed with chemical contacting face, mouth, and neck.
## 25350                                                                                                                                                                                                       EE had on wet shoes and fell down stairs. Spine and cervical
## 25351                                                                                                                                                                                  EE had one rt leg swept out from under and twistedleft leg/knee which was on mat.
## 25352                                                                                                                                                 EE had open sharps container in trunk. With gloveson EE was putting needles back into container. Scrape to l thumb
## 25353                                                                                                                                                                                         EE had pain around left side of chest and down arm- incident not specified
## 25354                                                                                                                                                                                               EE had pain in hands and wrists after repetitive use of hole puncher
## 25355                                                                                                                                              EE had pain in her right wrist from firing of. 357 magnum revolver. Recoil caused pain & it got worse as time went on
## 25356                                                                                                                                                                                              EE had pain in left wrist from moving resident from bed to wheelchair
## 25357                                                                                                                                                                                                               EE had pain in rt hip/thigh after running 6. 5 miles
## 25358                                                                                                                         EE had pain on 05-20 after repetitive bending and stooping per asset inventory. EE was moving a freezer to get asset # and had back spasm.
## 25359                                                                                                                               EE had paper towel in r hand, folded it & attempted to pick up the blade when she realized she had been cut on her right hand finger
## 25360                                                                                                                EE had parked at central prison & was walking to building for parole hearing when she slipped and fell on ice injuring right side, hip and low back
## 25361                                                                                                          EE had parked his patrol car a safe distance behind a tractor trailer; the drvr of t/trlr attempted to back down; collided w/car; officer injured in coll
## 25362                                                                                                                                   EE had parked in parking lot and was wlaking across the street, she tripped and fell on pavement on her right knee causing pain.
## 25363                                                                                                                                                                       EE had parked the food truck & slipped & fell on the ice. Injury to lower right side of back
## 25364                                                                                                                               EE had performed membrane rupture on pregnant patient. When withdrawing amino hook, it snagged gloveand punctured right index finger
## 25365                                                                                                                                                                  EE had piece of metal securred in vise & while sawing, the saw slipped dragging blade over finger
## 25366                                                                                                                                                                                          EE had place a therapeutic hold w/struggle staff'srt shoulder was injured
## 25367                                                                                                                                                 EE had placed a note on super. Desk and turned to go back into her office when she caught her foot in a phone cord
## 25368                                                                                                                                                                 EE had placed broken glass from picture frame on edge of table - later walked by table and cut leg
## 25369                                                                                                                                                                                           EE had placed hand on clients wrist-client fell and staff fell with her.
## 25370                                                                                                                  EE had placed his handcuff on the offenders lt hand and was attempting to put the handcuff on the offenders rt hand offender turned around bit EE
## 25371                                                                                                                 EE had placed his lt hand onthe fram work of the door when the door closed it hit the top of his lt hand mashing it between the door and fram work
## 25372                                                                                                                        EE had placed one set of hand cuffs on inmate wheninmate raised cuff hands and struck EE in the head while atttempting put waist chains on.
## 25373                                                                                                                             EE had placed urine test in freezer and noticed sample leaking in plastic bag. EE used glove to tighten lid-got drop of urine on wrist
## 25374                                                                                                                                         EE had plexiglass chip on body while helping saw. He removed safety glasses to wipe forehead with arm and chip got in eye.
## 25375                                                                                                                            EE had pocketbook on left shoulder, papers & book in right hand, did not see stool, tripped over stool fell across chair and onto floor
## 25376                                                                                                                                                           EE had positive TB skin test representing conversation (TB infections) he is exposed to bcg & TB at work
## 25377                                                                                                                           EE had positive reaction to routine TB skin test that was administered by medical staff. Sent to anson community hosp. For chest x-rays.
## 25378                                                                                                                                                                                                               EE had possible exposure to airborne pathogens in TB
## 25379                                                                                                                                                                                                                                EE had possible exposure to scabies
## 25380                                                                                                                                                                                                                               EE had possible exposure to scabies.
## 25381                                                                                                                           EE had poured water and cleaner into trash can to clean using a brush to scrub the trash can water and cleaner splashed into EE's mouth.
## 25382                                                                                                                                                                                    EE had pressurized flark exploded in fumehood causing cuts on face, hands, arms
## 25383                                                                                                                                                                  EE had pt in Mr Hold, then placed pt on transport board, then carried both, back began hurting ()
## 25384                                                                                                                                                                                                            EE had pt wrap legs around his legs causing him to fall
## 25385                                                                                                                                                                          EE had punched in to work-looked up at ceiling renovation when something fell in left eye
## 25386                                                                                                                                                                             EE had put a resident in restraint she was getting up and felt pressure in chest area.
## 25387                                                                                                                EE had put inmate in shower & locked the door. EE pulled the lock to make sure it was locked & the lock broke.. Inmate stepped out, hit EE in mouth
## 25388                                                                                                                                      EE had re-wired a boiler (#102) and when the boiler fired up the first time after being re-wired, flames rolled out of it. ()
## 25389                                                                                                                                                                                                                                        EE had reaction ot ppd test
## 25390                                                                                                                                                                                                                                       EE had reaction ot ppd test.
## 25391                                                                                                                                                                                                                                         EE had reaction to TB shot
## 25392                                                                                                                                                                                                   EE had reaction to chemical mix-left arm, neck rt arm, legs numb
## 25393                                                                                                                                                                                                                               EE had reaction to hepatitis a shot.
## 25394                                                                                                                                                    EE had recurrence of hives from process of preparing floot, applying glue, placing tile, or applying baseboard.
## 25395                                                                                                                 EE had removed a hanging tree branch from over a visitors car. As he exited his truck bed, he lost footing and fell on left knee, & fx right ankle
## 25396                                                                                                                                                          EE had required hepatitus shot for work and alleges he developed a round rash on the back of his left leg
## 25397                                                                                                                                                                EE had resident I etd and holding door to the time room the handle came off and hurt left shoulder.
## 25398                                                                                                                                                                                           EE had resident in therapeutic hold due to stb, resident pulled at wrist
## 25399                                                                                                                                                      EE had resident up in arjn lift and was trying to push lift around a corner during this she twisted her back.
## 25400                                                                                                                   EE had running nose, sore throat burning eyes, breathing problems from fumes that entered the bldg through ventilation system fr welding outside
## 25401                                                                                                                                                                                                          EE had scraper in one hand changing blades. Cut left hand
## 25402                                                                                                                                                              EE had scratches and possibly bite sounds in head, hands and face by fox, while trying to capture it.
## 25403                                                                                                                                                              EE had seen many pts throughout the day.. Bk began hurting after turning/lifting pts at end of day ()
## 25404                                                                                                                                                                                                 EE had seizure and fell to floor hitting his head on the concrete.
## 25405                                                                                                                                                                              EE had seizure and had an auto accident causing broken right ankle-laceration on head
## 25406                                                                                                                EE had seizure related to multiple sclerosis EE was found on ground in front of kings daughter's cottage w/scratches and abrasi0ns and was disoriet
## 25407                                                                                                                                                         EE had seizure while working on laptop sitting on a high chair and fell to floor injuring mouth and teeth.
## 25408                                                                                                                                                                                    EE had self-defense technique apllied to him. Feltpain on rt side and rt wrist.
## 25409                                                                                                                                                                                          EE had shooting pain in low back after reaching to open drawer at cubicle
## 25410                                                                                                                                                                                                                  EE had shortness of breath & his heart was racing
## 25411                                                                                                                                                                                                                         EE had shortness of breath & was nauseated
## 25412                                                                                                                                                                                             EE had skin-to-skin contact with a resident who had scabies infection.
## 25413                                                                                                                                                                      EE had slipped and fell on the floor after twist- ing her left ankle. Floor was wet from wax.
## 25414                                                                                                                                                                            EE had slowed vehicle to stop a four wheeler when car was hit behind by a pick up truck
## 25415                                                                                                                                                                                                                       EE had some type of body fuild out of bottle
## 25416                                                                                                                             EE had squatted down in front of box to close it and when EE pulled the tape across the top of the box, EE pulled a muscle in back. ()
## 25417                                                                                                                          EE had started out of her office when she slipped and fell to the floor striking back on the wall and her legs and feet hitting the floor
## 25418                                                                                                                                                   EE had stepped on the side of a suspect's truck toget information; as he was stepping down he sprained his ankle
## 25419                                                                                                                                                                         EE had stepped up one step from the parking deck tripped and fell forward to the sidewalk.
## 25420                                                                        EE had stopped a motorcycle for speeding and was exiting his patrol vehicle while simultaneously reaching for his patrol hat when he felt a sudden pull and painful area in his lower back.
## 25421                                                                                                                              EE had stopped a motorist on a traffic violation when a 3rd car was involved in a car accident, ran off the roadway and hit EE's car.
## 25422                                                                                                                                                         EE had stopped a vehicle and completed traffic stop. The driver backed into EE's vehicle instead of drive.
## 25423                                                                                                              EE had stopped a vehicle for a traffic violation & was walking from his patrol car to the violatorscar, EE stepped to the edge of the roadway and. ..
## 25424                                                                                                                     EE had stopped a violator-while walking towards the veh EE notice another coming towards him-EE att to move out the way and jumped on shoulder
## 25425                                                                                                                                                        EE had stopped at a stop sign, then proceeded through the intersection when a federal forestry truckhit EE.
## 25426                                                                                                                                                                         EE had stopped at rest stop when he slipped out of his truck he twisted his rt foot on ice
## 25427                                                                                                                                       EE had stopped behind vehicle waiting for it to turn, another vehicle rear ended employee pushing him into the other vehicle
## 25428                                                                                                             EE had stopped for a red light when his vehicle was struck in the rear by another vehicle. Trooper roberts treated and released for a muscle strain in
## 25429                                                                                                                        EE had stopped impaired driver. Attemped to removeher from vehicle at which time she sped off, pulling him down road injuring left shoulder
## 25430                                                                                                                                                                                     EE had stopped on exit ramp and was rearended by another car. Neck, back, legs
## 25431                                                                                                                                                                                                EE had stopped to allow another veh to turn in frtwhen hit in rear.
## 25432                                                                                                                                                                                                EE had stopped violator and was getting out of vehand twisted back.
## 25433                                                                                                                                                  EE had stripped and waxed floors throughtout bldg all week-bent over to pickup debris and felt pain in lower back
## 25434                                                                                                                                                                                        EE had stroke & states that extremes stress on the job caused the stroke ()
## 25435                                                                                                                                                                                                                EE had swellingin arm after drawing blood for work.
## 25436                                                                                                                 EE had taken 1 student to bathroom with special needs that has limited mobility walking. He lost his balance, EE reached to grab him from falling.
## 25437                                                                                                                                        EE had taken a drawer out of the dresser, as he was leaving the room, he stepped on a throw rug and fell on his left wrist.
## 25438                                                                                                             EE had taken a pt off campus to blue ridge radiology, pushing pt up a ramp in a wheelchair, chair began sliding sideways, EE pulling with left hand ()
## 25439                                                                                                                                                  EE had taken down a juvenile for being out of control and fell over a desk and hit hard. Injuredshoulder, rt arm.
## 25440                                                                                                                              EE had taken off shoe to get a stone out as he reached for his shoe that was on the floor he fell out of chair and hit corner of desk
## 25441                                                                                                                            EE had taken several patient to drink machine. Patient attacked EE knocking him to floor. EE injured right hip. Surgery performed 12/23
## 25442                                                                                                                         EE had taken the clock down to change the time. She placed it back on wall but didn't notice it was not secure. It fell hitting EE's foot.
## 25443                                                                                                                                       EE had the roller trash barrel laying on its side. She was pulling trash out of the barrel when she felt pain in her stomach
## 25444                                                                                                                                          EE had the stripper machine and I hit a real slick spot on the floor and slide tried to catch myself and slipped down. ()
## 25445                                                                                                                                                                                      EE had tingling in last 3 fingers with burning sensation in wrist and arm. ()
## 25446                                                                                                                                                                                                 EE had to be on knees during code blue. Knee became sore and stiff
## 25447                                                                                                                                                                                                             EE had to carry patient down stairs and strained groin
## 25448                                                                                                                                                                                          EE had to catch and hold a patient who was fallinginjured shoulder, back.
## 25449                                                                                                                                                                                                EE had to chase and wrestle down a drunken studentand strained back
## 25450                                                                                                                                                                                   EE had to climb in dumpster to find van keys and injured her thumb. Right thumb.
## 25451                                                                                                                                                                          EE had to cross over refrigeration line while negotiating obstacles. EE banged left knee.
## 25452                                                                                                                                                                    EE had to do a vehicle extraction after a suspect refused to exit the vehicle after a chase. ()
## 25453                                                                                                                                   EE had to enter vehicle from passenger due to parked car blocking driver's door-struck lt leg on parking brake while climbing in
## 25454                                                                                                                                                                                                    EE had to fire shotgun while kneeling causing strain to lt knee
## 25455                                                                                                                                                      EE had to force hall door open to escort student to isolation, felt pain in lower back when he pulled on door
## 25456                                                                                                                                                            EE had to force pt to take medicine. The pt later walked up to writter onrt side of head w/closed fist.
## 25457                                                                                                                                                                              EE had to get client up off the floor about 10x during her sift and sent to med-stat.
## 25458                                                                                                                                                                   EE had to get on table to draw on whiteboard in order to explain the current lab to students. ()
## 25459                                                                                                                              EE had to go around thru other wheelchairs and to take resident to chair adn resident fell and eepicked resident up and injured back.
## 25460                                                                                                                                        EE had to go through a small entry on a bus to unlock the door due to the lock breaking this was the only entry to the bus.
## 25461                                                                                                                                                   EE had to help control an aggressive client several times during evening. Client attacked staff & other clients.
## 25462                                                                                                                           EE had to help escort two patients at seperate times to restraints. One patient hit EE and fell to floor and was carried to restrainers.
## 25463                                                                                                                                                                                                       EE had to help patient up from commode and strained low back
## 25464                                                                                                                                                                                              EE had to hold patient down, complained of upped and lower back pain.
## 25465                                                                                                                                                                                                     EE had to hold patient in position for xray and strained chest
## 25466                                                                                                                                                         EE had to hold resident down, resident was kicking EE, headbutting EE in chest and arms, soreness in chest
## 25467                                                                                                                                                                                 EE had to intervene with client when client tried to pull tv down. EE injured back
## 25468                                                                                                                                                                               EE had to kill a rabid beaver and pick it up. He was not wearing gloves at the time.
## 25469                                                                                                                                                                                                                                  EE had to lift a cart into a van.
## 25470                                                                                                                           EE had to lift a inmate in and out of the van in the wheelchair. Injured neck and back. Strained abdominal area causing vaginal bleeding
## 25471                                                                                                                                                                                                           EE had to lift and carry a box of files approx. 1 block.
## 25472                                                                                                                                     EE had to lift cart over threshold to get it out a door. Arm was caught between cart and door causing bruising to right elbow.
## 25473                                                                                                                                                                                             EE had to lift client from commode to bed and strained back and lt hip
## 25474                                                                                                                                                                                                        EE had to lift numerous in and out of tub-left hand swollen
## 25475                                                                                                                              EE had to lift patients on and off stretchers for ambulance trip and had to carry pt by wheelchair down 3 flights stairs -strain back
## 25476                                                                                                                                                           EE had to lift some ile boxes to get to a file and felt pain in middle of back, from lt side to rt side.
## 25477                                                                                                                                                                                          EE had to man carry a client from bathroom to chair and injured her back.
## 25478                                                                                                                                                                 EE had to move a heavy trellis EE felt pain the next morning in his right shoulder. Surgery 8/9/07
## 25479                                                                                                                                     EE had to move patient bed to perform venipuncturew/both hands noticed stinging sensation in lt wrist immedicately afterwards.
## 25480                                                                                                                                                                      EE had to move some heavy boxes to land fill and then move some tables, his neck was in pain.
## 25481                                                                                                                EE had to open metal gate, as lock was closed back, EE's 3rd finger on left had slipped under the lockand was injured. Finger crushed/skin removed.
## 25482                                                                                                                                                                    EE had to pickup a patient off floor in ward hall & take him to his bedroom & strained her back
## 25483                                                                                                                             EE had to place a pt in the pic hold for the refusal to follow directions on the ward had to call other staff on the ward to help out.
## 25484                                                                                                               EE had to place a student in her class room to cool off who assaulted by another student while cooling off he shoved EE to get at the other student.
## 25485                                                                                                                                                                                                     EE had to place patient in pic hold and strained neck and back
## 25486                                                                                                                                                                                                        EE had to place patient in pic hold and struck head on wall
## 25487                                                                                                                                                         EE had to postion himself in an arkward postion in which to remove a vavle EE began to pull on pipe wrench
## 25488                                                                                                                                                                                                                                   EE had to pry elevator door open
## 25489                                                                                                                                                 EE had to pull charts out of mailbox that were stuck, when they broke free EE fell backwards striking head on wall
## 25490                                                                                                                       EE had to put EE in restraint. Pt was very hostileinjury to right shoulder... Employee received ppd rating to left shoulder on another claim
## 25491                                                                                                                                   EE had to reach high overhead to use emergency release door-was hard to open and had to ask another person to help-strained back
## 25492                                                                                                                                                EE had to remobe mildew from bathroom shower tiles in a back and forward motion - has pain in left arm and shoulder
## 25493                                                                                                                                                    EE had to remove house arrest band from an offender it had to be cut off of the strap prior to removal of strap
## 25494                                                                                                                                                                   EE had to remove resident from van by lifting her over the seat and out of the van-strained back
## 25495                                                                                                                                                                                       EE had to restrain a student from a confrontation and in process sprain back
## 25496                                                                                                                                                                                    EE had to restrain an out of control student who had assaulted another student.
## 25497                                                                                                                                                                                                              EE had to restrain student and strained neck and back
## 25498                                                                                                                EE had to stand on chair in order to adjust brokenblinds in classroom; he lost his balance and fell on base of spine, twisting ankle in the process
## 25499                                                                                                                      EE had to strip search inmate, had to use physical force because inmate struggled to flush marijuana, inmate pushed EE against wall & cabinet
## 25500                                                                                                                                                    EE had to take her car to parking lot. EE was returning to her assigned building when she fell on the sidewalk.
## 25501                                                                                                                                                                                                         EE had to use force on an imate and hurt her left shoulder
## 25502                                                                                                                                                              EE had to use oc spray on an inmate. EE inhaled too much causing lungs to spasm-EE could not breathe.
## 25503                                                                                                                                                                                       EE had to use physical force on an inmate which later caused lower back pain
## 25504                                                                                                                      EE had to walk across gravel & concrete to get to bathroom facilities, ground was wet & EE slipped and fell injuring hip, knee, head & wrist.
## 25505                                                                                                                  EE had top two file drawers open and it started to topple over and tried to stop it and when she saw that she couldn't she jumped out of the way.
## 25506                                                                                                                                                                                           EE had training on 1/24 and 1/25- back began to hurt after she went home
## 25507                                                                                                                                                                                                  EE had turned to close the gate inmate struck hime on his rt arm.
## 25508                                                                                                                                                                    EE had turned vacumm off-turned around to unplung vacumm and vacumm fell hitting EE on rt heel.
## 25509                                                                                                                                                            EE had two instances of slipping, relying on her right foot and is now suffering from a foot strain. ()
## 25510                                                                                                                                                             EE had two trash bags and both were heavy and full of books. EE hurt lower back while taking trash. ()
## 25511                                                                                                                                                                                                 EE had two trash bags and tripped over one, while going downstairs
## 25512                                                                                                                                                                                 EE had unknowingly gotten her shoes wet in bathroom and slipped and fell on stairs
## 25513                                                                                                                                                       EE had unlocked exit door to return to ward when client grabbed her by the collar and both fell to the floor
## 25514                                                                                                                                           EE had violator stopped when his marked patrol vehicle with it emergency equipment activated, wasstruck in rear by truck
## 25515                                                                                                                                                                     EE had walked into the breezeway off of 3rd st andslipped on wet pavement falling onto lt arm.
## 25516                                                                                                              EE had walked outside to green box to get car keysit was wet outside, when walked in, foot slipped on waxed floor-lost balance and fell hitting stair
## 25517                                                                                                                                                                        EE had was burned by chemical buring steam while working with chemicals/ hand was protected
## 25518                                                                                                                 EE had went out for a fire drill & when she was coming back in, talking w/someone & fell over a light in the ground. Cut lt thigh/abraison rt knee
## 25519                                                                                                             EE hammer drilling through wall, when drill caughtcausing arm to turn & slammed into wall burn occured while soldering copper line. Contusion rt elbow
## 25520                                                                                                                  EE hammering home-made steel stake driver it bounced of stake gashing EE's rt hand. Severe cut rt hand and wrist. Nerves and tendon require surg.
## 25521                                                                                                                                                                                          EE hammering nail into mortar to hang cable-nail dislodge and struck eye.
## 25522                                                                                                                                                                                                                               EE hand & fingers cut by a miter saw
## 25523                                                                                                                                EE hand a pre-exposure vaccination, no reaction. 2nd pre-exposure vaccination, allergic reaction, rash on upper arm, face and back.
## 25524                                                                                                            EE hand bananas tucked under left arm, started downsteps, foot slipped off step and slid down 3 steps landing sitting position with foot underneath EE.
## 25525                                                                                                                                        EE hand became caught in a carding machine as he was cleaning the fibers off the machine. He had removed the safety guards.
## 25526                                                                                                                                          EE hand caught in stall door while installing toilet tissue. Door swung past latch point and caught EE hand on back swing
## 25527                                                                                                                                                                        EE hand feeding exotic cat and cat reached paw through and scratched EE on left hand thumb.
## 25528                                                                                                                                                                     EE hand got caugt between canvas holder & lift support arm while putting client in wheelchair.
## 25529                                                                                                                                                                                                                                 EE hand got stuck smashing fingers
## 25530                                                                                                                                            EE hand pain aggravated by using fingers/using computer keyboard injury palm of left and right hand worse on right hand
## 25531                                                                                                                                                                                            EE hand slipped while obtaing organisms per educational interpretation.
## 25532                                                                                                                                                                                                                                      EE hand struck against a door
## 25533                                                                                                                                                                                                         EE hand was caught between a door injurying his rt finger.
## 25534                                                                                                                                                                                EE hand was caught between rack and door that was being pushed through the doorway.
## 25535                                                                                                                                                                                                            EE hand was caught between the door frame and box cart.
## 25536                                                                                                                                                                                                                       EE hand was caught in closing elevator door.
## 25537                                                                                                                                                                                                       EE hand was caught in door causing injury to lt index finger
## 25538                                                                                                                           EE hand was crushed between himself, pt, & head- board in the process of placing pt in manuel restraints, when pt lunged at EE. Lt hand.
## 25539                                                                                                                                                                               EE hand was on the door frame when co-worker shut door. Left hand 2nd & 3rd fingers.
## 25540                                                                                                                                                                                           EE hand was struck by van door when entering, door handled by another EE
## 25541                                                                                                                                                                                                           EE handed co-worker a metal rack and it hurt left wrist.
## 25542                                                                                                                                                              EE handed inmate his food trays and drink and was closing trap door when EE was hit in multiple areas
## 25543                                                                                                                                                                   EE handing knife to another employee and knife slipped thru package and cut rt hand index finger
## 25544                                                                                                                                                                    EE handled fertilizer and roundup. EE planted someplants. Hand becamed red, swollen and burned.
## 25545                                                                                                                                                                EE handling a newly arrived lab rat, the rat bit EE right 3rd finger, breaking through glove & skin
## 25546                                                                                                                                                                  EE handling animal to move from one location to the other/ animal became igitated and attacked EE
## 25547                                                                                                                                                                                          EE handling glass pipet-pipet broke in half cutting the palm of left hand
## 25548                                                                                                                                                                               EE handling lab rat, rat bit EE 3rd finger on rt hand, breaking through glove & skin
## 25549                                                                                                                                                                                                            EE hands broke out while washing dishes in the scullery
## 25550                                                                                                                                                                                                         EE hands broke out with blisters skin cracking and painful
## 25551                                                                                                                                                    EE hands were numb when she awoke on 12-13-00. Injune 2000 EE scooped ice cream and felt sharp painin rt wrist.
## 25552                                                                                                                                    EE hanging a banner & the ladder fell 24' ladder - 12' up. The ladder rolled & he fell to the ground landing on right foot/knee
## 25553                                                                                                                                                                           EE hanging a key against the wall and scraped rt forearm on screw coming from duct work.
## 25554                                                                                                                                               EE hanging rob in the cabinet that was supposed tobe stuck to the wall. The cabinet unbolted, falling onto EE (back)
## 25555                                                                                                                                                         EE has 2 screws in arm from prev accident-residentstruck EE where the screws are located-causing contusion
## 25556                                                                                                                                                                                                                           EE has a catch in his back from lifting.
## 25557                                                                                                                                                                                   EE has a contusion of the hand when it was pinned between the desk and the wall.
## 25558                                                                                                                                           EE has a documented long history of allergies to rats EE was exposed to rats on 2/16/07 & 2/19/07 injury to body systems
## 25559                                                                                                                                                                   EE has a knot on her right wrist, tingling fingers, & swelling could be due to excessive keying.
## 25560                                                                                                                                                                                                                                        EE has a positive ppd test.
## 25561                                                                                                                                                                                                                      EE has a rash on his left arm from poison ivy
## 25562                                                                                                                                                        EE has a small red bump on the middle finger of lt hand itched but no pain overnight swelling and infected.
## 25563                                                                                                                                                                                                                             EE has a type 2 decompression sickness
## 25564                                                                                                                                                                                                          EE has abrasion of skin & resulting soreness of the skin.
## 25565                                                                                                     EE has accumulated pain and soreness in hand/arm due to repeated use of right hand/arm. She lifts, pushes, pulls, cuts, and writes with her right hand/arm. ()
## 25566                                                                                                                                                                          EE has allergic reaction from miling cows-rash on wrist, hands, arms, eyelids and fingers
## 25567                                                                                                                                                         EE has asthma w/ shortness of breath. Nurse aministered shot & sent EE to st. Joseph's urgent care center.
## 25568                                                                                                                            EE has athelete's foot on left foot and rash on back of left calf, also right foot from swimming at pool and being in out of pool area.
## 25569                                                                                                                                                                                   EE has bacterial infection from puncture wound of fish gill in rt middle finger.
## 25570                                                                                                                                                                                                        EE has became paranoid (panic/stress) due to client contact
## 25571                                                                                                                                                                           EE has been bending over for an extended period oftime lifting rocks; injured lower back
## 25572                                                                                                                           EE has been boxing old files as well as moving files around in the file room. Pick up a bag of forms that was to be shredded to move it.
## 25573                                                                                                                                                                                                                        EE has been complaining of dust and carpet.
## 25574                                                                                                                                                                                              EE has been complaining of pain in her rt wrist. It swells and hurts.
## 25575                                                                                                                                                                              EE has been diagnosed w/conjunctivitis paymt of 1-rx only - no other pymts to be made
## 25576                                                                                                                                                                             EE has been diagnosed with carpal tunnel syndrome does alot on typing, and handwriting
## 25577                                                                                                                                                 EE has been doing long hours of ordering manager in the supply unit at missionary ridge west wildfire in colorado.
## 25578                                                                                                                                                                                      EE has been doing repetitious handling of the files carrying heavy file load.
## 25579                                                                                                                                                                                             EE has been doing some typing and lots of writing wrist began to ache.
## 25580                                                                                                                                      EE has been dx with tick-borne illness. Alleges tick bite while working for this employer estimateshe was exposed summer 2003
## 25581                                                                                                                                                                              EE has been dx'd with tenosynovitis/ganglion cyst related to repetitive computer work
## 25582                                                                                                                                                                        EE has been entering more data into the cpmtr recently and started having pain in rt thumb.
## 25583                                                                                                                                         EE has been experience much pain in her wrist in the last 3 months; pain/numbness in right hand un- able to sleep at night
## 25584                                                                                                                                                                                                           EE has been experiencing a constant cough since february
## 25585                                                                                                                 EE has been experiencing alot of pain and numbnessin her left arm and wrist during the past several mos from turning chart pages for 3-4 hrs a day
## 25586                                                                                                                                  EE has been experiencing pain in arm. Has tried toreturn to work several time and pain returns. Possible repetitive motion injury
## 25587                                                                                                                                                                                                                             EE has been experiencing pain in hand.
## 25588                                                                                                                                                                                                  EE has been experiencing pain in left fingers from using keyboard
## 25589                                                                                                                                                                                                          EE has been experiencing pain in right elbow, hand, wrist
## 25590                                                                                                                                                                                                                        EE has been experiencing pain in the hands.
## 25591                                                                                                                                                                                  EE has been experiencing pain/numbness in right arm, shoulder, right index finger
## 25592                                                                                                                                                                                     EE has been experiencing rt arm pain, numbness andtingling over the past 4wks.
## 25593                                                                                                              EE has been experiencing severe eye strain while doing data entry at the computer to the extent thatit is no longer possible for EE to continue work.
## 25594                                                                                                                                                                                                  EE has been exposed to prolonged and continuous excessive noises.
## 25595                                                                                                                 EE has been feeling lightheaded and is experienc- ing hair breakage. Thinks it could be related to the radiation machine, which close to her desk.
## 25596                                                                                                                          EE has been having left wrist pain since first of August. Left wrist stopped hurting, and right wrist began to hurt, now both are hurting
## 25597                                                                                                                                    EE has been performing computer data entry as 50% of job duties for 15yrs - pain in fingers of rt hand radiating to rt shoulder
## 25598                                                                                                                                                                                         EE has been pulling heavy staples from thick documents, tingling in hands.
## 25599                                                                                                                                                                   EE has been putting on the latex gloves, started to get rash---red and bumpy. -right/left hands-
## 25600                                                                                                                                                                                    EE has been typing on an ergonomically incorrect set up both wrists are injures
## 25601                                                                                                                                                                                          EE has been using a mop that is too large for her to swing without strain
## 25602                                                                                                                                                                                  EE has been using her hands in the same motion causing her to have carpal tunnel.
## 25603                                                                                                             EE has been working 60-70 hrs/wk towards end of last year on pc. Noticed cumulative stress in neck. Dx w/ misalignment of c-spine and mobility problem
## 25604                                                                                                                    EE has been working with the clerks office for 10 yrs, in her job she uses the computer on a reg basis, her doctor feels injury related to job.
## 25605                                                                                                                                                                                                                  EE has bilateral pain in wrists from heavy typing
## 25606                                                                                                                                                                     EE has blisters and red patches on her left hand, May be caused by flea infestation in office.
## 25607                                                                                                                                EE has breathing problems and claims she smelled smoke which caused an asthma attack resulting in being transproted to the hospital
## 25608                                                                                                                                                                           EE has bug bites on left & right elbows, left & right knees and left and right buttocks.
## 25609                                                                                                                                                                                                                                               EE has carpal tunnel
## 25610                                                                                                                                                                                         EE has carpal tunnel syndrome in both hands from using mouse and keyboard.
## 25611                                                                                                                                                                                                                         EE has carpal tunnel syndrome in rt wrist.
## 25612                                                                                                                                                                EE has carpal tunnel sysndrome in right wrist. This type of injury occurs over long period of time.
## 25613                                                                                                                                                         EE has changed job, and now doing more repetitivemanipulation of paper and sorting. Injured wrist fingers.
## 25614                                                                                                                                                                                    EE has chronic hand & wrist pain due to repetitivemotion of typing and writing.
## 25615                                                                                                                                                             EE has chronic pulmonary distress increasing in frequency and severity since moving into new facility.
## 25616                                                                                                                                                                                                 EE has climbed repeated over the gear has developed a foot problan
## 25617                                                                                                                                                                                                                                          EE has cts in both wrists
## 25618                                                                                                                                                         EE has developed & diagnosed with carpal tunnel syndrome, is working currently, but is in great discomfort
## 25619                                                                                                                                                                                 EE has developed a cough and have trouble breathing while working in the building.
## 25620                                                                                                                EE has developed a skin condition. She has broken out into a rash all over her body with intense itching. She works with cows & different chemicals
## 25621                                                                                                                                                                    EE has developed a small cyst on left wrist. Potentially due to poor ergonomics of workstation.
## 25622                                                                                                                                                      EE has developed carpal tunnel syndrome caused by repetitive motion; injuring wrist, side jaw, shoulder, neck
## 25623                                                                                                                                                                                                   EE has developed carpal tunnel... Right hand, wrist and full arm
## 25624                                                                                                                                          EE has developed intermittent severe pain in rightthumb caused by keyboarding and use of trackball and mouse on computer.
## 25625                                                                                                                                  EE has developed occupational asthma due to dust from capentry & masonry classroom ajacent and nextto his class. Asthma of lungs.
## 25626                                                                                                                                                                                          EE has developed pain and swelling in right hand due to repetitive motion
## 25627                                                                                                                                         EE has developed pain in her knees from sitting at another station and her shoulder hurts from holding the phone on it. ()
## 25628                                                                                                                                                       EE has diagnosed EE as having carpal tunnel syndrome as result of repetitive mostion using computer keyboard
## 25629                                                                                                                                                        EE has died from asbestos!!!!!!!----his widow is filing this form 18 & I am not sure when his exposure was.
## 25630                                                                                                                                                                                           EE has discomfort in lt wrist and hand supposedly from repetitive motion
## 25631                                                                                                                                                                                  EE has dx of trigger finger (acquired) to lft thumb. Possible use of computer. ()
## 25632                                                                                                                                                                                 EE has experienced numbness in in finger tips over the week and tingling at night.
## 25633                                                                                                                                                                                                                   EE has experienced pain in left hand thumb area.
## 25634                                                                                                                                                                                                            EE has experienced pain in wrist for the last 6 months.
## 25635                                                                                                                                                                     EE has experienced stress, anxiety, insomnia and irregular menses due to stressors at jobsite.
## 25636                                                                                                                                                                    EE has experiencing problems with dust and mold for months... Headache, sinus, nausea, vomiting
## 25637           EE has expressed concern that she has been exposed to asbestos. Eestates she was walking in the hall past her office and witnessed several men wearing protective gear. She questionedwhat was going on and was told that asbestos was being removed. ()
## 25638                                                                                                                                                                                                                  EE has felt pain in his elbow for about 6 months.
## 25639                                                                                                                                                                                 EE has frequent break outs on hands fm wearing the white gloves in the sinkroom ()
## 25640                                                                                                                                  EE has gotten up from his chair to speak with a co-worker and upon his return to his desk, he fell, fracturing his left clavicle.
## 25641                                                                                                                 EE has had a long history of carpal tunnel-wrist was hurting-called to get appt in hand clinic-was given wrong advise about being seen @ EE health
## 25642                                                                                                                                                                 EE has had an audiogram and has a standard hearingthreshold shift from prolonged exposure to noise
## 25643                                                                                                                                                                   EE has had difficulty with rubber gloves breaking her hands out since she began working at ncsu.
## 25644                                                                                                                                                                                                           EE has had numbness and tingling in running in arm pits.
## 25645                                                                                                                                                                                            EE has had reoccurring pain in neck and shoulder over a period of time.
## 25646                                                                                                                                                                                                                           EE has had repetitive use of hand/wrist.
## 25647                                                                                                                                                                                                 EE has had some burning eyes, breathing difficulty, nasal passage.
## 25648                                                                                                                                                                                         EE has had some numbness in both hands since 11/02and it has gotten worse.
## 25649                                                                                                                                                                                                             EE has has an allergic reaction to office environment.
## 25650                                                                                                                                                                     EE has hep b injection on 9/21/99 on 9/24/99 reported to health clinic with rt upper arm edema
## 25651                                                                                                                                                     EE has history of seizures, had seizure and fell off of chair hitting the left side of her face and cutting it
## 25652                                                                                                                                                                                                              EE has infected rt eye - doen't know how it happened.
## 25653                                                                                                                             EE has inflammation in both wrists and elbows from repetitive motions- typing, computer mouse microsope manipulation, moving equipment
## 25654                                                                                                                             EE has injuries to be related to result of repetitive action in using a keyboard and mouse. ***need to obtain aww info from employer**
## 25655                                                                                                                                                                                                  EE has long standing rat allegry that has gotten worse with time.
## 25656                                                                                                                                                        EE has lower back pain resulting from chair that does not have proper support and lifting/bending to files.
## 25657                                                                                                                                                         EE has lt pain in wrist/hand & other problems thatmay later be determined to have arisen from this injury.
## 25658                                                                                                                                                                                                  EE has multiple hives and rash on upper of front and back of arm.
## 25659                                                                                                                                                                                                     EE has multiple sclerosis and fell while getting off elevator.
## 25660                                                                                                                                                                                    EE has neck and back pain caused by stress of workload. Has trouble functioning
## 25661                                                                                                                                                                                                                                EE has neck/back pain.... Ergo eval
## 25662                                                                                                                                      EE has noticed a lump on her right wrist that has been getting larger & causing pain in the thumb area with loss of strength.
## 25663                                                                                                                                                                                 EE has noticed in past couple weeks pain in rt hand extending upward toward elbow.
## 25664                                                                         EE has noticed issues with both of his hands. Predominately the left hand falling asleep, tingling, and numb feeling throughout the day. Right has had sporadic issues of the same nature.
## 25665                                                                                                                                                                       EE has ongoing staph infection. Possible source ofthe infection are the chickens he handles.
## 25666                                                                                                                                                                                      EE has pain & numbness from repetitive entering of data in excessive amounts.
## 25667                                                                                                                                                                                              EE has pain and burning in right thumb and wrist also both shoulders.
## 25668                                                                                                                                                                                                                             EE has pain and numbness in both arms.
## 25669                                                                                                                                                            EE has pain in both arms above elbow, tingling in both hands, pain in low back. Initial diagnosis - cts
## 25670                                                                                                                                                                                                                                         EE has pain in both hands.
## 25671                                                                                                                                                                                                     EE has pain in both wrists and hands from heavy computer usage
## 25672                                                                                                                                                                                                                                  EE has pain in both wrists/elbows
## 25673                                                                                                                                                 EE has pain in forearm, upper arm and shoulder or right arm due to repetitive motion drawing blood for lab studies
## 25674                                                                                                                                                                 EE has pain in her hand due to constant typing & repetitive motion. Began in Nov. '06. Right hand.
## 25675                                                                                                                                                                                                               EE has pain in her hands from repetitive keyboarding
## 25676                                                                                                                                                                                              EE has pain in left shoulder and arm while liftingtrays to wash down.
## 25677                                                                                                                                      EE has pain in left wrist & hand. Affects her ability to grasp with thumb and fingers-----due totyping and repetitive motion.
## 25678                                                                                                                                                                                                                    EE has pain in lower abck while lifting client.
## 25679                                                                                                                                                                 EE has pain in lt thumb and tingling in her fingeron lt hand. Believes its carpel tunnel syndrome.
## 25680                                                                                                                                      EE has pain in neck with sensation of needless/pens sticking, permeating downt he shoulders, back arms from computer station.
## 25681                                                                                                                                                                         EE has pain in rt arm and shoulder from using computer - poor computer set up in work area
## 25682                                                                                                                                                                                                              EE has pain in rt hand and wrist from processing data
## 25683                                                                                                                                                                                                              EE has pain in rt hand using excessive computer usage
## 25684                                                                                                                                                                                   EE has pain in rt side of neck & rt shoulder afterqualifing with shotgun & rifle
## 25685                                                                                                                                                                                                                               EE has pain in rt wrist when bending
## 25686                                                                                                                          EE has pain numbness, & throbbing in hands & wrist, constant stiffness & soreness in neck & shoulders due to repititious use of computer.
## 25687                                                                                                                                                                 EE has pain traveling the full length of her arm- all the way to the back of neck & down shoulder.
## 25688                                                                                                                                                                                                             EE has pain while writing, driving. Tingling sensation
## 25689                                                                                                                                                                                                  EE has poss cts in rt hand from repetitive motion from data entry
## 25690                                                                                                                                                                                                  EE has possible hearing loss due to noise made by air compressor.
## 25691                                                                                                                                                                                                           EE has presented symptoms of tendonitis in her right arm
## 25692                                                                                                                                            EE has previously reported to EE's supervisor thathe was having pain in his hand due to continious driving and lifting.
## 25693                                                                                                                                                                                      EE has progressivley worsening condition from repetitive use of the computer.
## 25694                                                                                                                                                                                     EE has raised bumps under chin area, exposed to client with rash in work area.
## 25695                                                                                                                                                                                                EE has rash of unknown origin on legs, arms back, stomach and chest
## 25696                                                                                                                                                                                                                 EE has rash on hands and forearm-suspects chemical
## 25697                                                                                                                                                                                                 EE has rash on legs- 3rd reported case of dermatitis from g3 unit.
## 25698                                                                                                                                                          EE has rash on palms & fingers of both hands, & feet. May be allergy to bug bite or contact der- matitis.
## 25699                                                                                                                                                                                                                                      EE has rash over 90% of body.
## 25700                                                                                                                                                                                      EE has received multiple insect bites over the last 2 months causing swelling
## 25701                                                                                                                                        EE has reported that use of mouse, keyboard, and excessive flexion has caused numbness and tinglingand sharp pain in wrists
## 25702                                                                                                                                                                                                                               EE has resiratory and skin problems.
## 25703                                                                                                                                            EE has respiratory sinus; allergic reactions that states has worsened by being in basic skills ctr that has mold in it.
## 25704                                                                                                                                                                                                           EE has ringing in ears from client hollering for 2 days.
## 25705                                                                                                                                                                                                                               EE has shooting pain up into the arm
## 25706                                                                                                                                                    EE has sore arms, wrists, fingers & joints while transcribing extra orders while transcribers were on vacation.
## 25707                                                                                                                                                                               EE has sores on face. MRSA virus has been present in lansboro correctional facility.
## 25708                                                                                                                                               EE has starting noticing red area on hands unsure if it is caused by the type of gloves that she is currently using.
## 25709                                                                                                                                            EE has stated constant pain in rt hand and fingersfollowed by pain shooting up right arm. EE performdata entry all day.
## 25710                                                                                                                                                                               EE has stated she pain in rt hand and finger. EE perform data entry most of the day.
## 25711                                                                                                                                                                                                         EE has states EE complained of thumb on right hand hurting
## 25712                                                                                                             EE has stepped out of cell 1-d pod to speak w/ theofficer in the control booth. EE had his left handin the sliding door. EE closed the door and his ..
## 25713                                                                                                                              EE has stopped in roadway to allow another vehicle to trun right into private drive and was struck in the rear by a training vehicle.
## 25714                                                                                                                     EE has stopped suspect for not wearing seat belt- att to arrest suspect for license revoked-when suspect ran-EE went after and tripped in hole
## 25715                                                                                                                                                                  EE has suffered from a cumulative injury through continuous use of keyboard and calculator daily.
## 25716                                                                                                                                                                      EE has tendionitis from handling large heavy objects in conjunction with routine work duties.
## 25717                                                                                                             EE has to ?? Omtp bed of pickup to unload gas cyl-inder. While trying to ?? Bed ees left foot slippedfrom tailgate, left knee struck top of lift gate.
## 25718                                                                                                                                                                                       EE has to adjust chair level between desk and computer station injured back.
## 25719                                                                                                                                                                                                                               EE has to do alot of lifting; hernia
## 25720                                                                                                                     EE has to lift consumer equipment and deliver it to services, she noticed soreness in her lower backthe next day and it is still bothering her
## 25721                                                                                                                                                                                       EE has to repeatedly open cans with can opener and has pain in rt bicep area
## 25722                                                                                                                          EE has to throw mail into tubs all day. EE was throwing pieces of mail into tub at a fairly fast speed. Small bump on arm began to swell.
## 25723                                                                                                                                                                                                                  EE has torn ligament to the 4th finger of rt hand
## 25724                                                                                                                                                       EE has unknown left shoulder pain. States she feelit is due to improper work chair, with no adjustblarm rest
## 25725                                                                                                                  EE has walked from burnett womack to ambellatory care center, she came to the end of the sidewalk where it meets the acc parking lot lost her. ..
## 25726                                                                                                                                                                                           EE has wirst and arm pain from repetitive motion from keying on computer
## 25727                                                                                                                                                                                                                     EE has wrist pain as overuse of mouse/computer
## 25728                                                                                                                                                                                    EE has wrist problems, ctd's, use of computer equip-ment over the past 8 years.
## 25729                                                                                                                                                                                                   EE hauling dirt down hill and bobcat fell forward injury to back
## 25730                                                                                                                        EE have had continous allergies & sinus problems. October 9-20, 2007 EE experienced sinsus pressure, headaches & pain on left side of face.
## 25731                                                                                                                             EE having lunch got up must have turned foot wrongit became very painful, as time passed foot swelledup and EE unable to put weight on
## 25732                                                                                                                                                                                                                       EE having migraine headaches from chemicals.
## 25733                                                                                                                                                                                        EE having numbness in both hands after keying new cases, updates and typing
## 25734                                                                                                                                                                          EE having pain in rt elbow and arm - thinks May berelated to locking and unlocking doors.
## 25735                                                                                                                                                                                                     EE having pains in rt foot and lower leg from previous injury.
## 25736                                                                                                                                                                    EE having personal conversation on phone-fainted and struck head on desk and lost consciouness.
## 25737                                                                                                                                                                                                   EE having problems breathing due to dust and fumesin work place.
## 25738                                                                                                                                 EE having state van checked before travel garage employee accidently pulled garage door down on EE striking her in the head & face
## 25739                                                                                                                                                         EE having the single leg take down, technique. EE felt tear in her stomach. This was during crdt training.
## 25740                                                                                                                                                                                                            EE having trouble breathing from paint in clinicalarea.
## 25741                                                                                                                                                                         EE having trouble with back on the right side and down leg and reinjured during pic class.
## 25742                                                                                                                                             EE he has unloading fencing from the truck his glove get hung in the fence and end of fence wire cut palm his lt hand.
## 25743                                                                                                                                                                                    EE he was assisting with an agreesive inmate when he fell striking his rt knee.
## 25744                                                                                                                                                                                                        EE head struck on concrete while climbing steps up a tower.
## 25745                                                                                                                                                                                              EE headbutted by patient x4, scratched on r eyelid, fell on l knee ()
## 25746                                                                                                                                                                                 EE heading to copier & fell over box & landed squarely & heavily on r knee/hand ()
## 25747                                                                                                 EE heard a client come out of room; client was running down hallway; EE ran after client and stumbled onto floor hurting both knees; left hand and right shoulder.
## 25748                                                                                                                                                                                        EE heard a loud noise swing around on the rotating chair. Injured low back.
## 25749                                                                                                                EE heard a noise coming from male hall and went to investigate and found pt lying n the floor w/a sheet aroung neck tried to untie and twisted back
## 25750                                                                                                                                                                                              EE heard a noise-turned suddenly and struck elbow on side of building
## 25751                                                                                                                                                                   EE heard a pop in his rt arm when he was lifting 3metal trash cans out of his truck at the park.
## 25752                                                                                                                               EE heard alarm in client's room - client using bathroom-started to fall-EE caught client under the arm and fell on left side of leg.
## 25753                                                                                                                                              EE heard call for assisctance and ran to assist. Call was cancelled & EE stopped while turning corner, twisting knee.
## 25754                                                                                                                                                                                                                      EE heard elbow pop while signing as a student
## 25755                                                                                                                                                                                 EE heard patient and hurried down hall to see to patient and felt right knee twist
## 25756                                                                                                                 EE heard someone flushing commode in client's bathroom, EE went to door to see, went to open doorclient burst out door, EE hitting back of rt hand
## 25757                                                                                                               EE heard telephone ring and left copier room to answer, turned corner, floor was wet from being mop-ped, fell, hitting knees and left hip and elbow.
## 25758                                                                                                                                                                   EE heating bottle of agor in microwave-it boiled over shooting out of bottle & burning EE's face
## 25759                                                                                                                       EE held clients head while in the whirlpool spa sothat the clients head would be above water. EE strained back, see in er rtw no missed time
## 25760                                                                                                                                                                                                                    EE held out arm to prevent client from falling.
## 25761                                                                                                                    EE held pyrax flask in right hand, was being movedacross lab when it hit edge of bench top, shatterdand pushed glass thru EE right index finger
## 25762                                                                                                                                                                                    EE held resident in pr hold for extended period of time & wrist started hurting
## 25763                                                                                                                                                                                                             EE help move a filing cabinet, strain to left shoulder
## 25764                                                                                                                                                               EE help move washers down stairs, the machine was not locked on dolly and slipped striking left hand
## 25765                                                                                                                                                                         EE help put away supplies. The next day she developed soreness and pain in upper left leg.
## 25766                                                                                                                       EE helped an inmate draw up insulin and didn't realize the inmate had blood on his hand which transferred to the insulin bottle, exposing EE
## 25767                                                                                                              EE helped break up 2-juveniles fighting-inj rt shosalary continuance. Ph# left by clmt 910-763-7895 rehab spec-anthony enoch - file closure- 1/2003**
## 25768                                                                                                                                                                                       EE helped cna lift a client in her chair, about 1hr lated felt pain in back.
## 25769                                                                                                                                           EE helped get out of bed and to their wheelchair about 30mins later felt pain in lower back and hipworsend when sitting.
## 25770                                                                                                                                                                EE helped inmate lift a container full of potatoes& carried it & put it in the cooler on the shelf.
## 25771                                                                                                                                                                                                            EE helped lift an inmate and slide him to the stretcher
## 25772                                                                                                                     EE helped load tree limbs on a dump truck on the unit. He hauled the limb to the firing range. On5/2/96, he felt a pain in his right shoulder.
## 25773                                                                                                                                                                                                                          EE helped move printer and injured wrist.
## 25774                                                                                                                                                                                               EE helped move things from storage to office and dust made her sick.
## 25775                                                                                                                                                                                EE helped patient up off the floor and back into bed after fall and injured herself
## 25776                                                                                                                                                                                                 EE helped to get inmates out of cell during fire. Smoke inhalation
## 25777                                                                                                                              EE helped to pull patient up in bed. She then sat in chair and when she went to get up she felt sharp pain in left side under ribcage
## 25778                                                                                                                                                                                 EE helped transport an inmate who was covered in blood and was exposed, both hands
## 25779                                                                                                                                             EE helped with snow removal. EE complained of painin his arm. EE states that he did not think that it was work related
## 25780                                                                                                                                                                                    EE helping 2 other workers lift carpet, right arm had a sharp pain in the bicep
## 25781                                                                                                                                     EE helping a pt, when rt leg got caught under the pt. EE tried to stand up, not realizing leg was trapped, injuring right knee
## 25782                                                                                                                                                              EE helping a sick student-student began to fall with EE causing EE to strike left elbow on metal bed.
## 25783                                                                                                                                                                 EE helping a student while walking and trying to prevent child from falling missed step jared back
## 25784                                                                                                                                                      EE helping a student who was involved ina behaviorepisode & during the incident the student bit her left hand
## 25785                                                                                                                                                EE helping an aggressive patient, placing patient on transport board & felt sharp pain go down neck & left shoulder
## 25786                                                                                                                        EE helping another trooper with an assault. Subjectbegan punching EE, EE defended by using open hand strikes to place subj. Onto the ground
## 25787                                                                                                                                         EE helping block up area to help prevent flood water from coming into buildings. Water splashed in lft side of face & eye.
## 25788                                                                                                                                                                     EE helping change client-turn sheet to lift clientand client shifted wgt EE felt pull in back.
## 25789                                                                                                                                                                                  EE helping change patient's bed bent over & could no straighten up. Lumbar strain
## 25790                                                                                                                                                             EE helping clean up after graduation-shoes stoppedshort & pitched EE forward on face-contusion to nose
## 25791                                                                                                                                                     EE helping client dress, client fell back onto bedee caught to keep head from hitting wall. Pain in upper back
## 25792                                                                                                                                                 EE helping client get into van-wgt to heavy to hold-client fell into EE's arms which caused EE tostrain left thigh
## 25793                                                                                                                                                                                                  EE helping client get off toilet strain back, neck and left wrist
## 25794                                                                                                                                                                                               EE helping client get on stretcher and hit left finger on stretcher.
## 25795                                                                                                                                                                                                                  EE helping client get out of bed and hit left toe
## 25796                                                                                                                                                                                      EE helping client in bedroom-when leaving client slammed door on EE's rt hand
## 25797                                                                                                                                                                                                                   EE helping client into chair and left leg popped
## 25798                                                                                                                                                                      EE helping client on transport van, stepped on va, left arm hit a piece of medal sticking out
## 25799                                                                                                       EE helping client out of tub, clients feet slipped& pulled me toward water pulled her up beside tub. Injury neck, chest, lt shoudler, arm, hand, both wrist.
## 25800                                                                                                                                                                              EE helping client pull her pants up-client begin to go down to floor EE felt back pop
## 25801                                                                                                                                                        EE helping client to chair, client knees buckled resulting in EE bearing clients weight injury pain in back
## 25802                                                                                                                                                          EE helping client to floor when client attacked EE-EE carrying client to place in restraints pulled back.
## 25803                                                                                                                                                                           EE helping client to leave restroom-client became unsteady causing EE to trip over feet.
## 25804                                                                                                                                                                                                   EE helping client up from floor and sprained rt wrist in process
## 25805                                                                                                                                                                     EE helping client with physical activity-client became upset and bent EE's rt thumb backwards.
## 25806                                                                                                                                                     EE helping co-worker nail down carpet on weeder box, co-worker struck nail that deflected and struck EE in eye
## 25807                                                                                                                                        EE helping co-worker unload a lgr shipping crate from trk when crate shifted catching EE's fingers between crate and truck.
## 25808                                                                                                                                                                                EE helping control/restrain inmate & was pushed against a locker which hit her back
## 25809                                                                                                                                                                                                                        EE helping ems to put resident on stretcher
## 25810                                                                                                                                                                                      EE helping harvest on research when a small particle was blown into left eye.
## 25811                                                                                                                                                                                             EE helping hospital staff move a vehicle crash patient-strain to groin
## 25812                                                                                                                            EE helping individual put on artificial limb EE leaned forward in office chair with wheels chair rolled EE fell injury left side bottom
## 25813                                                                                                                 EE helping individual to bathroom, individual started to fall, EE holding on to her w/gate belt twisted arm trying to keep individual from falling
## 25814                                                                                                                                                                                          EE helping inmate off floor & into wheelchair caused strain to lower back
## 25815                                                                                                                                         EE helping inmate to treatment room, when inmate threw his head back head butting EE on right side of head above left eye.
## 25816                                                                                                                                                                   EE helping install equimpent-picked up power stripthat shooted out and burned fingers on rt hand
## 25817                                                                                                                                                                                         EE helping lift dog to radiation table-dog turned and bit EE on left hand.
## 25818                                                                                                                                EE helping lift heavy metal carts after being cleansed felt pull in back and stomach, EE lifting pots and felt pull in back. Strain
## 25819                                                                                                                                                                                        EE helping lift mower onto back of truck and got finger caught in the axle.
## 25820                                                                                                                                                                                                                    EE helping lift pieces of equipment onto table.
## 25821                                                                                                                                         EE helping lift resident from bath tub chair. Heavier that most residents - resisting didn't want to get up. EE hurt back.
## 25822                                                                                                                                                                                                                EE helping load trailer when he stepped back & fell
## 25823                                                                                                                                                                    EE helping move a concrete table so they could work on an overhead light fixture, strained back
## 25824                                                                                                                                             EE helping move from one location to another, was back up to open door when she fell injuring rt foot. Broken rt foot.
## 25825                                                                                                                                                                                                                     EE helping move furniture and injured rt elbow
## 25826                                                                                                                             EE helping move patient on fx board to stretcher when left hand & wrist were caught between board & stretcher. Patient weighed 181 lbs
## 25827                                                                                                                                                  EE helping move pellet in basement when peller jack ran over rt foot causing EE to fall and twist rt leg and hip.
## 25828                                                                                                                                               EE helping other co-workers phys control physical agressive teenager who had attacked another. Lowerback and lt foot
## 25829                                                                                                                                                                   EE helping patient off bus & his weight shifted & he was leaning on her elbow, arm and left side
## 25830                                                                                                                                                                                EE helping patient prepare for shower, patient hit EE in the nose causing bleeding.
## 25831                                                                                                                     EE helping patient to get undressed patient lost balance & started to fall, EE tried to support pt when EE fell into adl cart, sprain rt thumb
## 25832                                                                                                                                           EE helping patient up from floor. Patient was pulling against EE. EE felt pulling in rt shoulder. Right shoulder strain.
## 25833                                                                                                                                                                                               EE helping patient up from the floor---something in her back popped.
## 25834                                                                                                                                                                                                                    EE helping patient up, twisted elbow backwards.
## 25835                                                                                                                                                                                                 EE helping prepare breakfast-knife slipped and cutee on left hand.
## 25836                                                                                                                                                                                       EE helping pt stand for dressing sudden movement in small space twisted back
## 25837                                                                                                                                                              EE helping put pressure on I/m that had cut himself and she stated she got blood on her right forearm
## 25838                                                                                                                                                                                                                EE helping put pt in bed, low back began hurting ()
## 25839                                                                                                                                                                   EE helping put up clothing & standing on stool, whencloths slipped from hand, she twisted wrist.
## 25840                                                                                                                                                EE helping resident up & resident lost balance pulling her off ballance causing her to jerk and injurying her back.
## 25841                                                                                                                                                                                            EE helping restrain an inmate when inmate spit on EE's rt cheek of face
## 25842                                                                                                                                                                                                            EE helping restrain client and felt pain in left elbow.
## 25843                                                                                                                                EE helping restrain combative inmate when inmate spit on upper left side of EE's back-also rec'd scratches to right forearm/lt knee
## 25844                                                                                                                                                                             EE helping setup folding tables for dinner when one of the tables fell onto EE's foot.
## 25845                                                                                                                                                 EE helping student move a wooden bent laminator when it flipped over and pinned tip of middle finger on left hand.
## 25846                                                                                                                                                                       EE helping student that injured herself using a hand grinder, blood contact to cut on thumb.
## 25847                                                                                                                                                                     EE helping student while walking. Trying to prevent child from falling, misstepped, jared back
## 25848                                                                                                                                                 EE helping student, went to stand when her r foot tangled around cord from keyboard making her trip & almost fall.
## 25849                                                                                                                                                                                                EE helping throw debris from truck onto a dump trkand injured back.
## 25850                                                                                                                                                                            EE helping to calm patient -- patient turned and twisted causing EE to twist lower back
## 25851                                                                                                                       EE helping to change a cleint & when she left the room she fell in hallway states that she beleives a sheet was in the floor & slipped on it
## 25852                                                                                                                                                              EE helping to control a combative resident, patient grabbed EE's eyeglasses and broke arm off glasses
## 25853                                                                                                                                          EE helping to get cadets on bus after training cadet struggled with EE. Injury left arm bent back and sprained left elbow
## 25854                                                                                                                                                                        EE helping to get water out of service sink and complained about her leg hurting. Leg pain.
## 25855                                                                                                                                                                                                                    EE helping to handcuff lt knee struck abruptly.
## 25856                                                                                                                             EE helping to lift resident back into his chair from floor. When she pulled her back. Atty-harriett hopkins 19-620-7661fax-919-620-857
## 25857                                                                                                             EE helping to lift resident into wheelchair, felt a pull in hand. On 2nd incident, trying to sit re-sident down, resident hesitated, thumb pulled back
## 25858                                                                                                                                                                               EE helping to move concrete table-table was dropped and hit EE head on the way down.
## 25859                                                                                                                                                 EE helping to move staircase when the group set it down it was released to early & caused injury to EE head & neck
## 25860                                                                                                                              EE helping to put disturbed patient in rest. Durigaltercation, EE toe hyper extended causing evasionof toenail. Contusion to left toe
## 25861                                                                                                                                                                                                          EE helping to put out a battery fire injury inhaled smoke
## 25862                                                                                                                                                          EE helping to remove cat from maintenance dept cat bit EE on index finger through knuckle and right pinky
## 25863                                                                                                                                  EE helping to remove metal panel used to cover empty 4 ft deep animal pool slipped off the edge fell backwards twisting left knee
## 25864                                                                                                                                                          EE helping to restrain agitated pt, EE hit right side of head & shoulder on wall, then fell on right hip.
## 25865                                                                                                                                                                                   EE helping to restrain combative aggressive, patient's blood splattered in face.
## 25866                                                                                                                             EE helping to restrain patient patient grabs EE back with his hand and twisted very hard injury right side of back and upper body sore
## 25867                                                                                                                              EE helping to secure patient he was kicked in lt knee & lt thigh. Pursuing 2nd patient hi lt knee on door. Injured lt knee and thigh.
## 25868                                                                                                                                                                                       EE helping to subdue fighting patient, EE fell to floor, sprain to left knee
## 25869                                                                                                                                                                                     EE helping to unload truck as EE stepped from truck onto pavement twisted knee
## 25870                                                                                                                                                       EE helping two co-workers move file cabinet on a hand trk and got finger caught between cabinet and door jam
## 25871                                                                                                                                        EE helping two other staff members subdue hostile inmate. EE inmate kicked him on the rt causing pain and swelling to knee.
## 25872                                                                                                                                EE helping unhitch boat/trailer frm trk-when trlerdetached and dropped to ground EE's finger was caught between trailer and ground.
## 25873                                                                                                                                                        EE helping unload trk with back to trk when an airvoid fell off of trk and hit EE on the inside of rt calf.
## 25874                                                                                                                               EE helping visitor bend long atenna on his truck couldn't get into the parking deck. Fiberglass in index & middle finger of rt hand.
## 25875                                                                                                                                                                                 EE helping vr clients move lumber-when moving board felt a sharp pain in rt wrist.
## 25876                                                                                                                                                                           EE helping with loading a refrigerator on truck. Cut left hand on metal band on the box.
## 25877                                                                                                               EE helping with patient who was trying to go out door; EE walked pt. Down hall and pt. Pulled legs off floor; injury to lt neck, elbow and shoulder.
## 25878                                                                                                                                                    EE helping with procedure, trying to remove tube from cats mouth. Cat reflexed and bit left thumb & forefinger.
## 25879                                                                                                                                EE herding cows into working chute when cow backedinto crowd gate crushing fingr btwn gate and fenceamputation of left index finger
## 25880                                                                                                                                                                                           EE hiking up steep, rocky hills. Lt ankle and knees swollen and painful.
## 25881                                                                                                                                                                                                         EE his his ankle while carrying a mop bucket... Left ankle
## 25882                                                                                                                                                                                             EE hit a bucket with a hammer which deflected and he injured his wrist
## 25883                                                                                                                                                                               EE hit a dip in the pavement and lost her balance hurt her right knee and left ankle
## 25884                                                                                                                    EE hit a light pole with patrol vehicle due to not getting relieved in a timely fashion he fell alseep and drove off the road into a light pole
## 25885                                                                                                                                                                                                       EE hit a patch of poison ivy while trimming with a weedeater
## 25886                                                                                                                                                                                                     EE hit a slick spot on the floor... Injured left side, arm/leg
## 25887                                                                                                                 EE hit a stump at a fire and it made his back soreon 2/19/02 then on 2/27/02 performing routine inspection was climbing down and felt pull in back
## 25888                                                                                                                                                                        EE hit a utility pole when his vehicle ran off theroadway causing internal and head injury.
## 25889                                                                                                                                                        EE hit and cut left hand index finger on stamping machine repetitively, developed cyst on left index finger
## 25890                                                                                                                                                                                                    EE hit arm against wall whil setting up for spring registration
## 25891                                                                                                                                                                                                                               EE hit arm on door, received scratch
## 25892                                                                                                                                                                                   EE hit back of head on the sink while picking up some paper towel off the floor.
## 25893                                                                                                                                                                                          EE hit bottom edge of door with forehead while walking through cutting it
## 25894                                                                                                                                                                                                                      EE hit by client in neck area. Brusie to neck
## 25895                                                                                                                                                                                                                       EE hit by mental pt during normal wrk duties
## 25896                                                                                                                                                                                                          EE hit by patient - pain, swelling, stiffness of rt knee.
## 25897                                                                                                                                                                                                                                           EE hit by pt on the hand
## 25898                                                                                                                                                                                                                       EE hit by pt suddenly on cheek and chest. ()
## 25899                                                                                                                                                                                                                         EE hit elbow causing bruising and swelling
## 25900                                                                                                                                                                                                                                            EE hit elbow on cabinet
## 25901                                                                                                                                                                                                                          EE hit elbow on corner of door vacuuming.
## 25902                                                                                                                                                                                                         EE hit elbow on door jam while moving empty computer boxes
## 25903                                                                                                                                                                                                                EE hit elbow on door whild pulling med cart through
## 25904                                                                                                                                                                                                       EE hit elbow on steel window casing. Contusion to left elbow
## 25905                                                                                                                                                                                                                      EE hit elbow/arm on corner of sorter machine.
## 25906                                                                                                                                                                                             EE hit finger with hammer trying to remove fan blade off a motor shaft
## 25907                                                                                                                                                                                                                                           EE hit foot on chair leg
## 25908                                                                                                                                                                                                                          EE hit foot on chair leg. Injured lt toe.
## 25909                                                                                                                                                                                                                                      EE hit foot on corner of desk
## 25910                                                                                                                                                                                                                                             EE hit forearm on desk
## 25911                                                                                                                                                                                                                                EE hit forehead on corner of mantel
## 25912                                                                                                                                                                                             EE hit hand on another EE wrist hitting other EE watch injuring finger
## 25913                                                                                                                                                                              EE hit hand on counter, l ring finger swollen, pain w. Movement and can not straigten
## 25914                                                                                                                                                                                                                EE hit hand on door jam when putting inmate in room
## 25915                                                                                                                                                                                                                                      EE hit hand on door. Rt hand.
## 25916                                                                                                                                                                                                                                        EE hit hand on drain board.
## 25917                                                                                                                                                                    EE hit hand on metal door of storage locker while stacking books which caused cut to left hand.
## 25918                                                                                                                                                                                                    EE hit hand on metal soap dish which resulted finger being cut.
## 25919                                                                                                                                                                        EE hit head on a sharp edge, EE was picking something up and bumped his head when stood up.
## 25920                                                                                                                                                               EE hit head on bookrack when entering restroom which cause headaches, swelling and slight indention.
## 25921                                                                                                                                                                                                                    EE hit head on corner of oven door cutting head
## 25922                                                                                                                                                                             EE hit head on corner of tailgate of state vehiclecausing a laceration above forehead.
## 25923                                                                                                                                                                                                           EE hit head on desk when bending over to pick up pencil.
## 25924                                                                                                                                                                                                                                                EE hit head on door
## 25925                                                                                                                                                                       EE hit head on metal corner of disposables box in women's bathroom, cut to head and bleeding
## 25926                                                                                                                                                                                                         EE hit head on shelf while placing paper in zerox machine.
## 25927                                                                                                                                                                                              EE hit head on stairwell when packing up after a meeting. Concussion.
## 25928                                                                                                                                                                                                           EE hit head on state car resulting in cut/gash 1/2 inch.
## 25929                                                                                                                                                                                                                        EE hit head on top drawer of filing cabinet
## 25930                                                                                                                                                                                                   EE hit head on top of ice box causing contusion rt side of head.
## 25931                                                                                                                                                                                                                                       EE hit head on truck door ()
## 25932                                                                                                                             EE hit head on upper desk and approx. 1 hour later became disoriented and walked into glass door upon her return from the restroom. ()
## 25933                                                                                                                                                                                                                                       EE hit head on valve stem ()
## 25934                                                                                                                                                                                                    EE hit head on wall-mounted cabinet while getting up from table
## 25935                                                                                                                                                                                                   EE hit head on window by crawling through building during search
## 25936                                                                                                                                                                                                                              EE hit head on wooden support beam ()
## 25937                                                                                                                                                                                                                     EE hit head under stairs while removing ladder
## 25938                                                                                                                                                                                        EE hit head with weight bar, while demonstrating alift. Contusion forehead.
## 25939                                                                                                                                                                                           EE hit her elbow against the locking mechanism in the stall; right elbow
## 25940                                                                                                                                                                                                               EE hit her foot against a heavy drawer... Left ankle
## 25941                                                                                                                                                                                             EE hit her foot on a hydraulic chair; injuring right foot (little toe)
## 25942                                                                                                                                                             EE hit her foot on the door of the refrigerator when she opened the door to put her lunch. Right foot.
## 25943                                                                                                                                                                                                                      EE hit her hand on top of rack in the kitchen
## 25944                                                                                                                                                                                        EE hit her head against the doorway of the truck while entering the vehicle
## 25945                                                                                                                                                                                                                                    EE hit her head on a door frame
## 25946                                                                                                                                            EE hit her head on a goathouse that was in the parking lot where her car was parked. A carpentry class was building it.
## 25947                                                                                                                                                                                                 EE hit her head on a steel pipe, while on a ladderto open a valve.
## 25948                                                                                                                                                                           EE hit her head on brick wall-while restraining student that was refusing to rtn to room
## 25949                                                                                                                                                                           EE hit her head on the air conditioner ****monitor bills--tx unrelated to w/c injury****
## 25950                                                                                                                                                                                                      EE hit her head on the wall in the bathroom; injured forehead
## 25951                                                                                                                                                                                                                        EE hit her knee against a metal desk drawer
## 25952                                                                                                                                                                                                               EE hit her knee on support beam or board under desk.
## 25953                                                                                                                                                                                                                 EE hit her knee on the corner of the control panel
## 25954                                                                                                                                            EE hit her knee on the inmates iron bed while putting restraints. Slight abrasion, rt knee, shinbone, swelling rt knee.
## 25955                                                                                                                                                                                                        EE hit her left hand on the wall trying to assist a patient
## 25956                                                                                                                             EE hit her left knee and right ankle, and hurt her right upper arm & hand as she fell. Left knee contusion, rt foot/thum/ankle sprain.
## 25957                                                                                                                                                                                                                                   EE hit her left knee on a chair.
## 25958                                                                                                                                                                                                         EE hit her left knee on the floor while restraining inmate
## 25959                                                                                                                                                                                                                   EE hit her leg on a table after cleaning a suite
## 25960                                                                                                                                                                                                  EE hit her lt elbow on the marble wall after exiting the bathroom
## 25961                                                                                                                                                                                                      EE hit her middle finger on her rt hand on the topof the desk
## 25962                                                                                                                                                                                                                             EE hit her mouth (tooth) on a crossbar
## 25963                                                                                                                                                                                              EE hit her right eyebrow on an upside down chair in the storage room.
## 25964                                                                                                                                                                                                                                  EE hit her right knee on the desk
## 25965                                                                                                                                                                                                       EE hit her rt knee on desk drawer while getting out of chair
## 25966                                                                                                                                                                                               EE hit her toe on chair that was on back porch. Fracture lt 5th toe.
## 25967                                                                                                                                                                                                                EE hit her wrist against table; injured right wrist
## 25968                                                                                                                                                                                                                                      EE hit her wrist on maidcart.
## 25969                                                                                                                                                                                                              EE hit herself in the eye with paper book. Right eye.
## 25970                                                                                                                                                                                                                    EE hit his elbow on the wall while in restroom.
## 25971                                                                                                                                                  EE hit his elbow while placing patient in nci hold. Employee was out March 26 -27th. Returned to wor k Mar. 28th.
## 25972                                                                                                                                                                 EE hit his hand on a clothes buggy while removing an inmates personal property, injuring rt finger
## 25973                                                                                                                                                                                                                              EE hit his head on a low beam..... ..
## 25974                                                                                                                                                                               EE hit his knee on a metal bar that was sticking out from a table; injured left knee
## 25975                                                                                                                                                                                                                              EE hit his left elbow on leaf of desk
## 25976                                                                                                                                                                                                                                EE hit his left elbow on stall door
## 25977                                                                                                                                                            EE hit his left leg against steel bed while gaining control of an inmate. Left shin swollen and bruised
## 25978                                                                                                                                                                                                                            EE hit his left leg oncart, cutting it.
## 25979                                                                                                                                                                                              EE hit his leg/knee against a table seat while talking with inmate ()
## 25980                                                                                                                                                                                                                   EE hit his nose with metal on sweeper truck hose
## 25981                                                                                                                                                                                                                     EE hit his right elbow on the mower; fractured
## 25982                                                                                                                                                                                                                     EE hit his rt hand between a rack and the door
## 25983                                                                                                                                                                                                        EE hit his rt hand on the door frame while removing ladders
## 25984                                                                                                                                                                                                                                      EE hit his shoulder on a pipe
## 25985                                                                                                                                                                                                                   EE hit his shoulder on stairway... Left shoulder
## 25986                                                                                                                                                                                                                        EE hit his wrist on the corner of his desk.
## 25987                                                                                                                                                  EE hit in back of head standing up from bent position as another EE was removing a wood pallet from loading dock.
## 25988                                                                                                                                                                  EE hit in lft side of head by pt while EE putting bib on pt to go to lunch pt knocked EE to floor
## 25989                                                                                                                  EE hit in nose by patient. EE used pit to stop the assault. At the time of incident no discomfortwas in wrist until 6/14. EE seen at clinic 6/17.
## 25990                                                                                                                                                                   EE hit in rear by another veh pushing EE veh into other stopped veh causing back and neck pain..
## 25991                                                                                                                                                                                        EE hit in rear by another vehicle while driving. Minor back and neck injury
## 25992                                                                                                                                                                                          EE hit in rt rear side of vehicle, muscle strained in mid section of back
## 25993                                                                                                                                                                            EE hit in the rear of patrol vehicle while sitting at traffic signal - middle back pain
## 25994                                                                                                                                                                                                   EE hit in the rear when light turned green to avoid car in front
## 25995                                                                                                                                                                                                                                                 EE hit knee on bed
## 25996                                                                                                                                                                                                 EE hit knee on bed frame during the seclution of a hostile patient
## 25997                                                                                                                                                                                                                  EE hit knee on desk while completing daily tasks.
## 25998                                                                                                                                                                                                                                        EE hit knee on end of desk.
## 25999                                                                                                                                                                                                          EE hit knee on filing shelf after filing files. Left knee
## 26000                                                                                                                                                                                                    EE hit knee on metal handle of desk drawer as he was getting up
## 26001                                                                                                                                                                                                                                         EE hit knee on pt/ ot van.
## 26002                                                                                                                                                                                                                                   EE hit knee on the side of desk.
## 26003                                                                                                                                                                                                                                       EE hit knees on steel steps.
## 26004                                                                                                                                                                 EE hit knuckle of right index finger against drink machine. Small scratches to right index finger.
## 26005                                                                                                                                                                                                                                     EE hit left 1st finger on gate
## 26006                                                                                                                                                                                             EE hit left elbow while opening the door of a container that was stuck
## 26007                                                                                                                                                                 EE hit left hand on bed railing when client pushedher down on bed. Laceration/contusion left hand.
## 26008                                                                                                                                                                                                                               EE hit left index finger on bed rail
## 26009                                                                                                                                                                          EE hit left knee on desk when she sat down when she got up and turned left and bent down.
## 26010                                                                                                                                                                                                                                          EE hit left knee on desk.
## 26011                                                                                                                                                                                             EE hit left leg on chair trying to prevent pt fm hitting another pt ()
## 26012                                                                                                                                                                                                                                           EE hit left leg on desk.
## 26013                                                                                                                                                                                            EE hit left leg on metal grating on chair dolly, laceration to left leg
## 26014                                                                                                                                                                                                 EE hit left shoulder on left side of neck on air conditioner vent.
## 26015                                                                                                                                                                          EE hit left top side of head on lower row of mail boxes while rising up from sorting mail
## 26016                                                                                                                                                                                                                                          EE hit left wrist on desk
## 26017                                                                                                                                                                                                                        EE hit left wrist on door when leaving room
## 26018                                                                                                                                                                                             EE hit leg on edge of cart. Rubber edging is no longer around corners.
## 26019                                                                                                                                                                                       EE hit leg on restraint bed while putting patient in seclusion and restraint
## 26020                                                                                                                                                                                                                                         EE hit leg with truck door
## 26021                                                                                                                                                                                                    EE hit lt hand w/ hammmer while changing trap on #40 seam line.
## 26022                                                                                                                                                                                                                                      EE hit lt thumb on door frame
## 26023                                                                                                                                                                      EE hit lt thumb on side of client chair when EE attempted to lift client from chair onto tub.
## 26024                                                                                                                                                                                      EE hit nose on a steel pipe. EE seen in er and released to return to work. ()
## 26025                                                                                                                                                                                      EE hit on hand by someone opening a door with force, injury jammed left wrist
## 26026                                                                                                                      EE hit on head by inmate which knocked him to floor. Inmate then kicked her and sprayed her withpepper spray. Fingernail ripped off, face red
## 26027                                                                                                                                                                                                    EE hit on rt forearm by client being placed in theraputic hold.
## 26028                                                                                                                                                                                         EE hit on the back of his head with a bar of soap. Struck on side of head.
## 26029                                                                                                                                                                                                                       EE hit other in the rear causing back pains.
## 26030                                                                                                                                                                                                                                     EE hit ov in rear-no injuries.
## 26031                                                                                                                                                                                                   EE hit palm & knuckle of rt and on dishmachine causing a bruise.
## 26032                                                                                                                                                                                                             EE hit palm of hand with hammer while holding a stake.
## 26033                                                                                                                                                                                    EE hit r leg on the corner of the desk, EE felt lower back (sort of jar), r hip
## 26034                                                                                                                                                                       EE hit right ankle on computer tower under desk while turning from computer to answer phone.
## 26035                                                                                                                                          EE hit right ankle on dorm 6 med cart wheel. Bruiseee suffered bruise to right ankle when he got up to investigate noise.
## 26036                                                                                                                                                                                                        EE hit right elbow and right shoulder on wall during eri ()
## 26037                                                                                                                                                                                                                                     EE hit right elbow on the wall
## 26038                                                                                                                                                                               EE hit right hand against metal cabinet @ the edgeof doorway. Going to answer phone.
## 26039                                                                                                                                                                                 EE hit right knee on abdominal machine while performing prescribed aerobic circuit
## 26040                                                                                                                                                                                                            EE hit right knee on back side of desk when EE satdown.
## 26041                                                                                                                                                                                                                  EE hit right knee on corner of desk. Rt knee/leg.
## 26042                                                                                                                                                                                                     EE hit right knee on filing cabinet while collecting paperwork
## 26043                                                                                                                                                                                                                 EE hit right side of foot on housekeeping cart. ()
## 26044                                                                                                                                                                                                                          EE hit rt arm on floor breaking up fight.
## 26045                                                                                                                                                                                                                       EE hit rt elbow on post while scraping trays
## 26046                                                                                                                                                                                               EE hit rt hand on corner of organ during christmaslighting ceremony.
## 26047                                                                                                                                                                                                          EE hit rt hand on housekeeping cart causing gangleon cyst
## 26048                                                                                                                                                                                                                      EE hit rt hand on wall tingling and numbness.
## 26049                                                                                                                                                                                                             EE hit rt knee on bed frame while restraining juvenile
## 26050                                                                                                                             EE hit rt knee on coffee table & later hit it again on chair on 4/22. Couldn't walk when she got up. Was not seen in clinic until 5/6.
## 26051                                                                                                                                                                     EE hit rt knee while exiting veh-then twisted sameknee while walking up steps of edwards house
## 26052                                                                                                                                                                                                                                         EE hit rt leg on mail cart
## 26053                                                                                                                                                                                                    EE hit rt leg on tree limb while participating in escape drill.
## 26054                                                                                                                                                                 EE hit rt shin bone on a wooden stand causing her to trip and hit left side of head on door frame.
## 26055                                                                                                                                                           EE hit rt side of floor b/c of student. Pain irritation of rt shoulder. Possible torn cuff or bone spur.
## 26056                                                                                                                                                                                                                           EE hit rt wrist on counter while working
## 26057                                                                                                                                                                                                                     EE hit self in eye with corner of file folder.
## 26058                                                                                                                                                                                                                                 EE hit shin while moving furniture
## 26059                                                                                                                                                                   EE hit the back of his head on underside of desk while standing up from fixing keyboard tray. ()
## 26060                                                                                                                                                                   EE hit the kick plate on the door with her right little finger and received a cut on her knuckle
## 26061                                                                                                                                                                                  EE hit the left side of his back while exiting an ez-go after it had flipped over
## 26062                                                                                                                                                                                                             EE hit the side of a counter with her knee.. Left knee
## 26063                                                                                                                                                       EE hit the top of her leg on a jagged corner of a hamper which the metal frame was broken and protruding out
## 26064                                                                                                                                                                                                                    EE hit thumb on toilet while cleaning behind it
## 26065                                                                                                                                                                                                                                              EE hit thumb w/hammer
## 26066                                                                                                                                                                        EE hit top of cabinet and cut tip of lt thumb while filing paper work and retrieving forms.
## 26067                                                                                                                                                                                                        EE hit top of head when he was coming up the stairs of unit
## 26068                                                                                                                                                                                                                                   EE hit wall with lt side of face
## 26069                                                                                                                                                                      EE hoisting a sign which came loose from the rigging & fell, striking EE on lt shoulder & arm
## 26070                                                                                                                                                                               EE holdin elevator door open for someone else to get on when door closed on rt hand.
## 26071                                                                                                                                      EE holding 20 amp plug in left hand, while tightening plug with screwdriver in rt hand-screw-driver slipped and cut left hand
## 26072                                                                                                                                                                        EE holding a part while student was hammering- student accidentally stuck EE on left thumb.
## 26073                                                                                                                                                                                      EE holding aggressive resident in personal restraint felt pull in rt shoulder
## 26074                                                                                                                                                  EE holding an inmate who was having seizures & took many blows to chest from different body movements from inmate
## 26075                                                                                                                                         EE holding box, hand cart went down ramp. Moss & water on ramp EE slipped & fell on his side, back, left knee, right elbow
## 26076                                                                                                                                                           EE holding child, child pushed back, EE lost balance, avoided falling over infant, fell onto knee & leg.
## 26077                                                                                                                                                                                  EE holding client around chest with both arms and the client pushed EE into wall.
## 26078                                                                                                                                                       EE holding client down during dental procedure- client pushed up against EE resulting in back and chest pain
## 26079                                                                                                                                                                                           EE holding client down for doctor to examine cut and injured rt shoulder
## 26080                                                                                                                                                            EE holding client from injuring another client when client fell forward and EE felt pull in lower back.
## 26081                                                                                                                                                                        EE holding client to give iv in arm when client became upset and EE injured back in process
## 26082                                                                                                                                                 EE holding crowbar assisting with tire change when tire gave way striking hand causing laceration to left hand. ()
## 26083                                                                                                                                          EE holding door for people exiting, EE stepped wrong lost balance & fell down stairs onto concrete injury right lower leg
## 26084                                                                                                                                                       EE holding door open for clients-client grabbed eeleft wrist and pulled EE toward him-bit EE on leftforearm.
## 26085                                                                                                                                                                               EE holding door open so another EE could enter w/ food cart-door closed on EE's arm.
## 26086                                                                                                                                                                                                      EE holding door to cellblock due to fire, & he inhaled smoke.
## 26087                                                                                                                          EE holding down client w/two other EE's-client doing a lot of kicking, pulling and jerking which caused EE to feel pain in left shoulder.
## 26088                                                                                                                     EE holding down inmate had been severly injured to prevent any further injury inmate scrached him on lt arm with his fingernail. Lt upper arm.
## 26089                                                                                                                                                            EE holding elevator door open for another EE. Door shut. Crush injury to 3rd finger. Poss hair- line fx
## 26090                                                                                                                   EE holding horse during threat of rain. Inside carriage house, horse stepped on end of EE foot horse shifted & released foot & EE fell backwards
## 26091                                                                                                                                                                        EE holding ladder for co-worker when light fixturebroke causing glass to cut EE's left hand
## 26092                                                                                                                                                                     EE holding onto client's belt when client fell back into chair landing on EE's left hand/wrist
## 26093                                                                                                                                           EE holding paper in place w/left hand and pulling blade w/rt hand-pulled the cutting edge down w/outremoving his finger.
## 26094                                                                                               EE holding patient hand so pt couldn't scratch herself. Attempted to redirect patient, patient pulled herself to floor, EE assisted patient back into wheelchair. ()
## 26095                                                                                                                                                                                 EE holding plywood with left hand when saw blade slipped and cut top of left thumb
## 26096                                                                                                                              EE holding resident. Getting out of van twisted rt knee when resident being removed from van. Knee painful, swolled. Limited flexion.
## 26097                                                                                                                                                                                                    EE holding security road squad while inmates picked up trash ()
## 26098                                                                                                                                                                             EE holding shotgun for unit #1 - when he was try- ing to position himself knee popped.
## 26099                                                                                                                                                                     EE holding wrench. Ronald glover hammering on wrench a glancing blow from hammer hit left hand
## 26100                                                                                                                                                                   EE holds phone receiver between head & neck on shoulder causing pain in shoulder & neck areas ()
## 26101                                                                                                                                                                                         EE hooked client's entertainment center up and began itching (body & eyes)
## 26102                                                                                                                                                                                                  EE hosing down trayline and lost footing hurt rt knee in process.
## 26103                                                                                                                                                                   EE hosting family fellowship program-playing with ball tripped and fell injuring lower left leg.
## 26104                                                                                                                                                                                                                                  EE hot hydranlic fluid in his eye
## 26105                                                                                                                                                                                              EE hs ear infection from exposure to smoke and dust for several days.
## 26106                                                                                                                                                                                             EE hung foot on equipment placed under the x-ray table twisting ankle.
## 26107                                                                                                                                                               EE hung her foot on bicycle rack causing her to fall. EE was walking into building coming from work.
## 26108                                                                                                                                                                               EE hurt arm during unarmed self-defense- mechanicarestraints and advance restraints.
## 26109                                                                                                                                                                                           EE hurt back & neck when chair at her desk & slipped out from under her.
## 26110                                                                                                                                                                           EE hurt back lifting pt who was on stretcher up sostretcher could be changed from table,
## 26111                                                                                                             EE hurt back picking a client up off of the floor. The EE was out of work for 7 days and then returned back to work. EE was seen in the er for treatme
## 26112                                                                                                                                                                                       EE hurt back when patient in bed and got worse @ 9:30 and reported to nurse.
## 26113                                                                                                                                                                                                                   EE hurt back while attemtping to move some boxes
## 26114                                                                                                                                                                                                                          EE hurt back while liftin boxes of paper.
## 26115                                                                                                                                                                                                                 EE hurt back while lifting a client out of a chair
## 26116                                                                                                                                                                                                                                  EE hurt back while lifting client
## 26117                                                                                                                                                                             EE hurt back while lifting full 5-gal. Bucket of paper pulp from floor to table level.
## 26118                                                                                                                                                                                                             EE hurt back while moving furinture in order to paint.
## 26119                                                                                                                                                                                                         EE hurt back while trying to place pt in manual restraints
## 26120                                                                                                                                                                                                                    EE hurt back while trying to restrain a patient
## 26121                                                                                                                                                                                                                           EE hurt her hand while waxing the floor.
## 26122                                                                                                              EE hurt her knee. Vague as to how injury occured. Eeinformed to go to the c. P e/r if inj occured whileperform'g duties-stated she would go to her Dr
## 26123                                                                                                                                                                 EE hurt her right upper arm by jerking on a bed rail several times in order to pull it back up. ()
## 26124                                                                                                                                                                                                  EE hurt her shoulder while trying to prevent patient from falling
## 26125                                                                                                                                                                                       EE hurt her wrist from repetitive motion of crushing pill to give to client.
## 26126                                                                                                                                                                                                                            EE hurt his back while picking up boxes
## 26127                                                                                                                                                                                                                          EE hurt his low back hanging mini blinds.
## 26128                                                                                                                                                              EE hurt his neck during a physical altercation with a violent inmate. Injure upper shoulder and neck.
## 26129                                                                                                                                                                                                  EE hurt his pointing finger in the process of restraining student
## 26130                                                                                                                                                                                                                      EE hurt his right foot while climbing stairs.
## 26131                                                                                                                                                                                                  EE hurt l shoulder when she lifted a pot of chicken from the oven
## 26132                                                                                                                                        EE hurt left knee while performing half squat jumpduring fitness training. Did not feel pain until performing one mile walk
## 26133                                                                                                                                                                                                          EE hurt left shoulder and neck while restraining students
## 26134                                                                                                                      EE hurt left shoulder during unarmed self defense training, when he fell on th mat while hand cuffed from behind landing on his left shoulder
## 26135                                                                                                                                                                                                        EE hurt left shoulder while throwing hay bale intobarn loft
## 26136                                                                                                                                                                                                          EE hurt left wrist when a heavy box EE was liftingshifted
## 26137                                                                                                                                                                                                                    EE hurt leg trying to stop client from falling.
## 26138                                                                                                                                                                         EE hurt lower back attempting to prevent a client from falling. EE will rtw on 12/22/09 ()
## 26139                                                                                                                                                                                          EE hurt lower back while lifting client in a wheel-chair up into the van.
## 26140                                                                                                                                                                EE hurt lower back while pulling an oversized box containing toner cartridges to a storage room. ()
## 26141                                                                                                                                                                                                                  EE hurt r arm when she grabbed pt to prevent fall
## 26142                                                                                                                                                                                                                  EE hurt ribs while participating in nci training.
## 26143                                                                                                                                                                                      EE hurt right arm while holding a patient up that would not stand on his own.
## 26144                                                                                                                                                                                                                               EE hurt right shoulder during eri ()
## 26145                                                                                                      EE hurt right shoulder implementing an emergency manual restraint and therapeutic carry on a client. EE sent to physician primecare and taken out of work. ()
## 26146                                                                                                                                                                                                    EE hurt right wrist while participating in unarmedself defense.
## 26147                                                                                                                                                                                                                  EE hurt rt arm by pulling baton out of the holder
## 26148                                                                                                                                                                                                          EE hurt rt knee after responding to two body alarmalerts.
## 26149                                                                                                                                                                                                           EE hurt rt knee while working off ladder scrappingpaint.
## 26150                                                                                                                                                                                                          EE hurt self off of steep endbankment and subsequent fall
## 26151                                                                                                                                                                                                                          EE hurt side of chest trying to open door
## 26152                                                                                                                                                                                        EE hurt the right side neck and shoulder when she turned to lower a box. ()
## 26153                                                                                                                                                                                     EE hurt upper left rib ara during guard in/guard out exercise & mount exercise
## 26154                                                                                                                                               EE hurt wrist doing paitent care pt was resistant and pushing back while EE attempted to clean him. Injuried r wrist
## 26155                                                                                                                                                  EE hurt wrist while putting frozen 1 gallon bags of ice cream in sink of cold water for thaw. Strained left wrist
## 26156                                                                                                                                                                                                       EE hydroplaned and ran into water and ran off roadinto road.
## 26157                                                                                                                                                                                                    EE hyper-extended left finger during defensive tactics training
## 26158                                                                                                                                                                                                          EE hyperextended her left calf during "pic" with patient.
## 26159                                                                                                                                                                EE hyperextended left foot stepping off curb; injured left foot, ligament damage, hairline fracture
## 26160                                                                                                                                                                                          EE hyperextended rotator cuff while reaching for aclient who was falling.
## 26161                                                                                                                                                                        EE illeges he slipped on ice on steps near mciver bldg while walking from car to office. ()
## 26162                                                             EE illeges he was attempting to arrest a subject when the subject tried to escape causing a scuffle. At some point during the scuffle his lower left leg was injured casuing swelling and bruising. ()
## 26163                                                                                                               EE illeges he was directing traffic in the walker parking deck and stepped wrong while directing traffic and felt a sharp pain in the right foot. ()
## 26164                                                                                                                                           EE illeges he was in the attic of the foust building, stoop up too early and hit the top of his head on a thread rod. ()
## 26165                                                                                                                                   EE illeges he was in the process of securing the curry building when he was bitten by something on the left side of his neck. ()
## 26166                                                                                                                                                                    EE illeges lifting a large bag out of trash can when she experienced pain to her left wrist. ()
## 26167                                                                                                        EE illeges that he slipped on the floor of the elliott student center. He had just entered the building from outside where it had been snowing/sleeting. ()
## 26168       EE illeges that while attempting to arrest a subject he used physical force to bring the subject to the ground. The struggle took place in a gravel parking lot. During the scuffle he landed on both knees and hurt his left knee and it began to swell up.
## 26169                                                                                                                                                      EE impaled by fish spine while attempting to measrfish. Left fing finger impaled, spine broken off under skin
## 26170                                                                                                                                                                                             EE implementing bsp when resident grabbed EE rightarm and bit forearm.
## 26171                                                                                                                                                                                             EE implementing bsp when resident reached over & bit EE's left forearm
## 26172                                                                                                                                                                                             EE in a hurry to get to cashier dept-tripped and fell on rt/left knee.
## 26173                                                                                                                                                                              EE in altercation with inmate- fell backwards and hit his head on a wooden table leg.
## 26174                                                                                                                                                                                                                                             EE in an auto accident
## 26175                                                                                                                                                              EE in argument when co-worker thru a punch to throat & knocked EE off feet to floor contusion to back
## 26176                                                                                                                                             EE in attempt to place inmate in control in bent wrist come along, alleges scrapped rt thumb and lt thumb on handcuffs
## 26177                                                                                                                                                                EE in auto accident after classes at halifax comm college, EE did not return to work. Took vacation
## 26178                                                                                                                           EE in basic training practicing restraint techniquest partner was practicing handcuff application when lt wrist bone was hit w/handcuffs
## 26179                                                                                                                                                                      EE in basic training, walking to classroom when stepped into hole w/left foot causing fall ()
## 26180                                                                                                                                     EE in bathroom & stepped out of shower & slipped on wet floor & fell backwards on her back causing pain in lower part of back.
## 26181                                                                                                              EE in boat unloading garbage bags containing fish carcasses 25-30lbs/bag along a gunnel. Bag slippedoff & EE attempt to catch it. Strain lt shoulder.
## 26182                                                                                                                                                                                                      EE in booth waiting on customer when light bulb fell on head.
## 26183                                                                                                                                                                                      EE in burn bldg w/face mask on-small particles of debris blew into right eye.
## 26184                                                                                                                EE in canada attending seminar. Alleges slipped onicy sidewalk, while off campus, hurt tailbone. Next day alleges fell in hotel room & cut forehead
## 26185                                                                                                                      EE in car waiting in line during drug interdictionat prison, when another officer ran into the back of her car. Injured head, neck, and back.
## 26186                                                                                                                                                     EE in chair at table in gym. Pulled chair closer to table, struck her lt knee on bar attached. Struck lt knee.
## 26187                                                                                                                                          EE in chicago il when limo driver stopped suddenly on the way from airport-EE was thrown forward straining back and thumb
## 26188                                                                                                                                                                                 EE in classroom interpretering, got up, tripped over pt's foot, landed on belly ()
## 26189                                                                                                                         EE in cobt trg. (12/4/08) on mount release practice, was thrown & landed on her rt. Side, then 12/13/08 firearms trg. Re-bruised same area
## 26190                                                                                                                                                              EE in control room reviewing camers. Moved computer mouse & piece of debris/paper flew up into eye ()
## 26191                                                                                                                                                                  EE in control room sitting looking at his computer. Stood up and passed out and hit the floor. ()
## 26192                                                                                                                                                                                                     EE in crdt pushed off & landed on rt side causing ribs to hurt
## 26193                                                                                                                                                                                                               EE in crdt training 6-19-06 & felt pain in left knee
## 26194                                                                                                                                                                                                                                 EE in crdt training, hurt rt groin
## 26195                                                                                                                                            EE in crdt training-performing fall with partner when her partner threw her off him & she fell on her left side & elbow
## 26196                                                                                                      EE in echo dorm assisting in physical restraint of inmate. Bent to secure inmate's legs. When lifting inmate felt pull in upper rear thigh area, left leg. ()
## 26197                                                                                                                                                                      EE in field setting up trapping-eye became infected & had allergic reaction unknown substance
## 26198                                                                                                                                                                                   EE in firearms qualification on polk cty range bitten by fire ans on legs/ankles
## 26199                                                                                                                                                                                                  EE in foot chase with dwt suspect and pulled hamstring in lt leg.
## 26200                                                                                                                                                     EE in foot chase- att to jump wall and foot got caught causing EE to fall to roadway hitting left arm and knee
## 26201                                                                                                                                                                                          EE in foot pursuit of a violator when he ran into a strand of barbed wire
## 26202                                                                                                                                                                                  EE in foot pursuit of suspect fell over small treestumps injury to right shoulder
## 26203                                                                                                                                      EE in foot pursuit of suspect when he lost balance& fell-struck ground dislocating rt shoulder bloodied nose-scratched rt arm
## 26204                                                                                                                                                                             EE in her reg. Work area, constr. Crew addicentallycaused a fire using gas powered saw
## 26205                                                                                                                                                                                                 EE in housekeeping room, client ran up and grabbed EE's right arm.
## 26206                                                                                                             EE in hurry to set up dept display and used a cosmetology shop chair to stand on; it spun and she twisted to catch herself. MD said muscle inflamed an
## 26207                                                                                                                                EE in kitchen cooking lunch for clients. He squatted down to pick up a dropped spoon, when stood up, felt burning pain in left knee
## 26208                                                                                                                                                                        EE in kneeling position restraining an inmate. When EE stood up, he twisted his lower back.
## 26209                                                                                                                                  EE in ladies room & noticed a big brown bug crawling up leg & kicked her leg several times to dislodge put foot down & twisted it
## 26210                                                                                                                  EE in left turn lane-preparing to turn onto I-40 when car was struck in rear by pickup truck and propelled into vehicle in front-back/neck strain
## 26211                                                                                                                                                                      EE in line behind lady with a tray-glass fell fromtray and something flew into EE's left eye.
## 26212                                                                                                                                       EE in line of traffice waiting on light to change when third veh hit second veh causing second veh to hit EE veh in the rear
## 26213                                                                                                                 EE in linen room getting towels. Stepped on bottomshelf & bumped her back on door, threw her off balance landing awkardly on rt foot/heel--sprain.
## 26214                                                                                                                                               EE in lower cate had body wrapped around to pump aniimal fell out of cage sending pump down. Injured head, forehead.
## 26215                                                                                                                       EE in mgr office looking at records, EE needed to use bathroom EE fell walking down steps and landedon brick floor(head&chest)legs on stairs
## 26216                                                                                                                                                                                                 EE in mva; pert van ran off rd, equipment in van struck EE in head
## 26217                                                                                                                                                                                                 EE in network circuit room and hit head on back ofa standing rack.
## 26218                                                                                                                                                         EE in office chair stood up lft knee tightened & started hurting could not stand. Lft knee tight & painful
## 26219                                                                                                                          EE in overnight status due to location of assign- ment. She slipped in bathroom getting out of shower onto a towel and fell to the floor.
## 26220                                                                                                                 EE in patrol vehicle traveling north on us 701. Asee approached intersection of rp 1515, a red veh. Entered path of EE striking his veh. Low back.
## 26221                                                                                                                                             EE in pepper mace training, instructed sgt white to open both eyes after being sprayed with pepper spray in face area.
## 26222                                                                                                                                EE in pepper spray training, she was sprayed and afterward water to remove spray. Combination of the 2 caused respiratory infection
## 26223                                                                                                                                                                          EE in persuit of suspect vehicle - when law enforcement vehicle lost control and wrecked.
## 26224                                                                                                                                                   EE in persuit of suspect, lost control of car spinning several times, causing injuries to left arm, neck & back.
## 26225                                                                                                             EE in persuit violator & while making lt turn on rd lost control vehicle ran off rt shoulder. Hit utility pole. Contusion lt hand, knee, chest & abdom
## 26226                                                                                                                                   EE in physical training including leg lifting and running when after EE felt pain when walking normal. Pain continued to worsen.
## 26227                                                                                                                                                                                                 EE in pic refresher and bent to get in stance and felt rt knee pop
## 26228                                                                                                                                                                    EE in pool during swim. Camper ran into him under water, poking her finger in eye. Injured eye.
## 26229                                                                                                                                                  EE in pool with clients went under water when a client pushed in between in the process scratched EE on lt check.
## 26230                                                                                                                                              EE in position to fire rifle-completed firing-tried to get back up-leg gave way & fell to ground injuring right ankle
## 26231                                                                                                                                             EE in process in arresting suspect-suspect fled onfoot-EE went after suspect and fell in grass injuring left shoulder.
## 26232                                                                                                                                        EE in process of carrying mail for unit. Bag was tearing and he attempted to place on his shoulder felt pull in lower back.
## 26233                                                                                                                    EE in process of cleaning bathrooms. Started to pick up cleaning solution & dropped in on floor. The bottle cracked, chemical splashed in eyes.
## 26234                                                                                                                                                                EE in process of closing an inmate cell door, he struck his rt hand with the door. Injured rt hand.
## 26235                                                                                                                                EE in process of doing routine home visit, vehiclewas struck in rear by vehicle driven by amy newtonstrain to upper and lower back.
## 26236                                                                                                                                     EE in process of escorting inmate to his cell, wheninmate assaulted EE with hand cuffs by striking him on lt neck area & face.
## 26237                                                                                                                                                                                                             EE in process of exiting truck & twisted his rightknee
## 26238                                                                                                                             EE in process of getting injured inmate put out of his cell, putting cuffs on inmate her inner rt forearm and made contact with blood.
## 26239                                                                                                                                                                             EE in process of installing brake shoes on truck, pliers slipped & hit EE across nose.
## 26240                                                                                                                      EE in process of opening d-dorm gate, when holdingrod slipped down and caught finger between rod & gate, cutting lt index finger. Laceration.
## 26241                                                                                                                                                   EE in process of overtaking a motorist for a violation-when another veh collided into the drivrside of EE's veh.
## 26242                                                                                                                                                                        EE in process of placing a client in pic hold and EE fell and client fell on EE's left leg.
## 26243                                                                                                                                                                                       EE in process of placing client in restraint when client kicked EE in chest.
## 26244                                                                                                                                                                                           EE in process of restraining client when client head-butted EE in chest.
## 26245                                                                                                                                                                    EE in procss of controling a hostile inmate he hitelbow on floor. Minor laceration on rt elbow.
## 26246                                                                                                                 EE in pt room to break a fight that had occurred, when pt attacked staff member. EE slipped in room bc pt had dropped dental cup. Injured lt knee.
## 26247                                                                                                                EE in pusuit of suspect on foot. When EE caught upw/suspect, suspect punched EE in rt eye with a closed fist. EE also sprain lt ankle, subduing sus
## 26248                                                                                                                                                 EE in restroom & tried to flush toilet w/foot & other leg slipped out from under & she hit her wrist, elbow & leg.
## 26249                                                                                                                                                                   EE in route to charlotte for univ function had car accident---injury to back, shoulder, headache
## 26250                                                                                                                  EE in route to do home visit of proationer, drivngon 601 to lincolnton rd toward highschool, as EE approached area another auto pulled in path of
## 26251                                                                                                                                        EE in route to do home visit with probationers, EE vehicle struck by another vehicle, which failedto yield to right of way.
## 26252                                                                                                                                                                                EE in route to her next post & when she got to thegate the latch struck her forearm
## 26253                                                                                                              EE in route to pick up client when car came acrossmedian and hit drivers side of st vehicle. Ribs, rt wrist & arm, lt neck, lower back, cuts to face.
## 26254                                                                                                                                                                            EE in rover 2 on chase road around prison perimeter. Backed up into another vehicle. ()
## 26255                                                                                                                                                                        EE in rush responding to network emergency coming down stairs stepped wrong turned rt foot.
## 26256                                                                                                                                                                                        EE in scat training planted right foot and felt sharp pain in right big toe
## 26257                                                                                                                                                                                                                       EE in self-defense training and injured back
## 26258                                                                                                                                                                            EE in serving line & turned to address an inmate &heard a pop & felt sharp pain in knee
## 26259                                                                                                                   EE in state vehicle on the way to wilson. Forgot an item in the office as she was leaving, got out of the car quickly & turned foot. Right foot.
## 26260                                                                                                                                                                    EE in state vehicle-while turning into driveway was rear-ended by another vehicle-neck injuries
## 26261                                                                                                                                            EE in steep, rugged terrain search for person. Fell several times over the course of search injuring left ankle & foot.
## 26262                                                                                                                                                                           EE in street directing traffic for basketball game, stuck by vehicle. Contusion rt foot.
## 26263                                                                                                                                                             EE in tapp basement-someone yelled "tapp" and EE turned suddenly and felt sharp pain in rt leg to heel
## 26264                                                                                                                                                                                               EE in the process of retreiving a 20' shrimp and strained lower back
## 26265                                                                                                                                                                        EE in the process of unloading a forklift, the dock plate fell and landed on his left foot.
## 26266                                                                                                                                                                                                                                        EE in training event, knees
## 26267                                                                                                                                                                                          EE in training learning proper way to fall injuredherself, herniated disk
## 26268                                                                                                                                            EE in training lt shoulder pushed upward when he fell to the mat practicing throwing someone off shoulder, heard it pop
## 26269                                                                                                                                                                            EE in truck with associate when associate backed into a pole injury lower back and neck
## 26270                                                                                                                                                                                EE in unarmed self defense training kicking & striking pad when she injured rt foot
## 26271                                                                                                               EE in unit 7, inmate disobeyed order. Oc spray wasadministered. Inmate began to assault EE with fistee's glasses were damaged, cuts/swelling to head
## 26272                                                                                                                     EE in vehicle pursuit. Suspect vehicle struck EE patrol vehicle. After collision EE complained of pain in head & neck from impact. Neck strain
## 26273                                                                                                                                                                                      EE in work area, contr. Crew accidentally caused a fire using gas powered saw
## 26274                                                                                                                                                                                  EE in yard observing inmate traffic when she was stung by bee. Stung on lt wrist.
## 26275                                                                                                                                                  EE in-service training, crdt. Partner technique to put EE on ground. Shoulder went to ground and EE heard pop. ()
## 26276                                                                                                                        EE inadvertently walked into poison ivy while conducting a waster water compliance check. 24 hrssymptoms of reaction, 48hrs aleric symptoms
## 26277                                                                                                                                                                       EE indicated he fell on his elbow and thumb while struggling with a subject he was arresting
## 26278                                                                                                                                       EE indicated she fell coming back into the building from lunch. Appatnetly she fell on a step-up on the side walk (curb). ()
## 26279                                                                                                                                                                                                                    EE indicated some discomfort in hand and wrist.
## 26280                                                                                                                                              EE indicated that she was crossing the yard and stepped on uneven ground and pulled the muscle in the back of her leg
## 26281                                                                                                                               EE indicated that she was stooped at a traffic light and another vehicle hit rear bumper of her vehicle, causing EE to jerk forward.
## 26282                                                                                                                                      EE indicates he developed post trumatic stress disorder while meeting with supv to discuss EE's misuse of state e-mail system
## 26283                                                                                         EE indicates repetitive pushups and other exercises caused soreness in right shoulder; then pain started in neck and shoulder radiating down right arm, elbow and wrist ()
## 26284                                                                                                                                                                                       EE indicates she slipped on water outside ladies lavatory on her hallway. ()
## 26285                                                                                                                                                        EE indicates she strained her lower back when she sat up and turned after going through her recycle box. ()
## 26286                                                                                                                                        EE indicates she was carrying mail crate while looking for a vehicle to use in the parking lot totake the mail to the usps.
## 26287                                                                                                                      EE indicates she was pushing one cart & pulling another cart down a ramp. Pulled one cart onto her left ankle resulting in cut to left ankle.
## 26288                                                                                                                 EE indicates that she has pain/discomfort in both hands which she attributes to use of the computer. Evaluated at ueohc, ergo. Eval. Requested. ()
## 26289                                    EE indicates that she is experiencing pain in l shoulder / upper back due to sitting for long periods of time, computer use, etc. EE indicates she had a pre-existing issue prior to coming to work for unc in January 2013. ()
## 26290                                                                                                                                       EE indicates that while at lunch she tripped over uneven bricks on the outside patio while trying to avoid a stinging insect
## 26291                                                                                     EE indictates that while reaching for a file on top of a file cabinet, the file was falling & arm was twisted in process of trying to catch file. Impact by falling object. ()
## 26292                                                                                   EE inflating flat tire on hand truck (small tire), tire burst and hit EE's left hand between thumb and index finger. Bruise and cut to left index finger (no stitches required).
## 26293                                                                                                                                                                 EE inflating; tire exploded injuring fingers on both hands, face, knocked teeth out, broke glasses
## 26294                                                                                                                 EE informed er the day after accident that he hit his head on pipe exiting an air handling unit. EE didn't think it was too bad til cont. Headache
## 26295                                                                                                               EE informed her superior the next morning that thefumes from a chemical stripper being used in an adjacent office affected her present breathing pro
## 26296                                                                                                                             EE informed patient of intent to begin bath and ptreached out and scratched EE on the left side of face, approximately one inch long..
## 26297                                                                                                                                                      EE informed resident he could not smoke, resident became violent, hit EE in stomach and EE fell and hit head.
## 26298                                                                                                                                                                   EE inhaled battery acid fumes, as he entered a closed door. Inmate had left a battery on charge.
## 26299                                                                                                                                                                                                                  EE inhaled chemicals which produced a headache ()
## 26300                                                                                                                                                                                                      EE inhaled chemicals while teaching senior course cat- 661681
## 26301                                                                                                                                                                                                       EE inhaled cleaner while washing condenser coils for ac unit
## 26302                                                                                                                                                                                                                                EE inhaled cleaning fluids fumes ()
## 26303                                                                                                                                                                                                                       EE inhaled dried dust from fire extinguisher
## 26304                                                                                                                                                                                                          EE inhaled ferric cyanide while cleaning out refrigerator
## 26305                                                                                                                                                                                                      EE inhaled fire extinguisher powder while sweeping stairs. ()
## 26306                                                                                                                                         EE inhaled flame retardant from inside a disconnected fire panel from his vehicle. He has coughing and tightness in chest.
## 26307                                                                                                                                                                                                                    EE inhaled fumes from a/c unit for over a month
## 26308                                                                                                                                                                                                             EE inhaled fumes from bottle of m-95 mild acid cleaner
## 26309                                                                                                                                                                                       EE inhaled fumes from heating system of vehicle in which he was operating ()
## 26310                                                                                                                                                                                                               EE inhaled fumes that that burned her eyes and lungs
## 26311                                                                                                                                                                   EE inhaled odor/fumes while investigating smoke and fumes in annex. Temporary breathing problems
## 26312                                                                                                                                                                                                                                             EE inhaled paint fumes
## 26313                                                                                                                                                                                                                                              EE inhaled propane ()
## 26314                                                                                                                                EE inhaled sheetrock dust during construction work in the classroom near her office. EE reported severe lung irritationand coughing
## 26315                                                                                                                                                                                                          EE inhaled smike from an inmate setting fire in his cell.
## 26316                                                                                                                                                     EE inhaled smoke and fire extinguisher fumes from fire on unit-also strained lifting clients during evacuation
## 26317                                                                                                                                                                                  EE inhaled smoke from fire and smoke from inmates cell. Smoke inhalation to lungs
## 26318                                                                                                                                                                                                              EE inhaled some fumes that caused him to become dizzy
## 26319                                                                                                                                              EE inhaled some odor for about 1 hour prior to exiting the building for the audit. No injuries reported at this time.
## 26320                                                                                                                                                         EE inhaling unknown air containmant in department office. Injured thoat, eyes, lungs burning, elevated bp.
## 26321                                                                                                                                                                      EE initiated a pic hold because a patient became aggressive and later EE stated pain in back.
## 26322                                                                                                                                                                                                                                   EE inivolved in auto accident ()
## 26323                                                                                                                                                                                                   EE injected monkey, & poked hand with needle afterthe injection.
## 26324                                                                                                                                                                     EE injecting mouse infected with borrelia burgdorfer EE pricked index finger tip of right hand
## 26325                                                                                                                                                                                EE injurd his right ankle when he stepped on a rock causing him to twist his ankle.
## 26326                                                                                                                                                                                                                      EE injured ankle while doing daily activities
## 26327                                                                                                                                                                                                EE injured ankle while removing window a/c unit from van to install
## 26328                                                                                                                                                                        EE injured arm due to pushing wheelchair. **oow 7/29 x 8/17/03** EE's work # - 919-575-1300
## 26329                                                                                                                                                                                                      EE injured back & arms trying to keep a patient from falling.
## 26330                                                                                                                                                              EE injured back & scrotal area by lifting a wetvac& pushing tables. He has been referred to a surgeon
## 26331                                                                                                                                                                                            EE injured back & umbilical hernia while restraining aggitated patient.
## 26332                                                                                                                                                                                                                                   EE injured back and leg on couch
## 26333                                                                                                                                                               EE injured back by pulling surplus refrigerators up a flight of steps in the graduate dorm basement.
## 26334                                                                                                                                                                                                                 EE injured back lifting a client from a wheelchair
## 26335                                                                                                                                                                                          EE injured back lifting scan tron equipment. Causing strain to lower back
## 26336                                                                                                                                                                                                                                  EE injured back moving a computer
## 26337                                                                                                                                                                                                                                   EE injured back moving equipment
## 26338                                                                                                                                                                                               EE injured back putting a tailgate and bumper under deck for storage
## 26339                                                                                                                                                                                                                EE injured back trying to keep client from falling.
## 26340                                                                                                                                                                                              EE injured back trying to prevent a patient from falling out of chair
## 26341                                                                                                                                                                                                             EE injured back trying to pull x-ray tube to the side.
## 26342                                                                                                                                                                                                   EE injured back when he swung his right leg over tongue of plow.
## 26343                                                                                                                                                                                                   EE injured back when he tried to prevent a patient from falling.
## 26344                                                                                                                                                                                                               EE injured back when he was lifting the heavy boxes.
## 26345                                                                                                                                                       EE injured back when he was struggling with a patient who had attempted to escape. Contusion/ strain lumbar.
## 26346                                                                                                                                        EE injured back when inmate fell on her as she fainted in the hallway. Both EE & inmate ended up on floor. Injured mid-back
## 26347                                                                                                                                                                                                                         EE injured back when lifting recycling bin
## 26348                                                                                                                                                                                                                   EE injured back while catching a falling client.
## 26349                                                                                                                                                                                                                          EE injured back while emptying mop bucket
## 26350                                                                                                                                                                                                                EE injured back while getting out of ditch on rocks
## 26351                                                                                                                                                                                                                   EE injured back while handling a bucket of water
## 26352                                                                                                                                                                                                                      EE injured back while handling an ice machine
## 26353                                                                                                                                                                                                                                EE injured back while lifting a bag
## 26354                                                                                                                                                                                                                         EE injured back while lifting a mop bucket
## 26355                                                                                                                                                                                 EE injured back while lifting a patient from wheelchair to commode in bathroom. ()
## 26356                                                                                                                                                    EE injured back while lifting a storage container from the ground into the rear area of a state owned mini-van.
## 26357                                                                                                                                                                                                                     EE injured back while lifting heavy trash bags
## 26358                                                                                                                                                                                                                  EE injured back while lifting racks holding cages
## 26359                                                                                                                                                                                            EE injured back while lifting surgical packs to get to needed supplies.
## 26360                                                                                                                                                                                                     EE injured back while moving computer equipment in his office.
## 26361                                                                                                                                                                                                                     EE injured back while moving computer hardware
## 26362                                                                                                                                                                                                                       EE injured back while patrolling kerr lake .
## 26363                                                                                                                                                                                    EE injured back while rearranging computer tower that was on desk to be surplus
## 26364                                                                                                                                                                                                          EE injured back while trying to keep client from falling.
## 26365                                                                                                                                                                            EE injured back while trying to prevent patient from falling in bathroom. Lumbar strain
## 26366                                                                                                                                                                                        EE injured back while trying to pull an inmate away and off of staff member
## 26367                                                                                                                                                                                                         EE injured back while trying to pull patient up from floor
## 26368                                                                                                                                                                                                                      EE injured back while trying to restrain a pt
## 26369                                                                                                                                                                                          EE injured back while trying to subdue aggressive client. Was also bitten
## 26370                                                                                                                                                                                                                              EE injured back while unloading truck
## 26371                                                                                                                                                                                             EE injured back while working on the stapler cartridge on the printer.
## 26372                                                                                                                                                                                           EE injured both eyes while instructing an inmate on how to use a welder.
## 26373                                                                                                                                                                                                     EE injured both knees persuing a student that was running away
## 26374                                                                                                                                                                                                                 EE injured both knees while apprehending a suspect
## 26375                                                                                                                                                                                                                             EE injured breast--hit by file cabinet
## 26376                                                                                                                                                                                                                    EE injured by needle stick to lt base of thumb.
## 26377                                                                                                                                                                                   EE injured by picking up client by the armpit, injured shoulders and upper back.
## 26378                                                                                                                                              EE injured during incident however EE's inhaled a lot of smoke burning plastic and powder from the fire extinguisher.
## 26379                                                                                                                                                                         EE injured foot by walking quickly to retrieve equipement for the treatment of a resident.
## 26380                                                                                                                                                                                                                            EE injured foot while subdueing student
## 26381                                                                                                                                                                                                            EE injured hand during physical restraint of a juvenile
## 26382                                                                                                                                                                            EE injured hand while standing between two patient s while they were in an altercation.
## 26383                                                                                                                                                                                                                                        EE injured hand with sander
## 26384                                                                                                                                                                                                                    EE injured hand/arm while restraining an inmate
## 26385                                                                                                                                     EE injured her ankle due to repetitve movement during training. Also indicated low back pain. Surgeryis required on her ankle.
## 26386                                                                                                                                                                                                EE injured her back and left leg while lifting a case of applesauce
## 26387                                                                                                                                                                                                EE injured her back during a medical emergency assisting an inmate.
## 26388                                                                                                                                   EE injured her back from repetitive motion of picking up textbooks and boxes from student store textbook reservation program. ()
## 26389                                                                                                                                                                                                                        EE injured her back helping patient w/ bath
## 26390                                                                                                                                                                                                          EE injured her back struggling with an aggressive patient
## 26391                                                                                                                                                                                                       EE injured her back trying to carry 4 large feed tubs. Back.
## 26392                                                                                                                                                                   EE injured her back when the van that she was in had to make a sudden stop to avoid an accident.
## 26393                                                                                                                                                                                                    EE injured her back while bending over to pick up some supplies
## 26394                                                                                                                                                                                                                            EE injured her back while lifting a pt.
## 26395                                                                                                                                                                                                                       EE injured her back while lifting inmate bag
## 26396                                                                                                                                                                                                      EE injured her back while lifting resident from bed to chair.
## 26397                                                                                                                                                                                                                             EE injured her back while moving a bed
## 26398                                                                                                                                                                                                            EE injured her back while moving a computer to her desk
## 26399                                                                                                                                                                                                     EE injured her back while moving client to wheelchair to couch
## 26400                                                                                                                                              EE injured her back while packing and moving boxes; injured left hand numb, left shoulder muscleright side back spasm
## 26401                                                                                                                                                                                      EE injured her back while pulling an exam table in order to conduct inventory
## 26402                                                                                                                                                                                                                   EE injured her back while pushing a trolley cart
## 26403                                                                                                                                                                                                     EE injured her back while removing records from filing cabinet
## 26404                                                                                                                                                                                                                    EE injured her back while restraining a student
## 26405                                                                                                                                                                                                  EE injured her back while restraining patient rt thoracic strain.
## 26406                                                                                                                                                                                                        EE injured her back while she was trying to bathe a patient
## 26407                                                                                                                                               EE injured her back while stepping up on a ladder to a truck--EE was checking to make sure no inmatewas in the truck
## 26408                                                                                                                                                                                            EE injured her back while trying to keep client from falling; neck also
## 26409                                                                                                                                                                                                          EE injured her back while trying to lift an inmateoff bed
## 26410                                                                                                                                                                          EE injured her back while while doing therapy witha child on a therapy ball... Upper back
## 26411                                                                                                                                                                                    EE injured her elbow when she intervened when several patients became agitated.
## 26412                                                                                                                                                                EE injured her finger while grabbing a firing weapon causing her finger to be caught in the trigger
## 26413                                                                                                              EE injured her head and l elbow on the day of injury. EE complains of headaches and wonders if it isa result of the fall on 4/26/09. EE would like to
## 26414                                                                                                                                                                      EE injured her inner thighs when she slipped on wet/greasy floor while patroling the kitchen.
## 26415                                                                                                                                                                                                       EE injured her knee on table when she pulled ip to the table
## 26416                                                                                                                                                                                                   EE injured her l middle finger while trying to raise a bed rail.
## 26417                                                                                                                                                                                           EE injured her left ankle during a team activity on a leadership retreat
## 26418                                                                                                                                                         EE injured her lower back after utilizing a self- contained respirator during inspection. Low back injury.
## 26419                                                                                                                                                                                                                    EE injured her lower back during a pic training
## 26420                                                                                                                                                                                                               EE injured her lower back while trying to lift a pt.
## 26421                                                                                                                                                                                             EE injured her lt elbow/shoulder area while lifting a heavy chart book
## 26422                                                                                                                                                                                                               EE injured her lt finger while restraining a patient
## 26423                                                                                                                                                                            EE injured her lt hand when she tried to catch a box of sodas from falling off a shelf.
## 26424                                                                                                                                                                              EE injured her lt hand while painting--most of thepressure was applied to the lt hand
## 26425                                                                                                                                                                                                  EE injured her lt hip when she was pushed by a pt across a table.
## 26426                                                                                                                                                                                                              EE injured her lt shoulder while assisting a resident
## 26427                                                                                                                        EE injured her right ankle when she was playing volleyball with patients. She jumped up to hit ball and came down on her right ankle wrong.
## 26428                                                                                                                                                                                                          EE injured her right foot, right ankle, chest, andstomach
## 26429                                                                                                                                                                                                         EE injured her right foot... The notes are not thatlegible
## 26430                                                                                                                                                                                                                      EE injured her right knee during training. ..
## 26431                                                                                                                                                                                              EE injured her right knee in nci class while downing a take down move
## 26432                                                                                                                                                                                                                      EE injured her right shoulder during training
## 26433                                                                                                                                                                                                               EE injured her right shoulder while lifting a client
## 26434                                                                                                                                                                                 EE injured her right upper back and neck while placing an agitated patient in nci.
## 26435                                                                                                                                                                                                          EE injured her right wrist while in restraining a student
## 26436                                                                                                                                                                                             EE injured her rt ankle & rt knee while trying to restrain a juvenile.
## 26437                                                                                                                                                                                                EE injured her rt arm while trying to keep a food cart from falling
## 26438                                                                                                                                                                                         EE injured her rt knee during a therapeutic hold clmts work # 919-575-3631
## 26439                                                                                                                                                                                   EE injured her rt knee while jumping rope with children in after school activity
## 26440                                                                                                                                                                                                               EE injured her rt knee while moving boxes from units
## 26441                                                                                                                                                                                       EE injured her rt knee while trying to avoid a batwhich was flying above her
## 26442                                                                                                                                                                                       EE injured her rt leg/knee while bending over cleaning base board and chairs
## 26443                                                                                                                                                                                                     EE injured her rt shoulder blade area while lifting a drop box
## 26444                                                                                                                                                                                                  EE injured her rt shoulder while firing a shotgun during training
## 26445                                                                                                                                                                                    EE injured her rt shoulder while firing shotgun during recertification training
## 26446                                                                                                                                                                                                     EE injured her rt wrist during a self defense training session
## 26447                                                                                                                                                                       EE injured her rt wrist while practicing in self- defense program on 7/17/96. Rt wrist sore.
## 26448                                                                                                                                                                                                       EE injured her shoulder while in physical trainingblet class
## 26449                                                                                                                                                                            EE injured her side when she was trying to stop client from falling out of bed; lt side
## 26450                                                                                                                                                                                                         EE injured his back and after trying to subdue a patient .
## 26451                                                                                                                                                                                                      EE injured his back during a self denfense training technique
## 26452                                                                                                                                                                                                                                 EE injured his back in an accident
## 26453                                                                                                                                                                            EE injured his back in an auto accident *nurse case mgr - mary ann wells 843 232-8407.*
## 26454                                                                                                                                                                                         EE injured his back when he intervened to prevent patients from fighting..
## 26455                                                                                                                                                                                                    EE injured his back when he was changing and turning a patient.
## 26456                                                                                                                                                                                                 EE injured his back when lifting bag of laundry into laundry cart.
## 26457                                                                                                                                                                                                                      EE injured his back while assisting a patient
## 26458                                                                                                                                                                                                                 EE injured his back while assisting with an inmate
## 26459                                                                                                                                                                                                   EE injured his back while assisting with the arrest of a suspect
## 26460                                                                                                                                                                                   EE injured his back while delivering cases of copypaper to 3rd floor crosby hall
## 26461                                                                                                                                                                                                                   EE injured his back while doing landscape duties
## 26462                                                                                                                                                                                                                 EE injured his back while doing sit up for an exam
## 26463                                                                                                                                                                                  EE injured his back while extinguishing a vehicle fire with a 1 3/4 ' water line.
## 26464                                                                                                                                                                                            EE injured his back while helping to move rail road over from walk way.
## 26465                                                                                                                                                                                    EE injured his back while installing a controller EE moved a large file cabinet
## 26466                                                                                                                                                                                                                         EE injured his back while lifting a cooler
## 26467                                                                                                                                                                                                     EE injured his back while lifting an inmate who fell off a bed
## 26468                                                                                                                                                                                                              EE injured his back while lifting cases of copy paper
## 26469                                                                                                                                                                                                                EE injured his back while lifting patient off floor
## 26470                                                                                                                                                                                           EE injured his back while moving a body from a tray to an autopsy table.
## 26471                                                                                                                                                                                                                       EE injured his back while moving a trash can
## 26472                                                                                                                                                                                                        EE injured his back while moving boxes of paper & supplies.
## 26473                                                                                                                                                                                       EE injured his back while participating in an unarmed self denfense training
## 26474                                                                                                                                                                        EE injured his back while pulling an inmate over arailing--the inmate tried to hang himself
## 26475                                                                                                                                                                                                       EE injured his back while pushing a boat off a boat trailer.
## 26476                                                                                                                                                                              EE injured his back while pushing on door that patient had barricaded himself behind.
## 26477                                                                                                                                                                                                        EE injured his back while try to pull a boat out of a river
## 26478                                                                                                                                                                                                          EE injured his back while trying to keep a pt fromfalling
## 26479                                                                                                                                                                                                 EE injured his back while trying to keep from falling from a chair
## 26480                                                                                                                                                                                      EE injured his back while trying to keep two boxesof beef roast from falling.
## 26481                                                                                                                                                                                                                                               EE injured his back.
## 26482                                                                                                                                                               EE injured his ear while firing a revolver becauseof not having her ear protector properly in place.
## 26483                                                                                                                                                                                          EE injured his finger while playing volleyball; index finger of left hand
## 26484                                                                                                                                                                                                                      EE injured his heel while assisting a patient
## 26485                                                                                                                                                                                                        EE injured his knee while in unarmed self-defense training.
## 26486                                                                                                                                                EE injured his left ankle when he attempted to help his peers subde an agressive patient. EE fell during restraint.
## 26487                                                                                                                                                                                                    EE injured his left ankle when he stepped on an expansion joint
## 26488                                                                                                                                                                                                                           EE injured his left knee during training
## 26489                                                                                                                                                                                                 EE injured his left pinkie finger during baton training.. Fracture
## 26490                                                                                                                                                                                                                  EE injured his left pinkie finger during training
## 26491                                                                                                                                                                     EE injured his left pinky finger on a rusty metal burs and got a metal splinter in his finger.
## 26492                                                                                                                                                                                                                                       EE injured his left shoulder
## 26493                                                                                                                                                                                                 EE injured his left shoulder escorting student back to quiet room.
## 26494                                                                                                                                                                                 EE injured his left shoulder while doing push up exercises at a training class. ()
## 26495                                                                                                                                                                                                     EE injured his left shoulder while lifting weightsat bench ???
## 26496                                                                                                                                                           EE injured his left thumb while installing belts on air handler; his thumb jammed between belts & pulley
## 26497                                                                                                                                                                                                      EE injured his left thumb while moving furniture on the ward.
## 26498                                                                                                                                                           EE injured his low back while ducking under a bridge beam while carrying two coolers with another person
## 26499                                                                                                                                                                                             EE injured his lower back and neck muscle while holding an inmate down
## 26500                                                                                                                                                                                                                      EE injured his lower back during training. ..
## 26501                                                                                                                                                                                                        EE injured his lower back when he lifted a full mop bucket.
## 26502                                                                                                                                                                       EE injured his lower back while lifting and transporting office supplies to another building
## 26503                                                                                                                                                                      EE injured his lower back while playing volleyballduring an employee appreciation activities.
## 26504                                                                                                                                                                                                                             EE injured his lt ankle while on truck
## 26505                                                                                                                                                                                                     EE injured his lt foot while stepping off lowboy onto concrete
## 26506                                                                                                                                                                                                         EE injured his lt hand while trying to release a horseshoe
## 26507                                                                                                                                                                                                                EE injured his lt shoulder during a cell extraction
## 26508                                                                                                                                                                                                  EE injured his lt shoulder while lifting an air conditioning unit
## 26509                                                                                                                                                                                             EE injured his lt shoulder while pulling a mannequin through a walkway
## 26510                                                                                                                                                                                                      EE injured his lt shoulder while trying to restrain a student
## 26511                                                                                                                                                                                                     EE injured his lt shoulder while trying to restrain a student.
## 26512                                                                                                                                                        EE injured his neck while demonstrating a welding technique... Stiff neck and pain in right arm and fingers
## 26513                                                                                                                                                                               EE injured his right ankle when he leaped off stepand landed in a hole in the ground
## 26514                                                                                                                                    EE injured his right ankle while participating in physical training. EE was running sprints when he twisted his right ankle. ()
## 26515                                                                                                                                                                                              EE injured his right hand during boxing portion of defensive tactics.
## 26516                                                                                                                                                                                     EE injured his right knee on the floor while dealing with and agitated patient
## 26517                                                                                                                                                                                 EE injured his right knee when stepped off of a forklift into a heavy metal engine
## 26518                                                                                                                                                                               EE injured his right shoulder and arm while assisting students with moving furniture
## 26519                                                                                                                                                                                  EE injured his right shoulder during defense training.... Also injured chest wall
## 26520                                                                                                                                                                                                     EE injured his right shoulder while pressing down and sweeping
## 26521                                                                                                                                                                                                            EE injured his right wrist during a training exer cise.
## 26522                                                                                                                                                                                          EE injured his rt and lt arm on a table while trying to subdue an inmate.
## 26523                                                                                                                                                                                                             EE injured his rt ankle while assisting with an inmate
## 26524                                                                                                                                                                                                        EE injured his rt ankle while trying to get a cow in a barn
## 26525                                                                                                                                                                             EE injured his rt finger when he slammed the sliding door of a van on his pinky finger
## 26526                                                                                                                                                                                                                                             EE injured his rt foot
## 26527                                                                                                                                                                                                                        EE injured his rt foot while moving a piano
## 26528                                                                                                                                                                                            EE injured his rt hand while raising door that leads to the boiler room
## 26529                                                                                                                                                                                                           EE injured his rt hand while taking a tire off a tractor
## 26530                                                                                                                                                                                                                  EE injured his rt knee during a k-9 demonstration
## 26531                                                                                                                                                                                                                     EE injured his rt knee while chasing a subject
## 26532                                                                                                                                                                                                                                   EE injured his rt lt ring finger
## 26533                                                                                                                                                                                                             EE injured his rt shoulder during a training technique
## 26534                                                                                                                                                                                                         EE injured his rt shoulder in unarmed self defensetraining
## 26535                                                                                                                                                                                          EE injured his rt shoulder while helping another office up from the floor
## 26536                                                                                                                                                                                             EE injured his rt upper arm while loading generators in a pickup truck
## 26537                                                                                                                                                                                                EE injured his rt wrist while cutting metal stripsfor ceiling tiles
## 26538                                                                                                                                                                                                      EE injured his rt wrist while turning keys into a jammed lock
## 26539                                                                                                                                                                                                   EE injured his shoulder while dealing with an aggressive patient
## 26540                                                                                                                                                                                                                               EE injured his spine, neck, and head
## 26541                                                                                                                                                                  EE injured his thumb while responding to an aggressive patient.... Notes are not legible rt thumb
## 26542                                                                                                                                                                                                     EE injured his upper back struggling with a conbative patient.
## 26543                                                                                                                                                                                               EE injured his upper back while lifting an igloo jug filled with ice
## 26544                                                                                                                                                                                                        EE injured his wrist while participating in uasd technique.
## 26545                                                                                                                                                                                                       EE injured in auto accident. Injured back, neck, & shoulders
## 26546                                                                                                                                                                                                EE injured index finger demonstrating a football specific drill. ()
## 26547                                                                                                                                                           EE injured knee on March 2 during a tornado drill - re-injured on April 4th by standing up from desk. ()
## 26548                                                                                                                                                                                                                        EE injured knee while apprehending juvenile
## 26549                                                                                                                                                       EE injured knee while walking over brushtops in cut over doing quality control inspections of tree planters.
## 26550                                                                                                                                                EE injured knuckle on lift chair while bathing a patient. Swelling and pain of pip joint of 3rd digit of right hand
## 26551                                                                                                                                                                                                              EE injured left 5th finger while restraining patient.
## 26552                                                                                                                                                                                                         EE injured left ankle while playing basektball forclients.
## 26553                                                                                                                                                                                                                                  EE injured left arm in pic class.
## 26554                                                                                                                                                                                                                               EE injured left ear on a scuba dive.
## 26555                                                                                                                                                                                                  EE injured left elbow while pushing a pt in a wheelchair up ramp.
## 26556                                                                                                                                                                             EE injured left foot while trying to seperate two students that were shackled together
## 26557                                                                                                                                   EE injured left hand helping patient to quiet roompatient pushed EE in attempt to get away and bent EE's wrist/hand in progress.
## 26558                                                                                                                                                       EE injured left hand while attempting to open doorentering johnson building, on metal plate mounted on door.
## 26559                                                                                                                                                                          EE injured left hand while closing an equipment manhole cover; mashed and bruised fingers
## 26560                                                                                                                                                                                                   EE injured left knee during fall through an undercut stream bank
## 26561                                                                                                                                                                               EE injured left knee during manual restraint of pt, pt was trying to attack peer. ()
## 26562                                                                                                                                                                                                      EE injured left knee in a fall during self defense techniques
## 26563                                                                                                                                                            EE injured left knee, leg and wrist, lower back while trying to break up two students who were fighting
## 26564                                                                                                                                                                                                        EE injured left knee/shin during physical trainingexercises
## 26565                                                                                                                                                                                      EE injured left ring finger while catching ladder that was falling out of van
## 26566                                                                                                                                                                               EE injured left shoulder moving, picking up, and putting down computers and monitors
## 26567                                                                                                                                                                                   EE injured left shoulder while helping push a trailer up a hill it was stuck on.
## 26568                                                                                                                                         EE injured left shoulder while in tactics traininghe jarred shoulder attempting to open a locked door using a "ram" device
## 26569                                                                                                                                                                                                                               EE injured left wrist and lower back
## 26570                                                                                                                                                               EE injured left wrist by repeatedly ??? The chain broke while moving from obstruction and obstructio
## 26571                                                                                                                                                                                                               EE injured left wrist while moving furniture at work
## 26572                                                                                                                                                                                                     EE injured left wrist while struggling w/an aggressive patient
## 26573                                                                                                                                                                            EE injured lf hip and knee while preventing a client from falling. EE taken out of work
## 26574                                                                                                                                                                                                        EE injured little finger restraining out of control student
## 26575                                                                                                                                                                                       EE injured low back while transferring client to table and back to stretcher
## 26576                                                                                                                                                                                                                                              EE injured lower back
## 26577                                                                                                                                                                                                                        EE injured lower back and left side of neck
## 26578                                                                                                                                                                                                           EE injured lower back assisting patient while showering.
## 26579                                                                                                                          EE injured lower back by picking up and moving a tv/vcr from top shelf to bottom shelf of av cartlower began to hurt. Injured lower back.
## 26580                                                                                                                                                                                                              EE injured lower back during training with a partner.
## 26581                                                                                                                                                                                     EE injured lower back getting off elevator, which was not level with the floor
## 26582                                                                                                                                                                                                                        EE injured lower back lifting 60lb he dewar
## 26583                                                                                                                                                                                                                  EE injured lower back lifting heavy bags of trash
## 26584                                                                                                                                                                                                        EE injured lower back moving furniture. Referred to glenda.
## 26585                                                                                                                                                                                                     EE injured lower back when escorting a resident in a pic hold.
## 26586                                                                                                                                                                                            EE injured lower back when she was moving a monitor and keyborad stand.
## 26587                                                                                                                                                                                                           EE injured lower back while assisting with pullinga tank
## 26588                                                                                                                                                                                           EE injured lower back while attempting to unlock front door of warehouse
## 26589                                                                                                                                                                                                                        EE injured lower back while lifting pallet.
## 26590                                                                                                                                                                                                                   EE injured lower back while moving exhibit case.
## 26591                                                                                                                                                                                                              EE injured lower back while moving items from hanger.
## 26592                                                                                                                                                                     EE injured lower back while seperating students engaged in a gang assault on a single student.
## 26593                                                                                                                                                                      EE injured lower back while unloading feed from dump truck. Aggrivated reoccuring back injury
## 26594                                                                                                                                                                                                                                            EE injured lt ear canal
## 26595                                                                                                                                          EE injured lt elbow by hitting it against the cover of pick up truck while lifting trash cans into the back of the truck.
## 26596                                                                                                                                                                                                  EE injured lt hand lifting large medical notebook with both hands
## 26597                                                                                                                                                                                                            EE injured lt jhand when client slammed door onto hand.
## 26598                                                                                                                                                                                                                              EE injured lt knee on filing cabinet.
## 26599                                                                                                                                                               EE injured lt knee when he was running during training exercise. **Dr Stephen candella, 910/640-1022
## 26600                                                                                                                 EE injured lt knee while doing rcdt (restraint and control defense techniques). This training is mandatory for all staff who are criminal justice.
## 26601                                                                                                                                                                                                             EE injured lt knee while stepping from ladder to floor
## 26602                                                                                                                                                                                                                       EE injured lt leg while moving office chairs
## 26603                                                                                                                                                                                                        EE injured lt leg/calf while working with hazards materials
## 26604                                                                                                                                                                                                   EE injured lt shoulder while trying to bathe a combative client.
## 26605                                                                                                                                                      EE injured moving boxes of files and crawling under a workstation to re connect computer equip/strain to back
## 26606                                                                                                                              EE injured neck while at crdt training-felt a pop or pull in neck-when he reported this he had a headach & radiating cold in left leg
## 26607                                                                                                                                                                                    EE injured neck while practicing unarmed self- defense. Neck strain; headaches.
## 26608                                                                                                                               EE injured neck while pulling himself up using both arms to look on top of tv stand possible contraband. Strained muscle lower neck.
## 26609                                                                                                                                                                                          EE injured neck while sleeping at a hotel attending a conf. As a speaker.
## 26610                                                                                                                                                                                  EE injured neck while struggling with inmate. Also hit back of head against wall.
## 26611                                                                                                                                                                                                                 EE injured neck while trying to restrain a student
## 26612                                                                                                                                                                                                                       EE injured neck while turning neck on tower.
## 26613                                                                                                                             EE injured on a high speed pursuit of violator. Violators vehicle intentionally struck vehicle. Broken sternum, concussion, back pain.
## 26614                                                                                                                                                                                                                                 EE injured right ankle per form 18
## 26615                                                                                                                                                                 EE injured right ankle when his shoe got caught between mats. Did not seek any meddical treatment.
## 26616                                                                                                                                                                                              EE injured right hand and wrist moving a 30 pound bag of dog food. ()
## 26617                                                                                                                                                                          EE injured right knee during unarmed self defense training-performing standing break fall
## 26618                                                                                                                                                                                              EE injured right knee while moving furniture and ultrasound equipment
## 26619                                                                                                                                                                                                EE injured right knee while placing a client in a manual restraint.
## 26620                                                                                                                                                                                                EE injured right knee while practicing unarmed self-defense(gaeshi)
## 26621                                                                                                                                                                                                                                             EE injured right knee.
## 26622                                                                                                                                                                                                    EE injured right lower leg while participating in mandatory pt.
## 26623                                                                                                                                           EE injured right shoulder while boxing. EE recievea punch to right collarbone causing great pain in right shoulder area.
## 26624                                                                                                                       EE injured right shoulder while firing the shotgunthe butt of the weapon struck EE during round of 5 shots causing extreme pain in shoulder.
## 26625                                                                                                                                                                                                  EE injured right thumb while participating in a handcuff exercise
## 26626                                                                                                                                                                                                    EE injured right wrist while struggling w/an aggressive patient
## 26627                                                                                                                                                                                      EE injured right wrist while using 6' dipnet to collect fish for the aquarium
## 26628                                                                                                                                                                                                                            EE injured rt arm during a use of force
## 26629                                                                                                                                                                                                                          EE injured rt elbow while moving a table.
## 26630                                                                                                                                                EE injured rt hand defending herself from inmate struck inmate w/closed fist of rt hand knuckles of rt hand swollen
## 26631                                                                                                                EE injured rt hand on the door leading to the stairwell. EE was answering an all-call for all available staff from the academic dept. When injured.
## 26632                                                                                                                                                                                                                EE injured rt hand when a door closed on it @ work.
## 26633                                                                                                                                                                                                       EE injured rt hand when patient became agressive and hostile
## 26634                                                                                                                                       EE injured rt hand when test tube exploded while performing experiment in lab. EE also noted decreased hearing in right ear.
## 26635                                                                                                                                                                                                    EE injured rt hand while trying to contain an aggressive client
## 26636                                                                                                                                                                                                               EE injured rt index finger while handling a band saw
## 26637                                                                                                                                                                                      EE injured rt knee & lt shoulder while taking inmate down during use of force
## 26638                                                                                                                                                                                                               EE injured rt knee during a training exercise course
## 26639                                                                                                                                                                                                                  EE injured rt knee during straight balon training
## 26640                                                                                                                      EE injured rt knee while entering driver side of car. Knee struck steering wheel while getting intocar. Struck upper side portion of rt knee.
## 26641                                                                                                                                                                                                        EE injured rt knee while holding resident in prone position
## 26642                                                                                                                                                                                                             EE injured rt knee while repairing ceramic floor tile.
## 26643                                                                                                                                                                                                    EE injured rt lower back while assisting with combative client.
## 26644                                                                                                                                                                                                            EE injured rt shoulder during physical fitness training
## 26645                                                                                                                                                                                                          EE injured rt shoulder while a shotgun at recertification
## 26646                                                                                                                                                                                        EE injured rt shoulder while participating in unarmed self-defense program.
## 26647                                                                                                                                                                                           EE injured rt thumb and rt knee while trying to get suspect into custody
## 26648                                                                                                                                                                                                    EE injured rt thumb catching student who was falling into river
## 26649                                                                                                                                                                                                            EE injured rt thumb while restraining resistive student
## 26650                                                                                                                                                                                                                                 EE injured rt wrist during surgery
## 26651                                                                                                                                                                                                          EE injured rt wrist while assisting to restrain a patient
## 26652                                                                                                                                                                                  EE injured shoulder and upper back when he tried to prevent patient from falling.
## 26653                                                                                                                                                                EE injured shoulder while assisting with seclusionand restraint of a patient. Left shoulder strain.
## 26654                                                                                                                                                                                                                  EE injured shoulder while doing self-defnse tech.
## 26655                                                                                                                                                                                                   EE injured shoulder while shooting shotgun during qualifications
## 26656                                                                                                                                                                                                              EE injured shoulder while struggling w/ aggressive pt
## 26657                                                                                                                                                 EE injured shoulder while trying to get into a burnign room where the student had barricaded the door witha chair.
## 26658                                                                                                                     EE injured shoulder while trying to restrain student. Rt shoulder inj voc kim weisenberger 830 1290 ruth bailey 919 580 9500 cell 919 771 8169
## 26659                                                                                                                                                                                                EE injured thumb & little finger when dumpster lid fell on lt hand.
## 26660                                                                                                                                                                                        EE injured thumb & wrist, lt hand while struggling with an impaired driver.
## 26661                                                                                                                                                                                                   EE injured thumb while checking. Sprain/contusionto right thumb.
## 26662                                                                                                                                                                                                                           EE injured upper arm during pic training
## 26663                                                                                                                                                                                                                                      EE injured upper back muscle.
## 26664                                                                                                                                                                              EE injured when fending a boat from hitting dock with her right foot causing fracture
## 26665                                                                                                                                                             EE injured while attempting assist another officerin dwi suspect. EE suffered cut on top of left hand.
## 26666                                                                                                                                                                                EE injured while holding patient in ptc hold. Patient scratched EE with fingernails
## 26667                                                                                                                                                                                                                            EE injured whole back while backpacking
## 26668                                                                                                                                                                                                                      EE injured wrist by way of repetitive motion.
## 26669                                                                                                                                                                           EE injured wrist durring an inmate assault. Inmate punched him twice in the right wrist.
## 26670                                                                                                                                                                                                       EE injured wrist trying to pull two fighting patinets aparts
## 26671                                                                                                                                                                EE injured wrist while mopping. EE seen at urgent care and taken out of work pending appt 12/22/09.
## 26672                                                                                                                                                                                                   EE injured wrists due to continuous typing.... Both hands, wrist
## 26673                                                                                                                    EE injured(reinjured)rt shoulder & lt knee while breaking up a fight between two juveniles. 2nd surgery 4/11. *** sal contin. * victoria sanche
## 26674                                                                                                                                                                                                                        EE injuredleg whileon a 2 mile pt training.
## 26675                                                                                                                                                                                       EE injuried her back while assisting in lifting a pt. From gerochair to bed.
## 26676                                                                                                                                              EE injuried his back and neck when he was using force on an inmate in the process of handcuffing and restraining him.
## 26677                                                                                                                                                                                EE injuried his back while lifting student that had fallen while skate boarding. ()
## 26678                                                                                                                                                                 EE injuried his left ankle when he stepped in softmud chasing a patient running away from hospital
## 26679                                                                                                                                                                                                                   EE injuried his rt foot when he lost his balance
## 26680                                                                                                                                                                        EE injuried right thumb while assisting with plac-ing a patient in seclusion and restraint.
## 26681                                                                                                                                        EE injuried right thumb, removing the heated carmel from the microwave, he spilled it on his right thumb/blistered the skin
## 26682                                                                                                                                                            EE injury appeared to be repetitive prolonged key-boarding & loading materials on and off a book truck.
## 26683                                                                                                                                                                                                                 EE injury her back while assisting with an inmate.
## 26684                                                                                                                                 EE injury occured when she was sitting at table gathering papers & pictures when wind blew board on her head. Injury back of head.
## 26685                                                                                                                                                             EE injury occured wind blew lid down his head while was searching the tool chest. Blow to top of head.
## 26686                                                                                                              EE injury occurred as he was pushing a cart when the cart went out of control & he used his foot toredirect the cart. His foot slipped, nail came off
## 26687                                                                                                                   EE injury on 5-6-09, reported injury on 5-13-09. EE was grabbed by client. EE needs an appt to evaluate neck and rt shoulder. Please contact EE.
## 26688                                                                                                                                       EE injury to hands & wrist occured after continoususe of typewriter & computer for long hours. Rt hand all fingers affected.
## 26689                                                                                                                                                                                               EE injury to lower back and upper neck pain due to old office chair.
## 26690                                                                                                                                                                                 EE inserting knife into a sheats-blade went through side of sheats into EE's hand.
## 26691                                                                                                                                                        EE inspecting a problem with a motor when he placed his hand on the exhaust pipe/burns on palm of left hand
## 26692                                                                                                                                                EE inspecting an inmate locker he felt somehting cut his finger. Washed area with soap & water cut lt index finger.
## 26693                                                                                                                                             EE inspecting dorm for cleanliness. Stepped on damp spot on floor which caused foot to slip. Making him twist his knee
## 26694                                                                                                                         EE inspecting dormitory, claimed he smelled strongodor of clorox, began burning & itching on arms & nose areas, further claims small bumps
## 26695                                                                                                                                                 EE inspecting elevator as stepping down to ladder from roof and felt/heard left knee popped. Possible dislocation.
## 26696                                                                                                                      EE inspecting exterior of temp ofcice bldg. Walk- ing down driveway & stepped into hole at edge of driveway. Inside of rt. Foot(big toe area)
## 26697                                                                                                                           EE inspecting fuel on dump truck, while stepping down he fell. Landed on back & lt elbow slammed into ground. Fx'd lt humerus bone (arm)
## 26698                                                                                                                                             EE inspecting produce delivery when he sat an itemon pallet, inmate released pallet jack & sat pallet on EE right foot
## 26699                                                                                                                                                             EE inspecting roof slip & fell against co-worker &pulled rt shoulder while descending from upper level
## 26700                                                                                                                       EE inspecting work done by contractor on roof-stepped on hose which rolled causing EE to loose his footing and fall backwards injuring knee.
## 26701                                                                                                                                      EE installed parking curb stops in a gravel lot-driving pins into the ground with a sledge hammer. EE strained his lower back
## 26702                                                                                                                                                                                      EE installign sheetrock-picked up a screw and metal splinter stuck in finger.
## 26703                                                                                                                                                                                       EE installing a breakline on an automobile and pulled left forearm and elbow
## 26704                                                                                                                                                            EE installing a shutter when shutter fell appox 2 feel and hit middle of forehead cutting open skin. ()
## 26705                                                                                                                        EE installing a smart board in the ceiling, when a piece of ceiling tile went into right eye. Tile caused redness & irritation over weekend
## 26706                                                                                                                                                               EE installing ac in office window w/metal frame & while drilling a piece of metal flew into left eye
## 26707                                                                                                                                                                                 EE installing ceiling tiles when removing goggles dust particles went into rt eye.
## 26708                                                                                                                                                                          EE installing computer & hurt back while removing desk from against wall to insert cables
## 26709                                                                                                                                 EE installing containment liner around chemical tanks tank lines spilled chemical on EE back causing red spot around affected area
## 26710                                                                                                                                                                                              EE installing door closer overhead when something fell into left eye.
## 26711                                                                                                                                                                                              EE installing drainage matt-breathed in fibers that irratated throat.
## 26712                                                                                                                                                                                                   EE installing drum head gasket into the drum and hurt lower back
## 26713                                                                                                                                                         EE installing electrical conduit-crouched down upon standing struck head on wall cabinet and sprained neck
## 26714                                                                                                                                                                             EE installing mesh panels-laid one down and forgotit was loose-stepped on it and fell.
## 26715                                                                                                                                                               EE installing picnic tables and felt his back pop when he was taking the first table off the trailer
## 26716                                                                                                                                                                                                             EE installing pipe system and scratched arm on bricks.
## 26717                                                                                                                                             EE installing refrigerator in unit kitchen-grabbedhandle & received shock-thru him 5' from frig onto right knee & back
## 26718                                                                                                                                                                                                               EE installing server unit and pulled muscle in back.
## 26719                                                                                                                                                                             EE installing window unit, cut off braces on old frame with hacksaw and cut left thumb
## 26720                                                                                                                                                                       EE installing wiring for computers-slid front portion of computer off desk-strain lower back
## 26721                                                                                                                                                                EE instructed inmate to hold out hands to be handcuffed and he struck her in the face with his fist
## 26722                                                                                                                                          EE instructed juvenile to go to room, juvenile refused and began to be aggressive and turned over a table onto EE's foot.
## 26723              EE instructed to move mat; floor was wet under mat; staff unaware when walking away; step from bathroom to bedroom slipped and fell flat on stomach, catching self with both wrist hurting both wrists/hands, left knee and lower leg and abdomen. ()
## 26724                                                                                                                                                                    EE instructing class in long baton, he believed injured rt elbow. Rt elbow-swollen and painful.
## 26725                                                                                                                                      EE instructing confined space rescue training-EE reached to catch a student that was falling and pulled and twisted shoulder.
## 26726                                                                                                                                                                                   EE instructing golf swin mechanics when he felt a pull in rt shoulder/neck area.
## 26727                                                                                                                                                                           EE instructing how to properly dot the job-stood up and hit head on bathroom stall latch
## 26728                                                                                                                                                      EE instructing on how to properly stand up plants, matter from a leaf got into right eye. Matter in right eye
## 26729                                                                                                                                                  EE instructor in baton training-in red man suit when he was struck in chest with straight baton by EE in training
## 26730                                                                                                                                                                          EE intending to pickup paperclip off floor-didn't see needle and stuck finger on rt hand.
## 26731                                                                                                                                               EE interacting with client flying kite in field beside gh parking lot, tripped & fell hurting left elbow & shoulder.
## 26732                                                                                                                                                                           EE interacting with client, client grabbed her armscratched them. Scratches to both arms
## 26733                                                                                                                                                                                             EE interacting with student, student grabbed EE's wrist and twisted it
## 26734                                                                                                                                                                            EE interceded between two aggressive clients. Client struck EE in forehead and left eye
## 26735                                                                                                                                                    EE interpreted alone at a meeting held from 10:00-5:00 and during travel time from 7 am to 7 pm- pain in rt arm
## 26736                                                                                                                                                 EE interrupted a client while he was taking care of some personal business, the client then struck EE on the hand.
## 26737                                                                                                                                                                          EE interven between client that was fighting another client-in process injured lower back
## 26738                                                                                                                    EE intervene and blocked one punch from one clientto another-client lost his balance. EE caught client from falling and other client kicked EE.
## 26739                                                                                                                                                                                                                   EE intervened a fight and injured his right knee
## 26740                                                                                                                                            EE intervened and did a pic hold on a patient and they fell to the floor and EE's shoulder, neck, and knee are hurting.
## 26741                                                                                                                                                               EE intervened between 2 aggressive clients-one client hit EE on the arm and other hit EE on shoulder
## 26742                                                                                                                                                                         EE intervened between agressive students during lunch-injury to left knee, inner left leg.
## 26743                                                                                                                                                                                                                  EE intervened between pt/rn, pt hit EE in head ()
## 26744                                                                                                                                                                   EE intervened between two aggressive clients-in process was kicked and hit on left hand/fingers.
## 26745                                                                                                                                                                          EE intervened between two clients and one of the clients grabbed EE thumb and twisted it.
## 26746                                                                                                                                             EE intervened between two clients client slapped EE then grabbed EE by hair yanked ees head downwards. Cervical strain
## 26747                                                                                                                                            EE intervened between two clients, who were fighting-cliet grabbed EE's hands & twisted. Pain in fingers on both hands.
## 26748                                                                                                                                                                                      EE intervened between two fighting patients and later his back began to hurt.
## 26749                                                                                                                                                                              EE intervened hwen one student was about to hit aother w/chair and EE took the force.
## 26750                                                                                                                                                                                                       EE intervened in a fight and patient struck EE in the lt arm
## 26751                                                                                                                                                                           EE intervened in altercation between 2 patients, classes were knocked to floor & damaged
## 26752                                                                                                                                                                               EE intervened in client's behavior. Client fell tofloor causing EE to fall to floor.
## 26753                                                                                                                                 EE intervened in hostile situation with patient. Patient kicked EE with no provocation in left lower leg. Bruise to left lower leg
## 26754                                                                                                                                                                 EE intervened in patient fight-patient kept trying to pull away from hold-strained rt rotator cuff
## 26755                                                                                                                                                                                    EE intervened in pt altercation and was punched in the head several times by pt
## 26756                                                                                                                                                                             EE intervened nci with an aggressive pt, fell to floor hurting rt side of back & neck.
## 26757                                                                                                                                                                                         EE intervened on two patients fighting and one patient bit EE on his hand.
## 26758                                                                                                                      EE intervened to help a resident that was hitting himself in the head, the resident then grabbed EE's right fifth finger. No signs of injury.
## 26759                                                                                                                                                    EE intervened to stop a client from hitting self and client hit EE's hand bone in thumb sounded like it popped.
## 26760                                                                                                                                      EE intervened w/ sir, client dropped to floor and banging head against drawers, staff lifted client to prevent further injury
## 26761                                                                                                                                                             EE intervened when a client attempted to strike another client. Client then struck EE on the left arm.
## 26762                                                                                                                          EE intervened when a patient struck staff and was knocked down; left knee; knee felt like it dislocated; also injured right middle finger
## 26763                                                                                                                            EE intervened when a patient was pushing another patient and got caught in the wheelchair and fell landing on back. Patient fell on EE.
## 26764                                                                                                                                                                          EE intervened when a pt began fighting w/ a staff member, he was struck in the groin area
## 26765                                                                                                                                                                                  EE intervened when client started topush another staff member injured lower back.
## 26766                                                                                                                                                                           EE intervened when patient attempted to attack nurse, felt pull or sprain in right calf.
## 26767                                                                                                                                                         EE intervened with a resident who was sib. Blocking hits & holding hands down, pain in wrist became worse.
## 26768                                                                                                                         EE intervened with behavioral patient to assist inpreventing patient from attacking a doctor and wasinjured in process. Right hand bruise.
## 26769                                                                                                                                                                        EE intervened with clients unexpected behavior when he injured back in process. Back strain
## 26770                                                                                                                                                                                EE intervened with student and client. Client raised hand; hit EE in the right eye.
## 26771                                                                                                                          EE intervenin with resident who was trying to get locked cabinet open-resident pulled back on EE's thumb. Hyperextended thumb - fracture?
## 26772                                                                                                                                                                                         EE intervening between pushed by clients. Rt thumbwas bent back and popped
## 26773                                                                                                                                                              EE intervening between to clients attempting to redirect them-client struck EE in left eye with fist.
## 26774                                                                                                                         EE intervening betwn two clients having an altercation-reached over wheelchair to stop them and hit lt knee, wrist and side on wheelchair.
## 26775                                                                                                                                                                                      EE intervening in client's behavior and clients head struck EE on rt forearm.
## 26776                                                                                                           EE intervening in crisis situation w/student. Student ran into another room, EE followed into narrow passageway, EE put hand on wall, nail stuck in hand
## 26777                                                                                                                                                                EE intervening in patient altercation. Patient pushed EE down trying to assualt another patient. ()
## 26778                                                                                                                                                            EE intervening in pt attacking another pt. EE pushed into doorframe & onto floor, elbowed in the mouth.
## 26779                                                                                                                                                                                      EE intervening w/ resident who had gone awol. Resident bit EE. Hep c carrier.
## 26780                                                                                                                                                             EE intervening with behavior of client in restrainct got out of control grabbed EE hand twisted wrstrt
## 26781                                                                                                                                              EE intervening with clients behavior. Client accidently stumbled and fell on EE's left leg when she went down on mat.
## 26782                                                                                                                                                                            EE intervening with out of control client-client bit EE on lt thumb and rt ring finger.
## 26783                                                                                                                                        EE intervening with patient that was acting out. While placing patient in cpi hold, EE pulled a muscle in left hip area. ()
## 26784                                                                                                                  EE interviened in trying to keep a juvenile from assaulting a 3rd shift staff. EE grabed the juvenile toput him on the floor. EE twisted lt knee.
## 26785                                                                                                                                                           EE interviened with client behavior, holding his hands to keep him from injuring himself or breaking tv.
## 26786                                                                                                                                                                                                             EE interviewing an inmate, found out the inmate had TB
## 26787                                                                                                                                                                                      EE intervining with behavior of two clts, one grbd EE fingers bent them back.
## 26788                                                                                                                                                                                               EE introvened when client attacked anotehr staff and injured rt hand
## 26789                                                                                                                    EE investigated suspect for larcency he fled on foot EE pursued & apprehended, suspect grabbed eeslt-hand squeezed tightly & refused to release
## 26790                                                                                                                                EE investigating a collision & interviewing driverlaying on the ground. Helping driver up off the ground& felt pain in rt shoulder.
## 26791                                                                                                                                                                                                 EE investigating a collsion slipped and fell injuring his rt elbow
## 26792                                                                                                                                                                  EE investigating a fire at sister's cafe in bunn, nc. When slipped & fell on debris in fire scene
## 26793                                                                                                                                                                      EE investigating a hunting violation walking through brush, cutting right finger cat - 605895
## 26794                                                                                                                              EE investigating a leaking pump on herb sprayer when he noticed a loos plug-touched plug which caused pesticide to go into both eyes.
## 26795                                                                                                             EE investigating a mv collision on I-26, when EE'spatrol vehicle was struck in rear by another car. Abrasion & swelling left eye, right big toe contus
## 26796                                                                                                              EE investigating accident on icy hwy when vehicle started sliding towards EE. EE attempted to move out of way, slipped & fell on icy fracture rt hand
## 26797                                                                                                                                         EE investigating auto accident when he fell down embankment that was wet & slippery & twisted his right knee while falling
## 26798                                                                                                                         EE investigating mva, when a pickup truck lost control on icy ocerpass hitting cable barrier causing another mva. EE was pushed out of way
## 26799                                                                                                                                         EE investigating odor of marjuana, stepped off curband slipped on wet grass and fell to the ground. EE twisted left ankle.
## 26800                                                                                                                                    EE investigating possible air polution problem. EE reached to get a sample from tree and felt a stinging and burning sensation.
## 26801                                                                                                                                                                                  EE investigating traffice accident collision and was bitten by a dog on rt ankle.
## 26802                                                                                                                                                                    EE investigation cause of unknown oder in bldg, becasue of exposure advised to seek medical tx.
## 26803                                                                                                               EE investing collision, sitting in patrol car, parked on the side of the road, an oncoming car striking the front of EE's car, muscle strain in back
## 26804                                                                                                                           EE involved in 3 person pic carry, when se wash backing away seh stepped off mat & lost footing, falling backwards on back and right hip
## 26805                                                                                                                                                                                                                                     EE involved in a car accident.
## 26806                                                                                                                                                                            EE involved in a conversation-went to sit down andmissed chair causing injury to ankle.
## 26807                                                                                                                                 EE involved in a physical restraint of juvenile, when both slammed into the wall. ** sal contin *** l shoulder impingmt sx 9/27/07
## 26808                                                                                                                                                   EE involved in a use of force on an inmate he struck on rt side of head just above ear with plastic mop wringer.
## 26809                                                                                                                                 EE involved in a use of force on essex unit and fell while struggling with the inmate and struck his lt knee on the concrete floor
## 26810                                                                                                                                                                                 EE involved in a use of force on essex unit and struck his rt knee on cement floor
## 26811                                                                                                                                                                  EE involved in a use of force on essex unit and utilized his rt hand to secure inmate's handcuffs
## 26812                                                                                                                                                                EE involved in a vehicle accident - injury and abrasions to left knee, contusion anterior chest. ()
## 26813                                                                                                               EE involved in accident pursuit-suspect auto side swiped EE's car after collision car reared off rt shoulder - cervical sprain & multiple contusions
## 26814                                                                                                                     EE involved in altercation with suspect, EE strucksuspect 7 vehicle with right hand causing several abrasions & swelling to knuckles & fingers
## 26815                                                                                                                                      EE involved in an altercation with an inmate. Inmate struck EE in the rt eye. EE also received asmall abrasion on lt forearm.
## 26816                                                                                                                                                                    EE involved in an assault by an inmate EE ended upon floor broke his glasses & scratched lt arm
## 26817                                                                                                                                                                                                       EE involved in auto accident and has injuries to his rt hand
## 26818                                                                                                                                                                                               EE involved in auto accident w/two other vehs causing many injuries.
## 26819                                                                                                                                                            EE involved in auto accident while driving from washington nc to morehead city nc on official business.
## 26820                                                                                                                                                  EE involved in auto accident-lt knee swollen, bruised and scraped, pain left buttock down lt leg general soreness
## 26821                                                                                                                                                                                                                EE involved in auto accident-sideswiped anotehr veh
## 26822                                                                                                                                                                                                                      EE involved in auto accident; minor back pain
## 26823                                                                                                                                               EE involved in breaking up physical confrontation between 2 inmates. Turned quickly to use mace and injured left leg
## 26824                                                                                                                                EE involved in chase - suspect hit EE's veh headonee got out of veh to arrest suspect and l/balance and fell injuring neck and back
## 26825                                                                                                                                                            EE involved in chase on dirt road when trooper in front of EE slowed to make turn, EE struck other car.
## 26826                                                                                                                                              EE involved in chase with stolen truck, EE attemptdto remove suspect from chase vehicle, EE struck rt knee on vehicle
## 26827                                                                                                             EE involved in chase with stolen truck, EE passengrin marked patrol car, attempted to exit vehicle EE vehicle struck by suspects truck, hurt neck back
## 26828                                                                                                                                              EE involved in chase-lost control of veh and ran off road and overturned and hit a tree sustained injury to rt ankle.
## 26829                                                                                                                                                                                   EE involved in collision causing EE to hit a tree injury right arm, hip and head
## 26830                                                                                                                                                         EE involved in eri due to physical agression - lt knee stuck floor during altercation, rt forearm rt thumb
## 26831                                                                                                                                                                            EE involved in eri, pt sat down on ground pulling EE down, EE hit left knee on floor ()
## 26832                                                                                                                                                                               EE involved in firearms trainging on range when muscle in upper left leg was injured
## 26833                                                                                                                EE involved in foot chase for a suspect that had just been involved in a veh chase, EE jumped over a ditch in foot chase, felt twitch in lower back
## 26834                                                                                                                                    EE involved in foot chase of fleeing suspect. EE followed suspect over chain link fence topped withbarbed wire, cut right hand.
## 26835                                                                                                                                                 EE involved in foot chase of larceny suspect, tripdon uneven pavement, fell, received cuts and abrasinto left knee
## 26836                                                                                                                                                           EE involved in foot chase of suspect-both fell to the ground causing EE to jamm rt thumb on the asphalt.
## 26837                                                                                                                               EE involved in foot chase with suspect. Lost footing on embankment, fell down embankment and injuredleft elbow. Sprained left elbow.
## 26838                                                                                                                         EE involved in foot pursuit of fleeing suspect, followed suspect over chain link fence that was topp-ed with barbed wire, cut left finger.
## 26839                                                                                                                                                                            EE involved in foot pursuit was attempting to jump over fence and cut both hand on wire
## 26840                                                                                                                        EE involved in forced medication order on inmate, EE got stuck by the syringe before given to inmatea nurse scratched left hand with needle
## 26841                                                                                                                                                                                         EE involved in intervention had glasses knocked off, kicked, & stepped on.
## 26842                                                                                                                                                                                   EE involved in mva. Car ran into back of tractor trailer EE was in. No injuries.
## 26843                                                                                                                                                                EE involved in one car accident - unable to answer questions - mouth wired shut - multiple injuries
## 26844                                                                                                                                                                                               EE involved in patrol car collision in which his vehicle turned over
## 26845                                                                                                                                       EE involved in physical altercation with violent inmate. Abrasion rt elbow, abrasion lt side of head, injury to 3rd lt hand.
## 26846                                                                                                                                                                               EE involved in rear end collision. Student vehiclehit physcial plant vehicle in rear
## 26847                                                                                                                                                                                                                 EE involved in rear-end mva - sore upper back/neck
## 26848                                                                                                                                                                        EE involved in restraining a client and got rt thumb caught in clothing as client resisted.
## 26849                                                                                                                                                                                           EE involved in restraining aggresive patient strained rt forearm & wrist
## 26850                                                                                                                                                                          EE involved in scuffle w/patient & was punched in eye. Also reports he reinjured his back
## 26851                                                                                                                 EE involved in search & rescue. Trying secure overturned vessel by tying rope in rough seas. Wave lifted vessel hit him rt side. Fractured rt rib.
## 26852                                                                                                                                                              EE involved in self-defense she noticed nagging feeling in her lower back increasing after train- ing
## 26853                                                                                                                                                                           EE involved in traffic accident with another car who ran a road sign striking EE vehicle
## 26854                                                                                                                                                 EE involved in traffic accident. Leg injured & other pains associated with accident. Seen at urgent care on 9/1/04
## 26855                                                                                                                                                                                                                  EE involved in use of force and injured left hand
## 26856                                                                                                                                                         EE involved in use of force by preventing inmate fro assaulting staff. Rt knee struck during use of force.
## 26857                                                                                                                                                                                             EE involved in use of force by preventing inmate from assaulting staff
## 26858                                                                                                                                                 EE involved in use of force by trying to prevent further assault on officer from inmate by forcing inmate on floor
## 26859                                                                                                                                                                                 EE involved in use of force in mental health, inmate scratched on rt side of face.
## 26860                                                                                                                                 EE involved in use of force on an inmate, injury injury his rt wrist & rec'd several scratches rt forearm. Lt wrist, minor sprain.
## 26861                                                                                                                   EE involved in use of force on inmate and was struck on rt side of head with plastic mop wringercontusion rt side of head, scratches on forearm.
## 26862                                                                                                                                                                     EE involved in use of force on inmate, sustained a scratch on index finger and jammed lt hand.
## 26863                                                                                                                                                                  EE involved in use of force w/inmate was struck inchest & fell to floor striking rt hand & rt hip
## 26864                                                                                                                                                              EE involved in use of force was pushed into bars two abrasions on lower lt arm & bump on lower rt arm
## 26865                                                                                                                                                                                      EE involved in use of force, stepped on inmate's foot & rolled over his ankle
## 26866                                                                                                                                                                    EE involved in use of force-at some point left foot slipped causing pain in left hip/lower back
## 26867                                                                                                               EE involved in vehicle accident, struck a tree andthen collided into a utility pole, sprained r ankle, fluide on l elbow, large bump on back of head
## 26868                                                                                                                                                  EE involved in vehicle chase & followed suspect behind resident. K-9 unit @ scene also. *****see lognotes*******.
## 26869                                                                                                                                                    EE involved in vehicle chase - after short foot chase. Suspect striking lt elbow, lt knee and rt hand pavement.
## 26870                                                                                                                                                                               EE involved in vehicle chase hitting several ruts in the road - neck and back injury
## 26871                                                                                                                                                           EE involved in vehicle chase. Defendant sideswipedee's vehicle in attempt to flee. Pain in neck and back
## 26872                                                                                                                  EE involved with search of compound of unit & picked up a piece of metal threw it in container sharppoint cut rt index finger below middle joint.
## 26873                                                                                                                                   EE involved with stolen motorcycle chase and unable to make turn, traveled, struck utility pole and house, injured neck and back
## 26874                                                                                                                                       EE involved, instructor training, peformiing an arm lock technique on partner when he stated that he had dislocated shoulder
## 26875                                                                                                                                                                         EE irrigating extraction site possible needle stick th lt index finger used t retract lip.
## 26876                                                                                                                                                                      EE is 13 wks pregnant - she was pulling covers over a patient when patient kicked EE in belly
## 26877                                                                                                                                                                                                           EE is a fiber tech and he thinks he got a piece in foot.
## 26878                                                                                                                            EE is a mechanic that was working on a dodge charge. EE caught finger under emergency brake release cutting index finger under nail. ()
## 26879                                                                                                                          EE is a surgeon that was performing vascular surgery operation. Scalpel dropped and cut leg through surgeon gown. Laceration to right leg
## 26880                                                                                                                                                                                             EE is a work study student who fell down stairs- pain in neck and body
## 26881                                                                                                                                                                                                             EE is allergic to latex gloves or cleansing chemicals.
## 26882                                                                                                                                                    EE is allergic to thimoroson - got worse while at work at unc, clear when not in hospital - rec'd rash on hands
## 26883                                                                                                                                EE is attributing car trip to ral. As cause of back pain-stated back stressed to point of incapacitation - position requires travel
## 26884                                                                                                                                                          EE is being seen by Dr Kolkin at raleigh hand center. EE had bilateral carpal tunnel and to have surgery.
## 26885                                                                                                                                                                                                                                        EE is claiming capal tunnel
## 26886                                                                                                                                                                                                                              EE is claiming carpal tunnel syndrome
## 26887                                                                                                                                                              EE is claiming repetitive motion strained in both wrists from keying information into tracking system
## 26888                                                                                                                                                                                                                                 EE is claiming work related stress
## 26889                                                                                                                                                                                                         EE is complaining about itchy eyes when working with mice.
## 26890                                                                                                                                                                                                                                  EE is complaining of hand pain ()
## 26891                                                                                                                                   EE is complaining of pain, numbness in hands & wrist - filed claim in 1996 for similar sym. Resulting for an on job site injury.
## 26892                                                                                                                                                                                                       EE is continuously exposed to ticks and other biting insects
## 26893                                                                                                                                   EE is doing heavy typing. The cumulative effect of the typing has apparently caused either tendinitis or carpal tunnel syndrome.
## 26894                                                                                                                                                            EE is engaged in daily in constant data entry via computer resulting in pain in fingers hand and wrist.
## 26895                                                                                                                                                                 EE is experienceing sharp pain in right shoulder &back area from firearm training recertification.
## 26896                                                                                                                   EE is experiencing bilateral pain in both wrists and tendonitis associated with daily typing in suboptimal chair and office equipment set up. ()
## 26897                                                                                                                                                                         EE is experiencing choking, heavy nose bleeding and vomiting due to conditions of building
## 26898                                                                                                                                                                                                                 EE is experiencing chronic exposure to moth scales
## 26899                                                                                 EE is experiencing continuous pain in neck/upper back when performing studies where pressure and/or extension of right arm and constant pressure is required to see structures. ()
## 26900                                                                                                                                                                                                                 EE is experiencing numbness in both hands and arms
## 26901                                                                                                                                                                                          EE is experiencing numbness in rt hand and rt arm from normal work duties
## 26902                                                                                                                                               EE is experiencing pain and numbness in rt arm andhand and that the nature and extent of injury is repetitive motion
## 26903                                                                                                                                                                                       EE is having arm and wrist pain in right arm when working on computer mouse.
## 26904                                                                                                                     EE is having chronic eye infections, which began after they moved into a another building. Ecu's occupational safety & health investigating it
## 26905                                                                                                                                                                                                                                    EE is having emotional distress
## 26906                                                                                                                                                                                                                                    EE is having hand and neck pain
## 26907                                                                                                                                                                                                           EE is having pain in neck, arm to foot- lt side of body.
## 26908                                                                                                                                                                                        EE is having post traumatic stress disorder after being raped by an inmate.
## 26909                                                                                                                                                                                           EE is having symptoms of decompression sickness followed by scuba diving
## 26910                                                                                                                                                                                        EE is know to occasionally work in high noise environment while consulting.
## 26911                                                                                                                                EE is on crutches due to previously injury. Her crutch slipped on water at water fountain and EE landed on floor. Multiple injuries
## 26912                                                                                                                                                       EE is required to use computer on daily basis. Injury has ocurred due to prolonged typing and keying of data
## 26913                                                                                                                                                                                              EE is suffering emotional stress after observing an inmate being shot
## 26914                                                                                                                                                                               EE is suffering emotional stress from having seen an inmate being shot by an officer
## 26915                                                                                                                                                                                       EE is suffering from acute shoulder bursitis after receiving flu vaccine. ()
## 26916                                                                                                                                                                                EE is suffering from medium to sharp pain in rt hand especially in lower thumb area
## 26917                                                                                                                                                                                                            EE is suffering from pain from a erogonomical condition
## 26918                                                                                                                                                                                             EE is suffering from tingling and numbness to the rt ahnd and fingers.
## 26919                                                                                                               EE is the faculty advisor for the ultimate frisbeeteam, during a match he was struck by another pla yer causing trauma to the left side of his chest
## 26920                                                                                                                                                                                                                         EE is unable to explain how injury occured
## 26921                                                                                                                                                                                  EE is unsure of exactly what happened but thinks something bit her on her lt hand
## 26922                                                                                                                                    EE is unsure of the date of injury. For the past couple of years has had pain in both shoulders & & knees from moving a buffer.
## 26923                                                                                                                                                                                              EE is using machine in postal services causing carpal tunnel syndrome
## 26924                                                                                                                          EE is wheelchair bound. His vehcile is equipped w/mechanical device that allows him to enter & exit the vehicle while still in the chair.
## 26925                                                                                               EE is working special assignment and staying at suspects residence where living conditions are unsanitary. EE contact infection on feet due to living conditions. ()
## 26926                                                                                                                      EE issued discipline via an infraction written on paper-juvenile ripped paper up and threw it in EE's face - corner of paper struck EE lt eye
## 26927                                                                                                                             EE issuing parking citations when car alarm sounded-EE turned toward sound and stepped on bark and fell injuring ankle, knee and hand.
## 26928                                                                                                                                      EE issuing weapons reached up to get retraints lt hand was on counter top w/back of hand up restraints fell on top of lt hand
## 26929                                                                                                                                                                                               EE jammed bristles of brush in rt eye when his arm hit the partition
## 26930                                                                                                                                                                                                                              EE jammed finger against refrigerator
## 26931                                                                                                                                                                                                                           EE jammed finger in door on storage room
## 26932                                                                                                                                                                                         EE jammed finger when he was closing desk drawer. Sprain of rt 3rd finger.
## 26933                                                                                                                                                                                                            EE jammed finger while playing basketball with resident
## 26934                                                                                                                                                                                                                               EE jammed foot against lower cabinet
## 26935                                                                                                                                                                                                                   EE jammed hand on the corner of desk right wrist
## 26936                                                                                                                                                                                                       EE jammed his hand on floor while trying to restrain client.
## 26937                                                                                                                                                                                                         EE jammed his left thumb during an arrest trainingexercise
## 26938                                                                                                                                                                                                   EE jammed his lt ring finger while handling a box from warehouse
## 26939                                                                                                                                                                                                           EE jammed his right ring finger during defense training.
## 26940                                                                                                                                                                                                EE jammed his thumb during pic class on another staff member's arm.
## 26941                                                                                                                                                                                                     EE jammed left middle finger while trying to restrain juvenile
## 26942                                                                                                                                                                                           EE jammed middle finger on right hand while trying to prevent a fall. ()
## 26943                                                                                                                                                                      EE jammed right hand on door, while trying to prevent a falling client from hitting her head.
## 26944                                                                                                                                                                                                           EE jammed rt thumb between face bowl and wall- contusion
## 26945                                                                                                                                                                                                                                 EE jammed rt thumb unto food buggy
## 26946                                                                                                                                                                                                                       EE jammed rt thumb while restraining student
## 26947                                                                                                                                                                                                              EE jammed thumb in closing door, 1st joint left thumb
## 26948                                                                                                                                                                                             EE jammed thumb on lt hand, unloading 2x4's from back of a dump truck.
## 26949                                                                                                                                                                                                                                  EE jammed thumb while making bed.
## 26950                                                                                                                           EE jarred her back & bruised her left hip when sheturned to leave the side of desk. Her foot becameentangled in dangling telephone cord.
## 26951                                                                                                                                 EE job involves lots of pulling & lifting. This repetative activity caused incapacitation. Mid- spine misalignment, pinched nerve.
## 26952                                                                                                                                                         EE jogging to assist officer, stepped on storm drain, slipped, fell. Sprained l shoulder, arm, hand, back.
## 26953                                                                                                                                                                                            EE jummped off a 4" tall platform and landed poorley, turned left ankle
## 26954                                                                                                                                                                                                  EE jumped a fence and landed in a hole causing injury to his knee
## 26955                                                                                                                                                                               EE jumped a fence while chasing renaway and landedwith a lot of pressure on the knee
## 26956                                                                                                                                                EE jumped a fence while pursuing a probationer when the metal piece from the top of the fence punctured his lt hand
## 26957                                                                                                                                                                EE jumped a shallow ditch while on foot pursuit-asee landed on sandy soil he twisted his left ankle
## 26958                                                                                                                                                                                              EE jumped across a small creek injured his lt leg--strain calf muscle
## 26959                                                                                                                                                                  EE jumped curve, drove into ditch hitting pole. Car went airborne. EE injured legs, back and head
## 26960                                                                                                                                                                                                                  EE jumped down into window well injuring rt ankle
## 26961                                                                                                                                                                                                                     EE jumped down out of tower and landed on leg.
## 26962                                                                                                                                                                                                                           EE jumped from bed and injured left foot
## 26963                                                                                                                                                                                                       EE jumped from bleachers to floor and felt pain in left heel
## 26964                                                                                                                                                                                                EE jumped from tailgate of truck and felt sharp pain in his foot ()
## 26965                                                                                                                             EE jumped in water to help a patient who thought they were drowning, pulled the client to safety andlost lens and hit rt side of head.
## 26966                                                                                                                                                                                        EE jumped off a slow moving planter that was being pulled behind a tractor.
## 26967                                                                                                                                                                                EE jumped off back of truck while working during hurricane floyd and twisted ankle.
## 26968                                                                                                                                                                                             EE jumped off lifeguard stand to rescue someone and sprained his ankle
## 26969                                                                                                                                        EE jumped off motorcycle to prevent bike from falling off rollback truck (trying to secure the back to the roll back truck)
## 26970                                                                                                                                                                                             EE jumped off the car top about 3 ft. To the floor twisting his ankle.
## 26971                                                                                                                                                                                                EE jumped off truck bed onto a magnolia cone and turned left ankle.
## 26972                                                                                                              EE jumped on my head, neck & shoulders while I as seated near back of state van. Shortness of breathpain shoulders, back, chest, stomach heart paral.
## 26973                                                                                                                                                                                                 EE jumped out of boat onto ground and he felt his back tighten up.
## 26974                                                                                                                                                          EE jumped out of stalled vehicle to keep from being hit by a vehicle sliding on ice. Injured hand(wrist).
## 26975                                                                                                                                                        EE jumped out of the way of a moving veh and wrestle the suspect out of the veh after a chase twisted knee.
## 26976                                                                                                                                                          EE jumped out of tractor trailer as it turned over, suffered minor head injury muscle strain, bruised leg
## 26977                                                                                                                                                                                   EE jumped over object practing falling techniques and injured rt leg/groin area.
## 26978                                                                                                                                                      EE jumped the ditch at an accident to get to the vehicle. EE strain muscle/ligament to lower back and pelvis.
## 26979                                                                                                                                                            EE jumped up from an on the knees position to help with a vicious cat & twisted her back as she got up.
## 26980                                                                                                                                                                         EE jumping over a ditch when one foot caught root and EE landed in ditch hurting left hip.
## 26981                                                                                                                                                                                                                     EE jumping over puddle landing on rt shoulder.
## 26982                                                                                                                                                                              EE jumping to a rock which rolled over causing EE to fall on right knee and bruise it
## 26983                                                                                                                                                                                                                                  EE just collapsed in the hallway.
## 26984                                                                                                                                                     EE just completed calisthenics-leading class in a 15min cool down and stretching felt a pop in left lower leg.
## 26985                                                                                                                                                               EE just finished a traffic stop and was walking back to his car and lost balance on uneven pavement.
## 26986                                                                                                                                 EE just finished changing client & was standing indoorway with hand just inside door, when client slammed door shut on right hand.
## 26987                                                                                                                           EE just finished feeding unit-sat down & stated hewas tired-then slumped over holding chest complaining of chest pain-sweating profusley
## 26988                                               EE just finished weighing a commercial motor vehicle and was placing his portable scales back into the rear compartment area of his patrol vehicle when he felt a pull in his back and started having muscle spasms.
## 26989                                                                                                                                EE just got some shovels out of road squad trailerwhen EE jumped off of the trailer EE slipped on ice, bruise to lower and mid back
## 26990                                                                                                                                   EE just hung up telephone and started to leave desk and her right hand struck a razor blade that was in the molding on the desk.
## 26991                                                                                                                                                    EE kelley stated that he was working his assignedpost in edwards & began to have pain in his chest & right arm.
## 26992                                                                                                                  EE kept trying to get inmate he managed to keep him away from the other inmate when inmate tried to run pass EE placed arms around inmate to hold
## 26993                                                                                                                                                                                                                        EE keying invoices repetitively, right hand
## 26994                                                                                                                                 EE keying timesheets into computer & suddenly experienced sharp pain in left hand & left upper arm. Pain existed through workshift
## 26995                                                                                                                                                                                                                 EE kicked by patient - contusions rt hand and knee
## 26996                                                                                                                                                                                                                                    EE kicked by student, right leg
## 26997                                                                                                                                                                                            EE kicked gate open pulling left hand through edgeof gate injuring hand
## 26998                                                                                                                                                                                                     EE kicked in arm by an agressibe client - rt biceps contusion.
## 26999                                                                                                                                                                                                                   EE kicked in chest during behavior intervention.
## 27000                                                                                                                                                                                                                  EE kicked in left knee while reatraining a client
## 27001                                                                                                                                                                                                              EE kicked in neck by horse he was trying to calm down
## 27002                                                                                                                                                                                                                              EE kicked in right knee during eri ()
## 27003                                                                                                                                                                                                                        EE kicked in the stomach by hostile client.
## 27004                                                                                                                                                                                                       EE kicked on rt knee by foul while recovering it from anest.
## 27005                                                                                                                                                                                                                                  EE kicked resident below left eye
## 27006                                                                                                                                                                             EE kicked seveal times by resident while placing tthem in seclusion, shoulder and face
## 27007                                                                                                                                                                                                       EE knee gave way, rec'd prior treatment form injury at home.
## 27008                                                                                                                           EE kneel down to pick up a medication bottle on the floor and as she was getting up her rt foot twisted causing her to fall on the floor
## 27009                                                                                                                     EE kneeled down for locker search, EE right knee popped and when she got back to the officer she noticed that her knee and calf began to swell
## 27010                                                                                                                                                                                          EE kneeling beside clients bed-stood up felt something catch in left knee
## 27011                                                                                                                                                 EE kneeling in front of bookcase taking inventory injury sharp pain through back of right knee as eeshifted weight
## 27012                                                                                                                                                               EE kneeling on the edge of client's bed when knee slipped and EE fell hitting left knee on bed frame
## 27013                                                                                                                                                                            EE knees started hurting while pushing a 250-300 lb patient to ward 332 and afterwards.
## 27014                                                                                                                       EE knelt down behind state care to place tag renewal sticker on tag, ees right knee popped causing intense pain and a weakening of the knee.
## 27015                                                                                                                                              EE knelt down on his knee on the mat, his knee began to hurt. EE also stated that he had injuredhis knee in the past.
## 27016                                                                                                                                                                     EE knelt down to at a cabinet-student called her name and EE felt a pull as she tried to stand
## 27017                                                                                                                                                         EE knelt down to practice the limited control walkher lt knee popped and began to swell through the night.
## 27018                                                                                                                                                                EE knelt down to reach behind big screen tv to test a outlet-when standing back up felt rt knee pop
## 27019                                                                                                                                                                           EE knocked a fire extinguisher off of the wall & it discharged. She breathed the powder.
## 27020                                                                                                                                                                   EE knocked glass vial on the floor that contained TB. The aerosol has potential to expose to TB.
## 27021                                                                                                                                                                                           EE knocked off paddle board by wave. Second wave knocked board into hip.
## 27022                                                                                                                         EE knocked on door of parolee residence his mothercame to door. Left door open. Dog bit him on lt hand. Puncture wound on palm of lt hand.
## 27023                                                                                                                                                                    EE knocked out of her chair by an inmate; landed on shoudler on floor. Torn right rotator cuff.
## 27024                                                                                                                                                                                    EE knocked over a message holder, went to grab it, and punctured his right hand
## 27025                                                                                                                                                               EE knocked perimeter truck out of gear while EE was standing beside truck. Truck ran over left foot.
## 27026                                                                                                                                                     EE knocked to the floor by inmate when escorting inmate to segregation, injuring right elbow, hip, and fingers
## 27027                                                                                                                                                     EE l side of neck stiffened up and EE had pain in l shoulder. EE was on m word, division, carryingsome papers.
## 27028                                                                                                                                                              EE l/control of veh when coming around a curve-ranoff road, lost control of patrol car and overturned
## 27029                                                                                                                                                                                                EE lacerated hi rt forearm on hanging ceiling wireat his work site.
## 27030                                                                                                                                                                                                    EE lacerated his forehead when he walked into a bullentin board
## 27031                                                                                                                                                                                                                       EE lacerated left hand with frayed tire belt
## 27032                                                                                                                                                                                                            EE lacerated left thumb during altercation with patient
## 27033                                                                                                                                                                                                    EE lacerated left thumb on band saw while sectioning a specimen
## 27034                                                                                                                                                                       EE lacerated lower arm which then came in contact with treated lumber and intercoastal water
## 27035                                                                                                                                                                                                  EE lacerated lt index finger when it came into contact with lathe
## 27036                                                                                                                   EE lacerated ring finger, lt hand while pressing down trash in rolling trash can located in cone center, main lounge. Laceration/lt ring finger.
## 27037                                                                                                                                                                                                                                   EE lacerated rt hand on van door
## 27038                                                                                                                                                                                        EE ladder was wet and foot slipped off. Injured shin scrape of skin of leg.
## 27039                                                                                                                                                                                                   EE laid knife down, turned and fingers hit knife cutting fingers
## 27040                                                                                                                                        EE laid wet clothes on floor, helped resident re- move clothing, and slipped on clothing and fell. Mid/low back, both legs.
## 27041                                                                                                                   EE lambert participated in oc pepper spray for nho4-24. He started having problems on fri & he progressively got worse, he is now in cdu at cmc.
## 27042                                                                                                                                                                     EE landed on right ankle awkwardly when stepping off work building sidewalk, during work hours
## 27043                                                                                                                                                    EE launching cards into river-slipped and fell into poison ivy patch-rash on both hands, feet knees and rt arm.
## 27044                                                                                                                                                               EE laying blocks having to reach around rods & bending in an unnatural position strain to lower back
## 27045                                                                                                                                                                                                EE laying inside wall installing drain line, debrisfell into rt eye
## 27046                                                                                                                                                                                                  EE leading a field trip-stung in left lower leg by yellow jackets
## 27047                                                                                                                                             EE leading a horse that tried to run, when ring finger on left hand became caught in rope. Causingcontusions on finger
## 27048                                                                                                                                                           EE leaned against metal window while getting his canteen, resulting in edge cutting him lt arm at elbow.
## 27049                                                                                                                                                                                   EE leaned against stretcher and stretcher tipped causing EE to fall to the floor
## 27050                                                                                                                                                       EE leaned back against a hot piece of steel and rcvd 2nd degree burn on left upper back appx. 4x4 inch spot.
## 27051                                                                                                                                                         EE leaned back expecting the wall to be behind her, the wall wasn't there and she landed against a vent ()
## 27052                                                                                                                                                                                                                     EE leaned back in chair & chair tipped over ()
## 27053                                                                                                                                                                       EE leaned back in chair and fell backward. Employee was getting assistance on how to log in.
## 27054                                                                                                                                                                                                       EE leaned back in chair and fell, hurting head and shoulder.
## 27055                                                                                                                                                                                                                      EE leaned back in chair and injured his back.
## 27056                                                                                                                                                                                             EE leaned back in chair and pulled back up-can't put wgt on left side.
## 27057                                                                                                                              EE leaned back in chair, metal support snapped in half, momentum carried EE backwards, spine struck the broken edge of metal support.
## 27058                                                                                                                     EE leaned back in the chair and a spring broke andthe chair fell backwards with the EE in it-pain and bruises in upper back hand and both legs
## 27059                                                                                                                                                                  EE leaned client against the wall to dress him, pipe holding curtain fell and hit EE in the head.
## 27060                                                                                                                                                                EE leaned down to assist client to stand- as EE stood and straightned up noticed pain in lower back
## 27061                                                                                                                                                                            EE leaned down to pick up a pot with a bamboo stake the bamboo stake went up EE's nose.
## 27062                                                                                                                                                                                          EE leaned down to place documented in file cabinet & felt pop in low back
## 27063                                                                                                                                                                      EE leaned forward & chair tipped over causing EE to fall to floor injuring rt knee & buttocks
## 27064                                                                                                                 EE leaned forward and over client to the opposite side to get client's leg. A sharp pain hit right upper side and moved toward front under breast.
## 27065                                                                                                                                                            EE leaned forward in chair to pick up a pen, chair tipped and EE fell out, hitting her head on her desk
## 27066                                                                                                                      EE leaned forward in chair, chair slipped from under EE and EE fell out, tried to breadk fall so EE reached for id board, cut lt hand on edge
## 27067                                                                                                                                                                               EE leaned forward in the van to retrive inmate files and felt sharp pain in her neck
## 27068     EE leaned forward to pick up an ink pen from the floor. While doing so, the chair rolled out from under her. EE fell on the floor, striking her belly on the desk drawer and hitting her back and head on table beside her chair. Her left foot hit desk also.
## 27069                                                                                                               EE leaned forward to pick up staples from floor, fell forward onto left hand & knuckle-immediately swollen/bruised, sent to nextcare, out to next fu
## 27070                                                                                                                          EE leaned in her chair to attach note to board when her chair slipped and she fell out of chair. Over the weekend neck got sore and stiff
## 27071                                                                                                                                                                          EE leaned in the back of the chair and the chair snapped and EE hit arm on the chair arm.
## 27072                                                                                                                                                EE leaned on pull out desk leaf w/elbow, board broke in half(fell to floor) striking chin on deskcheek bone, teeth.
## 27073                                                                                                                                                                                          EE leaned on table, which broke, causing EE to fall and jam his wrist. ()
## 27074                                                                                                                                             EE leaned over & chair slipped out from under him causing him to fall. EE was out 2 days which werescheduled off days.
## 27075                                                                                                                                                       EE leaned over and placed hands on table to glancedown at paper and felt sharp pain shoot across lower back.
## 27076                                                                                                                                             EE leaned over control panel to open cell door and his metal cross pen touched part of the control panel causing shock
## 27077                                                                                                                                                                            EE leaned over desk to turn bucket of files around and felt something pop in lower back
## 27078                                                                                                                                                               EE leaned over her chair and picked up a basket ofdocuments that were to be keyed into civil system.
## 27079                                                                                                                                 EE leaned over the arm of the chair to pick up something off of the floor and it felt like I cracked/crushed a rib on the lt side.
## 27080                                                                                                                                         EE leaned over to adjust seat belt of client on toliet-feet slipped out from underneath EE and hithead on metal hand rail.
## 27081                                                                                                                  EE leaned over to close a file drawer to go to another office. EE twisted to leave cabinet drawer and pulled something. Hurts on (r) side of back
## 27082                                                                                                              EE leaned over to insert center pain into latch ofbath trolley. When EE came up, EE hit the back of head, full force, on cabinet hanging above trolle
## 27083                                                                                                                                                                                 EE leaned over to lift box (approx. 25-40 lbs) felt a pain in back when raised up.
## 27084                                                                                                                                                                                                                   EE leaned over to pick up box felt pull in back.
## 27085                                                                                                                        EE leaned over to pick up item from floor chair rolled EE fell to floor injuring her left knee EE ordered out of work by physician 03/21/07
## 27086                                                                                                                                                                                             EE leaned over to put a plug in printer and felt asevere pain in back.
## 27087                                                                                                                         EE leaned over to put trash in trash can. Chair slipped out from under EE. While tring to balance with rt arm/leg. Twisted leg in process.
## 27088                                                                                                                 EE leaned over to readjust mat, when she pulled on mat it jumped and the knob on bottomside grabbed the carped floor jerking her back. Lower back.
## 27089                                                                                                                                EE leaned over to reset the alarm unit in the vehicle and this caused the vehicle to go off track to the lt and striking light pole
## 27090                                                                                                                                        EE leaned over to retrieve a violators license when he experienced a sharp pain in lower back followed by numbness in waist
## 27091                                                                                                                                                                                                  EE leaned over to slide box approx 4 feet; felt a catch in spine.
## 27092                                                                                                                            EE leaned slightly over the table where the computer was located, as EE began to straighten up she had a very sharp pain in lower back.
## 27093                                                                                                                                                                      EE leaned up against the toaster while supervisingstudent in cafeteria. Burn to left forearm.
## 27094                                                                                                                                                                       EE leanedover client chest to grab the chest strap and EE noted pain in chest and back area.
## 27095                                                                                                                                                                             EE leaning across bench to water plants. Lost footing, slipped, causing body to twist.
## 27096                                                                                                                                                                    EE leaning against the wall went to closet in laundry bldg felt something bite her on left arm.
## 27097                                                                                                                                                             EE leaning into drink cooler to lift sixpack of drink and hyperextended right elbow and it became numb
## 27098                                                                                                                                                            EE leaning on counter in starters house, looking out window, felt a sting on r hand, knocked spider off
## 27099                                                                                                                                                     EE leaning over in chair to pick something off floor-chair tipped over EE fell out of chair hit computer desk.
## 27100                                                                                                                                                                                   EE leaning over to place suspect into seat beat felt a sharp pain in lower back.
## 27101                                                                                                                                                               EE leaning over using pole with net attached to pick up debris from fountain & felt pull in low back
## 27102                                                                                                                                                                                 EE leaning under a storage rack and stood up hitting self in the back of the head.
## 27103                                                                                                                         EE leaped over a locked nurse station trying to escape an angry patient beating on a doctor in the chart room. Injured knne and cheekbone.
## 27104                                                                                                                                                                                               EE leaped up lightly to retrieve ball, pain shot through right knee.
## 27105                                                                                                                        EE leaving 3rd floor clost, went down steps, fell from 3rd floor platform & rolled to the bottom of stairs, located by 2nd floor exit door.
## 27106                                                                                                                                                                  EE leaving a home visit with a student, slipped and fell on the flagstone path, sprain left ankle
## 27107                                                                                                                                                                         EE leaving a meeting and foot slipped on second bottom step causing EE to fall to pavement
## 27108                                                                                                                                                  EE leaving a-dormitory when the mechanical door closed on right arm, impact on chest and right armtingling finger
## 27109                                                                                                                EE leaving admin building stepped off of the step fell while trying to hold on to another employee injury (r) knee (l) leg 3 mid toes (l) leg, foot
## 27110                                                                                                                                                                                        EE leaving another EE's office tripped on chair resulting in fall to floor.
## 27111                                                                                                                                                                         EE leaving another state agency when stopped at light was rear-ended by another driver. ()
## 27112                                                                                                                             EE leaving at end work day. Side walk was uneven & tripped when toe caught on elevated cement. Causing EE to fall flat on face & knees
## 27113                                                                                                                                                             EE leaving bldg for the day-missed the last step an all EE's wgt went on rt ankle resulting in sprain.
## 27114                                                                                                                                    EE leaving bldg to go home fell from 3rd floor to 2nd floor injuring both knees, left wrist, arm and soreness to center of back
## 27115                                                                                                                                                                  EE leaving building from the stairway, door was held open by rug - EE tripped over rugh and fell.
## 27116                                                                                                                                                                                     EE leaving building going down steps and slipped and fell sprained left ankle.
## 27117                                                                                                                                EE leaving cafeteria and tripped when turning overa man made elevation in the road-att to regain balance and fell on back and head.
## 27118                                                                                                                                                                             EE leaving classroom & slipped on food on floor lower back contusion & rt elbow/rt hip
## 27119                                                                                                                                                             EE leaving classroom and did not notice the two steps to lower hall and turned foot and twisted ankle.
## 27120                                                                                                                                                               EE leaving client's room after delivering laundry and backed into handle of wheelchair hitting back.
## 27121                                                                                                                                                                                                                    EE leaving coned bldg and fell off of a step ()
## 27122                                                                                                                                        EE leaving control room, when he closed control room door his 4th finger on his lt hand was caughtbetween the door & frame.
## 27123                                                                                                                                EE leaving cosmetic arts ctr & truck in front of her suddenly backed into her car. Driver side airbag deployed & hit EE in face. ()
## 27124                                                                                                                                                                              EE leaving exit gate and foot slipped off curb andee fell face first into steel pole.
## 27125                                                                                                                                                                                       EE leaving facility when insect flew into window of truck and got in rt eye.
## 27126                                                                                                                                               EE leaving for lunch out the front of courthouse took 1 step and fell face down all the way down the cement steps ()
## 27127                                                                                                                                                                                                                EE leaving for lunch, walking on side walk, fell ()
## 27128                                                                                                                                                                                              EE leaving for lunch-slipped and fell on wet stepsbreaking her ankle.
## 27129                                                                                                                          EE leaving for the day down stairs located by parking garage. Passed last landing, foot slipped from under causing EE to fall onto stairs
## 27130                                                                                                                                                                                               EE leaving for the day-slipped on ice in p/lot falling to her knees.
## 27131                                                                                                                                          EE leaving her duty station on west campus she was walking to her car, she slipped and fell on ice. Fracture of rt wrist.
## 27132                                                                                                                       EE leaving her office & stepped through double doors, & slipped on spill that was on the floor & fell. Injured rt wrist/elbow/arm & lt knee.
## 27133                              EE leaving her office for the lobby area & slipped on puddle of water left by student who mopped facility; no wet floor signs had been placed by student. EE slipped on water and landed on buttocks with head hitting floor, too. ()
## 27134                                                                                                                                                                                            EE leaving her office when she slipped & fell on wet floor just mopped.
## 27135                                                                                                                           EE leaving hotel carrying bag down the stairs to state vehicle, when she wrenched her neck. Pain in left neck/shoulder/arm/hand/fingers.
## 27136                                                                                                                                                                                 EE leaving infirmary when she stepped in hole in the ground causing EE to stumble.
## 27137                                                                                                                                                                      EE leaving jury box and heel of shoe got caught oncarpet-EE tore the ligament in the rt foot.
## 27138                                                                                                                                                                                          EE leaving maintenance shop missed bottom two steps and twisted left knee
## 27139                                                                                                                                                         EE leaving music bldg after class to play for student recital in shearer hall and she fell in driveway. ()
## 27140                                                                                                                                                                                      EE leaving offender door step EE fell off offender porch injury to right knee
## 27141                                                                                                                 EE leaving office & slipped on water in floor. Both lt feet left the floor & EE fell against the wall, rt foot landed flat-lt foot landed on side.
## 27142                                                                                                                                                                                                         EE leaving office to go to classromm and slipped on floor.
## 27143                                                                                                              EE leaving officers desk in dorm 5 coming toward front entrance door when an inmate threw somethingand hit EE in back, not serious injury, just stung
## 27144                                                                                                                                                                                                        EE leaving one of clients home and slipped on ice broke leg
## 27145                                                                                                                 EE leaving premises for lunch, EE either tripped over feet or something on walkway & fell face first onto cement, right arm, shoulder, hand, chest
## 27146                                                                                                                   EE leaving probationers home after curfew check and feet slipped on wet porch causing EE to fall on back, lft hip and hit back of head and neck.
## 27147                                                                                                                                                                    EE leaving quiet room when client wrapped his feetaround EE leg, causing the knee to be pulled.
## 27148                                                                                                                                                                         EE leaving reisdence after curfew check, slipped on plywood. Fell on lt knee, bruising it.
## 27149                                                                                                                             EE leaving room after shreading paper and tripped over power cord falling forward and caught self onback of chair injuring left wrist.
## 27150                                                                                                                           EE leaving sgt's office by rear door, turned door knob and pushed to hard against door, not realiz- ing it was locked sprained lt wrist.
## 27151                                                                                                                                                                        EE leaving shower room with, when he tripped on a trash can lid on r arm. Plt atty. *******
## 27152                                                                                                                                          EE leaving smoking room, went to put out cigarette & re-injured back causing great pain, loosing feeling in rt arm & leg.
## 27153                                                                                                                                                     EE leaving state vehicle when she slid on the pinestraw bruising both knees; pain in left wrist and both arms.
## 27154                                                                                                                                                                       EE leaving supply room & slid down on waxed floor hurting rib, lower back, left arm & elbow.
## 27155                                                                                                                                                                       EE leaving survey site, getting into car and hit head on door frame-became ill 5 days later.
## 27156                                                                                                                                    EE leaving the building and fell down 3 steps to the bottom landing-injuring upper left back, rt & left hand, knee, shins, foot
## 27157                                                                                                                                EE leaving the building tripped on crack sidewalk fell forward caught herslef with hands. Fracutre small bone near elbow of rt arm.
## 27158                                                                                                                    EE leaving the plant, when she stumbled over a wet t-shirt and fell face foward on floor that waswet from stripper. Lt elbow & lt side of body.
## 27159                                                                                                                                                                       EE leaving to attend work-related meeting stepped off sidewalk & fell twisting lt ankle/foot
## 27160                                                                                                             EE leaving to go home after shift was over trippedand fell - 2inch bruise forehead - two laceration thru chin lower lip - teeth loose - damaged plate.
## 27161                                                                                                                                                                                  EE leaving vehicle to go to residence hall and tripped and fell injuring left toe
## 27162                                                                                                                                                       EE leaving ward for lunch slipped in what appearedto be saliva on floor, fell on rt knee. Bruise to rt knee.
## 27163                                                                                                                    EE leaving welcome center by glass door at the lt of reception lobby, EE fell out the door onto the cement hitting lower back, shoulders & neck
## 27164                                                                                                                                                         EE leaving witnesses residence and stepped on a slick landscaping board lost control and twisted rt ankle.
## 27165                                                                                                                                            EE leaving work and exiting bldg when he stepped over a brick edging on ramp and tripped and fell spraining left ankle.
## 27166                                                                                                                                                                                                              EE leaving work and lost balance in hallway and fell.
## 27167                                                                                                                                                 EE leaving work around 4:15, walking accross parkiparking lot, left ankle turned, bruising & swellingto left foot.
## 27168                                                                                                                                                                                     EE leaving work for the day and tripped and fell on steps injuring left ankle.
## 27169                                                                                                                                         EE leaving work going down steps west side of bldgfoot slipped on liquid -didn't fall. Twisted ankle and rt shoulder area.
## 27170                                                                                                                                                                         EE leaving work to got to car and fell over curb in parking lot injuring rt foot and ankle
## 27171                                                                                                                    EE leaving work, from sidewalk to parking lot downa handicap ramp, lost footing and slipped/fell, injured right knee, right hand and right arm.
## 27172                                                                                                                                                                EE leaving work, stepped down steps near the fha office & EE fell. Injury to rt knee, & top of foot
## 27173                                                                                                                                                                                        EE leaving work, stepped in hole w/ r foot falling on r knee and r shoulder
## 27174                                                                                                                                     EE leaving work, tripped over some wires connectedto a surge protector, reached out to grab chair, fell onto floor on rt hand.
## 27175                                                                                                                                                                         EE leaving work-crossing street and tripped on manhole and fell down on rt elbow and knee.
## 27176                                                                                                                                                EE leaving work-walking to p/lot stumble on brick sidewalk and fell-rolled down hill injured rt footankle and knee.
## 27177                                                                                                                                                                                        EE left arm and wrist started hurting feeling numbafter having TB injection
## 27178                                                                                                                                                             EE left bldg walking across p/lot and slipped on ice twisted to fall in left shoulder instead of back.
## 27179                                                                                                                                                                                    EE left eye sill hurting, scratchy feeling due to being exposed to pepper spray
## 27180                                                                                                                                                                               EE left foot caught in man hole causing a fall in parking lot. Sprain lower leg/foot
## 27181                                                                                                                                                                    EE left foot twisted off driveway onto ground, EE fell on her right arm, injuring neck and back
## 27182                                                                                                                EE left hand & wrist swollen & hurting. EE tried to operate a weed eater and could not--went home. Operating string trimmer daily--lt hand & wrist.
## 27183                                                                                                                                                                                                  EE left hand aches at the joint of thumb. Cannot squeeze fingers.
## 27184                                                                                                                                              EE left history center stepped into visitor centerwhen EE stepped on floorboard right foot bent over& caused fracture
## 27185                                                                                                                EE left knee slipped out of joint while taking twosteps back doing the unarmed self defense tech. His ankle turned as he stepped back. (dislocated)
## 27186                                                                                                                                                                                                                                      EE left middle finger was cut
## 27187                                                                                                                                                                                        EE left office and was walking through the lobby and slipped on a wet spot.
## 27188                                                                                                                                                    EE left office to go to the restroom floor was wet and had just been mopped by county staff EE slid and fell ()
## 27189                                                                                                                                                          EE left officer's station to get some water and passed out near the water fountain, falling to the floor.
## 27190                                                                                                                                                                                             EE left room & upon returning, sat down in chair &sat on a poster tack
## 27191                                                                                                                             EE left room 236b and went to rm 243b and noticed that my left hip had a throbbing pain all the way down to my toes and up my back. ()
## 27192                                                                                                                                                                                EE left shoulder and neck begin hurting after working at ncscc for about two months
## 27193                                                                                                                         EE left the campus bookstore & fell on steps & landed on face & arms. EE broke lt hand, fractured right elbow, broke nose & broke dentures
## 27194                                                                                                             EE leg brushed against small garbage can attached to wall in bathroom stall, metal box fell landing point dowon on right big toe--EE wearing sandales.
## 27195                                                                                                                                   EE legs slipped out from under her due to the rain that was on the down ramp. Landed on rt hip & twisted lt leg as EE went down.
## 27196                                                                                                                                  EE let agency; pulled out of parking lot(sun was in eyes)EE went thru stop sign and truck hit EE onlt bumper. Injured arm, elbow.
## 27197                                                                                                                                                                                      EE let inmate out to use the bathroom, and inmate hit EE in the head and ear.
## 27198                                                                                                                                        EE letting officer through gate when gate latch fell down in process of closing gate & finger slammed between latch & pole.
## 27199                                                                                                                                                                                                 EE librarian for inmate library. Fell in bookstore& broke her leg.
## 27200                                                                                                                       EE lifing boxes from various delviery companies (approx 96). Felt her back pull continued working felt pain in back, chest and lower stomach
## 27201                                                                                                                                                                                               EE lifing heavy bag of leaves without any help andstrain groin area.
## 27202                                                                                                                                                                                                  EE lift big batteries in and out of machine caused strain to back
## 27203                                                                                                                                                                                                                   EE lift desk, felt muscle pull in his lower back
## 27204                                                                                                                                                                     EE lift paper to cut for press. EE developed tendonitis in his elbow from lifting heavy paper.
## 27205                                                                                                                                                                                                                                      EE lift podium and hurt back.
## 27206                                                                                                                                                                            EE lifted a 100 cup coffee urn out of a basket onto a counter & hurt middle/lower back.
## 27207                                                                                                                                                                                                         EE lifted a 20 pound box and felt pain in lower abdomen ()
## 27208                                                                                                                                                       EE lifted a 5-gallon paint bucket filled w/ paint to pour paint into a roller pan & felt sharp pain in back.
## 27209                                                                                                                                                                                     EE lifted a bag containing equipment when he pulled a muscle in his lower back
## 27210                                                                                                                                                                                      EE lifted a bag of trash that contains several large book straining his chest
## 27211                                                                                                                                                                                     EE lifted a bag of trash to put in to dumpster, felt her right shoulder popped
## 27212                                                                                                                                                                                         EE lifted a big pot filled with water and felt something pull in his back.
## 27213                                                                                                               EE lifted a black drainage pipe, contractor asst. Dropped end of pipe causing pipe to shake in EE hand. Ring finger was lacerated leaving blk prtcls
## 27214                                                                                                                                                                                                                          EE lifted a box and injued lower/mid back
## 27215                                                                                                                                                                                                                       EE lifted a box approximately 30 - 40 lbs ()
## 27216                                                                                                                                                                                       EE lifted a box of office supplies & as she turnedshe felt snap in her back.
## 27217                                                                                                                                                                                                        EE lifted a box to file into the box below it. Injured knee
## 27218                                                                                                                                                                                           EE lifted a box-walking across floor and felt a pulling in the left knee
## 27219                                                                                                                                                                                                                    EE lifted a brush causing hernia of the lt side
## 27220                                                                                                                                                                                          EE lifted a bucket of soybeans when he later felt pain in his lt shoulder
## 27221                                                                                                                        EE lifted a carrying case (on wheels) containing approx. 6 teachers packets materials for tutorialsinjuring rt neck and shoulder marc sneed
## 27222                                                                                                                                                         EE lifted a case of apples & pulled & twisted lower back while putting the apples on the shelf. Lower back
## 27223                                                                                                                                                                                                                  EE lifted a client and started to hurt down spine
## 27224                                                                                                                                                                                         EE lifted a client from a sitting to a standing position and strained back
## 27225                                                                                                                                                                                                        EE lifted a computer and later experienced pain in his back
## 27226                                                                                                                                                                                                         EE lifted a cooler full of drinks and ice and injured back
## 27227                                                                                                                                                                             EE lifted a crate of mile and somtheing popped in her shoulder around her collar bone.
## 27228                                                                                                                                                           EE lifted a heavy box from the floor to cart-from cart to back of car and strained back doing this task.
## 27229                                                                                                                                                                                            EE lifted a heavy coffee container to a counter top. Lower back strain.
## 27230                                                                                                                                                                       EE lifted a large heavy box of mail and placed it on a cart and felt sharp pain in low back.
## 27231                                                                                                                                                EE lifted a metal file bucket. She had most of the weight on her right hand. It strained her thumb on that hand. ()
## 27232                                                                                                                                                                                   EE lifted a pan of eggs out of food cabinet and then felt pain in right of back.
## 27233                                                                                                                                           EE lifted a pc from front side of table to lower to back side of table. During lowering pc to floor, back spasm occurred
## 27234                                                                                                                                                                                                                   EE lifted a piece of pipe and hurt his shoulder.
## 27235                                                                                                                                                                         EE lifted a piece of pvc pipe and a piece of debris fell from the pipe into EE's left eye.
## 27236                                                                                                                                                                               EE lifted a piece of steel at work and carried it across the room. Injured low back.
## 27237                                                                                                                                                                                                                             EE lifted a resident and strained back
## 27238                                                                                                                                                                                 EE lifted a rolling file cabinet to put a wedge under it & injured her lower back.
## 27239                                                                                                                                                                                        EE lifted a sewing machine motor and turned to the right and wrenched back.
## 27240                                                                                                                                                                    EE lifted a storm grate; lost grip; pulled finger (cut skin); injured right hand, middle finger
## 27241                                                                                                                                                                                                           EE lifted a table and felt something pull in groin area.
## 27242                                                                                                                                                          EE lifted a table and went to turn around to carry it to corner EE felt a catch in left hip and thigh. ()
## 27243                                                                                                                                                                                                  EE lifted a typewriter to place on table when he injured his back
## 27244                                                                                                                                            EE lifted a wire basket filled with 30 batches of processed work and felt a pain in left side after work was completed.
## 27245                                                                                                                                                                                                          EE lifted all day-noted back pain at the end of day/shift
## 27246                                                                                                                                                           EE lifted and bent over to place the type gsa centrifuge rotor into the centrifuge. Strained back muscle
## 27247                                                                                                                                                                                   EE lifted and carried in display and various equipement resulting in back strain
## 27248                                                                                                                            EE lifted and loaded 4 cases of drinks on hand cart. Began to pull back on hand cart to lift & roll cart. Felt pop in neck or shoulder.
## 27249                                                                                                                                                                       EE lifted and pulled a metal grate that has been knocked off a frame injuring his lower back
## 27250                                                                                                                                                                                                                   EE lifted and slid pt on floor and strained back
## 27251                                                                                                                                                                             EE lifted bag of biohazardous waste pipette broke through bag and punctured EE finger.
## 27252                                                                                                                                                                                                                                     EE lifted bag out of trash can
## 27253                                                                                                                                                                                           EE lifted bags off the airport conveyor and felt something pull in back.
## 27254                                                                                                                                                                                              EE lifted boiled eggs, felt something pain in lower left side of back
## 27255                                                                                                                                                                                                                            EE lifted box and felt pull in low back
## 27256                                                                                                                                                              EE lifted box ino trunk of car did not feel box was extremely heavy-reherniation of side and stomach.
## 27257                                                                                                                                               EE lifted box of conference supplies in and out of trunk onto rolling carts several times during a 3 day conference.
## 27258                                                                                                                                                                             EE lifted box of forms, carried it to her office and set it down and felt pain in neck
## 27259                                                                                                                                                   EE lifted box of keyboards and weight shifted in box causing EE to fall and strike left ribcage on printer table
## 27260                                                                                                                                                                                EE lifted box, which slipped, attempted to catch box resulting in sprained thumb ()
## 27261                                                                                  EE lifted boxes from floor in gatehouse building and placing on cart to take deliver to admin hallway. EE pushed cart to admin hallway & lifted boxes off cart & put on floor. ()
## 27262                                                                                                                                                                                                                    EE lifted boxes of copy paper and strained back
## 27263                                                                                                                EE lifted boxes of trash liners using both arms tolift them and after putting them down felt burning feeling in both arms and arms began to blister
## 27264                                                                                                                                                       EE lifted cartridge and felt sharp pain. When removed right hand she had a small cut on right middle finger.
## 27265                                                                                                                                                                                                               EE lifted case of oral contrast and injured back. ()
## 27266                                                                                                                                                                                                  EE lifted client from chair and felt pain in lt shoulder and back
## 27267                                                                                                                                           EE lifted client from floor and then carried client ino another room to put in bed felt numbness in legs and lower back.
## 27268                                                                                                                                                                  EE lifted client from high tub and placed in seat started to stand and felt pain in rt lower back
## 27269                                                                                                                                                                                                 EE lifted client from trolly to bed and felt a pull in lower back.
## 27270                                                                                                                                                                               EE lifted client onto bed - then lifted from bed into wheelchair noted pull in back.
## 27271                                                                                                                                                                             EE lifted client up in bed. Felt discomfort in mid and lower back after pulling client
## 27272                                                                                                                                                                                                EE lifted clients and noted pain in mid-spine and between shoulders
## 27273                                                                                                                                                                     EE lifted clients hip & legs to put a wing on her & felt a pain go from right shoulder up neck
## 27274                                                                                                                                                                                                                              EE lifted computer felt pain in back.
## 27275                                                                                                                                                                        EE lifted computer manual out of car and sit twisted reviewing data with trainee. Low back.
## 27276                                                                                                                                                                         EE lifted computer to place on dest to use and felt pain in lower back, legs and left arm.
## 27277                                                                                                                                                EE lifted cooler and felt a shock from lt. Arm to lt. Shoulder. Didn't report until he felt sharp pain in shoulder.
## 27278                                                                                                                                                                                                                EE lifted cover off light and got trash in left eye
## 27279                                                                                                                                                                                                                             EE lifted door and felt pop in neck ()
## 27280                                                                                                                                                                                            EE lifted end of bed to take it out of room and felt sharp pain in back
## 27281                                                                                                                                                             EE lifted full briefcase that he thought was emptyto put on file cabinet; pulled muscle in right elbow
## 27282                                                                                                                                                           EE lifted guard on print press to wash it out whenhe felt something in his lt shoulder ag: shawn troxler
## 27283                                                                                                                                                                                                EE lifted hatch door during shift change. EE felt neck and back pop
## 27284                                                                                                                                                                                                                           EE lifted heavy box 2nd schedule bundles
## 27285                                                                                                                                                  EE lifted heavy box from handtruck being struck w/strong force in the face causing bledding to the bridge of nose
## 27286                                                                                                                                                     EE lifted heavy briefcase and handle broke causing EE to stumble backwards and hit left elbow against car door
## 27287                                                                                                                                                                                         EE lifted heavy camera case while it was unlatched, causing back injury ()
## 27288                                                                                                                                                                                                       EE lifted heavy mail bucket and pulled muscle in lower back.
## 27289                                                                                                                                                                                                     EE lifted heavy mail tubs and strained left shoulder and chest
## 27290                                                                                                                                                                                                                   EE lifted heavy trash and strained his shoulder.
## 27291                                                                                                                                                                                                             EE lifted hood of autoclave & his right arm was burned
## 27292                                                                                                                EE lifted laundry bags, pt to edge of tub and caugha patient as he was falling. Didn't notice pain un-til he was at home. Upper l arm muscles hurt.
## 27293                                                                                                                                                                                        EE lifted lid on ice machine and lid fell back into eyeborw area. Left eye.
## 27294                                                                                                                                                      EE lifted mattress off floor and bent over and returned to normal position. Pulled muscle in leftside of back
## 27295                                                                                                                                                                                                                    EE lifted metal pole and strained chest and arm
## 27296                                                                                                                                                                                EE lifted milk crate, I felt sharp pain in my lt mid-back. Lt lumbar region - pain.
## 27297                                                                                                                                                                                                                        EE lifted mop bucket and strained low back.
## 27298                                                                                                                                    EE lifted mop bucket to empty water. She felt pullin muscle, did not hurt at time, but later left arm began to have sharp pain.
## 27299                                                                                                                                                                                                 EE lifted mower deck to put a jack under it pulled muscle in back.
## 27300                                                                                                                     EE lifted net of trout from hook on stocking truckand handed net of fish to another EE and felt a slight twinge in back as he landed net down.
## 27301                                                                                                                                                                                               EE lifted patient & felt pain in left arm. Muscle strain to left arm
## 27302                                                                                                                                                                                                                            EE lifted patient and felt pain in back
## 27303                                                                                                                                                        EE lifted porch's foot up and before it was completely back on the rest, a sharp pain hit EE in lower back.
## 27304                                                                                                                                                                                           EE lifted portable welder to move it and strained left shoulder and back
## 27305                                                                                                                                                                             EE lifted pt from mattress on floor to chair and EE felt something pull in lower back.
## 27306                                                                                                                                                               EE lifted pt rapidly out of chair to place on bed. For cpr. EE felt burning sensation in lower back.
## 27307                                                                                                                                                                  EE lifted pump from trailer, load shifted & caughtleft hand between pump & trailer smashing hand.
## 27308                                                                                                                                                                                                                          EE lifted recycle bin & injured his back.
## 27309                                                                                                                                                                                                                   EE lifted sheetrock and injured rt side & rt leg
## 27310                                                                                                                                                                                                                        EE lifted snow chains and injured his back.
## 27311                                                                                                                                                                                                EE lifted some oxygen tanks improperly and felt pain in lower back.
## 27312                                                                                                                                                                                           EE lifted stock to shelf and felt pain immediatly in left shoulder blade
## 27313                                                                                                                                                                                        EE lifted stool of cable up to shoulder to transport and strained his neck.
## 27314                                                                                                                                                                                                                                          EE lifted storm crate. ()
## 27315                                                                                                                                                                           EE lifted street barricade to get it out of the way and it came apart, cutting left calf
## 27316                                                                                                                                                                          EE lifted supplies from box and heard her left shoulder pop. EE has left shoulder sprain.
## 27317                                                                                                                                                                                                              EE lifted table and pulled a muscle in right low back
## 27318                                                                                                                                                                                                         EE lifted table imporperly and felt a pull in back muscles
## 27319                                                                                                                                                                                                                        EE lifted tailgate, felt pull in lower back
## 27320                                                                                                                                                                                                                 EE lifted tarp onto semi-trailer and strained back
## 27321                                                                                                                                                   EE lifted the credenza and moved it out from the wall to reinsert the phone cable into the computerinjured back.
## 27322                                                                                                                                                                        EE lifted the lid to the dumpster to throw trash in and the lid came back down on his hand.
## 27323                                                                                                                          EE lifted the phone box lid, getting ready to makean announcement about mail call and the mail box lid fell back down closing on lt thumb
## 27324                                                                                                                                                                EE lifted the tongue of boat several times to place it back on its support resulting in back strain
## 27325                                                                                                                 EE lifted the trunk of the state vehicle that she was driving to retreive essential work forms. The lid came down and struck EE on bridge of nose.
## 27326                                                                                                                                                                                                       EE lifted tongue of a galvanized boat trailer, strained back
## 27327                                                                                                                                                                                                                   EE lifted tractor weights that were too heavy ()
## 27328                                                                                                                                                                                                                     EE lifted trash and her hand started swelling.
## 27329                                                                                                                                                 EE lifted trash can lid to throw trash away, when she attempted to replace lid, felt stinging sensation in r wrist
## 27330                                                                                                                                                                                 EE lifted trash can to dump into dumpster. EE felt back strain the next morning ()
## 27331                                                                                                                                                                               EE lifted tray of glasses in diet serving line when she felt pull on her lower back.
## 27332                                                                                                                                                       EE lifted trays while stacking and tying trays. Setting trays on food cart. Sharp pain across middle of back
## 27333                                                                                                                            EE lifted two bags of patient clothes, strained lower back. EE states that prio to lifting the bagee had to place patient in restraint.
## 27334                                                                                                                                                                                EE lifted two very heavy boxes full of brochures and flyers and reinjured her back.
## 27335                                                                                                                                     EE lifted wheelchair out of vehicle and knee propped against bumper of vehicle. Knee popped to the side causing immediate pain
## 27336                                                                                                                                                                         EE lifted window flap, flap slipped out of hand jerking shoulder when EE tried to catch it
## 27337                                                                                                                                                                          EE lifting & carrying barricades from the side of the street to the middle of the street.
## 27338                                                                                                                                                               EE lifting & straining while removing rusted hingefrom floating dock station. Strained right oblique
## 27339                                                                                                                    EE lifting & transporting equipment on & off truckonto porch of log cabin moving lrg music speakers, pottery wheel and other items causing pain
## 27340                                                                                                                                                                                         EE lifting 150 5gal containers of paint which cause pain to left shoulder.
## 27341                                                                                                                                                                                                 EE lifting 2 yr old child over railing & suffered severe back pain
## 27342                                                                                                                                                                                                    EE lifting 200+ and 500+ clients resulted in rt inguinal hernia
## 27343                                                                                                                                                                                                             EE lifting 200lb pig onto trk and strained lower back.
## 27344                                                                                                                                                                                                       EE lifting 20kg pig from cage to table and injuredlower back
## 27345                                                                                                                                                                      EE lifting 50lb bucket of de-icer from back of trkand lifted it wrong hurting back and chest.
## 27346                                                                                                                                                                                    EE lifting 5gal bucket of cement when handled broke and bucket fell on rt foot.
## 27347                                                                                                                                                                                                   EE lifting a 225lb man out of his veh and injured his lower back
## 27348                                                                                                                                                                EE lifting a 50lb dog with help into cage-dog slipped around. Diagnosis cervical small hnp at c5-6.
## 27349                                                                                                                                                                                               EE lifting a 5gal bucket of punch to take to cooler and pulled back.
## 27350                                                                                                                                                                                                                        EE lifting a bag of nuts strained lft side.
## 27351                                                                                                                                                                               EE lifting a box of envelopes and he just put it down, felt right shoulder dislocate
## 27352                                                                                                                                                                                                  EE lifting a box of file folders frm the floor strain middle back
## 27353                                                                                                                                                                                                      EE lifting a client and felt something pull in left shoulder.
## 27354                                                                                                                                                                                                     EE lifting a client from tub and felt a muscle pull in rt hip.
## 27355                                                                                                                                                                                                   EE lifting a client in wheelchair felt a pull in rt side of back
## 27356                                                                                                                                                                                   EE lifting a client-client clasped down on EE's arm and caused shoulder to pull.
## 27357                                                                                                                                                                    EE lifting a computer up onto cart and felt sharp tearing pain from left to right side of back.
## 27358                                                                                                                                                                        EE lifting a container of coffee off of the trk tothe loading dock and strained lower back.
## 27359                                                                                                                                                                                                                      EE lifting a five gallon bucket and hurt back
## 27360                                                                                                                                             EE lifting a ladder and lost control and tried to keep ladder from falling and injured left hand, neck and lower back.
## 27361                                                                                                                                                              EE lifting a pail of flatware to place in convey and moved the wrong way and pulled a muscle in back.
## 27362                                                                                                                                                          EE lifting a platform off pit and stacking against wall-bent down to pick up platform and hurt lower back
## 27363                                                                                                                                                                                                  EE lifting a rack of dishes to put them into sink & strained back
## 27364                                                                                                                                                                         EE lifting a resident with two other people. Resident head came down and hit staff lt eye.
## 27365                                                                                                                                                                                   EE lifting a screen out of a water control structure. Pain under shoulder blades
## 27366                                                                                                                                                                                                                  EE lifting a television onto a rack injured back.
## 27367                                                                                                                                                                 EE lifting aluminum trays filled with small grain seed above head unto a planter-pulled lower back
## 27368                                                                                                                                                    EE lifting an outboard motor off rack & there was a wasp nest in the motor-EE suffered wasp sting to right hand
## 27369                                                                                                                                                                                                                  EE lifting and moving boxes of forms strain back.
## 27370                                                                                                                                                                      EE lifting and pulling of heavy laundry carts. EE has severe pain in lower back to right leg.
## 27371                                                                                                                                                                                                                    EE lifting and turning client felt pull in back
## 27372                                                                                                                                                                                                    EE lifting back pack blower from van felt a pull in lower back.
## 27373                                                                                                                                                                                                                                      EE lifting bed injury to back
## 27374                                                                                                                                                                              EE lifting bed mattress from clients bed-injury to left lower back and upper left leg
## 27375                                                                                                                                                                           EE lifting block to place on stack w/other blocks and hand crashed into stack of blocks.
## 27376                                                                                                                                                                                  EE lifting boat trailer from one truck to another, hurting right lower groin area
## 27377                                                                                                                                                                                                                        EE lifting box felt pain in middle of back.
## 27378                                                                                                                                                                                                            EE lifting box of lemons out of trunk and strained back
## 27379                                                                                                                     EE lifting box of paper off lift-a door slammed startling EE causing her to jerk up with the box in hand-caused pulling/tearing in low stomach
## 27380                                                                                                                                                                                               EE lifting box of papper and felt like a nerve pinched in lower back
## 27381                                                                                                                                                                                                                 EE lifting box of printed materials strained back.
## 27382                                                                                                                                                                     EE lifting box of scrap yarn from dock to dumpsterbottom fell out of box, rupture bicep tendon
## 27383                                                                                                                                                                                                        EE lifting box to carry up stairs. EE sprained right wrist.
## 27384                                                                                                                                                                                                       EE lifting box w/another EE and felt sharp pain in rt chest.
## 27385                                                                                                                                                                         EE lifting boxes all day-went home tried to move arm could not move shoulder without pain.
## 27386                                                                                                                                                                                                             EE lifting boxes and left shoulder popped out of place
## 27387                                                                                                                                                                            EE lifting boxes in college of ars & sciences' storage room caused strain to lower back
## 27388                                                                                                                                                                       EE lifting boxes in preparation for move from one building to another injury inguinal hernia
## 27389                                                                                                                                                                                       EE lifting boxes of canned goods and placing them on a shelf above her head.
## 27390                                                                                                                                                                                                    EE lifting boxes of computers to relocate-strain neck and back.
## 27391                                                                                                                                                          EE lifting boxes of printed material pulled muscles in pelvis area. Suffered incarcerated inguina hernia.
## 27392                                                                                                                                                                                                                         EE lifting boxes with ice and hurt rt hip.
## 27393                                                                                                                                                                                   EE lifting bucket of mail from mail cart felt painin back. Pulled muscle in back
## 27394                                                                                                                                                                                                                 EE lifting bucket of water to empty - pulle muscle
## 27395                                                                                                                                                                                                    EE lifting buckets of soap felt pain and numbness in left hand.
## 27396                                                                                                                                                                                                         EE lifting buffer machine on truck and strained left wrist
## 27397                                                                                                                                                                                                       EE lifting buffing machine onto truck and injured left wrist
## 27398                                                                                                                                                                                                        EE lifting cabinet from one table to another injury to back
## 27399                                                                                                                                                                                                                   EE lifting cart lf animals felp snap in rt wrist
## 27400                                                                                                                                                                                                         EE lifting case of juice injured left side shldr and ribs.
## 27401                                                                                                                                                              EE lifting cases of copy paper and placing them onto a cart and pulled muscle between shoulder blade.
## 27402                                                                                                                                                                          EE lifting cases of paper by a strap to load into veh felt something pull in rt shoulder.
## 27403                                                                                                                                                             EE lifting cases of paper from a pallet to anotherarea in printshop felt pain in lowr rt side of back.
## 27404                                                                                                                                                                                                               EE lifting client - felt pain/bulging in vagina area
## 27405                                                                                                                                                                                                           EE lifting client and felt a pull in left wrist and hand
## 27406                                                                                                                                                                                                     EE lifting client back onto bed, EE pulled some- thing in back
## 27407                                                                                                                                                                                                             EE lifting client for bath and felt pain in lower back
## 27408                                                                                                                                                                                                                       EE lifting client frm tub felt pull in back.
## 27409                                                                                                                                                                                    EE lifting client from bathtub into chair felt pull in stomach - muscle sprain.
## 27410                                                                                                                                                                                                     EE lifting client from bed to chair injury pull in right wrist
## 27411                                                                                                                                                                                       EE lifting client from bed to help on toilet chair. EE back started hurting.
## 27412                                                                                                                                                                                                 EE lifting client from chair to tub-pulled muscle in left bottocks
## 27413                                                                                                                                                                             EE lifting client from w/c into tub-felt pain in neck and back. Cervical/lumbar strain
## 27414                                                                                                                                   EE lifting client from wheelchair into bed. Repositioned client. Afterwards while walking down hall noted pain/soreness rt wrist
## 27415                                                                                                                                                                EE lifting client from wheelchair to bathing slab bent over to lift cleint felt catch in lower back
## 27416                                                                                                                                                 EE lifting client from wheelchair to tub-EE had top portin and other staff hesitated causing EE to pull rt forearm
## 27417                                                                                                                                                                                 EE lifting client from wheelchair-client threw herself back EE noted pain in back.
## 27418                                                                                                                                                                                                  EE lifting client into bed - felt pain in rt foot. Sprain rt foot
## 27419                                                                                                                                                                                                            EE lifting client into tub and felt pain in lower back.
## 27420                                                                                                                                                                                                              EE lifting client into tub when he felt pain in back.
## 27421                                                                                                                                                                                                  EE lifting client onto van & felt sharp pain in ltshoulder & back
## 27422                                                                                                                                                                                           EE lifting client out of wheelchair into recliner, pulled right shoulder
## 27423                                                                                                                                                                            EE lifting client to change-30min. Later noted pain in rt lower back radiating into leg
## 27424                                                                                                                                                                                    EE lifting client to move from one wheelchair to another and pulled lower back.
## 27425                                                                                                                                                                                                        EE lifting client to place in chair felt pop in lower back.
## 27426                                                                                                                                                                                                     EE lifting client to stand felt something pull in rt shoulder.
## 27427                                                                                                                                                                                                          EE lifting client up and felt a pop in left side of neck.
## 27428                                                                                                                                                                                         EE lifting client up in bed injury felt pull/pop in cervical/thoracic area
## 27429                                                                                                                                                                                             EE lifting client up in bed to do a change and pulled muscle in rt arm
## 27430                                                                                                                                                        EE lifting client's oxygen tank onto wheelchair and struggled with tank started felling pain in lower back.
## 27431                                                                                                                                                                                               EE lifting client's wheelchair-chair moved causingee to strain back.
## 27432                                                                                                                                                           EE lifting client-in process rt ring finger got caught on client's chair pressing ring into EE's finger.
## 27433                                                                                                                                                                                                                                 EE lifting client-pain in rt wrist
## 27434                                                                                                                                                                             EE lifting clients legs into wheelchair-EE's hand slipped and hit metal on wheelchair.
## 27435                                                                                                                                                                                    EE lifting container to put on tailgate of truck and felt something pop in back
## 27436                                                                                                                                                                                         EE lifting counter for removal out of a building and cut left index finger
## 27437                                                                                                                                                                                                EE lifting crates of bulbs and straightened her legs back went out.
## 27438                                                                                                                                                                                                   EE lifting deli and fell on wet floor. **EE req rtn apt 7-9-03**
## 27439           EE lifting depot sign kiosk off of trailer, lost balance and sign slipped out of left hand, sign fell and caught inside portion of right, middle finger between the sign EE was lifting and the second sign still on the trailer causing a laceration ()
## 27440                                                                                                                                                                                                                           EE lifting desk & slipped off hand truck
## 27441                                                                                                                                                                       EE lifting drainage crate to clean when it slippedand caught finger between grate and floor.
## 27442                                                                                                                                                                                                            EE lifting electrical equipment and injured upper back.
## 27443                                                                                                                                                                                                 EE lifting electrofishing unit out of truck and injured lower back
## 27444                                                                                                                                              EE lifting excessive weight on 06221994, change ofcondition of previous back injury, reopen for possfuture disability
## 27445                                                                                                                                                                            EE lifting field bag, hit elbow on vehicle, resulting in possible contusion to rt elbow
## 27446                                                                                                                                                 EE lifting folding stairs while on ladder-foot slipped and wgt of ladder shifted causing strain of left lower back
## 27447                                                                                                                                                                                                                 EE lifting freight injury lumbar strain lower back
## 27448                                                                                                                                                                          EE lifting full box of summer camp directories wuile unloading cart and strain lower back
## 27449                                                                                                                                                                                                             EE lifting gallon of paint and has pain in lower back.
## 27450                                                                                                                                                                                                  EE lifting heave trash bag and pulled muscle in low part of back.
## 27451                                                                                                                                                                                              EE lifting heavy aquarim from high shelt twisted rt knee coming down.
## 27452                                                                                                                                                                                         EE lifting heavy boxed of books with wrist gave out, began to ache & burn.
## 27453                                                                                                                                                                EE lifting heavy boxes at national conference in washington dc injury right knee pain while walking
## 27454                                                                                                                                                                                                    EE lifting heavy boxes of stock and pulled muscle in lower back
## 27455                                                                                                                                                                                                        EE lifting heavy buckets of water and strained groin muscle
## 27456                                                                                                                                                                                                                    EE lifting heavy equipment strained lower back.
## 27457                                                                                                                                                                                     EE lifting heavy furniture up and down stairs and ruptured disc in lower back.
## 27458                                                                                                                                                                                                            EE lifting heavy materials pull something in left wrist
## 27459                                                                                                                                                                                                                    EE lifting heavy mdf board and strain rt wrist.
## 27460                                                                                                                                                                                       EE lifting heavy meat trays to put in van to be trasported to other building
## 27461                                                                                                                                                                                                              EE lifting heavy paper boxes and strained lower back.
## 27462                                                                                                                                                                                                                   EE lifting heavy trash bag and injured her back.
## 27463                                                                                                                                                                                            EE lifting heavy trash barrells into dumpster and strains upper rt arm.
## 27464                                                                                                                                                                            EE lifting her weapons on tower #4 felt strain her lower back area. Injured lower back.
## 27465                                                                                                                                                                              EE lifting isolution cubicle door to check on animals and felt pain in left shoulder.
## 27466                                                                                                                                                          EE lifting large pan of ice to put into ice dispencer while standing on a step stool & pulled back muscle
## 27467                                                                                                                                                                                            EE lifting laundray bag to drop into chute and felt sharp pain in back.
## 27468                                                                                                                                                                                       EE lifting light fixture into ceiling and fixture slipped and cut left hand.
## 27469                                                                                                                                                                          EE lifting loveseat to clean-when sitting sofa back down it slipped nad landed on rt foot
## 27470                                                                                                                                                                  EE lifting luggage to place on bed-tripped and twisted wrist and fell with all body wgt on wrist.
## 27471                                                                                                                                                                                                          EE lifting material out of back of truck and pulled back.
## 27472                                                                                                                             EE lifting matress from bed. EE strained herself and she started bleeding very heavy. Strain or hurt lower part of abdomen-female area
## 27473                                                                                                                                          EE lifting meal containers from rear of a pick-up truck & felt a pop in back, resulting in sharp pain lower right of back
## 27474                                                                                                                                                                                                  EE lifting metal bar, lt index finger got caught while pulling up
## 27475                                                                                                                                                               EE lifting metal sign onto truck-weight of sign caused EE to fall on back and sign landed on stomach
## 27476                                                                                                                                                                                                      EE lifting mop bucket to empty water felt muscle pull in back
## 27477                                                                                                                                                                                                                  EE lifting mop water and water splashed into face
## 27478                                                                                                                                                                                            EE lifting old chair to be replace by new chair which caused back pain.
## 27479                                                                                                                                                                  EE lifting one end of the telephone pole while in block was placed under it so it could be sawed.
## 27480                                                                                                                                                                                                                 EE lifting pans on trayline and sprained rt wrist.
## 27481                                                                                                                                                    EE lifting patient and hct helping didn't lift her share of weight, causing weight to be lifted by EE left arm.
## 27482                                                                                                                                                                                                                                   EE lifting patient and hurt back
## 27483                                                                                                                                                     EE lifting patient torso up felt popping sensation in lft palm, index finger & thumb. Lft thumb & wrist strain
## 27484                                                                                                                                                                                         EE lifting pc box when felt sharp pains in left side-hand/fingers/arm/neck
## 27485                                                                                                                                                                           EE lifting plastic container heavy dropped it causing cut to middle finger on right hand
## 27486                                                                                                                                                                                                                 EE lifting poles on patrol boat and strained back.
## 27487                                                                                                                                                                                        EE lifting postage machine to unjam meter and strained rt back and shoulder
## 27488                                                                                                                                                                EE lifting potatoes from 1 table to another. A sharp pain came in back & neck (right side) shoulder
## 27489                                                                                                                                                                     EE lifting printer from base to relocate it. Lifted printer, it slipped and he felt wrist pop.
## 27490                                                                                                                                                                                                            EE lifting rack of water bottles felt pull in leftknee.
## 27491                                                                                                                                                                                                EE lifting recycling container and felt a sharp pain in lower back.
## 27492                                                                                                                                                                                           EE lifting resident bed up (head) and jammed (l) thumb on head of bed ()
## 27493                                                                                                                                                                                                EE lifting resident w/another staff strain shoulder (2-person lift)
## 27494                                                                                                                                                                                                         EE lifting resident, felt a sharp pain under rightknee cap
## 27495                                                                                                                                                                                       EE lifting resident, using 2 person lift, residentsqueezed right wrist area.
## 27496                                                                                                                                                                                                 EE lifting roll of wire to put on a truck & pulleda muscle in back
## 27497                                                                                                                                                                   EE lifting roller barrell to separate recycling paper into proper totes and strained upper back.
## 27498                                                                                                                                                 EE lifting seat from transfer van in order to re- move stretcher could be placed in van transport. Low back strain
## 27499                                                                                                                                  EE lifting section of wall into dump trk when a nail from the wall caught EE's glove catching handunder teh wall when letting go.
## 27500                                                                                                                                                                                                                                 EE lifting self service station ()
## 27501                                                                                                                                                                                                            EE lifting several heavy boxes onto cart and hurt back.
## 27502                                                                                                                                                                                                 EE lifting side rails on flat tub-left pinky finger caught in rail
## 27503                                                                                                                                                                 EE lifting signs onto mule - felt something pull. Woke up 8-24 am with pain in stomach/groin area.
## 27504                                                                                                                          EE lifting spreader to move to put on gator when he tripped on debris on floor. At that point, EE felt stomach pull with a sharp pain. ()
## 27505                                                                                                                                                                  EE lifting steel plate with crane, crane chain slipped catchingee hand between the hook and plate
## 27506                                                                                                                                                                                                           EE lifting tailgate on equipment trailer and pulled back
## 27507                                                                                                                                                                                                EE lifting tailgate onto dump truck and pulled muscle in lower back
## 27508                                                                                                                                                                                                                      EE lifting trash and later felt pain in back.
## 27509                                                                                                                                                                                                           EE lifting trash bag from can to truck injury lower back
## 27510                                                                                                                                                                                                                   EE lifting trash bag in dumpster, strain to back
## 27511                                                                                                                                                                                       EE lifting trash barrell that was overloaded with books and strained rt amr.
## 27512                                                                                                                                                                                               EE lifting trash from can to put into dumpster andpulled lower back.
## 27513                                                                                                                                                                     EE lifting trash out of barral to put in dumpster lower back, all the way across, legs hurting
## 27514                                                                                                                                                                                           EE lifting trash out of container full of books and strained upper back.
## 27515                                                                                                                                                                                                                 EE lifting trash to put in dumpster. Injured back.
## 27516                                                                                                                                                                                             EE lifting up dumpster and hand on bar-when liftedup cut to left hand.
## 27517                                                                                                                                                     EE lifting up on a wheelchair with heavy patient because chair would not turn in the process she strained back
## 27518                                                                                                                                                                     EE lifting up on center bar to open gate and braktthat holds fence to gate cut left mid finger
## 27519                                                                                                                                                                                                          EE lifting water bucket. Pull on lower back down left hip
## 27520                                                                                                                        EE lifting water cooler from table to transfer to another segregation call. Attempted to set cooler on floor & felt muscle pull. Lower back
## 27521                                                                                                                                                                                                                       EE lifting weights and got rt finger caught.
## 27522                                                                                                                                                         EE lifting weights-sun got into eyes could not seewhere to place weights and lost balance pulled shoulder.
## 27523                                                                                                                                                                         EE lifting wet laundry out of barrel felt pull/pain in back when lifted up--strain lft hip
## 27524                                                                                                                                                                                                      EE lifting wetvac from van & strained lower back and left leg
## 27525                                                                                                                                                                                                              EE lifting while cleaning out a room and inj her back
## 27526                                                                                                                                                                                              EE lifting window to place fan in it, and in doingso the window fell.
## 27527                                                                                                                                                                                                           EE lifting wooden boxes off truck and injured lower back
## 27528                                                                                                                                   EE lifting/carrying a porter case, portable scanner& printer along w/briefcase & laptop up stairs felt sharp pain in groin area.
## 27529                                                                                                                                                             EE lifts heavy boxes, hangs clothes, sews on a daily basis. Moves heavy racks with clothing on them ()
## 27530                                                                                                                                                                                                          EE lifts heavy equipment & developed a hernia on lt side.
## 27531                                                                                                                    EE lining students up after lunch, and older student ran up to EE & pushed her knocking EE into the floor, lt shin, ankle, leg, arm, back, neck
## 27532                                                                                                                                                                                            EE loadaing stock and struck littler finger on left hand against a box.
## 27533                                                                                                                                                                               EE loaded and charged firearm, fire 1 shot, sharp pain and loud ringing in both ears
## 27534                                                                                                                                EE loaded files into a cart and was attempting to get cart from a platform onto the floor. Pulled something in left arm & shoulder.
## 27535                                                                                                                                                EE loaded monitoring equipment into the state vehicle and opening front door to the office when she felt tightening
## 27536                                                                                                                                                           EE loading 120# can of grease on vehicles on vehicle, foot slipped allowing can to sit down hard on foot
## 27537                                                                                                                                                          EE loading a resident in wheelchair into van and tripped over belts in floor felt left knee and foot pop.
## 27538                                                                                                                                           EE loading and unloading boxes felt discomfort on 6/18, had physical and other tests, has difficulty walking and sitting
## 27539                                                                                                                                                                 EE loading bales of hay, other EE threw bale over truck stricking EE in the back of head and neck.
## 27540                                                                                                                                                     EE loading boxes into state veh raising up bumping head on door frame injury bump on head and neck compression
## 27541                                                                                                                                                                                            EE loading boxes ont flat cart-turned to pull cartand left knee popped.
## 27542                                                                                                                            EE loading boxes onto trk-att to move hand trk to lift gate when secondary wheels collapsed mashed rt foot btwn hand cart and lift gate
## 27543                                                                                                                                                                                                            EE loading brush into truck-limb scratched EE in rt eye
## 27544                                                                                                                                                                                              EE loading car for photo shoot and bumped head on corner of hatchback
## 27545                                                                                                                                                                                 EE loading carts on elevator and right hand was caught between carrier & elevator.
## 27546                                                                                                                                                    EE loading client into ambulance-stretcher would not fold up-when closing EE's leg was caught between stretcher
## 27547               EE loading clients onto van. Client got stuck between the rails on the van. EE got inside of van behind the chair and tried to push her. She went to the front of the wheelchair and tried to pull the front of the chair when she hurt her back. ()
## 27548                                                                                                                                                                          EE loading extractor into back of housing truck; when lifting extractor felt pull in back
## 27549                                                                                                                                                             EE loading file cabinets on truck-reached to grab one from falling and felt burning sensation in back.
## 27550                                                                                                                                                                                            EE loading files into car-foot slipped on wet curb and fell on rt knee.
## 27551                                                                                                                                                             EE loading firewood into truck, whe a stob (branch) bounced off the truck and hit him in the mouth. ()
## 27552                                                                                                                                        EE loading food tray on truck. Fell of back off truck striking lt leg against dock. Lt leg, hip, thigh, contusion/abrasoin.
## 27553                                                                                                                                     EE loading hand truck w/supplies-wind blew truck door into products causing handle of hand trk to hit EE in lower pelvis area.
## 27554                                                                                                               EE loading heavy duty tables onto roller cart. Cartbegan to roll-EE tried to steady cart-table on other side fellhitting EE cutting and mashing hand
## 27555                                                                                                                                                                                      EE loading items into van and slipped on ice in frt of bldg injured rt elbow.
## 27556                                                                                                                                             EE loading large pieces of cardboard & loading them into school van cut finger in middle. Cut right hand first finger.
## 27557                                                                                                                                                          EE loading logs & debris on truck after throwing a log onto truck it rolled off hitting him in the mouth.
## 27558                                                                                                                                                                           EE loading logs and tripped on some branches falling on stick which cut rt hand and knee
## 27559                                                                                                                             EE loading machine onto trk-machine slipped and eeatt to catch machine and caught left hand between machine and door of establishment.
## 27560                                                                                                                                                                              EE loading metal cage onto back of trk when left forearm rubbed against edge of cage.
## 27561                                                                                                                                                                             EE loading new xray equip, equip was heavier than assumed, strain to back and shoulder
## 27562                                                                                                                                                   EE loading nitrogen tank onto trk w/another personwhen tank slid out of cart att to put back and smashed fingers
## 27563                                                                                                                                                                                                     EE loading object onto truck felt something pull in lower back
## 27564                                                                                                                                                                         EE loading pallet on truck with forklift, EE hand was caught between pole & forklift fram.
## 27565                                                                                                            EE loading radio equipment into state car preparing to travel to anderson mountain to repair transmitter. Experienced severe pain in back while loading
## 27566                                                                                                                                                              EE loading steel poles in truck that had been cut, with tourch. One slipped and clm't burned his hand
## 27567                                                                                                                                               EE loading supplies, load locks were stacked on floor & while picking up load locks a stack rolledoff onto left foot
## 27568                                                                                                                                                                               EE loading truck and did not see how injury happen; caught rt arm in lift gate truck
## 27569                                                                                                                                                                                     EE loading truck with equipment when a fox attacked EE on left leg above ankle
## 27570                                                                                                                                                                           EE loading truck with gloves on - came in contact with posion ivy while clipping debris.
## 27571                                                                                                                                                                                                EE loading up the back drop onto truck and felt pain in lower back.
## 27572                                                                                                                                                     EE loading van when a bust of wind came up and caused door to break loose smashing EE between vanand the door.
## 27573                                                                                                                                                                                              EE loading water sample-glass container broke causing cut on rt thumb
## 27574                                                                                                                                                                              EE loading wood materials from loading dock and stepped wrong and fell twisting back.
## 27575                                                                                                                                                              EE locked door he pulled door quickly to catch the hasp with the lock and oinched his lt index finger
## 27576                                                                                                                                                              EE locked the gate and turned around to walk to van at which time her rt foot turned over on rt sid e
## 27577                                                                                                                               EE locked the gate to dorm d and turned around was struck by an inmate in the face, fell down then the inmate kicked EE in the face.
## 27578                                                                                                                    EE locking dangerour items in the synergestic useda knife to cut some ties on a lock, when the knifeslipped off a tie & stabbed EE index finger
## 27579                                                                                                                                                                        EE locking door from outside-pulled key out and lost footing putting body weight on rt knee
## 27580                                                                                                                                               EE locking door to laundry room. When EE grabbed the door knob to shut the door, left 3rd finger was in the door. ()
## 27581                                                                                                                                                 EE locking gate located on back yard behind a-dormarea, latch caught and hit her right hand. Right hand swelled up
## 27582                                                                                                                                                         EE locking office door when her bag fell, pulling her arm, which hit the hand rail. Contusion right elbow.
## 27583                                                                                                                                                                                            EE locking the sliding glass door and closed left index finger in door.
## 27584                                                                                                                                                                                                        EE locking up building and twisted rt ankle on iceand snow.
## 27585                                                                                                                                         EE locking up clients room for lunch when client came running up and grabbed EE's arm and elbowed EE in the ribs and side.
## 27586                                                                                                                                                                                     EE logging specimens-top not on tube properly- & it sprayed blood in EE's face
## 27587                                                                                                                                             EE looked down to get his radio and looked back up he was too close to vehicle in front of him & struck it from behind
## 27588                                                                                                                                                                                      EE looked down to pick up her briefcase and ran a redlight and struck a truck
## 27589                                                                                                                 EE looked into students room, the student was deadfrom an apparent suicide, causing EE to experiencetraumatic stress Dr. Peter schulz 919 654 6776
## 27590                                                                                                                                 EE looked up when someone spoke to her from a tower, her foot hit something on the sidewalk causing her to fall on rt knee & hands
## 27591                                                                                                                                                                EE looking at a file-bent down to look in basket and stood up and hit head on corner of file drawer
## 27592                                                                                                                                                                          EE looking at a steam valve and moved the insulation back and something fell into my eye.
## 27593                                                                                                                                                                              EE looking at court docket book-book began to falland EE caught book injuring rt arm.
## 27594                                                                                                                                                                                               EE looking at street signs for direction and collided w/another veh.
## 27595                                                                                                                                EE looking for keys while walking and tripped and fell to ground injuring left hand $55. 00 wkly to atty clinchered $32, 500 5/4/06
## 27596                                                                                                                      EE looking for metal fasteners to make file and leaned forwrd in chair looking in file cab which slid back caused EE to fall on top draw side
## 27597                                                                                                                                                                                    EE looking for ping pong balls on shelf and got splinter in left middler finger
## 27598                                                                                                                          EE looking in woods for southern pine beetle spotswhen tick bit him on lt arm. Flu-like symptoms occured on 8/6. Dr. Sent blood for test.
## 27599                                                                                                                                        EE looking out dorm window and backed up & bumped into table. He jumped over to get away from table he turned lt foot over.
## 27600                                                                                                                                   EE loosen an inmates's handcuffs that were too tight and the inmate was bleeding and EE came in contact with the inmates' blood.
## 27601                                                                                                                                                EE loosening bolt to adjust machine, bolt suddenly let go and hand struck gard. Skinned knucle, right index finger.
## 27602                                                                                                                                                                             EE loosening bolt to remove bleachers and rt indexfinger got caught in metal framework
## 27603                                                                                                                                                                        EE loosening chuck and foot hit petal on machine causing machine to twist left ring finger.
## 27604                                                                                                                                                 EE loosening motor bolts ratchet slipped causing hand to strike bolt. Laceration knuckle of middle finger rt hand.
## 27605                                                                                                                    EE loosing balance getting up from filing papers in bottom file drawer falling hit arm on chair twitneck and back head on floor, strain to back
## 27606                                                                                                                                                                                     EE loss his balance and fell off of the porch injuring his head, back and neck
## 27607                                                                                                                          EE lost balance & fell against & down a brick wallwhile participating in the distric team challenge abrasion to lt/middle back & rt elbow
## 27608                                                                                                                                                                                                  EE lost balance & twisted his left knee during training exercise.
## 27609                                                                                                                EE lost balance and fell after being pushed by a client. EE seen at er 3/8, rtw 3/16. Seen at ortho3/16 for continued pain and swelling to r ankle.
## 27610                                                                                                                                                                 EE lost balance and fell as she got up and began to walk falling into a cubicle wall hitting head.
## 27611                                                                                                                                EE lost balance and fell back onto couch when demonstrating how to stand on one foot to child as part of the child's evaluation. ()
## 27612                                                                                                                                      EE lost balance and fell between frames of several drop ceiling while installing broadband coaxial cable for video connection
## 27613                                                                                                                              EE lost balance and fell hitting head on the cement wall and was knocked unconscious, cool cloth was placed on head and lt at 5:00pm.
## 27614                                                                                                                                                                                                                      EE lost balance and fell in door of warehouse
## 27615                                                                                                                                                EE lost balance and fell into chair in courtroom. Bruised chest wall, top of stomach swelling, tenderness and pain.
## 27616                                                                                                                                                                                             EE lost balance and fell on stairs when he was enroute to another unit
## 27617                                                                                                                                                                                                              EE lost balance and fell. Right foot rolling underhim
## 27618                                                                                                                                                EE lost balance and slipped while cleaning out shower floor. EE hit head on wall, hurt back, and hurt upper leg. ()
## 27619                                                                                                                                                                                                                                  EE lost balance and twisted ankle
## 27620                                                                                                                                                                                                                             EE lost balance and twisted left ankle
## 27621                                                                                                                                                                                     EE lost balance going up stairs and fell onto bakc sliding down stairs on back
## 27622                                                                                                                                                                                                                             EE lost balance in the parking lot. ()
## 27623                                                                                                                                                         EE lost balance off stepping stool while pulling down forms. Injury to left side of back mid to lower back
## 27624                                                                                                                                                                                                  EE lost balance on flight of stairs and fell straining left thigh
## 27625                                                                                                                                                                                                EE lost balance on ladder tried to steady self and hurt rt shoulder
## 27626                                                                                                                                                                                                                           EE lost balance on slick floor and fell.
## 27627                                                                                                                                                      EE lost balance on wax build floor on 5th floor. And then on 7/19/02 she fell again when her r knee gave away
## 27628                                                                                                                                                                    EE lost balance when a coke bottle rolled under feet causing EE to fall down three cement steps
## 27629                                                                                                                                                                            EE lost balance when left foot stepped on uneven pavement causing EE to fall on rt knee
## 27630                                                                                                             EE lost balance while checking water meter which was located beneath floor behind small door. EE fell forward striking elbow on the metal grate floor.
## 27631                                                                                                                                                   EE lost balance while erecting scaffolding and grabbed with rt arm trying to break fall and strained rt shoulder
## 27632                                                                                                                                                                                   EE lost balance while moving through a 3' tall bear doorway spraining left ankle
## 27633                                                                                                                                                                                                     EE lost balance while pulling stool closer injury to left knee
## 27634                                                                                                                                                                               EE lost balance while transferring heavy equipment(display board) --- fell backwards
## 27635                                                                                                                                                                                 EE lost balance while trying to get up from a kneeling postion and couldn't do so.
## 27636                                                                                                                                                                                                      EE lost consciousness and feel to the sidewalk injuring head.
## 27637                                                                                                                                                                                                              EE lost control of crushman and fell off hitting tree
## 27638                                                                                                                                                                             EE lost control of his patrol car striking a ditchand utility pole... Injured his neck
## 27639                                                                                                                                                                              EE lost control of his patrol car while in pursuitof a motorcyle... Multiple injuries
## 27640                                                                                                                                                                                  EE lost control of his vehicle while avoiding hitting a deer that was in the road
## 27641                                                                                                                          EE lost control of patrol vehicle while attemptingto overtake a violator, skidded off left shoulder and struck a concrete retaining wall.
## 27642                                                                                                                                                                                              EE lost control of pov on I-95 s. In dunn, nc hurricane fran clean up
## 27643                                                                                                                                                                                   EE lost control of veh in curve left road struck a tree and overturned fx rt arm
## 27644                                                                                                                                                          EE lost control of vehicle responding to another officer; ran left on roadway and struck some smalltrees.
## 27645                                                                                                                                                                                                            EE lost finger on thumb, index, middle and ring finger.
## 27646                                                                                                                                                                              EE lost footing and fell against car bumper while exiting car trunk of assigned duty.
## 27647                                                                                                                                                                                                              EE lost footing and fell down due to dip in pavement.
## 27648                                                                                                                                                                                                                          EE lost footing and fell from step ladder
## 27649                                                                                                                                                                                                      EE lost footing and hit head on tile wall. Needed 2 stitches.
## 27650                                                                                                                                                                          EE lost footing and slipped off of running borad while att to exit the cab of fire engine
## 27651                                                                                                                      EE lost footing and slipped while responding to a code yellow in b-block causing EE to bear all wgt on left foot-previously broken this year.
## 27652                                                                                                                                                                              EE lost footing on back of truck bed while bed wasinclined for fill. Cut to left knee
## 27653                                                                                                                                                                 EE lost footing on gravel and fell to ground striking arms, fractured right arm, left arm sprained
## 27654                                                                                                                                                                 EE lost footing on steps, fell down one flight of concrete steps. Pain in ribs--24 weeks pregnant.
## 27655                                                                                                                                                               EE lost footing on the stairwell which caused him to twist the side of his foot. Right ankle sprain.
## 27656                                                                                                                                                                                        EE lost footing on uneven sidewalk and fell on face, knees and rt shoulder.
## 27657                                                                                                                                                                       EE lost footing on worn carpet in frt of desk in the courtroom causing injury to both knees.
## 27658                                                                                                           EE lost footing while getting into state car she grabbed the steering wheel, she has a burning, pull-ing sensation in shoul, upper back and arm is numb.
## 27659                                                                                                                                                                                               EE lost footing while stepping on to loading dock and strained ankle
## 27660                                                                                                                                                                                                      EE lost footing while walking down a group of steps and fell.
## 27661                                                                                                                  EE lost footing while walking down stairs, was unable to grasp handrail & fell down remainding four (4). Contusions foot, knee cap & back of head
## 27662                                                                                                                                                                                                           EE lost footing, slipped and fell on concrete surface ()
## 27663                                                                                                                                                                                                                      EE lost grip of a gas can and it hit his shin
## 27664                                                                                                                                                                                           EE lost grip on counter top and it fell causing EE to cut rt ring finger
## 27665                                                                                                                                                                                               EE lost grip on still tank while moving it, dropping it on his foot.
## 27666                                                                                                                                                                                             EE lost her balance and fell against a table... Injured her lower back
## 27667                                                                                                                                    EE lost her balance and fell backwards; no pain ordiscomfort until 3 days later; left hip pain and lower leg pain with numbness
## 27668                                                                                                                                                                                                       EE lost her balance and fell off some steps injuring lt foot
## 27669                                                                                                                                                             EE lost her balance and fell while trying to put atv a top of a locker..... Left shoulder and left arm
## 27670                                                                                                                                                                                                                EE lost her balance and fell; injured her left knee
## 27671                                                                                                                                                                                  EE lost her balance and slipped twisting her rt ankle/heel form 18 also filed. ..
## 27672                                                                                                                                                                                                                       EE lost her balance and twisted her rt ankle
## 27673                                                                                                                               EE lost her balance at the top of the stairs and fell down, bruised thighs, sore calves, bruised lefthip, shoulder, forearm and hand
## 27674                                                                                                                                                    EE lost her balance on uneven brick and pulled herhamstring/injured right knee (surgery last year onright knee)
## 27675                                                                                                                                                                              EE lost her balance when going down steps. EE was sweeping steps. Strain to left knee
## 27676                                                                                                                                                                                       EE lost her balance when she stood up... Hit refrigerator; injured left knee
## 27677                                                                                                                                                                                           EE lost her balance while going down the steps and injured her left side
## 27678                                                                                                                                                                                                EE lost her balance; slipped and fell injuring chest, breast, groin
## 27679                                                                                                                                                                                                 EE lost her footage on stairs, fell hitting right knee on steps ()
## 27680                                                                                                                                                                                      EE lost her footing on some loose gravel.... Felt a pop in her right shoulder
## 27681                                                                                                                                                                                                         EE lost her footing; injured her right knee/right shoulder
## 27682                                                                                                                                                                                                        EE lost his balance and fell back landing on his left wrist
## 27683                                                                                                                                                                                                                 EE lost his balance and fell injuring his rt wrist
## 27684                                                                                                                                                                                                EE lost his balance and fell off the loading dock at the warehouse.
## 27685                                                                                                                                                                                              EE lost his balance and fell to floor while attemping to sit in chair
## 27686                                                                                                                                                                                                                      EE lost his balance and fell twisting lt knee
## 27687                                                                                                                                                                     EE lost his balance and fell while going up some steps striking his lt hand finger on the rail
## 27688                                                                                                                                                                                  EE lost his balance on the ladder at bldg 43 and fell against the door casing. ()
## 27689                                                                                                                                                                                        EE lost his balance while cutting papymus.... Laternoticed pain in his back
## 27690                                                                                                                                                        EE lost his footing due to the floor stripper on the floor which caused him to slip and hurting his lt knee
## 27691                                                                                                                                                                                 EE lost his hold when the boat took off and fell backwards injuring his lower back
## 27692                                                                                                                                                                               EE lost his temper and struck a glass door causingglass to break cutting his rt hand
## 27693                                                                                                                                                              EE lowered car, tank from under care an hydraulic lift, tank fell and splashed gas into eyes and face
## 27694                                                                                                                                                                                          EE lowering a goat in a wench and the wench broke and hit EE in left hand
## 27695                                                                                                                                                                                                   EE lowering a lift gate when it fell on left hand middle finger.
## 27696                                                                                                                                                    EE lowering a portable room divider when it fell on rt shoulder causing EE to strain muscle in backon left side
## 27697                                                                                                                                              EE lowering an overhead door. Door was decending too rapidly & EE attempted to press stop switch a chain hit his hand
## 27698                                                                                                                                                                                                 EE lowering client bedrail. Wooden bedrail fell ontop of left foot
## 27699                                                                                                                                                                                                  EE lowering of hydraulic wheelchair lift and injured rt shoulder.
## 27700                                                                                                                                                                                      EE lowering patrol boat- stepped in the crack and force wrist in odd postion.
## 27701                                                                                                                      EE lowering self down between stack of bored up tables in the storage trailer left shoulder poppedwent almost to the floor. Strained shoulder
## 27702                                                                                                                                                    EE lowering steel door on the tower he was not positioned properly therefore pullin his back causing back pain.
## 27703                                                                                                                                           EE lowering track tention piston to concreate floor by hand pinston fell on EE's finger. Rt hand laceration and fracture
## 27704                                                                                                                                                                                                                          EE lt arm was burned due to a welding rod
## 27705                                                                                                                                                                                                          EE lt finger was caught while performing padding exercise
## 27706                                                                                                                                                                   EE lt forearm hit bony area against cabinet & caused a long bruise area w/swelling on rt shoulde
## 27707                                                                                                          EE lt front wheel ran off pavement EE turned wheelsharpley to get vehicle back on roadway. Hit embankment. Injured head, neck, back, hip, arm collar bone
## 27708                                                                                                                                                                                                          EE lt hand finger was caught between a door and hand rail
## 27709                                                                                                                                                                                                                       EE lt hand finger was closed in a metal door
## 27710                                                                                                                                                                                                                         EE lt hand finger was cut on a razor blade
## 27711                                                                                                                                                                             EE lt hand hurts trying to hold two patients backfrom trying to fight another patient.
## 27712                                                                                                                                                                                                                       EE lt hand was caught between a sliding door
## 27713                                                                                                                                                                                                                        EE lt hand was caught between bathroom door
## 27714                                                                                                                                                                                                                         EE lt hand was caught between the bed rail
## 27715                                                                                                                                                                                                                             EE lt hand was caught in a warmer door
## 27716                                                                                                                                                                                                                             EE lt hand was caught in the gate door
## 27717                                                                                                                                                                                                                               EE lt hand was closed in a cell door
## 27718                                                                                                                                                                         EE lt hand was hit by softball traveling approxi-mately 60mph while viewing pticher pitch.
## 27719                                                                                                                                                                                                                         EE lt hand went thru a windshield of a car
## 27720                                                                                                                                             EE lt kitchen headed towards e dorm and does not remember anything for several min. She apparently fell and passed out
## 27721                                                                                                                                                                                                       EE lt leg brush against a box top flap cutting into her skin
## 27722                                                                                                                                                                                                                             EE lt middle finger was caught in gate
## 27723                                                                                                                                                                                                                         EE lt middle finger was caught in the door
## 27724                                                                                                                                                                                                                      EE lt ring finger was punctured with a lancet
## 27725                                                                                                                                                                        EE lt shoe slipped of and EE fell tripping over itee fell hitting her head and lt shoulder.
## 27726                                                                                                                                              EE lt thumb and forefinger pressed down an twisted fuse causing in order to remove fuse at that point EE felt a shock
## 27727                                                                                                                                                                                       EE lt thumb was cut on a razor while conducting a search on inmates property
## 27728                                                                                                                                                                                              EE lt thumb was cut on unknown object while searching inmate property
## 27729                                                                                                                                                                                                                 EE lt thumb was cut while assisting with an inmate
## 27730                                                                                                                                                                                                                EE lt thumb was smashed between the gate of a fence
## 27731                                                                                                                                                                 EE lunged to stop a refrigerator from falling fromatop of a table that it was on. Injured her back
## 27732                                                                                                                              EE machine was stopped up and running ober and we needed to make more tea, pulled basket out-hot teafell on lt hand & part of my arm.
## 27733                                                                                                                                                                                      EE made a pick up of loose linen. Something in linen flew into EE's left eye.
## 27734                                                                                                                                                                  EE made a quick turn aroung while in the nurse staton and started to feel sharp pain in shoulder,
## 27735                                                                                                                    EE made a traffic stop and was standing outside his vehicle when passing tractor-trailer blew gravel in right eye. Corneal scratch to right eye
## 27736                                                                                                                                                 EE made a vehicle stop in a private driveway, as EE was exiting patrol care a dog bit him on the left upper thigh.
## 27737        EE made a vehicle stop on us 158 for possible impaired driver. The driver possessed a concealed handgun. The driver failed to comply with the EE commands and raised the handgun toward the EE. The EE discharged his duty weapon and fatally wounded drive
## 27738                                                                                                                  EE made a vehicle stop. Subject jumped & ran. EE preceeded after subject. Subject made sudden stop & EE reacted & made sudden stop. Twisted knee.
## 27739                                                                                                                                                                                                          EE made an awkward step on porch twisting her right ankle
## 27740                                                                                                                  EE made attempt ot repair leaking sight glass on boiler. He used one wrench when he used a second wrench to counter the direction of first wrench
## 27741                                                                                                                                                                                                         EE made contact w/fellow actor directly to rt side of jaw.
## 27742                                                                                                                                                                                     EE made full facial and body contact with edge of unused shower stall door. ()
## 27743                                                                                                                EE made home visit to give form to client. Travel-ing in car back to office-hit by can turning left at light. Neck strain, bruised across abodomen.
## 27744                                                                                                                              EE made house call, after leaving, walking to car EE fell from the sidewalk onto the road. Scraped left knee and sprained right foot.
## 27745                                                                                                                            EE made left turn in parking lot with a car following behing him. EE stopped and started againdid not see car behind him and backed him
## 27746                                                                                                                                    EE made left turn onto ramp. Another vehicle was backing up ramp. EE swerved to avoid colliding with vehicle and hit guard rail
## 27747                                                                                                                                                                                                                        EE made mis step while walking down hallway
## 27748                                                                                                                                                                                                                         EE made sudden turn causing rt knee to pop
## 27749                                                                                                               EE mainly does computer work. Pain began in '03, &approx. 2 months ago pain returned. Med tx 8/13/07 maybe work related. Rt hand/arm/shoulder/wrist.
## 27750                                                                                                                         EE maintaining security on recreation field he stepped on metal bench. Foot slipped causing him to hit lt knee on bench. Abrasion lt knee.
## 27751                                                                                                                                                                           EE makes construction site visits. EE might have been exposed to asbestos. Body systems.
## 27752                                                                                                                                                                                                         EE makes pizzas everyday - noted pain in fingers and hands
## 27753                                                                                                                                                                               EE making an incision with scalpel----scalpel slipped, cutting EE left index finger.
## 27754                                                                                                                                                                                          EE making announcement to pts, afterward one of the pts hit EE on face ()
## 27755                                                                                                                                                                        EE making arrest on impaired subject, subject had open cuts on face scratches on arm saliva
## 27756                                                                                                                                                         EE making bed and mattress to large for bed-att topull mattress up to place sheet-noted pop in rt shoulder
## 27757                                                                                                                                                                                 EE making bed, while putting pad on bed, orgel came out of pad and got in EE's eye
## 27758                                                                                                                                                EE making canteen run for segregation. In doorway of segregation. Fell on ground onto rt knee, then rt. Shoulder ()
## 27759                                                                                                                                                                                  EE making clients bed- leaned across to tuck in corners- felt strain/pain in back
## 27760                                                                                                                                                                       EE making coffee stepped back on table leg lost balance and fell, hit rt arm and passed out.
## 27761                                                                                                                                                                               EE making easter eggs with glue gun--glue dropped onto right index finger and burned
## 27762                                                                                                                                                                                  EE making her rounds when she slipped on a wet floor that an inmate was cleaning.
## 27763                                                                                                                                                                           EE making home visit of juvenile, dog came from behind house and bit EE on upper lt leg.
## 27764                                                                                                                                                                                                     EE making inspection, during inspection placed rt arm on blade
## 27765                                                                                                                       EE making mail deliveries on campus parked vehicleon top of hill & exited vehicle began to roll, re-enter injured lt leg-abrasion, contusion
## 27766                                                                                                                       EE making pudding in mixing bowl & lifted bowl to carry refrigment - felt pain in my back when putt-ing the bowl of pudding - center of back
## 27767                                                                                                                       EE making repairs on gas pack heating and cooling unit at pharmacy when ladder hit his ankle. Ladder slipped out of hand. Fracture lt ankle.
## 27768                                                                                                                                                                                              EE making rounds and slipped down stairs and fell injuring left ankle
## 27769                                                                                                                                                                                                                                EE making rounds and slipped on ice
## 27770                                                                                                                                                EE making rounds door locked trapped in room untildoor released. Left shoulder raised area, mid backpain/discomfort
## 27771                                                                                                                              EE making rounds during daily duty. Went to step down step located at washroom of unit, he slipped and injured lt calf of his lt leg.
## 27772                                                                                                                                                                                    EE making rounds he exited the gate and stepped ona rock and fell his lt ankle.
## 27773                                                                                                                                                                                            EE making rounds in housing unit when bitten by some type of insect. ()
## 27774                                                                                                              EE making rounds in kitchen placed ice chest on sanitizer stepped on pedal. Steam & hot water spewdon upper face, body, thigh-bruise knozzle hit eye.
## 27775                                                                                                                                                                                    EE making rounds in the shower area, floor wet, slipped and twisted right knee.
## 27776                                                                                                                                                                         EE making rounds on unit 7 inmate threw urine on EE head, neck, left shoulder and left arm
## 27777                                                                                                                                                                               EE making rounds on yard; opened gate & punctured left thumb on wire tie on gate. ()
## 27778                                                                                                                                                          EE making rounds slipped on an unknown substance rt foot slid back sending body forward landed on rt knee
## 27779                                                                                                                                                               EE making rounds with doctor & stepped on edge of sidewalk, twisted rt ankle, lost balance and fell.
## 27780                                                                                                                                                                 EE making rounds-as she was walking up stairs-she reached top and fell causing contusion right leg
## 27781                                                                                                                      EE making routine round on unit two recreation yard he alleged that some type of flying insect landed on rt forearm stinging rt wrist forearm
## 27782                                                                                                                                                   EE making routine single cell check when inmate threw a white sour liquid substance into EE face &about his body
## 27783                                                                                                                         EE making security check of outside doors came around corner & slipped in mud. Fell to ground injuring rt elbow. Had surgery on knee 11/96
## 27784                                                                                                                                                                                           EE making surplus delivery-rear-ended by another vehicle-lower back pain
## 27785                                                                                                                                                 EE making up bed caught foot in electric cord fell forward injury left knee forearm both palms lower back and neck
## 27786                                                                                                                    EE making yard call - began to exit inmate called her, turned to see who called her, cellblock door closed hitting her lt forearm. Bruised arm.
## 27787                                                                                                                                          EE making yard check on yard #1 when she stepped into muddy area. Slipped and tried catch himself arm. Injuring lt wrist.
## 27788                                                                                                                                                                                          EE making yard checks when he slipped in a hole and fractured left ankle.
## 27789                                                                                                                               EE manipulating infected tick guts with forcepts EE pricked his left hand middle finger with the edge of the forcepts (lyme disease)
## 27790                                                                                                               EE manually crank window to open & dispense meds. Shoulder became progressively more painful. Began first day of work in new unit. Repetitive motion
## 27791                                                                                                                                                                               EE manually restraining a pt who was hitting another staff member injury right elbow
## 27792                                                                                                                                                                                EE mashed a stapler and felt a sharp pain shoot uptip of middle finger; right elbow
## 27793                                                                                                                                                                                                           EE mashed finger wile pulling stretcher out of ambulance
## 27794                                                                                                                                                                                                                              EE mashed hand between cart and fence
## 27795                                                                                                                                                                              EE mashed hand indoor trying to get med. Cart through the door; door slammed on it ()
## 27796                                                                                                                                                                                     EE mashed her lt index finger against dish holder. She did not seek treatment.
## 27797                                                                                                                                            EE mashed her right hand between wall and handle of hand truck, when the wheel of the truck dropped in the floor drain.
## 27798                                                                                                                                                                             EE mashed his finger between the food cart and thedoor. Contusion right middle finger.
## 27799                                                                                                                                                                                                                     EE mashed left hand between tray cart and wall
## 27800                                                                                                                                                                                                                                EE mashed left index finger in door
## 27801                                                                                                                                                                                                                         EE mashed left ring finger on rigging lift
## 27802                                                                                                                                                                                                  EE mashed left small finger in door hindge when shutting door. ()
## 27803                                                                                                                                                                             EE mashed middle finger, plow was raised and mashed finger between the prybar and plow
## 27804                                                                                                                                                                                                                                EE mashed right hand in bed railing
## 27805                                                                                                                                                                                                                          EE mashed right ring finger in dishwasher
## 27806                                                                                                                                                                                                                   EE mashed rt index finger on metal file cabinet.
## 27807                                                                                                                                                                                                                                  EE mashed rt third finger in door
## 27808                                                                                                                                                                                      EE measuring propane levels disturbed a yellow jacket nest & was stung by one
## 27809                                                                                                             EE medicated a psychotic patient who had unprovoked 2 other patients. Later the patient struck EE w/fists on l side of head over ear knocking EE down.
## 27810                                                                                                                 EE meeting w/juvenille offender & parent in officejuvenille became upset, ran from office, through building. EE attempted to catch juv. Hurt ankle
## 27811                                                                                                                                                       EE mention to supervisor she was having chest pains, continued to work, went to er diagnosed w/muscle strain
## 27812                                                                                                                                                         EE met another officer on stairs to recd newspaperwhen she stepped down off steps and twisted her rt ankle
## 27813                                                                                                                                                                                EE met with client infected with TB who is on medication - has respiratory problems
## 27814                                                                                                                                                                                     EE mis-steped & tumbled down steep incline. Compound fracture lt hand & wrist.
## 27815                                                                                                                                                                                                 EE mis-stepped curb in back of jones bldg upon arriving at work ()
## 27816                                                                                                                                                                                   EE mis-stepped going from one cage to another down a step and left ankle turned.
## 27817                                                                                                                                                                                                            EE misjudge step while carry a tray--falling on lt knee
## 27818                                                                                                                                                                                        EE misjudged step down from bldg falling forward & hitting head on asphalt.
## 27819                                                                                                                                                  EE misjudged step while coming out of lee biology. While trying to prevent himself from fallen he twisted back ()
## 27820                                                                                                                                                               EE missed a step & fell forward on her face while exiting building where she had just taught a class
## 27821                                                                                                                                                                                 EE missed a step and fell down 3 steps-spraining both ankles, and multiple bruises
## 27822                                                                                                                                                                                                        EE missed a step and fell down stairs landing on bar guard.
## 27823                                                                                                                                                                                                                      EE missed a step and fell injuring both knees
## 27824                                                                                                                                                                                                    EE missed a step and fell injuring her left leg and right thigh
## 27825                                                                                                                                                                                                        EE missed a step and fell injuring low back and rt shoulder
## 27826                                                                                                                                                                                                              EE missed a step and fell injuring rt arm and lt knee
## 27827                                                                                                                                                                                                                         EE missed a step and fell on her left side
## 27828                                                                                                                                                                                                                   EE missed a step and fell, twisting right ankle.
## 27829                                                                                                                                                                                                                EE missed a step and injured her right wrist, knees
## 27830                                                                                                                                                                                                                            EE missed a step and sprained her ankle
## 27831                                                                                                                                                                                 EE missed a step on stairwell landing and fell to sidewalk after losing balance ()
## 27832      EE missed a step on the 2nd floor stairwell of the echi at ecu, resulting in a fall of 1-2 steps. EE stated that she caught herself on the hand rails, but had abrasions to her shins & knees. EE also stated that she became light-headed after the fall. ()
## 27833                                                                                                                                EE missed a step on the auditorium stage and fell head first from the top step to the bottom. Left foot, right knee, multiple cuts.
## 27834                                                                                                                                                                                                 EE missed a step resulting in a fall that twisted EE's right knee.
## 27835                                                                                                                                                                                                                             EE missed a step twisting her rt ankle
## 27836                                                                                                                                                                                                       EE missed a step whil going down steps and strained rt ankle
## 27837                                                                                                                                                                                                                           EE missed a step..... Injured right foot
## 27838                                                                                                                                                                                                                                   EE missed a step; injury unknown
## 27839                                                                                                                                                                                                            EE missed a stepped and felt a sharp pain in rt leg/hip
## 27840                                                                                                                                                                                                              EE missed bottom round of ladder while stepping down.
## 27841                                                                                                                                                                                                                         EE missed bottom step and fell on left leg
## 27842                                                                                                                                                                                   EE missed bottom step on step stool and fell on floor landing on her buttocks ()
## 27843                                                                                                                                                                       EE missed chair, fell on floor hand hurt his upperback and buttocks. Abrasion rt lower back.
## 27844                                                                                                                                                        EE missed last step att to catch self from fallingputting wgt on rt leg injuring knee to keep from falling.
## 27845                                                                                                                                                                                                               EE missed last step of ladder and fell injuring back
## 27846                                                                                                                                 EE missed last step on stairs inside courthouse asleaving work on the 19th of March and fell on lt foot. Sprain lt foot and ankle.
## 27847                                                                                                                                                                                    EE missed stairwell step and fell injury to left side hand twisted arm and back
## 27848                                                                                                                                                                                                               EE missed step and fell forward and hit head on wall
## 27849                                                                                                                 EE missed step between a brightly & dimlt lit section of the airport, lost balance and hit cornrw/lt eye & landed on knees injured back from impct
## 27850                                                                                                                                                                EE missed step climbing off hay bailer and fell injuring left leg, left side of back and left ribs.
## 27851                                                                                                                                                                                                                                 EE missed step coming down ladder.
## 27852                                                                                                                                                                               EE missed step walking down steps and fell 3 stepsto the ground - contusion rt ankle
## 27853                                                                                                                                                               EE missed step while getting into a skid steer loader causing lower leg to strike frame injury ankle
## 27854                                                                                                                                                                                                                         EE missed steps and fell twisting rt ankle
## 27855                                                                                                                                                                                                        EE missed the bottom step of staircase and twisted ankle ()
## 27856                                                                                                                                                                                           EE missed the bottom step when getting off of a ladder... Right shoulder
## 27857                                                                                                                                                                                                EE missed the curb and fell injuring her right hand, elbow and knee
## 27858                                                                                                                                                                                                          EE missed the cut while doing an autopsy and cut his hand
## 27859                                                                                                                                                                                                      EE missed the last step on a ladder & twisted his back & neck
## 27860                                                                                                                                                                                           EE missed the step & fell off the curb while exiting the mechanical room
## 27861                                                                                                                                                                                           EE missed the step and fell on the side of his right foot and twisted it
## 27862                                                                                                                                                                                                                  EE missed the step coming down from the platform.
## 27863                                                                                                                                       EE missed the step onto the concrete floor pad of the golf cart shed and fell. Injured knee. Cm-pam reddeck keyrisk ext 1407
## 27864                                                                                                                                                                                                                 EE missed the step when walking to the offices. ()
## 27865                                                                                                                                                                                                                      EE missed weed and hit her foot with the hoe.
## 27866                                                                                                                                                                                                             EE misstepped and fell on left while approaching curb.
## 27867                                                                                                                                                                                                             EE misstepped on a stepping stone, lose her balance ()
## 27868                                                                                                                                                                                           EE misstepped on ladder falling on his rgt elbow, hip, shoulder and head
## 27869                                                                                                                                                                             EE misstepped on the stairs, rt face was hit on the wall and eyelid cut by eyeglasses.
## 27870                                                                                                                                                                                                                 EE misstepped while cleaning pool & fell into pool
## 27871                                                                                                                                                                EE mistepped causing weight of piece to be taken up by one arm which pulled muscle in left mid-arm.
## 27872                                                                                                                                                                                                 EE mixed an acid & base together which created gasthat EE inhaled.
## 27873                                                                                                                                                                                    EE mixed chemical together; mixture splashed on his left upper arm and shoulder
## 27874                                                                                                                                                                                                                EE mixing two chemicals together and inhaled fumes.
## 27875                                                                                                                                   EE monitoring client. EE getting down & client came up & stood in front EE & then began hitting EE pulling on EE. Strain lt arm.
## 27876                                                                                                                                                                                                             EE mopped bathroom floor and slipped on the wet floor.
## 27877                                                                                                                                                                                         EE mopped continously on 6/15-6/16 and her back began to hurt at days end.
## 27878                                                                                                                                                                         EE mopping and bending down to clean under the bathroom bench and felt pain in lower back.
## 27879                                                                                                                                                                                                       EE mopping bedroom floor, foot slipped pain in rt knee & leg
## 27880                                                                                                                                                                                          EE mopping control room floor when she slipped on wet floor injuring back
## 27881                                                                                                                                                                             EE mopping fitness center-mopping in back & forth motion when he felt pain in low back
## 27882                                                                                                                                                                        EE mopping fl had the door block with trash can and another EE open the door EE hit in back
## 27883                                                                                                                                                                                 EE mopping floor and slipped on wet floor injury to left wrist and left lower back
## 27884                                                                                                                                                                      EE mopping floor backed into chair fell hit head on wall hurt back injury head and lower back
## 27885                                                                                                                                                                                                                     EE mopping floor hit rt hand on edge of table.
## 27886                                                                                                                                                                                           EE mopping floor-May have turned hand wrong way bone popped up-left hand
## 27887                                                                                                                                                                                              EE mopping hallways floors and felt pain in to of her back and chest.
## 27888                                                                                                                                                                                      EE mopping out shower when he took a few steps & slipped & fell on right knee
## 27889                                                                                                                                                                                                         EE mopping restroom and fell on back hitting head on floor
## 27890                                                                                                                                       EE mopping restroom floor, backing up while holding door open with her body, struck elbow on stall door. Contusion lt elbow.
## 27891                                                                                                                                                                                                                          EE mopping under bed & pain in lower back
## 27892                                                                                                                              EE mopping up spills on steps - was coming back down and slipped - tried to catch by holding rail but went down two steps on backside
## 27893                                                                                                                                                         EE more often becoming sick since begining work innov. With sinus and respiratory illnesses. Body systems.
## 27894                                                                                                                                                                                                   EE mounting av equipment via ladder and fell and sprained ankle.
## 27895                                                                                                                            EE moved 19 boxes of forms & envelopes from loadindock area to office put boxes on stock shelves strain rt low back & radiating upwards
## 27896                                                                                                                                                                     EE moved 30 pallets of water in 4 days and felt muscle spasms in low back and tingling in leg.
## 27897                                                                                                                                                                                       EE moved a bed out, stepped over bed, heard & feltsomething pop in left knee
## 27898                                                                                                                                                          EE moved a box weighing about 25-40lbs then placedpackets of paper onto shelf to store. Lower back injury
## 27899                                                                                                                                                           EE moved a chair across and uneven floor every day from Oct 99 - June 2003-claims strain in back and hip
## 27900                                                                                                                              EE moved a floor lamp and strained her back... "knee and shoulder problems not work related" ann payne- 252-354-9557*car-252-241-0166
## 27901                                                                                                                                             EE moved and performed her duties as usual. The most she did during the day was walk across the campus. Lumbar injury.
## 27902                                                                                                                                          EE moved bed away from wall to clean wall and did not feel any pain until the next day. EE out of work 3-25-08 - present.
## 27903                                                                                                                                                                                                               EE moved bending over patient and felt pain in back.
## 27904                                                                                                                                                                                                                             EE moved boxes of books from athletics
## 27905                                                                                                                                                           EE moved chair for patient, bent over tried to stand and could not, sharp pain in right back shoulder ()
## 27906                                                                                                                               EE moved chairs occupied EE's who had been exposedto pepper spray. EE went to restroom upon leaving see had burning in genital area.
## 27907                                                                                                             EE moved computer from computer table to the top of her desk. After using the computer @ its new location, EE felt pain in her left & right wrists. ()
## 27908                                                                                                                                                                                                         EE moved copier to pulg into new plug in and strained back
## 27909                                                                                                                             EE moved forward in the chair to open file cabinetand wheels on chair stuck in a crack in floor causing EE to fall hitting her bottom.
## 27910                                                                                                                                                                EE moved from resident's bedside and bed alarm cord became tangled around left ankle and EE fell ()
## 27911                                                                                                                                                                                           EE moved full garbage bag from trash and felt burning sensation in back.
## 27912                                                                                                                                                                                                          EE moved furniture to clean behind and felt pain in back.
## 27913                                                                                                                                                EE moved his chair to open his desk drawer and cuthis indexfinger tip on a loose staple on the underside of lt hand
## 27914                                                                                                                                            EE moved large number of ups packages, EE felt some upper back pain on 2-27-09 while installing an uyps, which worsened
## 27915                                                                                                                                                                                                   EE moved laundry care, shoe string caught on lift causing injury
## 27916                                                                                                                                                          EE moved pushed and pulled and carried tables chairs sofas beds mirowaves from one floor to another floor
## 27917                                                                                                                                                             EE moved refrigerator from storage area to second floor apt by himself and strained back and left knee
## 27918                                                                                                                                                     EE moved the bakers box whick struck top of the hood that held pots two pots fell striking EE above her lt eye
## 27919                                                                                                                                                                                           EE moved to the side in his swivel chair and felt pain in his right knee
## 27920                                                                                                                                                                                                                    EE moved tv and injurd his back in the process.
## 27921                                                                                                                                                                                                           EE moved xrays from location to another. Lower back pain
## 27922                                                                                                                                             EE moving & installing computer equipment & cabelsback and neck muscles were strained. Strain to neck and back muscles
## 27923                                                                                                                                                                                EE moving 4 file cabinets from raleigh to mooresville, strained right bicep area ()
## 27924                                                                                                                                                 EE moving a air conditioner too close to wall and had to struggle with unit to put down on dolly andstrained back.
## 27925                                                                                                                                                                                   EE moving a box when another box on the wall fell & hit EE right foot on big toe
## 27926                                                                                                                                                                      EE moving a box with a computer monitor in it fromthe office to van and pulled muscle in back
## 27927                                                                                                                                                                                EE moving a cart of chairs & the cart fell over cutting middle finger on right hand
## 27928                                                                                                                                                                                        EE moving a chair back underneath table and hit rt hand on corner of table.
## 27929                                                                                                                                                                                                                              EE moving a computer and injured back
## 27930                                                                                                                                                                        EE moving a freezer up stairs when finger got stuck between wall/freezer causing laceration
## 27931                                                                                                                       EE moving a pallett of fertilizer w/pallett jack when EE became trapped between door on building & jack causing severe bruising to left leg.
## 27932                                                                                                                                 EE moving a table against wall in bathroom table snapped back and rt little finger was caught between table edge and concrete wall
## 27933                                                                                                                                                                        EE moving a table in her office and apparently stepped wrong/suffered torn cartilage r knee
## 27934                                                                                                                   EE moving a wooden cabinet when it fell catching his right hand under it, EE jerked hand away and severely tore skin & flesh of rt middle finger
## 27935                                                                                                                                         EE moving a wooden door/partition with 2 other employees lifted onto a dolly pushed onto truck todumpster---injury to back
## 27936                                                                                                                                                                             EE moving and car came face on-EE tried to move over and other veh side swiped EE veh.
## 27937                                                                                                                                                                                     EE moving and carrying wooden bench to different location strained lower back.
## 27938                                                                                                                                                                   EE moving and lifting 50gal barrels for a store- room exhibit and pinched a nerve in lower back.
## 27939                                                                                                                                                                                      EE moving around desk, shoe dragged on floor, EE tripped and fell to floor ()
## 27940                                                                                                                   EE moving around machine to turn it off-rug had bad split in it & it caught her shoe causing her to fall to floor-injuring knees/rt arm/shoulder
## 27941                                                                                                                                EE moving bags of concrete at picnic shelter whilemoving concrete one slipped and fell on right footpossible fracture to right foot
## 27942                                                                                                                                                                                        EE moving bed frame and a small piece of metal punctured into her rt thumb.
## 27943                                                                                                                                                          EE moving bin of books to loading dock @ library when bin fell causing EE to lose balance & cut her hand.
## 27944                                                                                                                                                                                                 EE moving bleachers frm one gym to another when bleacher hit foot.
## 27945                                                                                                                                                                                       EE moving boar back to pen-boar swung his head around and cut leg with tusk.
## 27946                                                                                                                                                        EE moving book case, book case slipped and cut EE on left hand near palm on a nail. Cut left hand near palm
## 27947                                                                                                                                                                                                                          EE moving bookcase into room injured back
## 27948                                                                                                                                                                               EE moving books from one shelf to another - noted pain in upper back at end of shift
## 27949                                                                                                                                                                                                EE moving box of magazines to elevator and pulled a muscle in back.
## 27950                                                                                                                                 EE moving box of trash bags (25 lbs) from top shelf loss balance on step stool started to fall tried to break fall with right hand
## 27951                                                                                                                                                                                  EE moving box out of walkway-bent down to slide box under table-pulled right knee
## 27952                                                                                                                                                                                                                   EE moving boxes and felt pain in right shoulder.
## 27953                                                                                                                                                                                                                                  EE moving boxes and strained back
## 27954                                                                                                                                                                                                            EE moving boxes from floor for stripping and hurt back.
## 27955                                                                                                                                                              EE moving boxes from one section to another when elbow brushed against metal shelf cutting left elbow
## 27956                                                                                                                                                                                                                         EE moving boxes in atc 120 and hurt wrist.
## 27957                                                                                                                                 EE moving boxes in storage room. Tripped & fell forward. Lt leg became wedged at lt knee & ankle while boxes fell twisted lt knee.
## 27958                                                                                                                                                                                                                               EE moving boxes injury to lower back
## 27959                                                                                                                                                                EE moving boxes into stock room-asst handing boxesto EE-box hit door jamming door into EE's rt hand
## 27960                                                                                                                                                        EE moving boxes of maps from the floor to a palletwhen he felt a sharp pain in lower back, rt leg and foot.
## 27961                                                                                                                                                                         EE moving boxes on carts, felt pain down lower back sharp pain down back. Lower back pain.
## 27962                                                                                                                                                                                        EE moving boxes to metal shelf against wall-shelf fell onto EE's right foot
## 27963                                                                                                                                                                EE moving boxes to storage closet and getting box of handouts auditors needed straining lower back.
## 27964                                                                                                                                                                                                        EE moving buffer down the steps when it fell on his rt foot
## 27965                                                                                                                                                EE moving buffer frm bldg to van with another EE hand slipped causing all wgt to EE causing a strain to lower back.
## 27966                                                                                                                                                                          EE moving bunks - lt finger smashed between bunks causing slight laceration to lt finger.
## 27967                                                                                                                                                                               EE moving buoys of bed of dump truck, bolt of foambuoy dropped on 2nd toe on rt foot
## 27968                                                                                                                                                                                                          EE moving cabinets with hand truck and injured left wrist
## 27969                                                                                                                                                                               EE moving cart loaded with tables, tables shoved onto EE hands. Bruise on both hands
## 27970                                                                                                                                                                                            EE moving cart with equipment to elevator and pulled muscle in left arm
## 27971                                                                                                                                                                                                EE moving chair across floor slipped and fell on back. Back sprain.
## 27972                                                                                                              EE moving chair to move legs, chair hit outlet andee attempted to push outlet back in when sparks came from the outlet. Lt arm started to feel funny.
## 27973                                                                                                                          EE moving cleaning agents on hand truck when one container fell off truck onto pavement causing it to burst & splash into his face & eyes
## 27974                                                                                                                              EE moving clothing bin from one location to other in attempt to locate shoes for inmate, EE pushing cart caused strain to middle back
## 27975                                                                                                                                                                                      EE moving computer equipment, hand/wrist caught between computer and door jam
## 27976                                                                                                                                                                                                        EE moving computer tower case and dropped it on eeleft foot
## 27977                                                                                                                                                             EE moving computer/printer from table to table andlater experienced pain and numbness in left forearm.
## 27978                                                                                                                                                                                   EE moving computers and printers-pushing and pulling more than arm could handle.
## 27979                                                                                                                                                                                EE moving copy paper boxes and stacking them underneath a desk strained lower back.
## 27980                                                                                                                                                                                                              EE moving crate and pulled muscle in back and stomach
## 27981                                                                                                                                                                              EE moving cylinder w/cylinder cart, cart upset striking EE on l knee w/ l hand strain
## 27982                                                                                                                                                                                                 EE moving desk from storage room & desk came apart& cut EE on hand
## 27983                                                                                                                                                                  EE moving desk through door when desk shifted thenee recoved balance, but felt pop in lower back.
## 27984                                                                                                                                                                                             EE moving desk when desk leg came apart falling on right foot and toes
## 27985                                                                                                                                                                                        EE moving drink machine which caused shoulder and neck pain w/muscle spasms
## 27986                                                                                                                                                                EE moving electrical bed to a confined space for electrical outlet and pulled something in low back
## 27987                                                                                                                                              EE moving electrical equipment in room-dust build up on cabinets blown in air by vents and dust got into EE's rt eye.
## 27988                                                                                                                                                                                                 EE moving empty bottle of nitrogen down stairs left lower back pop
## 27989                                                                                                                                                                 EE moving equipment and print shape box fell off and it fell on EE foot. Contusion top right foot.
## 27990                                                                                                                                                                                                   EE moving equipment for radio engineer & got debris in right eye
## 27991                                                                                                                                                                                                                    EE moving equipment into bldg bitten by insect.
## 27992                                                                                                                                                               EE moving equipment on cart-tripped and fell on eewhen wheels locked in place injured nose, and arms
## 27993                                                                                                                                                                        EE moving equipment to p/u trk-wasp came out of trk and stung EE on rt wrist and left knee.
## 27994                                                                                                                                                                                                    EE moving equipment to put into trunk of car felt pain in back.
## 27995                                                                                                                                                                                      EE moving exercise bike and caught finger under neath when lowering - rt hand
## 27996                                                                                                                                                                                                                 EE moving file cabinet and cut finger on left hand
## 27997                                                                                                                                                                EE moving file cabinet down the stairs, hand slipped, pulled a muscle in the calf of the right leg.
## 27998                                                                                                                                                                                         EE moving file cabinet lft hand caught in drawer as it closed. Mild sprain
## 27999                                                                                                                                                            EE moving file cabinet when it became unbalanced and fell off the hand trk falling on EE's left hiparea
## 28000                                                                                                                                                                          EE moving file cabinet-key in lock-sat filing cabinet down and key cut EE's right forearm
## 28001                                                                                                                                                                                                          EE moving files and work related items during work hours.
## 28002                                                                                                                                                             EE moving files to be archived-lifted multiple file folders from upper drawer and strained right elbow
## 28003                                                                                                                    EE moving files to boxes for storage. EE turned from file cabinet & set into boxes. Moved file from 1 box by stretching and place in other box.
## 28004                                                                                                                                                                                             EE moving filing cabinet with hand cart felt slight pain in lower back
## 28005                                                                                                                                                                                                             EE moving food into reach and strained muscle in back.
## 28006                                                                                                                                                                                                  EE moving form patrol boat to ground, the right knee was twisted.
## 28007                                                                                                                          EE moving from one vehicle to another, with the assistence of another EE; lost footing and fell onrib cage on bed of truck. Rib contusion
## 28008                                                                                                                              EE moving from work bench to milling machine when he stepped on the edge of machine. This caused his left knee to twist causing pain.
## 28009                                                                                                                                 EE moving furnitre and left hand got caught behinddresser that was being pushed and somehow left middle finger popped out of joint
## 28010                                                                                                                                                                                                                       EE moving furniture & pulled muscle in back.
## 28011                                                                                                                                                                                                                 EE moving furniture - injured back and shoulder ()
## 28012                                                                                                                                                                             EE moving furniture and lifted desk in office causing pain in neck, upper back and hip
## 28013                                                                                                                                                                                                                           EE moving furniture and strained rt arm.
## 28014                                                                                                                                                                                                       EE moving furniture and supplies when lower back was injured
## 28015                                                                                                                                                                                                 EE moving furniture during location move, strain to rt shoulder ()
## 28016                                                                                                                  EE moving furniture in dorm, few weeks later, EE complained of pain in rt thumb, EE not sure if moving furniture caused injury or not. Tendinitis
## 28017                                                                                                                                        EE moving furniture when sofa of chair fell out hand hit EE in eye and broke lense of glasses. Contusion rt orbital region.
## 28018                                                                                                                                                                            EE moving furniture while conducting an inventory table slipped and fell across rt foot
## 28019                                                                                                                                                                                EE moving furniture with a hand truck and student desk fell off and hit rt foot/toe
## 28020                                                                                                                                                                                                EE moving furniture, turning over couch and was struck in the face.
## 28021                                                                                                                                                                    EE moving furniture-sitting dresser down and the hand trk kicked back hitting EE on rt big toe.
## 28022                                                                                                                   EE moving furniture. EE carrying bookcase thru entrance way it slipped out of hands and injured right foot. Laceration to right toe and fracture
## 28023                                                                                                                                                             EE moving grate & pinched right hand b/w grate & ankle iron causing laceration to rt 2nd & 3rd fingers
## 28024                                                                                                                                                                                                   EE moving gravel then spreading into planter strained lower back
## 28025                                                                                                                                                           EE moving heavy furniture, file cabinets from campus buildings - injury to lower back, both legsand feet
## 28026                                                                                                               EE moving heavy object into gym with 6 othr peopledown steps, EE was located in ctr of object when placing down, felt pain when standing in low back
## 28027                                                                                                                                                                       EE moving hvac unit to upper fl staircase load shifted & caught load on knee hurting rt knee
## 28028                                                                                                                                                                                                         EE moving inmate to secure area felt a pain in lower back.
## 28029                                                                                                                                                                             EE moving insulation fibers wiped eyes with hands before washing and scratched rt eye.
## 28030                                                                                                                                                                  EE moving items into dumpster-slipped & fell on side of dumpster injuring left wrist & right knee
## 28031                                                                                                                                                                                      EE moving large block of wood from one place to another. Injured left digits.
## 28032                                                                                                                                                  EE moving large bookcase down stairs from third floor to first floor, felt pain in lower back. Strain lower back.
## 28033                                                                                                                                                                     EE moving large piece of equipment, while lifting EE felt a movement & pain in lower left back
## 28034                                                                                                                                                  EE moving lifeguard stand (with assistance). EE stood up and muscle in back pulled causing discomfort and pain ()
## 28035                                                                                                                                                                                   EE moving lumber inside the building and felt painin lower back. Low back strain
## 28036                                                                                                                                                                                           EE moving manakin case from one room to another and hit left leg on case
## 28037                                                                                                                                                        EE moving mates out of equipment room, mat fell off of cart, tripped over mat on floor and twisted rt ankle
## 28038                                                                                                                                                                                                                       EE moving metal sign and was hit in the head
## 28039                                                                                                                                                                                 EE moving oxygen bottle-safety cap came off causing bottle to fall on EE's rt foot
## 28040                                                                                                                                                                                            EE moving panel which blocked entrance to office and dropped it on foot
## 28041                                                                                                                                                                                                                 EE moving paper roll machine and strained mid back
## 28042                                                                                                                                                                                                                                      EE moving particle board desk
## 28043                                                                                                                              EE moving patient between rooms using pic restraint and injured rt leg on door jam as entering room with patient. Rt groin and thigh.
## 28044                                                                                                                                                                                                             EE moving patient. Scratch on left side of ear andneck
## 28045                                                                                                                                                                                                             EE moving platform when it gave away and fell on foot.
## 28046                                                                                                                              EE moving plywood from rental trk to pick-up trk and lost grip on plywood trying to prvent damage to trk and injured left side groin.
## 28047                                                                                                                                                                                                                    EE moving printer from table felt pain in back.
## 28048                                                                                                                                                                      EE moving pushing/pulling furniture to make room for new office desk-pulled muscle in rt arm.
## 28049                                                                                                                                                                                       EE moving rack of cages out of way and caught rt hand between hood and rack.
## 28050                                                                                                                                                                             EE moving resident to a shower bed, resident twisted andtried to slide on EE right arm
## 28051                                                                                                                                                                                              EE moving rock to outline walkway when biten on rt hand by an insect.
## 28052                                                                                                                   EE moving rocks off of a trk-lift was let down while EE on trk-EE lost balance and slipped off trk-injuring left hand, rt side, elbow, leg, knee
## 28053                                                                                                                              EE moving sailboat to docks-while realigning the vessel to dock a wave jerked boat yanking EE into metal guardrail striking chest/rib
## 28054                                                                                                                                                                                                             EE moving scenery slipped and fell sprained left ankle
## 28055                                                                                                                                                                                                          EE moving sheet metal in workshop and twisted lower back.
## 28056                                                                                                                                                                 EE moving small tree out of road, tree slipped out of EE hands, fell on right knee. Badly bruised.
## 28057                                                                                                                                                                 EE moving snake to temporary holding in order to clean tank and snake struck at EE's left forearm.
## 28058                                                                                                                                                            EE moving soiled mat to clean-tripped over edge ofmat and fell on knees. Non-displaced fx to right knee
## 28059                                                                                                                                                                                                                  EE moving something & felt pain in his lower back
## 28060                                                                                                                                                                         EE moving something from truck to dormitories, May or May not have injured his right elbow
## 28061                                                                                                                                                                                                      EE moving something when steel door slammed on hisright hand.
## 28062                                                                                                                                                          EE moving stack of 3-chairs when top 2-shifted & caught her rt index finger between them causing fracture
## 28063                                                                                                                       EE moving stacking & labeling boxed. Dust in air accompanied with hot temp. In building, EE has dstallergy, irritated itching & burning eyes
## 28064                                                                                                                                                                           EE moving stage risers onto portable storage shed EE slipped and fell, hurt left big toe
## 28065                                                                                                                                                                                                          EE moving steel felt pain in wrist upon completionof job.
## 28066                                                                                                                                                                                                                                 EE moving steel pipe mashed finger
## 28067                                                                                                                                                      EE moving table & caught her pinky & ring fingers between table & door frame causing laceration and contusion
## 28068                                                                                                                                                                                                             EE moving table and injured middle finger on left hand
## 28069                                                                                                                                                                                             EE moving table and mounting stand fell apart falling on EE right toe.
## 28070                                                                                                                                                              EE moving table back against wall when leg of table fell on her foot causing broken bone on her ankle
## 28071                                                                                                                                                           EE moving tables and foot got caught in table causing EE to trip and fall forward landing on left elbow.
## 28072                                                                                                                                                                                                         EE moving the insert warm & lid was shut on her right hand
## 28073                                                                                                                                                                  EE moving timber that were blocking a door due to a break in and ruptured two disc in lower back.
## 28074                                                                                                                              EE moving to front forklift to help position beam. Forklift was carrying ducked around beam hit fork-lift - cut upper bridge of nose.
## 28075                                                                                                                   EE moving to front of classroom when wheel of chair rolled into a hole in the electrical cover and the chair tipped over injuring rt side/shldr.
## 28076                                                                                                                                                                                               EE moving tray cart-rt hand got caught between cart and refrigerator
## 28077                                                                                                                           EE moving two desk in day room, felt burning in lower left abdomen. EE asked to leave work. EE referred to urgent care if pain consists.
## 28078                                                                                                                                                                                  EE moving unit cart and hit door, which stopped cart, causing injury to EE's neck
## 28079                                                                                                                                                                     EE moving veh and he pulled the jack and when he did his feet slipped out from underneath him.
## 28080                                                                                                                                                                     EE moving wardrove off of trailer wardrobe slid- hit rt middle finger. Fx to rt middle finger.
## 28081                                                                                                                                                     EE moving waste cart-part of daily routine-metal tongue on cart broke off has EE was pulling contusion to hand
## 28082                                                                                                                                                                                                                          EE moving weights for carpet installation
## 28083                                                                                                                                                                                                                          EE moving wood and hit left hand on board
## 28084                                                                                                                                                                                                                   EE moving wood pulled lower back and right groin
## 28085                                                                                                                                                                                       EE moving x-ray file cabinet to storage, corner cabinet hit inside lt ankle.
## 28086                                                                                                                                                                EE movng desk in order to do a building scenario for officer survival when EE felt pop in lower bak
## 28087                                                                                                                                            EE mowing -went to pick rope off of ground-rope got sucked into mower-grasped 4th finger and twisted and crushed finger
## 28088                                                                                                                                                           EE mowing grass and something started biting his body leaving bumps over his body jarvis harris 373 0981
## 28089                                                                                                                                                                                                          EE mowing grass on campus stung on rt upper eyelid by bee
## 28090                                                                                                                                                                                                   EE mowing grass wind shifted and blew grass particles in lft eye
## 28091                                                                                                                                                                                                      EE mowing lawn and the wind blew a foreing object into rt eye
## 28092                                                                                                                                                                      EE mowing on uneven ground and indicates that the jarring from the mower injured his back. ()
## 28093                                                                                                                                                                                           EE mowing wet grass on enbankment & slipped down hill & turned his ankle
## 28094                                                                                                                                                                             EE mtrying to de-esculate patient, patient kicked EE above the left knee - anterior ()
## 28095                                                                                                                                           EE nailing sign to a tree with a hammer, was stung several time by bees. Got sick and was able to make it back to office
## 28096                                                                                                                                                                                                      EE need evaluation of symptoms for possible chemical exposure
## 28097                                                                                                                                                        EE needed to retrieve boxes in storage closet. EE pulled on box that was wedged and strained right shoulder
## 28098                                                                                                                        EE new jobs involves carrying med records down steps, the tension of her left foot over the time has caused it to swell and become painful.
## 28099                                                                                                              EE next to counter kept a heavy duty 3" notebook locking information to mail correspondence. Phone rang binder slipped & hit her foot-rt foot big toe
## 28100                                                                                                                                                                                                    EE normal duties has caused tendonitis in rt hand and shoulder.
## 28101                                                                                                                                             EE not sure if it was skin to skin contact or if it was a reaction to the gloves at work, both arms, hands near wrists
## 28102                                                                                                                                EE not sure of exact date arm began hurting about 1 month ago-had continued to get worse believes it is from a repetitious movement
## 28103                                                                                                                                        EE not sure what happened - just fell down five stairs. Large hematoma forehead, lt knee; lt shoulder; lt upper chest sore.
## 28104                                                                                                                                                       EE noted a pull/pain in rt shoulder/back area while lifting clients-additional lifting due to short staffing
## 28105                                                                                                                                                                                      EE noted a raised area behind l knee - small amount of itching, but no insect
## 28106                                                                                                            EE noted a strong chemical odor in the infirmary area. Began to feel lightheaded and nauseated. Dev-eloped headache and shortness of breath, chest pain
## 28107                                                                                                                                                                                    EE noted back pain after lifting a basket of wet cloths to transfer into dryer.
## 28108                                                                                                                                                                                                                            EE noted back pain after lifting client
## 28109                                                                                                                                         EE noted increased stress due to required deposition, pending lawsuit(employment related) noted chest pains throughout day
## 28110                                                                                                                                                                                                  EE noted left index finger swollena nd red after repairing toilet
## 28111                                                                                                                                                                                     EE noted overextended arm-rt placing dishes into dishmachine-repetitive motion
## 28112                                                                                                                                                                                                                         EE noted pain and stiffness in left wrist.
## 28113                                                                                                                                                                                                                EE noted pain in lower back after lifting a client.
## 28114                                                                                                                                                                                                       EE noted pain in rt elbow after doing bath group on clients.
## 28115                                                                                                                                                                                                         EE noted pain in rt wrist when moving client a certain way
## 28116                                                                                                                                                                                                    EE noted pain in wrist when assisting during dental extraction.
## 28117                                                                                                                                                                 EE noted red and swollen eyes with discharge. EE has been in contact with client positive for MRSA
## 28118                                                                                                                     EE noted she assisted in carrying client from hallway to bathroom-a short time later she lifted client from wheelchair to floor. Pain in back.
## 28119                                                                                                                                              EE noted some soreness on lt lower leg on smoke break with patients. Felt a sting on lt leg but did not see anything.
## 28120                                                                                                              EE noted unsure of how or when incident occurred-noted that on her way home on 7/28 noticed knee stiffened while drving, feels due to repetive motion
## 28121                                                                                                                                                    EE notes was entering the maintenance warehouse; placed left foot onto step and he felt a pain in that foot. ()
## 28122                            EE notice a resident kicking & hitting 2 staff that were trying to escort her to her room when EE went to find out what was going resident started to hit EE. EE held resident l arm and she bent over and bit EE in the elbow area. ()
## 28123                                                                                      EE notice client seizuring; braced her legs at base of chair to ensure client did not go to the floor. While client was pushing and thrashing, EE hurt left hip and left leg.
## 28124                                                                                                                                                                                                                                        EE notice cut on rt finger.
## 28125                                                                                                                       EE notice inmate bleed from the head coming towards her-EE tried to keep distance-inmate accidently splastered blood on EE's arms and hands.
## 28126                                                                                                                                                                                                 EE notice pain in legs-increased severity with prolonged standing.
## 28127                                                                                                                                                                                                      EE notice pain, tingling, swelling and numbness in left wrist
## 28128                                                                                                                                                                                                        EE notice rash on both hands to elbow after wearing gloves.
## 28129                                                                                                                                                                EE notice rash on inside of forearms after puttingaway reams of paper and swelling of arms/fingers.
## 28130                                                                                                                                                                                         EE notice rt arm began to itch-pulled up sleeve and noticed several spots.
## 28131                                                                                                                                                                         EE notice tingling in rt hand and wrist using computer-using mouse and keyboard worsens it
## 28132                                                                                                                                                                          EE noticed a bite mark on her left arm. The next day, index finger was swollen and tender
## 28133                                                                                                                                                                                             EE noticed a bump on rt lower leg and it became tighter while at work.
## 28134                                                                                                                                                                                  EE noticed a bump/knot on her right wrist with some pain associated with movement
## 28135                                                                                                            EE noticed a growth inside right ankle that seemed abnormal. Growth was not there prior to wearing work safety boots. Growth was irritated by boots. ()
## 28136                                                                                                                                                                                                                   EE noticed a his lt elbow was swollen and tender
## 28137                                                                                                                                                                EE noticed a numbness & tingling in hands. Possible over use on typewriter, computer, & calculator.
## 28138                                                                                                                                                                                                                               EE noticed a rash behind her lt knee
## 28139                                                                                                                                                                                        EE noticed a sharp pain in his lower back while hewas cranking a jack stand
## 28140                                                                                                                                                           EE noticed a sharp pain in lower left calf of her left leg during doubletime which is a slow run or jog.
## 28141                                                                                                                       EE noticed a spider on his upper right arm and a few minutes later his arm started itching and he noticed red bump where he had seen spider.
## 28142                                                                                                                                                                EE noticed about 4 p. M. A rash developing on r wrist got worst as shift went on spread to l wrist.
## 28143                                                                                                                               EE noticed ache in right shoulder after the end of a day of loading grass scraps. Nor specific action is known to be accountable. ()
## 28144                                                                                                                                       EE noticed an embedded tick on lt hip/wrist area noticed a red colored bull's eye around the spot where the tick was removed
## 28145                                                                                                                                                                      EE noticed an odor throughout the building, it smelled like paint thinner or other chemicals.
## 28146                                                                                                                                                              EE noticed ants on the control desk, EE felt a sting on his inner thigh on left side/red/inflammation
## 28147                                                                                           EE noticed attached tick on stomach while planting on game lands, pulled tick off, rash developed on 5/25/13. EE started feeling ill, went to urgent care on 5/27/13. ()
## 28148                                                                                                                                                                                         EE noticed bite on right lower arm. Does not know when or where bitten. ()
## 28149                                                                                                                                                                                       EE noticed brown liquid dripping-walked around & liquid splased in right eye
## 28150                                                                                                            EE noticed bump on back of neck; placed band aid over it. Did not get better - went to personal physician on 1/11/08; tested for MRSA - positive result
## 28151                                                                                                                            EE noticed client at window, client suddenly dash towards door, EE called cook to close & lock door client began hitting EE with helmet
## 28152                                                                                                                                                     EE noticed client slipping out of wheel chair attempted to catch and lift back into chair felt pain in rt knee
## 28153                                                                                                                                                                EE noticed colored discharge and crusty appearanceto eyes. EE came in contact with client with MRSA
## 28154                                                                                                                                                                                            EE noticed finger would lock up when using computer/keyboard on rt hand
## 28155                                                                                                                                                                   EE noticed gradual pain beginning with his left shoulder and neck while practicing self defense.
## 28156                                                                                                                                                                                                     EE noticed hand began burning after prolong typing and writing
## 28157                                                                                                                                                 EE noticed hand going to sleep when in daily use. 05-08-02 significant amt of pain in lt hand, extending in elbow.
## 28158                                                                                                                                                                                                           EE noticed her neck was stiff after working with client.
## 28159                                                                                                                                                     EE noticed injured squirrel and picked it up to determine what was wrong. Squirrel bit him on leftindex finger
## 28160                                                                                                                                                                                        EE noticed it was painful to use rt thumb to pipetat work and other duties.
## 28161                                                                                                                                                           EE noticed itch on right leg shin on 3/9/2007 by 3/14/2007 EE shin had a large swelling in the same area
## 28162                                                                                                                                   EE noticed left eye bothering him/beleives wed Sept. 26/not much thought but did not go away. Went to Dr & Removed metal sliver.
## 28163                                                                                                                                                                 EE noticed molded food in cow trout-went to turnedfeed trout over and pulled a muscle in chest/arm
## 28164                                                                                                                                                                                           EE noticed neck stinging, and saw red splotches, possible insect bite ()
## 28165                                                                                                                                                                                                   EE noticed needle stick to rt thumb after giving meds to inmates
## 28166                                                                                                                                                                                            EE noticed numbness and pain in hands, wrist and shoulders while typing
## 28167                                                                                                                                             EE noticed numbness and tingling of right thumb following 6 hour period of field sampling, boat operation and driving.
## 28168                                                                                                                                                                                             EE noticed pain after placing client back into w/cand lifting clients.
## 28169                                                                                                                                                                                                      EE noticed pain in lower back after lifting a heavy trash bag
## 28170                                                                                                                                                   EE noticed pain in right buttocks/hip area after working at computer. Diagnosed as sciatica. Referred to glenda.
## 28171                                                                                                                                                              EE noticed pain in right hand which worsens when lifting. Trigger thumb, cts and burning and numbness
## 28172                                                                                                                                                   EE noticed pain in right knee after making several trips up and down stairway to get to roof top mechanical room
## 28173                                                                                                                                                                                              EE noticed pain in rt arm/shoulder from stamping documents 90% of day
## 28174                                                                                                                                                                      EE noticed pain in rt wrist after performing normal duties and pain in shoulder a month later
## 28175                                                                                                                                                                                                              EE noticed pain in rt wrist while working on computer
## 28176                                                                                                                                                                                    EE noticed pain in wrist and arms since 07/1/03. Pain goes to fingers and arms.
## 28177                                                                                                                                                                                                    EE noticed pain while typing... Right pinky, thumb, right wrist
## 28178                                                                                                                                                                                          EE noticed rash and redness on rt/left hands to wrist after using gloves.
## 28179                                                                                                                                                                                                         EE noticed rash on boths legs suspects chemical irritation
## 28180                                                                                                                                                                                                                      EE noticed rash on face and red areas on arms
## 28181                                                                                                                                                                                                                             EE noticed rash on hand and neck area.
## 28182                                                                                                                                                                        EE noticed rash on hands after wearing gloves-rashhas been present since September of 1997.
## 28183                                                                                                                                                                                                 EE noticed rash on r hand and forearm from using dishwashing soap.
## 28184                                                                                                                                                                                                                                      EE noticed rash on right hand
## 28185                                                                                                                                                                           EE noticed rash on rt arm after washing/cleaning clients mattress with chemical mixture.
## 28186                                                                                                                                EE noticed red bumps on upper abdomen area by sat morning bumps had spread to back and to face by sunday. Rash on face neck abdomen
## 28187                                                                                                                                                                                                                          EE noticed red itchy area on left forearm
## 28188                                                                                                                                             EE noticed red spot on left arm, looked like bug bite. Both hands started swelling and red spots appeared on right arm
## 28189                                                                                                                                                                                                    EE noticed red spot on right 5th digit, possible insect bite ()
## 28190                                                                                                                                                                                                       EE noticed red welps, on right arm after leaving sinkroom ()
## 28191                                                                                                                                        EE noticed ribs were sore and started feeling short of breath - trash in odd area and May have twisted to replace trash can
## 28192                                                                                                                                                                                  EE noticed server pain in wrists and fingers and forearm from working on computer
## 28193                                                                                                                                                                                                                                      EE noticed small bite on arm.
## 28194                                                                                                                                                                                     EE noticed something near her eye. Afterward became itchy & swollen. Left eye.
## 28195                                                                                                                                                          EE noticed soreness & hurting in base of neck while working as trayline topper putting tray topson trays.
## 28196                                                                                                                                                                  EE noticed soreness in back 24hrs after helping toget a patient on scales for dailey weigh check.
## 28197                                                                                                                                              EE noticed soreness in wrist from cattle bumping or knocking her wrist with their feet while attaching milking units.
## 28198                                                                                                                                                                             EE noticed stiffness and swelling in left knee after coming down stairs from 2nd floor
## 28199                                                                                                                           EE noticed swelling bulge went to private Dr. EE was told she had hernia. EE was sent to wc Dr. ****** Overpaid 1 day ttd(1/15/07)******
## 28200                                                                                                                                                                                          EE noticed swelling in wrist and arm after assisting in lifting a patient
## 28201                                                                                                                  EE noticed that her hand appeared to be bitten & it hurt, stung when touched. It turned into a red raised blister on hand. May be staph infection
## 28202                                                                                                                                                                                   EE noticed that she was breaking out in red bumps both hands, elbows, lower back
## 28203                                                                                                                                                                   EE noticed the burning sensation in upper back between shoulder blades while changing a resident
## 28204                                                                                                              EE noticed tingling in rt arm, pain in elbow with keyboarding, now numbness down arm, and elbow when resting arm against hard surfaces or arm is bent
## 28205                                                                                                                                                                                                                  EE noticed wet floor signs and slipped and floor.
## 28206                                                                                                                                               EE notified me (james kea) of liquid nitrogen burnbut muscle issue unknown to me. Back, muscle strain, burns on arms
## 28207                                                                                                                                                                          EE notified supervisor that the fire alarm startedhiim causing him to injure his big toe.
## 28208                                                                                                                                             EE notifying inmate he had a appointment, inmate threw two cups of unknown liquid substance into face, head and chest.
## 28209                                                                                                                             EE observed 2 inmates giving haircuts, razorblade in comb, in process of EE confiscating the razor blade, EE nicked left index finger.
## 28210                                                                                                                                       EE observed Dr Cohn pull needle out of inmates back and aimed at EE upper left side of face, squirting solution in left eye.
## 28211                                                                                                                EE observed a fire within an occupied cell, due to serousness nature EE entered cell without breathinapparatus to remove inmate, smoke was inhaled.
## 28212                                                                                                                        EE observed a parked car rolling on an incline. She attempted to open driver door to depress the emergency brake and was knocked to ground.
## 28213                                                                                                                                                       EE observed a pungent smell on lower level of building-first thought it was pest extermination. No injuries.
## 28214                                                                                                               EE observed an inmate in the shower & ordered him to return to his cell. Later inmate keyed door, eeresponded & was hit in the third finger by door.
## 28215                                                                                                                         EE observed cable across fence at post 2-he was trying to reach & throw it back over when his rt arm touched razor wire causing laceration
## 28216                                                                                                             EE observed officer struggling to arrest suspect. EE grabbed suspect & forced him to floor. Suspect & officer fell on EE lt hand - swelling to lt hand
## 28217                                                                                                              EE observed other EE spraying inmate with pepper spray EE went to assist other EE handcuff inmate and while wrestling with inmate wrenched rt forearm
## 28218                                                                                                                             EE observed smoke and small fire coming from toaster. He pushed toaster back to cause item to fall to rear of toaster. Burn fingertips
## 28219                                                                                                                                                     EE observed spider crawl out from under watch, EE then noticed small red bump under watch; assumes spider bite
## 28220    EE observed suspect with ac unit on his shoulder crossing the street. Officer stopped susped for ? And he bacame very nervous. Suspect attempted to flee, but officer took suspect to the ground and was able too handcuff suspect. Occured at chidley dorm. ()
## 28221                                                                                                                   EE observed workers waxing hallway. He proceeded down hall with caution. He lost footing and fell trying to catch himself. Chin/mouth hit floor.
## 28222                                                                                                                 EE observing a tree that was being winched from a campsite. The log moved suddenly striking EE in lower left leg, knocking her down & pinning leg.
## 28223                                                                                                                               EE observing another EE working on computer wiringabove a suspended ceiling-placed wgt on edge of flooring and fell through ceiling.
## 28224                                                                                                                  EE observing inmates working on rd squad cutting debris he stepped into hole approx 3'deep covered debris cut down-pulled muscles rt ankle & knee
## 28225                                                                                                                                                                 EE observing opponent softball game-at an adjacentfield a ball was hit & struck EE in back of head
## 28226                                                                                                                                                                          EE observing serving line when inmate threw a liquid toward line, striking in upper torso
## 28227                                                                                                                            EE observing several inmate acting suspicious. Examining several packages, inamtes smoking marijuana. Chasing inmate hit elbow on desk.
## 28228                                                                                                                                         EE observing student drawing blood in phlebotomy class when student withdrew needle- blood squirtedin instructor's rt eye.
## 28229                                                                                                                                        EE observing student teacher conducting a volleyball class-when ball hit EE in the face swelling nose and warpping glasses.
## 28230                                                                                                                       EE obtaining census for dinner line up residents outside of building. Bees were in the area and 1 flew up her dress and stung her on buttock
## 28231                                                                                                                                                    EE occurred injury by the result of repetitive motion and arm motions of continuallyturning, flipping& carring.
## 28232                                                                                                                                                                EE offered hand for patient to move from stretcheree felt pain in back while patient pulled on arm.
## 28233                                                                                                                                                                     EE offered medication to inmate. Inmate threw cup of urine on EE. Urine went in EE's right eye
## 28234                                                                                                                             EE on 3rd floor attempting to use fax machine in corner, foot caught telephone box and EE fell on lt knee, abrasion and landed on back
## 28235                                                                                                                                                                                             EE on a patrol of security, whn tripped on broken step, twisting ankle
## 28236                                                                                                                                                                            EE on break going towards lobby-looked away and turned back and walked into glass door.
## 28237                                                                                                                                                                                        EE on break sitting in chair-chair fell backwards smashing EE's left thumb.
## 28238                                                                                                                                                                       EE on business trip, slipped and fell in shower at the hyatt regency - back, neck, shoulders
## 28239                                                                                                                                                                           EE on client outing and slipped on water and fell hitting left side of face on concrete.
## 28240                                                                                                                                                                                EE on company business-getting out of car and stepped into hole turning left ankle.
## 28241                                                                                                                                             EE on compliance inspection @ migrant housing location while possilbe potential suspiction of tboccurance. EE testing.
## 28242                                                                                                                                                                 EE on duty at tower #5 eastern correctional insti-tution, he was bitten on right hand by a spider.
## 28243                                                                                                                                                     EE on duty when a fight broke out between three inmates. EE breaking up a fight when he was scratched on arms.
## 28244                                                                                                               EE on ecu adven. Outdoor course. EE was holding rope to help balance while crossing a cable he lost balance pulling the rope forcing pole into chest
## 28245                                                                                                                                          EE on elevator with agressive pt, pt began hitting EE - EE tried to block hit, pt slammed EE's arm in to wall of elevator
## 28246                                                                                                                                                                                      EE on elevator-client entered elevator and metal bar on walker hit EE rt hip.
## 28247                                                                                                                      EE on firing line with other employees, firing revolver metal from shell fired by other EE struckthumb of lt hand. Small puncture to lt thumb
## 28248                                                                                                                                                                                                                  EE on firing range hand slide on 40cal handgun ()
## 28249                                                                                                                                                        EE on firing range-firing handgun @ various times & distances-EE became overheated & experienced chest pain
## 28250                                                                                                                                           EE on firing range-when officer shot a rifle and the bullet defected and hit a piece of steel and stuck EE on rt forarm.
## 28251                                                                                                                                                                       EE on foot chase after suspect in the woods and tripped on a fallen tree injuring left ankle
## 28252                                                                                                                                                                       EE on foot chase after suspect who pushed EE backwards and EE fell over a small sharp stump.
## 28253                                                                                                                                                                          EE on foot chase of suspect when EE had to jump down off a brick wall injury to left knee
## 28254                                                                                                                                                            EE on foot in pursuit of suspect in wooded area when tree limbs and briars hit EE in left eye and face.
## 28255                                                                                                                                    EE on foot patrol walking up an incline stepped into a wash out and twisted his left knee while trying to maintain his balance.
## 28256                                                                                                                                                                          EE on foot pursuit of a suspect in the woods, whenhe tripped and fell. Sprain right knee.
## 28257                                                                                                                                EE on her knees attempting to do cpr chest, compressions, she felt a sharp pain go up her backand lt arm. Sharp pain lt arm and leg
## 28258                                                                                                                                                                              EE on her way to her car--stepped into a sink holecovered by grass. Left leg swollen.
## 28259                                                                                                                        EE on her way to home visit, stop to call client toget directions, pulled out of driveway, didn't see van until too late and they collided.
## 28260                                                                                                                   EE on her way to inspect playground and stepped ona single piece of mulch and twisted ankle and fell on sidewalk. Severe bruise lt ankle & calf.
## 28261                                                                                                                   EE on his way back to the campus living office after a few errands for work when his view was temp obstructed as he was making a left turn--mva.
## 28262                                                                                                                     EE on his way to take dirty mops to campus to be washed. Car pulled out in front of EE causing EE to hit car. Rt shoulder, hand, chest & back.
## 28263                                                                                                                 EE on hwy 74, looked down at phone & back up to see a vehicle stopped in front of EE, unable to stop causing EE to strike car in rear / neck, back
## 28264                                                                                                                                                                   EE on ladder working on a fan motor pulley. Lost balance and fell to ground hitting back & neck.
## 28265                                                                                                                                                                                                                           EE on lunch break, ants bit her left arm
## 28266                                                                                                                                                    EE on maint. Conference for shower/tub training stepped into shower and slipped and fell and head hit the wall.
## 28267                                                                                                                                                                       EE on outing trip and lacerated tip of rt ring finger while washing blade on food processor.
## 28268                                                                                                                                                                                EE on outing w/clients-lifted client from mat intochair felt pop in left upper arm.
## 28269                                                                                                                                                  EE on outing with client, EE was pushing clients wheelchair up ramp, when ees left knee cap shifted out of place.
## 28270                                                                                                                                             EE on outing with clients-clients became aggressive and EE had to redirect clients hits in process twisted lower back.
## 28271                                                                                                                                          EE on outside firing range for recertification when she became very weak & was sweating profuselydifficulty in breathing.
## 28272                                                                                                                    EE on patrol operating vehicle with blue lights attempting to clear traffic to stop violator, when patrol vehicle struck on left side door by a
## 28273                                                                                                                                                                                                EE on patrol through out building and inhaled fumes and became ill.
## 28274                                                                                                                         EE on polaris on park trail; drove to other side toavoid briars; right front struck stump; breaking stirring and hitting face (laceration)
## 28275                                                                                                                EE on routine patrol on rp-1006 and a deer struck lt drivers door, went through window struck EE. Contusions & abarasions to face, neck strain, eye
## 28276                                                                                                                                                    EE on routine patrol when another vehicle failed to yield at stop sign and drove into EE path causing collision
## 28277                                                                                                                      EE on survey, resident that was part of survey died of meningitis. Hosp recommended treatment dueto exposure. Exposed to bacterial meningitis
## 28278                                                                                                              EE on the firing range, shotting the shotgun, the butt of the shotgun was in the arm/shoulder are and when pulled the trigger, the butt push shoulder
## 28279                                                                                                                                                                              EE on the way to her car and fell from the curb into parking area injuring left ankle
## 28280                                                                                                                                        EE on the way to pick up business mail at post office slipped on unlevel side walk & twisted ankle. Torn ligament lt ankle.
## 28281                                                                                                                                                              EE on the way to shift lineup room, stepped over puddlle of water. Slipped and his rt knee hit floor.
## 28282                                                                                                                                      EE on third step of ladder and lost balance-ladderturned over on EE while trying to catch self all weight went to left wrist.
## 28283                                                                                                                                                                             EE on toilet, became dizzy, fell back on toilet seat but was uninjured per her report.
## 28284                                                                                                               EE on top of a 6ft scaffold steadying the vitrine with suction cups while it was lowered onto case. EE lost balance fell injured lt wrist & rt knee.
## 28285                                                                                                                    EE on training assignment to learn more about the marine/fishery div. While on boat ride, was bouncedout of seat, came down hard onto low back.
## 28286                                                                                                                              EE on truck holding replacement board, when it came loose & pulled EE out of truck to ground, EE landed flat-footed, jarring his back
## 28287                                                                                                                                                                                            EE on venture trip-paddled 50min against wind feltpain in left forearm.
## 28288                                                                                                                                                                   EE on way back to office from court, when she struck another car in rear. Hit knee on dashboard.
## 28289                                                                                                                              EE on way out of bldg. For appt, when he slipped &fell on the steps. Rt foot came down awkwardly onstep, & rt knee buckled violently.
## 28290                                                                                                                              EE on way to astronomy observation-as EE went to look through telescope he tripped over a bench due to darknee in room injuring ribs.
## 28291                                                                                                                                                                                                                EE on way to building, fell on ice, hit leg & elbow
## 28292                                                                                                                                                     EE on way to milk cooler, tripped over metal stripthat runs throug middle of floor on poarch & fell face down.
## 28293                                                                                                                                                                         EE on way to trade out personal vehicle for state when he was rear-ended-suffered whiplash
## 28294                                                                                                                                                                   EE open a file cabinet drawer when the file cabinet fell over striking her to the rt and lt hand
## 28295                                                                                                                                                              EE open file cabinet drawer, leaned over file cabinet to get a file & injury occured. Lower backpain.
## 28296                                                                                                                                                                         EE open the trap door to inmates cell when she struck her left thumb against the trap door
## 28297                                                                                                                                                                                                                    EE open wound was exposed to blood. Hiv testing
## 28298                                                                                                                                                                               EE opend desk drawer. The hinges failed and the drawer came out and fell on rt foot.
## 28299                                                                                                                                                            EE opended door to let patient out, when I turned door loose it snapped back catching my middle finger.
## 28300                                                                                                                                                                                                          EE opened a bottle of clorox and some splashed into eyes.
## 28301                                                                                                                                                                  EE opened a cabinet door and objects started to fall and EE felt neck, shoulder, and back strain.
## 28302                                                                                                                                                                                                          EE opened a cabinet door, hit head on the corner of door.
## 28303                                                                                                                                                                EE opened a door in the loft at meadow mount therewas a wasp in the other side. The wasp stung him.
## 28304                                                                                                                                                 EE opened a window to clean it when the window slid down & smashed her finger on her rt hand causing a laceration.
## 28305                                                                                                                                                                       EE opened and table that was standing on end fell striking EE on rt foot - fractured rt foot
## 28306                                                                                                                                                  EE opened auto clave to remove sterilized instru- ments and pulled the tray out with a rag, but steamburned hand.
## 28307                                                                                                                                                                                        EE opened back door on trk when furniture fell outand hit EE on the rt leg.
## 28308                                                                                                                EE opened back driver side door to deliver box weighing approx 35lbs. When lifting box turned lt & felt pull in back. Lower lt back herniated disc.
## 28309                                                                                                                                                                                   EE opened box for old files and moved top box w/o using correct safety procedure
## 28310                                                                                                                                                                                              EE opened box with left hand, hand slipped-box cutter went into hand,
## 28311                                                                                                                                                                                   EE opened cabinet door and accidently hit back of right hand on door causing cut
## 28312                                                                                                                                              EE opened cabinet door, stepped too close to avoid water in the floor, hit bottom corner of cabinet door with head ()
## 28313                                                                                                                                                             EE opened cell to move inmate manning to another call when he spit twice hitting me in the facial area
## 28314                                                                                                                                                                               EE opened center desk drawer and it slid completely out and struck EE in the lt knee
## 28315                                                                                                              EE opened chain gate on feeder, gate jammed w/coalhand slipped off chain direct blow to rt elbow. Eewas wearing work gloves. Bruised tendons rt elbow
## 28316                                                                                                                          EE opened closet door & had her lt hand on the door from bending down to get a brush & the door was closed on her hand. Injured left hand
## 28317                                                                                                                                                   EE opened desk drawer to get out a pen and in process of of closing drawer slammed drawer on left middle finger.
## 28318                                                                                                                                                                                                  EE opened door and bottom of door caught toe, dislodging toenail.
## 28319                                                                                                                                                                          EE opened door and inmates rushed out of the dorm causing door to push against her rt arm
## 28320                                                                                                                                                                                                                   EE opened door and something blew into EE's eye.
## 28321                                                                                                                              EE opened door and stepped in. There was a slick slippery substance on floor. She fell to floor landing on her left lower hip and leg
## 28322                                                                                                                                                                    EE opened door and tried to stop the when it closed. Door closed on left middle and ring finger
## 28323                                                                                                                                                                                           EE opened door and tripped over gas cylinder injuring eye, knee and foot
## 28324                                                                                                                                                                                                       EE opened door and went to step out and missed step and fell
## 28325                                                                                                                                                                                                EE opened door of auto clave and steam escaped. Burn to right wrist
## 28326                                                                                                                                                                               EE opened door on steamer, thinking it was off, steam then burned EE's left arm/hand
## 28327                                                                                                                                                                                                     EE opened door to EE bathrm, dust fm ceiling fell into eyes ()
## 28328                                                                                                                                                              EE opened door to admin building which closed very fast causing EE to hit left shoulder on door frame
## 28329                                                                                                                          EE opened door to allow student to use the bathroom and the student kicked the door-the door struck EE in the forehead causing laceration
## 28330                                                                                                                     EE opened door to cabinet as she was kneeling to put something into cabinet & hit her knee against corner of door. Bruising, swelling to knee.
## 28331                                                                                                                                                                                   EE opened door to cooler and received electrical shock - EE is 3 months pregnant
## 28332                                                                                                                                                                                                   EE opened door to er generator control cabinet, rust blew in eye
## 28333                                                                                                                              EE opened door to go down stairs, two other EE werewith EE and when EE started thru doorway hit left wrist on catch causing contusion
## 28334                                                                                                                                                     EE opened door to office and it didn't open all way, rt elbow struck corner of door. Injured rt elbow, and arm
## 28335                                                                                                                                                                   EE opened door to office did't open all the way. Rt elbow struck corner of door. Rt elbow rt arm
## 28336                                                                                                                                                           EE opened door to pig pen and pig started to come out. EE twisted back trying to get pig back into cage.
## 28337                                                                                                                                       EE opened door to steamer reached to pull out foodwith right arm, when steam came in contact with arm. Burn to right forearm
## 28338                                                                                                                                                                                    EE opened door to van and a phone switch fell out and hit EE on left lower leg.
## 28339                                                                                                                                                          EE opened door, door hit door stop & flew back andcaught EE elbow between doors. Bent EE elbow backwards.
## 28340                                                                                                                                 EE opened door, put left foot on foot step stood; left foot slipped; EE fell out of door on my left knee and hip and left hand. ()
## 28341                                                                                                                                                                                                                           EE opened dorm door and bent thumb back.
## 28342     EE opened drawer of credenza to get utensil. Credenza toppled over dumping hot food and sterno burners which resulted in several small fires. EE was exposed to hot food on bare feet, ankles and shins. Smoke inhaled resulting in sore throat irritation. ()
## 28343                                                                                                 EE opened drawer on desk and pulled it all the way out and it threw her out of the chair onto her butt and back. Drawer came all the way out and hit the floor. ()
## 28344                                                                                                                                                                         EE opened drawer to load paper and drawer fell on left foot causing injury to left big toe
## 28345                                                                                                               EE opened drivers door grasped door frame with rt hand had to lunge towards car to avoid being struck by passing motorist. Closed door on rt finger.
## 28346                                                                                                                                                                                                           EE opened dumpster and a yellow jacket stung her neck ()
## 28347                                                                                                                 EE opened electrical gutter to obtain amperage readings. Electrical connection was not taped in one small area, shorted against cover when closed.
## 28348                                                                                                                                    EE opened envelope that came from another office on campus-odor caused shortness of breath, headache, and sore throat and ears.
## 28349                                                                                                                                                                                             EE opened file cabinet and cabinet fell over landing on EE's left hand
## 28350                                                                                                                                                                                                                          EE opened file cabinet and rt arm popped.
## 28351                                                                                                                                                            EE opened file cabinet had to lean forward causingee to brace it to keep it from falling. Injured back.
## 28352                                                                                                                                                            EE opened filing cabinet and cabinet started to fall over and EE tried to catch it holding jagged edge.
## 28353                                                                                                                           EE opened flotation mattress box to get directionsout. Crystal over directions box. Hands touched chemicals felt burning top of rt hand.
## 28354                                                                                                                                                                                               EE opened front door of campus bldg & door hit edge of foot & cut it
## 28355                                                                                                                                                                               EE opened front door to white residence hall. Door hit EE's foot and cut her toe. ()
## 28356                                                                                                                   EE opened garage door and went out, while pulling door down, left hand got caught between first and second section of door. Bruised left fingers
## 28357                                                                                                                                                                       EE opened gate at milking parlor, gate dropped onto EE foot, due to broken hinge on gate. ()
## 28358                                                                                                                    EE opened gate, inmate called EE name, EE stepped onice and feet slipped, fell on lower/middle back. Eesback of head hit pavement when he fell.
## 28359                                                                                                             EE opened gym door to release inmates from gym. Eepushed door behind the door stop. She had rt. Handin door, door came back & closed on rt. Mid finger
## 28360                                                                                                                                                                                              EE opened heavy handicapped door onto right foot bruise to right foot
## 28361                                                                                                                                                                            EE opened his residence and the dog came running out of th ehouse and bit his left leg.
## 28362                                                                                                                                                                                                   EE opened linen barrel and top fell and hit EE on the left thumb
## 28363                                                                                                                                                              EE opened loading dock door. He did not open it fully and bumped head on door. Cut and bruise on head
## 28364                                                                                                                                                                                                                      EE opened mail package and was cut by staple.
## 28365                                                                                                                                                       EE opened metal cabinet thinking the fume hood wasworking, it was not. He had chemical exposure to his eyes.
## 28366                                                                                                                                  EE opened oven door by handle, then realized door was not fully open and placed bare hand to inside of hot edge to push door open
## 28367                                                                                                                                                                                EE opened overhead cabinet to get paper and row ofcabinets collapsed and fell on EE
## 28368                                                                                                                                                                                                        EE opened printer door and hit top of left foot with door -
## 28369                                                                                                                                                                             EE opened rear door of moving van, 2 tables slid out of back door and struck ankle. ()
## 28370                                                                                                                                       EE opened rear door of patrol care, and a small piece fo debris went into his eye. Cornia to rt eye scratched due to debris.
## 28371                                                                                                                                                                        EE opened second file cabinet door and file cabinet tilted forward bruising rt leg and knee
## 28372                                                                                                                                                                                EE opened side door to van and phone switch fell out and struck EE on rt lower leg.
## 28373                                                                                                                                                                                             EE opened steamer and hot water poured out and landed onto her rt foot
## 28374                                                                                                             EE opened the dally port gate, she caught a glimpsof a figure in the woods to the right of where shewas standing. He attempted to approach the man. ..
## 28375                                                                                                                                                                                                                              EE opened the door and jammed finger.
## 28376                                                                                                                                                                                         EE opened the door and mat rolled over and EE fellon floor injuring rt hip
## 28377                                                                                                                                                                        EE opened the door to come around the corner, slipped in standing water and fell on bottom.
## 28378                                                                                                                                                                              EE opened the door to the loading dock and heard acracking noise in her left shoulder
## 28379                                                                                                                                                                EE opened the door to vat to strip furniture and the door fell on right hand injurying right thumb.
## 28380                                                                                                               EE opened the doors to check the phones, and as she turned to walk away her right index and middlefingers got caught on the bars and bent them back.
## 28381                                                                                                                                                                  EE opened the fire extinguisher door to check it when the glass shattered and a piece cut his leg
## 28382                                                                                                             EE opened the gatehouse door and dropped EE's keyswhen bent down picked up keys weight shifted forward the door was going to close tryed to catch door
## 28383                                                                                                                                                     EE opened the hallway door and reached doen to get the door stopper when the door closed on his pointer finger
## 28384                                                                                                                                                                                        EE opened the hood of the truck up and over he pulled a muscle in his neck.
## 28385                                                                                                                    EE opened the main security door to set someone inand when he pulled the door with left hand to close it his left middle finger caught in door.
## 28386                                                                                                                                                                                                 EE opened the newspaper and a powder substance hit him in the face
## 28387                                                                                                                                                   EE opened the trap door on tower #2 he recevied a radio call and reached for the radio lost his balance and fell
## 28388                                                                                                                                                                                 EE opened tower door and bent down to get lunch and paperwork and hit head on door
## 28389                                                                                                                                                                               EE opened underground valve to section 5 and a wasp flew out and stung his left hand
## 28390                                                                                                                                             EE opened up flap gate and was blocking it open when he slipped onpipe and his foot slipped into open gate as it shut.
## 28391                                                                                                                                                                         EE opened up lower file drawer and pulled out a file she felt something pull in lower back
## 28392                                                                                                                                                                                                     EE opened up office and smelled and odor and became nauseated.
## 28393                                                                                                                                                                                                            EE opened up the carrier and pop out and hit her tooth.
## 28394                                                                                                                                                                         EE opened valult door to get work out and caught rt pinky finger between door and counter.
## 28395                                                                                                                            EE opened water pump to clean and the water was heated and pressurized. Hot water spewed out scalding employee on arems, hands and face
## 28396                                                                                                                                                                                EE opened window to check for concelled weapons and the window fell on his rt hand.
## 28397                                                                                                                                               EE opening 5 gal paint buckets with utility knife slice plastic lids to remove them knife slipped and cut left pinky
## 28398                                                                                                                                                                                                                     EE opening a box and opener cut rt hand thumb.
## 28399                                                                                                                                                                        EE opening bottle with razor blade-blade slipped off the bottle and cut thumb on left hand.
## 28400                                                                                                                                                                                                     EE opening box of miracle grow & knife slipped & cut lt wrist.
## 28401                                                                                                                                                               EE opening box with box knife. Box knife slipped cut leftarm. 1/2" cut requiring 3 stitches left arm
## 28402                                                                                                                                                                                                        EE opening box with scissors, cut upper middle lt finger ()
## 28403                                                                                                                                                                                                                  EE opening boxes w/razor blade and cut left hand.
## 28404                                                                                                                                                                         EE opening can of beans her left hand slipped resulting in laceration/cut lt pinky finger.
## 28405                                                                                                                                                     EE opening can of ensure, experience thumb pain, reported to EE hlth 2 weeks with rt thumb pain. Rt thumb djd.
## 28406                                                                                                                                        EE opening can of sterno with knife, knife slippedcut little finger on lt hand on lower portion. Cut little finger lt hand.
## 28407                                                                                                                                                                           EE opening can with pull top. Hand slipped causingcut to rt index finger distal phalanx.
## 28408                                                                                                                                                                                 EE opening dell tower case & metal clip on back caught her wrist and wrenched back
## 28409                                                                                                                                                                                                                         EE opening door and cut right index finger
## 28410                                                                                                                                                                                                                    EE opening door and struck last toe on rt foot.
## 28411                                                                                                                                                                           EE opening door for co-worker-hit coffee pot & it fell causing hot water to hit left arm
## 28412                                                                                                                        EE opening door to dishwasher on input side & someone started to open output door at same time, lt thumb caught by handle & bent wrong way.
## 28413                                                                                                                                                 EE opening door to kitchen she had her hand behindthe lever & inmate pushed food cart out door & smashed her hand.
## 28414                                                                                                                                                                                              EE opening door when it flew open and mashed hand against brick wall.
## 28415                                                                                                                                                                                                       EE opening door, the door closed, catching left hand in door
## 28416                                                                                                                                      EE opening entrance/exit door on way out of medical, turned knob, metal is flaking on door knob, metal cut right index finger
## 28417                                                                                                                                                                                   EE opening gate to gain access but gate arms came together and caught EE's hand.
## 28418                                                                                                                                                         EE opening gate, not properly aligned, causing EE to scrape middle lt hand on fence gate. Lt hand scraped.
## 28419                                                                                                                                                                                                     EE opening glass bottle when top broke and cut EE on rt thumb.
## 28420                                                                                                                                                                                                                EE opening mail & razor blade enclosed cut lt thumb
## 28421                                                                                                                                  EE opening mail, dropped letter opener, got off stool to retrieve & raised up, hitting back/top ofhead on counter. Head contusion
## 28422                                                                                                                                                         EE opening new bottle of peroxide pulled plastic seal off open new bottle and peroxide splashed in lt eye.
## 28423                                                                                                                                                                                                                           EE opening office door and hit left knee
## 28424                                                                                                                EE opening office door, went to step into the office while pushing door open, l foot twisted and went to step off the tile onto the carpet and fell
## 28425                                                                                                                                                       EE opening restroom door she had to sneeze. When she hit her head on corner of door. Mild concussion lt eye.
## 28426                                                                                                                                                                                                           EE opening sticky desk drawer and strained left shoulder
## 28427                                                                                                                                                                  EE opening the bottom part of a split door and rt finger got caught between the two door sections
## 28428                                                                                                                                EE opening the gate the fence securing post had slipped from his grasp and locking lasp smashed officers finger. 5th digit lt hand.
## 28429                                                                                                                                                                                  EE operating a gator veh-hit a bump and lost control of veh-throwing EE from veh.
## 28430                                                                                                                                                        EE operating a tractor with alamo mower attachmentwhile sitting in operators seat pulled left neck shoulder
## 28431                                                                                                                             EE operating bandsaw, blade got stuck while cuttingsteel. Att. To move lever, saw became free & slipped. Saw turned on and cut finger.
## 28432                                                                                                                                                                                                  EE operating can opener noted pain in rt elbow the following day.
## 28433                                                                                                                                                                         EE operating cash register caused back and neck pain resulting in pulled ligament in neck.
## 28434                                                                                                                       EE operating dodge ram pickup, stopped her vehicleto talk w/another EE, as she got out, the door closed on her r hand/middle and ring finger
## 28435                                                                                                                              EE operating dozer, clearing land for tree plantingproject. EE was stung by bees on back, head, neck &arms. (stung at least 50 times)
## 28436                                                                                                                                                                                                    EE operating farm tractor mowing heavy weeds, lefteye irrirated
## 28437                                                                                                                EE operating gate control, pulled rope attached leaver trap door to lift for officer quick to comeup. Injured bottom or lower part of back & lt leg
## 28438                                                                                                                 EE operating his vehicle w/blue lights & siren activated, on hanover st while involved in chase. EE pursued suspect on foot, slipped & struck head
## 28439                                                                                                                                                                          EE operating milling machine when a piece of steelhit him in rt eye under safety glasses.
## 28440                                                                                                                                                                          EE operating motor vehicle on hwy 52 & was involved in automobile accident and was killed
## 28441                                                                                                                           EE operating patrol car and stopped in the road on rp 1700 waiting to make a left turn and was rear ended by another vehicle. Neck pain.
## 28442                                                                                                                                          EE operating patrol vehicle when collided into another vehicle attempting to overtake while responding to a vehicle chase
## 28443                                                                                                                                                             EE operating state car when another vehicle rear ended his truck-injury to neck/back/lt knee/ shoulder
## 28444                                                                                                                                                   EE operating state owned veh returing home when other veh hit EE on driver side resulting in neck and back pain.
## 28445                                                                                                                                   EE operating stripping machine when the stripping pad became dislodge causing EE to loose control ofthe machine injuring rt foot
## 28446                                                                                                                                                                                 EE operating table saw in shop-saw blade slung a piece of wood int EE's left hand.
## 28447                                                                                                                                                    EE operating tractor doing chopping job and hit stump w/bees nest they swarmed stinging EE all ovrbody 34 times
## 28448                                                                                                                                                                 EE operating tractor when pressing clutch pedal hard to depress, then aggravated again on 2/15/10.
## 28449                                                                                                                                                        EE operating van delivering mail while stopped at stop light vehicle collided with state van. Injured neck.
## 28450                                                                                                                             EE operating vehicle when left front tire blew outcausing vehicle to travel off left side of rd and collide with ditch, strain to neck
## 28451                                                                                                                         EE operating vehicle. Car hit in rear by another vehicle pushing patrol car into vehicle in front of him. Soreness in neck and upper back.
## 28452                                                                                                                                                 EE operating weedtrimmer on property the noise aroused a nest of bees EE stung on left hand bee sting on left hand
## 28453                                                                                                                                                                        EE ordered an inmate to go to his room----inmate jumped up and hit EE. Laceration left eye.
## 28454                                                                                                                        EE ordered an inmate to leave a corridor and inmate became beligerant and got in EE's face; EE ordered inamte to back up and sprayed inmate
## 28455                                                                                                                          EE ordered inmate to him romm, inmate refused, EE pulled out dc spray. Top was loose, causing the contentes to empty down his right side.
## 28456                                                                                                                     EE ordered two inmates who were horseplaying to stop and when they didn't he physically removed the inmate on top by pulling him off the other
## 28457                                                                                                                                        EE orginial injury date was on 2/10/2006. EE statesthat he is still experiencing pain in back/neck from the 2/10/06 injury.
## 28458                                                                                                                     EE out on a control burn and stepped on uneven ground and both feet slipped from under him causing EE to fall on rock injuring back and rt hip
## 28459                                                                                                                                                                                  EE out on field trip when he tripped and fell cutting little finger on left hand.
## 28460                                                                                                                                                       EE out with client on outing. Client started to run away; EE went to reach for her and twisted herleft knee.
## 28461                                                                                                                                                                                                              EE outside at gazebo moved bench & wasp stung her arm
## 28462                                                                                                                                 EE outside building and floor was wet because of rain. EE slipped and fell on wet floor. Pulled muscles rt forearm and lower back.
## 28463                                                                                                                                            EE outside in heat & humidity from 6:30 am to 10:30 am working on grad ceremony felt faint did not drink adequate water
## 28464                                                                                                                                                            EE outside of gatehouse, he struck a match, match head blew into rt eye causing injury. Injured rt eye.
## 28465                                                                                                                                            EE outside of inmate receiving door when EE was attacked by wasps and stung several times on neck hand ear arm and face
## 28466                                                                                                                                         EE outside of veh when the veh began rolling forward up a small embankment overturning on EE att to regain control of veh.
## 28467                                                                                                                                EE outside office building, stepped to the side tolet another person pass, when her foot slipped offsidewalk & sprained right ankle
## 28468                                                                                                                                                                                       EE outside operations building hit her knee on cement bench. Injured lt knee
## 28469                                                                                                                                                                                                               EE outside yellow jacket stung him on right forearm.
## 28470                                                                                                                                                                                                    EE over stressed left knee while in prone positionfor training.
## 28471                                                                                                                                                                                                      EE overcome by natural gas fumes, nauseated, lungsand stomach
## 28472                                                                                                                                                                                                        EE overextended injuring his lower back during asp training
## 28473                                                                                                                                                                                             EE overflexed right thumb while carrying computer. Referred to glenda.
## 28474                                                                                                                                                                                                     EE overhead drilling into ceiling and dust fell into left eye.
## 28475                                                                                                                     EE overhead shelf with printer sitting on it fell on his head when an additional shelf was being attached to partition bruise to back and neck
## 28476                                                                                                                      EE overtaking a violator at a high rate of speed rounding curve violators vehicle was at a stop causing EE to hit a ditch injury to right arm
## 28477                                                                                                                                                             EE overused right hand while handwriting addresseson envelopes for several hours. Strained right hand.
## 28478                                                                                                                                                                 EE oving crate of mail that was heavier than usual- back injury ***** duplicate of 01971962*******
## 28479                                                                                                                                                    EE owking console #4-EE sprained or turned her left wrist while turning the console switch for cell door cl-110
## 28480                                                                                                                                                 EE packed 6 boxes weighting an average of 40lbs and using hand truck to carry boxes - upper back and shoulder pain
## 28481                                                                                                                                 EE packing & moving boxes for deparment move plac-ed box approx 25lbs on dollie & used her lt foot to position it injuring lt foot
## 28482                                                                                                                                                                              EE packing & stacking boxes, sharp pain to lt sideof lower back, radiating to lt leg.
## 28483                                                                                                                        EE packing boxes for the move of books & other work related materials to new ed bldg. Trying to cut tape, EE cut tip of finger w/dispenser.
## 28484                                                                                                                                                                           EE packing dirty laundry in truck and lt knee popped and bent backwards with sharp pain.
## 28485                                                                                                                                                                                                      EE packing inmate's property stuck by needle burnt on the end
## 28486                                                                                                                                                                       EE packing trees when she felt burning pain and noticed the red streaks and knots on lt arm.
## 28487                                                                                                                                  EE pain developed in rt wrist b/c of improper location of mouse use in computer activities. Wrist pain, some numbness of fingers.
## 28488                                                                                                                                EE painting a wall on ladder-student ran into ladder causing it to become unstable-EE att to catch himself and sprained left wrist.
## 28489                                                                                                                                                                                                          EE painting inside of closet when he bitten by an insect.
## 28490                                                                                                                                                                                                                          EE painting parking rails & bee stung her
## 28491                                                                                                                        EE painting windows & the ladder slipped, EE fell to the concrete. Fracture left arm in two places, surgery required, plate, pins & screws.
## 28492                                                                                                                                                                 EE painting, foot slipped off ladder rung and fellhitting left thumb, arm, shoulder, head and back
## 28493                                                                                                                                                                                        EE parked at light, trailer he towing was struck in rear by another vehicle
## 28494                                                                                                                     EE parked car on side of road it became stuck after attempting to free veh EE felt something sting rt hand-noted it was covered with fire ants
## 28495                                                                                                             EE parked his patrol car on an incline waiting to escort a tractor trailer. EE exited his car, when he returned to open door he felt pull in his back.
## 28496                                                                                                                                  EE parked patrol in the rear of treasurers office when he stepped out of the vehicle, he experiencedsharp pain in the right ankle
## 28497                                                                                                                                                     EE parked the food truck EE feet slipped and both knees hit the step while still holding on the steering wheel
## 28498                                                                                                                  EE parked van at angle with lt side being higher than rt side - got out of vehicle rt hand on rear jam door closed on it - hematauma to rt thumb.
## 28499                                                                                                                                       EE parking van & noticed side door was unlocked. As he tried to let seat back to lock door, he mashed small finger and hand.
## 28500                                                                                                                       EE participated in a use of force and an inmate bit her arm. 20 minutes later her right wrist began hurting. Rt wrist sore & bite on lt arm.
## 28501                                                                                                                                                                          EE participated in o. C. Spray practical exercise. EE had extreme discomfort in his eyes.
## 28502                                                                                                                              EE participated in the practical application of o. C. Spray, after decontamination process EE continued to have severe left eye pain.
## 28503                                                                                                                                                                    EE participated in wellness fair and had eyes tested for glaucoma. Eyes irritated from reaction
## 28504                                                                                                                                                                          EE participating at in-service training injured her lower back doing the break fall tech.
## 28505                                                                                                                                                     EE participating in 'unarmed defensive tactics' training @ ncjustice academy. Injured during training exercise
## 28506                                                                                                                                                               EE participating in 10 mile required run and twisted left ankle when he stepped on edge of the road.
## 28507                                                                                                                                                                                         EE participating in a boxing exercise and was hit in the head by opponent.
## 28508                                                                                                                                                             EE participating in a boxing practice. During match EE separated right shoulder while throwing apunch.
## 28509                                                                                                                            EE participating in a class having to slap the padded mat with hands as EE fell to the mat injuryleft index finger swollen and infected
## 28510                                                                                                                                                               EE participating in a simulated arrest during the training, his left arm was pinned behind his back.
## 28511                                                                                                                                                    EE participating in annual physical assessment. During running portion of assessment, EE injured his left knee.
## 28512                                                                                                                               EE participating in assigned asp training, EE strukon rt bicep with padded baton, causing broken bloodvessel, also strk in left shin
## 28513                                                                                                                                                                              EE participating in boxing exercise & went to throw a punch & hyperextended his elbow
## 28514                                                                                                                                                                                                         EE participating in boxing exercise and twisted his ankle.
## 28515                                                                                                                                                                               EE participating in boxing exercise and was hit struck on the left side of the head.
## 28516                                                                                                                                                                                                    EE participating in boxing exercise and was struck on the head.
## 28517                                                                                                                                                                                                        EE participating in boxing practice--injured rightshoulder.
## 28518                  EE participating in cell extraction training. During a mock cell extraction exercise EE was part of the extraction team. When the acting inmate started to resist the extraction the team ended up falling and EE had other staff fall on him. ()
## 28519      EE participating in cell extraction training. Performing lower right flanker move & had hold of instructor's right leg. As instructor tried to get away from hold, EE pushed backwards still in kneeling position. After training EE r shoulder & neck pain (
## 28520                                                                                           EE participating in cpi training. Instructor had EE to stoop down and get in position to demonstrate the movement of a patient. EE felt a cramp in thigh of left leg. ()
## 28521                                                                                                                                                                        EE participating in crdt class when she accidentlywas struck in left leg by another student
## 28522                                                                                                                                  EE participating in crdt training attempting a full leg take down another officer came down to mat lt knee made a crunching sound
## 28523                                                                                                                                                                EE participating in crdt training when he injured his left knee while performing guard in technique
## 28524                                                                                                                                           EE participating in crdt training when they were doing guard escape EE standing up into defense position twisted lt knee
## 28525                                                                                                                                                                  EE participating in crdt training-attempting breakfalls from kneeling position-injured lower back
## 28526                                                                                                                                                           EE participating in crdt training-during which fellow officer fell against her & fractured bridgeof nose
## 28527                                                                                                                                                 EE participating in crt training & was doing a take-down maneuver when he jammed his rt middle finger into the mat
## 28528                                                                                                                                                                     EE participating in defensive tactice and fell to the floor causing sprain to left hand thumb.
## 28529                                                                                                                                                                           EE participating in defensive tactics and noted pain and stiffness in neck and shoulder.
## 28530                                                                                                                                                                  EE participating in defensive tactics-shoulder roll from kneeling position-EE fell on rt shoulder
## 28531                                                                                                                                  EE participating in dept workshop. Her partner for this exercise struck the EE with knee. The exercisewas disentangle themselves.
## 28532                                                                                                                EE participating in exercises, attempted to lift another officer & put him on his shoulder, when this happened he felt strain, sharp pain in l back
## 28533                                                                                                                                                                             EE participating in firearm safety assignment- pallets from firearm struck both hands.
## 28534                                                                                                                                                                                        EE participating in limbo contest with clients when she lost balance & fell
## 28535                                                                                                                                                                    EE participating in nci core class attempted to raise from floor on 1 knee and was not able to.
## 28536                                                                                                                             EE participating in oleoresin capiscum spray training. EE was sprayed in face with oc spray. Bilateral corneal abrasions to both eyes.
## 28537                                                                                                                                                                                               EE participating in orientation activities and injured left shoulder
## 28538                                                                                                                                            EE participating in physical assesment. While doing push ups EE felt his shoulder began to hurt. Strain right shoulder.
## 28539                                                                                                                                                             EE participating in physical fitness training pullmuscle in groin during 2nd set of leg lift exercises
## 28540                                                                                                                                                                     EE participating in physical training and slipped and fell on the ground injuring both wrists.
## 28541                                                                                                                                                                                      EE participating in physical training in blet experienced rapid heart rate ()
## 28542                                                                                                                             EE participating in popat course-pushed himself over-exerting his body-at the end of course began to fell light-headed then passed out
## 28543                                                                                                                   EE participating in prescribed fitness program. Eeleft knee began hurting during the run. Examined by Dr And found EE had left patella bursitis.
## 28544                                                                                                                                        EE participating in prescribed physical fitness run & stepped into a hole while running injured rt knee. Right knee sprain.
## 28545                                                                                                                                                                                  EE participating in prescribed physical training boxing when injured rt shoulder.
## 28546                                                                                                                                                                    EE participating in quick drill exercise-sprinted toward firing line felt sharp pain in rt leg.
## 28547                                                                                                                                                            EE participating in refreshment class when she jammed rt ring finger into mat. Reinjury to index finger
## 28548                                                                                                                                                                                                       EE participating in self-defense she injured her left wrist.
## 28549                                                                                                                                                                                                        EE participating in self-defense training, EE injured wrist
## 28550                                    EE participating in sims training, hit will sims round and fell to ground acting as dead, got cuffed. Upon standing up, felt a burn in right knee, sat down and upon getting back up felt sharp pain. Knee starting swelling ()
## 28551                                                                                                                                                                                                EE participating in spring fling activities and fell hurting ankle.
## 28552                                                                                                                           EE participating in subject cntrl arrest training, when EE injured his rt side of ribs from falling during take down. Contusion rt ribs.
## 28553                                                                                     EE participating in subject control arest tehniques training, very physical training involving joint locks, pressure points, etc. Tenderness, soreness and aggrevated pain. ()
## 28554                                                                                                                                                                                       EE participating in team building activities and fell landing on left elbow.
## 28555                                                                                                                                   EE participating in timed 1. 5 mile run/walk. After. 5 miles he became dizzy, short of breath, discomfort in chest. Heart attack
## 28556                                                                                                                                              EE participating in tow rope challange course. While on rope swing EE's foot slipped on a tire pad, left knee twisted
## 28557                                                                                                                    EE participating in training exercise EE was beinglifted up when dropped onto tailbone about 40 inches off ground, medical only, not lost time.
## 28558                                                                                                                                              EE participating in training exercise, ground defense maneuver, with another EE. EE strain lowerback during exercise.
## 28559                                                                                                                                                                                     EE participating in training scenario when hand was mashed between body & wall
## 28560                                                                                                                                                                    EE participating in training session and complained of knee hurting following running exercise.
## 28561                                                                                                                                                                  EE participating in training, felt a burning in right forearm and shoulder after doing techniques
## 28562                                                                                                                                        EE participating in training-performed ground maneuver felt pain in lower back-as day progressedpain radiated down left leg
## 28563                                                                                                                                                         EE participating in unarmed self defense training at time of injury, bruises didn't show up til 2 daylater
## 28564                                                                                                                      EE participating in unarmed self-defense class & while practicing in an escape from ground attack EE's rt eye turned blood red after maneuver
## 28565                                                                                                                     EE participating in unit exercise when EE jumped ooff platform and came down on sidewalk on left foot. Cracked left heal cave left foot cracke
## 28566                                                                                                                      EE participating in use of force & tripped over a mattress that inmate used to block cell door. Causing EE to fall on knees jarring his back.
## 28567                                                                                                                                  EE participating in use of force segregation when he received abrasion to lt forarm & bruise, causedby plastic sheild being used.
## 28568                                                                                                                                                                      EE participating in walk-a-thon, sidewalk was uneven and EE stubbled and fell on both wrists.
## 28569                                                                                                                                                                                EE participating in wellness challenge walk, stepped on curve & felt pop in rt knee
## 28570                                                                                                                                                                  EE participating with patients in swimming programfell while entering poll. Fractured left wrist.
## 28571                                                                                                                                                       EE particpating in firearm practice when he used an improper grip and cut left hand w/issued service weapon.
## 28572                                                                    EE pas participating in defensive tactics training (active confrontational tactics and survival qualification drill) when he sustained an injury to his upper right side of chest wall/ribs. ()
## 28573                                                                                                                                                               EE passed child in hallway with chicken pox-allergic reaction to back, chest, stomach, face and head
## 28574                                                                                                                                                                                                            EE passed out and fell to the floor.... Back of thehead
## 28575                                                                                                                                                                                                 EE passed out in hallway c/o pain rt hand/elbow low blood pressure
## 28576                                                                                                                                                                                                                         EE passed out in hallway on gravely 1 unit
## 28577                                                                                                                            EE passed out in the bathroom striking his head and body on the floor and against the bathroom cabinet. Head, neck, back and both hips.
## 28578                                                                                                                                                                                                                       EE passed out on the floor injuring shoulder
## 28579                                                                                                                                                                                             EE passed out while sitting in a chair--fell striking head and rt knee
## 28580                                                                                                                                                                                              EE passed out while taking to co-worker-falling face first into floor
## 28581                                                                                                                                                                     EE passed out. Dr Dx that baby was cutting off circulation in EE legs which made her pass out.
## 28582                                                                                                                                          EE passenger in car of co-worker when other drivermade an illegal left turn in frt of veh causing EE veh to hit the curb.
## 28583                                                                                                                        EE passenger in gator veh- driver hit a bump and lost control both thrown from veh resulting in left ear cut, shoulder, rt knee, left side.
## 28584                                                                                                                                                 EE passenger in pert van rtrng from call-out; van ran off rd., hit ditch; mtpl. Injrs: head, nk, bk, l hnd, l fgr.
## 28585                                                                                                                                             EE passenger in state cage car when another vehiclturning left ran into car bruise to chest area where seat belt cross
## 28586                                                                                                                                  EE passenger in state vehicle-driver swerved to avert collision-vehicle flipped on right side & slid down road-EE rt arm fracture
## 28587                                                                                                                           EE passenger in state vehicle. A blue chevy went thru intersection & hit back of state vehicle. Rockhill police officer heard collision.
## 28588                                                                                                                           EE passenger in van #535 co-worker was backing vanto pick-up trash when struck stopped gator #519-1 EE transported to hosp via ambulance
## 28589                                                                                                                                                     EE passenger in veh going out-ov pulled in frt of veh which EE was passenger and caused knees to hitdashboard.
## 28590                                                                                                                                                                                 EE passenger in veh going to client's funeral whenstuck by another veh on rt side.
## 28591                                                                                                                                             EE passenger in veh going to clients funeral-veh turned into funeral home and was stuck by another veh on the rt side.
## 28592                                                                                                                                                                     EE passenger in veh that ran into the back of a van while on school related trip in goldsboro.
## 28593                                                                                                                                                                              EE passenger in veh that was hit in the rear by another veh injuring back and rt arm.
## 28594                                                                                                                                                                                                EE passenger in veh when other veh turned left in path of EE's veh.
## 28595                                                                                                                                                                                   EE passenger in veh-they stopped for lunch and another care hit EE's veh in rear
## 28596                                                                                                                                                                   EE passenger in vehicle going to training when vehicle was rear-ended causing EE upper back pain
## 28597                                                                                                                                                                                                             EE passenger in vehicle involved in accident no injury
## 28598                                                                                                                        EE passenger in vehicle on routine patrol, when pick up truck made a left turn in front of patrol vehicle causing a mva. Head & right knee.
## 28599                                                                                                                                   EE passenger in vehicle when another vehicle rear ended EE vehicle injury to neck, both sides right shoulder middle back of head
## 28600                                                                                                                                   EE passenger on campus transporation bus-driver ofbus had collison w/another veh and EE fell againstrail on wrist to catch self.
## 28601                                                                                                                                                                          EE passing a box of ammunition through armory window to another EE. Lower back pulled. ()
## 28602                                                                                                                                                                       EE passing a piece of wood through a band saw whenblade hit an irregularity and cut fingers.
## 28603                                                                                                                               EE passing an item thru bars when were being open-ed. EE on break this time. Broke shin on lt hand causing indentation and swelling.
## 28604                                                                                                                                       EE passing inmate breakfast through trap door of cell, inmate grabbed EE right thumb. EE sprain rt thumb trying to pull away
## 28605                                                                                                                                                                                EE passing out cups during evening meal - inmate snatched at cups striking lt hand.
## 28606                                                                                                                            EE passing out hot water to segregation inmates, inmate threw water in EE facial area & then struckhim on right forehead with his fist.
## 28607                                                                                                                                                                                                  EE passing out meds; turned over client; possible strain to back.
## 28608                                                                                                                                                                       EE passing truck in rain, lost control and flipped courier van, head injury, arm, knee, back
## 28609                                                                                                                                                                                      EE patching wall with putty knife and small piece of trash went into left eye
## 28610                                                                                                                                                                                    EE patrol car was struck by another vehicle that crossed the center line. Back.
## 28611                                                                                                                    EE patrol vehicle was parked behind another vehicle when an oncoming car lost control and rearended his car forcing his patrol car into another
## 28612                                                                                                                                                                                                  EE patrol vehicle was struck from the rear in traffic. Neck pain.
## 28613                                                                                                                                                                 EE patroling bravo dorm, EE hit by thrown bar of soap and was struck behind left ear head and neck
## 28614                                                                                                                                                     EE patroling wing 3 & 4 of charlie dorm. Became overheated. Found on floor. Taken to medical in wheelchair. ()
## 28615                                                                                                                                                                  EE patrolling rear between dorm a and b EE was struck by a rock thrwon by a inmate. Injured back.
## 28616                                                                                                                                                                   EE patrolling the north vardend twisted her knee while walking on uneven ground. Strain lt knee.
## 28617                                                                                                                                                                          EE patrolling yard 2 and wasp landed on his arm above elbow. Hit wasp and wasp stung him.
## 28618                                                                                                                                                      EE patrolling yard and stepped in hole in yard in front of vocational building. Sprain to left knee and ankle
## 28619                                                                                                                                          EE patting down his rt hand struck pencil inamtes pocket the was sticking out & caused superfical wound. Injured rt hand.
## 28620                                                                                                               EE pepper spray training, both eyes sprayed with ttwo one half to one second burst of pepper spray right eye had an eyelash in it after flushing out
## 28621                                                                                                                         EE pepper sprayed an inmate to control him & breathed some of spray. Stretched her right leg & strained her right groin wrestling w/inmate
## 28622                                                                                                                                                                                                                          EE pepper sprayed in eyes during training
## 28623                                                                                                                                          EE pepper spraying & applying handcuffs to inmate EE hit lt side of body on corner of metal desk contusion lt side & back
## 28624                                                                                                                                                                                         EE perfoming nci, when she felt elbows pop and pulling pain to both elbow.
## 28625                                                                                                                                                                         EE perfomrming his job & fell on concrete walkway where an area was washed out in the dirt
## 28626                                                 EE performed a balance displacement technique on a suspect that was attempting to elude arrest. During the arrest the EE slid down a 40' bank that was covered with rocks and briars resulting in the injuries. ()
## 28627                                                                                        EE performed an arm bar takedown on a suspect and took him to the ground, and a scuffle ensued. EE bruised and scraped his right hand and both kness during the scuffle. ()
## 28628                                                                                                                                                EE performed fingerstick for blood glucose on EE-while cleaning up stuck self on rt little finger with same lancet.
## 28629                                                                                                                                                                                                                      EE performed mouth/mouth cpr on an inmate. ()
## 28630                                                                                                                                                                 EE performed necessary computer work to support her job in typing communications, letters, ect. ..
## 28631                                                                                                                                                                                         EE performing 150lb. Body drag. Stepped in hole & fell twisting left ankle
## 28632                                                                                                                                          EE performing a self defense move was grabbed by staff member around the neck, and neck was twistedinjured neck and back.
## 28633                                                                                                                                                                              EE performing compliance inspection, brushed against and was exposed to poison ivy ()
## 28634                                                                                                                                                    EE performing control, restraint and defensive technique EE went down and could not get up injury lower abdoman
## 28635                                                                                                                                                              EE performing cpi hold, placing patient in 4pt restraints. Patient pulling on EE when in cpi hold. ()
## 28636                                                                                                                                                 EE performing cpr on near drowning victim when EE received partial mouthful of victim's blood and bodily fluid. ()
## 28637                                                                                                                EE performing cpr; pressing down on manican with full force; next day arm & chest started feeling sore. Bulge began to form out of r side of chest.
## 28638                                                                                                                                EE performing curfew check - very dark was using flashlight ground frozen and EE stepped into pot- hole pulling back - having pain.
## 28639                                                                                                                                    EE performing daily computer/office duties - noticed pain in both hands, numbness in rt finger, knoton rt wrist, shoulder, neck
## 28640                                                                                                                                                                                      EE performing duties with birth of new born calf when mother cow attached EE.
## 28641                                                                                                                                                                                                           EE performing electrical work & noticed sore on rt thumb
## 28642                                                                                                                                                                     EE performing emergency physical restraint on an individual and strained his left shoulder/arm
## 28643                                                                                                                                                            EE performing emrgency services durning hurricane flood and occured rash on back, chest, neck and arms.
## 28644                                                                                                                                                 EE performing file archiving project, lifting file boxes and files, with injury occuring to right shoulder area ()
## 28645                                                                                                                                                                                     EE performing general duties lifting when EE developed a strain to lower back.
## 28646                                                                                                                                                                            EE performing high blocks with pr-24 baton in basice carrie position, injured rt elbow.
## 28647                                                                                                                    EE performing home visit verifying residence & turning into driveway looked rt saw truck - went into ditch. Bruise/sprain rt shoulder and back.
## 28648                                                                                                                                                                                              EE performing home visit. EE went to door dog ran out and bit the EE.
## 28649                                                                                                                                                                                              EE performing housekeeping duties and cut rt leg on a piece of glass.
## 28650                                                                                                                                                                                                              EE performing in a play, dancing injury to right knee
## 28651                                                                                                                                                                      EE performing inmate search, used force on inmate injured neck while taking inmate to ground.
## 28652                                                                                                                                            EE performing inspection when he bumped his head against a pipe. EE sustained an gash ain the eyebrow of his right eye.
## 28653                                                                                                                                                                        EE performing lab experiment with blood-----tubes broke and blood splashed in EE right eye.
## 28654                                                                                                                                                                                           EE performing mice surgery went to check mice and mice bit EE on rt hand
## 28655                                                                                                                                   EE performing mount escape in training partner role over on his rt leg felt something in his rt thigh pull causing a strong pain
## 28656                                                                                                                                                     EE performing nci fell to the floor injuring hand and knee. **wkly chld support of 90. 19 due if iw goes oow**
## 28657                                                                                                                                                                                          EE performing nci on resident & while getting resident of floor hurt back
## 28658                                                                                                                                                                                            EE performing nci. When EE raised from the floor his right knee popped.
## 28659                                                                                                                                                                                                     EE performing normal duties when his wrist began to bother him
## 28660                                                                                                                                                                                   EE performing research in swannah riverside and came in contact with poison oak.
## 28661                                                                                                                      EE performing routine safty & sercurity inspectionplaced his left hand on front support beam & a rusty nail pierced glove & cut index finger.
## 28662                                                                                                                                                                   EE performing routine search in dyaroom, saw pieceof metal on floor. Picked up cut his rt thumb.
## 28663                                                                                                                  EE performing self defense tech. While attending unarmed self-defense update for instructions. Training conducted on safety mats. Rt knee strain.
## 28664                                                                                                                                                                                                                                    EE performing sit-up exercises.
## 28665                                                                                                                                                                                                    EE performing state duty and came in contact with flood waters.
## 28666                                                                                                                                                                        EE performing surgery on an inmate and instrument punctured glove causing wound, left thumb
## 28667                                                                                                                                                                                                             EE performing task and stuck self w/needle in rt hand.
## 28668                                                                                                                                       EE performing training exercise, hurt rt shoulder and has right sided, low back pain. ** nurse cm toni leeby 336 774 6675 **
## 28669                                                                                                                                                                 EE performing unarmed selfdefense tech, other EE placed rt arm behind EE back dislodging rt sholdr
## 28670                                                                                                                                                EE performing venipuncture on inmate when she stuck her with needle, she jerked arm back & needle stuck her finger.
## 28671                                                                                                                          EE performing weapon defensive tactics, over the head stab with plastic knife, opponent blocked moveee's finger were cut by metal keeper.
## 28672                                                                                                                                                    EE performing workshop support at state library sponsored workshop. She moved two heavy tables to provide lunch
## 28673                                                            EE performs echocardiagram on 450lb patient. Uncomfortable pain of left forearm during performance of exam with development of trobbing pain and numbness approximately 2 hrs after completion of exam.
## 28674                                                                                                                                              EE physically helped wrecker push an overturned vehicle onto it's wheels. Thereby causing pain in the right shoulder.
## 28675                                                                                                                                                                                                                         EE physically inured by aggressive client.
## 28676                                                                                                                                                                                             EE physically restrained inmate while placing 4pt restraints on inmate
## 28677                                                                                                                                                                                                EE pick bag of trash up when tr to throw in dumpster back popped ()
## 28678                                                                                                                                        EE pick up a gallon of fuel and upon returning to his truck the rover truck start backing striking EE--injuring his rt knee
## 28679                                                                                                                                                                                      EE pick up a piece of paper from a ditch when he developed a rash on his hand
## 28680                                                                                                                                                        EE pick up heavy tray top of my shoulder came out the side (arm pop out the socket) my arm & hand still num
## 28681                                                                                                                                                                                             EE picked a case of paper to carry to computer room and strained back.
## 28682                                                                                                                                                          EE picked a plastic wrapper off the floor, which had a used insulin needle & pricked EE rt middle finger.
## 28683                                                                                                                                                                                    EE picked computer up from the floor to put on thetable and strain right thumb.
## 28684                                                                                                                                                                                       EE picked files ip from floor and felt a sharp pain in the side of her neck.
## 28685                                                                                                                                                                     EE picked her left thumb accidentally with a lancet that she had previously used on an inmate.
## 28686                                                                                                                                                                                                             EE picked of case of oil and felt twinge in lower back
## 28687                                                                                                                                                                                                EE picked resident up- resident lock down on arm. Injured right arm
## 28688                                                                                                                                                                                                   EE picked student up off the ground and pulled a muscle in back.
## 28689                                                                                                                                                                           EE picked up & carried some toilet paper boxes & bag inside causing injury to neck & arm
## 28690                                                                                                                    EE picked up 10 ream box of copier paper to transport in car. Stepped off sidewalk to parking lot, shifted weight. Injured back, shoulder, neck
## 28691                                                                                                           EE picked up 2 cases of artane elixir and carried to mental health room in pharmacy. EE only carried 1 case at a time. Sore right wrist, fingers swollen
## 28692                                                                                                                                                                                                    EE picked up 5 gallons of sheetrock mud and strained upper back
## 28693                                                                                                                                                                                                         EE picked up a 10gal can and pulled something in low back.
## 28694                                                                                                                                                                                                            EE picked up a 30lb box of books and strained her back.
## 28695                                                                                                                                                                                                              EE picked up a 5 gal bag of plaster and felt back pop
## 28696                                                                                                                                                                                   EE picked up a 5 gallon pail of paint and felt something pull in his right wrist
## 28697                                                                                                                                                                                    EE picked up a 5 gallon pail of shower cleaner & felt a hurting in her abdomen.
## 28698                                                                                                                                                                                                         EE picked up a 5-gal mop bucket and felt pain in left side
## 28699                                                                                                                                                                                                                EE picked up a 50 lb cylinder and strained low back
## 28700                                                                                                                                                                                           EE picked up a 5gal water bottle to replace in fountain and injured back
## 28701                                                                                                                                             EE picked up a bag containing three hundred or more pairs of sicks, approx 50 pounds. EE sneezed and felt pop in chest
## 28702                                                                                                                                                                                  EE picked up a bag of mattresss pads and felt a catch in her back. Lumbar strain.
## 28703                                                                                                                                                                                                  EE picked up a bag of plaster and felt something in his back pop.
## 28704                                                                                                                                                                                                  EE picked up a biohazard bag of needles and one needle scraped EE
## 28705                                                                                                                                                                                                 EE picked up a block of wood, got a splinter in right 2nd digit ()
## 28706                                                                                                                                                EE picked up a box full of bus schedules to take into bldg-started up steps and felt pain in back drop box at door.
## 28707                                                                                                                                                                  EE picked up a box labeled "broken glass". Piece of galss was sticking out of the box and hit EE.
## 28708                                                                                                                                                                                 EE picked up a box of books to be stamped and he felt a pain in his left shoulder.
## 28709                                                                                                                                                                                          EE picked up a box of computer paper and felt sharpe pain in lt shoudler.
## 28710                                                                                                                                                                               EE picked up a box of copying paper felt somethingsnap in the lower part of my back.
## 28711                                                                                                                                                                                                               EE picked up a box of file folders and strained back
## 28712                                                                                                                                                                                     EE picked up a box of print cartridges on an equipement and felt pain in back.
## 28713                                                                                                                                  EE picked up a box of supper meals for special event & placed on a cart EE later felt pain in lower back & tingling down left leg
## 28714                                                                                                                                                                                                EE picked up a bucket of water and felt something pull in his neck.
## 28715                                                                                                                                             EE picked up a case of cranberry juice a sharpe pain went thr my hand & arm & constantyly pain hurt to move my fingers
## 28716                                                                                                                                        EE picked up a case of envelopes to carry upstairsdropped one and bent down to pick it up and pulledsomething in lower back
## 28717                                                                                                                                                                                    EE picked up a case of paper to store when he felt a pop to his right shoulder.
## 28718                                                                                                                                                                                           EE picked up a case of yams from the bottom of a buggy and strained back
## 28719                                                                                                                                                                                                       EE picked up a chair and felt burning and stingingin abdomen
## 28720                                                                                                                                                                                            EE picked up a child in the daycare and felt something pull in her back
## 28721                                                                                                                                       EE picked up a cpu and put it in a box to send outto counties and felt pinch in back. Injured middleof back and down lt leg.
## 28722                                                                                                                                                                                                                 EE picked up a full bag of lined and injured back.
## 28723                                                                                                                                   EE picked up a full box of paper from the floor turn around to put in a chair across the room and felt a pain in her lt shoulder
## 28724                                                                                                                              EE picked up a gallon glass container of acid the bottom of the container hit the counter top, broke off and spille acid on her legs.
## 28725                                                                                                                                    EE picked up a gallon jug of disinfectant, the previos user hand not secured top, and the disinfectant splashed into EE's face.
## 28726                                                                                                                                                                          EE picked up a heavy box and carried the box untilshe was able to find a place to sit it.
## 28727                                                                                                                                                                       EE picked up a heavy metal bucket filled with tools and bolts he pulled something in rt hand
## 28728                                                                                                                                                                                    EE picked up a large bag of clothes off a golf cart & injured rt shoulder/wrist
## 28729                                                                                                                                                                                                   EE picked up a large box and turned to place into truck...... ..
## 28730                                                                                                                                                                                                                      EE picked up a large rail... Injured his back
## 28731                                                                                                                                                                      EE picked up a lead brick from cabinet and it fell through finger causing finger to bend back
## 28732                                                                                                                                                                                           EE picked up a letter out of the mailbox that had a threatening content.
## 28733                                                                                                                                                                                   EE picked up a manual, felt a pop in the palm, wrist, finger and thumb went numb
## 28734                                                                                                              EE picked up a mattress and gave it to an inmate about a half hour later I noticed I had a lot of small bumps on both of my arms now the bumps spread
## 28735                                                                                                                                                                                                       EE picked up a medium pan with gravy and strained lower back
## 28736                                                                                                                                                                           EE picked up a microwave to throw into dumpster felt sharp pain between shoulder blades.
## 28737                                                                                                                       EE picked up a monitor and monitor started fallingand she could not get a good grip and it fell down on her lt leg and landed on her lt foot
## 28738                                                                                                                                                                       EE picked up a monitor, turned to walk and her knee popped and bonesticking out of the knee.
## 28739                                                                                                                                                                                         EE picked up a pan of lasagna to put on food line, had sharp pain in chest
## 28740                                                                                                                                                                                             EE picked up a piece of metal that burned his leftthumb and forefinger
## 28741                                                                                                                                                                                   EE picked up a piece of steel-when releasing it sored back and hit EE on rt foot
## 28742                                                                                                                             EE picked up a plastic tub containing dishware, weighing approx 50-60 lbs. Hurt her left side, including chest, shoulder, neck & back.
## 28743                                                                                                                                                                                    EE picked up a portable; truck; and felt a pull in his lower back and right leg
## 28744                                                                                                                                       EE picked up a resident who was trying to stall by laying in the floor, as a result she felt a grab in her lower middle back
## 28745                                                                                                                                                                                          EE picked up a set of lockers. When he set it downit dropped onto finger.
## 28746                                                                                                                                                                               EE picked up a small piece of wood and felt a catch in his back. Pain in lower back.
## 28747                                                                                                                                                                             EE picked up a table to turn it over and sit up. Lt shoulder popped out or dislocated.
## 28748                                                                                                              EE picked up a tire to put on van when someone called his name. Turned head to look and noticed his neck was sore. Continued to get worse during day.
## 28749                                                                                                                                                                          EE picked up a toilet and turned the wrong way andstarted feeling pain in the lower back.
## 28750                                                                                                                                                                                         EE picked up a tub of new er packets and felt something pull in lower back
## 28751                                                                                                                                                                                        EE picked up a wheelchair to carry up the stairs and injured her lower back
## 28752                                                                                                                                                                                 EE picked up a work sign causing a sharp & severe pain up left side of head & neck
## 28753                                                                                                                                                                                                                   EE picked up adaptive boxes, felt pain in chest.
## 28754                                                                                                                                                                  EE picked up air compressor and turned to move from between sewing machines and upper back caught
## 28755                                                                                                                                                                             EE picked up an envelope and pricked his finger on an earring of a strudent w/ hiv pos
## 28756                                                                                                             EE picked up an offender to complete his processing this officer was interviewing this sibject for 20-30min. Subject is on probation for not reporting
## 28757                                                                                                                                                                                            EE picked up and box and felt pain in left ring finger, hand, and elbow
## 28758                                                                                                                                                                                    EE picked up and moved typewriter from one office to another and bruised rt arm
## 28759                                                                                                                                                                       EE picked up bag of bedding from stack. Open bag spilled bedding into air and got into eyes.
## 28760                                                                                                                                                                                                             EE picked up bag of evidence, needle stuck his finger.
## 28761                                                                                                                                                     EE picked up bag of trash that had lots of books in it and pulled muscle in left arm pulled muscle in left arm
## 28762                                                                                                                                          EE picked up bags from chair, turned around to exit building (fire alarm) and fell over a low level table onto the floor.
## 28763                                                                                                                                      EE picked up basket containing checks and paperwrkin rt hand-in left hand picked up rolled coins which caused wrist to twist.
## 28764                                                                                                                                                                     EE picked up bed to move it so he could check the closet doors and felt something pull in back
## 28765                                                                                                                                                                              EE picked up bench to move back felt tight, pain started hours later. Low back strain
## 28766                                                                                                                                                                                                                             EE picked up box and elt pull in back.
## 28767                                                                                                                                                                                                             EE picked up box of charts and felt localized neckpain
## 28768                                                                                                                                                                                             EE picked up box of forms and pulled muscle in arm, shoulder and chest
## 28769                                                                                                                                                                                                                  EE picked up box of forms felt pain in upper back
## 28770                                                                                                                                                                                                                   EE picked up box of paper and strained her back.
## 28771                                                                                                                                                                                                              EE picked up box of price books, felt lower back pop.
## 28772                                                                                                                                                                                                                                   EE picked up box, strain to back
## 28773                                                                                                                                           EE picked up boxes of applications and took from personnel to division office to be mailed out. Lower back and left hip.
## 28774                                                                                                                                          EE picked up bucket and then a bag of trash while performing duties as a housekeeper in spencer. Injury to left shoulder.
## 28775                                                                                                                                                                                EE picked up bucket of water to pour out and pulled back and pain went down rt leg.
## 28776                                                                                                                                                                                                                    EE picked up case of tomatoe sauce & finger pop
## 28777                                                                                                                                                               EE picked up cassettes and they slid apart, drawers came open, caught the side of employee's face ()
## 28778                                                                                                                                                                                                         EE picked up chaffing tray and burned left thumb and pinky
## 28779                                                                                                                                                                                                              EE picked up client from the floor injured lower back
## 28780                                                                                                                                                     EE picked up clients hand to check for wound site and client grabbed EE's left hand causing pain to left thumb
## 28781                                                                                                                                                                                                           EE picked up computer and strained lower back on rt side
## 28782                                                                                                                                                                                                         EE picked up computer monitor to move it and strained back
## 28783                                                                                                                                                                                                             EE picked up concrete and moved it, back began to hurt
## 28784                                                                                                                                                                                                     EE picked up cones from unknown location and tweeked his back.
## 28785                                                                                                                                                                                                            EE picked up conference room table and stacked them up.
## 28786                                                                                                                                                                      EE picked up cooler put in van when EE turned feltpain in lower back and numbness in left leg
## 28787                                                                                                                                                                      EE picked up cooler that was full of ice, drinks, & canned coolers and onto to a loader deck.
## 28788                                                                                                                                                                                                     EE picked up crackers off the floor and pulled muscle in back.
## 28789                                                                                                                                                                                                     EE picked up dog to place on cart- dog bit EE on right forearm
## 28790                                                                                                                                                               EE picked up empty cambro and turned to put it on cart when she felt pain in left side of her chest.
## 28791                                                                                                                                                                           EE picked up end of desk in order to level desk and injured rt arm frm shoulder to hand.
## 28792                                                                                                                                                            EE picked up envelope and pressed it against lft breast and stuck self with tattoo needle in left chest
## 28793                                                                                                                                                                                                       EE picked up fax machine and cut hand on sharp metal object.
## 28794                                                                                                                                                                                       EE picked up file bucket full on files and turned. Felt pull of pop in back.
## 28795                                                                                                                             EE picked up fish basket with stingray inside. Spine came through basket and into area below EE left knee cap as he was lifting basket
## 28796                                                                                                                                                                                         EE picked up flask hot autoclaved yeast boiled outof flask onto rt forearm
## 28797                                                                                                                                                                                                          EE picked up front end of a desk.. Injured his lower back
## 28798                                                                                                                                                                   EE picked up glass and was putting it in glass rack when it shattered. EE was cut on left thumb.
## 28799                                                                                                                                                                                                       EE picked up hand held drain machine and strained lower back
## 28800                                                                                                                                                                                                               EE picked up heavy object that slipped from his grip
## 28801                                                                                                                                                                                                      EE picked up heavy trash in office and strained left shoulder
## 28802                                                                                                                                                                EE picked up his drillbox that was behind the seatof his truck & pulled a muscle in his chest area.
## 28803                                                                                                                                                                             EE picked up hose and end of hose slapped EE in rteye causing irritation and soreness.
## 28804                                                                                                                                                                                                                  EE picked up juice and something got into rt eye.
## 28805                                                       EE picked up knife that was used to cut sections of placenta with gloves that were bloody from leg section she was working on. Knife from placenta cut through gloves used on leg & cut left index finger ()
## 28806                                                                                                                                                                                                  EE picked up ladder and a piece of metal pierced the right thumb.
## 28807                                                                                                                                                                          EE picked up large basket of mail and felt twinge in left arm and wrist causing swelling.
## 28808                                                                                                                                        EE picked up large spool of thread to move it intointo cabinet & needle pricked finger. Puncture wound lt index finger tip.
## 28809                                                                                                                                                    EE picked up liquid mercury from broken thermom. Did not know it has come from thermom. She thoughtit was beads
## 28810                                                                                                                                                                                        EE picked up mail and a box under his right arm and it caused side to hurt.
## 28811                                                                                                                                                         EE picked up mail tubs thatwere extremely heavy and strained chest and the pain worsened over the weekend.
## 28812                                                                                                                                            EE picked up mail, a tab on a manilla envelope waspartially opened and cut the base of her thumb on inside of her hand.
## 28813                                                                                                                                                                                    EE picked up man hole cover, slipped on wet groundsnatching back. Injured back.
## 28814                                                                                                                                                                                      EE picked up medical chart to review. Metal bindinstuck in palm of left hand.
## 28815                                                                                                                                                                           EE picked up metal trash can in order to close bathroom door and cut EE left hand on rim
## 28816                                                                                                                                                                                    EE picked up milk crate & felt a pull under arm EE does not indicate which arm.
## 28817                                                                                                                                                                   EE picked up milk crate with lt hand and felt a sharp burning pain from his elbow to his finger.
## 28818                                                                                                                                                            EE picked up monitor box, weight and distributed on wrong side of box and box flipped over on left hand
## 28819                                                                                                                                                                                                    EE picked up mop bucket to empty water, felt a pull in chest ()
## 28820                                                                                                                                                                                           EE picked up mop bucket w/water in it felt something pull in lower back.
## 28821                                                                                                                                                                    EE picked up object from floor. When EE stood backup, EE hit her head on corner of cubby boxes.
## 28822                                                                                                                                                                                            EE picked up parper towels from counter and struck a hypodermic needle.
## 28823                                                                                                                                                                                        EE picked up rug and shaking it out-caused it to pull on back and left leg.
## 28824                                                                                                                                                                                       EE picked up small insert to put grits in, hot grits dropped on left hand ()
## 28825                                                                                                                                                         EE picked up some batteries that had acid on them causing her to injure her right thumb and fore finger ()
## 28826                                                                                                                                                                  EE picked up stack of mail from wooden bin & got large splinter under nail of right little finger
## 28827                                                                                                                                        EE picked up suitcase for client and pain ran downback, leg and foot became numb. ****clmt is paid weekly - not monthly****
## 28828                                                                                                                                                                                EE picked up table, turned around to stack them, then EE felt a sharp pain in back.
## 28829                                                                                                                                             EE picked up the laundry basket to place soiled clothes in the washer & felt sharp pain in lower left side of her back
## 28830                                                                                                                                                                         EE picked up the medications box from the foor andplace the box on desk. Right lower back.
## 28831                                                                                                                                EE picked up the mop bucket to empty out the water and the bucket slipped out of her hand. She tried to catch it and hurt her back.
## 28832                                                                                                                                                                EE picked up three meter trays and turned to put them in a hamper and then his back started hurting
## 28833                                                                                                                                                                                           EE picked up tire to put on truck, tire slipped and EE tried to catch it
## 28834                                                                                                                                                                                                   EE picked up tools for the day and pulled muscles in lower back.
## 28835                                                                                                                                                                                                                  EE picked up top of hot station and strained back
## 28836                                                                                                                                                                                               EE picked up transmission part to show class & later felt back pain.
## 28837                                                                                                                                                                                            EE picked up trash and carried it to the dumpster and injured his back.
## 28838                                                                                                                                                           EE picked up trash bag, turned and started walking toward bathroom and had pain in left hip down to knee
## 28839                                                                                                                                                                                               EE picked up trash bags to put in dumpster; turnedand back gave out.
## 28840                                                                                                                                                                                 EE picked up trash can injury to left side of body including back and abdomen area
## 28841                                                                                                                                                                                                      EE picked up tray to load on carrier-turned and twisted back.
## 28842                                                                                                                                      EE picked up two boxes of laser checks to move from her office to the storage closet when she felt a strain in her right arm.
## 28843                                                                                                                                                EE picked up video equipment in rear of van. Lowerback had intense pain casuing difficulty in walking and movement.
## 28844                                                                                                                                                                                EE picked up viral load inside of tube w/o wearinggloves causing hands to turn raw.
## 28845                                                                                                                                                                           EE picked up wall hanging that had fallen on floorand pricked finger on nail in hanging.
## 28846                                                                                                                                EE picked up wheelbarrow that was loaded with wet cement. As he started to walk he felt a severe pain in the back of his left calf.
## 28847                                                                                                                          EE picked up wood clamps to use on a project was locking shop door when one of the clamps fell and jit EE lt knee just below the knee cap
## 28848                                                                                                                                                                                                      EE picking client up from floor--client kneed EE in left ribs
## 28849                                                                                                                                                                  EE picking patient up from floor in hallway on transport board, lift was unbalanced, injured back
## 28850                                                                                                                                                         EE picking pine cones lift truck was going under tree and needle. Wen by saftey glassed & puncturedrt eye.
## 28851                                                                                                                                                                                       EE picking up & stacking boxes of closed files to be archived, strained back
## 28852                                                                                                                                                                     EE picking up a bag of trash that was unexpectedlyheavier than usual straining rt groin/lt hip
## 28853                                                                                                                                                                 EE picking up a chair and had a pain surge in leftwrist left wrist instability with reconstruction
## 28854                                                                                                                                                        EE picking up a delivery box for dept. & in doing so received a stomach hernia. Was driven to er forsurgery
## 28855                                                                                                                                                                                                                  EE picking up antena & injured lt eye on the tip.
## 28856                                                                                                                                                                                                            EE picking up bag of linen out of barrel hurt rt wrist.
## 28857                                                                                                                                                                                                                      EE picking up books and left thumb bent back.
## 28858                                                                                                                                                                         EE picking up books from dock-books were heavy andee lifted them wrong injuring lower back
## 28859                                                                                                                                                                                                                  EE picking up box in warehouse injury to left leg
## 28860                                                                                                                                                                        EE picking up box of books - felt something pull in her upper rt back. Upper rt back strain
## 28861                                                                                                                        EE picking up box to be brought to mail room, EE felt a pull in neck, lt shoulder area, later it started to bother him in his arms & hands.
## 28862                                                                                                              EE picking up boxes with christmas decorations, box was heavy and EE complained of r wrist and hand pain. EE already being treated by Dr. Kasselt for
## 28863                                                                                                                                                                                             EE picking up bucket full of water and felt pain in her right shoulder
## 28864                                                                                                                                                                           EE picking up cat to weigh animal, had to pull off chain link fence, animal scratched EE
## 28865                                                                                                                                                                                                             EE picking up client w/another staff member twstedback
## 28866                                                                                                                                                                                                  EE picking up debris after huricane fran & steppedon nail lt foot
## 28867                                                                                                                                                                                                      EE picking up floor jack to show student felt pop in low back
## 28868                                                                                                                                                                                            EE picking up frozen food items when sharp pain occured in rt lower leg
## 28869                                                                                                                                                                                                                 EE picking up heavy fish bucket strained rt elbow.
## 28870                                                                                                                                                                                           EE picking up laundry bag to take out and pulled lower back, hip and leg
## 28871                                                                                                                                                                                        EE picking up litter under tree, turned around andtree branch struck rt eye
## 28872                                                                                                                                                                                                                 EE picking up object and finger got stuck in tray.
## 28873                                                                                                                                                                                         EE picking up old tire to move outside of bldg andfelt pain in left elbow.
## 28874                                                                                                                                                                                                           EE picking up orientation notebooks. Injured left wrist.
## 28875                                                                                                                                                                                                                   EE picking up paper and stung by bee on rt hand.
## 28876                                                                                                                                                                                               EE picking up papers for filing & felt something sting her left arm.
## 28877                                                                                                                                                    EE picking up parking revenues, exiting vehicle, closed the passenger side door catching her finger in the door
## 28878                                                                                                                                                                                       EE picking up person for camp obstacles training felt pul in left hamstring.
## 28879                                                                                                                                                                                                           EE picking up plants and pull in floor irritated rt eye.
## 28880                                                                                                                                                                                                      EE picking up plywood and splinter went into left fore finger
## 28881                                                                                                                                                                                             EE picking up racks that lids and trays go in and hit rt wrist on rack
## 28882                                                                                                                                                                               EE picking up rotten crosstie at cafeteria activities bldg stuck splinter in finger.
## 28883                                                                                                                                                                                                 EE picking up sticks and was stung on lower lip by yellow jackets.
## 28884                                                                                                                                                                                                                      EE picking up tailgate lift and strained back
## 28885                                                                                                                                                                                                   EE picking up tire from shoulder of road felt painin lower back.
## 28886                                                                                                                    EE picking up trash bags didn't feel any thing until the weekend, saturday. Monday called supervisor j. Daniels; bending over to pick up trash.
## 28887                                                                                                                                                     EE picking up trash before mowing and foot got caught on railroad tie-tripped and fell injuring lower rt back.
## 28888                                                                                                                                                                                                                    EE picking up trash in bedroom and strain back.
## 28889                                                                                                                                                                                                        EE picking up trash on routine and felt pain in lower back.
## 28890                                                                                                                                                                                                              EE picking up trash, bottle in bag broke cutting knee
## 28891                                                                                                                                                                                                                       EE picking up tree limbs and back locked up.
## 28892                                                                                                                                                                                                                 EE picking up wire in store room and ruptured disk
## 28893                                                                                                                                                 EE pickingup mail and parcel for the bookstore andslipped on steps causing pain in left hand and low back and arm.
## 28894                                                                                                                                                                                                         EE picks up mail(heavy boxes), has neck pain and numbness.
## 28895                                                                                                                                                                                                              EE pickup a diabetic needle and stuck rt index finger
## 28896                                                                                                                          EE pinched 2 fingers btw mail buckets. Recieved 2 blood blisters; one got infected. Went to Dr- Surgical procedure found staff infection.
## 28897                                                                                                                                                                                                                    EE pinched left little finger between 2 pallets
## 28898                                                                                                                                                                                  EE pinched nerve while he was unarmed seld-defensetraining. Pinched nerve lt arm.
## 28899                                                                                                                                                                                                 EE pinched rt fourth while trying to push in a file cabinet drawer
## 28900                                                                                                                                                                                                  EE pinched skin on hand while trying to put table up for patients
## 28901                                                                                                                                                                                                                         EE pinched thumb between cabinet and door.
## 28902                                                                                                                                                                                   EE pitch dust from roof that came in contact with skin while doing roofing work.
## 28903                                                                                                                            EE pitched a softball from behind the 6ft net about 20-25 ft behind the batter; the ball was hitback striking her in her right forearm.
## 28904                                                                                                                                                                              EE pitched softball to student batter. Batter struck ball, impacting EE on left calf.
## 28905                                                                                                                                                                                EE pivoting client while toileting and felt a pullin muscles in upper back and neck
## 28906                                                                                                                          EE pivoting resident form bed to chair, resident started falling, EE caought her. Resident's weightwas place on EE right arm & shoulders.
## 28907                                                                                                                         EE place a piece of plywood at entrance of truck to contain 4-h hog. Hog pushed against wood and EE was struck in the mouth and chin area.
## 28908                                                                                                                                                                                       EE place evidence log on lockers and fell backwards hitting chair and floor.
## 28909                                                                                                                     EE place his finger on weapons trigger while attempting to draw from his holster, weapon fired round through upper right femur, 6" above knee.
## 28910                                                                                                                                                                                        EE place patient in a pic hold and fell with patient straining rt calf area
## 28911                                                                                                                                                                         EE place rt hand on cell door hinge and the door moved pinching rt ring finger in the door
## 28912                                                                                                                                                                                             EE placed a child in a therapeutic hold and child bit EE in the rt leg
## 28913                                                                                                                                                                                    EE placed a client in bed, she injured her ride side on the the bedroom dresser
## 28914                                                                                                              EE placed a cup of juice on the bars and when she reached for the cup, the control room officer open-ed the door catching her right hand between bars
## 28915                                                                                                                                                     EE placed a patient in mechanical restraints went to floor trying to subdue patient - knee hit floor. Lt knee.
## 28916                                                                                                                                                                                                  EE placed a resident in a therapeutic hold. Rt wrist got twisted.
## 28917                                                                                                                                                                                     EE placed an aggressive patient in pic hold & in the process injured his back.
## 28918                                                                                                                                                                                       EE placed an agressive patient in pic hold & in the process injured his back
## 28919                                                                                                                                                                      EE placed bottle in her bucket and it fell up against another bottle and sprayed in her face.
## 28920                                                                                                                                                                                                EE placed client in thereuptic hold for an extended period of time.
## 28921                                                                                                                                                             EE placed client in wheelchair-bent around to lockbrakes on chair and felt a sharp pain in lower back.
## 28922                                                                                                                                                           EE placed client on toliet turned around to leave and tripped over wheelchair hit stomach on linen cart.
## 28923                                                                                                                                    EE placed clinet in bed and was positioning clientwhen cleint stiffened and pushes from side ot backcaused EE to strain rt arm.
## 28924                                                                                                               EE placed cup of water in microwave and heated it 2-3 min. When she took it out surface was cool but when she touched it, water exploded in her face
## 28925                                                                                                            EE placed elbows on table to stand up, as she arose the top of the table flipped off the pedestal and hit her knee she caught it with her left hand. ()
## 28926                                                                                                                                                                                                       EE placed fries in hot grease and grease popped in EE's face
## 28927                                                                                                                EE placed hancuffs on a suspect. Suspect kiced EE right hand, trapping it between a brick wall & handcuffs. Bruise/numbness rt pinky & ring fingers
## 28928                                                                                                                      EE placed hand and arm inside room to shove student away from door in order to close door. Student pushed door on staff members wrist and arm
## 28929                                                                                                                       EE placed hand in track of trap door near handle and when door was pusched the door pinched right middle finger. Bruised right middle figner
## 28930                                                                                                                                                                    EE placed hand on clients back to steady him. Client reached back and scratched EE's left hand.
## 28931                                                                                                                               EE placed hand on retrieving towy and gave canine command to release, canine released bag and seized ees left hand by biting, twice.
## 28932                                                                                                                                      EE placed hands under clients leg to to lift out of bed and client lt knee kicked EE under jaw causing EE to bite her tongue.
## 28933                                                                                                                EE placed her right foot on a chair to raise up, while supporting with this foot chair rail, foot slipped, causing her to hit the floor. Right hip.
## 28934                                                                                                                           EE placed his hand on a centrifuge while opening the chamber door and noticed a small amount of mercury on the surface of the centrifuge
## 28935                                                                                                                                               EE placed his lt hand on door jam to prevent 2 inmates from fighting. One of inmates pressed veryhard against lt arm
## 28936                                                                                                                                                                                          EE placed hose nozzle on ledge while working, nozzle fell striking wrist.
## 28937                                                                                                                                                                                             EE placed inmate back in cell-- felt like he was going to pass out. ()
## 28938                                                                                                                                                                                      EE placed juvenile in restraints and student spit in EE face and on his body.
## 28939                                                                                                                                EE placed ladder on floor to climb to roof of adjacent room. Base of ladder slipped on concrete floor causing ladder and EE to fall
## 28940                                                                                                                                                        EE placed left hand on table while bending over & a nail sticking up in table caused 1/2" cut on left palm.
## 28941                                                                                                                EE placed patient in wheelchair-patient sat back causing the footrest on his chair to rise & strikeee in the rt lower leg. Contusion to rt low. Leg
## 28942                                                                                                                                                                                                            EE placed pot on stove and received an electrical shock
## 28943                                                                                                                                                                                                       EE placed resident in hold and resident headbutted her face.
## 28944                                                                                                                  EE placed resident in wheelchair & went to pick up resident's lap board off the foot of his bed with her left hand. Fingers pressed against board
## 28945                                                                                                                                                       EE placed right hand over left while firing the gun, as the slide came back it cut EE's right thumb knuckle.
## 28946                                                                                                                  EE placed shaving razor in front of pants pocket. Removing razor from pants pocket cut lt pinky finger on razor blade. Cut tip of pinkey lt hand.
## 28947                                                                                                                     EE placed the canteen order in the basket of towerand then the officer proceded to throw the basket over the fence and cut EE r middle finger.
## 28948                                                                                                                                          EE placed tubs of mail in back seat of vehicle attempted to slide tubs across too heavy caused strain to lt shoulder/neck
## 28949                                                                                                                                                                                                              EE placeing needle in sharps container, and was stuck
## 28950                                                                                                                                                                                  EE placing a student back into his room and the student slammed door on EE thumb.
## 28951                                                                                                                                                                                                               EE placing book on table when book fell on left foot
## 28952                                                                                                                                                                           EE placing canoe back into water lost balance and fell across another boat hitting knee.
## 28953                                                                                                                                                                                               EE placing cilent into wheelchair; top of right foot hit wheelchair.
## 28954                                                                                                                                                                                EE placing cinder blocks in box for anchor and block rolled back and hit left knee.
## 28955                                                                                                                                                                                                                  EE placing client in pic hold and injured rt hand
## 28956                                                                                                                                                                                                                   EE placing client in restraint and twisted back.
## 28957                                                                                                                                                                                                 EE placing client in theraputic hold-client kickedee on left thumb
## 28958                                                                                                                                                                                              EE placing client on scales and felt pain under rt shoulder and back.
## 28959                                                                                                                                                                                   EE placing clients toiletry into cabinet-when removing rt arm hit hinge bracket.
## 28960                                                                                                                                                                                           EE placing combative client in pic hold and felt sharp pain in rib cage.
## 28961                                                                                                                                                                   EE placing dishes into machine, hand in handle of lid, lid slipped and smashed left pinky finger
## 28962                                                                                                                                                                                                EE placing equipment on top of storage cabinet strain left shoulder
## 28963                                                                                                                                                               EE placing folder in filing cabinet in dci room & closed the drawer on left index finger-hand- wrist
## 28964                                                                                                                                                                       EE placing handcuffs on inmate who lundged at EE and slapped EE on the left side of his face
## 28965                                                                                                             EE placing handcuffs on suspect charge w/handcuffsaround suspect, he twisted arms & locked handcuffsaround EE wrist - small laceration, contusion, fx.
## 28966                                                                                                                                                                               EE placing inmate in four point restraints, he rec'd an abrasion to rt index finger.
## 28967                                                                                                                                                               EE placing inmate in restrains inmate spit in the face of EE & pushing him with hands to chest of EE
## 28968                                                                                                                                       EE placing inmate on floor left arm hit bar sliderrt knee and leg hit floor. Lt forearm, bruise and rt knee and shin scrapes
## 28969                                                                                                                                                                                 EE placing large target into trailer when target slipped and struck EE in the face
## 28970                                                                                                                                                    EE placing leaking trash bag in dumpster when a liquid splashed in his right eye causing burning and irritation
## 28971                                                                                                                                                EE placing mail on counter-heavy boxes already on counter caused upper shelves to fall on EE's left elbow and hand.
## 28972                                                                                                                                                                    EE placing memos on bulletin board when plexiglasscovering board fell & caught three lt fingers
## 28973                                                                                                                                                                                                EE placing motors on shelf, dropped out of hands and hit right knee
## 28974                                                                                                                                           EE placing patient in pic restraint, was pinned against wall & kicked by patient several times in right front & abdomen.
## 28975                                                                                                                                                EE placing patient into bed when patient was out of control and patient hit EE on right wrist bruise to right wrist
## 28976                                                                                                                                                                          EE placing perserved specimen into storage container and solution splashed into left eye.
## 28977                                                                                                                                                               EE placing pouches on top rack-bent over to place more and was poked in left eye by corner of pouch.
## 28978                                                                                                                                                                                                                EE placing resident in bed and back started hurting
## 28979                                                                                                                                                          EE placing resident in bto, EE was kicked 2 times in upper chest as she was releasing him. Injured chest.
## 28980                                                                                                                           EE placing resident in shower chain, resident grabbled hair, pulled down/once released went to the back shower chair to pull resident up
## 28981                                                                                                                                                                         EE placing restraints on inmates that were coming out of a paper fire set in cellblock 612
## 28982                                                                                                                                                                              EE placing shotgun ammunition in truck & stepped off step hard causing strain to back
## 28983                                                                                                                                                                                 EE placing stair unit in place and misjudge mass when she moved it straining back.
## 28984                                                                                                                                                                                          EE placing staples in heavy duty stapler when it flipped and hit rt hand.
## 28985                                                                                                                                          EE placing syringe needle in stick container with right hand - index finger lt hand. Needle puncturelt hand index finger.
## 28986                                                                                                                                                   EE placing tent for an apprenticeship contest when metal bar snapped and hit the bone in right wrist. Bruised ()
## 28987                                                                                                                                                                                        EE placing tool box in back of trk and cut rt index finger on sharp object.
## 28988                                                                                                                                                                                         EE placing trash bags in dumpster and rt index finger punctured by staple.
## 28989                                                                                                                                                                                EE placing trashcans on street when hand got caught between light pole and trashcan
## 28990                                                                                                                                                                        EE planing flush a repair to door stile when splinter went underneath rt middle fingernail.
## 28991                                                                                                                                                                                      EE planting in research plots and the poison oak oils soaked through clothes.
## 28992                                                                                                                                 EE played dodgeball with middle school students. The students threw a ball towards her. She tried to catch ball and jammed finger.
## 28993                                                                                                                                                                            EE playing a game with individual & individual fell and landed on employee's right leg.
## 28994                                                                                                                                                                                           EE playing ball with children-attempted to throw ball and twisted wrist.
## 28995                                                                                                                                                               EE playing ball with clients & staff pulled muscle degenerative osteoarthritis lt knee w/inflamation
## 28996                                                                                                                                                            EE playing ball with clients and put all weight onrt foot trying to keep ball from going out of bounds.
## 28997                                                                                                                                                                       EE playing ball with consumer and was hit in mouthwith ball. Chipped rt upper back partical.
## 28998                                                                                                                                                 EE playing basketball & was injured by co-worker as he jumped for the basketball. Injured achiles tendon on rt leg
## 28999                                                                                                                                                               EE playing basketball and tripped over another player's leg falling hitting face and head on asphalt
## 29000                                                                                                                                               EE playing basketball in gym with inmates, fell over another person foot and twisted her lt ankle. Twisted lt ankle.
## 29001                                                                                                                                                                                EE playing basketball while on break during training, right achilles tendon rupture
## 29002                                                                                                                                                                              EE playing basketball with campers, he jump and came down on his ankle. Sprain ankle.
## 29003                                                                                                                                                                                                            EE playing basketball with client and fell on lfetknee.
## 29004                                                                                                                                                                                                          EE playing basketball with clients and injured left foot.
## 29005                                                                                                                                                       EE playing basketball with clients when he jumped to rebound and landed on a ball causing injury to lt ankle
## 29006                                                                                                                      EE playing basketball with four students & anothermember. EE jumped trying to get ball when she camedown she twisted rt knee. Sprain rt knee.
## 29007                                                                                                                           EE playing basketball with inmates, EE jumped and landed ackwardly on left foot, injury left ankle this happened during recreation time.
## 29008                                                                                                                      EE playing basketball with inmates, ball richochated off inmates hands during a pass and hit EE lt 3rd and 4th figners possibly jamming them.
## 29009                                                                                                                                                                                                           EE playing basketball with patients and injured rt ankle
## 29010                                                                                                                                                              EE playing basketball with patients, EE jumped to get ball, pt bumped EE causing EE to twist knee, rt
## 29011                                                                                                                     EE playing basketball with students EE jumping left knee made loud popping noise, EE put arms out to break fall, sprain to rt elbow, left knee
## 29012                                                                                                                EE playing basketball with students, made a hard stop and knee gave out. Left knee made loud pop and became dislocated. EE cell ***828 713 4732****
## 29013                                                                                                                                                        EE playing basketball, student stepped on backheelwhile I was going up for jump shot. (achilles tendonates)
## 29014                                                                                                                                                                                                               EE playing bball in gym slipped on floor hit rt knee
## 29015                                                                                                                                                                              EE playing bball w/patients and stepped on someonefoot causing EE to turn right ankle
## 29016                                                                                                                                                            EE playing football w/campers & slipped on wet grass. He dislocated his lt kneee cap & strained his mcl
## 29017                                                                                                                                                                                                      EE playing football with child and got hit on lt ring finger.
## 29018                                                                                                                                                                                     EE playing football with clients and hit his nose and lip on clients forehead.
## 29019                                                                                                                                                  EE playing game, running - slipped on grass and fell down shoulder first breaking clavicle in 3 places & bruising
## 29020                                                                                                                                                                                          EE playing in softball game w/client-client swung bat and hit EE in face.
## 29021                                                                                                               EE playing kickball collided into staff on 1st bseran to 2nd on the way to 3rd knee buckled, kept running about 1330 could not sit down or bend knee
## 29022                                                                                                                                                                                            EE playing pool w/client, splinter from stick wentinto left ring finger
## 29023                                                                                                                             EE playing soccer with campers & tripped & fell. Bit his lip after bumping chin with knee. 1 tooth was chipped, another knocked loose.
## 29024                                                                                                                                                EE playing softball & while running, twisted ankleand fell. EE attending company event. Right ankle, knee, and foot
## 29025                                                                                                                                                                  EE playing softball at EE appreciation game-running around bases and tripped falling on rt wrist.
## 29026                                                                                                                                                                   EE playing softball at appreciation day-running bases and tripped and fell spraining left ankle.
## 29027                                                                                                                                                                              EE playing volleyball at a staff event & went to hit ball pulling muscle in right leg
## 29028                                                                                                                                          EE playing volleyball at a staff event - jumped to hit ball & landed on left foot, rolling it. Began swelling immediately
## 29029                                                                                                                                       EE playing volleyball, he went to block a shot andball hit tip of finger, bent it back, causing the skin at knuckle to break
## 29030                                                                                                                       EE plowing fire lines on wildfire when EE hit stump, caused tractor to jar and caused EE to hit left elbow on metal part of arm rest, bruise
## 29031                                                                                                                         EE plugged in clock, fire shot out from outlet, sparks and sizzling noise. Black soot on right thumb and forefinger. Thumb slightly singed
## 29032                                                                                                                                                                          EE plugged in welding unit and was electrocuted, full body shock, contusion to face scalp
## 29033                                                                                                                                                                                  EE plugging in light cord injury shocked right hand throughout right side of body
## 29034                                                                                                               EE plunging needle into bactic vial to misx solution. Needle slipped out of bottle & pricked inside of palm. Prick of needle into left palm of hand.
## 29035                                                                                                                                                                                                 EE poked finger w/ very fine forceps while transplanting seedlings
## 29036                                                                                                                           EE policing area where contractors had been working-EE stepped on the rock which flipped over on EE's foot and EE's neck snapped around.
## 29037                                                                                                                                         EE polishing partial denture with a lathe. The partial slipped out of hand. A metal clasp on thepartial cut his left thumb
## 29038                                                                                                                                                                                                   EE popped her back when she stood up after puttingjuice on shelf
## 29039                                                                                                                EE popped his neck after siting under a cold air duct for several hrs. Someone else had to drive his car back to the office due to not turning neck
## 29040                                                                                                                             EE position is repetitive at times-typing using mouse. EE noticed pain in right arm over last few weeks when she types and uses mouse.
## 29041                                                                                                                     EE positioning a burned body for examination. Body was covered with debris. As EE pulled on the body bag a piece of debris punctured rt thumb.
## 29042                                                                                                                  EE positioning lg metal table top onto truck was assisting co-worker-miscommunication landed the table top on EE's right foot-fractured great toe
## 29043                                                                                                                                                                                                                EE positioning pt in snf ward, pulled muscle rt arm
## 29044                                                                                                                                                                    EE positioning tractor seat to remove from cab while leaning over to lift injury strain to back
## 29045                                                                                                                                                           EE possible asbestos exposure on construction site over 6 mos. Jan 2007-June 2007 injury to body systems
## 29046                                                                                                                                                                            EE possible contracted illness causing diarrhea from possibly contaminated water source
## 29047                                                                                                                                                                                                      EE possibly dislocated rt shoulder while to restrain resident
## 29048                                                                                                                                                                                               EE possibly got a hernia from loading timbers for cabin restoration.
## 29049                                                                                                                                                      EE poured 1 gallon drain cleaner in floor plumbingto clean drain. Otherside poured clorox. Inhaled chemicals.
## 29050                                                                                                                                      EE poured drain cleaner into a drain that already had been treated with clorox and the mixtures caused EE to have a reaction.
## 29051                                                                                                                                                                                                                        EE poured hot water on self while on break.
## 29052                                                                                                                                 EE poured small amount of gas in carburator. It spit gas back and he fell on gas container igniting clothes, cap and glasses strap
## 29053                                                                                                                                                                                      EE pouring br2 too fast into a container and splashed himself on the forearm.
## 29054                                                                                                                                                                                                  EE pouring dish detergent into sink which splashedinto right eye.
## 29055                                                                                                                                                                                                                              EE pouring hcl under malfuncting hood
## 29056                                                                                                                                                       EE pouring hot water (making hot chocolate for clients) into container-water splashed onto left hand/fingers
## 29057                                                                                                                                                                                   EE pouring liquid tissue collection into bottles when some splashed into rt eye.
## 29058                                                                                                                                                                                      EE pouring trk wash into power washer reservior and it splashed into his eye.
## 29059                                                                                                                                                                                                    EE pouring watr out of bucket and caught a catch in left elbow.
## 29060                                                                                                                                                           EE practicing an unarmed defense tatic, and right elbow was bent, and felt a sharpe bursing in the elbow
## 29061                                                                                                                                                       EE practicing long baton techniques, she began to feel faint & her heart rate increased. Almost blacked out.
## 29062                                                                                                                            EE practicing unarmed self defense training his rtarm was twisted pulling the rear muscle tight at shoudler. Pulled muscle in shoulder.
## 29063                                                                                                                                                                                                            EE practicing unarmed self-defense twisted rt shoulder.
## 29064                                                                                                                                                                      EE practing cuffing technique and bending down on rt knee-felt sharp pain behind rt knee cap.
## 29065                                                                                                                                    EE practing grappling maneuvers with tropper in gym - during maneuvers landed on lt thumb bending it backwards. Jammed lt thumb
## 29066                                                                                                                                                                     EE practing in unarmed self defense class - injured rt arm she heard something pop - rt wrist.
## 29067                                                                                                                 EE preformed a proper procedure in handling of autoclave bags. Placed sterile bag inside protected bag, still used 2 hands to push bag in dumpster
## 29068                                                                                                                                                                                  EE preparing equipment for duty slipped on ice andfell att to break fall w/wrist.
## 29069                                                                                                                                                                EE preparing for a stained glass demonstration & a piece of glass slipped out of finger, cutting it
## 29070                                                                                                                                                                                                    EE preparing for class and was lifing bins that held supples ()
## 29071                                                                                                                 EE preparing for leadership workshop. When taking suitcase & computer to car, tripped & fell fwd on lt knee & hand. Injured lt shoulder & lt knee.
## 29072                                                                                                                                                                  EE preparing for morning lesson-tried to take toy from student-student bit EE on rt middle finger
## 29073                                                                                                                                                                                          EE preparing for tropical storm-moving sand bags strain to right shoulder
## 29074                                                                                                                                                      EE preparing medicines, leaned over bottowm drawer& had sharp pain in base of neck. History of pinched nerve.
## 29075                                                                                                                                                                EE preparing to change client-turned to get lift and in process hit left hand on clients wheelchair
## 29076                                                                                                                                               EE preparing to do the kneeling exercise when she raised her hand, EE then complained of feeling sick on her stomach
## 29077                                                                                                                                                                                         EE preparing to feed client; water on floor slippedand fell on right knee.
## 29078                                                                                                                         EE preparing to guard inmates in field squad and wee got on horse it began to run, and threw EE off bruise to right wrist and side of face
## 29079                                                                                                                                                                EE preparing to lay resident down, wc moved aroundwith brakes on, a screw on side scratched rt leg.
## 29080                                                                                                             EE preparing to make rt turn onto main st vehicle was struck on left front by whit fore escort whichcrossed left turn lane, pain in lwr back neck head
## 29081                                                                                                                                              EE preparing to take client's temperature. As EE rolled client over on her side, EE felt a pop midway in her back. ()
## 29082                                                                                                                                                                                                     EE preparing to wash cloths when something popped into her eye
## 29083                                                                                                                        EE preparing to weedeat walking to area walked by storm drain that was washed out under ground ground caved in causing him to fall in drain
## 29084                                                                                                                 EE preparing to work on steam line -stepped down on pipe chase which had steam coming out of it ***********please note prior to paying ppd********
## 29085                                                                                                           EE preparing walk down a-wing hall & allowed femlejuvenile use restroom. Male juvenile came around &grabbed, twisted head sideway & backward, dragged EE
## 29086                                                                                                                                                                                                EE preparing water bottles for auto drive-lower body, rt arm, neck.
## 29087                                                                                                                            EE preparing water bucked for operation on his knees beside helicopter-twisting and pulling bucket into position-strain to low back/hip
## 29088                                                                                                                                                                                                                  EE prepping vial which broke and sliced her thumb
## 29089                                                                    EE present to ueohc indicating she had wrist and hand pain that started at work earlier in the day, unsure of cause. EE did not want to wait to be seen so she went to unc ed for treatment. ()
## 29090                                                                                                                                                                                                          EE press the released button when he noticed his lt thumb
## 29091                                                                                                              EE pressing gas pedal when seat broke and EE fell backwards, he grabbed wheel & pulled forward to keep from falling, whick jerked body-whip-lash like
## 29092                                                                                                                           EE preventing resident from falling onto floor. Resident was sitting on another staff members lap to get haircut. Began sliding down lap
## 29093                                                                                                                                                                             EE pricked finger on hypodermic needle while disposing it after tranquilizing raccoon.
## 29094                                                                                                                                                                                                                                       EE pricked hand on equipment
## 29095                                                                                                                                                      EE primarily work in biosafety laminar flow hood EE noticed headaches/pain w/tingling in neck arms & shoulder
## 29096                                                                                                                         EE printing report on printer small propane bottlefell out of mailbox above printer & struck her on rt cheekbone contusion on rt cheekbone
## 29097                                                                                                                                               EE problems started 12 months ago due to repeti- tious work on keyboard. Diagnosed as dequerrains tendonitis. Wrist.
## 29098                                                                                                                               EE proceding from office to upper unit f. Lt foot slipped on freshly waxed floor - caugh herself & kept from falling - twisted ankle
## 29099                                                                                                                                EE proceeded through a green light when he was struck by a drinking driver who ran a red light. Contusion to left arm, head & side.
## 29100                                                                                                                    EE proceeded through sliding door, it began to close on him and he raised his hand to stop it. Door caught hand causing bruise, swelling & pain
## 29101                                                                                                                      EE proceeded to put machine down when machine cameout of slot, pushed back to move in slot & slot machine fell, caught index finger on r hand
## 29102                                                                                                                                                                           EE proceeded to sit in her chair it slid from under her causing her to fall on the floor
## 29103                                                      EE proceeded to turn and the arjo to place client in wheelchair when EE felt a pain in upper back, pain shot through left shoulder blade. Arjo was very hard to pull over hump at the threshold of shower. ()
## 29104                                                                                                                                                                                              EE proceeded up hill to car and EE slipped and fell on mud on ground.
## 29105                                                                                                                                                                                               EE proceeding down c-block hallway when slipped & fell on right knee
## 29106                                                                                                                                                                                                         EE proceeding down steps when he slipped and fell on ribs.
## 29107                                                                                                                                                        EE proceeding to staple books while proceeding to staple third staple hit hand, hit nail thru fingr in bone
## 29108                                                                                                                    EE process of subduing hostile inmate when they fell to floor injuring lt forearm and backside. Minor scratches in lt forearm, pain lt shoulder
## 29109                                                                                                                                      EE processing a dui suspect when a struggle broke out-suspect kicked EE in rt leg and caused EE to slip and lose his balance.
## 29110                                                                                                                            EE processing an inmate into segregation, checkinghis personal property when the inmate grabbed officers rt forearm. Injured rt forearm
## 29111                                                                                                                                EE processing metal plates all day with gloves on-took gloves off and put them back on-noticed handscracking, itching and swelling.
## 29112                                                                                                                                               EE propping door open when another EE came in pushing the restroom door open and slammed it jamming (l) pinky finger
## 29113                                                                                                                                     EE providing instruction on vehicle operation whenthe traveled off rt side onf road & colliede w/a embankment. Strain to neck.
## 29114                                                                                                                                                                                       EE pruning dead cedar branches-small piece of cedar bark went into right eye
## 29115                                                                                                                                                                EE prunning hedges for 3 days-EE thought shoulder was sore and applied cream-EE had strained shldr.
## 29116                                                                                                                          EE prunning tree limbs he had to removed several ticks from his person and clothing. EE reported embedded tick 6/17 on EE stomach area ()
## 29117                                                                                                                                                                                  EE prying open safe w/another EE when crow bar slipped and hit EE on top of head.
## 29118                                                                                                                                                                                EE prying the flush tank open-prybar slipped and stuck finger between bar and wall.
## 29119                                                                                                                               EE pulled 2 rhododendron beds(lg. Wooden box filled w/ sand, soil and per moss) approx. 3 feet across the ground noted pain in back.
## 29120                                                                                                                                                                                                     EE pulled 75+ lbs of equipment on cart, upsteps and out of car
## 29121                                                                                                               EE pulled 8 sheets of sheetrock away from wall that was sitting on floor to check for contra, the sheetrock fell to floor stricking EE rt chest area
## 29122                                                                                                                                                                                   EE pulled EE's rt arm and wrist EE was chaning patient. Hyperextension rt wrist.
## 29123                                                                                                                                                                                       EE pulled a bucket of water across the hall and strained rt arm and shoulder
## 29124                                                                                                                                                      EE pulled a cart and caught her finger between thecart and the sink, a sharp edge on the sink cut her finger.
## 29125                                                                                    EE pulled a chair in the room to sit in, upon doing so, as EE sat the chair flipped backwards and EE fell on her back and head in the chair. EE attempted to break the fall. ()
## 29126                                                                                                                                                                                                     EE pulled a drawer and the plastic cabinet fell on her head ()
## 29127                                                                                                                               EE pulled a manhole cover that had steam coming out of it, EE fell back as hot steam came out and something pulled in his lower back
## 29128                                                                                                                                                                                                               EE pulled a muscle in back lifting resident from tub
## 29129                                                                                                                                                                   EE pulled a muscle in her lt arm while dealing with a patient dob 1/22/54 - 12. 26. 03 filed f24
## 29130                                                                                                                                                                                               EE pulled a muscle in his left leg while loading debris onto vehicle
## 29131                                                                                                                                                                                                    EE pulled a muscle in his rt leg while walking down some steps.
## 29132                                                                                                                                                                                                        EE pulled a muscle in rt shoulder while trying to hold pipe
## 29133                                                                                                                                                                                                       EE pulled a muscle while assisting someone... Right shoulder
## 29134                                                                                                                                                                                                           EE pulled a muscle while unloading material from a truck
## 29135                                                                                                                                                                                          EE pulled a pan from shelf on the bottom-rest of pans fell on rt forearm.
## 29136                                                                                                                                                 EE pulled a patient off another EE and the patientpushed EE into the door and microwave bruising back and shoulder
## 29137                                                                                                                                                            EE pulled a stool to set down. Stool collapsed & EE fell on back. Lt hand, arm, head, & neck hit table.
## 29138                                                                                                                                                                           EE pulled amuscle in back during required stretching exercises during physical training.
## 29139                                                                                                                                          EE pulled an anchor pin out of a crane & lost his footing. The turnbuckle from the rod swung down &caught his right hand.
## 29140                                                                                                                                                   EE pulled back on handtruck and felt little pain in back of knee - next day when bent down really felt knee pain
## 29141                                                                                                                                                                         EE pulled back to prevent client from falling to floor then tripped and fell twisting back
## 29142                                                                                                                                                                                                                   EE pulled back while lifting a bag of quickrete.
## 29143                                                                                                                                                                                                                           EE pulled back while lifting mop bucket.
## 29144                                                                                                                                                                                                                  EE pulled back while moving a large metal cabinet
## 29145                                                                                                                                                                                                        EE pulled bag of salt on the floor and strained rt shoulder
## 29146                                                                                                                      EE pulled bag out of trash can, EE held bag with both hands to throw into dumpster when EE brought arms down felt pain in lower back rt side.
## 29147                                                                                                                                                                                                        EE pulled bed and frame was not attach to the bottom bed ()
## 29148                                                                                                                                                                                                                  EE pulled bed out from wall amd strained left arm
## 29149                                                                                                                                                                                              EE pulled bed out to close blinds footboard fell on top of right foot
## 29150                                                                                                                                                                                                                  EE pulled bench off truck and strained lower back
## 29151                                                                                                                                                                                                                 EE pulled cart with 2 boxes on it and stained back
## 29152                                                                                                              EE pulled case of latex gloves off shelf to check contents box slipped out of my hand and fell to the floor when I bent over to pick up injured back.
## 29153                                                                                                                                                                                                                     EE pulled chair forward and hit head on shelf.
## 29154                                                                                                                         EE pulled chair from underneath desk, chair rolledon behind EE, EE sat down, missed the chair and fell in the floor landing on left wrist.
## 29155                                                                                                                                EE pulled chair out for client. When client sat down the chair slid back against the wall mashing EE's hand between chair and wall.
## 29156                                                                                                                                                                   EE pulled client forward to put on lift pad and felt a pull in her lower back as client resisted
## 29157                                                                                                                                                                                         EE pulled client over to bed to pull up felt something pull in lower back.
## 29158                                                                                                                                                                                                 EE pulled client up that fell by walking belt and felt pop in back
## 29159                                                                                                                      EE pulled coffee pot out of maker while it was still brewing. Hot water splattered over arm. Filter fell out and water continued to splatter.
## 29160                                                                                                                                 EE pulled desk drawer out to get something from itthe drawer fell out and injured both feet since she was in standing position on.
## 29161                                                                                                                             EE pulled door closed and reached in before door closed to turn off light and did not move hand fast enough and door closed on finger.
## 29162                                                                                                                                                                                           EE pulled door open and caught right ring finger between door and table.
## 29163                                                                                                                                                                                                          EE pulled door over the top of her foot and scraped it ()
## 29164                                                                                                                                                                                          EE pulled down branch. Branch snapped and struck side of head. Concussion
## 29165                                                                                                                                                             EE pulled folder from file and had severe pain in middle of chest - EE had had car assicent on 6/29/99
## 29166                                                                                                                                                                                                           EE pulled groin muscle during unarmed self defenseclass.
## 29167                                                                                                                                         EE pulled heavy glass exterior door across rt footlarge toe. The metal frame of the door cut large toe and two other toes.
## 29168                                                                                                                                                                                                          EE pulled himself into tractor & got bruise on lt forearm
## 29169                                                                                                                                                         EE pulled himself up into the tower, by using the handrail provided, when he felt a pain in his left wrist
## 29170                                                                                                                                                                                           EE pulled his back while he was building a supportjoist for the walkover
## 29171                                                                                                                                                                                                                  EE pulled his back while working on street light.
## 29172                                                                                                                                                                                                               EE pulled his right shoulder by lifting a trash bag.
## 29173                                                                                                                                                 EE pulled hose out, started to connect hose and tripped over it falling hittin faucet w/ back of head, leg and arm
## 29174                                                                                                                                                                  EE pulled into courthouse complex when another driver backed into right front fender of state car
## 29175                                                        EE pulled into the parking lot of the governor's mansion to deliver/pick up mail. EE was parked behind a vehicle and was attempting to exit her vehicle when a vehicle backed into her mail carrier van. ()
## 29176                                                                                                                                                                                        EE pulled into traffic from a stop sign without seeing an oncoming vehicle.
## 29177                                                                                                                                                                        EE pulled keyboard out of typewriter and if fell on foot. Bruise and swelling to right foot
## 29178                                                                                                                   EE pulled latch on walkin refrigerator and felt pain in upper right arm. Pulled muscle, rt pronatortenser mild tendonitis right wrist and elbow.
## 29179                                                                                                                                                                                     EE pulled laundry cart, safety pin popped out, lid of cart closed on EE l hand
## 29180                                                                                                                            EE pulled left arm back and hit her elbow on the table-mounted can opener. Injury occurred while EE was reaching for the cleaning rags.
## 29181                                                                                                                                                                     EE pulled lever on adjustible chair and chair fell forward and struck EE across bridge of nose
## 29182                                                                                                                                                                        EE pulled lower back while helping other employees lift a mower over a small stone wall. ()
## 29183                                                                                                                             EE pulled mop bucket away from wall and somebody had laid dust mop on top of bucket, when EE pulled handle of mop hit rt eye. Abrasion
## 29184                                                                                                                                                                                                               EE pulled muscle and connective tissue of right knee
## 29185                                                                                                                                                                    EE pulled muscle around her knee as she got into the drivers seat of the van. Sprained rt knee.
## 29186                                                                                                                                                                                                                      EE pulled muscle in back while lifting client
## 29187                                                                                                                                                                                                                  EE pulled muscle in left arm while buffing halls.
## 29188                                                                                                                                                                                          EE pulled muscle in lower back when moving a 32galtrash can full of water
## 29189                                                                                                                                                                             EE pulled muscle in neck when she was struggling with an abusive & assaultive patient.
## 29190                                                                                                                                                                                                            EE pulled muscle in shoulder while lifting pans ofrice.
## 29191                                                                                                                                                                  EE pulled muscle in the middle and side of back while packing and arranging boxes for the movers.
## 29192                                                                                                                                                                                                              EE pulled muscle in upper back while lifting a client
## 29193                                                                                                                                                                                                                     EE pulled on a heavy box and strained back. ()
## 29194                                                                                                               EE pulled on boxes that were overhead to flip one down on the floor. The box hit the side of EE's right knee, EE moved to get away and twisted knee.
## 29195                                                                                                                                                                                   EE pulled on handle to put tailgate down-tailgate came down fast straining thumb
## 29196                                                                                                                                                                       EE pulled on plastic to remove from rack, plastic did not move. EE had lower bck discomfort.
## 29197                                                                                                                                                       EE pulled on projection screen to make it roll back up & it fell down & hit her upper right arm bruising it.
## 29198                                                                                                                                                              EE pulled on steel door & pulled a muscle in mid of back & alleges the pain got worse as day went on.
## 29199                                                                                                                                                           EE pulled on the cabinet door, the handle came off, EE fell backwards, hitting back of head on the floor
## 29200                                                                                                                                                   EE pulled on the door and the force caught EE hand b/t the door and the wall the door smashed two of his fingers
## 29201                                                                                                                                                                     EE pulled on weight belt buckle which failed hurling a weight at his head causing a laceration
## 29202                                                                                                                   EE pulled onto shoulder of road to do a u-turn. Checked side mirror, headlights seem to be far away, EE continued and car struck on drivers side
## 29203                                                                                                                                                            EE pulled open bottom drawer. EE had to pull hard because drawer was stuck. Pulled muscle in lower back
## 29204                                                                                                                                                              EE pulled open the bottom drawer and something popped under her right shoulder blade. Thoracic strain
## 29205                                                                                                                                                                                              EE pulled or strained muscle in upper back by moving filing cabinets.
## 29206                                                                                                                                                      EE pulled out a broom to sweep the floor, broom handle was broken, EE lacerated lt. Hand on sharp handle end.
## 29207                                                                                                                                                                                      EE pulled out a drawer and fell. Injured her chin, lt arm, lt knee, and back.
## 29208                                                                                                                                                                                            EE pulled out a full file drawer and felt a pull in her right shoulder.
## 29209                                                                                                                                                                                               EE pulled out and was struck by truck injuring neck and lf shoulder.
## 29210                                                                                                                                                                                                                        EE pulled out drawer and it fell on rt toes
## 29211                                                                                                                                                                                 EE pulled out dresser to sweep and mop behind pushed desser back felt pain in back
## 29212                                                                                                                                                                                                    EE pulled out in frt of trk-injury to rt side of body and head.
## 29213                                                                                                                                                                                                                  EE pulled out keyboard tray and it fell on rt leg
## 29214                                                                                                                             EE pulled over off the service road to wait for his relief. EE tried to stop the truck went over embankment into a ditch swollen knee.
## 29215                                                                                                                                                                                             EE pulled pan out of steamer and water ran down his rt foot out of pan
## 29216                                                                                                                                                                                            EE pulled pan out of steamer-water rolled off top and spilled on rt arm
## 29217                                                                                                                        EE pulled pickup into warehouse. Pulled rope with left hand to close door. Right hand was on door as he pulled, fingers were caught in door
## 29218                                                                                                                                                                                              EE pulled pillow case off and felt something pierce left pinky finger
## 29219                                                                                                                       EE pulled plastic cover from spray gun to change it from chemical to water, cover is loose, piece of metal on spray gun cut her left arm. ()
## 29220                                                                                                                                                      EE pulled pt off another peer and placed in theru hold and during struggle EE struck elbow on the door frame.
## 29221                                                                                                                                                                                                             EE pulled resident up and felt pain in left s shoulder
## 29222                                                                                                                                                                                                            EE pulled right shoulder muscle removing full trash bag
## 29223                                                                                                                             EE pulled rt arm out of socket while holding on to railing running down stairs responding to a **** aww - $714. 57 c/r - $476. 41 ****
## 29224                                                                                                                                                                                            EE pulled self up into van using steering wheel and strained lower back
## 29225                                                                                                                                                                                          EE pulled shade string and the shade fell on her hand causing a contusion
## 29226                                                                                                                                                                                                         EE pulled shoulder while loading and unloading equipement.
## 29227                                                                                                                                                                                               EE pulled something in chest while restraining an aggressive patient
## 29228                                                                                                                                                                                    EE pulled something in his arm while separating two students who were fighting.
## 29229                                                                                                                                                                                                     EE pulled something in mid-section while hand bending conduit.
## 29230                                                                                                                                                                                EE pulled string on laundry bag, string broke and EE lost balance falling backward.
## 29231                                                                                                                     EE pulled suspect veh over who got out and ran-EE att to arrest suspect but struggle broke out and EE sustained minor lacerations and bruises.
## 29232                                                                                                                                                                                      EE pulled the bottom drawer out, later EE got up and tripped over the drawer.
## 29233                                                                                                                                                                                      EE pulled the door open and it caught her hand between the door and the wall.
## 29234                                                                                                                                                                     EE pulled the mat table down from wall and heard apop in right upper thigh. Rt. Hamstring pull
## 29235                                                                                                                       EE pulled the string on a pressure washer to start it and while pulling it back, it slipped out of his hand and caused pain in his wrist. ()
## 29236                                                                                                                                                                                                 EE pulled three ring notebook off of shelf, caughtwith left thumb.
## 29237                                                                                                                                    EE pulled trailer with truck to jobsite. He uncoupled trailer from truck and sat trailer tongue on ground. Injury to lower back
## 29238                                                                                                                                                      EE pulled trash bags from can and was on the porchto get some leverage and fell backward catching her weight.
## 29239                                                                                                                                                                                    EE pulled trash-sharp glass in bag-didn't know glass in bag and cut left finger
## 29240                                                                                                                                                       EE pulled truck with family styles boxes out, did not notice latter, latter fell hitting upper back. Bruise.
## 29241                                                                                                              EE pulled two chairs from the top of file cabinet in storage room. Top chair fell against chest & eefell hitting lt shoulder & back on wall & cabinet
## 29242                                                                                                                  EE pulled two sets of trays off truck lift on to dietary truck and lifted up the trays to pull wheels up on truck, hurt something below shoulder.
## 29243                                                                                                                                                                       EE pulled up & down on the breaker bars & he felt pain in the lt side of his neck & shoulder
## 29244                                                                                                                                                                       EE pulled up a toilet from floor to remove a blockage; he later felt pain in his lower back.
## 29245                                                                                                                                                                                 EE pulled up chair and sat down the chair broke and pinned his legs under the desk
## 29246                                                                                                                                 EE pulled up mop bucket to empty water and bucket rocked and started to turn over-EE att to catch bucket and pulled left shoulder.
## 29247                                                                                                                                       EE pulled up old carpet in May and pulled something in rt shoulder. On 8-15 was removing old sink and pulled something again
## 29248                                                                                                                                                                 EE pulled up sign as he pulled it up a 18 wheeler came by and almost blew the sign out of his hand
## 29249                                                                                                                                                                            EE pulled up to ? Step and opened foor, fell out into rocks, injuring back and buttocks
## 29250                                                                                                                                                    EE pulled up to loading dock, got out of van, started walking to loading dock stepped in hole. Twisted rt knee.
## 29251                                                                                                                                                                                                   EE pulled van tie down to release a client. Brusing right thumb.
## 29252                                                                                                                                              EE pulling & adjusting newly installed lighting, when the system fell striking EE on the head and hand. Lacerted head
## 29253                                                                                                                                                                                                    EE pulling & pushing office furniture when she injured her back
## 29254                                                                                                               EE pulling a boat with patrol vehicle when EE was hit by a truck in front which was traveling at a high speed injury lower back, neck, left shoulder
## 29255                                                                                                                                 EE pulling a file cabinet from under desk, cabinet wedged left index finger between cabinet & desktop l bracket, slicing finger ()
## 29256                                                                                                                                                                                EE pulling a laundry bag full of dirty cloths ontotruck when a back spasm occurred.
## 29257                                                                                                                                                                                                       EE pulling a patient up to feed; pulled back - mid-low back.
## 29258                                                                                                                  EE pulling an inmate to floor to get control of anaggressive inmate pulling inmate to floor rt eblowhit floor wrestling inmate. Rt elbow abrasion
## 29259                                                                                                                                                                                                   EE pulling bag of garbage too hard and edge of bagwent into eye.
## 29260                                                                                                                                                                                     EE pulling bed back into rm pt trying to pull bed back out, strain to left arm
## 29261                                                                                                                                                                                   EE pulling bottle of bleach off of shelf-cap not on tight-bleach poured onto EE.
## 29262                                                                                                                                                EE pulling boxes on cart to dishwasher & foot slipped on floor. Left ankle, knee, leg, and side hit concrete floor.
## 29263                                                                                                                                            EE pulling cart between counter and chair, there was a brush on cart which caught on chair causing EE to fall. Left hip
## 29264                                                                                                                                                  EE pulling cart up ramp, handle broke causing her to fall backwards landing on burrocks, elbows, and back of head
## 29265                                                                                                                                                                                EE pulling cart w/chairs on it across cable-went to pick up cart and strained back.
## 29266                                                                                                                                                                                                      EE pulling chain on truck and pulled something in lower back.
## 29267                                                                                                                                                                       EE pulling chairs apart that were stacked and feltpain in rt shoulder. EE's ph# 828-227-3373
## 29268                                                                                                                                                                                   EE pulling charts tightly packed, using a repetitive movement. Right hand &wrist
## 29269                                                                                                                                                                                               EE pulling client up in bed and during transfer eefelt pain in back.
## 29270                                                                                                                  EE pulling clothing orders and loading on pallettsee lifted a case of inmate shoes out storage rack felt sharp pain burning sensation near pelvis
## 29271                                                                                                                                                                        EE pulling compressor on wheels and setting up exhibits for new museum strained lower back.
## 29272                                                                                                                                         EE pulling down stage 4 door-door kicked up & EE lost grip and fell against the scissor lift causing cut to middle of back
## 29273                                                                                                                         EE pulling drawer & c/o was shoving another drawerwith foot, causing EE's left ring finger to get smashed between top part of drawer & box
## 29274                                                                                                                                                                           EE pulling file from open shelf and hit finger on anothr file and cut left index finger.
## 29275                                                                                                                                                                 EE pulling file, pulled hard to get it out, when it came out it hit EE in her lt eye causing pain.
## 29276                                                                                                                       EE pulling files - poor condition of cabinets and necessary for EE to support the wt of the drawer while tried to pull out to retrieve files
## 29277                                                                                                                                                                EE pulling files and packing in box to go in atticpicked up box to move-top tore left hand hit wall
## 29278                                                                                                                                          EE pulling files, sat on stool and they began to fall, placed right hand out to catch & files fell on right index finger.
## 29279                                                                                                                                                                                             EE pulling food cart and jammed hand between cooler door and food cart
## 29280                                                                                                                                                                                                         EE pulling food cart behind him & cart rolled overhis foot
## 29281                                                                                                                                                        EE pulling frozen yogurt frm freezer to thaw and a36lb box of yogurt began to fall and hit EE on both legs.
## 29282                                                                                                                                                                 EE pulling full linen cart. Turned curve in basement hallway felt pull in mid back. Thoraic strain
## 29283                                                                                                                                                                  EE pulling furniture, squeezing the mop out, pushing down mop handle-left hand and wrist burning.
## 29284                                                                                                                                                                                                                  EE pulling gate open and felt pain in lower back.
## 29285                                                                                                                                       EE pulling gero-chair w/client in chair to bathrm and elby got caught between wall and chair causingee's wrist to bend down.
## 29286                                                                                                                                                                           EE pulling heavy load of trash to dumpster insteadof pushing it and strained lower back.
## 29287                                                                                                                                                                                                  EE pulling kiln by hand-kiln tilted causing shelves to fall on EE
## 29288                                                                                                                          EE pulling linen cart off of elevator when the door shut catching ees fingers between the cart & the elevator door. Contusion to fingers.
## 29289                                                                                                                                      EE pulling lumbar from shelves when insulation dust flew everywhere caused EE's skin to breakout in rash and lungs irritated.
## 29290                                                                                                                                                   EE pulling material to fan out to cut, cutting heavy wt material with heavy scissors for several hrs, both hands
## 29291                                                                                                                      EE pulling medicatin cart thru medication room door, cart rolled and twisted, causing my rt hand to be jammed into the door. Back of rt hand.
## 29292                                                                                                                                                                                                 EE pulling mop bucket and mopping floors - felt pain in left elbow
## 29293                                                                                                                                                                                                     EE pulling mouse cage top off shelf, fell and hit him in head.
## 29294                                                                                                                                                  EE pulling on a 33-gallon bucket of water which got wheel caught in tile floor causing EE to strain left fore arm
## 29295                                                                                                                                                                                                 EE pulling on a rope while on ladder-rope snaged EE injured rt arm
## 29296                                                                                                                                                                                                              EE pulling on conveyor to remove objects cut rt wrist
## 29297                                                                                                                                                                                                  EE pulling on cord on motor popped releasing onto rt index finger
## 29298                                                                                                                                       EE pulling on fence post with hands to tighten wire-wide straned broke and fence post hit EE in the mouth breaking 4th tooth
## 29299                                                                                                                                                                              EE pulling on pipe wrenches trying to tighten steam fitting injury to lower left back
## 29300                                                                                                                                                                                   EE pulling on wrench to loosen a floor nut & nut broke free hit elbow on chiller
## 29301                                                                                                                                                                    EE pulling out bleachers when bleachers jerked hisarm and he had pain in neck, shoulder and arm
## 29302                                                                                                                                                  EE pulling out chair for client-hand slid down theside of chair causing two splinters to go into rt index finger.
## 29303                                                                                                                     EE pulling out portable weight-scales from trunk of patrol car he felt a pop in rt-forearm area. Next 3-days experience to feel pain\\swelling
## 29304                                                                                                                                                                                                                               EE pulling over pt in bed. Rt wrist.
## 29305                                                                                                                                                                            EE pulling patient into bathroom to wash face whendoor made contact to top of left hand
## 29306                                                                                                                                                                           EE pulling privacy screen into bedroom when EE found herself falling injury to left knee
## 29307                                                                                                                                                                                                  EE pulling rack into hallway-cut left hand on sharp piece to door
## 29308                                                                                                                                                                      EE pulling rack out and ramp came loose - rack began to turn over and EE strained lower back.
## 29309                                                                                                                                           EE pulling rack with fruit on it and twisted to left and hit lt hand on door. Laceration lt hand restricted duty 3 days.
## 29310                                                                                                                 EE pulling records from bottom drawer, top drawer left open by other EE, EE came up from kneeling andbumped head on corner of drawer, cut to scalp
## 29311                                                                                                                                                                                EE pulling refrigerator from wall and turned around and felt pain in left shoulder.
## 29312                                                                                                                                                                                                EE pulling rope to start machine-rope got hung andpulled backwards.
## 29313                                                                                                                                          EE pulling selt into seat of van-no strap to grab on to-grabbed door jam and seat-felt pain in rt side and shoulder area.
## 29314                                                                                                                                   EE pulling serving cart with trays from dishroom and arm and shoulder became sore. **rehab spec- sending in closure rpt 1/2003**
## 29315                                                                                                               EE pulling small trees away from the area just cuta wasp past in one of the branches, wasp flew out & stung his face. Wasp stung on center lt cheek.
## 29316                                                                                                                                                               EE pulling student from off the top of lockers to restrain child injured stomach and back in process
## 29317                                                                                                                                                                                      EE pulling subject from vehcile that he placed under arrest - strain low back
## 29318                                                                                                                                                                                          EE pulling telephone cable into facility felt painin his lower back area.
## 29319                                                                                                                                                                                                     EE pulling trash bag from barrel felt a pull in her lower back
## 29320                                                                                                                                                                                                                                  EE pulling trash cans & hurt back
## 29321                                                                                                                                                     EE pulling trash from large trash can, felt something pull or pop while lifting bag out of barrel in right arm
## 29322                                                                                                                                                                                            EE pulling trash out of container to put into dumpster and pulled back.
## 29323                                                                                                                                                     EE pulling trash out of trash can & noticed was heavy because it had bricks & crushed rock in it, back injured
## 29324                                                                                                                                           EE pulling trash out of trash can but didn't know there were bricks in it from construction workers straining lower back
## 29325                                                                                                                                                                                                         EE pulling trash, laceration to finger on trash receptacle
## 29326                                                                                                                                                                                                EE pulling trash, stepped back and hit rt ankle on bottom of chair.
## 29327                                                                                                                                            EE pulling trays off the dish machine, reached overfell pull in neck & shoulder. On 072904 noted limited rom of rt arm.
## 29328                                                                                                                                                     EE pulling tv-vcr cart when tv slid, to prevent tvfrom falling EE caught it with lt hand. Contusionto lt thumb
## 29329                                                                                                                                                         EE pulling up - in albemarle sound over period of felt hand swelling, tingling and rt arm. Lt hand rt arm.
## 29330                                                                                                                                                                   EE pulling up weeds and pruning plants as he picked up the debris a thorn got stuck in rt thumb.
## 29331                                                                                                                                                EE pulling walll locker out to search behind lock-er, heard something pop in rt arm. Pulled muscle in lower rt arm.
## 29332                                                                                                                                                                                       EE pulling weeds and came in contact with poison ivy on both arms and rt eye
## 29333                                                                                                                                                                                                              EE pulling weeds and came in contact with poison ivy.
## 29334                                                                                                                                                                                                 EE pulling weeds and came in contact with posion ivy on both hands
## 29335                                                                                                                                                                                                                 EE pulling weeds and felt burning in back muscles.
## 29336                                                                                                                                                                                                EE pulling weeds from flower beds & was bitten by insect right hand
## 29337                                                                                                                                                                                     EE pulling weeds in and came in contact w/poision ivy and was bitten by insect
## 29338                                                                                                                                                                                                EE pulling weeds-bent down and leaf of plant hit EE in the left eye
## 29339                                                                                                                                 EE pulling winch cable for crawler tractor was struck, when single strand of wire form cable struck EE's glove & stuck in lt hand.
## 29340                                                                                                                                                  EE pulling wire throug conduit with plyers-when plyers came loose from wire and force of tool hit EE in the face.
## 29341                                                                                                                                                                              EE pumping up tire on hand truck and tire blew up causing minor scrapes and fx wrist.
## 29342                                                                                                                                                                                       EE punches and assembles books with binding machine repetitive motion injury
## 29343                                                                                                                                                                     EE puncture his forearm while he was doing a necropsy on a large bull cutting his frt leg off.
## 29344                                                                                                                                                                                                       EE puncture knee while inspecting beneath an amusement ride.
## 29345                                                                                                                                                                              EE punctured her hand with scissors while performing a medical procedure on an inmate
## 29346                                                                                                                                                                                               EE punctured her rt index finger while drawning blood with a needle.
## 29347                                                                                                                                                                                                                      EE punctured left hand on electrical panel ()
## 29348                                                                                                   EE punctured left thumb by #1 bd catheter stylus while placing #2 bd catheter and stylus into sharps container attempting to get both to fall down container. ()
## 29349                                                                                                                                                                                                                     EE punctured rt calf on rearb in concrete curb
## 29350                                                                                                                                                                                                                             EE punctured rt hand with hole puncher
## 29351                                                                                                                                                                           EE punctured rt thumb with broken slide which was contaminated with a pap smear specimen
## 29352                                                                                                                                                                                              EE puntured by spine of nile tilapia's dorsal fin while drawing blood
## 29353                                                                                                                                                              EE purchased a steak sandwich out of the vending machine and then became sick, vomit and had diarreah
## 29354                                                                                                                                                                                              EE purse was snatched off her shoulder causing injuring to her lt arm
## 29355                                                                                                                       EE pursued a violator on foot after a jump and run from a vehicle. EE fell and struck his right knee on a tree and strained his right ankle.
## 29356                                                                                                                EE pursued violater on foot, when slipped on wet grass & mud causing EE fall. EE struck concrete trash can w/lt leg. Two cuts & abrasions knee/shin
## 29357                                                                                                                                     EE pursuing escapees down railroad track, EE was running and stepped in hole causing him severe pain in right side groin area.
## 29358                                                                                                               EE pursuing suspect impaired driver. EE vehicle ltroad & overturned several times. Fractured hand, wrist, disloacted shoulder, cut lt ear, scalp cut
## 29359                                                                                                                                            EE pursuing suspect-when EE caught him the suspecthead hit EE in nose & they fell to ground-left knee twisted & bruised
## 29360                                                                                                                               EE pursuing traffic violator, going 97 in 55, EE ran off right side of road, losing control of vehicle & causing a traffic collision
## 29361                                                                                                                                                                                          EE push level track on dish machine caught rt hand4th finger (laceration)
## 29362                                                                                                                                                                                                                  EE pushed 351 pound pt plus oxygen tank to ed. ()
## 29363                                                                                                                                     EE pushed 5 tier rack through door & dropped badge, bent to pic up badge and rack hit door release cause door to slam on wrist
## 29364                                                                                                                                         EE pushed 60 gallon trash can to dumpster & liftedto empty. EE stated that mid-back began to hurt after lifting trash can.
## 29365                                                                                                                                                                EE pushed a car, that was stranded in the roadway, to the shoulder to prevent a crash. EE felt a ()
## 29366                                                                                                                                                                                         EE pushed a client up to table in chair and felt a pull in back and chest.
## 29367                                                                                                                                                                                                EE pushed a tool box away from him with his leg and strained rt leg
## 29368                                                                                                                                                                EE pushed against a rock with is foot & it caused a 1 inch laceration & puncture wound to his heel.
## 29369                                                                                                              EE pushed aggressive resident away from a coworker and resident picked up a plywood board and struck coworker with it. EE blocked the blow w/ rt hand
## 29370                                                                                                                                                                       EE pushed back chair to get file while on phone -foot slipped and EE jammed lt leg into desk
## 29371                                                                                                                                                                         EE pushed back hands on desk and the chair tilted and EE fell to the floor. Injuring back.
## 29372                                                                                                                                                                                      EE pushed bag of soil with left leg hurting back, hip, left leg and left foot
## 29373                                                                                                                                                         EE pushed board on back of laundry cart w/lft footcaught on another cart & EE felt knee twist and pop/pain
## 29374                                                                                                                                                                                               EE pushed broken glass into hand when putting tubing into glass rod.
## 29375                                                                                                                                                                                                         EE pushed cabinet against the wall injury left hip and leg
## 29376                                                                                                                                                                                                 EE pushed chair against desk which strained her wrist backwards ()
## 29377                                                                                                                  EE pushed chair back in an arc to his right with feet to move chair. Approx. 20 minutes later he tried to stand and could not put weight on r leg
## 29378                                                                                                                                                                                    EE pushed desk to spot to be set down, desk slipped off bouy and hit EE's foot.
## 29379                                                                                                                                                                                                          EE pushed door open with knuckles and injured right hand.
## 29380                                                                                                                                                                                                                    EE pushed down on a bedrail and it fell on hand
## 29381                                                                                                                                                                                                     EE pushed down on trash in a barrel & cut hand on broken glass
## 29382                                                                                                                                                                     EE pushed feet on floor to push back on wheelchairand caught EE's hand between chair and wall.
## 29383                                                                                                                            EE pushed her chair back to turn toward the computer when her foot slipped causing her to strike her lt ankle on the corner of the desk
## 29384                                                                                                                                                                                                               EE pushed into door jam by client. Contusion lft arm
## 29385                                                                                                                       EE pushed light switch light on position, sparked and burned his lt index & middle finger on lt hand. Burn lt index & middle finger lt hand.
## 29386                                                                                                                                                                  EE pushed medical cart into open closet. EE hit right elbow on closet door inside trailer. Strain
## 29387                                                                                                                                           EE pushed open dormitory door with his knuckles. Right wrist bent forward injuring right index and right middle fingers.
## 29388                                                                                                                                           EE pushed open security gate. As he pushed it closed the upper corner of steel plate pinched right hand at base of thumb
## 29389                                                                                                               EE pushed opened segreation control door #242 a in order to exit the segregation control center. Looked back & door hit finger. Cut rt middle finger
## 29390                                                                                                                                                                       EE pushed out a vending machine to find a electricplug and he felt a sharp pain in his back.
## 29391                                                                                                                                                                                  EE pushed out of chair and punched on left side of face by pt, twisted r ankle ()
## 29392                                                                                                                                                                                                           EE pushed trash into dumpster and cut left index finger.
## 29393                                                                                                                                                               EE pushes cart with files and it has run over her feet multiple times during the past several months
## 29394                                                                                                                 EE pushing 2 computer monitors on a cart. Monitorsfell off cart, EE fell into wall, monitor fell on EE leg. Sprain rt shoulder & contusion lt leg.
## 29395                                                                                                                                                                                       EE pushing a client up the ramp and experienced pain in upper lumbar region.
## 29396                                                                                                                                                                        EE pushing a vacuum and stumbled over hit right foot and fell- fx right hip catalog -448076
## 29397                                                                                                                                                                                       EE pushing and pulling client up and down hill to picnic area strained back.
## 29398                                                                                                                                                                            EE pushing bed against wall after waxing floor slipped hit right shoulder on foot board
## 29399                                                                                                                                                                      EE pushing book cart-decided to turn cart around & pull & accidentally rolled over right foot
## 29400                                                                                                                                                                                                                             EE pushing boxes w/foot injuring knee.
## 29401                                                                                                                                                                  EE pushing cart down hallway-cart got stuck on table-EE pulled cart and felt pain in rt shoulder.
## 29402                                                                                                                                         EE pushing cart down hallway. Stepped down or incline & cart flipped out. EE slipped on bags & reinjured a sprained ankle.
## 29403                                                                                                                                                                             EE pushing cart down hospital ramp-cart went backwards and hit EE in rt leg/groin area
## 29404                                                                                                                                                                                                EE pushing cart loaded w/tables and slipped and fell on hand truck.
## 29405                                                                                                                             EE pushing cart onto elevator when wheels got stuck in elevator grooves-EE att to stop cart fromtipping over and felt pull in stomach.
## 29406                                                                                                             EE pushing cart, wheel got caught in crack in floor causing EE to lose balance & EE fell onto concrete floor. Injured right knee & scratched right leg
## 29407                                                                                                                                                  EE pushing chair from back wheel fell off causing EE to loose balance and fall on floor resulting inlumbar strain
## 29408                                                                                                                                                                                                                      EE pushing chair under desk and stuck rt knee
## 29409                                                                                                                                                                   EE pushing chair with computer monitor and monitorfell on left foot causing injury to fourth toe
## 29410                                                                                                                                                                                                                    EE pushing chart cart, fell when cart also fell
## 29411                                                                                                                                                    EE pushing client in wheelchair, client put foot down & stopped chair, EE lt ankle struck rod on back of chair.
## 29412                                                                                                                                                                                                    EE pushing client up hill in chair and felt a strain in stomach
## 29413                                                                                                                                                     EE pushing computer tv stand to reach converter which had fallen behind the stand, felt pull in middle of back
## 29414                                                                                                                                                                                                                                EE pushing des and pulled left arm.
## 29415                                                                                                                                                                                    EE pushing floor machine, EE making a turn felt pain up his neck strain to neck
## 29416                                                                                                                     EE pushing food rack with pans of patotoe salad- rack began to tilt and EE att to catch rack and rack hit EE in face knocking out front tooth.
## 29417                                                                                                                                                               EE pushing food thru trolly of garbage disposal when EE cut rt ring finger on sharp edge of disposal
## 29418                                                                                                                                                                EE pushing mail cart up sidewalk & wheel went intohole causing cart to tip over - abrasion to legs.
## 29419                                                                                                                               EE pushing metal cart which tipped over-EE fell tofloor ending up in a sitting position with legs extended, left arm hit door frame.
## 29420                                                                                                                                                                                        EE pushing milk cart into cooler, cart fell forwardand bent left thumb back
## 29421                                                                                                                                                                                           EE pushing off the floor and moving a chair and a splinter got into leg.
## 29422                                                                                                                                                                                       EE pushing on door knob to open-knob was hard to push and jammed left thumb.
## 29423                                                                                                                                                                                                     EE pushing patients syringer, rt thumb became pain and swollen
## 29424                                                                                                                                              EE pushing refrig. Over to the chapel-when trying to get it through the door mashed rt wrist betweenrefrig. And door.
## 29425                                                                                                                                                                           EE pushing resident in life through bathroom doorway, hand was caught between door frame
## 29426                                                                                                                                                                         EE pushing table closer to the wall when it tippedforward catching her lower leg and foot.
## 29427                                                                                                                                                                                                                     EE pushing test packs out and wrist locked up.
## 29428                                                                                                                                                            EE pushing the lock down to unlock officer's station trap door-hand slipped & lock scratched right hand
## 29429                                                                                                                      EE pushing trash cart from building to dumpster when sharp pain went down right side of back, EE complained earlier back hurt. Strain to back
## 29430                                                                                                                                                                                                                       EE pushing wheel chair pulled muscle in back
## 29431                                                                                                                                                                                         EE pushing wheelbarrow up incline loaded with wood injury arm and shoulder
## 29432                                                                                                                                                                        EE pushing wheelchair felt burning sensation of left hand with puffyness and discoloration.
## 29433                                                                                                                                         EE pushing wheelchair; shoe strings got caught in tippers; threw her down on knees made split; legs all the way under her.
## 29434                                                                                                                                                          EE pushing x-ray machine off elevator & wheel caught in crack between elevator and floor. Cervical strain
## 29435                                                                                                                                                                                                         EE pushing/pulling puree macine injured rt arm andfingers.
## 29436                                                                                                                                                                                      EE put a client in pr on floor, pulled muscles in her neck and shoulder, arm.
## 29437                                                                                                             EE put a pt. From bed to chair on east, then put a pt on x-ray table from chair to table. EE felt a pull when lifting the pt. But did not think much..
## 29438                                                                                                                 EE put a tool bag back into the back of his work vehicle. EE then climbed up a ladder to begin working when he felt a strain in his lower back. ()
## 29439                                                                                                                                                                                                   EE put arms into box to get dusting cloths and was bit by insect
## 29440                                                                                                                                                                              EE put blades in paper towel & placed them in trash when he scratched lt index finger
## 29441                                                                                                                                                EE put bleach in bucket which formed gas when EE breathed in the fumes went in chest and felt like burning in chest
## 29442                                                                                                                                                            EE put clipboard on surface that possibly contain material that caused irritation. Dermatitis left arm.
## 29443                                                                                                                                                EE put combative pt in a hold, and both went to the floor. Injured rt shoulder, collarbone neck, lt elbow, lt foot.
## 29444                                                                                                                           EE put container w\\5-gallons of water on shelf 7-ft high shelf broke the container fell striking his rt-hand injured his middle finger.
## 29445                                                                                                                                                                                EE put court recorder in car for transport and back started to hurt one I stood up.
## 29446                                                                                                                                                                                                          EE put down a glass of water and glass broke cutting hand
## 29447                                                                                                                                                                                  EE put drink on table for resident-resident pulledee's hair and jerked EE's neck.
## 29448                                                                                                                                                                                                           EE put hand in drawer to get pen, knife stuck into hand.
## 29449                                                                                                                                                                         EE put hand into maintenance shavings to loosen up and got a splinter in rt middle finger.
## 29450                                                                                                                                                                                            EE put hand up to avoid staple hitting eye and poked himself in the eye
## 29451                                                                                                                                                              EE put hands on arm rests of chair when sitting down. Left arm rest pinched skin on left ring finger.
## 29452                                                                                                                EE put left hand down to block strike (had paddingprotection) EE experienced swelling, discoloration& numbness on left ring finger & little finger.
## 29453                                                                                                                                                          EE put left hand into left pants pocket and was cut on left pinky finger by a pocket knife that was open.
## 29454                                                                                                                   EE put lt arm around patient's back to assist and patient began falling and EE put rt arm around the front of him to brace and keep from falling
## 29455                                                                                                                                                                                          EE put on plastic gloves with powder in them causong irritation to hands.
## 29456                                                                                                                                                                                    EE put on safety glasses & some trash was on the glasses lens & got in his eye.
## 29457                                                                                                                  EE put patient in Mr For safety patient bite and scratched me during restraints then ran EE left elbow into side frame rt forearm lt hand scratch
## 29458                                                                                                                                                                                         EE put patient in a pit hold and fell striking both shoulders on the floor
## 29459                                                                                                                                    EE put radio and keys in the drawer and closed the top, her hand was on the top and was pulled inside. Bruised right fingernail
## 29460                                                                                                                                                                                           EE put resident on commode in the process EE upper back began hurting ()
## 29461                                                                                                                                              EE put resident to bed, her back started to hurt as she returned to back to unit. Clmt did not exceed wp- oow 7 days.
## 29462                                                                                                                                                                    EE put soda down and then picked it up agian. EE took one drink and bee stung mouth and tongue.
## 29463                                                                                                                                                   EE put something in trash can. When coming back upshe struck her head on a shelf in fellow employeesworkstation.
## 29464                                                                                                                                                                      EE put thumb in path of paper cutter & pulled blade down on lt thumb. Laceration to lt thumb.
## 29465                                                                                                                                                                  EE put too much water in styofoam cup, water spill-ed on hand when removed from microwave. Right.
## 29466                                                                                                                                                                             EE put trash in container and hand caught on sharp edge. Laceration top of right hand.
## 29467                                                                                                                                                                                   EE put two pop tarts in toaster, when popped up EE burned fingers on both hands.
## 29468                                                                                                     EE put vacuum cleaner on van when he stepped down and landed on his right foot he felt something. Later in his shift, he noticed swelling in his right foot ()
## 29469                                                                                                                                                                                 EE put weight on lt leg getting into to trailer oftruck foot twisted & knee popped
## 29470                                                                                                                                       EE putting 4 roasting pan in cooler, when they began to fall. Tried to keep them from falling shefell on floor hurting back.
## 29471                                                                                                              EE putting a box of rolled coins into safe and boxslipped hit EE on knee-then EE walking through a passage way and bumped same knee on stacked items.
## 29472                                                                                                                             EE putting a man hole cover with the help of EE other EE dropped his side there pinching rt index finger. Cut on index finger rt hand.
## 29473                                                                                                                                                                                                     EE putting a net out catch grabbed wrong one. Injured rt hand.
## 29474                                                                                                                                                         EE putting a pig feeder on cage & left hand slipped down on sharp place on metal feeder causing laceration
## 29475                                                                                                                                                                       EE putting a pt restraints pt became combative anddug fingernails into both hands, abrasions
## 29476                                                                                                                                               EE putting a sling under dog abdomen. Dog flung his head and hit EE in face. Laceration upper lip, puncture on chin.
## 29477                                                                                                                                                  EE putting a small ring componet manually through a vertical type band saw-part slipped, fingers went into blade.
## 29478                                                                                                                                                     EE putting a stack of mail on the shelf--shelf didnot hold---shelf collapsed and struck EE in lower right arm.
## 29479                                                                                                                                                                                                 EE putting animal rack into room-crushed rt hand between the rack.
## 29480                                                                                                                                                                               EE putting attends in closet and closing door and smashed left middle finger in door
## 29481                                                                                                                                             EE putting away gate key when he slipped in the mud at the bottom of the tower fractured left heel fractured left heel
## 29482                                                                                                                                                                                  EE putting away nursing equipment & opened hutch door & it slammed on her lt arm.
## 29483                                                                                                                                  EE putting away supplies into locker on s1 & spilled pine oil in floor and fell hitting my leg on floor. Contusion lt upper shin.
## 29484                                                                                                                                                                                                             EE putting bed together moving around, twisted rt knee
## 29485                                                                                                                              EE putting binder back on bookshelf when it slipped and hit top of my rt foot. - severe bruise possible hairline fracture on rt foot.
## 29486                                                                                                                                                               EE putting bleach in pan, bleach hit pitcher in pan and bounced back into lft eye. Undiluted bleach.
## 29487                                                                                                                                                                                               EE putting boxes up above loft and foreign object got into left eye.
## 29488                                                                                                                        EE putting bunks together using wrench tighten bolts and wrench slipped off bolt causing EE rt hand strike = caused small cut back of hand.
## 29489                                                                                                                                            EE putting cardboard into dumpster-used foot to push cardboard down and accidently fell into dumpster cutting rt thigh.
## 29490                                                                                                                                                                                                 EE putting cat back in pen when cat turned and bitee on left hand.
## 29491                                                                                                                                                             EE putting cleaning supplies in cabinet, dropped abottle of stain remover, spilling some on right hand
## 29492                                                                                                                                                                                                 EE putting client in chair, client began to scratch on rt forearm.
## 29493                                                                                                                                                                               EE putting client in hold when arm came free-client grab table which hit EE in head.
## 29494                                                                                                                                                                                               EE putting client in p. I. C. And injured rt side neck and shoulder.
## 29495                                                                                                                                                                                                         EE putting client in pic and fell hitting rt elbowand knee
## 29496                                                                                                                                                                                                                    EE putting client in restraint and strain back.
## 29497                                                                                                                                                                                 EE putting client in theapeutic hold-client out ofcontrol-EE injured left shoulder
## 29498                                                                                                                                                                                EE putting client in therapeutic hold and bumped against wall hitting left shoulder
## 29499                                                                                                                                                                                                  EE putting client in therapeutic hold and jammed rt index finger.
## 29500                                                                                                                                                                             EE putting client in therapeutic hold when client grabbed EE's left thumb twisting it.
## 29501                                                                                                                                                                     EE putting client in wheelchair to transport- client was swinging arms and hit EE in left eye.
## 29502                                                                                                                                                                                                          EE putting client into therapeutic hold and strained back
## 29503                                                                                                                                                                                               EE putting client on commode who resisted and EE twisted lower back.
## 29504                                                                                                                                                        EE putting client to bed emp had upper portion half of client hand clients wrist & forearm. Torn liagments.
## 29505                                                                                                                                                                     EE putting client to bed-client did not want to beturned over and hit EE in the face with fist
## 29506                                                                                                                                                                                 EE putting client to bed-client grabbed EE's rt index finger and bent it backwards
## 29507                                                                                                                                               EE putting client to bed-lifted client out of wheel chair-client reared back causing EE to twistback. Strain to back
## 29508                                                                                                                                                                       EE putting clients clothes into storage chest whenlid of chest fell striking bridge of nose.
## 29509                                                                                                                                                                                              EE putting clothes in dryer, she experienced a sharp pain in her back
## 29510                                                                                                                                                                                     EE putting coat on client, wheelchair headrest fell off and hit EE on rt knee.
## 29511                                                                                                                                                                                       EE putting combative client in pic hold to give injection-injured left wrist
## 29512                                                                                                                                                                                 EE putting dishes into drying tower reaching abovehead felt pain in right shoulder
## 29513                                                                                                                                                                    EE putting dishes into sink-noted right arm started tingling into fingers-went numb to shoulder
## 29514                                                                                                                                                                                                 EE putting down basboard using adhesive felt pain in rt/left arms.
## 29515                                                                                                                                                                                          EE putting face mask on to clean chalkbroad and struck eye with noseclip.
## 29516                                                                                                                                                                                                         EE putting frozen meat in sink-when meat fell on left foot
## 29517                                                                                                                                                                        EE putting gait belt on client and left index finger got caught in belt and bent backwards.
## 29518                                                                                                                                                                                               EE putting glass lid on glass jar injury cut to finger on right hand
## 29519                                                                                                                                                                              EE putting handcuffs and keys in security passage drawer and lid closed on her thumb.
## 29520                                                                                                                        EE putting handcuffs on inmate-inmate began to wrestle with EE & EE was pushed into wall-back possibly hit papertowel dispenser-back & neck
## 29521                                                                                                                                          EE putting handicapped ramp back into place without any assistance from partner & foot slipped on flap & it hit shin bone
## 29522                                                                                                                                                                                                   EE putting helmet on clt because of sib and clt hit EE on rt ear
## 29523                                                                                                                                                                                           EE putting ice box in back of van and bumped his head. Abrasion to scalp
## 29524                                                                                                                                                                 EE putting ice melt onto sidewalk and slipped and fell on bucket w/ice melt, bruised ribs rt side.
## 29525                                                                                                                                                                         EE putting in drain pipe when backhoe boome swung & bumped injured on hand, arm & shoulder
## 29526                                                                                                                        EE putting in fire hydrant picked up a piece of pipe & got hand caught between pipe & hydrant. Contusion of lft hand & superficial abrasion
## 29527                                                                                                                                                                                  EE putting in rack for auto clave and rack slippedand fell buringin left forearm.
## 29528                                                                                                                                                                   EE putting juice cup on cart - client came up behind and hit EE several times on the head w/fist
## 29529                                                                                                                                                                                       EE putting ladder back in place-ladder fell and hit EE on left side of body.
## 29530                                                                                                                                                                                   EE putting lids on carts started having muscle swelling injury back and shoulder
## 29531                                                                                                                                                                                                              EE putting lines onto cans, thumb popped out of joint
## 29532                                                                                                                                                        EE putting lock on door and as she was sliding lock back on glass chipped and went to her eye. Glass in eye
## 29533                                                                                                                                                   EE putting mattress cover on client's bed. When eestood up & turned to put mattress back on bed painwas in back.
## 29534                                                                                                                                                                                                                         EE putting mirror in trash. Injured wrist.
## 29535                                                                                                                                                                              EE putting new trash bag in trash can, stood up and hit head on paper towel dispencer
## 29536                                                                                                                                              EE putting on client's shoes-client sat down on floor and EE reached to get arm when client's headhit EE in left eye.
## 29537                                                                                                                                                                                              EE putting out road squad work signs when he slipped & fell to ground
## 29538                                                                                                                                                                                                                        EE putting out salt slide on ice left ankle
## 29539                                                                                                                                                                                                     EE putting out woodchip shavings and wind blew them in her eye
## 29540                                                                                                                                                                                                  EE putting paper clips on envelopes paper clip punctured lt thumb
## 29541                                                                                                                                                                              EE putting paper work in back seat & hit hand withcar door as they were closing door.
## 29542                                                                                                                 EE putting papers on desk, resident came at her and lunged toward her falling on EE and knocking EE against corner of desk bruise to chest and arm
## 29543                                                                                                                                                                                             EE putting partition into place and fingers got smashed during process
## 29544                                                                                                                                            EE putting patient in gero chair when he got his thumb caught between the chair and patient. Contusion/strain lt thumb.
## 29545                                                                                                                                                                            EE putting patient in s&r. EE slipped in restraintroom and pulled knee. Sprain lt knee.
## 29546                                                                                                                                     EE putting plug into outlet on buffer-on/off switch was stuck in the on position-handle swung around and EE on upper left arm.
## 29547                                                                                                                                                       EE putting pressure on pliers when EE felt something give in right wrist injury to right wrist, hand and arm
## 29548                                                                                                                                                                                EE putting printer on hand trk-handle of hand trk came up and hit EE on left cheek.
## 29549                                                                                                                                                                                                                EE putting pt to bed and pt spit in EE face, lt eye
## 29550                                                                                                                                                                         EE putting resident helment on, resident jammed EE middle finger between wall and helment.
## 29551                                                                                                                                                      EE putting resident in bed, wrist & arm was under his legs, he turned over on EE wrist and arm, began hurting
## 29552                                                                                                                    EE putting resident in wheelchair putting dress over her foot slipped & felt pop in lft shoulder fingers went numb & resident fell over ees arm
## 29553                                                                                                                                                                EE putting resident on mat, when resident threw her weight on EE causing his left knee to hit floor
## 29554                                                                                                                                                                                                        EE putting restraints on client-client bit EE on left thumb
## 29555                                                                                                                                            EE putting rod bearings on compressor-finger slipped and hung nail on inside of compressor which pulled the nail loose.
## 29556                                                                                                                                                                      EE putting rt shoulder to back of trk doors to keep boxes from falling and strained shoulder.
## 29557                                                                                                                                                                          EE putting screw into 2x4 with drill and it slipped off screw and went through left thumb
## 29558                                                                                                                                                         EE putting solution disinfectant in mop bucket andthe solution splashed in his eyes. Solution in both eyes
## 29559                                                                                                                                                                                                                    EE putting supplies in cabinet and cut rt hand.
## 29560                                                                                                                                                      EE putting the protective cage back onto the browns tree cutter and strained mid back area performing task ()
## 29561                                                                                                                                                                                                               EE putting together table & piece fell, injuring arm
## 29562                                                                                                                     EE putting together temporary horese stalls, I demonstrated to inmates how to complete project and board fell on rt hand mashing index finger.
## 29563                                                                                                                                                 EE putting tools into trk keys got caught in door latch and caused EE to pull back and hit right elbow on trk cab.
## 29564                                                                                                                                                                                                         EE putting trash in trash can when she slipped on the ice.
## 29565                                                                                                                                                                   EE putting trash into dumpster while pushing trashcart-woke up next morning with pain in rt knee
## 29566                                                                                                                                                    EE putting trash on elevator, stumped toe on floorof elevator, floor unlevel & EE rushing, she twisted her foot
## 29567                                                                                                                                                                                                   EE putting trays in refrigerator, complains of pain in rt wrist.
## 29568                                                                                                                                                       EE putting tv in rack, when he caught his rt thumbbetween tv & rack, causing small laceration to right thumb
## 29569                                                                                                                                                                   EE putting up charts when client came from behind and hit EE in the head and bit EE on left arm.
## 29570                                                                                                                           EE putting up stock on top shelf -felt pain l-kneereceived ppd rating of 15%/knee by Dr Smith rehab- sue brewer with corvel 919-465-2150
## 29571                                                                                                                                                                    EE putting up tents for event, sledge hammer slipped off tent stake and struck EE in right leg.
## 29572                                                                                                                                                         EE putting washing detergent up-bottle turned the wrong way and spout hit shelf-detergent went into rt eye
## 29573                                                                                                                                                                        EE putting water drinking tubes into cubber stoppers-repetitive motion cause pain rt thumb.
## 29574                                                                                                                                   EE putting window up in restroom and window came down on EE rt hand, hurting pointer and middle finger. Contusions to right hand
## 29575                                                                                                                      EE puuting floor stripping on floor, on hands and knees, his pants got wet and stripping burnt the skin on his knees. Chemical burns to knees
## 29576                                                                                                                                                    EE qas walking up the stairs after making floor round when her foot slipped and she hit her left knee on steps.
## 29577                                                                                                                                            EE r wrist & hand started hurting whenever EE usedit to type, hang or take down lighting equipment or use a screwdriver
## 29578                                                                                                                                                                                                                          EE raching down and fell out of the chair
## 29579                                                                                                                                                                                                 EE raised arm in hand gesture and struck rt pinky finger on basket
## 29580                                                                                                                                               EE raised bay door to shop when the door reached the ceiling a bar fell off and hit EE in the head and on left hand.
## 29581                                                                                                             EE raised car on lift to check underside-inmate was placing tires back onto rack and the tire assembly slipped frm inmates hand and hit EE in the head
## 29582                                                                                                                                                                                                          EE raised head striking against corner of overheadcabinet
## 29583                                                                                                                                                                  EE raised hood of dump truck hood fell down on lt middle finger. Cut & puncture lt middle finger.
## 29584                                                                                                                                                  EE raised lid to medicine cabinet to get inmate medication out when the lid fell onto his hand cutting it on top.
## 29585                                                                                                                                                                           EE raised rt arm to close fish tank and rt shoulder locked and EE was unable to move arm
## 29586                                                                                                                                                                                       EE raised the tailgate on a truck when the tailegate fell it fell on EE arm.
## 29587                                                                                                              EE raised the top of the stove to clean under it. While EE was cleaning the top fell on her fingers on her left hand. Injury to (4) fingers left hand
## 29588                                                                                                                                        EE raised window and did not know it was locked inand bent down to pick up fan and window fell out and hit her top of head.
## 29589                                                                                                                                                                                                EE raised windown to get some air when window fellon EE's forehead.
## 29590                                                                                                                                                                      EE raising lift on truck to unload carts - reachedover to mash lift switch and cut left thumb
## 29591                                                                                                                             EE raising the head of bed the latch caught her index finger between the bed ont the latch. Lt index finger caught between bed & latch
## 29592                                                                                                                  EE raising window and att to place a piece of woodunder window to hold open when window fell and smashed rt pinky finger between wood and window.
## 29593                                                                                                                                                                                                       EE raked over s wasp nest and was stung on the face and back
## 29594                                                                                                                                                                           EE ran 25 feet to help another EE with inmate fight he felt something pop in his lt heel
## 29595                                                                                                                                                                                                             EE ran a stop light struck car & struck telephone pole
## 29596                                                                                                                                                                                                                              EE ran a stop sign and hit other veh.
## 29597                                                                                                                                                       EE ran acroos yard in pursuit of suspect and came to fence. EE climbed fence and injured both hands on fence
## 29598                                                                                                                                       EE ran after a rolling veh going backwards-when trying to stop it by using emergency brakes EE strained back and left wrist.
## 29599                                                                                                                                                                                            EE ran after client after door was opened and fellon left knee and hand
## 29600                                                                                                                                                                                              EE ran after soccer ball and stepped in a hole and twisted left ankle
## 29601                                                                                                                                                              EE ran and got in middle of fight between two female patients. Somehow EE's left hand/wrist wrenched.
## 29602                                                                                                                 EE ran electtic cord through her fingers straightnit out before attempting to plug in socket -struckcorner off rt eye. Rt eye broken blood vessel.
## 29603                                                                                                                                                                                           EE ran from her seat to stop a fight. On doing so EE twisted her rt knee
## 29604                                                                                                                                                                                           EE ran from the kitchen down the sidewalk to b dorm, twisted right ankle
## 29605                                                                                                                                                                                                                         EE ran into a table and injured his rt leg
## 29606                                                                                                                                                                                    EE ran into another EE while attempting to intervene in fight between patients.
## 29607                                                                                                                                                                                                                                      EE ran into bathroom cabinet.
## 29608                                                                                                                                                       EE ran into chair which was in traffic path and fell injury left knee, elbow, right arm, right toeankle, leg
## 29609                                                                                                                                                     EE ran into field to place decoy deer. He ran back across field and jumped across ditch and twisted right knee
## 29610                                                                                                                                                                       EE ran into goal post while teaching soccer. EE recieved a head laceration above the lt eye.
## 29611                                                                                                                                                  EE ran into log trailer. Trailer was not lighted properly and had no side reflections. ***********fatality*******
## 29612                                                                                                                                                                              EE ran into the back of a car and during the impact EE hit his head on the windshield
## 29613                                                                              EE ran into the metal divider between the double doors. She bounced back into joyce beatty, whom tried to catch her fall, and they both fell into a sitting position on the floor. ()
## 29614                                                                                                                                                                                                 EE ran off the road and struck an embankment.. Neck and upper back
## 29615                                                                                                                                                                              EE ran over left foot with cart or dolly which wasloaded with cones during visitation
## 29616                                                                                                                                                                                                             EE ran through a red light and was hit by another veh.
## 29617                                                                                                                                      EE ran to assist rn that was being attacked by pt, dropped to floor to hold pt's legs bc they were kicking, strained groin ()
## 29618                                                                                                                                EE ran to dorms to receive count & in route felt pain shoot up his spine. Walking & felt numb in back area. Injured lower back area
## 29619                                                                                                                                                                                                  EE ran to respond to code, became light headed, fell to sidewalk.
## 29620                                                                                                                                                                                              EE ran up stairs responding to a help call on ward3. Injured lt knee.
## 29621                                                                                                                                                                                               EE ran vehicle off road and overturned it causing lt renal contusion
## 29622                                                                                                                                                                      EE rasied head up & butted his head on a damper onthe duckwork, while he was fixing a toliet.
## 29623                                                                                                                                                                               EE rcvd a paper cut on her finger when she was removing paper from muliuse envelope.
## 29624                                                                                                                                                                                    EE rcvd a vaccination for the small pox and later it began to peel in the area.
## 29625                                                                                                                                                                                     EE rcvd all tx for hepatitis shots which caused out burst of blister over body
## 29626                                                                                                                         EE rd squad assigned to pick up trash, picked up a bag of trash to move to another loacation a piece of glass sticking out of bag cut leg.
## 29627                                                                                                                                               EE re-injured his left ankle due to bad spot on highway 8. He originally injured on 4/19/94 whilerunning bloodhound.
## 29628                                                                                                                                                        EE re-injured shoulder that was injured in the past by lifting a patient transferring the to doctor's appt.
## 29629                                                                                                                                                          EE re-organizing microscope room, when lifted heavy poer supply, had beltoideus muscle right arm strained
## 29630                                                                                                                                                                                                  EE reacched for door and got a splinter in her third right finger
## 29631                                                                                                                                                         EE reached around boxes that were sitting in frontof wood cabinet and jammed his fingers into the cabinet.
## 29632                                                                                                                                                                                                             EE reached back for seatbelt and wrist became painful.
## 29633                                                                                                                                                                                            EE reached back on shelf. Shelf fell hitting her on right side of head.
## 29634                                                                                                                                                    EE reached back to catch a door catching her left middle finger in the door. EE snatched finger out of door. ()
## 29635                                                                                                                                                           EE reached back to open another drawer of cabinet and the cabinet fell and hit the top of EE's shoulder.
## 29636                                                                                                                                                                                              EE reached back to pull seatbelt around patient and strained shoulder
## 29637                                                                                                            EE reached down and picked up a 70lb. Box with his hands and carried it to the patrol vehicle and transported it to old bluford then into computer ctr.
## 29638                                                                                                                                             EE reached down to lift up a spare tire to installback in trunk after he completed radio repairs and strained his back
## 29639                                                                                                                                                                                 EE reached down to move a tree limb-felt a scratching sensation in rt index finger
## 29640                                                                                                                                                                                                 EE reached down to open lower left hand desk drawer and hurt back.
## 29641                                                                                                                                                                                                 EE reached down to pick up a box and felt a pain in lower back. ()
## 29642                                                                                                                                                                           EE reached down to pick up a box that weighed approximately 20lbs and felt pain in back.
## 29643                                                                                                                    EE reached down to pick up a sticky note off the floor in her office and turned to go into the inner office when she felt something pop in knee
## 29644                                                                                                                                EE reached down to pick up ashetray outside of building for the inmate to vacuum the rug under itand felt a sharp pain in his back.
## 29645                                                                                                                                                                       EE reached down to pick up bucket of water and could not straighten up - strained lower back
## 29646                                                                                                                                                                                              EE reached down to pick up fallen limp and sharp point cut finger. ()
## 29647                                                                                                                                                                                                      EE reached down to pick up h2o bottle and hit scalp on corner
## 29648                                                                                                                                                                                                              EE reached down to pick up paper and injured back. ()
## 29649                                                                                                                                              EE reached down to pick up sheet metal as he stoodup, his head hit a piece of metal sticking out of a stop sign post.
## 29650                                                                                                                                                                     EE reached down to pull mop wringer from the mop bucket and the wringer fell on the EE's foot.
## 29651                                                                                                                                                                                                     EE reached down to restrain legs of a client and strained back
## 29652                                                                                                               EE reached down with his rt hand to slam the trap shut with the action EE caught the knuckle to his middle finger rt hand on sharp edge of trap door
## 29653                                                                                                                                                                                                         EE reached for a file and a staple jammed into EE's finger
## 29654                                                                                                                                   EE reached for a large reference book on same located on a high shelf. When EE picked it up and brought it down, EE injured back
## 29655                                                                                                                                                                                                               EE reached for a manual in the cabinet twisted wrist
## 29656                                                                                                                                                       EE reached for a papertowel after washing her hands, hit a sharp corner of the dispenser & cut her left arm.
## 29657                                                                                                                                                                                                      EE reached for a pen in box and hit rt index finger on knife.
## 29658                                                                                                                                                                               EE reached for a piece of paper on floor and tip over injuring left shoulder and hip
## 29659                                                                                                                                                                                     EE reached for a piece of wood and got a splinter under the nail of rt finger.
## 29660                                                                                                                                                                      EE reached for a spilled drink and had and auto accident-strained neck, chest, hands and knee
## 29661                                                                                                                                  EE reached for an item over a box that had a letter opener in it which stuck in her, puncturing her between her arm and chest. ()
## 29662                                                                                                                                              EE reached for an object on shelf & someone had placed a box of crackers on top of it and it fell striking EE on head
## 29663                                                                                                                                                                       EE reached for bolt while making repair on trailerwheel & cut arm on old part that was sharp
## 29664                                                                                                                                                  EE reached for charts from her desk to take to another office. She tripped on cord that is connected to computer.
## 29665                                                                                                                                                                                            EE reached for chemical dispenser when it fell and splashed in her eyes
## 29666                                                                                                                                                                                                              EE reached for client that seemed to be falling down.
## 29667                                                                                                                                                                                                                    EE reached for cutting board and twisted wrist.
## 29668                                                                                                                                                                EE reached for electric razor when client kicked EE in stomach causing EE to throw up and pass out.
## 29669                                                                                                                                                                                                  EE reached for food carriers and twisted rt wrist on the carrier.
## 29670                                                                                                                      EE reached for large binder book with right hand, book slipped & fell on right foot. No report until9/14-did not heal. No lost time/med only.
## 29671                                                                                                                            EE reached for log book I stuck my finger with needle which was ina sandwich bag in a spool of thread. Stuck middle finger with needle.
## 29672                                                                                                                                                                                                EE reached for notebook on shelf and felt pop in rt elbow and back.
## 29673                                        EE reached for receipt from the printer, leaned back in her chair, and began to fall backwards. When she fell backwards, she scraped her arm & elbow against the filing cabinet, hit her head & lower back on the floor. ()
## 29674                                                                                                                                                                                                                        EE reached for resident, felt pain in neck.
## 29675                                                                                                                                                                                         EE reached for some materials and bashed rt hand against the counter edge.
## 29676                                                                                                                                                                                                 EE reached for trays tripped & fell over garbage can injuring back
## 29677                                                                                                                                                                                               EE reached fot tape dispenser and was cut bt metal area on dispenser
## 29678                                                                                                                                         EE reached hand under the mower, & the pto was notengaged. The blades began to turn partically amputating his right thumb.
## 29679                                                                                                                                                                                   EE reached in a bucket of nails and a rusty nail punctured his left index finger
## 29680                                                                                                                                                                                                    EE reached in to latch door open and felt pain in left shoulder
## 29681                                                                                                                              EE reached into a departmental file cabinet and was stuck by a fish hook, which was in the cabinet--puncture wound at tip of rt thumb
## 29682                                                                                                                                                                                     EE reached into a sump at fuel containment and was cut submerged broken glass.
## 29683                                                                                                                  EE reached into an ammunition box to retrieve a box of staple, lacerating rt wrist by a push rod staple retainer sticking straight up in the box.
## 29684                                                                                                                                                                                EE reached into back pocket to get reed hook when stuck by shuttle hook on rt hand.
## 29685                                                                                                                                                                                      EE reached into box to get supplies and rt thumb was stuck by a sharp pencil.
## 29686                                                                                                                           EE reached into bucket of soapy water while washing instruments after neuropathology conference and cut right thumb on scalpel blade. ()
## 29687                                                                                                                                                                                   EE reached into desk to get a pen - pulled hand out and cut finger on desk metal
## 29688                                                                                                                                                         EE reached into fume hood to unplug heating plate EE's hand hit a piece of glass that was hidden from view
## 29689                                                                                                                EE reached into glass case to retrieve item for customer and cut first finger on right hand on the edge of glass shelf. Laceration first rt finger.
## 29690                                                                                                                                                                                             EE reached into hole to get ceramic tile and cut his hand on the tile.
## 29691                                                                                                                                                                                                             EE reached into horse stall and was bitten by a horse.
## 29692                                                                                                                                                                      EE reached into inmates bag to provide disposable razor to inmate for use. Cut fleft thumb ()
## 29693                                                                                                                                                                        EE reached into mop room to turn on the light switch, he cut his hand on the broken switch.
## 29694                                                                                                                                                                                           EE reached into needle box and was pricked by an opened, unused syringe.
## 29695                                                                                                                                                                                 EE reached into pan to get biscuit. Steam burnt and wrist and touched edge of pan.
## 29696                                                                                                                                                                                   EE reached into planer before blades had stopped and cut tip of rt index finger.
## 29697                                                                                                                                                                            EE reached into sink full of dishes, broken dish was on bottom, cut right index finger.
## 29698                                                                                                                                                          EE reached into slot of metal container that held tissues. Container fell, cutting EE's right ring finger
## 29699                                                                                                                                                                  EE reached into steamer to get some food, when he was burned by steam. Burn right hand & forearm.
## 29700                                                                                                                                                          EE reached into the van to open the door & a pieceof sharp metal in door frame punctured lt middle finger
## 29701                                                                                                                                        EE reached into tower basin to clean out drain chemical in tower biocide was not washed off and reached with skin. Rt hand.
## 29702                                                                                                                                                                                          EE reached into trailer. It tilted, cathcing EE in doorway straining back
## 29703                                                                                                                                                                           EE reached into truck to get mail bin to place on dock and felt burn/pull in lower back.
## 29704                                                                                                                                                                         EE reached left pocket for keys and pinky fingernail bent and broke off down to the flesh.
## 29705                                                                                                                                                                        EE reached out to get resident. Resident pulled onee's arm to stand. EE felt twist in back.
## 29706                                                                                                                                                                                              EE reached out to keep elevator door from closing and hand got caught
## 29707                                                                                                                                        EE reached out to obtain a blanket and the inmate struck EE's rt wrist, EE was supervising inmate housed on the 15th floor.
## 29708                                                                                                                                                             EE reached over equipment to box of stakes to check numbers on them-felt sharp pains in center of back
## 29709                                                                                                                                                      EE reached over to grab pt and hurt rt middle finger. Nail w/active bleeding pulled my rt side, leg and neck.
## 29710                                                                                                                                        EE reached thru section of screen door to pull metal door to lock. Door hit officer in nose. Small cut no stitches required
## 29711                                                                                                                                                                                             EE reached to catch a falling child and pulled a ligament in her back.
## 29712                                                                                                                                               EE reached to close the door, right hand rubbed against door lock plate and splintered metal brokethrough fingernail
## 29713                                                                                                                                                                             EE reached to get clients clothes and bottle of fabric softner fell on EE's left foot.
## 29714                                                                                                                                                                                 EE reached to get tube from machine hit left hand against wire screen cutting hand
## 29715                                                                                                                                                                                                     EE reached to open a stairwell door and twisted her left knee.
## 29716                                                                                                                                                  EE reached to open an gate to entert the front prgm entrance and finger struck an unknown objecta nd tore finger.
## 29717                                                                                                                                                                     EE reached to open animal cage door & cut right index finger on screw attaching door to frame.
## 29718                                                                                                                                                                                EE reached to open door & knob had an exposed piece of metal & thumb was cut on end
## 29719                                                                                                                                         EE reached to pick up a razor at the same time an immate picked it up accidentally cutting into knuckle joint on lt finger
## 29720                                                                                                                                          EE reached to pick up coat and felt popping sensation in right wrist area where it was previously injured on job in 1993.
## 29721                                                                                                                                                                                                   EE reached to pick up dirty mops/bags, pain shot through back ()
## 29722                                                                                                                                                                                        EE reached to pick up papers on floor, hit head on corner of keyboard tray.
## 29723                                                                                                                                                                  EE reached to pick up trash lost balance all wgt shifted to keep from falling-fractured left leg.
## 29724                                                                                                                                  EE reached to put down steps to inmate van, cut middle finger on rt hand on very sharp piece of metal. Cut middle finger rt hand.
## 29725                                                                                                                                         EE reached to remove a pipette from a box-the uv switch was accidently flipped on-burn to eyes face, arms, hands and chest
## 29726                                                                                                                                                        EE reached to remove text books from the top shelfof a bookcase. She lost her balance and twisted her back.
## 29727                                                                                                                                                                                      EE reached to retrieve a piece of paper, caught finger nail under counter top
## 29728                                                                                                                          EE reached to shut drivers door and wind blew the door into his left hand causing a sharp pain in left index finger radiating to forearm.
## 29729                                                                                                                                                                                                             EE reached to take a box out of a van and strainedback
## 29730                                                                                                                EE reached to take an arm in order to break up a fight. EE grasp inmates arm he pulled away causingees thumb to bend backward blood found on EE arm
## 29731                                                                                                                                  EE reached to top shelf to pull a file when EE pulled the file out 25 files came out with it and fell on right neck and shoulder.
## 29732                                                                                                                                                                                    EE reached to turn on printer and chair overturnedstriking EE in the lower back
## 29733                                                                                                                                                                                                EE reached to upper shelf to get notebook, pain in left shoulder ()
## 29734                                                                                           EE reached under cabinet to turn off faucet/valve to running water and cut his right hand. He also slipped & fell on the wet floor, jamming fingers on his left hand. ()
## 29735                                                                                                                                                        EE reached up in closet for carpet cleaner. Lid was not tightened and cleaner spilled and got in EE's eyes.
## 29736                                                                                                                                                                  EE reached up on the shelf to get trash can liners& th box of liners fell down on her right hand.
## 29737                                                                                                                                                                                               EE reached up overhead to clean top shelf, pulled muscle in low back
## 29738                                                                                                                                                                                           EE reached up to get pans. Pan slipped off top rack and hit EE in mouth.
## 29739                                                                                                                                                                                                                              EE reached up to pull box from shelf.
## 29740                                                                                                                                                                            EE reached up to pull file from top shelf of filing system and felt pain in lower back.
## 29741                                                                                                                                                                               EE reached up to take a box off a high shelf, whenshifting feet pulled a back muscle
## 29742                                                                                                                                                  EE reached up to unlock the tv box, box fell and hit EE on l side of forehead. Laceration, swell- ing and brused.
## 29743                                                                                                                                                                                            EE reached up with right arm to close vehicle trunk lid. Injured rt arm
## 29744                                                                                                                                                        EE reached with left hand to open file cabinet drawer when she experienced pain in pointer fingerand thumb.
## 29745                                                                                                                                                                                                   EE reaching around 1 client to grab another and had pain in back
## 29746                                                                                                                                                 EE reaching back to get ink pen when chair back broke causing him to flip over backwards & land on his right elbow
## 29747                                                                                                                                 EE reaching behind a piece of equipment to plug something in, an unexpected electrical spark caused EE to jump, injurying shoulder
## 29748                                                                                                                                                                                EE reaching down to pick up piece of paper when hehit his lt elbow on edge of table
## 29749                                                                                                                                                                                      EE reaching for a cab calf & the other one in pen jumped on EE & scratched EE
## 29750                                                                                                                                                            EE reaching for client in wheelchair cleared hips htw. Chair and door but hit lt top forearm into door.
## 29751                                                                                                                                                                                               EE reaching for door to close when wind draft slammed door on finger
## 29752                                                                                                                                                               EE reaching for envelopes-chair tilted forward androlled back from under EE-dumping EE on the floor.
## 29753                                                                                                                                                                                  EE reaching for scissors and grabbed them the wrong way and cut thumb on rt hand.
## 29754                                                                                                                                             EE reaching for some trash bags on top storage shelf - scraper was laying among bags fell on top of rt foot contusion.
## 29755                                                                                                                                                                                                    EE reaching for something in cabinet injured left index finger.
## 29756                                                                                                                                                                        EE reaching for something on desk and fell out of chair onto the floor straining lower back
## 29757                                                                                                                                                                                      EE reaching from ladder for cable felt and heard a popping sound in left knee
## 29758                                                                                                                                                                                        EE reaching in drawer while sitting in chair & fell over. Strain lower back
## 29759                                                                                                                                                                   EE reaching into cigarette urn to empty when ants went inside glove and stung left arm and wrist
## 29760                                                                                                                                                    EE reaching into the refrigerator to get a sample-hands empty and felt pain in lower back extending into rt hip
## 29761                                                                                                                                                     EE reaching into veh to retrieve fire extinguisherto put out fire and cut hand on handle of fire extinguisher.
## 29762                                                                                                                                                                                                            EE reaching over to lift box and strain lower leftback.
## 29763                                                                                                                                                                EE reaching to take iv tray from a shelf received needle stick from dirty needle to left mid finger
## 29764                                                                                                                                               EE reaching towels in the janitor closet & picked up to many in a hurry & the weight shifted & shoulder was injured.
## 29765                                                                                                                                      EE reaching under bottom floor burnisher putting on a pad and pricked his finger on a sharp object. Pricked rt middle finger.
## 29766                                                                                                                                                                                                         EE reaching under counter for stationery injury lower back
## 29767                                                                                                                                                                    EE reaching up to get a jug off the fire box extinguisher and it fell hitting EE on left wrist.
## 29768                                                                                                                                            EE reacted to spilled paint by turning head to theright to look for paper towels, strained muscle on left side of neck.
## 29769                                                                                                                                            EE reading (distracted) while walking to her desk, ran into the file cabinet drawer, contusion to right knee, lower leg
## 29770                                                                                                                                                                            EE reading mars in main medical, turned around, felt lightheaded and fell to the floor.
## 29771                                                                                                                                                                 EE reading paper while walking down stairs. Laceration right side top of head, strained upper back
## 29772                                                                                                                                                                                         EE reaggravated a back strain by carrying, lifting, and moving rotten wood
## 29773                                                                                                                                                                                                  EE rear ended a van in front of her and made everyeffort to stop.
## 29774                                                                                                                                                                                                          EE rear-ended by another vehicle EE not at fault in crash
## 29775                                                                                                                                                                                                   EE rearended a slowed or stopped vehicle and sprained left wrist
## 29776                                                                                                                                                                                                                 EE rearended another vehicle that stopped suddenly
## 29777                                                                                                                                                                            EE rearended by an oncoming car while he was parked.. Neck, back and blood in his stool
## 29778                                                                                                                                                                           EE rearranging office and stepped on something that flew up and hit her in the left eye.
## 29779                                                                                                                                                                                         EE reassembling parts to metal rotator/shaker. Cut hand on top metal plate
## 29780                                                                                                                                                                     EE reassemblying soccer goals and moving goals when goals on top fell over and hit EE on head.
## 29781                                                                                                                                                                EE rec'd a tick bite on 6. 23 & today 6. 26 the areawhere the tick was removed seems to be infected
## 29782                                                                                                              EE rec'd chemical burn while working inside burnedbuilding conducting fire investigation. Acid fumes& gas seepage inside gloves caused burn to hands.
## 29783                                                                                                                                                                        EE rec'd company truck license plate number - raising hood felt pulling lower part of back.
## 29784                                                                                                                                                                           EE rec'd flu vaccine and states that he got a headache that lasted until the next day ()
## 29785                                                                                                                                                                                                  EE rec'd flu vaccine, within minutes EE began itching all over ()
## 29786                                                                                                                                                                              EE rec'd two vaccines fm EE health as she was a new hire, had reaction to vaccines ()
## 29787                                                                                                                                                                EE recalled brushing against foliage while entering inspection site. EE states bitten by an insect.
## 29788                                                                                                                                                                                      EE recalls placing a client in restaints and noticed her shoulder was painful
## 29789                                                                                                                                                                                                          EE recd a needle stick to the rt hand while drawing blood
## 29790                                                                                                                                                                          EE recd a positive skin test for TB after being incontact with a EE carrying the disease.
## 29791                                                                                                                                                                                                                           EE recd an insect bite to the lt forearm
## 29792                                                                                                                                                                                                           EE receive 2nd series of hep b vaccine-left arm swollen.
## 29793                                                                                                                                                                                           EE received 4 tick bites while checking bank fishing at the haw river ()
## 29794                                                                                                                                                                                                             EE received TB test on 4/17 and arm is red and itching
## 29795                                                                                                                                                                                                   EE received a (insect) bite when digging in (pile) of clothes ()
## 29796                                                                                                                                                              EE received a blood clot in left leg because of standing a prolonged period of time directing traffic
## 29797                                                                                                                                                                                                                             EE received a bruise to her rt forearm
## 29798                                                                                                                                                                         EE received a burst of pepper spray in his face while helping subdue an aggressive inmate.
## 29799                                                                                                                                                                                                                               EE received a chemical splash in eye
## 29800                                                                                                                                                                                             EE received a cut on lt ring finger while trying to guide a helicopter
## 29801                                                                                                                                                                                        EE received a cut to her lt index finger while pruning suckers out of crape
## 29802                                                                                                                                                                                      EE received a cut to her rt index finger while replacing a padlock on a latch
## 29803                                                                                                                                                                                                         EE received a cut to lt knee while stepping acrossductwork
## 29804                                                                                                                                                                     EE received a flue shot October 1996, left arm continues to swell and is now painful at times.
## 29805                                                                                                                                                                                        EE received a gunshot to the head **********fatality***********************
## 29806                                                                                                                      EE received a hep b shot and was leaving to go home when she walked across floor. She slipped andfell twice using her right arm to break fall
## 29807                                                                                                                                           EE received a large splinter under his finger nail by grabbing onto to the lifeguard stand to prevent self from falling.
## 29808                                                                                                                                                                                              EE received a needle stick to her lt middle fingerwhile drawing blood
## 29809                                                                                                                                                                                             EE received a needle stick while conducting a routine search on inmate
## 29810                                                                                                                                                                                    EE received a new keyboard and hand started to tingling a few weeks afterwards.
## 29811                                                                                                                                                                                     EE received a puncture wound on 5th finger during a removal of a cyst removal.
## 29812                                                                                                                                                                                      EE received a scratch to his lt hand while assisting with an agressive inmate
## 29813                                                                                                                                                                                 EE received a severe cut to his right index fingerwhile installing an alarm system
## 29814                                                                                                                                                                                  EE received a shock to left hand when unplugging projector from electrical outlet
## 29815                                                                                                                                                                                                                 EE received a splinter metal from door in lt thumb
## 29816                                                                                                                                                                                                                                EE received a tick bite on buttock.
## 29817                                                                                                                                                EE received an abrasion on his lt elbow deliveringa foal. 9 days later the abrasion became swollen &looked infected
## 29818                                                                                                                                                                                                                                    EE received an electrical shock
## 29819                                                                                                                                                                                                             EE received annual ppd and received a positive result.
## 29820                                                                                                                                                                                                                     EE received bad sprain to rt foot & ankle area
## 29821                                                                                                                                                                                            EE received cat bite on left forearm after trying to handle cat in cage
## 29822                                                                                                                                                                                                                          EE received cut to left from broken glass
## 29823                                                                                                                                                                                                                         EE received cuts to leg from broken glass.
## 29824                                                                                                                                                                                    EE received direct hit of pepper spray to the eyesduring self defense training.
## 29825                                                                                                                                                                EE received first degree burns to the palm of her hands while trying to get coffee from a dispenser
## 29826                                                                                                                                                                                            EE received hepatitis b shot and EE had numbness and tingling in lt arm
## 29827                                                                                                                                                                                                                      EE received injury to rt arm causing scarring
## 29828                                                                                                                                                            EE received laceration on left wrist from wrist- watch during an alercation with a driver of a vehicler
## 29829                                                                                                                                                                                                 EE received multiple bee stings... Head, back, shoulder, and torso
## 29830                                                                                                                                                                                 EE received multiple injuries from head on collision **subro-atlantic securities**
## 29831                                                                                                                                                                                              EE received multiple scratches from patient that had become agressive
## 29832                                                                                                             EE received multiple tick bites over several days while working with ground crews on wildfire in thedismal swamp. Experienced severe headaches & fever
## 29833                                                                                                                                                             EE received new uniforms a few months ago, this iswhen the rash started on his thighs between his legs
## 29834                                                      EE received numerous tick bites during spring and summer while working foot patrol. 100+ tick bites all over body. 8/09 EE started having joint pain. Entered doi as 6/1/09 however exact date is unknown. ()
## 29835                                                                                                                                                                                     EE received punch to face by inmate while EE was participating in use of force
## 29836                                                                                                                                                                                                        EE received rabies vacinnations and had reaction from them.
## 29837                                                                                                                                                                                                   EE received scratch to left wrist putting a patient in seclusion
## 29838                                                                                                                                     EE received scratches & bent glasses after being grabbed by the neck & forehead by a patient that was running out of the room.
## 29839                                                                                                                                                                                                      EE received splinter in right hand while planing an oak board
## 29840                                                                                                                                         EE received tdap 0. 5ml injection in left deltoid on 2/21/2014, EE developed left arm pain, edema and heat on 2/25/2014 ()
## 29841                                                                                                                                                                                     EE received to tick bites while patroling hunting area; buttock and groin area
## 29842                                                                                                                                                                             EE received welders arc burn to eyes while workingin shop adjacent to welding activity
## 29843                                                                                                                                                                                                  EE receiving merchanise and reached under cart and hit left thumb
## 29844                                                                                                                                                                          EE receiving new stock box that had a staple in itstaple went into EE's left index finger
## 29845                                                                                                                                                                             EE receiving sample from cooler - her face was exposed to unknown concentrated vapors.
## 29846                                                                                                                                 EE recently began complaining that she was having numbness in her fingers and hands and tingling sensations that went up her arms.
## 29847                                                                                                                                                                                          EE recevied a blow to his lt side area while training for law enforcement
## 29848                                                                                                                                                                                                                             EE recieved a flash burn while welding
## 29849                                                                                                                                                                        EE recieved a needlestick during a liver biopsy ofa patient with hepatitis c. Right finger.
## 29850                                                                                                                                                                                                EE recieved a tick bite on the right side of torso under right arm.
## 29851                                                                                                                                                                                     EE recieved a tick bite to the upper right hamstring when working in the field
## 29852                                                                                                                                                         EE recieved injury to left hand during an alterca-tion which occured as he was trying to arrest a subject.
## 29853                                                                                                                                    EE recieved multiple injuries when a patient kick-ed and scratched. Also staff was in pursuit of patient, staff fell to ground.
## 29854                                                                                                                                                EE recieved scratches on both forearms from inmatekicking while applying full restraints scratches on both forearms
## 29855                                                                                                                                                                                EE recieved scratches to the face and hands duringan attempt to restrain an inmate.
## 29856                                                                                                                                                            EE reconstructing furniture disassembled due to painting of dorm rooms-bed frame hit EE on left big toe
## 29857                                                                                                                                                                                             EE redirected client; client struck EE in right eye scratching eye. ()
## 29858                                                                                                                                                                                        EE redirected patient who became assaultive and kicked patient in the chest
## 29859                                                                                                                                             EE redirecting a student when the student began fighting EE striking EE under rt eye with his elbow. Contusion rt eye.
## 29860                                                                                                                                                            EE redirecting cleint to another area-clients behavior escalated requiring 3-5 staff to contain client.
## 29861                                                                                                                                                                                               EE redirecting client from turning trashcan over and injured rt hand
## 29862                                                                                                                                                                     EE redirecting client to another direction, EE tripped over clients foot and fell on left knee
## 29863                                                                                                                                                         EE redirecting client to stop tearing his shirt, EE walk toward client, client's knee hit EE on thert knee
## 29864                                                                                                                                                                           EE redirecting client when cleint became physically aggressive and kicked EE in stomach.
## 29865                                                                                                                                                                                      EE redirecting client who then grabbed EE around neck/shoulder/and back area.
## 29866                                                                                                                                                                  EE redirecting client-client grabbed EE rt hand & bent rt ring finger back. Sprain rt ring finger
## 29867                                                                                                                                                                                      EE redirecting client-client spit in face, hittingwith fist, struck rt thumb.
## 29868                                                                                                                                                                                                         EE redirecting client-client struck EE on rt side of face.
## 29869                                                                                                                                                               EE redirecting pt out of another pt's bedroom, pt became agitated, bent EE's left wrist backwards ()
## 29870                                                                                                                            EE redirecting resident back to his work, residentbecame agressive and attacked EE, scratches to right side of face, right arm and neck
## 29871                                                                                                                                                                   EE redirecting resident to room, resident & staff fell to floor & staffs rt ankle began to hurt.
## 29872                                                                                                                                   EE redirecting/intervention with client; client ranout of room; EE stood to go after; turned to the right and right knee popped.
## 29873                                                                                                                                                                                   EE redirecting{client from hitting another client}client hit EE in upper lt back
## 29874                                                                                                            EE regularly lifts assistive devices for the hard of hearing. These weigh approx 20+lbs & she costantly has to lift these from tables & also in &... ..
## 29875                                                                                                                                                                                                            EE reinjured her back....... Left hip down to left knee
## 29876                                                                                                                                                                                                                                       EE reinjured her left ankle.
## 29877                                                                                                                                                                   EE reinjured his back by lifting pipe out of the mud and by walking in deep mud. Prev. Inj 12/02
## 29878                                                                                                                                                                                                                      EE reinjured his neck during defense training
## 29879                                                                                                                                                                 EE reinjured his right wrist while pressure was being applied. EE broke wrist and surgery in 1992.
## 29880                                                                                                                                                                                              EE reinjured shoulder while trying to restrian as aggressive patient.
## 29881                                                                                                                                                                                                                                EE reinjured wrist doing data entry
## 29882                                                                                                                                                                        EE reinjury previous injury bt sitting in a workshop communication workshop for 1 1/2 days.
## 29883                                                                                                                                                                                        EE reinjuryed lt. Wrist putting in a a/c unit in the window of a dorm room.
## 29884                                                                                                                                                              EE related she lost her balance fell forward & struck her head on door. Bruise lt upper side of hand.
## 29885                                                                                                                                                     EE related that he was opening a gate to let transportation vehicle in when sand or metal blew into his lt eye
## 29886                                                                                                                                 EE released brakes while in drive position, the truck started rolling, EE ran to stop truck and heard popping sound in right knee.
## 29887                                                                                                                                                                                 EE releasing surplus furniture from trailer and struck left toe against furniture.
## 29888                                                                                                                     EE relieved from his duties on the control tower at that time while he was going dowm the spiral stair case his feet slipped off and fell down
## 29889                                                                                                                                                                         EE relocating tooth selector guide boxes to new area & boxes fell over & hit rt ankle bone
## 29890                                                                                                                                                                            EE remembered feeling pain in lower back while constructing fire line with council rake
## 29891                                                                                                                                                   EE removed 1 piece of 2 inch pvc pipe from rack, turned and felt burning pain between shoulder. Cervical strian.
## 29892                                                                                                             EE removed a commercial grade heater from a state truck and he began to drag the heater across the parking lot, he felt something pull in his back. ()
## 29893                                                                                                                                                         EE removed a leaking bucket and helped clean up spill. Stated he had no injury and no problems with smell.
## 29894                                                                                                                                                EE removed a pump & set it on an air handler. He bent over & the pump fell on his head, causing a scalp laceration.
## 29895                                                                                                                               EE removed bottle of bleach from the truck, slipped out of hand & fell to the ground splashingup into face, irritation to both eyes.
## 29896                                                                                                                                                                                                   EE removed cap from steam line and hot water burned hand and arm
## 29897                                                                                                                                          EE removed carbons at decollatro machine & bent down to pick up carbons & collated work-(12 lbs. ) and felt her back pop.
## 29898                                                                                                                       EE removed floor drain cover because fluids were not draining. He forgot to replace cover, stuck his left foot in the hot water & burned it.
## 29899                                                                                                                                                                                EE removed full file cabinet drawer from cabinet and pulled muscle and strain neck.
## 29900                                                                                                                                    EE removed goggles to clean while in area of flying objects. Before he had a chance to replace goggles he was hit by ore sample
## 29901                                                                                                                         EE removed handcuffs from dispuptive inmate & realized that blood was present. EE does not feel directly exposed. Possible blood exposure.
## 29902                                                                                                                 EE removed handcuffs from disruptive inmate he assumed control of cuffs & shortly after noticed blood on them. EE not sure if exposed to pathogens
## 29903                                                                                                                                                                           EE removed heavy trash from can and picked up bag with heavy trash in it. Strain to back
## 29904                                                                                                                                                                                                                 EE removed her gloves to wipe her face; poison ivy
## 29905                                                                                                                                                                                  EE removed his gloves & continued working on pump when a flying part cut his hand
## 29906                                                                                                                                                                                  EE removed latex gloves and rubbed his rt eye before washing the glove powder off
## 29907                                                                                                                                                  EE removed metal cover from electrical panel and turned to set cover against wall and felt a p ull in lower back.
## 29908                                                                                                               EE removed picture off of inmates locker and laid on bed, inmate replaced it on ledge with razor bladhidden behind picture, EE cut 3rd right finger.
## 29909                                                                                                               EE removed plastic which contained the electric razor was laying on top of box which fell and hit EE on forearm. Rt side of forearm slight hematoma.
## 29910                                                                                                                                                       EE removed plug from g-tube and gastric secretionssplashed out before EE pinched tube closed wehnt into eyes
## 29911                                                                                                                                                                                     EE removed rock from bank. Rock fell and rolled over his foot. Severe bruising
## 29912                                                                                                                           EE removed safety goggles due to fogging from perspiration. Small piece of styrofoam fell into eyes. Swelling and irritation to left eye
## 29913                                                                                                                                                                                          EE removing a ceiling tile to adjust a/c box and dirt fell into left eye.
## 29914                                                                                                                                                                                                                    EE removing a lancet and stuck rt side of thumb
## 29915                                                                                                                                                                       EE removing a lead acid battery from a ups, battery suddenly release & fell onto EE's ankles
## 29916                                                                                                                                                                    EE removing a paper towel from holder --- holder came down hitting EE across the bridge of nose
## 29917                                                                                                                                                                                             EE removing a piece of metal from the scrap metal bin and ctu rt hand.
## 29918                                                                                                                                                                                                                             EE removing a staple and poked rt hand
## 29919                                                                                                                                                                                EE removing a tool holder frm metal machine and struck another tool and cut finger.
## 29920                                                                                                                                                                                        EE removing a wheel from boat trailer strain caused a pop in right shoulder
## 29921                                                                                                                                          EE removing boat from trailer-squatting down several times-noticed when walking later that right knee had pain & swelling
## 29922                                                                                                                                                                                          EE removing briefcase from trunk of veh and turnedand injured lower back.
## 29923                                                                                                                                                                       EE removing cages from rack and slipped on animal bedding on the floor and fell on shoulder.
## 29924                                                                                                                           EE removing can from bottom of sills entry door began pushing door to release can and his left ring finger slammed between door and wall
## 29925                                                                                                                                                                              EE removing cart of 6' table-support bar gave way and table fell on EE's rt foot/toe.
## 29926                                                                                                                                                                                              EE removing catheter from horse-horse moved causedee to cut left hand
## 29927                                                                                                                                                                                                             EE removing ceiling tile whe derbis fell into left eye
## 29928                                                                                                                                                                                                    EE removing client's shoes-client kicked EE in rt jaw and neck.
## 29929                                                                                                                                                                                                                 EE removing clients from fie area and injured back
## 29930                                                                                                                                                                                   EE removing concrete from jobsite and stepped on a nail in a box through rt foot
## 29931                                                                                                                                                                                          EE removing copier toner from trash-copier toner blew into face and eyes.
## 29932                                                                                                                                                                                 EE removing copy from die EE cut right hand on corner of blade in die cutting room
## 29933                                                                                                                            EE removing decal from patrol car with razor bladeplaced blade in mouth-pulled back on decal and hand slipped-ht blade cutting knuckle.
## 29934                                                                                                                                EE removing downed power line from under log, whenline slipped from under the downed timber causing him to fall across another log.
## 29935                                                                                                                                                                           EE removing forks frm forklift-bent down to removelocking pins and struck head on forks.
## 29936                                                                                                                         EE removing gelatin mold from container and stuck finger on needle that was holding heart in positi-on. Needle stick to right index finger
## 29937                                                                                                                                       EE removing gilt from swine cage-animal became excited & ran toward EE-EE's right hand became caught between animal and gate
## 29938                                                                                                                                                            EE removing glue stuck to a bottle with a razor, blade slipped out of hand throuh bottle & cut lt thumb
## 29939                                                                                                                                                  EE removing ground growth from firing range and came in contact with poison ivy-rash on both arms and around eyes
## 29940                                                            EE removing hazardous debris from campsites; EE picked up a 10 inch by 6 foot log and tossed into woods. After tossing, he felt sharp pain in his upper right hip and not lift right leg due to pain ()
## 29941                                                                                                                                                                               EE removing heavy boxes from x-ray machine. Injured right lower side in frontal area
## 29942                                                                                                                                                           EE removing heavy fire debris from fire scene whenhe pulled a ligament in his wrist while lifting debris
## 29943                                                                                                                                                                  EE removing helium tank to another location; tank slipped out of hands onto left third finger. ()
## 29944                                                                                                                      EE removing hostile inmate from cell throwing urine at staff from cups in cell EE struck on left side of body and left eye. Exposure to urine
## 29945                                                                                                                                                                                  EE removing hot food pan, perparing for lunch. Lt hand index finger tip of finger
## 29946                                                                                                                                                                                                EE removing hot soup from microwave when some spilled on both hands
## 29947                                                                                                                                                                                  EE removing hot vents from front of dish machine when hot steam scalded both arms
## 29948                                                                                                                           EE removing inmate from cell by handcuffing & shackling, place inmate on strectcher, EE arm contact with inmates bloody neck & shoulder.
## 29949                                                                                                                               EE removing inmate from cell, inmate violent, resisted being put in restraints by fighting, fellon top of EE and rolled down stairs.
## 29950                                                                                                             EE removing inmate from cell. Placed shield againstinmate, rt thumb bent back. Inmate fell against himsruck head against wall. Pain in neck, rt thumb.
## 29951                                                                                                                                        EE removing internal compound of computer. Appliedforce, component sprang free & sharp edge cut lefthand when it came free.
## 29952                                                                                                               EE removing internal organs from a body, holding organs in l hand and cutting adhessions w/scissorsin r hand, scissors slipped, cut inside l forearm
## 29953                                                                                                                                  EE removing items from storage that are above her head-item fell and hit EE in the head then fell toward wall and hit head again.
## 29954                                                                                                                                                                                        EE removing leg restraints from inmate-inmate struck EE's left side of face
## 29955                                                                                                                                                                                           EE removing light lens cover when glass lens shifted cutting right thumb
## 29956                                                                                                                                                                              EE removing manhole cover while repairing sewerline and manhole cover bruised finger.
## 29957                                                                                                                                       EE removing misfed paper from copier, accidently touched hot barrell, reaction caused her to strikelt hand on top of machine
## 29958                                                                                                                                                                           EE removing oil plug from a/c unit, putty knife slipped, cut right thumb on metal casing
## 29959                                                                                                                                                                                                    EE removing paint can from under sink and cut left index finger
## 29960                                                                                                                                                                  EE removing pan of onions from steamer, hot water spilled hitting EE left foot. Burn to left foot
## 29961                                                                                                                                                                                  EE removing paneling and board popped loose makingee lose balance and twist back.
## 29962                                                                                                                                                                                         EE removing paper from drain-and cut finger on rt hand on a piece of glass
## 29963                                                                                                                                EE removing papers and in the process knocked overa flask of hci-upon impact stopper flew off and a splash of acid went into rt eye
## 29964                                                                                                                                                                                                        EE removing papers from file and cut finger on metal prong.
## 29965                                                                                                                                                                                              EE removing papers from jammed paper shredder and got cut on rt hand.
## 29966                                                                                                                              EE removing pieces of glass from broken mirrow frame when another piece fell from top of frame causing cut on left hand pinkey finger
## 29967                                                                                                                                 EE removing plug from water heater, plug released under pressure, spraying the EE. EE twisted suddenly and injured his upper back.
## 29968                                                                                                                                                                                              EE removing pukmp and motor from tank-hot water thrown onto EE's legs
## 29969                                                                                                                                                                                                   EE removing pvc pipe from cut-off saw nicked right pinkie finger
## 29970                                                                                                                         EE removing restrains from inmate when inmate assaulted EE by clawing lt cheek after inmate had assaulted another office with fist & radio
## 29971                                                                                                                   EE removing restraints from inmate when inmate assaulted EE by striking him w/fist & a radio- inmate also assaulted another officer during this.
## 29972                                                                                                                                                                                                EE removing shield from equip for modification anddropped on rt toe
## 29973                                                                                                                                                                             EE removing side panel from 30 ton ac condensor when the panel fell on EE's left foot.
## 29974                                                                                                                                                                                                                         EE removing snow from sidewalk pulled back
## 29975                                                                                                                          EE removing specimen tube from plastic bag when top of tube came off. Splashing some serum of rt side of face. Hiv serum rt side of face.
## 29976                                                                                                                                                                      EE removing spine from hook using a roller scolp. Injured index finger lt hand near nail bed.
## 29977                                                                                                                                                                                                           EE removing staple from document that went into rt hand.
## 29978                                                                                                                                     EE removing syringe from patient's mouth followinginjectin of local anesthesia he stuck himself on his lt glove. Finger prick.
## 29979                                                                                                                                                                EE removing tables and chairs from dining room to wax floor and felt numbness in rt arm and fingers
## 29980                                                                                                                                                                                           EE removing tools from metal tool box cutting right arm just above wrist
## 29981                                                                                                                                                                 EE removing trash bag from cell and other EE workicontrol rm accidentaly closed cell door, rt hand
## 29982                                                                                                                                                             EE removing trash bag from container & while attempting to close top was stuck in left thumb by needle
## 29983                                                                                                                                                                                      EE removing trash from lawn when he stepped into a hold and twisted his ankle
## 29984                                                                                                                                                                                                             EE removing trash when he bumped head on the stairwell
## 29985                                                                                                                              EE removing tv from viewing table-strape pulled tvfrom hands and impact threw EE to the floor injuring both shoulders and upper back.
## 29986                                                                                                                                                                                                                     EE removing wash down plug that flipped in eye
## 29987                                                                                                                                                                          EE removing wheelchair from crowded closet-- wheelchair stuck and EE pulled hurting back.
## 29988                                                                                                                     EE removing wintering tarp from aquatic rehab. Facility when board when removed snapped back & caught finger on nail. Cut ring finger lt hand.
## 29989                                                                                                                                                                                             EE remvong sting ray from net-and ray jabbed spineinto rt index finger
## 29990                                                                                                                                                                                                                              EE rendering care to inmate with rash
## 29991                                                                                                                                                                              EE rendering care to seriously ill patient when patient cough blood to face and eyes.
## 29992                                                                                                                                                                            EE rendering care to seriously ill patient when patient coughed blood in face and eyes.
## 29993                                                                                                                                                                                           EE repairing animal cage which rolled and struck inside of left knee cap
## 29994                                                                                                                   EE repairing decking area at jockey's ridge state park, lost footing walking across unfinshed deck fell thru injurying left ankle, knee, & wrist
## 29995                                                                                                                              EE repairing fence hand slipped causing puncture wound. Treated wound himself and received tetanus injured small finger of right hand
## 29996                                                                                                                                                                                EE repairing garbage trk-removed side runner and jumped from trk injuring left knee
## 29997                                                                                                                                                                       EE repairing sewing machine, foot and hand slipped causing left index finger to be punctured
## 29998                                                                                                                                                          EE repairing sheet metal shear cylinder was extended and retracted suddenly traping left hand and fingers
## 29999                                                                                                                                                                                                                     EE repairing steam leak-stood up and hit head.
## 30000                                                                                                                            EE repairing water leak-went into mech room to turn water off tripped and fell - spraining rt ankle, abrasion to left knee and rt wrist
## 30001                                                                                                                                                                   EE repairing water line in crawl space when an insect bit his lt hand causing it to swell & itch
## 30002                                                                                                                                            EE repairing wtr heater in apt-cut off lines to wtr-when cutting copper line hot wtr in line splashed on EE's forehead.
## 30003                                                                                                                                                                        EE repariring north star dgps and accidentally burned left lower arm on hot soldering iron.
## 30004                                                                                                                                                                            EE repeatedly answering phone and sliding glass window back & forth beyond normal reach
## 30005                                                                                                                                            EE repeatedly hit rt hand and wrist on back of refrigerator while unplugging refrigerator due to noise of compressor ()
## 30006                                                                                                              EE replaced 3 batteries in a burnishing machine. The next morning, he was home, kneeling down to tie his shoe, felt tearing, burning pain in low back
## 30007                                                                                                                                                                    EE replacing batteries in timer & battery acid squirt in ees eyes - left eye & corner of rt eye
## 30008                                                                                                                                                                     EE replacing blade in window scraper & hand slipped while replacing protective cover on blade.
## 30009                                                                                                                                              EE replacing bulbs in hall-when co-wkr dropped a bulp and EE jumped out of way hitting her back on a concrete column.
## 30010                                                                                                                                                                            EE replacing dryer belt, caught finger between top and back. Cut middle finger lt hand.
## 30011                                                                                                                                                                                                                   EE replacing floor tile felt pain in lower back.
## 30012                                                                                                                                                                                          EE replacing handle of bush ax - wrench slipped cut rt hand index finger.
## 30013                                                                                                                                                                                        EE replacing irrigation box lid when finger got caught between box and lid.
## 30014                                                                                                                                                                                        EE replacing lamp socket and hand slipped on covercutting left index finger
## 30015                                                                                                                                                                   EE replacing overhead screen-standing on table andtable tilted and EE fell hitting shin on desk.
## 30016                                                                                                                                                                                            EE replacing part on hospital bed when the headborad fell on EE's head.
## 30017                                                                                                                                                        EE replacing pin in backhoe bucket when a sliver of metal (1/4"x1/8") broke off & impaled lt wrist/arm area
## 30018                                                                                                                                                                 EE replacing the electrical panel cover when it fell to the floor stricking EE on top of left foot
## 30019                                                                                                                      EE repord having witnessed a resident have a toileting accident, and staff intervening w/o use of gloves, resident is an active hep b carrier
## 30020                                                                                                                   EE reporst she was lifting a fire extinguisher from the back of a delivery truck the card board handle tore loose anf the fire extingusiher fell
## 30021                                                                                                                                                                                      EE report helping get inmates out of single cell due to fire smoke inhalation
## 30022                                                                                                                                                         EE report pain in extremities and back after work-ing an extended shift, lifting of clients, bathing, etc.
## 30023                                                                                                                  EE reported 7/24/08 that she did not know when sheinjured her left shoulder. She has only been work ing full time in warewash area since 7/15/08.
## 30024                                                                                                                      EE reported 9/15/08 that she had seen orthopaedic & was told she had "trigger thumb". No report of injury. Employee has secondary employment.
## 30025                                                                                                                                                                                                       EE reported a patient threw a book and hit her in the eye ()
## 30026                                                                                                                                               EE reported a possible over strain in abdominal area after lifting several residents during toileting and meal time.
## 30027                                                                                                                                                                                                                                    EE reported a rash on her chest
## 30028                                                                                                                  EE reported after giving inmate an injection, she dropped the syringe on the floor. She bent to pickit up and stuck the needle in her left thumb.
## 30029                                                                                                                                                                          EE reported back & right side popped when she tried to assist a patient to sit up in bed.
## 30030                                                                                                                                                                                                                           EE reported conjunctitvitis in the eyes.
## 30031                                                                                                                EE reported during his perimeter check of center EE was at the back of kitchem attempting to turn around on sidewalk to pick up rake, EE right foot
## 30032                                                                                                                         EE reported for duty, checked out keys, proceeded to open gallery, turned equip. On & entered dark gallery & fell onto bench - chest/hand.
## 30033                                                                                                                                                                                                                    EE reported having pain in thumb, wrist and arm
## 30034                                                                                                                                                                                                                                  EE reported having pain in wrist.
## 30035                                                                                                                                                                                         EE reported having problems breathing due to a reaction to his medication.
## 30036                                                                                                                                                                                         EE reported he had swelling and bites on his hand he was examined by nurse
## 30037                                                                                                                                                                              EE reported he was crossing a creek and lost his balance falling on his left shoulder
## 30038                                                                                                                     EE reported he was going to pick up dorm type refrigerator & set it outside to defrost. When he lifted it he felt something pop in rt shoulder
## 30039                                                                                                                                            EE reported he was going to unlock doors on unit van and while walking around van. EE slipped on ice and injured ankle.
## 30040                                                                                                                                           EE reported he was lifting bags under the bus compartment & felt a pulling behind his neck/shoulder area with sharp pain
## 30041                                                                                                               EE reported he was making a home visit on an offender and was bitten by 2 unchained dogs--bleeding on rt calf, lft forearm req. 2 stitches and shots
## 30042                                                                                                               EE reported he was patroling wing in f-dorm, inmatehas a seizure, he used his knee to hold inmate down, this caused aggrevation of old military inj.
## 30043                                                                                                                              EE reported he was sitting in a chair when the cylinder dropped down without notice causing EE tohit his right knee against the deck.
## 30044                                                                                                                                                         EE reported he was swinging a sledge hammer to drive a board into the ground when he felt his gack go out.
## 30045                                                                                                                                                         EE reported he was wiping his face off with a paper towel and the corner of it struck him in hisright eye.
## 30046                                                                                                                                EE reported he was working on the 2nd floor supervising inmates, when inmate leon ponder assaulted him by striking him in the face.
## 30047                                                                                                                                                                                                     EE reported headache, dizziness, blurry vision and felling bad
## 30048                                                                                                                                                                          EE reported inamte threw a bar of soap & hit him in the foot. Rt foot above smallest toe.
## 30049                                                                                                                                                                                                        EE reported increased tingling numbness and pain in rt hand
## 30050                                                                                                                                EE reported injuring his wrist and complained of being overheated during the kneeling exercise of annual in-service pistol training
## 30051                                                                                                                                                                                 EE reported injury occured when lifting sample container containing water and ice.
## 30052                                                                                                                                       EE reported inmate sprayed me with pepper spray in the face and was struck several times in the face and head area by inmate
## 30053                                                                                                                                                                     EE reported inmate sprayed pepper spray injuried rt shoulder also getting inmate under control
## 30054                                                                                                                                                                                    EE reported inmate walked over to her and slapped her on the left side of face.
## 30055                                                                                                                                                                                                           EE reported itching when she came to wrk the last 2 days
## 30056                                                                                                                                                 EE reported leaving office down stairs. Icy con- ditions. Slipped and fell down stairs breaking l leg in 2 places.
## 30057                                                                                                                                                                                      EE reported lifting of clients and could not get out of bed the next morning.
## 30058                                                                                                                            EE reported numbness and tingly feeling in hands stated she felt it was from doing her job duties in the food service section of cherry
## 30059                                                                                                           EE reported on 10/29/95 he was making schedule curfew checks. EE was at intersection. Had green light& 81 pontiac ran light turning left. *see log notes
## 30060                                                                                                                                                               EE reported pain in left shoulder after working all day with cart that was difficult to maneuver. ()
## 30061                                                                                                                                             EE reported pain in lower l abdominal area, not sure if work related, possible hernia, pain in lowerleft abdominal are
## 30062                                                                                                                                                                                                     EE reported pain in upper arm after a multi-day, research dive
## 30063                                                                                                                                                                                                        EE reported pain, tenderness and swelling in the right arm.
## 30064                                                                                                                                                                    EE reported patient took off his helmet and threw it and EE lifted hand/arm up to block hit. ()
## 30065                                                                                                                                                                                                                              EE reported rt hand/wrist was hurting
## 30066                                                                                                                                                                                        EE reported she had pain in low and middle back and had difficulty walking.
## 30067                                                                                                                                                                             EE reported she recieved an injury to her right arm as a result of firing the shotgun.
## 30068                                                                                                                    EE reported she was attempting to remove the shankfrom the inmate's hand, her left hand was scratched and left hand index finger was punctured.
## 30069                                                                                                                                          EE reported she was bit by a bug on her left arm. Did not see a bug. Now has red rash over her arms, legs, feet and face.
## 30070                                                                                                                                           EE reported she was called to another building and while walking to the building, she slipped a fell due to wet clay. ()
## 30071                                                                                                               EE reported she was having trouble breating due tofumes from the floor being waxed. Another EE was taking EE home but due to breathing took EE to er
## 30072                                                                                                                  EE reported she was leaving residnece during storm& ducked to Miss A hanging wire & caught foot between 2 pieces of tin lying on ground. She fell
## 30073                                                                                                                                                                EE reported she was not for sure how injury occured she was attending unarmed self defense training
## 30074                                                                                                                                                                         EE reported she was pushing a patient in wheel chair and back snapped and begun hurting ()
## 30075                                                                                                               EE reported she was using the leg press machine when the pin fell out of the weights causing the wt to fall off resulting in the peddle bouncing. ..
## 30076                                                                                                                                                                         EE reported slipping & falling in the parking lot walking from car to building fell on ice
## 30077                                                                                                                                                         EE reported some tingling in fingers. Work stationwas changed and EE still has some pain and dis- comfort.
## 30078                                                                                                                                                                                                           EE reported that a spider had bitten her on her lt elbow
## 30079                                                                                                                  EE reported that after exiting the dorm his rt foot slipped out from under him and he fell down onto steps, landing on lft elbow/shoulder-bruised
## 30080                                                                                                                                                                      EE reported that after she got home she felt pain & stiffness in her upper back and shoulder.
## 30081                                                                                                                 EE reported that all four fingers except the pinkie on her right hand are numb and that she experiences tingling sensations throughout the day. ()
## 30082                                                                                                                                  EE reported that as she attempted to open an inmates cell that the inmate opened the door at the same time hitting the EE fingers
## 30083                                                                                                                                                     EE reported that as walking around the tower catwalk and tripped on the edge of the building and fell sideways
## 30084                                                                                                                              EE reported that at about 12:40 am while conducting security check of state vehicles she slipped on a patch of ice in the parking lot
## 30085                                                                                                                                                      EE reported that firing the shotgun, aggravated a per existing condition of tenderitis in his right shoulder.
## 30086                                                                                                                                                                 EE reported that he alledgdly caught his index finger in the cell dorr of 1f-18 as it was closing.
## 30087                                                                                                                                                                                                                  EE reported that he had some object in his rt eye
## 30088                                                                                                                                                                                                   EE reported that he injuried his back while using the weed eater
## 30089                                                                                                                                                                  EE reported that he opened the door to the sergeants office and it struck him on his left eyebrow
## 30090                                                                                                                                                              EE reported that he struck his right knee on a table when he entered the visitation area for line up.
## 30091                                                                                                                    EE reported that he was attempting to arrest parolee during a foot chase. EE fell thru bushing onto parking lot causing him to scrape his hand.
## 30092                                                                                                                                  EE reported that he was carrying a heavy box of paper when the box caught on something in the trailer & twisted his arm severely.
## 30093                                                                                                                      EE reported that he was closing tailgate of truck at loading dock & fell about 6 feet to concrete pulled ligaments to arm, lacerations & knee
## 30094                                                                                                                                                                                EE reported that he was doing warm up exercises he felt a pain in his stomach area.
## 30095                                                                                                                                                         EE reported that he was escorting inmate in restricted area when he turned left foot in ditch. Back strain
## 30096                                                                                                                                                           EE reported that he was filing a sling blade when his hand slipped off the file and ran across the blade
## 30097                                                                                                                                                     EE reported that he was going down the staircase in the control room unit when his right foot slipped in step.
## 30098                                                                                                                                       EE reported that he was involved in a confrontation w/ inmate, recd several abrasions l wrist, r bicep, blood contaimination
## 30099                                                                                                                   EE reported that he was involved in a training exercise with cell extraction when the corner of the shield hit his lt wrist and then fell on top
## 30100                                                                                                                                                    EE reported that he was involved in a use of forcewhile trying to restrain an inmate when his wrist was struck.
## 30101                                                                                                                                                                             EE reported that he was pushing inmate in a wheel chair when he heard his lt elbow pop
## 30102                                                                                                                                           EE reported that he was reconducting a yard check on unit four he bent near wire on fence razor wire hit top of his head
## 30103                                                                                                               EE reported that he was trying to break up a fightbetween two inmates when he slipped, he landed on his back on the floor which caused his back pain
## 30104                                                                                                                        EE reported that he was using a grinding machine to grind a stainless steel table in the kitchen, machine slipped and went over his finger,
## 30105                                                                                                                                               EE reported that her back hurt when she left for supper, EE believes her back hurts as a result of lifting a patient
## 30106                                                                                                                                                                                                   EE reported that her hands were swelling and she felt nauseated.
## 30107                                                                                                                                                                                        EE reported that her rt knee popped and gave out as she was walking stairs-
## 30108                                                                                                                    EE reported that his self defense partner put to much weight on his shoulder while kneeling over hisback in a handcuffing position--rt shoulder
## 30109                                                                                                                                                                                               EE reported that injury occurred while lifting boxes, strain muscles
## 30110                                                                                                             EE reported that inmate david hines walked over toher & slapped her on the left side of her face. While being escorted to his cell from the shower. ..
## 30111                                                                                                               EE reported that patient was having a seizure and was falling and she tried to assist patient from falling she injured her left forearm and wrist ()
## 30112                                                                                                                                                     EE reported that she attempted to pick up paper shreder to move it she felt pain in mid lower part of her back
## 30113                                                                                                                                           EE reported that she felt pain in her lt knee on 5/19/06 she stated she was unsure how or when she May have been injured
## 30114                                                                                                                  EE reported that she had her lt hand positioned on the slider and was not aware that the slider was opening the slider opened and caught her hand
## 30115                                                                                                                                                                                     EE reported that she had hurt back while lifting a chair early part of the day
## 30116                                                                                                                                                      EE reported that she leaned over to talk to a patient and the patient hit EE in her face(nose) with her hand.
## 30117                                                                                                                                                                              EE reported that she pinched the top of her lt hand as she was shutting a desk drawer
## 30118                                                                                                                                                                                                              EE reported that she slipped on floor that was moist.
## 30119                                                                                                                          EE reported that she was coming down the stairway in the control room to get something from the canteen when she slipped on the stairway.
## 30120                                                                                                                          EE reported that she was going down the side of stairs when her rt shoe caught the hem of her dress she fell down two of the middle steps
## 30121                                                                                                                                                                                    EE reported that she was having pain in her neck. EE reported to her supervisor
## 30122                                                                                                                 EE reported that she was involved in training exercise with cell extraction when she entered into cell while bending down her rt toe was stretched
## 30123                                                                                                             EE reported that she was on her way to court from the probation office when a lady ran a stop sign and hit Miss Long's car causing her to run into fir
## 30124                                                                                                             EE reported that she was returning a state vehicleat the end of a trip to raleigh. She dropped some paper and when she bent down to pick them up she..
## 30125                                                                                                                  EE reported that she was searching the drop ceiling in a dorm dayroom for contraband when she moved a panel fiberglass dust dropped into her eyes
## 30126                                                                                                                                                                                                                        EE reported that spider bit her on rt foot.
## 30127                                                                                                                                                                     EE reported that steel rolled over from wgt of steel and hit wrist--contusion lft arm at wrist
## 30128                                                                                                               EE reported that the lock to her office was difficult to open. While attempting to unlock the door the key broke off in lock, she felt pain in chest
## 30129                                                                                                                 EE reported that transporting an inmate to clinic a vehicle stopped immediately in front of him causing him to collide in the rear of that vehicle
## 30130                                                                                                                 EE reported that upon returning to her work area she opened the tx door and reached to turn on the light. She slipped in a slppery liqiud on floor
## 30131                                                                                                                                                   EE reported that when staff entered the sergeant'soffice with inmate, staff and inmate fell on EE's right chest.
## 30132                                                                                                                                    EE reported that while conducting routine cell block check, an inmate threw liquid in both eyes. (liquid believed to be bleach)
## 30133                                                                                                                      EE reported that while in route to dot shed; a ?? Flew up from another vehicle that was in front of him, hit drivers side window, cracked it,
## 30134                                                                                                                  EE reported that while participating in pert basiche twisted his knee conducting a bldg search-inj occurred while searching closet on lower level
## 30135                                                                                                                                                          EE reported that while serving food he strained his back by picking up a large container of milk & juice.
## 30136                                                                                                                                         EE reported that while she was entering the front door of the dormitory she caught her left thumb between the screen door.
## 30137                                                                                                                                                                        EE reported that while sonducting unarmed self- defense training he injured his upper back.
## 30138                                                                                                                                                             EE reported that while stopped at a red light in marion, he was struck in the rear by another vehicle.
## 30139                                                                                                                                            EE reported that while supervising the kitchen 220 door, she felt a pain in her finger tips and wrist of her right arm.
## 30140                                                                                                                         EE reported that while walking around one side of the trailer, his l knee struck the bracket which holds the brake lights for the trailer.
## 30141                                                                                                                    EE reported that while walking down hallway on 2nd floor of dobbs building on way to hearing, slipped on floor and fell hitting hands and knees
## 30142                                                                                                             EE reported that while walking to his assigned post in j blocks, he attempted to stop and turn to his left and his right foot slipped causing him to..
## 30143                                                                                                                                                     EE reported tht he was supervising inmates spreading mulch when a gust of wind blew some mulch into his rt eye
## 30144                                                                                                                                                             EE reported to blue light when he was exposed to smoke and fumes of burning mattress. Smoke inhalation
## 30145                                                                                                                                                                                                   EE reported to flooded area and slipped on bottom step and fell.
## 30146                                                                                                                                EE reported to her supervisor in Nov/Dec 2003 thatshe was having pain on left side of neck and shoulder from daily use of computers
## 30147                                                                                                                                                                                                    EE reported to medical with open area 1/2 inch from left eye ()
## 30148                                                                                                                                                   EE reported to supervisor on 4/28/00 she had been out of work and the Dr Told her she had carpal tunnel syndrome
## 30149                                                                                                                                         EE reported to work 11:00pm & at 12:00am she went to her car to get some items & fell on uneven pavement hitting her head.
## 30150                                                                                                                                                                                                                            EE reported to work w/red eye syndrome.
## 30151                                                                                                                                                                             EE reported to work, reported her rt hand was not functioning, trouble moving fingers.
## 30152                                                                                                              EE reported whe was exiting the bathroom when she tripped on the wooden threshold of the bathroom resulting in her falling. Landing on right side/hip
## 30153                                                                                                                                                                 EE reported while assisting with placing patient in cpi, patient twisted her arm causing injury ()
## 30154                                                                                                                    EE reported while breaking up a fight, inmate hit him in the chest area. EE further stated that he was struck in the hand while blocking punch.
## 30155                                                                                                                                                       EE reported while climbing onto the truck for a security check, he bumped his shin on the floor of the truck
## 30156                                                                                                                        EE reported while enroute for modular check he was walking on the sidewalk his rt foot stepped over the edge causing him to twist his ankle
## 30157                                                                                                                                                                                        EE reported while placing a inmate into cell he was assaulted by the inmate
## 30158                                                                                                             EE reported while sitting in a chair in 3rd floor nurses taking report, a chart fell off the top of a 6 foot patient chart rack hitting her head/neck.
## 30159                                                                                                                        EE reported while trying to restrain an inmate, hestruck his left arm between the elbow and shoulderon the steel bars of the security cage.
## 30160                                                                                                             EE reported while unlocking the lock on the central door of the warehouse at the central cantee for central canteen operator he bumped his hand on. ..
## 30161                                                                                                                                                                                                        EE reported wrist and hand pain, but didn't know the cause.
## 30162                                                                                                                               EE reported: transporting project from another office to the office of the assistant secretary and fell on wet floor. Injury to back
## 30163                                                                                                                                                                                              EE reportedly has a sore rt ankle unsure of how orwhen it was injured
## 30164                                                                                                                                                                              EE reporting for work and while exiting his vehicle he was stung on rt thumb by a bee
## 30165                                                                                                                                                                               EE reporting for work duty and slipped on a rock on the steps and sprained rt ankle.
## 30166                                                                                                                                                                                                             EE reporting to 5-4 acute when stepped off ramp & fell
## 30167                                                                                                                         EE reporting to shift duty. EE slipped on ice walking through sallport front gate. He fell on left side, hurt left knee, ankle, and wrist.
## 30168                                                                                                                                                                             EE reporting to work and slipped and fell on wax floor injuring head, hip and buttock.
## 30169                                                                                                                                                      EE reporting to work when client pulled EE in another direction causing pain in lower stomach and lower back.
## 30170                                                                                                                                                    EE reporting to work when he stepped on suffle- board disk causing EE feet to slide, pulling or straining back.
## 30171                                                                                                                                                                                                  EE reporting to work-tripped over chair on porch hitting rt knee.
## 30172                                                                                                                                               EE reports a 3" diameter hard, red, raised area in left axillary region; draining thick red/green drainage; painful.
## 30173                                                                                                                                                                                                                     EE reports a bite to the top of her left foot.
## 30174                                                                                                                                   EE reports a muscle became very tight or stiff in lower left back after doing a seclustion restrainton a patient. Lumbar strain.
## 30175                                                                                                                                                                                                                              EE reports and insect bite to stomach
## 30176                                                                                                                   EE reports another EE walked up to her and she pushed him away with both hands, exchanged words hit her in the face. Soft tissue injury to nose.
## 30177                                                                                                                                                    EE reports back pain that May be a result of patient care required by job discription. (lifting and assisting).
## 30178                                                                                                                                          EE reports bending over while seated in her chair to pick up a pen off floor when her back locked upfelt pain in low back
## 30179                                                                                                                                                                                 EE reports bumping right elbow and right knee while restraining agressive patient.
## 30180                                                                                                                                                                                                                              EE reports diagnosis of epicondylitis
## 30181                                                                                                                                                                                                                 EE reports dizziness, headaches, nausea form fumes
## 30182                                                                                                                                                 EE reports due to repetitive hand motion with key-board and typewriter she developed tendinitis in her right hand.
## 30183                                                                                                                                                                       EE reports during a use of force with an inmate inmate struck him in the chest with his fist
## 30184                                                                                                                                                                  EE reports during use of force with an inmate inmae bit him on the lower front portion of forearm
## 30185                                                                                                                                                               EE reports feeling overheated while fighting fire ** this is a federal EE - not employed with denr**
## 30186                                                                                                                                           EE reports gradual pain in upper right arm/shouldrafter participating in an educational conference relaxation exercises.
## 30187                                                                                                                                EE reports having an embedded tick on body which is said to have produced lyme disease ** nurse cm -tina richardson 252-714-8959 **
## 30188                                                                                                                                                                                                         EE reports having shortness of breath and severe headaches
## 30189                                                                                                                                                                                              EE reports he had a tightness in lower abdomen during baton training.
## 30190                                                                                                                     EE reports he picked up on some dirty laundry to place in clothes cart after picking up the clothes he observed red spots on both his forearms
## 30191                                                                                                                                                                                                                    EE reports he slipped on wet food on the floor.
## 30192                                                                                                                                                                      EE reports he was bitten by some insect while working in shop area. Insect bite to neck area.
## 30193                                                                                                                 EE reports he was decending stairs in the west wing of upper e unit after completing population count, tripped or slipped & fell down 5 or 6 steps
## 30194                            EE reports he was working on a piece of equipment with a pair of pliers and was trying to tighten something with the pliers when they slipped off and he injured his right wrist. He reports it was like something popped in his wrist.
## 30195                                                                                                                                                       EE reports increased pain in rt thumb from using 5 hole punch - pain in on-going and the area is very tender
## 30196                                                                                                                                                                              EE reports increased pain in shoulder after lifting patient from floor to wheelchair.
## 30197                                                                                                                                                                                                       EE reports injured rt wrist from repetitively pulling charts
## 30198                                                                                                                                                                                                  EE reports injury occured while he was trying to subdue an inmate
## 30199                                                                                                              EE reports injury to wrist is from the first accdtwith the lt hand and resulting in overuse of the rt hand(wrist). ""do not pay bills on this claim""
## 30200                                                                                                                     EE reports lft hand (thumb) started hurting 9-10 days ago. Hurts to move lft thumb. Pain goes up thumb to wrist 3-4 in. From wrist. Tendonitis
## 30201                                                                                                                                                                                                         EE reports lumbar pain after bending to pick up an object.
## 30202                                                                                                                                                       EE reports mental and emotional harassment inimidation being singled out and discrimnated over the last year
## 30203                                                                                                                                          EE reports multiple health conditions resulting from repetitive nature of data entry & prolonged sitting and standing. ()
## 30204                                                                                                                                                                                            EE reports of shoulder, neck and back pain from working at workstation.
## 30205                                                                                                                                                                           EE reports onset of pain in left wrist after helping to reorganize several books shelves
## 30206                                                                                                             EE reports pain & swellin in right hand & wrist that is worse when opening bottles &/or packages of meds or turning keys in door locks. Sprain r hand.
## 30207                                                                                                                                         EE reports pain in ears and difficult breathing after ward he works on was painted. Pain in ears & respiratory complaints.
## 30208                                                                                                                                                                                     EE reports pain in left wrist and thumb after turning on the suction equipment
## 30209                                                                                                                                                                                                     EE reports pain in right forearm and fingers from computer use
## 30210                                                                                                                                                                                     EE reports pain in right hand and up her arm that began about three weeks ago.
## 30211                                                                                                                                                                  EE reports pain in right shoulder as a result of repetitive motion of reaching into isolators. ()
## 30212                                                                                                                                          EE reports patient twisted wrist back and pulled back on thumb while trying to give him a bath. Sprain right fifth finger
## 30213                                                                                                                                                            EE reports placed hand cuffs on inmate inmate struck me with handcuffs in the neck and rt shoulder area
## 30214                                                                                                                                                                    EE reports rash of unknown ortigin on neck at the end of her shift. Possible contact dermatitis
## 30215                                                                                                                                                        EE reports retaliation and harassment from management and supervisor has induced stress and mental anguish.
## 30216                                                                                                                                                                                       EE reports right leg and groin/buttock strain while using a pole saw at work
## 30217                                                                                                                                                           EE reports she became ill due to exposure while on the firing range for annual inservice qualifications.
## 30218                                                                                                                                                                     EE reports she caught shoe string in gero chair w/ feeding a pt and fell on l knee adn buttock
## 30219                                                                                                                EE reports she gave an im of haldol w/ no needle protector cover. She went to drop the needle in biohazard box and it flipped up and struck finger.
## 30220                                                                                                                                                                                                                                   EE reports she slipped on stairs
## 30221                                                                                                                                                                                   EE reports she touched an open wound on a patientsarm while doing an evaluation.
## 30222                                                                                                                                                                                                       EE reports she was exposed to MRSA - unknown when or how. ()
## 30223                EE reports she was helping move a juvenile to her room; she had her right leg & another staff had the juv left leg & arm; juv grabbed hold of doorway fram & kicked... EE flew backwards and landed on her back on the floor- did not hit her head.
## 30224                                                                                                                                                                EE reports she was playing basketball w/ student, jumped up and turned her ankle when she came down
## 30225                                                                                                                                                                                                                                 EE reports something bit her arms.
## 30226                                                                                                                                                                                      EE reports spider bite on bottom of right leg while cleaning bleachers in gym
## 30227                                                                                                                                                                                                                EE reports that a table fell on his rit foot/toe ()
## 30228                                                                                                                                   EE reports that he injured his back following lifting a small 2 drawer file cabinet without the assistance of another person. ()
## 30229                                                                                                                                                    EE reports that he instructed inmate to retrun to his cell. Inmate turned around and struck EE in left forearm.
## 30230                                                                                                                                                            EE reports that he was crossing 3rd street when he was struck by a minivan injured left leg/knee. Subro
## 30231                                                                                                             EE reports that he was escorting an inmate back toyard, when another inmated came from behind, tryingto hit inmate being escorted & hit EE on shoulder
## 30232                                                                                                                                                                      EE reports that he was moving and unpacking boxes in the store room located in the kitchen ()
## 30233                                                                                                                  EE reports that he was restraining an agressive inmate and received a strained tendon to his lt shoulder and a superfical scratch to his rt thumb
## 30234                                                                                                                                                                                                        EE reports that inmate spit in EE's face and her right eye.
## 30235                                                                                                                                                                                EE reports that she assigned yard and slipped on wet grass twisting her right knee.
## 30236                                                                                                                             EE reports that she is having pain in thigh & hip that she thought occurred during nci on 2-7-07, from sitting up & down during lifts.
## 30237                                                                                                                            EE reports that she was walking from the gymnasium back to the kirk building and turned her right ankle because the ground isn't level.
## 30238                                                                                                                                                             EE reports that w/out warning a juvenile struck him with a closed fist on the left side of the face ()
## 30239                                                                                                                 EE reports that while delivering personal propertyin inmate in single cell inmate became irrate & threw liquid substance hitting upper body & face
## 30240                                                                                                                               EE reports that while he was loading a wheelchair that belonged to a transport inmate at central prison in the back of transport van
## 30241                                                                                                                                                               EE reports that while restraining an inmate on third floor after that he accidentaly hit his rt hand
## 30242                                                                                                            EE reports that while running the bloodhounds, he stepped in a stump hole and fell to the ground, landing on his elbow and causing pain in his shoulder
## 30243                                                                                                                                             EE reports to supervisor that he was having shoulder pain but couldnot pin point the exact event that caused the pain.
## 30244                                                                                                                    EE reports twisting and feeling a sharp pull in upper left arm as she attempted to empty some hevytrash cans unaware someone placed books in it
## 30245                                                                                                                                                                                                    EE repositioned client in chair and later noticed pain in back.
## 30246                                                                                                                                       EE repositioned client in wheelchair and felt sharp pain in lower arm going up elbow. Rt forearmstrain with mild tendonitis.
## 30247                                                                                                                                              EE repositioned pt w/ assistnace of another EE when pt's needle dislodged from iv tubing port and struck EE in finger
## 30248                                                                                                                                                                          EE repositiong client & felt a pull & pop in rt arm with some tingling in hand & shoulder
## 30249                                                                                                                                                                                                                  EE repositioning client in bed noted pain in back
## 30250                                                                                                                                                                           EE repositioning client in bed to change-client isspastic-EE noted pain in left shoulder
## 30251                                                                                                                                                                                               EE repositioning client in wheelchair, w/c came down on left big toe
## 30252                                                                                                                                                                                                         EE repositioning client on bed and felt sharp pain in back
## 30253                                                                                                                                                      EE repositioning client with another EE using a draw sheet. They moved client up in day bed when EE felt a ()
## 30254                                                                                                                                                                               EE repositioning client-moved client onto side experienced sharp pain in left wrist.
## 30255                                                                                                                                                                    EE repositioning patient in bed & felt stabbing pain in right hip radiating down leg into foot.
## 30256                                                                                                                                                                           EE repostioning client in wheelchair, pulling client up and felt something in back pull.
## 30257                                                                                                                                                                       EE repostioning pt to assist with administering prn & schedule meds. Pt had several episodes
## 30258                                                                                                                                                       EE repots rash on left side of back & he has been in contact w/MRSA patient. Sat in chair that had pus on it
## 30259                                                                                                                    EE reprted that she was walking toward the loadingdock and slipped on the icey surface. EE stated she fell on her lower back and left hip bone.
## 30260                                                                                                                                                                  EE requalifying at firing range when shotgun safety jammed jerked caused bad sprain to left wrist
## 30261                                                                                                                                                               EE requested to leave at 11am complaining of nausea. He stated that he had vomited earlier that day.
## 30262                                                                                                                                                                   EE required to walk through fields of posion ivy on regular basis-rash on both legs and abdomen.
## 30263                                                                                                                                                                                                                   EE res with cold spit in her eye. Herpes simpley
## 30264                                                                                                                                 EE reset computer alarm, when returning to seat, chair rolled out from under EE causing him to fall on rear end. Mid & lower back.
## 30265                                                                                                                                                                                                         EE resetting the reset button on the paint booth and fell.
## 30266                                                                                                                       EE respond to pt-went down to floor on knee pl holly cutler 919-831-1815-**ag's# 03-0284 monthly aww=$3031. 73- tpd not due for 9&10/-2004**
## 30267                                                                                                                                                                  EE responded to a call from student complaining about an aggressive bat. Bat flew over officer ()
## 30268                                                                                                                                                                                                                       EE responded to a code 5 on uit 1-a block ()
## 30269                                                                                                                               EE responded to a code in the dorm area which lead to the hand cuffing of a inmate. When restraining she injured her left upper arm.
## 30270                                                                                                                                                   EE responded to a fight involving inmate & smearedblood on her arm due to contract with inmate. Blood on rt arm.
## 30271                                                                                                                                                   EE responded to a fire, he helped extinguish fire and inhaled some of the smoke. Smoke ventilation of the lungs.
## 30272                                                                                                                                                   EE responded to a physical confrontatin between two inmates inmate threw trash can it hit EE in the back of head
## 30273                                                                                                EE responded to a report of an usecure door in the comparative medicine divison. While attempting to close doors, EE's left hand was slammed between both doors. ()
## 30274                                                                                                                                                   EE responded to a use of force involving staff. Was breaking up the use of force when inmate bit EE on right leg
## 30275                                                                                                                                                                                   EE responded to a visitor accident when he came incontact with blood of injured.
## 30276                                                                                                                                             EE responded to a woods fire caused by hazardous materials-possible respiratory contamination from hazardous materials
## 30277                                                                                                                      EE responded to alarm; upon closing access panel on system, the latch failed &the panel forcefully opened & struck EE in face; causing injury
## 30278                                                                                                               EE responded to an escape and attempt by an inmateee states that as he was trying to ? The inmate, the inmate threw a broken stool leg at him(notes)
## 30279                                                                                                                 EE responded to an escape attempt by an inmate. Eewas trying to approach inmate & inmate threw a broken stool leg @ EE. Object hit EE in the back.
## 30280                                                                                                             EE responded to call for assistance reference subject fleeing arrest in a motor vehicle. Suspect struck EE's patrol car, inj to neck & upper shoulder.
## 30281                                                                                                                                               EE responded to cell of inmate with a self-inflicted wound that cause exposure to bloodbourne pathogens on EE arm ()
## 30282                                                                                                                                                                                             EE responded to disturbance, inmate set cell on fire. Smoke inhalation
## 30283                                                                                                              EE responded to emergency call of smoke or fire inthe street when EE arrived on the scene, steam wascoming out of the ground blowing toward manholes.
## 30284                                                                                                      EE responded to femae restrm where female student has passed out. Student was passed out, while moving the student out of stall, officer strained her back ()
## 30285                                                                                                                                                                               EE responded to fight involving 2 inmates, was exposed to blood from inmate injuries
## 30286                                                                                                                                EE responded to help call for client-went into room were client had voided on floor-EE slipped and fell reinjuring ham string area.
## 30287                                                                                                                                                         EE responded to industrial fire at unimin plant inspruce pine, breathed in hazardous materials during fire
## 30288                                                                                                                                                                                                                  EE responded to inmate fight and exposed to blood
## 30289                                                                                                                      EE responded to inmates call after a use of force to examine inmate after oc spray was used. The smell & fumes took ees breath & burned eyes.
## 30290                                                                                                                 EE responded to nc memorial hosp to transport a patient to john umstead hosp, EE was exposed to a disease that on site Dr Deemed highly contagious
## 30291                                                                                                                  EE responded to scene of accident-while observing accident EE unknowingly stepped on mound of red fire ants-they rapidly covered body stinging EE
## 30292                                                                                                                                 EE responded to service call for broken down lawnmower & laid down to service lawnmower. Later he noticed bumps all over his body.
## 30293                                                                                                                                              EE responded to two inmates fighting, when he broke the fight up he got some blood on right forearm and his left hand
## 30294                                                                                                               EE responding for assistance he slid into officersstation door while trying to stop forward motion &struck rt knee on door. Sprain/contusion rt knee
## 30295                                                                                                                                     EE responding to a call swerved his EE to Miss A veh that entered roadway frm p/lot-EE hit a curb and airborne before landing.
## 30296                                                                                                                                         EE responding to a code 400 disturbance, he hurt the middle part underneath his right foot when he started up the stairway
## 30297                                                                                                                                                     EE responding to a fight between two inmates-when separating inmates one inmates elbow hit EE in rt eye cheek.
## 30298                                                                                                           EE responding to a fight call on foot at kfc/taco bell in butner. Raining & ground was wet, slipped on pavement & fell. Rt ankle/lt leg & knee/ lt elbow
## 30299                                                                                                                                     EE responding to a fire in boiler building a pieceof wire stuck through his show and pricked his foot - first aid administered
## 30300                                                                                                                                                                                        EE responding to a motor veh accident and was exposed to a toxic substance.
## 30301                                                                                                                       EE responding to a report of impaired driver bus entered intersection striking EE's vehicle causing contusions lt hand/shin/knee/wrists/neck
## 30302                                                                                                             EE responding to a use of force in 1043 building. At that time he slipped & fell on ice in front of building. Neck, back, rt elbow, lt side groin area
## 30303                                                                                                          EE responding to an emergency call, while running to the area, went up flight of steps, grabbing the rail, stopped the motion of his upper body, twisting
## 30304                                                                                                                                                                                                     EE responding to body alarm & twisted lft leg going downstairs
## 30305                                                                                                                                                             EE responding to call on patrol bike with jump start box in hand, bike fell injuring left ring finger.
## 30306                                                                                                                                                                               EE responding to call, walking down a flight of steps, left knee snapped and twisted
## 30307                                                                                                                             EE responding to code "yellow" infirmary, inmate being subdued when inmate began kicking officer hit rt lower leg area - causing pain.
## 30308                                                                                                                                                   EE responding to code 300 on east yard when he twisted his right ankle in hole that rain had washed out on yard.
## 30309                                                                                                                                                                                      EE responding to code blue where inmate slashed his throat, chest & both arms
## 30310                                                                                                                   EE responding to code yellow on lower yard, she fell on uneven pavement in fromt of adm. Bldg. Causing injury to rt ankle, shoulder, elbow, palm
## 30311                                                                                                                                             EE responding to code yellow running to location & tripped over pile of dirt between dorms. Causing injury to rt knee.
## 30312                                                                                                                            EE responding to domestic situation on probationeree got out of car at site-proceeded to front door when he was bit by dog on left calf
## 30313                                                                                                                                                         EE responding to emergency within instituion when his hip popped. Felt sharp pain when weight was applied.
## 30314                                                                                                                                                                                                                     EE responding to help call and turned rt ankle
## 30315                                                                                                                                                                              EE responding to help call, rushing down stairs, slipped hitting r knee against wall.
## 30316                                                                                                            EE responding to incident involving inmate damaginstate property and discharging fire extinguisher at staff, EE hit on rt hand by extinguisher, inhaled
## 30317                                                                                                                                                                 EE responding to inmate being down in hallway-ran to assist-doesn't know how, but injured rt ankle
## 30318                                                                                                                          EE responding to medical emergency in cellblock 605, attempted south wind door from closing door closed on finger. Injured middle finger.
## 30319                                                                                                                                                                                                    EE responding to motor veh accident-exposed to toxic substance.
## 30320                                                                                                                                                       EE responding to officers call for help, EE hurt foot going down steps at admin building bruise to left foot
## 30321                                                                                                                                                                 EE responed to a call for assistance on unit I recreation yard EE ran through c block twisted foot
## 30322                                                                                                                                                                                         EE responging to emer call to cardinal unit, EE slipped and fell hurt knee
## 30323                                                                                                                                                                                                    EE rested arm on desk, realized a rash when she picked it up ()
## 30324                                                                                                                                                                                        EE rested her hand upon a garment and was stuck by1 3/4" to 2" straight pin
## 30325                                                                                                                             EE rested jackhammer on inclined surface to test while taking a break-it slipped and landed on EE's right toe behind steel toe of boot
## 30326                                                                                                                                                                           EE rested rt forearm on upturned desk. Cut rt forearm on metal plate attached to desk ()
## 30327                                                                                                                                                                                       EE restocking paper tray in copier, whet to stand & felt sharp pain in knee.
## 30328                                                                                                                                       EE restrain inmate, cut right forearm on filing cabinet lt elbow cut & lt shin bruised & bloody inmate attmpted to choke EE.
## 30329                                                                                                                                          EE restrained an inmate who was involved in a fight with another inmate & got blood on his handsfrom the inmate's injury.
## 30330                                                                                                                                                                                                                     EE restrainin inmate other EE head hit EE nose
## 30331                                                                                                                                                                                  EE restraining a cat for injection when cat becamefrighten and bit EE on rt thumb
## 30332                                                                                                                                                                                                                  EE restraining a juvenile when he twisted lt knee
## 30333                                                                                                                         EE restraining a student in an argument with another student. EE injured finger & was hit in stomach. Lt index finger & stomach contusions
## 30334                                                                                                                                                                               EE restraining a student that was out of control felt strain to upper back and chest
## 30335                                                                                                                                                                            EE restraining a student with aggressive behavior while down on the floor. Knee injury.
## 30336                                                                                                                                                                                                                          EE restraining aggitated pt, twisted knee
## 30337                                                                                                                                                                           EE restraining cat so iv would not be pulled out and in process cat bit EE on left hand.
## 30338                                                                                                                                                                                                                      EE restraining client pain/swelling left knee
## 30339                                                                                                                                                                                                                      EE restraining client, staff fell on his hand
## 30340                                                                                                                                                                          EE restraining client-client kicking at EE who turned head out of the way and popped neck
## 30341                                                                                                                                                   EE restraining inmate in single cell, he was kickedin rt hand, hitten on lt hand, spit on in face & upper torso.
## 30342                                                                                                                                                                   EE restraining juvenile and was struck in face, causing bruising and nose to bleed. Right cheek.
## 30343                                                                                                                                                                              EE restraining juvenile; juvenile struck EE in thehead & pushed against table & wall.
## 30344                                                             EE restraining pt to chair. Pt was kicking legs furiously, EE tried to hold pt's leg that was moving. EE didn't notice pain until morning (19th). Pain in (left) wrist got worse from hold on 18th. ()
## 30345                                                                                                                                                                                      EE restraining resident and resident fell to the floor and injured EE's neck.
## 30346                                                                                                                                           EE restrainting student who kicked EE in lower lip and scratched EE on left wrist EE injured lower back during restraint
## 30347                                                                                                                                 EE resupplying stock bending over when stood up hefelt strain in lower back he attempted to continueresupply pain grew more severe
## 30348                                                                                                                                                                                             EE retirning to blding stumbled on stone step thatwere cracked/broken.
## 30349                                                                                                                                             EE retreiving & replacing notebooks from overhead cabinet, felt gripping pull in back; radiated into chest, neck, hips
## 30350                                                                                                               EE retreiving lumber from stack. Picked up board held at waist level. Stepped into another piece oflumber. Tripped over lumber fell on hands & knees
## 30351                                                                                                                                                                                                      EE retrieved a chart from rn-felt a pull/pain in right wrist.
## 30352                                                                                                                     EE retrieving a bag of lime from storage room w/fumigant present. Fumigant cylinders had begun to leak resulting in inhalation of the fumigant
## 30353                                                                                                                                                                                  EE return from lunch, slam door on rt hand, pinchedpointer finger & middle finger
## 30354                                                                                                                                                EE return trip with inmate tried to grab him when returning to his cell, grabbed handcuffs and cut rt index finger.
## 30355                                                                                                                                                                                                             EE returned fm lunch, going to ward, fell up stairs ()
## 30356                                                                                                                                                                                     EE returned from Dr Apt on 10-4-06 state she had carpal tunnel in both wrists.
## 30357                                                                                                                                                                EE returned from eastern radiology from picking up patients and twisted rt ankle getting out of van
## 30358                                                                                                                        EE returned from making a room reservation for meeting in Feb. When she returned to office fell on ice base of steps. Lt knee & rt hip pain
## 30359                                                                                                                                             EE returned from off grounds outing with patients, exiting van and felt dull pain in right side of lower back/hip area
## 30360                                             EE returned from walking on an elliptical machine during his meal hour. EE sat in his chair. The back of the chair was not locked in place which caused EE to fall backwards in his chair and he strained his back. ()
## 30361                                                                                                                                          EE returned to patrol vehicle from mailing letter set in patrol vehicle and positioned his upper torso, injuring his back
## 30362    EE returned to the concession stand at the swim beach after picking up loose litter, when she noticed a bite/sting on inner left thigh. The area was red with the diameter of approx. 2 inches and had a white ring around it. EE didn't notice being bitten ()
## 30363                                                                                                                               EE returned to work after lunch. Was feeling light headed and dizzy. Went to the restroom, started to return to job site and fainted
## 30364                                                                                                                      EE returning a bottle of wax to top shelf of cabinet. Set bottle up-right his thumb on his rt hand caught under top lip on cabinet cut thumb.
## 30365                                                                                                                                                                                                                 EE returning back to bldg when she slipped & fell.
## 30366                                                                                                                                               EE returning back to desk and heel of shoe slippedon plastic pad under desk and lost her balance hitting left hand,.
## 30367                                                                                                                                                                             EE returning back to work and tripped over a stop block injuring rt elbow, right knee.
## 30368                                                                                                                                                                          EE returning for safety inspection when struck on the left front side of an oncoming car.
## 30369                                                                                                                       EE returning from a county fair inspection when his car was rear ended by a change of reaction car hit back of another car from another car.
## 30370                                                                                                                EE returning from bank after depositing admis rectee stopped to talk with other EE in parking lot, eeattacked by flying insect possibly wasp or bee
## 30371                                                                                                                                                                                                              EE returning from break-had seizure-fell hitting head
## 30372                                                                                                              EE returning from conference on airlines flight- starting having extreme pain in ears when flight got to 39, 000 causing loss of hearing in both ears
## 30373                                                                                                                   EE returning from daily trip tp courthouse, trippedon pavement & fell face down on concrete sidewalk laceration rt eye; scraped nose; sore hand.
## 30374                                                                                                                                                                                      EE returning from delivering mail and slipped and fell on steps in sink bldg.
## 30375                                                                                                                                                                   EE returning from leave w/out pay-changing cages caused EE problems with wrists and rt shoulder.
## 30376                                                                                                                                                                           EE returning from lunch and fell on sidewalk outside of office. Pulled ligament lt foot.
## 30377                                                                                                                                                                                EE returning from lunch in the rain slipped on steps and fell forward on right knee
## 30378                                                                                                                                               EE returning from records dept. Passed diagnositicdept - had to move off pavement slipped in mud. Sprained rt ankle.
## 30379                                                                                                                                                                            EE returning from route when hit in the rear by another vehicle causing injury to neck.
## 30380                                                                                                                                                                    EE returning from taking trash out, floor wet fromrain which made it slick injury to left ankle
## 30381                                                                                                                         EE returning from the courthouse in route to her office when she walked behind vehicle which backedup & hit her in leg. Bruised left knee.
## 30382                                                                                                                                                                                    EE returning from ward 115, fell on steps outside of avery conference, hip pain
## 30383                                                                                                                          EE returning from warehouse with supplies. Walked through doorway, door closed hitting EE on left arm and shoulder. Neck pain, back pain.
## 30384                                                                                                                                                                                  EE returning from youth center, got out of car and slammed car door on left thumb
## 30385                                                                                                                                                                        EE returning inmate to cell after sick call when his right thumb was caught in sliding door
## 30386                                                                                                                            EE returning inmate to cell, door hard to open, when she pushed door open her rt middle finger wascaught in door causing small abrasion
## 30387                                                                                                                    EE returning to campus from driving training with basic school. While exiting patrol vehicle EE twisted left knee. Possible acl meniscus injury
## 30388                                                                                                                                                                        EE returning to desk, lt foot slid, ankle turned caught self on desk with rt hand and chest
## 30389                                                                                                                                 EE returning to her office area, when she stepped on chair mat, and it slid causing her to fall. Rt foot, rt forearm and shoulder.
## 30390                                                                                                                  EE returning to his office - EE's vehicle was struck on drivers side rear door - spinal injury causing severe pain rt shoulder, arm, hand, & neck
## 30391                                                                                                                                                                            EE returning to hotel room and slipped on wet sidewalk and struck stairwell with rt leg
## 30392                                                                                                                                      EE returning to office from doing task pertaining to teaching fell on steps outside berryhill kneesrt wrist, eye scrapes, arm
## 30393                                                                                                                                                                             EE returning to office to answer phone, turned corner of hallway and turned left ankle
## 30394                                                                                                                                                                                                            EE returning to office-tripped and fell landing onface.
## 30395                                                                                                                                                                 EE returning to patrol veh from a traffic stop andstepped on uneven pavement spraining left ankle.
## 30396                                                                                                                                                                                  EE returning to patrol vehicle when dog came from behind and bit EE on left thigh
## 30397                                                                                                                                                                                                      EE returning to program area and slipped and turned rt ankle.
## 30398                                                                                                                                                                                         EE returning to the u1 bldg from canteen & was stung by a yellow jacket ()
## 30399                                                                                                                                                                            EE returning to veh after visiting an er on agcy business-slipped and fell on pavement.
## 30400                                                                                                                   EE returning to work station while attempting to sit down tripped hitting (r) arm on desk EE statedthat EE also trying to protect head from desk
## 30401                                                                                                                                   EE returning to work via stairs after fire alarm when the building was evacuated when she became lightheaded and short of breath
## 30402                                                                                                                                        EE returning van to fire depart another vehicle backed out in front of EE causing damage to vehicle EE bruised by seat belt
## 30403                                                                                                                                                                       EE reviewing set up for chancellor installation, tripped over cords and fell onto right knee
## 30404                                                                                                                           EE riding bus to dot when the bus rear view mirrorstruck the mirror of a passing 18-wheeler which caused glass to fly into EE's left eye
## 30405                                                                                                                                               EE riding down hill on bicycle when a student ran in frt of the bicycle-EE applied brakes and the bike flipped over.
## 30406                                                                                                             EE riding elevator 2nd floor from 3rd floor eleva-tor dropped doors came off track & elevator jolted& stuck between floors. Neck stiffness & headaches
## 30407                                                                                                                                                EE riding elevator to 2nd floor from 3rd floor elevator dropped doors came off track. Neck stiff-ness and headache.
## 30408                                                                                                                                                                         EE riding elevator when elevator stopped suddenly throwing EE to floor causing back injury
## 30409                                                                                                                                                                                              EE riding elevator when it stopped suddenly jarring EE's entire body.
## 30410                                                                                                             EE riding elevator, elevator stopped door opened asee stepped to exit, elevator dropped 4" causing EE to fall into hallway, injured arms, backand knee
## 30411                                                                                                                    EE riding front seat when we were struck by a vehicle. Passenger in rear seat knee ran into backof seat. Injured face, nose, neck and lt ankle.
## 30412                                                                                                                                                                                          EE riding gator with open windshield-something caused burning in left eye
## 30413                                                                                                                                                                                   EE riding horse when strap on saddle broke causingee to be thrown from the horse
## 30414                                                                                                                                                                                                EE riding in back of dietary trk and cart came loose hitting truck.
## 30415                                                                                                                                     EE riding in golf cart, stacey pulled EE head overand while doing so my tooth or sunglasses busted my lip. Bruise to upper lip
## 30416                                                                                                                                  EE riding in horse and buggy during historical parade-foot got caught on crinoline slip when exiting buggy and fell into highway.
## 30417                                                                                                                                                          EE riding in pickup, stopped at t intersection, driver did nto see oncoming car, pulled out and truck car
## 30418                                                                                                                                                                                     EE riding in swamp buggy, crossing canal, buggy slipped, EE fell into canal ()
## 30419                                                                                                                                                                                     EE riding in trk and thrown into dashboard when rt frt wheel fell into a hole.
## 30420                                                                                                                                                                     EE riding in trk and thrown into w/shield when rt frt wheel fell into hole injuring head/neck.
## 30421                                                                                                                                                                               EE riding in truck p735 when it was struck by a privately owned vehicle. Lower back.
## 30422                                                                                                                                                                                        EE riding in van coming from football game when hit by oncoming veh headon.
## 30423                                                                                                                                                                                             EE riding in van returing from football game when van was hit head on.
## 30424                                                                                                                                                                                   EE riding in van returning from football game whenstruck headon by oncoming veh.
## 30425                                                                                                                                                                              EE riding in van returning from football game whenvan was hit head on by another veh.
## 30426                                                                                                                                                                                              EE riding in van returning from football game whenvan was hit headon.
## 30427                                                                                                                                                                                            EE riding in van-when driver went over a bump EE hit head on top of van
## 30428                                                                                                                                                       EE riding in vehicle, another vehicle struck the vehicle he seperated from behind. Injured hand & neck area.
## 30429                                                                                                                        EE riding lawn mower mulchinx leaves at side of adams bldg subject walked by me & hit my shoulder with his arms hand brick dropped on knee.
## 30430                                                                                                                                                         EE riding merry-go-round with clients and lost footing and fell scraping left shoulder and pain in rt knee
## 30431                                                                                                                                                                                           EE riding on back of golf cart-coworker hit cart crushing EE's left foot
## 30432                                                                                                                                                                                    EE riding on back of truck-driver turned to fast and threw EE off back of truck
## 30433                                                                                                                                                                          EE riding on rear of truck driver applied brakes EE complained of being hit in groin area
## 30434                                                                                                                                                                                        EE riding van returning from football game when another veh hit van headon.
## 30435                                                                                                                                                                              EE riding whith another EE when the other EE turned left in front of another vehicle.
## 30436                                                                                                                  EE riding with group attending training. Another vehicle approaced car from opposite direcion, trailer came off back and hit EE car. Lt knee/ribs
## 30437                                                                                                                 EE riding with group attending training. Another vehicle approached car from opposite direction, trailer came off back and hit EE veh. Knees/lw bk
## 30438                                                                                                                                           EE right foot caught in chair and fell - hitting nose on edge of guest chair, bruising both knees &jammed right shoulder
## 30439                                                                                                                                                                         EE right foot slipped in water on the floor and fell on left knee. Low back/hip/left knee.
## 30440                                                                                                                                                                    EE right foot was crushed by a machine operated byco-worker while working on a highway project.
## 30441                                                                                                                                          EE right hand was hit by a stack of two (2) traffic cones while they were being placed on another stack of traffic cones.
## 30442                                                                                                                       EE right leg was noticed to be swollen, EE had a previous injury to same body part. Swelling was noticed while performing regular job duties
## 30443                                                                                                                                                                                                       EE right shoulder trying to lift patient onto his wheelchair
## 30444                                                                                                                                                                                                       EE right thumb was caught between the stretcher and the rail
## 30445                                                                                                                                                                                  EE rinsing empty cans with lids-one lid coming outand cut EE on rt middler finger
## 30446                                                                                                                                                                                     EE rinsing sheet pan-placed in sterlizing sink- when removing pan burnt rt arm
## 30447                                                                                                                                   EE ripping a piece of plywood for use as counter top when the pylwood kicked backwards causing injury to left hand little finger
## 30448                                                                                                                                                                                   EE rising garage door, middle finger of lt hand caught in door as it was raised.
## 30449                                                                                                                                       EE rocky mountain spotted fever from tick bite checking research plots at mason farm injury bite on right leg (body systems)
## 30450                                                                                                                        EE rolled a downed tree with a log roller to free bound chainsaw, a sapling caught under tree and snapped back hitting EE lower left leg ()
## 30451                                                                                                               EE rolled a tv cart(pushing/pulling)out of the wayin order to inventory equipment that was behind the cart. When she moved the cart she felt a sharp
## 30452                                                                                                                                                                                                                    EE rolled ankle on gravel. Sprained left ankle.
## 30453                                                                                                                                                                    EE rolled back in chair to get up-chair got stuck in carpet and turn over-EE landed on rt knee.
## 30454                                                                                                                                                                             EE rolled desk chair away from desk and bumped left ankle against bottom edge of desk.
## 30455                                                                                                                  EE rolled down bed to chainge patients diaper, EE pulled down the sheet and patient kicked EE on theright side of her face around the cheek bone.
## 30456                                                                                                                                                                                                                                             EE rolled golf cart ()
## 30457                                                                                                                                                                                        EE rolled his ankle when stepping off of the sidewalk into his golf cart ()
## 30458                                                                                                                                                                               EE rolled left ankle while walking to hotel during work-related travel in seattle wa
## 30459                                                                                                                                                                                               EE rolled on left ankle assisting with taking pa- tient down in pic.
## 30460                                                                                                            EE rolled out the recycle bin to tylerhall's dumpster to empty it. He asked for help but did not get any EE pulled the recycle bag & felt a burning dow
## 30461                                                                                                                                                                                                      EE rolled right ankle while walking on unpaved parking lot ()
## 30462                                                                                                                      EE rolled the trash can to the dumpster and lifted the bag to put it in the dumpster with her right hand and felt a pull on her left side. ()
## 30463                                                                                                                       EE rolled to give the soap to a patient and the chair rolled out from under her and fell on her knees and had knee replacement sx in 10/2002
## 30464                                                                                                                                                                                      EE rolled to outside on right ankle as he was pushing mowing to edge of back.
## 30465                                                                                                                                            EE rollerskating with special skills group- ran into wall at high rate of speed to avoid collision and hit nose on wall
## 30466                                                                                                                                                                                EE rolling ball cart and mats out of room caught wrist between cart and metal door.
## 30467                                                                                                                                                                                  EE rolling barrell down hill-attempted to grabbed barrell and yanked rt shoulder.
## 30468                                                                                                                                                                     EE rolling chair from computer to printer-rt side of body hit floor especially knee & shoulder
## 30469                                                                                                                                                                          EE rolling food cart thru security slider & got left hand caught between door & foot cart
## 30470                                                                                                                                                                               EE rolling small roller onto trailer-arm of rollerfell back striking EE on left knee
## 30471                                                                                                                                                                                                  EE rolling two chairs across p/lot and tripped over cement block.
## 30472                                                                                                                                                                            EE rolling up a section of wire, the wind picked upand blew something into EE left eye.
## 30473                                                                                                                                                                                   EE rose from filing and hit hand on filing shelf (metallic edge)-cut on forehead
## 30474                                                                                                                                                        EE rose from her chair suddenly and accidently tripped/stumbled causing extreme pressure on her right foot.
## 30475                                                                                                                                                                                  EE rose from her desk and moved toward her copier. She lost her balance and fell.
## 30476                                                                                                                                                                                              EE rotated her hip during a child pic training and felt a sharp pain.
## 30477                                                                     EE routinely squeezes hose sprayers and handles of cleaning instruments repetitively. She regularly pushes and pulls equipment around work area and is on her feet on uneven work surfaces. ()
## 30478                                                                                                                            EE rpts pain/both hands-repetitive computer use **average tpd monthly is $362. 87*** **EE began working w/diff er 1/3/02 at $1789. 87**
## 30479                                                                                                                                                                                                          EE rreached for paper on shelf and hit head while reading
## 30480                                                                                                                                                                                                                     EE rt finger rubbed against the edge of hubcap
## 30481                                                                                                                                                                                                                                  EE rt finger was closed in a door
## 30482                                                                                                                                                                                                                                    EE rt finger was closed in door
## 30483                                                                                                                 EE rt foot hit the leg of a table. EE lost balance& fell into an unused computer table. Fall caused EE to hit lt shoulder causing a severe bruise.
## 30484                                                                                                                                                       EE rt foot slid into a pipe causing a cut at the top of foot and a severe contusion with broken blood vessel
## 30485                                                                                                                                                                                                                        EE rt foot slipped while exiting a van door
## 30486                                                                                                                                                                                                                           EE rt hand finger was caught in the door
## 30487                                                                                                                                                                                                                      EE rt hand finger was caught in the trap door
## 30488                                                                                                                                                                                                                         EE rt hand finger was shut in a metal door
## 30489                                                                                                                                EE rt hand got caught in the file drawer. Tried to release drawer and drawer caught tip of hand and tore tissue off of her rt hand.
## 30490                                                                                                                                                                                                                 EE rt hand was caught between the bar and the door
## 30491                                                                                                                                                                                                  EE rt hand was caught between the handle & the refrigerator door.
## 30492                                                                                                                                                                                                                  EE rt hand was caught between two pieces of metal
## 30493                                                                                                                                                                                                                          EE rt hand was caught in the control door
## 30494                                                                                                                                                                                                                              EE rt index finger was caught in gate
## 30495                                                                                                                                                                                               EE rt index finger was cut with a saw blade while working in the lab
## 30496                                                                                                                                                                                                                    EE rt index finger was struck by by door lever.
## 30497                                                                                                                                                                                                                                   EE rt index was caught in a gate
## 30498                                                                                                                                                                EE rt knee slipped out whne EE was doing a pic take down move. The knees started to swell and hurt.
## 30499                                                                                                                                                                                                     EE rt middle finger was closed in auto door causing laceration
## 30500                                                                                                                                                                                                                         EE rt thumb cut as EE opened cabinet door.
## 30501                                                                                                                                                                                                                        EE rt thumb was caught between a steel door
## 30502                                                                                                                                                                                                                                 EE rt thumb was caught in the gate
## 30503                                                                                                                                                                                                 EE rt thumb was caught in the hand rail at the bottom of the steps
## 30504                                                                                                                                                EE rt upper chest injured when tackling a fleeing suspect during foot persuit. Upper rt chest - scraped and bruised
## 30505                                                                                                                                                                                             EE rt wrist was injured during self defense class by another employee.
## 30506                                                                                                                      EE rtn from an out of town teaching assignment and was unpacking the vehicle and was lifting heavy equipment and twisted back while doing so.
## 30507                                                                                                                                                                                           EE rubbed her left eye after she took off the glove that she was wearing
## 30508                                                                                                                                                      EE rubbed his hand across the back of a chair in building lobby and cut top of right hand on protruding nail.
## 30509                                                                                                                                        EE rumors spread about her involvement with a third party. Caused her emotional stress & depression. Stress and depression.
## 30510                                                                                                                                                                       EE running & stepped in pothole. Causing extreme pain to right ankle as foot rolled outward.
## 30511                                                                                                                                                                                               EE running 2. 5 miles in formation when top of rt foot began aching.
## 30512                                                                                                                                                                 EE running 300 meter run, when felt severe pain in upper leg area determined EE sprained lft groin
## 30513                                                                                                                                                                                                  EE running across campus to respond to a call, injured right heel
## 30514                                                                                                                                                      EE running across front yard to an emergency when her lt leg gave way and her hip popped. Pain in lower back.
## 30515                                                                                                                       EE running after inmate in attempt to get contra- band from an inmate. EE slipped & fell on concretesidewalk hitting rt elbow and both knee.
## 30516                                                                                                                                 EE running after inmate in attempt to get contrabdfrom inmate, EE slipped and fell on concrete sidewlabrasion rt elbow, both knees
## 30517                                                                                                                                                                                              EE running after suspect trying to flee from scene and fell on rt arm
## 30518                                                                                                                                                               EE running an obstacle course in a air walk during a departmental retreat when he strained his neck.
## 30519                                                                                                                                                                                     EE running behavioral intevention-rt ring finger got caught on client's helmet
## 30520                                                                                                                         EE running chain saw. Went to step over tree log and his foot got hung on a limb which knee to pop out of joint. Rt knee popped out joint.
## 30521                                                                                                                                                                                                  EE running client intervention when client bit EE on the left leg
## 30522                                                                                                                                                                                                EE running clients program-client scratched EE on left index finger
## 30523                                                                                                                                                  EE running computer cabel thru ceiling-ladder slipped causing EE to fall to floor injuring rt shoulder, left leg.
## 30524                                                                                                                        EE running down stairs in pursuit of an individualwho had been reported to campus police in attempt to detain him. Bruised heel on landing.
## 30525                                                                                                                                                                                                                       EE running down steps and twisted left knee.
## 30526                                                                                                                   EE running during per exericse and pulled muscle in lt leg. EE acting in capacity of an escape inmate to allow pert & dog handlers. Lt mid calf.
## 30527                                                                                                                                           EE running during physical training at basick law enforcement training and develop a pain in left shin and right shin ()
## 30528                                                                                                                                                                                       EE running hot water from hose which suddenly turned up and burned rt wrist.
## 30529                                                                                                                             EE running in response to a call for assistance, injured both legs, felt no pain until next day strain to both legs in the shin region
## 30530                                                                                                                                         EE running mop water in j. C. And tried to catch light bulbs falling, hit right hand on the wall, jamming her right thumb.
## 30531                                                                                                                              EE running obstacle course went under door behind another EE door injured lt shoulder and elbow. Lt shoudler and elbow/badly bruised.
## 30532                                                                                                                           EE running out back door of office, fell off side of newly-installed handicap ramp. This fall resulted in twisting/spraining of rt ankle
## 30533                                                                                                                               EE running police officer physical abilities test came upon tire rut course ankle popped & fell to the ground. Spraining right ankle
## 30534                                                                                                                                                                                                            EE running relays w/clients and felt pain in left calf.
## 30535                                                                                                                       EE running sprints while particpating in srt training when he heard a pop & felt lt-hamstring tighten which caused sharp pain. (tight\\sore)
## 30536                                                                                                                                                                                     EE running through a heavy wooded area pursuing anoffender, injured left foot.
## 30537                                                                                                                                                     EE running through woods after suspect and trippedover some small trees and undergrowth falling on right hand.
## 30538                                                                                                                                                                                                                EE running to a code-4 (fight) EE rolled left-ankle
## 30539                                                                                                                                                                                                   EE running to answer telephone. Foot got tangled fell on rt knee
## 30540                                                                                                                                                                                 EE running to assist in rescue and stepped in holein process spraining left ankle.
## 30541                                                                                                                                                                   EE running to class-stepped hard on uneven road felt sharp pain in middle of right foot-fracture
## 30542                                                                                                                                   EE running to disturbance in inmate dormitory, when he slipped and fell on concrete walkway. Contused, abraded knees and rt hand
## 30543                                                                                                                                                                                                          EE running to formation area and slipped and fell on ice.
## 30544                                                                                                                                                                  EE running to library in response to fire alarm, slipped on wet sidewalk, struck arm on handrail.
## 30545                                                                                                                                                            EE running to observe inmate activity, EE stepped down in hole twisting left ankle sprain to left ankle
## 30546                                                                                                                                                               EE running to pick up water cup lid stepped in pot hole fell injury to hip, right hand, wrist & back
## 30547                                                                                                                        EE running toward bldg to open door for students that thought a tornado was approaching when she fell on grass-left shoulder/elbow-low back
## 30548                                                                                                              EE running two mile for pert team his leg started aching, didn't realize it was hurt until later. Lt knee possible torn ligament (sore, red, swollen)
## 30549                                                                                                                                                        EE running up stairs responding to code when he felt sharp pain in right ankle/foot-pain increasedwith time
## 30550                                                                                                                               EE running up the lower level of steps to et the mobile unit in order to check on a suspicious vehicle when he turned his left ankle
## 30551                                                                                                              EE running, felt sharp pain left achilles tendon. Determined the left achilles was offset from bone, also inflammed & lining surround tendon detached
## 30552                                                                                                                EE ruptured bulged disc in area of l5 & s1 when hewas operating in an awkard angle having to apply pressure with an elevator in extraction of tooth
## 30553                                                                                                                                                                               EE ruptured rt achilles tendon when dismounting bike while chasing a fleeing suspect
## 30554                                                                                                                                                           EE rushing across her office to answer the phone &tripped over garbage can falling on desk across chair.
## 30555                                                                                                                                                                       EE said a pt was extremely angry threw a pool stick and hit EE on top of the head very hard.
## 30556                                                                                                                            EE said client was getting on couch. EE helped herstaff remove. Client caused fall to floor. EE injured strain back, rt knee, rt thumb.
## 30557                                                                                                             EE said during grooming time I asked a jackson to go to bathroom but he fell to floor & refusing to go. Rt knee pattello/emoral syndorme some lacerat.
## 30558                     EE said he was unloading postal containers, turning them to line them up at the x-ray machine. When he got in car to go home he realized he couldn't lift his right arm fully or stretch it out without pain. He was having pain in his chest.
## 30559                                                                                                                                              EE said he was using box cutter to cut rope and the box cutter slipped and punctured upper portionof left arm muscle.
## 30560                                                                                                                                     EE said his back was hurting, did not want to go to emergency room would wait to see if better 7/16 not better injury low back
## 30561                                                                                                                EE said phone rang picked up phone was attempting to sit down in chair. Chair slipped from under herfell on floor hit back - injured rt lower back.
## 30562                                                                                                                                                                                EE said she got bit by something but denied knowing by what - ants recently on unit
## 30563                                                                                                                                                                       EE said she had turned a file cabinet over on her, it knocked her back into the table behind
## 30564                                                                                                                                                                            EE said she stepped wrong and twisted her ankle. She heard a snap work no- 919-575-1966
## 30565                                                                                                                                                                          EE said she walked around the corner too fast, herknee gave way and she strained her back
## 30566                                                                                                               EE said she was in the #3 trailer she was putting saftey strap in place to secure baskets in front trailer when her foot slipped and fell on lt knee
## 30567                                                                                                                                                                    EE said she was lifitng and pulling a wheelchair and strained the muscles in her left rib cage.
## 30568                                                                                                                                                                                                      EE said she was mopping and felt a sorness in her rt shoulder
## 30569                                                                                                                 EE said she was moving furniture on 2/16/2010, on 2/17/2010 she was taking out the trash and noticed a pain in the upper left part of her back. ()
## 30570                                                                                                                                                 EE said she was spraying the elevator wall and thechemicals splashed in her face and a little got onher upper lip.
## 30571                                                                                                                                                            EE said she was stepping to place door stopper under door when she felt somehting pop in her lower back
## 30572                                                                                                                                                            EE said that after responding to a call and running to the halifax dorm, his left knee started to hurt.
## 30573                                                                                                                                              EE said that he was working in door he was removing the lt security cover when it broke loose and smashed his lt hand
## 30574                                                                                                                                                                                                 EE said that she was pulling bag out of trash can and ant bit her.
## 30575                                                                                                                                                  EE sampling @ streamside, slipped on bank fell to creek bed, contact with poison ivy and contusion to lf shoulder
## 30576                                                                                                                                                                                                               EE sanding board & fingers came in contact with belt
## 30577                                                                                                                                                                                              EE sanding frp coupon & splinters got under index finger & on rt hand
## 30578                                                                                                                                             EE sat at the officer's table with her legs crossed EE could not move at all and req to call 911 EE has a slipped disk
## 30579                                                                                                                                                                   EE sat at the table and the table fell striking her rt leg below the knee and landed on big toe.
## 30580                                                                                                                                            EE sat back in chair and back of chair gave way. EE jerked forward to avoid falling out of chair and injured lower back
## 30581                                                                                                                                                                      EE sat back in chair and the chair back gave way causing EE to land on his back on the floor.
## 30582                                                                                                                                                              EE sat down & chair rolled from underneath her causing EE to fall injuring right side-rt arm-rt wrist
## 30583                                                                                                                                                                              EE sat down at work area after changing the patients and felt pain in the lower back.
## 30584                                                                                                                 EE sat down beside file cabinet going through forms leaned forward to pick up soda the fan fell over and hit EE in the head and the cover came off
## 30585                                                                                                                                                                                                              EE sat down in a broken chair injuring her lower back
## 30586                                                                                                                                         EE sat down in a chair and it tipped forward and fell in the floor and 31 weeks pregnant-did not know the chair was broke.
## 30587                                                                                                                                           EE sat down in a chair and the chair broke causingee to fall straight down to the floor used his hand to brace his fall.
## 30588                                                                                                                                                                                       EE sat down in a chair when the chair broke causing him to fall to the floor
## 30589                                                                                                                                                                                          EE sat down in a metal chair the chair collapsed and EE hit head on wall.
## 30590                                                                                                                                                        EE sat down in broken chair and it started to fall-EE tried to catch herself from falling and strained back
## 30591                                                                                                                                                                                                                              EE sat down in chair & it turned over
## 30592                                                                                                                                                                                         EE sat down in chair and fell out out chair hitting metal support bracket.
## 30593                                                                                                                                                                             EE sat down in chair to reach the bottom drawer and the chair slid out from under her.
## 30594                                                                                                                                                     EE sat down in chair which broke and caused EE to fall backward, hitting head on black wall and injuring knee.
## 30595                                                                                                                               EE sat down in chair which is tilted down (broken)and she could not wlak from the weight put on herself from the chair being tilted.
## 30596                                                                                                                           EE sat down in chair which was sitting on plastic chair pad. Chair slipped out for under her. Sat down hard on floor. Injured tail bone.
## 30597                                                                                                                                                                      EE sat down in chair, chair moved causing her to fall to the floor & injure her left shoulder
## 30598                                                                                                                                                           EE sat down in chair; EE fell over to right side; leg fell off chair; EE fell to the floor on right side
## 30599                                                                                                                EE sat down in driver's seat of state vehicle withbriefcase in lap. Picked up briefcase to place in passenger seat floorboard area. Shoulder popped
## 30600                                                                                                                                                                                          EE sat down in grassy area while waiting to work k9; EE sat in poison ivy
## 30601                                                                                                                              EE sat down in med room to sign forms & suddenly felt someone jump on her back & grab her around the neck, hitting her head and ears.
## 30602                                                                                                                                         EE sat down in rocker-rocking back the whole chair went back EE put arm down to catch herself injury to left arm and elbow
## 30603                                                                                                                                                    EE sat down in the chair to sign his time sheet when the chair collapsed to the floor, and he hit the floor. ()
## 30604                                                                                                                                       EE sat down in white plastic chair and it gave waycausing her to fall. Injury t o right shoulder, cervical and lumbar strain
## 30605                                                                                                                                                                                    EE sat down on chair and seat was broken and shifted tossing EE on her backside
## 30606                                                                                                                                         EE sat down on chair in workroom and the chair back gave way. EE fell back and jerked forward and felt pain in lower back.
## 30607                                                                                                                                        EE sat down on rock ledge next to the window. A wind gust blew a box fand sitting in the window, striking EE on the head ()
## 30608                                                                                                                                                                               EE sat down on scales in order to balance scale. EE fell off landing on her left hip
## 30609                                                                                                                              EE sat down on stool and ankle caught in the leg of the stool, stool slipped out from under EE, caughright ankle causing it to twist.
## 30610                                                                                                                                                      EE sat down on the chair and legs broke and screws rolled across the floor. EE hurt his lower back left side.
## 30611                                                                                                                                                        EE sat down on unlevel bucket and caught self withall of his wt. On rt leg. ***form 63 processsed 6-23-08**
## 30612                                                                                                                            EE sat down too close to front edge of chair. Chair tipped forward throwing him to floor on buttocks and rolling back with feet in air.
## 30613                                                                                                                                                                                                    EE sat in a broken chair and fell backwards; injured lower back
## 30614                                                                                                                                                                            EE sat in a chair and the chair broke and EE fell out of it, hitting her head and back.
## 30615                                                                                                                                     EE sat in a chair in food service office, felt twist in lower left back, experienced sharp pain, burning sensation thereafter.
## 30616                                                                                                                  EE sat in a chair that appeared to be intact but the seat was completely out of it. EE injured back when she tried to catch herself from falling.
## 30617                                                                                                                                                                                                            EE sat in a chair that was broken & fell onto the floor
## 30618                                                                                                                                                                                                      EE sat in chair & it collapsed resulting in multiple injuries
## 30619                                                                                                                                                                               EE sat in chair & it collapsed, EE fell onto floorbruiseing lt shouder & lower back.
## 30620                                                                                                                                                                                       EE sat in chair and it broke causing EE to fall injuring back, legs and arms
## 30621                                                                                                                                                                                                       EE sat in chair and it broke causing EE to fall to the floor
## 30622                                                                                                                                                                                                     EE sat in chair and it broke falling to floor landing on back.
## 30623                                                                                                                                       EE sat in chair and placed her hand under the chair in order to pull chair up to desk. She cut left third finger on a staple
## 30624                                                                                                                                                                                       EE sat in chair and the back gave way. EE fell to the left and twisted back.
## 30625                                                                                                                   EE sat in chair next to student, the chair collapsed causing her to fall to the floor and injure her buttocks, tailbone, lower back and head. ()
## 30626                                                                                                                                                                 EE sat in chair than had a broken piece and was unstable, chair collasped and scratched right leg.
## 30627                                                                                                                                                                                        EE sat in chair the chair popped up and EE fell to the floor on both knees.
## 30628                                                                                                          EE sat in chair to turn on computer; the chair rolled from underneath her. She slipped out of the chair and fell to the floor injuring her left wrist. ()
## 30629                                                                                                                                                                                            EE sat in chiar, chair and chair roller from underhim hi head hit wall.
## 30630                                                                                                                                                                     EE sat in elevator on floor 1-pushed button to go down-elevator fell hit bottom spring jerked.
## 30631                                                                                                                             EE sat in his new chair and the chair broke, EE hithis l chin on the desk, falling to the floor, hit his r shoulder and r side of head
## 30632                                                                                                                                        EE sat in office chair and felt stinging pain in right buttocks; EE stood and saw sewing needle sticking from seat of chair
## 30633                                                                                                                                                    EE sat in plastic chair which collasped causing eeto fall backwards hitting head on wall-strained back and neck
## 30634                                                                                                                                                                                                               EE sat on bench and felt a splinter go into rt thigh
## 30635                                                                                                                                                                                    EE sat on bench, swung her legs back under bench & struck right ankle on beanch
## 30636                                                                                                                                                                                     EE sat on chair in nurses station, chair flipped over backwards, fell on floor
## 30637                                                                                                                                                            EE sat on edge of chair & fell to cement floor hitting buttocks, lower back and cervical areas on floor
## 30638                                                                                                                                                EE sat on edge of chair and chair rolled out from under EE and EE fell on the floor. Right leg, righthip, and back.
## 30639                                                                                                                                                                  EE sat on patients bed and held her while discussing the death of her room mate. Scabies exposure
## 30640                                                                                                                                                         EE sat on table and it started to fall, getting off table but went down with it, table fell on my left leg
## 30641                                                                                                                                                                            EE sates reinjured back while taking patient neru-vascular status in lower extremities.
## 30642                                                                                                                 EE sates she had put a contaminated needle on a paper towel b/c there was no sharps container available and when she went to pick up stuck rt hand
## 30643                                                                                                                        EE sates she was walking down the admin. Hall and the inmate had just mopped the floor foot slipped on the wet floor and her rt leg twisted
## 30644                                                                                                                           EE sates that he was involved in un-armed self defense between 8-11 am. Next morning had pain in his left shoulder and neck on left side
## 30645                                                                                                                                                  EE sates that he was searching an inmates property when his finger struck against razor blade in the inmate's bag
## 30646                                                                                                                                       EE sates that she stumbled on brick flooring in front of entrance to bldg knoocking glasses across the uneven brick flooring
## 30647                                                                                                               EE sates that while he was sprinting he hit unevenground and lost balance. While he was falling he attempted to keep hitting face, landed on rt knee
## 30648                                                                                                                                                                                         EE sates the ceciling where she works falling on on her. Injured shoulder.
## 30649                                                                                                                                        EE sates while working @ the universities off site storage facility he injured rt hand, arm, shoulder & upper back area. ()
## 30650                                                                                                                                                         EE sates writer left out of the chart room and thepatient jumped up and struck EE in the face unpro voked.
## 30651                                                                                                                                                  EE satted that while walking inspecting doors and gates he stepped on some black ice in the parking area and fell
## 30652                                                                                                                                                     EE sattes I was crawling under building locating leak from first floor pipes when I twisted and pulled my back
## 30653                                                                                                                                                                                EE saw a mouse in the copier room and got scared proceeded to run and twisted ankle
## 30654                                                                                                                           EE saw a pt leaning sideways about to tilt chair over unto another pt. EE help another EE put pt on the bed. Pain in the middle of back.
## 30655                                                                                                                                                     EE saw a veh coming towards him-att to get into veh had hand on inside of door as veh struck him injuring hand
## 30656                                                                                                                                                      EE saw client put another EE in headlock-attempting to help other EE when EE hit left arm on ping pong table.
## 30657                                                                                                                  EE saw immate in wheel chair trying to stand immate fell EE grabed immate to prevent hitting head EE pulled him towards him causing pain shoulder
## 30658                                                                                                                                                                                                                                      EE saw little red dot on arm.
## 30659                                                                                                                                                                               EE saw patient to consulate room for treatment. Eecontracted head lice from patient.
## 30660                                                                                                                         EE saw patient walking into the dayroom & asked ifhe was alright & patient came @EE swinging and EE pushed him back and fell on the floor.
## 30661                                                                                                                                                                                    EE saw resident about to fall and I caught resident before he hit the floor. ()
## 30662                                                                                                                                                                           EE saw resident getting up tried to stop him, EE and resident both fell to the floor. ()
## 30663                                                                                                                   EE sawed into hornet nest and was stung once. EE was removing downed tree. Hornet sting to rightwrist, swelling, stinging and red streaks on arm
## 30664                                                                                                                                                      EE sawing a piece of plywood and table saw grabbedplywood and threw back ripping nail of rt 4th digit finger.
## 30665                                                                                                                                                                                EE sawing thru tree when saw hung in the log causing saw & hands to thrust forward.
## 30666                                                                                                                                                                                                        EE says a client stopped walking and she strained her back.
## 30667                                                                                                                                                                   EE says box of sugar fell on herr rt foot. EE inspecting contents of box. Bruised rt foot & toe.
## 30668                                                                                                                                                                              EE says he was on his way to work at 4 am and hit a deer and it upset his back injury
## 30669                                                                                                                                                                                                     EE says he was struck with a baton during use of force in hcon
## 30670                                                                                                                                                                                       EE says her r knee starting burning while she was pushing a medication cart.
## 30671                                                                                                                                                                            EE says she felt a pop on her back after lifting a client. EE seen at er rtw 9/29/09 ()
## 30672                                                                                                                                                                                                                 EE says she felt back pain while changing a client
## 30673                                                                                                                                                                                                         EE says she injured her lower back while pivoting a client
## 30674                                                                                                               EE says she needs an appt due to pain in l wrist from repetitive strain injury. EE's primary doctoralso recommended she be seen for this. EE would l
## 30675                                                                                                                                                       EE says she stepped from a concrete slab to the ground. EE caught herself on car and twisted her right foot.
## 30676                                                                                                                                                    EE says she suffered smoke inhalation when inmate set fire to cell and she helped pull inmate out ofcell block.
## 30677                                                                                                              EE says she thought a client was going to fall andshe tried to grab him. EE says her back popped. Eewas seen in the er & taken out of work for 7 days
## 30678                                                                                                             EE says she was injured either 4-30-09 between 1-5 pm or 5-01-09 @9:30 am. EE said she felt tension in rt lower back when she arrived to work on 5-1-0
## 30679                                                                                                              EE says she was on her way to change a client. Herfoot became stuck on some dried pepsi on the floor& she fell. She injured her left knee, left wrist
## 30680                                                                                                              EE says student had been restrained & was upset w/security officer. Handcuffs removed, student ran for door causing EE's arm to jolt & finger caught.
## 30681                                                                                                                                                                              EE says that while walking with his litter crew he felt a sharp pain in his low back.
## 30682                                                                                                                                                                               EE scaled a wall, stepped down onto a cabinet and then jumped to floor injuring heel
## 30683                                                                                                                                                                                   EE scalling/root, planing/polishing/flossing teeth job is repetitious in nature.
## 30684                                                                                                                                                                                                               EE scraped arm against open ??? Door while checking.
## 30685                                                                                                                                                                                                               EE scraped eyelid on trellis wire while bending down
## 30686                                                                                                                                                                                            EE scraped finger on cage door and wound had reaction to disinfectant .
## 30687                                                                                                                                                                                                                 EE scraped her right lower leg on a piece of metal
## 30688                                                                                                                                                                                         EE scraped his arm while helping restrain an inmate during a use of force.
## 30689                                                                                                                                                                                                                               EE scraped his hand on a rusty nail.
## 30690                                                                                                                        EE scraped his right knuckle restraining a studentwhich did not bleed. Also, the next day EE hit er hand again & opened up the wound again.
## 30691                                                                                                                                                                                                                                      EE scraped knee on planter ()
## 30692                                                                                                                                                                                                        EE scraped palm of hand on a sharp edge of a cart handle ()
## 30693                                                                                                                                                            EE scraped top left side of left foot on the filing unit as she was moving from one aisle to another ()
## 30694                                                                                                                                                                          EE scraping caulk on wall, painting tool slipped off working surface stricking upper lip.
## 30695                                                                                                                                                                                                 EE scraping snow off windshield and slipped on ice injuring wrist.
## 30696                                                                                                                                                                                                                  EE scratced by a rat during admin. Of anesthesia.
## 30697                                                                                                                                                             EE scratched agressive patient while trying to puthim in therapeutic hold. Minor lacerations to hands.
## 30698                                                                                                                                                                                                          EE scratched by patient while assisting pt in bathroom ()
## 30699                                                                                                                                                                                                                   EE scratched finger on protruding dead bolt lock
## 30700                                                                                                                                                                                                        EE scratched her elbow and arm while performing a training.
## 30701                                                                                                                                 EE scratched left index finger with needle used togive allergy injection needle bounced out of patients arm & scratched EE finger.
## 30702                                                                                                                                                                                                             EE scratched palm on sharp object in trash dumpster ()
## 30703                                                                                                                                                                                                                             EE scratched r forearm on file cabinet
## 30704                                                                                                                                                                                                                                               EE scratched rt eye.
## 30705                                                                                                                                                                        EE scratched rt posterior forearm while assisting resident in bed. Sent for tetanus update.
## 30706                                                                                                                                                      EE scrubbed dishes with bleach. EE had gloves on but arms above gloves broke out in rash from bleach exposure
## 30707                                                                                                             EE scrubbing floor w/long handle brush between thewindow & step rails, was bent over, when he raisedup he hit his back/spine on shelve st end of rails
## 30708                                   EE scrubbing stalls, using toilet bowl cleaner to remove heavy soap scum from the soap dishes, then wiped down with rag that had bleach on it. When EE inhaled fumes, it caused a shortness of breath and tightness in chest. ()
## 30709                                                                                                                                               EE search of inamtes bed he was stuck by a sewing needle lt ring finger by a needle that was in bed. Lt ring finger.
## 30710                                                                                                                                                                                             EE searching inmate jacket & cut left finger on razor blade in pocket.
## 30711                                                                                                                                EE searching inmate locker when inmate became agressive & altercation took place causing EE to strike r hand on metal bed frame. ()
## 30712                                                                                                                                                                  EE searching inmate that had poison ivy on clothesee developed poison ivy on right leg/foot/groin
## 30713                                                                                                                EE searching inmate's locker, EE ran right hand along front inside edge and stuck his middle fingron homemade tattoo needle. Puncture to right figr
## 30714                                                                                                                                                          EE searching inmates personal property, wearing latex gloves, EE pricked by safety pin on left mid finger
## 30715                                                                                                                                       EE searching rec bldg., reached hand into bush to retrieve suspected contraband & was bitten on lt index finger by an insect
## 30716                                                                                                                                         EE searching under sink and opened up a protectivecap covering pipes and was stuck by a tattoo needle on left index finger
## 30717                                                                                                                                                                               EE searching woods for hit and run driver injury entire body became covered in ticks
## 30718                                                                                                                                                        EE seated at desk, reached forward to pick up envelope chair slipped from under her when her weight shifted
## 30719                                                                                                                                                                                           EE seated at keyboard-front panel became dislodge and fell on left foot.
## 30720                                                                                                                         EE seated by a computer when she turned to respondto a question, she hit her head on safety device on back of computer. Contusion to head.
## 30721                                                                                                                                                                 EE seated in his patrol car parked on shoulder, hisvehicle was struck from rear by another vehicle
## 30722                                                                                                                                           EE seated in his vehicle investigating a previous collision when EE vehicle was struck by another vehicle injury to back
## 30723                                                                                                                                          EE seated in veh behind a stopped violator-anotherveh slowed to pass EE and hit a second veh-pushing2nd veh into EE's veh
## 30724                                                                                                                                                                     EE secluding patient when patient became combative & began kicking. Lumbar region strain spasm
## 30725                                                                                                                                                                                  EE securing cell for showers, cell door closed on left hand and smashing EE thumb
## 30726                                                                                                                                                                                                                EE securing entrance door closed finger in door jam
## 30727                                                                                                                                                                                                       EE securing inmate in car-closed door on right middle finger
## 30728                                                                                                                                                                  EE securing pad lock to gate when he stepped on edge of concrete sidewalk causing injury to ankle
## 30729                                                                                                                                                                                                EE securing trolley in order to client on it. Client bit right arm.
## 30730                                                                                                                                                  EE securred outside sally port gate. EE retured tocare when gust of wind caught door-striking her ltside of face.
## 30731                                                                                                                                                                                EE seizing property inside a taxpayers home EE informed taxpayer had TB TB exposure
## 30732                                                                                                                                                                                     EE sent over computer and cut back of head on nail protruding from shelf above
## 30733                                                                                                                                       EE separated his shoulder struck the mat as supt wallace rolled him into the prone position during a defen tactic technique.
## 30734                                                                                                                                                           EE separated three juveniles who were fighting, twisted his knee while restraining one of the juveniles.
## 30735                                                                                                                                           EE separating 2 patients that were fighting one ptgrabbed EE around waist & EE felt chest pop & fellinjuring rt arm also
## 30736                                                                                                                                                                                    EE separating student who were fighting when his right index finger was injured
## 30737                                                                                               EE separating two patients when they were in a confrontation. While separating patient's EE states, I turned top half of body w/out using correct body mechanics. ()
## 30738                                                                                                                                                                                                       EE seperating students engaged in fight. Right armcontusions
## 30739                                                                                                             EE served a search warrant at 346 jones st trentonnc and loaded 4video machinces. EE had to unload amachines at dist 11 ale office. Strain lower abdom
## 30740                                                                                                                                                                                         EE served food at graduation leaving she opened the door felt her arm pull
## 30741                                                                                                                             EE servicing a network outlet plate-EE closed doorto typewriter shelf-after completion of work att to reopen door and hand got gouged.
## 30742                                                                                                                                              EE servicing dishwasher at hobbton elem school stepped up on drain to reach hoses slipped & fell on his back on floor
## 30743                                                                                                                                                                                                              EE servicing roof top exhaust and dust got into eyes.
## 30744                                                                                                                                                                     EE serving meat, wnet to place meat on tray, and turned lt ankle wrong, heard a popping sound.
## 30745                                                                                                              EE serving tax warrant, while entering mobile homestepped into hole in floor coverd by carpet, lost balance, fell through door frame injured rt knee.
## 30746                                                                                                                                                                                                                                EE set a 250 pound ?? On her finger
## 30747                                                                                                                                                                                                                                EE set a box on her hand; left hand
## 30748                                                                                                                                             EE set handtrucks upright then handtrucks came back & hit right side of the ribs. EE said that hefelt something "pop".
## 30749                                                                                                                                            EE set leg of chair down on lower portion of leg behind her ankle in the achilles tendon region. Bruising to left ankle
## 30750                                                                                                                                                                    EE set pan down on the trucj and the gravy spilledcausing it to burn EE's left hand and finger.
## 30751                                                                                                                                                                          EE set up machine put plug in outlet started mach electrical short, left arm and shoulder
## 30752                                                                                                                                           EE setting performing daily duties closing out work orders has cused pain in neck shoulder wrist and back from years now
## 30753                                                                                                                                              EE setting snacks on table when client came up andpushed EE causing neck and back to snap and hit chair with stomach.
## 30754                                                                                                                                                                                       EE setting up an activity for an student and injured left shoulder and neck.
## 30755                                                                                                                                                                                              EE setting up cage wash machine when the door dropped down on rt hand
## 30756                                                                                                                             EE setting up computer system, lcd panel overhead projection also taking panel and projector to campus site for training strained back
## 30757                                                                                                                                           EE setting up for a class, stepped over a screen leg support, stepped on a chair leg which slipped & EE fell on (r) knee
## 30758                                                                                                                                             EE setting up for park event involving multiple physical activities. EE felt sore but pain worsened until 9/16/2013 ()
## 30759                                                                                                                                                    EE setting up hosp suites in sac. Leaned a folded table against wall table fell and strukc knee. Sprained knee.
## 30760                                                                                                                                         EE setting up kc park for client activity, EE and other EE picked up table to move in place and feltpull in left side back
## 30761                                                                                                                                                                          EE setting up meeting room lifting heavy tables & moving chairs when he strained his back
## 30762                                                                                                                                                                    EE setting up tables when sole of left shoe got caught on carpet causing EE to wrench left knee
## 30763                                                                                                               EE setting up the nc dept state display. EE state he placed display in car and had to move to shut door at that time pulled something in right knee.
## 30764                                                                                                                                                                                            EE setup and took down furniture for training session and strained back
## 30765                                                                                                                                    EE severed left ring finger while loading canoe on vehicle. Wedding ring got caught in roof rack when EE slipped and fell back.
## 30766                                                                                                                                      EE shadowing client in behavior; EE turned head for second to see who was coming in door; client bit EE's right upper arm. ()
## 30767                                                                                                                              EE shake down of single cell, inmate being placed back into cell when he turned and spit on myself and another officer. Spit in face.
## 30768                                                                                                                                                                                                      EE shampooing the carpet with buffer-noted pain in lower back
## 30769                                                                                                                                                                  EE shampooing, blow drying, and lifting up chair client hair and EE started having pain in wrist.
## 30770                                                                                                                                                                                                              EE sharp pain in lower rt back and rt upper shoulder.
## 30771                                                                                                                                                                                              EE sharpening a hatchet on grinder-piece of metal flew into EE's eye.
## 30772                                                                                                                  EE sharpening bush axe with file, as he made a downward stroke the blade rolled on bush axe & hishand hit top of blade, cutting right ring finger
## 30773                                                                                                                                                                                  EE sharpening knife & his hand slipped & lt hand between the index finger & thumb
## 30774                                                                                                                                            EE sharpening paint scrapers when a piece of metalwent in my safty glassed and hit my eye. Piece of metal stuck in eye.
## 30775                                                                                                                                                                                      EE shaving client-client became upset and grabbed EE rt wrist until it popped
## 30776                                                                                                                                                                                                 EE she hit her lt knee on dayroom desk she was getting up. Lt knee
## 30777                                                                                                                                                                                                            EE she tripped off side of sidewalk and hurt her ankle.
## 30778                                                                                                                                                              EE she was removing the wood around the lock screws with knife when blade slipped & cut left thumb ()
## 30779                                                                                                                                                                                                                             EE shearing sheep debris got into eye.
## 30780                                                                                                                                                                                                       EE shearing sheep in windy conditions felt something in eye.
## 30781                                                                                                                                                                        EE shelving books, bent over to pick up stack of books and hit head on corner of book truck
## 30782                                                                                                                                                   EE shifting of weight on concrete buggy caused fall & injured left shoulder, l hand, and rt hand rt hand > lt ..
## 30783                                                                                                                                                                         EE shoe got caught on the carpet... Fell... Both hands, right elbow, chest, and both knees
## 30784                                                                                                                                                                                EE shoe heel caught the hem on her dress and fell down steps, contusion to left leg
## 30785                                                                                                                                               EE shoe heel got caught carpet on bottom step fe ll on lt knee causing pressure on lt ankle which was under the body
## 30786                                                                                                                                                                                                  EE shoe hit stump on uneven brick and fell and landing on lt side
## 30787                                                                                                                                                                                 EE shoe stuck in uneven pavement on sidewalk injured both legs, lt foot, and back.
## 30788                                                                                                                                                                                                         EE shoe was caught on the edge of step causing her to fall
## 30789                                                                                                                                                                                EE shoes gripped on floor & EE fell on both knees in the hallway hurting both knees
## 30790                                                                                                                   EE shoestring got caught on something in hall, EE fell face first to floor. Hall was very dimly litbroke skin lt knee, both knees hit floor hard
## 30791                                                                                                                                                                                EE shook a cold pack to activate it when it exploded and got into both of his eyes.
## 30792                                                                                                                                               EE shook down about 10 inmates on the last one shefelt a muscle in her right leg tighten as if it was a rubber band.
## 30793                                                                                                                                                            EE shooting at approved targets-a piece of shrapnel from guilet jacket flew back and hit EE in the ear.
## 30794                                                                                                                                                                                         EE shooting at training range-recoil of shot gun bruised EE's rt shoulder.
## 30795                                                                                                                                                                                  EE shooting gun, the recoil of weapon caused in- jury to right arm in bicep area.
## 30796                                                                                                                                                                                                EE shooting handgun on snow covered firing range when foot slipped.
## 30797                                                                                                                                                  EE shooting revolver, she noticed her ears ringingshe couldn't her well - sensitive ears, decreased hearing ears.
## 30798                                                                                                                                                                                           EE shoots hands w/a contractor who is bleeding andgot blood on her hand.
## 30799                                                                                                                                                                                                                              EE shoowered before entering hog farm
## 30800                                                                                                                                                                          EE shot self with nail gun in the left finger. Seen in er, rtw the same day as injury. ()
## 30801                                                                                                                                                                                                                      EE shot the shotgun and injured her right arm
## 30802                                                                                                                                                               EE shoulder hurting while she was moping floor. Lt shoulder sprian. Went to doctor day after injury.
## 30803                                                                                                                                                  EE shoulder pain when he picked up tool box, felt pain in lt shoulder joint later picked up child felt same pain.
## 30804                                                                                                                                                                                                                       EE shoveling ice and felt pain in lower back
## 30805                                                                                                                                                EE shoveling sand into sand bags & fiberglass piece from handle of shovel broke off in pointer finger of right hand
## 30806                                                                                                                 EE showering blind resident, while walking out of shower room, resident became aggressive & jerked back. Causing pain to lower back. Muscle spasm.
## 30807                                                                                                                                                                                                 EE showing committee tour of campus and twisted ankle on sidewalk.
## 30808                                                                                                                    EE showing inmate how to add some shortening to fryer & shortening slipped from hand. Hot grease splashed on rt arm. Redness rt forearm & hand.
## 30809                                                                                                                                                 EE showing student how to pull cap of needle. When student pulled cap off struck EE left index finger with needle.
## 30810                                                                                                                                                                                        EE showing students a drill and he felt his right thigh and groin pull/back
## 30811                                                                                                                                     EE shredding old clothing with box cutter when shelost her grip, cutter slipped & scrapped inside ofright leg just above knee.
## 30812                                                                                                                                                                                               EE shut car door on finger. He was on work premises, coming to work.
## 30813                                                                                                                                                                                                                                    EE shut car door on left thumb.
## 30814                                                                                                                                                                                                                                  EE shut closet door on left thumb
## 30815                                                                                                                                                                                                                                 EE shut door on right 2nd digit ()
## 30816                                                                                                                                                                                                               EE shut door to dinning room lt-thumb caught in door
## 30817                                                                                                                                                                                                         EE shut his finger in car door when he exited the vehicle.
## 30818                                                                                                                                                                                                                                       EE shut right thumb in door.
## 30819                                                                                                                                                                                                                                 EE shut rt middle finger in a door
## 30820                                                                                                                                                                                                              EE shut rt middle finger in the back of cottage door.
## 30821                                                                                                                                                                                       EE shut the gate on her index finger and pulled it out without opending gate
## 30822                                                                                                                                                          EE shut vehicle door on rt index finger while exiting vehicle. ****do not pay any bills on this claim****
## 30823                                                                                                                                                                                              EE shuting back door to housekeeping office and shut rt hand in door.
## 30824                                                                                                                                EE siad his back felt stiff but didn't hurt enough to complain & the next day-8-10-93- he said it was hurting back. No source given
## 30825                                                                                                                                                                                                                EE sipped on iced sidewalk going into the building,
## 30826                                                                                                                                                                                              EE siting at desk when she felt something crawl on her leg & bit her.
## 30827                                                                                                                       EE sits in high task chair to work on computer and serve counter customers. Legs swelled up, numb, tingles with cramping pain from knee down
## 30828                                                                                                                                                   EE sittin at my dest hand paperclip in lthand & holder in rt. Brought up lt hand misjudged poked self in lt eye.
## 30829                                                                                                                                                                                       EE sitting 1:1 w/pt, pt was being re-directed, kicked EE in chest area 2x ()
## 30830                                                                                                                                                                        EE sitting 1:1 w/pt, there was an eri, EE responded, later noticed that back was hurting ()
## 30831                                                                                                                                                                           EE sitting 1:1, pt refused to listen to EE, pt punched EE in face, both fell to floor ()
## 30832                                                                                                                                                  EE sitting a traffic light, he was struck by one vehicle from rear and pushed into another. Recurr-ing headaches.
## 30833                                                                                                                                                                                    EE sitting at computer-leaned back and chair brokecausing EE to fall backwards.
## 30834                                                                                                                              EE sitting at control desk she felt something bite her on back of neck. Insect spider bite causeswelling and redness on back on neck.
## 30835                                                                                                                                                                               EE sitting at desk and slid feet under table and a piece of wood went into left foot
## 30836                                                                                                       EE sitting at desk by window when the wind blew the window glass out and it fell on her head. It scraped her skin & removed a wad of hair from her scalp. ()
## 30837                                                                                                                                           EE sitting at desk documenting chart & moved for- ward in chair - chair tripped fell onto floor stricking low back area.
## 30838                                                                                                                                                                                               EE sitting at desk doing daily duties and paint fumes caused nausea.
## 30839                                                                                                                                    EE sitting at desk doing paperwork on some type of insect bit me on lt leg just above knee. Injured lt leg just above the knee.
## 30840                                                                                                              EE sitting at desk opening mail whn chair slipped frm undr her- hitting neck & back. EE fell 2nd tmewhen sitting back down - whls messed up on chair.
## 30841                                                                                                               EE sitting at desk typing letter. Felt something in the edge of her hair around ear. Brushed area, sting on ear and spider fell on desk. Joint pain.
## 30842                                                                                                                                                      EE sitting at desk when metal grate from overhead light broke loose and fell on top of EE's head. Laceration.
## 30843                                                                                                                     EE sitting at desk when shelving above collapsed books & shelf fell, I rolled out of way but had shelves fall on r hand, twisted shulder. Back
## 30844                                                                                                                                                     EE sitting at desk working on daily transmittal when a piece of paper slipped from hand and hit her in rt eye.
## 30845                                                                                                                                                                    EE sitting at desk working-turned to left to work on cordenza and hit left knee on edge of desk
## 30846                                                                                                                                              EE sitting at desk writting-client came into room and picked up a chair and threw it hitting EE on left arm/shoulder.
## 30847                                                                                                                                                                                                    EE sitting at desk, became short of breath, had chest pains. ()
## 30848                                                                                                                                EE sitting at desk, leaned to rt to give instructions, chair started rolling and EE fell onto another chair dislocating rt shoulder
## 30849                                                                                                                                                                              EE sitting at desk-bent over to pick up paper fromfile cabinet and felt pull in back.
## 30850                                                                                                                  EE sitting at desk-pulling herself back & forth in chair on carpet, using toes, chair elevated in order to reach keyboard/felt pain in right knee
## 30851                                                                                                                                                                     EE sitting at gazebo-notice spider crawling on hand-killed it and notice discloration on hand.
## 30852                                                                                                                 EE sitting at her desk & was asked to pull a file. When she stood up, lost footing, grabbed onto table to break fall & left knee hit floor-bruised
## 30853                                                                                                                                                   EE sitting at light waiting for it to turn green- when other veh hit EE in rear pushing EE veh into another veh.
## 30854                                                                                                                                                                                              EE sitting at light when hit in rear by another veh causing whiplash.
## 30855                                                                                                                                                                                                            EE sitting at table bitten by insects on on inner thigh
## 30856                                                                                                                                                                        EE sitting behind control desk of dorm 3 when she noticed a bump just above her right elbow
## 30857                                                                                                                    EE sitting behind counseling client for about an hour. She stood up foot had gone to sleep. Steppedaround desk turned her ankle. Feel on floor.
## 30858                                                                                                                                                                           EE sitting beside client. Client started to spreadarms in air & finger hit EE in lft eye
## 30859                                                                                                                                                                                          EE sitting client on toilet, client jerked on staff injuring rt shoulder.
## 30860                                                                                                                                     EE sitting down @ desk chair flew out from under her, hit floor on back & also hit back of head. Muscular injury of lower back
## 30861                                                                                                                   EE sitting in an armed chair screening charts, reached lt to obtain chart, lost her balance & struck arm on chair. Injured rib cage area lt side
## 30862                                                                                                                                         EE sitting in boat as another EE got onto boat andknocked over gas can which caused gas to splash into EE's eyes and face.
## 30863                                                                                                                                        EE sitting in chair - bending underneath his desk to plug in palm pilot when his chair coiled back and EE felt pain in back
## 30864                                                                                                                                                                                           EE sitting in chair and chair abruptly reclined causing whiplash to neck
## 30865                                                                                                                                                          EE sitting in chair and chair collapsed and EE fell injuring lower back, rt rib cage, rt forearm and neck
## 30866                                                                                                                                                      EE sitting in chair and inmate came up behind her and pushed the chair real hard - injured right leg and back
## 30867                                                                                                                                      EE sitting in chair and pulling self closer to computer-feet went forward and chair would not roll and EE fell out out chair.
## 30868                                                                                                                          EE sitting in chair and was reaching for list, chair gave way under her and she fell. Hitting her head and pulled her back. Low back pain
## 30869                                                                                                                                                                          EE sitting in chair at desk. Hit knee on desk, when EE jumped to grab knee, twisted back.
## 30870                                                                                                                                                                                               EE sitting in chair at lecture-chair broke pulled rt knee and ankle.
## 30871                                                                                                                     EE sitting in chair collapsed throwing him out onto floor. Ring finger on rt hand rubbed against sharp metal piece and cut finger - lower back
## 30872                                                                                                                        EE sitting in chair inside of bca & was leaning back in chair, chair fell out from under him, causing him to fall on floor - low back pain.
## 30873                                                                                   EE sitting in chair monitoring patients during breakfast. EE leaned in to speak w/ other staff & the chair came out from under EE causing EE to land on floor on EE's bottom. ()
## 30874                                                                                                                                                                                   EE sitting in chair that broke caused EE to fall to floor-landing on lower back.
## 30875                                                                                                                                                                              EE sitting in chair when chair tipped over EE felldown hitting lock on door with head
## 30876                                                                                                                        EE sitting in chair when residet hit EE in the rt knee. EE walking resident back to unit when he kicked & hit EE several times in right leg
## 30877                                                                                                                                                    EE sitting in chair when wheel came off causing eeto fall to floor. Felt severe pain in lower back at this time
## 30878                                                                                                                                                             EE sitting in chair, reached up to bookshelf, heard a popping sound and felt sharp pain in rt shoulder
## 30879                                                                                                                EE sitting in chair, reaching down to right side to put paper in trash, chair fell over to right side and EE fell to floor hurting r shoulder, back
## 30880                                                                                                                                                                         EE sitting in chair, turned and chair broke, throwing EE on the floor. Injured right knee.
## 30881                                                                                                                   EE sitting in chair-arm slipped off chair arm and EE lost her balance & fell into wooden chair arm, trying to regain balance and she fell again.
## 30882                                                                                                                                            EE sitting in chair-bent over removing scratch marks from bottom of desk-chair rolled from underneath EE and hit floor.
## 30883                                                                                                                        EE sitting in chair-pushed back w/legs to a table to get some file folders-pushed back with her legsand felt a sharp pain across lower back
## 30884                                                                                                                                       EE sitting in chair. Chair broke loose from top portion causing him to fall backwards, injured lt arm, hand, rt elbow, hand.
## 30885                                                                                                                                                                        EE sitting in classroom during officer refresher training a bee stung him on his head area.
## 30886                                                                                                                                                                                       EE sitting in closet and sheetrock fell from ceiling and hit EE in the head.
## 30887                                                                                                                                                          EE sitting in computer lab chair, and it turned over as EE rolled to the left to hand student a folder ()
## 30888                                                                                                                                     EE sitting in construction traffic-when veh behindhim did not slow down and hit EE's veh in the rearinjuring rt elbow and hand
## 30889                                                                                                                                                                                                 EE sitting in dayroom, arms & face/neck burning, itching, hives ()
## 30890                                                                                                                               EE sitting in desk chair, rolled chair back to get behind desk. Chair overturned due to loose con- crete on floor. EE fell on floor.
## 30891                                                                                                                                                                     EE sitting in his veh waiting to clear up collision when veh was struck in rear by another veh
## 30892                                                                                                                                                                                                  EE sitting in line of traffic when struck in rear by another veh.
## 30893                                                                                                                                                                                                            EE sitting in office an biten by insect on back ofneck.
## 30894                                                                                                                   EE sitting in passenger seat of inmate transfer van, with seatbelt on, driver tried to avoid collision with tower, contusion rt side, neck, back
## 30895                                                                                                                                                                           EE sitting in patrol veh investigating a minor incident-when hit in rear by another veh.
## 30896                                                                                                                                EE sitting in plastic chair for approx 4 minutes, chair collapsed and went straight down from his weight. Tenderness rt lower back.
## 30897                                                                                                                                                                                                   EE sitting in rolling chair, scooted backwards, chair flipped ()
## 30898                                                                                                                                                                 EE sitting in rolling chair-leaned over to open bottom file drawer-felt sharp pain in low mid back
## 30899                                                                                                                        EE sitting in sbi issued veh when ov backed up striking EE's veh, minor damage to both veh's, EE not injured and did not seek any treatment
## 30900                                                                                                                                               EE sitting in smoking area in albemarle when her leg began to hurt & swell. It appeared somthing had bitten her leg.
## 30901                                                                                                                                                                                        EE sitting in staff support room when a client hitee with fist in the face.
## 30902                                                                                                                        EE sitting in swivel desk chair when chair broke and went out from under EE causing him to fall back hitting head/shoulders & arms on floor
## 30903                                                                                                                                                                EE sitting in traffic waiting on light to change when ov hit EE veh from behind causing neck strain
## 30904                                                                                                                              EE sitting in van and getting ready to get out of van when another vehicle knocked van up on curb. EE injured back and left shoulder.
## 30905                                                                                                                                                          EE sitting in van at red light, 2 cars collided and hit van EE was in- headache, stiff neck, and shoulder
## 30906                                                                                                                                                                               EE sitting in veh as passenger while trk was in reverse when trk hit two park signs.
## 30907                                                                                                                                EE sitting in veh completing a crash report-when another veh ran off rt of road and collided with EE's pushing EE into another veh.
## 30908                                                                                                                                                                                                    EE sitting in veh completing accident report when ov hit EE veh
## 30909                                                                                                                                                                             EE sitting in veh getting ready to get out when security officer backed into EE's veh.
## 30910                                                                                                                     EE sitting in veh prepairing to move from parked position when another veh rolled from adjacent parking space and hit EE's veh in rear bumper.
## 30911                                                                                                                                                                                       EE sitting in veh taking enforcement when struck on left driver side of veh.
## 30912                                                                                                                           EE sitting in vehicle parked operating lidar for the tact 2009 operation when his veh was struck by an impaired female causing back pain
## 30913                                                                                                                         EE sitting monitoring clients when started itching on stomach. Around 9:30 pm then entire body started itching and rash on entire body. ()
## 30914                                                                                                                     EE sitting on 18" highstool on wheels while filingstool moved & EE fell & landed on buttox, lumbar contusion, out 2 days released ft sed work.
## 30915                                                                                                                                         EE sitting on a stool and reached over to pick up a pump-felt something pull in middle of back-couldnot stand up straight.
## 30916                                                                                                                                                                                                       EE sitting on bench with spiders and was bitten on upper leg
## 30917                                                                                                                                                                                      EE sitting on picnic table eating lunch when bitten by insect on back of neck
## 30918                                                                                                                                                                              EE sitting on steps putting video tape in vcr- twisted body and knee started hurting.
## 30919                                                                                                                                                                EE sitting on the floor in the clotheshouse installing shelving and heard his back pop. Back strain
## 30920                                                                                                                                          EE sitting on the floor with kids, getting up and down to chase after child, rest of day complained about knee being sore
## 30921                                                                                                                                                            EE sitting typing chair, ankle under chair, turnedquickly and ankle foot caught. Lot of force on ankle.
## 30922                                                                                                                                    EE sitting under dining hall confined space re- moving & installing iron joints. Had disk problemsyears back. Strain lower back
## 30923                                                                                                                                       EE sitting w/ client who tried to get up & run outof room client's foot hooked EE's foot causing injury to left knee & ankle
## 30924                                                                                                                                              EE sitting with client at hospital. EE constantly refraining client from falling out of bed -slidingclient up in bed.
## 30925                                                                                                                                                                    EE sitting with client-client began to roll out ofbed-EE jumped to get client and injured back.
## 30926                                                                                                                                                       EE sitting with patient at hospital on entering the bathroom a spider fell down on top of forearm bitting EE
## 30927                                                                                                                        EE sitting with student in cafeteria, eating lunchee instructed student to use fork to eat with. Student bit EE lt index finger-broke skin.
## 30928                                                                                                                                                     EE sittting on patio with clients; felt something sting her lt foot; looked down and saw yellow and black bug.
## 30929                                                                                                                                                 EE skidded his car on a patch of ice while traveling back to wrok from training session and strained back and neck
## 30930                                                                                                                                                                                          EE skin on hands peeling due to chemicals soaked through gloves onto skin
## 30931                                                                                                                                                                               EE skinned, bruised, and swelled rt knee as a result of trippeing on uneven pavemnt.
## 30932                                                                                                                                                                                                                                EE slammed 2nd finger on left hand.
## 30933                                                                                                                                                                                                                 EE slammed activity bus door on left pinky finger.
## 30934                                                                                                                                                                                               EE slammed door against rt index middle index finger of the rt hand.
## 30935                                                                                                                                                                                                   EE slammed door and caught her left hand in door jam. Contusion.
## 30936                                                                                                                                                                                                                                  EE slammed door on her finger. ()
## 30937                                                                                                                                                                                                                                  EE slammed door on lt ring finger
## 30938                                                                                                                                                                                              EE slammed finger between door and door frame while trying to get in.
## 30939                                                                                                                                                                                                                                EE slammed finger in bathroom door.
## 30940                                                                                                                                                                                                    EE slammed finger in door while letting othe shiftinto building
## 30941                                                                                                                                                                                                      EE slammed fingers of left hand in window as letting it down.
## 30942                                                                                                                                                                                                         EE slammed hand in door. Contusion/sprain l wrist/forearm.
## 30943                                                                                                                                                                                                              EE slammed her finger in a door... Right index finger
## 30944                                                                                                                                                                      EE slammed her left index finger in a filing cabinet drawer while filing. Subungual hematoma.
## 30945                                                                                                                                                                                                                                   EE slammed index finger in door.
## 30946                                                                                                                                                                                                                                EE slammed left hand in closet door
## 30947                                                                                                                                                                                                                            EE slammed left thumb in supply cabinet
## 30948                                                                                                                                                                                                                              EE slammed right index finger in door
## 30949                                                                                                                                                                                  EE slammed right middle finger in door while escorting inmates to the dining hall
## 30950                                                                                                                                                                                                                      EE slammed right middle finger in steel door.
## 30951                                                                                                                                                                                                          EE slammed rt hand into van door while unloading material
## 30952                                                                                                                                                             EE slammed rt hand ring finder into door. EE tip of finger was severed and could not be reattached. ()
## 30953                                                                                                                                                                                                                             EE slammed rt index finger in car door
## 30954                                                                                                                                                                                                                              EE slammed rt thumb into cabinet door
## 30955                                                                                                                                                                                               EE slammed the door on her finger while placing aninmate in the cell
## 30956                                                                                                                                             EE slammed the gate slide on her rt index finger. While her finger was pinched, EE removed her fingerto open the gate.
## 30957                                                                                                                                                                                                  EE slashed hot gravy on wrist while trying to transport container
## 30958                                                                                                                                                     EE slept on floor and awoke with low back pain which relates to 8/13 injury from subduing and carrying patient
## 30959                                                                                                                                                                                           EE sliced arm on edge of metal door while placing box on tip of cabinet.
## 30960                                                                                                                                                                                         EE sliced thumb with exacto knife while cutting out a picture for exhibits
## 30961                                                                                                                                                                                                                         EE sliced while cutting cabbage l thumb ()
## 30962                                                                                                                                                                                                                                   EE slicing meat and cut rt thumb
## 30963                                                                                                                                                                                                                       EE slicing orange to eat and cut left thumb.
## 30964                                                                                                                                                                             EE slid I a puddle of ice-cream and fell landing on lt buttocks, hip, ankle, nad hnad.
## 30965                                                                                                                                                                     EE slid and fell on her left side upon standing, she realized she had injuried her right ankle
## 30966                                                                                                                                                                                                       EE slid and fell on right shoulder at double doors wet floor
## 30967                                                                                                                                                                     EE slid and fell on slick floor near office, cheekbone hit tile floor. Fractured little finger
## 30968                                                                                                                                                                          EE slid black snake off porch, put his foot on snake. Snake bit EE's right middle finger/
## 30969                                                                                                                                                                 EE slid chair & felt something pull or twist in her back. Referred to ortho. Out of work since inj
## 30970                                                                                                                                                                                 EE slid down on brick pavement due to mud accumulation from rain. Injured lt knee.
## 30971                                                                                                                                                                             EE slid hand along edge of newly installed metal face plate and cut left index finger.
## 30972                                                                                                                                                                           EE slid off tailgate was holding on but driver accelerated quickly-injured lt ankle/foot
## 30973                                                                                                                    EE slid on eggs that was on floor in pt-rm EE was able to break the fall by holding on to dresser in pt-rm. Discomfort to rt-ankle & rt-lt back
## 30974                                                                                                                                            EE slid on mud in a puddle while leaving u2 bldg at the courtyard entrance, slid to ground on right knee & left hand ()
## 30975                                                                                                                                                                                                               EE slid on object on the floor injurying her lt foot
## 30976                                                                                                                 EE slid on slippery bathroom floor, which had beensprayed with air freshener. EE's left knee hit thecommode causing pain in her knee and swelling.
## 30977                                                                                                                                                                          EE slid on wet floor while restriaining juvenile and struck rt knee on the metal bed rail
## 30978                                                                                                                                                                   EE slid open office window and window fell out of frame. EE reached for window and strained back
## 30979                                                                                                                                  EE slid tank from the vehicle to avoid slamming onto the concrete. The next morning EE woke up w/ asharp pain on left lower side.
## 30980                                                                                                                                EE slid the chair located in k & l dorm back to open the cabinet & sat up too fast & bumped her head on the panel behind the chair.
## 30981                                                                                                                                                                                                    EE sliding binding machine off shelf and dropped it on rt foot.
## 30982                                                                                                                                EE sliding out of chair, EE tried to catch her. Injuring EE's rt wrist and lower rt side and back. Soreness middle wrist to forearm
## 30983                                                                                                                                                                                        EE sliding the gate's support bar closed and her finger got caught in gate.
## 30984                                                                                                                                                                                            EE slip and fell on a greasy floor... Injured righthip and back of head
## 30985                                                                                                                                                                                                        EE slip and fell on wet floor injuring head, neck, and back
## 30986                                                                                                                                                                                 EE slip on wet floor in hallway of entrance insidethe building to work site (tacc)
## 30987                                                                                                                                                                                    EE sliped and fell down the steps... Injured her legs, arms, elbow and buttocks
## 30988                                                                                                                                                                                                           EE sliped and fell on snow/ice.... Injured right hip/leg
## 30989                                                                                                              EE slipeed while emptying the laundry bag and tried to brace hisself and felt a sharp pain, 15mins later escorting pt, and he fell pinning hand/wall.
## 30990                                                                                                                                                                                                                                  EE slippe dand fell on wet floor.
## 30991                                                                                                                                                                                          EE slipped & fell down on floor on hands & knees in front of refrigerator
## 30992                                                                                                                                                                     EE slipped & fell down stairs in back stairwell; which caused injury to her foot, twisting it.
## 30993                                                                                                                                                                           EE slipped & fell down the hallway of hoey admin bldg 1st floor. It was raining outside.
## 30994                                                                                                                                                          EE slipped & fell foward due to wet floor-landing on left knee-right hand -laceration right middle finger
## 30995                                                                                                                                                                                                                                       EE slipped & fell in hallway
## 30996                                                                                                                                                                                EE slipped & fell in ladies restroom on 5th floor in albemarle bldg injured lt knee
## 30997                                                                                                                                                                                                                               EE slipped & fell in liquid on floor
## 30998                                                                                                                             EE slipped & fell in the hallway. Carpet had just been cleaned, which caused the slickness. EE struck right knee when she fell & suffe
## 30999                                                                                                                                 EE slipped & fell in the rain while she was on the way to her assigned post exiting the line up room near soar & psych trailers ()
## 31000                                                                                                                                                                                                                   EE slipped & fell off moving doly & broke wrist.
## 31001                                                                                                                                                                                                                                        EE slipped & fell on a rock
## 31002                                                                                                                                                                EE slipped & fell on cement stairs. Scraped & bruised both legs & knees. Some swelling of left leg.
## 31003                                                                                                                                                                                                                          EE slipped & fell on floor wet w/stripper
## 31004                                                                                                                                                                EE slipped & fell on ham spilled on floor from salad bar in dining room. Fell on butt and right hip
## 31005                                                                                                                                                                                 EE slipped & fell on ice in parking lot striking lt side of hand & hip on pavement
## 31006                                                                                                                EE slipped & fell on ice while investigating traffic collision on I-40 in davie co. EE experienced pain to right shoulder & numbness in right hand.
## 31007                                                                                                                                                            EE slipped & fell on knee while she was turning off shower that had been lt dripping. Sprained rt knee.
## 31008                                                                                                             EE slipped & fell on soapy wet floor outside test-ing room on 4th floor when she exited testing roomto go down hallway to use phone. Lt hip, checkbone
## 31009                                                                                                                                                                                                            EE slipped & fell on stairs injury rt-knee calf & ankle
## 31010                                                                                                                                                                                                                     EE slipped & fell on steps exiting dining hall
## 31011                                                                                                                                                                                                       EE slipped & fell on wer floor in kitchen. Lumbar contusion.
## 31012                                                                                                                                                                            EE slipped & fell on wet floor causing bruise to left knee and light strain to left leg
## 31013                                                                                                                                  EE slipped & fell on wet floor during physical confrontation w/inmate. Fell on wet floor after incident unable to get out of bed.
## 31014                                                                                                                                                   EE slipped & fell on wet floor in lobby (as resultof heavy rain) as she was returning from escortingoffender out
## 31015                                                                                                                                       EE slipped & fell on wet spot on floor-hit his head on meat slicer & while trying to recover knee gave out & fell on rt knee
## 31016                                                                                                                                                                                         EE slipped & fell trying to access the location ofan air conditioning unit
## 31017                                                                                                                                                                                                         EE slipped & fell while cleaning restroom spraininlt ankle
## 31018                                                                                                                  EE slipped & fell while trying to mop up a puddle by shower, his right foot slipped & his weight shifted to his left knee, caused left foot twist
## 31019                                                                                                                                         EE slipped & fell while walking in the back hall way. Floor wet from mopping, & no caution signs. EE landed on both knees.
## 31020                                                                                                                                                                                                            EE slipped a post-it note and fell injuring his lt knee
## 31021                                                                                                                                                                                                                                 EE slipped an fell hurt right knee
## 31022                                                                                                                                                                                                   EE slipped an fell in dishroom and struck left forearm and wrist
## 31023                                                                                                                                                                                                              EE slipped and EE caught client injuring lt shoulder.
## 31024                                                                                                                                                                                         EE slipped and feel on wet bathroom floor injury left knee and right elbow
## 31025                                                                                                                                                                                                                      EE slipped and felf hurting her back and head
## 31026                                                                                                                                                                                                                                                EE slipped and fell
## 31027                                                                                                                                                                                                                                             EE slipped and fell ()
## 31028                                                                                                                                                                                                                      EE slipped and fell after leaving court room.
## 31029                                                                                                                                                                                 EE slipped and fell after walking on recently shampooed carpet - contusion lt knee
## 31030                                                                                                                                                       EE slipped and fell against sign on sidewalk whilewalking across campus brickyard. Laceration on forehead.\\
## 31031                                                                                                                                                                                                                     EE slipped and fell and hit face against wall.
## 31032                                                                                                                             EE slipped and fell as he walked into visitation area for training. Stepped on mat inside door, it moved causing the fall. Right knee.
## 31033                                                                                                                                                                                                     EE slipped and fell as he was walking up steps-swollen rt knee
## 31034                                                                                                                                                                                                  EE slipped and fell as she was coming to relieve another employee
## 31035                                                                                                                                                                                                   EE slipped and fell as she was entering the building to work. ()
## 31036                                                                                                                                                                                         EE slipped and fell at rear entrance to building, slipped on pine needles.
## 31037                                                                                                                                                                                                     EE slipped and fell at the stairway injuring her rib cage/back
## 31038                                                                                                                                                                                                                                EE slipped and fell at tram office.
## 31039                                                                                                                                                                                                      EE slipped and fell backward hitting elbow, wrist and back ()
## 31040                                                                                                                                                                            EE slipped and fell catching self on freezer hurt-ing finger on left hand, ring finger.
## 31041                                                                                                                                                                                       EE slipped and fell coming down stairs injuring rt/left kneecap and bruises.
## 31042                                                                                                                                                                                                                          EE slipped and fell coming down the hill.
## 31043                                                                                                                                                                                                EE slipped and fell coming into bldg-fell on rt side injuring knee.
## 31044                                                                                                                                             EE slipped and fell down 8 stairs and landed on the basements platform. Injured left foot, left shoulder and buttocks.
## 31045                                                                                                                                                                                                   EE slipped and fell down a stream embankment injuring lower back
## 31046                                                                                                                               EE slipped and fell down auditorium steps straining lt ankle (called er- states inj was to the rt ankle... Phy has rated both ankles
## 31047                                                                                                                                                                                             EE slipped and fell down flight of stairs injuringchest and both legs.
## 31048                                                                                                                                                                          EE slipped and fell down front of stairs preparing for class. Injury to left hip and back
## 31049                                                                                                                                                                                                                      EE slipped and fell down on rocks with hip ()
## 31050                                                                            EE slipped and fell down some steps with multiple body parts injured. Pl atty-j. Tseng-919-656-5887- atty recieves (( full check in addition)) to full check to EE on 4th payment cycle
## 31051                                                                                                                                                                                         EE slipped and fell down stairs in dorm injuring his lower back and rt leg
## 31052                                                                                                                                                                    EE slipped and fell down stairwell landing on lt knee and both palms; hit wall midway of steps.
## 31053                                                                                                                                                                                                       EE slipped and fell down step causing injury to her lt ankle
## 31054                                                                                                                                                                                EE slipped and fell down step ladder while doing inventory injurying his lower back
## 31055                                                                                                                                                                                                                   EE slipped and fell down steps injuring her back
## 31056                                                                                                                                                                                                                 EE slipped and fell down steps injurying her knee.
## 31057                                                                                                                                                                                                   EE slipped and fell due to urine on the floor - rthip and lumbar
## 31058                                                                                                                                                                                                  EE slipped and fell due to water in the floor hitting right elbow
## 31059                                                                                                                                                                                                     EE slipped and fell due to water on floor in kitchen prep area
## 31060                                                                                                                                                                                                  EE slipped and fell due to wet shoes on floor and sprained lt arm
## 31061                                                                                                                                                                                         EE slipped and fell fracturing both bones in left arm trying to break fall
## 31062                                                                                                                                                                                                     EE slipped and fell from a bead on the floor. Injured low back
## 31063                                                                                                                               EE slipped and fell going up stairs landing on left knee and falling over on back ********atty steve bowden, 800/523-4845***********
## 31064                                                                                                                                                                                                             EE slipped and fell hitting coccyx on corner of timber
## 31065                                                                                                                                                                                                      EE slipped and fell in a puddle of water injuring his lt foot
## 31066                                                                                                                                                                                                              EE slipped and fell in bathing straining back and hip
## 31067                                                                                                                                                                                                               EE slipped and fell in breakroom injuring lower back
## 31068                                                                                                                                                                                                EE slipped and fell in breakroom. There was a wet spot on the floor
## 31069                                                                                                                                                                                                                       EE slipped and fell in dining hall entrance.
## 31070                                                                                                                                                                                                                           EE slipped and fell in dining room floor
## 31071                                                                                                                                                                                     EE slipped and fell in floor stripper on back. Hitleft elbow and back of head.
## 31072                                                                                                                                                                                      EE slipped and fell in front of handwash sink injuring left leg, hip and hand
## 31073                                                                                                                                                                                                                        EE slipped and fell in garage injuring hip.
## 31074                                                                                                                                                                                                                 EE slipped and fell in hallway from liquid spilled
## 31075                                                                                                                                                           EE slipped and fell in hallway while proceeding tooffice from copy room. Floors had been recently waxed.
## 31076                                                                                                                                                                                                                                    EE slipped and fell in hallway.
## 31077                                                                                                                                                                                                                      EE slipped and fell in office spraining wrist
## 31078                                                                                                                                                                                                EE slipped and fell in parking lot injuring his lt hand and rt knee
## 31079                                                                                                                                                                                                    EE slipped and fell in parking lot injuring lt hand and rt knee
## 31080                                                                                                                                                                                                                                EE slipped and fell in parking lot.
## 31081                                                                                                                                                                                                                           EE slipped and fell in resident spittum.
## 31082                                                                                                                                                                              EE slipped and fell in restroom from water on floor. She landed on rt hand & rt knee.
## 31083                                                                                                                                                                                                        EE slipped and fell in snow and hurt left wrist and rt knee
## 31084                                                                                                                                                                                        EE slipped and fell in snow on sidewalk and injured left elbow and left hip
## 31085                                                                                                                                                                                                                                EE slipped and fell in the dishroom
## 31086                                                                                                                                                         EE slipped and fell in the doorway of office. She fell on left knee and left arm is swollen, sore left leg
## 31087                                                                                                                                                                                            EE slipped and fell in the front lobby, contusion to r leg and forehead
## 31088                                                                                                                 EE slipped and fell in the kitchen--she cut 2 fingers on the bottom of the fridge, has a headache and backache, and her left wrist is very sore ()
## 31089                                                                                                                                                                                                          EE slipped and fell in urine on the floor, injuring back.
## 31090                                                                                                                                                                                                          EE slipped and fell in water on fllor and twisted lt knee
## 31091                                                                                                                                                                                                       EE slipped and fell in water on floor and bruised both knees
## 31092                                                                                                                                                                                                     EE slipped and fell in water on pt. S floor in front of toilet
## 31093                                                                                                                                                                                                            EE slipped and fell in watrer... Twisted her left ankle
## 31094                                                                                                                                                                                                                       EE slipped and fell in wet spot on the floor
## 31095                                                                                                                                                                                              EE slipped and fell in wet/oily parking deck and hit head on concrete
## 31096                                                                                                                                                                                                                                  EE slipped and fell injuring back
## 31097                                                                                                                                                                                                                 EE slipped and fell injuring both elbows and knees
## 31098                                                                                                                                                                                                     EE slipped and fell injuring both knee, lt arm, and lower back
## 31099                                                                                                                                                                                                                              EE slipped and fell injuring her head
## 31100                                                                                                                                                                                                                           EE slipped and fell injuring her rt knee
## 31101                                                                                                                                                                                                                EE slipped and fell injuring rt knee and left wrist
## 31102                                                                                                                                                                                           EE slipped and fell into a fence topped with razorwire and cut his head.
## 31103                                                                                                                                                                             EE slipped and fell into a puddle of water injurying her lt knee rtw 1/20; oow 1/21/99
## 31104                                                                                                                                                                                                                EE slipped and fell into rock work and exhibit pool
## 31105                                                                                                                                                                                                          EE slipped and fell landing on bolt puncturing lt forearm
## 31106                                                                                                                                                                                                             EE slipped and fell landing on her rt knee and rt hand
## 31107                                                                                                                                                                                                                           EE slipped and fell landing on left hip.
## 31108                                                                                                                                                                                       EE slipped and fell off a step of a ladder injuring his head, neck, and back
## 31109                                                                                                                                                                           EE slipped and fell off ladder while repairing steam line. Fell on right wrist and back.
## 31110                                                                                                                                                                                                          EE slipped and fell off of steps. EE seen at urgent care.
## 31111                                                                                                                                                                    EE slipped and fell on a floor that had just been waxed. Contusions to left arm, wrist and hip.
## 31112                                                                                                                                                                                      EE slipped and fell on a fresh waxed floor injuring his lt thigh and lt elbow
## 31113                                                                                                                                                                                      EE slipped and fell on a grassy slope and severed his righ patellar tendon ()
## 31114                                                                                                                                                                EE slipped and fell on a hill while carrying a roll of lamination--EE injured her rt hip/lower back
## 31115                                                                                                                                                                                                  EE slipped and fell on a lid container injurying her hip and leg.
## 31116                                                                                                                                                                                                                           EE slipped and fell on a mat in the hall
## 31117                                                                                                                                                                                                         EE slipped and fell on a mat injuring his rt hip and wrist
## 31118                                                                                                                                                                                             EE slipped and fell on a patch of ice while makingyard routine rounds.
## 31119                                                                                                                                                                                     EE slipped and fell on a piece of wood... Injured left knee right index finger
## 31120                                                                                                                                                                                                                      EE slipped and fell on a slick concrete floor
## 31121                                                                                                                                                                                                    EE slipped and fell on a stump and injured his inner left thigh
## 31122                                                                                                                                                                                       EE slipped and fell on a waxed floor injuring lt ankle, rt knee, and lt hand
## 31123                                                                                                                                                                                                   EE slipped and fell on a wet 4 x 4 board injuring his lower back
## 31124                                                                                                                                                                                   EE slipped and fell on a wet and greasy floor injuring neck, hands, and shoulder
## 31125                                                                                                                                                                  EE slipped and fell on a wet area outside cleaningsupply closet in basement of archdale building.
## 31126                                                                                                                                                                                                                                 EE slipped and fell on a wet floor
## 31127                                                                                                                                                                                           EE slipped and fell on a wet floor injuring buttocks, hands, arms finger
## 31128                                                                                                                                                                                                           EE slipped and fell on a wet floor injuring his lt ankle
## 31129                                                                                                                                                                                                 EE slipped and fell on a wet floor... Injured right knee and ankle
## 31130                                                                                                                                                                          EE slipped and fell on a wet floor... Injured rightwrist and thumb.... Right knee bruised
## 31131                                                                                                                                                                                                       EE slipped and fell on a wet floor... Injuring her left knee
## 31132                                                                                                                                                                                                                        EE slipped and fell on a wet floor.... Head
## 31133                                                                                                                                                                                    EE slipped and fell on a wet floor.... Injured his right leg and right shoulder
## 31134                                                                                                                                                                                                          EE slipped and fell on a wet floor; broke her right wrist
## 31135                                                                                                                                                                                                                    EE slipped and fell on a wet spot on the floor.
## 31136                                                                                                                                                                                        EE slipped and fell on a wet waxed floor injuring his lt knee, foot and hip
## 31137                                                                                                                                                                                                 EE slipped and fell on an embankment, severe pain in his lower leg
## 31138                                                                                                                                                                                                 EE slipped and fell on an icy patch injuring her left arm and back
## 31139                                                                                                                                                                                           EE slipped and fell on an icy patch injuring her right hip and left knee
## 31140                                                                                                                                                                     EE slipped and fell on an uneven sidewalk injuringher rt finger, rt knee and caused nose bleed
## 31141                                                                                                                                                           EE slipped and fell on back and rt elbow while performing housing site evaluations with other employees.
## 31142                                                                                                                                                                                        EE slipped and fell on bathroom floo... Fell face down... Left knee... Chin
## 31143                                                                                                                                                                          EE slipped and fell on bathroom floor. Injury to left arm, wrist, ankle, leg and buttocks
## 31144                                                                                                                                                                                             EE slipped and fell on black ice in parking lot hit left hip and elbow
## 31145                                                                                                                                                                                                                EE slipped and fell on black ice landing on rt knee
## 31146                                                                                                                                                                                                                    EE slipped and fell on bridge injuring his knee
## 31147                                                                                                                                                                                                            EE slipped and fell on broken sidewalk-injuries unknown
## 31148                                                                                                                                                                                                         EE slipped and fell on carpet in hallway injuring rt elbow
## 31149                                                                                                                                                                                          EE slipped and fell on cement steps injury to right leg left wrist & hand
## 31150                                                                                                                                                                                         EE slipped and fell on concrete while working stock truck injuring rt knee
## 31151                                                                                                                                                                                        EE slipped and fell on copy machine, left index finger, right foot & ankle.
## 31152                                                                                                                                                                                                                                       EE slipped and fell on floor
## 31153                                                                                                                                                                               EE slipped and fell on floor injuring her left ankle, right knee, and right shoulder
## 31154                                                                                                                                                                                                                 EE slipped and fell on floor injuring her rt elbow
## 31155                                                                                                                                                                                                EE slipped and fell on floor injuring left knee shoulder and rt hip
## 31156                                                                                                                                                                                                 EE slipped and fell on floor landing on her buttock and wrist area
## 31157                                                                                                                              EE slipped and fell on floor that custodian was sweeping. She landed on both knees and her rt elbow. Contusion both knees and elbows.
## 31158                                                                                                                                                                    EE slipped and fell on floor walking out of office spraining and bruising low back and left arm
## 31159                                                                                                                                                     EE slipped and fell on floor where someone had vomited. Bruised left hip and left arm. Small cut on left elbow
## 31160                                                                                                                                                                    EE slipped and fell on floor while conducting survey--injuring lt wrist, lt hip, and lower back
## 31161                                                                                                                                                                                     EE slipped and fell on floor while counting inmates injuring her back/buttocks
## 31162                                                                                                                        EE slipped and fell on floor, twisting her right ankle, struck her left kne and injuried her facial area and nose when she struck the floor
## 31163                                                                                                                                                                                                                                 EE slipped and fell on floor... ..
## 31164                                                                                                                                                                                EE slipped and fell on freshly mopped floor while walking down a hallway - low back
## 31165                                                                                                                                                                                                          EE slipped and fell on front steps injuring left shoulder
## 31166                                                                                                                                                                                                               EE slipped and fell on grass injuring his left ankle
## 31167                                                                                                                                                                                             EE slipped and fell on hands and knees surgery scheduled for 10-5-2001
## 31168                                                                                                                                                                                            EE slipped and fell on her knees--food tray also struck EE in the mouth
## 31169                                                                                                                                                                                                                 EE slipped and fell on ice as she reported to work
## 31170                                                                                                                                                                                                                  EE slipped and fell on ice breaking his left leg.
## 31171                                                                                                                           EE slipped and fell on ice covered ramp connectingmedical school wing b and unc hospitals-knocked unconscious by fallin on concrete ramp
## 31172                                                                                                                                                          EE slipped and fell on ice in building loading dock parking lot. Fell on left side hip and left wrist. ()
## 31173                                                                                                                                                                                EE slipped and fell on ice in front of master mechanic's office twisting left knee.
## 31174                                                                                                                                                                                                   EE slipped and fell on ice in p/lot injured back and left wrist.
## 31175                                                                                                                                                                                                                          EE slipped and fell on ice in parking lot
## 31176                                                                                                                                                                               EE slipped and fell on ice in parking lot and fell injuring lt elbow and rt shoulder
## 31177                                                                                                                                                   EE slipped and fell on ice in parking lot. EE hurtright hip, elbow, and knee. Scratched right shoulder and neck.
## 31178                                                                                                                                                                                                            EE slipped and fell on ice in the facility parking lot.
## 31179                                                                                                                                                                                                  EE slipped and fell on ice injuring head, shoulder, back, and hip
## 31180                                                                                                                                                                                                                       EE slipped and fell on ice injuring her back
## 31181                                                                                                                                                                                                                  EE slipped and fell on ice injuring her left foot
## 31182                                                                                                                                                                                                             EE slipped and fell on ice injuring her right shoulder
## 31183                                                                                                                                                                              EE slipped and fell on ice injuring her right sideof back, pelvis, and right shoulder
## 31184                                                                                                                                                                                                    EE slipped and fell on ice injuring his left elbowand left side
## 31185                                                                                                                                                                                  EE slipped and fell on ice injuring his right shoulder, left neck and right skull
## 31186                                                                                                                                                                          EE slipped and fell on ice injuring rt leg and back rehab-carolina case mgmt - pam harris
## 31187                                                                                                                                                                                                                   EE slipped and fell on ice landing on left hand.
## 31188                                                                                                                                                                                                               EE slipped and fell on ice near car injuring ribcage
## 31189                                                                                                                                                                                                        EE slipped and fell on ice on floor injuring her lower back
## 31190                                                                                                                                                                              EE slipped and fell on ice on sidewalk injuring rt knee, hands - EE 26 weeks pregnant
## 31191                                                                                                                                                                                            EE slipped and fell on ice on walkway and injured low back and tailbone
## 31192                                                                                                                                                                                   EE slipped and fell on ice outside and injured her left arm, left hand, and back
## 31193                                                                                                                                                                                                               EE slipped and fell on ice spraining his right ankle
## 31194                                                                                                                                                                                                                EE slipped and fell on ice while assisting motorist
## 31195                                                                                                                                                                                               EE slipped and fell on ice while going up the steps... Back and hips
## 31196                                                                                                                                                                                                         EE slipped and fell on ice while investigating an accident
## 31197                                                                                                                                                             EE slipped and fell on ice while spreading salt chemicals on parking lot in order to clear parkinglot.
## 31198                                                                                                                                                                                                        EE slipped and fell on ice while walking across parking lot
## 31199                                                                                                                                                                             EE slipped and fell on ice while walking across parking lot injuring rt wrist and hand
## 31200                                                                                                                                                                                              EE slipped and fell on ice while walking from one building to another
## 31201                                                                                                                                                                                                              EE slipped and fell on ice while walking on a walkway
## 31202                                                                                                                                                                                                                     EE slipped and fell on ice---striking buttocks
## 31203                                                                                                                                                                                                                  EE slipped and fell on ice. Injured low back/hip.
## 31204                                                                                                                       EE slipped and fell on ice. Injured shoulder/back. **********salary continuance******************* **employer has approved chiro treatment**
## 31205                                                                                                                                                                                                                         EE slipped and fell on ice. Strained wrist
## 31206                                                                                                                                                                                                               EE slipped and fell on ice... Buttocks and right hip
## 31207                                                                                                                                                                                        EE slipped and fell on ice... Injured his left shoulder, left arm, and hand
## 31208                                                                                                                                                                                                         EE slipped and fell on ice... Injured the back of his head
## 31209                                                                                                                                                                                          EE slipped and fell on ice... Left knee, left ankle, right elbow/shoulder
## 31210                                                                                                                                                                                                             EE slipped and fell on ice... Lower back and tail bone
## 31211                                                                                                                                                                                                                       EE slipped and fell on ice... Right shoulder
## 31212                                                                                                                                                                                                            EE slipped and fell on ice.... Injured his left ribcage
## 31213                                                                                                                                                                                                                     EE slipped and fell on ice.... Left lower back
## 31214                                                                                                                                                                                                                   EE slipped and fell on ice.... Shoulder and head
## 31215                                                                                                                                                                                                  EE slipped and fell on ice...... Injured right kneeand right foot
## 31216                                                                                                                                                                                                                EE slipped and fell on ice/snow, injuring left knee
## 31217                                                                                                                                                                                          EE slipped and fell on icegoing into building to do a job. Injured wrist.
## 31218                                                                                                                                                                                                                    EE slipped and fell on icy covered parking lot.
## 31219                                                                                                                                                                                                       EE slipped and fell on icy gravel; injured his back and head
## 31220                                                                                                                                                                       EE slipped and fell on icy sidewalk injuring his lt hand/wrist--having pain in neck and back
## 31221                                                                                                                                                                                                               EE slipped and fell on icy step landing on left hip.
## 31222                                                                                                                                                                                                              EE slipped and fell on icy walk way landed on rt hip.
## 31223                                                                                                                                                                                                                                 EE slipped and fell on icy walkway
## 31224                                                                                                                                                                                             EE slipped and fell on icy walkway going into library atrium for work.
## 31225                                                                                                                                                                         EE slipped and fell on juice rack in the middle ofstaircase injuring rt elbow and shoulder
## 31226                                                                                                                                                                                             EE slipped and fell on kitchen floor. Twisted back, leg, arm and wrist
## 31227                                                                                                                                                                                                                         EE slipped and fell on left knee and elbow
## 31228                                                                                                                                                                         EE slipped and fell on left side causing injury to left shoulder, arm, knee and left foot.
## 31229                                                                                                                                                                                              EE slipped and fell on metal steps...... Index finger, left leg, shin
## 31230                                                                                                                                                                                            EE slipped and fell on packed snow on sidewalk injuring neck and rt hip
## 31231                                                                                                                                                                                                                                    EE slipped and fell on pavement
## 31232                                                                                                                                                                                  EE slipped and fell on pavement... Injured left side... Swelling in the left hand
## 31233                                                                                                                                                                                    EE slipped and fell on recently waxed floor sprainlt knee/hand/wrist & shoulder
## 31234                                                                                                                                                                                                                                  EE slipped and fell on right knee
## 31235                                                                                                                                                                                                              EE slipped and fell on rock bank. Injury to right arm
## 31236                                                                                                                                                                                                       EE slipped and fell on sidewalk and injured left hip and leg
## 31237                                                                                                                                                                        EE slipped and fell on sidewalk coming into work injuring rt shoulder, rt hand, and lt knee
## 31238                                                                                                                                                                                                         EE slipped and fell on sidewalk injuring hand and backside
## 31239                                                                                                                                                                                                              EE slipped and fell on sidewalk injuring her lt ankle
## 31240                                                                                                                                                                                           EE slipped and fell on sidewalk; injured left hand & bump above left eye
## 31241                                                                                                                                                                                                         EE slipped and fell on slick floor injuring lt rib and arm
## 31242                                                                                                                                                                                    EE slipped and fell on slick spot in floor bruised hip, left arm and rightk nee
## 31243                                                                                                                                                                                                    EE slipped and fell on slippery floor injuring rt hip and elbow
## 31244                                                                                                                                                                                           EE slipped and fell on snow on sidewalk injuring left elbow and left hip
## 31245                                                                                                                                           EE slipped and fell on some cleaning solution an inmate was cleaning the floor with the solutioninjury to the lower back
## 31246                                                                                                                                                                                                                                    EE slipped and fell on some ice
## 31247                                                                                                                                                                                                                                   EE slipped and fell on some ice.
## 31248                                                                                                                                                        EE slipped and fell on some liquid spill that was on the floor injuring lt shoulder, rt knee and lower back
## 31249                                                                                                                                                                                                    EE slipped and fell on some sand on steps injuring his lt ankle
## 31250                                                                                                                                                                                              EE slipped and fell on some wet steps injuring both elbows and lt hip
## 31251                                                                                                                                                                                                              EE slipped and fell on something in dining room area.
## 31252                                                                                                                                                                                                                   EE slipped and fell on something slick on floor.
## 31253                                                                                                                                                                                  EE slipped and fell on stair tread; injured his left hip and shoulder, lower back
## 31254                                                                                                                                                                                                            EE slipped and fell on staircase injuring neck and back
## 31255                                                                                                                                                                                               EE slipped and fell on stairs injuring lt arm, rt ankle, and buttock
## 31256                                                                                                                                                                                            EE slipped and fell on stairs... Injuring his ankleand middle right toe
## 31257                                                                                                                                                                 EE slipped and fell on stairs; injured right arm and elbow, right knee sore, twisted back and neck
## 31258                                                                                                                                                                                                                              EE slipped and fell on standing water
## 31259                                                                                                                                                                                                                                       EE slipped and fell on steps
## 31260                                                                                                                                                                                                                EE slipped and fell on steps and injured both knees
## 31261                                                                                                                                                                                                                  EE slipped and fell on steps and twisted rt ankle
## 31262                                                                                                                                                                                    EE slipped and fell on steps in front of building injuring her lt hip and thigh
## 31263                                                                                                                                                                                                     EE slipped and fell on steps injuring his rt knee and rt wrist
## 31264                                                                                                                                                                                                                  EE slipped and fell on steps while shoveling ice.
## 31265                                                                                                                                                                                                             EE slipped and fell on steps while walking down stairs
## 31266                                                                                                                                                                                    EE slipped and fell on steps while walking out of building injuring her rt foot
## 31267                                                                                                                  EE slipped and fell on the ice in parking lot as she stepped upto walk on sidewalk. Injury to left side of body, shoulder, arm, hand, hip and leg
## 31268                                                                                                                                                                                                                     EE slipped and fell on the ice on the sidewalk
## 31269                                                                                                                                                                                    EE slipped and fell on the kitchen floor causing her to land on her left elbow.
## 31270                                                                                                                                                                                 EE slipped and fell on the restroom landing on herrt side injuring her rt rib cage
## 31271                                                                                                                                                                                                    EE slipped and fell on the walk way at the front entrance gate.
## 31272                                                                                                                                                                                           EE slipped and fell on the wet pavement landing onleft knee. Laceration.
## 31273                                                                                                                                                                                       EE slipped and fell on tile floor exiting the classroom. Injury to left knee
## 31274                                                                                                                                                                 EE slipped and fell on tile floor fracturing left ankle and bruising shoulder, neck, head, and hip
## 31275                                                                                                                                                                                                           EE slipped and fell on tile floor while entering a door.
## 31276                                                                                                                                                                                                      EE slipped and fell on uneven pavement and sprained left foot
## 31277                                                                                                                                                                                                EE slipped and fell on uneven pavement injuring rt hand and rt knee
## 31278                                                                                                                                                                                                                            EE slipped and fell on uneven pavement.
## 31279                                                                                                                                                                           EE slipped and fell on uneven sidewalk injuring lt side of body, elbow, finger and wrist
## 31280                                                                                                                                                                                         EE slipped and fell on urine in the bathroom injuring her back and buttock
## 31281                                                                                                                                                                                                             EE slipped and fell on water in hallway and hurt foot.
## 31282                                                                                                                                                                                                                   EE slipped and fell on water injuring her rt leg
## 31283                                                                                                                                                            EE slipped and fell on water spill in bathroom while bathing resident, causing her to fall on her back.
## 31284                                                                                                             EE slipped and fell on water that had been spilledon the floor in the hallway near the elevator in the basement on the archdale building. EE hit the..
## 31285                                                                                                                                                                                                            EE slipped and fell on water twisting rt leg and ankle.
## 31286                                                                                                                                                                                                             EE slipped and fell on waxed floor injuring her rt arm
## 31287                                                                                                                                                                                                   EE slipped and fell on waxed floor injuring rt wrist and lt knee
## 31288                                                                                                                                                                                               EE slipped and fell on waxed floor striking her rt knee on the floor
## 31289                                                                                                                                                                         EE slipped and fell on waxed floor. EE was going to restroom. Injury to hip and lower back
## 31290                                                                                                                                                       EE slipped and fell on waxed floor. Shoes were wetwhen entering building. EE is in first trimester pregnancy
## 31291                                                                                                                                                                                                          EE slipped and fell on wet air vent.. Sprain to left knee
## 31292                                                                                                                                                                                                 EE slipped and fell on wet cafeteria floor. Signs were not posted.
## 31293                                                                                                                                                                                     EE slipped and fell on wet concrete in front of building/dorm injuring rt knee
## 31294                                                                                                                                                                                         EE slipped and fell on wet deck injuring head, neckhip, ankle and shoulder
## 31295                                                                                                                                                                                                                                EE slipped and fell on wet floor ()
## 31296                                                                                                                                                                                                             EE slipped and fell on wet floor and strained low back
## 31297                                                                                                                                                                                                     EE slipped and fell on wet floor being cleaned by the inmates.
## 31298                                                                                                                                                                                                     EE slipped and fell on wet floor bruising rt leg, hip and hand
## 31299                                                                                                                                                                                       EE slipped and fell on wet floor causing a cut on left leg and left arm sore
## 31300                                                                                                                                                                                                               EE slipped and fell on wet floor causing back injury
## 31301                                                                                                                                                                            EE slipped and fell on wet floor causing injury to her rt arms/hand, rt hip and lt legs
## 31302                                                                                                                                                                                                     EE slipped and fell on wet floor causing rt hip and leg injury
## 31303                                                                                                                                                                                           EE slipped and fell on wet floor forward landing on chest and both arms.
## 31304                                                                                                                                                                                                                 EE slipped and fell on wet floor from water spill.
## 31305                                                                                                                                                                                         EE slipped and fell on wet floor hitting head against metal door facing ()
## 31306                                                                                                                                                                   EE slipped and fell on wet floor in client's bed-room landed on rt side-hitting head on dresser.
## 31307                                                                                                                                                               EE slipped and fell on wet floor in front of dish machine striking back against dish machine handle.
## 31308                                                                                                                                                                                        EE slipped and fell on wet floor in medlin campus center injuring left foot
## 31309                                                                                                                                                                                                                 EE slipped and fell on wet floor injuring her back
## 31310                                                                                                                                                                         EE slipped and fell on wet floor injuring her back, trunk, lt shoulder, lt leg and lt foot
## 31311                                                                                                                                                                                                   EE slipped and fell on wet floor injuring her lt leg and rt knee
## 31312                                                                                                                                                                                                     EE slipped and fell on wet floor injuring her rt leg/knee/back
## 31313                                                                                                                                                                                                              EE slipped and fell on wet floor injuring his lt knee
## 31314                                                                                                                                                                                                               EE slipped and fell on wet floor injuring his lt leg
## 31315                                                                                                                                                                                                          EE slipped and fell on wet floor injuring his lt leg/knee
## 31316                                                                                                                                                                                          EE slipped and fell on wet floor injuring his rt knee and lower back area
## 31317                                                                                                                                                                                                          EE slipped and fell on wet floor injuring his rt shoulder
## 31318                                                                                                                                                                                                             EE slipped and fell on wet floor injuring his rt wrist
## 31319                                                                                                                                                                                                                 EE slipped and fell on wet floor injuring left arm
## 31320                                                                                                                                                                                                 EE slipped and fell on wet floor injuring left hip and both elbows
## 31321                                                                                                                                                                                                     EE slipped and fell on wet floor injuring left knee and elbow.
## 31322                                                                                                                                                                                                               EE slipped and fell on wet floor injuring lower back
## 31323                                                                                                                                                                                                                  EE slipped and fell on wet floor injuring lt knee
## 31324                                                                                                                                                                                                              EE slipped and fell on wet floor injuring lt shoulder
## 31325                                                                                                                                                                                                        EE slipped and fell on wet floor injuring lt shoulder/elbow
## 31326                                                                                                                                                                                                                 EE slipped and fell on wet floor injuring rt ankle
## 31327                                                                                                                                                                                                      EE slipped and fell on wet floor injuring rt elbowand rt hand
## 31328                                                                                                                                                                                                                  EE slipped and fell on wet floor injuring rt hand
## 31329                                                                                                                                                                                            EE slipped and fell on wet floor injuring stomach area - EE is pregnant
## 31330                                                                                                                                                                                                               EE slipped and fell on wet floor injurying her back.
## 31331                                                                                                                                                                                                   EE slipped and fell on wet floor injurying her middle lt finger.
## 31332                                                                                                                                                                                                               EE slipped and fell on wet floor landing on buttocks
## 31333                                                                                                                                                                                      EE slipped and fell on wet floor landing on rt side. Injured rt knee and hip.
## 31334                                                                                                                                                                                                             EE slipped and fell on wet floor striking head on door
## 31335                                                                                                                                                                                                         EE slipped and fell on wet floor striking his backand head
## 31336                                                                                                                                                                                                     EE slipped and fell on wet floor striking lt shoulder and head
## 31337                                                                                                                                                                                          EE slipped and fell on wet floor walking into a bedroom and hurt rt knee.
## 31338                                                                                                                                       EE slipped and fell on wet floor wax. EE observed wet sign outside door. Injured back, right side, right ankle, elbow, face.
## 31339                                                                                                                                                                    EE slipped and fell on wet floor while chasing patient injuring back, left shoulder and rt knee
## 31340                                                                                                                                                                                           EE slipped and fell on wet floor while going down steps injuring rt knee
## 31341                                                                                                                                                                               EE slipped and fell on wet floor, contusion to right knee, elbow and lower back pain
## 31342                                                                                                                                                                                                                                  EE slipped and fell on wet floor.
## 31343                                                                                                                                                                                                            EE slipped and fell on wet floor. Contusion both knees.
## 31344                                                                                                                                                            EE slipped and fell on wet floor. EE had been advised not to walk on wet floor. Fracture to right wrist
## 31345                                                                                                                                                                                                     EE slipped and fell on wet floor. Injured left knee and ankle.
## 31346                                                                                                                                                                                              EE slipped and fell on wet floor. Injured right elbow and lower back.
## 31347                                                                                                                                                                                                     EE slipped and fell on wet floor. Injured top of left shoulder
## 31348                                                                                                                                                                                              EE slipped and fell on wet floor. Injury to lowerback, neck and head.
## 31349                                                                                                                                                                                   EE slipped and fell on wet floor. Lt elbow abrasion, cut on rt thumb, lower back
## 31350                                                                                                                                                                             EE slipped and fell on wet floor. Seen at er and released back to work on 11/16/09. ()
## 31351                                                                                                                                                                                 EE slipped and fell on wet floor. Strained right knee and muscular injury to back.
## 31352                                                                                                                                                                                                             EE slipped and fell on wet floor... Injured lower back
## 31353                                                                                                                                                                                      EE slipped and fell on wet floor... No sign indicating that the floor was wet
## 31354                                                                                                                                                                                                            EE slipped and fell on wet floor; injured her left knee
## 31355                                                                                                                                                                           EE slipped and fell on wet grass, landing on low back. Got up and fell again on rt. Hip.
## 31356                                                                                                                                                                                                                   EE slipped and fell on wet grass. Injured ankle.
## 31357                                                                                                                                                                                                     EE slipped and fell on wet leaves injuring left knee and foot.
## 31358                                                                                                                                                                                                  EE slipped and fell on wet metal grate injuring rt hip and finger
## 31359                                                                                                                                                                                EE slipped and fell on wet mulch while reaching for student on playground equipment
## 31360                                                                                                                                                                                   EE slipped and fell on wet pavement injuring back, neck, rt shoulder and rt hand
## 31361                                                                                                                                                                                                             EE slipped and fell on wet pavement leaving a workshop
## 31362                                                                                                                                                                               EE slipped and fell on wet rocks injuring her left side, left shoulder, left forearm
## 31363                                                                                                                                                                     EE slipped and fell on wet rocks while hiking... Rotator cuff, left shoulder, and left forearm
## 31364                                                                                                                                                                                              EE slipped and fell on wet sidewalk injuring her left hip, hand/ankle
## 31365                                                                                                                                                                                     EE slipped and fell on wet sidewalk injuring her lt ankle and bruising rt knee
## 31366                                                                                                                                                                                                             EE slipped and fell on wet sidewalk straining rt ankle
## 31367                                                                                                                                                                                                               EE slipped and fell on wet steps causing back injury
## 31368                                                                                                                                                                                                       EE slipped and fell on wet/waxed floor injuring his lt wrist
## 31369                                                                                                                                                                                                        EE slipped and fell on wood floor and injured hislower back
## 31370                                                                                                                                                                                                  EE slipped and fell over some floor mats that was against a wall.
## 31371                                                                                                                                                                             EE slipped and fell over some steps injuring his nose, lt knee, rt shoulder, and elbow
## 31372                                                                                                                                                                                 EE slipped and fell over water.... Right ankle, left elbow, and knee were bruised.
## 31373                                                                                                                                                                                                                  EE slipped and fell pulling muscle in rt shoulder
## 31374                                                                                                                                                                                               EE slipped and fell stepping off elevator striking her head on floor
## 31375                                                                                                                                                                                                                  EE slipped and fell striking her rt knee on steps
## 31376                                                                                                                                                                                                             EE slipped and fell to the ground striking his lt knee
## 31377                                                                                                                                                                                                                           EE slipped and fell twisting her rt foot
## 31378                                                                                                                                                                                                                          EE slipped and fell twisting his lt ankle
## 31379                                                                                                                                                                                                                            EE slipped and fell twisting left ankle
## 31380                                                                                                                                                                                                           EE slipped and fell twisting lt ankle - strained lt foot
## 31381                                                                                                                                                                                                        EE slipped and fell walking across campus. Injuringrt knee.
## 31382                                                                                                                                                                                 EE slipped and fell while attempting to enter the restroom; landed on her buttocks
## 31383                                                                                                                                                                                                                EE slipped and fell while coming out of shower room
## 31384                                                                                                                                                                                        EE slipped and fell while descending a hill and injured rt arm and shoulder
## 31385                                                                                                                                                                                          EE slipped and fell while exiting bathroom causinginjury to her rt wrist.
## 31386                                                                                                                                                                                                    EE slipped and fell while getting out of a truck in parking lot
## 31387                                                                                                                                                          EE slipped and fell while getting water up off thefloor. Left hip and lumbosacral region contusion sprain
## 31388                                                                                                                                                                                                   EE slipped and fell while going down stairs injuring her lt knee
## 31389                                                                                                                                                                                                  EE slipped and fell while going downs stairs injuring her rt foot
## 31390                                                                                                                                                                                    EE slipped and fell while goining down stairs and struck lt upper arm on cement
## 31391                                                                                                                                                                                  EE slipped and fell while making security rounds of the unit. Right wrist sprain.
## 31392                                                                                                                                                                                           EE slipped and fell while on crossing a creek on patrol. Injured rt knee
## 31393                                                                                                                                                                                                            EE slipped and fell while opening gate-hit back of head
## 31394                                                                                                                                                                                                                 EE slipped and fell while patroling injuring chest
## 31395                                                                                                                                                                                                        EE slipped and fell while putting trash inside the truck ()
## 31396                                                                                                                                                                              EE slipped and fell while responding to code yellow-bruised elbow, knee, back, finger
## 31397                                                                                                                                                                                             EE slipped and fell while scraping state car and bruised left shoulder
## 31398                                                                                                                                                                                                                         EE slipped and fell while unloading debris
## 31399                                                                                                                                           EE slipped and fell while unloading mattresses from a hand cart. Feet slipped out from under her while lifting mattress.
## 31400                                                                                                                                                                         EE slipped and fell while walking down wet stairs. Injured foot, abck, and some dizziness.
## 31401                                                                                                                                                                                                EE slipped and fell while walking on sidewalk injuring her rt ankle
## 31402                                                                                                                                                                                 EE slipped and fell while walking to building. Injuring shoulder, wrist, and knee.
## 31403                                                                                                                                                                                                  EE slipped and fell while walking to car-contusionlt leg and foot
## 31404                                                                                                                                                                                                     EE slipped and fell while waxing floor.... Knee and lower calf
## 31405                                                                                                                                                                                                     EE slipped and fell while weedeating... Contusion to left knee
## 31406                                                                                                                                                      EE slipped and fell, hitting head, rt knee, left chest, left shoulder, and arm on step - left shoulder injury
## 31407                                                                                                                                                     EE slipped and fell, landed at bottom of stairway. Rt knee made popping sound, unable to straighten w/out pain
## 31408                                                                                                                                                                                                               EE slipped and fell. Hung onto mower for support. ()
## 31409                                                                                                                                                                                                                                     EE slipped and fell...... Hips
## 31410                                                                                                                                     EE slipped and felled in water that was on the floor injurying her back, rt hip, and rt wrist. ****p/a david schiller 789 4677
## 31411                                                                                                                                                                                       EE slipped and felled on concrete steps injurying her lt finger and lt ankle
## 31412                                                                                                                                                                                                          EE slipped and felled on wet floor injurying his rt knee.
## 31413                                                                                                                                              EE slipped and grabbed file cabinet to break her fall and file cabinet wrenched EE in the shoulder. Torn rotator cuff
## 31414                                                                                                                                                                           EE slipped and hit her head while waiting for an elevator in floor lobby, sprained ankle
## 31415                                                                                                                                                                     EE slipped and hit her left knee while assisting co-workers with a seat in the state owned van
## 31416                                                                                                                                                                       EE slipped and scrapped her rt knee and twisted her rt toe as she was walking up the stairs.
## 31417                                                                                                                                                                                                     EE slipped and started to fall, fell over buffer, pulled back.
## 31418                                                                                                                                                                                                             EE slipped and struck her head and elbow against truck
## 31419                                                                                                                                                                                                                                   EE slipped and tripped on stairs
## 31420                                                                                                                                                                                            EE slipped and twisted her rt ankle while coming out of the shower room
## 31421                                                                                                                                                                EE slipped and twisted left foot while walking on a wet floor of school of health sciences building
## 31422                                                                                                                                                                                                              EE slipped but did not fall, however twisted her knee
## 31423                                                                                                                                                                        EE slipped coming into office and tried to catch self on desk-heard popping noise in rt arm
## 31424                                                                                                                                                                                                                       EE slipped down 4 steps due to it being wet.
## 31425                                                                                                                                                     EE slipped down hill in the service area on wet surface and leaves hurting elbows, knees, stomach and rt hand.
## 31426                                                                                                                                                                           EE slipped down on wheelchair ramp and fell down injuring back, buttom, elbow, and neck.
## 31427                                                                                                                                                                                                 EE slipped down ramp (linen room in basement) & twisted left foot.
## 31428                                                                                                                                                                                                                                           EE slipped down steps ()
## 31429                                                                                                                                                                      EE slipped down steps and fractured her lt distal fibula ***pymts to be paid on new injury***
## 31430                                                                                                                                                                                                                        EE slipped down steps spraining both ankles
## 31431                                                                                                                                                                                                     EE slipped down steps taking out trash and hurt foot and ankle
## 31432                                                                                                                                                             EE slipped down steps that lead down to exit of control room hitting lower back and left arm on steps.
## 31433                                                                                                                                                                                                            EE slipped down the boat dock and injured the shoulder.
## 31434                                                                                                                                                                       EE slipped down the stairs, but caught herself on the railing, missing two steps coming down
## 31435                                                                                                                                                                                      EE slipped down the steps on liquid in stairwell causing strain to lower back
## 31436                                                                                                                                                                       EE slipped down the steps while taking out a box of trash that contained a broken mirror. ()
## 31437                                                                                                  EE slipped down when entering door on 3rd floor and hurt her leg on left side. Facilities services was working on a pipe in the ceiling and the floor was wet. ()
## 31438                                                                                                                                                                                         EE slipped down when he stepped in urine in th hallway, twisted left ankle
## 31439                                                                                                                                                                                 EE slipped due to ice... Left elbow, left hip, leftknee, and left side of the head
## 31440                                                                                                                                                                                                     EE slipped due to water being on the floor... Injured left arm
## 31441                                                                                                                                                                                                                                         EE slipped entering a room
## 31442                                                                                                                                                                                                                                    EE slipped exiting her building
## 31443                                                                                                                                  EE slipped fell while walking injuried his back due to water on floor. EE moving to sit down for morning briefing. Lumbar strain.
## 31444                                                                                                                                                                         EE slipped getting onto elevator causing injury to left arm/right hip/back/right knee/neck
## 31445                                                                                                                                                                         EE slipped going down a stairwell and hit his headon the concrete wall at bottom of stairs
## 31446                                                                                                                                                                                                           EE slipped going down embankment causing fx on rt ankle.
## 31447                                                                                                                                                                                                                    EE slipped going down steps and twisted rt foot
## 31448                                                                                                                                                           EE slipped going down wet stairs of parking deck &fell backwards, hitting her back against the concrete.
## 31449                                                                                                                                                                                                          EE slipped going in to crew room hitting door. Right ear.
## 31450                                                                                                                                                        EE slipped hitting lt shoulder and arm pit, while walking up stairway unlocking doors in mental health west
## 31451                                                                                                                                                                                                                 EE slipped in a mud puddle and pulled thigh muscle
## 31452                                                                                                                                                                                                      EE slipped in a puddle and fell spraining left knee and ankle
## 31453                                                                                                                                                                                  EE slipped in a puddle of water in lobby causing injury to her rt wrist and ankle
## 31454                                                                                                                                                                                                              EE slipped in a puddle of water twisting her rt ankle
## 31455                                                                                                                                                                                 EE slipped in a puddle of water while going to geta soda - fell on hip & left hand
## 31456                                                                                                                                                                                                                 EE slipped in cable tray and went in hole in tray.
## 31457                                                                                                                                                                       EE slipped in cleaning solution that was sprayed on floor and fell-rt knee and hand injured.
## 31458                                                                                                                                                                              EE slipped in condensation on floor when checking out ro system; injury to left knee.
## 31459                                                                                                                                                                                                                 EE slipped in cooking area and hurt back/left arm.
## 31460                                                                                                                                                                                                                  EE slipped in dining hall and injured rt foot/toe
## 31461                                                                                                                                                                                                       EE slipped in dirt while carrying pipes injuring his lt knee
## 31462                                                                                                                                                                                                                          EE slipped in drain hole & fell backward.
## 31463                                                                                                                                                       EE slipped in floor stripper and fell on the left side of her body. Landing on lt elbow/shoulder/legand hip.
## 31464                                                                                                                                                                                                EE slipped in front of the refrigerator; floor might have been wet.
## 31465                                                                                                                                                                             EE slipped in grease on floor and fell contusions to lt side of body and strained back
## 31466                                                                                                                                                                                    EE slipped in hallway & tried to break her fall & doing so she twisted her back
## 31467                                                                                                                                                                                                      EE slipped in hallway bruising rt knee and strainglower back.
## 31468                                                                                                                                                     EE slipped in hole in the pavement and fell- twisted lt ankle, abrasions rt hand, elbow, knee pain in rt wrist
## 31469                                                                                                                                                                                               EE slipped in ice in parking lot and fell injuring back and rt wrist
## 31470                                                                                                                                                                                                                             EE slipped in icy step. Injured ankle.
## 31471                                                                                                                                                                                                                        EE slipped in kitchen and landed on lt knee
## 31472                                                                                                                                                                        EE slipped in liquid on pavement falling on flashlight injuring rt shoulder, hand, rib cage
## 31473                                                                                                                                        EE slipped in liquid substance on the floor and hit his head on metal switch plate box and fell on his rt side on the floor
## 31474                                                                                                                                                                                                    EE slipped in lobby of duke cancer center and sprained rt foot.
## 31475                                                                                                                                                                                                   EE slipped in mud whil doing yard checks and injured left wrist.
## 31476                                                                                                                                                                                       EE slipped in mud while walking to tobacco barn and fell injuring lower back
## 31477                                                                                                                                                                    EE slipped in oil on concrete floor and fell backwards causing strain to rt knee, back and neck
## 31478                                                                                                                                                                                      EE slipped in parking lot @ mountainview crctnl facility and strained rt knee
## 31479                                                                                                                                                                              EE slipped in parking lot going to her car. Abra- sion and muscle pain back and neck.
## 31480                                                                                                                  EE slipped in patient's sputum; fell on right hip shoulder, elbow, hand & ankle. Irritation right rotator cuff & trochanteric bursisis right hip.
## 31481                                                                                                                                                                                                          EE slipped in puddle of water floor near the watercooler.
## 31482                                                                                                                                                                                           EE slipped in puddle of water on floor and fell pain in back, legs, neck
## 31483                                                                                                                                                                                                    EE slipped in shower when the floor was wet from being cleaned.
## 31484                                                                                                                                                                                              EE slipped in some grease on floor and fell injuring rt knee and shin
## 31485                                                                                                                                                                                                                  EE slipped in some water and twisted right ankle.
## 31486                                                                                                                                                                                 EE slipped in some water on the floor near the water fountain in side segregation.
## 31487                                                                                                                                                                                                         EE slipped in some water that was on the floor right wrist
## 31488                                                                                                                                                                  EE slipped in stream while holding survey rod. Briars scratched left eye causing corneal abrasion
## 31489                                                                                                                                                                  EE slipped in stripper & fell on right side hitting right knee on edge of cabinet room 142 glaxo.
## 31490                                                                                                                                                                                                       EE slipped in the shower... Hit right elbow on a cement wall
## 31491                                                                                                                                                                                                                                      EE slipped in urine and fell.
## 31492                                                                                                                                                                                      EE slipped in water & fell landing on back strain to neck/contusion to elbows
## 31493                                                                                                                                                                                                                    EE slipped in water & fell. Injury to shoulder.
## 31494                                                                                                                                                                                               EE slipped in water and caught herself from falling - straining back
## 31495                                                                                                                                                                                                         EE slipped in water and fell left side of body andbuttock.
## 31496                                                                                                                                                                                                                          EE slipped in water and fell on left knee
## 31497                                                                                                                                                                                                                              EE slipped in water and fell to floor
## 31498                                                                                                                     EE slipped in water and fell, hitting her left shoulder and left wrist on dietary cart, then falling onto floor landing on left hip and wrist.
## 31499                                                                                                                                                                                                                                   EE slipped in water from rain ()
## 31500                                                                                                                                                                                                                              EE slipped in water in floor and fell
## 31501                                                                                                                                                                                                 EE slipped in water in the dish room causing strain to lower back.
## 31502                                                                                                                                                                                                                                       EE slipped in water on floor
## 31503                                                                                                                                                            EE slipped in water on floor after stepping out of elevator and injured neck, left side and right thigh
## 31504                                                                                                                                                                                                 EE slipped in water on floor and fell face first injuring left arm
## 31505                                                                                                                                                                         EE slipped in water on floor and fell hitting headfell on arm, unconcious for 2-3-minutes.
## 31506                                                                                                                                                                                                         EE slipped in water on floor and fell landing on left knee
## 31507                                                                                                                                                                                                                   EE slipped in water on floor and fell on rt knee
## 31508                                                                                                                                                                                                              EE slipped in water on floor and fell on water cooler
## 31509                                                                                                                                                                                                               EE slipped in water on floor and fell spraining back
## 31510                                                                                                                                                                                                           EE slipped in water on floor and fell spraining rt ankle
## 31511                                                                                                                                                                                                                EE slipped in water on floor and strained left knee
## 31512                                                                                                                                                                                             EE slipped in water on floor causing her to hit her rt shoulder & hip.
## 31513                                                                                                                                                             EE slipped in water on floor in bathroom and grabbed on to sink and felt immediate pain in lower back.
## 31514                                                                                                                                                                                                                  EE slipped in water on floor injuring right foot.
## 31515                                                                                                                                                                           EE slipped in water on floor when EE was walking. Injured foot, neck, head, arm, bottom.
## 31516                                                                                                                                                                                                       EE slipped in water on floor while walking by the salad bar.
## 31517                                                                                                                                                                                                                                      EE slipped in water on floor.
## 31518                                                                                                                            EE slipped in water on kitchen floor in work unit, falling on left knee and causing back to be thrownback. Immediate pain in lower back
## 31519                                                                                                                                                                                  EE slipped in water on ladies bathroom floor and twisted left leg, ankle and foot
## 31520                                                                                                                                                                             EE slipped in water on restroom floor and fell. Both knee--particulary left, and back.
## 31521                                                                                                                                                                                                          EE slipped in water on the floor and fell spraining ankle
## 31522                                                                                                                                                                                                            EE slipped in water puddle and fell straining left knee
## 31523                                                                                                                                                                                               EE slipped in water puddle and sprained rt ankle and bruised rt knee
## 31524                                                                                                                                                                        EE slipped in water/ice on floor in restroom and injured left hip, left elbow and low back.
## 31525                                                                                                                                                                                                                     EE slipped in wet grass and fell injuring knee
## 31526                                                                                                                                                                  EE slipped in wet mud while making security check on the west yard and twisted her ankle and foot
## 31527                                                                                                                                                                 EE slipped in what appeared to be urine in the hall. Injured right hip, lower back low back strain
## 31528                                                                                                                                                                                    EE slipped into water and fell striking the lt side of her head on a door frame
## 31529                                                                                                                                                                                                                EE slipped nad fell on wet floor. Injures shoulder.
## 31530                                                                                                                                                                                 EE slipped off a ladder and hit his chin on a cabinet which made a cut on his chin
## 31531                                                                                                                                                         EE slipped off a ladder while exiting the attic of on campus residence, EE caught self & injured (l) thumb
## 31532                                                                                                                                                                                                                      EE slipped off air unit and strained rt knee.
## 31533                                                                                                                                                                                                               EE slipped off bed frame he was using as a ladder ()
## 31534                                                                                                                                                          EE slipped off cart while lifting rack of water bottles, striking rt hand and wrist- aggravate old injury
## 31535                                                                                                                                                                                EE slipped off chair when it moved while filing papers at counter injuring left leg
## 31536                                                                                                                                                                                                  EE slipped off ladder and fell hitting his head against the table
## 31537                                                                                                                                                                              EE slipped off ladder while working on fire damperin ceiling-caught self w/left hand.
## 31538                                                                                                                                                                                                EE slipped off loading deck and left leg went between trk and deck.
## 31539                                                                                                                                                                                                    EE slipped off of curb and twisted ankle and fell hitting knees
## 31540                                                                                                                                                                                          EE slipped off of truck step and fell striking head and hip on the ground
## 31541                                                                                                                                                                                                         EE slipped off of uneven curb and fell fracturing rt ankle
## 31542                                                                                                                                                                                                                         EE slipped off roof. Hurting his shoulder.
## 31543                                                                                                                                                                                                                      EE slipped off shuffleboard and twiste ankle.
## 31544                                                                                                                                                                              EE slipped off sidewak and ankle turned, EE fell and skinned rt knee. Torn cartilage.
## 31545                                                                                                                                                                                                 EE slipped off sidewalk in canteen area and sprung thumb on l hand
## 31546                                                                                                                                                                                                      EE slipped off sidewalk jarring his right leg and lower back.
## 31547                                                                                                                                                                                                     EE slipped off step carrying mail load and strained lower back
## 31548                                                                                                                                                                                                        EE slipped off step climbing ladder. EE injured left ankle.
## 31549                                                                                                                                                                        EE slipped om some food on dinnning room floor in trying to prevent fal turned rt foot over
## 31550                                                                                                                                                                              EE slipped on 6th floor hall going to lunch. Pull-ed cartlage and ligament on r knee.
## 31551                                                                                                                                                                                                                                     EE slipped on a brick and fell
## 31552                                                                                                                                                                                                EE slipped on a client's belt in the hallway injuring her left knee
## 31553                                                                                                                                                                                                              EE slipped on a coat lying on floor. EE fell to floor
## 31554                                                                                                                                                                                                                    EE slipped on a empty bag and slid to the floor
## 31555                                                                                                                                                                                                                   EE slipped on a floor that was wet from mopping.
## 31556                                                                                                                                                                                          EE slipped on a freshly unmarked mopped wet floor. In the radiology dept.
## 31557                                                                                                                                                    EE slipped on a gown thrown down in the hallway bya pt. When EE fell pt lost his balance and fell onee left leg
## 31558                                                                                                                                                                                 EE slipped on a icy step and fell on his buttocks; injured lower back and buttocks
## 31559                                                                                                                                                                                                                 EE slipped on a large rock twisting his right knee
## 31560                                                                                                                                                                    EE slipped on a liquid substance and fell in the dayroom, contusion to lower back and left knee
## 31561                                                                                                                                                        EE slipped on a mat which had ice on it and fell, lnading with weight of body on the left forearm and elbow
## 31562                                                                                                                                                                                                     EE slipped on a patch of ice. Injured left knee and left ankle
## 31563                                                                                                                                                         EE slipped on a piece of ice as he enterd the taylor education building. **ag's #03-1136- patrick wooten**
## 31564                                                                                                                                                                                         EE slipped on a piece of paper and fell hurting left knee. Sore left knee.
## 31565                                                                                                                                                                                           EE slipped on a piece of paper at receptionist desk and fell on rt hand.
## 31566                                                                                                                                                                            EE slipped on a piece of wet carpet and injured lt side, knees, elbows, ankle, and side
## 31567                                                                                                                                                                                       EE slipped on a puddle of water while walking downthe hall falling on wrist.
## 31568                                                                                                                                                                              EE slipped on a rock and fell injuring her wrist when startled by a passing golf cart
## 31569                                                                                                                                                                                            EE slipped on a rock that was on the stairway and strained back and leg
## 31570                                                                                                                                                                                                         EE slipped on a rock; left knee, leg, buttocks, lower back
## 31571                                                                                                                                                                                                                          EE slipped on a rug and strained low back
## 31572                                                                                                                                                                                                                               EE slipped on a sheet of ice... Back
## 31573                                                                                                                                                                                                      EE slipped on a small limb and fell on left knee and rt ankle
## 31574                                                                                                                                                        EE slipped on a tile floor causing her rt foot to go under the support beam striking the top of her rt foot
## 31575                                                                                                                                                            EE slipped on a waxed floor & fell, twisting her left ankle & landing on her left knee, left hand &head
## 31576                                                                                                                                                                                         EE slipped on a wet bathroom floor injuring his left leg.... Other unknown
## 31577                                                                                                                                                                                                                                          EE slipped on a wet floor
## 31578                                                                                                                                                                                                                         EE slipped on a wet floor and fell on back
## 31579                                                                                                                                                                                             EE slipped on a wet floor and fell on the pour spout of a steam kettle
## 31580                                                                                                                                                                                                                      EE slipped on a wet floor injuring left elbow
## 31581                                                                                                                                                                                       EE slipped on a wet floor; strain to wrist and both knees, rt wrist bruised.
## 31582                                                                                                                                                           EE slipped on a wet metal ramp... Injures are multiple.. Lt leg/ankle... Rt wrist, elbow, shoulder spine
## 31583                                                                                                                             EE slipped on a wet spot on the floor, right leg went out from under him & pain went up leg to hip and back. Right back muscle strain.
## 31584                                                                                                                                                                                                          EE slipped on a wet surface... Back, spine, and neck pain
## 31585                                                                                                                                                                                                                 EE slipped on a wet tailgate... Injured lower back
## 31586                                                                                                                                           EE slipped on a wet, sticky substance by a garbagecan & fell, spraining her left ankle & causing a right knee contusion.
## 31587                                                                                                                                                                                           EE slipped on a wheelchair ramp and fell, injuring left shoulder and hip
## 31588                                                                                                                                                                                                  EE slipped on algae covered boat ramp and cut bottom of left foot
## 31589                                                                                                                                              EE slipped on an iced area in parking lot landing on her buttocks and hitting the back of her head on a parked truck.
## 31590                                                                                                                                                                                 EE slipped on an oil spill froma weiling machine, injured EE right wrist hand area
## 31591                                                                                                                                                  EE slipped on an outside ramp falling over the rail striking her head on the floor deck and causing an eye injury
## 31592                                                                                                                                                                                                                                       EE slipped on bathroom floor
## 31593                                                                                                                                                                                                          EE slipped on beads on floor and fell spraining left foot
## 31594                                                                                                                                                                                                                                       EE slipped on bedroom floor.
## 31595                                                                                                                                                                                   EE slipped on bedroom floor; left knee and arm hit floor first and then head. ()
## 31596                                                                                                                                                                                                   EE slipped on black ice and fell to ground hittingher right knee
## 31597                                                                                                                                                                                                                     EE slipped on black ice on the way back to car
## 31598                                                                                                               EE slipped on boat deck and heard is knee pop. Several weeks later while kicking w/fins, his knee locked then popped. The knee began to swell and ca
## 31599                                                                                                                                                                                                                    EE slipped on bottom step and turned left ankle
## 31600                                                                                                                                                                                                               EE slipped on broken down boxes and fell on rt knee.
## 31601                                                                                                                                                                                         EE slipped on broken twigs and fell... Injuring both knees, and both palms
## 31602                                                                                                                                                                                                                              EE slipped on carpet and fell forward
## 31603                                                                                                                                                                            EE slipped on carpet in front door. Fell and pallet jack rolled over EE's left big toe.
## 31604                                                                                                                                                                                      EE slipped on ceramic tile floor and fell causing injury to left and rt knees
## 31605                                                                                                                                                                                                                 EE slipped on cheese that was on dining room floor
## 31606                                                                                                                                                                                                EE slipped on coffee spill in hallway, hit r hand on corner of wall
## 31607                                                                                                                                                                                              EE slipped on concrete ditch culvart and fell on left knee cutting it
## 31608                                                                                                                                                                      EE slipped on concrete floor and fell cutting rt hand when he landed. Lacertation to rt hand.
## 31609                                                                                                                                                                                                                        EE slipped on curb and my rt ankle twisted.
## 31610                                                                                                                                                                                                                                           EE slipped on damp floor
## 31611                                                                                                                                                                                              EE slipped on damp floor while checking students rooms for lock down.
## 31612                                                                                                                                                                                           EE slipped on door mat and fell striking head back and arm on brick wall
## 31613                                                                                                                                                                                                          EE slipped on drbris on steps and fell twisting left knee
## 31614                                                                                                                                                                                                           EE slipped on egg and fell hitting left knee on floor.\\
## 31615                                                                                                                                                                                                        EE slipped on fender climbing out of the boat; injured back
## 31616                                                                                                                                                                    EE slipped on flat rock walking up incline and fell on top of weapon with weight on left wrist.
## 31617                                                                                                                                                                         EE slipped on floor & fell with his right ankle under him. Possible sprain of right ankle.
## 31618                                                                                                                                                                                                 EE slipped on floor after leaving from outside floor wet from rain
## 31619                                                                                                                                                                                                                                    EE slipped on floor and fell ()
## 31620                                                                                                                                                                                                    EE slipped on floor and fell and landed on left arm behind her.
## 31621                                                                                                                                                                                        EE slipped on floor and fell in classroom - injuryto rt ankle and left knee
## 31622                                                                                                                                                                                                                     EE slipped on floor and fell injuring lt wrist
## 31623                                                                                                                                                                                              EE slipped on floor and fell knocking glasses off and straining chest
## 31624                                                                                                                                                                                               EE slipped on floor and fell landing on right knee and right forearm
## 31625                                                                                                                                                                                                                              EE slipped on floor and fell on knee.
## 31626                                                                                                                                                                                                                        EE slipped on floor and fell straining back
## 31627                                                                                                                                                                                                          EE slipped on floor and left foot twisted from under her.
## 31628                                                                                                                                                                                                                         EE slipped on floor and strained left knee
## 31629                                                                                                                                                                                                    EE slipped on floor and twisted left knee on slickkitchen floor
## 31630                                                                                                                                                                                           EE slipped on floor as she was walking the hallwayleading to front exit.
## 31631                                                                                                                                                                                            EE slipped on floor at hvac maint in building space and sprained ankle.
## 31632                                                                                                                                                                                                                      EE slipped on floor hitting knee and elbow ()
## 31633                                                                                                                                                                                                                                     EE slipped on floor in hallway
## 31634                                                                                                                                                                                EE slipped on floor in hallway and felt pain in left shoulder and skinned left knee
## 31635                                                                                                                                                                                                                     EE slipped on floor in ice and hit hip and arm
## 31636                                                                                                                               EE slipped on floor in lobby building & fell on floor. Rt hip & leg hit floor, & right arm & shoulder hit end table. Neck pain also.
## 31637                                                                                                                                                                                                                         EE slipped on floor injury to lft hip area
## 31638                                                                                                                                                                      EE slipped on floor outside of courtroom and that had some matter on the floor. Injured back.
## 31639                                                                                                                                                                                                           EE slipped on floor that had been mopped, landed on back
## 31640                                                                                                                                                                                                                                 EE slipped on floor that was slick
## 31641                                                                                                                                                                                                       EE slipped on floor twisting rt foot and hurting both elbows
## 31642                                                                                                                                                            EE slipped on floor when entering the door and fell hitting the left side of face and head on the floor
## 31643                                                                                                                                                                                           EE slipped on floor while going into diningroom and fell on her lt knee.
## 31644                                                                                                                                                                                                                 EE slipped on floor while walking into coffee room
## 31645                                                                                                                                           EE slipped on floor, twisted fell against wall then fell to the floor. Injured left shoulder, elbow, arm, wrist, & knee.
## 31646                                                                                                                                                                                                                         EE slipped on floor. Sprain back ligaments
## 31647                                                                                                                                                                            EE slipped on food in floor of dining room startedto fall-twisted back. Low back strain
## 31648                                                                                                                                                                                            EE slipped on food item on the floor & lt knee popped. Injured lt knee.
## 31649                                                                                                                                                                             EE slipped on food on floor of dining room, twisting right knee, falling to the floor.
## 31650                                                                                                                                                                                                EE slipped on food that was on the floor and fell on rt leg and hip
## 31651                                                                                                                                                                                  EE slipped on fresh mopped floor and not wet floorsigns around. Injured rt thigh.
## 31652                                                                                                                                                  EE slipped on freshly mopped floor & hit her left wrist & hand on the corner of a table resulting ina sore wrist.
## 31653                                                                                                                                                    EE slipped on freshly waxed floor and lost balanceleg was hyper-extended as he slipped and strained his r knee.
## 31654                                                                                                                                                                                                                            EE slipped on grass and fell on knee ()
## 31655                                                                                                                                                                                     EE slipped on grass and hit knee on spinkler head. Salary continuance employee
## 31656                                                                                                                                                                                          EE slipped on grass at base of tower, landed on left ankle & sprained it.
## 31657                                                                                                                                                                       EE slipped on grass that was on the sidewalk and fell twisting rt knee and landing rt elbow.
## 31658                                                                                                                                                                                                            EE slipped on grass... Later felt pain in his rightcalf
## 31659                                                                                                                                                                                                                EE slipped on gravel and fell injuring his lt ankle
## 31660                                                                                                                                                                                                EE slipped on gravel and fell on her back with left foot under her.
## 31661                                                                                                                                                                                                            EE slipped on gravel in parking lot and fell on rt knee
## 31662                                                                                                                                                                                                         EE slipped on grease in floor twisting right foot and knee
## 31663                                                                                                                                                                                                   EE slipped on grease in floor, and fell on buttockand lower back
## 31664                                                                                                                                                                                  EE slipped on greasy floor while exiting the cafeteria after getting her lunch ()
## 31665                                                                                                                                                                                                       EE slipped on hallway floor that was wet landing on her back
## 31666                                                                                                                                                                                                                                                  EE slipped on ice
## 31667                                                                                                                                                                                                                                         EE slipped on ice and fell
## 31668                                                                                                                                                                                                          EE slipped on ice and fell hitting back, elbows and hands
## 31669                                                                                                                                                                                                    EE slipped on ice and fell in parking lot and strained rt wrist
## 31670                                                                                                                                                                                                EE slipped on ice and fell in the parking lot of the steam plant ()
## 31671                                                                                                                                                                                                          EE slipped on ice and fell injuring back and rt arm/elbow
## 31672                                                                                                                                                                                                                          EE slipped on ice and fell injuring elbow
## 31673                                                                                                                                                                                             EE slipped on ice and fell injuring rt ankle rt hand, rt hip, rt elbow
## 31674                                                                                                                                                                                                          EE slipped on ice and fell landing on left heel and knee.
## 31675                                                                                                                                                                   EE slipped on ice and fell landing on rt wrist oow 12/6-12/10/00 rtw 12/11/00, oow again 7/19/01
## 31676                                                                                                                                                                                                                            EE slipped on ice and fell on left knee
## 31677                                                                                                                                                                                                            EE slipped on ice and fell used left hand to braceself.
## 31678                                                                                                                                            EE slipped on ice and fell; hit her head (left temple/skull) and injured both knees and hands when she hit the pavement
## 31679                                                                                                                                                                                                             EE slipped on ice and felt pull to right groin area ()
## 31680                                                                                                                                                                                                                           EE slipped on ice and fractured rt ankle
## 31681                                                                                                                                                                                                                         EE slipped on ice and heard right knee pop
## 31682                                                                                                                                                                                                              EE slipped on ice and injured knees and left shoulder
## 31683                                                                                                                                                                                                            EE slipped on ice and injured lower back and groinarea.
## 31684                                                                                                                                                                                                             EE slipped on ice and injured right wrist and leftknee
## 31685                                                                                                                                                                                                                       EE slipped on ice and pulled muscles in back
## 31686                                                                                                                                                                                                                 EE slipped on ice and snow and fell on parking lot
## 31687                                                                                                                                                                 EE slipped on ice and snow, left foot went into the air didn't fall on ground, strained lower back
## 31688                                                                                                                                                                                                                                EE slipped on ice and strained back
## 31689                                                                                                                                                                          EE slipped on ice as she was walking in the parking lot. She hit her knee on the pavement
## 31690                                                                                                                                                                                                   EE slipped on ice coming into work. Back injury at base of spine
## 31691                                                                                                                                                                                         EE slipped on ice covered step falling backward injuring back of rib cage.
## 31692                                                                                                                                                                           EE slipped on ice entering building, laceration onrt hand and soreness rt wrist and arm.
## 31693                                                                                                                                                                             EE slipped on ice getting out of veh to close back glass hatch, injuring left shoulder
## 31694                                                                                                                                                  EE slipped on ice in drive while entering buildinghe stopped his fall with left hand and jammed leftmiddle finger
## 31695                                                                                                                                                                                                                             EE slipped on ice in front of dumpster
## 31696                                                                                                                                                                                                EE slipped on ice in gravel parking lot while walking into work. ()
## 31697                                                                                                                                                                                                                              EE slipped on ice in gym parking lot.
## 31698                                                                                                                                                                                      EE slipped on ice in her driveway attempting to goto work with campus police.
## 31699                                                                                                                                                                                                                 EE slipped on ice in p/lot and sprained left knee.
## 31700                                                                                                                                                  EE slipped on ice in parking lot & fell against his vehicle and then landed on his back in the paved parking lot.
## 31701                                                                                                                                                                                       EE slipped on ice in parking lot and fell backwards hitting head on pavement
## 31702                                                                                                                                                                                            EE slipped on ice in parking lot and fell hitting left knee on pavement
## 31703                                                                                                                                                                                                               EE slipped on ice in parking lot and fell real hard.
## 31704                                                                                                                                                                                                           EE slipped on ice in parking lot and fell straining back
## 31705                                                                                                                                                                                                           EE slipped on ice in parking lot and sprained left ankle
## 31706                                                                                                                                                                                                            EE slipped on ice in parking lot going into work place.
## 31707                                                                                                                                                                EE slipped on ice in parking lot when walking intobuilding (parking lot not maintained by the dept)
## 31708                                                                                                                                                                              EE slipped on ice in parking lot while walking to plant to work landing on left elbow
## 31709                                                                                                                                                                                                          EE slipped on ice in parking lot. Hurt left hip and knee.
## 31710                                                                                                                                     EE slipped on ice in parking lot. She tried to break her fall causing her hurt arm. She fall on her buttocks. Fracture rt arm.
## 31711                                                                                                                                                                                                                                EE slipped on ice injured left hand
## 31712                                                                                                                                                                           EE slipped on ice on covered walkway. Fell flat on back knocking the breath out of them.
## 31713                                                                                                                                                                            EE slipped on ice on main parking lot by administration bldg and fell injuring lt wrist
## 31714                                                                                                                                                                                                                 EE slipped on ice on pavement falling on left knee
## 31715                                                                                                                                                                                    EE slipped on ice on pavement walking to his car and fell striking back of head
## 31716                                                                                                                                                                                                                      EE slipped on ice on sidewalk and broke wrist
## 31717                                                                                                                                                                                                               EE slipped on ice on sidewalk delivering typewriter.
## 31718                                                                                                                                                                               EE slipped on ice on sidewalk while running errands on campus. Fracture to right leg
## 31719                                                                                                                                                                                                  EE slipped on ice on step while taking out trash fell on rt knee.
## 31720                                                                                                                                                                    EE slipped on ice on the kitchen floor, was caughtby another employee before hitting the floor.
## 31721                                                                                                                                                                                                      EE slipped on ice on the sidewalk and fell spraining rt wrist
## 31722                                                                                                                                                                           EE slipped on ice on the sidewalk. EE was leaving the building going to the parking lot.
## 31723                                                                                                                                                                                                           EE slipped on ice on walkway and fell striking left knee
## 31724                                                                                                                                                                                          EE slipped on ice outside mechanical room door after changing filters. ()
## 31725                                                                                                                                                 EE slipped on ice outside of trailer door; right hand, left hand, left shin, right knee, right shoulderright elbow
## 31726                                                                                                                                                                                              EE slipped on ice patch in parking lot and fell face down on asphalt.
## 31727                                                                                                                                                                                                             EE slipped on ice striking his back against a car door
## 31728                                                                                                                                                              EE slipped on ice to prevent himself from falling he extended his arm. Injured knee, elbow pain, back
## 31729                                                                                                                                                                      EE slipped on ice walking across parking lot and fell injuring rt hand, chest, and both knees
## 31730                                                                                                                                                                     EE slipped on ice when entering building for work injuring neck, back, head, and left shoulder
## 31731                                                                                                                                                                                                   EE slipped on ice while checking bathrooms during winter season.
## 31732                                                                                                                                                                     EE slipped on ice while consulting investigation and received abrasions to left knee and thigh
## 31733                                                                                                                                                                                   EE slipped on ice while he was salting the exterior bldg; injured back, shoulder
## 31734                                                                                                                     EE slipped on ice while walking across the parkinglot to his truck; discomfort in his knee after the incident; EE had surger 9/02 on same knee
## 31735                                                                                                                                                    EE slipped on ice while walking on sidewalk. EE sprained left knee, hit back of head, and had slight back pain.
## 31736                                                                                                                                                                                 EE slipped on ice while walking to parking lot and fell injuring rt knee and torse
## 31737                                                                                                                                                                                                                             EE slipped on ice, fell, and hurt knee
## 31738                                                                                                                                                                                                                                                 EE slipped on ice.
## 31739                                                                                                                                           EE slipped on ice. Complained of back pain. Supervisor sent him to hospital. Doctor found nothing wrong, & released him.
## 31740                                                                                                                                                                                                        EE slipped on ice. Walkway was not cleared. Injured rt leg.
## 31741                                                                                                                                                                                                                          EE slipped on ice... Back and neck strain
## 31742                                                                                                                                                                                                         EE slipped on icy deck of boat while launching into water.
## 31743                                                                                                                                  EE slipped on icy parking lot near loading dock atcourier service building landing on his head. Taken to raleigh comm. Hsp by ems
## 31744                                                                                                             EE slipped on icy patch in the parking lot at workafter shoveling snow from the sidewalks. Threw outhis right arm to catch his fall & injured shoulder
## 31745                                                                                                                                                                                                                     EE slipped on icy pavement and fell to ground.
## 31746                                                                                                                                                                     EE slipped on icy sidewalk onto parking lot jamming back and both feet as she hit the pavement
## 31747                                                                                                                                                                                                EE slipped on icy spot in parking lot and fell injuring right thumb
## 31748                                                                                                                                                                                                        EE slipped on icy spot in parking lot. Fractured lt. Wrist.
## 31749                                                                                                                                                                                                                     EE slipped on icy stairs. Injured lt shoulder.
## 31750                                                                                                                                                                                                     EE slipped on icy steps and fell injuring head and lower back.
## 31751                                                                                                                                                                                                                 EE slipped on icy steps causing injury to his back
## 31752                                                                                                                                                                      EE slipped on icy street causing hyperextension ofright knee and pulled muscle in lower back.
## 31753                                                                                                                                             EE slipped on icy surface and fell hitting head went to get up and fell again-paramedics call EE was found unconscious
## 31754                                                                                                                                                                                                 EE slipped on icy walkway while picking up mail from state agency.
## 31755                                                                                                                                                                                                      EE slipped on incline of roof that was metal and wet with dew
## 31756                                                                                                                                                           EE slipped on jelly on floor and fell face first knot on forehead, neck discomfort, rt shoulder arm pain
## 31757                                                                                                                                                                    EE slipped on juice on floor, injurying back; patient also punched EE in back of head & neck ()
## 31758                                                                                                                                                                                    EE slipped on juice on the cooler floor and fell hitting lft knee and lft elbow
## 31759                                                                                                                                                               EE slipped on kitchen floor slipped and fell on floor hitting back, lt hand and lt foot on the floor
## 31760                                                                                                                                                                                                  EE slipped on ladder and sprained rt hand trying to catch himself
## 31761                                                                                                                                                                                                                                     EE slipped on last step of bus
## 31762                                                                                                                                                                                                            EE slipped on last step, fell and hit head. Cut eyebrow
## 31763                                                                                                                                                                                                                    EE slipped on leaf and fell bruising both knees
## 31764                                                                                                                                                                                       EE slipped on leaves & acorns when exiting state vehicle. Injured left foot.
## 31765                                                                                                                                                             EE slipped on leaves and debris and fell into street while walking into work. Contusions to right knee
## 31766                                                                                                                                                                                                   EE slipped on leaves getting out of scooter and strained lt knee
## 31767                                                                                                                                                                             EE slipped on leaves while walking down ramp into mechanical room landing on rt elbow.
## 31768                                                                                                                                                                                                                              EE slipped on liquid and fell on back
## 31769                                                                                                                                                                                                     EE slipped on liquid coming down stairs twisting her left foot
## 31770                                                                                                                                                                                                       EE slipped on liquid in hall and fell face first onto floor.
## 31771                                                                                                                                                                                    EE slipped on liquid soap in the bathroom atty is perry morrison. Karissa davan
## 31772                                                                                                                                                                        EE slipped on liquid spill by food service co back, hips, hip joint, left arm, head injured
## 31773                                                                                                                                                                                                EE slipped on loading dock hitting shin on edge. Contusion rt shin.
## 31774                                                                                                                                                                                                                                  EE slipped on machine & hit elbow
## 31775                                                                                                                                                                                     EE slipped on mat under chair while hurrying to answer phone and strained knee
## 31776                                                                                                                                                                                                           EE slipped on mat, fell off clog and twisted rightankle.
## 31777                                                                                                                                                                               EE slipped on metal bracket which was on the floor, fell injuring right knee and hip
## 31778                                                                                                                                                                                                    EE slipped on milk in floor, fell to floor in a split position.
## 31779                                                                                                                                                                                                                  EE slipped on mud injuring her rt toe and rt knee
## 31780                                                                                                                                                                                            EE slipped on mud while walking on trail on lunch hour. Twisting ankle.
## 31781                                                                                                                                                                                                                EE slipped on now on sidewalk and fell hitting back
## 31782                                                                                                                                                                                         EE slipped on oil & fell down 8 steel stairs; feltpain in back and (l) leg
## 31783                                                                                                                                                                                                                EE slipped on oil in hallway and fell bruising back
## 31784                                                                                                                                                                               EE slipped on oil on floor while inspecting and fell straining shoulder and rt ankle
## 31785                                                                                                                                                                                              EE slipped on oily substance on floor and fell on left wrist and hand
## 31786                                                                                                                                                                                                         EE slipped on outdoor stairway and twisted her right knee.
## 31787                                                                                                                                                                                                               EE slipped on own shoe strings falling on left knee.
## 31788                                                                                                                                                                                                                      EE slipped on oyster reef cutting her hand ()
## 31789                                                                                                                                                            EE slipped on patch of ice while stepping into cabof truck she was searching, landing on her tail- bone
## 31790                                                                                                                                                                                           EE slipped on patient's clothing while taking patient to seclusion room.
## 31791                                                                                                                                                                EE slipped on pebble on sidewalk and fell injuringrt knee, chin, rt hand and knocking 3 teeth loose
## 31792                                                                                                                                                                                                                  EE slipped on pebble, fell on ramp, fx to lt foot
## 31793                                                                                                                                                                              EE slipped on piece of bacon which had been dropped by EE on the floor, cutting elbow
## 31794                                                                                                                                                                                                              EE slipped on piece of lemon while walking down hall.
## 31795                                                                                                                                                                                                             EE slipped on plastic lids on floor and injured lt leg
## 31796                                                                                                                                                                                                EE slipped on plastic on floor and fell injuring left wrist and arm
## 31797                                                                                                                                                                                                                        EE slipped on porch and injured left ankle.
## 31798                                                                                                                                                                                                                     EE slipped on puddle of rain water in entry ()
## 31799                                                                                                                                                                            EE slipped on rain slick stairs & cut his left armcut on left arm required 16 stitches.
## 31800                                                                                                                                                                                                                            EE slipped on recently mopped wet floor
## 31801                                                                                                                  EE slipped on restroom floor that was wet---feet went out from under her and she hit the floor withweight of fall going into lt leg, mostly knee.
## 31802                                                                                                                                                                                                           EE slipped on rock display and fell on back and shoulder
## 31803                                                                                                                                                                                                   EE slipped on rock in parking lot which cause leftfoot to twist.
## 31804                                                                                                                                                       EE slipped on rock in stream while collecting fish for genetic analysis and injured right ankle and knee. ()
## 31805                                                                                                                                                          EE slipped on rock while collecting oysters near bogue sound and cut hands on oysters growing on rocks ()
## 31806                                                                                                                                                               EE slipped on rock, twisted foot and fell injuring lft knee, rt foot, strained muscles in upper body
## 31807                                                                                                                                                                                                                                             EE slipped on rocks ()
## 31808                                                                                                                                                                                                 EE slipped on rocks and fell to the cement when leeaving for lunch
## 31809                                                                                                                                                                                                                     EE slipped on rug and fell injuring rt arm/hip
## 31810                                                                                                                                                                              EE slipped on rug entering bldg and fell on left arm, strained left shoulder and neck
## 31811                                                                                                                                                                                                                      EE slipped on rug in ofc, no fall to floor ()
## 31812                                                                                                                                                                                                          EE slipped on saw dust the was on floor and strained back
## 31813                                                                                                                                                                                               EE slipped on sawdust on concrete floor and fell on rt side of back.
## 31814                                                                                                                                                                                     EE slipped on sawdust on the floor and struck his right knee against desk leg.
## 31815                                                                                                                                                                                                               EE slipped on seat belt cover and fell. Neck & head.
## 31816                                                                                                                                                                              EE slipped on sheet while changing patient and fell injuring rt hand and left fingers
## 31817                                                                                                                                                                             EE slipped on sidewalk and fell injuring left buttock, shoulder, elbow, wrist and head
## 31818                                                                                                                                                                                             EE slipped on sidewalk and fell to knees. Felt pain in ankle and back.
## 31819                                                                                                                                                                                                                         EE slipped on sidewalk and twisted rt knee
## 31820                                                                                                                                                                                                                  EE slipped on sidewalk as she was leaving work ()
## 31821                                                                                                                                                                       EE slipped on sidewalk while making rounds on the yard during rain and hail storm. No injury
## 31822                                                                                                                                                                                                                                        EE slipped on skateboard ()
## 31823                                                                                                                                                                                                                EE slipped on slick floor and fell bruising lt knee
## 31824                                                                                                                                                                     EE slipped on slick floor tile, fell face down on carpet over concrete, hit left side of face.
## 31825                                                                                                                            EE slipped on slick solution in parking area slipped causing injury to left leg, right knee, both hands, bottom, chest, left side, head
## 31826                                                                                                                                                                                        EE slipped on slick speed bump and fell in parking lot injury to right foot
## 31827                                                                                                                                                                                                 EE slipped on slick stepps due to the rain. Injured general parts.
## 31828                                                                                                                                                                  EE slipped on slipper floor inside elevator from recent waxing-contusion both knees & right ankle
## 31829                                                                                                                                                                                                        EE slipped on slippery floor and fell hitting headon metal.
## 31830                                                                                                                                                                                                                   EE slipped on slippery floor and fell on rt knee
## 31831                                                                                                                                                                                                          EE slipped on slippery floor and fell on rt knee and hand
## 31832                                                                                                                                                                                                              EE slipped on slippery spot on floor bruised rt knee.
## 31833                                                                                                                                                                                             EE slipped on slippery wet marble steps while exiting the building. ()
## 31834                                                                                                                                                                                                                       EE slipped on small amount of water on floor
## 31835                                                                                                                                                                                           EE slipped on small rock and cooler fell over causing EE to injury legs.
## 31836                                                                                                                                                                                                  EE slipped on small stones on sidewalk and fell fracturing rt leg
## 31837                                                                                                                                                                                                                   EE slipped on snow as he was exiting a building.
## 31838                                                                                                                               EE slipped on snow on sidewalk and fell flat on her back, twisting her lt foot and bruising her back, head, shoulders, and buttocks.
## 31839                                                                                                                                                                                        EE slipped on snow walking across campus and fell injuring left leg and arm
## 31840                                                                                                                                                                                                      EE slipped on snow walking to car. Fell on back and wrist. ()
## 31841                                                                                                                                                                                                                    EE slipped on snow/ice and fell on back/knee ()
## 31842                                                                                                                                                                                           EE slipped on soiled floor and fell injuring knee, hand and lt shoulder.
## 31843                                                                                                                                                           EE slipped on some baby oil and pulled a muscle inhis lt thigh while assisting with an agressive inmate.
## 31844                                                                                                                                                                              EE slipped on some food which was on the floor andbanged her left hip and left wrist.
## 31845                                                                                                                             EE slipped on some grits that had been spilled, attempted to stop fall by grabbing cart handle, scraped arm and hit knee on the floor.
## 31846                                                                                                                                                  EE slipped on some ice in front of oil tank #1 EE was turning on the condensate pump locate inside the kike wall.
## 31847                                                                                                                                                                     EE slipped on some ice located on the sidewake, she attempted to brace her fall, injuring hand
## 31848                                                                                                                                   EE slipped on some mop water left in the floor. She did not fall bu injured her neck regaining her balance. Strain to lower back
## 31849                                                                                                                                                                                        EE slipped on some paper clips on floor and fell rt hip, shoulder and neck.
## 31850                                                                                                                                                                                                EE slipped on some raised cement located on the walkway. Left knee.
## 31851                                                                                                                                                                    EE slipped on some shampoo that was located on the floor which resulted in twisting his rt knee
## 31852                                                                                                                                                         EE slipped on some snow and ice and fell on back very flat my rt knee popped and hurt badly for short time
## 31853                                                                                                                                EE slipped on some uncured concrete and injured his rt knee by landing a rock. Rt knee has rednessand some swelling - no open cuts.
## 31854                                                                                                                                                                                                              EE slipped on some water in bathroom twisted her knee
## 31855                                                                                                                                                  EE slipped on some water in which the inmates used to clean the floor. EE caught himself beforehitting the floor.
## 31856                                                                                                                                                                                  EE slipped on some water that was wasted on the floor hurting both knees & elbows
## 31857                                                                                                                                                                                            EE slipped on some wooden steps injuring her rightankle and right elbow
## 31858                                                                                                                                                                                                                                  EE slipped on something and fell.
## 31859                                                                                                                                                                   EE slipped on something on the floor and fell straining upper back, shoulders, knees and lt foot
## 31860                                                                                                                                                                                                      EE slipped on something wet on the floor and fell on rt knee.
## 31861                                                                                                                                                                                                                      EE slipped on sopay floor and strained rt hip
## 31862                                                                                                                                                                                                    EE slipped on stairs and fell cutting rt hand, bruised low back
## 31863                                                                                                                                                                                                         EE slipped on stairs and fell, landed on right hipand leg.
## 31864                                                                                                                                                                                                                           EE slipped on stairs and hurt her ankle.
## 31865                                                                                                                                                                                                                          EE slipped on stairs and sprained rt foot
## 31866                                                                                                                                                         EE slipped on stairs descending from roof access door due to wet roof and wet shoes. Landed on left elbow.
## 31867                                                                                                                                                                                              EE slipped on stairs going to parking lot and injured left ankle/foot
## 31868                                                                                                                                                              EE slipped on stairs of activity bus that were covered in power discharge from a fire extinguisher ()
## 31869                                                                                                                                                                                  EE slipped on stairs on campus while walking towards building where she works. ()
## 31870                                                                                                                                                                                                EE slipped on stairs-grabbed handrail and injured thumb on rt hand.
## 31871                                                                                                                                                                  EE slipped on stairs. EE rolled and bumped her way down not stopping until I came to the landing.
## 31872                                                                                                                                                                                                                              EE slipped on stairs. Injury to back.
## 31873                                                                                                                                                          EE slipped on stairs. She landed on metal bar on stairs, which was at lower back. Lower back and leg pain
## 31874                                                                                                                                                                                                EE slipped on stairs. She was delivering forms to graduate student.
## 31875                                                                                                                                                                                                                                          EE slipped on stairway ()
## 31876                                                                                                                                                                                                                                    EE slipped on stairway and fell
## 31877                                                                                                                                                                                                                    EE slipped on stairway and fell down six steps.
## 31878                                                                                                                                                                                                                              EE slipped on standing water and fell
## 31879                                                                                                                                                                                        EE slipped on step and fell from mid way to the bottom. Injured lt arm/leg.
## 31880                                                                                                                                                                                                                           EE slipped on step and strained low back
## 31881                                                                                                                                                                                                                              EE slipped on step and struck rt foot
## 31882                                                                                                                                                                                                                            EE slipped on step and twisted lt ankle
## 31883                                                                                                                                                                                                                               EE slipped on step straining lt knee
## 31884                                                                                                                                                                                                                               EE slipped on step twisting his back
## 31885                                                                                                                                                                                                      EE slipped on steps and fell bruising both knees and lt elbow
## 31886                                                                                                                                                                                                                    EE slipped on steps and fell injuring both feet
## 31887                                                                                                                                                                                                                               EE slipped on steps and injured knee
## 31888                                                                                                                                                                                                                        EE slipped on steps and strained left ankle
## 31889                                                                                                                                                                                                                      EE slipped on steps at entrance of fort bldg.
## 31890                                                                                                                                                                                                    EE slipped on steps coming down from tower to the main building
## 31891                                                                                                                                   EE slipped on steps in stairway trying to assit another EE who was calling out for help-injury to lower back, forehead and head.
## 31892                                                                                                                                                                         EE slipped on steps outside of bldy while rushing to a call of assistance to another unit.
## 31893                                                                                                                    EE slipped on steps which were covered with snow and ice, left leg slipped down several steps, causedee to strain right buttocks and hamstring.
## 31894                                                                                                                                                                                     EE slipped on steps while she was sweeping near stairwell. Resprained rt knee.
## 31895                                                                                                                                                                                                                           EE slipped on steps while trimming trees
## 31896                                                                                                                                                                                                                            EE slipped on steps. Injured both knees
## 31897                                                                                                                                     EE slipped on strip wax on floor tripping over strip machine. Hit head on a window, arm on window frames, and bottom on floor.
## 31898                                                                                                                                                                                                                EE slipped on tenderfost-fell landed on right ankle
## 31899                                                                                                                                                                      EE slipped on the 2nd to the last step and fell face down and twisted ankles, r&l toe& r-knee
## 31900                                                                                                                                                                                       EE slipped on the edge of a rubber floor mat in front of the dish machine ()
## 31901                                                                                                                                                                                                                  EE slipped on the floor and fell on wooden chair.
## 31902                                                                                                                                                                                                                  EE slipped on the floor as he was exiting kitchen
## 31903                                                                                                                                   EE slipped on the floor that the inmate had just mopped he said he tried to catch himself with his rt hand and hurt his rt wrist
## 31904                                                                                                                                                                                          EE slipped on the ice in parking lot and fell to the ground injuring neck
## 31905                                                                                                                                                                                          EE slipped on the ice in parking lot and fell. EE has pain in right hand.
## 31906                                                                                                                                                                         EE slipped on the iced parking lot there was no salt on the parking lot. **dob 3/15/1964**
## 31907                                                                                                                                                                                                                  EE slipped on the icy sidewalk and fell backwards
## 31908                                                                                                                                                                                         EE slipped on the metal portion of the step and missed teh last two steps.
## 31909                                                                                                                                                           EE slipped on the plastic piece used to hold the carpet down. L arm, abdominal area, l/r legs and knees.
## 31910                                                                                                                                                                                         EE slipped on the rear stair of the building whilewalking up to the stairs
## 31911                                                                                                                                                                                                                                 EE slipped on the sidewak and fell
## 31912                                                                                                                                       EE slipped on the sidewalk, almost fell, caught him self with right arm and pulled muscles in right shoulder and upper back.
## 31913                                                                                                                                                                                                                  EE slipped on the snow and ice in the parking lot
## 31914                                                                                                                                                                                            EE slipped on the stairs and fell down them. She was going to mail room
## 31915                                                                                                                                                       EE slipped on the steps and twisted his back whilegoing up darkened stairwell because lights were turned off
## 31916                                                                                                                                                                             EE slipped on the tile floor & fell while enteringthe building. Hit rt hip, leg & arm.
## 31917                                                                                                                                                                                 EE slipped on the top of the steps and fell onto side of buttocks and forearm; ice
## 31918                                                                                                                                                                                                 EE slipped on throw rug & fell on right leg twist-ing ankle under.
## 31919                                                                                                                                                                                                                                        EE slipped on tile floor ()
## 31920                                                                                                                                                                                                     EE slipped on tile floor and lost balance landing on left foot
## 31921                                                                                                                                                        EE slipped on two acorns that were on a step and fell down 3 steps. Contusions right knee, wrist andelbows.
## 31922                                                                                                                                                                                               EE slipped on uneven pavement, lt hand & finger cut, rt knee bruised
## 31923                                                                                                                                                                  EE slipped on unlevel floor while emptying mop bucket and fell backwards hitting lt hand and back
## 31924                                                                                                                                                                                                                   EE slipped on urine in bedroom and fell on back.
## 31925                                                                                                                                                                                                       EE slipped on urine in floor & fell - pain in back& left leg
## 31926                                                                                                                                                                                                                             EE slipped on urine that was on floor.
## 31927                                                                                                                                           EE slipped on water as she was walking around corner of hall way injuring lower back, straining her right knee and ankle
## 31928                                                                                                                                                                 EE slipped on water in floor and fell hitting headon doorframe, cutting forehead and bruising knee
## 31929                                                                                                                                                                                                                 EE slipped on water in floor fell on back and leg.
## 31930                                                                                                                                                                        EE slipped on water in floor, walking performing clinical duties. Lt-hip buttock knee thigh
## 31931                                                                                                                                                                             EE slipped on water in hall, fell on knee and turned right ankle. Injured right ankle.
## 31932                                                                                                                                                                            EE slipped on water in hallway while carrying large container - right foot & left elbow
## 31933                                                                                                                                                                                            EE slipped on water in hallway. Hit right knee andinstep of right foot.
## 31934                                                                                                                                                                                                   EE slipped on water in kitchen from icemaker & twisted left knee
## 31935                                                                                                                                   EE slipped on water leak in hall way(leaking thru the ceciling) EE fell on rt knee, cuaght self withlt hand and rt side of knee.
## 31936                                                                                                                                                                                                          EE slipped on water near shower area. Injury to left leg.
## 31937                                                                                                                                                                                  EE slipped on water on floor and fell on right side-multiple contusion on rt side
## 31938                                                                                                                                                                                        EE slipped on water on floor of lab while taking materials to teach a class
## 31939                                                                                                                                                                                    EE slipped on water on floor-injuring lower and middle back, neck, jaw and head
## 31940                                                                                                                                                                   EE slipped on water on hallway while carrying software purchases. Right knee bruised and pulled.
## 31941                                                                                                                                                                                                                      EE slipped on water on steps and hit her head
## 31942                                                                                                                                                  EE slipped on water on the floor in the men's dormitory which was coming from the ice machine. Twisted back/knee.
## 31943                                                                                                                                                                          EE slipped on water running from a closet. Left foot slipped and EE fell onto right knee.
## 31944                                                                                                                                                                                                                 EE slipped on water spill as he was leaving office
## 31945                                                                                                                                                         EE slipped on water spot in floor, feet went out from under her hitting elbow, slamming lt knee to ground.
## 31946                                                                                                                                                                                EE slipped on water while floor was being mopped. Left side of neck and upper back.
## 31947                                                                                                                                                                      EE slipped on waxed & buffed floor & fell, injuringrt knee & hitting head on sallyport floor.
## 31948                                                                                                                                                                                                                   EE slipped on waxed floor and fell straining arm
## 31949                                                                                                                                                                                                             EE slipped on waxed floor and fractured 5th metatarsal
## 31950                                                                                                                                                                                                EE slipped on waxed floor injuring ankle, knee elbow, hand, forearm
## 31951                                                                                                                                                                                                         EE slipped on waxex floor-injury ot neck and left shoulder
## 31952                                                                                                                                                                                       EE slipped on wet area of the sidewalk, and fell hurting right wrist & hand.
## 31953                                                                                                                                                                                                       EE slipped on wet bathroom floor and fell landing on lt side
## 31954                                                                                                                                                                                                                                  EE slipped on wet bathroom floor.
## 31955                                                                                                                                                                                                          EE slipped on wet clay and fell injuring left kneeand hip
## 31956                                                                                                                                                                                                                  EE slipped on wet concrete and fell bruised knee.
## 31957                                                                                                                                                                                    EE slipped on wet concrete and fell on his rt shoulder rt arm rt leg and rt hip
## 31958                                                                                                                                                                                                                  EE slipped on wet concrete and fell on right knee
## 31959                                                                                                                                                                                                                    EE slipped on wet concrete and twisted his back
## 31960                                                                                                                                                                            EE slipped on wet concrete floor while feeding pigee put her hand out to catch herself.
## 31961                                                                                                                                                       EE slipped on wet concrete step while watering flowers. Rt knee came into contact with the edge of the step.
## 31962                                                                                                                                                                               EE slipped on wet curb (from rain) at shipping and receiving and turned right ankle.
## 31963                                                                                                                                                                                                                                  EE slipped on wet debris and fell
## 31964                                                                                                                                                                                  EE slipped on wet deck on entry to water to make a patron rescue from deep water.
## 31965                                                                                                                                                                                                               EE slipped on wet doormat while attending to client.
## 31966                                                                                                                                                                                                                                            EE slipped on wet floor
## 31967                                                                                                                                                                                                                        EE slipped on wet floor & twisted left knee
## 31968                                                                                                                                                                                                                         EE slipped on wet floor & twisted lt ankle
## 31969                                                                                                                                                                                      EE slipped on wet floor (from rain) fell & hit head against wall & left elbow
## 31970                                                                                                                                                  EE slipped on wet floor - both feet went out from under EE, hit floor, landed on buttocks w/both feet in the air.
## 31971                                                                                                                                                                              EE slipped on wet floor after coming inside & fellsplitting my left small finger open
## 31972                                                                                                                                                                                    EE slipped on wet floor after entering building injuring rt arm, head and body.
## 31973                                                                                                                                                                                                             EE slipped on wet floor after mopping hitting his head
## 31974                                                                                                                                                                                    EE slipped on wet floor after removing a water heater and hit arm on door case.
## 31975                                                                                                                                                                    EE slipped on wet floor after walking on wet carpet no signs were posted injured back & lt knee
## 31976                                                                                                                                                                                                EE slipped on wet floor and caught herself causing strain to rt rib
## 31977                                                                                                                                                                                                 EE slipped on wet floor and caught herself on table straining back
## 31978                                                                                                                                                                                                                        EE slipped on wet floor and elbow hit door.
## 31979                                                                                                                                                                                                      EE slipped on wet floor and falling on buttocks and left knee
## 31980                                                                                                                                                                                                                                   EE slipped on wet floor and fell
## 31981                                                                                                                                                                                                 EE slipped on wet floor and fell backwards straining neck and back
## 31982                                                                                                                                                                                                                EE slipped on wet floor and fell bruising left knee
## 31983                                                                                                                                                                                                             EE slipped on wet floor and fell hitting head and back
## 31984                                                                                                                                                                                      EE slipped on wet floor and fell hitting head on cart causing mild concussion
## 31985                                                                                                                                                                                                         EE slipped on wet floor and fell injuring back and rt knee
## 31986                                                                                                                                                                                                                 EE slipped on wet floor and fell injuring buttocks
## 31987                                                                                                                                                                                                            EE slipped on wet floor and fell injuring left shoulder
## 31988                                                                                                                                                                                                               EE slipped on wet floor and fell injuring lower back
## 31989                                                                                                                                                                                                                  EE slipped on wet floor and fell injuring lt hand
## 31990                                                                                                                                                                                EE slipped on wet floor and fell injuring lt side and foot work number 919-529-0587
## 31991                                                                                                                                                                                                     EE slipped on wet floor and fell injuring rib cageand shoulder
## 31992                                                                                                                                                                                                  EE slipped on wet floor and fell injuring rt knee lt hip and back
## 31993                                                                                                                                                                                       EE slipped on wet floor and fell injuring rt knee rt foot, and rt lower back
## 31994                                                                                                                                                                                                 EE slipped on wet floor and fell landed on her left knee and head.
## 31995                                                                                                                                                                                                                       EE slipped on wet floor and fell on buttocks
## 31996                                                                                                                                                                                                                          EE slipped on wet floor and fell on knee.
## 31997                                                                                                                                                                                                                      EE slipped on wet floor and fell on left side
## 31998                                                                                                                                                                                                                        EE slipped on wet floor and fell on rt knee
## 31999                                                                                                                                                                            EE slipped on wet floor and fell on rt side rolled over to left side and landed on face
## 32000                                                                                                                                                                                                     EE slipped on wet floor and fell on rt side straining rt wrist
## 32001                                                                                                                                                                                                                      EE slipped on wet floor and fell on rt. Knee.
## 32002                                                                                                                                                                                              EE slipped on wet floor and fell straining rt arm, neck, back and leg
## 32003                                                                                                                                                                                                                EE slipped on wet floor and fell straining rt wrist
## 32004                                                                                                                                                                                                                     EE slipped on wet floor and fell to the floor.
## 32005                                                                                                                                                                                                                                  EE slipped on wet floor and fell.
## 32006                                                                                                                                                                                                                              EE slipped on wet floor and hurt knee
## 32007                                                                                                                                                                                                            EE slipped on wet floor and injured her lt foot and leg
## 32008                                                                                                                                                                                                                         EE slipped on wet floor and injured lt leg
## 32009                                                                                                                                                                                                               EE slipped on wet floor and injured rt hip and wrist
## 32010                                                                                                                                       EE slipped on wet floor and jammed big toe on my lt foot on desk leg. Lt foot bruised, great toe joint (bruised and swollen)
## 32011                                                                                                                                                                                                               EE slipped on wet floor and jammed lt knee into door
## 32012                                                                                                                                                                          EE slipped on wet floor and landed on her back causing injury to back, shoulders and hips
## 32013                                                                                                                                                                                                                    EE slipped on wet floor and landed on her side.
## 32014                                                                                                                                                                                                                 EE slipped on wet floor and landed on right elbow.
## 32015                                                                                                                                                                                                                       EE slipped on wet floor and left knee popped
## 32016                                                                                                                                                                                                                      EE slipped on wet floor and pulled left groin
## 32017                                                                                                                                                                             EE slipped on wet floor and slammed hand on locked door. Injured hand/ middel fingers.
## 32018                                                                                                                                                                                                                      EE slipped on wet floor and sprained lt ankle
## 32019                                                                                                                                                                                                                      EE slipped on wet floor and sprained rt thumb
## 32020                                                                                                                                                                                                                         EE slipped on wet floor and strained ankle
## 32021                                                                                                                                                                                                                          EE slipped on wet floor and strained back
## 32022                                                                                                                                                                       EE slipped on wet floor and strained left knee and lumbar spine ** EE's cell 919-454-4380 **
## 32023                                                                                                                                                                                                  EE slipped on wet floor and strained lt wrist while breaking fall
## 32024                                                                                                                                                                                                               EE slipped on wet floor and strained rt knee and leg
## 32025                                                                                                                                                                                                                  EE slipped on wet floor and struck rt knee on bed
## 32026                                                                                                                                                                                           EE slipped on wet floor and sustained a torn meniscus of the right knee.
## 32027                                                                                                                                                                                                                           EE slipped on wet floor and twisted back
## 32028                                                                                                                                                                                                                       EE slipped on wet floor and twisted lt ankle
## 32029                                                                                                                                                                                                                  EE slipped on wet floor and twisted lt leg & foot
## 32030                                                                                                                                                                                                                       EE slipped on wet floor and twisted rt knee.
## 32031                                                                                                                                                                                              EE slipped on wet floor as she came into the swisher ctr's side door.
## 32032                                                                                                                                                                                                  EE slipped on wet floor caused by water spilled broke right wrist
## 32033                                                                                                                                                                             EE slipped on wet floor causing and sustained a right hip contusion and low back pain.
## 32034                                                                                                                                                                          EE slipped on wet floor crossing hallway, did a split, injured low back. (low back claim)
## 32035                                                                                                                                                                    EE slipped on wet floor due to weather conditions landing on left side, shoulder, hip and neck.
## 32036                                                                                                                                                                                      EE slipped on wet floor grabbed co-worker to break a fall & twisted her wrist
## 32037                                                                                                                                                                                                                      EE slipped on wet floor hitting head on steps
## 32038                                                                                                                                                                                                                   EE slipped on wet floor huring rt knee and wrist
## 32039                                                                                                                                                                                                                    EE slipped on wet floor hyper extending knee ()
## 32040                                                                                                                                                                                      EE slipped on wet floor in bathhouse and hit her right cheek on countertop ()
## 32041                                                                                                                                  EE slipped on wet floor in bathroom and fell. Plt atty susan rhodes patrick wooten ***overpayment of $294. 48- credit from ppd***
## 32042                                                                                                                                                                                                      EE slipped on wet floor in dinning room and twisted lt ankle.
## 32043                                                                                                                                                                                                     EE slipped on wet floor in hallway while returningto work area
## 32044                                                                                                                                                                                                 EE slipped on wet floor in he gym where she was signing in guests.
## 32045                                                                                                                                                                                    EE slipped on wet floor in micropsy room and hit head and pulled muscle in side
## 32046                                                                                                                                                                                                                             EE slipped on wet floor injuring knee.
## 32047                                                                                                                                                                                                                        EE slipped on wet floor injuring left wrist
## 32048                                                                                                                                                                                                              EE slipped on wet floor injuring lt leg, hip and foot
## 32049                                                                                                                                                                                                                       EE slipped on wet floor injuring right knee.
## 32050                                                                                                                                                                                                                           EE slipped on wet floor injuring rt side
## 32051                                                                                                                                                                                                                 EE slipped on wet floor injuring shoulder and knee
## 32052                                                                                                                                                                                                         EE slipped on wet floor injuring tailbone, left and rt hip
## 32053                                                                                                                                                                                                                     EE slipped on wet floor landing on both knees.
## 32054                                                                                                                                                                                                                      EE slipped on wet floor landing on left knee.
## 32055                                                                                                                                                                                                        EE slipped on wet floor landing on lower back and tailbone.
## 32056                                                                                                                      EE slipped on wet floor landing on rt side & both wrists (primarily lt wrist & ankle) twisted & pullmusecles. Small abraison back of rt ankle
## 32057                                                                                                                                                                              EE slipped on wet floor of a kitchen & her neck & right shoulder hit the ground hard.
## 32058                                                                                                                                                                                                  EE slipped on wet floor of dishroom and hurt kneesand right hand.
## 32059                                                                                                                                                                                                EE slipped on wet floor outside of womens rest room. Sprained knee.
## 32060                                                                                                                                                                                     EE slipped on wet floor striking his head on a table and twisting his lt ankle
## 32061                                                                                                                                                                     EE slipped on wet floor that had just been mopped and hand got caught in door on the way down.
## 32062                                                                                                                                                                                                        EE slipped on wet floor twisting back and hitting rt elbow.
## 32063                                                                                                                                                       EE slipped on wet floor while attempting to get keys to open cell doors, during emer soreness to right thigh
## 32064                                                                                                                                                                                     EE slipped on wet floor while pulling out bed and sprained rt shoulder and arm
## 32065                                                                                                                                                                                                    EE slipped on wet floor while stripping in dorm-- rt arm, wrist
## 32066                                                                                                                                                                                         EE slipped on wet floor while walking between c3 & c4. Injured lower back.
## 32067                                                                                                                                                                                                              EE slipped on wet floor while walking near his office
## 32068                                                                                                                                                                    EE slipped on wet floor(mopped area) injuring shoulder. Staff was walking to group home office.
## 32069                                                                                                                                                                                       EE slipped on wet floor, fell and injured right wrist. Possible wrist sprain
## 32070                                                                                                                         EE slipped on wet floor, fell on rt knee and ankleee rec'd $35, 360. 00 ppd to knee on 8-9-1994 as a result of 40% ppd given by physician.
## 32071                                                                                                                                                                                                    EE slipped on wet floor, fell twisted knee and hitknee on floor
## 32072                                                                                                                                                                           EE slipped on wet floor, felt pop in lt ankle area& has had pain in heel area since then
## 32073                                                                                                                                                                    EE slipped on wet floor, hit left arm on food cart, jarring left arm shoulder and neck muscles.
## 32074                                                                                                                                                 EE slipped on wet floor, overhead heater leaking making floor slick, EE twisted right knee, hip, back and ankle ()
## 32075                                                                                                                                                                                                                         EE slipped on wet floor, twisted l knee ()
## 32076                                                                                                                                                                                                EE slipped on wet floor-falling on lt forearm & elbow & jerked neck
## 32077                                                                                                                                                                                                EE slipped on wet floor. Injury to lower right back and right thigh
## 32078                                                                                                                                                                                                                       EE slipped on wet floor. Strain to right hip
## 32079                                                                                                                                                            EE slipped on wet floor. Wet sign was not in placeee was having great pain and caused EE to leave work.
## 32080                                                                                                                                                                                                                      EE slipped on wet floor; bicep area left side
## 32081                                                                                                                EE slipped on wet grade and fell while going to conduct training session. EE landed on left hand and wrist. Contusion and sprain to left hand/wrist
## 32082                                                                                                                                                                                                                          EE slipped on wet grass and fell on knee.
## 32083                                                                                                                                                                                                                   EE slipped on wet grass and fell spraining ankle
## 32084                                                                                                                                                                                                           EE slipped on wet grass and fell striking right shoulder
## 32085                                                                                                                                                                                EE slipped on wet grass at inspection site, landed on l hand, creating contusion ()
## 32086                                                                                                                                                                                 EE slipped on wet grass on a bank while using weedeater. Sprained left wrist/hand.
## 32087                                                                                                                                                                                                                           EE slipped on wet grass while mowing it.
## 32088                                                                                                                                                                                                 EE slipped on wet grassy slope while walking. Injured lt shoulder.
## 32089                                                                                                                                                                                EE slipped on wet kitchen floor; there was no signindicating that the floor was wet
## 32090                                                                                                                                                                                   EE slipped on wet leaves and acorns. He stumbled a few steps, hit ground on hip.
## 32091                                                                                                                                                                                                                     EE slipped on wet leaves and fell on left knee
## 32092                                                                                                                                                                                                                 EE slipped on wet leaves and landed on his lt foot
## 32093                                                                                                                                                                                     EE slipped on wet leaves left on curb of parking lot by maintenance personnel.
## 32094                                                                                                                                                                           EE slipped on wet leaves while obtaining samples on nature trail injuring left shoulder.
## 32095                                                                                                                                  EE slipped on wet leaves while on trail and fell with right arm stretched out behind EE & caught all her weight on right wrist ()
## 32096                                                                                                                                             EE slipped on wet mat and fell int floor injuring rt knee and left shoulder. Sandra carswell 828 433 2429 fax 433 2098
## 32097                                                                                                                                                                                         EE slipped on wet mat in frt of breezeway-injured left/rt knees and hands.
## 32098                                                                                                                                                                                                             EE slipped on wet mulch and fell dislocating shoulder.
## 32099                                                                                                                                                                                 EE slipped on wet parking lot pavement and fell injuring her right elbow and back.
## 32100                                                                                                                                                      EE slipped on wet patio carpet and landed on her left hip, twisted her right knee and felt immediatback pain.
## 32101                                                                                                                                                                                                                       EE slipped on wet pavement - fracture rt leg
## 32102                                                                                                                                                                                                         EE slipped on wet pavement and fell breaking arm and foot.
## 32103                                                                                                                                                                                                                               EE slipped on wet pavement and fell.
## 32104                                                                                                                                                                                                      EE slipped on wet pavement between two doors on loading dock.
## 32105                                                                                                                                                           EE slipped on wet ramp and fell off ramp onto gravel-bruised and cut shoulder, elbow, ankle and tailbone
## 32106                                                                                                                                        EE slipped on wet running board when he stepped down one step on a tractor trailer, causing a sharp pain in lower left back
## 32107                                                                                                                                                                                     EE slipped on wet sidewalk and tried to catch herself with lt hand. Ly pinkie.
## 32108                                                                                                                                                                                                                                   EE slipped on wet slippery floor
## 32109                                                                                                                                              EE slipped on wet soapy floor in hallway of court house. EE was doing administrative work and working on transcripts.
## 32110                                                                                                                                                                     EE slipped on wet soapy floor when EE was coming down the stairs carrying an inmate's property
## 32111                                                                                                                                                                                                          EE slipped on wet spot and fell on right shoulder and arm
## 32112                                                                                                                                                                                                         EE slipped on wet spot in common hallway twisting lt knee.
## 32113                                                                                                                                                                                                               EE slipped on wet spot in foyer & injured right knee
## 32114                                                                                                                EE slipped on wet spot in hallway, grabbed door frame with left arm to prevent fall, this aggravaterotator cuff which had seen by doctor this week.
## 32115                                                                                                                                                                                       EE slipped on wet spot in the hallway and fell on knee. Contusion lt patella
## 32116                                                                                                                                                                                                                                    EE slipped on wet spot on floor
## 32117                                                                                                                                                                                                             EE slipped on wet spot on floor and fell injuring back
## 32118                                                                                                                                                                                   EE slipped on wet spot on floor and fell onto a coffee table injuring lower back
## 32119                                                                                                                                      EE slipped on wet spot on floor and started falling. Twisted her body to herself against wall to prevent fall. Neck and back.
## 32120                                                                                                                                                                      EE slipped on wet spot on floor falling foward hurting left ankle, rt knee rt elbow and wrist
## 32121                                                                                                                                                                                                 EE slipped on wet spot on floor injury fell on left knee and elbow
## 32122                                                                                                                                                           EE slipped on wet spot on floor while returning todesk from lab working area possible strain to shoulder
## 32123                                                                                                                                                                                                                 EE slipped on wet spot on the floor near her desk.
## 32124                                                                                                                                                                                                                    EE slipped on wet stairways and jolted low back
## 32125                                                                                                                                                                                                                  EE slipped on wet steps and injured her left knee
## 32126                                                                                                                           EE slipped on wet steps when getting off hauling unit and fell backwards striking his hand on the battery cover that fell to the ground.
## 32127                                                                                                                                                                                                                EE slipped on wet steps while performing field work
## 32128                                                                                                                                                                                                                                          EE slipped on wet surface
## 32129                                                                                                                                     EE slipped on wet surface while arranging an exhibit in an aquarium. Bruises on left knee, left lower ribs, and right forearm.
## 32130                                                                                                                                                                                  EE slipped on wet tile and fell on rt leg/side twisting ankle, knee, hip and back
## 32131                                                                                                                                                                                                                                    EE slipped on wet tile floor ()
## 32132                                                                                                                  EE slipped on wet tile floor in parking deck, fell and bruised both knees, lt elbow, tried to catch self hurt rt hand, jammed shoulder, back pain
## 32133                                                                                                                                                               EE slipped on wet tile floor, when trying to pre- vent the fall she twisted her back and right knee.
## 32134                                                                                                                                                                                                       EE slipped on wet tiles (due to rain) and fell on left knee.
## 32135                                                                                                                                                                                                                       EE slipped on wet van step and sprained knee
## 32136                                                                                                                                                                                EE slipped on wet wax floor, causing body to do a split and hit right knee on floor
## 32137                                                                                                                                                                    EE slipped on wet waxed floor and fell straining shoulder, neck, groin, finger and bruising hip
## 32138                                                                                                                                                                                           EE slipped on whatever was put out for snow and ice... Injured left hand
## 32139                                                                                                                                                                                          EE slipped on yogart that was on floor, injuried rhip, lower back, r knee
## 32140                                                                                                                                                                                                EE slipped onnice in parking lot and fell hitting back on car door.
## 32141                                                                                                                                                                                               EE slipped or lost balance and fell to the floor landing on her back
## 32142                                                                                                                                                              EE slipped or tripped on top step-tried to get balance but couldn't fell injuring neck-lefg-arms-side
## 32143                                                                                                                                                                                                             EE slipped out of chair and caught self with left hand
## 32144                                                                                                                                                                                      EE slipped out of chair while turning from desk to computer and strained back
## 32145                                                                                                                                                                                  EE slipped out of office chair while bending over to pick up something off floor.
## 32146                                                                                                                                                                                        EE slipped stepping down from platform where he was collecting rain samples
## 32147                                                                                                                                                                                                         EE slipped twice in a spill on the floor and injured thumb
## 32148                                                                                                                                                                             EE slipped under bathing table, fell back hitting top of head and twisting right hand.
## 32149                                                                                                                                                                                         EE slipped walking to parking lot on gras that waswet. Strain right wrist.
## 32150                                                                                                                                                          EE slipped wet bricks in front of holladay hall during rainstorm. Returning from mtg. Injured left ankle.
## 32151                                                                                                                                                                        EE slipped when walking downstairs. Managed to catch self b/c of handrail; neck is strained
## 32152                                                                                                                                                                                                            EE slipped while apply stripper to remove wax fromfloor
## 32153                                                                                                                                                                   EE slipped while cleaning a low area and fell against a wall bruising her head, hip and shoulder
## 32154                                                                                                                                                                                       EE slipped while climbing bank in dry river channel and struck shin severly.
## 32155                                                                                                                                                                                     EE slipped while climbing down a piece of machinery and injured his left hand.
## 32156                                                                                                                                                                                       EE slipped while climbing steps striking his lt leg on the edge of the steps
## 32157                                                                                                                                                                                                                EE slipped while crossing fence and injured rt hand
## 32158                                                                                                                                                                         EE slipped while descending embankment after firing rocket net for trapping wood ducks. ()
## 32159                                                                                                                                                                                                       EE slipped while getting down from truck and twisted arm. ()
## 32160                                                                                                                                                                                                EE slipped while getting off shuttle bus injuring rt elbow and hip.
## 32161                                                                                                                                                                              EE slipped while getting out of a muddy hole, tried to catch self and strained finger
## 32162                                                                                                                                                                                               EE slipped while getting out of veh and jammed left finger into door
## 32163                                                                                                                                                                                                           EE slipped while going down stairs and sprained rt ankle
## 32164                                                                                                                                                                    EE slipped while going uphill in garden with a loaded wheelbarrow, strained back and right leg.
## 32165                                                                                                                                                                                                              EE slipped while in womens bathroom. Lt arm and back.
## 32166                                                                                                                                                                           EE slipped while moving boxes and fell onto concrete floor during repacking of handbooks
## 32167                                                                                                                                                   EE slipped while stepping over beam on roof to enter equipment area causing injury to left eye, arm and shoulder
## 32168                                                                                                                                                                                                            EE slipped while walking and ankle turned and popped ()
## 32169                                                                                                                                                                                      EE slipped while walking down hall-ankle twisted and pulled knee on left side
## 32170                                                                                                                                                                                                            EE slipped while walking down hall. Referred to glenda.
## 32171                                                                                                                                                                                                                            EE slipped while walking down the hall.
## 32172                                                                                                                                                                                                 EE slipped while walking down the stairs... Left shoulder and head
## 32173                                                                                                                                                                                          EE slipped while walking on icy brickwork; injuredneck, back, elbow, head
## 32174                                                                                                                                                                                              EE slippedo n trash bag on the floor and strained lower back and knee
## 32175                                                                                                                                                                                                                 EE slippedon leaves in exhibit and twisted rt knee
## 32176                                                                                                                                                                                                               EE slippled and fell on wet floor from ice and snow.
## 32177                                                                                                                                                                                   EE slippled on icy back steps while taking trash out landing on rt side and arm.
## 32178                                                                                                                                                                                       EE slippped and fell on a wet floor causing injuryto his rt hand and lt knee
## 32179                                                                                                                                                                                                    EE slippped and fell on bathroom floor injuring his rt shoulder
## 32180                                                                                                                                                                                                            EE slippped and fell on wet grass injuring his rt elbow
## 32181                                                                                                                                                                                          EE slippped and fell while walking around the boat - sciatic nerve injury
## 32182                                                                                                                                                                                                                   EE slippped on a pipe cuppling and fell on butt.
## 32183                                                                                                                                                                                                                  EE sllammed supply room door on left index finger
## 32184                                                                                                                                                                                                              EE sllipped on wet concrete rt shoulder hip and back.
## 32185                                                                                                                                          EE slowed for a fire truck. Vehicle behind EE rear-ended vehicle and caused head to snap forward, back and shoulders also
## 32186                                                                                                                                                                                                        EE slung a bag of toys over her back.... Back, neckshoulder
## 32187                                                                                                                                                                                                            EE smacked head on overhanging pallet above the bin. ()
## 32188                                                                                                                                   EE small coil other trade jammed against steam pipe. Slipped and quick response to catch, finger jammed under unit & dislocated.
## 32189                                                                                                                                                                                                    EE smashed her finger in the middle of pans... Left ring finger
## 32190                                                                                                                                                                                                                                EE smashed his fingers in window ()
## 32191                                                                                                                                                                                             EE smashed his rt thumb while pulling out conduit to straigthening rod
## 32192                                                                                                                                                                                                         EE smashed left hand in filing cabinet when closing drawer
## 32193                                                                                                                                                                                                                   EE smashed rt hand between care handler on fence
## 32194                                                                                                                                                                                   EE smashed rt. Ring finger between door and door frame. Fractured tip of finger.
## 32195                                                                                                                                                                                EE smashed/cut/brused middle right finger while loading bottle washer in steel rack
## 32196                                                                                                                                                                                     EE smell bug spray in cube area, had headache and nose was burning, felt dizzy
## 32197                                                                                                                                           EE smelled a strange fume in the building. Her breathing had gotten rapid, heart rate was fast and felt light headed. ()
## 32198                                                                                                                                                                                   EE smelled an odor throught the building as con- ducting classification reviews.
## 32199                                                                                                                                                                                                                 EE smelled bad odor in building and upset stomach.
## 32200                                                                                                                EE smelled strong odor of sulfur @ mary townes science complex, which brought on an asthmatic attackee is asthmatic & takes reg breathing treatment
## 32201                                                                                                                                                                                 EE smelled unpleasant fumes in building. There areno know effects from the smells.
## 32202                                                                                                                                                                                                                                  EE snagged rt foot on paper case.
## 32203                                                                                                                               EE snagged toe on uneven concrete step--fell down-length on concrete--scraped both palms, lt elbow, lt leg, lt hip rt wrist, lt knee
## 32204                                                                                                                                                                                                                 EE sneezed and struck her head on a metal card box
## 32205                                                                                                                                                                             EE sneezed on the way to work, at which time he started experiencing severe back pain.
## 32206                                                                                                                      EE soaped down loading dock area to be power washdwent to step on truck to turn on machine and slipdon tailgate, fell on tail bone right side
## 32207                                                                                                                                                                                         EE sorting mail and a splinter from mail boxes went under nail on rt hand.
## 32208                                                                                                                       EE sought to borrow phone in 402 brauer, caught toe in carpet edge near door, fell and hit head oncorner of desk. Preparing for lab at time.
## 32209                                                                                                                EE speaking with inmate his hand was holding the base at bar door of c-block - was not aware bar door being opened. Rt hand - back on hand bruised.
## 32210                                                                                                                                 EE spends 5 days a week canoeing and believes constant exposure to lake and river caused infection in his big toe on left foot. ()
## 32211                                                                                                                                                                                                                                 EE spends 60% of time at computer.
## 32212                                                                                                                                                                                                EE spends majority of the day typing on keyboard repetitive motion.
## 32213                                                                                                                                                                                                    EE spends mjority of the day computer imputting. Injured wrist.
## 32214                                                                                                                                                                          EE spent several hours moving heavy ice and snow with a shovel. Right achilles tendonitis
## 32215                                                                                                                              EE spent several hrs repairing turntable, much of it kneeling @ the end of task lt knee was painful especially when pressure applied.
## 32216                                                                                                                                                       EE spent three days sanding drywall mud nonstop- low back became sore from repetitive stretching and bending
## 32217                                                                                                                                                                 EE spent two days bending, lifting, pulling on a file cabinet, and lifting bags. Injured low back.
## 32218                                                                                                                                                  EE spies states while searching inmates he had floss tied to his id card and I pulled the floss and cut my finger
## 32219                        EE spilled 300-500 ml of ethanol, while trying to obtain aliquot methanol. She left the room to get paper towels and returned and tried not breathing while putting them on the spill, then took the methanol and notified the lab tech. ()
## 32220                                                                                                                                                                                    EE spilled a phenol/choroform mix while placing a piece of tape around the lid.
## 32221                                                                                                                                                                                       EE spilled caustic acide on left foot when replacing pipe at the water plant
## 32222                                                                                                                                                                                                                                   EE spilled hot coffee on rt hand
## 32223                                                                                                                                                                        EE spit and hitting EE-EE trying to redirect client and client grabbed EE's lt index finger
## 32224                                                                                                                                                     EE splipped and fell in an area that had been recently mopped. Rt and lt arm, head and lt knee. Bruising back.
## 32225                                                                                                                                                                                                              EE splipped and fell.... Water.... Injured left wrist
## 32226                                                                                                                   EE spotted a parolee who he had a warrant on. EE pursued offender & cornered him in lot. As a result of a fight EE got a hairline frac. To thumb
## 32227                                                                                                                        EE spotted a parolee who he had warrant on. The offender ran & EE pursued cornering him in lot offender gave fight while EE restrained him.
## 32228                                                                                                                               EE spotting a gymnast on floor-she became disoriented & EE had to catch her & keep her from landing on her neck-EE twisted left knee
## 32229                                                                                                                                                                                                                  EE sprain her ankle while running down the stairs
## 32230                                                                                                                                                                                                                                    EE sprain her left fifth finger
## 32231                                                                                                                                                                                                           EE sprain her lt foot while walking on a uneven sidewalk
## 32232                                                                                                                                                                                             EE sprain/strain left hand while attempting to adjust mobile furniture
## 32233                                                                                                                                                                                                EE sprained ankle and hairline fracture of small bone in left foot.
## 32234                                                                                                                                                                                                                              EE sprained ankle restraining patient
## 32235                                                                                                                                                                                                        EE sprained ankle trying to restrain out of control student
## 32236                                                                                                                                                                                                         EE sprained ankle while trying not to drop computemonitor.
## 32237                                                                                                                                                                                                           EE sprained her left ankle while walking down the stairs
## 32238                                                                                                                                        EE sprained his right wrist while using top hand technique while participating in an unarmed self- defense refresher class.
## 32239                                                                                                                                                                                                                                             EE sprained left ankle
## 32240                                                                                                                                                                                                                            EE sprained left ankle during seclusion
## 32241                                                                                                                                                                                                                     EE sprained left ankle while descending stairs
## 32242                                                                                                                                                                                                                           EE sprained left knee getting out of van
## 32243                                                                                                                                                                                                                    EE sprained left knee while restraining patient
## 32244                                                                                                                                                                                                                    EE sprained left shoulder while spreading mulch
## 32245                                                                                                                                                                                                                  EE sprained left thumb twisting top on the cooler
## 32246                                                                                                                                                                                             EE sprained left thumb when patient had a muscle spasm during bathing.
## 32247                                                                                                                                                                                                  EE sprained left wrist preventing client from fal-ling in shower.
## 32248                                                                                                                                                                                                       EE sprained left wrist trying to catch trashcan from rolling
## 32249                                                                                                                                                                                                                          EE sprained left wrist while lifting box.
## 32250                                                                                                                                                                                                  EE sprained lt shoulder while trying to stop client from falling.
## 32251                                                                                                                                                                                                     EE sprained lt thumb while trying to put patient in restraints
## 32252                                                                                                                                                                                                             EE sprained mid back while lifting box of file folders
## 32253                                                                                                                                                                                                                    EE sprained middle finger during baton training
## 32254                                                                                                                                                                                                                                  EE sprained right knee and ankle.
## 32255                                                                                                                                                        EE sprained right wrist pushing and pulling a deadhorse to get it in position to be picked up by fo rklift.
## 32256                                                                                                                                                              EE sprained rt ankle and ligaments while coming down steps of staff house fell and landed on rt ankle
## 32257                                                                                                                                                                                                       EE sprained rt ankle when he answered supervisor's telephone
## 32258                                                                                                                                                                                                                     EE sprained rt foot while jumping over a ditch
## 32259                                                                                                                                                                                                              EE sprained rt wrist while trying to restrain patient
## 32260                                                                                                                                                                                                                  EE sprained wrists while empting trash containers
## 32261                                                                                                                                                                                             EE sprang rt thumb while removing trash from one container to another.
## 32262                                                                                                                                                                                                                                      EE sprayed chemicals in l eye
## 32263                                                                                                                                                                                                    EE sprayed disinfectant spay into both eyes when filling bottle
## 32264                                                                                                                                                                          EE sprayed floor in 4th barn hallway and hit his head on plexiglass biosafety supply box.
## 32265                                                                                                                                                            EE sprayed in face and eyes as part of pepper spray exposure training. Lt eye irritation and infection.
## 32266                                                                                                                                                               EE sprayed in face with pepper spray during traingee reported becoming dizzy and difficult breathing
## 32267                                                                                                                                                                                                         EE sprayed inmate with oc spray and she inhaled some of it
## 32268                                                                                                                    EE sprayed inmate with pepper spray to bring him under control. Inmate kicked him striking him in his back and in the process left hand was cut
## 32269                                                                                                                                                      EE sprayed prosan on the ceiling in the restroom trying to clean the tile, the prosan dropped into her eye ()
## 32270                                                                                                                                                              EE sprayed sanitizer on towel and some fell on the floor/ EE then got up and slipped in it unknowling
## 32271                                                                                                                                           EE sprayed w/pepper spray as part of regular training. EE stated when she woke up the following morning face was swollen
## 32272                                                                                                                                                                                                   EE spraying mirrow in bathroom and solution splashed in left eye
## 32273                                                                                                                                                                      EE sprayint iodine on cows-didn't release spray wand handle causing iodine to spray into eye.
## 32274                                                                                                                   EE spreading fire with drip torch on four wheeler, four wheeler rolled on right side, tourch left handand saild through air hitting EE in mouth.
## 32275                                                                                                                      EE spun around to talk to an officer and in the process he stepped off the edge of the sidewalk and lost his balance causing pain in low back
## 32276                                                                                                                                               EE squating in food svc cooler. Row of liquid egg containers fell. A box struck EE across left neck and shoulder. ()
## 32277                                                                                                                                 EE squatted down and placed left hand under consumers right arm and assisted him to his feet. EE felt something pop in lower back.
## 32278                                                                                                                                                                                                      EE squatted down on rovel control panel. Sprained right knee.
## 32279                                                                                                                                                           EE squatted down on the floor to take a patients blood pressure and felt a sharp pain in right ankle. ()
## 32280                                                                                                                 EE squatted down to go under rack to get numbers from computer equipment. When she was getting up felt bones rubbing and popping and knee hurting.
## 32281                                                                                                                                                                                        EE squatted down to lift laser printer and strained causing inguinal hernia
## 32282                                                                                                                                   EE squatted down to lift window a/c unit, extendedarms out to grasp unit and lower back snapped and EE knelt to ground on knees.
## 32283                                                                                                                    EE squatted down to pick up paperwork that had fallen to the floor she lost her balance, fell back & hit head on keyboard holder under desk. ()
## 32284                                                                                                                                       EE squatted down to provide treatment to animal & when she stood up, she hit her head on the metal cage. Referred to glenda.
## 32285                                                                                                                                                                        EE squatted down to service gas pack, felt pullingsensation in right knee when he stood up.
## 32286                                                                                                                                                                                                       EE squatted down to wash geri chair and strained lt mid back
## 32287                                                                                                                                                   EE squatted in the floor to talk to patient where pt was sitting pt kicked this writer in the left side of chest
## 32288                                                                                                                                                                 EE squatted to fire weapon, placed right knee on rock causing left leg to slip out from under him.
## 32289                                                                                                                                                                                        EE squatted to repair flat tire when hid knee popped and twisted to ground.
## 32290                                                                                                                                                                             EE squatting down to x-ray a foot-when getting back up felt pain in lower back & groin
## 32291                                                                                                                        EE squatting to look in bottom of cabinet for envelopes, EE started to get up, grabbed hold of middle piece of cab. It came off and EE fell
## 32292                                                                                                                                                                                    EE squeezed mop out and began to mop felt sharp pain in middle rt side of back.
## 32293                                                                                                                                                          EE squeezing plants out plastic container-- container broke and a piece of plastic flew into EE left eye.
## 32294                                                                                                                                                          EE squirrel came through door and jumbped on window sill. Tryed to remove squirrel from scratchshoulders.
## 32295                                                                                                                                                                                                     EE stabbed EE in arm with pencil. Puncutre wound lt upper arm.
## 32296                                                                                                                                                                                                                                   EE stabbed hand with scissors ()
## 32297                                                                                                                                                                                                                 EE stabbed self in palm of hand with glass pipette
## 32298                                                                                                                                                                                                 EE stack mse goods and caught arm between rows. Lt forearm/scraped
## 32299                                                                                                                EE stacked dishes near switch of converyor belt and when he moved dishes switch was engaged and caused belt to move/causing EE finger to be smashed
## 32300                                                                                                                                                             EE stacking fire wood-bent down to pick up anotherlog and another log from top fell and hit EE in head
## 32301                                                                                                                                                              EE stacking plastic tables-removed table leg from one to correct poition when leg went into right eye
## 32302                                                                                                                                                                                                             EE stacking tables on cart when one fell onto rt foot.
## 32303                                                                                                                                 EE stacking wood in carpentry shop. Wood began falling and rolled over his left hand causing fx w/dislocation to left index finger
## 32304                                                                                                                                                                                                              EE staes client fell down in wheelchair on EE's hand.
## 32305                                                                                                                                                      EE staes client grabbed EE around the waist and slammed her on the ground hurting her hip, shoulder and head.
## 32306                                                                                                                                                        EE staes door shut on lt hand, middlenail, when entering bldg 72. EE was trying to keep door from slamming.
## 32307                                                                                                                                                                                                     EE staes hurt back while asisting placing patient in s&r room.
## 32308                                                                                                                                                                                      EE staes patient threw a remote and it struck EE in the temporal of the head.
## 32309                                                                                                                                                                                                                       EE staes student elbowed student in stomach.
## 32310                                                                                                                                           EE staes that he was in conversation with inmate thomas miles when saliva flew from inmates mouth and hit him in the eye
## 32311                                                                                                                                                                             EE staes walking down the steps, as he turn to answer question he fell down four steps
## 32312                                                                                                                                        EE staes while doing everyday cleaning EE noticed her hands were breaking out. Beginning at wrists and down to the fingers.
## 32313                                                                                                                                                                          EE staes while getting up from breakroom and felt pain in right thigh from hip of rt leg.
## 32314                                                                                                                                                                                                            EE staes while restraining patient, EE fell on rt knee.
## 32315                                                                                                                                                                                                  EE stamping case numbers as reg job, cts in both hands and wrists
## 32316                                                                                                                                                                               EE standing against building and the electricty from lighting struck him on lt side.
## 32317                                                                                                                                                                                     EE standing around for long time in one place in cold water, strain to rt knee
## 32318                                                                                                                                                                                      EE standing at desk when another EE attacked her and knocked EE to the floor.
## 32319                                                                                                                                                                      EE standing at frt counter-co-worker picked up a spray bottle and chemical went into left eye
## 32320                                                                                                                              EE standing at the door, had her hand up on the bar and the officer in the control room opened the door and her hand was caught in it
## 32321                                                                                                                                     EE standing behind client's wheelchair-client pushed wheelchair backwards into EE causing EE to hit back against elevator door
## 32322                                                                                                                                                                           EE standing behind client-bent down to check clients attend-client kicked EE in stomach.
## 32323                                                                                                                                                                                         EE standing behind client-client kicked sideways and hit EE on the rt claf
## 32324                                                                                                                                                                                               EE standing behind door-door pushed open hit EE in right side of hip
## 32325                                                                                                                                                                              EE standing beside filing cabinet and a metal bar fell and hit EE on the left forarm.
## 32326                                                                                                                                                                                                    EE standing beside lawn mower tow bar fell off and hit her toe.
## 32327                                                                                                               EE standing btwn last 2 seats reaching over back seat reposition supplies, foot slipped causing EE to fall face forward, hit chest on hard metal rod
## 32328                                                                                                                      EE standing charting patient's vital signs, janitor came too close and came in contact with dorsal surface of EE right foot. Abrasion rt foot
## 32329                                                                                                                                                      EE standing client up to change clothes-client kept going down-EE noted pain in arms, shoulder, neck and back
## 32330                                                                                                                                                                  EE standing client-client dropped and EE att to catch EE from falling-fel crunch in back/left leg
## 32331                                                                                                              EE standing in basket of lift; lift swayed slightlyas EE cut cable loose & when EE depressed the downbutton the lift tipped over and EE fell to floor
## 32332                                                                                                                             EE standing in chair to clean board - chair moved causing EE to lose balance and fall to floor injuring lower back, elbow and rt ankle
## 32333                                                                                                                                                                                                 EE standing in chair to operate video monitor and fell from chair.
## 32334                                                                                                                                                                           EE standing in chair to reach supplies fell from chair while reaching. Left back & ribs.
## 32335                                                                                                                                                                                                  EE standing in chair with wheels on it on a bare floor. And fell.
## 32336                                                                                                                                                EE standing in dayroom observing inmates. Turned around to walk out of dayroom knee popped. Injury to lt leg (knee)
## 32337                                                                                                                                                                                                EE standing in doorwary when wasp went under pantsand stung her leg
## 32338                                                                                                                                                               EE standing in doorway checking in inmates when door slammed shut hitting EE in back & left shoulder
## 32339                                                                                                                                                          EE standing in doorway of kitchen with her back todoor when inmate opened the door, slaming door in back.
## 32340                                                                                                                                                               EE standing in doorway of suspects veh-suspect backed veh up 3 times injuring EE's back and left arm
## 32341                                                                                                                     EE standing in doorway talking to inmate, inmate stood up and struck EE in the face around his lower left side of lip. Laceration to inner lip
## 32342                                                                                                                                       EE standing in front of class-observed a student enter & excitedly jumped-felt snap in right calf cannot put pressure on leg
## 32343                                                                                                                                   EE standing in front of dry rack for beverage containerl one of containers was stacked on top shelf, it fell & struck EE on head
## 32344                                                                                                                  EE standing in front of housing unit and heard a noise in front of b-dorm. Stepped over ptps and lost balance. Fell back onto cement drain-gravel
## 32345                                                                                                                                                                          EE standing in frt of client-told client to sit down and client hit EE on left lower arm.
## 32346                                                                                                                                                    EE standing in lab when EE2 entered lab; tried to step back out of the way, but EE2 stopped on my right foot ()
## 32347                                                                                                                                                       EE standing in parking lot talking, when stepped backwards, falling & hitting head and right arm on concrete
## 32348                                                                                                                                                                       EE standing in room during shift briefing at beginning of shift. EE fainted without warning.
## 32349                                                                                                               EE standing in the brc center w/0 notice or provocation, pat hit him with a book on right forearm, strained lower back. Owe EE ttd 2-15-08 & 8-11-08
## 32350                                                                                                                                                        EE standing near basketball court when ball hit her neck and caused her to pass out. Neck stiff and swollen
## 32351                                                                                                                               EE standing near basketball pole from basketball court. An inmate dribbling toward basket in crowd inmates elbow hit EE in eye area.
## 32352                                                                                                                                                                              EE standing next to closed gate-car skidded to a stop & then ran over EE's right foot
## 32353                                                                                                                                             EE standing on a chair placing a training device used in his intruction in the celing of a room andfractured rt wrist.
## 32354                                                                                                                   EE standing on bas e working to replace coupling pump motor-when feet slipped frm under him causingrt finger to twist inside of coupling housing
## 32355                                                                                                                                                                              EE standing on chair cleaning a/c vents chair moved causing EE to fall on right ankle
## 32356                                                                                                                                               EE standing on chair to take a photo-made a suddenmovement to regain balance and strained muscle in upper left chest
## 32357                                                                                                                                                   EE standing on chair while attempting to kill waspand jumped off chair and fell landing on left kneeon the floor
## 32358                                                                                                                                                                                                               EE standing on chair-while getting down hurt rt knee
## 32359                                                                                                                       EE standing on couch to water plants, misjudged distance from couch to floor, lt foot slipped, fell bckwrds and hit rt heel on office chair.
## 32360                                                                                                                                                                                               EE standing on curb talking and stepped down and twisted left ankle.
## 32361                                                                                                                                     EE standing on ditch bank bank caved in caused herto fall. She caught herself with left hand. Injured left hand and left wrist
## 32362                                                                                                                                                                                    EE standing on front porch-client came up and hit EE on neck causing it to pop.
## 32363                                                                                                                                                                 EE standing on ladder & opened ceiling file, therewas broken brick on other side, fell into EE ear
## 32364                                                                                                                  EE standing on ladder operating trailer when trk backed up and started dumping boxes causing EE to loose hand grip and footing falling to ground.
## 32365                                                                                                                                                                        EE standing on loading dock, taking sheets of lumber and stacking 15 ft away, hurting elbow
## 32366                                                                                                                         EE standing on porch beside mobile home knocking on door, p0rch covered w/carpet, he was leaving lt ankle gave way. Ligaments of lt ankle.
## 32367                                                                                                                                        EE standing on roadway working traffic, as he was turning around, his left arm was struck by the mirror of passing vehicle.
## 32368                                                                                                                                             EE standing on soda bench & bent to remove 55# soda off top of stack & stepped off of bench with soda injury occurred.
## 32369                                                                                                                         EE standing on stool in order to reach key board to assign out keys when stool slipped and fell to floor. Injured left l eg and right arm.
## 32370                                                                                                                                                    EE standing on the bow of patrol boat collecting dead fish from a fish wagon spilling wagon. Bacteria of water.
## 32371                                                                                                                   EE standing on top of 4 bales of straw when the bales shuffled causing him to fall. EE fell to ground one bale struck head. Bruise to back & nek
## 32372                                                                                                                                                EE standing on top step while talking to vendor EE sliped from top step & fell causing injury to back, head, lt arm
## 32373                                                                                                                                                     EE standing on trash can to change light bulbs when getting down fell and twisted left knee-cut back on heater
## 32374                                                                                                                                                               EE standing outside backdoor when wind blew door open causing door knob to hit EE in middle of back.
## 32375                                                                                                                EE standing outside building, felt a bug crawling on right elbow, EE hit it and killed it on arm, eelooked at it it was a spider. Bite to right arm
## 32376                                                                                                                        EE standing standing in water tank trailer-stepped on plank-floor plank broke-EE fell through floor hitting hit rt. Arm on trailer rail. ()
## 32377                                                                                                             EE standing to close to instrument tray and as he moved around the tray, struck his right hand on a dental drill. Description stated by m. A. Blancher
## 32378                                                                                                                                                              EE standing under catwalk stairing & the unknown liquid from cellblock struck him in head & shoulders
## 32379                                                                                                                      EE standing up to judges bench to obtain signaturefrom judge on doc during session, EE moved to rtrn to desk step missed EE fell bruised neck
## 32380                                                                                                                                                                                     EE standing with back to stack of boxes when two boxes fell onto EE's rt foot.
## 32381                                                                                                                                                                                                               EE starined back trying to stop client from falling.
## 32382                                                                                                                                                                                EE start feeling sick with an upset stomach. He was taken to memorial mission hosp.
## 32383                                                                                                                                                                                                               EE start running to call and fell injuring left foot
## 32384                                                                                                                          EE started across the breakroom floor-slipped in wsome water that leaked on floor, fell and landed on rt hip, leg twisted underneath her.
## 32385                                                                                                                                                                                                             EE started breaking out in rash on both arms afterwork
## 32386                                                                                                                                                     EE started breaking out with blisters on left sideof body while welding manure carts fro large animal facility
## 32387                                                                                                                                                                              EE started complaining of headaches and flu-like symptoms 2 hrs after using herbicide
## 32388                                                                                                          EE started crossing the parking deck, was standing water, EE was looking, but her feet slipped and fellon her knees and then on hip. Strain back/hand/leg
## 32389                                                                                                                                                                                EE started developing carpal tunnel syndrome in the lt wrist over the past 2 weeks.
## 32390                                                                                                               EE started down steps on the back of loading dock he tripped on a piece of ply wood causing him to fall down seven steps. Left wrist, shoulder, ribs
## 32391                                                                                                                                                                                                EE started down the stairs and fell on right side. Missed a step ()
## 32392                                                                                                                                                                          EE started experience pain in his footand ankle while working at the world trde ctr site.
## 32393                                                                                                                                                                                            EE started experiencing severe pain in neck and arm during computer use
## 32394                                                                                                                                                                EE started feeling a burning feeling in her throat and chest, and started struggling to breathe. ()
## 32395                                                                                                                                                                                         EE started feeling numbness, swelling, and pain after cleaning the shower.
## 32396                                                                                                                                             EE started felling numbess in rt toe over several months and pull in rt leg May have started during physical training.
## 32397                                                                                                                                                    EE started gallon size paint shaker. Stand moved &caught right hand between shaker & table injuring right hand.
## 32398                                                                                                                EE started getting sharp pains in neck on 2/28 andwas swollen when EE woke on 3/01 EE was spreading fertilizer injury right shoulder pain & swollen
## 32399                                                                                                                                                              EE started having breathing problems walked downstairs felt light headed face felt stiff and swollen.
## 32400                                                                                                                                                                                                                                       EE started having chest pain
## 32401                                                                                                                                          EE started having chest pain, scratchy throat, headache, due to allergic reaction due to mold growth in work environment.
## 32402                                                                                                                                                                            EE started having chest pain----unknown reason pt was transport via ambulance to the er
## 32403                                                                                                                         EE started having pain from hand-elbow-shoulder while typing and working at computer work station loss of strength and aches in both arms.
## 32404                                                                                                                                                                                                         EE started having pain in back after emptying a mop bucket
## 32405                                                                                                                                                                                           EE started having pain in chest and arm area while restraining a student
## 32406                                                                                                                                                               EE started having pain, burning and some numbness in hands, fingersm and forearms about 6 months ago
## 32407                                                                                                                                                                                                     EE started hurting by end of day after moving boxes. Rt groin.
## 32408                                                                                                                                                                                                 EE started hurting in her back shile assisting pt. Out of bathtub.
## 32409                                                                                                                                                             EE started itching, she looked in mirror and saw stripes and white whelp marks on back and under arms.
## 32410                                                                                                                                                                   EE started mopping dining room floor spill/fluid on floor, slipped & fell landed on lt knee/foot
## 32411                                                                                                                                                           EE started out on the catwalk, when he stomped histoe over the wooden plat. Injury to left knee and hip.
## 32412                                                                                                                                                                                               EE started running responding to a disturbance and felt pain in legs
## 32413                                                                                                                                            EE started seeing small red bumps and had itching after pulling weeds. Developed rash on other parts of his body later.
## 32414                                                                                                                             EE started to close down the coke trailor, when her hand slipped while cranking dowm the roof. Crank handle caught EE's arms and wrist
## 32415                                                                                                                                                            EE started to fall backwards after he let go of walking rail and felt pain in low back soon afterwards.
## 32416                                                                                                                                                           EE started to fall-EE caught client and tried to balance client when client struck EE in rt lower groin.
## 32417                                                                                                                                                                                 EE started to feel bad (light headed & nauseated) and her hands started to itch ()
## 32418                                                                                                                                                            EE started to feel pain in upper right chest area while using vacuum cleaner to vacuum carpet floor. ()
## 32419                                                                                                                                     EE started to get up from chair in the medication room and her feet became tangled in the phone lineand she fell on right knee
## 32420                                                                                                                       EE started to leave post & stepped on the pavement& her rt foot slipped out from under her causing her to fall back hitting rt knee & elbow.
## 32421                                                                                                                                                                       EE started to put key in door, and another staff opened door injuring EE right pinky finger.
## 32422                                                                                                                                                                              EE started to retrieve laundry detergent from stack above machine injury pain in back
## 32423                                                                                                                                    EE started to sit at co-workers desk and chair rolled from under EE and hit bottom on floor and jarred back & hit head on desk.
## 32424                                                                                                                                                          EE started to sit down and chair slipped out from under her, causing her to lose balance and fall to floo
## 32425                                                                                                                                                         EE started to sit down in a chair and it rolled back out from under EE. I fell onto the floor on buttocks.
## 32426                                                                                                               EE started to sit down on the sofa in restroom. Itwas lower than expected and the back of head hit the wall before her back touched the back of sofa
## 32427                                                                                                                            EE started to sit in a manicure chair w/rollers. Chair rolled out from under her & she in an attempt to catch herself fell to the floor
## 32428                                                                                                                                                                                                             EE started to sit on bus & hit rt elbow on safety bar.
## 32429                                                                                                                                                              EE started to walk across office to get glasses and tripped over telephone cord-falling on both knees
## 32430                                                                                                                                                  EE started up a slope, his left foot slipped on leaves and needles, put r foot out to prevent fall. Cat -- 695627
## 32431                                                                                                                                                                 EE started up stairs to deliver medications, stumbled and fell hitting left hip and ankle on floor
## 32432                                                                                                                         EE started walking across lower parking lot from his vehicle and fell on ice left from recent snow. EE landed on back, shoulders and head.
## 32433                                                                                                                                                                                                                          EE starting an iv on patient with scabies
## 32434                                                                                                                       EE starting thru the slider it was half way open and the operator started and continued to clsoe it on EE, contusion to upper chest and back
## 32435                                                                                                                                                                               EE starting work duty getting into state veh and slipped on ice twisting left ankle.
## 32436                                                                                                                                                        EE starts that due to poor lighting in the bottom of the tower she stepped on the floor unstead of the step
## 32437                                                                                                                                                                   EE state "I was struck in the face w/ a bat while taking water out on the field to the umpires."
## 32438                                                                                                                        EE state 2 people were locked in office. EE tried to open door by kicking the metal door with his left foot. Tore tendons in the left knee.
## 32439                                                                                                                                                                                                 EE state a box a paper fell off a shelf striking EE on the lt side
## 32440                                                                                                                                                                                                   EE state a closet door swung back striking her on the lt big toe
## 32441                                                                                                                                                                                                                              EE state a door closed on his lt hand
## 32442                                                                                                                                                                                                                EE state a gate door closed on her rt middle finger
## 32443                                                                                                                                                                    EE state a hand truck flipped over and struck him on the rt side of head around the rt eye area
## 32444                                                                                                                                                                                                       EE state a piece of glass was lodged in his lt middle finger
## 32445                                                                                                                                                    EE state a probationer became disruptive and push him---he started feeling pain in his lt shoulder the next day
## 32446                                                                                                                EE state a set of handcuffs was being removed froman inmate with a bolt cutter the bolt cutter cut inmate causing blood to drop on EE middle finger
## 32447                                                                                                                                                                                                                      EE state a softball struck her on the lt leg.
## 32448                                                                                                                    EE state after completing an inspection of a tractor trailer he climbed down off the tractor and came down on his lt heel and felt pain in back
## 32449                                                                                                                                 EE state after drawing blood from an inmate, as she was discarding the needle to the sharp contain-ers, she stuck her inner wrist.
## 32450                                                                                                                                                                   EE state after inspecting an area that inmates had just cleaned--EE felt something in his lt eye
## 32451                                                                                                                 EE state after patient was taken to ito by staff, EE was assisting to help search pt--as EE was reaching to hold pt feet-pt kicked EE in lt breast
## 32452                                                                                                                                                                                              EE state ambulated on grounds - returning to work EE injured rt knee.
## 32453                                                                                                                                                                                                                                 EE state an inmate spitted on him.
## 32454                                                                                                                                                                            EE state an inmate tripped him with his foot causing him to twist his lt ankle and knee
## 32455                                                                                                                                                                                                                           EE state an insect bit him on the rt leg
## 32456                                                                                                                                                                                                         EE state an unknown insect stung or bit him on thelt hand.
## 32457                                                                                                                                                                          EE state assisting with a hog the hog moved unexpectedly striking the back of his rt hand
## 32458                                                                                                                                                             EE state because of computer mouse placement and repetitive use of computer - rt lateral epicondylitis
## 32459                                                                                                                                                                                                                   EE state cut finger lowering stand for id camera
## 32460                                                                                                                                                                        EE state during a blood drawing on an inmate she puncture her rt index finger with a needle
## 32461                                                                                                                                                                                     EE state during a home visit he stepped off some steps and twisted his lt knee
## 32462                                                                                                                                   EE state during a medical exam on an inmate the inmate struck and kick him causing injury to his face, shoulder, and chest area.
## 32463                                                                                                                                                                                                             EE state during a rope course he injured his rib area.
## 32464                                                                                                                                                                                                         EE state during basic training she injured her rt shoulder
## 32465                                                                                                                                                                                  EE state during lab procedure she was punctured bya needle to the lt index finger
## 32466                                                                                                                                                                                                                                EE state he came in contact with TB
## 32467                                                                                                                                                                                                              EE state he cut his rt hand on the back of a bus seat
## 32468                                                                                                                                                                             EE state he felt a sharp pain in his rt wrist while trying to unlock a door with a key
## 32469                                                                                                                                                EE state he had an allergic reaction from an unknown substance while searching the wooded area for an escape inmate
## 32470                                                                                                                           EE state he had closed valve on #2 boiler and proceeded to descend from ladder and stepped off last rungs when foot twisted to the side.
## 32471                                                                                                                                                                                             EE state he injured his lt hand while restraining an agressive inmate.
## 32472                                                                                                                                                                                                    EE state he lifted a trash bag when he felt pain in his lt knee
## 32473                                                                                                                                                                                           EE state he slipped and fell on a just waxed wet floor injuring his back
## 32474                                                                                                                                                                                  EE state he slipped and fell on some step causing injury to his lt hand and wrist
## 32475                                                                                                                                                                                     EE state he stepped in a crack on floor in a door way and twisted his rt ankle
## 32476                                                                                                                                                                                                                       EE state he stepped into some water and fell
## 32477                                                                                                                                                                                                                EE state he stepped off a rock twisting his rt knee
## 32478                                                                                                                                                                                                                   EE state he struck his head on a vending machine
## 32479                                                                                                                                                                      EE state he was assisting with moving a metal locker when it begin to fall causing back pain.
## 32480                                                                                                                                                                                                                                   EE state he was bitten by a tick
## 32481                                                                                                                                                                                     EE state he was bitten by a tick on the rt leg while walking thru a field site
## 32482                                                                                                                                                                                                      EE state he was bitten by an insect on his rt inner leg/thigh
## 32483                                                                                                                                                                                                   EE state he was cleaning out the truck when he fell on some wire
## 32484                                                                                                                                                                                                                EE state he was exposed to blood from a probationer
## 32485                                                                                                                                                                                                                    EE state he was kick in the rt leg by a visitor
## 32486                                                                                                                                                                  EE state he was placing the top section on a machine when it slipped striking his lt index finger
## 32487                                                                                                                                                                                                                   EE state he was struck in the face by an inmate.
## 32488                                                                                                                                                   EE state he was throwing softball w/ students, stepped on uneven part of playground, slipped and twisted l knee.
## 32489                                                                                                                                                              EE state he was unloading equipment from a truck stepped down from the truch and injured his rt knee.
## 32490                                                                                                                                                                  EE state he was vaccinating birds --one of the blades jumped up and knocked hand into the needle.
## 32491                                                                                                                       EE state he was walking, getting off tower, slipped in mud on 1-24-96 on 1-25-96 stepped off curb jarring back causing pop in back, leg pain
## 32492                                                                                                                                                                                                                    EE state her finger was caught between the door
## 32493                                                                                                                                                                                                         EE state her foot slipped off steps injurying her lt ankle
## 32494                                                                                                                                                         EE state her hand was propped against a pole when the pole fell she fell across the pole injuring her back
## 32495                                                                                                                                                                                                                   EE state her lt finger was caught in a trap door
## 32496                                                                                                                                                                                            EE state his back became stiff while driving a truck with a broken seat
## 32497                                                                                                                                                                                                              EE state his back started hurting during road patrol.
## 32498                                                                                                                                                                                                   EE state his lt elbow was burn while attempting toput out a fire
## 32499                                                                                                                                                   EE state in the attempt to catch an offender who was running trying to get away he noticed pain in his back area
## 32500                                                                                                                                                                                                                   EE state injured back while pushing ger-o chair.
## 32501                                                                                                                                                                                                           EE state inmate threw a cup with urine and feces at him.
## 32502                                                                                                                                                 EE state she injured her rt middle finger while trying to pull a cabinet from a window in order toclean the window
## 32503                                                                                                                                                        EE state she reached up to pulled down a roll-up door in the program department and felt pain in her lt arm
## 32504                                                                                                                                                                           EE state she stepped off a porch into a hole causing lt ankle, back, and shoulder injury
## 32505                                                                                                                                                                                   EE state she suffered carpal tunnel syndrome due to excessive typing and filing.
## 32506                                                                                                                                                   EE state she walking when her rt foot was caught on an uneven sidewalk causing her to fall forward to the ground
## 32507                                                                                                                                                                    EE state she was assisting lifting a client into chair when she felt pain in neck and back area
## 32508                                                                                                                                                                                  EE state she was involved in a motor vehicle accident while in the state vehicle.
## 32509                                                                                                                                           EE state she was involved in a motor vehicle accident--a car pulled out in front of her causingher to strike the vehicle
## 32510                                                                                                                                                                                                             EE state she was involved in a motor vehicle accident.
## 32511                                                                                                                    EE state she was walking back to work to alford building when she tripped over a trailer ramp and fell & hit left knee, palm, face, lip & nose.
## 32512                                                                                                                                                                                                   EE state she was walking when she tripped over a g-volt battery.
## 32513                                                                                                                                                                                                                           EE state some powder got into her lt eye
## 32514                                                                                                                                                          EE state that an inmate threw an unknown fluid on his lower back, upper lft arm, a nd upper lft leg area.
## 32515                                                                                                                     EE state that as he was attempting to restrain inmate gonzales for transfer, inmate resisted thenbit EE on the right hand and spit in his face
## 32516                                                                                                                                                                EE state that during a sue of force on an inmate that he sustained some bruised ribs and abrasions.
## 32517                                                                                                                   EE state that during defensive tactives instructortraining trooper bright was practicing frontal choke wrist out exercises when he strained neck
## 32518                                                                                                                                               EE state that during use of force, inmate jeanette mutz spit in her eye and sctracted EE r ring finger breaking skin
## 32519                                                                                                                                                                                           EE state that he cut his thumb while trying to cut a piece of duct tape.
## 32520                                                                                                                                                                          EE state that he was exposed to dust from fire retardant which caused breathing problems.
## 32521                                                                                                                                                                  EE state that he was walking on sidewalk when he stumped his foot on the uneven sidewalk and fall
## 32522                                                                                                                                                         EE state that pt kicked her leg twice while she had him in a therapuetic hold. EE was kicked in both legs.
## 32523                                                                                                                                                                                      EE state that she was head butted on rt thigh by a resident wearing a helmet.
## 32524                                                                                                                                                                             EE state that she was hit on the lt side of face and grabbed around the throat by a pt
## 32525                                                                                                                   EE state that she was returning the food cart to the dining hall & while moving the foodcart thru the doors, EE alleges she pinched her rt palm.
## 32526                                                                                                                                EE state that she was walking to her car when she felled on a metal pipe that was sticking out of the ground injurying her rt knee.
## 32527                                                                                                                                                   EE state that the fumes from the bleach that was used to clean the floors caused her to have breathing problems.
## 32528                                                                                                                     EE state that while pushing a resident in a chair into the elevator the resident put feet on the wall causing chair to push against EE abdomen
## 32529                                                                                                                                   EE state the constance mounting/dismounting has cause increase pain of the prostate. Pt was refer to a consult for consultation.
## 32530                                                                                                                                                                                      EE state the fumes from used to clean the floor has caused breathing problems
## 32531                                                                                                                                                                                EE state the repetitive motion from bending and stooping has cause pain in lt thigh
## 32532                                                                                                                                                             EE state the repetitive motion from daily task working with computers has numbness and pain in rt hand
## 32533                                                                                                                                         EE state the repetitive motion from her daily job duties--typing and using the computer has caused pain in her rt arm/hand
## 32534                                                                                                                                                                                                    EE state the repetitive motion from lifting has caused a hernia
## 32535                                                                                                                                                                                                                   EE state the wind blew something into his lt eye
## 32536                                                                                                                                                          EE state the wind blew the door open causing his rt hand to be caught between the door and the guard rail
## 32537                                                                                                                                                                                               EE state whil opening delta door the door scrathced her left hand ()
## 32538                                                                                                                                                       EE state while applying chemical some of the substance dripped on his boot causing a burn to his lt foot/toe
## 32539                                                                                                                                                                     EE state while assisting other staff with use of force on an inmate he injured his chest area.
## 32540                                                                                                                                                                           EE state while assisting with a pt in in pic hold he was struck by a chair on the rt hip
## 32541                                                                                                                                                            EE state while assisting with an aggressive inmatewho was fighting causing EE to fall striking his head
## 32542                                                                                                                                                                           EE state while assisting with an inmate he accidently sprayed his eyes with pepper spray
## 32543                                                                                                                                           EE state while assisting with an inmate he tried to lift the inmate up into the transportation vehicle injuring his back
## 32544                                                                                                                                         EE state while assisting with an inmate who was having a seizure she struck her head on a napkin container in the bathroom
## 32545                                                                                                                                                                                 EE state while assisting with inmates her wrist began to itch and a rash appeared.
## 32546                                                                                                                                                                             EE state while attempting to discard a needle she was punctured in the lt index finger
## 32547                                                                                                                                                                     EE state while attempting to loosen a drain pipe he hand slipped striking the blade of the fan
## 32548                                                                                                                                                                           EE state while attempting to put an unknown objectin vehicle his lt index finger was cut
## 32549                                                                                                                                     EE state while attempting to sit in a chair the chair roll back causing EE to fall to the floor injuring lt hip and lower back
## 32550                                                                                                                                                                           EE state while attempting to stand his head struckthe bio harzard box located in a booth
## 32551                                                                                                                           EE state while attempting to stand up from a chair the chair rolled from under her causing her to fall injuring her lt elbow and forearm
## 32552                                                                                                                                                                                                       EE state while cleaning buses he stood up and stuck his head
## 32553                                                                                                                            EE state while cleaning out a cooling tower his foot slipped and he struck his elbow on top of a fan while trying to keep from falling.
## 32554                                                                                                                                                                          EE state while demonstrating a dance in dance class a he felt a sharp pain of his lt knee
## 32555                                                                                                                                    EE state while driving a cart the wind blew a doorclosed and while attempting to stop door with his lt foot his foot was caught
## 32556                                                                                                                                                                                                      EE state while driving a truck something flew into his rt eye
## 32557                                                                                                                                                        EE state while driving company vehicle he was struck on the driver's side by a truck injuring neck and back
## 32558                                                                                                                                                     EE state while driving he was struck by another vehicle on the driver side causing lt shoulder and back injury
## 32559                                                                                                              EE state while driving she pulled off the road to allow an ambulance to pass but the driver of the ambulance lost control striking EE car in the rear
## 32560                                                                                                                                                                                      EE state while driving the brakes failed causing EE to strike another vehicle
## 32561                                                                                                                                                                EE state while escorting an inmate back to his cell the inmate pulled EE rt hand thru the trap door
## 32562                                                                                                                                                                                                                 EE state while examining a cow the cow kicked him.
## 32563                                                                                                                                     EE state while existing the office her shirttail got hung on the door handle causing the door to close striking EE in the back
## 32564                                                                                                                                      EE state while getting in the state vehicle to warm it in order to transport inmates he felt a pain in his back and neck area
## 32565                                                                                                                                                              EE state while getting out the car in the parking lot the wind blew an unknown object into his rt eye
## 32566                                                                                                                                                                                       EE state while going thru a door the door closed striking EE head and lt eye
## 32567                                                                                                                    EE state while going up some stairs to his office his lt shoe was caught on the edge of the steps EE injured his rt arm-while breaking the fall
## 32568                                                                                                                                                                EE state while handling pressure washer he received a pinched nerve to his hand and cervical strain
## 32569                                                                                                                                                    EE state while he was attempting to break-up a fight b/w two inmates he was struck on the rt upper cheek araea.
## 32570                                                                                                                                             EE state while in a kneeling position and upon standing she lost her balance and fell backward injuring her lower back
## 32571                                                                                                                                                        EE state while leaning forward in a chair the chair slipped from under her causing her to fall to the floor
## 32572                                                                                                                                                                                                         EE state while lifting a tracker he injured his lower back
## 32573                                                                                                                                                          EE state while locking a metal lock on a gas pump his lt thumb was caught between the lock and the handle
## 32574                                                                                                                                                                                         EE state while making sercuity rounds the fan blewsome trash in her lt eye
## 32575                                                                                                                                                                   EE state while opening gate the gate slipped causing EE rt arm to be jerked injuring rt shoulder
## 32576                                                                                                                                                              EE state while opening the driver door to vehicle the door swung back and struck her under the lt eye
## 32577                                                                                                                                                                           EE state while packing van, he stepped off steps of building-steps wet and leaf covered.
## 32578                                                                                                                                             EE state while performing a phlebotomy procedure the pt jerked causing the needle to puncture EE finger on the lt hand
## 32579                                                                                                                                                                                                          EE state while playing volleyball he twisted his rt ankle
## 32580                                                                                                                                                                              EE state while responding to help call she lost her balance and fell injuring rt knee
## 32581                                                                                                                                                                                                        EE state while restrainig a cat--it bite her on the lt hand
## 32582                                                                                                                                                                                      EE state while restraining an aggressive inmate he injured his lt eye and lip
## 32583                                                                                                                               EE state while riding in the state van the van made a lt turn causing the door to open when EE fell out of the van injuring his head
## 32584                                                                                                                            EE state while running bloodhounds he drop the leash and while reaching down to grab the leash his rt thumb was caught on a hidden root
## 32585                                                                                                                 EE state while supervising inmate he was sitting in a chair when the chair flipped over backward causing EE to fall to the floor back/elbow injury
## 32586                                                                                                                                                                                   EE state while trying to keep two students from fighting her finger was injured.
## 32587                                                                                                                                                                                            EE state while trying to open a locked door he felt pain in his lt hand
## 32588                                                                                                                                                                                      EE state while turning keys in gate she felt numbness and swelling in rt hand
## 32589                                                                                                                                                                                     EE state while walking he slipped on some leaves and fell injuring his rt knee
## 32590                                                                                                                                                    EE state while walking her foot went out from under her causing her to fall on the floor twistinher lt leg/knee
## 32591                                                                                                                       EE state while walking into conference room, rt foot slipped on wet floor & EE fell sharply on rt knee & buttocks, lt hip and knee are sore.
## 32592                                                                                                                                                                                       EE state while walking on cement floor he started having pain in his rt foot
## 32593                                                                                                                                                                                                              EE state while walking she felt a pop in her lt ankle
## 32594                                                                                                                                                                                          EE state while walking she slipped and fell on icefalling on her lt elbow
## 32595                                                                                                                               EE stated "I was filling out discharge summary-started to roll chair backward-back of chair leaned back and tripped over backwards."
## 32596                                                                                                                      EE stated "I was walking out of the storage barn on the firing range, stepped down on a concrete slab & twisted ankle and fell to the ground.
## 32597                                                                                                                      EE stated "I went to get out of the van, my left foot slipped & went to the ground leaving my rt leg in the van when I fell heard rt knee pop
## 32598                                                                                                             EE stated "I'm not mentally prepared to work I want to see a doctor EE was asked what the problem was EE stated they've done it I want to file wc clai
## 32599                                                                                                             EE stated "he went out of medical w/ streacher andslipped at doorway and fell against sitting bench outside medcial area-stricking his rib area on the
## 32600                                                                                                                                                 EE stated "walking down the stair.... I missed thelast step & ankle went down & I hit my right arm against stairs"
## 32601                                                                                                                   EE stated "while outside checking fire ext. & doorlocks, turned to go another direction when feet & legs shot out from under med slipping on ice
## 32602                                                                                                                         EE stated -returning food cart to the kitchen and a mop and bucket was inside the door and the food cart must have pushed the corner of th
## 32603                                                                                                                                                   EE stated I bent down to put medication into refrigerator and I hit my head on open cabinet door when I stood up
## 32604                                                                                                                                     EE stated I was standing by the opened window of tower #6 at whicj time a bolt of lighting struck a pine tree appox 100ft away
## 32605                                                                                                                                                                           EE stated I was standing up to come off the mat I turned my ankle on the edge of the mat
## 32606                                                                                             EE stated I was walking, tripped on uneven sidewalk (by tree on sidewalk of polk st. ) she sustained unspecified injuries to right hand, knee, lips, mouth and nose ()
## 32607                                                                                                                                                                                            EE stated I/m came out of cuff and hit him in on l-sided of his head ()
## 32608                                                                                                                              EE stated a bug flew into EE left ear while EE wasdriving perimeter patrol, left ear was sore after bug was removed by flushing water
## 32609                                                                                                                                             EE stated a case of food started to fall & she reached & grabbed case of food & twisted wrist in process. Right wrist.
## 32610                                                                                                                                                                                             EE stated a cup full of yellowish liquid was thrown on his abdomen. ()
## 32611                                                                                                                                                                                                  EE stated a inmate grabbed baton & hit her across the right hand.
## 32612                                                                                                                                                                          EE stated a sewing needle punctured right hand inside palm area, brought blood from hand.
## 32613                                                                                                                                                                                                                EE stated a splash from gly-4 plus went into rt eye
## 32614                                                                                                                                                                     EE stated a take down move was performed with a pr-24 and landed on EE's lt shoulder and elbow
## 32615                                                                                                                                                                                                        EE stated a yellow jacket stung him on the back of his head
## 32616                                                                                                                                                                                                        EE stated after decontamination, left eye continued to burn
## 32617                                                                                                                                         EE stated after firing revolver she felt a slight irritation in lt eye subsequently her eyelid has become swollen & tender
## 32618                                                                                                                                                          EE stated after giving an insulin injection EE went to pull cover over needle and scraped lt index finger
## 32619                                                                                                                                                                               EE stated after kneeling repeatedly, she stood & something pulled in her right thigh
## 32620                                                                                                                                                                                                                EE stated after moving desk felt discomfort in back
## 32621                                                                                                                                                       EE stated an inmate had set a fire in the cell and he was removing the inmate from the cell had to use force
## 32622                                                                                                             EE stated an inmate handed him a piece of foam w/ 5 needles stuck in it. EE pulled one needle out toinspect, pierced rt in finger placing back in foam
## 32623                                                                                                                                                     EE stated an inmate refused to be handcuffed and pulled his arm through the trap opening. Rt and left forearms
## 32624                                                                                                                                EE stated an inmate refused to sit down when ordered. The inmate jumped & bit him on left breast. EE was scratched on nose and neck
## 32625                                                                                                                                    EE stated an inmate refusing orders to return to his wing, causing EE to used physical force when inmate kicked EE in right leg
## 32626                                                                                                                                                                         EE stated another staff member stepped on her ankle while doing a cell extraction training
## 32627                                                                                                                                                          EE stated another vehicke pulled out of winn-dixieparking lot & struck state vehicle in right front door.
## 32628                                                                                                                       EE stated arm struck inmates bed. Stated both hands struck floor. Involved in use of force with inmate and unknown substance sprayed in eyes
## 32629                                                                                                                          EE stated as he closed his door in central prison visitors parking lot, as he stepped away he slipped in snow and ice landing on his back
## 32630                                                                                                                          EE stated as he gave the order to stop fighting (2inmates fighting), one inmate scratched his left arm. Poss. Bbp exposure - medical only
## 32631                                                                                                              EE stated as he placed inmate back in his cell he started to walk away the inmate spit in his face striking him on the rt ear rt eye and rt side face
## 32632                                                                                                                                             EE stated as he was escorting inmate to the recreation cell in segregation inmate threw what smelled like urine on him
## 32633                                                                                                              EE stated as he was getting into the food service truck at u-4 building when his right knee popped and he felt a sharp pain in the front of his knee.
## 32634                                                                                                                       EE stated as he was ordering disruptive inmate to submit to handcuffs, inmate spit in his face. (EE sent for possible bbp exposure testing.)
## 32635                                                                                                                                                           EE stated as she stepped off the porch of the mainbuilding, she fell & hit her right knee on the ground.
## 32636                                                                                                                                      EE stated as she stepped out of the ppv truck her foot was half on the pavement and half off and her ankle rolled to the side
## 32637                                                                                                               EE stated as she turned to her rt to lean over andpick up a piece of paper that had fallen on the floor her chair rolled out under her throwing.. ..
## 32638                                                                                                                                                               EE stated as she walked through the serving line area she slipped and fell due to water on the floor
## 32639                                                                                                                EE stated as she was cleaning the control room and checking the stockroom she slipped in some water and fell hit lt hand on the corner of the shelf
## 32640                                                                                                                                                                        EE stated as she was climbing down the stairs on tower 5 she hit her lt knee on the railing
## 32641                                                 EE stated as she was walking from parking lot to work she saw ice on a speed bump and tried to be careful while walking there. Her foot slid out from underneath her and she fell injuring multiple body parts. ()
## 32642                                                                                                                EE stated assaulted by inmate chris williams #0811481 in dng hall. Struck by food tray & attem pted to block strikes with rt. Arm/hurt rt. Shoulder
## 32643                                                                                                                                                                                       EE stated assisting in pulling stretcher on incline, pulled a muscle in back
## 32644                                                                                                                                EE stated at approx. 15: oo p. M., he & another EE were attempting to lift a desk onto a moving cart when he felt pain in his back.
## 32645                                                                                                                            EE stated at firing range completing handgun, began to feel very hot, dizzy, head throbbing, cramps in hands, legs buckle & disoriented
## 32646                                                                                                                                                                                       EE stated at residence to install eha unit. He wasbit on lt wrist by spider.
## 32647                                                                                                                                                                  EE stated attempted to lift gate handle & caught hand between handle & fence rail injured rt hand
## 32648                                                                                                                                                                                EE stated attending re-certification class, shooting gun, gun kicked right shoulder
## 32649                                                                                                                                                                     EE stated awkwardly during officer assistance technique fell on ribs resulting in bruised ribs
## 32650                                                                                                                                                                                    EE stated bar poped out of carrier and hit EE in face across and below left eye
## 32651                                                                                                                                                                           EE stated bending over to get syringe, stood up & hit her head on the box that hold keys
## 32652                                                                                                                           EE stated bent over to sit on toilet head hit corner of cabinet that is directly in front of toilet. Cut middle forehead below hair line
## 32653                                                                                                                                            EE stated blood being drawn from patient side of needle touched EE's rt index finger causing blood exposure to rt wrist
## 32654                                                                                                                                                                                             EE stated blood vessel ruptured in eye due to straining to repair pipe
## 32655                                                                                                                                              EE stated by telephone that she was using a bufferwhen losing control of machine & caused muscle strain to right arm.
## 32656                                                                                                                                                              EE stated car pulled out in front of her, slammed on breaks, but could not avoid hitting the vehicle.
## 32657                                                                                                                                                                                                                EE stated car rear-ended while stopped at red light
## 32658                                                                                                                                                             EE stated changing and checking equipment and locks and eye started itching and touched or rubbed eye.
## 32659                                                                                                                                                                                              EE stated checking mail & a sewing needle stuck inthe rt index finger
## 32660                                                                                                                                                                             EE stated coming home from grocery store, noticed small red bump on back of left thigh
## 32661                                                                                                                                     EE stated coming in door when another EE was goingout & reached for the door handle & rt pointer finger was jammed in the door
## 32662                                                                                                                                                     EE stated conducting rounds on lower floor stepped off the stair into dorm when he slipped on the wet floor ()
## 32663                                                                                                                                                          EE stated descending stairs to restroom & fell down last six steps hit lt elbow & lt arm impact on lt hip
## 32664                                                                                                                                                                                EE stated did a lot of lifting on 12-17-00 and woke up monday with sever back pain.
## 32665                                                                                                                                                                                                            EE stated doing baton training twisted her wrist around
## 32666                                                                                                                                                                       EE stated doing bent wrist to arm bar take down into cuff position urt his right shoulder ()
## 32667                                                                                                                                                                                             EE stated door on ice machine came down & cut his index finger rt hand
## 32668                                                                                                                                                                 EE stated driving assisgned car when it was hit on rt side by another vehicle. Strained lower back
## 32669                                                                                                                           EE stated due to stress and working conditions, she suffered a psychological injury which actuallyturned into physical problems as well.
## 32670                                                                                                                                               EE stated during cell extraction training, she tripped trying to take an officer down landed on lside the inmate bed
## 32671                                                                                                                                                                                             EE stated during pepper spray training, she was sprayed in eyes by it.
## 32672                                                                                                                                                                              EE stated during performing routine duties of opening phone box injured middle finger
## 32673                                                                                                                          EE stated during plowing a wild fire a tree fell across the fire pow. While trying to repostion the tree on the fire EE fely pain in back
## 32674                                                                                                                                        EE stated during recertification for shotgun the recoil weapon kicked her back about three feet and injured her rt shoulder
## 32675                                                                                                                       EE stated during recreation duties a person threw a basketball. EE tried to catch it but deflected off right hand bending pinky finger back.
## 32676                                                                                                                                                                         EE stated during refesher training (cdrt) his leftcalf was hurt during a training scenario
## 32677                                                                                                                                                                                  EE stated during surgical removal of tooth she was stuck with surgical instrument
## 32678                                                                                                                                            EE stated during the prescribed physical fitness run he stepped into a hole, twisting his left ankle. Sprain left ankle
## 32679                                                                                                                                                                EE stated during wall locker searches he had a reaction from the powdered gloves. Left index finger
## 32680                                                                                                                                                        EE stated entering the gatehouse for duty her hand slipped off of the door handle and she fell to the floor
## 32681                                                                                                                             EE stated escorting I/m to rec yard he began arguing with another I/m one of the I/m threw a cup a urine hitting EE in the left eye ()
## 32682                                                                                                                                                                                          EE stated exposed to blood on his lt arm from wrist to half way to elbow.
## 32683                                                                                                                                                                             EE stated exposed to chemical, paint spill & someone attempted to clean spill w/bleach
## 32684                                                                                                                             EE stated exposed to inmate's blood while escrotinan inmate who had cut himself, also supervised clean up of blood contaiminated areas
## 32685                                                                                                                                                                  EE stated felt something pull in groin area while executing one of the movements in crdt training
## 32686                                                                                                                                    EE stated floor was sticky & uneven & she fell injurying her lt knee & hip. Safety officer could not find uneven area on floor.
## 32687                                                                                                                                                                    EE stated gate hit rt foot when closing. Walking to pull gate, gate closed she injured rt heel.
## 32688                                                                                                                                                           EE stated getting mop the clean m/c bathroom he stepped off the 3rd step and fell back down the steps ()
## 32689                                                                                                                                                                                                 EE stated getting off transfer bus turned right and knee popped ()
## 32690                                                                                                                                                                            EE stated getting out of the food truck he tripped across dock ramp with right foot. ()
## 32691                                                                                                                                                           EE stated going up stairs between h & g dorms when slipped and fell on staircase, landing on right knee.
## 32692                                                                                                                                   EE stated he & occupant in van laying down sleepi ng when impact occurred was thrown against back ofseat injurying neck and back
## 32693                                                                                                                                EE stated he and another EE arrested a probationerhe resisted arrest and was handcuffed in front. Hepulled EE's arm up and bite him
## 32694                                                                                                                    EE stated he and howard were lifting an inmate of f the floor in medical to transfer him into wheel chair and felt sharp pain in his lower back
## 32695                                                                                                                    EE stated he approached inmate from behind as he was attempting to throw a chair. EE tackled inmateto the floor with chair. EE's arm hit table.
## 32696                                                                                                                     EE stated he attempt to sit down in plastic chair. When the chair broke causing EE to fall and hit head on wall behind him. Back and head-pain
## 32697                                                                                                              EE stated he attempted to take a bit of a sandwichthat he purchaed out of canteen, it had blood on it. He spit out what he had in his mouth, the same
## 32698                                                                                                                                                  EE stated he belived the injury was caused by herself stretching her arm to press th ebuttons on thecontrol panel
## 32699                                                                                                                 EE stated he bent over and squatted in front of the medicine cabinet. After removing the 18 pound control safe, he felt a severe pain in low back.
## 32700                                                                                                                                                                                                              EE stated he bump his knee on the desk in segregation
## 32701                                                                                                                    EE stated he checked out a pair of handcuffs ten minutes later he went to use the restroom, latehis groin area was swollen due to pepper spray.
## 32702                                                                                                                                                                                                                    EE stated he cut his hand while opening box. ()
## 32703                                                                                                                                                EE stated he entered a shower & as he was stepping out of shower area & slipped on the concrete floor twisted back.
## 32704                                                                                                                                       EE stated he escorted an inmate in the unit 3's sergeant office and was questioning-- he struck him in the face and head. ()
## 32705                                                                                                                EE stated he escorted an inmate to the noncontact area. The inmate swung at EE hitting him on the left side of his face and scratching him on hand.
## 32706                                                                                                                   EE stated he escorted med staff through seg unit when liquid was thrown on him containing feces. (small cut on neck prior to incident affected).
## 32707                                                                                                                                                                               EE stated he fell down the stairs on cell block a could of tripped over something ()
## 32708                                                                                                                               EE stated he fell on his left arm and wrist while playing softball during the time he was attending a divisional meeting and picnic.
## 32709                                                                                                                                                              EE stated he fell while using use of force on an inmate & his left wrist was caught under the inmate.
## 32710                                                                                                                                                                  EE stated he had a physical confrontation with an inmate and suffered contusions to his left hand
## 32711                                                                                                                                                 EE stated he had a sore on his rt leg below knee for 6 weeks that would not heel it pops and drains occassionally.
## 32712                                                                                                             EE stated he had been stung 10 times on the hands by fire anyts. EE began sweating profusley stated both ears were stopped up. Found EE on floor cons.
## 32713                                                                                                                       EE stated he had car wreck. Another staff member was driving. EE was on passenger side front seat when car collided w/truck in front of them
## 32714                                                                                                                 EE stated he had the trap door open to let an officer down and he turned and stepped into the open trap door and fell catching his arm on the door
## 32715                                                                                                                                                                         EE stated he had to use force on an assaultive inmate to prevent further assaults of staff
## 32716                                                                                                                                                       EE stated he hurt his hip while restraining a student-felt sharp pain in front of upper thigh in groin area.
## 32717                                                                                                                                                                                                                       EE stated he hurt his self lifting computers
## 32718                                                                                                                                                                                               EE stated he injured his knee when he put an inmate to the floor. ()
## 32719                                                                                                                                                                                        EE stated he injured his knee while breaking up a fight between 2 juveniles
## 32720                                                                                                                                                                                       EE stated he injured his left knee while stepping up and down out of wrecker
## 32721                                                                                                                                                     EE stated he injured his rt knee attempting to restrain an inmate during the search of inmate abd his property
## 32722                                                                                                                                                                                                  EE stated he is unsure how it happened but he strained his rt hip
## 32723                                                                                                                                                                            EE stated he jammed and sprained his left thumb on a dorm cell door left thumb sprained
## 32724                                                                                                                                                                                                                        EE stated he lifted a box and hurt his back
## 32725                                                                                                                   EE stated he moved a coffee cup in sgt. Brown's box that was already broken & pieced back togetherwhen it shattered & cuty his lower right palm.
## 32726                                                                                                                                                                                            EE stated he noticed foul smell upon entering the building. No injury.,
## 32727                                                                                                             EE stated he opened the big drawer at the front desk and there was a dirty napkin in the drawer and he got it out to throw away and there was a needle
## 32728                                                                                                             EE stated he opened the segregation control door tto pull mop bucket, mop, broom, cleaning supplies in room & door closed on broom & it made him fall.
## 32729                                                                                                                       EE stated he opened the trap door on inmate cell dispensing food tray. The inmate struck his lt wrist and forarm with a sharp plastic object
## 32730                                                                                                                  EE stated he picked up a water cooler full of ice and water to place in the van. He turned and felt a sharp pain in the middle of his lower back.
## 32731                                                                                                                                                 EE stated he picked up food trays and felt a large pain down his lower back walking down the stairs with trays. ()
## 32732                                                                                                                                 EE stated he picked up mop bucket to the top stairs bent over to put bucket down felt sharpe pain inlower back both feet went numb
## 32733                                                                                                                                                                          EE stated he placed an inmate on the floor from assault on staff and EE twisted his back.
## 32734                                                                                                                                                                                                         EE stated he pulled his back out while picking up windows.
## 32735                                                                                                                                                                                                           EE stated he pused into wall stricking his left shoulder
## 32736                                                                                                                       EE stated he responded to call for assistance in the large visiting hall. An inmate was throwing chairs at officers. EE was hit on the face.
## 32737                                                                                                                                                                                             EE stated he slipped in a puddle of water when walking out of the gate
## 32738                                                                                                                                                                           EE stated he slipped in rear of"b" dorm on snow & fell on his right elbow on right side.
## 32739                                                                                                               EE stated he slipped on stainless steel pan around floor drain and struck his lt side on the lip of the drain pan as he walked through the prep area
## 32740                                                                                                                                              EE stated he slipped on wet floor in kitchen & fell on his left knee. He stated he had problems with the knee before.
## 32741                                                                                                                                                     EE stated he slippedo n the floor causing his left foot to slip shifting his weight to his back. Strained back
## 32742                                                                                                                                                                        EE stated he started getting pain in right foot when he worked in unit four 3 months ago ()
## 32743                                                                                                                                                                 EE stated he started having pain from his lt shoulder to lt hand---also blood pressure was checked
## 32744                                                                                                                                                                                       EE stated he stepped off curb on to paved parking lot and twisted left knee.
## 32745                                                                                                                                                                           EE stated he stepped off elevated tile flooring, lost his balance and fell to the floor.
## 32746                                                                                                                                                                                       EE stated he stepped off sidewalk and twisted left knee, leg, ankle and hip.
## 32747                                                                                                                                                                       EE stated he stepped off the steps and turned his body and felt a twinge of pain in his back
## 32748                                                                                                                             EE stated he stepped off uneven edge of sidewalk on gravel area and foot slipped causing him to fall forward and injury his left knee.
## 32749                                                                                                                                                                                        EE stated he stepped on barricade during training stepped on mat awkward ()
## 32750                                                                                                                                                                EE stated he stepped out of the walk in, and slipped on the edge of the step and hit his lower back
## 32751                                                                                                                                                                                                    EE stated he strained back liftin coupling from pallet to floor
## 32752                                                                                                                                                                           EE stated he stretched from ladder to put drill screw in duct work and get pain in back.
## 32753                                                                                                                                                                                                EE stated he stumbled on a raised nail on the deckof the residence.
## 32754                                                                                                                                            EE stated he tackled a fleeing inmate, grabbed him& scraped his left elbow. Bruised his left thigh & wrenched his back.
## 32755                                                                                                                                         EE stated he twisted his lt ankle while crossing aside ditch. He is assigned to the road squad & was performing his duties
## 32756                                                                                                                                                                       EE stated he walked by the stone bench & the seat fell off the stand & hit his left heel. ()
## 32757                                                                                                                      EE stated he walked down ramp to go check telephones turned rt his foot slipped causing his rt foot to turn and went down on rt leg and ankle
## 32758                                                                                                                EE stated he was approaching two inmates who were fighting, when EE was hit on his lft hand by one of the inmates, causing abrsion to his lft hand.
## 32759                                                                                                              EE stated he was approcahing an agressive inmate when he was struck in the head by inmate. Sent to cvmc-sutures & can return to work 4/11 w/o restric
## 32760                                                                                                                                                                                                                            EE stated he was assaulted by an inmate
## 32761                                                                                                                                        EE stated he was assaulted by inmate while trying to remove him from a cell. Injury to right knee, right arm and right leg.
## 32762                                                                                                            EE stated he was assaulted by two inmates he states he was struck in the face, mouth, ear and back ofhead with one of these blows knocking to the floor
## 32763                                                                                                            EE stated he was assigned to the kitchen for duty & his eye started hurting, EE reported to medical and was treated for a black speck in his rt eye. ..
## 32764                                                                                                                 EE stated he was assigned to the yard he stated while he was doing a security check behind old dorm he stepped off sidewalk onto some loose gravel
## 32765                                                                                                                        EE stated he was assisting food service at dinner time to segregation, when after opening food tray door, inmate threw liquid splashing EE.
## 32766                                                                                                                                                 EE stated he was assisting in handcuffing inmate, during this time EE was scratched by inmate on topof right hand.
## 32767                                                                                                                            EE stated he was assisting in restraining a hostile inmate when a cut on the inmates arm began to bleed EE was exposed to inmates blood
## 32768                                                                                                               EE stated he was assisting in the arrest of a probatoner when the probationer resisted arrest his voilent actions knocked EE to the floor injured lt
## 32769                                                                                                               EE stated he was assisting inmate with mop up of fire line when inmates saw hung in a layer of locust trees that had been pushed over tree broke and
## 32770                                                                                                                                                                                EE stated he was assisting officer being attack by an I/m and got hit in the mouth.
## 32771                                                                                                            EE stated he was assisting ppo kim lucus w/arresting one of her probationers. Wjile placing hancuffson the offender, he pushed kim to the side and.. ..
## 32772                                                                                                                                  EE stated he was assisting staff members in a use of force and while trying to get control of inmates arms was struck in the face
## 32773                                                                                                                    EE stated he was assisting with an inmate in medical the inmate needed to be placed in whellchair eeassisted in lifting him into the wheelchair
## 32774                                                                                                                                                                                 EE stated he was assisting with lifting an inmate off a stretcher & pull his back.
## 32775                                                                                                                                                     EE stated he was asst a inmate from a gurney to emergency bed in acute hospital when EE something pull in back
## 32776                                                                                                                               EE stated he was at annual district meeting involved in approved wellness activity (softball) and was injured as a result to a fall.
## 32777                                                                                                                                                                       EE stated he was attemped to pull gun from behind out of holster during training & hurt hand
## 32778                                                                                                                                                             EE stated he was attempting to arrest an offender there was a chase and he twisted his knee in process
## 32779                                                                                                                                                  EE stated he was attempting to climb onto a trailor when his right right leg slipped off the edge of the trailor.
## 32780                                                                                                                                        EE stated he was attempting to close the lock which was wet. His right hand slipped and knot started to rise on right palm.
## 32781                                                                                                                                                                                                                 EE stated he was attempting to extinguish 2 fires.
## 32782                                                                                                                                                   EE stated he was attempting to handcuff inmate when inmate began to swing his fist striking him above his lt eye
## 32783                                                                                                                         EE stated he was attempting to remove show from inmate's foot who was struggling and EE was kicked in the nose, upper lip and right cheek.
## 32784                                                                                                                                                EE stated he was attempting to restrain an inmate & the inmate resisted putting him to the floor, twist left wrist.
## 32785                                                                                                                EE stated he was attempting to secure a disruptiveinmate in his cell when the inmate pushed cell door hitting EE. Inmate hit EE in face with fists.
## 32786                                                                                                                      EE stated he was attempting to sit in the chair. The chair broke causing him to fall to the floor lt elbow struck floor, lower back hit floor
## 32787                                                                                                                                                        EE stated he was attending oc pepper spray training I took a blast of pepper spray directly into lt eyeball
## 32788                                                                                                                                  EE stated he was bending down reaching up under the button machine to adjust the belt and felt a sharp pain in his rt hip and leg
## 32789       EE stated he was bending over into a hamper re-arranging some bundles of work. He stayed in that position about 3 minutes then went & sat at his workstation for about 2 hours before getting up again. When he stood up, he had severe pain in his back. ()
## 32790                                                                                                                                                             EE stated he was bringing inmates off unit one rec yard fell oh his abdomen while in a use of force ()
## 32791                                                                                                                     EE stated he was called to the kitchen to light pilot light. As he entered throught back door approximately six mop handles fell. Hiting mouth
## 32792                                                                                                                                                    EE stated he was carrying a bag containing inmate property over his shoulder and experienced pain in lower back
## 32793                                                                                                                                                                                  EE stated he was carrying food cart up steps when he twisted his back, mid-center
## 32794                                                                                                                          EE stated he was carrying trash to empty into dumpster when he felt a sharp pain in his lower back. Stated trash was heavier than normal.
## 32795                                                                                                                                                                                              EE stated he was checking fire doors and hit his finger on the handle
## 32796                                                                                                                                                  EE stated he was checking the fence in the ball- field. He pulled on the fence and a wasp came out and stung him.
## 32797                                                                                                                             EE stated he was climbing onto the trailer to strap his load down when a sign crate fell over and crushed his rt thumb-broken rt thumb
## 32798                                                                                                                     EE stated he was completing paperwork at the file cabinet when he moved to let another EE go by while moving his lt foot slipped off the steps
## 32799                                                                                                                                    EE stated he was conducting a routine locker search & was moving some clothes to check the locker & got stuck by a straight pin
## 32800                                                                                                                              EE stated he was conducting a shake down of the stone ash trays at entrance he felt a sharp pain in the center of his lower back area
## 32801                                                                                                                                                                      EE stated he was conducting an adminisiration check when he stumbled and twisted his lt ankle
## 32802                                                                                                                                        EE stated he was conducting cell search of a seg. Inmate the inmate attempted to leave area the inmate turned and kicked EE
## 32803                                                                                                                                                                 EE stated he was cuffing an inmate and he became aggressive striking him on the head and shoulder.
## 32804                                                                                                                                                             EE stated he was cutting measuring stick with a bush ax. Bush ax bounced back hitting him in rightknee
## 32805                                                                                                                                             EE stated he was directing traffic at auto accident when auto traving at high rate speed hit a power line stricking EE
## 32806                                                                                                                                   EE stated he was distributing laundry bags bag snagged edge of cuff door trapping his rt finger b/t the edge of the door and bag
## 32807                                                                                                                 EE stated he was doing a complete search of the operations building when he stepped on a roofing tack, penetrating his boot and into right big toe
## 32808                                                                                                                                  EE stated he was doing a security check came back and was leaning on a table the table collapse causing serg to fall to the floor
## 32809                                                                                                                                 EE stated he was doing calf raises(standing) & board slipped from under his foot and all the weight came down on his left big toe.
## 32810                                                                                                                                      EE stated he was doing the backward standing fall during crdt trainin when he began having pain across his neck and shoulders
## 32811                                                                                                                          EE stated he was driving the vehicle that was transporting inmates back from unc stopped at stop light and lady from behind ran into rear
## 32812                                                                                                                   EE stated he was driving to raleigh. He put his arm on the arm rest and felt something bite his left arm. Took off his coat and spider fell out.
## 32813                                                                                                                                EE stated he was entering blg, it was raining outside, shoes were wet, stepped onto floor, slipped and fell, contusion to left knee
## 32814                                                                                                                 EE stated he was escorting 6 inmates to the sgts. Office for disciplinary measure. While walking, heslipped on a patch of mud & landed in a ditch.
## 32815                                                                                                                                                        EE stated he was escorting an inmate to his cell the inmate struggle & his finger got caught in hisclothes.
## 32816                                                                                                                                                        EE stated he was escorting inmate to shower and when inmate resisted, pulled him and stomped his right foot
## 32817                                                                                                                                 EE stated he was escorting inmate to shower when inmate resisted causing him to push and pull the inmate for control, hurting back
## 32818                                                                                                                          EE stated he was escorting inmates from the kitchen back to the dorm as he exist the kitchen he felt something bit him on rt outside palm
## 32819                                                                                                                                                                        EE stated he was exposed to an inmate's blood while escorting an inmate who had cut himself
## 32820                                                                                                                                                              EE stated he was feeding chow & an inmate hit him with a plastic tray in the face, it cut his lt eye.
## 32821                                                                                                                                                         EE stated he was filing 141's in an inmate's folder, he cut his left index finger on metal paper fastener.
## 32822                                                                                                                                 EE stated he was finishing searching inmates, overstepped out of door and almost fell. (medical report indicated muscle spasms) ()
## 32823                EE stated he was getting his machine serviced and the tech hit the start button. When tech hit start button, EE's finger got caught in the chain. During the process, EE received a broken nail, fractured finger and a deep cut under his nail. ()
## 32824                                                                                                              EE stated he was getting mershandise off the deli-very cart & passing it canteen operator who was placing it on the shelves, struck rt elbow on cabin
## 32825                                                                                                                                                                   EE stated he was getting out f back door of ambulance and door closed on his right third finger.
## 32826                                                                                                                                                                         EE stated he was getting out of the van & slipped on some ice in the courthouse sallyport.
## 32827                                                                                                                                          EE stated he was getting ready to pick up mop bucket to empty it. As he lifted it he felt a sharp pain in his lower back.
## 32828                                                                                                                                                                                 EE stated he was grinding metal on outside of gate when the wind blew metal in eye
## 32829                                                                                                           EE stated he was handling pallets of rolls of cloth. A roll of cloth needed straighten. He stated whenhe pulled up on the roll of cloth he hurt shoulder
## 32830                                                  EE stated he was having mental issues and needed time off due to a trooper he supervises suffered serious injuries after being shot. EE also worked a chase which resulted in a death of the person being chased.
## 32831                                                                                                           EE stated he was headed w. On nc24-27 e. Following a vehicle. Vehicle turned lft, EE slowed to allow the front vehicle to make the turn, and (see notes)
## 32832                                                                                                                             EE stated he was helping restrain an agressive inmate and in the process I fell to the floor with the inmate and injuryed his shoulder
## 32833                                                                                                            EE stated he was helping to restrain a disruptive inmate when his rt. Thumb caught underneath inmate's leg & bed frame. (per physician: small fracture)
## 32834                                                                                                                           EE stated he was helping to unload a steam kettle from the back of the service truck it slopped and caused the control box to cut finger
## 32835                                                                                                                                                                                EE stated he was hit in left rib cage while assisting with cell extraction activity
## 32836                                                                                                                      EE stated he was hooking a trailer up. While cranking his hand slipped off & jammed rt elbow on underside of trailer.. Red/swollen next day..
## 32837                                                                                                                                                                            EE stated he was hot and dizzy, felt faint while working, cold to touch - taken to hosp
## 32838                                                                                                                   EE stated he was in straight baton training, performing a 'strike' when he felt pull or pop in his rt shoulder, pain con't & informed instructor
## 32839                                                                                                                                                   EE stated he was in the parking reporting to work when he slipped and fell on ice and fell on his right knee. ()
## 32840                                                                                                                                                                  EE stated he was in the process of use of force restraining inmate & was bitten on lt wrist area.
## 32841                                                                                                                                                   EE stated he was injured during a two-man take down at crdt training, subject fell on wrist with knee (rt wrist)
## 32842                                                                                                                         EE stated he was injured during firearms situational shoot. EE stated he attempted to kneeland foot slipped on wet grass, he injured knee.
## 32843                                                                                                                           EE stated he was injured while leaving prison after counseling inmate, staff memeber closed door on him and pinned him, neck and ribcage
## 32844                                                                                                                                                                       EE stated he was inventorying canteen. He picked up a case of drinks and hurt his lower back
## 32845                                                                                                                         EE stated he was involved in a use of force and was immediately struck with a short baton by co- worker while attmepting to strike inmate.
## 32846                                                                                                                              EE stated he was involved in a use of force on an inmate inmate scatched EE on his rt forearm and lt elbow caused tooth to be chipped
## 32847                                                                                                               EE stated he was involved in conducting visitationof inmates & their families when he was exposed toextreme heat. Later felt lightheaded. Threw up..
## 32848                                                                                                                       EE stated he was leaving the facility armory when he stepped on loose stone which rolled under his foot. Causing him to twist his left knee.
## 32849                                                                                                                                                                                                     EE stated he was leaving the unit at rowan cc & stepped wrong.
## 32850                                                                                                                                                                                                     EE stated he was lifting a box and strained his left shoulder.
## 32851                                                                                                                                   EE stated he was looking for a probationer that ran from him while looking he stepped on a nail that was sticking out from board
## 32852                                                                                                                                                  EE stated he was mapping up after wild fire groundgave away and his rt leg fell into a hole filled with hot ash..
## 32853                                                                                                                               EE stated he was marching in formation. When he made a turn his back started hurting real bad. This happened while on pert training.
## 32854                                                                                                                                                                                    EE stated he was montoring inmates in the kitchen and slipped on the wet floor.
## 32855                                                                                                                                                                                               EE stated he was moving a box off a file cabinet and cut his rt palm
## 32856                                                                                                                                              EE stated he was moving a table in the recreation building and cut his rt middle finger on a sharpedge from the table
## 32857                                                                                                                                                                                        EE stated he was moving an upset inmate after a staff member was assaulted.
## 32858                                                                                                                                                             EE stated he was moving the paper cutter back in place on table and blade sliced little (pinky) finger
## 32859                                                                                                                                                         EE stated he was on a six foot ladder and lost his balance on the third step and felt a twitch in low back
## 32860                                                                                                                                                        EE stated he was on a stakeout and ran into a limbgetting piece of wood in left eye. Scratch to lefteyeball
## 32861                                                                                                                                                                               EE stated he was on his feet for @ 10 hrs. Walking& felt a sharp pain in lower back.
## 32862                                                                                                                           EE stated he was opening interior sallyport gates to let in road squat bus. He was pushing gates open, thumb got squeezed between gates.
## 32863                                                                                                             EE stated he was packing the inmate's personal property bags into the luggage compartment on bus andafter he finished noticed index finger was bleedin
## 32864                                                                                                                                          EE stated he was parked in his personal vehicle when strick by a state owned vehicle being driven byanother staff member.
## 32865                                                                                                                    EE stated he was participating in pert trng. He hadcompleted the pushups, 25 situps, then felt a pain in lower back. Lft leg, buttock went numb
## 32866                                                                                                                   EE stated he was performing his duties as yard officer and that he was clearing the yard and he slipped on some rocks and fell on upper buttocks
## 32867                                                                                                                                                                EE stated he was performing maintenance on the airhandles stood upright & struck head on metal beam
## 32868                                                                                                                                                        EE stated he was picking up a 16 ft ladder when lifting it up and twisting his body he felt his back strain
## 32869                                                                                                                                                 EE stated he was picking up trash in the bathroom and got his left foot caught in the tile division and twisted it
## 32870                                                                                                                                                                  EE stated he was placing a bag of garbage outside the control room and the door closed on lt hand
## 32871                                                                                                                 EE stated he was placing equip into cabinet in lower drawer and hit his head on upper cabinet doors which were open, 'almost knocking myself out'.
## 32872                                                                                                                                                                        EE stated he was placing handcuffs on a combative inmate when EE hurt his back. Strain back
## 32873                                                                                                                                EE stated he was pulling a power cabinet lifted with both arms went to put the power pack on the desk then it slipped out of rt arm
## 32874                                                                                                                                 EE stated he was pulling a strand of barbed wire, as the rool of wire turned, slid down against lefthand and cut top of left thumb
## 32875                                                                                                                                                                      EE stated he was pulling clothes from washer and felt pain in upper right leg and groin area.
## 32876                                                                                                                                                                                 EE stated he was pulling the food cart off the food truck and his lower back poped
## 32877                                                                                                                    EE stated he was pulling up on heavy gate & heard something pop in his back area. He has since started having numbness in left leg to the foot.
## 32878                                                                                                                                       EE stated he was putting a water jug on f block & when he tried to lift the jug up with his lt arm hurt in the shoulder area
## 32879                                                                                                                    EE stated he was putting inmate back in cell aftercleaning his cell. EE has cuts and abrasions to right eye and right side of head cut to mouth
## 32880                                                                                                                 EE stated he was putting notice on bulletin board and side stepped to his right and felt pain in knee and a small knot appeared on his right knee.
## 32881                                                                                                                                EE stated he was putting supplies on a hand cart when he went to lift the buffer onto the cart the cart moved hurting lower back ()
## 32882                                                                                                                     EE stated he was putting the weapon back into the vehicle & he got a electrical shock. Supervisor stated he did see how it happen (capt. Wyatt
## 32883                                                                                                                                                                                      EE stated he was qualifying with the revolver a pain started in his rt muscle
## 32884                                                                                                            EE stated he was reaching on the shelf in the storage closer in segregation & he was bringing his arm back & knocked over a bottle of mildew strain. ..
## 32885                                                                                                                                                                      EE stated he was reapiring radiator guard for segretation when metal flew in EE eye. Left eye
## 32886                                                                                                                                    EE stated he was receiving his security equipment and went to move from the security key box rt footstepped into crack of floor
## 32887                                                                                                                           EE stated he was removing commode drain line to put trap for mop sink when hand slipped while pulling on long pry bar. Cut on left wrist
## 32888                                                                                                                                                                      EE stated he was responding to a code 4 and twisted his right ankle coming down the stairs ()
## 32889                                                                                                                                                                     EE stated he was responding to a code two & placed all weigh on right knee striking the cement
## 32890                                                                                                                                             EE stated he was riding in state vehicle ice came off the vehicle in front and struck windshield causing it to shatter
## 32891                                                                                                                 EE stated he was running bathroom breaks and askedofficer to open c hall doors from the officers station inmate kicked door open when he walked by
## 32892                                                                                                                     EE stated he was running down the main hallway responding to 'code blue' (medical emerg) when he felt a 'pop' in his left leg behind the knee.
## 32893                                                                                                                                                                           EE stated he was running to a code 400 slipped & fell on the wall hitting his right hip.
## 32894                                                                                                                 EE stated he was searching the state supply truck to make sure no inmates were on it. When he jumpedoff the truck his ring finger caught an object
## 32895                                                                                                                                             EE stated he was securing the back door when he slipped on some ice on stpes and fell, landed on back hip and shoulder
## 32896                                                                                                                                                          EE stated he was seperating a fight between two inmates when an inmate hit him in the back with his hand.
## 32897                                                                                                                                                                   EE stated he was shutting trailer doors on the tool trailer and trailer door hit lt index finger
## 32898                                                                                                                                                         EE stated he was sitting at desk and reached for file cabinet door, as EE leaned over he felt pain in back
## 32899                                                                                                                       EE stated he was sitting in chair assigned to light duty watching inmates prepare food when inmate came up and slapped EE on rt side of head
## 32900                                                                                                                                                                             EE stated he was sprayed with hot coffee while collecting canteen orders from inmates.
## 32901                                                                                                                       EE stated he was stabbed in the neck. Per med. Staff-sustained 6" laceration to throat & 2" lac. To rt shoulder. Airlifted to cmc from inst.
## 32902                                                                                                                                                                            EE stated he was standing behind patient who fell back into left knee. Left knee sprain
## 32903                                                                                                                                                                                                      EE stated he was standing break fall & hurt his back in crdt.
## 32904                                                                                                                                     EE stated he was standing in high grass and weeds on road squad when he pulled a tick on lower abdomen that was stuck and red.
## 32905                                                                                                                         EE stated he was standing on a five gallon bucket in storeroom & reaching for trays & lost balance & fell directly on his knee & it popped
## 32906                                                                                                                                           EE stated he was standing on steps when he was bumped by a corr officer he fell injuring his rt big toe and side of foot
## 32907                                                                                                         EE stated he was stopping a inmate from advancing on an inmate that had cut his face. During subdueing the inmate, EE got blood on sleeve, skin of arm, rt
## 32908                                                                                                                                               EE stated he was stripping the floor and went to move bed to other side and felt something pull in mid back and neck
## 32909                                                                                                            EE stated he was struck in the temple area with a flashlight when the officer in front of me went tomotion me to his rt. EE was closer than what.... ..
## 32910                                                                                                                                                                                                       EE stated he was struck twice on the head/neck with a pencil
## 32911                                                                                                                                                               EE stated he was supervising inmates & stepped on a floor with wax & floor stripper & slipped & fell
## 32912                                                                                                                      EE stated he was supervising inmates washing the beverage coolers from the dinner meal. The inmate using the water hose, sprayed water on EE.
## 32913                                                                                                                                     EE stated he was taking I/m to his cell I/m became asertive and EE hit his hand against the holding cell injury his r- hand ()
## 32914                                                                                                                                                                       EE stated he was taking pot to the pot sink and slipped and fell on some water on the floor.
## 32915                                                                                                                     EE stated he was taking the view glass off the boiler. He was using a pipe wrench and the wrench slipped off and mashed the middle ring finger
## 32916                                                                                                                                                                                               EE stated he was the front gate and was bitten by unknown object. ()
## 32917                                                                                                                                                       EE stated he was training with pert team when he was accidentally hit with baton on lt front side of ribcage
## 32918                                                                                                                                                                    EE stated he was traveling down hwy 24 w/window down & a foreign object struck him in lt temple
## 32919                                                                                                                    EE stated he was traveling from office to court- house, in state vehicle. He was completely stoppedat red light and another vehicle struck him.
## 32920                                                                                                                                                  EE stated he was trying to catch the door from closing in the gatehouse. He was holding it for 2 female officers.
## 32921                                                                                                                                                         EE stated he was trying to open a jammed door during a file and hurt his feet trying to get the door open.
## 32922                                                                                                                                                                                                              EE stated he was trying to restrain an inmate & fell.
## 32923                                                                                                                                                                     EE stated he was trying to restrain an inmate to take him to seg. When he injuried himself. ()
## 32924                                                                                                                                        EE stated he was turning of a switch underneath security panel when EE received a shock leaving left arm nuumb, with spasms
## 32925                                                                                                                       EE stated he was turning pages of the alpha rosterwhen he flipped through a few pages and they fell back one of the pages stuck EE in lt eye
## 32926                                                                                                                                              EE stated he was turning water on for cell esxdu- 005 opened pipe chase room door and mashed middle finger on lt hand
## 32927                                EE stated he was unsure when he injured himself but does remember vacuuming floor in kamphoefner auditorum, as he moved between the bolted down chairs, hit his left leg on corner of chair and leg gave way and he almost fell. ()
## 32928                                                                                                                                                                                    EE stated he was using an electric welder the light from the welder burned eyes
## 32929                                                                                                                  EE stated he was walking across compound to let ambulance into compound & foot slipped on grass causing EE to fall on back & hurt left hand/wrist
## 32930                                                                                                                                                                                        EE stated he was walking across icy parking lot when his right left popped.
## 32931                                                                                                                              EE stated he was walking around fence checking fence he was on top of a hill when all of sudden he felt a sharpe pain down lower back
## 32932                                                                                                            EE stated he was walking back to his car after doing a curfew check at 7000 snow ln., when he slipped in the mud on an enbankment falling & hitting. ..
## 32933                                                                                                                                                  EE stated he was walking backwards watching the inmates pick up trash and stepped in a hole and twisted his back.
## 32934                                                                                                                                                                       EE stated he was walking down stairs after being relieved at nomh and slipped on icey stairs
## 32935                                                                                                                                                                                        EE stated he was walking down stairwell and slipped on some liquid on steps
## 32936                                                                                                                                                               EE stated he was walking down steps and when he turned at the landing, his knee twisted, gave way ()
## 32937                                                                                                                                                                      EE stated he was walking from shop area on sidewalk when he experienced pain in his left knee
## 32938                                                                                                                                                                           EE stated he was walking from the rear loading dock to the office when his knee gave out
## 32939                                                                                                                                                                                    EE stated he was walking on the grass, slipped andfell. Left leg buckled under.
## 32940                                                                                                                                                                       EE stated he was walking the bloodhound and he stepped in a hole and turned his right ankle.
## 32941                                                                                                                                          EE stated he was walking thru unit hallway when knee buckled out from under him. He caught himself to prevent falling. ()
## 32942                                                                                                                          EE stated he was walking toward the lower gate when he slipped on a patch of ice he said he turned his lt foot the wrong way when he fell
## 32943                                                                                                                  EE stated he was watching inmated move z-bar from storatge area on yard to loading dock of plant when the sign started ***** see log notes*******
## 32944                                                                                                               EE stated he was watching the new inmates in frontof the seg. Office and turned to go to the sgt's office and tripped over a rug at door way lt knee
## 32945                                                                                                                                            EE stated he was wet from rain, & when he opened gatehouse door he received an electrical shock to his l. Hand & wrist.
## 32946                                                                                                               EE stated he was working in the courtroom processing cases he stated he tripped over a raised area in the courtroom and plunged forward to the floor
## 32947                                                                                                                         EE stated he was working inside recreation when aninmate threw urine and feces on him. Arm had minor abrasion on it. Possible bbp exposure
## 32948                                                                                                                      EE stated he was working inside recreation when aninmate threw urine and feces on him. Small open wounds/areas on EE's rt hand and l forearm.
## 32949                                                                                                                                                EE stated he was working on unit 1, the recreation yard, when inmate reached out and cut him in the face & head. ()
## 32950                                                                                                                                                                 EE stated he went to a residence of an offender under his supervision slipped on ice covered porch
## 32951                                                                                                               EE stated he went to the residence of an offenederto conducy drig search the offender agreed to the search then ran attempting to destroy some drugs
## 32952                                                                                                                                                                            EE stated he woke up with back pain, no specific injury at work that he is aware of. ()
## 32953                                                                                                                                                                              EE stated he ws breaking up a fight when I/m bled over a open cut he got from home ()
## 32954                                                                                                                                          EE stated heavy lifting in extreme temperature, awaken with muscle spasm, pain rt side of shoulderneck, back, chest, arm.
## 32955                                                                                                                                                                                     EE stated helping secure inmates someone closed holding cell on her fingers ()
## 32956                                                                                                                                                                                                   EE stated her rt foot started hurting while going down the steps
## 32957                                                                                                                                                            EE stated his foot got caught in the strip on floor causing EE to fall striking his head on the mailbox
## 32958                                                                                                                            EE stated his foot slipped on wet rear dining hallfrom rain, & he fell down three steps hitting his buttocks and back on all three step
## 32959                                                                                                                                                         EE stated his left leg, left hip & foot started toitch, he went to the bathroom & noticed 6 or 7 redbites.
## 32960                                                                                                                                                                          EE stated his right eye became red and swollen after going through pepper spray training.
## 32961                                                                                                                              EE stated his right foot was pinned underneath a push dolley and as he attempted to dislodge his foot, he twisted his upper leg area.
## 32962                                                                                                                                                                         EE stated his struck his lt knee on concrete whiletrying to keep pt from jumping the fence
## 32963                                                                                                                                                                                             EE stated hit rt ring finger against sharp jagged edge of the desk top
## 32964   EE stated in addition to regular duties ( phone, entering info. System), assign to 2 teams 5/19/09 took 13 pgs notes cramped, 5/23 numbness fingers rt hand, 5/28 went Dr Diagnosed bursitis, 2 wk later lft hand numb, 7/18/09 bck Dr, Felt was carpel tunnel (
## 32965                                                                                                                                                               EE stated in self-defense training fell forward hand hit floor to stop his fall felt pain in rt hand
## 32966                                                                                                                                                                                  EE stated in tower #7 walking down steps and one foot slipped causing her to fall
## 32967                                                                                                                                                           EE stated in training during mock escape person tried to run past him he tackled him landing on shoulder
## 32968                                                                                                                                                                                                   EE stated in training thought he felt muscle pull to rt abdomen,
## 32969                                                                                                                                                                         EE stated in training, doing a technique & rolled over his rt ankle, immediately felt pain
## 32970                                                                                                                                                                          EE stated incident occured over the morning routine of lifting bathing and normal routine
## 32971                                                                                                                                                             EE stated injured lft arm and hand while pushing and pulling on charlie dorm door to get it to open ()
## 32972                                                                                                                                                               EE stated injured occured sometime during a use offorce inccident with inmate. Abrasion right thumb.
## 32973                                                                                                                                                                    EE stated injury occured during pepper mace training, when pepper mace was sprayed in her face.
## 32974                                                                                                                                                                                                  EE stated injury occured while participating in a cell extraction
## 32975                                                                                                                                                          EE stated injury occured while she was sitting in the control room in a broken chair. **clmt is working**
## 32976                                                                                                                                                               EE stated inmate attacked him from behind and hit him 3 times while trying to cuff another inmate ()
## 32977                                                                                                                                                                                        EE stated inmate came out of cuffs hand slammmed between inmate and wall ()
## 32978                                                                                                                                                                    EE stated inmate charged him causing his lower back into a desk and then they fell to the floor
## 32979                                                                                                                                                    EE stated inmate fell on him initially which made him hit the concrete floor while trying to restrain an inmate
## 32980                                                                                                                                                                                    EE stated inmate had blood on him and EE got bloodon himself, during a handcuff
## 32981                                                                                                                                                                                                      EE stated inmate pulled him across steel bed hurt lt & rt leg
## 32982                                                                                                                                                        EE stated inmate pushed him and as he pushed inmate off inmate fell. He got up and hit him in mouth and eye
## 32983                                                                                                                                          EE stated inmate pushing a segregtion food cart ran over EE. The cart pushed him forward & ran over his right foot & leg.
## 32984                                                                                                                                             EE stated inmate refused to go to his cell after being ordered several times inmate head butted employee over left eye
## 32985                                                                                                                                                                EE stated inmate rubbed the handcuffs that he had on down his left arm causing abrasion on left arm
## 32986                                                                                                                                                                                                         EE stated inmate spit on face around eyes, nose, andmouth.
## 32987                                                                                                                                                                                                            EE stated inmate struck her in the leg kicking a table.
## 32988                                                                                                                                                            EE stated inmate struck him on his rt arm and hand bending his rt thumb backwards spraining his rt hand
## 32989                                                                                                                                                                                                 EE stated inmate threw empty bottle thru trap doorhit EE on rt leg
## 32990                                                                                                                                                                 EE stated inmate was empting dust pan by striking it on edge of trash can. Dust & dirt got in eyes
## 32991                                                                                                                                                                           EE stated inmate was running in hallway, running from another inmate and hit her in back
## 32992                                                                                                                                                                                          EE stated inmate was swinging pencil at him, hitting him in the right arm
## 32993                                                                                                                                                                                                                   EE stated insect crawled into her sock & bit her
## 32994                                                                                                                                                             EE stated is use involved in a use of force restraining I/m and hurt his right thumb and right hand ()
## 32995                                                                                                                                                                                                                       EE stated it was raining & fell in the lobby
## 32996                                                                                                                                        EE stated juvenile was swinging the vcr as a weapon, stumbled when trying to get out of way and left hand hit file cabinet.
## 32997                                                                                                                          EE stated ladder was wet & floor slipped off. He fell about 3' & scraped left shin against ladder the skin was torn off & leg is swollen.
## 32998                                                                                                                          EE stated leavuing unit five to pick up cleaning supplies in va while adjusting van seat his finger was caught on track under the seat ()
## 32999                                                                                                                                                                                                          EE stated lifting air conditioner caused umbilical hernia
## 33000                                                                                                                                                                                           EE stated lifting bag of inmate's personal property when shoulder popped
## 33001                                                                                                                                                      EE stated locking lower tier dorm 1b pulled on cell door handle and a tack stck in her right middle finger ()
## 33002                                                                                                                                                                                                 EE stated lt arm started to hurt when EE lifted a client into tub.
## 33003                                                                                                                         EE stated maintanence personnnel was working on the air conditioner in tower #2 the compressor erupted violently spraying freon into tower
## 33004                                                                                                                                                                       EE stated making rounds through the cafeteria when she stepped wrong and twisted right foot.
## 33005                                                                                                                                                                               EE stated not sure when injurry happend during warm ups or break fall techniques. ()
## 33006                                                                                                                               EE stated on 10/4/96 her back began to have pain, pain continues off and on. Doesn't know why it hurts. Pain middle of back rt side.
## 33007                                                                                                                                                                          EE stated on baton training step on a piece of pipe that was on floor, twisted right knee
## 33008                                                                                                                                                                           EE stated on my knees searching shelf under bunk and hit my head on table when rising ()
## 33009                                                                                                                                                        EE stated opening the back door of the trailer, door went up and lock came down and hit EE in the left eye.
## 33010                                                                                                                                                                                              EE stated participating in cell extraction trainininjured rt shoulder
## 33011                                                                                                                                                                                           EE stated participating in unarmed self defense training & was injured .
## 33012                                                                                                                                                                  EE stated patient became agitated that required containing for safety-patient butted EE in rt eye
## 33013                                                                                                                                                                                                                                          EE stated patient contact
## 33014                                                                                                                                                  EE stated patient throw trash can lid & hit EE's foot causing sprain. EE oow Mar. 13th -27th EE referred to ortho
## 33015                                                                                                                                                                                                  EE stated patient was agitated. Patient hit staff in the head. ()
## 33016                                                                                                                                                                 EE stated picking up mail struck rt hand in woodenmailbox & stuck a piece of wood under fingernail
## 33017                                                                                                                                                                                           EE stated piece of brick fell into eye when he was scraping ivy off wall
## 33018                                                                                                                 EE stated pt was swinging to punch EE as EE was attempting to asst in opening restrain room EE blocked pt and force made EE rt arm, shoulder go ba
## 33019                                                                                                                                               EE stated pt was throwing weight on EE, EE atteptinto get legs out from under staff lifting pt on bedstrain low back
## 33020                                                                                                                                                                                                                                    EE stated pulled tendon in foot
## 33021                                                                                                                                                                                                       EE stated pulling trash out of fence, cut arm on razor wire.
## 33022                                                                                                                                                                                                  EE stated pushed by staff member & landed on the floor, hurt back
## 33023                                                                                                                                                                               EE stated rash on abdomen and under arms had been giving care to immate with scabies
## 33024                                                                                                                                EE stated repeated pulling of trigger caused swelling in her rt index finger, hand, and arm rt hand, index finger, lower rt forearm
## 33025                                                                                                                                                                        EE stated repetitive motion of opening pill packs caused carpal tunnel syndrome in rt wrist
## 33026                                                                                                                                                                                  EE stated res hit EE finger with pillow. EE finger is red and EE heard finger pop
## 33027                                                                                                                                                                                                          EE stated resident walked up to her and kicked heron shin
## 33028                                                                                                                                                                                                  EE stated responding to a code 4 then code blue hurting r-knee ()
## 33029                                                                                                                                                        EE stated responding to code 4 while running off the yard toward unit 2 yard door EE twisted her right knee
## 33030                                                                                                                                                                                                         EE stated restraining defendant, fluid transfer to lt hand
## 33031                                                                                                                                                                                                                EE stated restraining inmate & got feces on clothes
## 33032                                                                                                                                                                                                       EE stated restraining inmate & got feces on clothes, lt knee
## 33033                                                                                                                                                                                           EE stated restraining inmate knee hit bed frame & later started swelling
## 33034                                                                                                                                                      EE stated running to a code 400 on the moore unit, she turned to go through l5b, she twisted her knee& ankle.
## 33035                                                                                                                                              EE stated searching an inmates locker in kneeling position when he went to get up he heard a pop noise in his rt knee
## 33036                                                                                                                        EE stated searching inmates that were being kicked out of school/accidentally stuck with a lead pencil that was in an inmate's back pocket.
## 33037                                                                                                                                                                            EE stated she began to feel dizzy and faint duringpic training--EE is 4 months pregnant
## 33038                                                                                                                                 EE stated she bent down to get some bowls under the counter and when she turned her nek, somethingpopped. Could not turn nec back.
## 33039                                                                                                                                                    EE stated she bent down to pick up three trays & felt something pop. Reported to sgt skinner lower back hurting
## 33040                                                                                                      EE stated she came out of the elevator to 5th floor on 2/17/10 and turned right using her right leg. She lifted left foot and could not put the foot down. ()
## 33041                                                                                                                                                   EE stated she caught her rt foot between the training mat. Instructor wrote a statement statingshe did not fall.
## 33042                                                                                                                                                                                                       EE stated she closed a file cabinet drawer on her finger. ()
## 33043                                                                                                           EE stated she completed fingerstick blood sugar check on inmate & while removing lancet from pen, shestuck her rt 4th finger... Tx'd wallace urgent care
## 33044                                                                                                              EE stated she dropped off couier & u. S. Mail. Was driving her personal car stated she stopped at yield sign on person street for ongoing traffic and
## 33045                                                                                                                                                                                     EE stated she dropped the safe onher finger when she was moving from the floor
## 33046                                                                                                             EE stated she entered in the assist. Supt's officefor a meeting and smelled pepper mace in the air. She left and went elsewhere, however suffered reac
## 33047                                                                                                                  EE stated she fell coming out of staff dining hitting her left knee & right arm & shoulder. She stated she noticed the mop & bucket near the door
## 33048                                                                                                                                                                                             EE stated she fell down metal spiral stairs after leaving the restroom
## 33049                                                                                                                                                  EE stated she felt pain in left upper chest going through to her back when she picked up clothes to put in dryer.
## 33050                                                                                                                                                                            EE stated she felt sharp pains in the center of her chest. EE felt it is stress related
## 33051                                                                                                                                                 EE stated she got up to let first shift in and herfoot was numb and she lost her balance twisting her right ankle.
## 33052                                                                                                                      EE stated she had started to sit down to do some typing and the chair had rolled back & when she down she missed the chair and fell in floor.
## 33053                                                                                                                                                                                              EE stated she has pain in shoulder, arm and wrist while using machine
## 33054                                                                                                                                                                                                EE stated she hit right knee against desk when shewent to set down.
## 33055                                                                                                                                                                                            EE stated she hurt thumb while participating in self defense technique.
## 33056                                                                                                                                                                                                                        EE stated she injured her back moving boxes
## 33057                                                                                                                                    EE stated she mashed middle finger into the metal table, was assisting with shaking down the inmates returning from the laundry
## 33058                                                                                                                                                                            EE stated she noticed back pain while working, no specific incident was noted as cause.
## 33059                                                                                                                                                                                     EE stated she noticed swelling of her lower back one week after lifting client
## 33060                                                                                                                                                                                        EE stated she poked her finger with the needle that was stuck in the thread
## 33061                                                                                                                                                                                      EE stated she pulled down gate on back of food truck it came down on her arm.
## 33062                                                                                                                           EE stated she reached for towel & pulled it to runthrought machine, felt a pain in right shoulder towel apparently hung in small opening
## 33063                                                                                                                      EE stated she recapped a syringe after giving an I/m TB shot needle punched the side of the plastic bag and pierced her left middle finger ()
## 33064                                                                                                                                                            EE stated she set in a chair it tilted down & sheefell on floor hitting elbow pain shot up to shoul-der
## 33065                                                                                                              EE stated she slid her chair back from computer toturn on printer. As she slid chair back, her chairslid out from underneath her causing her to fall.
## 33066                                                                                                                                                                                            EE stated she slipped and fell on wet floor coming from the kitchen. ()
## 33067                                                                                                                                                                                                       EE stated she slipped and fell on wet floor in the gatehouse
## 33068                                                                                                                                                                                                     EE stated she slipped on second set of steps twisting ankle ()
## 33069                                                                                                                                                                               EE stated she slipped on water fell and hit her head on the door and hurting rt hand
## 33070                                                                                                                                                                                       EE stated she smelled an odor and started to itch and her breathing changed.
## 33071                                                                                                                                                                                              EE stated she stepped off walkway into a hole while making her rounds
## 33072                                                                                                                 EE stated she thinks she May have lifted one of the blue heavy seat chairs wrong on the wing whileconducting contraband check. Rt upper back/spine
## 33073                                                                                                                                                               EE stated she tried to turn key in lock & it got stuck & she felt pain in left wrist.. F18 filed. ..
## 33074                                                                                                                    EE stated she triped on sidewalk while walking back from meeting, hitting rt side of her face bruising cheekbone, scrathed glasses, bent frames
## 33075                                                                                                                     EE stated she tripped on a rock and fell on the dirt path near west Dr. On mason farm rd. EE went toer and was treated for fractured shoulder.
## 33076                                                                                                                                                                                                                           EE stated she tripped on walkway & fell.
## 33077                                                                                                                                                                               EE stated she tripped over a push cart while escorting inmates out to take trash out
## 33078                                                                                                                                           EE stated she twisted her ankle on 061404 on the minimum custody unit yard in pot hole. She didn't advise anyone of such
## 33079                                                                                                                     EE stated she was "pulling inmate property off theelevator, when property caught on inside of elev. -she pulled on it, felt pain in rt. Elbow.
## 33080                                                                                                               EE stated she was a passenger in a state vehicle. Driver hit deerm force caused air bag to emerge with extreme pressure and pressed EE against drive
## 33081                                                                                                               EE stated she was about to sit down in her chair as she moved toward the chair she bumped it and itrolled away from her causing her to fall in floor
## 33082                                                                                                                  EE stated she was administering meds to seg I/Ms And 1 I/m threw a small container-appeared to be urine on her face/head/shoulder. Poss. Bbp-eyes
## 33083                                                                                                                    EE stated she was assigned to work at school & wasbeginning to sit in chair when the chair flipped over her head she fell to the floor/lt elbow
## 33084                                                                                                                             EE stated she was assirting to restrain an inmate from assaulting a staff member EE jammed lt ring finger and has abrasions on lt knee
## 33085                                                                                                                                                          EE stated she was assisting to restrain an inmate when the inmate struck her in the lt jaw and top of lip
## 33086                                                                                                                                                                        EE stated she was assisting to restrain inmate when inmate struck her in lt jaw and top lip
## 33087                                                                                                               EE stated she was at court house with patient; patient hit EE on her right upper breast, spat in her face, attempted to bite her & scratched her. ()
## 33088                                                                                                             EE stated she was at her desk the maintenance staff was working on another unit when smoke and fumes entered her area had headache and other respirato
## 33089                                                                                                                                                                                            EE stated she was attempting to assist in arrest and was hit in the eye
## 33090                                                                                                                                                     EE stated she was attempting to close a window, window glass shattered glass cut off icer bond on her lt wrist
## 33091                                                                                                                                                  EE stated she was attempting to fax document and turned too quickley bumping elbow on table where fax machine was
## 33092                                                                                                             EE stated she was attempting to sit down & the chair slid backward, she further states she fell backward hitting the chair w/ her back, in trying to..
## 33093                                                                                                                               EE stated she was attemting to quaified with the shotgun she placed the butt of the shot gun on her rt shoulder and fired the weapon
## 33094                                                                                                                                                    EE stated she was bending over to raise up chair. She raised herself up but the chair did not come up with her.
## 33095                                                                                                                                                                                                    EE stated she was bitten by an insect while working on the yard
## 33096                                                                                                                                                           EE stated she was catchimg up her dc141's and her hand started cramping she noticed her hand was swollen
## 33097                                                                                                                                                                                    EE stated she was checkinh the inside yard perimeter when she stepped in a hole
## 33098                                                                                                                  EE stated she was cleaning the gatehouse floor when EE opened the door the mop fell and the handle hit her in the headknocked off her eye glasses
## 33099                                                                                                EE stated she was cleaning up the seats and the floor after a graduation ceremony when she reached underneath one of the seats and scraped her finger on a wire. ()
## 33100                                                                                                                                                 EE stated she was closing d wing door of dorm #2 her third finger of her lt hand was caught while closing the door
## 33101                                                                                                                                                                                         EE stated she was coming down the stairs & twisted her rt knee & it popped
## 33102                                                                                                                                                     EE stated she was coming into the building and fell over defect in new pavement causing EE to break left ankle
## 33103                                                                                                                                                                 EE stated she was coming out of line up for assigned duties and tripped or stumbled and hit cement
## 33104                                                                                                                     EE stated she was coming out of staff bathroom with cleaning cart after cleaning the bathroom and the door struck her right hip at 2:00 pm. ()
## 33105                                                                                                               EE stated she was doing finger stick acc check after finger stick when removing the lancet it was difficult removing and it slippd off and struck fi
## 33106                                                                                                                EE stated she was doing weekly inventory, tripped over perturding wheel from cart & hit right elbow on table and tried to stop fall with left hand.
## 33107                                                                                                                                                                         EE stated she was dorm-headache, eye started to swell, and large lump on head appeared. ()
## 33108                                                                                                                                                                         EE stated she was drawing lab using a 231/4 bd vaccatainer needle and stuck her finger. ()
## 33109                                                                                                                                                                                      EE stated she was driving state car and was rear-ended by another vehicle. ()
## 33110                                                                                                              EE stated she was driving the perimeter patrol vehicle and as she stepped out to stretch legs, she felt something 'pop' in her l foot. 15mins-swelled
## 33111                                                                                                                                                                                     EE stated she was entering kratt hall when she tripped on rubber door mat fell
## 33112                                                                                                                                                      EE stated she was escorting inmate from the main building when she stepped on a rock and twisted her rt ankle
## 33113                                                                                                                                                          EE stated she was escorting inmate to single cell and she spit at someone and some came back into EE face
## 33114                                                                                                             EE stated she was escorting med staff in segregation when an inmate threw a cup of feces/uring on her hitting her in the head, neck, chest, trunk, etc
## 33115                                                    EE stated she was exiting restroom and reaching for door handle. Someone was coming rather forcefully and pushed door open as EE reached for the handle. Door swung open and hit EE's hand, bending it down. ()
## 33116                                                                                                                                                                      EE stated she was filling out paperwork and opening doors for offciers when something bit her
## 33117         EE stated she was getting of van. Stepped down right leg to close to van. She steppe, down wrong. () right knee sprain. Happened in the facility parking lot and it was a corrections unit van. She stumbled getting out of the van and stepped down hard.
## 33118                                                                                                                                                                                             EE stated she was going behind desk and slipped on some water and fell
## 33119                                                                                                                                                                 EE stated she was going through sliding door of sally port, and the control operator shut the door
## 33120                                                                                                                 EE stated she was in b block walking the floor andtalking to an inmate. She wasn't paying attention, bumped her knee on stationary seat in dayroom
## 33121                                                                                                                  EE stated she was in class and she chose plexi- glass to do an demonstration. Pepper spray was sprayed directly into her face instead of on glass
## 33122                                                                                                                                                                                                       EE stated she was in crdt training & left arm joint swollen.
## 33123                                                                                                                         EE stated she was in orientation and she bent overto pick uo some paper off the ground and when she came back up, her left knee locked up.
## 33124                                                                                                                                                           EE stated she was in the chart room, opened the door to go back out & patient clocked her in the eye. ()
## 33125                                                                                                             EE stated she was injured while performing annual in service self defense training. She began havingpain in the middel of her neck & mid & lower back.
## 33126                                                                                                                                                                         EE stated she was lifting bed to put a block underhead of bed and felt a snap in her back.
## 33127                                                                                                                                                                             EE stated she was lifting items off top of filing cabinet, dropped items onto EE foot.
## 33128                                                                                                                                             EE stated she was loading the food trays onto food van and picked up the ice container and felt her lower back pop. ()
## 33129                                                                                                                                                                EE stated she was locking the rear sallyport gate & locking bar fell on her right hand ring finger.
## 33130                                                                                                                                        EE stated she was making fence check behind a&e dorm by fence walking down steps stepped on a rock and twisted her lt ankle
## 33131                                                                                                                                         EE stated she was making secure check of fire door on dorm 2 when she pinched her lt index finger b/t the handle and frame
## 33132                                                                                                              EE stated she was moving a wooden table with the toaster on it to where an outlet is located so she could plug it up went to catch toaster as it fell
## 33133                                                                                                                         EE stated she was on duty at the lift station (sewage/waste tank) outside and slipped on rocks. Hurt left shoulder and right thumb/fingers
## 33134                                                                                                             EE stated she was on elevator #3. She went from floor 1 to floor 6 when the elevator jerked & then dropped to the 4th floor very fast, fast enough. ..
## 33135                                                                                                                                                                             EE stated she was on the firing range & got too hot. EE had a headache & sick stomach.
## 33136                                                                                                                                                                           EE stated she was on the steps in wrb second floor g block when she twisted her lt ankle
## 33137                                                                                                                  EE stated she was on way to meeting on 8th floor, as EE left office & turned lt into hallway, foot slipped off shoe & foot twisted & EE heard pop
## 33138                                                                                                                       EE stated she was opening the drawer of a file cabinet & cabinet fell over & a drawer fell out landing on her foot. Lt foot & scrape rt arm.
## 33139                                                                                                                                                                                    EE stated she was opening the hood of a vehicle and she injured her right hand.
## 33140                                                                                                                    EE stated she was opening the line up room door when another employee opened the door from the opposite side. EE's finger got caught in handle.
## 33141                                                                                                                                                                 EE stated she was opening the trap door to give the I/m his clothing & she felt a pop in her l arm
## 33142                                                                                                                                                              EE stated she was picking up 3 or 4 trays to put on scrapping table when she felt a pain in her back.
## 33143                                                                                                         EE stated she was picking up boxes to ck files, & sitting on fl. To fix files on bottom shelf, stoodup& unable to walk for several mins. Pain rt leg, back
## 33144                                                                                                                                      EE stated she was picking up timesheets from office floor.. As she stooped, her right lower back area 'caught' and sharp pain
## 33145                                                                                                                                     EE stated she was placing keys in the dropbox in the control center and while pushing the box her finger got caught in the box
## 33146                                                                                                                          EE stated she was preparing to do an eye acuity exam went to close bar door between medical dental departments and caught finger b/t door
## 33147                                                                                                                    EE stated she was pulling a package of forms in supply room. Standing in supply room and turned the wrong way felt a pop to back, leg went numb
## 33148                                                                                                                                                                                   EE stated she was pulling the gate closed & her hand popped & started throbbing.
## 33149                                                                                                                                               EE stated she was pulling the latch open to open the enterprise gate and that her hand got caught between the latch.
## 33150                                                                                                                 EE stated she was removing a bookcase and shelving from a box when she placed her lt foot on the lower shelf of the bookcase shelving fell on toes
## 33151                                                                                                                        EE stated she was removing a needle & pushing cover over the needle & the needle hit the open cover top caused to swing back hitting finger
## 33152                                                                                                                 EE stated she was returning back into the kitchen turned the corner at the bakers table and her foot slipped out from under causing her to go down
## 33153                                                                                                                          EE stated she was returning to her desk. Her chair had been moved and she struck her left knee on chair. Pain/bruising/swelling next day.
## 33154                                                                                                                          EE stated she was rising from a sitted position a wheel-chair beside her, her lt foot stuck in the foot part of chair causing her to fall
## 33155                                                                                                                                                                            EE stated she was scraping trays when she felt numbness in her l and pain in l shoulder
## 33156                                                                                                                                                                                        EE stated she was serving chow & slipped on juice spilled off serving tray.
## 33157                                                                                                                                                                                           EE stated she was shifting files and felt a pop in her left shoulder. ()
## 33158                                                                                                                                                                            EE stated she was shutting security door when her right thumb got caught in jam of door
## 33159                                                                                                                                                                   EE stated she was shutting the control room door and shut her right ring finger in the door jam.
## 33160                                                                                                                                     EE stated she was sitting in a chair in the diagnostic center she reached back to answer phone and fell backwards out of chair
## 33161                                                                                                               EE stated she was sitting in master control at themain control panel, when she moved her chair and flipped out of chair on floor. Injured left knee.
## 33162                                                                                                               EE stated she was sprayed w/pepper spray & felt effects of the spray. EE taken to water. Impact of water caused pain in her head. Pain became severe
## 33163                                                                                                                                                                                                  EE stated she was stepping up into van and strained rt lower back
## 33164                                                                                                                                                   EE stated she was struck by the elevator door in the chest while putting the cart with supplies in the elevator.
## 33165                                                                                                                                                                                                             EE stated she was struck on the left jaw by an inmate.
## 33166                                                                                                                EE stated she was supervising inmates in the dining hall. She stated she was struck in the mouth closed fist and kicked in the rt shin by an inmate
## 33167                                                                                                                    EE stated she was surveilling two inmates who werestripping the line up room floor, when she breathed in a mixture of chemical which made fumes
## 33168                                                                                                             EE stated she was taking food trays (in coolers) to loading dock from kitchen. Picked up cooler off buggy&pulled back. Reported to supv-no report file
## 33169                                                                                                                                                                EE stated she was taking inmate some writing paperwhen inmate ejaculated through trap on her rt leg
## 33170                                                                                                                                  EE stated she was tingling, numbness and pain in her r hand, wrist, arm, elbow and shoulder, due to typing on computer and filing
## 33171                                                                                                             EE stated she was trying to get off the high chairin the control booth. As she was trying to get offof the chair she lost her balance & fell to floor.
## 33172                                                                                                                          EE stated she was trying to intervine a behavioral issue with individual and another staff and individual struck her in the right eye. ()
## 33173                                                                                                            EE stated she was using bathroom and control room officer called for her over radio she jumped up anleg slid out from under her, caught self from falli
## 33174                                                                                                                                                EE stated she was walking across concrete floor, slipped, fell backwards landing on back and striking back of head.
## 33175                                                                                                                                                                                                                   EE stated she was walking and stepped in a hole.
## 33176                                                                                                                                                                                 EE stated she was walking around her desk and hip gave way causing her to fall. ()
## 33177                                                                                                             EE stated she was walking down sidewalk to begin central yard inspection. Before she got to intake area her rt foot stepped off the sidewalk, didn't f
## 33178                                                                                                                                              EE stated she was walking down the hallway and her right foot slipped from under her and she fell on her buttocks. ()
## 33179                                                                                                                                                EE stated she was walking down the hallway going to the back stockroom when her lt knee popped and her leg gave out
## 33180                                                                                                             EE stated she was walking from her car toward the administration building and slipped on black ice and fell flat on her back and hit the back of head.
## 33181                                                                EE stated she was walking from her parking spot which was on blount st and walked through another parking lot on polk st. As she was coming out of that parking lot, she slipped on ice and fell ()
## 33182                                                                                                                                    EE stated she was walking from kitchen to the gatehouse, slipped on rubber mat covered with ice hitting head, back and buttocks
## 33183                                                                                                              EE stated she was walking from the cafeteria to her classroom in the royal building and caught her shoe on the sidewalk and lost her balance and fell
## 33184                                                                                                                                                                                    EE stated she was walking in the grassey area b/ twhen she slipped on some mudd
## 33185                                                                                                                                                        EE stated she was walking on the sidewalk when shetripped and fell. Contusion to left hand, arm and breast.
## 33186                                                                                                                  EE stated she was walking to the drink machine and she slipped and fell on the wet floor. EE stated she was in a lot of pain all over her body ()
## 33187                                                                                                                                                                                                          EE stated she was walking when she was pushed from behind
## 33188                                                                                                                                                                   EE stated she was working at the sgt desk when a hold puncher fell fromt top shelf on her lt arm
## 33189                                                                                                                          EE stated she was working dorm when 2 ofcrs had topepper spray inmate & take him down. She grabbed his leg & he kicked her lt foot & knee
## 33190                                                                 EE stated she went to janitors closet to get paper towels to use for lunch while reaching for paper towels she got her foot got caught on a mop bucket and fell hitting carts and other buckets ()
## 33191        EE stated she went to slide her chair under her desk & moved faster than the chair. Her knee shifted under desk & made loud sound & immediate pain. EE stated she went through day thinking it was ok. In evening @ home knee swelled more & she went to er
## 33192                                                                                                                                                                                                                    EE stated slammed lt hand in door while closing
## 33193                                                                                                                                                                                                     EE stated slipped & fell to ground on lt knee & lthip & elbow.
## 33194                                                                                                                                                                                                     EE stated something stung him on inside of his upper lt thigh.
## 33195                                                                                                                                                                                                                       EE stated spider fell in her shirt & bit her
## 33196                                                                                                                                                      EE stated started to flush commode he caught his skin between his lt thumb & index finger in handleof commode
## 33197                                                                                                                                                                                                                 EE stated stepped down off sidewalk & twisted knee
## 33198                                                                                                                                                                          EE stated stepped off steps going to produce cooler and rt knee popped and began to hurt.
## 33199                                                                                                                                                                EE stated stepped off uneven ground & twisted lt ankle & scraped lt elbow injuring twisted rt ankle
## 33200                                                                                                                                                     EE stated stepping on steel crate rt foot slipped on wet metal did not fall felt sting in rt foot back of heel
## 33201                                                                                                                  EE stated student became aggressive when staff member asked her to sign an infraction EE grabbed student wrist, student fell to floor, injured EE
## 33202                                                                                                                                                      EE stated taking trays down the stairs slipped on 4the step from bottom twisted ankle & hit arm on stair rail
## 33203                                                                                                                                                                                EE stated tha he was conducting weekly staff meet-ing in the conference room. None.
## 33204                                                                                                                                                                                 EE stated tha observed inmate threw bood and it hit EE in the leg above the ankle.
## 33205                                                                                                                                           EE stated that a fight had broke out in front of him and blood sprayed from inmate and went on his arms, neck and shirt.
## 33206                                                                                                                                                                                                               EE stated that a foreign body embeded in EE's finger
## 33207                                                                                                                EE stated that a hsotile inmate attempted to take his baton away by taking hold of baton. Inmate then threw the officer on the floor causing scratc
## 33208                                                                                                                                                                              EE stated that a juvenile was being escorted to her room and scratched EE oh the arm.
## 33209                                                                                                                     EE stated that a pencil fell out of his hand he tried to catch it with his foot. The right side ofhis left foot, push the pencil into rt foot.
## 33210                                                                                                                                      EE stated that a pick up truch pulling a utilly trailer merged into his lane of traffic stricking hit rt front quarter panel.
## 33211                                                                                                                                 EE stated that a piece of wood came out of table saw & hit in the center of his stomach while cutting dam boards for the hatchery.
## 33212                                                                                                                                   EE stated that after completing a security check in dorms and while exiting the form she struck by the slinder door as it closed
## 33213                                                                                                                                                                  EE stated that after drawing blood went to snap safety cap over needle & stuck left index finger.
## 33214                                                                                                                      EE stated that after inmated dumped trash and cleaned the outside of kitchen, he held kitchen door opened, door sprung back and caught finger
## 33215                                                                                                                                        EE stated that after intense physical fitness training during the monthly pert training that he passed out from dehydration
## 33216                                                                                                                                                        EE stated that after pepper srpay training, EE went home & her left eye swelled shut. Chemical conjutivitis
## 33217                                                                                                                                                                   EE stated that after removing restraints from inmate, hte inmate began hitting EE with his fist.
## 33218                                                                                                                                                                   EE stated that after removing restraints from inmate, the inmate began hitting EE with his fist.
## 33219                                                                                                                         EE stated that after she checked the door on tower 1 she turned facing the institution to check the lock on the fence EE stepped in a hole
## 33220                                                                                                                                                                      EE stated that after starting iv fluids, stylet was removed, and accidently stuck left thumb.
## 33221                                                                                                                               EE stated that after taking his self electrical test he noticed pain and swellin in his lft wrist that pm. Both wrist pulled tendons
## 33222                                                                                                                                                                                        EE stated that an inmate grabbed by her lt forearm and that she pulled away
## 33223                                                                                                                      EE stated that as he escorted an inmate to medicaldeptartment, the inmate swung at him with handcuffon. EE blocked the swing with right hand.
## 33224                                                                                                                                                                                       EE stated that as he stepped out of the transfer van he twisted his rt knee.
## 33225                                                                                                                                                                    EE stated that as he walked by cell the inmate sprayed an unknown liquid substance on EE rt arm
## 33226                                                                                                                      EE stated that as he was escorting an inmate out in fornt of post # 8, as he reached through the gate to unlock it an insect bit his forearm.
## 33227                                                                                                              EE stated that as he was replacing a window he wasusing a screwdriver to get the window in the slot and the screwdriver slipped hitting him in lt eye
## 33228                                                                                                               EE stated that as she entered the sallyport door of housing unit 6 to be relieved she was trying tokeep the door from slamming and it slammed on her
## 33229                                                                                                                                       EE stated that as she stepped off the stairs onto the floor, she felt her ankle pop, she later started with pain in her foot
## 33230                                                                                                                           EE stated that as she was attempting to go up the steps that lead e-1 control she accidently hit her forehead on the bottom of the steps
## 33231                                                                                                                               EE stated that as she was climbing the stairs that go from bc-1b to bc-2b that she hit her knee on the step that was in front of her
## 33232                                                                                                                                          EE stated that as she was going up the stairs the telephone began to ring she turned & slipped landing on her left ankle.
## 33233                                                                                                                                                                                               EE stated that as she was leaving her rt hand was caught in the door
## 33234                                                                                                                               EE stated that as she was spraying inmate with oc spray(pepper spray) inmate struck her in her right upper chest area with his fist.
## 33235                                                                                                                                       EE stated that at 12:30 pm he smelled a strong odor of perfumes, at 1:30 pm he began to get a headache and was light headed.
## 33236                                                                                                                                                                                                                     EE stated that attempting to sit down and fell
## 33237                                                                                                                                                                  EE stated that back pain begin when project work started - clean floors, moving desks and chairs.
## 33238                                                                                                                                                              EE stated that between January and february she was lifting boxes and felt pain from neck to left arm
## 33239                                                                                                                                           EE stated that co-worker picked up mail tray (4-6lbs) and shoved it at her. EE caught it w/ her left hand causing sprain
## 33240                                                                                                             EE stated that during 3 cell extractions, he hurt his left shoulder, but didn't feel any pain until he was driving home. (segregation-cell extraction)
## 33241                                                                                                                                                                   EE stated that during a complete search of inmate EE was struck on lt side of his head by inmate
## 33242                                                                                                                                                                               EE stated that during a fight between inmates; heqfelt a pull in his right shoulder.
## 33243                                                                                                            EE stated that during a use of force in segregation he used the body shield to pin the inmate against wall, other staff removed inmates (see log notes)
## 33244                                                                                                             EE stated that during a use of force on a disrupted inmate that his blood pressure was high. He rcvda scratch on his rt side of nose & bruise left elb
## 33245                                                                                                                                                                         EE stated that during a use of force with inmate, inmate head butted her in the right eye.
## 33246                                                                                                                                                                 EE stated that during cell extraction training that he was slammed into the wall by the instructor
## 33247                                                                                                             EE stated that during cellextraction training as amember of the cell extraction team he entered the cell during a mock excercise of removing....... ..
## 33248                                                                                                                EE stated that during her shift she had to do alotof walking and by the end of her shift her foot/ankle were hurting badly. She went to the doctoe.
## 33249                                                                                                                         EE stated that during mandatory o. C. Pepper spray training-the instructor sprayed the spray into her eyes which caused a bodily reaction.
## 33250                                                                                                                                        EE stated that during training knelt down on rt knee during the kneeling exercise which eventuallycaused pain and swelling.
## 33251                                                                                                                                                  EE stated that during training walking to the out side in the hallway her right foot twisted up towards her body.
## 33252                                                                                                               EE stated that during unit search, he reached to pull a piece of tape from a table and then saw blood coming from r mid. Finger then saw razor blade
## 33253                                                                                                                                                                                                               EE stated that finger on left hand hit the gate door
## 33254                                                                                                                                   EE stated that foreign object blew in the window while he was transporting physician orders on the patient's medication profile.
## 33255                                                                                                                                                 EE stated that getting out of van was stepping down to the ground injured right knee ---denied back on form 61 ---
## 33256                                                                                                                                                                    EE stated that going up southside stairwell when slipped on step and smashed left knee on step.
## 33257                                                                                                                  EE stated that he and inmate were moving a large container of juice from one cart to another cart and as they lifted the container EE felt a pain
## 33258                                                                                                                                    EE stated that he and two other officers were seperating two fighting inmates when inmates fell on EE's right knee against bed.
## 33259                                                                                                                  EE stated that he bent down to pick up 2 inmate snack bags & when he stood up he struck the top of his head on the metal wrap securing the fence.
## 33260                                                                                                                                 EE stated that he broke up a fight and separated inmates when blood was unintetion out of inmates mouth from 4/5 feet away onto EE
## 33261                                                                                                                                                                        EE stated that he caught his finger in the bc station door when he was exiting the station.
## 33262                                                                                                                                    EE stated that he entered unit managers office andslipped on something damp and fell to the floor after falling against a desk.
## 33263                                                                                                                      EE stated that he fell off a horse while training to ride. He stated he fell onto highway. Abrasion, hematoma to top of head, rt hip abrasion
## 33264                                                                                                                                                    EE stated that he had a fragment of metal on finger and when he scratched his eye, the fragment got in his eye.
## 33265                                                                                                                                              EE stated that he had been sitting on a stool whenhe started to fall. EE allegedly grabbed bars to keep from falling.
## 33266                                                                                                               EE stated that he had his hand between 2 bars, he turned and began walking towards the control desk, his hand became caught between the bars &... ..
## 33267                                                                                                                 EE stated that he had issued another officer a radio, and as he went to pull the security drawer back into control room the officer shut drawer on
## 33268                                                                                                             EE stated that he had just taken the hand cuff offone of the inmate's wrists when the inmate made anaggressive move and EE's thumb and shoulder injure
## 33269                                                                                                                                                    EE stated that he had made some keys from blanks, cut the palm of his l hand on the sharp edge of newly cut key
## 33270                                                                                                                                                          EE stated that he had parked & locked his car he was justa bout to walk away when he had a seizure attack
## 33271                                                                                                                      EE stated that he had reached for the bar railing in the tower with his left hand and grabbed his lunch box with hand. Hand slipped, EE fell.
## 33272                                                                                                                               EE stated that he has swelling in his rt. Elbow, denies any recent trauma, but reports past historyof gout in his lower extremeties.
## 33273                                                                                                                                                             EE stated that he hit the top of his head on a light switch while standing up, he was pulling trash ()
## 33274                                                                                                                                                           EE stated that he hurt his left thumb, he was in tthe process of placing a hostile inmate in restraints.
## 33275                                                                                                                                                                        EE stated that he jumped off chair into cement floor on both feet and he felt his neck pop.
## 33276                                                                                                                                             EE stated that he leaned aganist the trash can on tilery unit I the trah can turned over and he fell using his lt hand
## 33277                                                                                                                                                   EE stated that he leaned back in chair & fell backwards. Neck hit the paper shredder. Wheel broke off the chair.
## 33278                                                                                                                 EE stated that he noticed two inmates in a physical confrontation EE attempted to seprate both inmates he was hit upper head area twice and rt arm
## 33279                                                                                                                                                            EE stated that he picked up a trailer tongue to move it around so that he could hook it up to a tractor
## 33280                                                                                                                       EE stated that he picked up some open razors from a desk and placed it in a paper. The razor penetra-ted the paper, glove and cut his finger
## 33281                                                                                                                                                                                            EE stated that he picked up the pump shaft and injuried his lower back.
## 33282                                                                                                                         EE stated that he responding to a 10-40 fight in progress in unit#4 from the break room in unit#3 EE noticed cut on his left hand bleeding
## 33283                                                                                                                            EE stated that he sat down in a chair to put on some boots because it was raining outside when the chiar flipped him out onto the floor
## 33284                                                                                                                                                                                            EE stated that he sat down in the chair and the back of the chair broke
## 33285                                                                                                                                                                            EE stated that he scraped his left forearm on the fence while searching the fence line.
## 33286                                                                                                                                                                                                          EE stated that he slipped on water that was in the floor.
## 33287                                                                                                                                                 EE stated that he started to enter sgt office and stepped on another officers heel. He stumbled and twisted ankle.
## 33288                                                                                                                 EE stated that he step down from the curb to enter the security van slipped on some ice causing him to slide under the vehicle and strike the step
## 33289                                                                                                                                     EE stated that he stepped from the side of the boat and landed on the heel of his foot in parking lot causing lower back pain.
## 33290                                                                                                          EE stated that he stood up to prepare to get a head count, began coughing, and everything turned blackthen passed out. Co-worker witnessed EE fall to flr
## 33291                                                                                                                                                             EE stated that he stumbled over a chair so he kicked it out of the way injuring the top of his lt ffot
## 33292                                                                                                                                                                  EE stated that he took over sawing a tree from an inmate he stepped in a hole causing him to fall
## 33293                                                                                                              EE stated that he topping trees out of a boom lt bucket with a chain saw he felt something pop on the lt side of neck and shoulder after cutting limb
## 33294                                                                                                                                                                          EE stated that he tripped and fell over a stump and hurt his right leg and also his back.
## 33295                                                                                                                                                                             EE stated that he trouble handcuffing an inmate, later became sore in right upper back
## 33296                                                                                                                                                                                                         EE stated that he turned and felt a pain in his lower back
## 33297                                                                                                                     EE stated that he wa returning for lunch while training in apex as he was leaving the restaurtant parking lot a picked up rolled back into car
## 33298                                                                                                                                                                                                                          EE stated that he walked into a window ()
## 33299                                                                                                                        EE stated that he was above ceiling in dining hall& stretched awkwardly to enter inside air handler & standing on two milk crates to wire u
## 33300                                                                                                             EE stated that he was answering an inmates question about the farm squad, had his lt hand behind his back, the door was opening & his thumb got caught
## 33301                                                                                                                                                        EE stated that he was assaulted by an inmate to the front of his body, while the handcuff had handcuffs on.
## 33302                                                                                                              EE stated that he was assaulted by an inmate while he was trying to restrain the inmate the inmate jerked away from EE striking EE on rt side of head
## 33303                                                                                                              EE stated that he was assigned to dorm 4-c and as he was getting the beginning coutn he was hit from behind in rt upper shldr w/a bar of soap-bruised
## 33304                                                                                                               EE stated that he was assigned to yard duty and at that time was checking outside perimeter lighting hit so close he pocked up some shock from fence
## 33305                                                                                                                                                  EE stated that he was assisting in repositioning of a patient and that is when he experienced acutelow back pain.
## 33306                                                                                                                EE stated that he was assisting maintenance to open stuck gate he pushed the locking pin up through the hole finger went in hole and pushed gate on
## 33307                                                                                                                EE stated that he was at the pitt county center he was delivering inmate he turned to close the vehicle door and struck his rt hand on edge of door
## 33308                                                                                                                     EE stated that he was attacked by a dog while investigating reported illegal open burning passedby dog snipped his hand and scrutched lt thigh
## 33309                                                                                                                                              EE stated that he was attempting to grab bleach bottle, finger caught in nozzle and got twisted -- rt index finger --
## 33310                                                                                                                                                                    EE stated that he was breaking up a fight on the yard and received a scratch on the left elbow.
## 33311                                                                                                            EE stated that he was carrying an inmate; s razor back to the razor box after a cell search and grabbed the blade end of the razor causing pinpoint cut
## 33312                                                                                                                  EE stated that he was checking dorm 1a for cleanli-ness near the exit door when he brushed his hand across the bars, caught finger on razor blade
## 33313                                                                                                                                              EE stated that he was checking the insole of inmate for contraband when he felt a prick to his left little finger. ..
## 33314                                                                                                                         EE stated that he was cleaning a weapon in the arsenal had the weapon in rt hand when a sharp pain went down from his elbow to his rt hand
## 33315                                                                                                                                                                                                     EE stated that he was cleaning up tree branches from hurricane
## 33316                                                                                                                          EE stated that he was clearing growth at the firing range and was sharpening his bush axe and the file slipped and cut through his gloves
## 33317                                                                                                                                          EE stated that he was climbing a ladder into steam fell backwards foot slipped off ladder went into hole in sump pump pit
## 33318                                                                                                                                                 EE stated that he was closing the d dorm door whenhis left finger got caught in the locking part of the cell door.
## 33319                                                                                                                                                                                  EE stated that he was coming down the steps and missed a step causing him to fall
## 33320                                                                                                                                        EE stated that he was conducting a locker search in a dorm as he looked inside locker a foreign object fell into his rt eye
## 33321                                                                                                                                               EE stated that he was crossing ditch on side of road when he fell and hurt his lower back. Spasms right lumbar spine
## 33322                                                                                                                                                                         EE stated that he was cut by sharp object while placing boat cover in storage compartment.
## 33323                                                                                           EE stated that he was cutting the plastic strip form around the new mop bucket when the handle of the wringer fell back and hit him in his right eye and right cheek. ()
## 33324                                                                                                                                     EE stated that he was delivering food to I/m's when his finger was caught betwn. Door & juice crate, tearing fingernail loose.
## 33325                                                                                                              EE stated that he was doing cpr on an inmate he was wearing his stethescope around his neck and he turned to throw he turned around and hit elec. Box
## 33326                                                                                                                                                              EE stated that he was emptying a box of medication& bent over into the box & felt a spasm in low back
## 33327                                                                                                                                                          EE stated that he was escorting an inmate off the yard, when the I/m twisted his fingers on his (r) hand.
## 33328                                                                                                                                                                                                EE stated that he was escorting an inmate when inmate assaulted him
## 33329                                                                                                              EE stated that he was escorting immate up from recreation yard he ordered immate to sop immate refused EE took a hold of chain, twisting of handcuffs
## 33330                                                                                                              EE stated that he was exiting the kitchen after turning on the equipment when he stepped wrong as hewas exiting the door. Felt like bolt of lightning
## 33331                                                                                                             EE stated that he was getting a time report from the control roomofficer and as he was pushing the trap door inside EE third finger was caught in trap
## 33332                                                                                                                   EE stated that he was getting out of truck to unhook trailer. He was holding on the hand rail and got his left ring finger caught between rail..
## 33333                                                                                                               EE stated that he was going on a use of force withthe protective shield, EE hit the inmate with the shield and pressed inmate against wall, hit nose
## 33334                                                                                                                              EE stated that he was going through security entrance and notice that the door was stuck. He injured his hand by pushing on the door.
## 33335                                                                                                                              EE stated that he was going to job site. A driverin a car ran stop sign and hit road squad bus headon injured head, neck, chest, back
## 33336                                                                                                                            EE stated that he was hammering a steel pole into the ground when a piece of steel flew off the strucked him under his lower rt eye lid
## 33337                                                                                                                                                                       EE stated that he was helping staff, while walkingin stripper, his feet slipped in stripper.
## 33338                                                                                                                              EE stated that he was in a confrontation with an inmate when he was pinned between inmate and bed inside of cell. Bruise to right leg
## 33339                                                                                                                                               EE stated that he was in office from 7:35 to about8:15 preparing for an audit trip to the western part of the state.
## 33340                                                                                                             EE stated that he was in the process of breaking up a alteracation between inmates EE stated that two small spots of blood was on front of his rt wris
## 33341                                                                                                              EE stated that he was in the process of connecting pipes for processing juice, when he stood up he bumped his head against a pipe hanging from a rack
## 33342                                                                                                                     EE stated that he was involved in a foot chase of a fleeing probation violator he attempted to jump a ditch and his rt leg landed on the slope
## 33343                                                                                                              EE stated that he was involved in a pert training exercise that required running. As he was running he felt a very painful pull in right upper thigh.
## 33344                                                                                                                           EE stated that he was involved in a physical confrontation with an inmate & during the alter- cation his right knee struck cement floor.
## 33345                                                                                                                     EE stated that he was involved in auto accident involving state owned and another state owned autoee has shoulder/neck strain and cut to head.
## 33346                                                                                                             EE stated that he was involved in the use of force his hand got between handcuffs. The hand cuffs pinhed his lt thimb causing skin break with bleeding
## 33347                                                                                                                                       EE stated that he was involved in use of force andwhen asst. Other staff in getting inmate up off floor he injured his back.
## 33348                                                                                                                                                                           EE stated that he was involved in use of force was hit on the lt thumb and beside rt eye
## 33349                                                                                                                                            EE stated that he was invoved in an unanticipated use of force with an inmate and the inmate bite him on the rt forearm
## 33350                                                                                                                 EE stated that he was looking for some paperwork when park of a desk fell and the brace part that holds two parts together and hit him in rib area
## 33351                                                                                                                                                             EE stated that he was making a fence check in the rain and twisted his ankle on a piece of wet plywood
## 33352                                                                                                                                EE stated that he was making a round when he walked in front of cell door #5 the inmate was coming out of his cell at the same time
## 33353                                                                                                                                                                       EE stated that he was making round in the shower area of g-dorm and slipped on a bar of soap
## 33354                                                                                                                                                                                EE stated that he was monitoring inmates while they navigated loaded carts out side
## 33355                                                                                                                                                                    EE stated that he was mopping the first floor ramp and felt some pain in his right shoulder. ()
## 33356                                                                                                                                           EE stated that he was moving a clothing locker up the stairway of the control room the locker pined him against the wall
## 33357                                                                                                             EE stated that he was moving a ladder and as he was sitting it down he caught his rt ring finger in the ladder. He lost his balance and the ladder. ..
## 33358                                                                                                                                                                             EE stated that he was moving furniture from the mail room so inmates could clean paint
## 33359                                                                                                                                                            EE stated that he was on yard patrol behind dome when his ankle got tight and swollen from insect bite.
## 33360                                                                                                                                                                             EE stated that he was opening a gate to let out several work vehicle, cut right thumb.
## 33361                                                                                                                      EE stated that he was othe EE bottle of floor cleaner when he went to grab the top of bottle lid came off and contents went into face and eys
## 33362                                                                                                                                                   EE stated that he was performing a security check on abcd yard and slipped on wet muddy clay next toweight pile.
## 33363                                                                                                              EE stated that he was performing routine searches on inmates as they entered the kitchen area EE stated that during this began turning red & burning.
## 33364                                                                                                                   EE stated that he was pulling clothes bag out from under locker a magnet was stuck to the bottom of the locker with a razor blade attached to it
## 33365                                                                                                                        EE stated that he was pulling his daily trash out of the trash barrel and twisted the wrong way and felt a sharp pain in his lower back. ()
## 33366                                                                                                                                                               EE stated that he was pulling the extraction machine and felt a sharp pain in his chest and back. ()
## 33367                                                                                                                                                                                EE stated that he was pulling up a loading ramp & pulled a muscle in his lower back
## 33368                                                                                                                                                                                EE stated that he was pulling up loading ramp and pulled a muscle in his lower back
## 33369                                                                                                                   EE stated that he was punched in mouth by inmate while he was seated in chair in cell. EE states restrained inmate and then was thrown to floor.
## 33370                                                                                                                                                                                   EE stated that he was putting c frame on dozer and piece of debris fell in r eye
## 33371                                                                                                                                                       EE stated that he was putting the handcuffs into his pouch when a small piece of metal stuck into his finger
## 33372                                                                                                                                          EE stated that he was putting the light cover back on the light, cover slipped and he grabbed thesharp edge of the cover.
## 33373                                                                                                                                                                        EE stated that he was removing 5 gallon gas cans from bed of truck and strained lower back.
## 33374                                                                                                                      EE stated that he was removing jammed lock on a trailer when he struck his left hand with a hammer. Caused tear to skin about size of quarter
## 33375                                                                                                                                                                                  EE stated that he was responding to a code and slipped onth edge of the sidewalk.
## 33376                                                                                                                                                       EE stated that he was responding to fight & while enroute stepped off of sidewalk and rolled his right ankle
## 33377                                                                                                                                         EE stated that he was responding to unit 2, while runnin across yard, turned ankle causing him to fall forward onto ground
## 33378                                                                                                             EE stated that he was retrieving an oxygen tank onwheels for the nurses & as he was removing it the wheels caught on the cabinet causing a sudden stop
## 33379                                                                                                                       EE stated that he was returning from unc hospital when he stepped out of his vehicle and slipped on some water tha the inmate had thrown out
## 33380                                                                                                                                             EE stated that he was returning from using restroom when he slipped on step and fell down, landing on his right wrist.
## 33381                                                                                                                       EE stated that he was searching inmates locker & was bent down & when he stood up he pulled something in the back side of knee cap area.. ..
## 33382                                                                                                                                                                        EE stated that he was separating two inmates whom were fighting inmate pushed EE against EE
## 33383                                                                                                                                      EE stated that he was serving food trays and sat a tray on trap door he say tray was going to fall and turned to try to catch
## 33384                                                                                                                             EE stated that he was shaking down the a-1 closet in 4e when he bent down to pick up a piece of paper when he hit his head on a screw.
## 33385                                                                                                                                              EE stated that he was sitting at stop light & a car ran into back of trailer & the van jerked forward from the impact
## 33386                                                                                                             EE stated that he was sitting at the computer desk in the lieutenant's office he turned away from the phone and towards the computer desk striking his
## 33387                                                                                                             EE stated that he was sitting at the control desk, about to make a log entry when he heard what sounded like a shotgun blast to his left. Officer.. ..
## 33388                                                                                                                                                                            EE stated that he was sitting in a chair and when EE got up he felt a catch in his back
## 33389                                                                                                                EE stated that he was sitting in a chair reviewingthe duty roster when the chair broke from the pedastal and he fell to the floor on his left side.
## 33390                                                                                                             EE stated that he was sitting in control room chair operating control room the chair seat was brokenand EE fell from chair into grate floor landing on
## 33391                                                                                                                                                                     EE stated that he was standing and turned around caught foot and hyper-extended his left knee.
## 33392                                                                                                                                                            EE stated that he was standing beside forest consultant's truck and was hit by wheel of car passing by.
## 33393                                                                                                                                                                       EE stated that he was stepping off bus when he slipped and fell injuring left elbow and neck
## 33394                                                                                                                                          EE stated that he was struck a glancing blow by person or thing unknown while assisting in restraining a combative inmate
## 33395                                                                                                                EE stated that he was supervising during trash detail, walked to move out of the way, stepped onto a slopping side of sidewalk, aggrevating rt knee
## 33396                                                                                                                                           EE stated that he was supervising inmates on road squad work detail when he stepped in a hole, twisting his right ankle.
## 33397                                                                                                                       EE stated that he was supervising inmates tearing down a fish house. An ax accidentally slipped outof inmate's hand striking EE in the head.
## 33398                                                                                                                                                                             EE stated that he was sweeping out the back of thetrasfer bus and missed the back step
## 33399                                                                                                              EE stated that he was teaching his students in hisclassroom while assisting a student at the teacher's desk a pencil eraser was thrown and hit lt eye
## 33400                                                                                                                       EE stated that he was transporting an inmate to cnetral prison when a car rana stop sign at intersection, and EE's vehicle struck other car.
## 33401                                                                                                                                                              EE stated that he was transporting an inmate to court when another vehicle pulled out in front of him
## 33402                                                                                                                      EE stated that he was traveling and turned on right hand signal. EE was struck from behind by another vehicle. Sprain muscle in neck and back
## 33403                                                                                                                                                                                  EE stated that he was trying to prevent one inmatefrom assaulting another inmate.
## 33404                                                                                                                                         EE stated that he was using force on an inmate to bring him under control inmate was kicking and fighting during this time
## 33405                                                                                                                                     EE stated that he was walking across parking lot and stepped on a rock causing him to turn his rt ankle and fell on the ground
## 33406                                                                                                                          EE stated that he was walking across the sidewalk at the admin office to get in vehicle there was ice on sidewalk and he slipped and fell
## 33407                                                                                                                   EE stated that he was walking aroung the control room when he bumped his right knee on the control room panel cabinet causing it to hyperextend.
## 33408                                                                                                              EE stated that he was walking down stairs, turned to give another officer paperwork, took another stepw/rt foot&states doesn't remember what happened
## 33409                                                                                                                          EE stated that he was walking down the kitchen hallway toward the warehouse to exchange his uniformswhen he slipped on a liquid substance
## 33410                                                                                                                     EE stated that he was walking from behind the offcier's desk and caught the heel of his boot in the hole in the floor and twisted his rt ankle
## 33411                                                                                                                                                            EE stated that he was walking into charlie dorms sallyport when he felt a sharp pain in his left ankle.
## 33412                                                                                                                 EE stated that he was walking through the cook area and he attempted to step around an inmate that was cleaning floor lt foot slipped twisted knee
## 33413                                                                                                                          EE stated that he was walking through the lower gate & stumbled when a stray cat ran between his feet. Employee did not fall but tripped.
## 33414                                                                                                                                                    EE stated that he was walking to the door and slipped on some liquid that was on the floor in the clotheshouse.
## 33415                                                                                                                                          EE stated that he was walking up the stairs in segawing when his knee 'suddenly let go' & he caught himself on the rails.
## 33416                                                                                                                EE stated that he was working on a fan motor with no power holding a wire from it as he walked around another motor with power 277 volt shocked him
## 33417                                                                                                                                    EE stated that he was working with refrigerant lines on ice machine and liquid refrigerant got on both hands cause them to burn
## 33418                                                                                                                                     EE stated that he went to the four door area for awork roster other EE accidently shut his finger indoor when he shut the door
## 33419                                                                                                                                                              EE stated that he ws trying to hit a fly and hit the tape dispenser and cut his left hand ring finger
## 33420                                                                                                                                                                                         EE stated that her chair rolled out from under her causing her to fall. ()
## 33421                                                                                                                                                                                  EE stated that her finger was struck by employer during routine dental procedure.
## 33422                                                                                                               EE stated that her foot missed the 2nd step as shewas stepping put of the rear entrance dormitory door-way and fell on both knees and left wrist. ..
## 33423                                                                                                                                                                    EE stated that her hand and arms started burning and itching with small bumps on hands and arms
## 33424                                                                                                                                                                                        EE stated that her lt knee popped out of place during self defense training
## 33425                                                                                                                                                    EE stated that his foot slipped on some wet grass and he fell, catching himself with rt hand, hurting rt thumb.
## 33426                                                                                                                                                                                    EE stated that his hurt due to lifting exhibit material this cont. As he worked
## 33427                                                                                                                                                             EE stated that his lt foot slipped as ahe stepped into vehicle and her knee turned causing her to fall
## 33428                                                                                                                                   EE stated that his lt hand was resting on the track of the trash compactor and he took his rt hand and slam the compactor closed
## 33429                                                                                                                                                 EE stated that hit head on metal bar that is around signal light on trailer while bending down to pick up a strap.
## 33430                                                                                                                                                                               EE stated that immate bumped into him with a hot four inch pan injurying his rt hand
## 33431                                                                                                                                                                     EE stated that in an attempt to break up a fight, the EE fell down on a rock and cut his knee.
## 33432                                                                                                                   EE stated that in the 1970's, he worked in the engine room for the cranes and was not required towear hearing protection. Today has hearing loss
## 33433                                                                                                                                                                                                    EE stated that in use of force on inmate, inmate began spitting
## 33434                                                                                                                                                                                      EE stated that injury occurred while filing licensee folders in file cabinet.
## 33435                                                                                                                      EE stated that inmate cannon mixed descaler & bleach. This in turn caused a chemical fume. EE & supervising inmates & evacuating from kitchen
## 33436                                                                                                                         EE stated that inmate corey shayland, 0708489 jumped her from behind, knocked her to the ground, and began kicking her in the head & face.
## 33437                                                                                                                                                                                                                    EE stated that inmate grabbed her on left wrist
## 33438                                                                                                             EE stated that inmate had to be physically restrained, during which time EE stated he wsa pepper sprayed, struck in ribs, bit on left palm fall to flr
## 33439                                                                                                                                    EE stated that inmate is a kitchen worker that gotdrunk and became violent and he was injured when he tried to restrain inmate.
## 33440                                                                                                                                                                                            EE stated that inmate rushed him & struck him several times on the head
## 33441                                                                                                                                                                EE stated that inmate struck him on the right sideof his face with his hands cuffed with handcuffs.
## 33442                                                                                                            EE stated that inmate threw a wooden chair leg at him and he blocked the object w/right forearm. As EE struck down, twisted his right knee & hit ground
## 33443                                                                                                                       EE stated that inmate was hostile and aggressive and threw a chair and struck his lft upper arm and wrist removing the skin from lft wrist..
## 33444                                                                                                                  EE stated that inmate was in full restraints when cell door was opened. When he came out, inmate was swinging his can, hitting him on his lt hand
## 33445                                                                                                                              EE stated that inmate was trying to kill himself w/ a razor blade. Officer grabbed the inmate & went to the floor hurting right knee.
## 33446                                                                                                                EE stated that it happen when he pulled a fellow member over the tall wall he stated that when he pulled with his rt arm that he felt a hot feeling
## 33447                                                                                                                                                                                      EE stated that leg hit tissue dispenser & tore legunder knee in east bathroom
## 33448                                                                                                                                                                                    EE stated that maybe while lifting conference table he could have hurt his back
## 33449                                                                                                                  EE stated that on 03. 15. 96 at approximately 12:45am he had opened the gate on "a" hall to do paperwork, pivoted on left foot and rt knee popped
## 33450                                                                                                                                                EE stated that on 4/20/95 while in process of running to a disturbance in the dormitory he fell and hurt his l knee
## 33451                                                                                                                   EE stated that on the above date and time. After opening the hallway door. EE was trying to keep the door from closing back and mashed his index
## 33452                                                                                                                                          EE stated that on their way to the work site some one driving a car ran the stop sign and hit the road squad bus head on.
## 33453                                                                                                                                        EE stated that on thursday while on a maint trip his vehicle was struck on the right hand side by a semi-truck. Back strain
## 33454                                                                                                                                     EE stated that other corr offcier was handing EE a bag of containing a tatto gun and the tatto gun needle stuck EE in lt thigh
## 33455                                                                                                                                                                                                                      EE stated that patient head butted him in lip
## 33456                                                                                                                                                                EE stated that resident twisted wrist & pulled middle finger on left hand. Tenderness to left hand.
## 33457                                                                                                                                                                                                                         EE stated that right arm was cold and numb
## 33458                                                                                                                                                                EE stated that she May have hurt her back and leg when pushing a laundry cart with another officer.
## 33459                                                                                                               EE stated that she accidentally stepped off the walkway and fell. She stated she injured her rightankle, left knee, left hand, right elbow, small fi
## 33460                                                                                                                 EE stated that she fell down while trying to get up stairs from parking lot to the sidewalk. As result she scraped her left leg and hit broken leg
## 33461                                                                                                                                                        EE stated that she fell due to a wet floor being slippery as she entered the main building. Injured rt leg.
## 33462                                                                                                                                                                                                       EE stated that she fell when she slipped on a slippery floor
## 33463                                                                                                                                                                                            EE stated that she fell while walking down hallwaywhich had a wet floor
## 33464                                                                                                                                                                                     EE stated that she felt her eye itch, she began torub it & it started burning.
## 33465                                                                                                                               EE stated that she got her right pinkie finger caught between a clothes basket and a door frame causing her finger to bend backwards
## 33466                                                                                                                                                                              EE stated that she had an allergic reaction to pepper spray when sprayed in her eyes.
## 33467                                                                                                                    EE stated that she had search a inmates locker andfound a container with liquid substance in it the liquid appeared to be urine when it spilled
## 33468                                                                                                                     EE stated that she hit her left little toe that was already broken on a wooden pallet in stockroomwhile getting inmate a pair of tennis shoes.
## 33469                                                                                                                                                                              EE stated that she hurt her groin and back when she slipped in the food service dept.
## 33470                                                                                                                  EE stated that she picked up the intercom phone atmaster control & upon placing it it her rt ear thevolume was at a level it injured her ear drum
## 33471                                                                                                                               EE stated that she picked upa bag of bus mail and tossed it into a buggy she felt a pain in her lower back in the middle of her back
## 33472                                                                                                                                                                        EE stated that she put on gloves to pat down an inmate & her right thumb start swelling. ()
## 33473                                                                                                                  EE stated that she reached for the control panel to answer the intercom at the south gate and the phone began to ring felt a pull nd cutting pain
## 33474                                                                                                                  EE stated that she responded to an inmate emergency the inmate was put on a stretcher when nures lifted the stretcher caught weight on her rt arm
## 33475                                                                                                                                                                                                             EE stated that she slipped and fell in the dining hall
## 33476                                                                                                                                                             EE stated that she slipped and felled on an unknown object on the floor injurying multiple body parts.
## 33477                                                                                                                                                                                                                 EE stated that she slipped on floor and hit table.
## 33478                                                                                                                                EE stated that she started itching, burning and swelling on the left side of her body - allergic reaction to dogs during search. ()
## 33479                                                                                                                                                                               EE stated that she struck her lt big toe against the bottom of a door that was stuck
## 33480                                                                                                                                                  EE stated that she tripped onto concrete floor entering segregation control. Fell on her right arm, and right leg
## 33481                                                                                                                                                                                                  EE stated that she twisted ankle while working on a fire training
## 33482                                                                                                                                                               EE stated that she twisted her lt ankle by hitting it against a stool while working in control ctr 2
## 33483                                                                                                                EE stated that she was assigned to pick up the mail at the polkton post office & when she opened the car door it swung back & struck her on her jaw
## 33484                                                            EE stated that she was assisting in moving tables during a tornado drill. While reaching under the table her right hand was caught and was shut between the tables being moved, causing a contusion. ()
## 33485                                                                                                                                EE stated that she was attempting to get in chair. Placed her right foot on the platform and twisted her right leg. EE felt a pull.
## 33486                                                                                                                                                              EE stated that she was attempting to lift the juice cooler on the food cart when EE injured her wrist
## 33487                                                                                                             EE stated that she was attending pert training EE was chasing officer he foot became tangled up in some ires EE fell forwad landing on her rt shoulder
## 33488                                                                                                                                                         EE stated that she was being attcked by a goose, she re-injured her right ankle trying to avoid theattack.
## 33489                                                                                                                                                                                     EE stated that she was bitten by a brown spider while working in the gatehouse
## 33490                                                                                                                                                                           EE stated that she was carrying a food tray upstairs when she fell walking up the steps.
## 33491     EE stated that she was checking in vehicles as they enter the sally port, she has to check under the hood and other parts--stated that her fingers were so cold, could not move them to grab hold of hood of vehicle, hood fell on hand/slammed right fingers.
## 33492                                                                                                                                                    EE stated that she was checking the perimeter of yard four when she slipped on some ice and injured her lt foot
## 33493                                                                                                                                  EE stated that she was checking the top of the tv when she fell off the chair she was standing on she states that she hit her hip
## 33494                                                                                                                                                 EE stated that she was cleaning instruments after treating inmate and stuck a pair of scissors in her right thumb.
## 33495                                                                                                                                   EE stated that she was cleaning off the housekeeping cart and accidentally sprayed the mildew stain remover in her right eye. ()
## 33496                                                                                                                                    EE stated that she was cleaning refrigerator in the EE break room when she scraped her arm across jagged edge od piece of metal
## 33497                                                                                                               EE stated that she was clearing tables when two glass candle holders started to fall and she triedto catch them. They hit together and broke in hand
## 33498                                                                                                                          EE stated that she was climbing the stairs to the green unit and felt a pop in her left ankle. Further stated that she could not move it.
## 33499                                                                                                                                EE stated that she was coming in the front gate with supllies used in pepper spray training and her hand hit the edge of the fence.
## 33500                                                                                                                                             EE stated that she was coming into work and fell on the rug. She tripped and hit right side of her forehead on cement.
## 33501                                                                                                                  EE stated that she was doing a routine locker search in the east wing dorm b-bdm035 bented over pulling a plastic bag out of the locker an felt..
## 33502                                                                                                                                      EE stated that she was doing unarmed self-defense techniques and fell on her left shoulder possilby dislocating her shoulder.
## 33503                                                                                                                            EE stated that she was driving acoss new bern ave. When she was struck on the drivers side by a truck. 2 pelvic fractures on left side.
## 33504                                                                                                                                                  EE stated that she was driving past t-1 behind a state vehicle when the vehicle made a u-turn and struck her car.
## 33505                                                                                                                                        EE stated that she was enroute to her assigned post when she stepped in a broken crack in the sidewalk and turned her ankle
## 33506                                                                                                                              EE stated that she was entering master control andher right hand hit the keys that were in the door and the door closed on her wrist.
## 33507                                                                                                                                                                            EE stated that she was escorting to the trash dumpster when she turned her right ankle,
## 33508                                                                                                         EE stated that she was exiting the institution walking in parking lot to her vehicle when she fell down on ice & snow on her right hand and right knee. ()
## 33509                                                                                                                                                 EE stated that she was falling backward during exercise for self defense. Her elbow went into her upper right rib.
## 33510                                                                                                             EE stated that she was getting off of the securityvan on to the sidewalk her foot slipped across thesidewalk on to some rocks and fell on her rear end
## 33511                                                                                                                                         EE stated that she was getting off road squad bus when she twisted her lt ankle falling and hitting both knees and lt hand
## 33512                                                                                                                              EE stated that she was getting the sick call list prepared and she slipped on a piece of paper lying on the floor by the offcier desk
## 33513                                                                                                                                 EE stated that she was getting up from her chair when she got her feet tangled up in the phone cordand fell to her hands and knees
## 33514                                                                                                                                   EE stated that she was going into the tower, and the wind blew the door closed catching her hand between the door and the frame.
## 33515                                                                                                                                            EE stated that she was going into workroom to file papers she stated she inserted the key to unlock the door w/ lt hand
## 33516                                                                                                              EE stated that she was going to make the trash run pushed the button to open door to the warehouse hallway when it unlocked someone on the other side
## 33517                                                                                                                    EE stated that she was going to the restroom. Whenee walked in rr she slid on water & fell. Water came from flooding. Left hand/knee/side/back.
## 33518                                                                                                                                                         EE stated that she was having pain in her right hand, wrist, and arm that causes her to to wake upat night
## 33519                                                                                                                  EE stated that she was helping with unarmed self- defense training. They were demostrating the wristout technique and I was taken down to the mat
## 33520                                                                                                                                  EE stated that she was holding the door open for the canteen operator and the canteen operatoe pushed the cart across her rt foot
## 33521                                                                                                                       EE stated that she was in a dorm bending down to get some gloves out of the desk draw and the radio fell out of her belt and hit her big toe
## 33522                                                                                                              EE stated that she was in a housing unit supervising inmates when she became nauseous and a little hot. She requested dramamine and then she fainted.
## 33523                                                                                                                                            EE stated that she was in pursuit of an inmate when she attempted to jump a chain. She fell on her hands and right knee
## 33524                                                                    EE stated that she was in the archive rooming pulling down boxes retrieving timesheets for raleigh, when on of the boxes start falling and she grabbed it and hurt her upper and lower back. ()
## 33525                                                                                                                              EE stated that she was injured while restraining an inmate during an altercation staeted having pain in lower back several days later
## 33526                                                                                                                        EE stated that she was leaving court room where the officers sit & when she went to step down she slipped & hit the banner around the wall.
## 33527     EE stated that she was leaving for the day, she went through the gatehouse & on the other side of the gatehouse she turned right on the sidewalk & her right foot caught a brick & fell. She injuried her right knee, her right elbow, her top& bottom teeth (
## 33528                                                                                                                                EE stated that she was leaving her parked car to come into cobb residence hall when she tripped and fell hurting her knee and ankle
## 33529                                                                                                                                                                        EE stated that she was leaving out the back door and turned her ankle over edge of concrete
## 33530                                                                                                                        EE stated that she was leaving the control center and was holding the door with her hands and the control door shut on her lt middle finger
## 33531                                                                                                                                                    EE stated that she was making a routine round in seg. I when immate threw a liquid in her hair and on her shirt
## 33532                                                                                                          EE stated that she was making a security check, when she tripped on a limb, she lost her balance and fall to the ground. She struck her face, and eyebrow
## 33533                                                                                                                                     EE stated that she was monitoring inmates when shepickup a 5 gal bucket to prop open office door causing injury to lower back.
## 33534                                                                               EE stated that she was mopping the floor when her mop hit the bottom of the board that was sitting against the wall, causing it to fall and hit her on the left side of the head. ()
## 33535                                                                                                                                                                                         EE stated that she was moving a rock & dropped it on her rt foot f18 filed
## 33536                                                                                                             EE stated that she was moving around in medication north and bumped backward into the metal table as she turned around and it lacerated her lt glusteu
## 33537                                                                                                                     EE stated that she was moving the fan which is the lobby of housing unit 5 EE states that as she moved the fan the top section of the fan fell
## 33538                                                                                                                         EE stated that she was moving through the treat ment area & tripped on a small step stool causing her to hit her lower right leg on table.
## 33539                                                                                                                EE stated that she was moving training booklets on a hand cart when the weight shifted going down an incline. Caused wheel to run over toe. Rt toe.
## 33540                                                                                                                    EE stated that she was on firing range on 06-21-96for most of the day firing revolvers and that during afternoon eye became sore began to swell
## 33541                                                                                                                            EE stated that she was on her way to a meeting, when she hit the back of a car in front of her. Injured 3rd rt toe when mashing brakes.
## 33542                                                                                                                       EE stated that she was opening door to let an inmate in and when she reached up to pull the door closed the door with her finger in the door
## 33543                                                                                                                                                       EE stated that she was opening doors in the gatehose as she turned in the chair she hit her knee on the desk
## 33544                                                                                                                          EE stated that she was performing self defense technique. After placing thumbs on back of partnerhead and taking him down felt thumb pop.
## 33545                                                                                                                                       EE stated that she was placing inmate back into cell & left hand was caught in door jam when door closed on 2nd & 3rd finger
## 33546                                                                                                                                                                                      EE stated that she was placing the newspaper in the desk jammed thumb on desk
## 33547                                                                                                                             EE stated that she was preparing dirty instrumentsfor sterilizer when she poked herself in rt hand with one of contaminated untensils.
## 33548                                                                                                                                                     EE stated that she was proceeding to call block lost balance on stair well and missed next step fell to bottom
## 33549                                                                                                                     EE stated that she was pushing a cart of dirty linen up a ramp into truck the cart tilted her body twisted and back snapped causing sharp pain
## 33550                                                                                                                                         EE stated that she was reaching into a locker that she felt something go down her shirt and felt something bite her spider
## 33551                                                                                                                           EE stated that she was reaching up and got over- balanced, couldn't catch herself, fell backwards with lt elbow hitting the floor first.
## 33552                                                                                                                             EE stated that she was removing a lancet from pen after completing an accucheck on an inmate and accidently stuck the lancet in finger
## 33553                                                                                                                 EE stated that she was removing chemical bottles off the side of her car to take to trash liner anda bottle fell, chemical splattered in her face.
## 33554                                                                                                                EE stated that she was removing the load off the truck the load was stuck and she went to get something the load was under pressure it popped loose
## 33555                                                                                                                            EE stated that she was reporting to the housing area to post, slipped and fell on ice on cement -------------- atty ------------------_
## 33556                                                                                                               EE stated that she was responding to a code two inthe dining hall she went under the bar line to get to the fight later she stated that her low back
## 33557                                                                                                                              EE stated that she was retrieving medical records from the medical records office and when she turned the corner she slipped and fell
## 33558                                                                                                             EE stated that she was rolling in the chair to answer the phone and the chair rolled under her EE fell out of chair hit back of her head chair fell on
## 33559                                                                                                                         EE stated that she was running toward the buildingto assist another officer, when she fell over a drain grate, injuring chest, both legs..
## 33560                                                                                                                EE stated that she was searching the visiting area picked up table and injured her lower back EE stated she only picked up one side of wooden table
## 33561                                                                                                                                   EE stated that she was securing the doors she sat down and the chair broke as she made contact with it and she fell to the floor
## 33562                                                                                                                                                 EE stated that she was sewing button back on her uniform shirt & she stuck her right index finger with the needle.
## 33563                               EE stated that she was sitting at her desk and went to stand up and said that her foot must have gotten tangled in the computer or mouse cord and she fell. Landed on her right knee, she braced for the fall with her right hand ()
## 33564                                                                                                                EE stated that she was sitting in rolling desk chair and when she placed her hand on the edge of thedesk to get out of chair both moved and EE fell
## 33565                                                                                                                         EE stated that she was sitting in the gate house when the florescent light fixture fell from the ceiling hitting her on the left shoulder.
## 33566                                                                                                                                                      EE stated that she was sprayed with oc pepper spray during training, panicked & was given a shot of benadryl.
## 33567                                                                                                                                                                 EE stated that she was sprayed with oc spray and after the training she had a reactin to the spray
## 33568                                                                                                              EE stated that she was squatting down and leaned slightly forward to clean some spots up off the floor when she heard something pop in her neck, back
## 33569                                                                                                                            EE stated that she was standing at the door of theis control waiting for the keys of the vehicle to go she felt a bite on her rt leg ..
## 33570                                                                                                                              EE stated that she was stepping out of clotheshousstorage shed when she stepped on a nail that was sticking out of a piece of plywood
## 33571                                                                                                                                                                      EE stated that she was sweeping behind the steps when she bumped her head on the mantle piece
## 33572                                                                                                                                EE stated that she was taking the inmates in segregation out to exercise and she twisted her rt ankle when she went down the stairs
## 33573                                                                                                                                EE stated that she was traveling to the post office in state vehicle and traffic stopped the vehicl behind struck the state vehicle
## 33574                                                                                                                         EE stated that she was trying to get papers out ofthe file cabinet; drawers tilted over on her rightshoulder, forearm and right hand/wrist
## 33575                                                                                                                    EE stated that she was urinated on by an inmate through cracks of closed cell door, where the walland door meet. EE struck in face & upper body
## 33576                                                                                                                                             EE stated that she was walking across the faclity grounds and turned her foot over a rock EE rtw 2/18/02 - oow 2/19/02
## 33577                                                                                                                                                        EE stated that she was walking across the parking lot and tripped over a parking curb and twisted her ankle
## 33578                                                                                                            EE stated that she was walking along the path frombldg to parking lot when her knee "just gave out"&her lt ankle turned. EE caught herself w/ her hands
## 33579                                                                                                                               EE stated that she was walking along the side of road and stepped into a hole with her rt foot causing her to twisted that foot some
## 33580                                                                                                             EE stated that she was walking down the side walk in front of single cell dormitory when she twisted her right ankle fall forward on left knee & wrist
## 33581                                                                                                                             EE stated that she was walking down the steps leaving the bost seg office EE alleges that she tripped on a step and fell into the wall
## 33582                                                                                                                                  EE stated that she was walking in kitchen area of the facility near steamer when she slipped on the wet floor injury her rt knee.
## 33583                                                                                                            EE stated that she was walking on narrow section of sidewalk with 1 crutch: lost footing, knees gaveway from lack of support, fell hard on cement swalk
## 33584                                                                                                                                                                             EE stated that she was walking on the sidewalk slipped in the mud and twisted her back
## 33585                                                                                                                                  EE stated that she was walking on walkway and heel of shoe was half on cement half on sidewalk heel went through cracks in cement
## 33586                                                                                                             EE stated that she was walking out the dorm turnedaround to ask officer gore to get other narrativesfrom c dorm for her stumbled and fell face forward
## 33587                                                                                                                                       EE stated that she was walking to her car, to go to lunch when she stepped in hole and twisted her ankle. Fractured lt foot.
## 33588                                                                                                                                       EE stated that she was walking to her vehicle in the parking lot when she slipped off the curb and fell down on the pavement
## 33589                                                                                                                                            EE stated that she was walking to the storage roombehind medical and almost fell on the sidewalk turning her left knee.
## 33590                                                                                                                EE stated that she was walking toward the admin. Bldg. EE states that she twisted her left ankle on loose rocks in parking area causing her to fall
## 33591                                                                                                                                                      EE stated that she was walking toward the school area when she stepped on a rock and twisted her right ankle.
## 33592                                                                                                                                                      EE stated that she was walking up the stairs in dorm when her foot slipped & she landed on her left knee cap.
## 33593                                                                                                                                                                       EE stated that she was winding up landing gear it all of sudden spun up caught her in lt jaw
## 33594                                                                                                                                                           EE stated that she was working as oic of b- formitory when she was bitten by something on her right arm.
## 33595                                                                                                                                                 EE stated that she went to sit down in a chair, the chair slid out from under her, causing her to fal in the floor
## 33596                                                                                                                            EE stated that she went to the dinning hall went to transfer to wheelchair when became combative and pulled nurse in chair and hit hand
## 33597                                                                                                                                       EE stated that she went to the janitor closet & bent down to get a trash bag out of a box on the bottom of the janitor cart.
## 33598                                                                                                                              EE stated that she ws in the parking lot getting ready to come inside the building to go to work when she crossed the wire, she fell.
## 33599                                                                                                                                    EE stated that something bit her rt-leg. EE statedthat she continue her job & at 10:00-pm severe pain began to hurt in her leg.
## 33600                                                                                                                                                    EE stated that something flew in her face as she was trying to get it out of her eye her fingernail hit eyeball
## 33601                                                                                                                EE stated that standing up with a chair behind herdoing phone sheets, when another EE returned to room & moved chair & EE sat down & fell to floor.
## 33602                                                                                                                                   EE stated that the building was evacuated due to areported spill of toxic chemicals in lower level of the building. No injuries.
## 33603                                                                                                                                                                         EE stated that the bus ran into a ditch causing injury to his right knee, shin, arm & hip.
## 33604                                                                                                                            EE stated that the elevator became stuck between floors & the passenger had to be pulled from elevator between the opening & the floor.
## 33605                                                                                                                                                                                    EE stated that the elevator dropped very hard before reaching the ground floor.
## 33606                                                                                                                         EE stated that the fluid thrown by inmate hit officer j. Harris in the face and chest area. Liquid splashed off officer harris and hit EE.
## 33607                                                                                                                                                                               EE stated that the inside door handle fell off thedoor and the edge fell on her toe.
## 33608                                                                                                                                    EE stated that the locking device on the gatehoude was filed down too sharp and his rt thumb rubbed across it causing small cut
## 33609                                                                                                                      EE stated that the patient was not properly positioned int he dental chair and was uncoop- erative. As a result EE stuck herself with needle.
## 33610                                                                                                                       EE stated that the smell of very strong fumes was present in the south piedmont area office on this date. No injuries reported at this time.
## 33611                                                                                                                                                                                     EE stated that the wind blew shut the gate causing the gate to hit his rt heel
## 33612                                                                                                              EE stated that there was a car passing a trailer, EE swirved to r, red car hit EE and spun around and hit a tree on passenger side appr 40 ft off rd.
## 33613                                                                                                              EE stated that they were performing take down hold & her right arm was behind her back & the partner went to take her down inj. Neck, shoulder, l arm
## 33614                                                                                                                                          EE stated that upon attempting to handcuff inmate the inmate threw a deck of cards hitting me in the neck and facial area
## 33615                                                                                                                                                                          EE stated that upon entering the van she hit the top of her head on the frame of the door
## 33616                                                                                                                                                                         EE stated that upon entering the van she hit the top of her head on the frame of the door.
## 33617                                                                                                                                                                                                         EE stated that use of earplugs caused compacted wax in ear
## 33618                                                                                                               EE stated that when he came to work on this morn- ing he lost his footing walking away from car to building & slipped on ice & fell on his buttocks.
## 33619                                                                                                                                                                                                       EE stated that when he lowering tail gate it hit his lt arm.
## 33620                                                                                                                                                           EE stated that when he walked through the back gate he tripped over a cage at greene causing him to fall
## 33621                                                                                                                          EE stated that when opening the trap door she turned toward the window and her foot slipped and she fell through trap door to third step.
## 33622                                                                                                                                                                        EE stated that when removing needle from inmate's arm-needle pricked the tip of her finger.
## 33623                                                                                                                                           EE stated that when she had to come back from court and went to sit down in her chair, the chairwent out from under her.
## 33624                                                                                                                                                                                 EE stated that when she shut the gate, she realizeher index finger was in the lock
## 33625                                                                                                                                                  EE stated that when she turned to get a set of keys out of the vehicle key box, she twisted her knee. *attorney**
## 33626                                                                                                                                                                                                 EE stated that when she types on the computer her left wrist hurts
## 33627                                                                                                                         EE stated that when she was scraping trays, she felt a pain in the lower part of her back when she picked up the trays from the hand cart.
## 33628                                                                                                                                                                                  EE stated that when she went to pick up a box she felt something pull in her side
## 33629                                                                                                                        EE stated that while EE was conducting a locker search in core c block EE reached toward back of locker and felt something pull in shoulder
## 33630                                                                                                                 EE stated that while allowing an inmate to get dressed, suddenly inmate lunged at him and other staff present. This caused EE to hit the cell door
## 33631                                                                                                                                                    EE stated that while applying brake to stop the bus her ankle twisted and began to hurt while mashing the brake
## 33632                                                                                                                 EE stated that while assigned to tower #3, she wasstationed on the catwalk, with a weapon in her hands. As she turned, buttend of gun struck knee.
## 33633                                                                                                                                                                                    EE stated that while assisting to restrain inmate she cut her left index finger
## 33634                                                                                                                    EE stated that while assisting with baton trainingwhen demonstrating a technique trainee attempted to take baton away stricking her right hand.
## 33635                                                                                                                                                                      EE stated that while at crdt training she began to experience chest pains & pressure in chest
## 33636                                                                                                                                                EE stated that while at fire arms training he was walking on unlevel ground & lost his balance causing him to fall.
## 33637                                                                                                                                     EE stated that while attempting to hold a coffee cup, an opened can of 'boost', and a book, she cuther finger on the open can.
## 33638                                                                                                                                               EE stated that while attempting to place a box back on shelf, w/ r foot on bottom shelf, he strained lower r abdomen
## 33639                                                                                                                                         EE stated that while attempting to place shower mat down that it fell and he slipped breaking his fall with his left hand.
## 33640                                                                                                                                                                       EE stated that while attempting to restrain an inmate, he scratched EE on underside of wrist
## 33641                                                                                                                                                                            EE stated that while attempting to restrain inmate, left thumb was bent back by inmate.
## 33642                                                                                                                                                                    EE stated that while attending training lesson he fell out and hit side of door at line up room
## 33643                                                                                                                       EE stated that while attending training she was executing a take down maneuver when she heard a popping sound at the top of her lt thigh hip
## 33644                                                                                                                                                     EE stated that while backing up to keep fighting inmates from falling on her she was bumped and twisted my leg
## 33645                                                                                                                                                          EE stated that while being a part of a cell extraction team his right thumb was hit on an unknown object.
## 33646                                                                                                                                                                           EE stated that while being taken down for crdt training, she felt sharp pain in abdomen.
## 33647                                                                                                                                                                  EE stated that while breaking up a fight between two inmates, he hit his right hand on some bars.
## 33648                                                                                                                                                                           EE stated that while breaking up an inmate fight he was injured on his lt arm and lt hip
## 33649                                                                                                                                                                                          EE stated that while buring old files some tyoe of deris flew into lt eye
## 33650                                                                                                             EE stated that while checking yard behind dorm observed object within roped off area bent down to pick up object holding on to rope rope broke and fel
## 33651                                                                                                                                                                                    EE stated that while climbing stairs in bc stationhis knee popped and went out.
## 33652                                                                                                              EE stated that while coming through the doorway ofthe east 161 door his left arm struck the doorway. He was attempting to stop inmates from fighting.
## 33653                                                                                                                                 EE stated that while compacting trash, a piece of glass from a bulb flew out of compactor and hit eein the corner of his left eye.
## 33654                                                                                                                                                EE stated that while conducting a check of the building and yards a black wasp landed on his lt elbow and stung him
## 33655                                                                                                                      EE stated that while conducting a security check of f dorm, assuming sand and/or gravel on the sidewalk caused by feet to slip from under me.
## 33656                                                                                                                                       EE stated that while conducting count in j-dorm. She entered the bathroom shower area and slipped on the wet floor and fell.
## 33657                                                                                                             EE stated that while conduction the perimeter fence test, inmates were throwing rocks at the fence & EE backed up into the fence striking razor wires.
## 33658                                                                                                                                                               EE stated that while controlling hostile inmate onblue unit, inmate punched staff in the facial area
## 33659                                                                                                                                                       EE stated that while controlling inmate activity in hallway EE felt shoulder itching and noticed a bite mark
## 33660                                                                                                                                                             EE stated that while cutting visitation passes thescissors slipped cutting middle finger of left hand.
## 33661                                                                                                                                      EE stated that while delivering mail in institution, he stepped off sidewalk by "c" dorm, lost balance and twisted left knee.
## 33662                                                                                                                                          EE stated that while doing a pat down search of inmate. The inmate kicked EE w/ heel of his foot in the nose & upper lip.
## 33663                                                                                                                        EE stated that while doing check of doors the door mobed a little she proceeded with her lt hand to push the intercom with her index finger
## 33664                                                                                                                  EE stated that while doing his security checks, hewent to open the fire escape door and caught his finger on his left hand underneath the handle.
## 33665                                                                                                                   EE stated that while doing paperwork, she lifted a pc of paper and the page fell forward, somehow got under glasses, and scratched her open eye.
## 33666                                                                                                                       EE stated that while doing stretching exercise in preparation for participating in unarmed self-def-ense training, her back started hurting.
## 33667                                                                                                              EE stated that while doing uasd she felt her back pop. She took short breath. The while conducting handcuffing, her partner stated EE couldn't get up
## 33668                                                                                                                EE stated that while driving the dodge van hit two bumps in the road which caused his lt foot to slip off the wheel beside the brake and turn ankle
## 33669                                                                                                                        EE stated that while during a bumab operation in thick briars he contracted a rash on both legs as a result of walking through thick briars
## 33670                                                                                                                  EE stated that while escorting imnates to the yard he was struck by the inmate in the face and during sruggle he fell to ground injuring shoulder
## 33671                                                                                                                                            EE stated that while existing her car she struck her arm with her knee which pushed lt arm into the door opening of car
## 33672                                                                                                                          EE stated that while exiting her car she struck her arm with her knee which twisted her arm back as it jammed into the doorway of the car
## 33673                                                                                                                                                                  EE stated that while exiting the shuttle bus, slipped and fell on back down steps, water on steps
## 33674                                                                                                                                                                             EE stated that while feeding the morning meal he slipped on some spilt coffee and fell
## 33675                                                                                                                            EE stated that while getting item from pass box turned on steps and lt knee gave way he fell down four steps and scraped his lt forearm
## 33676                                                                                                                           EE stated that while getting kitchen workers upm on lower d unit he went to the control room for the needle and hit lt knee on hand rail
## 33677                                                                                                             EE stated that while handcuffing an inamte refusedto be handcuffed and force had to be used. The EE got scratches and bruises on his left arm and legs
## 33678                                                                                                                                                      EE stated that while handcuffing an inmate that had been involved in a fight, he got body fluid on his hands.
## 33679                                                                                                                 EE stated that while he was attempting to restrainan inmate the inmate kicked him w/his lft foot hitting EE in the rt cheek area dir. Under rt eye
## 33680                                                                                                                         EE stated that while he was closing the operation gate between kitchen and operations he caught his left thumb between two pieces of metal
## 33681                                                                                                                EE stated that while he was collecting inmate food trays and returning them to the cart, he noticed pressure feeling on left upper chest, weakness.
## 33682                                                                                                             EE stated that while he was cutting I beam with torch the I beam twisted when cut into it mashed his finger between I beam and rail around cage of boo
## 33683                                                                                                                EE stated that while he was doing a cell inspectio he was checking the bed area and as he raised up he hit his head on the metal shelf on the wall.
## 33684                                                                                                                                                     EE stated that while he was getting in state vehicle he slipped on some unknown substance twisting his lt knee
## 33685                                                                                                                                                             EE stated that while he was running in physical training that he felt a sharp pain in his right ankle.
## 33686                                                                                                             EE stated that while he was trying to pull drawer back in, a officer pushed the drawer in before he could move his hand, causing his hand to get pinch
## 33687                                                                                                                 EE stated that while he was video-taping inmate during an anticipated use of force, the inmate spin on him on chin just below mouth. Poss bbp exp.
## 33688                                                                                                                                                           EE stated that while he was walking down a ditch bank he lost his footen and fell pain in his groin area
## 33689                                                                                                                              EE stated that while helping inmates move tables one of the tables slipped off mashing his pinky finger on his rt hand b/t two tables
## 33690                                                                                                                       EE stated that while holding an inmate's leg down his leg rubbed against the side of bed causing a small abrasion on the front of right leg.
## 33691                                                                                                               EE stated that while in the kitchen he was walking by the drain in the floor near the dishwasher and his rt foot slipped and turned on the wet floor
## 33692                                                                                                             EE stated that while inspecting vehicles entering the inst. Thru t-1 he stepped into a pothole in pavement, twisting his rt ankle. Rt ankle/leg sprain
## 33693                                                                                                               EE stated that while leaving the visitation area he pushed open door with his lt hand, after passingthru the door it closed smashing his mid finger.
## 33694                                                                                                                                                                EE stated that while lifting a lawn mower onto the trailer, he felt a sharp pain in his lower back.
## 33695                                                                                                                                          EE stated that while loading inmates personal property on inmate transfer bus a pencil punctured my 3rd finger on rt hand
## 33696                                                                                                                  EE stated that while making around in seg. He observed inmate with clothing on inmate given an orderto give the clothing to EE threw liquid at EE
## 33697                                                                                                                                                              EE stated that while making check in xone a rock from yard hit and shattered the driver's side window
## 33698                                                                                                              EE stated that while making rounds of the facilityhe was wakling on the sidewalk when he grabbed thehandrail and felt a sharo burning on right finger
## 33699                                                                                                                                                       EE stated that while making security rounds she slipped on ice while getting out the truck and twisted ankle
## 33700                                                                                                                              EE stated that while mopping the control room he slipped on the wet floor this caused him to strike his forehead on a protective wall
## 33701                                                                                                                                                                                   EE stated that while moving a refrigerator in the kitchen that he injured back..
## 33702                                                                                                                                       EE stated that while moving his chair from one computer to another he struck his left knee on a metal brack under the table.
## 33703                                                                                                                                                                                                               EE stated that while moving shelf it fell on lt foot
## 33704                                                                                                                                                                   EE stated that while moving swiftly to answer a code yellow he felt a pull in his lt lower thigh
## 33705                                                                                                                                                                        EE stated that while on break he saw a file on the ground picked it up door struck forehead
## 33706                                                                                                                                                           EE stated that while opening the door in west housing area that she felt her rt wrist bend and felt pain
## 33707                                                                                                                      EE stated that while participating in escape procedure observed two thorns stuck in rt forearm and removed them the are was infected next day
## 33708                                                                                                                                  EE stated that while participating in unarmed training, she felt her left foot pop. The same foot she injured previously at work.
## 33709                                                                                                                   EE stated that while pat searching inmates she bent down when she stood up her rt ankle popped on the inside had sharp pain moving up the rt leg
## 33710                                                                                                                                                                EE stated that while performing duties a substance that appeared to be urine was thrown in his face
## 33711                                                                                                                                                              EE stated that while picking up inmate property bags in intake, bags were heavier than appeared tobe.
## 33712                                                                                                                                      EE stated that while placing a suture needle into the needle holder of the sharpe container a needlestuck her left forefinger
## 33713                                                                                                             EE stated that while playing basketball during his off duty time while recieving training at the justice academy, EE went to run and put pressure on..
## 33714                                                                                                                                EE stated that while playing basketball, he jumped to block/recover a shot ball. As he landed he believed he jammed his lower back.
## 33715                                                                                                                                                               EE stated that while pulling carts off the trailer she stated she pulled one that weighed 550 pounds
## 33716                                                                                                                               EE stated that while putting out fire--caused by inmate-- with fire extinguisher, she inhaled smoke and/or extinguisher substance ()
## 33717                                                                                                                           EE stated that while putting things in her locker she twisted her left knee, later as she was cleaning, she twisted her left knee again.
## 33718                                                                                                                                                          EE stated that while putting trashcans back on food truck slipped on a patch of ice and fell on back side
## 33719                                                                                                                    EE stated that while qualifying with the shotgun, she shot the gun and it jumped up and the stock struck her right collar bone & shoulder area.
## 33720                                                                                                                                                                             EE stated that while reaching for keys a scrapper was in his pocket and cut his finger
## 33721                                                                                                                     EE stated that while removing cuffs from an inmatethrough a trap door, the I/m jerked his hands back& caught officer's hand between the cuffs.
## 33722                                                                                                                                                                       EE stated that while reseaching for keys a scrapp er was in his pocket and he cut his finger
## 33723                                                                                                                       EE stated that while responding to a code 300 as she was running slipped as she tured the corner by the officers desk on freshly waxed floor
## 33724                                                                                                                                                    EE stated that while responding to code 2 running down main hallway fell down hit head on floor & scraping knee
## 33725                                                                                                                                                                            EE stated that while running to a fight, felt something pull in the back of right foot.
## 33726                                                                                                                                                                      EE stated that while searching the janitors closethe slipped and fell, hiting his lower back.
## 33727                                                                                                                           EE stated that while she attended manatory oc pepper spray training her face was burned on both cheekbones and scattered areas of t zone
## 33728                                                                                                                                                        EE stated that while she was assigned to post 5, abee stung her on the right #4 finger. Swelling to finger.
## 33729                                                                                                                           EE stated that while she was conducting the perimeter check she stepped turning her lt foot causing an injury to her lt knee and rt hand
## 33730                                                                                                                               EE stated that while she was kneeling to shoot shotgun during training, she felt a strong pull down right spine, shoulder, and neck.
## 33731                                                                                                                   EE stated that while she was walking on the sidewalk towards her job assignment her rt foot slipped on the ice causing her to fall on the ground
## 33732                                                                                                                                                                 EE stated that while shooting the shotgun at the firing range her rt shoulder was slightly bruised
## 33733                                                                                                                              EE stated that while sitting in the chairm he leaned forward toward the desk in front of him, the chair slid back causing EE to fall.
## 33734                                                                                                                                       EE stated that while slicing watermelon on meat slicer tip of rubber glove caught in blade pulled lt finger toward the blade
## 33735                                                                                                                                                                     EE stated that while stepping into control ctr #1, loosing footing I fell hard onto my lt knee
## 33736                                                                                                                                             EE stated that while supervising inmates n recreation yard EE stepped off uneven sidewalk twisting rt knee and rt foot
## 33737                                                                                                                                            EE stated that while supervising inmates on recreation yard EE stepped off uneven sidewalk twisiing rt knee and rt foot
## 33738                                                                                                              EE stated that while supervising inmates on the back yard walking on the hill area of the backyard rt heel began to stretch burning pulling sensation
## 33739                                                                                                                EE stated that while supervising inmates placing napkins in the storage shed a inmate dropped two boxes of napkins which struck the top of his knee
## 33740                                                                                                                                                    EE stated that while supervising road squad #1 he was backing up tripped on a tire falling down on his lt elbow
## 33741                                                                                                                                                               EE stated that while talking to inmate, inmate throw a liquid substance in his facial and chest area
## 33742                                                                                                                                                                 EE stated that while teaching dance she began feeling pain in lower back and difficulty breathing.
## 33743                                                                                                                                                    EE stated that while unloading a refrigerator off back of pickup truck in the maintenance yard he hurt his back
## 33744                                                                                                                                                                 EE stated that while unloading a refrigerator off the back of a pickup truck in the mantenace yard
## 33745                                                                                                                 EE stated that while unloading laundry truck, the lid on the stainless steel cart fell open and hit him on the shoulder. Later painful to move arm
## 33746                                                                                                                                               EE stated that while walkiing to unit four step stepped off the edge of the sidewalk causing her ankle/foot to twist
## 33747                                                                                                                                               EE stated that while walking down the sidewalk on the way to the clotheshouse she slipped off sidewalk and fell down
## 33748                                                                                                                                  EE stated that while walking in front lobby her lt knee gave out on her causing her to fall to floor hitting her rt knee on floor
## 33749                                                                                                                                                                                      EE stated that while walking on iced parking lot she fell on back and lt hand
## 33750                                                                                                                              EE stated that while walking through the warehouse he was struck from the rear by inmate pushing the cart loaded w/ canteen supplies.
## 33751                                                                                                             EE stated that while walking to the unit that she was accidently bumped someone else and that she twisted her ankle when she stepped on the uneven sur
## 33752                                                                                                                                                               EE stated that while walking up the steps rt foot slipped causing her to fall landing on her rt knee
## 33753                                                                                                                                                      EE stated that while working as dorm control ofcr in oak dorm she accidently spilled hot coffee on her rt leg
## 33754                                                                                                                                                          EE stated that while working in sogregation an inmate threw two cups of unidentified liquid into his face
## 33755                                                                                                                         EE stated that while working in the control room her foot became tangled up on either chair or rug this caused her to fell and strike room
## 33756                                                                                                                                                                                                 EE stated that while working on dumpster forms he stepped on nail.
## 33757                                                                                                                      EE stated that while working on the road squad he was walking and moved some branches out of the way and one came back sticking on the lt eye
## 33758                                                                                                                                                                    EE stated that while working on tower #2 was stung by a wasp on lt side of his heaf by his ear.
## 33759                                                                                                                     EE stated the lock was stiff on the 208 yard. She attempted to hit th lock with the palm of her handand accidentally hit the side of her hand.
## 33760                                                                                                               EE stated the pain developed & became increasinglyworse as she spent more time filing. Now she is experiencing pain even when typing. Forearm/wrist.
## 33761                                                                                                             EE stated they were performing the simulated cell extraction of an inmate in the physical part & entry cell was quick, turned quickly & pain in neck..
## 33762                                                                                                                                           EE stated this is of a prior injury while unlocking doors she experienced sharp pain same as injury at community college
## 33763                                                                                                                EE stated thta inmate struck her in head knocking off her glasses as she reached down to pick them up the inmate hit her in her lt side of the head
## 33764                                                                                                                                                                          EE stated to complain about having chest pain EE was working in the office on office work
## 33765                                                                           EE stated to me on 3/16/2012 that she had used kiavac machine all day in shower of baseball locker rooms, she state she felt pull in right arm, but believed it to be ok until friday ()
## 33766                                                                                                                                       EE stated to me that he was walking to the maintenance department and slipped on incline sidewalk that was covered with snow
## 33767                                                                                                                                             EE stated to me while patroling outside perimeter while roving patrol #2 he dozed off due to being on sinus medication
## 33768                                                                                                                                                                                            EE stated to nurse taht shoulder has been hurting for a couple of days.
## 33769                                                                                                             EE stated to supervisor that while on the firing range she became very hot & and EE right arm, side and leg became numb & and EE fainted and collapsed
## 33770                                                                                                                                         EE stated top piece of a tie broke and hit EE in head EE was wearing helmet, contusion to l arm, forehead, and cut on nose
## 33771                                                                                                                                                                                               EE stated transporting urine to intake bite by some insect on rt arm
## 33772                                                                                                                         EE stated traveling, noticed a car coming toward her, attempted to change lanes in order to avoid collision, still striked on driver side.
## 33773                                                                                                                                                  EE stated trying to get I/m to comply so he could put cuffs on him scrapped his thumb and knuckle on I/m tooth ()
## 33774                                                                                                                                                              EE stated trying to secure a cell door and accidentally closed it on his middle finger of his lt hand
## 33775                                                                                                                                        EE stated turned around to get to the other panel when she jumped up she was turning at the same time and felt pain in knee
## 33776                                                                                                                                                                                                    EE stated twist my wrist up to my arm, while assisting resident
## 33777                                                                                                                                                        EE stated typing, using my hands, pain which got progressively worse; pain in fingers, burning in hands. ()
## 33778                                                                                                                 EE stated upon recieving igloo jug filled with iceee lifted igloo to place it on chair inside block when EE turned towards the chair EE felt a pop
## 33779                                                                                                                                                                                               EE stated use of force, confrontation w/inmate inmate scratched face
## 33780                                                                                                                                                                                                                  EE stated use of force, elbow scratch from sheild
## 33781                                                                                                                                                                                                                  EE stated use of force, elbow scratch from shield
## 33782                                                                                                                                                                                                       EE stated use of force, inmate grabbed neck and scratched EE
## 33783                                                                                                                                                                                                                  EE stated use of force, restraining inmate, feces
## 33784                                                                                                                                              EE stated walk was covered with slushy ice that had not melted, employee slipped on the ice and fell on her rear end.
## 33785                                                                                                                                                                                                                    EE stated walked into a door & injured her knee
## 33786                                                                                                                                                                  EE stated walking down flight of stairs knee poped & buckled causing him to have to catch himself
## 33787                                                                                                                                                             EE stated walking down steps in master control and missed 1or 2 r-leg was under her and was twisted ()
## 33788                                                                                                                              EE stated walking from car in parking lot to report for work while stepping off the curbing EE somehow lost balance and fell on fells
## 33789                                                                                                                                                                  EE stated walking into line-up room & slipped on puddle of liquid on floor, hurt lower back & hip
## 33790                                                                                                                                                                                                                 EE stated walking into work fast and twisted ankle
## 33791                                                                                                             EE stated walking on floor towards cooler 3 when she slipped on th floor and caugh herself with the door handle something was on spliied on the floor.
## 33792                                                                                                                           EE stated walking on gravel driveway of defendant, while conductng routine curfew check, stepped on loose gravel and twisted right foot.
## 33793                                                                                                             EE stated walking out floral shop, injured knee completely gace out, fell straight onto cement & eeslashed lt hand req'd 12 stitches. 2. 16 inj. Again
## 33794                                                                                                                                                                                                      EE stated walking out gatehouse left finger caught in door ()
## 33795                                                                                                                                                                                          EE stated walking through kitchen struck lt forearm causing scrape on arm
## 33796                                                                                                                                                       EE stated walking to the other side of the dorm he passed out. The heat and humidity was very high that day.
## 33797                                                                                                                                                                                  EE stated walking towards desk, turned around to answer phone twisted right knee.
## 33798                                                                                                                                                                   EE stated walking towards u-2 gate from basketball court stepped in rut twisting right ankle. ()
## 33799                                                                                                                                                                                    EE stated walking w/inmates, picking up trash dogsbit officer on rt calf muscle
## 33800                                                                                                                                               EE stated was assisting other officers placing an inamte in mobile restraints, hurt his back, lt knee, both forearms
## 33801                                                                                                                                                     EE stated was attempting to close telephone box & lid of phone box fail hitting lt pinky finger causing injury
## 33802                                                                                                                                                               EE stated was attemptng to restrain inmate from assaultng staff and sprung middle fngr on right hand
## 33803                                                                                                                                                          EE stated was bitten by some type of insect & had a red swollen area about the size of a fifty cent coin.
## 33804                                                                                                                                                                                                       EE stated was giving insulin shot to inmate pricked lt wrist
## 33805                                                                                                                         EE stated was installing electrical wiring and felt discomfort in rt knee-had reported also on 8/10 knee discomfort after installing floor
## 33806                                                                                                                                                                                                     EE stated was lifting boxes while moving and strained low back
## 33807                                                                                                                                                             EE stated was locking laundry chute gate when he hit it with his right hand and it started to t ingle.
## 33808                                                                                                                         EE stated was moving food pans from one cooler to another. Pans started falling so he set them down mashing 3rd finger & fourth on rt hand
## 33809                                                                                                                                                                  EE stated was removing p. I. D. S from one roving vehicle side door hit me in preinjuried knee ()
## 33810                                                                                                                                                                         EE stated was transporting inmates back to harnett correctional when van was struck by suv
## 33811                                                                                                                                       EE stated was walking up sidewalk & twisted her rt-ankle she walked out the institution without any assistance & drove home.
## 33812                                                                                                                              EE stated water cooler slid off the edge of the table & as it fell. EE caught one handle with his left hand, cooler snatched the arm.
## 33813                                                                                                                     EE stated water on floor in bathroom, feet shot outfrom under him, fell backwards neck, shdlr and butthit the floor jamming back. **atty rep**
## 33814                                                                                                                                                                                       EE stated when coming into master control, she shut the door on her fingers.
## 33815                                                                                                                                                                                       EE stated when going up stairs, her foot caught under top stair and tripped.
## 33816                                                                                                                                                                  EE stated when he stepped out of the sedan (car) to remove inmate jackets, he was stung by a bee.
## 33817                                                                                                                                                                         EE stated when he stepped outof his vehicle he slipped and fell on the sidewalk dur to ice
## 33818                                                                                       EE stated when leaving royster bldgat the end of workday it was raining. I was jogging across parking lot to my car when I felt a pop in my knee & immediately felt pain. ()
## 33819                                                                                                                                                        EE stated when leaving sgt's office coming down the stairs she was bitten by a spider that was on the rail.
## 33820                                                                                                              EE stated when making rounds on delta yard something bit her leg as the EE walked to the restroom she began itching when EE remover uniform had bumps
## 33821                                                                                                                                                       EE stated when she came into activity room, wire in door latch caught on right arm, scratching right arm. ()
## 33822                                                                                                                                                                         EE stated when she entered my office this morning there was liquid in the floor EE slipped
## 33823                                                                                                                                             EE stated when she passed a syringe back to dentist and uncapped the needle, she was stuck on right thumb beside nail,
## 33824                                                                                                                                                                   EE stated when she was leaving the visitation area she slipped and fell on the floor at the door
## 33825                                                                                                                                              EE stated when she went to pull open drawer in desk the drawer got stuck causing sharp pain to run through her rt arm
## 33826                                                                                                                                      EE stated when walking through hallway covered walkway EE slipped on wet substance on floor EE landed on buttocks and rt hand
## 33827                                                                                                                                                                            EE stated while assisting carrying an inmate on a stretcher, he twisted his lower back.
## 33828                                                                                                                    EE stated while assisting co bonner with hand -cuffing inmate molden, inmate hit me in mouth, cutting inner lip on left side with his free hand
## 33829                                                                                                                                                             EE stated while assisting other officers trying torestrain inmate chambers, he was struck on left hand
## 33830                                                                                                                                                       EE stated while assisting with inmates to move some boxes---she went outside to catch her breath and fainted
## 33831                                                                                                                                                                          EE stated while attempting to close an inmate's trap door the inmate spit on his rt wrist
## 33832                                                                                                                                                         EE stated while attempting to place inmate on admin seg the inmate refused to comply pepper spray was used
## 33833                                                                                                             EE stated while attempting to search inmate for contraband inmate grabbed her rt wrist refusing to let go a struggle began as she pulled her wrist awa
## 33834                                                                                                                                                                                  EE stated while attempting to sit in a chair the chair rolled away from under her
## 33835                                                                                                                                                                                                EE stated while attempting to subdue inmate inmate swung and hit EE
## 33836                                                                                                                                                EE stated while attempting to subdue inmate the inmate bit EE on rt side of back hit EE in the nose and facial area
## 33837                                                                                                                                                                                     EE stated while attending crdt training taken to the mat & injured her lt knee
## 33838                                                                                                                                   EE stated while attending unarmed self-defense training he was participating in escape move and another person grabbed his wrist
## 33839                                                                                                                       EE stated while backing down I-40 near washed areaas he turned around to cross washed area, he stepsoff on left foot, area gave, knee popped
## 33840                                                                                                                                                     EE stated while carrying inmate to the cell he believes his left arm got caught on the rstraints andwas nicked
## 33841                                                                                                                                                                         EE stated while changing out a heat pump wall unit by himself he pulled a muscle in lt hip
## 33842                                                                                                                          EE stated while checking water level in engine, the plug blew out blowing water all over EE cause-ing EE to fall off engine onto platform
## 33843                                                                                                                                                                                         EE stated while climbing stairway her lt foot got caught on the step above
## 33844                                                                                                                                         EE stated while coming down the stairs she missed the bottom step entirely and landed on the floor she twisted her rt foot
## 33845                                                                                                             EE stated while conduct in a count of inmates on the yard he was checking the wash house when he stumbled on the steps, catching himself by grabbing..
## 33846                                                                                                                                                            EE stated while conducting a patrol in the woods at camp buttner a tree branch struck him in the rt eye
## 33847                                                                                                                                                                            EE stated while conducting cell search of inmate he threw a book st EE and on the floor
## 33848                                                                                                                                      EE stated while conducting showers on red unit a wing, trap door of cell was pushed by I/m by accident and it hit his finger.
## 33849                                                                                                                                                                                                  EE stated while controlling inmate, inmate bit EE's left forearm.
## 33850                                                                                                                                  EE stated while crossing a low wall on a rooftop he tripped or slipped and fell onto some metal frame work supporting the ac unit
## 33851                                                                                                                   EE stated while doing the door check and climbing down stairs, stepped off the sidewalk into a hole that he did not see because of long grass ()
## 33852                                                                                                                                                                       EE stated while doing training he felt a slight pain in his lower back while doing leg lifts
## 33853                                                                                                                                                     EE stated while driving the perimeter patrol vehiele with the window down she was stung on lt arm twice by bee
## 33854                                                                                                                                                                                                  EE stated while emptying urinal, urine splashed in her right eye.
## 33855                                                                                                                            EE stated while entering the building via walkway she lost footing on icy surface causing her to split. Strain left groin and hamstring
## 33856                                                                                                           EE stated while escorting an I/m unit one seg a code four was called so she ran down the stairs and came down on steps on one leg wrong and to quick. ()
## 33857                                                                                                                                           EE stated while escorting inmate to sgt's office he stopped abruptly turned and struck her lt fore arm with his rt elbow
## 33858                                                                                                                 EE stated while fastening a spring on a shop jack with pilers the pilers slipped off the spring causing EE arm to fly backward and hit metal couch
## 33859                                                                                                                                              EE stated while getting out of van, foot slipped off step, tried to catch himself with arm causing elbow to hit door.
## 33860                                                                                                                                                                          EE stated while getting up from the control desk turned and hit lft knee on control desk.
## 33861                                                                                                             EE stated while getting up from the toilet her lt leg slipped causing her to loose her stance she stated that she fell toward the faucet hitting shoul
## 33862                                                                                                                                                                         EE stated while going down to grab left leg he felt something pop in his right shoulder ()
## 33863                                                                                                                       EE stated while handcuffing an inmate, inmate rt wrist was cuffed inmate hit EE on rt side of EE head with l uncuffed hand contusion to head
## 33864                                                                                                                                   EE stated while he was escorting inmate back to cell, inmate spit on his left side of face (head, neck, eye). Poss bbp exposure.
## 33865                                                                                                                                 EE stated while he was going through warm ups for unarmed self-defense when he went to do the first push up his lt shoulder popped
## 33866                                                                                                                                                                                                              EE stated while he was involved in hurricane clean up
## 33867                                                                                                                            EE stated while he was lifting a table up to turn over to close legs, the table slipped causing the table to strike his left great toe.
## 33868                                                                                                              EE stated while he was posted outside the medication window, a fellow officer came up behind him & struck him between shldr blades-not intending hurt
## 33869                                                                                                                 EE stated while he was supervising the feeding of the inmates in b block when he approched cell assigned to inmate he attempted to close trap door
## 33870                                                                                                                      EE stated while he was unlocking the gate behind rdc and the acute hospital to cut the grass he hit the raz or wire and cut his middle finger
## 33871                                                                                                                                                    EE stated while helping w/feeding going up/dwn stairs all day felt pain in left knee discomfort going up stairs
## 33872                                                                                                                                                   EE stated while in a state vehicle two officers taking them to their post something blow of of vent into his eye
## 33873                                                                                                                                                    EE stated while in basic training performing a breakfall in standing position she fell back on her right wrist.
## 33874                                                                                                                           EE stated while in offender position partner performed escape possible fractured lower rt rib occured during control restraint training.
## 33875                                                                                                                    EE stated while in pert training; he was entering building when he fell over fireplace in building and cut his hand, elbow knee and bruised hip
## 33876                                                                                                                                EE stated while in process of taking the lid off of beverage cooler she bent down and as she stood back up felt a catch in her back
## 33877                                                                                                                                  EE stated while in stockroom inmate was moving boxes on shelf from one end to the other boxes fell on her head and right shoulder
## 33878                                                                                                                                                             EE stated while in traiing instructor went to show technique the baton came open hitting EE in chin ()
## 33879                                                                                                                                              EE stated while in training exercises he got his right arm caught between the officer's body and the cell door frame.
## 33880                                                                                                                                                           EE stated while inmate johnson was being a sprayeda little splashed on him around the front of his neck.
## 33881                                                                                                                                                                 EE stated while involved in a use of force, his lower left leg struck the metal desk in cell b-107
## 33882                                                                                                                                                  EE stated while leaving work slipped on the handicap ramp while tryign to stop from falling she jerked her rt arm
## 33883                                                                                                                                  EE stated while letting a maintance man inside lower control she hit l wrist on the corner of the counter of the control panel ()
## 33884                                                                                                                                                                                    EE stated while making checks in dorm inmate started swinging both fists at him
## 33885                                                                                                                                                                                           EE stated while making rounds an insect stung her on the upper right arm
## 33886                                                                                                                     EE stated while moving a filing cabinet from one office to another, he injured his back. He stated he moved another filing cabinet. Back spasm
## 33887                                                                                                                                                  EE stated while moving to open the doors for EE she tripped & fell on her stomach. She felt a painin her stomach.
## 33888                                                                                                                             EE stated while on tower #1 he was standing between the table and trap that he had opened for his relief officer fell trough trap door
## 33889                                                                                                                                                                                                    EE stated while on yard duty a gust of wind blew object in eyes
## 33890                                                                                                                EE stated while opening officers station door to place mop bucket outside of office at which the door closed and caught his rt hand mashing fingers
## 33891                                                                                                                                                     EE stated while out on road squad, he was cutting a right of way on state road 2239 a bug flew in my left eye.
## 33892                                                                                                                                        EE stated while outside building he shut the door and caught his middle finger of his right hand between door and door jam.
## 33893                                                                                                                       EE stated while participating in p. E. R. T training he was using scott air pack and slipped in puddle of water on floor twisted right knee.
## 33894                                                                                                                                          EE stated while patroling dormitory upstairs of west wing he closed the snap on the mace holster and the can was leaking.
## 33895                                                                                                                                                                              EE stated while patroling grounds she stepped in aunpaved hole, and twisted her ankle
## 33896                                                                                                                                                                              EE stated while performing a strong side block lt foot did pivot twisting the lt knee
## 33897                                                                                                                                                                       EE stated while performing cell extraction he fellon his left hand jamming his left shoulder
## 33898                                                                                                                                      EE stated while performing pr-24 training the instructor struck her with his training object andcaused a bruise. Right elbow.
## 33899                                                                                                                 EE stated while picking up trash along side of theinmate handed him a sock with multiple syrunges init and one needle was broken off and bent back
## 33900                                                                                                                   EE stated while practicing bent wrist takedown to handcuffing technique her self defense partner placed too much pressure on her right shoulder.
## 33901                                                                                                                                      EE stated while practicing blocking techniques w/the pr-24 baton he was accidently struck on the rt hand on the little finger
## 33902                                                                                                                                EE stated while pulling door open to leave the pharmacy she pulled something in left lower back under/or around rib cage (bk area).
## 33903                                                                                                                                                            EE stated while pulling on dining hall door several times to open it. Felt a pain in his shoulder blade
## 33904                                                                                                                   EE stated while pulling the cart off the food ruck at the maintanance shop to be repaired the cart rolloed off the truck and mashed his rt thumb
## 33905                                                                                                             EE stated while putting keys in the security drop box in master controls. Another c/o pushed the box inward and it rolled over the tips of her fingers
## 33906                                                                                                                                  EE stated while removing an inmate having a seizure from top bunk, the inmate kicked him causing him to fall and injure his back.
## 33907                                                                                                                                                 EE stated while removing syringe from pt mouth following injection of local anesthesia he stuck himself on l glove
## 33908                                                                                                                           EE stated while responding to a situtation he had to run down a flight of stairs he turned to the right and felt pain in his right knee.
## 33909                                                                                                                 EE stated while returning from lunch, fell on bricks at entrance to building. Right & left knee scraped, right arm bruised, shoulder & neck bruise
## 33910                                                                                                                                                                                EE stated while riding a rollercoaster with pt EE back and lt shoulder was injured.
## 33911                                                                                                                   EE stated while riding in one of the vehicles provided by job. EE injured as a passenger, when another vehicle hit the car. Injury to head, neck
## 33912                                                                                                                                               EE stated while searching a inmate's locker in m dorm EE stated he stepped back and stepped on the k9 drug dog's paw
## 33913                                                                                                                                     EE stated while searching an inmate's property she was truck by a tattoo gun on the rt hand fourth finger while wearing gloves
## 33914                                                                                                                                      EE stated while searching unmat, inmate pushed EE out of the way and fled. Inmate struck EE in the left temple with his fist.
## 33915                                                                                                                                                   EE stated while securing control area cell door onf&g side, he accidentally mashed his index finger in the door.
## 33916                                                                                                                                                  EE stated while securing the door on the rear of the bus the latch secured quickly causing my wrist on my rt hand
## 33917                                                                                                                                                                                         EE stated while securing units yard wind blew a foreign object into rt eye
## 33918                                                                                                                                      EE stated while she was opening the officers station door to go into dayroom the door and key jammed twisting wrist and thumb
## 33919                                                                                                                                                                                 EE stated while she was shooting the shot gun the slide came back and hit her hand
## 33920                                                                                                                                                       EE stated while shooting hand gun during training shooter came back and hit him in left thumb breaking skin.
## 33921                                                                                                                                                                                            EE stated while sititng at the oficers station she was bitten by spider
## 33922                                                                                                                         EE stated while sitting in capt's office he startethrowing up and could not keep his balance and he felt like he had water behind his ears
## 33923                                                                                                                                                 EE stated while sitting in the chair it flipped and she fell on the floor hitting her head and body on the floor .
## 33924                                                                                                                         EE stated while standing by cooler, inmate acccidentally knocked over the bread rack onto her leg. Abrasion on mid lower leg, oozing blood
## 33925                                                                                                                            EE stated while stepping off elevator stepped on spilled scrambled eggs and grits injured rt hip lt knee back and hands and rt shoulder
## 33926                                                                                                                                                                                                         EE stated while stepping off van she felt pain up her back
## 33927                                                                                                            EE stated while surface cleaning trays, bleach solution got caught in the cuff of rainsuit. Irriatatedthe upper wrists and forearms. Rinsed after task.
## 33928                                                                                                                                            EE stated while taking out trash and linen his rt foot slipped on some soda or water causing him to sprain his rt ankle
## 33929                                                                                                                                                                                             EE stated while taking to I/m the I/m kicked him int he right thigh ()
## 33930                                                                                                           EE stated while transferring supplies he injured his back. While he was pulling hand truck backwards up a short flight of stairs, the locking(see notes)
## 33931                                                                                                                                            EE stated while trying to apprehend an inmate attempting escape he injured his knee while restraining. Left knee injury
## 33932                                                                                                                 EE stated while trying to get inmate to cooperate with cuffing inmates hands to return to cell inmate stuck his arm out of shower striking offcier
## 33933                                                                                                                                                                    EE stated while trying to reinstall ac unit in west canteen he pulled a muscle or hurt his back
## 33934                                                                                                                    EE stated while trying to restrain aggressive student she was hit on the lt side of the face with students rt elbow, while taking student down.
## 33935                                                                                                                                                                                          EE stated while trying to subdue inmate he fell onhis arm and right hand.
## 33936                                                                                                                    EE stated while trying to unlock the outer sally port door of dorm-3. Felt like she twisted muscle. Had to use both hands and could not get it.
## 33937                                                                                                                                                         EE stated while turning patient she had pain in her stomach. EE is pregnant. Pain got worse and went home.
## 33938                                                                                                                                                                                      EE stated while unloading a bus tire I felt a burning sensation in my stomach
## 33939                                                                                                                                                                                   EE stated while using hole punch pushing down the metal grip hit lt index finger
## 33940                                                                                                               EE stated while using the sheild to pin an inmate to the wall to gain control the inmate fought backcausing an abrasions to the head lt shoulder arm
## 33941                                                                                                                                                                                        EE stated while walking down hallway he felt a sharp pain in his left knee.
## 33942                                                                                                                      EE stated while walking to another building, she twisted her leg while getting on curb. Sprained ltknee & hip. Out Mar. 14 -30th. Rtw Mar. 31
## 33943                                                                                                                                                                                                EE stated while working on post #6 that she was stung bu an insect.
## 33944                                                                                                                                       EE stated while working yard at mcu he twisted his rt ankle and took a fall on the sidewalk over a rope marking off sidewalk
## 33945                                                                                                                                                                EE stated white in roving she hit the stop sign due to the bright sun light hitting her in the eyes
## 33946                                                                                                                                                EE stated whitle pushing sgt riddick back with the shield the floor mat came up and he tripped hurting right leg ()
## 33947                                                                                                                          EE stated work 05. 20. 96 part of job is to wash dogrun daily m-f some weekends to do this EE squeezesnozzle for extended period of time.
## 33948                                                                                                                                                              EE stated working in control booth went to sit down the chair turned over under hurting her breast ()
## 33949                                                                                                                                                              EE stated working on vegetable slicer, caught second finger of his left hand while working on slicer.
## 33950                                                                                                                                                                 EE stated wrist caught in pass through box when closed from the other side while getting equipment
## 33951                                                                                                                 EE stated, "I coming into work and parking lot wasnot was not cleared of ice & I fell on ice. Just stepped out of car, fell before & start walking
## 33952                                                                                                             EE stated, "I was on the firing range qualifying with the shot gun. After I had fired the shot gun, I began to have pains in my left shoulder and neck
## 33953                                                                                                                                                          EE stated, "I was standing at desk, fell unconscious striking right side of head/face on concrete floor."
## 33954                                                                                                                                           EE stated, "coming down stairs, I got dizzy, stumbled and fell into rail in stairwell - trying to catch self on railing.
## 33955                                                                                                                    EE stated, "twisted ankle when I turned to go unlock other door, fell across the hall in front of resp. Hit the side of left leg on the floor."
## 33956                                                                                                                         EE stated, "while doing security check of coca cola truck entering unit, as I turned to walk to my left there was a pop in my right knee."
## 33957                                                                                                                   EE stated, 'while firing shoutgun during pert shoutgun qualification, the recoil of the weapon jammed against the middle finger of my right hand
## 33958                                                                                                                                                                           EE stated, he was blowing his nose & felt light- headed & passed out, hitting the floor.
## 33959                                                                                                                  EE stated, he was starting to go home and was in the parking lot by his car when his feet slipped out from under him causing injury to right leg.
## 33960                                                                                                                           EE stated, notice hurting in rt forearm & elbow. Started wearing a band & thought it would get better, & it got worse when opening mail.
## 33961                                                                                                              EE stated, while conducting routine search of inmate he rvcd a punture wound to his right middle finger due to a sewing needle that was hidden on. ..
## 33962                                                                                                            EE stated-as lead nurse.. Provides med. Care resid. Mental health inmates-some have MRSA. 4/30/07 a. M. In shower-noticed large abscess-abdomen (MRSA).
## 33963                                                                                                              EE stated-counselling I/m-I/m became aggressive & after sgt sprayed with o. C. I/m struck him in the head & tried to bite him. No bbp exposure per Dr
## 33964                                                                                                                    EE stated-responded to a med emerg & that as pulled & lifted I/m towards her to get him on backboard, sharp pain through rt shldr & lower back.
## 33965                                                                                                                                 EE stated: assisted a resident by positioning himin bed & pulled muscle in her shoulder. It felt as if her shoulder was out. 77880
## 33966                                                                                                                                      EE stated: slipped on floor in the ladies 1st floor restroom, did not fall to floor, fell against wall, injured right foot ()
## 33967                                                                                                                                                                              EE statedas he stood up from chair and stepped dwn, knee twisted and felt pop in knee
## 33968                                                                                                                                                                                       EE statee she was breaking up a fight () left pinky distal joint is injured.
## 33969                                                                                                                                                   EE stateed that while being a part of a cell extraction team, his right ring finger wasd hit onan unknown objct.
## 33970                                                                                                                                                                                                                                                          EE states
## 33971                                                                                                                                                                                                         EE states " I reinjured mu chest while helping a patient."
## 33972                                                                                                                                                                           EE states " job assignment from supervisor to remove carpet and tile for new equipement.
## 33973                                                                                                             EE states "I sat down in a chair in front of the desk to assist w/ inmate pay-off when the chair kept going backwards and I landed hitting my neck. ..
## 33974                                                                                                                                           EE states "I was helping 3 inmates lift a piano. Once I lifted upon the piano I heard a loud pop and also felt the pop".
## 33975                                                                                                                                                             EE states "I was moving a table for visitation & pulled something in my lower back on the right side".
## 33976                                                                                                                                                                                           EE states "I was opening the #1 door in segregation, the door was stuck.
## 33977                                                                                                                                                           EE states "I was practicing an officer assist takedown, as I fell I landed with my fist under my chest".
## 33978                                                                                                                                                                       EE states "accidently stuck my left index finger with dirty needle; able to identify inmate"
## 33979                                                                                                                                                       EE states "answer body alarm call, patient was combative & resisting. Manual restraint reinjured right thumb
## 33980                                                                                                                                        EE states "as I was trying to secure the lock, whenit stuck & flipped back pinching my left hand between the post and lock"
## 33981                                                                                                                                                             EE states "getting out of car and popped out started to walk up walk - rt knee" - rt upper calf strain
## 33982                                                                                                                                                EE states "he was conducting a crdt technique "mount escape"- legs became entangled with partnertwisting right knee
## 33983                                                                                                                                      EE states "lifted 60 fire extinguisher shaking them after taking down from rack. Pain in rt groinarea radiating to the back."
## 33984                                                                                                                                                   EE states "patient got upset and threw a chair at staff and the attaked a female nurse, injured right shoulder."
## 33985                                                                                                                                                                                     EE states "patient kicked me on the right side causing pain in the lower back"
## 33986                                                                                                                                                        EE states "patient was doing flips, EE reached outto keep him from falling and was injured in the process."
## 33987                                                                                                                           EE states "placed mattress on bottom bunk & when iturned to walk away the ladder fell, striking me onmy right calf area of my right leg"
## 33988                                                                                                                       EE states "small amount of liquid in hallway, slipped and both feet and leg twisted outwarded. Felt pop and fell against wall slid to floor.
## 33989                                                                                                                                  EE states "while cleaning sewage spill in dialysis of infirmary, I was using the shop vac and went to turn on and it sprayed me."
## 33990                                                                                                                                   EE states "while performing a lab draw, as I moved the needle from a vein the needle punctured my third finger on the left hand"
## 33991                                                                                                                                EE states "while riding resident on golf cart rideresidents attacted another resident when I restrained him he attacked me and bit.
## 33992                                                                                                                        EE states - lvg gatehouse to report for duty & pushed door open with rt hand and felt something pop on spine. Pain is above shoulder blade.
## 33993                                                                                                                                       EE states = she was asking client if he wanted to go to a quieter area of the building when he grabbed her arm and bite her.
## 33994                                                                                                                   EE states EE approached him in aggressive manner, EE pushed the inmate to put distance between them, inmate struck EE on the right side of face.
## 33995                                                                                                                                                EE states EE was putting lid on lg trashcan and mashed left third finger laceration and contusion to l third finger
## 33996                                                                                                                                                   EE states I fell backwards in the parking lot and hit my head. Stepped backwards and fell over concrete barrier.
## 33997                                                                                                                                    EE states I had chest pains all day my chest beganto hurt severly around 09:45 walking back and forth on the upper yard of fccw
## 33998                                                                                                                                                                                                                       EE states I had contact with scabies patient
## 33999                                                                                                                                                                       EE states I had lt my office to go to room 114 my foot turned and fell on my hands and knees
## 34000                                                                                                                   EE states I was driving down 158 heading east towards yanceyville when another car crossed the yellow line and hit me head on. Multiple injuries
## 34001                                                                                                                                         EE states I was helping another EE to remove and put pateint in bed and injury occurred during taskinjury to lumber strain
## 34002                                                                                                             EE states I was in process of picking up supplies for the rehab dept I walked out the front door turned to the lt and fell over ceramic cigaette holde
## 34003                                                                                                                                            EE states I was patrolling the recreational yard when I walked towards the gate and felt a sharp pain in my lower back.
## 34004                                                                                                                                                                                                         EE states I was searching inmates when I contacted scabies
## 34005                                                                                                                                                                                      EE states I was stung by a yellow jacket while sitting and writing at my desk
## 34006                                                                                                                                                                                                    EE states I was walking across the parking lot twisted rt ankle
## 34007                                                                                                                                                                                            EE states I was walking down the stairwell when I slipped turning ankle
## 34008                                                                                                                                                                              EE states I went to pick my foot up over the chain and my toe caught the chain I fell
## 34009                                                                                                                                     EE states a Mr. Glenn came came to his car, EE got out to confront him, struggle to cuff him, Mr Glenn hit EE in the right eye
## 34010                                                                                                                                                  EE states a angry patient ran down the hall and hit EE in chest, kicked ankles, & headbutted on lt side of chest.
## 34011                                                                                                                                                                                                                         EE states a bar door closed on his lt hand
## 34012                                                                                                                                     EE states a bat crawled under the kitchen door andin attempt to move away, EE lost her balance and fell, hurting back and knee
## 34013                                                                                                                                                                                                        EE states a bed fell from forklift and hitting her left leg
## 34014                                                                                                                                                                                                                       EE states a bee stung her on her rt forearm.
## 34015                                                                                                                                                                                                                              EE states a bee stung him in the face
## 34016                                                                                                                                                                                                                         EE states a bee stung him on the rt finger
## 34017                                                                                                                                                                                                                         EE states a bee stung him on the upper lip
## 34018                                                                                                                                                                                                          EE states a bookshelf fell on her injuring her lower back
## 34019                                                                                                                                                                                                                          EE states a box fell and struck his head.
## 34020                                                                                                                                                                                                EE states a broom slipped from door frame strikinghim in the rt eye
## 34021                                                                                                                                                                                                                               EE states a bug flew into his lt eye
## 34022                                                                                                                                                                                                EE states a bug or piece of wood flew up & hit himin the right eye.
## 34023                                                                                                                                                                 EE states a bullentin board fell on her while she was sitting at her desk striking her rt shoulder
## 34024                                                                                                                                                                                         EE states a cabinet tilted over causing a dolly rolled over on her rt foot
## 34025                                                                                                                                                                                               EE states a chair broke causing her injured her neck and lt shoulder
## 34026                                                                                                                                                                                            EE states a chair fell over her injuring her neck, rt rib, and rt wrist
## 34027                                                                                                                                                                EE states a chair rolled away from under her causing her to fall to the floor landing on her lt hip
## 34028                                                                                                                                                          EE states a chair slipped from under him causing him to fall receiving a small laceration above hislt eye
## 34029                                                                                                                                                              EE states a chair slipped from underneath her causing her to fall to the floor injuring her lt ankle.
## 34030                                                                                                                                                                     EE states a chair with wheels tipped over causing her to land on her rt knee on a cement floor
## 34031                                                                                                                                                                                   EE states a chemical fell to the floor and splashed in EE's eye and on EE's arm.
## 34032                                                                                                                                                                         EE states a chemical that was used to strip wax from the floor caused respiratory disorder
## 34033                                                                                                                                                    EE states a client attacked another client and during restraint client hit staff in the arch of nose with fist.
## 34034                                                                                                                                        EE states a client grabbed her leg and held it andwhile trying to get client hands away from leg sheinjured her lower back.
## 34035                                                                                                                                                                                EE states a client grabbed him and pushed him intoa wall injurying his lt shoulder.
## 34036                                                                                                                                                                                                                           EE states a client leaned on her rt hand
## 34037                                                                                                                                                                                                      EE states a client stumbled and fell on her causinback injury
## 34038                                                                                                                                                                          EE states a client was coming out of a room when he pushed her against the bathroom door.
## 34039                                                                                                                 EE states a co-worker was being attacked by an in mate. EE attempted to restrain this inmate & durinthe struggle was pushed backwards into a wall.
## 34040                                                                                                                                          EE states a colleague squeezed her right hand while shaking it and a loud cracking sound was heard when he shook her hand
## 34041                                                                                                                                                                                                                 EE states a consumer grabbed and pulled her lt arm
## 34042                                                                                                                      EE states a cow was trapped in a feed lane and while trying free the cow the cow jerk causing EE rt hand to be caught injuring rt ring finger
## 34043                                                                                                                                                                                                        EE states a door closed on her injurying her neck and back.
## 34044                                                                                                                                                                                                                          EE states a door closed on her lt forearm
## 34045                                                                                                                                                                                                                          EE states a door closed on her rt forearm
## 34046                                                                                                                                                                                                                             EE states a door closed on her rt hand
## 34047                                                                                                                                                                                                                           EE states a door closed on her rt thumb.
## 34048                                                                                                                                                                                                        EE states a door closed on him injuring his rt index finger
## 34049                                                                                                                                                                                                                           EE states a door closed on his lt finger
## 34050                                                                                                                                                                                              EE states a door closed on his lt finger causing a severe laceration.
## 34051                                                                                                                                                                                                                      EE states a door closed on his lt hand finger
## 34052                                                                                                                                                                                             EE states a door closed on his lt hand injurying his lt middle finger.
## 34053                                                                                                                                                                                                                           EE states a door closed on his rt finger
## 34054                                                                                                                                                                                                                      EE states a door closed on his rt hand finger
## 34055                                                                                                                                                                                                                     EE states a door closed on his rt hand fingers
## 34056                                                                                                                                                                                                       EE states a door closed on his rt hand injurying his finger.
## 34057                                                                                                                                                                                                                         EE states a door closed on his rt shoulder
## 34058                                                                                                                                                                                                                     EE states a door knob struck him on the rt arm
## 34059                                                                                                                                                                                                          EE states a door slammed and shut on her rt middlefinger.
## 34060                                                                                                                                                                                                           EE states a door slammed and struck him on the rt elbow.
## 34061                                                                                                                                                                                                                       EE states a door slammed shut on his lt hand
## 34062                                                                                                                                                                                                                 EE states a door struck her on the rt foot and toe
## 34063                                                                                                                                                                                                                         EE states a door struck her on the rt hand
## 34064                                                                                                                                                                                                        EE states a door struck her rt forearm and injuredher back.
## 34065                                                                                                                                                                                                                     EE states a door struck him on the left elbow.
## 34066                                                                                                                                                                                                                     EE states a door struck him on the rt shoulder
## 34067                                                                                                                                                                                                 EE states a door struck his rt heel while he was exiting the door.
## 34068                                                                                                                                                                                             EE states a door which was stuck dropped loose striking EE in the head
## 34069                                                                                                                                                                                                                 EE states a dorm slider door closed on her lt hand
## 34070                                                                                                                                                                                                  EE states a driver back into her leg, trying to avoid being towed
## 34071                                                                                                                                                                              EE states a five gallon of bucket of detergent fell off the shelf striking his lt leg
## 34072                                                                                                                                                                                                         EE states a florescent light fell striking him on the head
## 34073                                                                                                                                                                                                                   EE states a food cart struck her on the rt wrist
## 34074                                                                                                                                                                                                                       EE states a gate door closed on her rt thumb
## 34075                                                                                                                         EE states a heating wire for the temperature control of a metablization reactor started to burn while EE was doing maintenance on reactor.
## 34076                                                                                                                                                                                                                              EE states a hog ran into his lt knee.
## 34077                                                                                                                                                                                     EE states a honda four wheeler turned over and landed on him injuring his ribs
## 34078                                                                                                                                                                                                   EE states a inmate charged from his room, strickinee in his face
## 34079                                                                                                                                                                                                   EE states a ladder fell on her rt hand causing pain and swelling
## 34080                                                                                                                                                                                  EE states a lady ran a stop light and hit van on the lt side that EE was driving.
## 34081                                                                                                                                                                                                         EE states a light fixture fell and struck her on the head.
## 34082                                                                                                                                                                                                      EE states a light fixture panel fell striking him on the head
## 34083                                                                                                                                                                                                                      EE states a limb tree stuck him in the lt eye
## 34084                                                                                                                                                                                                   EE states a loud noise or bang has caused ringing to his rt ear.
## 34085                                                                                                                                                                                                                   EE states a metal drawer closed on her lt finger
## 34086                                                                                                                          EE states a nurse was horse playing around with pt when a nurse was pushed striking EE causing injury to shoulder, elbow, wrist, and hip.
## 34087                                                                                                                   EE states a patient became aggitated pt hit staff in the face, the staff fell hitting rt shoulder on corner of a table befor hitting the ground.
## 34088                                                                                                                                                                                                                                    EE states a patient fell on EE.
## 34089                                                                                                                                                                                     EE states a patient pushed him against a wall causing injury to his upper back
## 34090                                                                                                                  EE states a patient ran off EE gave chase and EE restrained him, patient wrapped leg aroung EE's, when staff intervened EE leg was pulled/twisted
## 34091                                                                                                                           EE states a patient was aggitated and agreed to take his med and instead of grabbing the med the patient grbbed EE wrist and twisted it.
## 34092                                                                                                                    EE states a patient was trying to escape and she was assisting with placing patient in nci hold and the patient butted her head with their head
## 34093                                                                                                                                                                                        EE states a patient went down during nci and yanked his l arm down with him
## 34094                                                                                                                                                                             EE states a person who has TB came into the area which he worked. TB airborne disease.
## 34095                                                                                                              EE states a pesticide EE sprayed his ofc & a few min later the phone rang & he answered it. What appeared to be pesticide on cord, splattered in eyes
## 34096                                                                                                                                                                                                            EE states a piece of burning ember went into his lt eye
## 34097                                                                                                                                                                                                         EE states a piece of concrete hit tooth --- chipped tooth.
## 34098                                                                                                                                     EE states a piece of debris flew into eye while driving down road, flushed eye several times and could not get the debris out.
## 34099                                                                                                                                                                                                                     EE states a piece of dust entered into rt eye.
## 34100                                                                                                                                                                EE states a piece of sheet metal fell from duct work and landed on right arm, cutting into the skin
## 34101                                                                                                                                                                         EE states a piece of splinter from a deck trailer imbedded under his lt hand middle finger
## 34102                                                                                                                                                                                                                 EE states a piece of steel fell on top of his foot
## 34103                                                                                                                                                                                     EE states a piece of wood fell and struck him on the head causing a laceration
## 34104                                                                                                                                                                                                       EE states a piece of wood lodged into his rt upperthigh area
## 34105                                                                                                                                                                    EE states a pt called her when she was in the office writing and she caught a pain in her neck.
## 34106                                                                                                                                                                                                                     EE states a pt kicked her and pulled her hair.
## 34107                                                                                                                                                                                              EE states a pt sprayed room deodorant in face causing eye irritation.
## 34108                                                                                                                                                                                                        EE states a pt struck her causing her to fall to the floor.
## 34109                                                                                                                                                                                                          EE states a pt struck him on the head with a garbage lid.
## 34110                                                                                                                                  EE states a pt was trying to come into the office and get cigarette and while trying to restrain thept she injured her rt finger.
## 34111                                                                                                                                 EE states a resident became upset causing EE to lose her balance and fall--while breaking to the fall EE injured her rt hand/wrist
## 34112                                                                                                                                                                                                           EE states a resident grabbed her rt hand and twisted it.
## 34113                                                                                                                                                                  EE states a resident hit him very hard in the lt temple area. EE was beginning basic care-routine
## 34114                                                                                                                                                                                                                           EE states a resident stepped on rt foot.
## 34115                                                                                                                                  EE states a resident/patient was trying to get outdoorway, EE attempted to stop male patient he grabher left wrist and twisted it
## 34116                                                                                                                                                                                             EE states a rock was thrown from passing vehicle &hit him on the head.
## 34117                                                                                                                                                                                                                      EE states a sallyport door closed on her head
## 34118                                                                                                                                                                                                            EE states a she accidentally struck her head on a door.
## 34119                                                                                                                                                                                                               EE states a shelf fell and hit her on left shoulder.
## 34120                                                                                                                                                                                                                      EE states a shelf fell and struck her rt hand
## 34121                                                                                                                                                                                                                      EE states a shelf fell striking EE on the arm
## 34122                                                                                                                                                                                                       EE states a side door closed on him striking his rt shoulder
## 34123                                                                                                                                                                                                     EE states a slider door closed on his rt arm and shoulder area
## 34124                                                                                                                       EE states a small area on lt hand discolored - possible dermatitis from client who has it on her fingers & leg. Rash & dermatitis leg & arm.
## 34125                                                                                                                    EE states a small laceration to rt knee, bumped while cutting shrubs with a bush axe. Bush axe rebounded back from striking root, hit EE's knee
## 34126                                                                                                                                                                                                                        EE states a splinter punctured his lt thigh
## 34127                                                                                                                                                                                                  EE states a splinter stuck into his rt thumb whileopening a door.
## 34128                                                                                                                                                                                                                     EE states a stack of beds fell on his lt foot.
## 34129                                                                                                                           EE states a steel walkway came loose causing EE tofall striking rt leg on a object and straining hisshoulder trying to keep from falling
## 34130                                                                                                                                                                                               EE states a storage bin fell off wall and struck him on the rt foot.
## 34131                                                                                                                                                                   EE states a strand of wire cable penetrated rubber glove puncturing the middle finger of rt hand
## 34132                                                                                                                                                                                                                          EE states a student bit him on the lt arm
## 34133                                                                                                                                                                                 EE states a student was being handcuffed and elbowed EE in the ribs and chest area
## 34134                                                                                                                                                                    EE states a student was cleaning a wood planer w/adust hose and the wood dust blew into EE eye.
## 34135                                                                                                                                                            EE states a student was riding motorcyle and wasn't paying attention to where she was going and hit EE.
## 34136                                                                                                                                                                                                                              EE states a table fell on his rt hand
## 34137                                                                                                                                                                                           EE states a tattoo gun fell out of package and struck his lt hand finger
## 34138                                                                                                                                                                                                                   EE states a tick bit her on the rt side of chest
## 34139                                                                                                                                                                                                                         EE states a tick was embedded in his naval
## 34140                                                                                                                                                                                                                 EE states a trap door closed on his rt hand/finger
## 34141                                                                                                                                                                                          EE states a tray hit her in the head-unknown EE chose not to go to clinic
## 34142                                                                                                                                                                                        EE states a tree branch struck him in the lt eye during a dog handler drill
## 34143                                                                                                                                                                                                                           EE states a tree limb hit him in the eye
## 34144                                                                                                                                                                                                   EE states a truck cut in front on him causing injury to his back
## 34145                                                                                                                                                                                    EE states a vehicle ran a stop sign and hit the front of van EE was driving. ()
## 34146                                                                                                                EE states a visiting professor had a seizure whileoutside, fell hitting his head on the sidewalk. EE tried to keep him safe, got blood on his hands
## 34147                                                                                                                                                                                                 EE states a visitor fell on her causing her to sprain her rt knee.
## 34148                                                                                                                                                                                                                   EE states a window slammed on his lt hand/finger
## 34149                                                                                                                                                                                                          EE states a woman pulled out into traffic in frontof her.
## 34150                                                                                                                                                                                                   EE states a wrenched slipped from his hand injuring his lt wrist
## 34151                                                                                                                                                     EE states about 3weeks ago work load was heavy and pain in palm. Lt hand ring finger began to lock wwhen bent.
## 34152                                                                                                                                                                                        EE states accidentally splashed soap on fingers (left 2nd and 3rd)/hand. ()
## 34153                                                                                                                                EE states adjust tension on fire roll up door, screwdrive slip off sprocket, finger got caught between sprock and sheet metal cover
## 34154                                                                                                                     EE states admin meds to client, client started hugging, climbing up on EE, EE lowered herself and client back down on mat, felt pain l abdomen
## 34155                                                                                                                                                                                 EE states administering meds - opening packets andchildproof caps hurt right wrist
## 34156                                                                                                                                                                                              EE states admitting patients and the dog became agitated and bit hand
## 34157                                                                                                                                              EE states after administering an injection and attempting to dispense of the needle she punctured her lt index finger
## 34158                                                                                                                                        EE states after answering a page he reached in theback seat of the vehicle and felt a sharp pain in his back and neck area.
## 34159                                                                                                                                                                                EE states after assisting with inmates she noticedpain in her lower back and rt hip
## 34160                                                                                                                                                                                     EE states after attending a pic review session she notice pain of the rt wrist
## 34161                                                                                                                                                               EE states after being in the building 1st hour of day she started to have headaches, blurred vision.
## 34162                                                                                                                                            EE states after carrying food trays to feed inmates her back became aggravated causing a strain due to previous injury.
## 34163                                                                                                                                                                                                      EE states after changed client felt pain in rt shoulder blade
## 34164                                                                                                                                         EE states after checking generators, lost footing as he stepped off platform onto cement blocks. Twisted right ankle/foot.
## 34165                                                                                                                                                                          EE states after cleaning countertops with cleaningsolution he accidently wiped his rt eye
## 34166                                                                                                                                                               EE states after cleaning up blood and removing gloves her fingernail cut the inside of her rt wrist.
## 34167                                                                                                                                                         EE states after controlling a fire and upon returning home he noticed red spots on his hands and leg area.
## 34168                                                                                                                                                                      EE states after doing a 3-person carry EE felt pain in her lower back. **ag's file# 02-2688**
## 34169                                                                                                                                     EE states after fire on 6th floor was over he began to write his statement & his nose was irritable. Soot came out when blown.
## 34170                                                                                                                                                                                                    EE states after fire range practice she felt pain in her rt arm
## 34171                                                                                                                                                                  EE states after firing during fire arm training she noticed ringing and echo sounds in her lt ear
## 34172                                                                                                                                  EE states after firing shotgun a bruise appeared on right bicep and bruise is getting larger. His fingers tingle and bicep throbs
## 34173                                                                                                                                                         EE states after giving an injection to another EE the syringe dropped on her lt foot puncturing her lt toe
## 34174                                                                                                                                                                                       EE states after giving change from 2 money boxes she strain her lt hand/arm.
## 34175                                                                                                                EE states after he parked transfer bus, he startedconducting a walk around inspection of bus, groundcaved in & his right foot & leg went into hole.
## 34176                                                                                                                                                                 EE states after inspection of inmates he noticed irritation and itching of his chest and back area
## 34177                                                                                                                                                                                 EE states after lifting pinic tables she begin to have pain in her lower back area
## 34178                                                                                                                                             EE states after locking the screen door in the laundry room she turned to the right and felt a pain in her upper back.
## 34179                                                                                                                                                                                EE states after moving furniture she felt a pain in her back. Low back and left hip
## 34180                                                                                                                                                                      EE states after obtaining a lab specimen from an inmate EE pricked her finger with the needle
## 34181                                                                                                                                                                         EE states after patting down an inmate with shingles he developed chicken pox 3 days later
## 34182                                                                                                                                                                     EE states after pepper spray training he started having migraine headaches and tension in neck
## 34183                                                                                                                                                                                          EE states after performing his routine duties, his hands started burning.
## 34184                                                                                                                                                          EE states after pert training she noticed red blotches on her legs--and started having shortnessof breath
## 34185                                                                                              EE states after providing care to resident her arm started itching, noticed rash like area on my arm and washed w/soap and warm water. Reported to supervisor goff ()
## 34186                                                                                                               EE states after putting handcuffs on an inmate that had been fighting in the bathroom she stepped down out of the sink area and twisted her rt ankle
## 34187                                                                                                                                                EE states after restraining a student he suffered a heart attack clmt was previously ppd ppd rating on another file
## 34188                                                                                                                                                                  EE states after running while responding to an emergency code she noticed swelling of her rt knee
## 34189                                                                                                                                                                                    EE states after taking off a glove the residue from the glove got into his eye.
## 34190                                                                                                                                                       EE states after taking student to a room and closing the door the latch came loose striking EE on the lt hip
## 34191                                                              EE states after taking the trash, went to put the golf cart u; got off walked onto loading dock (it was raining) water was standing on dock; fell completely back hurting back, buttocks, and head ()
## 34192                                                                                                                       EE states after the end of her work day she was walking in parking lot she tripped and fell injuryto her forehead, rt leg, rt foot and ankle
## 34193                                                                                                                                                                                                        EE states after training he notice soreness in his lt ankle
## 34194                                                                                                                                                         EE states after transferring patient into bed she began experiencing a burning in the middle to lower back
## 34195                                                                                                                                                                                           EE states after using the restroom she has severe pain in her lower back
## 34196                                                                                                                                                                                    EE states after wiping feet on floor mat slipped and fell hitting head on floor
## 34197                                                                                                                                                                                                 EE states all the mopping he does has caused rt knee to give away.
## 34198                                                                                                                                                    EE states alleges she and officer were lifting an inmate onto s gurney and she injuried her neck and lower back
## 34199                                                                                                                      EE states alleges she was exiting control booths and the closet door was open behind booth door causing fingers to wedge between the 2 doors.
## 34200                                                                                                                                                           EE states alleges that he was getting down from the chair on tower #1 and struck his knee on some object
## 34201                                                                                                                                                                                                                  EE states almost tripped over cable on the floor.
## 34202                                                                                                                                                                         EE states altercation with inmate when he hit my left hand and right side of face and neck
## 34203                                                                                                                                                                                      EE states altercation with patient caused back, r shoulder and r forearm pain
## 34204                                                                                                                                                EE states an aggressive pt started throwing items causing a large bruise on lt leg and something gotinto both eyes.
## 34205                                                                                                                                                                      EE states an agitated patient attacked EE and another staff member. Injured hip,. Leg. Wrist.
## 34206                                                                                                                                                                                                                EE states an air jack fell and struck him on lt leg
## 34207                                                                                                                                                                         EE states an angry inmate jerked a chair which caused it to hit her in the abdominal area.
## 34208                                                                                                                                          EE states an angry inmate struck the door of a cell with his fist and blood sprayed from the fistinto EE lt eye and arms.
## 34209                                                                                                                                                                                                           EE states an angry patient hit him on the left shoulder.
## 34210                                                                                                                                                                                EE states an explosion from a water pump caused a bright uv light to burn both eyes
## 34211                                                                                                                                                                                                           EE states an inmate bit him on the lt side of his nipple
## 34212                                                                                                                                                                                                             EE states an inmate blew cleanser powder in both eyes.
## 34213                                                                                                                                                                                               EE states an inmate came out of his cell and struck him in the mouth
## 34214                                                                                                                                                                                            EE states an inmate charged into him causing him to injured his rt knee
## 34215                                                                                                                                                             EE states an inmate cut his finger dripped blood on his wrist when assisting the inmate with a bandaid
## 34216                                                                                                                                                                                                      EE states an inmate dropped a wagon handle on his lt foot/toe
## 34217                                                                                                                                   EE states an inmate gave her contraband two razor blades, wrapped in newspaper, EE states she twisted newspaper & razor cut hand
## 34218                                                                                                                                                    EE states an inmate got on the elevator with her and turned the lights out--causing mental and emotional stress
## 34219                                                                                                                                                                                                               EE states an inmate grabbed and twisted his rt wrist
## 34220                                                                                                                                                                     EE states an inmate grabbed her arm causing her arm to be caught in the chain of the handcuffs
## 34221                                                                                                                                                                                               EE states an inmate grabbed her lt hand and pulledit inside his cell
## 34222                                                                                                                                                                                                            EE states an inmate grabbed her lt wrist and twisted it
## 34223                                                                                                                                                                                                           EE states an inmate grabbed her lt wrist and twisted it.
## 34224                                                                                                                                                                   EE states an inmate grabbed her rt wrist and pulled her into the closet ****ag.. Stacy phipps***
## 34225                                                                                                                EE states an inmate grabbed him around the neck and while trying to remove inmate hand from neck EE fell on the table striking his lt knee/rt elbow
## 34226                                                                                                                                                                                               EE states an inmate grabbed his lt hand and struckhim in the stomach
## 34227                                                                                                                                                                                                           EE states an inmate head butted him while being escorted
## 34228                                                                                                                                                                                                                      EE states an inmate kicked her in the rt knee
## 34229                                                                                                                                                                                                           EE states an inmate opened a door and struck his rt hand
## 34230                                                                                                                                                                   EE states an inmate placed a bottle of clorox on his desk---the clorox splashed into his lt eye.
## 34231                                                                                                                                                                                         EE states an inmate pulled back on a door causing it to strike her lt foot
## 34232                                                                                                                     EE states an inmate pushed EE down while EE was attempting to get him in his cell, during the inci-dent EE hit the stair rails and cut finger.
## 34233                                                                                                                                                                EE states an inmate pushed a bunk bed causing the bed to strike EE on the rt shoulder and neck area
## 34234                                                                                                                                                                                                     EE states an inmate pushed a linen cart striking his rt ankle.
## 34235                                                                                                                                                                                     EE states an inmate ran into him with a hand truckcausing him to fall backward
## 34236                                                                                                                                                                                                      EE states an inmate spitted blood on his hand and chest area.
## 34237                                                                                                                                                                                                                                 EE states an inmate spitted on her
## 34238                                                                                                                                                                                                                         EE states an inmate sprayed him with urine
## 34239                                                                                                                                                                    EE states an inmate sprayed some unknown liquid substance from a bottle into his face and eyes.
## 34240                                                                                                                   EE states an inmate started having a seizure and when trying to keep the inmate from falling on the ground the inmate landed on him--back injury
## 34241                                                                                                                                                                                                                      EE states an inmate struck her on the lt arm.
## 34242                                                                                                                                                                                                                   EE states an inmate struck him in the chest area
## 34243                                                                                                                                                                                                          EE states an inmate struck him in the eye with handcuffs.
## 34244                                                                                                                                                                                                              EE states an inmate struck him in the face with a cup
## 34245                                                                                                                                                                                                       EE states an inmate struck him in the face with a flashlight
## 34246                                                                                                                                                                                                               EE states an inmate struck him in the head with fist
## 34247                                                                                                                                                                                                          EE states an inmate struck him on the lt arm with a watch
## 34248                                                                                                                                                                             EE states an inmate struck him with a spring clip in the middle of his lower back area
## 34249                                                                                                                                                                                                                     EE states an inmate struck him with handcuffs.
## 34250                                                                                                                                                                                            EE states an inmate threw a battery at him striking him on the rt elbow
## 34251                                                                                                                                                                                 EE states an inmate threw a bottle of mustard at her striking her on the rt breast
## 34252                                                                                                                                                                                  EE states an inmate threw a box of talcom powder striking her on the upper rt arm
## 34253                                                                                                                                                                                           EE states an inmate threw a pair of handcuff at her injuring her lt knee
## 34254                                                                                                                                                                                                        EE states an inmate threw a styrofoam cut filled with urine
## 34255                                                                                                                                                                                                      EE states an inmate threw a table striking him on the rt foot
## 34256                                                                                                                                                                                                       EE states an inmate threw a tray and struck him onthe lt arm
## 34257                                                                                                                                                                                                                       EE states an inmate threw some beans on him.
## 34258                                                                                                                                                                                                                  EE states an inmate threw some bleach in her face
## 34259                                                                                                                                                                                                                  EE states an inmate threw some liquid in his face
## 34260                                                                                                                                                                                           EE states an inmate threw some unknown liquid at her face/and upper body
## 34261                                                                                                                                                                                                    EE states an inmate threw some unknown liquid substances at her
## 34262                                                                                                                                                                                                            EE states an inmate threw some unknown substance at her
## 34263                                                                                                                                                                                                       EE states an inmate threw some unknown substance in his face
## 34264                                                                                                                                                                                                            EE states an inmate threw some unknown substance on her
## 34265                                                                                                                                                                                                           EE states an inmate threw some unknown substances at him
## 34266                                                                                                                                                                                                                        EE states an inmate threw some urine at him
## 34267                                                                                                                                                                                                                        EE states an inmate threw some urine on him
## 34268                                                                                                                                                                                                                 EE states an inmate threw toilet water in his face
## 34269                                                                                                                                                                                                                    EE states an inmate threw unknown liquid at her
## 34270                                                                                                                                                                                                                       EE states an inmate threw urine in his face.
## 34271                                                                                                             EE states an inmate tried to assault his partner by grabbing at her and he grabbed the inmates hand cuffs to control him the inmate twisted the handcu
## 34272                                                                                                                                                                 EE states an inmate was driking some water and while talking some of the water went into EE rt eye
## 34273                                                                                                                                                                  EE states an inmate was drilling a hole in the ceiling when some of the dust went into his lt eye
## 34274                                                                                                                                                                                   EE states an inmate was pushing a cart when the cart rolled on top of EE rt foot
## 34275                                                                                                             EE states an inmate was running out of dorm after fight when EE grabbed inmate to cuff him inmate fell up against EE getting blood on left arm and shr
## 34276                                                                                                                                                                                                       EE states an inmated grabbed her lt hand and wouldnot let go
## 34277                                                                                                                                                                                                                           EE states an inmated spitted in her face
## 34278                                                                                                                                                                                                        EE states an inmated walked passed her and spit in her face
## 34279                                                                                                                                                                                                                           EE states an insect bit her on the neck.
## 34280                                                                                                                                                                                                                         EE states an insect bit her on the rt hand
## 34281                                                                                                                                                                                       EE states an insect flew into his lt eye when he proceeded to secure a gate.
## 34282                                                                                                                                                                             EE states another EE pushed a door open knocking her against a wall striking her back.
## 34283                                                                                                                             EE states another EE was cleaning with a degreaserproduct EE inhaled the vapors causing a respiratory reaction. Antibotics and inhaler
## 34284                                                                                                                                                                                             EE states another EE was pushing cart and cart hit EE on back of heel.
## 34285                                                                                                                                                                                                 EE states another hct put head of bed down and clamping in on hand
## 34286                                                                                                                                                                               EE states another officer closed a door to the control room injurying her rt fingers
## 34287                                                                                                                                                                                        EE states another officer closed a slider door on her rt upper arm and knee
## 34288                                                                                                                                                                                                   EE states another officer grabbed her rt hand causing an injury.
## 34289                                                                                                                                                EE states another officer took me down to mat in offensive move, my hand and finger hit mat. Injured rt 4th finger.
## 34290                                                                                                                                                                     EE states another officer was opening a door when the door knob struck her on her lt arm/wrist
## 34291                                                                                                                                                                                 EE states another person grabbed him in the bear hug and injured his chest muscles
## 34292                                                                                                                                                                              EE states another staff member opened door and hit EE on the toe, resulting in wound.
## 34293                                                                                                                                                                                                 EE states another vehicle pull out and struck the front of his car
## 34294                                                                                                                                                                                                              EE states anything he does makes his lower back hurt.
## 34295                                                                                                                              EE states area adjacent to work is the smoking area. EE has been diagnosed with asthma and allergies, smoke caused breathing problems
## 34296                                                                                                                                  EE states as I picked up the lancet holder I was stuck w/ a contaminated lancet on my left index finger, resulting in a puncture.
## 34297                                                                                                                                                                                        EE states as I was doing break falls I sprang a muscle in my lower abdomen.
## 34298                                                                                                                                                                                          EE states as I was pushing food cart down the hallway my rt knee gave out
## 34299                                                                                                                 EE states as a result of struggling with an inmate who refused to return to his cell he was thrown aganist the bars in the intensive control block
## 34300                                                                                                                                                                                      EE states as a result of the ground being wet he slid and injured his lt knee
## 34301                                                                                                                                                                                        EE states as going down some steps he pulled a mucslce in his lt loweg leg.
## 34302                                                                                                                                               EE states as he attemped to open a door someone from the other side of the door pushed it strikingee on the rt hand.
## 34303                                                                                                                                                           EE states as he attempted to sit in a chair the chair slipped causing EE to fall injurying his lt wrist.
## 34304                                                                                                                EE states as he finished cleaning the commode he turned around to exit the stall, hit the side of his face, cutting the rt eyelid below the eyebrow
## 34305                                                                                                                                                             EE states as he got down from chair on tower 1 to open gate #1 he twisted his back as he stepped down.
## 34306                                                                                                                                                           EE states as he opened the door to th outside gym a bee flew out and stung him on the left side of face.
## 34307                                                                                                                                             EE states as he restrained a juvenile that was attacked prior to. EE made a hard contact with cement floors with knees
## 34308                                                                                                                                                                          EE states as he stepped into the hallway, she slipped and fell to right knee on wet floor
## 34309                                                                                                                                                                     EE states as he was "dragging" an inmate from a fire into a safe area, he felt his knee "pop".
## 34310                                                                                                              EE states as he was attempting to bring his self-defense partner to a standing position he had his lt hand thumb in an unnatural position dislocation
## 34311                                                                                                                       EE states as he was decending the stairs, his footslipped and as he was falling he grabbed the hand-rail hitting his side against the steps.
## 34312                                                                                                                    EE states as he was driving down the road a hornetcrawled up his right pants leg. It stung him twiceapprximately 6 to 10 inches above his knee.
## 34313                                                                                                                                                                                 EE states as he was entering the gate he shut the door of the gate on his rt hand.
## 34314                                                                                                                                                       EE states as he was exiting a door his lt foot struck the high step causing him to fall injuring his big toe
## 34315                                                                                                                            EE states as he was exiting the gate house he stroke his rt elbow on the door he noticed a lot of swelling on elbow and went to medical
## 34316                                                                                                                                        EE states as he was getting back on a tow motor his foot slipped on wet ground causing him to falland injured his rt wrist.
## 34317                                                                                                                     EE states as he was getting off the bus carrying the weapons he stepped to the ground & felt something pull in his back between his should bla
## 34318                                                                                                                            EE states as he was loading equipment from loading dock into a truck, he stepped to the right and fell on to the lowered truck ramp. ()
## 34319                                                                                                                                                                        EE states as he was reaching for the restroom door he struck his rt thumb on the hand rail.
## 34320                                                                                                                                                                                                  EE states as he was securing lock the gate closed on his rt hand.
## 34321                                                                                                                       EE states as he was sitting down in a chair the chair flipped over upside down causing EE to fall to the floor injurying his rt leg and hip.
## 34322                                                                                                                                                     EE states as he was standing up from a rolling chair the chair rolled from under him when he injured his back.
## 34323                                                                                                                    EE states as he was stepping out of the ppv truck his foot landed on it's side causing his knee to bend in the opposite direction that it bends
## 34324                                                                                                                                   EE states as he was walking by an inmate cell doorthe inmate threw a cup with urine at him striking his face, chest and leg area
## 34325                                                                                                                                   EE states as he went to sit in his chair at his desk, the chair tipped over causing him to hit hischest on the edge of the desk.
## 34326                                                                                                                                                               EE states as he went to slide a chair back the legof the chair broke causing EE to fall on the floor
## 34327                                                                                                                                                       EE states as he went to unlock a phone box the lid accidently slipped out of his lt hand strikinghis fingers
## 34328                                                                                                                          EE states as lotioning her legs, noticed a red area with a blister like bump on it. Feet started itching like they were on fire on 072604
## 34329                                                                                                                                                EE states as she exited captain's loop, she steppeon wet floor and fell to the floor hitting her back on the floor.
## 34330                                                                                                                                                                        EE states as she exited her truck to enter the training bldg she fell in the parking lot ()
## 34331                                                                                                                                                                    EE states as she stepped to go through a sliding door the door immediately closed on her rt arm
## 34332                                                                                                                                                                          EE states as she turned to go do something she struck her upper right eye area on a pole.
## 34333                                                                                                                                 EE states as she was carrying a box she tripped over a floor mat hitting her knees on the floor and her mouth and nose on the box.
## 34334                                                                                                                                                        EE states as she was cleaning a pt came from behind her and started striking her on the head and shoulders.
## 34335                                                                                                                         EE states as she was climbing steps between archdale and dobbs buildings she slipped on a rock on wet steps causing her to fall forward ()
## 34336                                                                                                                                                                                  EE states as she was coming down some steps her foot slipped causing her to fall.
## 34337                                                                                                                                                       EE states as she was coming up the front door, she slipped on ice and fell on left arm area and buttocks. ()
## 34338                                                                                           EE states as she was entering the building to begin work her left foot caught on the bunched door mat causing her to fall to the right, twisting left knee and ankle. ()
## 34339                                                                                                                                      EE states as she was entering the building to report for work she was coming into the main door and the door closed on her ()
## 34340                                                                                                                                                                           EE states as she was entering the sallyport door the door closed striking top of EE head
## 34341                                                                                                                                                  EE states as she was getting out of a perimeter vehicle she twisted both ankles and caused an injury to her back.
## 34342      EE states as she was getting out of her car in parking lot in front of rev bldg, her feet slipped out from under her due to ice on parking lot. She caught herself with her right hand on inside door handle of car and felt a pull in her chest and back. ()
## 34343                                                                                                                                                           EE states as she was going down some steps which was wet she slipped injuring her rt thumb and backarea.
## 34344                                                                                                                             EE states as she was going to lunch she stepped off the curb to cross the street in front of revenue building and twisted her knee. ()
## 34345                                                                                                              EE states as she was going up some steps her heel from shoe was caught on the edge of steps causing her to fall injurying her shoulder and back area.
## 34346                                                                                                                                        EE states as she was leaving d-wing in seg housingunit and was closing the gate and closed the gate on her lt middle finger
## 34347                                                                                                                                           EE states as she was lowering a trapped door to the stair way the handle came off the door and struck EE on the rt knee.
## 34348                                                                                                                EE states as she was observing inmate she stood up from her chair when the chair came from under her causing her to fall to the floor striking head
## 34349                                                                                                                                                             EE states as she was removing a sandwich from the microwave the melted cheese burn her on the rt hand.
## 34350                                                                                                                                       EE states as she was removing the shotgun from it's rack in order to move to the catwalk she hit her rt hand on the gun rack
## 34351                                                                                                                                                                      EE states as she was rushing around her desk, she tripped over a calculator cord and fell. ()
## 34352                                                                                                                                        EE states as she was sitting down in a chair the chair slid from under her causing her to injure the left side of her body.
## 34353                                                                                                                      EE states as she was sitting in an office chair, she rolled back & reached for papers & the chair slipped from underneath her causing her toi
## 34354                                                                                                                  EE states as she was stepping off a bus she slip and grabbed the rail with her rt arm to keep from falling causing a strain muscle of the rt arm.
## 34355                                                                                                                                  EE states as she was supervising inmates picking up trash along I-540 east, a large truck passed blowing debris into EE left eye.
## 34356                                                                                                              EE states as she was walking in aisle in her work area she stepped on a small rock/pebble. Her ankle twisted & she fell to the floor on her knees. ()
## 34357                                                                                                                                                               EE states as she was walking out the bathroom to turn off light she struck her rt hand on the switch
## 34358                                                                                                                                                                                EE states as she was walking she stepped off the sidewalk causing her foot to turn.
## 34359                                                                                                                                                                         EE states as she was walking to her car she tripped on a large rock injuring her rt ankle.
## 34360                                                                                                                        EE states as she went to the hall, fell to bee boat bed and hit it with her right foot causing EE to fall, coming down on her hands & knees
## 34361                                                                                                                         EE states assisted three nurses to transfer inmatefrom floor @ bedside to bed. Then assisted w/movinginmate from bed to mattress on floor.
## 34362                                                                                                                  EE states assisting another cha to transfer a patient from bed to chair as I reached to grab his pants I felt a pain in the lower back right side
## 34363                                                                                                                                         EE states assisting client back to mat, client pulled back and EE's lft shoulder pulled along w/client-strain lft shoulder
## 34364                                                                                EE states assisting client to stand; grabbed gait belt and client stood and proceeded to try to sit down on floor; EE helped lower client to the floor straining right shoulder. ()
## 34365                                                                                                                                                                                          EE states assisting client wearing gloves; gloves irritating to hands. ()
## 34366                                                                                                                                                                                              EE states assisting in overhead, kicked on left side of face by child
## 34367                                                                                                                                                              EE states assisting patient with standing, sitting and being changed, felt pain in the back of r knee
## 34368                                                                                                                                    EE states assisting resident in from watersking and hit foot on concrete runner, little toe on righfoor swelled and turned blue
## 34369                                                                                                                                                                                             EE states attached by student who was attempting to get keys to escape
## 34370                                                                                                                                                                               EE states attempted to attcack staff while pic hold was used. EE injured lower back.
## 34371                                                                                                                 EE states attempting to apply deodorant to client when the client swung left hand and struck EE across the mouth causing soreness and bleeding. ()
## 34372                                                                                                                                 EE states attempting to step into private vehicle rt foot slipped on oil slick in parking lot causing to fall and land on rt elbow
## 34373                                                                                                                                                EE states attempting to take client to time out room, something gave in back when I lost grip on client's upper arm
## 34374                                                                                                                                                                                                  EE states back injury happen while applying nci hold to a patient
## 34375                                                                                                                                                                      EE states back started hurting after she finished getting patients up and dressed in her unit
## 34376                                                                                                                                                                                                     EE states back started to hurt when attempted to get into van.
## 34377                                                                                                                                                                            EE states bathing and dressing, providing incontinence care for 16 hours to clients. ()
## 34378                                                                                                                                                                                                  EE states bathing client, after bathing, felt a pain in chest. ()
## 34379                                                                                                                                              EE states bathing client; when EE turned client towards her; EE felt a pull in left lower shoulder and upper back. ()
## 34380                                                                                                                                                                                               EE states because of excessive dust he experiencedbreathing problems
## 34381                                                                                                                                                                    EE states bent down to pick a report that fell on the floor and hit his l eye on cornor of desk
## 34382                                                                                                                                                                                                                                            EE states bit by spider
## 34383                                                                                                                                                                                                        EE states bitten by spider when cleaning 2 animalsroom pens
## 34384                                                                                                                                       EE states blister like areas broke out upper lip, spread to lower lip. Supervisor wants her to check it due to MRSA exposure
## 34385                                                                                                                                                                                                   EE states both hands hurt from keying-has prev had carpal tunnel
## 34386                                                                                                                                                                                                EE states both palms are broken out from frequent washing and soap.
## 34387                                                                                                                                                                         EE states bread was on fire and tried to open window & the window slammed down both hands.
## 34388                                                                                                                                                                                                 EE states broke out in rash from using heavy duty bathroom cleaner
## 34389                                                                                                                                                                                              EE states bronchitis caused by reaction to fumes from roofing sealant
## 34390                                                                                                                                                                                     EE states buggy full of water and milk was pushed against the heel of her foot
## 34391                                                                                                                                                                                                           EE states bulging disks from 6wks of reviewing documents
## 34392                                                                                                                                                        EE states bumpd hand during 7am check, not sure ifdone then or when got client up b/c hit it again oon lift
## 34393                                                                                                                                                                                                            EE states bumped right hand on the pole in the dishroom
## 34394                                                                                                                              EE states burning on lt side of abdomen noticed it was red and itchy, reported to Dr. Dawkins at that time; then was treated for MRSA
## 34395                                                                                                                 EE states by doing his essential job functions, the work and condition has a burden on back, feet, toes. The prolonged standing, running, walking.
## 34396                                                                                                                                              EE states by the team colloding into my back and the inmate assaulting me my front side causing injuries to the groin
## 34397                                                                                                                              EE states by turning key in metal door and hittingagainst the wall the door have a tendency to jam making the door difficult to open.
## 34398                                                                                                                                EE states cabinet fell off wall EE states multipleinjuries. Rt-lateral neck, rt-palm & wrist, chest & facial abrasion under lt-eye.
## 34399                                                                                                                                      EE states came home and notice his lt leg was swollen and in pain. Superficial blood clot due to prolong standing and sitting
## 34400                                                                                                                                                                                              EE states came in contact with poison ivy while cutting a hazard tree
## 34401                                                                                                                                                                                                                                            EE states carpal tunnel
## 34402                                                                                                                                                                                              EE states carpal tunnel results of continuous use of computer, typing
## 34403                                                                                                                                       EE states carpel tunnel of the thumb--repetitive use of hands for keying numbers/information into computer and use of mouse.
## 34404                                                                                                                                                                EE states carrying box of cost reports from mail room, 25-35lbs, which caused pain in neck and back
## 34405                                                                                                                                                       EE states carrying groceries in both hands into front door when EE fell over first step landing onright knee
## 34406                                                                                                                                                                                        EE states carrying tool tray; tripped on sidewalk; sidewalk stands 3 1/2 ()
## 34407                                                                                                                                                                                           EE states changing client, when rolled client, jammed lt thumb and wrist
## 34408                                                                                                                  EE states changing client-stomping-lifting clients legs w/ one hand sliding udder client w/ other, later in day felt pain in lower l side of back
## 34409                                                                                                                                           EE states changing needle port from one site to another when neddle stuck second finger l hand, needle penetrated gloved
## 34410                                                                                                                                              EE states checking behind vending machines in visitation smelled like machine was buring tripped over electrical cord
## 34411                                                                                                                                   EE states checking the yd#3 gate to see if locked,, something sharp was sticking out from the bottom and cut her rt index finger
## 34412                                                                                                                                                                                 EE states cleaning showers at the time, didn't pay any attention to what happened.
## 34413                                                                                                                                                  EE states cleaning wheelchair; hit knuckle (left hand 2nd finger) against metal part of chair. Swollen finger. ()
## 34414                                                                                                                  EE states clearing up sewing room. Pulled the clothing cart and struck the marking machine. Her right hand got caught between th cart and machine
## 34415                                                                                                                             EE states client attempting to run out bldg., she went after him. Client turned around and hit EE inface with his hand. Head contusion
## 34416                                                                                                                    EE states client became aggressive and had to be retrained, during the restraint, client spit in EE's face, afterward EE's back started to hurt
## 34417                                                                                           EE states client came into kitchen; took another client's soda. EE had her hand on the cup; client wrapped her hands on EE's hands and bit EE's left hand on the top. ()
## 34418                                                                                                                                                          EE states client came running out of room making noises, grabbed EE's arm digging nails into left arm. ()
## 34419                                                                                                                                                                                                                              EE states client forced him nito wall
## 34420                                                                                                                                                                                                            EE states client headbutted EE striking her in thenose.
## 34421                                                                                                                                         EE states client jumped up from the table and assaulted EE and another client hten EE again the attacks lasted about 5mins
## 34422                                                                                                                                                                                                                            EE states client kicked her in the knee
## 34423                                                                                                                           EE states client ran into her w/elbows sticking out and struck EE in the middle of the forehead EE saw stars and dots for a few moments.
## 34424                                                                                                                                                         EE states client ran into her with a wheelchair and catching her hand between the wheelchair and the wall.
## 34425                                                                                                                                                                                                                         EE states client scratched her on the arm.
## 34426                                                                                      EE states client sliding down in chair; call for help; nurse placed arm under left arm; EE placed arm under right arm; pulled client up and felt a pull in right shoulder. ()
## 34427                                                                                                                                                                                                                                 EE states client spit in EE's eye.
## 34428                                                                 EE states client started toward street; she turned to redirect and foot got hung around swing leg and EE lost balance falling forward on patio floor hurting both knees, ankles and left wrist. ()
## 34429                                                                                                                                                           EE states client struck her in the face. Client had been placed in proper hold after becoming agressive.
## 34430                                                                                                                                                                                                       EE states client struck her on the rt arm and shoulder area.
## 34431                                                                                                                                                                                          EE states client walked up and hit me in my lt breast. Pain in lt breast.
## 34432                                                                                                                                                                                                      EE states client was biting and scratching during a restraint
## 34433                                                                                                                                                                                                       EE states client was fighting staff and client bitee on hip.
## 34434                                                                                                                                   EE states client was getting changed. Client was in behavior, EE trying to clean client. When finished, EE felt pain in back. ()
## 34435                                                                                                                                        EE states client was getting in and out of bed; while lifting client off floor throughout night back became stiff and sore.
## 34436                                                          EE states client was in behavior; she was assisting in holding client by performing medical procedure; client was resistive and had to be physically restrained; my shoulder was having a lot of pain. ()
## 34437                                                                                                                  EE states client was in crisis situation and had to be restrained, client was put on floor in order to bo controlled and EE banged knee on floor.
## 34438                                                                                                                                                                                      EE states client was in dayroom for 3hrs after eating then began fighting EE.
## 34439                                                                                                                                          EE states client was in dental office and complaining of taking to long and not wanting anything and bit the bit forearm.
## 34440                                                                                                               EE states client was striking out his arms while she was giving medication to him through feeding tube. EE had pain in back, shoulder, neck next day
## 34441                                                                                                                                                                            EE states client was walking down hallway struck EE on the rt side of face and shoulder
## 34442                                                                                                                                                                 EE states client went to hit another EE -- EE blocked the hit and client hit EE on top of lt hand.
## 34443                                                                                                                                  EE states client's foot slipped and he started to fall and she reached to try to prevent fall and she felt some pain in low back.
## 34444                                                                                                                                                                              EE states client's leg bag came loose & urine splashed onto EE's face, eyes and hair.
## 34445                                                                                                                                 EE states co-worker grabbed her by the neck and in trying to pull away from her she hit head on wall. Head contusion and sore neck
## 34446                                                                                                                                                       EE states co-worker slipped on water, EE caught her before she fell, but EE slipped hurting back of lt side.
## 34447                                                                                                                      EE states code was called out and responded while placing cervical collar on pt mild ammonia capsuleup pt nose and smell burned EE eyes/nose.
## 34448                                                                                                                   EE states col garrett was trying to start pressurewasher. EE walked behind him, his hand slipped off the rope handle and hit right side of mouth
## 34449                                                                                                                                                  EE states combative patient was being escorted to eto. EE's shoulder was dislocated during struggle with patient.
## 34450                                                                                                                                         EE states combative pt attacked her by kicking, pulling hair out and scratching---injury to head &neck---scratch under eye
## 34451                                                                                                                         EE states coming out of old segregation after locking the door, a wooden board fell from againstthe wall and hit EE on the lt side of head
## 34452                                                                                                                                                                                       EE states coming to work and stepped on steps which had debris on them, fell
## 34453                                                                                                                                                                                                       EE states conference table legs broke and injured both legs.
## 34454                                                                                                                                                                            EE states constant ringing of telephone gives severe headaches, and ringing in the ear.
## 34455                                                                                                                                                                                                              EE states corner of piece of paper stuck in right eye
## 34456                                                                                                                                                                        EE states cup of hot coffee slipped out of her hand and landed on left forearm causing burn
## 34457                                                                                                                                                                                                      EE states cut fingers on food processor for district function
## 34458                                                                                                                                                                                                                        EE states cut hand on can with sharpe edge.
## 34459                                                                                                                                                                                                                  EE states cut the top of rt hand on nail in door.
## 34460                                                                                                                                                                                                                      EE states cut with scissors on right thumb ()
## 34461                                                                                                                                                                        EE states cutting up student social security number with scissors and cut top of left thumb
## 34462                                                                                                                                                                                       EE states dealing with agitated patient, pulled l back while lifting patient
## 34463                                                                                                                                                                                                   EE states developed back building by buld jesus christ superstar
## 34464                                                                                                                                   EE states developed psych, emotional, and physicalinjuries resulting from supervisor refusing to al low to leave work when sick.
## 34465                                                                                                                                                                                                 EE states dipping cages in vercon and chemicals splashed into eyes
## 34466                                                                                                                                                                      EE states doing a training course he got some of the pepper spray in his eye and on this hand
## 34467                                                                                                                                                                                     EE states doing cell extraction training he was struck in the eye and forehead
## 34468                                                                                                                                                    EE states doing various typing, and keying has developed pain in both hands- had prev neck, back probs in 1996.
## 34469                                                                                                                                         EE states door has hump in mid EE was standing in doorway, turned around, foot stayed btwn hump and floor, twisted rt knee
## 34470                                                                                                                                                                                                                                   EE states door shut on her thumb
## 34471                                                                                                                                                      EE states door to quiet room slammed on rt hand causing swelling to lateral aspect of hand. Fracture rt hand.
## 34472                                                                                                                                                                                 EE states driving at night to conduct a home visithe was struck by another vehicle
## 34473                                                                                                                      EE states driving company vehicle to get acqurium supplies when she was struck by another vehicle trying to make a left turn. Whiplash injury
## 34474                                                                                                                                                                                      EE states driving perimeter vehicle with no air conditioner and got very hot.
## 34475                                                                                                               EE states due to a fire the smell was so strong EE tried to let the windows up to air out the rm. EE had to pull up hard on window felt pull in back
## 34476                                                                                                                                                                                                               EE states due to clerical duties she has pain wrist.
## 34477                                                                                                                                 EE states due to climbing up & down a 20'extentionladder while emt Mr Price, knee on rt side swelled up & developed some stiffness
## 34478                                                                                                     EE states due to daily repetitive hand use in keying data, handling large stacks of files, and mail problem is beginning to start in left hand and left thumb.
## 34479                                                                                                                                                    EE states due to repetitve motion of gasping of tapes/boxes with rt hand caused sharp pain in inner elbow area.
## 34480                                                                                                                                                                                                             EE states due to striking her head on desk she fainted
## 34481                                                                                                                                                               EE states due to the heater malfunction the fumes from the heater has caused headaches and dizziness
## 34482                                                                                                                                                        EE states due to the internal investigation on her2 supervisors she has suffered emotion and mental stress.
## 34483                                                                                                                                                                          EE states due to the low humidity under extreme condition his skin has started to cracked
## 34484                                                                                                                                                                    EE states due to the nature of her job duties she sustained lateral epicondylitis of her lt arm
## 34485                                                                                                                              EE states due to the repetitive motion of typing everyday she has developed carpal tunnel syndrome neck, shoulder, arm, and hand pain
## 34486                                                                                                                                                                                      EE states due to the repetitive motion on job her lt arm is in constance pain
## 34487                                                                                                                             EE states due to uneven & broken pavement she tripped and fell on campus while returning from lunch injuring rt ankle abrasion lt knee
## 34488                                                                                                                                                              EE states during a baton training course she lost her balance and fell striking her head on the floor
## 34489                                                                                                                                                                                                  EE states during a bicycle training class he injured his lt knee.
## 34490                                                                                                                                                       EE states during a breakfast feeding serving inmates an inmate grabbed EE rt hand injurying hand and fingers
## 34491                                                                                                                                                                                              EE states during a cell search he was struck in the face by an inmate
## 34492                                                                                                                                                              EE states during a certification training course his knee gave away causing him to fall to the ground
## 34493                                                                                                                                                                          EE states during a computer training course she noticed pain and swelling of the lt hand.
## 34494                                                                                                                                                                                           EE states during a confrontation with an inmate he injured his lt thumb.
## 34495                                                                                                                                                                                           EE states during a confrontation with an inmate he injured his rt thumb.
## 34496                                                                                                                                                                       EE states during a confrontation with an inmate heinjured his lt shoulder and lt chest area.
## 34497                                                                                                                                                                                            EE states during a confrontation with an inmate hejammed his lt finger.
## 34498                                                                                                                                                                                  EE states during a course of firearms she became dizzy and fainted from the heat.
## 34499                                                                                                                        EE states during a crisis situation, ran from one side of bldg to other side to assist with physicalrestraint of a student, injured l back.
## 34500                                                                                                                                                                                       EE states during a curfew check he slipped and fell on ice injuring his back
## 34501                                                                                                                                                                                   EE states during a curfew check he slipped on dampgrass and twisted his lt knee.
## 34502                                                                                                                                                                                   EE states during a curfew check he stepped into a ditch and twisted his rt knee.
## 34503                                                                                                                              EE states during a curfew check he tripped on a railroad tie-in attempt to break the fall he felt a sharp pain in his neck and lt arm
## 34504                                                                                                                                        EE states during a curfew check he was running from a dog when he stepped on a board causing a nail to puncture his rt foot
## 34505                                                                                                                                                                                                                   EE states during a daily prayer injured his shin
## 34506                                                                                                                                                                                                              EE states during a duck hunt he reinjured his rt knee
## 34507                                                                                                                                                                                           EE states during a fire control his neck, legs, handskin, ---was injured
## 34508                                                                                                                                                                                                       EE states during a fire drill he struck the back of his head
## 34509                                                                                                                      EE states during a fire range course he reinjured his back while standing up from a squatting position**previous claim file in 1997**********
## 34510                                                                                                                                                                                                    EE states during a fire range shooting her shoulder was injured
## 34511                                                                                                                                                         EE states during a firearm requalification course the recoil of a shotgun caused injury to her rt shoulder
## 34512                                                                                                                                                                         EE states during a firearm training course her rt shoulder was bruised and began to swell.
## 34513                                                                                                                                                                                        EE states during a firearm training course she felt pain in her rt shoulder
## 34514                                                                                                                                                                                                               EE states during a foot chase his rt hand was broken
## 34515                                                                                                                                                              EE states during a gun reloading class some of thepowder accidently got on her rt hand causing a burn
## 34516                                                                                                                                                                                             EE states during a handcuff training technique he injured his rt wrist
## 34517                                                                                                                                                     EE states during a home visit he stepped on a water meter cover and fell injurying his lt knee and lt shoulder
## 34518                                                                                                                                                                                         EE states during a home visit he was bitten by a dog on the lt inner thigh
## 34519                                                                                                                                                                                EE states during a home visit of a probationer he was bitten by a dog on the lt arm
## 34520                                                                                                                                                                               EE states during a home visit of a probationer he was bitten on the rt hand by a dog
## 34521                                                                                                                                                                 EE states during a home visit of an offender she stepped on uneven gravel and twisted her lt ankle
## 34522                                                                                                                                                                  EE states during a home visit of an offender she stepped onto the ground and twisted her lt ankle
## 34523                                                                                                                                                                                       EE states during a home visit she slipped and fellinjuring her back and hand
## 34524                                                                                                                                                                                                              EE states during a home visit she was bitten by a dog
## 34525                                                                                                                                                         EE states during a lethal defense training course she notices pain of her rt shoulder, arm, neck, and back
## 34526                                                                                                                                                                                      EE states during a lethal training technique he injured his rt hand and wrist
## 34527                                                                                                                                                                                              EE states during a lineup his rt hand was bitten by an unknown source
## 34528                                                                                                                                                                                         EE states during a locker search her lt hand thumbwas puntured by a needle
## 34529                                                                                                                                                                               EE states during a locker search her rt thumb was caught in the shelve of the locker
## 34530                                                                                                                                                                                    EE states during a med call her finger was caught between the window and frame.
## 34531                                                                                                                                                                                           EE states during a pert training class he felt a pop in his lt shoulder.
## 34532                                                                                                                                                                                                EE states during a pert training course his lt forearm was injured.
## 34533                                                                                                                                                              EE states during a pert training course she was knocked on the concrete floor injuring her lt buttock
## 34534                                                                                                                     EE states during a physical altercation with a disruptive inmate, EE received small lacerations on the back of right hand and upper right arm.
## 34535                                                                                                                                                                      EE states during a physical confrontation with inmate he struck his rt hand against the floor
## 34536                                                                                                                                                                 EE states during a physical restraint on an out ofcontrol student he was scratched by the student.
## 34537                                                                                                                                                                                                      EE states during a pit hold on client she injured her rt toe.
## 34538                                                                                                                                                                            EE states during a pit procedure he tripped and fell striking his head against the wall
## 34539                                                                                                                                                                 EE states during a refresher gun course the gun kicked back causing injury to her rt shoulder area
## 34540                                                                                                                                              EE states during a room search an inmate grabbed her--EE has stratches across upper chest and lt and rt hand/knuckles
## 34541                                                                                                                                                                           EE states during a routine check and visit she wasbitten by a rat on the lt index finger
## 34542                                                                                                                                                                 EE states during a routine check he was stabbed on the lt arm with an unknown object by an inmate.
## 34543                                                                                                                                                             EE states during a routine check her finger was caught between a clipboard and bars on control boothe.
## 34544                                                                                                                             EE states during a routine check on inmates he started to climb the stairwell when he felt a sharp pain above the knee cap of rt knee.
## 34545                                                                                                                                                                                       EE states during a routine search on an inmate his lt middle finger was cut.
## 34546                                                                                                                                                                        EE states during a school function she slipped andfell on tennis court injuring her rt hand
## 34547                                                                                                                                                                                         EE states during a search an inmate closed the locker door on her rt knee.
## 34548                                                                                                                                                 EE states during a search in a unit he picked up a razor blade that was on the floor and cut his rt middle finger.
## 34549                                                                                                                                                                      EE states during a search on an inmate the inmate grabbed his lt hand injurying his lt thumb.
## 34550                                                                                                                                                                                 EE states during a search procedure he knelt down on his lt knee which caused pain
## 34551                                                                                                                                                                                 EE states during a search procedure his lt hand palm was punctured with an ink pen
## 34552                                                                                                                                                                                                EE states during a self defense training class he injured his back.
## 34553                                                                                                                                                                                      EE states during a self defense training class he injured his rt shoulder/arm
## 34554                                                                                                                                                                                           EE states during a self defense training course he injured both shoulder
## 34555                                                                                                                                                                                       EE states during a self defense training course he injured his low back area
## 34556                                                                                                                                                              EE states during a self defense training course he kneel down on a mat and heard a pop in his rt knee
## 34557                                                                                                                                   EE states during a self defense training course he was thrown by his partner causing injury to hiscervical spine and rt shoulder
## 34558                                                                                                                                                                                       EE states during a self defense training course her lt wrist started hurting
## 34559                                                                                                                                                                                       EE states during a self defense training course her rt shoulder was injured.
## 34560                                                                                                                                                                                                 EE states during a self defense training his rt wrist was injured.
## 34561                                                                                                                                                                                                  EE states during a self defense training she injured her rt elbow
## 34562                                                                                                                                                                                          EE states during a self defense training techniqueshe twisted her rt knee
## 34563                                                                                                                                                                                            EE states during a self denfense class he twisted his rt middle finger.
## 34564                                                                                                                                EE states during a self denfense training class he stood up from a prone position and stepped the wrong way the twisted his lt knee
## 34565                                                                                                                                                                                           EE states during a self denfense training course he injured his lt knee.
## 34566                                                                                                                                                                                        EE states during a self denfense training course he injured his lt shoulder
## 34567                                                                                                                                                                                  EE states during a self denfense training technique he felt his rt wrist/hand pop
## 34568                                                                                                                                                                                                 EE states during a sercuity check he cut his lt finger on a fence.
## 34569                                                                                                                                                                                               EE states during a sercuity check he turned and twisted his lt knee.
## 34570                                                                                                                                                       EE states during a sercuity check of a dump truck the hood of the dump truck fell injurying her rt shoulder.
## 34571                                                                                                                                                                                             EE states during a shotgun training course she injured her rt shoulder
## 34572                                                                                                                                                                                       EE states during a site investigation for marijauana he was exposed to ticks
## 34573                                                                                                                                                          EE states during a technique with a baton her lt ring finger struck the baton causing a stingingsensation
## 34574                                                                                                                                                                                        EE states during a timber exam a tree limb swung striking EE in the lt eye.
## 34575                                                                                                                                                           EE states during a training activity she lifted a table to move when the top of table fell on her rtfoot
## 34576                                                                                                                                                                                         EE states during a training cell extraction he felt a pop in his rt elbow.
## 34577                                                                                                                                                                                               EE states during a training course a door struck him on the lt hand.
## 34578                                                                                                                                                                                 EE states during a training course another officergrabbed his rt wrist and bent it
## 34579                                                                                                                                                                                      EE states during a training course he fell off a pole and landed on his back.
## 34580                                                                                                                                                                                        EE states during a training course he felt sharp pain in his shoulder/elbow
## 34581                                                                                                                                                                                                          EE states during a training course he injured his rt knee
## 34582                                                                                                                                                                                        EE states during a training course he started having pain in his lower back
## 34583                                                                                                                          EE states during a training course he was running thru some woods when a tree branch caught his pantleg causing him to twist his lt knee.
## 34584                                                                                                                                                                      EE states during a training course her rt foot wascaught on a mat causing pain of the rt knee
## 34585                                                                                                                                                                              EE states during a training course his rt elbow was twisted and struck against a wall
## 34586                                                                                                                                                                                            EE states during a training course she became nausea and began to vomit
## 34587                                                                                                                                                                                          EE states during a training course she felt pain in her upper rt arm area
## 34588                                                                                                                                                                            EE states during a training course she injured her neck and was exposed to pepper spray
## 34589                                                                                                                                                                                                         EE states during a training course she injured herlt wrist
## 34590                                                                                                                                                                                               EE states during a training exercise his leg was struck with a baton
## 34591                                                                                                                                                                                                      EE states during a training exercise his rt thumb was injured
## 34592                                                                                                                                                                     EE states during a training exercises he came in contact with poison ivy--lt and rt arms/hands
## 34593                                                                                                                                                                                                EE states during a training procedure she injured her rt hand/elbow
## 34594                                                                                                                                                                                                             EE states during a training session he injured hisback
## 34595                                                                                                                                                             EE states during a training session he injured hisback while trying to reposition his training partner
## 34596                                                                                                                                                                                           EE states during a training session he injured hisback, hip, and rt leg.
## 34597                                                                                                                                                                                                  EE states during a training tactic he hyper extended his rt wrist
## 34598                                                                                                                                                                                           EE states during a training technique he fell and landed on his rt thumb
## 34599                                                                                                                                                                                                 EE states during a training technique he felt a pop in his lt knee
## 34600                                                                                                                                                                                                EE states during a training technique he felt painin his groin area
## 34601                                                                                                                                                                                           EE states during a training technique he felt painin his lt and rt wrist
## 34602                                                                                                                                                                                                          EE states during a training technique he injured his back
## 34603                                                                                                                                                                                                EE states during a training technique he injured his neck/back area
## 34604                                                                                                                                                                                        EE states during a training technique he injured his rt leg and rt shoulder
## 34605                                                                                                                                                                                                   EE states during a training technique he injured his rt leg/knee
## 34606                                                                                                                                                                              EE states during a training technique she fell on a floor mat and injured her lt knee
## 34607                                                                                                                                                                                             EE states during a unarmed self defense class her rt wrist was injured
## 34608                                                                                                                                               EE states during a unarmed self defense training she tripped over someone and fell causing injury to her rt shoulder
## 34609                                                                                                                                                                                         EE states during a use of force an inmate threw some unknown liquid at him
## 34610                                                                                                                    EE states during a use of force an inmate was assanlting a staff member and after oc pepper failed to stop inmate he hit inmates face with fist
## 34611                                                                                                                                                                         EE states during a use of force he fell on the floor and injured his lt leg and both arms.
## 34612                                                                                                                                                                                              EE states during a use of force he got some pepperspray in both eyes.
## 34613                                                                                                                                                                                                          EE states during a use of force he injured his lt finger.
## 34614                                                                                                                                                                                     EE states during a use of force he somehow injuredhis right arm and right knee
## 34615                                                                                                                                                                                        EE states during a use of force he was kicked by a staff member in the face
## 34616                                                                                                                                                                               EE states during a use of force on an inmate EE struck the inmate head with his fist
## 34617                                                                                                                                         EE states during a use of force on an inmate and while placing inmate in handcuffs he received a scratch to the rt forearm
## 34618                                                                                                                                                  EE states during a use of force on an inmate he came in contact with blood to the open skin of the lt ring finger
## 34619                                                                                                                                                                        EE states during a use of force on an inmate he felt a pop in his rt shoulder and both arms
## 34620                                                                                                                                                                                          EE states during a use of force on an inmate he injured his back and arms
## 34621                                                                                                                                                                                                EE states during a use of force on an inmate he injured his lt knee
## 34622                                                                                                                                                                                       EE states during a use of force on an inmate he injured his lt knee and neck
## 34623                                                                                                                                                                                               EE states during a use of force on an inmate he injured his rt elbow
## 34624                                                                                                                                                                                    EE states during a use of force on an inmate he injured his rt hand and fingers
## 34625                                                                                                                                                                                               EE states during a use of force on an inmate he injured his rt hand.
## 34626                                                                                                                                                                                         EE states during a use of force on an inmate he injured his rt hand/finger
## 34627                                                                                                                                                                                        EE states during a use of force on an inmate he injured his rt index finger
## 34628                                                                                                                                                                                            EE states during a use of force on an inmate he injured his rt shoulder
## 34629                                                                                                                                                                            EE states during a use of force on an inmate he received at scatch to his rt upper arm.
## 34630                                                                                                                                                                                  EE states during a use of force on an inmate he struck his rt hand against a wall
## 34631                                                                                                                                                                                                EE states during a use of force on an inmate he twisted his lt knee
## 34632                                                                                                                                                                  EE states during a use of force on an inmate he was accidentally struck by a baton on the lt hand
## 34633                                                                                                                                             EE states during a use of force on an inmate he was caught between a door frame and inmate cutting his lt index finger
## 34634                                                                                                                                                                                 EE states during a use of force on an inmate he was cut by a razor on the rt thumb
## 34635                                                                                                                                            EE states during a use of force on an inmate he was pushed against the wall by the inmate striking his lt shoulder area
## 34636                                                                                                                                                                         EE states during a use of force on an inmate he was sprayed with pepper spray in both eyes
## 34637                                                                                                                                                                             EE states during a use of force on an inmate he was struck with a baton to the rt hand
## 34638                                                                                                                                                                                         EE states during a use of force on an inmate her lt knee struck the floor.
## 34639                                                                                                                                                                            EE states during a use of force on an inmate his back, shoulder, and lt leg was injured
## 34640                                                                                                                                                                                             EE states during a use of force on an inmate his lt wrist was injured.
## 34641                                                                                                                                                                                          EE states during a use of force on an inmate his rt forearm was scratched
## 34642                                                                                                                                                                                           EE states during a use of force on an inmate his rt hand/eye was injured
## 34643                                                                                                                                                                                          EE states during a use of force on an inmate his rt shoulder was injured.
## 34644                                                                                                                                                                          EE states during a use of force on an inmate his rt wrist and lt ring finger was injured.
## 34645                                                                                                                                                                                                EE states during a use of force on an inmate injuring lt hand/thumb
## 34646                                                                                                                                                                              EE states during a use of force on an inmate she fell to the floor injurying his back
## 34647                                                                                                                                   EE states during a use of force on an inmate she fell to the floor on both knees while attempting to prevent inmate from falling
## 34648                                                                                                              EE states during a use of force on an inmate str uck his rt elbow on the wall of a cell this occurred while EE and other staff were trying to restrai
## 34649                                                                                                                                                                                      EE states during a use of force on an inmate the inmate bit his lt upper arm.
## 34650                                                                                                                                                                           EE states during a use of force on an inmate the inmate fell on him injuring his lt hand
## 34651                                                                                                                                                                            EE states during a use of force on an inmate the inmate grabbed his hand and scratch it
## 34652                                                                                                                                              EE states during a use of force on an inmate the inmate pushed him into some steel bars causing a cut to his forehead
## 34653                                                                                                                                                                                             EE states during a use of force on an inmate the inmate spitted on him
## 34654                                                                                                                                                                                     EE states during a use of force on an inmate the inmate struck EE in the face.
## 34655                                                                                                                               EE states during a use of force on an inmate the inmate struck him in the face with knee and also he was exposed to the inmate blood
## 34656                                                                                                                                                       EE states during a use of force on an inmate the inmate struck him on the rt hand and rt wrist withhis foot.
## 34657                                                                                                                                                                                            EE states during a use of force on inmate he came in contact with blood
## 34658                                                                                                                                                                                                            EE states during a use of force she injured her rt knee
## 34659                                                                                                                                                                                                        EE states during a use of force she was bitten by an inmate
## 34660                                                                                                                                                                            EE states during a use of force with an inmate he received a laceration to his rt hand.
## 34661                                                                                                                                                                                       EE states during a use of force with an inmate his elbow struck a steel bed.
## 34662                                                                                                             EE states during a visit to the Dr. For a non-job related injury he diagnosed EE w/tindinitis in both wrists. Prescribed brace to the rt hand the wors
## 34663                                                                                                                                                                          EE states during a visit to the offender home he lost his balance twisting his lower back
## 34664                                                                                                                                        EE states during a woodland search he was walking thru some woods when he stepped into a hole and fell twisting his lt knee
## 34665                                                                                                                                                                                                 EE states during air pack training he received a cut on his rt arm
## 34666                                                                                                                                                                                          EE states during an altercation with an inmate he was struck on the nose.
## 34667                                                                                                                                                                                    EE states during an altercation with an inmate hisrt hand struck the bed frame.
## 34668                                                                                                                         EE states during an anticiapted use of force EE fot left hand caught between helmet and the hand restraints causing lacerations to fingers
## 34669                                                                                                                                                                  EE states during an anticipated use of force with an inmate, he injured both arms (swollen wrist)
## 34670                                                                                                                                                                            EE states during an award presentation he slipped and fell injuring his rt arm/shoulder
## 34671                                                                                                                EE states during an emergency with sick officer she was assisting other medical personnel getting officer on exam table she felt pull in lower back
## 34672                                                                                                                                                                    EE states during an investigation of a wetland he recd a tick bite to the rt eye and groin area
## 34673                                                                                                                                                                              EE states during an outing with client she felt a muscle pull on the lt side of back.
## 34674                                                                                                                                                                                         EE states during an unarmed self defense class she injured her lt shoulder
## 34675                                                                                                                                                                                EE states during an unarmed self defense training he felt pain in his rt groin area
## 34676                                                                                                                                                                                             EE states during an unarmed self defense training his back was injured
## 34677                                                                                                                                                                        EE states during an unarmed self defense training technique he fell landing on his rt elbow
## 34678                                                                                                                                                               EE states during an unarmed self defense training technique her lt hand/finger was struck by a baton
## 34679                                                                                                                                 EE states during annual firearms training I was instructed to fire from a kneeling postion when I felt a sharp pain in my hip area
## 34680                                                                                                                                                 EE states during anticipated use of force on england unit. EE rec'd two smal cuts on his ring fingeron right hand.
## 34681                                                                                                                                                                                 EE states during anticipated use of force on inmate he somehow injured his rt leg.
## 34682                                                                                                                                                                                   EE states during baton class, EE injured her left shoulder during front exercise
## 34683                                                                                                                                                                                            EE states during baton training he was struck in the mouth with a baton
## 34684                                                                                                                                                                                                            EE states during baton training she injured her rt knee
## 34685                                                                                                                      EE states during baton training the stretching and twisting has caused the lining of her rib cage to become inflammed and shortness of breath
## 34686                                                                                                                                                                                                           EE states during beach trip there was excessive lifting.
## 34687                                                                                                                                                                                                        EE states during camp activity-tug-of-wag, EE injured ankle
## 34688                                                                                                                                                                        EE states during cell check round he turned and twisted the wrong way and injured his back.
## 34689                                                                                                                                                                                         EE states during cell extraction training he fell injuring his rt leg/knee
## 34690                                                                                                                                                                                             EE states during cell extraction training he felt a pop in his rt knee
## 34691                                                                                                                                          EE states during cell extraction training he inhaled a large amount of pepper spray which has caused respiratory problems
## 34692                                                                                                                                                                                               EE states during cell extraction training he injured his lt shoulder
## 34693                                                                                                                                                                                           EE states during cell extraction training he injured his rt hand/fingers
## 34694                                                                                                                                                                                                  EE states during cell extraction training he injured his rt wrist
## 34695                                                                                                                                                                                                  EE states during cell extraction training he twisted his lt ankle
## 34696                                                                                                                                                                   EE states during cell extraction training he was accidently struck by another EE in the rib cage
## 34697                                                                                                                                                                    EE states during cell extraction training he was taken down to the floor & fell on his rt hand.
## 34698                                                                                                                                                                                      EE states during cell extraction training his lt leg and shoulder was injured
## 34699                                                                                                                                                                                       EE states during cell extraction training his rt knee and rt arm was injured
## 34700                                                                                                                                                                             EE states during cell training slipped on exercisemat when he pulled a muscle in groin
## 34701                                                                                                                                                                                    EE states during curfew check she stepped from a porch and injured her rt knee.
## 34702                                                                                                                    EE states during field contact with offender she was driving the state vehicle when she failed to stop causing an accident with another vehicle
## 34703                                                                                                                                                                                          EE states during field investigation he was rear-ended by another vehicle
## 34704                                                                                                                                                                                          EE states during field research she was bitten by fire ants on the rt arm
## 34705                                                                                                                                                                                                     EE states during field work he came in contact with posion ivy
## 34706                                                                                                                                                                                                   EE states during fire range training his rt shoulder was injured
## 34707                                                                                                                                                                                  EE states during firearm training course he noticea cracking sounds in his lt ear
## 34708                                                                                                                                                                                                                 EE states during firearm training he became dizzy.
## 34709                                                                                                                                                                                       EE states during firearm training he bent down and felt a pop in his lt knee
## 34710                                                                                                                                                                                                         EE states during firearm training he felt pain in his neck
## 34711                                                                                                                                                                                                      EE states during firearm training she injured her rt shoulder
## 34712                                                                                                                                                                                 EE states during firearm training she injured her rt upper arm--recoil from firing
## 34713                                                                                                                                                                                                          EE states during firearm training she was stung by a bee.
## 34714                                                                                                                                                     EE states during firearm training, the weapon kicked back several times with a lot of force in her lt shoulder
## 34715                                                                                                                                              EE states during foot patrol he tried to go under a tree limb when he twisted his body causing injury to his rt knee.
## 34716                                                                                                                                                  EE states during home visit he lost his balance and while trying to keep himself from falling he injured his back
## 34717                                                                                                                                                                    EE states during home visit of a resident he was bitten by the resident dog on the lower lt leg
## 34718                                                                                                                                                                               EE states during inspection he was pricked by a squirrel claw on the rt index finger
## 34719                                                                                                                                                                                                      EE states during laundry duties she noticed pain in her wrist
## 34720                                                                                                                                                                           EE states during medication rounds an inmate threw a milk carton containing urine at her
## 34721                                                                                                                                                                                       EE states during oc pepper spray training she suffered respiratory disorder.
## 34722                                                                                                                                                                        EE states during office renovation she lifted a computer injuring her lt shoulder/neck area
## 34723                                                                                                                                                                                         EE states during pepper spray training he was sprayed directly in the eyes
## 34724                                                                                                                                                                                                 EE states during pepper spray training he was sprayed in the face.
## 34725                                                                                                                                                                      EE states during pepper spray training she began to have intense headaches and blurred vision
## 34726                                                                                                                                                                                   EE states during pepper spray training she was exposed to pepper spray in lt eye
## 34727                                                                                                                                                            EE states during pepper spray training some of the pepper spray got into both eyes causing inflammation
## 34728                                                                                                                                                                             EE states during pert baton training staff fell on top of him injuring his lt shoulder
## 34729                                                                                                                                                                                                     EE states during pert training exercises he injurehis rt ankle
## 34730                                                                                                                                                                                                    EE states during pert training he felt pain in hislow back area
## 34731                                                                                                                                                                                                              EE states during pert training he injured his rt knee
## 34732                                                                                                                                                                                      EE states during pert training he jumped over a ditch and twisted his lt knee
## 34733                                                                                                                                                                                                 EE states during pert training he noticed his rt wrist was swollen
## 34734                                                                                                                                                                                                  EE states during pert training he pulled a muscle in his lt thigh
## 34735                                                                                                                                                                                        EE states during pert training he slipped on a rock and twisted his rt knee
## 34736                                                                                                                                                                                       EE states during pert training he stepped the wrong way and twisted rt ankle
## 34737                                                                                                                                                                                              EE states during pert training he tripped and fellover another EE leg
## 34738                                                                                                                                                                                                             EE states during pert training he twisted his lt knee.
## 34739                                                                                                                                                       EE states during pert training he was crawling lowto the ground when he struck his lt knee on something hard
## 34740                                                                                                                                     EE states during pert training he was getting out of state van when he slipped on the metal step puncturing a hole in left leg
## 34741                                                                                                                                                 EE states during pert training he was running a two miles run when he turned the wrong way and injured his lt knee
## 34742                                                                                                                                                                                              EE states during pert training he was running when injured both knees
## 34743                                                                                                                                                                                                              EE states during pert training his lt arm was injured
## 34744                                                                                                                                                                                                             EE states during pert training his rt foot was injured
## 34745                                                                                                                                                                          EE states during pert training several team memberfell on his rt leg injuring his rt knee
## 34746                                                                                                                                                                               EE states during pert training she became over heated and start feeling light headed
## 34747                                                                                                                                                                                                       EE states during pert training she was struck on the lt leg.
## 34748                                                                                                                                                                                           EE states during pert training while running she re injured her rt foot.
## 34749                                                                                                                                                                                     EE states during pert training while utilizing a baton his lt arm was injured.
## 34750                                                                                                                                     EE states during phyisical training while performing the flutter kick exercise, she pulled muscle in pelvis and groin area. ()
## 34751                                                                                                                                                                                   EE states during pic EE feels pain in knee cap fells like a rock is behind knee.
## 34752                                                                                                                                                               EE states during pic class after he put an instructor down on the mat he hurt his lt knee. No accid.
## 34753                                                                                                                                                                                          EE states during pic training EE's rt hand/wrist wassqueezed and grabbed.
## 34754                                                                                                                                                                                                    EE states during pit training she felt a pop in her chest area.
## 34755                                                                                                                                                                                      EE states during playground activity she fell injuring her lt elbow and wrist
## 34756                                                                                                                                                                                                         EE states during pt training he started having chest pains
## 34757                                                                                                                                           EE states during road crew and while loading a dump truck a heavy door cut off the tip of his finger. EE is not working.
## 34758                                                                                                                                                                              EE states during road squad an inmate stomp his rt foot and struck EE in the stomach.
## 34759                                                                                                                                                                                         EE states during role call, patient became violent and began to hit writer
## 34760                                                                                                             EE states during rope training one of the trainee was being pulled up the wall and starting to fall when EE reached over to pull him up straining back
## 34761                                                                                                                                                                                  EE states during round checks something blew from the ceiling fan into her lt eye
## 34762                                                                                                                                                                  EE states during routine checkup for inmates an inmate threw a cup with unknown substances at him
## 34763                                                                                                                                                                                              EE states during routine chemical extractions she developed back pain
## 34764                                                                                                                                                                                          EE states during routine testing of funnels she started having back pain.
## 34765                                                                                                                                                                                                      EE states during security check she struck her legon a chair.
## 34766                                                                                                                                                                               EE states during security check while walking down a slope he twisted his rt ankle..
## 34767                                                                                                                                                                    EE states during self defense training another officer kicked him in the lt leg below the knee.
## 34768                                                                                                                                                                         EE states during self defense training class she noticed pain of the rt side of neck area.
## 34769                                                                                                                                                                                                EE states during self defense training course he injured his chest.
## 34770                                                                                                                                                                                            EE states during self defense training he felt pain in his abdomen area
## 34771                                                                                                                                                                                                        EE states during self defense training he injured his back.
## 34772                                                                                                                                                                                                   EE states during self defense training he injured his lower back
## 34773                                                                                                                                                                                                      EE states during self defense training he injured his lt hand
## 34774                                                                                                                                                                                                    EE states during self defense training he injured his lt wrist.
## 34775                                                                                                                                                                                                        EE states during self defense training he injured his neck.
## 34776                                                                                                                                                                                                     EE states during self defense training he injured his rt knee.
## 34777                                                                                                                                                                                                    EE states during self defense training he twisted his lt wrist.
## 34778                                                                                                                                                                                                        EE states during self defense training his back was injured
## 34779                                                                                                                                                                                                      EE states during self defense training his lt handwas injured
## 34780                                                                                                                                                                                                    EE states during self defense training his rt wrist was injured
## 34781                                                                                                                                                                                                   EE states during self defense training she injuredher lower back
## 34782                                                                                                                                                                                                  EE states during self defense training she injuredher lower back.
## 34783                                                                                                                                                                                                  EE states during self defense training she injuredher lt forearm.
## 34784                                                                                                                                                                                                    EE states during self defense training she injuredher lt thumb.
## 34785                                                                                                                                                                                                    EE states during self defense training she injuredher lt wrist.
## 34786                                                                                                                                                                                                      EE states during self defense training she injuredher rt knee
## 34787                                                                                                                                              EE states during self defense training she lost her balance and injured her rt knee resulting in medial meniscus tear
## 34788                                                                                                                                                                                              EE states during self denfense training he injuredhis lt ring finger.
## 34789                                                                                                                                                                                                 EE states during self denfense training she injureher lt wrist/arm
## 34790                                                                                                                                                       EE states during self denfense training technique she was thrown backward landing on her rt shoulderand face
## 34791                                                                                                                                                                                 EE states during sercuity check he open the emergency door and injured his lt hand
## 34792                                                                                                                                                                                                      EE states during sercuity check something got intohis lt eye.
## 34793                                                                                                                                                                                      EE states during shotgun training recertification she injured her lt shoulder
## 34794                                                                                                                                                    EE states during situational firearms training, running behind a student and accidently stepped wrong in a hole
## 34795                                                                                                                                                                                             EE states during staff development training he injured his lower back.
## 34796                                                                                                                                                    EE states during the attempt to bathe patient EE turned felt muscle strain and could not adjust thepatient bed.
## 34797                                                                                                                                                                                                                         EE states during the flood she was injured
## 34798                                                                                                                                     EE states during the week the gloves are not last-ing & the water from the sinks splashes back onto wrist & caused a ringworm.
## 34799                                                                                                                                                                                          EE states during the work day his shoulder became sore and uncomfortable.
## 34800                                                                                                                                  EE states during training exercise, crowd managemenpracticing striking dummy w/baton. Lost grip & baton struck top r side of head
## 34801                                                                                                                                                                                                             EE states during training he fell injuring his lt knee
## 34802                                                                                                                                                                                                             EE states during training he felt pain in his lt knee.
## 34803                                                                                                                                                                                                    EE states during training he felt pain in his rt wrist and arm.
## 34804                                                                                                                                                                                                                    EE states during training he injured his chest.
## 34805                                                                                                                                                                                                                 EE states during training he injured his lower leg
## 34806                                                                                                                                                                                                                  EE states during training he injured his lt knee.
## 34807                                                                                                                                                                                                                  EE states during training he injured his rt ankle
## 34808                                                                                                                                                                                                                 EE states during training he injured his rt elbow.
## 34809                                                                                                                                                                                                               EE states during training he injured his rt shoulder
## 34810                                                                                                                                                                                                              EE states during training he injured his rt shoulder.
## 34811                                                                                                                                                                                 EE states during training he injured his rt wrist EE was during push ups exercises
## 34812                                                                                                                                                                                                          EE states during training he pulled a muscle in rt thigh.
## 34813                                                                                                                                                                                                                  EE states during training he sprained his lt knee
## 34814                                                                                                                                                                                    EE states during training he stepped between two rocks and sprain his rt ankle.
## 34815                                                                                                                                                                                                        EE states during training he struck his head against a wall
## 34816                                                                                                                                                                                                             EE states during training he suffered heat exhaustion.
## 34817                                                                                                                                                                         EE states during training he was administered pepper spray which has caused blurred vision
## 34818                                                                                                                                                             EE states during training he was extracted thru a tire and fell to the ground striking his rt shoulder
## 34819                                                                                                                                        EE states during training he was sprayed with pepper spray causing headaches ***EE was transported by ambulance to hosp****
## 34820                                                                                                                                                                                                        EE states during training he was sprayed with pepper spray.
## 34821                                                                                                                                                                                              EE states during training he was struck by a batonin the rt rib cage.
## 34822                                                                                                                                 EE states during training he was trapped in a roomfor 15 min after a smoke grenade went off. This has caused respiratory problems.
## 34823                                                                                                                                                                                                                   EE states during training her lt arm was injured
## 34824                                                                                                                                                                                                              EE states during training his lt forearm was injured.
## 34825                                                                                                                                                 EE states during training his lt leg was caught in a fence causing EE to fall injuring his lt ankle and groin area
## 34826                                                                                                                                                                                                                 EE states during training his rt elbow was injured
## 34827                                                                                                                                                                                                          EE states during training his rt shoulder started hurting
## 34828                                                                                                                                           EE states during training on how to ride a bike athigh speed he lost control of the bike and fell injuring his lt wrist.
## 34829                                                                                                                                                                                             EE states during training session he felt pain in his groin area (hip)
## 34830                                                                                                                                                                EE states during training she caught her rt foot in a mat causing her o fall and twist her rt ankle
## 34831                                                                                                                                                                                                                    EE states during training she injured her back.
## 34832                                                                                                                                                                                                              EE states during training she injured her chest area.
## 34833                                                                                                                                                                                                                 EE states during training she injured her rt wrist
## 34834                                                                                                                                                                                                          EE states during training she was exposed to pepper spray
## 34835                                                                                                                                                                                             EE states during training she was struck with a baton on the lt finger
## 34836                                                                                                                                                     EE states during training that was conducted at a motel she was going down some steps and twisted her lt foot.
## 34837                                                                                                                                                  EE states during training was taking down her partner to the floor alleges she pulled something in her lt thigh..
## 34838                                                                                                                                                                                     EE states during training with bloodhounds he was bitten by tick in groin area
## 34839                                                                                                                                                                                                 EE states during unarmed self defense training he injured rt wrist
## 34840                                                                                                            EE states during use force situation he was bittenby inmate on the right hand between the thumb and index finger. Bit broke skin requiring med. Attent.
## 34841                                                                                                                                                                        EE states during use of force EE was struggling with inmate and right shoulder was injured.
## 34842                                                                                                                                                                                           EE states during use of force with inmate hand was cut by unknown object
## 34843                                                                                                                                              EE states during use of force, inmate was being restrained, and EE injured his lt thumb trying to handcuff the inmate
## 34844                                                                                                                                                                                                         EE states during vehicle training he injured his lt elbow.
## 34845                                                                                                                            EE states during weapon firing EE experienced temporary loss of hearing in his right ear. He wasusing bearing protection during firing.
## 34846                                                                                                                     EE states during wrestling practice with team his right arm got extended over head while preforming a move on an opponent. C/o immediate pain.
## 34847                                                                                                                                                                                                                 EE states during yard duties he sprain his lt knee
## 34848                                                                                                                   EE states during yard duties he stepped into a washout causing his lt foot to be trapped when tried to turn to release he felt a pop in his knee
## 34849                                                                                                                                                                                 EE states during yard duty he stepped onto an uneven area and twisted his rt ankle
## 34850                                                                                                                                                                                   EE states during yard duty he was bitten by an insect on the arms and neck area.
## 34851                                                                                                                                                                                                        EE states during yard patrol something flew into her rt eye
## 34852                                                                                                                                                                     EE states dust from renovation demolition & asbestos removal created sickness & req. Dr Visit.
## 34853                                                                                                                                                                                                                     EE states edema of upper left lid/eye swelling
## 34854                                                                                                                             EE states elevator ernt through inprodomal area around tooth and penetrated lt index finger dental elevator penetrated lt index finger
## 34855                                                                                                                                                                                                 EE states emptying trash and felt a sharpe pain in rt hip and back
## 34856                                                                                                                                                                                             EE states equipment was being removed from buildigand around buildings
## 34857                                                                                                                                                                                                              EE states eruptions of bumps on skin below lower lips
## 34858                                                                                                                                                                         EE states escort patient to quiet room and patient kicked staff in the front of both legs.
## 34859                                                                                                                                                                                                 EE states escorting an inmate inmate spit in officer's face & eyes
## 34860                                                                                                                                           EE states escorting inmates to shower, hands on cuffs, the inmate twisted around, EE hands caught between the handcuffs.
## 34861                                                                                                                                                                                             EE states escorting patient to quiet room. Fell onfloor on both knees.
## 34862                                                                                                                                                      EE states every time he got out of chair to check on patient he felt a sharp pain in upper shoulder and neck.
## 34863                                                                                                                                                                                         EE states excessive typing and writing has caused pain in rt arm and wrist
## 34864                                                                                                                                                                                                                          EE states excessive use of computer mouse
## 34865                                                                                                                                      EE states experiencing pain/numbness in his arms and hands in January 2000, pain has gotten worse. Cause is repetitive typing
## 34866                                                                                                                                                                                                                                EE states exposed to inmate's blood
## 34867                                                                                                                                                                                                           EE states exposed to scabies while working with patients
## 34868                                                                                                                                                           EE states eyes started itching 8/5/96 after she arrived home, eye itching, swollen almost closed and red
## 34869                                                                                                                                                      EE states fainted in the lobby of the courthouse when attempting to leave the building at the end of the day.
## 34870                                                                                                                                                                          EE states feeding chow dropped trap door to give inmate tray inmate punched me in the jaw
## 34871                                                                                                                                                                                                   EE states feel like I pulled my back but don't know how or when.
## 34872                                                                                                                                                                                               EE states fell and bruised forehaed, arms, and leg( rt knee, elbow),
## 34873                                                                                                                                                               EE states fell down stairs, got by jim henderson (shd) going to post office. Heel got lip? Of stairs
## 34874                                                                                                                                                                                                              EE states fell down steps and landed on knee and hand
## 34875                                                                                                                                                                                            EE states fell due to the uneven side walk while working the upper yard
## 34876                                                                                                                 EE states fell off loading dock twisted my knee the metal plate flap was not down and I fell between the dock a dumpster also the light was not on
## 34877                                                                                                                                                                                                       EE states fell on hand while playing basketball with client.
## 34878                                                                                                                                                                                      EE states fell on slick floor injurying left knee, lower leg, ankle and foot.
## 34879                                                                                                                                                                                             EE states fell on steps coming out of bldg injuring rt hand & knee. ()
## 34880                                                                                                                                                                                                    EE states fell while going into cathell bldg. Injured rt ankle.
## 34881                                                                                                                                                                                                          EE states fell while walking long hall from dock entrance
## 34882                                                                                                                                                                                    EE states felt dizziness, nervous system abnormalities, extreme duress & stress
## 34883                                                                                                                                                                                  EE states felt pull in r shoulder/upper arm when opening the door of handicap van
## 34884                                                                                                                                                       EE states finger was scraped on the carpet and wedged under student doing a physical restraint to the floor.
## 34885                                                                                                                             EE states finger was smashed between rocks while moving rocks in the stream to dislodge and collectmacroverterbrates in the streambed.
## 34886                                                                                                                                                               EE states fitting sheet metal on hood and racked left arm over exposed sharp edge of sheet metal. ()
## 34887                                                                                                                                                                       EE states fixing client's bed; when EE got up felt a catch in right lower back above hip. ()
## 34888                                                                                                                                                                           EE states fluid build up under knee as result of physical training during basic training
## 34889                                                                                                                                                                                                     EE states foal kicked out and caught EE in the thigh with foot
## 34890                                                                                                                                                                                EE states foot caught bathroom door. Right foot as she was running to answer phone.
## 34891                                                                                                                                                                        EE states foot slipped and he caught himself by doing the split before falling to the floor
## 34892                                                                                                                                                                                        EE states foot slipped off step while taking a pt to ward 522. Hurt lt hip.
## 34893                                                                                                                                                                                     EE states foot started to hurting appears to be swelling, feels like a strain.
## 34894                                                                                                                                                                                                                                EE states foreign object in rt eye.
## 34895                                                                                                                                                                                                  EE states forklift hit bump on dock and steering handle hit wrist
## 34896                                                                                                                                                                               EE states found tick when work day was over and EE showered, could not get head out.
## 34897                                                                                                                                                                                                 EE states fumes from cleaning fluid (pine oil) caused eyes to itch
## 34898                                                                                                                                                                                                     EE states fumes from mildew remover came in contact with eyes.
## 34899                                                                                                                                                                           EE states gathering necessary keys and equipment for escape drill, shut door on her hand
## 34900                                                                                                       EE states getting a temp on a client. The client started rolling over on her back. EE was trying to hold the client when she felt her right shoulder pop. ()
## 34901                                                                                                                                                                                          EE states getting back in chair, hit right side ofhead by the timle area.
## 34902                                                                                                                                                    EE states getting client on stretcher; right leg got stuck under stretehcer and she fell back on a metal piece.
## 34903                                                                                                                      EE states getting ready to sit in chair, the back of the chair was broke. As I prepared to sit down the chair slipped back, fell out of chair
## 34904                                                                                                                                                         EE states giving a client a bath, repositioned client on high tub felt a tightenging up in the lt shoulder
## 34905                                                                                                                                                                      EE states going to ward 238 to assist with body alarm. He was injured during the altercation.
## 34906                                                                                                                                                                                                EE states going up step when door closed on back of heel (left). ()
## 34907                                                                                                                                        EE states going upstairs tripped toe of shoe caught step causing me to loose balance and fell up stairs pulled chest muscle
## 34908                                                                                                                   EE states got out of chair; client sitting in wheelchair beside me and I stumped over the wheelchair, hit the side of ankle on the foot rest. ()
## 34909                                                                                                                                                                                           EE states got som contact cleaner in eye either mist in air or on finger
## 34910                                                                                                                                                                                                                                  EE states grass blew in right eye
## 34911                                                                                                                                                                                                                                       EE states had a car accident
## 34912                                                                                                                                                                                EE states had been lifting and carrying heavy bags containing psychologic materials
## 34913                                                                                                                                                                                                  EE states had direct with inmate that was diagnosed with scabies.
## 34914                                                                                                           EE states had stopped a violator, as EE returned toviolators vehicle to issue citation, he stepped on edge of pavement and felt his ankle give, roll off
## 34915                                                                                                                            EE states had to push on carts adn caps fear valley to put load lock up. The position I was in EE lower back popped. The pain got worse
## 34916                                                                                                                       EE states had went to car to put uniform in car after entering gatehouse, the door closed on my rt hand tip of index finger, getting caught.
## 34917                                                                                                                                                                EE states hall was being mopped, fell & slipped on soapy floor. I did not see the yellow place card
## 34918                                                                                                                                                                                EE states hand caught in the closing door while preventing inmate from leaving cell
## 34919                                                                                                                                                                                         EE states hand goes numb, wrist feels sore/tight and fingers tense/lock-up
## 34920                                                                                                                                                               EE states hand started hurting & swelled slightly while work. After awhile it started to hurt badly.
## 34921                                                                                                                                                                                                 EE states hand was in door casing when door closedupon right hand.
## 34922                                                                                                                                                                                 EE states handling a broom she was scratched on the lt side of check and neck area
## 34923                                                                                                                                                                                    EE states hands have become itchey and cracked from use of ward gloves and soap
## 34924                                                                                                                                                                                                   EE states harmful fumes caused him to become sick and nauseated.
## 34925                                                                                                                                                                                 EE states having pain in my thigh which was causedby trying to restrain a patient.
## 34926                                                                                                             EE states he & other maint. Workers were removing ice from sidewalkds in front of building in betwe-en gate house & entrance & felt snap in lower back
## 34927                                                                                                                        EE states he accidentally fell down stairs while carrying an inmate personal property causing injury to his arm, elbow, leg, hip, and ankle
## 34928                                                                                                                                                                  EE states he accidently bumped into glass while taking pictures---recd a cut on forehand or head?
## 34929                                                                                                                         EE states he and another were in a state vehicle on his way to pick up an abseconder stated that he was hit from behind by another vehicle
## 34930                                                                                                                                                           EE states he attempted to help staff with force meds on patient. Writer received a scratch on right arm.
## 34931                                                                                                                                                                                                       EE states he attempted to separte clients during altercation
## 34932                                                                                                                                                                                                             EE states he back into a door wall causing back injury
## 34933                                                                                                                                          EE states he became dehydrated due to the temper- ature & humidity at the firing range while in recertification training.
## 34934                                                                                                                                                             EE states he became stressed out when he found out that other employees knew he was being investigated
## 34935                                                                                                                                                                                                                         EE states he became very hot and collasped
## 34936                                                                                                                                                                                                                 EE states he began to feel sick when he passed out
## 34937                                                                                                                                                                                          EE states he began to have tightness in his chest and shortness of breath
## 34938                                                                                                                   EE states he began to strap the load down while ontop of the truck. In process of strapping down load--case of water gave way-EE fell off truck.
## 34939                                                                                                                                                                                             EE states he begin to have pain in the rt foot due to prolong standing
## 34940                                                                                                                                                                            EE states he bent down to tie his shoe and when hestood up he felt a pop in his rt knee
## 34941                                                                                                                                                                         EE states he bent over to cut a piece of tape off some furniture when he felt his back pop
## 34942                                                                                                                                                                                 EE states he bent over to pick up a piece of paperon the floor causing back injury
## 34943                                                                                                                                                                             EE states he bent over to pick up some computer cable when he felt pain in lower back.
## 34944                                                                                                                                                                                EE states he bent over to pick up some trash and struck his head on the control box
## 34945                                                                                                                                                                                     EE states he bent to lift plastic crate when he felt a muscle pull in his back
## 34946                                                                                                                                                                         EE states he bent to put a table down when he he twisted his back which caused sharp pain.
## 34947                                                                                                                                                                                                        EE states he bit into a hamburger and broke one ofhis tooth
## 34948                                                                                                                                                                                                                        EE states he bumped his head on a van door.
## 34949                                                                                                                                                                                                                        EE states he bumped his leg on a cell door.
## 34950                                                                                                                                                                                                                 EE states he bumped into a dock cutting his rt leg
## 34951                                                                                                                                                                                                 EE states he came in contact with blood while observing an inmate.
## 34952                                                                                                                                                 EE states he came in contact with poison ivy whichhas caused severe blistering and itching on his arms, legs, feet
## 34953                                                                                                                                                                                                                      EE states he came in contact with poison ivy.
## 34954                                                                                                                                                                                                                 EE states he came in contact with some poison ivy.
## 34955                                                                                                                          EE states he caught his left foot under rubber matat console & almost fell over the chair in controlroom and pulled something in his hip.
## 34956                                                                                                                                                                                                                        EE states he closed the door on his finger.
## 34957                                                                                                                         EE states he confronted a patient about his beha- viors, pt became upset, pt spit in EE face, jumped upand hit EE on lt forehead with fist
## 34958                                                                                                                                                               EE states he cut his finger on a razor blade whilesearching a small black pouch which was on a table
## 34959                                                                                                                                                                                                             EE states he cut his lt hand and finger on a saw blade
## 34960                                                                                                                                                                                                                EE states he cut his lt index finger on a table saw
## 34961                                                                                                                                            EE states he cut his lt leg on an unknown object while chasing a subject who was trying to run away from being arrested
## 34962                                                                                                                                                                              EE states he cut his lt thumb and index finger while removing a coke can from a fence
## 34963                                                                                                                                                                                                                 EE states he cut his lt thumb on the laundry buggy
## 34964                                                                                                                                                                                                              EE states he cut his wrist while cutting with a knife
## 34965                                                                                                                                                                                                      EE states he cut thumb on cooler casing while on transfer bus
## 34966                                                                                                                                                                EE states he depressed safetly on board and missedthe board stricking his rt leg with the nail gun.
## 34967                                                                                                                                                                                               EE states he developed an ear infection during an underwater session
## 34968                                                                                                                                 EE states he does not remember anything. He was working and the next thing he knew he was being taken to pender memorial hospital.
## 34969                                                                                                                                                        EE states he doesn't know what happened to his back just that he woke up and his back was stiff and hurting
## 34970                                                                                                                                                                                        EE states he dropped a jug of bleach when it got into his both of his eyes.
## 34971                                                                                                                 EE states he dropped a pencil between a desk and file cabinet and while moving both the desk and cabinet to retrieve the pencil he injured abdomen
## 34972                                                                                                                                                                                                                  EE states he experience chest pain due to stress.
## 34973                                                                                                                                                                                              EE states he failed over pole at back of trailer striking his lt knee
## 34974                                                                                                                                                                                EE states he fainted causing him to fall to the floor and injured his lt foot/ankle
## 34975                                                                                                                                                                                                                          EE states he fell and injured his rib cag
## 34976                                                                                                                                                                                                                         EE states he fell and injured his rt ankle
## 34977                                                                                                                                                                                                       EE states he fell and tripped on stairs injuring his rt knee
## 34978                                                                                                                                            EE states he fell down the stairs from the medical department when his foot slipped on unknown liquid and hurt his foot
## 34979                                                                                                                                                                             EE states he fell during training--EE was climbingover a wall and struck his lt finger
## 34980                                                                                                                                                               EE states he fell from a walkway landed on a concrete surface and struck his lt shoulder and lt leg.
## 34981                                                                                                                                                                                                            EE states he fell in a driveway and injured his rt knee
## 34982                                                                                                                                                            EE states he fell in hole in front of staff developement building. Fell face first strained lower back.
## 34983                                                                                                                                                                            EE states he fell off a ladder while placing a window in a house--EE strain his lt foot
## 34984                                                                                                                                                              EE states he fell off a water control structure while removing gate boards causing injury to his ribs
## 34985                                                                                                                                                         EE states he fell off bike causing injury to his rt shoulder--EE was demonstrating during a training class
## 34986                                                                                                                                                                                                          EE states he fell off trailor striking his head and nose.
## 34987                                                                                                                                                                                            EE states he fell on a wet floor causing injury tohis back (inmate clm)
## 34988                                                                                                                                                                                EE states he fell on asphalt in front of the gatehouse causing injury to his rt leg
## 34989                                                                                                                                                                                                                                   EE states he fell on his lt leg.
## 34990                                                                                                                                                                      EE states he fell on ice in parking lot causing injury to his head, rt elbow, back, neck, etc
## 34991                                                                                                                                                                                                           EE states he fell on some steps and injured his lt elbow
## 34992                                                                                                                                                                         EE states he fell out of his chair injuring his coccyx. The chair had some missing screws.
## 34993                                                                                                                                                                                                                            EE states he fell while assisting a pt.
## 34994                                                                                                                                                                         EE states he fell while attempting to sit in a chair pulling a muscle in his lt groin area
## 34995                                                                                                                                                                                         EE states he fell while coming down the tower stepinjuring back and ankle.
## 34996                                                                                                                                                                                           EE states he felled on his lt side while assistingwith an aggressive pt.
## 34997                                                                                                                                                                                                                          EE states he felt light-headed and dizzy.
## 34998                                                                                                                                                                          EE states he felt no pain or heard anything pop looked down and noticed wrist was swollen
## 34999                                                                                                                                                                                            EE states he felt pain in back while drilling a hole for anchor support
## 35000                                                                                                                                                                                                  EE states he felt pain in his back while folding a12 inch ladder.
## 35001                                                                                                                                                                   EE states he felt pain in lower back during a routine check while looking under a sewing machine
## 35002                                                                                                                                       EE states he felt pop in left hip while trying to keep a patient from falling. ** rehab nurse - reverta pegg 828-777-4499 **
## 35003                                                                                                                                                                                                        EE states he felt sharp pain within his stomach /chest area
## 35004                                                                                                                                                                                                 EE states he felt tingling in arm when lifting resident from chair
## 35005                                                                                                                                                                                                                   EE states he got a metal splinter in his finger.
## 35006                                                                                                                                                                                                                               EE states he got concrete in l hand.
## 35007                                                                                                                                                                                                EE states he got something in eye doing cleaning up in boiler room.
## 35008                                                                                                                        EE states he got something is his eye while cutting a hole in a concrete wall & stated he had on prescr. Glasses, safety glasses & a face ?
## 35009                                                                                                                                                                                     EE states he grabbed a bag the wrong way and pulled a muscle in his lower back
## 35010                                                                                                                                                  EE states he grasped an inmate's leg to subdue himand the inmate kicked his lt. Hand, hitting it against a chair.
## 35011                                                                                                                                                                            EE states he had a allergic reaction to detegent in hotel while on overnight assignment
## 35012                                                                                                                                                                                      EE states he had a severe allergic reaction to chemical used in the building.
## 35013                                                                                                                                                                                                                EE states he had an allegic reaction to a bee sting
## 35014                                                                                                                                                                                          EE states he had an altercation with inmate and EE's r 2nd finger was bit
## 35015                                                                                                             EE states he had completed a contraband search of prison bus & as he stepped down on step at rear of bus-was wet-his foot slipped & he fell to ground.
## 35016                                                                                                                      EE states he had fired from kneeling position and when standing his lt knee felt like it popped and twisted causing him to fall on both knees
## 35017                                                                                                                                                                EE states he had his hand in window seal while someone was looking at it and it fell on his fingers
## 35018                                                                                                                                                           EE states he had just opened a small ulcer on inmates lip & stuck the needle into his left middle finger
## 35019                                                                                                                                  EE states he had just unloaed his road squad weapons at the outside gun locker when he was stung by some type of hornet on rt arm
## 35020                                                                                                                        EE states he had removed a hot pan from the warmer and was taking them to the serving line and turned the corner to sharp and hit his ankle
## 35021                                                                                                                                     EE states he had severe pain in lt shoulder while erecting scaffold at entrance of admisistratin building. Left shoulder pain.
## 35022                                                                                                                                                                                                      EE states he had something blow off bath blanket into his eye
## 35023         EE states he had to crawl under a workstation to install 2 network lan cables and 2 power cords. When he finished installation, he rolled over to his right to get up from under the workstation and felt severe pain shoot through his right shoulder. ()
## 35024    EE states he had witnessed an inmate using a tattoo gun, tattooing an inmates back, the employee was trying to get ahold of the improvised tattoo equipment, when he reached down to pick up the device he pricked his right index finger causing a puncture ()
## 35025                                                                                                                                                                                                                        EE states he has a spider on his upper back
## 35026                                                                                                                                                                      EE states he has been doin quite a bit of hand processing and hand and wrist has become sore.
## 35027                                                                                                                                                      EE states he has been feeling dizzy and having headaches due to exposurer to construction dust innew building
## 35028                                                                                                                                                                                                     EE states he has constant pain of his rt finger and elbow area
## 35029                                                                                                             EE states he has had repeated exposure to open MRSA positive legions. EE also states this has required 2 sinus operations. Persistant sinus infection.
## 35030                                                                                                                                                                                      EE states he has received a rash on both arms and thighs from unknown reason.
## 35031                                                                                                                                                                                    EE states he has sores on left thumb, under his right arm, and on right forearm
## 35032                                                                                                                              EE states he heard a loud pop under the control panel and a small amount of smoke came out and filled the control room and a bad odor
## 35033                                                                                                                                                              EE states he heard an alarm & responded to it.. When he went around corner he believes he blacked out
## 35034                                                                                                                                         EE states he helped nurse get im from floor into wheelchair & over next 34hrs. Felt sharp, stabbing pain in lwr. Rt. Back.
## 35035                                                                                                                                                                      EE states he hit a bad place in the road that caused back pain due to a prior back condition.
## 35036                                                                                                                                                                                                EE states he hit his hand with a hammer. Deep abrasion to left hand
## 35037                                                                                                                                           EE states he hit his head on the metal bars of the exercise area in segregation while trying to secure combative inmate.
## 35038                                                                                                                                                                            EE states he hit the microscope with his left elbow during imaging with the microscope.
## 35039                                                                                                                                                                                                            EE states he hurt his back while giving patients baths.
## 35040                                                                                                                               EE states he hurt his rt arm elbow, bicep and shoulder when he completed a forward jab into training mat during pr-24 recertificatin
## 35041                                                                                                                                                       EE states he hurt left ankle while placing patientin seclusion & restraint & did not want to be seen on doa.
## 35042                                                                                                                                                                                                          EE states he hurt right foot while restraining a patient.
## 35043                                                                                                                 EE states he in process of securing perimeter gatewhen locking mechanism caught on some ice and lostbalance. EE injured left arm and shoulder pain
## 35044                                                                                                                                                                                               EE states he inhaled harmful chemicals that had been mixed together.
## 35045                                                                                                                                                                                          EE states he injured both knees while assisting with an aggressive inmate
## 35046                                                                                                                                                                                                  EE states he injured himself during an altercationwith an inmate.
## 35047                                                                                                                                                                                                              EE states he injured himself trying to restrain a pt.
## 35048                                                                                                                                                                                                EE states he injured his arm and knee while tryingto restrain a pt.
## 35049                                                                                                                                                                                                                      EE states he injured his arm during training.
## 35050                                                                                                                                                                     EE states he injured his back and leg while tryingto keep a pt from running out of the office.
## 35051                                                                                                                                                                                       EE states he injured his back and rt wrist while closing the sally port gate
## 35052                                                                                                                                                                             EE states he injured his back while attempting to break up a fight between 2 students.
## 35053                                                                                                                                                                                       EE states he injured his back while attempting to close a door to a dumpster
## 35054                                                                                                                                                                                       EE states he injured his back while carrying a large box of mail to mail bus
## 35055                                                                                                                                                              EE states he injured his back while chasing a probationer who was trying to escape from the courtroom
## 35056                                                                                                                                                                                       EE states he injured his back while going down some steps with a hand truck.
## 35057                                                                                                                                                                                  EE states he injured his back while lifting a bag containing an inmate's property
## 35058                                                                                                                                                                                                             EE states he injured his back while lifting a bookcase
## 35059                                                                                                                                                                                                              EE states he injured his back while lifting an inmate
## 35060                                                                                                                                                                                                         EE states he injured his back while lifting paint buckets.
## 35061                                                                                                                                                                                                     EE states he injured his back while lifting two dessert trays.
## 35062                                                                                                                                                                                EE states he injured his back while lifting weightwhich was being tested on a scale
## 35063                                                                                                                                                                                                                       EE states he injured his back while lifting.
## 35064                                                                                                                                                                                                           EE states he injured his back while loading wet laundry.
## 35065                                                                                                                                                                                      EE states he injured his back while opening and closing a large sliding gate.
## 35066                                                                                                                                                                                   EE states he injured his back while trying to apprehend an offender--foot chased
## 35067                                                                                                                                                                                      EE states he injured his back while trying to keep two student from fighting.
## 35068                                                                                                                                                                                                        EE states he injured his back while trying to lift a cooler
## 35069                                                                                                                                                                                                   EE states he injured his back while trying to restrain an inmate
## 35070                                                                                                                                                                                                  EE states he injured his back while trying to restrain an inmate.
## 35071                                                                                                                                                                             EE states he injured his back while trying to stop a tree from falling down on inmates
## 35072                                                                                                                                                                                  EE states he injured his back while trying to turnover a 55 gallon motor oil drum
## 35073                                                                                                                                                                                     EE states he injured his hand while attempting to cleaning some unknown object
## 35074                                                                                                                                                                         EE states he injured his knees during an use of force when someone apparently fell on him.
## 35075                                                                                                                                                                                                            EE states he injured his lower back by picking up trash
## 35076                                                                                                                                                                                            EE states he injured his lower back while bending a pipe on pipe bender
## 35077                                                                                                                                                                                               EE states he injured his lower back while lifting boxes of computers
## 35078                                                                                                                                                                                                     EE states he injured his lower back while lifting heavy doors.
## 35079                                                                                                                                                                                        EE states he injured his lower back while trying to keep a pt from falling.
## 35080                                                                                                                                                                                                     EE states he injured his lt ankle while getting out of the car
## 35081                                                                                                                                                                                                                   EE states he injured his lt ankle while running.
## 35082                                                                                                                                                                           EE states he injured his lt ankle while trying to break up a fight between two students.
## 35083                                                                                                                                                                                                  EE states he injured his lt arm while trying to subdue an inmate.
## 35084                                                                                                                                                                                                   EE states he injured his lt elbow/arm while operating a chainsaw
## 35085                                                                                                                                                                                                      EE states he injured his lt foot while stepping onsome steps.
## 35086                                                                                                                                                                                              EE states he injured his lt hand while cutting a pipe with a hacksaw.
## 35087                                                                                                                                                                                            EE states he injured his lt knee while instructinga self defense class.
## 35088                                                                                                                                                                                                                     EE states he injured his lt shoulder and neck.
## 35089                                                                                                                                                                                               EE states he injured his lt shoulder while cuttingdown a locust tree
## 35090                                                                                                                                                                                                 EE states he injured his lt shoulder while moving office furniture
## 35091                                                                                                                                                                                    EE states he injured his lt shoulder/neck during a self defense training course
## 35092                                                                                                                                                                                           EE states he injured his lt wrist while removing beds from the hospital.
## 35093                                                                                                                                                                                                      EE states he injured his rt elbow while pulling a pipewrench.
## 35094                                                                                                                                                                                                          EE states he injured his rt hand while pushing himself up
## 35095                                                                                                                                                                                          EE states he injured his rt hand/wrist during an exercise training course
## 35096                                                                                                                                                                                                      EE states he injured his rt knee during self defense training
## 35097                                                                                                                                                                                  EE states he injured his rt knee on the console of a vehicle which he was driving
## 35098                                                                                                                                                                                   EE states he injured his rt knee while trying to stop two inmates from fighting.
## 35099                                                                                                                                                                         EE states he injured his rt shoulder and lower back while attempting to restrain an inmate
## 35100                                                                                                                                                                               EE states he injured his rt shoulder while trying to practice a move on his partner.
## 35101                                                                                                                           EE states he injured left foot when he stepped offprison bus onto shoulder of road and stepped into hole and pulled muscle in left foot.
## 35102                                                                                                                                                                                                EE states he injured the top of his head-- foot slipped on stairway
## 35103                                                                                                                                                                                                                                EE states he is having chest pains.
## 35104                                                                                                                                                               EE states he is having problems with chest pain and sleeping which is caused by work-related stress.
## 35105                                                                                                                                                             EE states he is having uncontrolled itching as a result of reaction to hepatitis b vaccine he received
## 35106                                                                                                                  EE states he is suffering from anxiety recurrent depression and other psycho-emotional difficultiesas a result of an investigation by department.
## 35107                                                                                                                                                                                                                EE states he jumped a canal and twisted his lt knee
## 35108                                                                                                                                                                                           EE states he jumped from a railing of a trailer causing a lt foot injury
## 35109                                                                                                                                                 EE states he kneel down to pick up a screw driver and while raising up he struck his head on the corner of a panel
## 35110                                                                                                                                                       EE states he knocked on the window to get two inmates attention when the window broke cutting rt hand/finger
## 35111                                                                                                                                                                                   EE states he lifted a beehive box during an inspection and felt pain in his back
## 35112                                                                                                                                                                                                             EE states he lifted a box of paper and injured hisback
## 35113                                                                                                                                                  EE states he lifted a door up by rod the rod slipped causing door to slam cutting part of EE lt middle finger off
## 35114                                                                                                                     EE states he lifted a refrigerator compressor about a month ago & his back bothered him for a few days & them improved. Pain has now flared up
## 35115                                                                                                                                                                                    EE states he lost his balance and fell backward striking his head on a bookcase
## 35116                                                                                                                                                                                                      EE states he lost his balance and fell twisting his rt wrist.
## 35117                                                                                                                                                                                  EE states he lost his balance while going down a steep hill twisting his rt ankle
## 35118                                                                                                                                                                                            EE states he missed a step and fell on some stairsinjuring his rt ankle
## 35119                                                                                                                                                                                         EE states he missed a step and fell striking his side on the metal railing
## 35120                                                                                                                                                                          EE states he missed the last step in the middle ofthe stairwell where there is a landing.
## 35121                                                                                                                                                                                                         EE states he nicked inner left ankle while sitting ar noc.
## 35122                                                                                                                   EE states he notes gradual onset of pain in his left shoulder/neck area after serving residents meals. Denies any accident or unusual occurrance
## 35123                                                                                                                                                                                             EE states he notice a red rash on rt knee---- questionable insect bite
## 35124                                                                                                                                                                                                      EE states he noticed a small puncture wound on hisrt forearm.
## 35125                                                                                                                                                                   EE states he noticed blisters on his rt foot/toe causing his rt leg to become infected f18 filed
## 35126                                                                                                                                                                             EE states he noticed eye irritation and headaches after the flood from hurricane floyd
## 35127                                                                                                                                                                         EE states he noticed pain in his lt knee after completing a certification training course.
## 35128                                                                                                                       EE states he noticed trainee using axe improperly and began showing him proper use of axe and duringprocess he pulled muscles in lower back.
## 35129                                                                                                                                             EE states he notices irritation in his eyes and sinuses due to the mold spores on the damp wall from the flood (floyd)
## 35130                                                                                                                                                                                        EE states he observed a small infected area on the top of his righ shoulder
## 35131                                                                                                                                                                                EE states he obtained a scrape from a sheild while extracting an inmate--lt forearm
## 35132                                                                                     EE states he on a 6ft ladder handing blind & the legs on the ladder gave away. EE was able to brace himself and landed on his feet and fell backwards onto hgluteus maxima. ()
## 35133                                                                                                                                                                     EE states he opend door on locker of road squad bus & door fell open striking him in forehead.
## 35134                                                                                                                                                          EE states he opened the bottom of a steamer and hot water ran into his shoe causing burns to his rt foot.
## 35135                                                                                                                                                                                                         EE states he passed out in the bathroom striking his head.
## 35136                                                                                                                                                                                 EE states he pick up a clock that had fell and struck the back side of his rt hand
## 35137                                                                                                                                           EE states he pick up a hypodermic needle in parking lot and while trying to secure the needle his lt thumb was punctured
## 35138                                                                                                                                    EE states he picked up a box from a worktable to handtruck and experienced considerable pain. He states he was wearing a brace.
## 35139                                                                                                                                                                                      EE states he picked up a bundles of shingles and pulled a muscle in his back.
## 35140                                                                                                                                                                                                       EE states he picked up a piece of metal and rubbedhis rt eye
## 35141                                                                                                                                                                                                        EE states he picked up a shotgun and felt a pop in his back
## 35142                                                                                                                                                           EE states he picked up box of trash bags & felt like he pulled something on the right side of back & hip
## 35143                                                                                                                                               EE states he picked up laser printer and strained rt elbow and fingers, per sharon with ag's office nothing new recd
## 35144                                                                                                                                                                EE states he picked up property bag of inmate, brown bag had exposed staple, stuck lt middle finger
## 35145                                                                                                                                                                       EE states he placed hand restraints on disruptive inmate when inmate kicked EE in the mouth.
## 35146                                                                                                                                                                                                          EE states he pulled a gate open and felt pain in his back
## 35147                                                                                                                                                                  EE states he pulled a muscle between his shoulder blade and back while lifing boxes of copy paper
## 35148                                                                                                                                                       EE states he pulled a muscle in his groin area while trying to keep from falling pushing a rolling hand cart
## 35149                                                                                                                                                                                                                     EE states he pulled a muscle in his lower back
## 35150                                                                                                                                                                                                                    EE states he pulled a muscle in his rt shoulder
## 35151                                                                                                                                                                    EE states he pulled a muscle in his rt shoulder while reaching to get an object from an inmate.
## 35152                                                                                                                                                           EE states he pulled a muscle while lifing weights during a physical training test--neck and shoulderarea
## 35153                                                                                                                                                                                              EE states he pulled a sofa from wall when he felt pain in lower back.
## 35154                                                                                                                                                                                                                            EE states he pulled a tick off his back
## 35155                                                                                                                                                                            EE states he pulled his back while trying to pre- vent patient from falling off of bed.
## 35156                                                                                                                                                                  EE states he pulled muscle in middle finger rt hand while pulling plastic from box of index cards
## 35157                                                                                                                                                 EE states he pulled out in traffic and was involvein an auto accident causing body aches/pain and injured his knee
## 35158                                                                                                                    EE states he pushed open the fire door on a hall to secure it let go of the door and placed his handin the door jamb the fire door slammed shut
## 35159                                                                                                                                            EE states he pushing ht e mower and tripped and fell injuring his lt & rt collarbone, wrists, and upper torso and back.
## 35160                                                                                                                                                                                                                 EE states he ran into a pipe that was hanging down
## 35161                                                                                                                                                              EE states he reached down to pick up an item he has dropped when his rt eye struck the dresser drawer
## 35162                                                                                                                                                              EE states he receive tick bites while performing k-9 training. EE is being treated for lyme's disease
## 35163                                                                                                                     EE states he received a call on a disturbance on the ballfield & when he turned toward the field, his r. Knee made a loud pop & began to hurt.
## 35164                                                                                                                                                                                  EE states he received a cut on top of lt hand during a use of force on an inmate.
## 35165                                                                                                                                                                                               EE states he received a cut to his rt finger while pulling on a cart
## 35166                                                                                                                                                                                          EE states he received a cut to his rt leg while cutting with a box blade.
## 35167                                                                                                                                                                                                                EE states he received a needlestick to his lt thumb
## 35168                                                                                                                                                                                                    EE states he received a rash on his hands, face, arms, and neck
## 35169                                                                                                                                                               EE states he received a splinter to his rt hand when he grabbed his jacket from the top of the table
## 35170                                                                                                                                                              EE states he remembers going thru the gate fence at lower #5 and he cant remember anything after that
## 35171                                                                                                                                                      EE states he responded to a code 300 upon restraining the inmate was scratched by the inmate or the handcuffs
## 35172                                                                                                                                                                  EE states he responded to medical emergency he turned around into the stairs and hit his forehead
## 35173                                                                                                                      EE states he sat down on the edge of the table and it kicked out from under him and fell on the floor hitting the lower back and buttock area
## 35174                                                                                                                                EE states he sat in a chair it collapsed and he fell to the floor landing on his buttocks--experienced pain in buttocks (hip) areas
## 35175                                                                                                                      EE states he sat in chair in control area with broken wheel which turned over. He hit his lt hip, left elbow, shoulder and head on the floor.
## 35176                                                                                                                      EE states he saw water running in the janitor closet, when he reached to turn off the water, he slipped on residue on the floor--injured back
## 35177                                                                                                                                                                                                      EE states he scraped knuckles on bookcase while moving a desk
## 35178                                                                                                                                               EE states he shut a sngl-cell door & it hit lockinmech, shot back & he again slammed door & felt pain in groin area.
## 35179                                                                                                                EE states he slipped 6ft off a bulldozer to groundjarred his upper and lower back, exacerbating prevexisting back pains. ** faulkenbury eligible **
## 35180                                                                                                                                                                                               EE states he slipped and fell down stairs receiving a heel contusion
## 35181                                                                                                                                                                                              EE states he slipped and fell in water on floor injurying his lt knee
## 35182                                                                                                                                                                              EE states he slipped and fell off sidewalk and injured his back, ankle, knee, and hip
## 35183                                                                                                                                                        EE states he slipped and fell off the steps of bus while unloading inmates---causing injury to his buttocks
## 35184                                                                                                                                                                              EE states he slipped and fell on a research vesselboard striking his head on a ladder
## 35185                                                                                                                                                EE states he slipped and fell on a rubber mat while entering thru a door causing injury to her rt hand and shoulder
## 35186                                                                                                                                                                                            EE states he slipped and fell on a wet floor causing injury to his neck
## 35187                                                                                                                                                               EE states he slipped and fell on concrete that hadbeen freshly painted causing injury to his lt hand
## 35188                                                                                                                                                                                                  EE states he slipped and fell on ice causing injury to her rt arm
## 35189                                                                                                                                                                                       EE states he slipped and fell on ice causing injury to her shoulder and hand
## 35190                                                                                                                                                                                          EE states he slipped and fell on ice causing injury to his head/neck area
## 35191                                                                                                                                                                                    EE states he slipped and fell on ice causing injury to his rt foot and lt wrist
## 35192                                                                                                                                                                                                 EE states he slipped and fell on ice causing injury to his rt knee
## 35193                                                                                                                                                                                  EE states he slipped and fell on ice causing injury to his rt knee and groin area
## 35194                                                                                                                                                                           EE states he slipped and fell on ice during a sercurity check causing rt shoulder injury
## 35195                                                                                                                                                                                                EE states he slipped and fell on ice injurying hislt elbow and back
## 35196                                                                                                                                                                      EE states he slipped and fell on ice while gettingout of his truck causing injury to his knee
## 35197                                                                                                                                                       EE states he slipped and fell on ice while walkingin parking lot causing injury to his rt hip and lower back
## 35198                                                                                                                                                                                            EE states he slipped and fell on icy steps causinginjury to his rt knee
## 35199                                                                                                                                                        EE states he slipped and fell on some mud strikinghis head against ground causing injury to his front tooth
## 35200                                                                                                                                                               EE states he slipped and fell on some steps at theentrance of the building injurying his hip and leg
## 35201                                                                                                                                                    EE states he slipped and fell on some water causing him to lose his balance injuring his neck and shoulder area
## 35202                                                                                                                                                                                                  EE states he slipped and fell on some water that was on the floor
## 35203                                                                                                                                                                                                                   EE states he slipped and fell on some wet steps.
## 35204                                                                                                                                                                                                                            EE states he slipped and fell on stairs
## 35205                                                                                                                                              EE states he slipped and fell on wet concrete floor causing his rt hand to get caught between the door and brick wall
## 35206                                                                                                                                                                                                       EE states he slipped and fell on wet floor injuring his back
## 35207                                                                                                                                                                                                    EE states he slipped and fell on wet floor injuring his lt knee
## 35208                                                                                                                                                                                          EE states he slipped and fell on wet floor landingon his back and rt side
## 35209                                                                                                                                                                                              EE states he slipped and fell on wet floor striking his rt hand/wrist
## 35210                                                                                                                                                                                                         EE states he slipped and fell while coming down the steps.
## 35211                                                                                                                                                                                EE states he slipped and fell while entering ambulance transporting inmates to hosp
## 35212                                                                                                                                                                                                           EE states he slipped and fell while going up some steps.
## 35213                                                                                                                                                                    EE states he slipped and fell while stepping into a doorway of a cellblock injuring rt arm/knee
## 35214                                                                                                                                                                                        EE states he slipped and while trying to break fall he injured his lt wrist
## 35215                                                                                                                                                                                                                                  EE states he slipped off a truck.
## 35216                                                                                                                                                                  EE states he slipped on a can and grabbed the fence so he wouldn't fall and cut his hand on fence
## 35217                                                                                                                                                                  EE states he slipped on a piece of cardboard at a landfill striking his finger against the truck.
## 35218                                                                                                                                                                                           EE states he slipped on a piece of ice and fell injuring his lt hand/arm
## 35219                                                                                                                                                                                               EE states he slipped on a wet floor causing injury to his lower back
## 35220                                                                                                                                                                                EE states he slipped on floor stripper and fell injurying his back, head, and neck.
## 35221                                                                                                                                                                                    EE states he slipped on ice while getting out of the truck twisting his lt knee
## 35222                                                                                                                                                                                EE states he slipped on ice while walking on sidewalk causing injury to his lt knee
## 35223                                                                                                                                                                                                       EE states he slipped on icy steps causing injury to his back
## 35224                                                                                                                                                              EE states he slipped on main stairs to bldg. Attempted to catch myself and hit handrail with wrist ()
## 35225                                                                                                                                   EE states he slipped on some freshly mopped steps but while holding onto the rail to keep from falling he injured his lower back
## 35226                                                                                                                                                                                                                         EE states he slipped on some ice and fell.
## 35227                                                                                                                                                                                                            EE states he slipped on some ice and landed on hisback.
## 35228                                                                                                                                                  EE states he slipped on some steps and while trying to prevent the fall he felt sharp pain of his lower back area
## 35229                                                                                                                                               EE states he slipped on some stripper that was on the floor causing her to slide across the floorinto a cabinet door
## 35230                                                                                                                                                                                                      EE states he slipped on stairs while they were being cleaned.
## 35231                                                                                                                                    EE states he slipped on steps and fell after showering -- injurying 2nd toe of lt foot (laceration), 3rd toe on lt foot(broken)
## 35232                                                                                                                                                                                                                        EE states he slipped on the ice on sidewalk
## 35233                                                                                                                       EE states he slipped on wet floor and while tryingto keep from falling his rt knee hit the floor causing his lt foot to slide from under him
## 35234                                                                                                                                                                 EE states he slipped on what appeared to be frozen ice injuring low back, left knee, left wrist ()
## 35235                                                                                                                                                     EE states he slipped while checking fence & fence line on southside of upper gate. He has pain in lumbar area.
## 35236                                                                                                                                                                                         EE states he slippped and fell on ice causing injury to his leg/groin area
## 35237                                                                                                                                                                                                         EE states he slippped and fell on some steps whichwere wet
## 35238                                                                                                                                                                                                                 EE states he smashed his lt ring finger on a gate.
## 35239                                                                                                                                                                                              EE states he smashed his rt finger between a tailgate on a dump truck
## 35240                                                                                                                                                                EE states he sprain his rt ring finger while attempting to put a battery charger on cables of a car
## 35241                                                                                                                                                                                                      EE states he started coughing and pulled a muscle in his neck
## 35242                                                                                                                                                                         EE states he started having chest pain after being involved in a use of force on an inmate
## 35243                                                                                                                                                    EE states he started having pain in back & legs while traveling and getting in & out of van over period of time
## 35244                                                                                                               EE states he started to experience pain in lower back sometimes after his pic classes. He hurt all weekend and reported back pain to clinic on 04-09
## 35245                                                                                                                                            EE states he started to get into the chair on post#2 the chair had blocks of wood under legs and slipped off metal step
## 35246                                                                                                                                         EE states he started to sit down & the chair just slid out from under him & he hit the floor on his right hip & right arm.
## 35247                                                                                                                 EE states he started to walk down from the top of the stairs when his lt foot twisted & he lost his balance & he fell forward & rolled down stairs
## 35248                                                                                                                                                                                                              EE states he started walking and legs started hurting
## 35249                                                                                                                                                                                EE states he states he slipped and fell on ice in parking lot injuring his lt wrist
## 35250                                                                                                                                                                                         EE states he step up onto the sidewalk when he felt a pulled in his lt leg
## 35251                                                                                                                                                                         EE states he steped in a hole lost his balance twisting his lower back & strained his back
## 35252                                                                                                                                                                                 EE states he stepped across landscape timbers striking his heel against the timber
## 35253                                                                                                                                                                                               EE states he stepped down on his rt foot causing it to twist and pop
## 35254                                                                                                                                                                                                        EE states he stepped into a hole and twisted his lower back
## 35255                                                                                                                                                                                                         EE states he stepped into a hole and twisted his lt ankle.
## 35256                                                                                                                                                                                                           EE states he stepped into a hole and twisted his rt knee
## 35257                                                                                                                                                                                                EE states he stepped into a hole in ground and twisted his rt ankle
## 35258                                                                                                                                                                                            EE states he stepped into a hole in the ground and twisted his rt ankle
## 35259                                                                                                                                                                                                             EE states he stepped into a hole striking his lt knee.
## 35260                                                                                                                                                                                                             EE states he stepped off a bus and twisted his rt knee
## 35261                                                                                                                                                                                                           EE states he stepped off a curb and twisted his rt ankle
## 35262                                                                                                                                                                                                         EE states he stepped off a curve and twisted his rt ankle.
## 35263                                                                                                                                                                                                     EE states he stepped off a floor panel and injuredhis lt foot.
## 35264                                                                                                                                                                         EE states he stepped off a laundry truck and struck his lt arm on the side of the trailer.
## 35265                                                                                                                                                                                                           EE states he stepped off a ramp and twisted his rt ankle
## 35266                                                                                                                                                                                              EE states he stepped off a riding lawn mower and twisted his lt ankle
## 35267                                                                                                                                                                               EE states he stepped off a sidewalk and tripped on a speed bumper twisting lt ankle.
## 35268                                                                                                                                                                                                     EE states he stepped off a sidewalk and twisted his lower back
## 35269                                                                                                                                                                                                       EE states he stepped off a sidewalk and twisted his lt ankle
## 35270                                                                                                                                                                                                       EE states he stepped off a sidewalk and twisted his rt ankle
## 35271                                                                                                                                                                                         EE states he stepped off a truck and twisted his lt leg injuring his back.
## 35272                                                                                                                                             EE states he stepped off concrete on to the groundand lost his balance causing all his weight to shift to his rt ankle
## 35273                                                                                                                                                                                                         EE states he stepped off sidewalk and twisted his rt knee.
## 35274                                                                                                                                                                                                EE states he stepped off the curb causing him to twist his lt ankle
## 35275                                                                                                                                                                                                      EE states he stepped off the squad bus and twistedhis rt knee
## 35276                                                                                                                                                                                            EE states he stepped off the van he felt a sharp pain in his lower back
## 35277                                                                                                                                                                                                     EE states he stepped on a cross tie when his rt knee gave away
## 35278                                                                                                                                                                    EE states he stepped on a nail that was protrudingfrom a board--EE was wearing his safety boots
## 35279                                                                                                                                                                              EE states he stepped on a platform and slipped andfell injuring back, knee, and elbow
## 35280                                                                                                                                                                                                            EE states he stepped on a rock and twisted his lt ankle
## 35281                                                                                                                                                                                                 EE states he stepped on a rock causing him to falltwisting rt knee
## 35282                                                                                                                                                  EE states he stepped on a sewer cap and later feltpain in lower back area & lt ankle/foot. Ttd started 10/18/01..
## 35283                                                                                                                                                                                                   EE states he stepped on an uneven ground and twisted his rt foot
## 35284                                                                                                                                                                                                  EE states he stepped on an uneven sidewalk and twisted his rt leg
## 35285                                                                                                                                                                          EE states he stepped on an uneven surface causing a pull muscle of his lt calf(lower leg)
## 35286                                                                                                                                                                                                EE states he stepped on an unknown object and felta pop in rt knee.
## 35287                                                                                                                                                          EE states he stepped on little stick on sidewalk in front of door leg slid back too fair twisting lt knee
## 35288                                                                                                                                                                                         EE states he stepped on something under a rubber mat injuring his lt ankle
## 35289                                                                                                                                    EE states he stepped on top of a box and missed the plank and fell on back of the tractor causing injury to his neck and finger
## 35290                                                                                                                                                                                                   EE states he stepped on unlevel concrete and twisted his rt knee
## 35291                                                                                                                                           EE states he stepped out of the dorm and slipped on ice and while trying to keep from falling he injured his lt shoulder
## 35292                                                                                                                                                                                                 EE states he stepped out of the state truck and his knee gave out.
## 35293                                                                                                                             EE states he stepped over the chain w/his lt leg followed by rt. When foot touched the ground, heard/felt pop & pain in rt calf area..
## 35294                                                                                                                                                      EE states he stepped unto garbage truck when his foot slipped and EE fell backward causing pain in lower back
## 35295                                                                                                                                              EE states he stepped up into a van when his foot slipped causing him to fall backward to the ground injuring his neck
## 35296                                                                                                                                                                                      EE states he stepped up into van and hit his head on top of the door opening.
## 35297                                                                                                                                                                                             EE states he stepped up on steps with lt leg. Pain radiating down leg.
## 35298                                                                                                                                                                         EE states he stood up from his chair when the chair turned over and EE fell on his lt side
## 35299                                                                                                                                                                    EE states he stood up out of chair as he turned tolook out window his lower back began to spasm
## 35300                                                                                                                               EE states he stood up to hand paperwork to the secretary when he felt a sharp pain in his back this caused him to bend over backward
## 35301                                                                                                                                                                                                      EE states he strain his neck and shoulder while operating a ?
## 35302                                                                                                                                                                                                                EE states he strained his back while using a digger
## 35303                                                                                                                                                             EE states he strained left knee during unarmed self-defense training. Strained & swelling to left knee
## 35304                                                                                                                                                                                 EE states he strained the lower part of his abdomen while installing new landscape
## 35305                                                                                                                                                                  EE states he struck a deer while riding in the state vehicle causing injury to his lt and rt knee
## 35306                                                                                                                                                                                           EE states he struck a wall when some paint chip and went into his rt eye
## 35307                                                                                                                                                                                            EE states he struck his arm on a railing after stepping on a broom head
## 35308                                                                                                                                                                                                                 EE states he struck his head on a metal cell door.
## 35309                                                                                                                                                                                            EE states he struck his head on a metal shelf causing a scalp lacertion
## 35310                                                                                                                                                                                                          EE states he struck his head on the bottom of the stairs.
## 35311                                                                                                                                                                    EE states he struck his head on the bunk while removing personal property from inmate's locker.
## 35312                                                                                                                                                                                                      EE states he struck his head on the corner of a window frame.
## 35313                                                                                                                                                                                                    EE states he struck his lt elbow against the edge of the table.
## 35314                                                                                                                                                                                                                          EE states he struck his lt knee on a desk
## 35315                                                                                                                                                                                                                          EE states he struck his lt knee on a door
## 35316                                                                                                                                                                                                                    EE states he struck his rt hand against a door.
## 35317                                                                                                                                                                                                                     EE states he struck his rt knee against a door
## 35318                                                                                                                                                                                                     EE states he struck his rt knee on a desk causing a laceration
## 35319                                                                                                                                                                                EE states he struck his rt shoulder against a wallduring a use of force on a inmate
## 35320                                                                                                                                    EE states he struck his rt thigh on a post which caused him to fall and while trying to break the fall he injured his rt wrist.
## 35321                                                                                                                                                                              EE states he struck his shin (leg) while jumping a 5 ft wall during a training course
## 35322                                                                                                                                                                                                                         EE states he struck r leg on end of drawer
## 35323                                                                                                                                                                                                       EE states he struck the back of his rt hand on a metal tube.
## 35324                                                                                                                                   EE states he stumbled on his right leg as he entered office door. His right leg went under his left leg twisting his right knee.
## 35325                                                                                                                                                                                             EE states he stumped his toe on a brick and fell injuring his rt knee.
## 35326                                                                                                                                                                EE states he thinks he got pink eye from inmate, he noticed irritation 4-5 days ago and went to er.
## 35327                                                                                                                                                          EE states he thought he injured his right shoulderwhen trying to loosen bolts on a clean steam generator.
## 35328                                                                                                                                                                                     EE states he took a swallow of his soda and his throat began to burn severely.
## 35329                                                                                                                                                               EE states he tried to break up a fight and get a juvenile under control and fell to the cement floor
## 35330                                                                                                                 EE states he tried to open a door because it was stuck & he had to pull hard on the door w/both hands & felt pain in l. Arm from elbow to forearm.
## 35331                                                                                                                                                               EE states he tripped & fell while securing brooms & mops in janitor closet located in inmate dayroom
## 35332                                                                                                                                                                                    EE states he tripped and fell face down on step striking face against the floor
## 35333                                                                                                                                                                                                                EE states he tripped and fell injuring his rt wrist
## 35334                                                                                                                                        EE states he tripped and fell on some stairs and while trying to catch himself with his lt hand he injured his lt shoulder.
## 35335                                                                                                                                                                                                EE states he tripped and fell over a black mat injuring his rt hand
## 35336                                                                                                                                                                                  EE states he tripped and fell over a fan cord injurying his back and lt shoulder.
## 35337                                                                                                                                                                                        EE states he tripped and fell over a floor grate causing injury to his back
## 35338                                                                                                                                                                                                  EE states he tripped on his way into work. EE injured knee, calf.
## 35339                                                                                                                                                                                                            EE states he tripped on some steps and injured hisback.
## 35340                                                                                                                                                                                                     EE states he tripped over a bag of trash and injured his hand.
## 35341                                                                                                                                                                                               EE states he tripped over a desk and injured rt knee and rt shoulder
## 35342                                                                                                                                                                                                        EE states he tripped over a floor mat causing low back pain
## 35343                                                                                                                       EE states he tripped over a limb that was stickingout from under a bush in a parking lot causing injury to his lt knee, lt hand, and rt hand
## 35344                                                                                                                                     EE states he turned and walked into some metal pipe that were on the back of a truck resulting ina cut on the rt side of face.
## 35345                                                                                                                                                                                                             EE states he turned ankle over on ramp/uneven pavement
## 35346                                                                                                                                                                                                 EE states he turned his ankle over while coming down from tower 2.
## 35347                                                                                                                                                                                   EE states he turned his left foot over during a restrant of an agressive client.
## 35348                                                                                                                                                                                                 EE states he turned on the fan when something blew into his lt eye
## 35349                                                                                                                                                                                                            EE states he turned quickly in chair to reach for books
## 35350                                                                                                                                  EE states he turned to walk into commisary. When apain hit him in rt hip down into rt. Leg. EE statedhe almost fell to the floor.
## 35351                                                                                                                                                                                       EE states he twisted his (left) wrist as he helped to restrain a patient. ()
## 35352                                                                                                                                                                           EE states he twisted his ankle when he stepped outof the restroom injurying his lt foot.
## 35353                                                                                                                                                                                          EE states he twisted his ankle while performing cell extraction training.
## 35354                                                                                                                                                                                                             EE states he twisted his back while getting out of van
## 35355                                                                                                                                                                                                                         EE states he twisted his lt ankle and fell
## 35356                                                                                                                                                                                               EE states he twisted his lt ankle while emptying trash in stairwell.
## 35357                                                                                                                                                                                    EE states he twisted his lt foot when he stepped on the corner of the sidewalk.
## 35358                                                                                                                                                                                                         EE states he twisted his lt knee during a site preparation
## 35359                                                                                                                                                                                        EE states he twisted his lt knee while he was getting out the unit vehicle.
## 35360                                                                                                                                 EE states he twisted his right knee while doing defense training drills, slipped and felt pop ** EE salary continuance eligible **
## 35361                                                                                                                                                                                                   EE states he twisted his rt ankle while operating an atv machine
## 35362                                                                                                                                                                                                    EE states he twisted rt arm while picking up a bucket of water.
## 35363                                                                                                                                   EE states he use force on a inmate at the completion of that use of force his lft lower back hur and his 4th finger was swollen.
## 35364                                                                                                                                                          EE states he used his rt foot to push a cement planter away from a door he later felt pain in hisrt knee.
## 35365                                                                                                                                                                       EE states he wa typing reports time sheets and narratives for the shift on a contnuous basis
## 35366                                                                                                                                           EE states he walked into a machinery shop where someone was grinding metal when a piece of the metal flew into EE rt eye
## 35367                                                                                                                                                                    EE states he walked into kitchen and slipped on floor, but regained his balance before falling.
## 35368                                                                                                                                                       EE states he walked into two metal pipes that wereon the back of a truck striking him on the rt sideof face.
## 35369                                                                                                                                                                        EE states he walked off elevator and walked into a cart that was being pushed by another EE
## 35370                                                                                                                                                             EE states he walking and slipped on some frost that was on the ground injuring his lt arm/hand hip/leg
## 35371                                                                                                                                                        EE states he was a passenger in the state vehicle when the vehicle was struck in the rear by anothervehicle
## 35372                                                                                                                                                                                      EE states he was adjusting his position in a chair when he felt his wrist pop
## 35373                                                                                                                                                  EE states he was arresting an offender the offender resisted arrest and the offcier grabbed the offender's jacket
## 35374                                                                                                                                                                                            EE states he was assault by an inmate who strangled him around the neck
## 35375                                                                                                                                                                                                                            EE states he was assaulted by an inmate
## 35376                                                                                                                                                                                                          EE states he was assaulted by an inmate on upper left arm
## 35377                                                                                                                                                             EE states he was assaulted by an inmate the inmatebroke his glasses and grabbed his lt hand and bentit
## 35378                                                                                                                                                                                EE states he was assaulted by an inmate with a flashlight--striking him in the face
## 35379                                                                                                                                                           EE states he was assaulted by an inmate. EE was struck on the shoulder and the inmate spit in EE's face.
## 35380                                                                                                                                                                   EE states he was assaulted by inmate and knocked to ground on concrete landing on right elbow ()
## 35381                                                                                                                                                                  EE states he was assaulted by inmate. Abrasion to left cheek, above left eye and has broken tooth
## 35382                                                                                                                                                                       EE states he was assaulted by inmate. EE was scratched on both arms, hands, and bruised hip.
## 35383                                                                                                                                                                              EE states he was assigned to west yard in which an inmate has been diagnosed with TB.
## 35384                                                                                                              EE states he was assigned to yards 2 and 3 he entered the 1042 bldg. To get paper work pushed the control door shut and his lt hand finger got caught
## 35385                                                                                                                                EE states he was assisting a fellow officer who was being assulted by an inmate when he struck his right knee on the concrete floor
## 35386                                                                                                                      EE states he was assisting a staff member in placing a patient in a chair and felt a pull in his left side when he turned to lift into chair.
## 35387                                                                                                                                                      EE states he was assisting another officer with a violent inmate & that the inmate hit him on the left wrist.
## 35388                                                                                                            EE states he was assisting client fasten her pantsthe client appeared to be falling backward. EE grasgrasped the client pants causing injury to rt hand
## 35389                                                                                                                                                                       EE states he was assisting dump truck operator with lifter, when lifter fell on right toe ()
## 35390                                                                                                                                                    EE states he was assisting in carrying of casket down steps at funeral and experienced pain in lower back area.
## 35391                                                                                                                                                    EE states he was assisting other staff getting patient off floor into geri-chair and felt a pain in lower back.
## 35392                                                                                                                                                            EE states he was assisting pushing a disabled patrol vehicle when he injured his lower back and rt hip.
## 35393                                                                                                                    EE states he was assisting restrain a disruptive inmate when he felt a poping sensation in his leftknee, by a sharp shooting painful sensation.
## 35394                                                                                                                                                                                  EE states he was assisting to locate files when he noticed his rt finger swelling
## 35395                                                                                                                                                                              EE states he was assisting with an inmate when his wrist was caught between handcuff.
## 35396                                                                                                                                                                             EE states he was assisting with placing a patient in the nci hold and twisted his knee
## 35397                                                                                                                                                                                            EE states he was attacked by a pt causing an injury to the lt shoulder.
## 35398                                                                                                                                                                                                                                 EE states he was attacked by a pt.
## 35399                                                                                                                                                                                                                             EE states he was attacked by an inmate
## 35400                                                                                                                              EE states he was attacked by patient from behind- EE hit patient in the head causing fracture to hishand. Employee resigned 11/26/07.
## 35401                                                                                                              EE states he was attempting arrest when the offender ran forwads a telephone pole a guige supporting it the offender spun around the guide wire... ..
## 35402                                                                                                              EE states he was attempting to frisk inmate after handcuffing him before escorting inmate upstairs to nurse's station to have bllod drawn. Right knee
## 35403                                                                                                                     EE states he was attempting to handcuff inmate while holding inmate's left arm, he hit his head on the inmate's left shoulder pushing glasses.
## 35404                                                                                                                   EE states he was attempting to help restrain an inmate. EE grabbed inmate around head with his left arm & inmate fell to floor. Rt knee involved
## 35405                                                                                                                    EE states he was attempting to open a door in the b-block housing area. He grabbed and yanked the handle and felt his shoulder pop out and back
## 35406                                                                                                             EE states he was attempting to place an inmate in hand restraints, the inmate punched EE in lft temple and scratched lft shoulder and back of the neck
## 35407                                                                                                                            EE states he was attempting to redirect an agitatepatient & patient attacked him, hitting & scratch EE also fractured rt little finger.
## 35408                                                                                                                                      EE states he was attempting to restrain an aggressive inmate when the inmate picked him up and threw him to the cement floor.
## 35409                                                                                                                 EE states he was attempting to start a tractor and while jumping off the tractor to disengage thestarter he slipped on ice and fell on his rt knee
## 35410                                                                                                                                EE states he was backing out of kitchen, supervising the inmates as they unloaded the truck, EE blacked out and fell hurting l knee
## 35411                                                                                                                                                                                                      EE states he was bitten by a bull dog while serving warrants.
## 35412                                                                                                                                                                                                               EE states he was bitten by a dog on the rt lower leg
## 35413                                                                                                                                                                 EE states he was bitten by a dog while on duty at a juvenile home. The dog bit EE on the lt ankle.
## 35414                                                                                                                                                                                                                    EE states he was bitten by a spider on the back
## 35415                                                                                                                                                                                                            EE states he was bitten by a spider on the back of neck
## 35416                                                                                                                                                                                                                  EE states he was bitten by a spider on the rt arm
## 35417                                                                                                                                                                                                          EE states he was bitten by a spider on the rt handfinger.
## 35418                                                                                                                                                                                                                                  EE states he was bitten by a tick
## 35419                                                                                                                                                                                                      EE states he was bitten by a tick on the upper rt and lt legs
## 35420                                                                                                                                                                                                             EE states he was bitten by an insect of the lt forearm
## 35421                                                                                                                                                                                            EE states he was bitten by an insect while supervising recreation unit.
## 35422                                                                                                                                                                                      EE states he was bitten by dog on the lt leg whilevisiting a probationer home
## 35423                                                                                                                                                                                                                 EE states he was bitten by mosquito on the stomach
## 35424                                                                                                                                                                                  EE states he was bitten by something that has caused reddness of the lower rt leg
## 35425                                                                                                                                                                                                                      EE states he was bitten by spider on the back
## 35426                                                                                                                                                                                                                    EE states he was bitten on the lt leg by a dog.
## 35427                                                                                                                                                                                                   EE states he was bitten or stung by some unknown type of insect.
## 35428                                                                                                                                                                    EE states he was breaking upa fight b/t two inmates when he was struck one of the inmate's chin
## 35429                                                                                                                                                               EE states he was carefully moving tire and it bounced up striking lt middle finger---mashing finger.
## 35430                                                                                                              EE states he was carrying a lap top computer and amail projector under his lt arm and some papers inhis rt hand when his lt foot slipped off sidewalk
## 35431                                                                                                                                                                     EE states he was carrying dishes into the dish room when he slipped and fell on the wet floor.
## 35432                                                                                                                                                        EE states he was carrying material three 20', 2" sections of pipe felt pain in back and let pipe hit ground
## 35433                                                                                                                                                EE states he was carrying table through doorway and hit finger against corner of doorway, cutting right 5th finger.
## 35434                                                                                                                                                                                           EE states he was chasing a suspect when he fell and injured his lt elbow
## 35435                                                                                                                                                                                  EE states he was checking fire doors as he turned the door his finger was pinched
## 35436                                                                                                                   EE states he was checking items that had been delivered in side of semi-trailer, slipped as he came out, hit lt foot struck rock/stone on ground
## 35437                                                                                                                                                                                        EE states he was checking rear fire doors and sallyports. Twisted left foot
## 35438                                                                                                                                      EE states he was checking the yard and stepped down on 1st step and felt a sharp pain in right thigh - pulled right hamstring
## 35439                                                                                                           EE states he was cleaning carpet at eagle landing using carpet extractor machine, machine gave away at the locking pin causing injury to rt front leg ()
## 35440                                                                                                                                                                                          EE states he was cleaning desk drawer and was stuck with a sewing needle.
## 35441                                                                                                                                        EE states he was cleaning ice off of windsheild of the state vehicle he was driving and hit rt hand on the windsheild wiper
## 35442                                                                                                                                                EE states he was cleaning lint trap container on t5 machine and staple stuck in the middle finger on right hand. ()
## 35443                                                                                                                                                                                     EE states he was climbing a frame ladder when he slipped twisting left knee ()
## 35444                                                                                                                                                                            EE states he was climbing down the steps and his foot slipped off the ring and he fell.
## 35445                                                                                                                                                                                   EE states he was climbing steps to tower 1 when half way up felt his rt knee pop
## 35446                                                                                                                                                             EE states he was closing safety guard on syringe &my hand slipped & stuck the needle into the lt thumb
## 35447                                                                                                                                              EE states he was coming down a ladder when his l foot got caught on a rung, fell backwards, landinon paint roller pan
## 35448                                                                                                                                              EE states he was coming down the steps and his right foot slipped causing him to land hard and twist his right ankle.
## 35449                                                                                                              EE states he was coming in the front door of officwhen a probationer was escaping arrest, pushing, throwing EE to the side onto 2 metal chair & floor
## 35450                                                                                                             EE states he was conducting a pat down of an inmate when he completed this he stepped back into some water and his rt foot slipped and twisted rt knee
## 35451                                                                          EE states he was conducting a traffic stope and reched overn to his duty bad to grab his flashlight as he was exiting out the car he struck the back of his hand on the steering wheel ()
## 35452                                                                                                                                                EE states he was conducting a two mile physical fitness test his lower back portion snapped and became very painful
## 35453                                                                                                                                                           EE states he was conducting an investigation of crime scene, slipped on steps---that were wet from rain.
## 35454                                                                                                                                                                     EE states he was conducting home visit when he was bitten by two dogs on lt hand and both legs
## 35455                                                                                                                               EE states he was conducting the sewing plant fencetest in gatehouse control when he was exposed to chemicals in a fire extinguisher.
## 35456                                                                                                                                                                EE states he was crossing the cannon hall parking lot when he slipped on the icy pavement and fell.
## 35457                                                                                                                                          EE states he was crossing the street from thomas hall when he tripped on the curbing & fell face first into the pavement.
## 35458                                                                                                                                                       EE states he was cuffing an inmate who had been fighting with inmate. EE hands became contaminatedwith blood
## 35459                                                                                                                                                                     EE states he was cutting a fire line in a laurel thicket when stick went into his left nostril
## 35460                                                                                                                                                                                 EE states he was cutting grass on corr. Unit - west yard-got something in left eye
## 35461                                                                                                                                                                        EE states he was cutting through hose with new pocketknife when he cut his lt index finger.
## 35462                                                                                                                                                                               EE states he was cutting veg for lunch when the knife slipped and he cut his lt hand
## 35463                                                                                                                                                                            EE states he was cutting wire ties off a french knife slipped and cut his middle finger
## 35464                                                                                                                           EE states he was demonstrating a kick on the punchingbag and immediately felt pain in his rightfoot and had trouble walking on his foot.
## 35465                                                                                                                            EE states he was descending the staircase in bc2a, when his lft foot slipped on the top step, injuringlft ankle, broken, torn ligaments
## 35466                                                                                                                                                   EE states he was directing traiffic at an inter- section and was struck by a vehicle and thrown onto the street.
## 35467                                                                                                                                        EE states he was dizzy and fell to the floor landing on his right side of his hip and hand. EE also complained of back pain
## 35468                                                                                                                     EE states he was doing a wiring project in the furniture bldg. He went to the truck to pick up his supplies and stepped off bank twisting back
## 35469                                                                                                                                 EE states he was doing curfew cks when coming downa set of steps & 1 of the steps gave way & he felldown steps landing of backside
## 35470                                                                                                                  EE states he was doing fire saftey duties and while walking toward the nurses station he stepped on something slick and fell on lt leg and lt hip
## 35471                                                                                                                                                       EE states he was doing ground fighting technique during crdt training & his ankle twisted & made a loud pop.
## 35472                                                                                                                       EE states he was driving down freeman mill rd in state veh traffic slowed & began moving again when he was struck in rear by another vehicle
## 35473                                                                                                                   EE states he was driving on hwy 70 when a car ahead of him stopped to make left-hand turn. He applied brakes when he rearended vehicle. Back/nck
## 35474                                                                                                                   EE states he was driving the college dump truck loaded w/steel-- weight shifted & truck went off edge of road--causing EE to lose control of it.
## 35475                                                                                                                                              EE states he was ducking under a pipe when he came out on the other side he was struck in the mouth by a pipe hanger.
## 35476                                                                                                                                                                                                        EE states he was dusting high window seals in the stairwell
## 35477                                                                                                                                                                    EE states he was engaged in firearms training the injury occured when he was firing the shotgun
## 35478                                                                                                                                                               EE states he was engaged in training as his partner took him to the floor he felt pain in lower back
## 35479                                                                                                                                                                                   EE states he was entering a gate when an insect bit him on the back of the neck.
## 35480                                                                                                                                          EE states he was entering dorm, when he slipped ona mat at the front door, causing his right leg & hand to hit the floor.
## 35481                                                                                                                                    EE states he was entering master conrol, when he struck the back of his right hand on the corner of the lock for the trap door.
## 35482                                                                                                                                 EE states he was escorting a restrained inmate down stairwell, slipped at bottom of stairs & fullweight transferred to left ankle.
## 35483                                                                                                                                             EE states he was escorting an inmate from the showers when the inmate turned and head butted hislt. Cheek of his face.
## 35484                                                                                                               EE states he was escorting an inmate to his cell from the shower when inmate refused to return to cell EE had to use physical force to return inmate
## 35485                                                                                                                                                                      EE states he was escorting an inmate to segregat- ion and tripped over step down on sidewalk.
## 35486                                                                                                                                                          EE states he was escorting an inmate tot he 208 yard to shut off the water and slipped on ice on sidewalk
## 35487                                                                                                                           EE states he was escorting an inmate, attempted tohandcuff inmate, inmate became uncooperative; inmate hit officer on (rt) side of face.
## 35488                                                                                                                 EE states he was escorting client back to chair, client legs gave way, causing all weight on EE, while preventing client from fallinf injured back
## 35489                                                                                                                                                                                   EE states he was evacuating inmates out of cellblock 605. Had scott air pack on.
## 35490                                                                                                                                                                                          EE states he was exiting the gatehouse, he struck his r elbow on the door
## 35491                                                                                                                                  EE states he was exiting the kitchen at door f2b, the mat was wet, EE slipped and fell, his rt side of l back, rt knee and rt hip
## 35492                                                                                                                                        EE states he was exiting unit when he stepped in hole in the parking lot. EE didn't see the hole due to the light being out
## 35493                                                                                                                                                                                                                   EE states he was expose to blood from an inmate.
## 35494                                                                                                                                                                                                                                     EE states he was exposed to TB
## 35495                                                                                                                                                                                               EE states he was exposed to a patient with suspected active scabies.
## 35496                                                                                                                                                                                     EE states he was exposed to blood from an inmate while restraining the inmate.
## 35497                                                                                                                                                                                       EE states he was exposed to blood which touch his open wound on his rt thumb
## 35498                                                                                                                                                                                                           EE states he was exposed to blood while making an arrest
## 35499                                                                                                                                                                                         EE states he was exposed to bodily fluid while performing cpr on an inmate
## 35500                                                                                                                                                                                                                      EE states he was exposed to harmful chemicals
## 35501                                                                                                                                                                                         EE states he was exposed to pepper spray while escorting inmates to shower
## 35502                                                                                                                                                                                                    EE states he was exposed to pinkeye while supervising trainees.
## 35503                                                                                                                                                                    EE states he was exposed to poison ivy while cutting and removing a tree that fell in the road.
## 35504                                                                                                                                                              EE states he was exposed to poison ivy while demonstrating to an inmate how to cut with a weed-eater.
## 35505                                                                                                                                                                              EE states he was exposed to poison sumac which hascaused a rash on parts of his body.
## 35506                                                                                                                                                                                                                 EE states he was exposed to scabies from an inmate
## 35507                                                                                                                                                                                                         EE states he was exposed to scabies from several students.
## 35508                                                                                                                                                                                                                           EE states he was exposed to tuberculosis
## 35509                                                                                                                                                                              EE states he was exposed to tuberculosis when he went to visit a probationer in jail.
## 35510                                                                                                                                                                                                                          EE states he was exposed to tuberculosis.
## 35511                                                                                                                           EE states he was faxing papers & papers fell behind printer & when he went to pick up papers, his head bumped cabinet mounted on wall ()
## 35512                                                                                                                                                                                              EE states he was feeding patients and felt something go into his eye.
## 35513                                                                                                                                                                       EE states he was flushing an tv line and stock himelf with the needle in his lt index finger
## 35514                                                                                                                                                                        EE states he was getting off forklift when the back of his rt thigh was cut by a metal clip
## 35515                                                                                                                EE states he was getting off golf cart -- client hit EE -- EE slipped on the metal bar on the cart & fell hitting head on golf cart & hurt rt shldr
## 35516                                                                                                                                   EE states he was getting out of chair to hand overthe keys and the desk when he stood up his rt side of his rt foot rolled under
## 35517                                                                                                                                       EE states he was getting out of roving patrol and as he went to close the driver side door it struck him on the left eyebrow
## 35518                                                                                                                      EE states he was getting out of van and his foot stuck on the running board and he started to fall, caught self with rt foot and twisted knee
## 35519                                                                                                                                                                           EE states he was getting ready to hook up trailer and he felt a sharp pain in his chest.
## 35520                                                                                                                                                                               EE states he was getting up and the hydraulic cylinger collasped and jerked his back
## 35521                                                                                                                           EE states he was going down stairs from control center # 3 to control center #2 when his foot slipped & he fell before catching himself.
## 35522                                                                                                                   EE states he was going down the tower stairs, his rt food slipped off of the step, he was trying to step on. He landed awkwardly on his rt. Leg.
## 35523                                                                                                                                                                         EE states he was going home, stepped off curb fell in circle area in front of pci building
## 35524                                                                                                                                             EE states he was going to bathroom and upon returning down hall he slipped in some water and hurt his lt knee and back
## 35525                                                                                                                                                                       EE states he was going to staff smokin area & twisted left ankle & it popped & he felt fine.
## 35526                                                                                                                                                                                                 EE states he was going up the front steps and slipped and fell. ()
## 35527                                                                                                                                       EE states he was going upstairs into control room, when his ankle gave away and fell hitting his r elbow on stairway railing
## 35528                                                                                                                             EE states he was handing inmate folders out trap door to officer & staple from one of the folders caught lt-wrist area causing injury.
## 35529                                                                                                               EE states he was handing out the mail when some letters fell out of his hand. EE bent down to pickup letters and struck his head against door catch.
## 35530                                                                                                                                    EE states he was having trouble gathering his thoughts and his blood pressure was high causing him to feel nausea and vomiting.
## 35531                                                                                                               EE states he was helping a client sit down. The client grabbed EE's arm and jerked it several times and then his the EE's arm. Human bite on lft arm
## 35532                                                                                                                      EE states he was helping another officer try to get control of an inmate who was resisting and somehow injured left ring finger and forehead.
## 35533                                                                                                                                                                           EE states he was helping escort inmate out of cell612 due to paper fire in dayroom area.
## 35534        EE states he was helping load chairs onto a truck to transport to dor's main building. Wheels of one chair caught on side of loading ramp. As EE tried to lift chair & unhinge wheel to get it back on ramp, he heard loud pop at his shoulder & felt pain.
## 35535                                                                                                                               EE states he was helping to apprehend an inmate when another officer placed inmate face down on bed and pulled EE along with inmate.
## 35536                                                                                                                                      EE states he was hit by the door, his lower back might have been affected although he was hit in the region of the upper back
## 35537                                                                                                                                                                        EE states he was hit in the mouth while trying to control an inmate EE 25% left ring finger
## 35538                                                                                                                                                                                      EE states he was hit in the rear driver side of state vehicle by another car.
## 35539                                                                                                                             EE states he was holding a box of blankets to the side so he could move the matress and box springs to place blankets in storage area.
## 35540                                                                                                                      EE states he was holding an empty iv bag with the tubing attached to the needle inside port the needle pierced through the bag into rt finger
## 35541                                                                                                                                             EE states he was hooking trailer to community worksquad van when he felt a sharp pain in the lower right side of back.
## 35542                                                                                                                                                                EE states he was in a confrontation with an inmateto the floor and hit his arm on the floor or wall
## 35543                                                                                                                                EE states he was in a session with an inmate and inmate became aggitated and pushed EE out of chairinto wall lacerating EE's elbow.
## 35544                                                                                                             EE states he was in a smoke filled trng rm when another individual turned around and scott airpack he was wearing hit him in the mouth & chipped tooth
## 35545                                                                                                                                                            EE states he was in advanced crdt/pert training attempting an escape technique & thumb bent back- wards
## 35546                                                                                                                                                                                                                      EE states he was in altercation with a inmate
## 35547                                                                                                                     EE states he was in basement helping put in lightscaught my foot in some pi tripped and fell. Started feeling dizzy & lightheaded after I fell
## 35548                                                                                                                                                             EE states he was in contact with a pt who has a rash which has caused swelling and itching of the eye.
## 35549                                                                                                                                                                                    EE states he was in contact with an immate who tested positive for tuberculosis
## 35550                                                                                                                              EE states he was in line up when the word about the staph infection breakout at bcci was announcedconcerned of sore on his upper arm.
## 35551                                                                                                                      EE states he was in process of shoveling walk way due to snow when he stepped out of vehicle lost balance fell injuring left side hip area ()
## 35552                                                                                                                        EE states he was in pursuit of motorcycle, when he lost control and slid across the centerline ans struck a stopped tractor-trailer head-on
## 35553                                                                                                                                                       EE states he was in squatting position to work on a keyboard and his knee shifted and caught pain in rt knee
## 35554                                                                                                                                                         EE states he was in the hallway putting pt in therapeutic hold, injured back, pt was fighting against him.
## 35555                                                                                                                   EE states he was in the process of being relieved of the control tower when he slipped down a couple of stairs causing him to hit his l back/arm
## 35556                                                                                                              EE states he was in the process of sitting down ina chair, so he could log some calls for inmates. Another staff member did not notice him attempting
## 35557                                                                                                                                                                                                EE states he was injured by lifting scale and slipping off the curb
## 35558                                                                                                                                                                             EE states he was injured on johnson yard, specificsnot known due to employee resigning
## 35559                                                                                                                                                                            EE states he was injured while placing patient in nci(therapeutic hold) injured lt leg.
## 35560                                                                                                               EE states he was injuryed while lifting cases of food and water during the hurricane floyd relief operation--injurying his upper/lower back & lt leg
## 35561                                                                                                                 EE states he was inspecting belts and pulley on the exhaust fan a gust of wind blew the turbine which caused the pulley to rotate cutting EE finge
## 35562                                                                                                                                                         EE states he was inspecting wire cover b/t sinks on the 4th floor and a screw was loose and cut his finger
## 35563                                                                                                                                                     EE states he was installing a steal bed frame & when he bent down to pick up frame, felt sharp pain in back ()
## 35564                                                                                                                                                     EE states he was installing an electric motor & itslipped catching his finger between the motor & the machine.
## 35565                                                                                                                            EE states he was investigating a collison--he cut his arm on broken glass that came from a van door window that swung forward suddenly.
## 35566                                                                                                                                                   EE states he was involved in a confrontation with an inmate which has caused an injury to his lt armand rt elbow
## 35567                                                                                                                                                                                                              EE states he was involved in a motor vehicle accident
## 35568                                                                                                                                                                                        EE states he was involved in a motor vehicle accident causing a back injury
## 35569                                                                                                                                                                                   EE states he was involved in a motor vehicle accident causing injury to his ribs
## 35570                                                                                                                                                                       EE states he was involved in a motor vehicle accident injuring his lower rt side and rt hip.
## 35571                                                                                                                                                                                   EE states he was involved in a motor vehicle accident injurying his lt shoulder.
## 35572                                                                                                                                                                             EE states he was involved in a motor vehicle accident injurying his neck and rt wrist.
## 35573                                                                                                                                                                  EE states he was involved in a motor vehicle accident when a deer ran out in front of the vehicle
## 35574                                                                                                                                                        EE states he was involved in a motor vehicle accident when another vehicle struck his vehicle from the rear
## 35575                                                                                                                                    EE states he was involved in a motor vehicle accident when another vehicle struck his vehicle from the rear causing back injury
## 35576                                                                                                                      EE states he was involved in a motor vehicle accident when the patrol car struck a concrete drainage cover in the median--EE injured his back
## 35577                                                                                                                                                      EE states he was involved in a motor vehicle accident when the vehicle hydro plane and struck another vehicle
## 35578                                                                                                                                                                                   EE states he was involved in a motor vehicle accident while transporting inmates
## 35579                                                                                                                                                                                  EE states he was involved in a motor vehicle accident while transporting parolees
## 35580                                                                                                                    EE states he was involved in a motor vehicle accident, his patrol vehicle was struck by anothervehicle that failed to yield at an intersection.
## 35581                                                                                                                                                                                                           EE states he was involved in a motor vehicle accident. N
## 35582                                                                                                                                                         EE states he was involved in a motor vehicle accident. The vehicle hydro plane and struck another vehicle.
## 35583                                                                                                                          EE states he was involved in a use of force & fellto floor while attempting to restrain an inmate. EE initially reported injury on 5/5/04
## 35584                                                                                                                                EE states he was involved in an arrest when the suspect resisted and an altercation ensued-- injurying EE rt hand/rt shoulder/head.
## 35585                                                                                                                EE states he was involved in the annual firearms class. During the training EE states that powder or metal from the shotgun blast entered left eye.
## 35586                                                                                                                                      EE states he was involved in the prison emergency reposne training got posion ivy on his arms hands then spread all over body
## 35587                                                                                                                                                                              EE states he was involved ina use of force subduing an inmate when the injury occured
## 35588                                                                                                                                                                                                 EE states he was invoved in altercation in which liquid was thrown
## 35589                                                                                                                                                                                                         EE states he was kicked by a cow while unloading atrailer.
## 35590                                                                                                                                  EE states he was kneeling on right knee he picked up case of juices twisting from right to left and felt pain in right lower back
## 35591                                                                                                                                                                                  EE states he was knock down by another EE which caused injury to his lt shoulder.
## 35592                                                                                                                                                                                             EE states he was leaning against a table when a bar frame fell on him.
## 35593                                                                                                                                                                                   EE states he was leaning out of the bathroom when the hot water heater exploded.
## 35594                                                                                                                                                                                       EE states he was leaning over rail to repair sheetrock and strained his back
## 35595                                                                                                                                                          EE states he was letting inmated in and out of cell blocks when he scraped his ankle with the block door.
## 35596                                                                                                                                         EE states he was lifting a box of compressors and the weight shifted, causing his arm to twist and he felt his elbow snap.
## 35597                                                                                                                                                EE states he was lifting a box of targets and was placing them on top of steel cabinet and felt pain in his stomach
## 35598                                                                                                                                              EE states he was lifting and setting boards into place and holding them in place to be nailed for a storage building.
## 35599                                                                                                                                                                    EE states he was lifting handling cart onto the back of gator vehicle and felt pain in shoulder
## 35600                                                                                                                                                                                              EE states he was lifting heavy boxes and pallets and sustained hernia
## 35601                                                                                                                                                                                                         EE states he was lifting patient and felt pain in his back
## 35602                                                                                                                                                 EE states he was lifting steel from a steel rack to move to a layout table when he felt something pull in his back
## 35603                                                                                                                                                                                                           EE states he was lightning a gas grill when it exploded.
## 35604                                                                                                                                                                                                      EE states he was loading limbs on truck to haul to burn pile.
## 35605                                                                                                                                                                          EE states he was lowering the tailgate og truck and struck his elbow on the loading dock.
## 35606                                                                                                                       EE states he was making a perimeter check and stepped in a hole with right foot causing him to lose balance, causing a strain in groin area.
## 35607                                                                                                                                           EE states he was making his round when he saw a table in middle of floor and pushed it in corneree back started hurting.
## 35608                                                                                                                                                                          EE states he was making rounds repositioning pt and started having bac, hand and leg pain
## 35609                                                                                                                                                                        EE states he was measuring and gauging base tile and cut his lt finger on exposed lath wire
## 35610                                                                                                                                                                                                                     EE states he was moving a desk and pulled bac)
## 35611                                                                                                                                                       EE states he was moving a desk back into an office that he had tiled when he felt a sharp pain in upper back
## 35612                                                                                                                                           EE states he was moving roofing shingles from from ground to back of truck for relocation and injured his lower rt back.
## 35613                                                                                                                                                                                                             EE states he was not feeling well and could not breath
## 35614                                                                                                                                                           EE states he was obsering inmates. EE stepped backwith his left leg causing him to fall on his tailbone.
## 35615                                                                                                                         EE states he was observing inmates at weight bldg at mcu when inmate dropped weights and weight bounced on the ground and hit his lt ankle
## 35616                                                                                                                                                EE states he was observing the supply closet, thatis going to be rentovated and was bit by somehtingunder right arm
## 35617                       EE states he was on a field visit to taxpayer in mt. Airy nc. Since tp wasn't home, he left business card in door. As he walked back to his car, tp's dog lunged & bit EE's right thigh, leaving 2 puncture wounds, scratches & bruising. ()
## 35618                                                                         EE states he was on break sitting in the computer room, texting, felt an itching feeling, scratched. Didnt see anything on him. Later used an alcohol wipe on it. Swollen the next day. ()
## 35619                                                                                                                                    EE states he was on call enroute to the unit when he hit an ice patch on the highway went into the shoulder and flipped vehicle
## 35620                                                                                                      EE states he was on foot patrol in the school of ed checking property when he step off edge of stage causing fall injuring left toe, left ankle & lower back.
## 35621                                                                                                                                                            EE states he was on loading dock saw cart begin to roll grabbed cart and felt something pop in his back
## 35622                                                                                                                                                                EE states he was on post six and had a seizure and fell to the rt and hit his head and rt shoulders
## 35623                                                                                                                                                                                         EE states he was on scaffold and he swung around and felt pull in shoulder
## 35624                                                                                                                              EE states he was on the floor trying to seperate inmates fighting & was affected by oc pepper sprayhe also pulled muscle in shoulder.
## 35625                                                                                                                                     EE states he was on the yard by the back door of tthe abe/ged classroom when an insect flew into hisrt. Eye, stung or bit eye.
## 35626                                                                                                                                                                                     EE states he was opening cabinet he was struck by a piece of plastic in lt eye
## 35627                                                                                                                EE states he was opening doors & a large garage door of programs. When finished rtnd to the sgt's ofc & his lt palm & index finger started swelling
## 35628                                                                                                                                        EE states he was opening steel door at entrance ofhigh rise & the door came across top of foot striking his right foot/toes
## 35629                                                                                                                                                                  EE states he was opening the double gates near recieving and stepped in a hole with his left foot
## 35630                                                                                                              EE states he was packing inmate's property. While EE was taking inmates's pants out of his locker hefelt a sharp point stick in his 4th right finger.
## 35631                                                                                                                          EE states he was participating in a game with another resident assistant and EE ran into a column in from of the library and cut his eye.
## 35632                                                                                                                                      EE states he was participating in the required physical fitness run--during the run EE experienced a cramp in his groin area.
## 35633                                                                                                                           EE states he was passenger in a state van. A car pulled out the intersection and the van was unableto avoid a collison, striking the car
## 35634                                                                                                                                                          EE states he was passing by a fire alarm when the alarm went off causing hearing loss and ringing of ears
## 35635                                                                                                                                                                                       EE states he was passing out dept event surveys when he was bitten by a dog.
## 35636                                                                                                                               EE states he was pat searching an inmate when a pencil in the inmates pocket broke & the point. Stuck EE in meaty part of right hand
## 35637                                                                                                                     EE states he was performing a rectal exam on hiv inmate when the glove compromised and fecal material and body fluids contaminated his rt hand
## 35638                                                                                                                                            EE states he was performing a use of force on an inmate, he hit his right hand on the bunk in the cell, causing injury.
## 35639                                                                                                                                                 EE states he was performing fence test using metal rod; dropped metal rod & hit lt index fingeragainst metal fence
## 35640                                                                                                                      EE states he was performing front rolls during defensive tactics instruction--rolled on lt shoulder resulting in pain in upr. Muscles of shld
## 35641                                                                                                                                                                                  EE states he was performing training when he felt something pop in his lower back
## 35642                                                                                                                                         EE states he was picked up inmates personal property while standing up states that he turned to the rt and his back popped
## 35643                                                                                                                                           EE states he was picking up a chair to move it outof the way and a nail punctured and cut the middlefinger on left hand.
## 35644                                                                                                                                                 EE states he was picking up a trash can with cabbage inside to empty into dumpster and felt pain to his lower back
## 35645                                                                                                                                     EE states he was picking up trash and debris from the off campus warehouse. When picking up an object, right thumb was cut. ()
## 35646                                                                                                                                                                          EE states he was picking up trash when a inmate threw what is thought to be urine on him.
## 35647                                                                                                      EE states he was picking up trays on the upper tier of unit I a dorm when he pep the trap of altor sanders, and inmate threw liquid in his face like piss. ()
## 35648                                                                                                                EE states he was placing a wood cabinet into cart when a piece of board came loose and stroke EE with a rusty nail on index finger on left hand. ()
## 35649                                                                                                                                                                                           EE states he was placing combative patient in nci hold and fell on back.
## 35650                                                                                                                          EE states he was placing forms in file cabinet while on limited duty, bent down to place a document in a file and felt some pains in back
## 35651                                                                                                                                 EE states he was placing items in the rear of the car when his foot slipped of the brake causing thecar to jerk injuring his back.
## 35652                                                                                                                                                                         EE states he was placing ppv #2 into rotation, while getting into vehicle left knee popped
## 35653                                                                                                                                                                                               EE states he was placing student in pic hold and hit knee/ shoulder.
## 35654                                                                                                           EE states he was playing basketball w/other team members when he went for a lay-up & was grabbed by someone. He came down hard on lft leg. Torn ligament
## 35655                                                                                                                                                                 EE states he was practicing patient escape & fell back onto shaft causing a pop in his right knee.
## 35656                                                                                                                                          EE states he was preparing sauce for supper pouring sauce from one pot to another EE states sauce spilled on his rt-hand.
## 35657                                                                                                                 EE states he was proceeding through the main door at master control when the door was shut on me andleft on it wasn't opened until other EE opened
## 35658                                                                                                               EE states he was processing a criminal offender sentenced to probation which requires close conversation for a prolonged period in an office setting
## 35659                                                                                                                                                 EE states he was pulling a hose around a house during a fire when he felt a pop in his right calf causing pain. ()
## 35660                                                                                                                                           EE states he was pulling a load of three boxes up two flights of stairs when he felt something pull in his rt lower back
## 35661                                                                                                                                                                                         EE states he was pulling a rack when he struck hishand on a door way wall.
## 35662                                                                                                                                                             EE states he was pulling tape off a container whenhe fell off of a ladder causing upper body contusion
## 35663                                                                                                                     EE states he was pulling trash out of one of the labs and yanked the bag up fast, some liquid stuffsplashed into EE's face and got into lt eye
## 35664                                                                                                                                                                   EE states he was pulling/moving furniture from the quade and after work felt pain on his back ()
## 35665                                                                                                                                                                                    EE states he was pushed against a wall by an inmate while searching the inmate.
## 35666                                                                                                                                                                                  EE states he was pushed by an inmate fell to the floor injuring his rt hand/wrist
## 35667                                                                                                                                                                                                             EE states he was pushed by an inmate in the chest area
## 35668                                                                                                                                                       EE states he was pushing a desk on a dolly and felt a pop in his foot, then got a charlie horsed in his calf
## 35669                                                                                                                                                                           EE states he was pushing a diabled vehicle off theroadway and sprained his left big toe.
## 35670                                                                                                                                                                                             EE states he was pushing equip. Off truck bed, tangled ft. In cloth os
## 35671                                                                                                                                          EE states he was putting something under the patient to lift off mat. Patient uncrossed his legs and struck EE in lft eye
## 35672                                                                                                                                                   EE states he was putting the contraband in the file cabinet, the cap came off and needle stuck him in the finger
## 35673                                                                                                                                               EE states he was putting up stock in the janitors closet when he turned and hit his left elbow on a wooden shelf. ()
## 35674                                                                                                                                                                    EE states he was reaching to get a box off wooden shelf and a splinter embedded into lt forearm
## 35675                                                                                                                                                                      EE states he was removing a pinic table when the seat of the pinic table fell on his lt hand.
## 35676                                                                                                                                             EE states he was removing battery packs from cordless drill and having to reach far apart and he strained his lt thumb
## 35677                                                                                                                                                               EE states he was removing carpet and was pushing a scraper with his lt foot and injuried his rt knee
## 35678                                                                                                                    EE states he was removing chairs from a classroom for floor stripping and waxing when he became short of breath, felt faint with some numbness.
## 35679                                                                                                                                                                                               EE states he was removing promotion tent and cut hand--index finger.
## 35680                                                                                                                                EE states he was removing the clean out plug from sewage line and pressure from the line covered him in completaly with human feces
## 35681                                                                                                                             EE states he was repairing a panic hardware on the glass doors, a student closed the door smashing his r middle finger in the door jam
## 35682                                                                                                                                                               EE states he was repairing the refrigeration system when a leak occurred, caused burns to both hands
## 35683                                                                                                              EE states he was replacing end of cord with the phillips head screwdriver when it slipped & went into into inside of lt hand knuckle on index finger.
## 35684                                                                                                                                                                                  EE states he was replacing pipe on fire pump when he got something in his lt eye.
## 35685                                                                                                                                 EE states he was responded to several complaints from people on pier, EE jumped from pier to sand dune, to inspect people on beach
## 35686                                                                                                                                                                                    EE states he was responding to a call when he injured his heel on this rt foot.
## 35687                                                                                                                                                        EE states he was responding to a fight & while exiting through the yard gate he fell and scraped both knees
## 35688                                                                                                                                      EE states he was responding to an aggressive patient and his leg was caught in the leg of the chair and he twisted his ankle.
## 35689                                                                                                                                                     EE states he was responding to fight in bldg#2 while running down the sidewalk he slipped and fell on his back
## 35690                                                                                                                                          EE states he was restraining an inmate who was attempting to break free from his grasp when EE felt a tug in his shoulder
## 35691                                                                                                             EE states he was role playing as an inmate during a cell extraction drill.. States he fell back & skinned the backs of both arms & bumped back of head
## 35692                                                                                                                                   EE states he was rotating stock and unloading truck. He states he moved around 150lbs. And felta little twinge in his lower back
## 35693                                                                                                                                                                                                   EE states he was running bloodhounds when he injured rt foot/toe
## 35694                                                                                                                                                                             EE states he was running to another unit to asst. In a fire drill and injured his toe.
## 35695                                                                                                                                                                         EE states he was sawing plywood when the saw kicked the wood into his stomach and side. ()
## 35696                                                                                                                                                                                                            EE states he was scratched by a fingernail of a parolee
## 35697                                                                                                                                                                                                                                EE states he was scratched by a pt.
## 35698                                                                                                                                                                                               EE states he was screeding concrete when he strained his r shoulder.
## 35699                                                                                                                               EE states he was searching an inmate on the recreational field he alleges that the inmate moved causing him to jam his rt 2nd finger
## 35700                                                                                                                                                                                                     EE states he was searching and a tatoo needle struck rt finger
## 35701                                                                                                                    EE states he was shutting down fire hydrant he wasusing to fill water tank when water from other hose connection knocked him backward into pipe
## 35702                                                                                                                               EE states he was sitting at control and another officer was spraying bleach to clean desk and bleach splashed off desk into his eye.
## 35703                                                                                                                         EE states he was sitting at desk, when he went to get up he pushed the chair back and the back legs broke causing him to fall to the floor
## 35704                                                                                                                                           EE states he was sitting at his desk when he pull out his work tray and when he stood up he struck his chest on the tray
## 35705                                                                                                                                                             EE states he was sitting at the control desk in building 1044 when his hand started to itch then swell
## 35706                                                                                                                EE states he was sitting in a chair in the control room when the lt rear leg broke off causing him to fall on the floor and hitting the back of his
## 35707                                                                                                                                                                    EE states he was sitting in chair looking through release dates books in order to file material
## 35708                                                                                                                                                                                                    EE states he was sitting in my chair and my chair legs broke ()
## 35709                                                                                                                                                                                                                     EE states he was spit on the neck by an inmate
## 35710                                                                                                                        EE states he was sprayed into my face and eyes with oc pepper spray (training). Spray and particles got into eyes causing pain & irritation
## 35711                                                                                                                                                        EE states he was sprayed with pepper spray during a training session. This has caused respiratory problems.
## 35712                                                                                                                                                                  EE states he was spraying weed on 20 acre land and was attacked by a tick was removed surgically.
## 35713                                                                                                                                                                        EE states he was stacking cooler lids when a lid fell and struck EE on the top of the head.
## 35714                                                                                                                                                                        EE states he was stacking trays from conveyor belt3 at a time when he felt pain in his back
## 35715                                                                                                                                                                                                    EE states he was standing at a cell door and inmate spit on him
## 35716                                                                                                                                                                              EE states he was standing at the kitchen door while watching inmates during breakfast
## 35717                                                                                                              EE states he was standing behind a vistor when she collapsed backward into him causing him to bent his back backwards as he tried to support her back
## 35718                                                                                                                                  EE states he was standing in a ditch bank when dirt started caving in causing EE to lose his balance and fall injurying his back.
## 35719                                                                                                                                                                  EE states he was standing on a floor panel which broke causing EE foot to drop 12" to the ground.
## 35720                                                                                                                     EE states he was standing on walk outside the front door waiting for line-up to start when he was hit in the head bu a rock thrown over fence.
## 35721                                                                                                                              EE states he was standing outside inmate's cell door when inmate took cup, dipped in toilet, & threw on his left arm, torso, and leg.
## 35722                                                                                                                                          EE states he was standing talking to another officer when he fainted striking the back of his head and elbow on the floor
## 35723                                                                                                                      EE states he was standing to retrieve a sign bracket to put signs out when his rt knee struck the door causing his knee cap to be dislocated.
## 35724                                                                                                                                          EE states he was standing up off toilet when he slipped on the wet floor and trying to stop the fall he twisted his back.
## 35725                                                                                                                                                                                               EE states he was stepping down from a step and hisleft knee twisted.
## 35726                                                                                                                                                                       EE states he was stepping from carpet to tile floor, his foot slid and he went down on knees
## 35727                                                                                                                       EE states he was stepping into control room, rreached back to close the door, his ring was caught on the laten, the ring cut into his finger
## 35728                                                                                                                                                EE states he was stepping over six inch wall and rocks on the other side gave away causing him to twist his lt knee
## 35729                                                                                                                             EE states he was stopped to change a flat tire. The tire fell on his left middle finger while mounting on state vehicle's right wheel.
## 35730                                                                                                                                                                                   EE states he was stretching his lt arm when the sallyport door closed on his arm
## 35731                                                                                                                                                                           EE states he was stripping the 2nd floor hallway when he slipped and fell in stripper ()
## 35732                                                                                                                                                                           EE states he was struck by a door striking him on the upper cheek, rt hand, and rt knee.
## 35733                                                                                                                                                                                               EE states he was struck by a flying object while assisting a trainee
## 35734                                                                                                                                                                                                                   EE states he was struck by a pt on the rt cheek.
## 35735                                                                                                                                                                                                                   EE states he was struck by an aggressive patient
## 35736                                                                                                                                                                                                       EE states he was struck by an inmate on the back of the head
## 35737                                                                                                                                                                                                      EE states he was struck by an inmate on the rt cheek and head
## 35738                                                                                                                                                                                                              EE states he was struck by inmate on the side of face
## 35739                                                                                                                                                                                       EE states he was struck by patient causing injury to back and shoulder area.
## 35740                                                                                                                                                                                                               EE states he was struck in the abdomen by an inmate.
## 35741                                                                                                                                                                           EE states he was struck in the face by an inmate and also got pepper spray in both eyes.
## 35742                                                                                                                                                                EE states he was struck in the face by an inmate on the rt side of face. EE eye glasses was broken.
## 35743                                                                                                                                                                                                                  EE states he was struck in the face by an inmate.
## 35744                                                                                                                                                                                                                  EE states he was struck in the head by a student.
## 35745                                                                                                                                                                                                                  EE states he was struck in the head by an inmate.
## 35746                                                                                                                                                          EE states he was struck in the mouth by an inmate. He also received minor scrapes to his lt and rt wrist.
## 35747                                                                                                                                                                                                                        EE states he was struck in the mouth by pt.
## 35748                                                                                                                                                                                                                  EE states he was struck in the nose by a patient.
## 35749                                                                                                                                                                                                                 EE states he was struck in the rt eye by an inmate
## 35750                                                                                                                                                                                                                   EE states he was struck on the head by an inmate
## 35751                                                                                                                                                                          EE states he was struck on the lt side of back by an inmate while restraining the inmate.
## 35752                                                                                                                                                                                                       EE states he was struck on the lt side of face by a patient.
## 35753                                                                                                                                                                                    EE states he was struck several times in the head and facial area by an inmate.
## 35754                                                                                                                      EE states he was struck w/ sudden dizziness, nausea, which made him turn blue in color. He turned pale w/ a cold clammy sweat. Cause unknown.
## 35755                                                                                                                                  EE states he was strugling with inmate during use of force and hit his left knee on teh side of the bed, he fell against the bed.
## 35756                                                                                                                                           EE states he was stuck by the end of a knife bladewhile searching the janitor's closet. Stuck lft hand palm under thumb.
## 35757                                                                                                                                                                                                      EE states he was stung by a bee on the head, lt armand rt arm
## 35758                                                                                                                                                                                                                      EE states he was stung by a bee on the lt arm
## 35759                                                                                                                                                                                                                      EE states he was stung by a bee on the rt eye
## 35760                                                                                                                                                                                                                  EE states he was stung by a bee on the rt forearm
## 35761                                                                                                                                                                                                                 EE states he was stung by a bee on the rt forearm.
## 35762                                                                                                                                                                                                                        EE states he was stung by a wasp on lt hand
## 35763                                                                                                                                                                                                    EE states he was stung by a wasp on the ear, arm, and chin area
## 35764                                                                                                                                                                                                                  EE states he was stung by a wasp on the lt cheek.
## 35765                                                                                                                                                                                                                    EE states he was stung by a wasp on the rt hand
## 35766                                                                                                                                                                                                             EE states he was stung by a wasp on the rt side ofneck
## 35767                                                                                                                                                                                                    EE states he was stung by a yellow jacket on the lt wrist area.
## 35768                                                                                                                                                                                                           EE states he was stung by a yellow jacket on the rt leg.
## 35769                                                                                                                                                                                                                     EE states he was stung by an insect on the lip
## 35770                                                                                                                                             EE states he was supervisin bathroom breaks for the inmates and am inmate struck EE in the mouth with his closed fist.
## 35771                                                                                                                                              EE states he was supervising an inmate moving a pallet of stock from the freight elevator pallet started to turn over
## 35772                                                                                                                                                             EE states he was supervising an inmate with a weedeater some of the debris struck him under his lt eye
## 35773                                                                                                                                        EE states he was supervising inmates returning to the housing floor when he was struck in face with a closed fist of inmate
## 35774                                                                                                                   EE states he was supervising maintenence in the 1043 building. Maintenece was drilling some holes in the fans when some steel got into EE's eye.
## 35775                                                                                                                                                                                               EE states he was supervising unit 8 when he was assaulted by inmate.
## 35776                                                                                                           EE states he was supv inmates in dng hall. Assisting capt. Mccrary, sprayed with o. C., fell to floor, others atop him. Struck head and r knee on floor.
## 35777                                                                                                                                                                                     EE states he was sweeping the floor with push broom and tripped over chair leg
## 35778                                                                                                                                                                                 EE states he was taking bag of charts off cart when the charts fell on his lt hand
## 35779                                                                                                                                                      EE states he was taking food out of the steamer and steam flew out on hand--probably 1st deg burn to lft hand
## 35780                                                                                                                  EE states he was taking inmate from one part of prison to another. As inmate walked through door EE was pulling it shut-finger got caught between
## 35781                                                                                                                                                     EE states he was talking to another staff person who was sitting down, he squatted and felt his left knee pop.
## 35782                                                                                                                                                                      EE states he was talking to co-workers when one of the co-workers grabbed him around the neck
## 35783                                                                                                                                                             EE states he was talking to inmates when his right foot stuck and twisted knee, making a popping sound
## 35784                                                                                                                                                           EE states he was tearing out a wall when his righthand slipped and struck a metal stud cutting his hand.
## 35785                                                                                                                                                                               EE states he was tearing t-shirts into paint rags when he felt a pop in rt shoulder.
## 35786                                                                                                                 EE states he was the attacker in a r. A. D. Class when a participant in the class kicked him in the right knee causing it to pop and he fell down.
## 35787                                                                                                                                                                             EE states he was threatened by a student with a pencil and both struggled over pencil.
## 35788                                                                                                                                                                                                    EE states he was thrown from a fast track causing a back injury
## 35789                                                                                                                                                                                                                  EE states he was thrown off a horse to the ground
## 35790                                                                                                                                                                                                       EE states he was training a dog when he was bittenby the dog
## 35791                                                                                                                                                                   EE states he was training how to open gate, stood up and hit the razor wire with top of his head
## 35792                                                                                                                                                                EE states he was transporting a female offender when it was discovered she was being treated for TB
## 35793                                                                                                                EE states he was traveling in state-owned vehicle on state business. Second vehicle operator shiftedlanes & turned in front of EE causing accident.
## 35794                                                                                                                              EE states he was traveling west on crab creek rd when a vehicle approaching from opposite directionother vehicle turne infront of EE.
## 35795                                                                                                                         EE states he was trimming a piece of tile fit under a colum when the tile broke causing the utility knife he was using to cut the tile cut
## 35796                                                                                                                                                                              EE states he was truck in the rear by a truck injurying his neck, shoulder, and back.
## 35797                                                                                                                                                                                  EE states he was trying to arrest an offender. Offender resisted and assulted EE.
## 35798                                                                                                                                        EE states he was trying to assist with putting a pt in Mr And fell over another cna during transferof pt from floor to bed.
## 35799                                                                                                                                                                                       EE states he was trying to calm a client when the client bit EE on right arm
## 35800                                                                                                                                    EE states he was trying to gain control and subdue inmate, EE took hold of inmate's pants from the rear and fell on his rt knee
## 35801                                                                                                                       EE states he was trying to move piano which was onwheels and pulled on piano but it didn't budge one of the wheels was off felt pull in back
## 35802                                                                                                                  EE states he was trying to open the door to fire proof cabinet which was hard to open. When it opened the upper corner hit him in the left temple
## 35803                                                                                                                                                                                                              EE states he was trying to place handcuffs on inmate.
## 35804                                                                                                                                       EE states he was trying to prevent from falling & could not support the patients weight and patient fell injuring EE's back.
## 35805                                                                                                                       EE states he was trying to prevent patient from hitting his head and it was EE's 1st day back froman automobile accident he was involved in.
## 35806                                                                                                                                 EE states he was trying to stop two patients from fighting and he fell on his knees. A patient had kicked EE's knees on 03/09/2004
## 35807                                                                                                                                                 EE states he was turning off water next to cell 601-1 when inmate threw liquid through a crack in the door on him.
## 35808                                                                                                                                                   EE states he was turning water off to two cells and an inmate threw a watery substance on him. (possibley urine)
## 35809                                                                                                                                             EE states he was tyring to stop a inmate from pulling a tv off the wall and the inmate turned and hit EE in the mouth.
## 35810                                                                                                                                                                                       EE states he was unaware of accident until he noticed a redness and was sore
## 35811                                                                                                                                                           EE states he was uncapping needle after giving injection and had a needle stick in the left indexfinger.
## 35812                                                                                                                                                          EE states he was unloading a truck in tarboro and stepped off the side of the curb injurying his rt knee.
## 35813                                                                                                                       EE states he was unloading equipment from the worktruck to work in basement. EE stepped in a hole inthe pavement and twisted his right knee.
## 35814                                                                                                                                    EE states he was unloading stage platfoms from truck, as he removed 1 platform, the other one pinned him against the truck wall
## 35815                                                                                                                       EE states he was unloading supplies when he slipped on ice covered walkway and fell injuring his left knee. Ice was reported but not treated
## 35816                                                                                                                                 EE states he was unlocking the door the the education building when the accidentally tripped and fell forward on the concrete pad.
## 35817                                                                                                                  EE states he was unstopping the soap tube when a soap ball left the tube and bounced off the ballerand bounced back and hit him in the right eye.
## 35818                                                                                                                                                                                                    EE states he was upset when he struck the corkboard on the wall
## 35819                                                                                                                                                                     EE states he was using a pocketknife to cut plastic when the knife slipped and cut his rt hand
## 35820                                                                                                                                 EE states he was using a screwdriver to adjust an outlet into a baseboard when screwdriver slipped and jammed into his right hand.
## 35821                                                                                                                                                                EE states he was using the handrail while going upsteps when some unknown object cut his lt finger.
## 35822                                                                                                                                          EE states he was using the restroom and turned to walk back down the hall and bumped his right elbow on a galvinized pipe
## 35823                                                                                                                                                                                        EE states he was visually inspecting the fence and injured joint on rt foot
## 35824                                                                                                                          EE states he was walking a inmate back from count. When he inhaled a toxic material used to clean the elevator, while in ther elevator ()
## 35825                                                                                                                                      EE states he was walking a student to dinning hallhe slipped/fell on his back/his foot folded under **pl atty - ken johnson**
## 35826                                                                                                                                                                                      EE states he was walking across dining hall and slipped and fell on wet floor
## 35827                                                                                                                                                                                        EE states he was walking along perimeter road & slipped and fell forward ()
## 35828                                                                                                                      EE states he was walking and fell due to the ice on the ground he then got up and fell again EE was escorting the fire extinguisher inspector
## 35829                                                                                                                                                            EE states he was walking and hit head on ventilation shroud projecting 4-6 inches from side of building
## 35830                                                                                                                                                                                            EE states he was walking area the wooded area and later notice bug bite
## 35831                                                                                                                                                                         EE states he was walking assisting inmates pickingup liter when a bug flew into his rt eye
## 35832                                                                                                                                                                                                  EE states he was walking behind dorm and got into a nest of ticks
## 35833                                                                                                                                                                                         EE states he was walking down flight of stairs and fell on concrete steps.
## 35834                                                                                                                               EE states he was walking down sidewalk & when he walked onto the basketball court he slipped & fell backwards landing on his back ..
## 35835                                                                                                                                                                                              EE states he was walking down some stairs when he twisted his rt knee
## 35836                                                                                                                                               EE states he was walking down stairs from the office fell on the stairs; was going downn to make copies of the test.
## 35837                                                                                                                                                   EE states he was walking down stairs while couducting count & landed on foot odd hurting his big toe on lt foot.
## 35838                                                                                                                                                                                          EE states he was walking down stairs, missed one and rolled his ankle. ()
## 35839                                                                                                                     EE states he was walking down stairs, was using handrail, & his right foot slid forward causing him to fall, landing on rt. Knee, upper rt. Hi
## 35840                                                                                                                                                         EE states he was walking down the hill from the parking lot, slipped and fell on the ice injuring his back
## 35841                                                                                                                                                               EE states he was walking down the steps and stepped on edge of step and fell and landed on left knee
## 35842                                                                                                                                    EE states he was walking down the steps and tripped on the stairs falling backwards hitting his lower and middle back and hands
## 35843                                                                                                                                                                                                  EE states he was walking down the steps when he injuried hisself.
## 35844                                                                                                                                                                     EE states he was walking downt he steps on tower when his foot slipped off of one of the steps
## 35845                                                                                                                            EE states he was walking from sidewalk to grass area and slipped & fell due to icy conditions on sidewalk & grass. Injured neck & back.
## 35846                                                                                                                                                                                      EE states he was walking in dorm when he felt a small bite on his right foot.
## 35847                                                                                                                                                         EE states he was walking in the parking lot on hisway to his vehicle when he slipped and fell on some ice.
## 35848                                                                                                                                                                 EE states he was walking inside of the segregation unit when he felt a sharp pain go up his rt leg
## 35849                                                                                                                         EE states he was walking int building and the sidewalk had not been cleared of snow and ice when he fell and hit the side of the building.
## 35850                                                                                                                                                                                EE states he was walking on the side of dorm g andstepped wrong on a slope incline.
## 35851                                                                                                                                                                                                   EE states he was walking out a door when slipped and fell on ice
## 35852                                                                                                                                                                       EE states he was walking out of the kitchen officedoor when he slipped on water on the floor
## 35853                                                                                                                       EE states he was walking out of the operations building to the records building and stepped down on the sidewalk and his left ankle twisted.
## 35854                                                                                                                EE states he was walking out the back door of the kitchen leading on to the back yard when he slipped on the first step falling on his right elbow.
## 35855                                                                                                                                                                                        EE states he was walking out the door, stepped down and left ankle twisted.
## 35856                                                                                                                                         EE states he was walking patients to breakfast and patient wanted to go different, as EE tried to redirect, they both fell
## 35857                                                                                                                            EE states he was walking supervising inmates on work crew he had to cross a ditch when he stepped down in a ditch he turned his rt foot
## 35858                                                                                                                                                            EE states he was walking through door-w10c laundrydoor closed suddenly on his right hand, middle finger
## 35859                                                                                                                   EE states he was walking through kitchen carrying large plastic containers when he tripped over a fryer vat containing hot oil & fell, splashing
## 35860                                                                                                                                                             EE states he was walking through mech rm and was hit by air draft causing dust particles to go in eyes
## 35861                                                                                                                                                                              EE states he was walking through the j25a door when he slipped & laid his ankle over.
## 35862                                                                                                                                                                        EE states he was walking thru door of a loading dock when he was stung by a bee on the hand
## 35863                                                                                                                                                                                 EE states he was walking thru the woods when a tree limb struck him in the rt eye.
## 35864                                                                                                                                                                EE states he was walking ti security elevator the floor was wet EE slipped and landed on his behind
## 35865                                                                                                                                                                  EE states he was walking to an inmate sitting on a bench and twisted his leg and injuryed lt knee
## 35866                                                                                                                                                   EE states he was walking to bthrm in storage area & he hit his knee on the handle of the floor scrubber. Rt knee
## 35867                                                                                                                                                                EE states he was walking to his office when he slipped on wet floor & fell twisting his lower-back.
## 35868                                                                                                                                                                         EE states he was walking to the dorm when he was stung by a wasp on the left side of head.
## 35869                                                                                                             EE states he was walking to the medical trailer, and he turned the corner of the admin bldg his feet slipped, causing him to lose his balance, causing
## 35870                                                                                                                                                           EE states he was walking to unlock the gate and hestepped in some soft dirt and twisted his right ankle.
## 35871                                                                                                                EE states he was walking toward his van and tripped on a piece of wire that was partically buried inthe ground and he put his right hand out to. ..
## 35872                                                                                                                                           EE states he was walking toward the gate & slippedon some ice & fell on his back & neck. Injury to back, neck, shoulders
## 35873                                                                                                                                                        EE states he was walking towards operations building when a inmate ran up to him striking him in his rt eye
## 35874                                                                                                                                                                  EE states he was walking up a set of concrete steps outside the muti purpose building and he fell
## 35875                                                                                                                                                                 EE states he was walking up bank to check lights on exterior of sac bldf and strained calf muscle.
## 35876                                                                                                                                                                   EE states he was walking up stairs in library, turned a corner and felt a clich in his left knee
## 35877                                                                                                                                                                                 EE states he was walking up stairway when he stumbled thus twisting his left ankle
## 35878                                                                                                                                                                                        EE states he was walking up the staircase to level 2 and injured his r foot
## 35879                                                                                                                                  EE states he was walking up the stairs in the eastwing conducting count when he felt a sharp pain in his left hip and thigh area.
## 35880                                                                                                              EE states he was walking up the steps and another employee was walking behind him and tripped causinee to fall on his legs and hit rt knee was pinned
## 35881                                                                                                                                                                        EE states he was walking up the steps in dorm 3 and slipped on the step hitting his rt knee
## 35882                                                                                                                  EE states he was walking up the steps when his foot slipped and did not get fully on the step lettinhg his heel drop injuring his achilles tendon
## 35883                                                                                                                                                                                                                  EE states he was walking when hit rt knee twisted
## 35884                                                                                                                                                                         EE states he was walking while making rounds on housing unit and is not sure when occurred
## 35885                                                                                                                             EE states he was watching traffic and tripped over trash bag, fell down ditch bank and into water. Bent lt leg trying to stop rolling.
## 35886                                                                                                                            EE states he was wiping off a thick layer of dust off of cabinet. Struck a nail that was sticking up as he ran his hand across the top.
## 35887                                                                                                                                                                             EE states he was working during tower duty when he was stung by a bee under the rt eye
## 35888                                                                                                                                                                    EE states he was working in gatehouse when he was exposed to chemicals from a fire extinguisher
## 35889                                                                                                                                                                                        EE states he was working on a 2 1/2 back flow valve ---- injuryed his neck.
## 35890                                                                                                                EE states he was working on a cell door onthe 6th floor while removing the security cover plate it dropped and pinned his rt middle finger to frame
## 35891                                                                                                                                                     EE states he was working on road with inmates when he got bit by something EE thinks it May have been a spider
## 35892                                                                                                                EE states he was working on the 6th floor n. Wing when he attempted to close a window on the cell door, inmate hit window causing it to crush hand.
## 35893                                                                                                                                                                      EE states he was working staff hall and slipped on the wax floor. The wax was wet at the time
## 35894                                                                                                              EE states he was working with a lawn mower when hepulled the rope to see would it crank without the blade the rope slipped out of hand causing a cut.
## 35895                                                                                                                 EE states he was working with blood hounds, while going down a steep embankment he tripped falling and started to experience pain in his left knee
## 35896                                                                                                                          EE states he was wrking in control ctr #1, stood up quickly and l leg twisted causing sharp pain in l knee as if it had come out of place
## 35897                                                                                                                        EE states he was yelling disturbance when inmate refused to comply w/order to disperse, and inmate then struck EE in the lft jaw w/his fist
## 35898                                                                                                                           EE states he went to get some chemical he was in a hurry and when he sat it down and popped the topsome chemical splashed in his rt eye,
## 35899                                                                                                                                                                             EE states he went to lock door and patient came from behind the door and attacked him.
## 35900                                                                                                                                          EE states he went to move a five gallon bucket from one case to another and fell to his knees from low and mid back pain.
## 35901                                                                                                      EE states heard the beeper of soap dispenser and stepped on the railing off the sink next to the dishwasher and hit my knee on the bottom edge of the sink ()
## 35902                                                                                                                                                                EE states helping another cna with combative patient, they fell on the ground - lt rotator cufftear
## 35903                                                                                                                                 EE states helping put client in chair; client dropped; to keep client from falling; pulled her up to sit in chair hurting back. ()
## 35904                                                                                                                                             EE states helping restrain a patient by carrying patient from courtyyard to ward. The patient scra-tched EE's lt hand.
## 35905                                                                                                                                                                                                           EE states helping staff get client up from the jumplina.
## 35906                                                                                                                                                                                                                                   EE states her back begin to hurt
## 35907                                                                                                                                               EE states her back had been bothering her all week. She was pulling trash, bent over and could barely straighten up.
## 35908                                                                                                                                                                              EE states her back was injured while riding an elevator that came to an abruptly stop
## 35909                                                                                                                                                                       EE states her boot was caught on the end of dumpster causing her to fall injuring lower back
## 35910                                                                                                              EE states her daily task to carry mail from admin. Bldg to main bldg, she had to carry a box. Box was extremely heavy. Strained back & shoulder muscl
## 35911                                                                                                                                                                                                                                EE states her elbow struck a scapel
## 35912                                                                                      EE states her feet slipped from under her when she was leaving to go home for the evening. EE states she believes the floor was damp due to rain/misty the day of incident ()
## 35913                                                                                                                                                                                                     EE states her finger got caught in a door while itwas closing.
## 35914                                                                                                                                                                                                         EE states her finger was caught in the strings of mailbag.
## 35915                                                                                                                                                                                                                         EE states her finger was closed in a door.
## 35916                                                                                                                                                                                                EE states her finger was mashed and cut on an addressograph machine
## 35917                                                                                                                                                                                                 EE states her foot slipped causing her rt knee to strike the floor
## 35918                                                                                                                                                                               EE states her foot slipped from under her causing her to fall on ice to the pavement
## 35919                                                                                                                                                 EE states her foot tripped on an unbalanced concrete causing her to fall injuring her rt shoulder, hands, and foot
## 35920                                                                                                                                                                                                         EE states her foot was asleep and she steeped on it wrong.
## 35921                                                                                                                                                                                        EE states her foot was caught between a mattress and wall twisting rt ankle
## 35922                                                                                                                                                                                   EE states her foot was caught causing her to trip and fall over carpet moulding.
## 35923                                                                                                                                                                             EE states her foot was caught in cord causing her to fall backward injurying her back.
## 35924                                                                                                                                                                 EE states her foot was caught in the telephone cord causing her to fall injuring her hip and ankle
## 35925                                                                                                                                                        EE states her foot was caught in the telephone line causing her to fall and injured her rt hand and lt leg.
## 35926                                                                                                                                              EE states her foot was caught while stepping down some steps causing her to fall and striking elbow against pavement.
## 35927                                                                                                                                                                                          EE states her hand became swollen and numb while taking tree core samples
## 35928                                                                                                                                                                        EE states her hands were going to sleep, tingling, weakness w/ turning and burning at times
## 35929                                                                                                                                                                          EE states her index finger was injured while intervening in a fight between two students.
## 35930                                                                                                                                                                EE states her knee locked while going down some steps causing her to fall striking lt knee on floor
## 35931                                                                                                                                                                                                                 EE states her left shoulder struck a metal cabinet
## 35932                                                                                                                                                                                                  EE states her leg gave out when she bent down to pick up her keys
## 35933                                                                                                                                                                             EE states her lt and rt knee was struck against a desk which has caused some bruising.
## 35934                                                                                                                                                                EE states her lt eye started hurting--she went to the doctor and found out she had an eye infection
## 35935                                                                                                                                                             EE states her lt foot was caught in a telephone cord causing her to trip and fall--causing back injury
## 35936                                                                                                                                                                                                                    EE states her lt hand struck an electrical box.
## 35937                                                                                                                                                                                                                     EE states her lt hand was caught inside a door
## 35938                                                                                                                                                                                                EE states her lt index finger was caught between adoor and a shelf.
## 35939                                                                                                                                                                                                          EE states her lt index finger was caught in a closed door
## 35940                                                                                                                                                                                                   EE states her lt knee gave away causing her to fall to the floor
## 35941                                                                                                                                                                                                                         EE states her lt thumb was closed in door.
## 35942                                                                                                                                                                                                                EE states her lt thumb was cut while cleaning glass
## 35943                                                                                                                                                                         EE states her metal band struck the control panel sending a electrical shock thru her body
## 35944                                                                                                                                                                 EE states her neck, shoulder, and back was injured while assisting with an out of control student.
## 35945                                                                                                                                                                                          EE states her nose was injured by the center shaft of a rotating tool bin
## 35946                                                                                                                                                                                                                 EE states her rt eye has become severely irritated
## 35947                                                                                                                                                                                                               EE states her rt finger was caught between car door.
## 35948                                                                                                                                                                                                                 EE states her rt finger was caught in a key drawer
## 35949                                                                                                                                            EE states her rt finger was caught in door while she was holding door for clients in wheelchairs entering the building.
## 35950                                                                                                                                                                              EE states her rt foot slipped causing her to fall injurying her rt shoulder/hip area.
## 35951                                                                                                                                                                                                          EE states her rt foot slipped off the edge of a sidewalk.
## 35952                                                                                                                                                                                               EE states her rt foot slipped off the sidewalk injuring rt leg/groin
## 35953                                                                                                                                                                                                     EE states her rt hand finger was injured--unknown as to how???
## 35954                                                                                                                                                                                                             EE states her rt hand was closed in the restroom door.
## 35955                                                                                                                                                                                            EE states her rt index finger was caught between a door and a food cart
## 35956                                                                                                                                                                                                       EE states her rt index finger was caught between a trap door
## 35957                                                                                                                                                                                                                 EE states her rt index finger was caught in a door
## 35958                                                                                                                                                                                       EE states her rt index finger was caught in between the door and door frame.
## 35959                                                                                                                                                                        EE states her rt shoulder popped while another employee performed unarmed self-defense tech
## 35960                                                                                                                                                                                                   EE states her rt shoulder was injured while shooting a shot gun.
## 35961                                                                                                                   EE states her shift had ended, EE was going to caree states parking lot was covered with snow and ice she slipped falling on right hip and knee.
## 35962                                                                                                                                                               EE states her shoe caught on office carpet causingher to fall, landing full force on her rt shoulder
## 35963                                                                                                                                                                                    EE states her shoe struck the floor causing her tofall injuring her chest area.
## 35964                                                                                                                                                                    EE states her shoe was caught on the bottom of steps causing her to fall injurying her rt ankle
## 35965                                                                                                                                                             EE states his arm was scratched apprximately six inches while trying to bring an inmate under control.
## 35966                                                                                                                                                                                                         EE states his back was injured during a training technique
## 35967                                                                                                                                                                                                               EE states his eye was irritated from oc pepper spray
## 35968                                                                                                                                                                                                                            EE states his felt a pop in his lt foot
## 35969                                                                                                                                                                   EE states his finger on his rt hand was caught in the handcuffs while trying handcuff an inmate.
## 35970                                                                                                                      EE states his finger on right hand went numb with pain & tingled up rt arm & shoulder from mopping with heavy mops & washing walls in towers.
## 35971                                                                                                                                                                                                                EE states his finger was caught between a trap door
## 35972                                                                                                                                                                                                                 EE states his finger was caught between two doors.
## 35973                                                                                                                                                                                                                          EE states his finger was caught in a door
## 35974                                                                                                                                                                                         EE states his finger was caught on an upholstery tack causing a laceration
## 35975                                                                                                                                                                                                                  EE states his finger was cut by a piece of metal.
## 35976                                                                                                                                                                                                             EE states his finger was injured due to pushing a box.
## 35977                                                                                                                                                                                                                     EE states his fingers was cut by a razor wire.
## 35978                                                                                                                                                                                  EE states his foot slipped from under him causing him to fall injurying his back.
## 35979                                                                                                                                                                                             EE states his foot slipped off steps causing him to twist his rt ankle
## 35980                                                                                                                                                                                       EE states his foot was caught in a tree limb causing swelling of the lt knee
## 35981                                                                                                                                                           EE states his hand slipped off latch causing him to fall backward to floor injuring his lt arm/ shoulder
## 35982                                                                                                                                                                                                               EE states his hand was caught in an electrical door.
## 35983                                                                                                                                EE states his hand was on the top door handle and when he turned the handle he twisted his hand causing it to pop near his rt thumb
## 35984                                                                                                                                                                                                                          EE states his hand was shut in a car door
## 35985                                                                                                                                                                                                               EE states his hand was struck against a trapped door
## 35986                                                                                                                                                                     EE states his hat flew off and distracted him and he hit a bridge and it threw him out of cart
## 35987                                                                                                                                                                                                                                 EE states his hearing has declined
## 35988                                                                                                                          EE states his heel of his shoe got caught on the step and to keep from falling he grabbed the rail pulling a muscle in his rt arm (bicep)
## 35989                                                                                                                                                                                 EE states his injury occurred in self-defense during an altercation with an inmate
## 35990                                                                                                                                                                      EE states his left shoulder hurts becaused he is right handed and same for his right shoulder
## 35991                                                                                                                                                                                            EE states his lft finger was accidently mashed. While aligning a shaft.
## 35992                                                                                                                                                                                           EE states his lt arm was caught between a door injuring lt middle finger
## 35993                                                                                                                                                                                                           EE states his lt finger was injured by an aggressive pt.
## 35994                                                                                                                                                                                      EE states his lt foot slipped off dock causing legto strike the edge of dock.
## 35995                                                                                                                                                                                                         EE states his lt foot struck the edge of a metal bookshelf
## 35996                                                                                                                                                                                      EE states his lt hand was caught in a machine no 19, just form 18 filed by EE
## 35997                                                                                                                                                                                                EE states his lt hand/thumb was close between the door and door jam
## 35998                                                                                                                                                                                                         EE states his lt index finger was caught between the door.
## 35999                                                                                                                                                                                            EE states his lt leg was cut by a razor while attempting to lock a gate
## 36000                                                                                                                                                                                                     EE states his lt ring finger was caught in a sliding trap door
## 36001                                                                                                                                                                                           EE states his lt thumb was injured while removing acrylic from dentures.
## 36002                                                                                                                                                                                                          EE states his neck was injured during wrestling practice.
## 36003                                                                                                                    EE states his partner was completing a pop head technique and was going into handcuff position. Partners weight shifted causing leverage rt arm
## 36004                                                                                                                                                                                                              EE states his rt arm was caught between a slider gate
## 36005                                                                                                                                                                                                          EE states his rt arm were swollen after firing a shotgun.
## 36006                                                                                                                                                                                               EE states his rt finger was caught between a door and the doorframe.
## 36007                                                                                                                                                                                         EE states his rt finger was caught between the door and the locking device
## 36008                                                                                                                                                                                                       EE states his rt foot slipped causing her to twist her back.
## 36009                                                                                                                     EE states his rt foot slipped on some rags that were left on the top steps and while trying to regain his balance his top foot struck the rail
## 36010                                                                                                                                                      EE states his rt foot slipped on some steps which was wet from rain causing him to fall injuring hishead/hand
## 36011                                                                                                                                                                                EE states his rt foot was caught in the fence causing him to fall injuring rt ankle
## 36012                                                                                                                                                                                        EE states his rt hand and finger were burned whiletrying to put out a fire.
## 36013                                                                                                                                                                             EE states his rt hand finger was caught in the door of a truck while shutting the door
## 36014                                                                                                                                                                                                                EE states his rt hand finger was cut on a metal box
## 36015                                                                                                                                                                                                                             EE states his rt hand started to swell
## 36016                                                                                                                                                                                                                    EE states his rt hand was closed in a cell door
## 36017                                                                                                                                                                                       EE states his rt index finger was caught in the lt side door of a dump truck
## 36018                                                                                                                                                                                                        EE states his rt index finger was cut doing a fence testing
## 36019                                                                                                                                                                                                          EE states his rt index finger was shut in door of vehicle
## 36020                                                                                                                                                                          EE states his rt knee gave away causing him to fall to the floor and injured his lt wrist
## 36021                                                                                                                                                                                                 EE states his rt knee gave away causing him to twist his rt ankle.
## 36022                                                                                                                                                                                                                       EE states his rt knee gave way causing pain.
## 36023                                                                                                                                                                                                                EE states his rt middle finger was closed in a door
## 36024                                                                                                                                                                                                                    EE states his rt shoulder was struck by a door.
## 36025                                                                                                                                                                             EE states his rt thumb was bent backward while trying to restrain an aggressive inmate
## 36026                                                                                                                                                                                                 EE states his rt thumb was injured while interacting with a client
## 36027                                                                                                                                                       EE states his shoes was wet causing him to slip and while trying to keep from falling he injured his rt knee
## 36028                                                                                                                                                                                                           EE states his started hurting and wrist area became numb
## 36029                                                                                                                       EE states his vehicle was struck by a vehicle as he was attempting to slow for another vehicle thathad crossed the center line in front him.
## 36030                                                                                                                                      EE states his vehicle was struck by a vehicle from the rear---injuring his rt chest area, pain in lt shoulder, and neck area.
## 36031                                                                                                                                                            EE states hit door handle while attempting to place patient in pic hold hit lt shoulder on door handle.
## 36032                                                                                                                                                                                                       EE states hit in eye with an elbow while playing basketball.
## 36033                                                                                                                        EE states hit knee cap on cabinet handle in med room. Sitting going through patient medication pro-files & turned to get a bag of medicine.
## 36034                                                                                                                                                                                                     EE states hit lt finger on door jam while pushing gero -chair.
## 36035                                                                                                                                                                               EE states hit rt foot (top on the bone part) on the corner of the drawer at the desk
## 36036                                                                                                                                                                             EE states holding client up as EE was pulling client's pants up pulling muscle in back
## 36037                                                                                                                                                              EE states holding door for the staff to come in with clients when door slammed on right middle inger.
## 36038                                                                            EE states hooking individual in van for transport for trip. Bent down to hook the seat belt when came back up was in much pain on right side. Strain on right side of body in the back.
## 36039                                                                                                                                                                                                                                  EE states hurt back while lifting
## 36040                                                                                                                                                                                                                                EE states hurt both wrist and hands
## 36041                                                                                                                                                                                                              EE states hurt l knee by knelling at the firing range
## 36042                                                                                                                                                                                                      EE states hurt lft knee while trying to restraining a patient
## 36043                                                                                                                                                                                                                   EE states hurt low back while changing a patient
## 36044                                                                                                                                                            EE states hurt lt shoulder while assisting to place resident in mechanical restraints during sb episode
## 36045                                                                                                                                                                                                              EE states hurt r thumb by lifting, driving and typing
## 36046                                                                                                                                                                                           EE states hurt rt knee while mopping, water on the floor in the restroom
## 36047                                                                                                                                                                                       EE states hurt self and got hernia by lifting and pulling on heavy furniture
## 36048                                                                                                                                                                                                               EE states hurt self by carrying resident to time out
## 36049                                                                                                                                                                                                                                 EE states hurt self by keyboarding
## 36050                                                                                                                                                                                               EE states hurt self by pulling vines out of tree and from the ground
## 36051                                                                                                                                                                                                          EE states hurt self by reaching for drill in bottom ofift
## 36052                                                                                                                                                                             EE states hurt self cleaning up break room and pulled the trash bag from the trash can
## 36053                                                                                                                                                                                                        EE states hurt self during pert training with a pr-24 baton
## 36054                                                                                                                                       EE states hw was preparing to search for an inmate, when the inmate kicked his left knee out. Hurting his left knee and heel
## 36055                                                                                                                                 EE states ice must have been on step & she slipped, witness states no ice and EE probably misstepped - rt foot and achilles tendon
## 36056                                                                                           EE states ice/frozen snow on parking lot, slipped and fell on back. Hit head and back on frozen ice and snow causing headache, pain in right shoulder and lower back. ()
## 36057                                                                                                                                                        EE states in cell extraction training, was lifting instructor in standing position; lifting dead weight. ()
## 36058                                                                                                                                                                   EE states in last few months has been doing xtra writing due to temp help leaving and xtra work.
## 36059                                                                                                       EE states in mist of shifting library books her lt hand had sharp pains between thumb and mid palm area. Her thumb went numb while trying to lift a book. ()
## 36060                                                                                                             EE states in recert. Trg. Maneuver partner attempt. To secure lt. Arm, lost control & when re-securing fell full weight on EE causing EE's body to twi
## 36061                                                                                                                                       EE states in service training qualification with 12 gauge shotgun, bad round caused the barrel to jam, subsequent explosion,
## 36062                                                                                                                 EE states in the shower rm toileting patient-goesto get pamper, slipped on wet floor-inj ankle/knee**EE maybe due wp as result of surg and ppd****
## 36063                                                                                                                   EE states in usad trg. Sweep & press move, partnerrammed his rt. Shoulder in her lft. Leg, caused eeto fall on her rear & hyperextended her leg.
## 36064                                                                                                                                                                                                           EE states increasing pain and discomfort in both thumbs.
## 36065                                                                                                                                                      EE states inhalation of cigarette smoke and the fume from the fire extinguisher has caused breathing problems
## 36066                                                                                                                           EE states injured back while collecting shad from an electrofishing boat, lifting large nets of fishwhile bending and twisting over boat
## 36067                                                                                                                                                   EE states injured back while transporting patient from wheelchair to bed, had assistance fro other staff member.
## 36068                                                                                                                                             EE states injured finger due to inadvertant contact while participating in schedule activity, basketball with students
## 36069                                                                                                                                                                               EE states injured lower back when removing adult scales from trunk during rain storm
## 36070                                                                                                                                                                                                               EE states injured lt shoudler while changing patient
## 36071                                                                                                                                                                       EE states injury cased by supervisor's failure to adhere to ada and apa. Job related stress.
## 36072                                                                                                                                       EE states injury is stress due to improper/incomp. Handling of a complaint alleging EE of having a weapon on state premises.
## 36073                                                                                                                                                                 EE states injury occured as a result of being pinned aganist a wall when another EE fell backward.
## 36074                                                                                                                                EE states injury occured due to heavy lifting and repetitive motion while delivering and picking up food trays. Strain r arm/elbow.
## 36075                                                                                                                                                                                                                         EE states injury occured in auto accident.
## 36076                                                                                                                                                                                          EE states injury occured opening medication bottles with child proof lids
## 36077                                                                                                                                                                                             EE states injury occured while EE was restraining an aggresive patient
## 36078                                                                                                               EE states injury occurred as I was going with custody to ask inmate to go on medical appt as I walked up inmate pushed cell door open struck forearm
## 36079                                                                                                                                                                                                   EE states injury occurred handcuffing an inmate inwhich he fell.
## 36080                                                                                                                                             EE states injury while cont. Pippetting from sample tubes the attacted side of the body is the one which held the tube
## 36081                                                                                                                 EE states inmate attempted to grab himself in or about his upper body in a rapid manner and in keeping him from doing so he turned and ankle poped
## 36082                                                                                                                                   EE states inmate became irrite an order to leave by the staff. Inmate made accerded moves toward EE, he was had cut and subduced
## 36083                                                                                                                            EE states inmate collapsed and to prevent injury to the inmate & to med staff, she reached for the inmate, grabbing him under the arms.
## 36084                                                                                                                                                                                          EE states inmate grabbed her by the lt wrist while she was talking to him
## 36085                                                                                                                  EE states inmate hand just mopped floor and while EE was trying to take control of another inmate EE slipped and fell. Injury to left upper thigh
## 36086                                                                                                                                EE states inmate hit her. EE was taking inmates pulse after setting fire to cell & trying to hang self. Right temple red & swollen.
## 36087                                                                                                                                                  EE states inmate jammed sliding peer door nurse station while I was trying to free door lt index finger got stuck
## 36088                                                                                                                                                                                 EE states inmate pushed him against the wall. Sprain to two knuckles on right hand
## 36089                                                                                                                                                                 EE states inmate shoved his food tray through the wicker door & the sharp tray edge sliced my arm.
## 36090                                                                                                                                                   EE states inmate slammed control door against his left shoulder and elbow. EE has contusion to arm and shoulder.
## 36091                                                                                                                                                                                                             EE states inmate spit blood on face chest and shoulder
## 36092                                                                                                                                                                                                        EE states inmate threw a chair and struck him on the rt arm
## 36093                                                                                                                                                                   EE states inmate threw a chair at her hitting her left leg from the upper thigh to the lower leg
## 36094                                                                                                                                                                                                          EE states inmate threw liquid in face May have bben urine
## 36095                                                                                                                                                                                                                EE states inmate threw liquid substance on her face
## 36096                                                                                                                                                                                              EE states inmate threw some liquid substance which struck his rt arm.
## 36097                                                                                                                                                             EE states inmate threw two cups of ice and hit him on the lower leg and foot. No injury - no treatment
## 36098                                                                                                                                                                                                                           EE states inmate threw urine in his face
## 36099                                                                                                                                                                                           EE states inmate threw urine outside the cell he was in as EE walked by.
## 36100                                                                                                                                      EE states inmate tossed tatoo gun onto ground EE picked it up and held it close to body and slightlystuck needle into abdomen
## 36101                                                                                                                                                     EE states inmate was bleeding from rt arm applying direct pressure on inmates arm with sheets towels and gauze
## 36102                                                                                                                                                          EE states inmate was fighting with another officer and she tried to stop the fight when inmate kicked her
## 36103                                                                                                                                                         EE states inmate was lying on floor talking about everything wrong with him I assisted him to a wheelchair
## 36104                                                                                                                                                                                                             EE states inmate yanked hands through the wicker door.
## 36105                                                                                                                                         EE states inmates were stripping floor in dorm 4. The fumes from the chemicals made him dizzy, disoriented and chest hurt.
## 36106                                                                                                                                                                                 EE states inspecting the removal of a freezer doorwhen something flew in left eye.
## 36107                                                                                                         EE states instrucing class, stepped, got off balancehis knee twisted, caught himself on wall with rt hand, hit pencel sharpener, cover fell, cut palm/hand
## 36108                                                                                                                    EE states instructing & demonstrating subject control techniques during basic school, executed a subject throw when subject knee struck ribcage
## 36109                                                                                                                                                   EE states instructing crdt guard in front, fell back on left shoulder, burning pain from shoulder to left elbow.
## 36110                                                                                                                                                                                                                                 EE states involved in use of force
## 36111                                                                                                                   EE states irate patient attempted to choke EE. Pt pulled EE's hair. EE hit her rt knee on bed while trying to restrain pt. Arm/shoulder hurting.
## 36112                                                                                                                                                                                 EE states it began with pain in hand and arm progressed numbness in finger rt hand
## 36113                                                                                                                                                                         EE states it possible it soap or gloves that has hands irritated after the long use of it.
## 36114                                                                                                                                                                                 EE states it was raining and her foot slipped on the wet cement as she was walking
## 36115                                                                                                                                                                                                                             EE states jammed finger on desk drawer
## 36116                                                                                                                                                                                      EE states jammed middle index finger while playing basketball with a student.
## 36117                                                                                                                                                                   EE states job assigned by supervisor to remove carpet and tile from work area for new equipment.
## 36118                                                                                                                                                                                        EE states key stuck in lock, constantly trying to turn, jammed right thumb.
## 36119                                                                                                                                                                                        EE states kicked in the eye by a patient during process of therapeutic hold
## 36120                                                                                                                                                EE states know she was lifting some clients and when she turned could fell something pull in rt shoulder and chest.
## 36121                                                                                                                                                     EE states l eye feels like something is over it, complaint that eye was stuck together when she got up this am
## 36122                                                                                                                                                                                            EE states lab animal allergies, stopped up with allergies and headaches
## 36123                                                                                                                                                                                                       EE states ladder slipped and he fell off 8ft onto wet grass.
## 36124                                                                                                                                                                                    EE states lawn mower ran over yellow jacket nest. Was stung on rt side of body.
## 36125                                                                                                                           EE states leaving a committee meeting at nc centraee tripped on chunk of concrete laying on the side-walk, lt foot & ankle twisted, fell
## 36126                                                                                                                                                           EE states leaving lafayette hall, stepped on uneven pavement or debris causing a fall and a turned ankle
## 36127                                                                                                                             EE states left forearm began hurting after re-dir-ecting client in behavior to prevent injury to herclient. Left lateral epecondilitis
## 36128                                                                                                                                                                                                                                      EE states left hand injury ()
## 36129                                                                                                                                                          EE states left hand sore between middle and 4th finger. Pain also in top of hand due to repetitive motion
## 36130                                                                                                                                                                                                                       EE states left upper arm hit by sliding door
## 36131                                                                                                                                                    EE states left wrist is hurting because she had surgery in right hand. Using left hand while right hand healed.
## 36132                                                                                                                                                                                       EE states leg "gave away" & she fell on knees & rthand. Employee out 3 days.
## 36133                                                                                                                               EE states leg was twisted while conducting cell extraction training EE states that when he arrivedhe noticed swelling in his lt knee
## 36134                                                                                                                                    EE states lifted a box to place it on the shelf when all of sudden she was in severe pain and coulnot more for several minutes.
## 36135                                                                                                                                                     EE states lifted a client from one chair to anotheand during a fire drill and repeated lifting other patinets.
## 36136                                                                                                                                                                                              EE states lifting a 6' table on truck when felt a pull in lower back.
## 36137                                                                                                                                                                                      EE states lifting a heavy boiler he felt a burningsensation in his groin area
## 36138                                                                                                                                                                          EE states lifting and carrying patient, was struggling, fighting and trying to bite staff
## 36139                                                                                                                                                                                                                  EE states lifting box and pulled something in box
## 36140                                                                                                                                                                       EE states lifting boxes central medical records pulling charts and aggravated nerve in back.
## 36141                                                                                                                                                                                     EE states lifting client fro portable toilet to bed, strained lt side of groin
## 36142                                                                                                                                                                                                               EE states lifting dirty linen out of cart hurt elbow
## 36143                                                                                                                                                                                   EE states lifting groceries from van to bin and felt a pull in left shoulder. ()
## 36144                                                                                                                                                                                             EE states lifting kettle top off of kettle and steam burned wrist area
## 36145                                                                                                                                                               EE states lifting laundry bag and puttign it in cart and felt something pull in lt side of shoulder.
## 36146                                                                                                                                                                                                                    EE states lifting package at dock, twisted back
## 36147                                                                                                                                                                                               EE states lifting patient up in bed and pulling from the side of bed
## 36148                                                                                                                                                                                EE states lifting up power washer and putting into the back of a gator-main vehicle
## 36149                                                                                                                                      EE states lifting used food trays from cart to place n table she felt a pain in her shoulder and going down left arm to wrist
## 36150                                                EE states lifting. I remember feeling pain in shoulder after I had been to work working for a while. I have a lot of swelling that has been going on also extreme pain in my shoulder/neck area since that date. ()
## 36151                                                                                                                                                          EE states loading and unloading clients medical records and placing them on the shelves in another office
## 36152                                                                                                                                                   EE states loading piece moved and could not get hand out, pinned hand in truck. Rehab-martha curie- 919-542-0551
## 36153                                                                                                                                                                              EE states lt ear irritated and itching and thinks it's a fungus from the stethoscope.
## 36154                                                                                                                                             EE states lt eye became very irritated went to employee health then to eye Dr. Small metal like material found on eye.
## 36155                                                                                                                                                                                                                                      EE states lt eye was swollen.
## 36156                                                                                                                                                                                 EE states lt hand struck something into skin and area is swollen, red and hurting.
## 36157                                                                                                                                  EE states me and another employee was pulling up client, where client was down in chair hurting neck, left shoulder, left arm. ()
## 36158                                                                                                                                               EE states medication behind desk and EE reached behind the desk and EE's arm became stuck between the deska nd wall.
## 36159                                                                                                                                               EE states medication splashed in her eye while shewas drawing liquid up into syringe. Foreign substance in right eye
## 36160                                                                                                                                                                     EE states metal rebar brushed across arm while placing concrete wheelstep--cutting rt forearm.
## 36161                                                                                                                                                                                            EE states middle finders on right hand have been hurting since May 2005
## 36162                                                                                                                                                                                  EE states middle finger stopped working. Attributes to 22 years of driving for er
## 36163                                                                                                                                                    EE states misjudged position of chair missing chair & fell backwards onto floor contusion to lowback & rt wrist
## 36164                                                                                                                                              EE states mold in bldg caused respiratory distressshortness of breath, chest pain, vocal disorders since January 2005
## 36165                                                                                                                  EE states motor on boat quit. While trying to take motor cover off. Officer slipped & fell on out drive of boat -- injuryed lt shoulder and neck.
## 36166                                                                                                                                                                                                     EE states moving 12' block from outside to inside the building
## 36167                                                                                                                     EE states moving a file cabinet with a hand cart, the cabinet tipped to the right, EE grabbed it to stop it from falling and strained his back
## 36168                                                                                                                                                                                                       EE states moving bed on a medical unit and bent ltthumb back
## 36169                                                                                                                                                                                                                   EE states moving client's bed left knee twisted.
## 36170                                                                                                                                           EE states moving irrigation reel when rt hand got caught between tung and steel bar causing a deep punture wound to hand
## 36171                                                                                                                                                                                                  EE states moving small box from shelf to floor, felt pain in back
## 36172                                                                                                                                                            EE states nbending over going through things and when EE stood up had a sharp pain shoot through lthip.
## 36173                                                                                                                      EE states no single event caused strained back- extensive physical labor involved in putting a picture frame together and lifting caused this
## 36174                                                                                                                                                                                                  EE states noise in coal handling bldg made him loose his hearing.
## 36175                                                                                                                                                                                                                                        EE states normal job duites
## 36176                                                                                                                                                                                   EE states nose fracture due to softball injury while playing for the co-ed team.
## 36177                                                                                                                                                           EE states not sure how incident occured woke up 2/19/09 & back and chest wall hurting thought it was gas
## 36178                                                                                                                                                                                                                  EE states noticed rash on rt hand, sort of burns.
## 36179                                                                                                                                                                                        EE states noticed spider bit around 10:30 with severe itching and red spot.
## 36180                                                                                                                                                                                                                               EE states nursing cart was beside ()
## 36181                                                                                                                                          EE states on 02091996 EE pushing medication cart off elevator and elevator bumped right shoulder bruise to right shoulder
## 36182                                                                                                                                                      EE states on 6/20/2012 she felt shortness of breath and pain in chest. She states it was from paint fumes. ()
## 36183                                                  EE states on doi at 2:30am he was working at a student activity & he was escorting an intoxicated student from the entry line when student suddently grabbed him causing him to fall and hit lft are & rt knee ()
## 36184                                                                                                                                EE states on light duty due to cts surgery on right hand, now the left hand has started to ach and pain, with tingling and numbness
## 36185                                                                                                                                                                                         EE states on rope course, crossed between trees and right arm touched tree
## 36186                                                                                                                                     EE states on yard duty, placed her rt hand on window sill & the window fell on rt hand cutting her middle finger & ring finger
## 36187                                                                                                                                                 EE states one of te large recycle bin lids fell on her right hand and thumb while recycling materials from the lab
## 36188                                                                                                                                                                                                      EE states open cart and bar popped out and hit EE in the eye.
## 36189                                                                                                                                                                                                EE states opened door on stem chef and steam burned hand and thumb.
## 36190                                                                                                                                                                 EE states opening a autocave to get trash out, thehot liquid boiled over and sprayed out when open
## 36191                                                                                                                                                        EE states opening a box too close to wall and my hand hit the wall. Bruising and swelling to right hand. ()
## 36192                                                                                                                                                                                  EE states opening half door, pushed it open and got large splinter in fingernail.
## 36193                                                                                                                EE states opening inner receiving gate to transporinmate to local er. EE lifted the center past top open both gate and center post fell on lt thumb
## 36194                                                                                                                                      EE states opening preps for Dr Spry when wrist began to hurt and progressively worsened until unable to use. (using scissors)
## 36195                                                                                                                                                                                                  EE states operating a computer keyboard for long periods each day
## 36196                                                                                                                                                                                     EE states operating a wire grinder and it jumped back striking EE in the knee.
## 36197                                                                                                                          EE states other vehicle was attempting to turn lt when vehicle of lt lane in the opposite direction stopped to allow that vehicle to turn
## 36198                                                                                                                                                                                                 EE states out of frustration he struck his rt handagainst a locker
## 36199                                                                                                                          EE states outmof control client attacked staff he was placed in a pic hold. When help came client turned and flipped writer to the floor.
## 36200                                                                                                                                                                                             EE states outside interacting with patients and injured rt ring finger
## 36201                                                                                                                                                                                   EE states oven fell back on her, no witness ** rtw ld 1/30 *** oow again 2/7/07.
## 36202                                                                                                            EE states over a period of time from cleaning and bending over in deep sink in endo room sterilizing instruments for about 20 mins caused back pain. ()
## 36203                                                                                                                                                                                             EE states over a period of time he started having pain in lt hip pain.
## 36204                                                                                                                             EE states over a period time experiencing pain in (r) shoulder at blade. Tingling down the entire rtarm & fingers - pain in (r) wrist.
## 36205                                                                                                                                                           EE states over last six weeks due to heavy typing and writing, she had developed carpal tunnel syndrome.
## 36206                                                                                                                                             EE states over the last several months has had repetitive use of computer keyboard and has resulted in pain in wrists.
## 36207                                                                                                                                                                         EE states pain and numbness in rt hand and arm from repetitive motion from use of computer
## 36208                                                                                                                                              EE states pain constantly in rt little finger notice a couple days ago. Pain extends from finger to forearm and elbow
## 36209                                                                                                                                                                         EE states pain in both hands, tingling and burninggrowing more noticeable as of April 2004
## 36210                                                                                                                                   EE states pain in leg standing and putting weight on leg sharp pain uplt leg. Not twisting or bend-ing or nothing just standing.
## 36211                                                                                                                                                                                                     EE states pain in thumb from catching turkeys and holding them
## 36212                                                                                                                                                                                                                    EE states pain in wrist during use of keyboard.
## 36213                                                                                                                                                                                               EE states pain the both hands and wrists from doing extra paper work
## 36214                                                                                                                                                                                       EE states pain to lt thumb and hand. Pain started in pic training w/partner.
## 36215                                                                                                                                                          EE states painter painted locks used, lots of force used turning the locks and pulled muscle- right hand.
## 36216                                                                                                                      EE states pallet of light bulbs was being lifted with fork lift & the pallet broke causing light bulbs to fall off pallet & fall on his back.
## 36217                                                                                                                                             EE states passing out medications. EE bent down at med cart and felt sharp pain in left shoulder blade in her back. ()
## 36218                                                       EE states passing out meds; another staff came in to weigh clients. EE stood up to give client a med; chair got pushed away; EE fell to floor missing chair and hit scales hurting tailbone and right wrist.
## 36219                                                                                                                                                                      EE states patient aggressivly grabbed EE l hand rtw ld at same wages 5/10/04; rtw fd 11/10/04
## 36220                                                                                                                                                                                                       EE states patient attacked EE from behind with no provaction
## 36221                                                                                                                             EE states patient attacked co-worker, staff assisted co-worker and writer fell on EE's arm during the attenpt to restarin the patient.
## 36222                                                                                                                                             EE states patient attacked staff in the face; nurses glasses are scrtached in process. EE was struck is hit lt temple.
## 36223                                                                                                                                                   EE states patient became aggitated and staff assisted by placing patient in nci hold, and EE injuried her thumb.
## 36224                                                                                                                                                                             EE states patient became agitqated and began to hit and kicked at EE and struck thumb.
## 36225                                                                                                                                    EE states patient became combative and patient hadto be taken to floor in a therapeutic hold. Injuryto the rt forearm and knee.
## 36226                                                                                                                                                                                                  EE states patient became combative to staff and bit her lt breast
## 36227                                                                                                                    EE states patient became combative when staff was assisting to put patient back into restraints. EE leg struck the corner of the restraint bed.
## 36228                                                                                                                                            EE states patient became forceful and relstive knocking my glasses off and pushing me against the door. Injury to back.
## 36229                                                                                                                    EE states patient being changed by two hcts. Pt was kicking, spitting and pinching hcts. EE was holdpt leg. Pt kicked EE thumb bending nailbed.
## 36230                                                                                                                                                                                               EE states patient bit EE on lt breast breaking skin and bruising it.
## 36231                                                                                                                                                                                                                  EE states patient bit arm in a therapeutic carry.
## 36232                                                                                                                                                                                               EE states patient bit her on the hand, breaking skin, leaving bruise
## 36233                                                                                                                                                    EE states patient came running out of bedroom attacking staff swinging both arms and hitting staff in the face.
## 36234                                                                                                                                                             EE states patient came towards her and pulled her glasses off of her head ns kicked EE. Injured thigh.
## 36235                                                                                                                        EE states patient exploded from a chair and starting throwing blows on either side of my head and f ace knocking EE backwards into a chair.
## 36236                                                                                                                                                           EE states patient fell down in floor and started when told to go to quiet room kicked staff on the knee.
## 36237                                                                                                                                                                                                                EE states patient fell off bed injurying EE lt leg.
## 36238                                                                                                                                                                                                EE states patient fell on her knee causing left leg and back strain
## 36239                                                                                                                                                EE states patient fell on lt wrist and hand causing severe pain and numbness. Occurred during restraint of patient.
## 36240                                                                                                                                                                                                                   EE states patient fell on staff members' l ankle
## 36241                                                                                                                                                                                            EE states patient fell to floor on top of EE's legs/p surgery 3-10-2003
## 36242                                                                                                                                                                      EE states patient got agitated and became combative and struck EE on the rt side of the neck.
## 36243                                                                                                                                         EE states patient got upset in class, offered to lead him back to ward. Patient is blind. Patient attcked me for no reason
## 36244                                                                                                                                              EE states patient got upset. Patient shouted with clinched fists abuse to staff. Patient resisted therapeutic control
## 36245                                                                                                                                                                     EE states patient grabbed hand during interventionof another altercation with another patient.
## 36246                                                                                                                                                                                                    EE states patient grabbed keys from hct and snapped thumb back.
## 36247                                                                                                                       EE states patient grabbed rn-pulled EE down the hall- trying to get keys- staff intervened and patient came in nurse station after rn again.
## 36248                                                                                                                                                          EE states patient had an altercation w/peer and placed thereuptic hold on patient and put stress on back.
## 36249                                                                                                                    EE states patient had sock around neck and EE wentto take it from the patient and when EE runinng out of room EE hit lower back on door handle.
## 36250                                                                                                                                                EE states patient having seizures hitting head lifting repositioning patient. Felt pressure in back and middle back
## 36251                                                                                                                                                                                                            EE states patient hedabutted EE on the lt side of head.
## 36252                                                                                                                                             EE states patient hit EE in head w/ chair causing * laceration to scalp * clmt stated she does not need any add'l trmt
## 36253                                                                                                                                                                                                                      EE states patient hit him in the genital area
## 36254                                                                                                                                                                                                                             EE states patient hit him on the head.
## 36255                                                                                                                                                                                                       EE states patient hit him while putting patient inseclusion.
## 36256                                                                                                                                                               EE states patient hit him, repeatedly and when they fell to the floor EE hit both knees on the floor
## 36257                                                                                                                                                                 EE states patient hit staff in rt cheek while restraining the patient to be put in the quiet room.
## 36258                                                                                                                                              EE states patient hostile and bit EE on the rt upper arm; patient attempted attack EE and EE arm hit metal bed frame.
## 36259                                                                                                                                                                                                                            EE states patient kicked EE in lt shin.
## 36260                                                                                                                                          EE states patient kicked me in the side of my temple when myself and other staff was changing him from one bed to another
## 36261                                                                                                                                      EE states patient kicked staff in chest when asst. In giving forced meds & had to hold pt's legs. Also injured right shoulder
## 36262                                                                                                                                                                                              EE states patient knocked wrist when EE was trying to take shoes off.
## 36263                                                                                                                                                   EE states patient lost balance fell to floor & broke his fall by resting his body against right back side of EE.
## 36264                                                                                                                                                           EE states patient reached up and grabed EE glasse s from her face leaving an open scratch in e forehead.
## 36265                                                                                                                                            EE states patient refused to turn in his food traystarted swinging at EE. EE hurt right knee trying to restrain patient
## 36266                                                                                                                                                                                       EE states patient started hearing voices and started throwing punches at EE.
## 36267                                                                                                                                                                                                     EE states patient stepped back on EE's leg and hurt knee also.
## 36268                                                                                                                                                                                                                                 EE states patient stepped on foot.
## 36269                                                                                                                                             EE states patient stepped on toe, nail bent back and back, neck and shoulder sore while trying to restrain the patient
## 36270                                                                                                                                                                     EE states patient stood up from w/c, grabbed EE by neck and twisted fingers and pulling on arm
## 36271                                                                                                                                         EE states patient stood up from w/c, grabbed EE byneck from behind, also trying to twist EE's finger& pulling on EE's arm.
## 36272                                                                                                                                                         EE states patient struck EE on left side of face with fist *clmt was overpd ttd 8-13 x 8-31 for $820. 50**
## 36273                                                                                                                                                                                         EE states patient struck EE on the wrist while EE was assisting treatment.
## 36274                                                                                                                                                                           EE states patient struck hct in lt eye. Writer njured lt arm trying to restrain patient.
## 36275                                                                                                                                                                                                                          EE states patient struck him in the face.
## 36276                                                                                                                                                                                                                             EE states patient stuck EE in the eye.
## 36277                                                                                                                                                                                                EE states patient swung at staff person then hit hit EE in the eye.
## 36278                                                                                                                                      EE states patient threw a chair & attatcked EE during redirection to return to his room. Also tripped EE & she fell to floor.
## 36279                                                                                                                                                                                                            EE states patient threw a shoe hitting EE in the groin.
## 36280                                                                                                              EE states patient threw water in her face afterwards, plunged after her w/clinched fists, she therapeutically hold on patient. Felt pain in low back.
## 36281                                                                                                                                                                            EE states patient tried to jump out of bed and EE caught patient and strained shoulder.
## 36282                                                                                                                                                             EE states patient used both hands to pull her hairon the lt side of her head and would not turn loose.
## 36283                                                                                                                                           EE states patient walked into nurses office & was cursing at staff. EE intervened & patient grabbed her around the neck.
## 36284                                                                                                                                                 EE states patient walked out of peers room and lunged at EE and said she was going to punch EE inthe face and did.
## 36285                                                                                                                                                                           EE states patient walked up to her and started hitting her on the left side of her head.
## 36286                                                                                                                                                     EE states patient was attacking staff and he was trying to place patient in nci hold and hit left leg on floor
## 36287                                                                                                                                           EE states patient was attempting to attack another employee and when assisting patient, fell and injured left 5th finger
## 36288                                                                                                              EE states patient was being escorted to bathroom. During ambulating patient patient dropped and to prevent patient from hitting floor, EE broke fall.
## 36289                                                                                                                                                                                                EE states patient was being restrained and head butted in the nose.
## 36290                                                                                                                                                                         EE states patient was combative /staff and then patient fell to the floor-staff fell also.
## 36291                                                                                                                                                               EE states patient was falling and both the patient and EE fell to the floor. Injured hip and rt hand
## 36292                                                                                                             EE states patient was fighting peer & EE intervened & patient kicked up and struck EE in the throat and she fell-hi head on floor and lost consciousne
## 36293                                                                                                                                             EE states patient was getting into shower and patient fell back against EE and EE fell against the door. Injured back.
## 36294                                                                                                                                                                   EE states patient was going over to courtyard andstaff jumped up to get him and rt knee twisted.
## 36295                                                                                                                                                                                             EE states patient was on the floor kicking and kicked EE in the chest.
## 36296                                                                                                                         EE states patient was out on smoke break, became combative, staff and patient fell to the ground, EE was punched and knees were skinned up
## 36297                                                                                                                                EE states patient was sent out of school. He refused to leave and began to attack wards. EE andhelped to hold patient and hurt ribs
## 36298                                                                                                                                                             EE states patient was stuck between bed and wall EE pulled bed frame up pulling something on shoulder.
## 36299                                                                                                                                                                                      EE states patient was unsteady & fell back on her causing strain on shoulder.
## 36300                                                                                                                           EE states patient were fighting in day area throwing punches at other patients and was restrained and wrist was twisted in the progress.
## 36301                                                                                                                                             EE states patients became upset when he was told to go to time out. Patient became aggressive and bit staff on lt arm.
## 36302                                                                                                                                                               EE states pencil rolled off table & struck her in the thigh. EE out 3 days. EE scheduled off 9/10/07
## 36303                                                                                                                                                                                          EE states pepper spray has caused her face to become numb on the rt side.
## 36304                                                                                                                                                                                      EE states pepper spray was sprayed in face causingtightness and pain in chest
## 36305                                                                                                                                                                                      EE states performing data entry on computer, writing, preparing reports daily
## 36306                                                                                                                                                                  EE states performing normal duties, driving vehicle, another car ran red light and hit ncsu truck
## 36307                                                                                                                                      EE states performing surgical removal of wisdom tooth and suturing patient when new needle just glazed EE's skin but no blood
## 36308                                                                                                                                                                        EE states persistent itching all over body more serious under both arms-exposure to scabies
## 36309                                                                                                                                                                            EE states picked up 3 large boxes (shredded paper)and moved them to her office quickly.
## 36310                                                                                                                              EE states picked up a case of fruit and a pain came in my back causing me to go to my knees and then EE could not get up for a while.
## 36311                                                                                                                                                                                  EE states picked up trays nd felt joint in elbow snap. It started swelling later.
## 36312                                                                                                                                                                                        EE states picking box up and when EE went to stand up hit head on shelf. ()
## 36313                                                                                                                                                                                  EE states picking client up in the jump o line twisted back. Hurt back and hands.
## 36314                                                                                                                                     EE states picking up breathing machine to take to the rooms and sharp pain in arm going into hand (left hand and left arm). ()
## 36315                                                                                                                                                                                                         EE states picking up lunch tray nd rt hand started aching.
## 36316                                                                                                                                                                      EE states placing gallons of water in the refrigerator, bend over and felt a pull in my back.
## 36317                                                                                                                                               EE states placing pans on trayline & lifting up robo w/peaches in it. She walked over to sink and felt pain in back.
## 36318                                                                                                                                                                                EE states playing basketball during pe, shot the ball and felt a pull in l shoulder
## 36319                                                                                                                                                           EE states playing basketball w/students and 2-3 days later EE leg felt stiff and cracking noise injoint.
## 36320                                                                                                                                                        EE states playing with students, the basketball stuck EE on the 4th finger on rt hand, causing it to jammed
## 36321                                                                                                                                                                EE states poking at closed sign, her shoe was caught underneath a floor mat, she fell on her r knee
## 36322                                                                                                                                                                                                      EE states possibly injured lifting, transferring and pulling.
## 36323                                                                                                                                                                                           EE states posture of workstation caused strain on neck, shoulder and arm
## 36324                                                                                                                                 EE states printing seminar notices, putting paper into the manual feed tray and piece of paper slip-ped out and poke EE in the eye
## 36325                                                                                                                                 EE states processing water chlorine, turn on pump and the line came loose, and EE got wet on rt side of face, arm, neck and rt leg
## 36326                                                                                                                                              EE states progressive condition involving right hand, wrist, arm, suspected early cts related to computer programming
## 36327                                                                                                                                                                                                       EE states prolonged standing/walking during shift has injury
## 36328                                                                                                                                                                   EE states pt attacked her by hitting her in the head. EE glasses were broken during this attack.
## 36329                                                                                                                            EE states pt came into the office and started punching writer in the forehead and chest with clclosed fist. Pt had writer against wall.
## 36330                                                                                                                     EE states pt came up to shake hand pushed against him causing EE to start falling backward EE tryingto catch himself strained right leg muscle
## 36331                                                                                                                                       EE states pt grabbed EE keys and started running down hall to door--EE chased after pt and got tripped up and fell on floor.
## 36332                                                                                                                     EE states pt grabbed another EE shirt and spit in other EE face, injured EE asst with pt and during struggle EE fell on chair injuring rt arm.
## 36333                                                                                                                                                                                                         EE states pt hit him several times and injured his finger.
## 36334                                                                                                                                                                                      EE states pt kicked EE on the lt calf, priednails into hct's skin and lt arm.
## 36335                                                                                                                                                 EE states pt pulled down on her hand while trying to assist pt up and EE felt pain in her hand laterstrain rt hand
## 36336                                                                                                                           EE states pt pushed EE against wall and pt was put on bed, w/me and another tech was top of me lt knee was pushed on top of the railing.
## 36337                                                                                                                EE states pt refused to go to the quiet room. Pt punched staff in face and started to fight, fell and scrtached EE face on corner of couch in room.
## 36338                                                                                                                                                                                                                       EE states pt scratched EE on the lt forearm.
## 36339                                                                                                                     EE states pt tried to escape during transitioning from school to the unit. Staff chased him down and therupeutically assist him to the ground.
## 36340                                                                                                                EE states pt walked over to another and started hitting another pt in the face and EE fell against the chair trying to pull them apart hurting knee
## 36341                                                                                                                                                    EE states pt was attempting to assault other peers. Patient had to be held struggling back pain after incident.
## 36342                                                                                                                            EE states pt was being redirected away from the work station and the pt became combative intaking him down. Pt fell on writers rt hand.
## 36343                                                                                                                                            EE states pt was being redirected from threatrningother patients. Pt then took a swing at EE and hit EE ing the rt eye.
## 36344                                                                                                                                   EE states pt was fighting EE writer nad caused EE to stumble into the corner oft he nurses station causing scratch on EE's back.
## 36345                                                                                                                                                  EE states pt was jumping out of the chair and while trying to keep him from falling, injured lt arm and shoulder.
## 36346                                                                                                                                                                                        EE states pull resident up in wheel chair and pulled a musle in his back ()
## 36347                                                                                                                      EE states pulled a kleenex from box which was located on top of my desk and white thick powder substance got on desk, arms, toes and clothing
## 36348                                                                                                                                                                                         EE states pulled muscle in low back while lifting patient with assistance.
## 36349                                                                                                                                                                                                  EE states pulled something in arm when unloading trays off carts.
## 36350                                                                                                                                                                     EE states pulling and lifting on steel tracks on bobcat caused hurting small of back to knees.
## 36351                                                                                                                            EE states pulling on a steering wheel to remove from shaft, felt pain in belly button. Had appen-dectomy & hernia repair during summer.
## 36352                                                                                                                                    EE states pulling rack out of cage washer when rt foot was hooked by loose safety trend and twisted r knee getting out of racks
## 36353                                                                                                               EE states pulling tens from upper shelf. EE used two step ladder when she stepped down, she fell on the floor in a seated position hurting buttocks.
## 36354                                                                                                                                              EE states pulling wheelchair back and tipper on back of wheelchair roller on her right foot. Side of foot swollen. ()
## 36355                                                                                                                                                                                                    EE states punctured in the lt index finger with a lancet needle
## 36356                                                                                                               EE states pushing client to table. Turned around to ask another staff a question, client pushed himself away from table and the wheelchair run away.
## 36357                                                                                                             EE states put bag on desk in office. A broken chair was up against book shelf. EE states she got caught up in chair; when she turned she fell on floor
## 36358                                                                                                                                                                                         EE states putting client to bed and lower part of back started to hurting.
## 36359                                                                                                                                                              EE states putting client's helmet on coffee table when she slipped and fell on the floor on buttocks.
## 36360                                                                                                                                                                                            EE states putting paper in her printer and the printer fall on her foot
## 36361                                                                                                                                                         EE states putting patient in restraints and 4th finger on rt hand hit the floor when patient kicked at EE.
## 36362                                                                                                                                                                                                     EE states putting patient in s&r, she kicked writer on lt jaw.
## 36363                                                                                                                                                                                                 EE states putting up files; hit right fifth toe on door casing. ()
## 36364                                                                                                                         EE states py went to bull rush to make an escape out of the door EE was grabbed by another staff member and hand was stopmed on by the pt.
## 36365                                                                                                                                 EE states rafting with cabin group, down river, hit a rock and EE's back was jerked forward and then back, injuring her lower back
## 36366                                                                                                                                                        EE states reached by client's face to reposition his shirt; client leaned forward and bit EE's left arm. ()
## 36367                                                                                                                                                           EE states reachsed down to pick up manequin & whenpulled him up something pulled on my left side of back
## 36368                                                                                                                                                                                         EE states reading s. O. P. He rubbed rt eye started hurting and tuned red.
## 36369                                                                                                                                                                                               EE states reinjured arm when reached out to keep inmate from falling
## 36370                                                                                                                                                                                                                        EE states removed gloves and has a reaction
## 36371                                                                                                                             EE states removing old glass aquarium from lobby, it was fractured on the edge, lifted the tank ontoa cart when the laceration occured
## 36372                                                                                                                                                                      EE states removing sheets from wooden shelves and a rusty nail penetrated the top of her band
## 36373                                                                                                                                                                   EE states repeated picking up and carrying of large awkwardly shaped items and squeezing handles
## 36374                                                                                                                                                                                                                                       EE states repeated typing ()
## 36375                                                                                                                                                                                              EE states repetative motion of typing, writing and computer mouse use
## 36376                                                                                                                                                                           EE states repetative motion use of computer, mouse, aggravates r wrist and index fingers
## 36377                                                                                                                                                                                                     EE states repetative moton from stain from lifting and bumping
## 36378                                                                                                                                          EE states repetative use of arm coaching tennis team and development of bone spurs caused him to have surgery on 12/8/06.
## 36379                                                                                                                                                                                                              EE states repetative work-filing, typing and writiing
## 36380                                                                                                                                                                                                                                        EE states repetitive motion
## 36381                                                                                                                                                               EE states repetitive motion/lack of wrist and arm support when working at computer---rt arm is sore.
## 36382                                                                                                                                                                                                  EE states repetitive movements caused pain in neck and shoulders.
## 36383                                                                                                                                                                              EE states repetitive use of computer has caused carpal tunnel syndrome in both hands.
## 36384                                                                                                                                                                                        EE states repetitive use of computer keyboard is causing strain in left arm
## 36385                                                                                                                                                                                                      EE states repetitive use of keyboard and mouse on daily basis
## 36386                                                                                                                                                                                                               EE states repetitive use of right arm with computer.
## 36387                                                                                                                                                                    EE states repetitive work with clients caused lumpon right wrist. Ganglion cyst on right wrist.
## 36388                                                                                                                                                  EE states repetitive/excessive use of mouse, keyboard & calculator has caused carpal tunnel problems to flare up.
## 36389                                                                                                                                                                                                EE states repetitve motion of keyboard & computer mouse caused cts.
## 36390                                                                                                                                                    EE states replacing probe convers in the ear thernmometer hurting index finger EE had a small cut on her finger
## 36391                                                                                                             EE states reporting to work headed to transportation officer came out of stairwell did not see wet floor signs slipped and fell on both knees and hand
## 36392                                                                                                                                                                                        EE states repositioning client in wheelchair when right shoulder popped. ()
## 36393                                                                                                                                                                                                            EE states requires to swim with patients(swimmer'sear).
## 36394                                                                                                                                                                                                     EE states resident became combative and pushed EE to the door.
## 36395                                                                                                                                                                            EE states resident coughed while feeding sending food & saliva into face & lt eye of EE
## 36396                                                                                                                                                      EE states resident grabbed arm during pt care whenee tried to pull away EE noticed a scratch on the rt wrist.
## 36397                                                                                                                                                         EE states resident grabbed me from behind, tried tochoke me, she then grabbed my hair jerking neck & head.
## 36398                                                                                                             EE states resident hit her in the abdomen area andshe is 5 months pregnant. The hit caused her to have feelings of cotractions/pressure in her abdomen
## 36399                                                                                                                                                                       EE states resident pulled on arm while going down stairs, stepped on a recessed area of step
## 36400                                                                                                                                                                                                            EE states resident punched him on right side of face ()
## 36401                                                                                                                                                                             EE states resident was having a behavior problem and resident stepped on EE's big toe.
## 36402                                                                                                  EE states resident was in the bathroom and I was trying to get the resident out of the bathroom, resident reach back with left arm, and hit me in the left eye ()
## 36403                                                                                                                                                          EE states resident was leaning and EE tried to sit resident up straight and resident poked EE in the eye.
## 36404                                                                                                                  EE states resident was upset and grabbed staff by the back of shirt and pulled on top of him onto the bed and twisting EE back in award position.
## 36405                                                                                                                   EE states resident was upset, when released from chair restraint, resident slapped eye glasses off her face causing bruise & swelling of lt eye.
## 36406                                                                                                                     EE states resident was walking up steps & fell back into her. Staff grabbed rail supporting her- self & resident resulting in the back strain.
## 36407                                                                                                                                                                                                     EE states responded to body alarm and hit lip on door of ward.
## 36408                                                                                                                EE states responded to code 900 EE arrived inmate was seated in a chair outside of cell #15 his rt rt arm was covered in blood & floor around chair
## 36409                                                                                                                 EE states responding to a code 300, EE assisted with trying to subdue and control an inmate. EE tried to walk away, notice pain in lt ankle & heel
## 36410                                                                                                                                     EE states retrieving a project from a shelf, lost grip and the projector slipped. Cut finger on a sharp edge on the projector.
## 36411                                                                                                                                 EE states return to dock, heading toward car, stepped off the dock and stepped on plastic bag, slipped, fell and rolled into water
## 36412                                                                                                                               EE states returning from dropping off deposit, tripped on brick that was uneven and fell into mulch, hitting chin and glass came off
## 36413                                                                                                                                                                                    EE states returning from lunch tripped and fell injuring right hip and knees ()
## 36414                                                                                                            EE states rhat while transporting inmates to central prison for medical appointments he was parking the transport vehicle outside of cp's receiving. ..
## 36415                                                                                                                                                                                                      EE states riding on elevator and elevator came to abrupt stop
## 36416                                                                                                                                                                                                     EE states right arm caught in door between elbow and shoulder.
## 36417                                                                                                                                                                                            EE states right hand, top skin broken, cut off table where tea is made.
## 36418                                                                                                                                                                                                             EE states ripping a piece of plywood with circular saw
## 36419                                                                                                                                                                                                          EE states rt ear hurts and is swollen from using earphone
## 36420                                                                                                                                                                                                           EE states rt hand/fingers has locked causing severe pain
## 36421                                                                                                                                                                                            EE states rt knee was swollen and leg gave way andshe fell to the floor
## 36422                                                                                                                                                                           EE states rt leg gave away and EE fell in the parking lot and landed on lt arm and knee.
## 36423                                                                                                                                                                     EE states rt leg was caught underneath student for a brief while student was being restrained.
## 36424                                                                                                                                                                                     EE states rt shoulder oppped while putting patient in seclusion and restraint.
## 36425                                                                                                                                                                                                   EE states rt wrist hurting and pain remains from using computer.
## 36426                                                                                                                                                                                          EE states rt wrist is sore when she does a lot of typing at the computer.
## 36427                                                                                                                                                                                                         EE states rt wrist was injured during self defensetraining
## 36428                                                                                                                      EE states running after inmate who was attempting to escaoe whe EE got to the entrence gate behind operations EE's lt ankle went the opp, way
## 36429                                                                                                                                                  EE states running down hall to check on disturbancin patient room, foot slipped in drain hole in hallway and fell
## 36430                                                                                                                                                                                            EE states running to a code 2 drill in the gym, she twisted her r ankle
## 36431                                                                                                                                                                                               EE states running to pic minor on aaf-c felt something pop in r knee
## 36432                                                                                                                                                                       EE states sandal got caught under mat, she tripped fell and struck back of head on bookshelf
## 36433                                                                                                                                                                                                                             EE states scraped wrist on pot machine
## 36434                                                                                                                  EE states searching dormitory for contraband, whilemoving lockers away from the walls & fire box. He felt a light pop and sting in the socket are
## 36435                                                                                                                                                                                         EE states seat belt of a state owned car hit him iin the mouth on a tooth.
## 36436                                                                                                                  EE states seh was walking down ramp to go to courtramp was wet and she slipped and fell down on righknee and butt causing knee to bend backwards.
## 36437                                                                                                                                                                                                    EE states self inflicted laceration to finger cause by scissors
## 36438                                                                                                                                           EE states several things were happening simutanously and assisted w/ 2 of them, someone stepped on r foot, injured back,
## 36439                                                                                                                                                          EE states sfe was assisting w/a pt who kicking and her finger became caught under the pt leg causin pain.
## 36440                                                                                                                                                                                                 EE states sharp pain occurs when he lifts or carries heavy objects
## 36441                                                                                                                                                                                EE states she "tried to prevent (inmate) from falling & hurt my back (lower back)".
## 36442                                                                                                                                                     EE states she May have overworked. She feels pain in back of neck and right side of back from lifting patients
## 36443                                                                                                                                                                                          EE states she accidentally back into a board injuring her back, neck, leg
## 36444                                                                                                                                                                                                           EE states she accidentally closed a door on her rt hand.
## 36445                                                                                                                                                                                                            EE states she accidently struck lt eye with an envelope
## 36446                                                                                                                    EE states she after inmate had administer his insulin shot, placed syringe in her pocket, taking it out of her pocket she stuck self in rt hand
## 36447                                                                                                                 EE states she and another staff member were turning over a duplicating machine, duplicator fellonto her r arm, jamming it against the other machin
## 36448                                          EE states she and co-worker were moving tables. The last table to be moved fell on EE's hand. Table was turned on its side. Co-worker's grip slipped, which caused her to fall. EE's hand was between table and floor. ()
## 36449                                           EE states she arrived to work at dor's charlotte office. She got out of her car in the parking lot and started to get her computer out of the car. She turned in a 360 degree angle & felt a strong pain in her back. ()
## 36450                                                                                                                 EE states she assisted resident 2-3 times in getting on & off of low leisure lounge--during one of these times EE felt extreme pull in lower spine
## 36451                                                                                                                                                                   EE states she attempted to move the examination table when she injured her back. Dob; 10. 25. 50
## 36452                                                                                                                                                                                          EE states she backed up and stepped on a bookshelfcausing rt ankle injury
## 36453                                                                                                                                           EE states she became disoriented, heated while firing weapon. Went to one knee & then laid down, was moved to cool area.
## 36454                                                                                                                                                                                           EE states she became over exhausted from heat causing her to become sick
## 36455                                                                                                                                                                                                                          EE states she became overheated and dizzy
## 36456                                                                                                                                                                                       EE states she began to have back pain at work--- does not know what cause it
## 36457                                                                                                                                                                       EE states she began to have pain in her rt and lt arm and leg while typing and lifting boxes
## 36458                                                                                                                                                                EE states she began to have pain in his wrist, elbow, and shoulder due to excessive use of computer
## 36459                                                                                                                                                       EE states she began to have upper respiratory problems during the month of July, due to mold infestation. ()
## 36460                                                                                                                                                                                           EE states she begin to experience difficult breathing and light-headness
## 36461                                                                                       EE states she bend over to pick up used paper towels off the floor and when raising back up, hit the top of her head on the edge of the paper towel dispenser on the wall ()
## 36462                                                                                                                       EE states she bending over to pick up a box off ofthe floor went to stand up felt a sharp pain in ltside and back that radiated down lt leg.
## 36463                                                                                                                                                                EE states she bent down to retrieve a chart from a file cabinet when she felt pain in her lower leg
## 36464                                                                                                                                                                                           EE states she bent over and could not get back up EE is having back pain
## 36465                                                                                                                                         EE states she bent over to clean floor in janitors closet and when she went to stand, she hit her head on the water faucet
## 36466                                                                                                                                                                                    EE states she bent over to pick up a bag with trash and back started hurting ()
## 36467                                                                                                                                                   EE states she bent over to pick up something from floor when she struck her head on a hanging water hose nozzle.
## 36468                                                                                                                                                      EE states she bent over to wrap tape around electrical cord and stood up and injured back. Referredto glenda.
## 36469                                                                                                                                                                        EE states she bent over to write inmate's name on a box when she felt a pain in lower back.
## 36470                                                                                                                                               EE states she brushed a table in the dayroom with her lt hand a razor blade was consealed under the lip of the table
## 36471                                                                                                                                                          EE states she bumped a broom handle that was hanging from a shelf causing a mop to strike her on the head
## 36472                                                                                                                                                                     EE states she bumped her head on the corner of thecell while passing money receipts to inmates
## 36473                                                                                                                                                                                                                   EE states she came in contact with poison sumac.
## 36474                                                                                                                            EE states she came out of dt office & went to empty tash can in room 102 & felt a sharp pain in her lower back & pain went down her leg
## 36475                                                                                                                                                                  EE states she caught a dresser w/tv on top to keepdresser from falling on client. Injured rt hand
## 36476                                                                                                                                                                    EE states she caught and twisted rt foot while coming down a flight of stairs to help a patient
## 36477                                                                                                                EE states she climbed up a small 2-step ladder to turn on the switch to the air detector and whenshe stepped off the ladder she injured her lt knee
## 36478                                                                                                                                                                                                                     EE states she close the door on her rt finger.
## 36479                                                                                                                                                                                                      EE states she closed door on her lt hand while exiting a van.
## 36480                                                                                                                       EE states she closed side gate door to enter horseshoe area, she pulled door to close it and finger caught between door and the door facing.
## 36481                                                                                                                                                                                                              EE states she closed the control gate on her rt thumb
## 36482                                                                                                                                                     EE states she comes into contact with people who o are infected with scabies in infirmary & outpat ient floors
## 36483                                                                                                                                                      EE states she contracted-impetigo an airborne bacterial infection on her face/nose from workplacenvironments.
## 36484                                                                                                                                                              EE states she cut her finger on a door lock when coming into the building. Laceration to right thumb.
## 36485                                                                                                                                                                           EE states she developed laryngitis after talking for a long length of time for a lecture
## 36486                                                                                                             EE states she did not see a wet floor sign inside but outside the building she then went to rnc to sign in. EE slipped & fell on knees. Sprain rt knee
## 36487                                                                                                                                                                                                         EE states she does administrative duties and lot of typing
## 36488                                                                                                                                          EE states she dropped keys and went to pick them up and when she was getting up her head hit the sorner of the clipboard.
## 36489                                                                                                                                                                                    EE states she drunk from a can that an inmate had allegedly rubbed his penis on
## 36490                                                                                                                                                       EE states she drunk her water that was left in the refrigerator and after completing drinking she felt dizzy
## 36491                                                                                                                    EE states she enterred the s wing to assist in locking inmates down for chow, lost her balance and fell hitting the floor, hitting her left arm
## 36492                                                                                                                                                                                           EE states she experience pain in left wrist while performing data entry.
## 36493                                                                                                                                                                    EE states she experienced some pain radiating down to fingertip to forearm--the pain is ongoing
## 36494                                                                                                                                                                                                 EE states she fainted in the tunnel near c-4 after donating blood.
## 36495                                                                                                                                                                                                          EE states she fell & tripped on steps injuring rt hand ()
## 36496                                                                                                                                                                                         EE states she fell and injured both knee---no apparent reason for the fall
## 36497                                                                                                                                                                                                           EE states she fell and injured her lt wrist and rt knee.
## 36498                                                                                                                                                                                EE states she fell and injured her rt elbow and knee while running after a student.
## 36499                                                                                                                                                                                                  EE states she fell and slipped on wet floor causing a back injury
## 36500                                                                                                                                                                                                                        EE states she fell and twisted her rt ankle
## 36501                                                                                                                                                                                       EE states she fell down some stairs causing both knee, leg, and ankle injury
## 36502                                                                                                                                                                                                 EE states she fell down some stairs injuring her rt ankle and hand
## 36503                                                                                                                                                                                                                                 EE states she fell down some steps
## 36504                                                                                                                                                                                                       EE states she fell down some steps and landed on her lt foot
## 36505                                                                                                                                                                                                                  EE states she fell down step striking her lt knee
## 36506                                                                                                                                                                                               EE states she fell going up the stairs carrying charts to unit I. ()
## 36507                                                                                                                                                                                           EE states she fell in gym causing injury to her back, arms, and shoulder
## 36508                                                                                                                                                                                EE states she fell in office building on area rug, fell forward onto hands and knee
## 36509                                                                                                                                                                                                         EE states she fell in parking lot injuring her lt shoulder
## 36510                                                                                                                                                        EE states she fell in the administration building after stepping on wet floorin undergraduate admissions ()
## 36511                                                                                                                                                                EE states she fell in the kitchen injuring her lt elbow family phy-butner creedmoor family medicine
## 36512                                                                                                                                 EE states she fell in the parking lot, the heel of her shoe was caught between a crack in the pavemencausing her to loose balance.
## 36513                                                                                                                                                                                                           EE states she fell into a hole and twisted her rt ankle.
## 36514                                                                                                                                                                                                              EE states she fell into a hole injurying her lt knee.
## 36515                                                                                                                                                                                                         EE states she fell on ice injuring her t hand, kneeand hip
## 36516                                                                                                                                                    EE states she fell on icy sidewalk outside of building near parking lot causing injury to her lt knee and elbow
## 36517                                                                                                                                                                                                                 EE states she fell on stairway injuring her lt arm
## 36518                                                                                                                                                                                            EE states she fell out of van onto cement causing injury to her lt knee
## 36519                                                                                                                                                                                                         EE states she fell over a file drawer injuring herrt elbow
## 36520                                                          EE states she fell over a large floor scale hitting the back of her head and rt hip hard on the concrete, then the scale fell on her hitting her on the lt upper arm and hitting her in the head again ()
## 36521                                                                                                                                                                                EE states she fell to the floor during a training exercise and twisted her lt knee.
## 36522                                                                                                                                                  EE states she fell when toe of shoe caught edge ofrubber mat. Injnured left hand, arm, nose, upper lip, left knee
## 36523                                                                                                                                                                                   EE states she fell while entering into the nurses station and injured her elbow.
## 36524                                                                                                                                                             EE states she fell while trying to keep an intoxicated visitor from falling--EE injured her lower back
## 36525                                                                                                                                                                                                                  EE states she fell while walking down some steps.
## 36526                                                                                                                                                                                                                     EE states she fell while walking on wet floor.
## 36527                                                                                                                                                                                              EE states she felled down some steps injurying herhip, legs, and arm.
## 36528                                                                                                                                                                                                                            EE states she felt a pop in her lt knee
## 36529                                                                                                                                            EE states she felt a pop/sharp pain in her mid to low, rt side back area assisting a patient from wheelchair to his bed
## 36530                                                                                                                                                                EE states she felt a pull of her lt shoulder whileassisting lifting a client from bed to wheelchair
## 36531                                                                                                                                                                                                                    EE states she felt a sharp pain in her lt ankle
## 36532                                                                                                                                                                        EE states she felt pain a couple of hours following the completion injury to right shoulder
## 36533                                                                                                                                                                                                                            EE states she felt pain in her rt wrist
## 36534                                                                                                                                                             EE states she felt something bite/sting her on the right big toe while she was sitting at her desk. ()
## 36535                                                                                                                                                  EE states she finished mopping and reached for the door knob and twisted knee as she grabbed onto the door frame.
## 36536                                                                                                                                                                                                          EE states she found ticks on her lt leg, back and stomach
## 36537                                                                                                                  EE states she gave a patient insulin treatment when she went to shut the door she slammed lt hand in the door causing to stick lt thumb with shot
## 36538                                                                                                                                          EE states she gave an allergey injection and when she turned away from the drug cart, she struck herself with the needle.
## 36539                                                                                                                                                                             EE states she got out of car & stepped on sidewalkthen her knee "popped". No days out.
## 36540                                                                                                                                                                                                                          EE states she got some trash into rt eye.
## 36541                                                                                                                               EE states she got up from her desk and tripped over her own feet. Right knee hit the ground first then the left knee and right hand.
## 36542                                                                                                                                             EE states she had a cut on her rt thumb and while handcuffing an inmate she got some of the inmates blood on her thumb
## 36543                                                                                                                                                                                                EE states she had an allergic reaction during pepper spray training
## 36544                                                                                                                                                                                                          EE states she had an allergic reaction from vinyl gloves.
## 36545                                                                                                                                                                                    EE states she had an allergic reaction to a flu shot that was taken on 10/22/98
## 36546                                                                                                                                                                                                              EE states she had an allergic reaction to a flu shot.
## 36547                                                                                                                                                                             EE states she had an allergic reaction to antibacterial soap that is used on the unit.
## 36548                                                                                                                                                                                                            EE states she had an allergic reaction to latex gloves.
## 36549                                                                                                                                                                                EE states she had an allergic reaction to the pepper spray during a training course
## 36550                                                                                                                                     EE states she had been in sun all day came to workand fainted during line up suffered sunburns to the legs and heat exhaustion
## 36551                                                                                                                              EE states she had gotten out of her car and was walking across parking lot when she stepped into a dip in pavement, tripped and fell.
## 36552                                                                                                             EE states she had just finished giving hepatitis binjection to an inmate laid syringe on table while reaching for band aid she stuck her finger w/syri
## 36553                                                                                                                                                                              EE states she had pain in back when she lifted sheed out of laundry cart. Back strain
## 36554                                                                                                                                EE states she had returned to the office from a trip to the courthouse and noticed that the left side of her upper lip was swollen.
## 36555                                                                                                                 EE states she had to pulled with her arms while entering a vehicle because of the flooded road this has causes pain in her arm, neck, and shoulder
## 36556                                                                                                              EE states she had transported im to 4150 had just unbuckled the im seatbelt and was stepping out of van lost her balance and fell backwards to ground
## 36557                                                                                                                                   EE states she had walked over to the student worker's desk to give her assignment foot got tangled in student's book bag strapes
## 36558                                                                                                                                                     EE states she has a herniated cervical disk and carpal tunnel in rt wrist, due to long term excessive pc work.
## 36559                                                                                                                                          EE states she has been under stress from job due to supervisor and superintendent harrassing and making false statements.
## 36560                                                                                                                                                                        EE states she has carpal tunnel of the rt hand **EE is schedule for surgery on 4/9/01******
## 36561                                                                                                                                                                                                                 EE states she has developed carpal tunnel syndrome
## 36562                                                                                                                         EE states she has had progressive numbness and tingling in right hand and fingers. EE states thather fingers feel swollen but they are not
## 36563                                                                                                                                   EE states she has low back pain from carrying (4x4x12) storm drain signs on beach, sand dunes & from digging holes for 12ft post
## 36564                                                                                                                                                EE states she has numbness and feels weight in her lt hand arm. She states she is constantly moving medical charts.
## 36565                                                                                                                                                                                                         EE states she has obtained serious sinus and chestattacks.
## 36566                                                                                                                                                                                                EE states she has ongoing numbess in her fingers due to job duties.
## 36567                                                                                                                                                                                                               EE states she has receives insect bites on her arms.
## 36568                                                                                                                                                     EE states she has started having pain of her lt wrist. EE states she do not recall what has causedthis injury.
## 36569                                                                                                                                                 EE states she has suffered severe depression due to sexual harassment and retaliatory act done by fellow coworkers
## 36570                                                                                                                                                                                                                              EE states she has work-related stress
## 36571                                                                                                                                                                                                   EE states she having severely itching and burning of her lt hand
## 36572                                                                                                                                                   EE states she held her bowels for two hours causing hemmorhoids **EE had surgery for total hemmorhoid removal***
## 36573                                                                                                                                                                     EE states she hit her forehead on top cabinet in the break area while washing a coffee mug. ()
## 36574                                                                                                                                                                                                     EE states she hit her lt 5th finger on the bathroom partition.
## 36575                                                                                                                                                                       EE states she hit her right hand against the metal plate on a stitcher in the print shop. ()
## 36576                                                                                                                                 EE states she hit her toe on foot stool as she stepped down from medical cabinet in medical trailer. Fracture of toe on right foot
## 36577                                                                                                                                EE states she hung her rt foot on a computer cord & tripped. She fell on the floor hitting her lip, two front teeth and right knee.
## 36578                                                                                                                                                                                                         EE states she hurt her hand while taking fire armstraining
## 36579                                                                                                                                                                                                       EE states she hurt self by performing the bent wristechnique
## 36580                                                                                                                                                                                             EE states she injured her back and r shoulder during firearms training
## 36581                                                                                                                          EE states she injured her back at home while bending over to pick up a piece of paper. She went to her Dr And he took her oow for 3 days.
## 36582                                                                                                                                                                                                         EE states she injured her back while closing a slider door
## 36583                                                                                                                                                                                                 EE states she injured her back while lifting a boxcontaining files
## 36584                                                                                                                                                                                                     EE states she injured her back while lifting a laundry basket.
## 36585                                                                                                                                                                                                      EE states she injured her back while lifting a patient to bed
## 36586                                                                                                                                                                                                         EE states she injured her back while lifting boxesof paper
## 36587                                                                                                                                                                                                                EE states she injured her back while lifting cooler
## 36588                                                                                                                                                                                                   EE states she injured her back while playing ball with patients.
## 36589                                                                                                                                                                           EE states she injured her back while pushing and pulling a hand cart to another building
## 36590                                                                                                                                                                             EE states she injured her back while securing the mop and mop bucket in the fence area
## 36591                                                                                                                                                                                               EE states she injured her back while throwing trash in the dumpster.
## 36592                                                                                                                                                                                              EE states she injured her back while trying to lift a basket of mail.
## 36593                                                                                                                                                                                         EE states she injured her back while trying to lift a case of liquid soap.
## 36594                                                                                                                                                                                                        EE states she injured her knee and shoulder duringtraining.
## 36595                                                                                                                                            EE states she injured her knee, hands and groin area while trying to close a supply closet which was difficult to close
## 36596                                                                                                                                                                                  EE states she injured her lower back while demonstrating on how to use equipment.
## 36597                                                                                                                                                      EE states she injured her lower back while liftingand moving office supplies such as files, books, boxes, etc
## 36598                                                                                                              EE states she injured her lower back while shearing a 200lbs sheep. Animal was moving around a lot & keeper had to pull her up &otherwise manage her.
## 36599                                                                                                                                                                                                        EE states she injured her lt foot while chasing a defendant
## 36600                                                                                                                                                                                                                            EE states she injured her lt foot/ankle
## 36601                                                                                                                                                                                       EE states she injured her lt hand while trying to open a door for an inmate.
## 36602                                                                                                                                                                                                    EE states she injured her lt hip while straining to open a door
## 36603                                                                                                                                                                                                  EE states she injured her lt shoulder while picking up a computer
## 36604                                                                                                                                                                                                                  EE states she injured her rt ankle in parking lot
## 36605                                                                                                                                                                                                               EE states she injured her rt arm while lifting a pt.
## 36606                                                                                                                                                                                                                     EE states she injured her rt arm while mopping
## 36607                                                                                                                                                                                                    EE states she injured her rt arm while trying to restrain a pt.
## 36608                                                                                                                                                                                          EE states she injured her rt arm with a shotgun during a training session
## 36609                                                                                                                                                                                                         EE states she injured her rt hand and rt shoulder buffing.
## 36610                                                                                                                                                                                     EE states she injured her rt hand while trying to clean from under a mattress.
## 36611                                                                                                                                                                                                        EE states she injured her rt shoulder while firinga shotgun
## 36612                                                                                                                                                                                                EE states she injured her rt shoulder while lifting a heavy tea can
## 36613                                                                                                                                                                                              EE states she injured her rt shoulder while opening a sally port gate
## 36614                                                                                                                                                                                                             EE states she injured her shoulder during nci training
## 36615                                                                                                                                                                                                     EE states she injured her wrist while assisting with a patient
## 36616                                                                                                                                                               EE states she injured her wrists and knees while helping a client down the on floor some months ago.
## 36617                                                                                                                                                                                         EE states she injured herself while assisting a client in and out of a van
## 36618                                                                                                                                                                      EE states she injurying her rt thumg and wrist stapling and data entry over a period of time.
## 36619                                                                                                                                                                                                EE states she is allergic to chemicals we use to clean the library.
## 36620                                                                                                                                                                          EE states she is having pain and stiffness in the wrist area and also tingling in fingers
## 36621                                                                                                                                   EE states she is having pain in her rt hand, with numbness in the finger. She also stated there is some pain in the wrist both..
## 36622                                                                                                                                                                                    EE states she is having pain in her rt wrist from typing/keyboarding activities
## 36623                                                                                                                                                                                       EE states she is having pain in her wrist and elbow due to excessive typying
## 36624                                                                                                                                                                                                       EE states she is under mental stress due to sexualharassment
## 36625                                                                                                                                                                                    EE states she jammed her left thumb subduing an inmate, contusion to left thumb
## 36626                                                                                                                    EE states she leaped against a wall and started tofeel a burning sensation in her lower back. Upon exam a clear creme like substance was found.
## 36627                                                                                                                                   EE states she left her drink unattended while supervising inmate and when she took a swallow it taste like contaminated chemical
## 36628                                                                                                                      EE states she left her office to consult w/ staff member, entered breezway from her office, foot hit a wet spot on the floor causing her fall
## 36629                                                                                                                                                                                        EE states she lifted 2 gallons of food in a 4 gallon pan onto serving line.
## 36630                                                                                                                                                               EE states she lifted an inmate out of his wheelchair to transport van when she felt pain in her back
## 36631                                                                                                                                                                                                                EE states she lifted box & shoulder/back was aching
## 36632                                                                                                                   EE states she lifted three racks of dishes from drying tower to counter top, carried pot of oatmealin kitchen EE has pain in shoulder up to neck
## 36633                                                                                                                                                  EE states she lifted trash bag out of can when sheshe strained her back. Professor cleaning out office to retire.
## 36634                                                                                                                                                                                      EE states she lifting a laundry bag to put in laundry bin and felt back pain.
## 36635                                                                                                                                                                                  EE states she lost her balance and fell while going up steps injuring her lt knee
## 36636                                                                                                                                                               EE states she lost her balance and while trying to keep herself from falling she injured her lt hand
## 36637                                                                                                                                                                                                      EE states she missed a couples of steps and injureher rt leg.
## 36638                                                                                                                                                                                 EE states she missed a step and fell while gettingin a van injuring her rt leg/hip
## 36639                                                                                                                                                                                EE states she missed a step while going down the stairs and slid down the stairs ()
## 36640                                                                                                                                               EE states she missed lower step when leaving building. Twisted lt ankle causing EE to fall. Rt knee rt hip lt ankle.
## 36641                                                                                                                                                                                  EE states she moved chair back and hit head and neck on door of medication window
## 36642                                                                                                                                                                      EE states she moved to a new workstation and it was too high, causing right arm to be painful
## 36643                                                                                                                                                                                                  EE states she must have strained back when pulling a box of paper
## 36644                                                                                                                                                                                        EE states she must havve turned wrong because she now has pain in her knee.
## 36645                                                                                                                    EE states she notice swelling in her abdomen. Her duties are knocking out food trays & pulling tray carts. She is scheduled for surgery Oct. 30
## 36646                                                                                                                                                       EE states she noticed pain in rt hand and thumb after constance use during activities and basic care duties.
## 36647                                                                                                                                                                                                     EE states she noticed pain in rt side while assistwith client.
## 36648                                                                                                                                                                                               EE states she observed a rash on her neck and brea-stline on 072304.
## 36649                                                                                                                                                                                            EE states she off the sidewalk twisting her lt foot--spraining lt ankle
## 36650                                                                                                              EE states she only recalls flying through the air but did not remember exactly what had happened hersupervisor found her sitting on the sidewalk in..
## 36651                                                                                                                                                                                                 EE states she open a cabinet and a book fell out causing neck pain
## 36652                                                                                                                        EE states she opened rt side of double doors. EE EE stepped back to let someone go in first-the btm of the door passed over top of EE foot.
## 36653                                                                                                                                                                                                        EE states she opened steamer door and steam burned her arm.
## 36654                                                                                                                                                                       EE states she picked up a cooler and pulled a muscle in her back.... 3/7/03 10% ppd back. ..
## 36655                                                                                                                                                                                     EE states she picked up a tray of tea and felt something pop in her left wrist
## 36656                                                                                                                                                                                                        EE states she pinched her rt thumb between the control door
## 36657                                                                                                                                                                                                  EE states she pulled a muscle in her back while mopping the floor
## 36658                                                                                                                                                                                            EE states she pulled a muscle in her rt arm duringself-defense training
## 36659                                                                                                                                                                               EE states she pulled a muscle in her upper lt arm while striking inmate with a baton
## 36660                                                                                                                        EE states she pushed away from a desk while in a chair with rollers when the chair tipped over to the side causing EE to fall to the floor.
## 36661                                                                                                                                                      EE states she reached into the cbc tray to get a test strip and punctures left pointer finger on open syringe
## 36662                                                                                                                  EE states she reached to overhead cupboards and then brought her arm down to write and noticed a crick in neck that became shooting pain in neck.
## 36663                                                                                                                     EE states she reached up to a patient's cubie thenattempted to pull bottom of drawer out, helping look for clothes and felt pull in right hip.
## 36664                                                                                                                                                                                                EE states she recd a contusion to her arm by a reckless supervisor.
## 36665                                                                                                                                                                 EE states she recd bites from insect(mites) while handling some hay which is used to feed animals.
## 36666                                                                                                                                                                                         EE states she received a needle stick while checking inmate's blood sugar.
## 36667                                                                                                                                                                                                                    EE states she received a rash all over her body
## 36668                                                                                                                                                           EE states she remove the latex glove from her rt hand and rubbed her rt eye when her eye started to burn
## 36669                                                                                                                         EE states she rolled her desk chair to the left to pick up files. Chair broke & she hit her knees on a side chair and injured her back. ()
## 36670                                                                                                                                             EE states she rushed into her office when she heard the phone ring and hit her left knee on the corner of her desk. ()
## 36671                                                                                              EE states she sat down in a chair in nurses station. The leg of the chair broke. EE states she fell to the floor on her left side, elbow and bottom hit the floor. ()
## 36672                                                                                                                                                                          EE states she sat down in one of the kitchen chairs and it gave way causing back pain. ()
## 36673                                                                                                                                                          EE states she sat down in the chair at dest and the wheels on the chair folded and she fell to the floor.
## 36674                                                                                                                                                                             EE states she sat down, turned maybe too hard or fast and injured her left shoulder ()
## 36675                                                                                                                                                                                    EE states she securing trap door on pst #8 she states she had a pain in abdomen
## 36676                                                                                                                                                                                                                  EE states she shut her rt thumb in a file cabinet
## 36677                                                                                                                                  EE states she shut the metal gate with her lt hand her finger got caught as she was about to make security check and other duties
## 36678                                                                                                                                                                     EE states she slipped & fell in a puddle of water injuring left arm & left leg and lower back.
## 36679                                                                                                                                                                                                           EE states she slipped & fell on some water on the floor.
## 36680                                                                                                                                                                                       EE states she slipped and fell causing injuring toher neck, elbow, and ankle
## 36681                                                                                                                                                                                                          EE states she slipped and fell causing injury to her back
## 36682                                                                                                                                                                               EE states she slipped and fell causing injury to her rt shoulder, arm, and hip area.
## 36683                                                                                                                                                                                      EE states she slipped and fell down some steps causing injury to her lt knee.
## 36684                                                                                                                                                                                                                      EE states she slipped and fell in parking lot
## 36685                                                                                                                                                                EE states she slipped and fell in parking lot injuring her lt leg/knee. It was raining at the time.
## 36686                                                                                                                                                                                     EE states she slipped and fell in the hallway where the floor had been mopped.
## 36687                                                                                                                                                                                    EE states she slipped and fell in water in med room on residental mental heath.
## 36688                                                                                                                                                                                                               EE states she slipped and fell injuring her rt ankle
## 36689                                                                                                                                                                                      EE states she slipped and fell injurying her head, lt leg, shoulder, and hip.
## 36690                                                                                                                                                                                                              EE states she slipped and fell injurying her rt knee.
## 36691                                                                                                                                                           EE states she slipped and fell on a black mat in front door to gatehouse injurying her knee, ankle, legs
## 36692                                                                                                                                                                                                 EE states she slipped and fell on a floor mat injuring her lt foot
## 36693                                                                                                                                                                                                EE states she slipped and fell on a floor mat twisting her lt ankle
## 36694                                                                                                                                                                                               EE states she slipped and fell on a floor strikingher knee and elbow
## 36695                                                                                                                                              EE states she slipped and fell on a heavily waxed floor causing injury to rt hip and shoulder. EE is 22 wks pregnant.
## 36696                                                                                                                                              EE states she slipped and fell on a rock injuryingher rt shoulde, cheek, and both knee. Also eye glasses were broken.
## 36697                                                                                                                                                                          EE states she slipped and fell on a slippery wet floor causing injury to her lt shoulder.
## 36698                                                                                                                                                                                            EE states she slipped and fell on a spill of rice injuring her rt knee.
## 36699                                                                                                                                                                                               EE states she slipped and fell on a waxed floor injuring her lt knee
## 36700                                                                                                                                                                    EE states she slipped and fell on a waxed floor injurying her lower back, rt leg, and lt elbow.
## 36701                                                                                                                                                                                    EE states she slipped and fell on a waxed floor injurying her rt knee and hands
## 36702                                                                                                                                                                       EE states she slipped and fell on a wet and greasyfloor injuring her hip, leg, foot, and arm
## 36703                                                                                                                                             EE states she slipped and fell on a wet floor causing injury to her back, neck, head, lt knee, lt ankle, and lt wrist.
## 36704                                                                                                                                                                                 EE states she slipped and fell on a wet floor causing injury to her lt inner thigh
## 36705                                                                                                                                                                                   EE states she slipped and fell on a wet floor causing injury to her lt leg/ankle
## 36706                                                                                                                                                                                       EE states she slipped and fell on a wet floor causing injury to her rt wrist
## 36707                                                                                                                                                                                    EE states she slipped and fell on a wet floor injurying her hip, leg, and foot.
## 36708                                                                                                                                                                                      EE states she slipped and fell on a wet floor injurying her rt middle finger.
## 36709                                                                                                                                                              EE states she slipped and fell on a wet floor there was no warning sign inidicating the floor was wet
## 36710                                                                                                                                                                    EE states she slipped and fell on a wet mopped floor. Sprain of rt ankle and lft knee contusion
## 36711                                                                                                                                                                                        EE states she slipped and fell on a wet ramp causing injury to her rt knee.
## 36712                                                                                                                                                                      EE states she slipped and fell on an uneven sidewalk causing injuryto the rt leg and lt ankle
## 36713                                                                                                                                                                                EE states she slipped and fell on an uneven sidewalk, fractured left humerus (arm).
## 36714                                                                                                                                                                                                      EE states she slipped and fell on floor injuring her lt ankle
## 36715                                                                                                                                                                                                        EE states she slipped and fell on ice causing a head injury
## 36716                                                                                                                                                                               EE states she slipped and fell on ice causing her to land on her rt arm and buttocks
## 36717                                                                                                                                                                                                EE states she slipped and fell on ice causing injury to her rt foot
## 36718                                                                                                                                                                              EE states she slipped and fell on ice causing injury to his rt groin/rt lower buttock
## 36719                                                                                                                                                                          EE states she slipped and fell on ice covering thesidewalk causing injury to her lt elbow
## 36720                                                                                                                                                                              EE states she slipped and fell on ice in parking lot injurying her rt knee, arm, hand
## 36721                                                                                                                                                                                              EE states she slipped and fell on ice injurying rt arm, hip, and leg.
## 36722                                                                                                                                                                                                    EE states she slipped and fell on ice twisting herlt foot/ankle
## 36723                                                                                                                                                                       EE states she slipped and fell on ice while walking across the parking lot causing back pain
## 36724                                                                                                                                                                                                   EE states she slipped and fell on porch--EE statesit was snowing
## 36725                                                                                                                                                                                 EE states she slipped and fell on ramp causing injuring to her knee and lower back
## 36726                                                                                                                                   EE states she slipped and fell on some applesauce while entering a door causing injuring to her knees, leg, foot, and wrist pain
## 36727                                                                                                                                                                     EE states she slipped and fell on some butter that was on the floor injurying her lt shoulder.
## 36728                                                                                                                                                         EE states she slipped and fell on some feces that was on the floor causing injury to both knees and hands.
## 36729                                                                                                                                                                              EE states she slipped and fell on some steps causing injury to her rt elbow/rt ankle.
## 36730                                                                                                                                                 EE states she slipped and fell on some steps while entering into a building causing rt hand and front tooth injury
## 36731                                                                                                                                                                                                    EE states she slipped and fell on some steps whileleaving work.
## 36732                                                                                                                                                                                 EE states she slipped and fell on some unknown solution while walking down hallway
## 36733                                                                                                                                                                                                    EE states she slipped and fell on some water injurying lt ankle
## 36734                                                                                                                                                          EE states she slipped and fell on steps while climbing the stairs causing legs, back, hip and head injury
## 36735                                                                                                                                               EE states she slipped and fell on the wet bathroomfloor injuring her left knee ***EE had immediate surgery done*****
## 36736                                                                                                                                                                                           EE states she slipped and fell on wet floor causininjury to her lt knee.
## 36737                                                                                                                                                     EE states she slipped and fell on wet floor injurying her rt knee. ***attorney richard harper*****828 586 3305
## 36738                                                                                                                                                           EE states she slipped and fell on wet floor which had been freshly mopped causing rt knee and hip injury
## 36739                                                                                                                                                                                             EE states she slipped and fell on wet floor while walking down a hall.
## 36740                                                                                                                                                                            EE states she slipped and fell on wet surface causing injury to her rt knee and buttock
## 36741                                                                                                                                                          EE states she slipped and fell over some clothing that was lying on the foor causing rt knee/ankle injury
## 36742                                                                                                                                                                           EE states she slipped and fell while coming out ofoffice injurying her back and buttock.
## 36743                                                                                                                                                                                                  EE states she slipped and fell while trying to chase a defendant.
## 36744                                                                                                                                                                                                           EE states she slipped and fell while walking down a ramp
## 36745                                                                                                                                                                          EE states she slipped and struck her rt shoulder on some bars while exiting the bathroom.
## 36746                                                                                                                                                                        EE states she slipped but caught herself before she fell causing injurying to her lt ankle.
## 36747                                                                                                                                                                                              EE states she slipped down some stairs and fell injuring her lt elbow
## 36748                                                                                                                                                                            EE states she slipped off some steps injuring her rt shoulder, arm, hand, hip, and leg.
## 36749                                                                                                                                                                    EE states she slipped on a wet floor and fell injurying her hip and hand. The roof was leaking.
## 36750                                                                                                                                                                                                                 EE states she slipped on a wet mat injuring lt hip
## 36751                                                                                                                                                                                                   EE states she slipped on sidewalk causing injury to her lt hand.
## 36752                                                                                                                                                            EE states she slipped on slick spot in lobby of law building injury rt ankle, hip, back, wrist and head
## 36753                                                                                                                                                                           EE states she slipped on some ice and twisted her ankle and fell injury back and rt knee
## 36754                                                                                                                                                                             EE states she slipped on some sand and gravel in the parking lot injuring her rt knee.
## 36755                                                                                                                                               EE states she slipped on some water that was on the floor causing injury to her neck/rt shoulder EE did not fall****
## 36756                                                                                                                                                                                               EE states she slipped on something on the edge of the steps and fell
## 36757                                                                                                                                                                                           EE states she slipped on the floor that had floor stripper appiled to it
## 36758                                                                                                               EE states she slipped on wet floor on the way to class-wet floor sign had been moved from doorway to side & was not visible from room EE was exiting
## 36759                                                                                                                                                                                                            EE states she slipped on wet floor twisting her lt knee
## 36760                                                                                                                                                                                                             EE states she slippped and fell injurying her rt knee.
## 36761                                                                                                                                                             EE states she smashed her fingers between therma trays when removing trays from machine to drying rack
## 36762                                                                                                                                                                                         EE states she sprained back while struggling with a patient. Lumbar sprain
## 36763                                                                                                                                                                                                       EE states she sprained her lt ankle during a training course
## 36764                                                                                                                                                                                                          EE states she sprained rt arm & back during crdt training
## 36765                                                                                                                                          EE states she squatted down to clean a bedside table & felt like her knee stuck then pushed herself back up & was hurting
## 36766                                                                                                                                                            EE states she started breathing treatment on client, turned to back machine up-hit rt elbow on machine.
## 36767                                                                                                                                           EE states she started feeling dizzy and while exiting the door to get some air she tripped and fell on some loose gravel
## 36768                                                                                                                                                                                             EE states she started feeling weak and dizzy due to the excessive heat
## 36769                                                                                    EE states she started toward two boys who were fighting and put arm between to separate, one boy lunged forward and her arm hyper-extended and she heard a pop. Right elbow. ()
## 36770                                                                                                                            EE states she step down off some steps when she heard a popping sound in her lt knee ********:::::::: denied claim:::::::::: **********
## 36771                                                                                                                                                                            EE states she step down on some step and turned the wrong way and twisted her rt ankle.
## 36772                                                                                                                                                                                              EE states she step off some steps when she felt a pop in her lt knee.
## 36773                                                                                                                                              EE states she stepped down off a van her rt foot was caught on some steps and bent backward causingher rt knee to pop
## 36774                                                                                                                                                                                 EE states she stepped down on a stool when she felt pain in lower back and lt leg.
## 36775                                                                                                                                       EE states she stepped downward off the last step in order to exit the stairway door and left foot and anke turned inward. ()
## 36776                                                                                                                                                                                                                            EE states she stepped in a bed of ants.
## 36777                                                                                                                                                                                 EE states she stepped in hole while walking from parking lot to her work building.
## 36778                                                                                                                                                                                         EE states she stepped into a hole injurying her back, shoulder, and elbows
## 36779                                                                                                                                                                                                           EE states she stepped into a hole injurying her ltankle.
## 36780                                                                                                                                                                                                     EE states she stepped off a sidewalek and twisted her rt ankle
## 36781                                                                                                                                                                                                 EE states she stepped off a sidewalk and fell twisting her rt foot
## 36782                                                                                                                                                                                                          EE states she stepped off a sidewalk injuring her lt knee
## 36783                                                                                                                                                                                                   EE states she stepped off an uneven pavement twisting her ankle.
## 36784                                                                                                                                                                                             EE states she stepped off bus and struck her rt knee on a wooden pole.
## 36785                                                                                                                                                                                                EE states she stepped off bus and struck her rt knee on some rocks.
## 36786                                                                                                                                                                                                 EE states she stepped off edge of cement and twisted her lt ankle.
## 36787                                                                                                                                                                                                      EE states she stepped off edge of sidewalk & lost balance. ()
## 36788                                                                                                                                                                                             EE states she stepped off some steps injurying herlt knee or lt ankle.
## 36789                                                                                                                                                                                            EE states she stepped off the curb of sidewalk and twisted her lt ankle
## 36790                                                                                                                                                                                   EE states she stepped on a crack in driveway of a hotel and twisted her rt foot.
## 36791                                                                                                                                                           EE states she stepped on a plastic carpet protector causing her to fall twisting her lt kneeand lt ankle
## 36792                                                                                                                                                                                                           EE states she stepped on a rock and twisted her lt ankle
## 36793                                                                                                                                                                  EE states she stepped on a rock and twisted her lt ankle causing her to lose her balance and fall
## 36794                                                                                                                                                             EE states she stepped on a rock while walking across railroad track and sprained her lt ankle and foot
## 36795                                                                                                                                                                                                 EE states she stepped on a slick spot and slid down in the hallway
## 36796                                                                                                                                               EE states she stepped on a wet mat and fell; she caught the door but scarred her rt knee-pulled her hip and rt side.
## 36797                                                                                                                                                                                                  EE states she stepped on her lt foot wrong causing pain in lt leg
## 36798                                                                                                                     EE states she stepped on object on office floor when she was walking to the copier---injured her rt ankle/foot/rt knee-strained muscles in leg
## 36799                                                                                                                                                                                                       EE states she stepped on the sidewalk and twisted her ankle.
## 36800                                                                                                                                                                                                     EE states she stepped onto a sidewalk and twisted his lt ankle
## 36801                                                                                                                                                                                                        EE states she stepped out of a van and twisted herlt ankle.
## 36802                                                                                                                                                                                          EE states she stepped out of his car into a hole and twisted his lt ankle
## 36803                                                                                                                                                    EE states she stepped out of office onto recently mopped floor and fell hitting back of head and back on floor.
## 36804                                                                                                                                                                                                         EE states she stepped over a brick and twisted hisrt knee.
## 36805                                                                                                                                                                                         EE states she stepped over the parking barrier and fell on her stomach, ()
## 36806                                                                                                                                                                                                                  EE states she stood up and twisted right knee. ()
## 36807                                                                                                                                                                                     EE states she stood up at the nurses'station and heard a pop in her left ankle
## 36808                                                                                                                                                               EE states she stood up from a chair after working with computer when she felt pain in her lower back
## 36809                                                                                                                                                EE states she stooped to open a lower file drawer in 5 drawer file cabinet and pulled or hurt something in her back
## 36810                                                                                                                                                                                                 EE states she strain her back while shifting bookson library shelf
## 36811                                                                                                                                                                                           EE states she strain her rt wrist/thumb area while trying to open a door
## 36812                                                                                                                                                                                                  EE states she strained her lt shoulder while pulling a steel door
## 36813                                                                                                                                                                                      EE states she struck a matching starting a fire causing a burn to her lt hand
## 36814                                                                                                                                                                                                                      EE states she struck her forehead on a shelf.
## 36815                                                                                                                                                                                                                           EE states she struck her hand on a nail.
## 36816                                                                                                                                                                                                            EE states she struck her head against the bus doorframe
## 36817                                                                                                                                                                                                                   EE states she struck her head on a desk cabinet.
## 36818                                                                                                                                                                                                               EE states she struck her knee on the corner of desk.
## 36819                                                                                                                                                                                                                       EE states she struck her leg against a table
## 36820                                                                                                                                                                                                                 EE states she struck her lt knee on a metal table.
## 36821                                                                                                                                                                                                                   EE states she struck her lt knee on a table leg.
## 36822                                                                                                                                                                     EE states she struck her lt thumb on door lock causing a metal piece to pierce the fingernail.
## 36823                                                                                                                                                          EE states she struck her rt 3rd finger on the backof a wheelchair. A metal object lodged into the finger.
## 36824                                                                                                                                                                                                             EE states she struck her rt foot against a wheelchair.
## 36825                                                                                                                                                                                                                       EE states she struck her rt hand on a locker
## 36826                                                                                                                                                                                                           EE states she struck her rt hand on the corner of a desk
## 36827                                                                                                                                                                                                            EE states she struck her rt hand ring finger on a rifle
## 36828                                                                                                                                                                                                   EE states she struck her rt knee and leg on the bumper of a car.
## 36829                                                                                                                                                                                                        EE states she struck her rt knee on the metal partof a desk
## 36830                                                                                                                                                                                                                   EE states she struck her rt thumb against a desk
## 36831                                                                                                                                                                                                    EE states she stuck her finger by a needle after drawing blood.
## 36832                                                                                                                                                                                             EE states she stuck her head on a door while tryinto open a trap door.
## 36833                                                                                                                                                   EE states she stuck her left hand with a needle she had used to give insulin to a diabetic hiv positive patient.
## 36834                                                                                                                                                               EE states she suffers from carpal tunnel syndrome which is alleged to be caused by repetitive motion
## 36835                                                                                                                                                   EE states she think she hit her knee on the unit, it began to hurt after she left work and got into her vehicle.
## 36836                                                                                             EE states she tried to move a table top which was blocking the door to a supply cabinet. She lost control of the heavy table and it slammed against her right foot. ()
## 36837                                                                                                                                                                                  EE states she tripped and fell in a parking lot with gravel injuring her lt knee.
## 36838                                                                                                                                                                                                              EE states she tripped and fell injurying her rt elbow
## 36839                                                                                                                                                                                            EE states she tripped and fell on a rubber mat and twisted her rt ankle
## 36840                                                                                                                                                                                                          EE states she tripped and fell on floor striking lt knee.
## 36841                                                                                                                                                                                                                           EE states she tripped and fell on rt hip
## 36842                                                                                                                                                                         EE states she tripped and fell on the sidewalk of cafeteria drive twisting her right hand.
## 36843                                                                                                                                                                          EE states she tripped on some juice on the floor causing injury to chin, tooth, and knee.
## 36844                                                                                                                                     EE states she tripped over a drainage grate while crossing over bridge to legislative building causing rt knee and foot injury
## 36845                                                                                                                                                                           EE states she tripped over a plastic file box causing injury to her rt wrist and lt knee
## 36846                                                                                                                                                                         EE states she tripped over a vacuum cleaner cord and fell hitting chest and knee on floor.
## 36847                                                                                                                                           EE states she tripped over an underbrush and hit her rt knee on a log and also was exposed to some blood from an inmate.
## 36848                                                                                                                                                                                                                        EE states she tripped over chain in kitchen
## 36849                                                                                                                                                                                                EE states she tripped over curb while walking to her work building.
## 36850                                                                                                                                                                                           EE states she tripped over her feet as she turned to leave students door
## 36851                                                                                                                                                                                                      EE states she tripped over make-up case and sprained rt ankle
## 36852                                                                                                                                                                      EE states she tripped over some tree roots causinginjury to her rt shoulder, hand, and knees.
## 36853                                                                                                                                                                                         EE states she tripped over the telephone lines that was lying in the floor
## 36854                                                                                                                                                                               EE states she turned and injured her rt ankle while pulling a nail from a barn wall.
## 36855                                                                                                                                     EE states she turned her left ankle outward while walking from her desk to the restroom on 2nd floor south in revenue building
## 36856                                                                                                                                                                             EE states she turned in her chair to pull out deskdrawer and felt sharpe pain in back.
## 36857                                                                                                                                                     EE states she turned quickly at her desk and struck her lt hand on the desk. Also, complains of low back pain.
## 36858                                                          EE states she twisted her ankle as she was stepping onto a sidewalk. She fell on her left hip. She then got up & continued to her destination. Later, her ankle was swelling and getting more painful. ()
## 36859                                                                                                                                                                EE states she twisted her ankle walking on gravel when she was entering the building to start work.
## 36860                                                                                                                                                                                                                 EE states she twisted her back while lifting wood.
## 36861                                                                                                                                                 EE states she twisted her lt ankle while trying tochase a client who was trying to run away from the program area.
## 36862                                                                                                                                                                                                              EE states she twisted her lt knee causing her to fall
## 36863                                                                                                                                                                                                   EE states she twisted her rt ankle while stepping off some steps
## 36864                                                                                                                                                                                                                   EE states she twisted her rt ankle while walking
## 36865                                                                                                                      EE states she used the restroom after an inmate had used it and when she sat down on the commode seat some of urine had been left on the seat
## 36866                                                                                                                    EE states she wa passing out the beverages in segregtion. An inmate grabbed her right arm and pulled it in the food door attempting to break it
## 36867                                                                                                                               EE states she walked into the sergeant's office and the floor was wet while being cleaned. She states she slipped and fell to floor.
## 36868                                                                                                                                                                             EE states she walking across floor to workstation and slipped and fell hurting rt leg.
## 36869                                                  EE states she was a inmate up in the bed after changing hinm and trying to reposition him with both arms under his houlder and pulling down sheet when she felt a pull in her lt shoulder and lower right back ()
## 36870                                                                                                                                EE states she was about to sit down in a chair when the chair slipped from underneath her she statedthe chair hit her in lower back
## 36871                                                                                                    EE states she was asked to get needed material for charge nurse. Stepped out the room and fell into indian style position to floor didn't see water, no sign ()
## 36872                                                                                                                                                                    EE states she was assaulted by an inmate in her classroom--inmate grabbed EE arms and lt breast
## 36873                                                                                                                                                                                                  EE states she was assaulted by an inmate injuring rt arm/shoulder
## 36874                                                                                                                                                                                         EE states she was assaulted by an inmate--inmate choked her with his hands
## 36875                                                                                                                                        EE states she was assisiting by placing patient inpic hold. EE states she woke up the next morning with pain in lower back.
## 36876                                                                                                             EE states she was assisiting the dentist while thedentist was using an explorer to remove from a tooth and her finger was in close proximiy to the too
## 36877                                                                                                                 EE states she was assisting a female student in removing items from a room when the student becameupset and threw a shoe at EE striking her rt eye
## 36878                                                                                                                                                                                            EE states she was assisting client off the floor and heard her knee pop
## 36879                                                                                                                                                                 EE states she was assisting in a code 1000 and gotblood on her arm from an inmate. (shelia perdue)
## 36880                                                                                                                                           EE states she was assisting separating two students from fighting and must have twisted her left knee in the process. ()
## 36881                                                                                                                                                                   EE states she was assisting staff with a combativepatient and the patient kicked her in the knee
## 36882                                                                                                               EE states she was assisting to restrain an inmate from assauiting a staff member and the inmate stomped her big toe on the rt foot and kicked her rt
## 36883                                                                                                                                                                EE states she was assisting w/changing aggressive & combative patient & injured her back & shoulder
## 36884                                                                                                                                                                                              EE states she was assisting with an inmate when she injured her back.
## 36885                                                                                                                               EE states she was assisting with an inmate who had been sprayed with pepper spray and slipped on the wet shower floor while assiting
## 36886                                                                                                                                                                EE states she was assisting with placing a pt in a pic hold when the patient kicked EE in the back.
## 36887                                                                                                                                                             EE states she was assisting with staff to place combative patient in nci hold and fell injurying knee.
## 36888     EE states she was assiting moving a patient from the bed to a wheelchair and patients leg gave way and he began to fall and she was helping him back to his bed when the patient fell back on her rt arm with all his wieight and she felt something pull down
## 36889                                                                                                    EE states she was at ice maker when she turned around to exit the rm, took about 3 steps & slipped and on wet spot on floor injuring rt knee, hip & shoulder ()
## 36890                                                                                                                      EE states she was at table in office and she was in the process of getting up, chair slid out from under her causing her to fall on the floor
## 36891                                                                                                                                         EE states she was attached by patient, while place patient in nci hold, patient dropped to floor pulling down on employee.
## 36892                                                                                                                                         EE states she was attack by a student who pushed her into a desk causing injuring to lt and middle fingers on the lt hand.
## 36893                                                                                                                                                                                                     EE states she was attacked by a client causing an upper rt rib
## 36894                                                                                                                                                                                                                            EE states she was attacked by a client.
## 36895                                                                                                                                                                                                                            EE states she was attacked by a patient
## 36896                                                                                                                                                                                                                            EE states she was attacked by an inmate
## 36897                                                                                                                                                                      EE states she was attempted to reposition a patient when she felt a pull in her lower back ()
## 36898                                                                                                                                                      EE states she was attempting to assit patient withadl's--pt became agressive and struck cna on the lt temple.
## 36899                                                                                                                    EE states she was attempting to get inmate to secure in his cell she gave he pepper spray and inmateswung and hit her in the chin with his fist
## 36900                                                                                                                        EE states she was attempting to reach a box that was on top shelf and was climbing on the bottom shelf. She fell on her back and shoulders.
## 36901                                                                                                                                           EE states she was attempting to restrain a child in daycare when the child bit her many times on the arms and shoulders.
## 36902                       EE states she was attempting to roll forward in desk chair when the wheel of the chair suddenly locked and the chair stopped moving. Body continued to move forward causing her to suffer a hard fall out of the chair and onto the floor ()
## 36903                                                                                                                                                             EE states she was attempting to separate two patients that were fighting and injuring her lt shoulder.
## 36904                                                                                                                                          EE states she was attempting to separate two residents when one resident struck her on the backof the neck with his fist.
## 36905                                                                                                                                     EE states she was attempting to subdue physically aggressive patient who was attacking the rn-- injurying her lt eye and knee.
## 36906                                                                                                                          EE states she was bending down to put up an item, her foot slipped out from under her and her knee "slipped out of place"--rt knee sprain
## 36907                                                                                                                                                                             EE states she was bending over to pick up 3 trays and felt pain in lower back and hip.
## 36908                                                                                                                               EE states she was bent down to pick up food from the floor and felt pain in lower back. She was working in warewash area of kitchen.
## 36909                                                                                                                                                                                                              EE states she was bitten by a dog on the lt and rtleg
## 36910                                                                                                                                                                                                            EE states she was bitten by a patient on the lt forearm
## 36911                                                                                                                                                                                                             EE states she was bitten by a spider on the lt forearm
## 36912                                                                                                                                                                                                       EE states she was bitten by a spider on the rt side of neck.
## 36913                                                                                                                                                                                                               EE states she was bitten on the lt leg by a student.
## 36914                                                                                                                                                                                                                  EE states she was bitten on the rt leg by a tick.
## 36915                                                                                                                                                                                                              EE states she was bitten on the rt wrist by a spider.
## 36916                                                                                                                                                                                                             EE states she was breaking down boxes & hurt her back.
## 36917                                                                                                                                       EE states she was called by the nurse to help flush the patients urine. While flushing the urine it splashed in her face. ()
## 36918                                                                                                                                                                            EE states she was carrying trash out and wind blew door against her causing her to fall
## 36919                                                                                                                                                                     EE states she was catching trays in warewash area and trays bunched up and bent her thumb back
## 36920                                                                                                                                                                               EE states she was caught between door and doorway injurying her back and chest area.
## 36921                                                                                                                                                  EE states she was changing client's clothes, he yelled out, dropped both legs on her wrist, bendingher wrist back
## 36922                                                                                                                                     EE states she was changing empty oxegen tanks when her hand got caught between bottom of full tank and top of another tank. ()
## 36923                                                                                                                                                                                    EE states she was changing mop water and spilled disinfectant on right foot. ()
## 36924                                                                                                         EE states she was charting and stood up and began walking near a cabinet and a portion of the cabinet was projected outward and she hit her right knee. ()
## 36925                                                                                                                                                                                           EE states she was charting and stuck a pencil in the palm of her rt hand
## 36926                                                                                                                                                               EE states she was checking size of foley catheter from inmate and liquid splashed onto face and eyes
## 36927                                                                                                                                EE states she was checking the cooler, to see if the meats were storage correctly and her little finger got caught between two pans
## 36928                                                                                                                   EE states she was chening a client, client moved and her shoulder popped. EE was seen in er, she rtw on 5-1-09, 4-30-09 was her regular day off.
## 36929                                                                                EE states she was cleaning between the coffee table & sofa when she kicked metal sofa leg injuring rt 3rd toe. EE also states leg on chair set back to where they cannot be seen ()
## 36930                                                                                                                                EE states she was cleaning poplar hall rc office- picked up an old typewriter off the floor to move to storage, straining her back.
## 36931                                                                                                                                                                       EE states she was cleaning room, tripped over a chair leg and caught herself with right hand
## 36932                                                                                                                                                                                EE states she was cleaning shelves in a closet when she felt a sting to her lt arm.
## 36933                                                                                                     EE states she was cleaning up after the dentist and while cleaning the instruments she did not see one of them sticking out and it poked her in the finger. ()
## 36934                                                                                                                                                                                                      EE states she was closing closet door and caught hand in door
## 36935                                                                                                                                          EE states she was closing door to cabinet & started to turn around at smae time. Corner of door hit on left side of face.
## 36936                                                                                                                                                                               EE states she was closing the door to the office when the door shut on her rt finger
## 36937                                                                                                                                 EE states she was collecting med filing. EE stooped to pull filing from basket and felt severe sharp pain when raising back up. ()
## 36938                                                                                                                                                                  EE states she was coming out of patients room and fell in hallway. Something wet on the floor. ()
## 36939                                                                                                                             EE states she was coming to work entering her bldg when she fell on the pavement injuring both knees, rt elbow and twisted her back ()
## 36940         EE states she was coming to work, forgot her access badge & couldn't enter rev bldg from halifax mall entrance; had to walk around bldg to wilmington st entrance. EE turned to walk around to front of bldg & took 2-3 steps, she turned ankle & fell. ()
## 36941                                                                                                                                                                                    EE states she was conducting count she rasied up and hit head on cabinet corner
## 36942                                                                                                                                  EE states she was conducting the eis strike tent when she began to stumble and fell on her left side on rocks behind segregation.
## 36943                                                                                                                                                                                                 EE states she was cooking when she burned her rt forearm on steam.
## 36944                                                                                                                                EE states she was crossing street and stepped on uneven pavement crack which caused her lt ankle to turn out laterally to the left.
## 36945                                                                                                                                                                                        EE states she was crushed in the slider, hurt face, head, shoulder, and leg
## 36946                                                                        EE states she was de-escalating client when client became frustrated and threw a tray and furniture at employee, hitting, kicking and causing (l) shoulder, elbow and (l) knee injuries. ()
## 36947                                                                                                                                                                            EE states she was defending herself from being assaulted causing injury to the rt hand.
## 36948                                                                                                                                 EE states she was delivering books to library when she fell on rain soaked steps she put out lt-hand to catch herself as she fell.
## 36949                                                                                                                                EE states she was departing from work. She was walking to plug in the golf cart & tripped & rell on uneven part of the sidewalk. ()
## 36950                                                                                                                                              EE states she was directing traffic at football game when a vehicle struck her left arm when she signaled him to stop
## 36951                                                                                                                                         EE states she was disassembling the road work signs some fiberglass from the sign got into the third finger of her rt hand
## 36952                                                                                                                                                              EE states she was dismantling picture frame & broken glass touched top of middle finger & broke skin.
## 36953                                                                                                                                                             EE states she was doing a locker search, back locked up and she fell hitting head on cement block wall
## 36954                                                                                                             EE states she was doing a routine locker search of an inmates locker when an inmate became bellgeaand hit her repeatedly on her head, face, arms, back
## 36955                                                                                                                                                                EE states she was doing disciplinary hearing, when inmate became aggitated and hit her in the mouth
## 36956                                                                                                                 EE states she was doing home visits on adult offe-nders & was proceeding through an intersection w/ green light & another car hit her w/red light.
## 36957                                                                                                                                                                                          EE states she was doing take- downs in unarmed selfdenfense training case
## 36958                                                                                                                     EE states she was drawing blood from an inmate with a butterfly needle and she turned loose of the needle and it flipped back and stuck finger
## 36959                                                                                                                      EE states she was drawing blood in b area and was putting butterfly needle in the sharps box and it flipped back up and stuck rt index finger
## 36960                                                                                                                                EE states she was driving van and thought she had released the er brakes- pulling and looking down &ran nto the back of a mail van.
## 36961                                                                                                                                            EE states she was engaged in outdoor activities w/ client, playing racket ball and strained muscle in neck and shoulder
## 36962                                                                                 EE states she was entering 234 med room and was holding on to the bottom half of the door when the upper half of the door was shut. It caught the 4th finger on the right hand. ()
## 36963                                                                                                                                       EE states she was entering Ms. Dugan's office, wasclosing the door, and closed it on left hand, injurring left index finger.
## 36964                                                                                                                EE states she was entering buildgin and the auto- matic door was not on and when pulled the door open, she felt a pull under the back of shoulder b
## 36965                                                                                                                       EE states she was entering the ??? Building of thelibrary and was observing visitaion and while walking by the rockball table she hit a rod.
## 36966                                                                                                                          EE states she was escorting a patient to the quietroom, patient reaches across and scratched her under her nose and kicked her left ankle
## 36967                                                                                                             EE states she was escorting inmate to shower inmate stepped into shower she attempted to uncuff the inmate when he slipped and aganist shower door. ..
## 36968                                                                                                                                    EE states she was escorting patients from one bldgto another & slipped & fell when going down step, hit her back on stair rail.
## 36969                                                                                    EE states she was exiting the bldg during a fire drill, stepped off the stepa at the door of the rm b-101 and fell to the ground injuring rt knee, leg, ankle, arms & wrists ()
## 36970                                                                                                               EE states she was exiting the contrl ctr, when she reached the floor, it was covered with strip- per removal, plastic, & sheet, she slipped and fell
## 36971                                                                                                                                                                                    EE states she was experiencing severe pain in wrists that radiated to her hands
## 36972                                                                                                                                                                                                      EE states she was exposed to TB from a defendant on probation
## 36973                                                                                                                                                                                                                                   EE states she was exposed to TB.
## 36974                                                                                                                             EE states she was exposed to cold tempetures whileperforming job duties. EE states after coming intobldg several times to warm fingers
## 36975                                                                                                                                                                                                                          EE states she was exposed to pepper spray
## 36976                                                                                                                                                                                EE states she was exposed to pepper spray causing headaches and high blood pressure
## 36977                                                                                                                                                                                                               EE states she was exposed to pink eye while at work.
## 36978                                                                                                                                                                                  EE states she was exposed to some chemical which has caused respiratory problems.
## 36979                                                                                                                                                                      EE states she was exposed to tuberculosis by probationer who tested postive for tuberculosis.
## 36980                                                                                                                                                                                                        EE states she was filing and experienced a severe headache.
## 36981                                                                                                                   EE states she was filing, she went to answer phoneand slipped on wet floor and her left foot went under a cabinet that the control unit sits on.
## 36982                                                                                                                EE states she was gettin ga box down from a shlef in closet when the box started to fall and she reached out to catch it when the box hit her finge
## 36983                                                                                                                                                                      EE states she was getting a pump on the rack and a filter box fell down and hit her rt eye ()
## 36984                                                                                                                                         EE states she was getting an inmate's blood pressure during a code blue and the inmate grabbed her lt hand and squeezed it
## 36985                                                                                                                                                                   EE states she was getting into a state van when her left foot slipped and fell on her right knee
## 36986                                                                                                                    EE states she was getting out of chair, the chair rolled and she caught herself before she fell. She injured her lt knee. **dahr tanoury.. Ag**
## 36987                                                                                                                                                                                                    EE states she was getting out of the car and twisted her ankle.
## 36988                                                                                                                                                                 EE states she was getting out of the van when she stepped in a hole and twisted her left ankle. ()
## 36989                                                                                                                EE states she was getting ready to bathe client turned shower water on started to walk out of shower, slipped on mat, hurt rt leg, hit head on flr.
## 36990                                                                                                                                           EE states she was getting some gloves to chang someone and slipped in some air freshner. And hit the top of her foot. ()
## 36991                                                                                                              EE states she was getting to some boxes of clothesand that when she moved the table, it started to fall against her leg. She bent over and caught it.
## 36992                                                                                                                                                              EE states she was going down stairs and stepped wrong and causing her to fall. Injured lt ankle hand.
## 36993                                                                                                                                                                         EE states she was going down stairs to lower h unit and she hit her rt elbow on the slider
## 36994                                                                                                                                                                                           EE states she was going down the stairs and slippefalling down the steps
## 36995                                                                                                                                                                       EE states she was going into records building, fell going up the stairs landed on both hands
## 36996                                                                                                                                                                                  EE states she was going through decontamination of pepper spray. Injury to lungs.
## 36997                                                                                                                                                    EE states she was going through the first sallyport and the other officer close the door which hit her left arm
## 36998                                                                                                                            EE states she was going to the clark's office to pick uo copy of client's defferred agreement she lost balance and fell down four steps
## 36999                                                                                                                                                 EE states she was handling poulty racks and someone else hit another rack, causing the rack to hit her on the hand
## 37000                                                                                                                                                                                                                                EE states she was having chest pain
## 37001                                                                                                                                                                                     EE states she was having tingling sensation in thumb due ti repetitive motion.
## 37002                                                                                                                     EE states she was helping a person she car pool w/-- w/ some bags when she lost her balance on the steps & fell backwards landing on her back.
## 37003                                                                                                              EE states she was helping an inmate move the dock board from the food truck and the inmate drop his side of the dock board and the board fell on foot
## 37004                                                                                                                                                                                                        EE states she was hit by an inmate on her lt shoulder area.
## 37005                                                                                                                                                                           EE states she was hit by inmate in face for no apparent reason while giving out medicine
## 37006                                                                                                                                                                                                          EE states she was hit in the ribs by two separate clients
## 37007                                                                                                                                                                                                     EE states she was hit on the left shoulder by the slider door.
## 37008                                                                                                                                                                                                           EE states she was hit while keeping two residents apart.
## 37009      EE states she was holding a medication cup in her right hand and offering med's to the patient through the food passage door when the patient grabbed her hand and pulled it thrught the food passage door. Forcing her arm against the frame of the door. ()
## 37010                                                                                                                                                EE states she was in bathroom when she slipped in water from toilet leak causing her to slide forward with one leg.
## 37011                                                                                                                EE states she was in nci class and was put in head lock when she turned her head inward to get out, she felt a snap in her neck. Her neck popped ()
## 37012                                                                            EE states she was in resident bedroom helping her change her soiled diaper and as she was waling around her w/c she slipped on urine that had leaked from her. Falling onto my knee. ()
## 37013                                                                                   EE states she was in revenue cafeteria when someone bumped into her & stepped on front of her right shoe causing her to fall, injuring her right hip and right pinkie finger. ()
## 37014                                                                                                                 EE states she was in route to a mental health appointment when she approached the unit upstairs the slider begain closing arm were impacted in doo
## 37015                                                                                                                                                                    EE states she was in route to medication window turned around corner and slammed face into wall
## 37016                                                   EE states she was in sitting position giving pts transfer report via telephone to rn when the wooden board that covers the electric wires poped out of the wall and dropped & struck on both her knees & legs ()
## 37017                                                                                                                                                                      EE states she was injured while trying to restraina student--EE was headbutted by the student
## 37018                                                                                                                                                          EE states she was injured while trying to restraina student--the student scratched her on her lt hand/arm
## 37019                                                                                                                                              EE states she was inspecting the top of wall locker and wanting to take a magazine down and cutting her little finger
## 37020                                                                                                                                                         EE states she was inspecting vehicle entering and exiting, stepped wrong placing too much weight on r foot
## 37021                                                                                                                EE states she was instrcting an unarmed self defense class and was doing the top hand take down and as she went down she pulled and twisted her arm
## 37022                                                                                                                                                EE states she was inventoring supplies. Boxes of detergent fell on her & she twisted and jerked to try & avoid them
## 37023                                                                                                                                EE states she was inventorying books an when removing them from the shelf and scanning the bar code she her a pop in rt shoulder ()
## 37024                                                                                                                                                          EE states she was involved in a motor vehicle accident when another vehicle struck the car from the rear.
## 37025                                                                                                                                                           EE states she was involved in a motor vehicle accident while driving the state vehicle causing back pain
## 37026                                                                                                                                                                EE states she was involved in a motor vehicle accident while transporting an inmate to court house.
## 37027                                                                                                                                       EE states she was involved in a motor vehicle accident---the car hydroplane on water causing EE to hit a truck from the rear
## 37028                                                                                                                                                                                            EE states she was involved in a motor vehicle accident--EE is preganant
## 37029                                                                                                                                                                      EE states she was involved in a motor vehicle accident--head on collison with another vehicle
## 37030                                                                                                                          EE states she was involved in role play during training with another officer, when other officer stood up and table fell over right foot.
## 37031                                                                                                                                                                                EE states she was itching severly and being biten, it only occurred during am hours
## 37032                                                                                                                                                                                                       EE states she was kicked by a client on the lt side of neck.
## 37033                                                                                                                                                                                                EE states she was kicked by pt while escorting them to another room
## 37034                                                                                                                                                          EE states she was kicked in the rt knee by client and also her hair was pulled causing injury to herneck.
## 37035                                                                                                                          EE states she was leaving a client's home by the back door after dark when she misjudged the steps and stumbled, twisting her right knee.
## 37036                                                                                                                    EE states she was leaving administrative building when she slipped on the top step, falling hitting her knees, legs, wrist, and right shoulder.
## 37037                                                                                                                                                                     EE states she was leaving copier room and her finger got caught and it was slammed in the door
## 37038                                                                                                                                     EE states she was leaving group home going back toclass. She tripped over a piece of concrete on sidewalk causing her to fall.
## 37039                                                                                                                                               EE states she was leaving office when inmate hit her on right side of head and right elbow with door to storage room
## 37040                                                                      EE states she was leaving painting class (an independent course she takes outside of work) when she slipped and fell injuring both rt/lft knee due to lights in building being turend out. ()
## 37041                                                                                                                                   EE states she was leaving the dci rooma nd slippedon wet floor in front of id office; fell on rt side. Injurinf foot, leg, hand.
## 37042                                                                                                             EE states she was leaving the facility and holdingthe door open for other staff to exist and she fell over the ashtray scraping her elbow and b lt leg
## 37043                                                                                                                                               EE states she was leaving the home of probationer and stepped into hole due to uneven pavement and twisted her ankle
## 37044                                                                                                                   EE states she was lifting boxes of chairs to unpack when one got caught on another box and she pulled it to get it loose straining chest muscles
## 37045                                                                                                                                                                EE states she was lifting food trays fron hand truuck and felt pain in upper arm near her shoulder.
## 37046                                                                                                                                                                                   EE states she was lifting inmate from a fall, with assistance and strained back.
## 37047                                                                                                                                                                                       EE states she was lifting item off a shelf when she felt pain in lower back.
## 37048                                                                                                                                                              EE states she was lifting patient from wheelchair onto her walker, patient lost balance, fell onto EE
## 37049                                                                                                                                                                                         EE states she was lifting patient to bathe & dressee injured left shoulder
## 37050                                                                                                  EE states she was lifting patients personal property on to a cart from shelves. Bags were heavy and pulled a muscle in my lower back and inflammation of disc. ()
## 37051                                                                                                                                                                                   EE states she was lifting soiled laundry to put in the bin and strained her back
## 37052                                                                                                                                                         EE states she was locking door when the door slammed back on her. EE caught door with her hand & feltpain.
## 37053                                                                                                                                                          EE states she was looking for reagent on the chemical supply shelves and developed a respirator inalation
## 37054                                                                                                               EE states she was looking out window of vending truck into mirror trying to get an eyelash out of eye when foot slipped off stop down catching wrist
## 37055                                                                                                                         EE states she was making home visits. She was stop-ped, attempting to make a left turn, a truck came up behind her and hit her in the rear
## 37056                                                                                                                                                                                                                 EE states she was mopping and felt pain in rt hand
## 37057                                                                                                                               EE states she was moving a cow to a different group, lifted the gate and it fell onto her left foot, due to broken hinge on gate. ()
## 37058                                    EE states she was observing the inmates via camera when one of the inmates broke away from custody, jumped over, the nurses station, EE says her chair rolled away whgen she was getting away and slipped into the cabinents ()
## 37059                                                                                                                                                    EE states she was on her way back to the kitchen office when she slipped on red top kitchen floor and fell down
## 37060                                                                                                                                                                                 EE states she was on her way to work sitting at syop light car hit her from behind
## 37061                                                                                                                      EE states she was on sidewalk coming from ruffin hall when she stepped up on sidewalk & grass lost balance & felt sharp pain in left foot. ()
## 37062                                                                                                                                                                                                           EE states she was on the firing range firing the shotgun
## 37063                                                                                                                                                                        EE states she was on unit floor spraying acid air freshner and the spray got in her eye. ()
## 37064                                                                                                                                                                                    EE states she was opening a firedoor and the door came back and hit EE on head.
## 37065                                                                                                                                                                     EE states she was opening gate for vehicle when the gate stabilizer slammed on her right thumb
## 37066                                                                                                                                             EE states she was opening inmate mail and came in contact w/ a vial which contained a yellow liquid which was leaking.
## 37067                                                                                                                        EE states she was opening lock on dorm supply closet when she thought someone was coming up be hind her. Lock fell and hit her on the head.
## 37068                                                                                                                                    EE states she was opening the folding table to fold laundry and her rt index finger got caught in table causing a blood blister
## 37069                                                                                                                                                 EE states she was operating a floor machine, tryingto maneuver it around a corner when she twisted her lower back.
## 37070                                                                                                                    EE states she was operating a state owned van whena car pulled out on the intersection and the van was unable to avoid a collsion, striking car
## 37071                                                                                                                                                                                   EE states she was operating lettuce chopping machine her rt forefinger hit blade
## 37072                                                                                                             EE states she was operating recycle plastic at recyle centers and went to step up on truck lift and left foot slipped causing leg to strike truck edge
## 37073                                                                                                                                   EE states she was out on road squad in the woods watching inmates as assigned when she came into contact with red bugs/chiggers.
## 37074                                                                                                                                                                                  EE states she was outside on break when she was bitten multiply times by a bee ()
## 37075                                                                                                                                                               EE states she was participating in basic training and was injured by the shotgun recoil **atty rep**
## 37076                                                                                                             EE states she was passing medications when the phone rang when she turned to answer the phone her foot caught in the step stool and caused her to fall
## 37077                                                                                                                                                      EE states she was passing out medications in seg unit and she was splashed in the face with an unknown liquid
## 37078                                                                                            EE states she was passing out meds and was about to get supplies for a dressing change when she fell. EE states she can't remember if leg gave way or rember falling ()
## 37079                                                                                                                                                   EE states she was passing through b/t food cart and the wall and hit her upper thigh hip on the frap door handle
## 37080                                                                                                                                                               EE states she was patroling k&l blocks of dorm 4 &breathed in fumes from various cleaners and paint.
## 37081                                                                                                                                                                       EE states she was performing count in b-dorm and as she was coming down stairs, ankle popped
## 37082                                                                                                                                                                  EE states she was picking up a box off the floor when her rt wrist struck the corner of her desk.
## 37083                                                                                                                                                                                              EE states she was picking up a mixing bowl and felt her rt hand pull.
## 37084                                                                                                                                                                      EE states she was placing files in the file cabinet when the side of the file cut her finger.
## 37085                                                                                                                             EE states she was preparing cleaning supplies for patients am cleaning and chemical splashed into eeeyes. She was not wearing goggles.
## 37086                                                                                                                                                                            EE states she was preparing food for the district cabinet and cut her finger on a blade
## 37087                                                                                                   EE states she was preparing for meeting when she turned in opposite direction lost footing & fell injuring lft elbow, lft knee, rt knee, rt hip & rt shoulder ()
## 37088                                                                                                               EE states she was preparing to clean operatory & was stuck through her glove and into the palm of her rt. Hand below the little finger, dirty scaler
## 37089                                                                                                                                       EE states she was preparing to fire a 12 gauge shotgun. She fired the weapon, it kicked back veryhard on her right shoulder.
## 37090                                                                                                                                                           EE states she was preping milk on trayline, pickedup crate of milk and felt sharp pain in her upper back
## 37091                                                                                                                                                                         EE states she was pulling a barrel of powder soap off shelf when it dropped on her lt foot
## 37092                                                                                                                                                               EE states she was pulling a check from the bottom drawer of a file cabinet and puller her lower back
## 37093                                                                                                                                           EE states she was pulling charts to file paperwork when she pulled the chart out with one hand and twisted her wrist. ()
## 37094                                                                                                                         EE states she was pulling coffe pot on a cart fromthe dining room to the admin. Building conf. Rm. Handle came off cart and pot fell over.
## 37095                                                                                                                                                                                                  EE states she was punctured by a needle when the syringe slipped.
## 37096                                                                                                                                                                                 EE states she was pushed against a wall by an inmate injurying her chest/back area
## 37097                                                                                                                                                               EE states she was pushing a cart loaded with 30lbsboxes of bar. B. Q one box fell and hit left hand.
## 37098                                                                     EE states she was pushing a medical records cart when some of the charts fell of the cart and when she stopped to pick up the charts she turned and came down on left ankle and it twisted. ()
## 37099                                                                                                                                              EE states she was putting a bag of dirty clothes inside the clothes house when she felt something pull of her rt arm.
## 37100                                                                                                                 EE states she was putting a client in her chair. The client started to go into a ? And EE's hand struck clients chair--bruised and cut on lft hand
## 37101                                                                                                                                                       EE states she was putting a jug of water on top of file cabinet and when she reached up she slipped and fell
## 37102                                                                                                                                                                               EE states she was putting charts on shelf when she felt something pop in lt shoulder
## 37103                                                                                                                                                        EE states she was putting client to bed and her finger was caught under the client bending her finger back.
## 37104                                                                                                                                         EE states she was putting client to bed when she pulled on the bedrails & thumb got yanked back while pulling the rails up
## 37105                                                                                                                                                   EE states she was putting expired lab tubes in biohazard container and received a needlestick to the right thumb
## 37106                                                                                                                   EE states she was putting jugs in a container for storage. When I went to push container back broke my left thumb nail back behind the quick. ()
## 37107                                                                                                                                                          EE states she was putting silverware in drawer and thumb hit foot processer blade--laceration of rt thumb
## 37108                                                                                                                                                                                  EE states she was qualifying with shotgun the shotgun slipped off her rt shoulder
## 37109                                                                                                                                EE states she was re-entering building and she slipped on the wet floor causing her hand to become lodged in the hinge of the door.
## 37110                                                                                                                 EE states she was reaching for a paper towel on a cabient behind her desk she rolled her chair toward cabinet and while reaching chair tipped over
## 37111                                                                                                                EE states she was reaching for a spray bottle on top of the shelf which contains terminator solution. Bottle fell down and chemical fell in eyes ()
## 37112                                                                                                                         EE states she was reaching for the coffee pot it was stuck and coffee from filter area had water in it and it spilled on her right hand ()
## 37113                                                                                                                                                                                                  EE states she was reared end in a car accident by another vehicle
## 37114                                                                                                                                                                                 EE states she was recaping an insulin syringe and got needle stick in palm of hand
## 37115                                                                                                                                     EE states she was redirect an agitated client fromleaving the area. Client fell backwards hitting eeright knee with her helmet
## 37116                                                                                                                                              EE states she was refilling the cleaning solution bottle, and accidently sprayed the chemical solution into her r eye
## 37117                                                                                                                           EE states she was relieving the first shift offcier and during the process she reached for the mini 14 shotgun her finger got a splinter
## 37118                                                                                                                                                                          EE states she was removing a heplock from a patient when blood splashed in her lt eye. ..
## 37119                                                                                                                                                             EE states she was removing a leg rest from a wheelchair and her middle finger was mashed on the lever.
## 37120                                                                                                                                               EE states she was removing some staples out of a staple remover and staple remover slipped and remover cut EE thumb.
## 37121                                                                                                                            EE states she was responding to a medical emergency on the 6th floor and while running she came downand turned her foot and it gave way
## 37122                                                                                                                EE states she was returning for picking up police reports--exiting her car--walking into bldg lost balance--could not regain it-fell on paved drive
## 37123                                                                         EE states she was returning from lunch & walking across lawson st from parking deck when she lost her footing and slipped on the sidewalk causing injury rt forearm, hand and left knee ()
## 37124                                                                                                                   EE states she was returning office to normal conditions following hurricane--moving equipment and supplies when she experienced severe back pain
## 37125                                                                                                                               EE states she was returning to th control area of the gatehouse when an unknown insect stung her on the left side of her upper neck.
## 37126                                                                                                                                                                      EE states she was riding the elevator to the 2nd floor when it dropped and jarred her back ()
## 37127                                                                                                                                                                                       EE states she was rolling patient during rounds afterwards she had back pain
## 37128                                                                                                                                                                                              EE states she was runnig after patient and fell hurting knee and leg.
## 37129                                                                                                                                                                                  EE states she was running to assist with a code and fell on the concrete sidewalk
## 37130                                                                                                                                                                          EE states she was running to prevent a pt from attacking another pt and twisted her knee.
## 37131                                         EE states she was screening fuel in several dump trucks parked in a row on southbound side of us1 in franklin county, nc. Roadside was covered with grass & weeds & was muddy due to rain. (see additional notes below) ()
## 37132                                                                                                                                                                  EE states she was scrubbing shower on v ward-- with broom, when her feet slid out from under her.
## 37133                                                                                                                                                   EE states she was searching contraband she cut herright thumb on a razor blade that was hidden in a battery pack
## 37134                                                                                                           EE states she was sitting at her desk and trying to roll her chair closer to computer & accidentially ran over her left big toes at the joint per EE. ()
## 37135                                                                                                                                                           EE states she was sitting down and leaned against the wall and hit her head on the corner of a metal box
## 37136                                                                                                            EE states she was sitting in her chair which has rollers on the bottom. The chair slipped out from under her resulting in her falling to the tile floor
## 37137                                                                                                                                 EE states she was sitting on the left side of state vehicle in the last seat, vehicle hit a pot hole and her neck started hurting.
## 37138                                                                                                                                                                                                  EE states she was sprayed with window washing fluid in both eyes.
## 37139                                                                                                                                                                                                  EE states she was stabbed by a pt with an ink pen on the rt knee.
## 37140                                                     EE states she was standing at copier on 2nd floor near workstation 2410 making copies as requested from after 8:30 am until 2:30 pm on 01/07/11 and again 03/10/11 from 9:30 am until 12:30 pm. (see below) ()
## 37141                                                                                                                                         EE states she was standing beside the mail van when a ladder fell and hit her in the back of her head on the left side. ()
## 37142                                                                                                                                                              EE states she was standing in front of stall when stall door fell striking her on her l lower forearm
## 37143                                                                                                                                       EE states she was standing on the back porch of the kitchen when inmate opened the back door striking her lt elbow with door
## 37144                                                                                                                    EE states she was standing on the edge of bed to clean dust off curtains and when she was stepping down her foot tangled and fell hitting chair
## 37145                                                                                                                            EE states she was stepping down steps and her rt foot slipped catching herself on the rails and all of her weight landed on her lt side
## 37146                                                                                                                                                                                                        EE states she was stepping off of porch & twisted her ankle
## 37147                                                                                                                                                                 EE states she was stepping out of door to her office when her lt foot slipped causing her to fall.
## 37148                                                                                                                                                                                     EE states she was stoped at a stoplight and was rear ended by another vehcile.
## 37149                                                                                                                          EE states she was storing supplies that had been used @ meeting as she plact lt. Leg on top of box lt leg fell & hit 2nd step of stage ()
## 37150                                                                                                                     EE states she was struck by a door she was holdingopen as she was pushing a cart thru the doorway EE filed for fml benefits beginning 6-11-08.
## 37151                                                                                                                                                                                                 EE states she was struck by a rock while observinga softball team.
## 37152                                                                                                                                                                                   EE states she was struck by an inmate in the stomach and on the back of the head
## 37153                                                                                                                                                                                                     EE states she was struck in the back of the head by a student.
## 37154                                                                                                                                                                                                            EE states she was struck in the chest area by a client.
## 37155                                                                                                                                                                                                        EE states she was struck in the chest area by a door handle
## 37156                                                                                                                                                                                           EE states she was struck in the face by client causing glasses to break.
## 37157                                                                                                                                                                                               EE states she was struck in the face with a wire hanger by a student
## 37158                                                                                                                                                                                               EE states she was struck in the head with a rock thrown by an inmate
## 37159                                                                                                                                                                                                                 EE states she was struck in the rt eye by a client
## 37160                                                                                                                                                                                                              EE states she was struck on the head by a basketball.
## 37161                                                                                                                                                                                                                      EE states she was struck on the head by a pt.
## 37162                                                                                                                                                                                         EE states she was strucked and kicked by a pt. Injuring her lt and rt arm.
## 37163                                                                                                                                                                       EE states she was stuck by a needle while removinglabel from barrel to put on inmate record.
## 37164                                                                                                                                                                                  EE states she was stuck in the face by an inmate injuring her face and cheek area
## 37165                                                                                                                                                                                                       EE states she was stuck in the palm of rt hand with a needle
## 37166                                                                                                                                                                                                                   EE states she was stung by a bee on her rt hand.
## 37167                                                                                                                                                                                                                     EE states she was stung by a bee on the lt arm
## 37168                                                                                                                                                                                                               EE states she was stung by a bee on the lt upper leg
## 37169                                                                                                                                                                                                                   EE states she was stung by a bee under the chin.
## 37170                                                                                                                                                                     EE states she was stung on the lt ring finger by a bee. *****do not pay any medical bills*****
## 37171                                                                                                                                                                                                            EE states she was stung or bitten by an unknown insect.
## 37172                                                                                                                      EE states she was supervising a group of patients and was talking with a patient who was upset. Pt turned & hit EE on the lt temporal region.
## 37173                                                                                                                  EE states she was supervising an inmate changing alight bulb when one of the light fell from the ceiling and some of the debris went into her eye
## 37174                                                                                                                                    EE states she was supervising cooler cleanup pulling out cheese inmate lost his footing loose balance and she hit a steel table
## 37175                                                                                                                         EE states she was supervising inmates cleaning thestreets when she bent down to pick up a piece of paper & felt a sharp pain in lower back
## 37176                                                                                                                                                 EE states she was supervising road work crew, inmates on hwy 64 west and was bitten by and insect on lower rt leg.
## 37177                                                                                                                    EE states she was supervisor inmates who were waxing the floor. EE moved toward another officer who had fallen on the waxed floor, fell herself
## 37178                                                                                                                                          EE states she was taking a basketball away from a student when she hit her lt forearm on metal bleaches in the gymnasium.
## 37179                                                                                                             EE states she was taking a box of supplies from one room to another the box started to fall and to prevent it from falling she supported box aganist h
## 37180                                                                                                                                EE states she was taking a vial of some blood from spinner the vial had broken while spinning and the blood came out on her lt hand
## 37181                                                                                                                                                    EE states she was taking inmates to work and slipped and fell going down walk way ramp. Injured kneeleg, ankle.
## 37182                                                                                                                                                            EE states she was taking linen out of a barrell when she felt a pulling feeling in her right upper arm.
## 37183                                                                                                                                               EE states she was taking trash out when willie hunt ran over to her and knocked her down and ran over her right foot
## 37184                                                                                                                     EE states she was taking verbation court proceedings, overextending arm to write on stenograph mach ine for long hours w/ little or no breaks.
## 37185                                                                                                                                      EE states she was talking on the phone when her foot slipped from under her causing her to fall causing injury to her lt knee
## 37186                                                                                                                     EE states she was talking to a staff memeber. As she started to walk away and turned to staff member and tripped on edge of sidewalk and fell.
## 37187                                                                                                                              EE states she was talking to patient and another patient came up to her and hit her on the side of her face and bent her finger back.
## 37188                                                                                                                                                                     EE states she was tapping a patient hep c when she removed the tube it splashed in her eye. ()
## 37189                                                                                                                                                          EE states she was throwing trash bag in dumpster--alleged she twisted wrong. ---injurying her lower back.
## 37190                                                                                                                EE states she was transporting a client to lunch client hit another client, EE intervening between the two clients, rt elbow hit metal part of cart
## 37191                                                                                                                                                             EE states she was transporting client to table when the motorized chair rolled over her left small toe
## 37192                                                                                                              EE states she was transporting offender who said tested positive for TB EE stated she checked with the medical staff who confirmed a positive reading
## 37193                                                                                                               EE states she was trying to get item from client- client ran--client stopped in an attempt to run away-client shoved EE into corner of fire alarm bx
## 37194                                                                                                                                                                 EE states she was trying to get patient to sit down and the patient jerked away and hurt EE's arm.
## 37195                                                                                                                                                          EE states she was trying to open trap door on the tower when her finger wrapped around the rope and latch
## 37196                                                                                                                                                     EE states she was trying to prevent client from falling and felt pain in her back and abdomen. EE is pregnant.
## 37197                                                                                                                                                               EE states she was trying to prevent pt from following her out the door when door slammed on her foot
## 37198                                                                                                                                                                               EE states she was turning a patient when she felt a sharp pain in her right hand. ()
## 37199                                                                                                             EE states she was turning on a light in classroom #8 and that her llittle finger on her right hand hit the corner of the light switch cover causing ..
## 37200                                                                                                                EE states she was turning patient to clean up. Patient was on his lft side and while cleaning shook chuck loose and hit left ring finger on bed. ()
## 37201                                                                                                                  EE states she was turning to lock that was partially jammed and held it with both hands and the finger jammed against the door (lt little finger)
## 37202                                                                                                                                                                                  EE states she was unloading a truck when the hydrolic lift struck her rt leg/knee
## 37203                                                                                                                                                             EE states she was unlocking fence to get back thru the gate and the lever on the gate mashed her thumb
## 37204                                                                                                                         EE states she was using a cup to pour water from the fountain into the trash can due to the smoke coming from trash can. EE inhaled smoke.
## 37205                                                                                                                                                  EE states she was using a knife to remove staplersfrom a folder when the knife slipped and cut her on the finger.
## 37206                                                                                                                                                                          EE states she was using cleaner powder to clean bathroom and later had rain on left neck.
## 37207                                                                                                                                                              EE states she was using draw sheet to reposition patient in bed when she felt sharp pain in her back.
## 37208                            EE states she was using the addressograph maching and turned to bend down to the right to place form into the shred crate, EE states she hit the top front of her head on the corner of the aed machine that is attached to the wall ()
## 37209                                                                                                                                                                   EE states she was vacuuming in construction area. She began sneezing and breaking out with rash.
## 37210                                                                                                                                                                                  EE states she was verbally redirecting patient and patient struck EE in the head.
## 37211                                                                                                                                                     EE states she was waiting for a key from another EE when a client threw a toy clock and struck EE on the head.
## 37212                                                                                                                                                                    EE states she was walkign from one bldg to another and stepped on a rocka nd twisted her ankle.
## 37213                                                                                                                                                      EE states she was walking & tripped over a limb onthe sidewalk, fell on the ground, resulting in wrist injury
## 37214                                                                                                                                                    EE states she was walking across the facility parking lot when she lost her footing on icy spot on the pavement
## 37215                                                                                                                              EE states she was walking across the floor, slippeand fell. EE states there was some peach juice on the floor and EE is 6mos pregnant
## 37216                                                                                                                EE states she was walking across the yard in the snow when she stepped into a snow covered drain pipe injuring her lt ankle, arm, shoulder, and hip
## 37217                                                                                                                                                           EE states she was walking and slipped on floor falling on her right knee and hitting her head on doorway
## 37218                                                                                                                               EE states she was walking and tripped on uneven public pavement after returning to work after taking a state car to thrifty muffler.
## 37219                                                                                                                                                                                                        EE states she was walking and tripped on uneven sidewalk ()
## 37220                                                                                                                                                                    EE states she was walking around her desk to answer the phone and hit desk leg with her foot ()
## 37221                                                                                                                                     EE states she was walking behind the kitchen from operations when she stepped into a crack on the sidewalk and turned lt foot.
## 37222                                                                                                                              EE states she was walking behind the serving line when she got her foot humg in an electrical cord and tripped and fellon her lt foot
## 37223                                                                                                                 EE states she was walking between dorms when she stopped and turned quickly, sudden movement caused her lt knee to snap and pain began immediatley
## 37224                                                                                                                                                                    EE states she was walking between two chairs in close proximity of one another and strained leg
## 37225                                                                                                                                     EE states she was walking client from dining room -- client has trouble walking and the client pulled on EE's lt arm/shoulder.
## 37226                                                                                                              EE states she was walking down a sidewalk when herfoot turned causing her to lose her balance. She receives scapes on her lt arm, rt hand, lt hip/kne
## 37227                                                                                                                                                                EE states she was walking down a/block hallway while fan was on. Something flew into her right eye.
## 37228                                                                                                                  EE states she was walking down back steps of bldg & because her shoes where wet, she slipped & while not falling twister her ankle holding on. ()
## 37229                                                                                                                                      EE states she was walking down front hallway located on the 2nd floor of bldg & slipped on a slick waxy area of the floor. ()
## 37230                                                                                                                                        EE states she was walking down hall and heard loud noises, then assisted with agiated patient and hit her hand on hand rail
## 37231                                                                                                                                                                                               EE states she was walking down hallway and slipped in water on floor
## 37232                                                                                                                                                      EE states she was walking down hallway and slippedon liquid in the floor. Arms and legs itching fromchemicals
## 37233                                                                                                                                                                                                EE states she was walking down hallway when she twisted her rt knee
## 37234                                                                                                                                                                                           EE states she was walking down set of stairs and was ran in by an inmate
## 37235                                                                                                                                                                                EE states she was walking down stairs on segregat-ion when she twisted her lt knee.
## 37236                                                                                                                                          EE states she was walking down steps carrying three reams of copy paper she felt something pull in her lower abdomen area
## 37237                                                                                                                                      EE states she was walking down steps to basement to get information for a report & felt sharp pain in lower back & right leg.
## 37238                                                                                                                                        EE states she was walking down the hill on lawson st to gym & shoe got caught in the crack of cement injuring left ankle ()
## 37239                                                                                                                                                                         EE states she was walking down the stairs and she turned her right ankle on the third step
## 37240                                                                                                                                                                                                    EE states she was walking down the stairs and twisted her ankle
## 37241                                                                                                                                   EE states she was walking down the stairs, when her feet slipped, tried to catch self by hanging on the rail, hit bottom of step
## 37242                                                                                                       EE states she was walking down the stairwell of a wing 2nd floor and she fell. She alleges she injured her right wrist and upper and lower back rightside ()
## 37243                                                                                                                                                                                 EE states she was walking downstairs in parking lot and injured ankle/foot on step
## 37244                                                                                                                                     EE states she was walking from asb to resse bldg. Her heel got caught in sidewalk expansion joint and tripped, twisting ankle.
## 37245                                                                                                               EE states she was walking from her car in the parking lot and stepped onto the sidewalk and feet slipped due to the ice and she fell on the sidewalk
## 37246                                                                                                                                   EE states she was walking from sgt's office to admin office slipped on a patch of ice and landed on her rt hand -fractured wrist
## 37247                                                                                                                          EE states she was walking from the parking lot up an inclined sidewalk to other side of bulding tripped on side of sidewalk, fell forward
## 37248                                                                                                                                         EE states she was walking from unit 2 to 3 on medication rounds, she stepped on broken pavement and turned her left ankle.
## 37249                                                                                                                                     EE states she was walking in front of the center and her foot slipped of edge of sidewalk, EE fell on her back onto the ground
## 37250                                                                                                                                                                                     EE states she was walking in her office and the ceiling light fell on her head
## 37251                                                                                                                                                                 EE states she was walking in parking lot at work when her heels got caught and she fell forward ()
## 37252                                                                                                                 EE states she was walking inmates on hwy 221 s at mayss mgf when she stepped onto some loose asphalton the side of road & twisted her right ankle.
## 37253                                                                                                                            EE states she was walking into the nursing station as she was opening the door and was hit on the left side of her face by the door. ()
## 37254                                                                                                                            EE states she was walking on pavement of roadway from parking of roadway from parking lot enroute to medical building tripped over curb
## 37255                                                                                                                          EE states she was walking on sidewalk & when she started down steps, she missed a step injuring rt foot, rt knee, neck and shoulder area.
## 37256                                                                                          EE states she was walking on sidewalk from car to building - slipped on ice - fell on right side. (r) hip (r)hand and (r) knee were affected. Broken skin on (r) hand. ()
## 37257                                                                                                                                                EE states she was walking on the sidewalk to building when she slipped and fell on ice injuringher rt hand and knee
## 37258                                                                                                                                                                                          EE states she was walking out of nursing office and patient attacked her.
## 37259                                                                                                                                                                                     EE states she was walking steps and missed step, causing her to trip and fall.
## 37260                                                                                                                                 EE states she was walking thorugh the kitchen and caught her foot on the wheel of a cart full of glasses which caused her to fall.
## 37261                                                                                                                        EE states she was walking through EE parking lot to enter the building when dhe stepped up from parking lot and fell on sidewalk due to ice
## 37262                                                    EE states she was walking through the day room on 4400 unit from the bathroom when water was left on the floor her left leg went back and rt let went forward and she received sharp pain in her lower back. ()
## 37263                                                                                                                              EE states she was walking thru the drive gate and the officer at tower #1 started closing the gate before EE had cleared the 2nd gate
## 37264                                                                                                                                    EE states she was walking to coordinators office when she stepped on uneven sidewalk causing her toturn her right ankle & fall.
## 37265                                                                                                                                    EE states she was walking to enter through the dock and took a misstep and fell in the grass hitting rt forearm on concerete ()
## 37266                                                                                                                                                             EE states she was walking to her car through the grass area and stepped in a hole causing her to fall.
## 37267                                                                                                                                                                         EE states she was walking to lunch to her car and tripped on a rock in the parking lot. ()
## 37268                                                                                                                                                                 EE states she was walking to restroom when she slipped and fell on a wet spot injuring her lt knee
## 37269                                                                                                                    EE states she was walking to take patients records to menta health and when she went though urgent care doors the doors closed on her rt arm ()
## 37270                                                                                                                                                                         EE states she was walking to the kitchen to get napkins and slipped in some urine on floor
## 37271                                                                                                                     EE states she was walking to the water fountain w/ a cup in her hand when her feet hit a slick spot on the floor and she fell on her hip & arm
## 37272                                                                                                                  EE states she was walking to vehicle to get a dollie she had used for training when she stepped in a pot hole causing her to twist ankle and fall
## 37273                                                                                                                                                                                    EE states she was walking toward stairwell to ofc & slipped & fell on wet floor
## 37274                                                                                                                           EE states she was walking toward the door when she got her foot caught on the door matt and fell hitting her head against the door frame
## 37275                                                   EE states she was walking towards a patient's room when she slipped and fell on the wet floor as she turned to walk in the other direction and landed on her right side twisting her right leg, knee and hip. ()
## 37276                                                                                            EE states she was walking towards the inmates cell from nurses station. When she ran into the sink water fountain that sits out from the side of the nurses station. ()
## 37277                                                                                                                                                 EE states she was walking up steps & her foot did not come completely up to next step so she went down on lt knee.
## 37278                                                                                                                                             EE states she was walking up the hall and slipped onthe wet floor she states she twisted the lt side of her lower body
## 37279                                                                                                                                                                       EE states she was walking when she lost her balance and fell injurying her lt ankle and rib.
## 37280                                                                                                                           EE states she was washing a resident bed when the bed railing fell down & struck her finger, cuttingthe finger and had a small fracture.
## 37281                                       EE states she was washing out a glass container that holds her pens when container slipped off wet counter and fell into the sind and shattered. EE states the glass that shattered popped onto her middle finger rt hand ()
## 37282                                                                                                                       EE states she was working at computer desk. Got upto answer knock at door, foot was tangled in keyboard cord, causing her to fall face first
## 37283                                                                                                                      EE states she was working at her desk when hvac system forcefully blew air from ceiling vent and particles/debris were blown into her eye. ()
## 37284                                                                                                                                                                                 EE states she was working directly with a patient that has a rash and EE has rash.
## 37285                                                                                                                                     EE states she was working the 6th floor and after going down the stairs numerous time, she felt a cramp in her lower lt thigh.
## 37286                                                                                                                                EE states she was working with a resident, when hepulled EE leg up, felt pinch or pain in back, felt like she was going to pass out
## 37287                                                                                                                                                                             EE states she went into the nurses station to answer the phone and slipped and fell ()
## 37288                                                                                                                                                                         EE states she went to cap needle and the needle went through glove into rt index finger ()
## 37289                                                                                                                                   EE states she went to unlock door and turned around and walked into couch causing her body to jerk forward felt pain lower back.
## 37290                                                                                                                                   EE states she while walking to her car she steppedoff a sidewalk and her foot slipped on the ice causing her to injured her back
## 37291                                                                                                                                                           EE states she woke up and had a small insect bite on her right inner thigh and got bigger later that day
## 37292                                                                                                                                  EE states she ws assisting in carrying hostile patient out of treatment mall and patient jerked away causing injury to EE's back.
## 37293                                                                                                                                                                                   EE states shifting gears in golfcart caused strainto right arm, wrist and finger
## 37294                                                                                                                                                                                             EE states since working in building and quality contributes to allergy
## 37295                                                                                                                                         EE states sitting at desk taking order off chart stood up to reach for another chart chair w/ wheels rolled from under EE.
## 37296                                                                                                                                            EE states sitting in chair so EE could tie shoes; chair broke; EE fell to the floor hurting neck, back and left leg. ()
## 37297                                                                                                            EE states sitting in office, moved chair, wheels didn't move, chair overturned, EE fell forward ontoknees, previously damaged from accident & surgeries
## 37298                                                                                                                                                    EE states sitting with peer in day area, patient snatched glasses off. Noted painful area on side of right eye.
## 37299                                                                                                                                                                                 EE states skid on floor, left foot on way to er where Dr. Xiong was seeing patient
## 37300                                                                                                                                                                                                 EE states slammed hand in door of state vehicle on way to the shop
## 37301                                                                                                                                                                                                         EE states slipped and fell due to urine being on the floor
## 37302                                                                                                                                  EE states slipped and fell in hallway where the floor was wet and had been cleaned. There was no sign posted regarding wet floor.
## 37303                                                                                                                                                                EE states slipped and fell on ice in the driveway of building causing injury to his lt arm and back
## 37304                                                                                                                                                                                                         EE states slipped and fell, mud on sidewalk after flooding
## 37305                                                                                                                                                                                         EE states slipped in dishroom, cut arm on metal food catcher and hit head.
## 37306                                                                                                                                                                                                                        EE states slipped on newly waxed tile floor
## 37307                                                                                                                                                                          EE states slipped on water when she went to answerphone, twisted her ankle, did not fall.
## 37308                                                                                                                                                                                     EE states slipped while mopping water from around the shower. Injured lt knee.
## 37309                                                                                                                                                                                                     EE states smashed hand while installing dual wheels on tractor
## 37310                                                                                                                                                       EE states soiled linen bag came into contact with arm when EE pulled it out of the out of the linen barrell.
## 37311                                                                                                                                                                                                          EE states some bug spray was sprayed in her face and eyes
## 37312                                                                                                                                                                                           EE states some chemical fell off shelf and splash into her eyes and face
## 37313                                                                                                                                                                                                                      EE states some chemical splashed into his eye
## 37314                                                                                                                                                                                                                       EE states some clorox splashed into her eyes
## 37315                                                                                                                                                                         EE states some cobweb got on his face and when he wiped it away his rt eye started to hurt
## 37316                                                                                                                                                                                                                          EE states some debri flew into his rt eye
## 37317                                                                                                                                                                                                                         EE states some debrid got into his rt eye.
## 37318                                                                                                                                                                                        EE states some debris got into his lt eye while working with trailer tires.
## 37319                                                                                                                                                                                  EE states some flying debris from lawn mover got in his lt eye causing irritating
## 37320                                                                                                                    EE states some hot coffee accidentally spilled on her causing her to jumped up from the chair when the chair slipped and threw EE on the floor.
## 37321                                                                                                                                                                                    EE states some oven cleaner fell off shelf sprayedinto her eyes and facial area
## 37322                                                                                                                                                                                                                   EE states some pepper spray got into his lt eye.
## 37323                                                                                                                                                                                       EE states some pine oil cleaner fell off a cart and splashed into his rt eye
## 37324                                                                                                                                                                                                                   EE states some pine sol splashed into her rt eye
## 37325                                                                                                                                                                  EE states some saw dust got into his eye while using a cutter--EE was wearing protective eye gear
## 37326                                                                                                                                                                       EE states some tables stacked on the edge of a cart fell striking him behind his lt leg/knee
## 37327                                                                                                                                                                                                       EE states some trash from washing machine got intohis lt eye
## 37328                                                                                                                                                                                                                  EE states some unknown object got into his lt eye
## 37329                                                                                                                                                                                                                 EE states some unknown object struck her lt finger
## 37330                                                                                                                                                                                                                   EE states some unknown object went into his eye.
## 37331                                                                                                                                                                                                                 EE states some unknown object went onto his rt eye
## 37332                                                                                                                                                                                                       EE states some unknown rash appeared on his stomach and arms
## 37333                                                                                                                                                                                                      EE states some water containing chemical went intohis rt eye.
## 37334                                                                                                                                                                   EE states somehow while restraining patient duringa seizure he jammed his lt thumb on the gurney
## 37335                                                                                                                                                     EE states someone stepped on lt foot causing EE to turn foot over to side-sprained lt ankle and broken lt foot
## 37336                                                                                                                                                                           EE states something bit her while at the (treatment) mall, now has a small white bump ()
## 37337                                                                                                                                    EE states something came thru air vents directly and both eyes started to burn, itch and water after they had worked on th air.
## 37338                                                                                                                                                                                                                           EE states something flew into her lt eye
## 37339                                                                                                                                                                                                                            EE states something got into his rt eye
## 37340                                                                                                                                                   EE states sprained or pinched nerve in rt wrist during defensive training tactics did not feel pain until 3/5/04
## 37341                                                                                                                                                                               EE states staff pushed a food cart into EE while she was in the hallway locking door
## 37342                                                                                                                                                                          EE states staff was attempting to redirect patientwhen the patient bit staff on left hand
## 37343                                                                                                                                      EE states staff was hit by client several times & staff blocked punches & held client to keep him from hitting EE or himself.
## 37344                                                                                                                                                                                                EE states staff was running to overhear page, turned foot wrong way
## 37345                                                                                                                                    EE states staff was trying to get patient into bathroom to take a bath and patient started to fall and pulling away from staff.
## 37346                                                                                                                    EE states stairway bar gate got hung and would notopen. EE tried to open it and his right thumb was caught between the gate. Cut to right thumb
## 37347                                                                                                                                                 EE states standing in front of desk on the phone, went to turn and walk around the desk, r shoe was stuck to floor
## 37348                                                                                                                                                                                                            EE states standing in the weeds supervising the inmates
## 37349                                                                                                                         EE states started to enter the south wing after slider had started to open, as he did the slider closed catching his rt hand in the slider
## 37350                                                                                                               EE states states when she turned the corner - her foot slipped on the sawdust that was on the floor and her leg went one way and she went the other.
## 37351                                                                                                                                                                                            EE states stepped down on edge of sidewalk and fell on ground to knees.
## 37352                                                                                                                                                                              EE states stepped in hole in the ground while carrying storm window and twisted ankel
## 37353                                                                                                                                                                                         EE states stepped into pothole while taking a patient to the unc hospital.
## 37354                                                                                                                                                                                                  EE states stepped on a door stop causing injury tohis rt foot/toe
## 37355                                                                                                                                                                                                                  EE states stepped on foot wrong coming down steps
## 37356                                                                                                                                                                                                          EE states stepped out of own vehicle and twisted rt ankle
## 37357                                                                                                                                                        EE states stepped up in van; as EE was raising her head; bumped head on entrance of van; neck bent down. ()
## 37358                                                                                                                                                          EE states stood from desk chair made a turn at corner of desk body turned but lt foot & knee did not turn
## 37359                                                                                                                                                                                                        EE states strained back while shoveling mulch around campus
## 37360                                                                                                                                                                                                         EE states strained muscle in back while pulling food carts
## 37361                                                                                                                                                                                                                       EE states stress caused by problems at work.
## 37362                                                                                                                            EE states stress from constant harassment in work place has caused injuries and EE needs time to recover. ***denied claim 11/13/06*****
## 37363                                                                                                                       EE states struck right side of mouth with soil auger as she pulled it out of entangeled grass. Noproblem at time. Tooth fell out 3 wks later
## 37364                                                                                                                                                                                                         EE states stuck left index finger while starting iv access
## 37365                                                                                                                           EE states student became combative hitting in van biting, kicking, and scratching EE left shoulder, rt knee, have muscle spasms in back.
## 37366                                                                                                                                                                                                          EE states student got angry and pushed table on EE's legs
## 37367                                                                                                                                                                                                                            EE states student hit him in the lt eye
## 37368                                                                                                                                                                              EE states student out of control and trying to stop him from escaping, pulled muscles
## 37369                                                                                                                   EE states student ran out of the bathroom swinginga broom and breaking ceiling lights and EE injuredthumb trying to gain control of the student.
## 37370                                                                                                                                                                                                                   EE states student ran up and yelled in EE's ear.
## 37371                                                                                                                        EE states student was coming out of quiet rm, when staff stepped student from doing so the student hit staf in the chin, throat, and chest.
## 37372                                                                                                                                                                EE states student was knocking head on EE's knee and punching staff after breaking away from staff.
## 37373                                                                                                                                                                      EE states student was out of control and trying to stop him from escaping and hurt arm, wrist
## 37374                                                                                                                                                              EE states students become aggressive staff by aggressive staff. Restraining until assistance arrived.
## 37375                                                                                                                EE states students thrust rod from dresser drawer track onto EE head, shoulders, and back as EE attempted to restrain him and ensure safety, hit kn
## 37376                                                                                                                                                                        EE states students was upset, walked up to EE, hit her in the rt arm, across face and eyes.
## 37377                                                                                                                    EE states students were cleaning room, sprayed squirts of spray in the door way of juv, wet dog odor and EE felt like she was going to pass out
## 37378                                                                                                                    EE states students were out of control. While trying to restrain an out of control student after an outburst staff injured rt hand and fingers.
## 37379                                                                                                                                                                                          EE states suddenly began itching. Rash on chest, arms, legs and waist. ()
## 37380                                                                                                                                                                                                                                   EE states suffered asthma attack
## 37381                                                                                                                                                                                           EE states supervising inmates she began to feel nervous and light headed
## 37382                                                                                                                                                                EE states sweeping floor, lt shoulder started giving pain - cervical disc disease-probable flare-up
## 37383                                                                                                                                 EE states taking resident vs and resident attacked her pulling hair and scratched right arm. Resident pull her in bed with her. ()
## 37384                                                                                                                                                             EE states tat when he was exiting institution door, door closed swiftly & got his right middle finger.
## 37385                                                                                                                                                                                   EE states tendonitis from using computer. Thumb, forefinger. Numb in both hands.
## 37386                                                                                                              EE states tha she was reaching for the control panel and the chair flipped out from under her causing the chair and EE to fall to the floor on lt arm
## 37387                                                                                                                               EE states tha while she was carrying drinks and food in preparation of EE appreciation function her back began to spasm causing pain
## 37388                                                                                                                                                     EE states thaat she went to give ban book to staff& turned & misstepped on van steps, fell twisting left ankle
## 37389                                                                                                                    EE states thar she has begun to experience pain stiffness and numbness in the elbow arm fingers of her lt arm utilizes the computer extensively
## 37390                                                                                                                                                               EE states thas she was cleaning lab tops and picked up scaple with books.... Cut to left ring finger
## 37391                                                                                                                                              EE states that 2 inmates were fighting and the third came & hit him w/ large tray as he was attempting to stop fight.
## 37392                                                                                                                                                     EE states that 2 inmates were fighting, pushed against officer and fell back against med cavinet hitting head.
## 37393                                                                                                                                                               EE states that 3/4 wks ago pain in lt hand went upinside of elbow. Can't grip anything. Fingers numb
## 37394                                                                                                                                                                                     EE states that 7/7 while gathering cones around campus he injured his back. ()
## 37395                                                                                                             EE states that @ 9:20 pm. He heard a loud banging on g-block dayroom door & noticed I/m hitting the window w/ fire extinguisher, I/m was given the. ..
## 37396                                                                                                                                                                                                                     EE states that a bee stung her on the rt thigh
## 37397                                                                                                                                                                                                 EE states that a bee stung him in his rt ear while he was mowning.
## 37398                                                                                                                                                                                                                       EE states that a bee stung him on the lt arm
## 37399                                                                                                                EE states that a bolt in the chair leg that he wassitting on broke causing it to collapse he states that he did not fall in the floor the chair hit
## 37400                                                                                                                        EE states that a bottle of betadine was dropped and cleaned up with clorox. Fumes caused choking EE left medical and went out for fresh air
## 37401                                                                                                                                                               EE states that a bottle of beteadine fell and broke, cleaned up with clorox and fumes caused choking
## 37402                                                                                                                                                                                  EE states that a bug bit him on the rt arm and back causing an allergic reaction.
## 37403                                                                                                                                                                                   EE states that a car backed into the right side of his car and injured his neck.
## 37404                                                                                                                                                                                                                       EE states that a cell door stuck her lt arm.
## 37405                                                                                                                                                                                   EE states that a chair slipped and caused her to fall injurying her back and hip
## 37406                                                                                                                                                                                        EE states that a chair slipped from under him causing injury to lower back.
## 37407                                                                                                                                                                                    EE states that a client was holding and squeezing her lt arm which caused pain.
## 37408                                                                                                                                                                                                                            EE states that a dog bit him on the leg
## 37409                                                                                                                                                                                                  EE states that a door struck her on the abdomen. She is pregnant.
## 37410                                                                                                                                     EE states that a empty casing landed down the collar of her shirt, causing burns after she had finishing firing the mini rifle
## 37411                                                                                                                                  EE states that a female ran a red light and ran into the passenger side of his car causing the steering wheel to injury his hand.
## 37412                                                                                                                                                                                        EE states that a file cabinet fell and injuried his lt leg, wrist, and foot
## 37413                                                                                                                                                  EE states that a fire extinguisher fell from the wall and release harmful chemicals causing respiratory disorder.
## 37414                                                                                                                                                                                                                 EE states that a fish feeder injuried his rt foot.
## 37415                                                                                                                                                            EE states that a five gallon paint bucket struck his rt wrist as he attempted to catch it from falling.
## 37416                                                                                                                                              EE states that a floor tile slipped out from underher foot causing her to fall on her butt hitting against a heater..
## 37417                                                                                                                                                                                                           EE states that a hositle inmate him her on her left leg.
## 37418                                                                                                                                                           EE states that a hot metal piece flew out of the porthole when he was checking melt with a rod of steel.
## 37419                                                                                                                                                            EE states that a incident that took place on 08-24-01 caused EE to have anxiety attacks and depression.
## 37420                                                                                                                           EE states that a man pushed table on finger. Building stage for graduation and another employee slammed finger between stage decking. ()
## 37421                                                                                                                                                                                                EE states that a particle from air conditioner went into his lt eye
## 37422                                                                                                                      EE states that a patient threw a large roll of toliet tissue and the edge of the core hit EE's right leg, almost knocking legs out from them.
## 37423                                                                                                                                                                     EE states that a potato cutter fell from the top of a shelf and hit her on the top of the head
## 37424                                                                                                                                       EE states that a pt became phy aggressive w/writerpt jumped at writer after incident writer noticed pain in rt ankle to knee
## 37425                                                                                                                                 EE states that a pt was being combative towards staff, placed pt in restraints with help, which during this EE finger was injured.
## 37426                                                                                                                                                                                                                    EE states that a resident bit her on the lt jaw
## 37427                                                                                                                                                       EE states that a resident shoved the door open hitting the mop solution causing it to splash intohis rt. Eye
## 37428                                                                                                                      EE states that a sign was being carried on a framewhen the sign came unstrapped and fell off the frame striking EE knocking him to the floor.
## 37429                                                                                                                                                                                                               EE states that a staple on a box struck her rt thumb
## 37430                                                                                                                            EE states that a student exposed himself 3x to the teacher. EE did not know how to handle the situation. Stress caused EE to leave job.
## 37431                                                                                                                                                               EE states that a student grabbed and twisted rt arm causing intense and continuing pain in shoulder.
## 37432                                                                                                                                                                                      EE states that a student struck her with a milk crate on the rt side of head.
## 37433                                                                                                                                     EE states that a substance, thought to be urine, was thrown on her by an inmate & that she had an open wound on her left hand.
## 37434                                                                                                                                                                                                              EE states that a tree branch struck him in the rt eye
## 37435                                                                                                                                                                  EE states that after 20 yrs of service, he has recently noticed tingling in his hand while typing
## 37436                                                                                                                 EE states that after being relieved from the east control, she was attempting to secure the cage doorand caught her lt hand in ? They were sliding
## 37437                                                                                                                                                                    EE states that after completing pert 2 mile run he began to feel dizzy and went out for a while
## 37438                                                                                                                                                                                             EE states that after getting the vee vaccine, had symptoms, went to er
## 37439                                                                                                                             EE states that after he left his vehicle and was going toward admin. Building the wind gushed down the road blowing sand and into eyes
## 37440                                                                                                                                           EE states that after killing a snake with a shovelwhere inmates were to work he came in contact w/ venom on his left arm
## 37441                                                                                                                            EE states that after leaving work she felt sharp pains in her back which she believes come from lifting residents in and out of bathtub
## 37442                                                                                                                                                                               EE states that after moving furniture all day lower back started hurting that night.
## 37443                                                                                                                       EE states that after opening tool door to take outthe bolt cutters she bent down to pick them up andthe hammer fell and hit her in the head.
## 37444                                                                                                            EE states that after responding to an alarm in zone 9 he was returning to zone 6/7 at which time he was driving the vehicle in reverse. He hit the.. ..
## 37445                                                                                                                                                      EE states that after she lifted patient to change diaper, she felt a pull in the left lower side of her back.
## 37446                                                                                                                                EE states that after she was sprayed w/the pepper spray it cont'd to irritate her and she felt like she had a film over her rt eye.
## 37447                                                                                                                                                          EE states that after using the computer keyboard she had soreness in her tight thumb, wrist, and forearm.
## 37448                                                                                                                                                 EE states that after using the propane buffers andother cleaning duties caused hands, arms and fingers to go numb.
## 37449                                                                                                                                                                                                 EE states that air quality in rm caused coughing & tight throat ()
## 37450                                                                                                                                                    EE states that an electric door to a bathroom was not working properly therefore she use her hand to push open.
## 37451                                                                                                                                                                       EE states that an inmate grabbed her lt arm in an attempt to remove an object from her hand.
## 37452                                                                                                                             EE states that an inmate grabbed hold of her finger and bent it backwards in an attempt to prevent her searching his personal property
## 37453                                                                                                                       EE states that an inmate had mopped the kitchen floor and it was still wet as she entered the kitchen office. She slipped and fell on floor.
## 37454                                                                                                                 EE states that an inmate placed the curling iron in the basket but didn't tell her it was hot. EE was sorting through basket and hit curling iron.
## 37455                                                                                                                         EE states that an inmate rolled over on his left arm and wrist during a use of force. When the injury occurred, a popping sound was heard.
## 37456                                                                                                                                                                                       EE states that an inmate slapped her on the lt side of head with his rt hand
## 37457                                                                                                                                                                                    EE states that an inmate spit a large amount of blood and saliva onto his body.
## 37458                                                                                                                                                                                                         EE states that an inmate struck her in the face with hand.
## 37459                                                                                                                                                                                  EE states that an inmate struck him in the mouth causing injury to his lower lip.
## 37460                                                                                                                                                                                   EE states that an inmate threw a rock over a fencewhich struck him in the chest.
## 37461                                                                                                                                                      EE states that an inmate threw an unknown liquid substance in his face while he was conducting cell clean up.
## 37462                                                                                                                                                                                                EE states that an inmate threw some urine which went into his eyes.
## 37463                                                                                                                                                                      EE states that an inmate threw some yellow liquid substance striking her face, neck, and leg.
## 37464                                                                                                                                                                            EE states that an insect bit him on the r side of his neck while he was on the job site
## 37465                                                                                                                     EE states that an offender was aggressively appro-aching another officer, EE stepped in, struggle insured, EE was struck in face and hand pain
## 37466                                                                                                                                                                                     EE states that an out of control student flipped a table injurying EE rt knee.
## 37467                                                                                                                                                                      EE states that another EE closed a door pinning him between the door and a stationary support
## 37468                                                                                                                                                                                                                          EE states that another driver hit his van
## 37469                                                                                                                                                                   EE states that another vehicle pulled out in frontof him, causing collision and EE to roll-over.
## 37470                                                                                                                                                                               EE states that arm was stratched by inmate while trying to keep inmate under control
## 37471                                                                                                                    EE states that as he entered office, EE stepped on blanket that was being used as floor mat. Blanket slipped out from under him twist right kne
## 37472                                                                                                                                                      EE states that as he was attempting to go upstairshe slipped and fell hitting his lrft shin, knee, and ankle.
## 37473                                                                                                                        EE states that as he was feeling the cracks and groovesin locker c-6 while preforming search, he culeft wrist on a coat hook in the locker.
## 37474                                                                                                                                                 EE states that as he was getting off the road squad bus, he stepped off with his left foot & hisleft ankle turned.
## 37475                                                                                                                                                   EE states that as he was leaving the office his ring was caught on the door lock and tore skin in several places
## 37476                                                                                                                     EE states that as he was leaving the sgt. 's officehe turned the door knob and hit his right hand on the door lock while turning the doorknob.
## 37477                                                                                                                      EE states that as he was placing a matress into a storage bin, his right and left index fingers struck a pice of metal at the top of the bin.
## 37478                                                                                                                                 EE states that as he was removing a safety pin from an inmate's key ring, the pin flew open and nicked him in the rt index finger.
## 37479                                                                                                                EE states that as he was rounding a corner into the training room, he tripped on the garbage can holder, causing him to hit his left knee on concre
## 37480                                                                                                                                                                                     EE states that as he was securing inmates in their cells when he was assaulted
## 37481                                                                                                                                           EE states that as he was standing at the gas pump supervising the inmate fueling a van, a bee stung hi, in his left eye.
## 37482                                                                                                                                                                   EE states that as he was walking down the back steps of the admin building he slipped in the ice
## 37483                                                                                                                   EE states that as she entered the sallyport of housing unit 6 to be releived she was trying to keep the door from slamming and it slammed on her
## 37484                                                                                                                 EE states that as she sat down in the chair, it borke & she attempted to break her fall by grabbing edge of table. Injury to shoulder & right hand
## 37485                                                                                                                                                                    EE states that as she was attempting to open the a block door she felt a sharp pain in rt wrist
## 37486                                                                                                                                                       EE states that as she was leaving the training session, she slipped and fell down the stair hurting her back
## 37487                                                                                                              EE states that as she was securing the voc area doord she slipped on a patch of ice as she entered the side door and twisted her rt ankle and fell on
## 37488                                                                                                                                         EE states that as she was using a staple remover to remove staples from documents, a staple flew up and into her left eye.
## 37489                                                                                                                             EE states that as she was walking from a yard to the maintenance gate her lt foot slipped off the sude of the walkway and bent outward
## 37490                                                                                                                                           EE states that as she was working in d-block, she had no direct injury but her knee started to hurt and developed a knot
## 37491                                                                                                                     EE states that ase he was getting inmate down in single cell who attemping to hang himself. EE struggled with officer& he hit inmate shoulder.
## 37492                                                                                                                                                                                                   EE states that assisted in forceably placing inmate on the floor
## 37493                                                                                                                                                                                                 EE states that because of the heat she became sick with a headache
## 37494                                                                                                                                                      EE states that blood was present on handcuffs of disruptive inmate. He feels he was not exposed to pathogena.
## 37495                                                                                                                                                                           EE states that bottom of desk drawer pulled out and hit her left leg on drawer. Bruised.
## 37496                                                                                           EE states that checking ahu, shirt got caught in fan bearing & he was pulled to machine. EE also states that carrying ladder in bldg heos- felt discomfort. Rt shoulder.
## 37497                                                                                                                                                                                      EE states that client got mad and started kicking and scratching EE on lt arm
## 37498                                                                                                                                                                                                                          EE states that client hit him in the eye.
## 37499                                                                                                                                 EE states that client needed to be changed which required repositioning client. During this procedure, EE strained her lower back.
## 37500                                                                                                                                              EE states that coming through parking lot he tripped on a crack & twisted knee. His knee gave way & twisted his ankle
## 37501                                                                                                                                                                     EE states that consistent lifting, shifting, movingboxes & typing caused injury to left wrist.
## 37502                                                                                                                        EE states that continuous daily exposure to chemical/toxic fumes has given her respiratory, digestive/chest problems, headaches and nausea.
## 37503                                                                                                            EE states that corr officer went to open the northend door of the dining hall when the wind caught the door and blew it shut on his lt ring finger.. ..
## 37504                                                                                                                                                                               EE states that coworker reinjured rt forearm due to grabbing injured EE above wrist.
## 37505                                                                                                                                           EE states that daily job has cause base joint of rt thumb injury over period of time due to extensive use of pipettes ()
## 37506                                                                                                               EE states that daily usage of computer, caused her pain in her lft fingers and goes to her elbow which she believes causing her headaches(see notes)
## 37507                                                                                                                                                     EE states that due to inadequate conditions (unclean) in the academic bldg. She has developed asthma/allergies
## 37508                                                                                                                                                                                        EE states that due to renovations in bldg it has caused her to have a cough
## 37509                                                                                                                                              EE states that during 36" baton training he fell hitting his shoulder and the back of his head and neck on the ground
## 37510                                                                                                                                                          EE states that during a behavior intervention thatthe resident kicked her on both sides of her upperchest
## 37511                                                                                                                                              EE states that during a cell extraction of an inmate and trying to gain control of him somehow he injuried his rt eye
## 37512                                                                                                                                                                                                      EE states that during a phyllis altercation EE fell backwards
## 37513                                                                                                                                                                                       EE states that during a self defense training course he injured his lt knee.
## 37514                                                                                                                                                                  EE states that during a self defense training he injured his hand, neck, arms, shoulder, and back
## 37515                                                                                                                                                            EE states that during a training demonstration an instructor pulled his rt leg injurying his groin area
## 37516                                                                                                                                                     EE states that during a training exercise he stepped in a hole on the ground and twisted his rt knee and ankle
## 37517                                                                                                                      EE states that during a use of force he strained his left shoulder while trying to gain control of the inmate. Hyper-extended shoulder joint.
## 37518                                                                                                                                           EE states that during a use of force he was assisiting by holding an inmates legs when he felt a sharp pain in his chest
## 37519                                                                                                                                                                            EE states that during a use of force he was struckin the face with handcuffs by inmate.
## 37520                                                                                                                                                                       EE states that during a use of force that his right thumb was jammed againgst the door edge.
## 37521                                                                                                                                                                      EE states that during a use of force while applying restraints inmate kicked EE in right jaw.
## 37522                                                                                                                                                                        EE states that during a use of force, inmate scratched right side of face and right eyeball
## 37523                                                                                                                EE states that during a use of force, inmate's body weight pushed his hands against a metal bunk, pinning his left index finger against metal rail.
## 37524                                                                                                                                        EE states that during an anticipated use of force with and inmate EE fell to the floor when another body fell on EE's neck.
## 37525                                                                                                                                             EE states that during an institutional recount of inmates on the 5th floor the door slammed shut on on his left ankle.
## 37526                                                                                                                                                                           EE states that during cell extraction training he struck his left elbow against the wall
## 37527                                                                                                                                                                     EE states that during cell extraction training he struck his right wrist against the door jamb
## 37528                                                                                                                                                 EE states that during clothes exchange she was bitten several times by mosquitos on the lower portion of her body.
## 37529                                                                                                                      EE states that during crdt training he & partner were doing a guard escape move when partner threw him off causing him to fall to the floor .
## 37530                                                                                                                                EE states that during crdt, while trying to breakaway form his training partner, he felt a sharp pain in the left side of his neck.
## 37531                                                                                                                                               EE states that during firearms recertification, heinjured his right hand/thumb while releasing firearm from holster.
## 37532                                                                                                                   EE states that during forced medication order, inmate struggled & in process of trying to gain control of inmate-EE was bitten by inmate on leg.
## 37533                                                                                                                                EE states that during inside recreation he was assaulted by an inmate. Right side of face bruisedand cut up. Cut right side of neck
## 37534                                                                                                                               EE states that during oc pepper spray training she stepped into a hole which contained a metal causing a laceration to her lt ankle.
## 37535                                                                                                                                                           EE states that during pert training both feet slipped from under her causing her to fall on her stomach.
## 37536                                                                                                                                                                         EE states that during rcdt training she injured her knee while doing a take down technique
## 37537                                                                                                                                                                                    EE states that during the pepper spray training, left eye affected due to spray
## 37538                                                                                                                  EE states that during the use of force, inmate hadone hand cuffed, inmate broke away from EE and swinging hand with cuff on it hitting EE in eye.
## 37539                                                                                                                                                           EE states that during training exercise, EE went to jump a ditch, the embakment caved, EE fell intowater
## 37540                                                                                                                EE states that during unarmed defense training he was required to demonstrate techniques that involved twisting and bending his arm behind his back
## 37541                                                                                                                                                    EE states that during use of force with inmate, while handcuffing inmate he twisted the right side of his back.
## 37542                                                                                                                                                                 EE states that durring an altercation/use of force on an inmate, he hurt his mouth and groin area.
## 37543                                                                                                                                                                                       EE states that each times she uses the vaccum her hands go numb and tingling
## 37544                                                                                                                       EE states that entering the gate to returning intobldg when the gate closed pinning him between the gate and fence support post. No injuries
## 37545                                                                                                                                                                                                        EE states that excessive filing has caused pain in lt wrist
## 37546                                                                                                                                                                                            EE states that excessive lifting of clients has caused lower back pain.
## 37547                                                                                                                                                                                                   EE states that excessive typing has caused injury to her lt hand
## 37548                                                                                                                                                                                                         EE states that excessive typing has caused lt hand injury.
## 37549                                                                                                                                                                                                   EE states that excessive typing has caused wrist and hand injury
## 37550                                                                                                                                           EE states that excessive use of computers has caused pain in both wrist clmt has already rec'd pymt for 5% ppd/each hand
## 37551                                                                                                                                          EE states that from behavior of her supervisor Mr Jone she is experiencing stress, depression and elevated blood pressure
## 37552                                                                                                                                                                                               EE states that fumes from air condition caused difficulty breathing.
## 37553                                                                                                             EE states that gate would not open he placed both hands on the gate and pushed toward the side that the gate opens gate opened and he could not get ha
## 37554                                                                                                                                                                            EE states that grit and dirt from reroof of the historic blew into EE face and lt eyes.
## 37555                                                                                                                        EE states that he and a co-worker were completely stopped, a car then struck state car from the rear. **as of 5-11-2004- no form 18 filed**
## 37556                                                                                                                 EE states that he and another maintenance employeewas moving upright scaffolding lift onto elevator. Assisting in raising the end of lift, dropped
## 37557                                                                                                             EE states that he and another staff were trying tomove a box of yarn to be weighed on scales, while moving the box he felt a sharp pain in rt shoulder
## 37558                                                                                                                                         EE states that he attemped to save an inmate who was trying to hang himself in the process EE pulled a muscle in his neck.
## 37559                                                                                                                    EE states that he attempted to stop an assault on a inmate, when another inmate interacted & assaulted the officer. Contusion in back, shoulder
## 37560                                                                                                                                                                                                           EE states that he became dizzy and nausea while working.
## 37561                                                                                                                                                        EE states that he began to feel severe pain in hisleft eye as he was welding; he was wearing a face shield.
## 37562                                                                                                                                                                                    EE states that he bent down to remove man hole cover and injured his lower back
## 37563                                                                                                                  EE states that he bent over and lifted a water cooler off the floor to sit it on the table. EE stated that he pulled something in his left groin.
## 37564                                                                                                                                                                              EE states that he bent over to close the trap door in the tower and felt his back pop
## 37565                                                                                                                                                                                        EE states that he broke a glass tube while inserting into a rubber stopper.
## 37566                                                                                                                                        EE states that he came around by small stem pot to the long stem pot and twisted his rt hip. There was water on the floor--
## 37567                                                                                                                                                                                       EE states that he caught his hand in the sally port gate and clothes basket.
## 37568                                                                                                                                                                                                      EE states that he caught his right hand in between two doors.
## 37569                                                                                                                                                EE states that he cut his left hand with a pocket knife while cutting a plastic flower pot to removeresearch plant.
## 37570                                                                                                            EE states that he cut his thumb on a razor he had placed in his back pocket during a previous floor search, the razor belonged to an imate who was sear
## 37571                                                                                                                                                                                      EE states that he did not recieve any injuries during use of force on inmate.
## 37572                                                                                                                                                                  EE states that he drew and swung a baton at an outof control inmate causing injury to his rt arm.
## 37573                                                                                                                                                              EE states that he dropped a lock to a gate and when he bent to pick it up he heard a pop in his back.
## 37574                                                                                                                                                                                        EE states that he dropped a table on his foot while stacking tables in rack
## 37575                                                                                                               EE states that he entered the control room. Grabbedthe control room door to keep it from slamming shut and experienced pain in his rt shoulder, down
## 37576                                                                                                                                                                                                 EE states that he experience pain in rt forearm because of lifting
## 37577                                                                                                                                                                              EE states that he fell hitting his knee EE states that he also had his toe stepped on
## 37578                                                                                                                                                                                  EE states that he fell to the floor with an inmatewhile trying to apply handcuffs
## 37579                                                                                                                                   EE states that he fell twice on the ice during his workday causing headache, neck stiffness and pain in shoulder elbow and wrist
## 37580                                                                                                                                                                        EE states that he felled over two drink cases injurying his arm, back, shoulder, and waist.
## 37581                                                                                                                                                                                                                EE states that he felt a insect bite on his rt hand
## 37582                                                                                                                   EE states that he had 1-beam on his shoulder whilestanding on a ladder. He states that when he stepped to the ground he twisted his right ankle.
## 37583                                                                                                             EE states that he had 4 ticks bite him causing redraised area on back, groin, upper r leg & lower rtleg. EE further states that he was working rd.. ..
## 37584                                                                                                             EE states that he had an auto accident sat 12222001 off duty during work hour om 12232001 EE felt tightness in his chest where he believes hit in coll
## 37585                                                                                                             EE states that he had entered the van and was moving to his seat when the van pulled forward causinghim to lose his balance, strike arm rest w/buttock
## 37586                                                                                                            EE states that he had escorted an inmate to his cell. When the cell door began to close by electricalpower he failed to remove his hand from(see notes)
## 37587                                                                                                                         EE states that he had filled the salt truck with gas when getting back into truck his foot slipped on the icey running boards and he fell.
## 37588                                                                                                                             EE states that he had just sat down in this chair to eat supper, when this chair collapsed & he fell to the floor. Injury to back area
## 37589                                                                                                              EE states that he had left the conference room andwas walking to the copy room when he slipped on the wet floor. His feet went out from under him. ..
## 37590                                                                                                                    EE states that he had stepped onto the ramp to enter the maint. Shop & turned around to talk to inmate & mijudged ramp & fell. Injury to r knee
## 37591                                                                                                                                                                                    EE states that he has a rash which he believes he has from working with inmates
## 37592                                                                                                                                      EE states that he has been cursed, threatened, and attempted to be fired lied on. EE states that this has caused undue stress
## 37593                                                                                                                        EE states that he has been involved with extensiveuse of mouse using left hand. He got excessive pain in left hand, wrist, elbow, shoulder.
## 37594                                                                                                                                                                                  EE states that he has experience pain in his rt arm and back while using computer
## 37595                        EE states that he hurt back while lifting cooler (weight unknown at this time) on mail service center loading dock onto delivery van. EE reported pain to supervisor, supervisor directed EE to concentra medical center for evaluation. ()
## 37596                                                                                                                                                                                                            EE states that he hurt his rt knee during cell training
## 37597                                                                                                                                                                                                     EE states that he injured his back while handling a guardrail.
## 37598                                                                                                                                                                                                 EE states that he injured his back while trying tosubdue an inmate
## 37599                                                                                                                                                                                                EE states that he injured his left hand while restraining an inmate
## 37600                                                                                                                                                                                 EE states that he injured his lt foot while tryingto subdue an aggressive student.
## 37601                                                                                                                                                                                   EE states that he injured his rt elbow while pulling and pushing chairs with pt.
## 37602                                                                                                                                                                                      EE states that he injuried left knee going down onmats doing defense training
## 37603                                                                                                                                                             EE states that he lifting the ramp gate on trailer when he felt a burning sensation in his groin area.
## 37604                                                                                                                                                         EE states that he opened the fire suit door on the southering and the draft slammed the door on his finger
## 37605                                                                                                                                      EE states that he pick up a bag of cabbage to count during inventory, his shoulder popped and the pain continued to get worse
## 37606                                                                                                                             EE states that he picked up a bag of trash and hr lifted it out of the trash can to take to the sumpster he felt pop in his lower back
## 37607                                                                                                                                                                      EE states that he picked up a cambro and when he put it back down he felt a pull in his back.
## 37608                                                                                                                                                 EE states that he picked up box from his desk and the box shifted as he tried to catch the box he injured his arm.
## 37609                                                                                                                                                       EE states that he pricked his rt hand when loading a microinjection glass capillary (cancel cells) needle ()
## 37610                                                                                                                                                                                      EE states that he ran head first into cell bars while fighting with an inmate
## 37611                                                                                                                                                                                                EE states that he re-injured his left ribs while playing basketball
## 37612                                                                                                                                              EE states that he reached to pull open a desk drawer by the handle and it felt like something snapped in his lt wrist
## 37613                                                                                                                                                                                            EE states that he responed to inmates fighting and was exposed to blood
## 37614                                                                                                               EE states that he sat down in a swivel chair. When the chair leaned back the chair fell backwards causing EE to fall to the floor on his rt shoulder
## 37615                                                                                                                                                                                          EE states that he slipped and fell to floor while walking through kitchen
## 37616                                                                                                                                                                                    EE states that he slipped and felled down steps while carrying an air condition
## 37617                                                                                                                                                                              EE states that he slipped and felled on some water while delivering lunch to inmates.
## 37618                                                                                                                                                                        EE states that he slipped and felled while walkingdown some steps injurying his lower back.
## 37619                                                                                                                                                                                                                     EE states that he slipped in a puddle of water
## 37620                                                                                                                                                                     EE states that he slipped in water in the kitchen area, and sustained a cut to his right knee.
## 37621                                                                                                                                                                                     EE states that he slipped on a piece of ice on the stairs and fell down steps.
## 37622                                                                                                                                                                                                   EE states that he slipped on a wet floor and injured his rt knee
## 37623                                                                                                                                                                                    EE states that he slipped on some water on some steps and twisted his lt ankle.
## 37624                                                                                                                                                                          EE states that he slipped on some wax that was on the floor causing injury to his lt knee
## 37625                                                                                                                                                                     EE states that he slipped on the wet floor when hefell he landed on his butt and hurt his back
## 37626                                                                                                                                            EE states that he started to put a box of trash bags and envelopes into the cupboard, when he felt his lower back pull.
## 37627                                                                                                            EE states that he stepped in a divot, lost his balance, then righted himself. Later lower back startedto hurt but continued working. Pain has increased
## 37628                                                                                                                        EE states that he stepped into the building out of the rain & his leg slipped out from under him folding his left leg under him as he fell.
## 37629                                                                                                                                                                            EE states that he stepped on a section of ice on the gym floor and wrenched his rt knee
## 37630                                                                                                                                                                                            EE states that he stepped on an unknown object & twisted his left ankle
## 37631                                                                                                                                                                              EE states that he struck razor while reaching in truck tool cabinet for another tool.
## 37632                                                                                                                                    EE states that he thinks he was injured during basic training - crdt class. Not sure how/when but his left shoulder is injured.
## 37633                                                                                                                                                                                                                                EE states that he thumb was hurting
## 37634                                                                                                                                 EE states that he took custody of the syringe to dipsose of it. EE laid the glove w/ the syringe onhis lt leg & then felt a stick.
## 37635                                                                                                                                                                              EE states that he tried to push a window open and his lt hand went through the window
## 37636                                                                                                                                                                                        EE states that he tripped and fell over a tree limb injurying his rt wrist.
## 37637                                                                                                                                        EE states that he tripped over a parking bumper in the parking lot while walking through the the parking lot to his vehicle
## 37638                                                                                                                                                             EE states that he turned to walk away and his footslipped and he twisted his left knee and lower back.
## 37639                                                                                                                                                                                              EE states that he twisted his ankle while picking up form from office
## 37640                                                                                                                                                                            EE states that he twisted his back while putting a aggressive inmate back into his cell
## 37641                                                                                                                                                                                                EE states that he twisted his lt ankle while standing on a sidewalk
## 37642                                                                                                                                                                                       EE states that he twisted his rt knee when he was walking thru flood waters.
## 37643                                                                                                                                                           EE states that he walked in the janitor closet to get a rag slipped and fell on floor hitting mop basket
## 37644                                                                                                                                            EE states that he walked on the catwalk when he felt something in his face he waved his hands to get away from his face
## 37645                                                                                                             EE states that he walking when he slipped off the edge of sidewalk and twisted his back causing painin his lt hip and lt leg. **30% back/perm restric*
## 37646                                                                                                                       EE states that he was appyling full strength muristic acid to a concrete surface when the wind changed direction and blew the acid in his ..
## 37647                                                                                                                              EE states that he was asked for a bandaid by an inmate and he reached into a box where the bandaids were kept a needle was in the box
## 37648                                                                                                                                                                                            EE states that he was assault by 3 inmates. They beat him with a broom.
## 37649                                                                                                      EE states that he was assaulted by an I/m hit in head, face, abrasions lt arm, lt hand 3, 4, 5, knuckles 3 bott. Ft. Teeth loose, cut/discoloration both legs
## 37650                                                                                                                                      EE states that he was assaulted by an inmate the inmate struck him serveral times in the head area with a broken broom handle
## 37651                                                                                                                                                                     EE states that he was assaulted by immate stating that immate struck him on left eye with fist
## 37652                                                                                                                                         EE states that he was assembling a piece of furniture and a sharp pain ran down right arm and setting in ringer finger. ()
## 37653                                                                                                                                                EE states that he was assigned outside on the backyard. He noticed after taking shower a tick attached to his body.
## 37654                                                                                                                                                                           EE states that he was assigned to housing unit #6 where an inmate tested positive for TB
## 37655                                                                                                                                                                       EE states that he was assigned to the west yard where the inmate was tested positive for TB.
## 37656                                                                                                                                                           EE states that he was assigned to yard #2 he heard a code yellow and started running he twisted his knee
## 37657                                                                                                                  EE states that he was assisting another officer subdue an inmate, inmate became highly volatile. The inmate bit EE's lower rt arm according to EE
## 37658                                                                                                                             EE states that he was assisting in clearing inmates from ??? And while ??? In the bathroom an inmatepushed up against EE's chest area.
## 37659                                                                                                                                                                EE states that he was at a inmates cell talking with him and inmate spit in his face threw the bars
## 37660                                                                                                                        EE states that he was at the housing operations warehouse moving a matress into the back of a truck when he hit his right knee on tailgate.
## 37661                                                                                                                                                                                                       EE states that he was attacked by an inmate duringprocessing
## 37662                                                                                                                                           EE states that he was attacked ny an inmate in the process of escorting him to the shower inside of the segregation unit
## 37663                                                                                                                                        EE states that he was attempting to arrest a combative individual and jammed his middle finger and knuckle area of rt hand.
## 37664                                                                                                                              EE states that he was attempting to break up a fight in the kitchen when he slipped on coffee that had been spilled during the fight.
## 37665                                                                                                                    EE states that he was attempting to fend off an assulatinve inmate by pushing him away w/ rt arm when his hand struck inmate's lft side of face
## 37666                                                                                                                  EE states that he was attempting to gain control of an inmate after he had sprayed with pepper spray. EE's hand was caught between inmate & cell.
## 37667                                                                                                               EE states that he was attempting to lift up cubicle that had fallen on to floor. He was lifting it up it slipped from hand, he reached for it strain
## 37668                                                                                                                               EE states that he was attempting to obtain water sample from primary wastewater lagoon when he slipped on rocks and slid into lagoon
## 37669                                                                                                                                                   EE states that he was attempting to place a aggressive inmate back in his cell when he fell against inmates bunk
## 37670                                                                                                                      EE states that he was attempting to turn the screen key to close screen. EE used both hands to turn the key and his hand slipped hitting rod.
## 37671                                                                                                                                          EE states that he was bending down to drive a piece of rebar in the ground. As he stood up he felt a pain in his left hip
## 37672                                                                                                                                                             EE states that he was bending down to pat search an inmate when he felt a sharp pain in his lower back
## 37673                                                                                                                                                                                   EE states that he was bending over lifting a pan when he felt a pull in his back
## 37674                                                                                                                                                                                                                              EE states that he was bit by a spider
## 37675                                                                                                                                                                                                                             EE states that he was bitten by a tick
## 37676                                                                                                                                                                                                    EE states that he was bitten by resident on the ltindex finger.
## 37677                                                                                                                                                                                                             EE states that he was bitten on the face by an insect.
## 37678                                                                                                                  EE states that he was breaking up a fight between inmates and took one to the ground and scraped hisknee and hand on ground-breaking his glasses.
## 37679                                                                                                              EE states that he was briskly walking around the corner of housing unit #6. He tripped over the railroad tie and struck his rt forehead on the window
## 37680                                                                                                                                                                                                                   EE states that he was carrying a box of supplies
## 37681                                                                                                                                                                      EE states that he was carrying food trays and felt like he pulled a muscle in his left wrist.
## 37682                                                                                                                                  EE states that he was carrying supplies such as laptop computer and other items when he felted pain in neck, arm, and lt shoulder
## 37683                                                                                                                                                           EE states that he was caught between a door which closed on him injurying his knee, back and chest area.
## 37684                                                                                                          EE states that he was changing duties, as he was walking on the sidewalk, EE stated that he stepped on the edge. There was about a 1in. Dropoff(see note)
## 37685                                                                                                                                                                     EE states that he was checking perimeter fence he slipped in the snow & twisted his right knee
## 37686                                                                                                                                                            EE states that he was checking the clothes in the wash room when his right hand got caught in the door.
## 37687                                                                                                                                           EE states that he was checking the grades and as he was walking he slipped on the ice and hit his lt elbow on the ground
## 37688                                                                                                               EE states that he was checking the security of the doors on the gentry yard after checking door he started to step around the corner of the building
## 37689                                                                                                              EE states that he was cleaning a control room window in the control room of upper f unit the window was located under a water valve struck head on va
## 37690                                                                                                                                                        EE states that he was climbing a hill when he losthis balance and felled into a canal injurying his rt knee
## 37691                                                                                                                          EE states that he was closing the gate and pulled right side of muscle in stomach. Locking device was stuck and had to pull hard to open.
## 37692                                                                                                                         EE states that he was coming from line up and walking through the first electric gate the gate closed before EE could get through the gate
## 37693                                                                                                                                                          EE states that he was coming out of the mechenical room and fell on his foot b/c of the drop off the door
## 37694                                                                                                                                                          EE states that he was coming up the stairs from c-10a and slipped and hit his shin one of the metal steps
## 37695                                                                                                                                                                       EE states that he was conducting a cell search & was assaulted by an inmate (fell on floor).
## 37696                                                                                                                EE states that he was conducting a search of the ceiling in the hallway, the ladder slipped, fell between the steps, hit chest against ladder frame
## 37697                                                                                                              EE states that he was conducting a security check of the inmates working in industry, when he walkedby one of the machines, blew something in lt eye.
## 37698                                                                                                                                    EE states that he was conducting block inspectionswhen he came down the stairs and slipped on the last one twisting his rt foot
## 37699                                                                                                                                    EE states that he was conducting rounds, making security checks while exiting delta bldg., & walked into door stricking his lip
## 37700                                                                          EE states that he was conducting showers... Went to secure a cell door and when he pulled on the door to make sure it was secure, he felt something pull in his upper right back area. ()
## 37701                                                                                                                                                               EE states that he was confiscating a tatoo gun from an inmate when he accidentally stuck on his hand
## 37702                                                                                                                                                                           EE states that he was constructing a storage facility when he suffered heat prostration.
## 37703                                                                                                                   EE states that he was councling inmates about shaving each other below earlobe on the foace or facial areas whwn he glazed his rt arm with razor
## 37704                                                                                                                                                               EE states that he was cutting excessive socks off a clothes buggy when he cut his finger w/ scissors
## 37705                                                                                                                                         EE states that he was cutting lemons while positioning lemon on blade his right thumb slippedand struck against the blade.
## 37706                                                                                                                                                                              EE states that he was cutting sheet metal and his hand slipped cutting his left elbow
## 37707                                                                                                                     EE states that he was delivering food & when he was taking food cart off truck, wheel came off ramp & EE hold cart to keep from hitting client
## 37708                                                                                                                EE states that he was discarding a broken light tube in trash bag and a piece of glass became embedded all the way through his right middle finger.
## 37709                                                                                                                                                            EE states that he was driving doc inmate transfer bus, a car crossed the center line, ended up in ditch
## 37710                                                                                                                                     EE states that he was driving ford van on hwy 78 west approx. 54mph the hood flew up and hit the windshield glass went in face
## 37711                                                                                                                                                                EE states that he was driving the states car when the car was struck from behind by another vehicle
## 37712                                                                                                                                                  EE states that he was entering the gate at tower #4 when he allegedly he accidentally closed the gate on his hand
## 37713                                                                                                                   EE states that he was exiting the facility throughthe 1st slider in front of master control when the slider closed and caught his lt leg and arm
## 37714                                                                                                               EE states that he was exiting the staff bathroom located in the gatehouse and got his hand 3rd finger caught between the gun locker cabinet and door
## 37715                                                                                                                                                                                        EE states that he was exposed TB while guarding an inmate who was a patient
## 37716                                                                                                                                                                                                                                EE states that he was exposed to TB
## 37717                                                                                                                                                                                                                      EE states that he was exposed to TB by inmate
## 37718                                                                                                                                                                                                                         EE states that he was exposed to asbestos.
## 37719                                                                                                                                                                                          EE states that he was exposed to tuberculosis when he arrested a suspect.
## 37720                                                                                                                                                                                           EE states that he was exposed to tuberculosis whenhe arrested a suspect.
## 37721                                                                                                               EE states that he was feeding sixth floor inmates. With food trays in his hands he slipped on steps not making contact until 2 or 3 steps down. Back
## 37722                                                                                                             EE states that he was getting ready for road squad& as he reached for his shotgun to sling over his shoulder, felt sharp pain through his right thumb.
## 37723                                                                                                                                     EE states that he was giving medication to an inmate and while speaking with him, the inmate accidently spit in EE's right eye
## 37724                                                                                                                                                                          EE states that he was going into the chow hall when he twisted his knee opening the door.
## 37725                                                                                                                      EE states that he was going through door when he got in the middle of doorway, & another EE reversed door closing it hitting EE left shoulder
## 37726                                                                                                                                           EE states that he was going to medical to use the restroom as EE closed restroom door he slammed thedoor on his rt thumb
## 37727                                                                                                                   EE states that he was grinding and the grinder caught and snatched his his hand and wrist in an awkward position hand hit steps causing a bruise
## 37728                                                                                                                                                             EE states that he was helping an inmate pull a vine from a tree when he felled and injuied his rt foot
## 37729                                                                                                                                              EE states that he was helping separate two inmatesthat were in an altercation and got blood on both hands from inmate
## 37730                                                                                                                                                                                           EE states that he was hit in the back and head while breaking up a fight
## 37731                                                                                                                                                                                                                  EE states that he was hit in the lt eye by a pt .
## 37732                                                                                                                                                                       EE states that he was holding a cat for an ultra sound when the cat bit him on the lt thumb.
## 37733                                                                                                                                                                              EE states that he was in east control and had something blown in his eye from the fan
## 37734                                                                                                                                   EE states that he was in route to hospital to watch an inmate, & he was hit in side while drivingto hospital by another vehicle.
## 37735                                                                                                                                                                                EE states that he was in the lifeguard stand when a yellow jacket stung his rt hand
## 37736                                                                                                                                                                                                  EE states that he was injured during a use of force by an inmate.
## 37737                                                                                                                                  EE states that he was instructing an inmate to to return to his cell, inmate then attached EE and sprayed pepper spray in EE'face
## 37738                                                                                                                                                                                             EE states that he was involved in a mva while riding in the state car.
## 37739                                                                                                                   EE states that he was involved in a use of force in segregation while attempting to gain control of the inmate his head struck sheild cut lt eye
## 37740                                                                                                             EE states that he was involved in a use of force with an inmate he somehow injured his rt thumb and didn't realize he was injured until after incident
## 37741                                                                                                                                                                                                         EE states that he was involved in training and gottoo hot.
## 37742                                                                                                                     EE states that he was involved in unarmed self- defense training and that his partner was doing a take down technique on him injuring shoulder
## 37743                                                                                                                                                                                                       EE states that he was kicked in the groin area by an inmate.
## 37744                                                                                                                                EE states that he was leaning over to retrieve jstick from pc tower, felt pop in neck. Claim denied - no sti described in statement
## 37745                                                                                                                                                                 EE states that he was leaving the gatehouse when the door came back and jammed his right shoulder.
## 37746                                                                                                                                                     EE states that he was leaving the medical building and made a mis stop l on the steps noticed a pain in lt hip
## 37747                                                                                                                                                                                 EE states that he was lifting boxes to put on shelf when he injured his lower back
## 37748                                                                                                                                           EE states that he was lifting buckets of cold tar that had fallen off a pallet when he developed pain in his lower back.
## 37749                                                                                                                                  EE states that he was lifting the lid or cover plate covering the water meter so he could read the meter the meter was very heavy
## 37750                                                                                                                                     EE states that he was lifting top of trailer, l foot slipped on wet grass and he then experienced pain in lower r side of back
## 37751                                                                                                                                                                EE states that he was lifting two boxes of copy machine paper when he felt a pain in his lower back
## 37752                                                                                                                                                                                EE states that he was lifting up a ?? And two boxes when he felt his left knee pull
## 37753                                                                                                                                                  EE states that he was lifting up trays and putting them into the table when he felt something pulling in his back
## 37754                                                                                                                                    EE states that he was loading icy tree limbs on to the back of a truck when his left leg slipped & caused a strain in his back.
## 37755                                                                                                              EE states that he was loading up the water cooler on the road squad bus when he felt a pain in the middle of his back that shot up to his upper back.
## 37756                                                                                                                       EE states that he was looking at computer screen when his eye began to ache. He stated it was severe burning, blurred vision, and headaches.
## 37757                                                                                                              EE states that he was making required nightly curfew checks he stated he was walking across the yardat the probationer's home and twisted his rt foot
## 37758                                                                                                                                                                  EE states that he was making rounds on the third floor in d-wing and fell over a cell door cover.
## 37759                                                                                                                                                                        EE states that he was monitoring the canteen line. Right wrist and elbow bruised from wall.
## 37760                                                                                                                                                EE states that he was moving a bread rack when he tripped over a rolled up rug causing him to twist his right knee.
## 37761                                                                                                                                                                                    EE states that he was moving a concrete shute and pulled a muscle in his groin.
## 37762                                                                                                                                                                        EE states that he was moving a file cabinet in hisoffice when he caught a sharp pain in his
## 37763                                                                                                             EE states that he was moving a table in his officefrom one place to another location in office when the table slipped out of his hands ahd hit big toe
## 37764                                                                                                                                 EE states that he was moving a trash cart when a set of keys got caught between the handle of the cart and cut EE lt pinky finger.
## 37765                                                                                                                                                                      EE states that he was moving boards and a board with a nail fell sticking the nail in his arm
## 37766                                                                                                                       EE states that he was moving dressers from one side to another. All the weigh of the dresser shifted to him placing a strain on his shoulder
## 37767                                                                                                                    EE states that he was moving lowrator loaded with plates. Wheels on lowrator caught in hole causing lowrator to turn over hitting his left leg.
## 37768                                                                                                                        EE states that he was moving weight lifting equip-ment when he struck his right second toe against the base of the equipment he was moving.
## 37769                                                                                                                                 EE states that he was observing inmates on the recreation field EE states he was hit in the face with a softball-left side of face
## 37770                                                                                                             EE states that he was on a feild trip w/ his biology students when he was stung by a stingray. It was being released after being captured for id purps
## 37771                                                                                                                                          EE states that he was on his way to have a picturetaken & an inmate carrying a white plastic trash bag cut his lt forearm
## 37772                                                                                                                        EE states that he was on post in the main hallway during morning chow standing in front of the gym door he felt a burning in his rt buttock
## 37773                                                                                                                     EE states that he was operating his state owned vehicle and his vehicle was struck on the right side by a vehicle making an illegal left turn.
## 37774                                                                                                                                                                                                      EE states that he was painting when the spray blewin his eye.
## 37775                                                                                                                         EE states that he was participating in prison emergency response training when his partner landed on his upper lt chest area causng injury
## 37776                                                                                                                  EE states that he was passing through door #140 at control center #1 when it closed and hit him inthe back forcing him against the frame of door.
## 37777                                                                                                                          EE states that he was performing a routine blow out of soot tubes on boiler when the damper bounced & a piece of metal flew into his eye.
## 37778                                                                                                                                           EE states that he was performing yard duties while walking in front of the old doom construction area he stepped on nail
## 37779                                                                                                                                                                                        EE states that he was picking up a calf when something popped in his rt arm
## 37780                                                                                                                                       EE states that he was picking up the needle and thread to move it. He stated the needle stabbed him in the right ring finger
## 37781                                                                                                                                                                            EE states that he was piling mulch w/ the backhoe and the wind blew dust into left eye.
## 37782                                                                                                                                                            EE states that he was positioning for a group photogaph when he struck his head aganist the door closer
## 37783                                                                                                                                                       EE states that he was pulling himself up a ladder in the control room when he felt a pull in his groin area.
## 37784                                                                                                                                                                     EE states that he was pulling himself up into payloader when he felt pain in back and shoulder
## 37785                                                                                                                           EE states that he was pushing his ultrsound machine into the buliding from an incline at the x ray double door entrance. Tripped forward
## 37786                                                                                                                                              EE states that he was reaching for a policy manuelin the file cabinet and a needle stuck in his rig ht middle finger.
## 37787                                                                                                                          EE states that he was relieving the tower officer tower one. Going up steps he hit his head w/the concrete going up through the trap door
## 37788                                                                                                                                                                 EE states that he was removing a drawer from file cabinet when drawer slipped and cut his rt wrist
## 37789                                                                                                                    EE states that he was removing a object that was in the travel lane on interstate 40. When he threwthe object he felt a snap in his rt shoulder
## 37790                                                                                                                      EE states that he was removing a panel at the salley port gate to let a vehicle out when sparks began striking the panel and struck his hand.
## 37791                                                                                                                                                                                                                   EE states that he was removing man hole cover ()
## 37792                                                                                                                                                                  EE states that he was removing product from lathe and scrap fell across thumb causing laceration.
## 37793                                                                                                                           EE states that he was replacing water damaged ceiling tiles and something got in his rt. EE says that he was wearing his safety googles.
## 37794                                                                                                                                             EE states that he was resetting the boiler when the boiler blew up sheet metal from the boiler struck EE on the rt leg
## 37795                                                                                                                     EE states that he was responding to a code yellow on yard 2 as he was running from the 100 building to yard 2 something happened to his lt hip
## 37796                                                                                                                                                  EE states that he was returning back to the prisonwalking down a bank when he slipped and twisted his right knee.
## 37797                                                                                                                        EE states that he was returning to the office froma home visit. EE's state issued auto was struck by another vehicle on the passenger side.
## 37798                                                                                                                                      EE states that he was riding in a vehicle from training and it was struck by another vehicle causing injury to his left knee.
## 37799                                                                                                                           EE states that he was riding with another officer when they were hit in the rear by another vehicle causing injury to his neck and back.
## 37800                                                                                                                EE states that he was rolling 55 gallon barrels & tires toward fire brigade members during training practice for riot **** see log notes***********
## 37801                                                                                                                                           EE states that he was running up the stairs to 3 dormitary responding to a fight and he fell while running up the stairs
## 37802                                                                                                                                           EE states that he was running while responding to an emergency drill and felt a sharp pain in the arch of his right foot
## 37803                                                                                                                                                                           EE states that he was scatched by a pt on lt hand and lt arm. Pt also spitted in EE eyes
## 37804                                                                                                                                                             EE states that he was searching in a wooded area when a small twig from a tree went inside his lt ear.
## 37805                                                                                                                                                                                                               EE states that he was searching inmates exposure. ..
## 37806                                                                                                                  EE states that he was securing a cable at mcu parking lot when the cable slipped through his hand causing the ebd of cable to stick his rt finger
## 37807                                                                                                                     EE states that he was securing the padlock on the staff entrance gate when he was struck by lightning which traveled down fence to the padlock
## 37808                                                                                                                                                                                       EE states that he was setting up concert shelves and was hit by one of them.
## 37809                                                                                                                     EE states that he was sitting at the desk in the sargent's office and felt a sting on his right lower lef (calf area). He noticed bite on leg.
## 37810                                                                                                                  EE states that he was sitting behind desk he door opened got up to see who it was and chairs wheels went forward and back of chair went backwards
## 37811                                                                                                             EE states that he was sitting behind the driver ona bus when a truck struck the mirror on the driverside causing glass to strike his face, neck, head.
## 37812                                                                                                                                                               EE states that he was sitting in chair in the offenders station on the 9th floor the chair gave away
## 37813                                                                                                                                                    EE states that he was sitting in chair working on the computer he got out of chair and immedately began to hurt
## 37814                                                                                                                  EE states that he was sitting in his chair sortingpaper-work when the chair slid back and he slid forward hitting his elbow and hip on the floor.
## 37815                                                                                                                                                                                    EE states that he was sprayed with pepper spray and his rt eye is still burning
## 37816                                                                                                                                                                    EE states that he was squated down, and when he stood up his right knee popped and was hurting.
## 37817                                                                                                                 EE states that he was standing in office chair attempting to hang poster on the office wall. The chair had wheels, overreached, chair rolled, fell
## 37818                                                                                                                      EE states that he was standing on the door step at the front of the road squad bus when his foot slipped causing him to twist his right knee.
## 37819                                                                                                                      EE states that he was standing on top of a ladder looking in the ceiling, accidently stepped off edge of ladder and fell hitting bed railing.
## 37820                                                                                                                                                            EE states that he was stepping from a concret exercise pad to dirt when felt a pop in big toe onlt foot
## 37821                                                                                                                                                                              EE states that he was stepping over a flower bed and his left knee twisted-reinjuring
## 37822                                                                                                                   EE states that he was stocking produce cooler withcases of produce. He became very hot from activitybegan to lose balance and nearly passed out.
## 37823                                                                                                                                                                                             EE states that he was stressed and humiliated by immediate supervisor.
## 37824                                                                                                                                                                                                                  EE states that he was struck in the head by a pt.
## 37825                                                                                                                                                                                       EE states that he was struggling with an inmate & pulled a muscle in his leg
## 37826                                                                                                                                                                EE states that he was stung by a bee on the lt hand while unlocking a gate during a security check.
## 37827                                                                                                                                                                                                   EE states that he was stung by a bee on the lt side of his neck.
## 37828                                                                                                                                                                                                                  EE states that he was stung by a bee on the neck.
## 37829                                                                                                                                                                                                     EE states that he was stung by a yellow jacket on his lt elbow
## 37830                                                                                                                                                                                                       EE states that he was stung by a yellow jacket on the rt leg
## 37831                                                                                                                                                                    EE states that he was stung by wasp while install-ing the burner assembly back into the boiler.
## 37832                                                                                                                   EE states that he was supervising a crew of inmatewhen one of them recieved a serious cut with the weedeater. EE got inmate's blood on his hand.
## 37833                                                                                                                     EE states that he was supervising inmates on b/ block, south unit when a fight betwwen two inmatesstarted and he and another EE broke up fight
## 37834                                                                                                                            EE states that he was supervising inmates on the farm squad. Inmates began to escape and he took appropriate action - post event stress
## 37835                                                                                                                                                    EE states that he was supervising inmates on work detail, the wind was blowing & blew something in his left eye
## 37836                                                                                                                  EE states that he was taking a roll of plastic wrap to the dumpster and could not see. He fell off the dock and fell about 4 feet, fractured toes
## 37837                                                                                                                                EE states that he was taking down choir shells the top section released swung down hitting EE on head knocking EE to the ground. ()
## 37838                                                                                                                                                                  EE states that he was taking property up the stairin segregation when he states he hurt his back.
## 37839                                                                                                                                                                          EE states that he was taking sanitation checklist to a dorm and hit lt knee aganist bench
## 37840                                                                                                             EE states that he was talking to the yard man whenthe chair in the control area bumped the cover on the mantenance box and the door fell on top of hea
## 37841                                                                                                                                     EE states that he was talking w/ inmate when inmate hit him up side of the head, threw EE against the metal bed and kicked EE.
## 37842                                                                                                                              EE states that he was transporting inmate to med- ical-triage at eastern corr when his right ring finger got caught in the wheelchair
## 37843                                                                                                                              EE states that he was traveling south on tryon street, in the 3500 block when his state truck wasstruck from behind by another truck.
## 37844                                                                                                                    EE states that he was trying to get a computer network working and moved the tower computer to the desk & felt a "stabbing pain" to his l/back.
## 37845                                                                                                                                            EE states that he was trying to go into master control and pulled on the door of master control and jammed his lt wrist
## 37846                                                                                                                EE states that he was trying to handcuff inmate behind the back and inmate head butted him. When he got inmate handcuffed, inmate kicked EE in shin
## 37847                                                                                                                                                                                     EE states that he was trying to keep pt from falling when he injured his back.
## 37848                                                                                                                                        EE states that he was trying to open a tight-closewindow when hand slipped and went through window causing cuts on lt hand.
## 37849                                                                                                                            EE states that he was trying to restrain an aggressive inmate on the second floor. EE states he was scratched on the left side of face.
## 37850                                                                                                                                                                    EE states that he was turning lights offwith key when light switch shorted out and shocked hand
## 37851                                          EE states that he was unloading boxes of food items from a truck and carrying them to the dietary department. When he reached into the truck and pulled a box towards him to pick it up he injured his right shoulder. ()
## 37852                                                                                                                                                                               EE states that he was using a pair of scissors to cut up disposable officer clothing
## 37853                                                                                     EE states that he was walking across rear prking lot to headquarters when he triped over a yellow whell sotp that was lying on the pavement causing him to twist his rt ankle.
## 37854                                                                                                                         EE states that he was walking an inmate to the shower when he got to the last cell before the shower inmate threw a green yellow substance
## 37855                                                                                                                                  EE states that he was walking backwards observing inmates picking up trash and his lt leg fell in a hole that had been washed out
## 37856                                                                                                                                   EE states that he was walking between inner & outer fence conducting eis fence test, twisted ankle while walking on uneven rocks
## 37857                                                                                                                                 EE states that he was walking down the hall when he slipped and felled on some liquid detergent injurying his lt shoulder and hand
## 37858                                                                                                                         EE states that he was walking down the hall when his left foot slipped on wet floor causing his right foot to go thru a wired glass panal.
## 37859                                                                                                                                                           EE states that he was walking down the stairs on the north side of segregation and twisted his left knee
## 37860                                                                                                                                                           EE states that he was walking down the steps and his hand slid on the handrail pitching his body forward
## 37861                                                                                                                                       EE states that he was walking down the steps, whenhe slipped on some liquid, falling down four steps before catching himself
## 37862                                                                                                             EE states that he was walking from doughton residence hall where he has been filling the vending machines when his leg twisted causing him to fall. ..
## 37863                                                                                                                    EE states that he was walking into a block to change t. V. Channel when an inmate came out of cell dela1006 and hit him in jaw and stabbed him.
## 37864                                                                                                             EE states that he was walking into administative building to see his supervisor he had snow and ice on his boots and lost his footing falling rt shoul
## 37865                                                                                                                                                                           EE states that he was walking out the door when hehit his nose on the glass of the door.
## 37866                                                                                                                                                       EE states that he was walking through the slider door & hit the bars with his left hand, twisting left wrist
## 37867                                                                                                                                                                           EE states that he was walking toward his desk and his lt knee on the edge of desk drawer
## 37868                                                                                                                                                                  EE states that he was washing dishes and a glass broke and he cut his finger on the broken glass.
## 37869                                                                                                               EE states that he was washing the door to the walkin frezer when he scrapped his finger on his rt hand against a rusty screw that was protruding out
## 37870                                                                                                                    EE states that he was working in charlie dorm he bent over to pick up something when he felt a painin his forehead like he was bit by something
## 37871                                                                                                                                          EE states that he was working in the east unit control room when he fell down hitting his head due to a medical condition
## 37872                                                                                                                                                   EE states that he was working on a sewer line later that morning he noticed large swollen area on his rt forearm
## 37873                                                                                                                                                                                     EE states that he was working one on one with a client assisting with walking.
## 37874                                                                                                                EE states that he was working the road squad and bees or hornets were around an inmate. He alleges that on of the bees landed on him and stung eye.
## 37875                                                                                                             EE states that he went on unit iv yard after it had finish raining to open the yard EE stated he slipped in the mud causing him to fall on his lt elbo
## 37876                                                                                                                                         EE states that he went to exist out the door an inate was going out of and the door hit his rt arm causing it to be jammed
## 37877                                                                                                              EE states that he went to his truck to get a wrench to tighten a nut on a gas truck his foot slipped off the bumper and he fell onto pavement on back
## 37878                                                                                                                                                                EE states that he wore latex gloves for majority of the shift & afterwards he started breaking out.
## 37879                                                                                                                                            EE states that he yanked on the closet door and felt a pop in his neck and his two outside finger on his neck went numb
## 37880                                                                                                                                                                                                         EE states that head started hurting and developed swelling
## 37881                                                                                                                                                                 EE states that her finger got closed in the door as she was stopping an inmate from going out door
## 37882                                                                                                                                                 EE states that her finger got closed in the door of halifax dorm as she was stopping an inmate from going out door
## 37883                                                                                                                                                                        EE states that her foot slipped while lifting mop bucket full of water causing her to fall.
## 37884                                                                                                                                                                                                                   EE states that her hand was bitten by an insect.
## 37885                                                                                                                                                                                      EE states that her head struck the top of van whenshe was pushed by a client.
## 37886                                                                                                                                                                                                EE states that her lt thumb was caught in door frame when it closed
## 37887                                                                                                                                                EE states that her right arm and right wrist became swollen and painful while shooting rifle at recert training. ()
## 37888                                                                                                               EE states that her rt foot slipped and she felled against a cabinet while attempting to break the fall she experience pain in back and shoulder area
## 37889                                                                                                                                                                                                               EE states that his eye started to hurt while working
## 37890                                                                                                                                                        EE states that his fingers was caught between the lever on a power buffer while he was trying to adjust it.
## 37891                                                                                                                     EE states that his foot slipped off the inside board with approx 12 people coming down on top of his lt foot, trapping his lt foot under board
## 37892                                                                                                                                                           EE states that his foot was caught in the metal frame chair which caused him to fall and injure his back
## 37893                                                                                                                                                          EE states that his hand got hung on a piece of metal on the elevator causing door to close on EE fingers.
## 37894                                                                                                                                                                                                 EE states that his left knee had swollen after long baton training
## 37895                                                                                                                                                                            EE states that his lt leg stepped on the leg extension of a chair injurying his lt knee
## 37896                                                                                                                                                                                        EE states that his right lower arm was infected with a disease called MRSA.
## 37897                                                                                                                                                                                                                    EE states that his rt foot struck a block wall.
## 37898                                                                                                                                                                                                EE states that his skin was injured while trying to restrain inmate
## 37899                                                                                                                                            EE states that horse was going to kick; was moving away from enraged horse; tried to catch herself andtwisted her knee.
## 37900                                                                                                                     EE states that in an attempt to remove a solvent sodden dirty paint roller cover from a paint roller frame, acetone solvent splashed into eyes
## 37901                                                                                                               EE states that in the process of lifting books outof cstmrs baskts, turning them for scanning and placing them in bags has caused dmg to rt shoulder
## 37902                                                                                                                                                                            EE states that inhaling fiberglass fumes has resulted in sore throat and chronic cough.
## 37903                                                                                                                                                         EE states that injury occurred over several moves and changes in setting up her workstation... Right elbow
## 37904                                                                                                                                 EE states that injury occurred while restraining a violent inmate. Swollen lip, bruised left lower leg & abraded 5th right finger.
## 37905                                                                                                                                          EE states that inmate ask to see shoe sole and and when raised rt leg to allow inmate to see the sole EE injuried his hip
## 37906                                                                                                              EE states that inmate kicked him in the back w/ his foot and he immediately felt pain in his neck & middle of his back. Inmate was being escorted. ..
## 37907                                                                                                                   EE states that inmate punched him in the lt side of the face and about the head areas of contact are lt side between eye and ear has an abrasion
## 37908                                                                                                                                                                           EE states that inmate pushed him to the floor withthier hands. Bump on back of the head.
## 37909                                                                                                                                 EE states that inmate rushed her trying to exit the door inmate was forceably placed on the floor at which she scraped her fingers
## 37910                                                                                                                                                                                              EE states that inmate spit in his face through the window of the door
## 37911                                                                                                                                                                                           EE states that inmate spit on his arm and face with blood saliva mixture
## 37912                                                                                                                                                                                                                 EE states that inmate spit on the back of his head
## 37913                                                                                                                                EE states that inmate sprayed her with bleach water the bleach water got her on her lt arm which hadseveral places with broken skin
## 37914                                                                                                                                                                       EE states that inmate threw urine in face & on body causing possible exposure of contaminant
## 37915                                                                                                                                                                      EE states that inmate threw urine in face & on body causing possible exposure of contaminant.
## 37916                                                                                                                                                                      EE states that inmate was aggitated and became violent when trying to be placed in restraints
## 37917                                                                                                                                                                EE states that inmate was being escorted by sgt toelevator when inmate spit in EE face three times.
## 37918                                                                                                                                                                                                      EE states that inmates were mopping the floor and she slipped
## 37919                                                                                                                                                                                 EE states that it was a combination or lifting trash & vaccum cleaner into vehicle
## 37920                                                                                                              EE states that knee locked up and she fell againstcubicle partition hard enough to move it and knockitems on the floor, contusion to r shoulder, knee
## 37921                                                                                                                                                             EE states that lids fell on her head while in the stockroom & inmate was removing something from above
## 37922                                                                                                                                                                                                                        EE states that medications made him nausea.
## 37923                                                                                                                                                                                                EE states that metal protruding from garbage bag stuck in lower leg
## 37924                                                                                                                       EE states that neck and shoulder strains were inflicted when picking a heavy floor covering mat from a dolly cart & placing it on the floor.
## 37925                                                                                                                                  EE states that next day after being sprayed wit ocspray 2 bumps appeared on face one on neck. 2 bumprt side of face - one on neck
## 37926                                                                                                                                                                                                                                  EE states that no injuries noted.
## 37927                                                                                                                                                                                                                 EE states that no injuries were known at this time
## 37928                                                                                                             EE states that on 03/12/98, when transporting female inmate to a court trip located in ashebor nc, icy rd conditions, the state vehicle began to... ..
## 37929                                                               EE states that on 3/29 while lifting case of paper towel her rt wrist popped. On 5/17 same happened while moving a desk and on 5/19 while wiping out a desk same thing happened, her wrist popped ()
## 37930                                                                                                               EE states that on above date and time that he was struck by inmate as he attempted to restrain inmate inmate was resisting and swung his arms around
## 37931                                                                                                           EE states that on fri 5/17 @ appx 9:35pm microwavewas being used to pop popcorn. Paper towels used atbottom caught fire inside, causing smoke inhalation
## 37932                                                                                                             EE states that on fri. 4/10/98, inmate sharen lynch was entering the door of c-dorm when she steppedwrong, EE reached for her to keep her from fall-..
## 37933                                                                                                                   EE states that on thursday May 10, 2001 while pulling laundry cart down from the upper yard area the EE bumped her lt heel on metal part of cart
## 37934                                                                                                                                                EE states that on tue 5/21 @ appx 11am when stooping to put a saw down he felt his back grab/pull causing back pain
## 37935                                                                                                                                 EE states that on tuesday, 03/31/98 approx. 5:01amshe mis stepped on stairs in front of the inmfirmary and twisted her left ankle.
## 37936                                                                                                                           EE states that over a period of time all the lifting, positioning and feeding has caused some discomfort in back, wrists, and left foot.
## 37937                                                                                                                                      EE states that over a period of time of lifting heavy equipment, furniture & desk he developed a herna in his stomach area ()
## 37938                                                                                                                                                                     EE states that over long period of time that her work has caused severe pain to both her hands
## 37939                                                                                                                                                             EE states that over the last several months, she had noticed a rash on her face that will not go away.
## 37940                                                                                                                               EE states that patient became combative, EE attemp-ed to use nc hold, they both fell to the floor. EE hit rt knee, neck and lr wrist
## 37941                                                                                                                                              EE states that patient grabbed rt breast and sqeezed it really hard patient then grabbed lt hand andbent four fingers
## 37942                                                                                                                                      EE states that patient hit her in the eye with contact in. The patient was escorted to the quietroom by 5 male staff members.
## 37943                                                                                                                EE states that patient seemed as though he was going to fall backwards, put rt arm out towards him and he used EE arm to pull himself into the van.
## 37944                                                                                                                                                        EE states that patient was cunbative tried holding patient to change diaper; injured back and left shoulder
## 37945                                                                                                                           EE states that patient was trying to run out of door. EE put patient in therapeutic hold and they fell to the floor and he hit his elbow
## 37946                                                                                                               EE states that prior to shift assembly, he walked from restroom on wet floor, slipped. EE caught himself with his right hand, hurting middle finger.
## 37947                                                                                                                                                          EE states that providing medical coverage to inmates. Elbow began to swell and notice open wound on elbow
## 37948                                                                                                                                                       EE states that pt attacked him while he was takingpt to timeout room injurying lt side of face and rt elbow.
## 37949                                                                                                                                                             EE states that pt came at hitting EE w/fistsin EE's face, shoulder, head. Then pt rolled over on hand.
## 37950                                                                                                                                                                                         EE states that pt grbbed EE hand and twisted it. ***cts not w/c related***
## 37951                                                                                                                                                                                 EE states that pt walked by with staff and punchedher on the left side of her face
## 37952                                                                                                                                                                                          EE states that rash appeared on her arm. Rash then appeared around mouth.
## 37953                                                                                                                                                                                    EE states that rear door of cabinet fell and hit him in the middle of the chest
## 37954                                                                                                                                                                  EE states that repetative motion that she was exposed to caused an injury to her arm and shoulder
## 37955                                                                                                                                                                                                   EE states that repetitive motion from typing caused wrist injury
## 37956                                                                                                                                                                                              EE states that repetitive motion has caused injuryor pain to lt wrist
## 37957                                                                                                                                                                        EE states that repetitive motion of the computer keyboard has caused carpal tunnel syndrome
## 37958                                                                                                                                                                                                            EE states that repetitive motions caused injury to back
## 37959                                                                                                                                                                         EE states that repetitive use of cooking utensils cause pain in rt hand, arm, and shoulder
## 37960                                                                                                                                                                                                             EE states that repetitive use of hands has caused pain
## 37961                                                                                                                                                                            EE states that resident became aggresive and grabbed EE arm scratching and twisting it.
## 37962                                                                                                                          EE states that returning from icon she reached forhandle on back door to medical, & tripped, she fell on rt knee & rt. Side of head/face.
## 37963                                                                                                                                                                                                               EE states that rt wrist aches and won't stop hurting
## 37964                                                                                                                                       EE states that she accidently stuck her fifth digit on her left hand recapping a needle after giving an inmate an injection.
## 37965                                                                                                                   EE states that she and another EE were taking off cuff when an inmate jerked upward and caused her l hand to hit the trap door, causing a bruise
## 37966                                                                   EE states that she and another employee were washing beds. She and the other employee picked up the mattress when the other employee's end of the mattress fell, her right fourth finger popped.
## 37967  EE states that she asked a student (t. R. ) to go clean his room and he sat there and as she turned around to walk out, she heard monica briggs (EE) yell her name. Student then football tackled her hitting her lower back causing pain to go down her right le
## 37968                                                                                                                                                                                EE states that she bent down to pick up something when she felt a crack in lt knee.
## 37969                                                                                                                         EE states that she cannot attribute back injury to particular lift or pt, when she woke up this am her back hurt and was difficult to move
## 37970                                                                                                                                                        EE states that she cleaned officer's desk in am, noticed rash after washing hands, very irritated by 3:00pm
## 37971                                                                                                                                                                                 EE states that she closed a file cabinet drawer on rt hand injurying her rt thumb.
## 37972                                                                                                                                              EE states that she cut her thumb on a tab which supports the shelves inside a wall locker trying to adjust the shelf.
## 37973                                                                                                        EE states that she developed food poisoning from donovan's restuarant while in san diego, ca. EE was in san diego for a business trip for the university ()
## 37974                                                                                                                         EE states that she enterd the supply room in kitchen and got a cup and fainted and fell to the floor. Hitting right side of head on floor.
## 37975                                                                                                                                                                                                                    EE states that she fell at the top of the steps
## 37976                                                                                                                                                       EE states that she fell backwards while firing a shot gun at the range and injured her right knee and ankle.
## 37977                                                                                                                                                                                               EE states that she felled in the parking lot and injured her lt hand
## 37978                                                                                                                                                             EE states that she felled on steps of the office bldg injurying her chin, knees, rib, hand, and wrist.
## 37979                                                                                                                                                                          EE states that she felled when entering a door to the laundry room injurying her rt knee.
## 37980                                                                                                                                                                                                   EE states that she felt fainted while walking down the sidewalk.
## 37981                                                                                                                                                    EE states that she felt she was sitting at the desk in her office completing paperwork when she feltinner thigh
## 37982                                                                                                                          EE states that she felt some itch & pain on thigh area. Per supervisor EE was bitten by a brown recluse spider on her left thigh area. ()
## 37983                                                                                                                           EE states that she flipped out loading ramp to pick up hot food cart to take back to control kitchen & tommy lift hit EE in the rt side.
## 37984                                                                                                                                                                                    EE states that she got blood on her rt hand when she picked up a piece of paper
## 37985                                                                                                                                                                                  EE states that she had been experiencing pain tingling and numbness in both hands
## 37986                                                                                                                                                       EE states that she had been repositioning a clientand felt pulling in her chest and sharp pains in her back.
## 37987                                                                                                                                                                                  EE states that she had been working around residents that have mra on her unit ()
## 37988                                                                                                                            EE states that she had finished giving an injection and was attempting to place needle in sharp box her lt 2nd finger got needle struck
## 37989                                                                                                              EE states that she had raised the meat slicer to clean underneath and did not have the lifting arm in a locked position causing slicer to fall on arm
## 37990                                                                                                                                EE states that she had twisted her knee while working in the control room EE was offered medical attention twice they decided to go
## 37991                                                                                                                                                              EE states that she has pain in her right wrist and fingers caused by the repetitive nature of typing.
## 37992                                                                                                                                                                                                                       EE states that she has pain in her rt finger
## 37993                                                                                                                                                                                 EE states that she injured her back while lifting a mixing bowl filled with dough.
## 37994                                                                                                                                                                                             EE states that she injured her back while trying to restrain an inmate
## 37995                                                                                                                                                                       EE states that she injured her left leg while doing a technique during short baton training.
## 37996                                                                                                                                                                                     EE states that she injured her neck and back whiletrying to restrain a client.
## 37997                                                                                                                                                                                           EE states that she injuried her lt arm opening the door in the gatehouse
## 37998                                                                                                            EE states that she is not sure how this occurred, states any number of reasons that doing the cleaning on 3-2 could have pulled when moving beds on the
## 37999                                                                                                                                                                                                      EE states that she jammed her thumb while cleaningwindow seal
## 38000                                                                                                                                                                              EE states that she laid her hand on another ofc's arm & he grabbed & twisted her arm.
## 38001                                                                                                                                                                              EE states that she lost her footing while stepping into transfer van for tower change
## 38002                                                                                                                                                                                                         EE states that she missed last step and twisted foot/ankle
## 38003                                                                                                                              EE states that she opened the door in the closet to press a reset button, & scraped her arm against the doorway causing a laceration.
## 38004                                                                                                                                EE states that she opened the gate in the playyardand several wasp swarmed around her rt arm at least one wasp stung rt side of arm
## 38005                                                                             EE states that she picked up a phone set and a clipboard while conducting environmental rounds and bruised the ring finger on her left hand. States a blood vessel May have popped. ()
## 38006                                                                                                                EE states that she picked up a tv off the floor for inmate to vacum the room, while she was sitting the tv back down on the floor, it fell on l leg
## 38007                                                                                                                                 EE states that she ran into truck on cushman when the truck braked suddenly to keep from hitting a truck that pulled out suddenly.
## 38008                                                                                                                                                                              EE states that she received a needle stick while trying to draw blood from an inmate.
## 38009                                                                                                                                                              EE states that she received a razor back from an inmate and accidentally scraped her forearm with it.
## 38010                                                                                                                         EE states that she reported to her post on tower #5 when she started up the ladder she slipped off the second rung and twisted her rt knee
## 38011                                                                                                                                                        EE states that she slipped and fell on a wet flooroutside of the sgt.; s office door in the j-208 building.
## 38012                                                                                                                                                                       EE states that she slipped and fell on concrete floor due to a spill on the cafeteria floor.
## 38013                                                                                                                                                                                          EE states that she slipped and felled injurying her arm, hand, and wrist.
## 38014                                                                                                                                                     EE states that she slipped in liquid in dayroom inthistle cottage. She injured "left elbow, l knee, & l side."
## 38015                                                                                                                                                                                   EE states that she slipped on a metal ramp and injured her rt ankle and rt knee.
## 38016                                                                                                                                                                                              EE states that she slipped on the steps in the control booth and fell
## 38017                                                                                                                                                                                                                       EE states that she smelled fumes. No injury.
## 38018                                                                                                                                                                                                     EE states that she started to have increasing pain in lt wrist
## 38019                                                                                                                   EE states that she started to move a table and that an inmate didn't realize what she was doing he in turn pushed another table trapping rt hand
## 38020                                                                                                                               EE states that she stook an inmate down and it wasconfirmed inmate tested postive for MRSA. EE notica spot on her nose, sent to hosp
## 38021                                                                                                                               EE states that she strained her back picking up the fan or hose or running up the corrider to a emergency call. Strained lower back.
## 38022                                                                                                                                                                                EE states that she struck her rt shoulder on a hotbox that was on the serving line.
## 38023                                                                                                                                          EE states that she took a short cut to building when her foot slipped from under her causing injury to back, toe and leg.
## 38024                                                                                                                                                                      EE states that she tripped and fell flat on teh ground hitting hands and knees during fall ()
## 38025                                                                                                                                                    EE states that she tripped and felled over a laundry bag that was on the floor causing injury to her rt finger.
## 38026                                                                                                                 EE states that she tripped on some steps and whiletrying to keep herself from falling she injured her rt arm, rt shoulder, rt hip, and lower back.
## 38027                                                                                                                             EE states that she turned her ankle after she lost her balance while working with 2 clients in the activity room. Injured right ankle.
## 38028                                                                                                                                                      EE states that she turned in a swivel office chair and struck her rt temple area on the corner of the printer
## 38029                                                                                                                                                                EE states that she turned the buffer on and lost control of it. Pinky got caught between the buffer
## 38030                                                                                                                        EE states that she twisted her back when walking on pallets in the game area of the carpentry shop and last pallet slid bc it was on wheels
## 38031                                                                                                                                                          EE states that she twisted her knee while leaving out of the dining hall from her post at the servinline.
## 38032                                                                                                                                                                           EE states that she twisted her lt ankle while stepping up on some bars to turn on a fan.
## 38033                                                                                                                                         EE states that she was assisting a client into herwheelchair and her finger got caught in the foot box when she closed it.
## 38034                                                                                                                                                                                          EE states that she was assisting client when the client spit in her eyes.
## 38035                                                                                                                                       EE states that she was assisting client with bath-ing. The client was standing up, fell to the floor and EE assisted him up.
## 38036                                                                                                          EE states that she was assisting client, lost foot-ing, fell face forward. EE reached to break the fallwith left hand and caught client pulling lt should
## 38037                                                                                                                                                                               EE states that she was assisting customers when she fell on unlevel portion of floor
## 38038                                                                                                                                                                     EE states that she was assisting to place client on trolley and felt a pull in her lower back.
## 38039                                                                                                                                          EE states that she was at condrotl desk of f- dormitiry when a rock was thrown out of f1 wing and hit her across the head
## 38040                                                                                                                                                                                 EE states that she was attacked by a pt which caused injury to her lt leg and knee
## 38041                                                                                                                     EE states that she was attempting to break up a fight with 2 inmates. EE was injured whe she was trying to subdue inmate. Injury to right arm.
## 38042                                                                                                             EE states that she was attempting to close the inmate trapdoor when he grabbed her through the trapdoor pulling her arm inside the cell and she strugg
## 38043                                                                                                                        EE states that she was attempting to enter the moving patrol vehicle when her weight shifted to her lt leg and she felt pain in her lt knee
## 38044                                                                                                                        EE states that she was attemting to lift up cubicle that had fallen over. While attempting to lift up cubicle it fell back on hand and foot
## 38045                                                                                                             EE states that she was bending down by door of segration window to place cooler on floor, when moving in upright position, she hit the middle of her..
## 38046                                                                                                                                     EE states that she was bending down to write her name and hse heard something pop in her neck and noted swelling on left side.
## 38047                                                                                                                                                                          EE states that she was bent over to ask the station officer something and couldn't get up
## 38048                                                                                                                                                                                              EE states that she was bitten by a unknown insect on the rt lower leg
## 38049                                                                                                                                                                                                              EE states that she was bitten by client on the wrist.
## 38050                                                                                                                                    EE states that she was bitten on the lt hand finger by a cat while she was trying to restrain it for a routine medical problem.
## 38051                                                                                                                                                                            EE states that she was burned on the lt hand by an inmate accidentaly spilling hot soup
## 38052                                                                                                                               EE states that she was carrying a big stack of plates when she slipped in water on floor and fellthe dishes landed on her left hand.
## 38053                                                                                                                                                                                           EE states that she was cleaning a pizza oven and she inhaled the vapors.
## 38054                                                                                                                                                                                                   EE states that she was cleaning when her lt breasthit bed frame.
## 38055                                                                                                                     EE states that she was cleaning windows and the blind wand was broken. As she washed windows, the broken end of wand jabbed into her left arm.
## 38056                                                                                                                                         EE states that she was climbing a ladder to changea lightbulb when she fell, hitting her back againsa dressing room bench.
## 38057                                                                                                                                                                                       EE states that she was climbing stairs when her rt knee twisted causing pain
## 38058                                                                                                                            EE states that she was closing a window that was struck to secure a door, when the glass broke and shattered cutting her right forearm.
## 38059                                                                                                                                                                     EE states that she was closing gate to yard beside rt thumb got slammed b/t the pole and hinge
## 38060                                                                                                                           EE states that she was coming out of a stall in the ladies restroom when a piece of metal caught her apron and she slipped on wet floor.
## 38061                                                                                                                            EE states that she was coming out of the workshop with a client. Client tried to run, EE reached to intervene and her right arm popped.
## 38062                                                                                                                                                                   EE states that she was completing a perimeter check when she notice something bit her on her leg
## 38063                                                                                                                                    EE states that she was crossing the road behind dd dougherty building to the library when she slipped in icy pavement and fell.
## 38064                                                                                                                                                EE states that she was crushing medication with atwist top crusher & while turning top of crusher felt pain in hand
## 38065                                                                                                                                    EE states that she was cutting temporary id cards when she looked up at an inmate and cut through the paper and into her finger
## 38066                                                                                                                                                          EE states that she was descending stairs coming off the wall at t-8 when she slipped on the ice and fell.
## 38067                                                                                                                               EE states that she was directly exposed to oc pepperspray as mandated for certified correctionalofficers in new employee orientation
## 38068                                                                                                                     EE states that she was discussing the mental hlth status of an inmate when she turned to her rt and hit the edge of an open door. Above rt eye
## 38069                                                                                                                                EE states that she was doing data entry on agency's computer system -- old paper was in office---received insect bites on her body.
## 38070                                                                                                                                           EE states that she was entering the building when he stepped up over the threchold her lt knee twisted pulled and popped
## 38071                                                                                                                                                       EE states that she was entering the hall in the home that was being waxed and slipped, falling to her knees.
## 38072                                                                                                                     EE states that she was entering the lower f unit control room when the door slammed shut catching the tip of her rt middle finger b/t the door
## 38073                                                                                                                                                     EE states that she was exiting the control booth when her right hand was cut by a sharp edge on thedoor latch.
## 38074                                                                                                             EE states that she was exiting the unite electronic door, pushing her medicine cart out first, states as her body was exiting door, she was struck. ..
## 38075                                                                                                                                              EE states that she was filling medical chart exchange cassettes when it slipped and fell striking her lt leg and foot
## 38076                                                                                                                                                     EE states that she was getting a loaf of bread off of the bread rack when she hit metal rack with her forehead
## 38077                                                                                                             EE states that she was getting on the security vanand attempted to pull herself up onto the vehicle by using the dash board her rt arm hit into thedas
## 38078                                                                                                                   EE states that she was getting out of car walking to tower 7 when her rt foot turned on a rock she thought nothing of it at the time and cont on
## 38079                                                                                                           EE states that she was getting ready to sit down in one of the blue student chairs when it collapse and she fell back and hit her back on a bookcase. ()
## 38080                                                                                                                                                                                    EE states that she was going down the stairs when her foot slipped and she fell
## 38081                                                                                                                                                                                     EE states that she was going to her car and as she was walking she fell on ice
## 38082                                                                                                                                                                         EE states that she was going up stairs and missed step on uneven stairs, and fell forward.
## 38083                                                                                                                                                                             EE states that she was going up the stairs when she strained a muscle on her shoulder.
## 38084                                                                                                                   EE states that she was headed to line up walkinmg up the steps to tower 1 crossed the steps was startled slipped on the steps and fell backwards
## 38085                                                                                                                                             EE states that she was heating a plate of food in microwave. When she removed the plate, hot food dropped in her hand.
## 38086                                                                                                                                                                                                           EE states that she was hit in the head and face by a pt.
## 38087                                                                                                                                                                                                                  EE states that she was hit in the nose by inmate.
## 38088                                                                                                                                                                                                     EE states that she was hit on the rt side of face by a client.
## 38089                                                                                                                                                                                                 EE states that she was hit several times in the face by an inmate.
## 38090                                                                                                                                                  EE states that she was holding an infant while visiting a client home and later found out the infant had scabies.
## 38091                                                                                                                                                         EE states that she was in delta dorm doing some paper work when she noticed a small spiider on her rt hand
## 38092                                                                                                                                                                             EE states that she was in pepper spray training and had a severs reaction to the spray
## 38093                                                                                                                     EE states that she was in process of checking pumpnumber of gas tank in hickory, nc & missed a step causing her to fall and hurt her left knee
## 38094                                                                                                                       EE states that she was in restroom seated on the low tollet in the handicapped stall she was attempting to use toliet paper with her rt hand
## 38095                                                                                                                                                                            EE states that she was in the parking lot of the admin building removing maill from car
## 38096                                                                                                                                                            EE states that she was interviewing a patient when patient grabbed her by the neck and began chokingher
## 38097                                                                                                                                                                           EE states that she was itching severly and being biten. It only occurred during am hours
## 38098                                                                                                                                                                              EE states that she was kicked by an inmate while involved in spontaneous use of force
## 38099                                                                                                                   EE states that she was leaving admin building she stepped in a hole that was near sidewalk that leads to the parking lot twist her lt foot & leg
## 38100                                                                                                                  EE states that she was leaving the captains office round the corner and slipped on the wet floor she hit her head and broke her fall with rt hand
## 38101                                                                                                                                  EE states that she was leaving towers and slipped on ice and fell down bruised left wrist, back of head, back and buttocks, elbow
## 38102                                                                                                                                                                                    EE states that she was lifting a box of toilet paper when she injuried her back
## 38103                                                                                                                                EE states that she was lifting a client from chairwhen EE right arm was caught by the arm rest on the chair, contusion to right arm
## 38104                                                                                                                                                                                         EE states that she was lifting a client from the van onto the wheel chair.
## 38105                                                                                                                                                                                             EE states that she was lifting packages delivered by ups dob 5. 28. 56
## 38106                                                                                                                     EE states that she was lifting the tower trap doorto open and she felt a burning sensation around naval area on the right side of her stomach.
## 38107                                                                                                                                                                              EE states that she was observing inmates when she was hit in the face by a basketball
## 38108                                                                                                             EE states that she was obtaining urine from an inmate for a dipstick urinalysis EE states inmate setcup down on area that was unlevel and cup fell. ..
## 38109                                                                                                                                                      EE states that she was obtaining vital signs and helping with a code called who was suspected to have scabies
## 38110                                                                                                                 EE states that she was on an approved travel goingto a conferece in athens ga. They has stopped for a meal and EE lost balance getting out of car.
## 38111                                                                                                                                      EE states that she was on her way through the gatewhen it closed on her striking her rt leg & hitting rt side of her knee. ..
## 38112                                                                                                                   EE states that she was on the firing range for in service training and that she was unsure exactly how injury occured rt arm hurt after training
## 38113                                                                                                                     EE states that she was on the firing range for recertification, when she knelt & fired, the fire-arm kicked her backward injuring right ankle.
## 38114                                                                                                                        EE states that she was opening a sliding window inthe tower. Window was sticking as as she pushed, she felt a strain in her right shoulder.
## 38115                                                                                                                                                                              EE states that she was opening mail & a strong chemical smell came from the envelopes
## 38116                                                                                                                                                           EE states that she was outside back of medical on break when she was bitten by unknown insect on rt arm.
## 38117                                                                                                               EE states that she was passing out meds. A pt. W/ no warning suddenly has a projectile vomitting episode some vomit hit the inside of EE's left eye.
## 38118                                                                                                                       EE states that she was patrolling in preimeter #2 when she felt a sting on her rt eye lid she pulled down the visor and dust flew in her eye
## 38119                                                                                                                                                EE states that she was picking up tables performing a search for drugs a sharp pain ran through the lt side of back
## 38120                                                                                                                                       EE states that she was placing used suture and hemostat in sharps container suture caught outside rt finger puncturing glove
## 38121                                                                                                                                        EE states that she was practicing the handcuffing portion of the in service training was placing her rt arm behind her back
## 38122                                                                                                                         EE states that she was pulling charts for pt care when the file cabinet fell forward and pinned her between the cabinet injurying her back
## 38123                                                                                                                                                                 EE states that she was pulling on cord to close blind when it fell and hit her in the left temple.
## 38124                                                                                                                                                    EE states that she was pumping gas per vechile andgas blew back out of tank onto her lt arm and lt hand lt hand
## 38125                                                                                                                                                                                       EE states that she was pushing a heavy book truck when she injured her back.
## 38126                                                                                                                                                                               EE states that she was pushing resident chair & pulling footrest when injury occured
## 38127                        EE states that she was reaching down to pick up reqs off the printer located under her desk. She stood up to walk and immediateley stuck with an overwhelming sharp & peircing pain that prevent me from walking or standing up straight ()
## 38128                                                                                                                                                           EE states that she was relieving an officer at dorm I when she hit her right foot against the steel door
## 38129                                                                                                                                                    EE states that she was removing a paper from coprier machine, when she reached for paper something cut her hand
## 38130                                                                                                                    EE states that she was removing a staple from a document when the staple remover spring broke in the remover & the point stuck her index finger
## 38131                                                                                                                                  EE states that she was repairing a phone and the phone cord broke. The phone slipped from her hand and fell on her left thumb. ()
## 38132                                                                                                                                                                                                          EE states that she was repositioning a client in the bed.
## 38133                                                                                                                     EE states that she was responding to a medical emergency in the falcon unit canteen. Sh was running scross some broken grass, twisted her ankl
## 38134                                                                                                                         EE states that she was responding to code yellow. An inmate pushed her against the wall & she is notsure what hit her in the abdomen area.
## 38135                                                                                                   EE states that she was returning from a break in a training class at the raleigh training center and entering her seat when she suddenly fell on her stomach. ()
## 38136                                                                                                                                                            EE states that she was returning heavy hanging file cabinet the file slipped and popped her rt shoulder
## 38137                                                                                                                                                                           EE states that she was rising from a chair when she felt a sharp pain in her lower back.
## 38138                                                                                                                                                                      EE states that she was rolling a hose the nozzle flicked back and hit her in the r eye socket
## 38139                                                                                                                                       EE states that she was running back to her vehiclebefore shift line up, she stumble over a wooden log and twisted her ankle.
## 38140                                                                                                                 EE states that she was running down the hall to get to the bathroom in time, fell. She stated she put her hands in front of head to break her fall
## 38141                                                                                                               EE states that she was running to asst w/a sr. After the situation was under control EE escorted a female to adatc on my back. Felt pain in rt knee.
## 38142                                                                                                              EE states that she was searching inmates cell stepped up on inmates bed to search the inmates windowwhen stepped off bed herard rt knee pop gave away
## 38143                                                                                                                                EE states that she was securing weapon and returning to car when she slipped and fell on the ice and landed on right shoulder-pain.
## 38144                                                                                                                                EE states that she was sitting at the back seat ofa state vehicle, when another vehicle collided into the car that she was sitting.
## 38145                                                                                                                                                                                               EE states that she was sitting in chair and screws came out of chair
## 38146                                                                                                                                                          EE states that she was standing at a desk on unit when a pt came up behind her and struck her on thehead.
## 38147                                                                                                                                         EE states that she was standing at the entrance ofb pod, red unit, when an inmate ran towards her & kicked her right hand.
## 38148                                                                                                                      EE states that she was standing at the front entrance gate waiting for it to open. When she approached the gate to leave out she hit her left
## 38149                                                                                                                                                                                  EE states that she was standing at the line up when she felt faint and fell back.
## 38150                                                                                                                                           EE states that she was standing in the sally port at the construction site when an unidentified object flew into her eye
## 38151                                                                                                                   EE states that she was standing on catwalk when her rt leg began to go numb, then cramp. The next day at home, she noticed a reddish mark on leg
## 38152                                                                                                                                                                   EE states that she was standing on ladder closing a gap when she fell off ladder onto left hand.
## 38153                                                                                                                 EE states that she was stepping off the curb onto the street when a car came speeding by almost hitting her, she jerked back causing low back pain
## 38154                                                                                                                                                                                                     EE states that she was stung on the lt hand by a yellow jacket
## 38155                                                                                                                                                EE states that she was sweeping the steps & slipped and fell injuring her right arm/shoulder. Accepted rt shoulder.
## 38156                                                                                                                                                        EE states that she was taking trash to dumpster and fell on the steps that lead to the home economics bldg.
## 38157                                                                                                                                                                        EE states that she was talking and laughing when she blacked out and fell and hit her head.
## 38158                                                                                                                      EE states that she was talking on the phone turned in a chair to go back to talk with inmate seat of chair broke and she fell on her buttocks
## 38159                                                                                                                                                                                               EE states that she was trying to dip client's hand in parrafin bath.
## 38160                                                                                                                             EE states that she was trying to stop a client from running away from her when she stepped down off the sidewalk and twisted her ankle
## 38161                                                                                                                    EE states that she was unlocking the bathroom door and sthe latch from the bathroom was hard to movethe back of the latch hit her index finger.
## 38162                                                                                                               EE states that she was unscrewing a used 27 ga, needle from the syringe that was covered. The needlhad penetrated through sheath & stuck her lt hand
## 38163                                                                                                                      EE states that she was using food processor to cutlettuce. Some lettuce became caught in chute and she used her fingers to push lettuce down.
## 38164                                                                                                                                          EE states that she was walking across highly waxedfloor. She slipped and fell to the floor landing hard on her left knee,
## 38165                                                                                                                                                            EE states that she was walking across parking lot to building and she slipped on icy pavement and fell.
## 38166                                                                                                                               EE states that she was walking across the floor inmedical & slipped in some pooled liquid wax falling to the floor causing injuries.
## 38167                                                                                                                    EE states that she was walking between the chair and desk, her lt. Foot caught on leg of chair and she fell face forward on rt. Knee and palms.
## 38168                   EE states that she was walking by the barber who was shaving when he held out the razor towards her and she moved it out of his hand and the razor fell on his knee. When she moved it out of his hand the razor cut her middle right finger. ()
## 38169                                                                                                                                      EE states that she was walking doen the hall with staff member, when the staff member laughed, she felt saliva go in her eye.
## 38170                                                                                                                        EE states that she was walking down the sidewalk b/t housing units she slipped in slick mud on the sidewalk. EE fell on rt knee and lt hand
## 38171                                                                                                                                      EE states that she was walking down the stairs in the south unit and slipped down about 2 or 3 stairs on the heel of her feet
## 38172                                                                                                             EE states that she was walking down the stairwell when she tripped herself with her feet, she missed the first step and landed three steps down.... ..
## 38173                                                                                                                                                                            EE states that she was walking from her car to the building when she felt her knee pop.
## 38174                                                                                                                     EE states that she was walking from her car to thebuilding when her rt foot turned over and she fellon her knees first and then on her lt side
## 38175                                                                                                                                                     EE states that she was walking from kitchen into dayroom when her right leg slipped from a spill on the floor.
## 38176                                                                                                                                             EE states that she was walking from parking lot down steps to her assigned bldg when she slipped on icy steps and fell
## 38177                                                                                                                   EE states that she was walking in the parking lot and stepped on a rock, turned her left foot over fell and hit pavement, lt elbow and left knee
## 38178                                                                                                                    EE states that she was walking into an office and her foot got tangled in a dangling telephone cord and she fell on her rt knee and rt shoulder
## 38179                                                                                                                                                           EE states that she was walking into the north unit front door and the door shut on her rt hand/ fingers.
## 38180                                                                                                                                                             EE states that she was walking near mcbrayer 2 nursing station when she slipped on a just mopped floor
## 38181                                                                                                                                                                                     EE states that she was walking off airplane and felt a pinch(rocky plane ride)
## 38182                                                                                                                                                             EE states that she was walking on a wet floor, herfoot slipped and her left leg twisted injuring knee.
## 38183                                                                                                                                                 EE states that she was walking on sidewalk when her foot went off of sidewalk and she twisted to side of her foot.
## 38184                                                                                                                         EE states that she was walking on the lt side of the hallway on the third floor when her rt leg collapsed causing her to fall to the floor
## 38185                                                                                                                                                                    EE states that she was walking slowly when her rt foot slipped in patches of water on the floor
## 38186                                                                                                                      EE states that she was walking through quad doing a head count & one of inmate's foot locker was sitting out in aisle and she did not see it.
## 38187                                                          EE states that she was walking to meet with a teacher regarding a student when she stumbled in the rain over a small rock and fell on her right knee, causing an abrasion and later pain in her groin. ()
## 38188                                                                                                                                                      EE states that she was walking to the office building when she stepped off the edge of the sidewalk and fell.
## 38189                                                                                                                                              EE states that she was walking to the parking lot when she tripped on a rock; twisted her ankle and fell on her knees
## 38190                                                                                                 EE states that she was walking to work when her foot hit uneven pavement in the sidewalk and she fell. Surgery lft knee, 10% rating, $8, 689. 30, rating paid 9-12
## 38191                                                                                                                                               EE states that she was wallking on the sidewalk and stepped over some water and slid in some and fell on both knees.
## 38192                                                                                                                 EE states that she was wasing dish machine guard skirt with bleach and water to remove mold and buildup. Some of the liquid splashed into her eye.
## 38193                                                                                                                                                                           EE states that she was watering flower bed when she injuried her back dragging the hose.
## 38194                                                                                                                      EE states that she was wiping bread crumbs from underneath the bread warmer when her right ring finger struck across the corner of bread box.
## 38195                                                                                                                                                                                        EE states that she was with pain stomach back throwing up dizzy headed weak
## 38196                                                                                                                                                    EE states that she was working @ her computer and she experienced gradual discomfort and pain to herleft wrist.
## 38197                                                                                                                 EE states that she was working a dorm & walking around observing inmates when she felt a pain in the bottom of lt ankle & sent pain into her knee.
## 38198                                                                                                    EE states that she was working in the facility service bldg while lifting a mop bucket she did not bend her knees which caused injury to left side of chest. ()
## 38199                                                                                                                                                                                      EE states that she was working on unit 1 when she suffered leg and back pain.
## 38200                                                                                                                            EE states that she washed her hands with the soap at work & her hands began itching & burning, causing skin to crack and form blisters.
## 38201                                                                                                                               EE states that she went to lift a chart in the qa medical clinic the chart was thick and she felt a sharp pain on her lt inner elbow
## 38202                                                                                                                                                          EE states that she went to sit in chair not knowing that the lega was broken off and fell on the floor ()
## 38203                                                                                                                                                                                       EE states that she while typing she felt an internal pain in her right hand.
## 38204                                                                                                                                                                  EE states that she wnet to get broom. Got foot caught in barrier free lift cover & fell into tub.
## 38205                                                                                                                    EE states that she works the dormitory she has tightness in chest, asthma, irritation of vocal cords when she is exposed to smoke filled areas.
## 38206                                                                                                                                                                     EE states that shoulder muscle pain while restraining a patient. Legs, shoulder swollen (left)
## 38207                                                                                                                                                                                                EE states that shoulder was hurt during use of force with an inmate
## 38208                                                                                                                                                                           EE states that slipped and felled in water that was on the floor injurying her lt wrist.
## 38209                                                                                                                                                                                                EE states that some panels felled on him causing injury to the neck
## 38210                                                                                                                                                                                                   EE states that someone stepped on her foot; right foot fractured
## 38211                                                                                                                                                                                        EE states that someone was opening a door which struck her on the rt elbow.
## 38212                                                                                                                                                                                                                EE states that something stung him on his left leg.
## 38213                                                                                                                                                                                              EE states that stress from hostile work environment has caused injury
## 38214                                                                                                                                                                      EE states that student punched EE in the back, EE hurting from neck down calves of both legs.
## 38215                                                                                                                             EE states that students were out of control and would not comply w/staff. She states she is completely sore from restraining students.
## 38216                                                                                                                                                                                                    EE states that subduing an inmate he recd a bruiseon his rt arm
## 38217                                                                                                                      EE states that supervising inmates, advise them to return to thier rooms. One inmate became disob-eyed, became violent and trying to choke EE
## 38218                                                                                                                         EE states that suring annual firearm training he was shooting a revolver and when he fired it created a hot flash and burnt his upper lip.
## 38219                                                                                                                                                                                EE states that the building was full of offensive odors and irritants. No injuries.
## 38220                                                                                                                                                        EE states that the doors leading to op room was open and device control swung free striking EE on the face.
## 38221                                                                                                                                                      EE states that the elevator door shut on her upon entering; hit her left wrist; popped watch into herleft arm
## 38222                                                                                                                                              EE states that the elevator tool being used to perform surgical extraction of a tooth slipped puncturing the lt thumb
## 38223                                                                                                                                        EE states that the injury occured while moving boxes of old case files to the storage room he felt he had strained his back
## 38224                                                                                                                                                EE states that the patient hit him in the face with a closed fist ****wp is paid**** clmt wants to be paid weekly**
## 38225                                                                                                                                                                                   EE states that the pliers he was using slipped off a bolt and pinched her finger
## 38226                                                                                                                                                            EE states that the repetitive use of stapler and hole puncher has caused injury to her lt and rt wrist.
## 38227                                                                                                                                                                         EE states that the repetitive use of the keyboard has caused pain in both lt and rt wrist.
## 38228                                                                                                                     EE states that the supervisor slammed the ez-go door on his elbow, as he was responding to the fire alarm. EE and supervisor had words earlier
## 38229                                                                                                                                                                                                                     EE states that the tower door injured her back
## 38230                                                                                                                                               EE states that the trainee turned mower sharp and back and swung around and back wheel hit the inside of right foot.
## 38231                                                                                                                                                                        EE states that the vibration of the lawnmower caused the seat to rub against his lower back
## 38232                                                                                                                                                                                                             EE states that the wind blew some dirt into his lt eye
## 38233                                                                                                                                                                               EE states that there was a use of force by an in- mate; inmate kicked EE's left leg.
## 38234                                                                                                                                                                                       EE states that there was an alteration w/ pt #27929o-both fell on EE rt hand
## 38235                                                                                                                                                             EE states that this occured by repeatly opening & closing medication bottles all day on a daily basis.
## 38236                                                                                                                                                                                                         EE states that thumb of rt hand was hit while opening door
## 38237                                                                                                                                       EE states that trying to reposition patient in bed and experienced pain afterwards on right shoulder/scapula area right side
## 38238                                                                                                                                                                 EE states that two inmates were stripping the floors in medical when she inhaled some of the fumes
## 38239                                                                                                                                                                                                                      EE states that typing causes pain in rt wrist
## 38240                                                                                                                      EE states that upon entering the facility her rt hand began to itch, swell and whelp. Shortly after the lt hand and feet began to itch, whelp
## 38241                                                                                                                                               EE states that upon entry to segregaton unit for medication pass and seg. Rounds she exposed to verbal harassment ..
## 38242                                                                                                                                                      EE states that upon spraying an aggressive inmate, a small amount of spray got in his eyes and onto his face.
## 38243                                                                                                                                   EE states that was he was walking out of the maint-enance shop door, a black wasp flew down from a nest and stung his left hand.
## 38244                                                                                                                                                                                        EE states that was trying to control inmate, inmate throw something in face
## 38245                                                                                                                    EE states that was walking down the hall when the corner to sharply and hit the rt side of her head on the corner of the office wall partition.
## 38246                                                                                                                                                                                   EE states that when answering dorm phone, unknown fluids flew into her right eye
## 38247                                                                                                                                                         EE states that when he arrived at work and he was walking from his truck to the building he slipped on ice
## 38248                                                                                                                                                EE states that when he grabbed a roll of sewing thread to put away he was pierced by a needle in the roll of thread
## 38249                                                                                                                                                                     EE states that when he opened the door to the kitchen, that a fan blew trash into his left eye
## 38250                                                                                                                       EE states that when he pulled inmate away from sgthorn, after sgt horn got up and started towards inmate. EE fell on floor and injured back.
## 38251                                                                                                                   EE states that when he sat down in a chair in the gatehouse, the chair collapsed & he fell in the floor hitting against some lockers behind him.
## 38252                                                                                                                     EE states that when he turned on the light switch in cell bathroom his hand touched the switch & he felt electrical current thru lt hand/arm..
## 38253                                                                                                                 EE states that when he turned the lights on in b dorm, someone had put a razor blade on both sides of light switch and cut his right index finger.
## 38254                                                                                                                    EE states that when he was coming from medical records his pepper spray holder caught on door jamcausing his body to twist-felt pop in low back
## 38255                                                                                                                                EE states that when he was cutting a mop head in half, he twisted his right wrist-felt no pain immediately-3 hours later felt pain.
## 38256                                                                                                                                                        EE states that when he was walking down the steps, he slipped & he put his right hand down to catch himself
## 38257                                                                                                                                      EE states that when he was walking from the 14th floor down steps to the 13th floor he lost his footing and slide down stairs
## 38258                                                                                                                          EE states that when he went to allow another person to pass thru the door he lost his balance and fell forward and struck is rt shoulder.
## 38259                                                                                                                                 EE states that when leaving pharmacy, did not realize that the steps were so close to the door, when walked out fell. Strain back.
## 38260                                                                                                                                                            EE states that when loading a resident into the abmulance, she hit her head on ambulance. Injured head.
## 38261                                                                                                                   EE states that when resident was given a warning, she then picked up a stand that the lunch tray was on and swung it, hitting EE in rt upper arm
## 38262                                                                                                                         EE states that when she was assisting to put resident on the golf cart, she felt a pull across her back & down the right side of her back.
## 38263                                                                                                                                                             EE states that when she was helping to change & reposition a client, she felt pain in her middle back.
## 38264                                                                                                                                                                                                         EE states that when she was pulling trash she hurther back
## 38265                                                                                                                             EE states that when she went to open the pass through box of the control room to retrieve the keys and scraped her finger on the door.
## 38266                                                                                                                                                EE states that when she went to sit in the chair, the chair broke in half. Hit floor and her left side hit the desk
## 38267                                                                                                                                                     EE states that whiile she was walking thru the slider door, door suddenly closed striking her arm and shoulder
## 38268                                                                                                                                        EE states that while a client was swinging his arms, he accidentally hit her right pointer fingercausing pain and swelling.
## 38269                                                                                                                                                               EE states that while adjusting cutting height on mower, reached over & grabbes muffler by mistake ()
## 38270                                                                                                                                                                  EE states that while another EE was cutting a bolt with the torch a spark flew into his right eye
## 38271                                                                                                                         EE states that while arriving at unc hospital withinmate, he was getting out of vehicle and stepped in hole casuing pain in back and legs.
## 38272                                                                                                               EE states that while assigned as patrol officer assisting in closing north yard she entered the domintory she stumbled on the walkway causing injury
## 38273                                                                                                                    EE states that while assigned to post 7 he was letting inmate into the yard area. When he shut the gate he slammed his index finger in the gate
## 38274                                                                                                                                                                EE states that while assigned to security tower #3 he was stung or bitten by an insect on right arm
## 38275                                                                                                                                                                               EE states that while assisting a nurse with an inmate the inmate spitted in EE face.
## 38276                                                                                                                               EE states that while assisting a pt the chair rolled away from her while she was trying to sit down causing injury to her tail bone.
## 38277                                                                                                                                                                                             EE states that while assisting client she felt pain in her rt shoulder
## 38278                                                                                                                                                              EE states that while assisting in breaking up an altercation b/t two inmates she breathed in oc spray
## 38279                                                                                                                                                                                            EE states that while assisting in restraining an inmate he was injured.
## 38280                                                                                                                                                                                 EE states that while assisting in subduing an irate inmate, blood got on his arms.
## 38281                                                                                                                                                                             EE states that while assisting individual after bath, individual bit her on right leg.
## 38282                                                                                                                                                                              EE states that while assisting inmates cuttting underbrush he was bitten by red bugs.
## 38283                                                                                                                                                EE states that while assisting other officers withan inmate she injured her lt eye, both wrist, rt elbow and cheek.
## 38284                                                                                                                                                                               EE states that while assisting staff in lifting a client she felt a pop in her back.
## 38285                                                                                                                                                              EE states that while assisting the nurse with the patient feeding tube, the patient scratched her. ()
## 38286                                                                                                                                                                      EE states that while assisting the sgt in use of force he was bit by the inmate in two places
## 38287                                                                                                                                     EE states that while assisting unit one to remove couple of inmates from their cell, he injured his rt arm during use of force
## 38288                                                                                                               EE states that while assisting with a car because of a dead battery the hand brakes was released by mistake and the car rolled onto EE lt lower leg.
## 38289                                                                                                                                                                       EE states that while assisting with client her rt knee was pressing against tub causing pain
## 38290                                                                                                                      EE states that while assisting with f-block he became contaminated by fumes on the cell block. The fumes came from a mixture maintenance used
## 38291                                                                                                           EE states that while assisting with f-block, he became contaminated by fumes on the cell block. The fumes came from a mixture the maintenance staff used
## 38292                                                                                                                                                                                   EE states that while at his post tower 2, he got upset when encountered a shake.
## 38293                                                                                                                       EE states that while attempting to answer the phone & place a box on counter, she thinks she twisted her back, indicated sharp pain in back.
## 38294                                                                                                                                                EE states that while attempting to assist with an inmate having a seizure the inmate spit blood into EE facial area
## 38295                                                                                                                                        EE states that while attempting to bring an inmate under control the offcier twisted his lt knee while falling to the floor
## 38296                                                                                                                                        EE states that while attempting to gain control of an inmate he was struck in the face which caused his eyeglasses to break
## 38297                                                                                                                                  EE states that while attempting to handcuff inmatehe was punched in the mouth, & injured rt hand & neck while restraining inmate.
## 38298                                                                                                                           EE states that while attempting to make a right turn into driveway of the bank in camden co. Another vehicle struck rear of her vehicle.
## 38299                                                                                                                                                                   EE states that while attempting to open a window his rt hand slipped causing injury to the thumb
## 38300                                                                                                             EE states that while attempting to open the emergency fire door she was pushing the latch back into place with her lt foot she hurt hand when put back
## 38301                                                                                                                                                          EE states that while attempting to restrain inmatehe hit left knee on the floor and inmate landed on knee
## 38302                                                                                                                                                               EE states that while attempting to subdue an inmate he injured his lt thumb, rt forearm lt lower jaw
## 38303                                                                                                                               EE states that while attending in service trainingfor unarmed self defense he fell to the mat performing technique & twisted rt knee
## 38304                                                                                                                                                                   EE states that while attending training he was running thru the woods and was bitten by a spider
## 38305                                                                                                                                              EE states that while attending training he was walking through teh woods and a bee stung him on the back of the head.
## 38306                                                                                                               EE states that while attending training she was walking in the woods and bumped her left knee intoa tree that had fallen because she couldn't see it
## 38307                                                                                                                             EE states that while backing up on the catwalk, he slipped on the ice and fell. He states that after falling his back started to hurt.
## 38308                                                                                                                            EE states that while being properly relieved from the rp vehicle, she felt a sting sensation upon further examination a wasp was found.
## 38309                                                                                                                                               EE states that while breaking up a fight, he got some blood on the thumb of lt hand where he had a scratch/paper cut
## 38310                                                                                                        EE states that while bring 2 lge bags of trash out bldg, he slipped on 1st step of steps & came down in a unusual position causing pain in left foot & knee
## 38311                                                                                                                EE states that while bucking a downed tree with a chain saw he was atteempting to make an under side cut and felt a sharp pain in his upper lt back
## 38312                                                                                                                                                                   EE states that while building a rock wall around pool he slipped and pulled a muscle in his back
## 38313                                                                                                                                     EE states that while carrying a tatoo gun to the safe in operations he was struck in the finger by the point of the tattoo gun
## 38314                                                                                                                                  EE states that while carrying two can hook tools that are used to roll logs, he experienced sharp pain in lower side of his back.
## 38315                                                                                                                                                        EE states that while changing a client's bed linenhe lost his balance and fell on EE's lt arm and shoulder.
## 38316                                                                                                                                                                EE states that while changing client's pants, she fell on her face injuring her face and upper lip.
## 38317                                                                                                                                                                               EE states that while changing pulley on lawnmower the belt slipped and stuck lt hand
## 38318                                                                                                                                              EE states that while checking a steam leak under brooks wing he crawled in a fire ant pile & was stung numerous times
## 38319                                                                                                                                             EE states that while checking an inmate's cell the inmate squirted an unknown liquid substance whichhit the sgt's hand
## 38320                                                                                                                                             EE states that while checking an interior pipechase of dormitory two she struck her head on some low hanging duct work
## 38321                                                                                                             EE states that while checking on an inmate, EE opened inmate door; the inmate was behind the door and the EE was not aware the inmate was there. The..
## 38322                                                                                                                                    EE states that while checking the outside fence perimeter she stepped from the curb onto an icy spot & fell. Pain in lower back
## 38323                                                                                                                                                                                          EE states that while checking the perimeter fence, he twisted his r ankle
## 38324                                                                                                                                                  EE states that while checking work area on road squad, he came into contact with poison ivy on both arms and eyes
## 38325                                                                                                                                                                                   EE states that while cleaning a spill off floor he felt a pain in his lower back
## 38326                                                                                                                                   EE states that while cleaning the operatory she turned around and was stuck in rt thigh by a dirty bur sticking out of the table
## 38327                                                                                                                                                               EE states that while cleaning up office pulled upper part of back scooting computer across desk top.
## 38328                                                                                                                 EE states that while cleaning up the desk there was a spoll of thread on the desk picked it up and needle stuck in rt palm 3rd joint middle finger
## 38329                                                                                                                                                                                          EE states that while closing a cell door his finger was caught in between
## 38330                                                                                                                   EE states that while closing a door her foot slipped causing her to fall injurying wrist/knee **atty schlosser-atty fee end/claim**ag's# 00-2208
## 38331                                                                                                                                                      EE states that while closing a gate her hand was caught between latch and pole injurying her lt index finger.
## 38332                                                                                                                                                                        EE states that while closing a multi- tool his hand clipped and his cut his rt index finger
## 38333                                                                                                                                                             EE states that while closing the east yard access gate it fell on his rt arm & pulled him down w/ gate
## 38334                                                                                                                                                                          EE states that while closing window to dorm the window broke and shattered in facial area
## 38335                                                                                                                                                EE states that while collecting inmate food trays, an inmate threw his tray and hit her (smith) in the throat area.
## 38336                                                                                                                  EE states that while coming down stairs her foot caught on a buggy under stairs, lost balance, & jumped down remainder of stairs to avoid falling
## 38337                                                                                                                                         EE states that while coming in to work sidewalks were covered with ice slipped on ice and fell injuring back knee and foot
## 38338                                                                                                                                        EE states that while coming out of a tunnel he stepped and slipped on wet floor hitting his head on the side of the tunnel.
## 38339                                                                                                                     EE states that while coming out of the segregationunit he felt something blow into his eye. This scratched his eyeball which led to irritation
## 38340                                                                                                                          EE states that while coming through gatehouse door lost footing at edge of rubber mat ankle gave falling and striding rt knee on concrete
## 38341                                                                                                                                                    EE states that while conducting a cell search he dropped a bottle containing bleach and it splashed in his eyes
## 38342                                                                                                                                      EE states that while conducting a routine locker search an inmate grabbed and twisted her hand causing injury to the fingers.
## 38343                                                                                                                                       EE states that while conducting cell search the inmate pulled away from c/o that was conducting search and hit sgt in lt eye
## 38344                                                                                                                                                  EE states that while covering individual w/blanketat bedtime, individual reached back & scratched her right hand.
## 38345                                                                                                                          EE states that while cutting concrete with jack hammer the hammer jumped & hit right foot little toe. Bruise to little toe on right foot.
## 38346                                                                                                                                    EE states that while demonstrating an unarms self denfense technique he was rolled over landing on the point of his lt shoulder
## 38347                                                                                                                                                     EE states that while disposing of trash, she was bitten by something on back of rt wrist & back of rt elbow ()
## 38348                                                                                                                                                   EE states that while doing lifeguard drills in the morning, he struck his rt foot on the bottom of shallow water
## 38349                                                                                                                       EE states that while doing routine search in smoking day room he turned table upside down with both hands underneath table was a razor blade
## 38350                                                                                                                                                   EE states that while drilling holes in a brick wall the drill got hung causing injury to ring finger on rt hand.
## 38351                                                                                                                                      EE states that while driving a tractor a piece of wood fell against his left knee. Knee immediately was swelling and painful.
## 38352                                                                                                                        EE states that while driving patrol vehicle a drink bottle fell from his hands onto his lap while hewas opening it he ran into a light pole
## 38353                                                                                                                                                       EE states that while driving the state car he was he was struck on the rt side of the car by another vehicle
## 38354                                                                                                                                                                                          EE states that while driving the state car he was hit by another vehicle.
## 38355                                                                                                                                                                    EE states that while entering visitation she slipped on the floor causing stress to her rt knee
## 38356                                                                                                               EE states that while escorting an imnate to the 208 building in order for the inmate to be searched the inmate ran away from EE in an effort to avid
## 38357                                                                                                                                                         EE states that while escorting an inmate back to the cell the inmate stomped his foot injurying hisrt toe.
## 38358                                                                                                                                 EE states that while escorting an inmate from the loading dock, the kitchen door rapidly swung closed and struck EE's right elbow.
## 38359                                                                                                                                    EE states that while escorting an inmate to a cellshe ran into a window that was sticking out to farcausing injury to her face.
## 38360                                                                                                                             EE states that while escorting an inmate to segreg-ation, he stepped off the sidewalk and twisted his rt knee, causing knee to go out.
## 38361                                                                                                                           EE states that while escorting another inmate fromshower an inmate threw liquid substance that struck him in the face, chest, lower body
## 38362                                                                                                             EE states that while escorting visitors off the unit traveling between the east side fo building 100his rt leg slipped on wet grass and twisted his rt
## 38363                                                                                                                                               EE states that while exiting the building, she stepped down on uneven pavement & twisted ankle. Sprain to left ankle
## 38364                                                                                                                                                  EE states that while exiting the gatehouse, she slipped on mat outside the door and fell injuring her right hand.
## 38365                                                                                                                                        EE states that while feeding noon meal, inmate spoke to him and turned to reply when doot slammed back closed and on finger
## 38366                                                                                                                                                                  EE states that while filing a 3 inch stack of records she twisted her hand injurying her rt wrist
## 38367                                                                                                                                                                        EE states that while filing visitation lists in books she felt a bite on her upper rt thigh
## 38368                                                                                                                                                                                          EE states that while firing the shot gun the recoil bruised her right arm
## 38369                                                                                                                                    EE states that while firing the shotgun at burke during recertification the recoil of the weapon hit the rt shoulder five times
## 38370                                                                                                                                                                                              EE states that while getting out of van she felt a pop in her rt knee
## 38371                                                                                                                                                                    EE states that while getting up out of the chair he slipped on a wet floor and sprained rt knee
## 38372                                                                                                                       EE states that while going down steps between 7th and 8th floor he jammed his fingers up against thewall and rail. Responding to cover call.
## 38373                                                                                                                                                     EE states that while going into the breakroom his foot slipped and while trying to balance he injured his back
## 38374                                                                                                                                                        EE states that while going thru sliding door into sally port at master control, she was caught in the door.
## 38375                                                                                                                                                         EE states that while guarding inmates on the road squad an insect possibly a spider bit him on the rt hand
## 38376                                                                                                                                 EE states that while handing out cleaning supplies& gloves for cleanup that his arms, shoulder, chest and back broke out in a rash
## 38377                                                                                                                EE states that while he was assigned to road squad clean up he had stepped into woods to urinate and when he was exiting woods he stepped in a hole
## 38378                                                                                                                               EE states that while he was assisting in breaking up a fight, inmate rubbed up against EE's body andblood got on his hands and arms.
## 38379                                                                                                                        EE states that while he was attempting to remove hand cuffs from an inmate the inmate became aggressive and tried to pull his arm into cell
## 38380                                                                                                                                EE states that while he was attempting to restrainteh inmate's feet, the inmate smashed EE's hand against the edge of the cell bed.
## 38381                                                                                                                                                                                          EE states that while he was attending firearms training he hit his lt eye
## 38382                                                                                                                                  EE states that while he was attending unarmed self defense training for pert team his arm was twisted doing a bent wrist exercise
## 38383                                                                                                                        EE states that while he was checking inmateshe was walking down a flight of stairs and slipped he did not fall but he did twist his lt knee
## 38384                                                                                                                                                                        EE states that while he was conducting his 1900 hours check he hit his lt knee on cell bars
## 38385                                                                                                                                                                 EE states that while he was conducting pr-24 baton training during a take down shoulder dislocated
## 38386                                                                                                                                               EE states that while he was doing a routine yard check he stepped off the walk path onto stones and twisted his knee
## 38387                                                                                                             EE states that while he was escorting an inmate from recreation cell to inmates cell the inmate became assaultive and scratched officers arm spit in f
## 38388                                                                                                                  EE states that while he was handling an epi injec-tion pen that the needle of the pen fired sending the needle through the tip of his left thumb.
## 38389                                                                                                                                              EE states that while he was helping a nurse check an inmate in his cell, the inmate hit EE in the nose with his head.
## 38390                                                                                                             EE states that while he was making plumbing repairs in a confined space he was stooped and twisted for an extended period of time and felt it in his b
## 38391                                                                                                                                               EE states that while he was making routine rounds he was exposed to scabies and has contracted symptomatic condition
## 38392                                                                                                                                           EE states that while he was mopping the tower floor, he felt a sharp pain in his right lower shoulder in the joint area.
## 38393                                                                                                                             EE states that while he was patrolling his assigned area inside the dormitory, a bolt of lightning struck nearby thus striking the EE.
## 38394                                                                                                                     EE states that while he was performing a forward strike, using a short baton, during training, it felt like his muscle tore away from the bone
## 38395                                                                                                                                        EE states that while he was performing a step jab he struck a pad and at that time he felt something give in his lower back
## 38396                                                                                                                                                                                  EE states that while he was restraining an inmate he hurt his back lifting inmate
## 38397                                                                                                                                                                EE states that while he was restraining an inmate split directly into officer's face mouth and eyes
## 38398                                                                                                                   EE states that while he was running bloodhounds in the wood in columbus co the leash caught a low w bush & it came back and struck the EE rt eye
## 38399                                                                                                                                                                   EE states that while he was skinning insulation off wire the knife slipped cutting his left hand
## 38400                                                                                                                    EE states that while he was standing in the woods, supervising inmates on road squad, as they were cleaning out a ditch EE contracted red bugs,
## 38401                                                                                                                EE states that while he was stepping up on the side walk in front of the gate house, he boot heelcaught the edge of causing him to fall face first.
## 38402                                                                                                                                    EE states that while he was supervising inmates cleaning he had a pain in his lt knee when he tried to sit down his knee popped
## 38403                                                                                                                   EE states that while he was supervising inmates working alongside the roadway a mounted rearview mirror was thrown from privately owned vehicle.
## 38404                                                                                                                                                                 EE states that while he was suppervising inmates on the west yard, n insect flew into his left ear
## 38405                                                                                                                    EE states that while he was trying to break up a fight, blood was splashed and rubbed on uniform, right shoulder and left arm and back of neck.
## 38406                                                                                                                                                                    EE states that while he was trying to subdue an inmate he slipped and hit his hip on bed frame.
## 38407                                                                                                                           EE states that while he was waiting to see if they were working construction site due to weather he slipped and fell in the line up room
## 38408                                                                                                                                                                                      EE states that while he was walking down ramp in back of building he slipped.
## 38409                                                                                                                                                          EE states that while he was watching inmates on road squad he was working down a hill twisted his rt foot
## 38410                                                                                                                                                    EE states that while he was working drug k-9 on a search he had something happen to the ball area ofhis rt foot
## 38411                                                                                                             EE states that while helping the nurse an inmate EE opened the slider to the unit while EE was entering the unit the slider came shut on his rt should
## 38412                                                                                                                EE states that while his inmate road squad was cleaning debris on the side of tar river bridge heslipped down the hill on his feet and twisted knee
## 38413                                                                                                                                   EE states that while holding a cell door open radio felled and when tried to catch it from falling he felt a pop in lt shoulder.
## 38414                                                                                                                                                      EE states that while holding door open he felt something on his arm he noticed a red irritated two bite marks
## 38415                                                                                                                                                  EE states that while holding the door open with his arm aganist the door he felt something on his arm insect bite
## 38416                                                                                                                            EE states that while in a use of force he struck his fourth finger on door jam of the room 307 and finger began to swell and be painful
## 38417                                                                                                                          EE states that while in basic training he was practicing a take down technique & tried to break his fall by placing his arm under himself
## 38418                                                                                                                                                                                                    EE states that while in control room she was bitten by a spider
## 38419                                                                                                                                EE states that while in seg. Control, he was pulling curtain back & one of the curtain hooks popped off & hit him in the right eye.
## 38420                                                                                                              EE states that while in service baton training shewas attempting to make a middle strike with the baton aganist the pad, she then jammed her rt wrist
## 38421                                                                                                                       EE states that while in training they were requireto go into barn and EE tripped on plow and injuredboth legs. She cut her left leg on plow.
## 38422                                                                                                                 EE states that while in wing 2 bathroom he was investigating a broken sink in the bathroom when he slipped & fell on his lt leg & side.. Fx lt leg
## 38423                                                                                                                                    EE states that while individual was laying on the bed he got up and started hitting EE in face on her hand and arms. Lt and rt.
## 38424                                                                                                                                            EE states that while inspecting perimeter while assigned to yard he stepped on a clump of grass and his lt foot slipped
## 38425                                                                                                                                                         EE states that while installing new windows some chemical got on his hand and caused an allergic reaction.
## 38426                                                                                                                                  EE states that while instructing the annual firearms training class the noise from the rifle blast left ringing in both his ears.
## 38427                                                                                                                               EE states that while instructing unarmed self defenses, he damage his back. He stated that several hours later, back started hurting
## 38428                                                                                                                                           EE states that while involved in cell extraction training, he was assisting in entering a cell and injured his left leg.
## 38429                                                                                                                                EE states that while leaving work, she walked down the steps and fell scraping both knees and ankles, twisted lt ankle and rt wrist
## 38430                                                                                                                                                                                          EE states that while leaving work, she was going down the steps and fell.
## 38431                                                                                                                                                          EE states that while lifting a gallon of paint he felt a burning pain in the lower left side of his back.
## 38432                                                                                                                                                                                   EE states that while lifting a pan into the dish washer he smashed his lt finger
## 38433                                                                                                              EE states that while lifting a patient from his wheelchair to bed the patient began to slide & she grabbed him to prevent from falling hurt her wrist
## 38434                                                                                                                                                                                      EE states that while lifting a pt to be bathe she felt pain in her lower back
## 38435                                                                                                                                                                           EE states that while lifting bed, dressers & etc he felt sharp pain through his body. ()
## 38436                                                                                                                                                                                               EE states that while lifting client she felt pain in middle of chest
## 38437                                                                                                                                                                                                  EE states that while lifting inmate she strained l hand and wrist
## 38438                                                                                                                                                                                                  EE states that while lifting linen bag she injuredher lower back.
## 38439                                                                                                                                                                                       EE states that while loading a 90 gallon containerhe felt pain in lower back
## 38440                                                                                                                                         EE states that while loading a greenhouse fan ontotruck the fan rocked and hit EE on the left side of his head at the eye.
## 38441                                                                                                                                                                                    EE states that while loading and unloading truck he felt pain in his lower back
## 38442                                                                                                                  EE states that while loading food trays onto warren county jail van she was lifting the juice coolerthe weight came down and she was not prepared
## 38443                                                                                                                                                 EE states that while making a home visit to assistclient with nutrition client grabbed EE and EE injurying her leg
## 38444                                                                                                                                                                  EE states that while making a yard check he stepped on some unlevel ground an injured his rt knee
## 38445                                                                                                                                                                                  EE states that while making coffee the lid on the sugar container struck rt wrist
## 38446                                                                                                                                              EE states that while making copies at copier machine she bent over to put paper in machine and injured her lower back
## 38447                                                                                                                             EE states that while making field contacts she wasdriving the state car when when she was involved in an accident with another vehicle
## 38448                                                                                                              EE states that while making her routine check of shower area, she slipped on a wet shower curtain & fell to floor injuring left knee. 1st aide given.
## 38449                                                                                                                                                         EE states that while making round check in yard he slipped on frost covered ground and twisted his rt knee
## 38450                                                                                                                                       EE states that while making rounds at the dorm he tripped on an unknown object and twisted his lt ankle and then passed out.
## 38451                                                                                                                                        EE states that while making rounds he was closing the gate to the side of control booth and closed his fingers in the door.
## 38452                                                                                                             EE states that while making rounds in person dorm as he exited as he exited b block the door was closing real fast and the offcier tried to slow it do
## 38453                                                                                                                                       EE states that while making rounds of the yard he experienced a shortness of breath chest pains and a numbness in his lt arm
## 38454                                                                                                                                                                    EE states that while making rounds she twisted her rt ankle as she stepped upon 1 step of block
## 38455                                                                                                                                           EE states that while making routine check, inmate hit EE w/ fist on l shoulder, skinning his face and causing nose bleed
## 38456                                                                                                                         EE states that while making routine checks of the north unit yard she hit the outer part of her rt wrist on the door handle of a fire door
## 38457                                                                                                                        EE states that while making yard check she steppedinto a dip in the ground and fell as it twisted. She almost lost balance & felt knee pop.
## 38458                                                                                                                                                                      EE states that while monitoring the medical hallway, he slipped on wet spot and twisted ankle
## 38459                                                                                                                                                             EE states that while moving a basket of laundry inthe linen room, she felt a twinge in her lower back.
## 38460                                                                                                                                                          EE states that while moving a chair for better observation from the tower, he felt a pain in hisleft arm.
## 38461                                                                                                                                                                         EE states that while moving a metal wall locker down the stairs he twisted his right knee.
## 38462                                                                                                                                                                                                   EE states that while moving a table he felt a sharp pain in back
## 38463                                                                                                                                        EE states that while moving a trailer his rt hand was caught between the metal bar of the trailer injurying his ring finger
## 38464                                                                                                                                                                          EE states that while moving and repairing picnic tables, his right elbow started to hurt.
## 38465                                                                                            EE states that while moving boxes from old hr bldg to police station. EE states that when he got home & pulled off bulletproof vest, he noticed pain in rt. Shoulder ()
## 38466                                                                                                                                                                                       EE states that while mowing around a tree a pine needle got into his lt eye.
## 38467                                                                                                                                             EE states that while observing inmates on cwc crewwalked down bank & fell on old tree stump, injuring upper left ribs.
## 38468                                                                                                                                                      EE states that while on a pert call out due to an escape he was bitten by an unknown insect on his right leg.
## 38469                                                                                                                 EE states that while on break and standing in the groundskeeper building a gust of wind blew throughthe building blowing a foreign object into eye
## 38470                                                                                                                                             EE states that while on byard performing his assigned duties asbus operator while waliking his lt ankle turned on side
## 38471                                                                                                                                                             EE states that while on duty he picked up a bag out of a three wheel cart and injured his rt shoulder.
## 38472                                                                                                                                                                                                           EE states that while on front porch a bug flew into eye.
## 38473                                                                                                                       EE states that while on patrol he hurt his back going up & down stairs while conducting showers & inmate counts. Employee states that not us
## 38474                                                                                                                                                                           EE states that while on the loading dock, going down steps, he slipped on a patch of ice
## 38475                                                                                                                           EE states that while on the post of medical offcier as she was opening the outside medicla door an inmate pushed the door aganist the EE
## 38476                                                                                                                                                                EE states that while on vacation with clients she felt soreness in her chest while lifting clients.
## 38477                                                                                                                                           EE states that while opening a box of tacky fingerher hand slipped and hit the top of the box cutting her rt 4th finger.
## 38478                                                                                                                                                                               EE states that while opening a desk drawer his hand slipped injurying his rt finger.
## 38479                                                                                                                                                                                    EE states that while opening a desk drawer it fell on her finger on her rt hand
## 38480                                                                                                                                                                        EE states that while opening a file cabinet the cabinet flipped and injured rt index finger
## 38481                                                                                                                                                                                EE states that while opening a gate his finger wascaught between the bar and sleve.
## 38482                                                                                                                                                                                                   EE states that while opening the cell door he cut his left thumb
## 38483                                                                                                                      EE states that while opening the crash bar in the salley port which appeared she had pull it with a little force thus causing pain in lt side
## 38484                                                                                                                                                  EE states that while opening the gate, stepped down off the concrete on back of EE heel felt sharp pain in l back
## 38485                                                                                                                                                     EE states that while opening the kitchen double glass, he turned hit right ankle and felt a burning sensation.
## 38486                                                                                                                                     EE states that while opening the medication locker in the dormitory her lt wrist snapped and she experienced pain to her wrist
## 38487                                                                                                                                                   EE states that while participating in cell extrac-tion training, she fell on her left hip on the concrete floor.
## 38488                                                                                                              EE states that while participating in cpr refreshecourse he and his parner were doing the heimlich maneuver when he felt something pop on left chest.
## 38489                                                                                                             EE states that while participating in feet team training, during mock assault, EE was running, slipped and fell to ground and jamed finger into ground
## 38490                                                                                                                                                                              EE states that while participating in self defensetraining he felt sharp pain in back
## 38491                                                                                                                                    EE states that while participating in the ropes training course that he fell approx. Four feet backwards and landed on rt ankle
## 38492                                                                                                                   EE states that while participating in unarmed selfdefense class his partner was lifting him off the floor and jerked upwards on his lt arm while
## 38493                                                                                                                                        EE states that while participating in unarmed selfdefense training, he was dropped onto left knee. Lt knee has become stiff
## 38494                                                                                                                                                                    EE states that while passing medications she caught her right foot on rug, twisting right knee.
## 38495                                                                                                                EE states that while passing out handouts hit the marker board that holds the eraser, markers tearingthe shirt and scraping the rt side of her back
## 38496                                                                                                                                                                EE states that while passing out mail he dropped mail squated down to pick up and his knee went out
## 38497                                                                                                                           EE states that while performing checks of the institution doors, she slipped in the mud and twisted her right knee a fell injuring hand.
## 38498                                                                                                                                                         EE states that while performing his daily duties of repetitive typing and use of the mouse on the computer
## 38499                                                                                                                                                         EE states that while performing housekeeping duties, she notice a rash on her face that itches and redens.
## 38500                                                                                                                                                        EE states that while performing in a test her footturned causing her to trip and her knee locked up on her.
## 38501                                                                                                                       EE states that while performing leg kicks, knee strikes, wrestling and take down maneuvers, officer felt like he pulled a muscle in his back
## 38502                                                                                                                                         EE states that while performing regular duty a client in group home had pink-eye. EE has acquiredpossible lt eye infection
## 38503                                                                                                                                                                       EE states that while picking up breakfast trays in seg she closed the trap door on her thumb
## 38504                                                                                                                                               EE states that while placing contraband bags into the sgt's locker an unidentified object stabbed his rt lower thumb
## 38505                                                                                                                EE states that while placing inmate in cell on the15th floor while trying to secure inmate in hands cuff he scraped his finger on the floor or wall
## 38506                                                                                                                                                                         EE states that while placing needle in sharps box, pricked right index finger with needle.
## 38507                                                                                                                    EE states that while placing the medical record charts down her lt wrist was hyper extended causing grave pain to hand finger wrist and forearm
## 38508                                                                                                                                           EE states that while playing the role of an inmate the sheild offcier came in the EE put his hand up to block the sheild
## 38509                                                                                                                                                      EE states that while practing weapons retention he and his partner lost thier balance and fell to the ground.
## 38510                                                                                                                                                                                            EE states that while preparing a laundry bag he felt pain in lower back
## 38511                                                                                                                                                                        EE states that while preparing to install a door the viewer of the door struck EE in lt eye
## 38512                                                                                                                                                                          EE states that while pruning trees, came in contact with poison ivy on both legs and arms
## 38513                                                                                                                                                                                                   EE states that while pulling a bedrail she felt pain in rt wrist
## 38514                                                                                                                                                   EE states that while pulling a cart the handle came off causing EE to fall and the cart rolled atop of both legs
## 38515                                                                                                                                                                             EE states that while pulling a laundry cart off trailer he pulled a muscle in his back
## 38516                                                                                                                              EE states that while pulling a tent up from impact west that had been stired she had an allergic reaction from the dust mites in tent
## 38517                                                                                                                                                                         EE states that while pulling a wire through conduit a screwdriver struck him in the mouth.
## 38518                                                                                                                                                                                                EE states that while pulling an anchor he injured his lower abdomen
## 38519                                                                                                                                                                 EE states that while pulling on a cable wire it stuck him in the face causing injury to his lt eye
## 38520                                                                                                                                                                                                  EE states that while pushing a cover on pen he punctured lt hand.
## 38521                                                                                                                                                          EE states that while pushing the auto scurbber in to laundry on 6th floor, he felt pain in his lowerback.
## 38522                                                                                                                                                           EE states that while putting bedrail down for pt to get out of bed he struck his lt hand on the bed rail
## 38523                                                                                                                                                                      EE states that while putting milk on steam shelf the steam burned her fingers on the rt hand.
## 38524                                                                                                                                         EE states that while putting patient in therapeutic hold patient became combative, during the scuffle EE injured her back.
## 38525                                                                                                                                                                             EE states that while removing a client from a vehicle she pulled a muscle in her back.
## 38526                                                                                                                       EE states that while removing garbabe bags that were full he felt pain in his lower right back while lifting the bag up & out of receptical.
## 38527                                                                                                                      EE states that while removing hand cuffs from inmate the inmate jerked his hand back causing theofficer to strike her hand on upper trap door
## 38528                                                                                                                                                           EE states that while removing weight scale in and out of patrol car caused the injury to his rt shoulder
## 38529                                                                                                                                                                                                          EE states that while reporting for line up slipped on ice
## 38530                                                                                                              EE states that while responding to a officer needsasst. Call she tried to avoid a mud puddle btwn e/h dorms when she landed on her rt foot(see notes)
## 38531                                                                                                                                                         EE states that while returning keys to another unit a box lid struck her rt hand injurying her 4th finger.
## 38532                                                                                                                                           EE states that while riding with another officer he was hit from the rear by another vehicle causing injury to his back.
## 38533                                                                                                                                                                        EE states that while riding with co-worker in the state car another vehicle struck the car.
## 38534                                                                                                                EE states that while road squad #4 was picking up litter on hwy 601 south of monroe he stepped off side of the highway which was uneven and twisted
## 38535      EE states that while rolling her med cart, a wheel got stuck. She pushed and pulled it to release the wheel. On 3/29/2012 she almost lost control of the cart so she stopped it abruptly to keep the drawers from opening due to the speed she turned corner.
## 38536                                                                                                                                                                                       EE states that while running during training he felt pain in his groin area.
## 38537                                                                                                                                                                    EE states that while running from the parking lot to gatehouse he felt pain in his rt hip & leg
## 38538                                                                                                                                                                              EE states that while running in the yard, stepped in hole and fell into a gravel area
## 38539                                                                                                                                                                                             EE states that while running showers in c-wing the inmate spit on him.
## 38540                                                                                                                                                            EE states that while running to a code 300 she pulled her rt leg muscle from the knee area up to thehip
## 38541                                                                                                                                            EE states that while searching an inmate the inmate hit him in the face with fist causing injury to his lip and lt eye.
## 38542                                                                                                                                                                                                             EE states that while searching inmate he was assaulted
## 38543                                                                                                                                                   EE states that while seated in a chair in the control room the chair was broken it gave way and EE fell in floor
## 38544                                                                                                                  EE states that while serving the moring meal to the inmates assigned to the 13th floor 2 inmates bedan fighting. Was hit causing head to hit wall
## 38545                                                                                                                                EE states that while shaking a bean truck his footslipped and he grabbed the handle on the side of the trailor injurying his lt arm
## 38546                                                                                                                   EE states that while she & other ees were sitting in state vehicle at red light a car hit them from behind and took off. Low back & rt shoulder.
## 38547                                                                                                                                                             EE states that while she was assigned in the control area some type of article got into her rt eye. ..
## 38548                                                                                                                                     EE states that while she was attempting to set up a table to inventory inmates personal property the table dropped on her foot
## 38549                                                                                                                                                                  EE states that while she was changing a client he kicked her in the mouth and loosened her tooth.
## 38550                                                                                                                          EE states that while she was coming down stairs in vance a block her feet slipped out from under her when she hit the floor in some water
## 38551                                                                                                              EE states that while she was conducting a search of b block of force unit dayroom area slid finger aganist an object that was stuck was a razor blade
## 38552                                                                                                                                                                              EE states that while she was cutting meat for supper, she accidently cut left finger.
## 38553                                                                                                             EE states that while she was escorting inmate to recreation he ran the opposite way and grabbed something out of another inmates cell inmate kicked EE
## 38554                                                                                                                     EE states that while she was getting out of roving patrol vehicke to be relived her foot slipped causing her to hurt her lt elbow and shoulder
## 38555                                                                                                                                                        EE states that while she was getting out of roving patrol vehicle she slipped in the mud and hit the ground
## 38556                                                                                                                                            EE states that while she was just standing inside building where construction was being done something got into her eye
## 38557                                                                                                                         EE states that while she was leaving work she stepped off sidewalk and was walking toward gatehouse she stepped on a rock twisted rt ankle
## 38558                                                                                                                                                             EE states that while she was loading individuals on the van, the edge of the door cut the staff's leg.
## 38559                                                                                                                                                                           EE states that while she was on a step stool attempting to file folders on the top shelf
## 38560                                                                                                                                    EE states that while she was opwning the inner east gate her thumb was smashed as she lifted the tongue to open lt side of gate
## 38561                                                                                                                                            EE states that while she was performing basic careof individuals, she filling out papework, felt pain/swelling in thumb
## 38562                                                                                                                                                    EE states that while she was starting to work, shetripped over a bubble in the carpet & fell on her right knee.
## 38563                                                                                                                                       EE states that while she was supervising inmates in preparation of lunch time inmate came into the kitchen and attacked her.
## 38564                                                                                                                                                    EE states that while she was walking back into the building, stepped on a nail or screw. Injured left foot/toe.
## 38565                                                                                                                                                                  EE states that while she was walking down ramp leading f/medical she tripped and injured her knee
## 38566                                                                                                                                                           EE states that while she was walking out the door she slipped on a wet rubber mat and fell on her rt leg
## 38567                                                                                                                       EE states that while shooting the shotgun she injured her rt arm she states she has a small bruise and sore muscle refused medical treatment
## 38568                                                                                                                                                                                  EE states that while sitting at desk, mt brewington stepped across her right foot
## 38569                                                                                                                     EE states that while sitting down in her chair in the mailroom the chair rolled forward causing her to hit rt knee on lower corner of the desk
## 38570                                                                                                               EE states that while sitting in chair at gate post the back of chair suddenly gave in with a back motion, EE went into awkward position to not fall.
## 38571                                                                                                                                 EE states that while standing on stairsm she raised her rt hand and turnedm hittingher hip on the rail experiencing pain from hip.
## 38572                                                                                                                                             EE states that while stepping off the road squad bus he slipped and in an attempt to regain balancehe twisted his knee
## 38573                                                                                                                                                       EE states that while stepping off the road squad bus she hit her knee on the hand rail and felt her knee pop
## 38574                                                                                                                                                             EE states that while stopped behind 3 other vehicles on e. Market st, a minivan hit the state vehicle.
## 38575                                                                                                                                                                                         EE states that while stretching to clean window her left side became sore.
## 38576                                                                                                                                                EE states that while supervising a cwp squad he bent over to pick up a street sign and could not straighten back up
## 38577                                                                                                            EE states that while supervising the inmates laborcrew, she was sitting of the edge of the chair hershoes were slippery against the floor, she lost. ..
## 38578                                                                                                                                         EE states that while supervising the noon meal, she turned and felt her left knee snap. She couldn't put any weight on it.
## 38579                                                                                                                              EE states that while swatting a fly, he hit the light fixture causing the bulb to break causing glass to give minot cuts on rt wrist.
## 38580                                                                                                                                             EE states that while sweeping a pool area his feetwas caught under a rug causing him to fall and injury his groin area
## 38581                                                                                                                                                                         EE states that while taking keys to another building on the outside a bug flew into lt eye
## 38582                                                                                                                                                                           EE states that while taking resident to bed resident bit EE on fourth finger on lt hand.
## 38583                                                                                                                                                                     EE states that while taking the inmate dowm to thefloor to restrain him EE turned his rt knee.
## 38584                                                                                                                                   EE states that while taking vital signs on a patient, the patient reached out with both hands cuffed and grabbed EE in the groin
## 38585                                                                                                                                    EE states that while talking to an inmate the inmate began speaking in a loud voice spraying herin the facial area with saliva.
## 38586                                                                                                                                                                             EE states that while teaching cell extraction, he felt burning sensation to his knees.
## 38587                                                                                                                                                                        EE states that while throwing a discarded chair into dumpster he felt pain in his lt elbow.
## 38588                                                                                                                                            EE states that while tightening a drain his rt hand struck the edge of a water cooler causing a laceration to the hand.
## 38589                                                                                                                                                                      EE states that while transferring an inmate from bed to stretcher she injured her lower back.
## 38590                                                                                                                                                                            EE states that while transporting inmate & a deer ran into driver's side of the vehicle
## 38591                                                                                                                                                                       EE states that while transporting inmate and a deer ran into the drivers side of the vehicle
## 38592                                                                                                                       EE states that while transporting inmates from housing to rec yard, an inmate squirted a substance that had an odor of urine on the officer.
## 38593                                                                                                                                                    EE states that while transporting inmates he was struck by another vehicle causing injury to his back and neck.
## 38594                                                                                                                EE states that while transporting packages to postoffice, she was pulling & carrying a large packagethat was aprox. 50 lbs. Inj. Rt shoulder & arm.
## 38595                                                                                                                   EE states that while trouble shooting ac unit crawling across return duct he reached down to pick up his tool bag and felt pain in lower lt side
## 38596                                                                                                                                                                                EE states that while trying to assist officers with inmates he injured his rib cage
## 38597                                                                                                                                                                                       EE states that while trying to detain a supspect he was stuck in the face ()
## 38598                                                                                                                                      EE states that while trying to detain an inmate ina control area inmate shoved the front part of themetal cart into his legs.
## 38599                                                                                                                                                                            EE states that while trying to keep a pt from falling on the floor she injured her back
## 38600                                                                                                                                                              EE states that while trying to keep client from falling out of chair she injured her neck and rt arm.
## 38601                                                                                                                                                                EE states that while trying to put spikes into the ground with sledge hammer he suffered back pain.
## 38602                                                                                                                                                               EE states that while trying to restrain a combative inmate he hurt his rt hand and had bloodexposure
## 38603                                                                                                                                      EE states that while trying to restrain an inmate his forehead struck the edge of a window causing injury above his lt pupil.
## 38604                                                                                                                                                                      EE states that while trying to retrieve a decal on the floor she felt a pop in her lower back
## 38605                                                                                                                                                       EE states that while trying to subdue a fight she injured her lt wrist when she bumped into another officer.
## 38606                                                                                                                                                                             EE states that while trying to subdue an aggressive pt she injured her back and lt arm
## 38607                                                                                                                                                                                           EE states that while trying to subdue an inmate he was exposed to blood.
## 38608                                                                                                                                                                         EE states that while trying to tightly close a fire hydrant he felt pain in his lower back
## 38609                                                                                                                                                              EE states that while trying to unplug computer equipment she turned the wrong way injurying her back.
## 38610                                                                                                                    EE states that while turning the bus around he developed a sharp pain in his neck shoulder and lt arm he also states has numbness in his lt arm
## 38611                                                                                                                   EE states that while turning water back on in a cell, the screwdriver slipped off the screw and EE's hand went into the wall and bent EE's wrist
## 38612                                                                                                                                                                  EE states that while unlocking the gate, he turned the key and felt something pop in his rt wrist
## 38613                                                                                                                                                                                              EE states that while up the stairs her foot got hung under the stairs
## 38614                                                                                                                                                        EE states that while using force her was exposed to hepatitus b/c and received injury to right index finder
## 38615                                                                                                                                                 EE states that while using rt arm and shoulder to teach pic training EE developed tendonitis of the right shoulder
## 38616                                                                                                                                        EE states that while vacuuming floor, client was close to face, breathed in face then spit in face exposing mouth and eyes.
## 38617                                                                                                                                                                           EE states that while walkind down steps, r foot slipped on step and fell on cement floor
## 38618                                                                                                                     EE states that while walking an inmate the inmate unaware that the EE was passing by swung his arm around and struck the EE in the lt shoulder
## 38619                                                                                                                                                          EE states that while walking an inmate to his cellthe inmates struck EE on the lt side of face with fist.
## 38620                                                                                                                                                            EE states that while walking down a hallway he slipped and felled on a wet floor injurying his rt knee.
## 38621                                                                                                                                                                            EE states that while walking down b hall he slipped and fell in some water on the floor
## 38622                                                                                                                                                       EE states that while walking down the hall she slipped and felled injurying the back of her head and buttock
## 38623                                                                                                                                                     EE states that while walking in facility service bldg there was a step down & fell. Alleged injury to rt knee.
## 38624                                                                                                                         EE states that while walking in the main hallway he felt something pop in ankle as the day progessed the ankle began swelling and bruising
## 38625                                                                                                                                                                                                        EE states that while walking on a sidewalk his foot popped.
## 38626                                                                                                                                                     EE states that while walking on the highway he accidentally stepped off edge of pavement twistinghis rt ankle.
## 38627                                                                                                                                                                                    EE states that while walking on the sidewalk approaching the building, she fell
## 38628                                                                                                                      EE states that while walking quickly into the admin. Area his shoe caught the mat on the floor and he fell forward and landed with his lt arm
## 38629                                                                                                                                                                            EE states that while walking she slipped and felled on wet floor injurying her lt knee.
## 38630                                                                                                                               EE states that while walking through hallway, he slipped in a oily substance and his feet went apart and he felt a pop in his lt leg
## 38631                                                                                                                                                                                   EE states that while walking to another building something went into her rt eye.
## 38632                                                                                                                                                                                      EE states that while walking to check on inmates he felt pain in his rt knee.
## 38633                                                                                                                                               EE states that while walking to fill out 141's in d block, he slipped on a wet spot on the floor and jarred his back
## 38634                                                                                                                                                                    EE states that while walking to the processing area some foreign material blew into his lt eye.
## 38635                                                                                                              EE states that while walking, she heard something pop in her knee, her knee gave out. Later around 3pmher knee went out again, numbness in hands/arms
## 38636                                                                                                                                                                                            EE states that while wallking the north fence line he stepped in a hole
## 38637                                                                                                                          EE states that while wearing latex gloves checking the unit, both hands and wrists broke out, turned red and swollen looking with itching
## 38638                                                                                                                     EE states that while wearing latex gloves to move inmates from shower and recreation she experienced an allergic reaction to hands and fingers
## 38639                                                                                                                                                                                           EE states that while working an observation she was bitten by an insect.
## 38640                                                                                                                                                                  EE states that while working at his computer as he turned around his lt hand hit the file cabinet
## 38641                                                                                                             EE states that while working in dining hall two inmates began to fight when he arrived he took one inmate to the floor to cuff him inmate landed on hi
## 38642                                                                                                                                               EE states that while working in the gym she was rushing to the phone and while doing so she tripped over a black mat
## 38643                                                                                                                                                                                EE states that while working on a gate with a hand crank he injured his lower back.
## 38644                                                                                                                                                             EE states that while working on a metal tower it folded. Cutting and breaking third finger on lt hand.
## 38645                                                                                                                                  EE states that while working on the computer her shoulders began to hurt, hands cramping, neck stiff, and pain up/down shoulders.
## 38646                                                                                                                                                          EE states that while working on tower #3 at hoke correctional inst. He was bitten in the groin by insect.
## 38647                                                                                                                                   EE states that while working post 1 he tripped over a chair leg and hit his rt eye and upper cheek on the metal light switch box
## 38648                                                                                                                                                                                 EE states that while working road squad she stepped in a hole and injurd her foot.
## 38649                                                                                                                                                          EE states that while working road squad the officer stepped into a hole, fell and twisted his right knee.
## 38650                                                                                                                         EE states that while working she had finished calling the nurse for inmate medication when she went to sit back the leg came off the stool
## 38651                                                                                                                                                   EE states that wile weedeating at the football stadium he came in contact with poison ivy on his hands and arms.
## 38652                                                                                                                                                                                     EE states that working over long period of time has caused injury to wrist. ()
## 38653                                                                                                                            EE states thathe was standing in the unit control center when he became lightheaded he attempted to turn around and fell to his rt knee
## 38654                                                                                                                                                                              EE states the TB injection has caused a rash on her back, neck, chest, and face area.
## 38655                                                                                                                                                    EE states the abruptly turning of a steering wheelon a asphalt roller has caused a strain of his rt hand finger
## 38656                                                                                                              EE states the accident could have occured while hewas assisting staff transportation on inmate with a stretcher or during a use of force. Right knee.
## 38657                                                                                                                                            EE states the autoclave was not properly vented therefore she recd a first degree burn on her 3 fingers of the lt hand.
## 38658                                                                                                                                  EE states the bar door wasn't secure, EE attempted to secure and close the lock, it wouldn't close, tried harder, hurting rt hand
## 38659                                                                                                                                                                                                                EE states the bathroom door closed on her rt finger
## 38660                                                                                                                                                                                        EE states the carport collasped onto the state carwhile she was backing out
## 38661                                                                                                                                                                            EE states the cause of teaching has caused mental stress problems **ag file # 99-1106**
## 38662                                                                                                                                                                                EE states the chair bottom fell off and she hit the floor hitting her rt butt cheek
## 38663                                                                                                                                                                                                  EE states the chair slid from underneath EE and fell to the floor
## 38664                                                                                                                                                                                              EE states the chemical from de icer has caused dermatitis on rt hand.
## 38665                                                                                                                                                                                    EE states the chemical from pepper spray has causecoughing and her eyes to burn
## 38666                                                                                                                      EE states the chemical from the cleaning solution the inmates was using to clean floors were very strong and caused her eyes and nose to burn
## 38667                                                                                                                                                              EE states the chemical from the pepper spray has caused chest pain--this was during a training course
## 38668                                                                                                                                                                                        EE states the chemical use to clean floors has caused an allergic reaction.
## 38669                                                                                                                                                                                    EE states the chemical used to clean the floors has caused respiratory disorder
## 38670                                                                                                                                                                                       EE states the condition of the workplace has causeextreme anxiety and stress
## 38671                                                                                                                                                          EE states the continous of walking up and down stairs has caused his lt knee to swell and become painful.
## 38672                                                                                                                                                                                            EE states the cuticle of her fingernail was caught on a nail(rt finger)
## 38673                                                                                                                                                                                           EE states the daily work on keyboarding has causedpain of the rt forearm
## 38674                                                                                                                                                                                      EE states the daily work on the computer has caused tendonitis in the lt hand
## 38675                                                                                                                                                                                    EE states the day after pepper spray training she felt tightening in her throat
## 38676                                                                                                                       EE states the dept where she work was being paint which has caused irritation in the throat and nasal passage--also tightening in chest area
## 38677                                                                                                                                                                                                        EE states the door of a gate closed on her rt index finger.
## 38678                                                                                                                                      EE states the door of the storage building was stuck and as she was trying to open it her rt thumb was cut between the latch.
## 38679                                                                                                                                                                                                                   EE states the door to a van struck his rt elbow.
## 38680                                                                                                                                                                                                                       EE states the dumpster lid fell on EE's head
## 38681                                                                                                                                                                                                                EE states the duties from his job has caused stress
## 38682                                                                                                                                                                                                   EE states the excessive heat caused her face and nasal to swell.
## 38683                                                                                                                                                                                      EE states the excessive lifting and changing of clients has caused back pain.
## 38684                                                                                                                                EE states the excessive typing from keying payrollhas caused pain of the rt wrist **atty called - iw req wkly cks- 4th ck to atty**
## 38685                                                                                                                                                                                         EE states the excessive typing has caused pain and numbness of the rt hand
## 38686                                                                                                                                                                                                       EE states the excessive typing has caused pain in both hands
## 38687                                                                                                                                                                                EE states the excessive typing has caused pain in both wrist *attorney represented*
## 38688                                                                                                                                                                                           EE states the excessive typing has caused pain in rt hand and wrist area
## 38689                                                                                                                                                                                                     EE states the excessive typing has caused pain in the rt wrist
## 38690                                                                                                                                                                                                       EE states the excessive typing has caused pain thelt/rt hand
## 38691                                                                                                                                                                                     EE states the excessive typing on keyboarding has caused pain in rt hand/wrist
## 38692                                                                                                                                                                          EE states the excessive use of computer has causedcarpal tunnel syndrome of the lt wrist.
## 38693                                                                                                                                                                      EE states the excessive use of keyboarding has caused carpal tunnel syndrome in his lt wrist.
## 38694                                                                                                                                                                   EE states the excessive use of the typewriter has caused carpal tunnel syndrome of the lt wrist.
## 38695                                                                                                                                                                          EE states the excessive use of typing and using the mouse has caused pain to the rt hand.
## 38696                                                                                                                                                                                              EE states the exposure of fiberglass has caused respiratory problems.
## 38697                                                                                                                 EE states the exposure to epoxy paint has caused nausea and while on duty he felt fainted losing his balance and fell striking his head on a desk.
## 38698                                                                                                                                                                                              EE states the exposure to pepper spray has caused respiratory problem
## 38699                                                                                                                                                                      EE states the extra work of a writing assignment has caused pain and swelling of her rt hand.
## 38700                                                                                                                                                     EE states the fan blew papers on the floor, he bent over to picked the papers up and hit his head on the desk.
## 38701                                                                                                                                                                                                        EE states the fan motor failed from pile and hit right leg.
## 38702                                                                                                                                                                                      EE states the fastener from a briefcase came loosestriking his rt hand/finger
## 38703                                                                                                                                                                                        EE states the fire alarm went off causing him to hear ringing in his lt ear
## 38704                                                                                                                                                                                             EE states the firearm training has caused pain of the rt arm/shoulder.
## 38705                                                                                                                                                                                    EE states the flask dropped, and contents of the flask spilled on the right leg
## 38706                                                                                                                                                                                                 EE states the fume from the heater has caused dizziness and nausea
## 38707                                                                                                                                                                                    EE states the fumes from a chemical has causing breathing problems and headache
## 38708                                                                                                                                                                       EE states the fumes from a cleaning solution has caused her eyes to become irritated and red
## 38709                                                                                                                                                                                   EE states the fumes from a truck caused her to getan upset stomach and headache.
## 38710                                                                                                                                                                                               EE states the fumes from cigarette smoke has causebreathing problems
## 38711                                                                                                                                                         EE states the fumes from cleaning solution used toremove glue from floor has caused respiratory irritation
## 38712                                                                                                                                                                    EE states the fumes from cleaning solutions used to clean floor has caused respiratory problems
## 38713                                                                                                                                                                                                                  EE states the fumes from clorox has caused asthma
## 38714                                                                                                                                                                                     EE states the fumes from floor wax stripper has caused headaches and dizziness
## 38715                                                                                                                                                                                                 EE states the fumes from fresh paint has caused breathing problems
## 38716                                                                                                                                                                                                         EE states the fumes from glue has caused breathingproblems
## 38717                                                                                                                                                    EE states the fumes from the chemical use to wax the floor has caused burning in the throat and head congestion
## 38718                                                                                                                                                                                         EE states the fumes from the paint chemical has caused respiratory problem
## 38719                                                                                                                          EE states the fumes from the painted area started to make her feel faint. After leaving the area, she started feeling tight in her chest.
## 38720                                                                                                                                            EE states the gas fumes from a heater caused him to feel sick---EE was told by his supervisor to seek medical attention
## 38721                                                                                                            EE states the hall had been wet mopped no signs out, EE slipped on wet floor and feet flew out from under EE injured head. Cocyx, elboe, hand shoulder.
## 38722                                                                                                                                              EE states the harmful fumes from a chemical use torepair the air conditioning unit has caused a respiratory disorder.
## 38723                                                                                                                                                                                             EE states the harmful fumes from clorox has causedrespiratory problems
## 38724                                                                                                                                                                          EE states the harmful fumes from the clorox and floor stripper caused breathing problems.
## 38725                                                                                                                                                   EE states the harmful fumes from the substance used to install a carpet in building has caused breathing problem
## 38726                                                                                                                                                                                             EE states the harmful fumes from welding has caused breathing problems
## 38727                                                                                                               EE states the he was attemping to assist supervi- sor during an assault when he inhaled a copious amount of oc pepper srpay which caused respiratory
## 38728                                                                                                                                                                        EE states the he was attemping to cuff an immate when the inmate assaulted EE above the eye
## 38729                                                                                                                           EE states the he was conducting a locker search in the comman area. He reached aroung with his rt arm when his wrist struck o open razor
## 38730                                                                                                                                                          EE states the he was slicing meat when the safety guard came off causing middle finger to be cut by blade
## 38731                                                                                                                  EE states the heat in the Dr Office was high whichcaused him to faint and strike his chin on a chairhe was assisting with an inmate at Dr Office.
## 38732                                                                                                                                                                                       EE states the heel of his rt foot began to hurt and he could not walk easily
## 38733                                                                                                                                                                                                              EE states the high wind blew particles in his lt eye.
## 38734                                                                                                                                                                                                                 EE states the high wind blew sand into his lt eye.
## 38735                                                                                                                                                                         EE states the incident occurred while she was mopping the floor--she had pain in her back.
## 38736                                                                                                                                                                                                    EE states the inhlaed toxic substance from a cleaning solution.
## 38737                                                                                                                                                                      EE states the injury occured when she removed bagsof trash from the bldging she was cleaning.
## 38738                                                                                                                         EE states the injury occurred when she worked in dorm g; had to unlock door in room, diffculty in unlocking door, & pain in rt hand & arm.
## 38739                                                                                                                                                                                      EE states the injury occurred while emptying heavy containers into a dumpster
## 38740                                                                                                                                           EE states the janitor was spraying bleach on the sinks and fixture when some of the spray was blowninto his face and eye
## 38741                                                                                                                                                                                                    EE states the kids jumped on back and caused rt knee to go out.
## 38742                                                                                                                                                     EE states the leg of the chair broke and the wholechair fell over, the arm of the chair struck her in the back
## 38743                                                                                                                                                   EE states the leg of the chair where she was sitting gave way EE fell on right side injury to right side and arm
## 38744                                                                                                                                                              EE states the lid of a large metal trunk fell on left forearm, a employee was attempting to re-attach
## 38745                                                                                                                                                                                            EE states the lifting and carrying of a trash bag has caused back pain.
## 38746                                                                                                                                                                                                    EE states the lifting of a monitor box has caused pain in back.
## 38747                                                                                                                                                                                                             EE states the lifting of clients has caused back pain.
## 38748                                                                                                                                                                                                      EE states the lifting of clients has caused pain in her back.
## 38749                                                                                                                                                                                                        EE states the lifting of pt has caused him to havea hernia.
## 38750                                                                                                                                                                                                       EE states the lifting of trash cans has caused back problems
## 38751                                                                                                                                                                                     EE states the long hours from sitting at computer has caused stiffness in neck
## 38752                                                                                                                                                                                                   EE states the metal handle from a mop struck her in the face/jaw
## 38753                                                                                                                                                                        EE states the mgmt put pressure on her to sign a form she therefore suffered a panic attack
## 38754                                                                                                                                                                                                    EE states the motion from typing has caused pain in rt hand/arm
## 38755                                                                                                                                                                                        EE states the moving and carrying of furniture hascaused pain in lower back
## 38756                                                                                                                                                                                      EE states the moving and lifting of file cabinets has caused pain of the back
## 38757                                                                                                                                                                                                          EE states the normal moving of boxes, cubes, file cabinet
## 38758                                                                                                                                                                      EE states the observing of a staff member being assault has caused his blood pressure to rise
## 38759                                                                                                                                                                            EE states the pain caused when using keyboard for prolonged periods of time. Right arm.
## 38760                                                                                                                                                    EE states the patient became aggresive when he entered the room, and he patient kicked EE in the chest and face
## 38761                                                                                                                                                                                          EE states the patient became aggresive, threatenting, trying to his staff
## 38762                                                                                                                                                                                                                    EE states the patient hit employee in the chest
## 38763                                                                                                                                                                                                EE states the patient hit her in the head and caused blurred vision
## 38764                                                                                                                                                         EE states the patient resitated EE attempts to manually restrain patient. Patient and EE fell to the floor
## 38765                                                                                                                                                  EE states the patient was non-compliant and EE had to pick her up several times after she would drop to the floor
## 38766                                                                                                                                                                               EE states the pressure from using a buffing pad has caused an injury to her rt thumb
## 38767                                                                                                                                                                                                               EE states the prolong standing has caused foot pain.
## 38768                                                                                                                                                                                                                          EE states the pt struck her in the mouth.
## 38769                                                                                                                                                              EE states the pulling of medical record charts hascausing muscle strain of the shoulder and neck area
## 38770                                                                                                                                                                                        EE states the recoil from the shotgun has caused injury to his rt shoulder.
## 38771                                                                                                                                                                                                  EE states the recoil of a shotgun cause strain to her rt shoulder
## 38772                                                                                                                                                                EE states the repetition motion from cleaning and preparing cages has caused injury to his rt hand.
## 38773                                                                                                                                                         EE states the repetition motion from typing and handwriting has caused carpal tunnel syndrome in rt wrist.
## 38774                                                                                                                                                                   EE states the repetition motion of handling a rodding machine has caused injury to his rt wrist.
## 38775                                                                                                                                                                                             EE states the repetition use of computer has causepain of the lt hand.
## 38776                                                                                                                                                               EE states the repetitious motion of operating a control panel has caused tendonitis of the rt wrist.
## 38777                                                                                                                                                           EE states the repetitious work of operating the control room panel has caused pain in rt hand and wrist.
## 38778                                                                                                                                             EE states the repetitious work on the computer andtelephone has caused carpal tunnel syndrome of herrt hand and wrist.
## 38779                                                                                                                                                           EE states the repetitive motion from answer phone pulling charts, and typing has caused pain in lt elbow
## 38780                                                                                                                                                               EE states the repetitive motion from daily job task has caused carpal tunnel syndrome in both hands.
## 38781                                                                                                                                                                                EE states the repetitive motion from daily job task has caused pain in the lt elbow
## 38782                                                                                                                                                                             EE states the repetitive motion from daily job task has caused pain in the rt hand/arm
## 38783                                                                                                                                                                                EE states the repetitive motion from daily job task has caused pain in the rt wrist
## 38784                                                                                                                                                               EE states the repetitive motion from daily task has caused discomfort in her shoulders and neck area
## 38785                                                                                                                                                                                       EE states the repetitive motion from daily task has caused pain of both arms
## 38786                                                                                                                                                                           EE states the repetitive motion from daily work has caused stiffness and pain in fingers
## 38787                                                                                                                                                                      EE states the repetitive motion from driving has caused carpal tunnel of both rt and lt wrist
## 38788                                                                                                                                                       EE states the repetitive motion from entering datainto the computer has caused strain of the lt and rt wrist
## 38789                                                                                                                          EE states the repetitive motion from filling approx 60 gas cans daily, pouring gasoline in engine & continually screwing tops off/on cans
## 38790                                                                                                                                                 EE states the repetitive motion from her daily job duties has caused carpal tunnel syndrome in both arms and hands
## 38791                                                                                                                                                                         EE states the repetitive motion from job duties has caused pain and numbness in both wrist
## 38792                                                                                                                                                                EE states the repetitive motion from keying on the computer has caused pain in both lt and rt hands
## 38793                                                                                                                                                    EE states the repetitive motion from operating various office machine has caused depressed nerve of the lt hand
## 38794                                                                                                                                    EE states the repetitive motion from participatingin annual firearm training has caused pain and numbness in rt hand and finger
## 38795                                                                                                                                                                         EE states the repetitive motion from reaching trap door has caused pain in her rt shoulder
## 38796                                                                                                                                                           EE states the repetitive motion from running the forklift up and down a ramp has caused pain in hisneck.
## 38797                                                                                                                                                                                    EE states the repetitive motion from typing data has caused pain in both wrists
## 38798                                                                                                                                                                                 EE states the repetitive motion from typing has caused pain in both hand and wrist
## 38799                                                                                                                                                                EE states the repetitive motion from typing has caused pain in her fingers, hands, wrists, and arms
## 38800                                                                                                                                                                                        EE states the repetitive motion from typing has caused pain in the lt wrist
## 38801                                                                                                                                                                                         EE states the repetitive motion from typing has caused pain in the rt hand
## 38802                                                                                                                                                                        EE states the repetitive motion from typing has caused pain in the rt thumb, wrist, and arm
## 38803                                                                                                                                                                          EE states the repetitive motion from typing has caused tendonitis in the lt and rt wrists
## 38804                                                                                                                                                          EE states the repetitive motion from typing on computer has caused injury in hand, arms and shoulder area
## 38805                                                                                                                                                                EE states the repetitive motion from typing on computer has caused pain in the rt shoulder and hand
## 38806                                                                                                                                          EE states the repetitive motion from typing on the computer has caused bilateral wrist tendonitis(carpel tunnel syndrome)
## 38807                                                                                                                                                               EE states the repetitive motion from using a weedeater has caused numbness and tingling of both arms
## 38808                                                                                                                                                       EE states the repetitive motion from using the computer and typewriter has caused pain in the rt and lt hand
## 38809                                                                                                                                                      EE states the repetitive motion from using the computer has caused pain in the neck, arm, hand and right side
## 38810                                                                                                                                                                   EE states the repetitive motion from using the computer has caused pain of the lt wrist and hand
## 38811                                                                                                                                                                          EE states the repetitive motion from using tools has caused rt shoulder and rt hand pain.
## 38812                                                                                                                                                        EE states the repetitive motion from working with the typewriter and computer has caused pain in both wrist
## 38813                                                                                                                                                              EE states the repetitive motion from writing for hours during an interview has caused pain in rt hand
## 38814                                                                                                                                                    EE states the repetitive motion of casting a net during a routine fish sampling has caused pain of the rt elbow
## 38815                                                                                                                                                                                  EE states the repetitive motion of crushing pills has caused injury to her rt arm
## 38816                                                                                                                                                          EE states the repetitive motion of her daily duties in the mailroom has caused pain in her low back area.
## 38817                                                                                                                                                                           EE states the repetitive motion of installing cylinders has caused pain in the rt wrist.
## 38818                                                                                                                                                            EE states the repetitive motion of lifting books to place in boxes has caused injury of the rt shoulder
## 38819                                                                                                                                                                     EE states the repetitive motion of pulling charts has caused pain of the lt shoulder and neck.
## 38820                                                                                                                                           EE states the repetitive motion of pulling telephone and computer wires thru building has caused pain of the rt shoulder
## 38821                                                                                                                                          EE states the repetitive motion of removing adhesive from a cinder block using a putty knife has caused pain in rt elbow.
## 38822                                                                                                                                                                          EE states the repetitive motion of shearing christmas trees has caused pain of the rt arm
## 38823                                                                                                                                         EE states the repetitive motion of shifing videos tapes to one shelf to another has causing pain in her lt thumb and wrist
## 38824                                                                                                                                                           EE states the repetitive motion of turning a key and writing has caused pain and numbness of the rt hand
## 38825                                                                                                                                                       EE states the repetitive motion of typing has caused pain in the both hands pa: j william snyder (withdrawn)
## 38826                                                                                                                                                                                         EE states the repetitive motion of typing has caused pain in the lt wrist.
## 38827                                                                                                                                                         EE states the repetitive motion of using a pill crusher to crush pills has causes pain of the rt upper arm
## 38828                                                                                                                                                                     EE states the repetitive motion of using the computer has caused pain in both lt and rt wrists
## 38829                                                                                                                                            EE states the repetitive motion of writing, computer, and lifting boxes has caused severe painin the lt arm and lt hand
## 38830                                                                                                                                                                                 EE states the repetitive use from typing on computer has caused pain in both wrist
## 38831                                                                                                                                                                                          EE states the repetitive use of computer has caused pain in rt hand/wrist
## 38832                                                                                                                                                                                       EE states the repetitive use of computers has caused numbness in rt hand/arm
## 38833                                                                                                                                                                                                 EE states the repetitive use of rt elbow has caused constance pain
## 38834                                                                                                                                                                                                EE states the repetitive use of rt hand has causedpain of the wrist
## 38835                                                                                                                                                                         EE states the repetitive work from the computer has caused pain in wrist and shoulder area
## 38836                                                                                                                                                                                            EE states the repetive motion from job dutie has caused pain in rt hand
## 38837                                                                                                                                                          EE states the repititive motion from putting together a christmas float has caused pain of the lower back
## 38838                                                                                                                             EE states the routine manipulations of her job requires in preparing feed samples has caused painand swelling in her hands and wrists.
## 38839                                                                                                                                       EE states the rubber toe on her boot scrubbed across the floor, causing her to lose balance & fall on her left knee & elbow.
## 38840                                                                                                                                                                                         EE states the sally port door to the master gate closed on his lt shoulder
## 38841                                                                                                                                                                                   EE states the sally port door was accidently closed on him as he passed throught
## 38842                                                                                                                                                                                       EE states the she slipped and felled over a guard and injured her rt finger.
## 38843                                                                                                                                                                                                       EE states the she was washing client's face when he bit her.
## 38844                                                                                                                                                                                    EE states the shooting of a shotgun has caused injury to his upper arm(tricep).
## 38845                                                                                                                                                                                    EE states the shot gun recoil has caused pain and stiffness in his rt shoulder.
## 38846                                                                                                                                                                                                                 EE states the sliding door closed on his lt finger
## 38847                                                                                                                                                          EE states the smoke and the poison ivy from a forest fire has caused eye irritation and rash on both arms
## 38848                                                                                                                                                                                   EE states the spraying of bugs with roach spray has caused an allergic reaction.
## 38849                                                                                                                                                                                               EE states the spraying of insectide has caused respiratory problems.
## 38850                                                                                                                                                                                      EE states the stooping and bending while filing has caused neck and back pain
## 38851                                                                                                                                                                                                    EE states the strain from yelling has caused pain in his throat
## 38852                                                                                                                                                                                              EE states the strong fumes from paint his caused respiratory problems
## 38853                                                                                                                                                                                                           EE states the table leg came loose and fell on EE's feet
## 38854                                                                                                                                                                 EE states the top came off a jug filled with floorwax causing the wax chemical to get into EE eye.
## 38855                                        EE states the top right drawer of a desk she was cleaning out was stuck. When she pulled harder, drawer opened & bottom left corner of drawer struck EE in her right knee sending pain throughout leg & into upper body. ()
## 38856                                                                                                                                                                                       EE states the toxic fumes from the acid cleaner caused an allergic reaction.
## 38857                                                                                                                                         EE states the toxic vapors from the floor stripperchemical has caused irritation of the eyes, nose, throat, and chest area
## 38858                                                                                                                                                                 EE states the unlocking of the electro mechanical locking devices has caused pain of the lt thumb.
## 38859                                                                                                                                                                            EE states the use of drill has caused more pain in the elbow which was injured in 1997.
## 38860                                                                                                                                                                                                        EE states the use of gloves has caused a rash on both hand.
## 38861                                                                                                                                                                  EE states the use of non-latex rubber gloves has caused her to break out in patches on both hands
## 38862                                                                                                                                                                                              EE states the using of water and chemicals has caused a rash on hand.
## 38863                                                                                                                                                  EE states the wearing of her work boots has causedsoreness to her toe---EE states the boots rubs against her feet
## 38864                                                                                                                                                         EE states the wearing of his work boot has caused his lt foot to rub the top of the boot causing a blister
## 38865                                                                                                                                                                                              EE states the wearing of rubber gloves has caused a rash on lt wrist.
## 38866                                                                                                                                                                                               EE states the wearing of wet gloves has caused an allergic reaction.
## 38867                                                                                                                                                                                                             EE states the wind blew a door on her lt middle finger
## 38868                                                                                                                                                                                                    EE states the wind blew causing a grill top to close on rt hand
## 38869                                                                                                                                                                                                                 EE states the wind blew foreign object into lt eye
## 38870                                                                                                                                                                                                             EE states the wind blew his gun sling into his lt eye.
## 38871                                                                                                                                                                                                                EE states the wind blew some debris into his lt eye
## 38872                                                                                                                                                                                                                EE states the wind blew some debris into his rt eye
## 38873                                                                                                                                                                                          EE states the wind blew the door causing the door to close on EE lt thumb
## 38874                                                                                                                                                                                 EE states the wind blew the door causing the door to closed on his rt ring finger.
## 38875                                                                                                                                                                                                EE states the wind blew the door on her lt middle finger--severance
## 38876                                                                                                                                                                                                        EE states the wind blew the gate door on his lt hand/finger
## 38877                                                                                                                                                                                                         EE states the work related stress has caused hypertension.
## 38878                                                                                                                                                            EE states there was a computer desk that holds thekeyboard fell off the desk nad struck EE on the foot.
## 38879                                                                                                                                                                            EE states there was a lot of dust in her office after the fire. And she began to cough.
## 38880                                                                                                                                                                                                      EE states there was a strong odor in the building. No injury.
## 38881                                                                                                              EE states there was water on floor. He didn't see and slipped. As he was trying to catch himself hisfinger went through a hole in the fence & bent it
## 38882                                                                                                                                          EE states there were students fighting and he tried to break the fight up and one of the students bit him on the forearm.
## 38883                                                                                                                               EE states they had a student in a therapeutic holdon the floor, the student was able to free his hands and scratched EE in the face.
## 38884                                                                                                                                                         EE states they uses chlorox as a tooth irritant, it might be the cause of why her eyes have become swollen
## 38885                                                                                                                                                                                                  EE states tht she was performing job duties of continuous lifting
## 38886                                                                                                                                                       EE states thta he was working when he noticed that his little finger on his lt hand was swelling and hurting
## 38887                                                                                                                                                                                            EE states thumb started bothering her a week ago and sometimes locks up
## 38888                                                                                                                                                                                 EE states tjat while responding to a drill she pulled what appears to be tendions.
## 38889                                                                                                                                                                                                                                          EE states to scabies rash
## 38890                                                                                                                                                                        EE states toe of shoe caught on carpet causing her to fall on right knee and right elbow ()
## 38891                                                                                                                                                           EE states toileting individual, EE was holding on to the client, client fell to oneside without warning.
## 38892                                                                                                                                      EE states took patient out of bed to put in wheelchair. Patient began to twist and to turn causing EE to hurt his lower back.
## 38893                                                                                                                          EE states trainees were cutting down trees along fence line, one of the trees fell on the fence and linb snapped back hitting EE in l eye
## 38894                                                                                                                                                                                  EE states training during definine tactics while boxing exerienced pain to r hand
## 38895                                                                                                                                             EE states transferring and lifting clients for toileting and repositionsl through out of day casused pain in her wrist
## 38896                                                                                               EE states transferring client from the wheelchair to trolley to give client a shower. Client was moving; EE tried to grab legs and hit arjo. EE hurt right wrist. ()
## 38897                                                                                                                 EE states transferring dirty scissors from a pain that was too full to another pan when a drop of amerse from the new pan splashed into her rt eye
## 38898                                                                                                                                                      EE states trash bag had a hole in it and she slipped and fell on some food that fell out injuring left wrist.
## 38899                                                                                                                             EE states traveling north on person st when another vehicle came from her lt through a red light causing her to strike another vehicle
## 38900                                                                                                             EE states traveling with his job, EE tried to swerve to Miss A timber laying in the road, EE hit the timber, ran over it, car jolted, felt pull in bac
## 38901                                                                                                                   EE states tried to get a door open that was stuck EE pushed against door with left shoulder. EE stretched arm one hour later, felt 2 pops in arm
## 38902                                                                                                                                                                                                   EE states trimming tree limbs, pulling and pushing on tree limbs
## 38903                                                                                                                                                                                                                 EE states tripped and fell on the way into buildin
## 38904                                                                                                                                                                                  EE states tripped over lump in carpet and fell backwards, slammed door on rt hand
## 38905                                                                                                                                                                          EE states tripped over patient to floor in hallway, at treatment maall, landed on rt knee
## 38906                                                                                                                                                                                          EE states truck backed into car I was riding in. Both were state vehicles
## 38907                                                                                                                                                                                   EE states trunk lid fell on forehead his eye glasses were scratched by trunk lid
## 38908                                                                                                                                                       EE states trying to assist in transferring client to recliner scratched by client on upper right forearm. ()
## 38909                                                                                                                                                                                         EE states trying to catch client from falling straining right shoulder. ()
## 38910                                                                                                                                                      EE states trying to help a patient out of bed thatweight 400lbs or more, patient was fighting EE and coworker
## 38911                                                                                                                                                                                    EE states trying to keep patient from assualting him, EE injured his left calf.
## 38912                                                                                                                          EE states trying to put patient in agro lift chairthe chair would not turn around so put some force on the chair to get it to turn around
## 38913                                                                                                                                    EE states trying to redirect patient when she becaome combative with staff, tried to place hold on her, they fell to the ground
## 38914                                                                                                                                                                                                            EE states trying to restrain a patient and scrappdknee.
## 38915                                                                                                                                                                                                                                EE states trying to restrain inmate
## 38916                                                                                                                                       EE states trying to separate two juveniles that were fighting, EE was kicked in side of rt knee surg appr'd- to be scheduled
## 38917                                                                                                                                                                                                     EE states turned ankle and fell, right knee caught full weight
## 38918                                                                                                                                                                                                      EE states turned ankle on rock coming into work inparking lot
## 38919                                                                                                                                                                                                             EE states turning into a parking lot and hiting a sign
## 38920                                                                                                                                                                                                                       EE states twisted ankle stepping off carrier
## 38921                                                                                                                                                          EE states twisted body getting out of car and feltpain in lower back, down left leg behind knee and calf.
## 38922                                                                                                                                                                                                            EE states twisted right foot on edge of sidewalk/ground
## 38923                                                                                                                                       EE states two clients were horseplaying when one client pushed the other causing client to fall on EE injurying his lt knee.
## 38924                                                                                                                                                                      EE states two inmate were fighting, EE went to break it up, and was exposed to inmate's blood
## 38925                                                                                                                                                                         EE states two road squad bus collided causing his head to slam against the wall of the bus
## 38926                                                                                                                                                                                                                 EE states tying bag when hand started to swell. ()
## 38927                                                                                                                                                                                                                                   EE states types 5-6 hours daily.
## 38928                                                                                                                                                                                                                      EE states typing has caused pain in rt wrist.
## 38929                                                                                                                   EE states unloading a computer and she tripped over the iron handle on wagon they were using to transfer computers, she didn't fall, caught self
## 38930                                                                                                                                                                              EE states unloading a truck the conveyer rail cameapart and struck EE on the rt foot.
## 38931                                                                                                                                                                                           EE states upon entering a vehicle he felt a pain in his lower back area.
## 38932                                                                                                                         EE states upon entering building she smelled stronodor, preceeded with her office where she worked until announcement of evacuation. None.
## 38933                                                                                                                                        EE states upon entering cell during a clothing exchange he tripped over some clothes causing injury to his rt ankle and toe
## 38934                                                                                                                                                                                   EE states upon entering door to south wing my lt index finger was caught in door
## 38935                                                                                                                          EE states upon exiting the bathroom another staff member pushed door causing door to strike EE in the face--upper lip and chipped 3 teeth
## 38936                                                                                                                                     EE states upon opening the door to the mechanical room he stepped down causing foot to strike the ground injuring his rt ankle
## 38937                                                                                                             EE states upon relieving first shift EE on guard tower #5 EE begun having an anixiety attack becauseall EE could remember was what happended on.... ..
## 38938                                                                                                                                                                 EE states upon returning to campus EE alleges her the mold caused her to have an allergic reaction
## 38939                                                                                                                                         EE states upon returning to campus after the hurricane his nose was stuffy, eyes watery, headachedue to a molded building.
## 38940                                                                                                                         EE states use of force with pepper spray and he and inmate butted heads, as the inmate tries to tackle him, EE was expose to pepper spray.
## 38941                                                                                                                                                               EE states use of vibrating power tools over time has caused nerve damage from use of power tools. ()
## 38942                                                                                                                                                                                                                                EE states used of force with inmate
## 38943                                                                                                             EE states using a forklift to move a glass wall panel. EE held the glass panel, walking beside the forklift as it moved, pant leg caught under forklif
## 38944                                                                                                                                                                                                      EE states using a pair of state scissors and cut his lt thumb
## 38945                                                                                                                                                     EE states using hand tools has made hands, thumbs wrist and elbows hurt. Losing strength in grip of both hands
## 38946                                                                                                                                       EE states using weedeater, constant back and forthmovement, used for approx 45-60 mins, felt heavierand more diffcult to use
## 38947                                                                                                                     EE states utility trailer was in the way of metal detecting, after lifting front of trailer to move it, began to have sharp pain in lower back
## 38948                                                                                                                                      EE states van was parked with engine running and began to roll backwards, EE began to chase van, falling face first down hill
## 38949                                                                                                                  EE states vehicle he was driving stopped at a stoplight when another vehicle struck him form behind. Pain & soreness in neck, shoulder, and back.
## 38950                                                                                                                                                                    EE states vehicle pulled out in front on them and knocked the truck completely on its left side
## 38951                                                                                                                                         EE states vehicle was stopped for a vehicle to turn left, his vehicl was hit from the rear by another vehicle. Neck sprain
## 38952                                                                                                                                                                                       EE states waling towards door, grass wet, slipped, fell and landed on r side
## 38953                                                                                                                                                                                  EE states walked aroung desk to roll up car window, hit my knee on corner of desk
## 38954                                                                                                                                                                                                  EE states walked into a steel box injured the lt side of his face
## 38955                                                                                                                                  EE states walking across between 2 parked cars, stepped onto broken cement from construcion, r foot got caught in between crackes
## 38956                                                                                                                                             EE states walking across parking lot to stock room, slipped on black ice, had to walk outside due toconstruction work.
## 38957                                                                                                                                                                             EE states walking around building and was stung by yellow jacket, had allergic reation
## 38958                                                                                                                   EE states walking back in the building after returning from car and stepped on dirt and my foot slipped and my ankle turned towards the left. ()
## 38959                                                                                                                           EE states walking back to vehicle after cleaning weeds in a wooded area, stepped on a rock and his foot slipped, fell and sprained ankle
## 38960                                                                                                                                                         EE states walking between dorms to make dorm inspection she stepped into a hole & injured her right ankle.
## 38961                                                                                                                                 EE states walking down stairs from 3rd floor she fell & slid on food container that had been left on stairs by food service dept..
## 38962                                                                                                                               EE states walking down stairs-slipped on 2nd step from the top and fell against the wall to the floor. Injured hand, knee, and foot.
## 38963                                                                                                                                                                                                                     EE states walking down steps, slipped and fell
## 38964                                                                                                                                                                                                   EE states walking down the hall, sliped on slipperfloor and fell
## 38965                                                                                                                           EE states walking down to the dumpster via the ramp which was wet due to rain, lost footing & fell on left side lower back and buttocks.
## 38966                                                                                                                                                                                   EE states walking from parking lot to work site and a bug flew in his rt eye. ()
## 38967                                                                                                                     EE states walking in an exam room to write an inmate chart she attempted to sit down in a chair and struck her head on the bottom of a cabinet
## 38968                                                                                                                                                                      EE states walking in to the unit, stepped on a rock and turned her ankle, causing her to fall
## 38969                                                                                                                                                                      EE states walking out of b dorm walked off porch and twisted lt ankle fell down on the ground
## 38970                                                                                                                                                                                                    EE states walking out of group home & hit wrist on door handle.
## 38971                                                                                                                                                                                  EE states walking patient to day room area and patient fell holding staff's hand.
## 38972                                                                                                                                                                                     EE states walking thriugh front door at eci when door began closing hit rt arm
## 38973                                                                                                                               EE states walking through breezeway, walked across rug, left foot slipped and fell to right knee and foot (bruise to right knee). ()
## 38974                                                                                                                          EE states walking through cafeteria when slipped on a wet spot on the floor, twisting lt foot. Previously fractured same foot in same way
## 38975                                                                                                                                                                                                 EE states walking through dining room & foot gave way hurt lt-arm.
## 38976                                                                                                                                          EE states walking to bathroom, slipped on wet floor& he fell down & (l)shoulder hit door facing & twisted (l) leg & back.
## 38977                                                                                                                                                                                 EE states walking toward street, fell on rocks that were on pavement, hitting head
## 38978                                                                                                                                                                                                                        EE states walking up stairs to deliver mail
## 38979                                                                                                                        EE states walking with client to bathroom with gait belt. Client was walking fast; client went forward and fell causing EE to fall also. ()
## 38980                                                                                                                                                                                                         EE states walkking through hallway and twisted right ankle
## 38981                                                                                                                        EE states was adding calcium hypocholrite mixed iwth water in five gallon bucket to the wading pool. Some of mixture splashed into EE's eye
## 38982                                                                                                                                                                           EE states was ahoved into the hallway by another officer and landed in the hallway floor
## 38983                                                                                                                                                                                EE states was assaulted by juvenile while getting him water ** salary continuance**
## 38984                                                                                                                 EE states was assisting a coworker with moving a metal storage cabinet up a small set of stairs. His fingers was cut on the bottom edge of the cab
## 38985                                                                                                                                               EE states was assisting a toilet client, who drop to the floor, EE grabbed client by gait belt and felt pain in back
## 38986                                                                                                                                                EE states was assisting client while in bathroom another client walked by bathroom door closing it on EE's rt hand.
## 38987                                                                                                                                                                                                                     EE states was assisting patient from the floor
## 38988                                                                                                                                                             EE states was at a taxpayers place of business, the dog came up from behind and bit EE on back of leg.
## 38989                                                                                                                                                                  EE states was attemping to draw blood on patient and was putting he neddle into box and was stuck
## 38990                                                                                                                                                                                  EE states was bending down to make corner of bed and felt a pull in l middle back
## 38991                                                                                                                                                                         EE states was bending over to work on a piece of equipment when he hit his head and cut it
## 38992                                                                                                                                                                                                                   EE states was bitten by rat while changing cages
## 38993                                                                                                                                         EE states was bitten by some sort of insect while participating in p. E. R. T. Traingin and doing low limited light firing
## 38994                                                                                                                                                         EE states was carrying client's bags from one room to another building - 3 huge heavy bags-carried by self
## 38995                                                                                                                 EE states was charged by a cow. The cow hit EE with her head, knocking him to the ground. While eewas on the ground the cow kicked him in the ribs
## 38996                                                                                                                                                                                               EE states was cleaning floors and bumped her head on the stair wells
## 38997                                                                                                               EE states was cleaning out grills and fire pitts, EE was letting the grill back down, when it slippeout of his hand, stricking him on top of rt foot
## 38998                                                                                                                                                                                                                EE states was cleaning outside windows with sqeezee
## 38999                                                                                                                                                                               EE states was cleaning shower stall and slipped on slick floor hitting head and back
## 39000                                                                                                                                                                EE states was cleaning windows and doors and started back inside, tripped over mat and fell on hips
## 39001                                                                                                                   EE states was closing bathroom door and tripped on stop and fell to floor and hit head on the trash can. Inj rt hip/rt side of head per eva teel
## 39002                                                                                                                                                                              EE states was conducting security in yard and twisted left ankle due to dip in ground
## 39003                                                                                                                  EE states was conducting showers in n-pod, EE opened the wicket door, an inmate sprayed urine and feces mix in medical bottle in EE's mouth, face
## 39004                                                                                                                  EE states was discussing business w/bill glass ministry team member, team member closed car door that accidently hit him on the left side of head
## 39005                                                                                                                                                                              EE states was edging and stepped off of curb wrong, tripping and injuring lt foot/toe
## 39006                                                                                                                                              EE states was escorting client room and client pushed staff against door jam and patient hit rt wrist wrist contusion
## 39007                                                                                                                  EE states was exiting gatehouse, turned to speak to another officer & his left foot slid over the edge of slopped sidewalk causing ankle to twist
## 39008                                                                                                                                                                                                      EE states was exiting hwy 40 and was rearended by another car
## 39009                                                                                                                                  EE states was filing orders & dropped a plastic bag. Went to pick it up & a splinter went under neath finger tip- rt first finger
## 39010                                                                                                                                               EE states was firing at firing range, headphones cames off and EE fired 6 rounds. Didn't realize headphones came off
## 39011                                                                                                                                                                   EE states was getting out of chair & placed hands chair arm & splinter went under her fingernail
## 39012                                                                                                                                                                                          EE states was getting out of van, pain shot from her thigh to groin area.
## 39013                                                                                                                                                                                          EE states was going down stairs rt foot slipped & he fell down the stairs
## 39014                                                                                                                                              EE states was helping student at front desk, turnedto retrieve paperwork, foot got caught on box of supplies and fell
## 39015                                                                                                                 EE states was helping support another officer out of the dormitory to medical, officer fell back, EE caught her and pulled something in r shoulder
## 39016                                                                                                                                                                                                                         EE states was hit by a bungee cord on nose
## 39017                                                                                                                                            EE states was in bathroom with client when the client went into behavior; EE twisted the wrong way hurting his back. ()
## 39018                                                                                                                                                                     EE states was in the process of turning doorknob and felt pain in her right wrist & lt wrist..
## 39019                                                                                                                                                                         EE states was in vehicle all day on wed and fri, thur was back to back mtgs, stand up mtgs
## 39020                                                                                                                                                                                                            EE states was injured during unarmed self defense class
## 39021                                                                                                                                                                                                                            EE states was injured in roped training
## 39022                                                                                                                        EE states was involved in use of force with an inmate and was hit on the right wrist and forearm with a bar door, while restrain the inmate
## 39023                                                                                                                                                                                                           EE states was involved with confrontation with an inmate
## 39024                                                                                                                           EE states was leaving control ctr, when she accidently stepped down from stairwell, slipped on the floor stripper that was at the bottom
## 39025                                                                                                                                                                                        EE states was leaving the plant when he slipped while crossing a speed bump
## 39026                                                                                                                                                                                  EE states was lifting stock medications and breaking down boxes I hurt 3rd finger
## 39027                                                                                                                                                                               EE states was lifting wall locker onto back of truck; felt pop in right shoulder. ()
## 39028                                                                                                                                                                                  EE states was making a bed and his lt thumb was caught on a spring in the matress
## 39029                                                                                                                    EE states was mixing chemicals compound together, she was wearing gloves, EE scratched nose with glove and felt burning sensation and felt fain
## 39030                                                                                                                                     EE states was monitoring change of class, was bitten below the neck. The site has had adverse reaction with red, swollen itchy
## 39031                                                                                                                                         EE states was moving antenna mounts, 50lbs each, from mobile command bus to the tower house when he injured his lower back
## 39032                                                                                                                                                                                                        EE states was painting outside when bitten by a caterpillar
## 39033                                                                                                            EE states was participating in leg lift exercise, while lowering self to floor, failed to place his hands underneath self, causing his buttock to floor
## 39034                                                                                                                                                    EE states was passing out tray and patient didn't want what he had, he hit EE in stomach-hand/ finger contusion
## 39035                                                                                                                               EE states was performing a safety inspection of commerical motor vehicle, during the inspection EE was struck by a passenger vehicle
## 39036                                                                                                                                                                    EE states was performing a security check and went to shut the door and smashed l middle finger
## 39037                                                                                                                                                 EE states was preparing a body for autopsy, it was a mva, and the debris was evidence, EE cut hand on debris-glass
## 39038                                                                                                                                                  EE states was pulling a folder at time she slid chair & wheels came out from under it dumping her onto the floor.
## 39039                                                                                                                                                       EE states was pulling a line down out of inmate's cell and an object on the line struck his left ring finger
## 39040                                                                                                                      EE states was pushing laundry cart with first aidskits, passing them out, pulled on cart to move out of way and pulled muscle in side of back
## 39041                                                                                                                          EE states was pushing the food cart for unit threewhen she got her index lt finger and middle fingercaught between the food cart and door
## 39042                                                                                                                                                                EE states was putting something on a rack and stood up and EE's back tightened and remained thatway
## 39043                                                                                                                                                                           EE states was reaching up to get some clothes for client and felt strained in lower back
## 39044                                                                                                                                                                                  EE states was responding to a disturbance in core b block and unjured hit rt knee
## 39045                                                                                                                                EE states was returning to her office, student entered the stairwell door, colliding with EE. EE was knocked down to concrete floor
## 39046                                                                                                                                                                           EE states was running down hall in response to code blue on, fell on knees and let elbow
## 39047                                                                                                                                                              EE states was running into building because it was raining, shoes were wet, slipped and fell on floor
## 39048                                                                                                                                                                       EE states was sitting at stop light with colleaguein state van and was rearended by a blazer
## 39049                                                                                                                                    EE states was stabbed several times by an angry student while passing out dinner meals. Student didn't want EE to lock her door
## 39050                                                                                                                                                                                           EE states was standing up after typing daily reporwhen rt ankle twisted.
## 39051                                                                                                                                                                                                        EE states was struck by metal door on porch area of wd-3467
## 39052                                                                                                                          EE states was struck in head and his glasses destroyed by angry patient being admitted **12-17-04 paid clmt for reimbursement of glasses*
## 39053                                                                                                                                                    EE states was stung by yellow jackets to both legsand arms, upset the nest in the storage shed and they swarmed
## 39054                                                                                                                    EE states was supervising the road crew and while walking beside the road, stepped in a hole, while trying to maintain balance twisted his back
## 39055                                                                                                                      EE states was switching beds for patient, bed was longer than mattress, pt requested another one, and EE switched bed again-low lumbar sprain
## 39056                                                                                                                                                                                                     EE states was taking trash out and needle stuck EE in the lag.
## 39057                                                                                                                                                          EE states was talking on phone and stepped back to get cup of coffee and fell thru trap door approx 12 ft
## 39058                                                                                                                                                             EE states was teaching a water rescue class and descending the stairs when r foot got caught in a step
## 39059                                                                                                                                                                       EE states was transporting and ambulating client to restroom and felt sharp pain in her side
## 39060                                                                                                                                         EE states was trying to clear blocked catheter, stuck the dirty needle with the sheep's blood on it into EE l index finger
## 39061                                                                                                             EE states was trying to move her desk away from h the wall in order to disconnect her phone & comput-er during the time her office was being rearrange
## 39062                                                                                                                                                                       EE states was trying to unlock a locked door that was stuck. Fingrs started to hurt next day
## 39063                                                                                                                   EE states was unloading truck at ems. Pushed the cart onto lift, brake didn't hold, let lift down, hadto hold cart with lt hand, twisted lt hand
## 39064                                                                                                                                                                   EE states was visiting a farmer about his tobacco and a dog bit her after she exited her vehicle
## 39065                                                                                                                                                                     EE states was walking around the table and her foot got hung on the chair and twisted her knee
## 39066                                                                                                                                         EE states was walking clerk office, something slippery on chair mat, foot slipped, fell, injured rt foot and cut lt wrist.
## 39067                                                                                                                    EE states was walking diag inmates to the kitchen for breakfast and tripped on a tree root with my rt foot and then I fell into the a dorm wall
## 39068                                                                                                                                                                     EE states was walking through kitchen and the floor was wet, she slipped and fell on the floor
## 39069                                                                                                                     EE states was walking to 7-9 (group home) when secretary called out to her. EE started walking toward her; stepped on uneven place in sidewalk
## 39070                                                                                                                                                       EE states was walking to her car, stepped in some oil, fell down on pavement. Transported by ems to rex hosp
## 39071                                                                                                                                            EE states was walking towards the shelter door and foot slipped off edge of concrete, fell down, caught self with hands
## 39072                                                                                                                                                                                              EE states was walking up stairs and fell, catchingherself with rt arm
## 39073                                                                                                                                                                                                            EE states washing dish and something went toino her eye
## 39074                                                                                                                                                                          EE states water and grease on floor has caused himto fall causing headaches and dizziness
## 39075                                                                                                                                        EE states water on floor fr bathroom leak. Slipped and fell on hands and knees. EE was administering medication to clients.
## 39076                                                                                                                                                        EE states water was been heated when some of the water ran down into his boot causing a burn to his rt foot
## 39077                                                                                                                                                      EE states water was overflowing from sink. Water all over the floor. EE fell in it hurting left legand ankle.
## 39078                                                                                                                                                                           EE states watering greenhouse, felt something on hand, wiped felt sting, insect flew off
## 39079                                                                                                                                                                                                               EE states weedeating, arm was scratched/cut by fence
## 39080                                                                                                                                                                                           EE states went down on l knee during cell extraction and felt pain later
## 39081                                                                                                                                                                                                            EE states went down on r knee, lead instructor for uasd
## 39082                                                                                                                  EE states went over to durham regional with other staff & patient. Patient began to slide out of bedafter trying to pull her up, EE began hurting
## 39083                                                                                                                     EE states went to courier box to pick up mail, bent down to pick up boxes, straightened up and banged top of head on the projecting lip of box
## 39084                                                                                                                 EE states went to file storage room, EE didn't see the step down, stepped off, felt self going down, reached out to grab something, but still fell
## 39085                                                                                                                                                                             EE states went to nci class and upper back and neck was hurting, believe pulled muscle
## 39086                                                                                                              EE states went to nursing care office to do charting. I sat down in wooden chair. Chair tipped over to rt side EE hit floor landed on rt hip and leg.
## 39087                                                                                                                                              EE states went to remove bleach water and broom fell; EE tripped over broom and fell hitting right side and hands. ()
## 39088                                                                                                                                                                                                 EE states went to sit down and missed chair hurting hips and legs.
## 39089                                                                                                                                                       EE states went to sit in chair, chair slipped underneath EE, while moving downward motion landedon the floor
## 39090                                                                                EE states went to throw bag of spoons onto top shelf of cabinet; thumb hit point of screw that is in wood of top of cabinet coming from top downward. Cut to tip of right thumb. ()
## 39091                                                                                                                               EE states were moving sheet metal break, against wall several other students pushed them against wall. EE was between metal and wall
## 39092                                                                                                                                                                                    EE states whe has been feeling pain in rt/left armelbow and wrist for 3 months.
## 39093                                                                                                                                                                                                         EE states whe was struck by a needle to the lt hand finger
## 39094                                                                                                                                   EE states wheel came off chair and EE fell to the floor and landed on lower spine with all weight & then fell back onto my head.
## 39095                                                                                                                                                                    EE states wheelchair ran over her toe in June. **no incident report was submitted in June 1996.
## 39096                                                                                                                                                            EE states when attempting to sit in a chair the chair slid from under him causing him to twist hisback.
## 39097                                                                                                                                                     EE states when bending down to pick up a packet onthe floor, she hit the left side of her head on the desktop.
## 39098                                                                     EE states when breaking pipe loose; waste sprayed into face, left eye. EE jumped striking left hand and fingers on pipe. Chemical exposure to left eye and contusion to left hand; fingers. ()
## 39099                                                                                                                                                                EE states when changing resistive incontinent pt alone x3 over course of shift hyperextended l knee
## 39100                                                                                                                      EE states when getting patient out of bed, patienthit her in the chest & she twisted hearing her back pop. Employee had back surgery recently
## 39101                                                                                                                                                                                    EE states when going down some steps she slipped and fell twisted her rt ankle.
## 39102                                                                                                                                                              EE states when got up out of bed his foot slipped on a shower shoe and caused his lt leg to pop back.
## 39103                                                                                                                                                             EE states when he back away from desk with chair the chair slipped and caused EE to fall to the floor.
## 39104                                                                                                                                                             EE states when he bent over to place retraints in the pass box he felt a pop in the middle of his back
## 39105                                                                                                                                                                                        EE states when he entered the 4th floor lab--his lips and tongue went numb.
## 39106                                                                                                                    EE states when he got up from chair & turned to open doors to c&d block side, he felt a slight pop in his back & numbness in back, arms & legs.
## 39107                                                                                                                                                             EE states when he sat in the chair, the chair dlis out from under him causing him to fall to thefloor.
## 39108                                                                                                                                                                         EE states when he turns his neck he feels a pulling sesnsation in his neck/shoulder blade.
## 39109                                                                                                                                                                                   EE states when he walked by patient and patient jumped up and hit EE in the eye.
## 39110                                                                                                                                                  EE states when he was climbing into trash truck cab left knee started hurting. Knee was previouslyinjured in 1994
## 39111                                                                                                                              EE states when he was getting back in the van, hispants got caught in the seat belt and pulled away and hit his head inside the door.
## 39112                                                                                                              EE states when he went to get out of truck--he puthis rt foot down on the ground & then EE slipped off of the truck onto ankle & it rolled and popped
## 39113                                                                                                                   EE states when he went to step down on steps, both feet slipped out from under him causing him to fall on the steps, landing on his right thigh.
## 39114                                                                                                                                                          EE states when lifting client, felt sharp pain in back & suddenly leaned over bed. Continues to havepain.
## 39115                                                                                                                                 EE states when moving the buckets on the cart, the cart hit the door causing the water mixed with chemicls to splash into his eye.
## 39116                                                                                                                 EE states when patient was asked to go to quiet room patient began to hit EE in the head and eye. **do not pay for charges after Dec from nc eye**
## 39117                                                                                                             EE states when pt was being put in quiet room he tried to push staff in the chest and they both fell on the bed, pt grabbed EE neck choking/scratching
## 39118                                                     EE states when pulling out top and bottom file drawer, the drawer gets stuck, manually had to pull on file drawer straining right shoulder. Pulled out file drawers several times for filing. (right shoulder)
## 39119                                                                                                                                  EE states when reporting for duty he reached back into his car to get his dinner bag and was hit by a pain across his lower back.
## 39120                                  EE states when she arrived at the office for work at 7:00 a. M., she slipped on the wet floor by the receptionist desk on the first floor and fell. Due to pain related to the injury, she left work to go to doctor at 11:30. ()
## 39121                                                                                                                                                                     EE states when she arrived at work, she opened hercar door, got out and fell on her right knee
## 39122                                                                                                                                       EE states when she got up from a chair to open thedoor the chair went to one side and she fell from the chair.... Rt hip. ..
## 39123                                                                                                               EE states when she opened the door to check phone, as she turned to walk away her rt index finger & middle finger got caught on the bars & bent them
## 39124                                                                                                                                            EE states when she reported to operations she felt warm and the next thing she knew she had passed out and hit her head
## 39125                                                                                                                                  EE states when she stepped off the golf cart, her foot turned over & when she caught herself she thought she May have twisted it.
## 39126                                                                                                                EE states when she was coming out of pharmacy her shoes stuck to the floor causing her to fall, leftankle rolled outward landed on knees and hands.
## 39127                                                                                                               EE states when she was leaving post #3 with weaponon her shoulder, she slipped down the steps and caught the side rail & all weight went on shoulder
## 39128                                                                                                                   EE states when she went to put soap back in resident locker when sharp object was she cut her fore- finger on a sharp object. (disposable razor)
## 39129                                                                                                                                           EE states when working on computer pain began in rt hand in late April. Pain first noticed in in lthand on June 7, 2001.
## 39130                                                                                                               EE states while I was working on 6th floor I was putting inmate back into seg. Cell I sat down and took a drink of soda which looked like spit on it
## 39131                                                                                                                                              EE states while a pt was on their wqt to the quiet rm. Escorted therapuetically, kicked and stomped eeon the lt foot.
## 39132                                                                                                                                                                              EE states while adjusting a chair he lost his balance and struck the back of his head
## 39133                                                                                                                                                                                                              EE states while adjusting a table he injured his back
## 39134                                                                                                                                                                                EE states while adjusting the doorstep at the rear of the bus he struck his rt foot
## 39135                                                                                                                                               EE states while adjusting the tension on a fire door with a wrench the wrench slipped and struck EE on the lower lip
## 39136                                                                                                                                                                                           EE states while adjusting the water for the showeran inmate attacked him
## 39137                                                                                                                                                     EE states while adjusting the water heater which exploded causing a piece of metal to strike him onthe lt foot
## 39138                                                                                                                                                                                     EE states while adjusting volleyball net she struck her lt hand on the handle.
## 39139                                                                                                                                                             EE states while adjusting water controls in the back of steam oven hot water was discharged on hisfoot
## 39140                                                                                                                                                                   EE states while administering a TB injection she was punctured in the palm of hand with a needle
## 39141                                                                                                                                                             EE states while administering a needlestick she was puncture with a needle to the rt hand index finger
## 39142                                                                                                                                                                      EE states while administering a shot to an inmate she punctured her lt thumb with the needle.
## 39143                                                                                                                           EE states while administering an injection to an inmate the inmate became hostile and violent causing EE to puncture his lt index finger
## 39144                                                                                                                                                                         EE states while administering anesthesia his rt finger was punctured by the needle syringe
## 39145                                                                                                                                                                          EE states while administering iv fluids to pt she was punctured in the finger by a needle
## 39146                                                                                                                                                               EE states while administering medical care to an inmate the inmate struck EE on the lt side of face.
## 39147                                                                                                                                    EE states while administering medication to an inmate the inmate struck EE in the face with his fist striking her in the rt eye
## 39148                                                                                                                                                                                   EE states while administering medication to inmate the inmate spitted in EE face
## 39149                                                                                                                                                                             EE states while administering pepper spray some ofthe pepper spray got into her rt eye
## 39150                                                                                                                 EE states while allowing an inmate from his cell to retrieve a mop and while unlocking the trap door some unknown substance struck him in the face
## 39151                                                                                                                                                               EE states while ambulating patient to bathroom, hebecame non-ambulatory. Patient pulled on right arm
## 39152                                                                                                                                                                   EE states while answering a call on the switchboadhe struck his nose with the telephone receiver
## 39153                                                                                                                                                                                 EE states while applying handcuffs the handcuffs became tight injuring EE rt wrist
## 39154                                                                                                                                                       EE states while applying lubricant on screws to loosen drain covers some of the lubricant flew into his eye.
## 39155                                                                                                                                                  EE states while applying pressure to brakes of a truck he open the door of the truck and fell striking the ground
## 39156                                                                                                                                                                  EE states while applying pressure to unlock unknown object he felt something snap in his rt wrist
## 39157                                                                                                                                                                                EE states while applying tape to box, dispenser slipped & struck finger on lt hand.
## 39158                                                                                                                                                          EE states while approaching a home to issue a burning permit he was bitten by a dog on the lt upper thigh
## 39159                                                                                                                                                                 EE states while arresting a defendant the defendant tooth caused a cut on EE middle rt hand finger
## 39160                                                                                                                                                                     EE states while arresting a probation absonder she was expsed to possible bloodborne pathogens
## 39161                                                                                                                                                       EE states while arresting a resisting absconder he was exposed to pssible bloodborne pathogens from offender
## 39162                                                                                                             EE states while arresting a resisting probation absonder he was exposed to possible bloodborne pathogens when some of the offender's blood got on hand
## 39163                                                                                                                                                                                                            EE states while arresting a subject he exposed to blood
## 39164                                                                                                                                                              EE states while arresting a violator during a house arrest he was bitten by a dog on the lower lt leg
## 39165                                                                                                                                                                      EE states while arresting an offender he was bit by the offender's girlfriend on the rt thumb
## 39166                                                                                                                                                                                           EE states while arresting and handcuffing a suspect he injured his hand.
## 39167                                                                                                                                EE states while as he walked through the door fromstaff dining hall into kitchen area he dropped a 10# can of ketchup on his lt toe
## 39168                                                                                                                                                                                 EE states while assembling a cattle stall his rt lower leg was struck with a panel
## 39169                                                                                                                                                           EE states while assign to yard duties he stepped into a hole near a fence causing injury to his lt ankle
## 39170                                                                                                                                                                            EE states while assigned to road squad he stepped into a hole and twisted his lt ankle.
## 39171                                                                                                                EE states while assigned to the dorm area, it appeared that inmate was hyperventalating, she grabbedthe office's arm pinching/scratching both arms.
## 39172                                                                                                                                               EE states while assigned to tower #14 when placing weapon into wooden holding box she stuck her rt thumb aganist box
## 39173                                                                                                              EE states while assigned to tower #5 observing the yard she was sitting in the chair inside the tower and felt something bite her on her lower lt leg
## 39174                                                                                                                                                   EE states while assigned to yard post he was making routine rounds when he slipped and fell on steps behind dorm
## 39175                                                                                                            EE states while assisiting a resident to the bath tub. Resident fell against the staff both fell, EE took hard hit to both sides of mid-back on toilet.
## 39176                                                                                                                                                                               EE states while assisiting in putting a resident to bed she felt a pull in her neck.
## 39177                                                                                                                                                                                         EE states while assisting a client she bent forward and felt pain in back.
## 39178                                                                                                                                                                                                      EE states while assisting a client she injured herlower back.
## 39179                                                                                                                                                                                             EE states while assisting a client the client bit EE on the rt finger.
## 39180                                                                                                                                                                                   EE states while assisting a nurse with an inmate she struck her head on a window
## 39181                                                                                                                                    EE states while assisting a nurse with medication to give to an inmate the inmate threw a cup which contained unknown substance
## 39182                                                                                                                                                                            EE states while assisting a patient to a chair the pt grabbed and twisted her rt wrist.
## 39183                                                                                                                                                           EE states while assisting a patient to the bath- room the patient fell and landed on EE rt calf andankle
## 39184                                                                                                                                                       EE states while assisting a pt from wheelchair to bed she fell against bed injurying her rt hip and buttocks
## 39185                                                                                                                                                                                                                 EE states while assisting a pt he injured his back
## 39186                                                                                                                                                                                                               EE states while assisting a pt she injured her back.
## 39187                                                                                                                                                                                         EE states while assisting a pt the pt struck EE inthe chest and back area.
## 39188                                                                                                                                                                                                           EE states while assisting a pt the pt twisted EE lt arm.
## 39189                                                                                                                                            EE states while assisting an inmate back to his cell the inmate attacked EE and struck him in theface with a flashlight
## 39190                                                                                                                                                                                          EE states while assisting an inmate off the floor he injured his rt hand.
## 39191                                                                                                                         EE states while assisting an inmate to remove a lawn mover from the top of a trailer of a van. Theback of his rt upper arm struck to door.
## 39192                                                                                                                                                                  EE states while assisting an inmate to the dorm his finger was caught between the door and track.
## 39193                                                                                                                  EE states while assisting another EE in removing paperwork and other items from her offcie some of liquid got on hands that came from the ceiling
## 39194                                                                                                                                                           EE states while assisting another EE to cut some old rags the knife slipped and struck finger on rt hand
## 39195                                                                                                                                                                             EE states while assisting another er with lifting a pt she twisted her hand and wrist.
## 39196                                                                                                                                                               EE states while assisting another office with an inmate he fell to the ground injuring his lt finger
## 39197                                                                                                                                                                                       EE states while assisting another officer he fell on ice cutting his rt knee
## 39198                                                                                                                                                              EE states while assisting another officer with a road squad work sign the sign struck her lt top foot
## 39199                                                                                                                                                                               EE states while assisting another staff member with a resident she injured her back.
## 39200                                                                                                                                           EE states while assisting another staff member with placing a wooden door on the back of a truck he injured his low back
## 39201                                                                                                                                                                                 EE states while assisting bathing a client the client struck EE on the lt thumb. .
## 39202                                                                                                                                                                            EE states while assisting bathing a pt his lt leg slipped causing pain in hip and back.
## 39203                                                                                                                                                           EE states while assisting breaking up a fight between inmates EE fell and struck his head on theconcrete
## 39204                                                                                                                                                           EE states while assisting breaking up a fight between inmates he was exposed to some blood from a inmate
## 39205                                                                                                                                        EE states while assisting client and inmate to treatment room he pulled his chair forward when his lt knee struck the table
## 39206                                                                                                                                                                                         EE states while assisting client during a riot he injured his rt shoulder.
## 39207                                                                                                                                                                                                 EE states while assisting client from falling he injured his back.
## 39208                                                                                                                                                                                             EE states while assisting client in a wheelchair she injured her back.
## 39209                                                                                                                                                                                             EE states while assisting client she felt a catch in middle back area.
## 39210                                                                                                                                                                                                             EE states while assisting client she injured her back.
## 39211                                                                                                                                                                                EE states while assisting client the client fell back injurying EE rt arm and wrist
## 39212                                                                                                                                                     EE states while assisting client the client grab EE arm and pulled it causing injury to the shoulder and neck.
## 39213                                                                                                                                                                                             EE states while assisting client, she was kicked on the arm by client.
## 39214                                                                                                                                                                 EE states while assisting clients with breakfast she turned the wrond way and twisted her rt foot.
## 39215                                                                                                                                                  EE states while assisting getting an inmate up from bed and while removing the rails she struck her lt hand/thumb
## 39216                                                                                                                                                                                             EE states while assisting handcuffing a subject hewas exposed to blood
## 39217                                                                                                                                                                                       EE states while assisting herding cows one of the cows stood on her rt foot.
## 39218                                                                                                                  EE states while assisting holding a tree in order for a tractor to move EE rt leg was ran over by the tractor--another EE was driving the tractor
## 39219                                                                                                                                            EE states while assisting in a holding a patient, to pull up her pants, patient was combative and EE was bit by patient
## 39220                                                                                                                                                           EE states while assisting in an ambulance call, EE strained his back by lifting a pt into the ambulance.
## 39221                                                                                                                                                                       EE states while assisting in escorting an inmate to segregation EE got blood on his clothing
## 39222                                                                                                                                                                            EE states while assisting in placing patient in restaints, right side and back injured.
## 39223                                                                                                                                                                  EE states while assisting in removing inmates clothing twisted rt ankle f18 filed.. Michael rizzi
## 39224                                                                                                                                                                    EE states while assisting in restraining an inmatehe fell and struck his lt elbow on the floor.
## 39225                                                                                                                                                                             EE states while assisting in yard duties and feeding she became light headed and dizzy
## 39226                                                                                                                                                               EE states while assisting inmate from shower some unknown substance was thrown an got on EE clothes.
## 39227                                                                                                                                                                                         EE states while assisting inmates from bed to chair she injured her rt arm
## 39228                                                                                                                                                                                       EE states while assisting inmates his lt foot slipped off an uneven pavement
## 39229                                                                                                                EE states while assisting launching a boat he was standing on the back trying to seperate the boat from the trailer when he heard a pop in his back
## 39230                                                                                                                                                                                      EE states while assisting lifting a client she felt sharp pain in lower back.
## 39231                                                                                                                                                                       EE states while assisting lifting a client the client swung backwards and hit EE in the face
## 39232                                                                                                                                                                                   EE states while assisting lifting a patient into a bus he injured his lower back
## 39233                                                                                                                                                                                                  EE states while assisting lifting an inmate she injured her back.
## 39234                                                                                                                                                                                               EE states while assisting lifting client she injured her lower back.
## 39235                                                                                                                                                                                        EE states while assisting lifting client she injured her neck and shoulders
## 39236                                                                                                                                       EE states while assisting making an arrest the offender shovel a bike causing EE to lose his balance and fall to the ground.
## 39237                                                                                                                                               EE states while assisting moving paper to basementwith a cart she lifted the cart from the rear striking her rt knee
## 39238                                                                                                                                                                      EE states while assisting offcier with clothes exchange inmate threw a bar of soap at my face
## 39239                                                                                                                                                                  EE states while assisting officer with an inmate the inmate struck him on the head on the rt side
## 39240                                                                                                                                                                                     EE states while assisting other officers with an inmate he injured his rt hand
## 39241                                                                                                                                                                   EE states while assisting passing out meal trays he turned and felt a pop in his lower back area
## 39242                                                                                                                                                                                      EE states while assisting pt a staff member elbow struck him on the forehead.
## 39243                                                                                                                                                                                     EE states while assisting pulling a pt up from floor she injured her rt wrist.
## 39244                                                                                                                                                                               EE states while assisting putting a client to bed he felt pain in his back and neck.
## 39245                                                                                                                                                                           EE states while assisting putting inmate into a chair the hoyer lift struck her lt knee.
## 39246                                                                                                                                                                     EE states while assisting putting out wildfire he stepped in some mud and twisted his lt ankle
## 39247                                                                                                                                                                                   EE states while assisting repositioning a pt she felt pain in her low back area.
## 39248                                                                                                                                                                                                         EE states while assisting resident she injured herrt knee.
## 39249                                                                                                                                                                                       EE states while assisting restraining a client she injured her lower lt arm.
## 39250                                                                                                                                                                         EE states while assisting restraining a pt he fellto the floor and injured his lower back.
## 39251                                                                                                                                                                                                 EE states while assisting restraining a pt he injured his rt knee.
## 39252                                                                                                                                                                          EE states while assisting restraining a pt his lt arm was caught between the pt and wall.
## 39253                                                                                                                                                                                              EE states while assisting restraining a pt she wasstruck in the head.
## 39254                                                                                                                                                                                                     EE states while assisting restraining a pt. Strained low back.
## 39255                                                                                                                                                                          EE states while assisting staff to adjust restraint cuffs, pt managed to bite rt forearm.
## 39256                                                                                                                                                                              EE states while assisting staff with inmate he wasbitten on the lt arm by the inmate.
## 39257                                                                                                                                          EE states while assisting students to lunch one student grabbed and twisted her lt wrist. Also caused injury to her back.
## 39258                                                                                                                                                                                    EE states while assisting to carry client EE felt pain and pull in lt buttocks.
## 39259                                                                                                                                                                                         EE states while assisting to dress client the client bit EE on the lt arm.
## 39260                                                                                                                               EE states while assisting to help subdue a assalu-tive inmate, EE recieved scratches, bruises-rt handand exposure to oc pepper spray
## 39261                                                                                                                                       EE states while assisting to place a pt from chairto shower the pt grabbed EE causing EE to strain back to keep from falling
## 39262                                                                                                                                                                         EE states while assisting to prevent patient from injury she had lt shoulder and hip pain.
## 39263                                                                                                                                                                                               EE states while assisting to restrain a client she injured her back.
## 39264                                                                                                                                                                                            EE states while assisting to restrain a pt she injured her rt shoulder.
## 39265                                                                                                                                                                     EE states while assisting to restrain an aggressive patient he struck his lt knee on the floor
## 39266                                                                                                                                                                 EE states while assisting to restrain an inmate his blood pressure went up and he injured his back
## 39267                                                                                                                                                                           EE states while assisting to restrain an inmate the inmate kick EE in the rt groin area.
## 39268                                                                                                                                                                 EE states while assisting transporting an inmate in a emergency vehicle the inmate threw up on him
## 39269                                                                                                                                                      EE states while assisting two officers to move a large conference table she felt pain in her rt shoulder area
## 39270                                                                                                                  EE states while assisting w/student lineup she waspushed from behind by student-inuring back/shoulderehab- michelle williams/ corvel 919 676 1365
## 39271                                                                                                                                                                                            EE states while assisting with a aggressive pt he injured his rt thumb.
## 39272                                                                                                                                                                                         EE states while assisting with a basketball goal he injured his lower back
## 39273                                                                                                                                                                                              EE states while assisting with a client he injuredhis shoulder blade.
## 39274                                                                                                                                                                                              EE states while assisting with a client the clientfell on her lt knee
## 39275                                                                                                                                                                     EE states while assisting with a client the clientgrabbed EE lt hand and bent her ring finger.
## 39276                                                                                                                                                                              EE states while assisting with a client who was trying to escape she injured her back
## 39277                                                                                                                                                                                                 EE states while assisting with a combative pt he injured his neck.
## 39278                                                                                                                                                                           EE states while assisting with a disruptive inmate he was exposed to blood on both hands
## 39279                                                                                                                                     EE states while assisting with a forest fire his lt foot got entangle in an old fence causing him to fall twisting his lt knee
## 39280                                                                                                                                                               EE states while assisting with a medical emergencysome blood was splatter on both his lt and rt arms
## 39281                                                                                                                                                                                 EE states while assisting with a patient he later noticed his shoulder was hurting
## 39282                                                                                                                                                                                  EE states while assisting with a patient he started itching----contact dermatitis
## 39283                                                                                                                                                                                EE states while assisting with a patient he was struck in the mouth by the pt foot.
## 39284                                                                                                                                                                              EE states while assisting with a patient she was bitten on her abdomen by the patient
## 39285                                                                                                                                                   EE states while assisting with a patient the pulled her glassed off her face---EE states the glasses were broken
## 39286                                                                                                                                                                                    EE states while assisting with a pt during a pit hold when she injured her hip.
## 39287                                                                                                                                                                                                            EE states while assisting with a pt he injured hisback.
## 39288                                                                                                                                                                                         EE states while assisting with a pt he pulled a muscle in his lt upper arm
## 39289                                                                                                                                                                                EE states while assisting with a pt he recd a punctured wound on the rt ring finger
## 39290                                                                                                                                                                                                  EE states while assisting with a pt she struck herleg on a chair.
## 39291                                                                                                                                  EE states while assisting with a pt the pt became aggressive and pick up a trash can and threw it atee injurying his rt shoulder.
## 39292                                                                                                                                                                                          EE states while assisting with a pt the pt grabbedher arm and twisted it.
## 39293                                                                                                                                                                                                          EE states while assisting with a pt the pt scratched her.
## 39294                                                                                                                                                                                                 EE states while assisting with a pt the pt struck EE with a phone.
## 39295                                                                                                                                                              EE states while assisting with a resident in a wheelchair she felt pain in lt shoulder/thoracic area.
## 39296                                                                                                                             EE states while assisting with a resident the resident became aggressive and swung at EE with fist causing EE to lose balance and fall
## 39297                                                                                                                               EE states while assisting with a student during art class the student caused EE to lose her balance and fall injurying her lt ankle.
## 39298                                                                                                                                                 EE states while assisting with a use of force on inmate she was struck in the face and her rt thumbnail was broken
## 39299                                                                                                                EE states while assisting with a window the windowslipped out the inmate lt hand causing EE lt indexfinger to be caught between window and the seal
## 39300                                                                                                                                                                      EE states while assisting with aggressive client the client struck EE on the rt side of head.
## 39301                                                                                                                                                                             EE states while assisting with aggressive inmate he was struck in the lt knee/rt elbow
## 39302                                                                                                                                                                    EE states while assisting with an aggressive client during a pic hold her knee struck the floor
## 39303                                                                                                                                                         EE states while assisting with an aggressive client he slipped on water in shower and struck his rt elbow.
## 39304                                                                                                                                                                        EE states while assisting with an aggressive client her rt hand struck the edge of a chair.
## 39305                                                                                                                                                                                          EE states while assisting with an aggressive client she injured her back.
## 39306                                                                                                                                                          EE states while assisting with an aggressive client the client head butted EE in the chest and neck area.
## 39307                                                                                                                                                                            EE states while assisting with an aggressive client the client kicked EE on the lt knee
## 39308                                                                                                                         EE states while assisting with an aggressive clienthe client hit EE and when EE stepped back to avoid from being hit she slipped and fell.
## 39309                                                                                                                                                                                      EE states while assisting with an aggressive defendant he injured his rt hand
## 39310                                                                                                                                                                           EE states while assisting with an aggressive inmate both knees and both eyes was injured
## 39311                                                                                                                                                                     EE states while assisting with an aggressive inmate he fell to the floor injurying his lt knee
## 39312                                                                                                                                                                                            EE states while assisting with an aggressive inmate he injured his back
## 39313                                                                                                                                                                                   EE states while assisting with an aggressive inmate he injured his neck and head
## 39314                                                                                                                                                                               EE states while assisting with an aggressive inmate he injured his rt hand and wrist
## 39315                                                                                                                                                                         EE states while assisting with an aggressive inmate he pulled a muscle in his abdomen area
## 39316                                                                                                                                                                        EE states while assisting with an aggressive inmate he received an abrasion to his lt elbow
## 39317                                                                                                                                                                          EE states while assisting with an aggressive inmate he reinjured his rt archilles tendon.
## 39318                                                                                                                                                                                       EE states while assisting with an aggressive inmate he sprained his lt wrist
## 39319                                                                                                                                                                     EE states while assisting with an aggressive inmate he was bitten by the inmate on the lt leg.
## 39320                                                                                                                                                                                       EE states while assisting with an aggressive inmate his injured his rt hand.
## 39321                                                                                                                                                                            EE states while assisting with an aggressive inmate his lt elbow and mouth was injured.
## 39322                                                                                                                                            EE states while assisting with an aggressive inmate his lt knee struck the ground causing him to jam his lt ring finger
## 39323                                                                                                                                                          EE states while assisting with an aggressive inmate his rt hand was caught between the inmate and the bed
## 39324                                                                                                                                                                                     EE states while assisting with an aggressive inmate she injured her lt finger.
## 39325                                                                                                                                                                    EE states while assisting with an aggressive inmate she injured her neck, back, elbow and head.
## 39326                                                                                                                                                                           EE states while assisting with an aggressive inmate the inmate bit him on the rt finger.
## 39327                                                                                                                                                                    EE states while assisting with an aggressive inmate the inmate fell on EE injuring his rt ankle
## 39328                                                                                                                                                        EE states while assisting with an aggressive inmate the inmate fell on him causing him to scrape his rt arm
## 39329                                                                                                                              EE states while assisting with an aggressive inmate the inmate pushed him causing him to fall to the floor injuring his head and neck
## 39330                                                                                                                                                                    EE states while assisting with an aggressive inmate the inmate scratched him on the rt forearm.
## 39331                                                                                                                                                                       EE states while assisting with an aggressive inmate the inmate struck EE in lt eye with fist
## 39332                                                                                                                                                                  EE states while assisting with an aggressive inmate the inmate struck and kicked him several time
## 39333                                                                                                                             EE states while assisting with an aggressive inmate the inmate struck him in the face several times causing an injury to his lip/mouth
## 39334                                                                                                                                                                EE states while assisting with an aggressive inmate the inmate struck him in the face with his fist
## 39335                                                                                                                                                          EE states while assisting with an aggressive inmate the inmate stuck him with fist on the lt side of head
## 39336                                                                                                                                                                    EE states while assisting with an aggressive inmate the inmate's elbow struck him in his lt eye
## 39337                                                                                                                                                                       EE states while assisting with an aggressive inmated he was struck in the face by the inmate
## 39338                                                                                                                                                                                          EE states while assisting with an aggressive patient she injured her back
## 39339                                                                                                                                                                          EE states while assisting with an aggressive patient she injured her rt shoulder and neck
## 39340                                                                                                                                                             EE states while assisting with an aggressive patient she lost her balance and fell injuring herlt knee
## 39341                                                                                                                                                                                     EE states while assisting with an aggressive pt he fell and struck her rt knee
## 39342                                                                                                                                                                                               EE states while assisting with an aggressive pt he injured his back.
## 39343                                                                                                                                                    EE states while assisting with an aggressive pt he lost his balance and fell to the floor injuringhis rt wrist.
## 39344                                                                                                                                                           EE states while assisting with an aggressive pt she fell on a cement floor causing injury to her lt knee
## 39345                                                                                                                                                                                EE states while assisting with an aggressive pt the patient struck him in the face.
## 39346                                                                                                                                                                                       EE states while assisting with an aggressive pt the pt bit EE on the lt leg.
## 39347                                                                                                                                                                       EE states while assisting with an aggressive pt the pt fell on EE lt hand causing an injury.
## 39348                                                                                                                                                                             EE states while assisting with an aggressive pt the pt struck EE in the eye with fist.
## 39349                                                                                                                                                                                    EE states while assisting with an aggressive pt the pt struck EE on the rt leg.
## 39350                                                                                                                                                                        EE states while assisting with an aggressive pt the pt stuck EE in the head and chest area.
## 39351                                                                                                                                                                             EE states while assisting with an aggressive student the student struck EE in the nose
## 39352                                                                                                                                                                                           EE states while assisting with an agressive inmatehis injured his rt arm
## 39353                                                                                                                                                               EE states while assisting with an agressive inmatehis rt hand was caught between the wall and inmate
## 39354                                                                                                                                                                                    EE states while assisting with an agressive inmateshe injured her lt hand/wrist
## 39355                                                                                                                                                                  EE states while assisting with an agressive inmateshe was struck with a baton by another officer.
## 39356                                                                                                               EE states while assisting with an agressive inmatethe inmate became verbally and physically abusive and began kicking and striking EE on the rt hand
## 39357                                                                                                                                             EE states while assisting with an agressive inmatethe inmate began kicking causing injury to her lt calf and back area
## 39358                                                                                                                                                                            EE states while assisting with an agressive inmatethe inmate kicked him on his lt ankle
## 39359                                                                                                                                                                      EE states while assisting with an agressive inmatethe inmate struck him in the face with fist
## 39360                                                                                                                                                                      EE states while assisting with an agressive inmatethe inmate struck him in the face/cheekbone
## 39361                                                                                                                                                       EE states while assisting with an agressive patienthe patient head butted EE in the face causing neck injury
## 39362                                                                                                                                                                            EE states while assisting with an agressive pt the pt kicked EE and jammed his rt hand.
## 39363                                                                                                                  EE states while assisting with an altercation withtwo inmates both inmate was sprayed with pepper spray when some of the spray got into EE mouth.
## 39364                                                                                                                                                                                              EE states while assisting with an escape he was exposed to poison ivy
## 39365                                                                                                                                                                                             EE states while assisting with an inmate he came in contact with blood
## 39366                                                                                                                                                                                                         EE states while assisting with an inmate he injurehis back
## 39367                                                                                                                                                                                  EE states while assisting with an inmate he struckhis lt knee on the cement floor
## 39368                                                                                                                                                                                             EE states while assisting with an inmate his lt knee struck the ground
## 39369                                                                                                                                                            EE states while assisting with an inmate she injured his back while lifting him up in a sittingposition
## 39370                                                                                                                                                                               EE states while assisting with an inmate soaking his finger she was exposed to blood
## 39371                                                                                                                                                                                     EE states while assisting with an inmate the inmate head butted EE in the head
## 39372                                                                                                                                                                                       EE states while assisting with an inmate the inmate kicked EE in the abdomen
## 39373                                                                                                                                         EE states while assisting with an inmate the inmate made an attempt to stab him with an ink penno physical injuries noted.
## 39374                                                                                                                          EE states while assisting with an inmate the inmate pulled EE arm and shoulder causing pain to lower back area **f18 filed.. Atty on case
## 39375                                                                                                                                                             EE states while assisting with an inmate the inmate pushed her down causing her to injure her lt wrist
## 39376                                                                                                                                                      EE states while assisting with an inmate the inmate struck him in the face, neck, and head area with his fist
## 39377                                                                                                                                                                         EE states while assisting with an inmate the inmate threw a rock striking her on the head.
## 39378                                                                                                                                                                                  EE states while assisting with an inmate who collasped she injured her lower back
## 39379                                                                                                                   EE states while assisting with an inmate who was having a seizure and while trying to keep the inmate from falling to the ground his knee popped
## 39380                                                                                                                                                                  EE states while assisting with an inmate who was having an asthma attack she injured her lt thumb
## 39381                                                                                                                                                                 EE states while assisting with bathing a client from shower to wheelchair she injured her rt wrist
## 39382                                                                                                                                                      EE states while assisting with chasing client a staff member closed the door causing injury to the rt finger.
## 39383                                                                                                                                                                                 EE states while assisting with client from wheelchair to tub she injured her back.
## 39384                                                                                                                                                       EE states while assisting with client he slipped and fell on some tea that was on the floor injurinhis back.
## 39385                                                                                                                                                                                              EE states while assisting with client she injured her abdominal area.
## 39386                                                                                                                                                                                          EE states while assisting with client the client kicked her in the chest.
## 39387                                                                                                                                                                               EE states while assisting with client the client struck her on the back of the head.
## 39388                                                                                                                                            EE states while assisting with controlling an aggressive inmate he was bumped in the mouth by another officer's helmet.
## 39389                                                                                                                                                                       EE states while assisting with decoration a stapler fell striking her on the lt side of face
## 39390                                                                                                                                                                                                    EE states while assisting with feeding the inmateshe felt dizzy
## 39391                                                                                                                                                                             EE states while assisting with fighting inmates he received a laceration to his rt arm
## 39392                                                                                                                                                                                EE states while assisting with inmate another officer elbow struck EE in the mouth.
## 39393                                                                                                                                                                                                          EE states while assisting with inmate he injured his back
## 39394                                                                                                                                                                                                   EE states while assisting with inmate he injured his lt shoulder
## 39395                                                                                                                                                                   EE states while assisting with inmate he lost his balance and fell on his face injuring his nose
## 39396                                                                                                                                                                                           EE states while assisting with inmate she became in contact with scabies
## 39397                                                                                                                                                                                               EE states while assisting with inmate the inmate spitted in his face
## 39398                                                                                                                       EE states while assisting with inmate who was fighting the inmate fell to the floor and while trying to lift inmate EE strain his lower back
## 39399                                                                                                                                                      EE states while assisting with inmates an inmate came from behind him and struck EE in the face with his fist
## 39400                                                                                                                                                                                      EE states while assisting with inmates an unknown object flew into his lt eye
## 39401                                                                                                                                                                                          EE states while assisting with inmates he receiveda cut to his lt forearm
## 39402                                                                                                                                           EE states while assisting with inmates one of the inmates threw a cup containing feces at her striking her in the rt eye
## 39403                                                                                                                                                                                                 EE states while assisting with inmates she cut herlt index finger.
## 39404                                                                                                                                                                                               EE states while assisting with inmates she felt something in her eye
## 39405                                                                                                                                                                                     EE states while assisting with inmates she noticeda rash on her lt and rt arms
## 39406                                                                                                                                                                    EE states while assisting with inmates she was bitten by an unknown insect on the lt wrist area
## 39407                                                                                                                                                                             EE states while assisting with lifting a client she felt a pop in the lt side of neck.
## 39408                                                                                                                                                   EE states while assisting with lifting a metal wall off a frame onto a truck he felt pain in his lower back area
## 39409                                                                                                                                                       EE states while assisting with lifting a pt in a chair she strain her lt/rt shoulders and chest area... Neck
## 39410                                                                                                                                                                              EE states while assisting with looking for a riflehe came in contact with poison ivy.
## 39411                                                                                                                         EE states while assisting with passing lunch traysto inmates he was holding the door with his lt hand when the door closed on his lt hand.
## 39412                                                                                                                EE states while assisting with placing an inmate back to his cell the inmate grabbed the handcuffs causing EE lt hand to be caught between the bars
## 39413                                                                                                                                 EE states while assisting with placing resident ina pic hold the resident pulled EE to the floor causing injury to his lower back.
## 39414                                                                                                                                                EE states while assisting with preparation for cabinet installation his lt lower leg struck a cabinet causing a cut
## 39415                                                                                                                                                                                                      EE states while assisting with pt he got a rash onhis lt arm.
## 39416                                                                                                                                                             EE states while assisting with pt in a wheelchair EE lost her balance and fell injurying her shoulder.
## 39417                                                                                                                                                                                                     EE states while assisting with pt she injured her lt shoulder.
## 39418                                                                                                                                                                                                  EE states while assisting with pt she was pushed against the wall
## 39419                                                                                                                                                                                                 EE states while assisting with pt the pt attacked and scratch her.
## 39420                                                                                                                                                               EE states while assisting with pt the pt became aggressive and attacked EE biting her on the rt arm.
## 39421                                                                                                                                                                                             EE states while assisting with pt the pt scratchedand pulled EE rt arm
## 39422                                                                                                                                                                                        EE states while assisting with pt the pt struck EE in the lt side with knee
## 39423                                                                                                                                                                             EE states while assisting with pushing a laundry cart he felt a pain in his lower back
## 39424                                                                                                                                                                                  EE states while assisting with putting inmate intoa chair she injured her rt leg.
## 39425                                                                                                                                                                             EE states while assisting with relocation of equipment the palm of his lt hand was cut
## 39426                                                                                                                                                                                       EE states while assisting with resident the resident bit her on the rt wrist
## 39427                                                                                                                                                                            EE states while assisting with restraining an aggressive inmate he injured his lt knee.
## 39428                                                                                                                          EE states while assisting with restraining an aggressive patient the patient caused EE to strikehis left elbow/shoulder against the floor
## 39429                                                                                                                      EE states while assisting with restraining an inmate his rt hand was caught between the handcuffcausing injury to the second and third finger
## 39430                                                                                                                                                                        EE states while assisting with restrainting an inmate he was exposed to vomit to both hands
## 39431                                                                                                                                                                                           EE states while assisting with road squad something flew into his lt eye
## 39432                                                                                                                                                      EE states while assisting with taking paper off truck to place on a pallet the pallet jack rolled over EE toe
## 39433                                                                                                                                              EE states while assisting with transferring clientfrom wheelchair to bed she felt a pain under her lt shoulder blade.
## 39434                                                                                                                                                                             EE states while assisting with two inmate he was accidently sprayed with pepper spray.
## 39435                                                                                                                                                                                       EE states while assisting with two inmates fighting--his glasses were broken
## 39436                                                                                                                                                                  EE states while assiting a client with a shower she strained low back rolling client back & forth
## 39437                                                                                                                                                               EE states while assiting a student in moving a pool table, the table collapsed and fell on finger ()
## 39438                                                                                                                                                                    EE states while assiting patient with toileting and bathing, she felt sharp pain in lower back.
## 39439                                                                                                                                       EE states while assiting the dentist with a filling on an inmate the mist from the hand piece was sprayed entering EE lt eye
## 39440                                                                                                                       EE states while asstng w/an out of control client client kicked open the quiet rm door slamming doorinto EE thumb and jamming shoulder/neck.
## 39441                                                                                                                                                EE states while assuming control he set down in the control chair and it dropped 8-10 inches re-injuring lower back
## 39442                                                                                                                                                                                                     EE states while at a firing range a moth flew into his lt ear.
## 39443                                                                                                                     EE states while at firing range trash being burnedsome wood had some posion ivy on it & EE ingested somke which lead to reaction to posion ivy
## 39444                                                                                                                                                                              EE states while at the rifle range she felt soreness and pain of her lt arm and hand.
## 39445                                                                                                                                               EE states while attaching a trailer to the bumper his rt hand was caught between the trailer tongue and truck bumper
## 39446                                                                                                                                                   EE states while attemping to arrest a probationer the probationer tried to escape causing EE to injure his back.
## 39447                                                                                                                                                                                             EE states while attemping to arrest a subject his lt hand was injured.
## 39448                                                                                                                                                         EE states while attemping to block inmate path theinmate push EE causing EE to fall injurying his lt knee.
## 39449                                                                                                                                                EE states while attemping to sit down on a stool the stool slipped from under him causing him to injury his rt hip.
## 39450                                                                                                                                                       EE states while attemping to sit in a chair the chair rolled causing EE to slip striking her lowerback area.
## 39451                                                                                                                                                     EE states while attemping to sit in a chair the chair slipped from under her causing her to fall to the floor.
## 39452                                                                                                                                                                             EE states while attemping to stand up from her desk she struck her lt knee on the desk
## 39453                                                                                                                                EE states while attempting to abroad a vehicle thedrive pulled away before EE could be seated causinee to injured his back and leg.
## 39454                                                                                                                         EE states while attempting to activate a transmitter she used a pocket knife to trim the edge when the knife slipped and injured lt thumb.
## 39455                                                                                                                                                 EE states while attempting to and gaining control of a hostile inmate he struck both his knees on the cement floor
## 39456                                                                                                                      EE states while attempting to answer the phone in the office her lt foot got caught in the chair causing her to fall injuring her lt rib cage
## 39457                                                                                                                                                           EE states while attempting to apprehend a run-a-wat student EE pulled a muscle runnig after the student.
## 39458                                                                                                                                                                      EE states while attempting to arrest a defender her finger was caught between a bathroom door
## 39459                                                                                                                                                          EE states while attempting to arrest a probation offender his glasses was knocked off his face and broken
## 39460                                                                                                                              EE states while attempting to arrest a probationerhe and the probationer both fell to ground causinginjuring the rt shoulder/rib cage
## 39461                                                                                                                                                                                 EE states while attempting to arrest a suspect he recd a scrape from the handcuff.
## 39462                                                                                                                                                                          EE states while attempting to arrest an offender he was bitten on the lt forearm and hand
## 39463                                                                                                                                                                   EE states while attempting to arrest an offender he was bitten on the lt forearm by the offender
## 39464                                                                                                                                                                                EE states while attempting to arrest an offender the offender bit EE on the lt hand
## 39465                                                                                                                                           EE states while attempting to assist an inmate from falling after swallowing a contraband his lt wrist was bent backward
## 39466                                                                                                                                                             EE states while attempting to assist handcuffing an irate inmate received a cut on his lt index finger
## 39467                                                                                                                                                                                                    EE states while attempting to break up a fight with two inmates
## 39468                                                                                                                                   EE states while attempting to break up two inmatesfrom fighting he fell to the floor injuring his lt leg, rt arm, and lower back
## 39469                                                                                                                          EE states while attempting to break up two inmatesfrom fighting he was pulled down to floor by one inmate striking his knees on the floor
## 39470                                                                                                                                        EE states while attempting to catch a mouse he grabbed the mouse by the tail when the mouse bit him on his rt middle finger
## 39471                                                                                                                                                                                           EE states while attempting to change a tire he felt a pop in his lt knee
## 39472                                                                                                                     EE states while attempting to climb into a vehicleshe lost her balance and while trying to keep fromfalling she pulled a muscle in her rt arm.
## 39473                                                                                                                                                    EE states while attempting to close a cell door the metal brace would not release causing a strainto her rt arm
## 39474                                                                                                                                                                               EE states while attempting to close a trap door she felt pain in her lower back area
## 39475                                                                                                                                                      EE states while attempting to close a van door his rt thumb was caught between the door and the sercuity cage
## 39476                                                                                                                                                                               EE states while attempting to close a window the window slammed shut on her rt thumb
## 39477                                                                                                                                            EE states while attempting to close the blinds in the dorm--the blinds fell down striking her on thert side of the head
## 39478                                                                                                                                                                             EE states while attempting to close the control room door the door shut on her lt hand
## 39479                                                                                                                                                                 EE states while attempting to close the trash dumpster door the door struck him on the lt shoulder
## 39480                                                                                                                             EE states while attempting to counsel an inmate the inmate became hostile stabbing EE with a shank4 times and striking her on the head
## 39481                                                                                                                                                                   EE states while attempting to crank a lawn mower he pulled on the rope straining his lt shoulder
## 39482                                                                                                                         EE states while attempting to cross a ditch he lost his balance and while trying to keep himself from falling he injured his lt groin area
## 39483                                                                                                                                  EE states while attempting to dislodge a lift froma typewriter the spring released without warning smashing EE fingers on rt hand
## 39484                                                                                                                                                          EE states while attempting to do a finger stick for blood sugar on an inmate she punctured her lt finger.
## 39485                                                                                                                                             EE states while attempting to enter a car the doorclosed on her legs causing her to knock her head into the door frame
## 39486                                                                                                                                                                                    EE states while attempting to enter a patrol vehicle and EE twisted both knees.
## 39487                                                                                                                      EE states while attempting to exist the pamlico dormitory the door struck and would not open after the officer in control booth released door
## 39488                                                                                                                                                        EE states while attempting to get a bend out of a fence the fence swung backward cutting EE on thelt finger
## 39489                                                                                                                                                                   EE states while attempting to get a food cart a door closed on his lt hand injurying his finger.
## 39490                                                                                                                                                     EE states while attempting to get a truck out of a door--his lt knee buckled causing him to fall to the ground
## 39491                                                                                                                                                                              EE states while attempting to get into a truck her foot slipped causing a foot injury
## 39492                                                                                                                                                                                     EE states while attempting to get into a van she felt pain of her rt shoulder.
## 39493                                                                                                                                                           EE states while attempting to get into state car she stepped off an uneven pavement twisting her ltfoot.
## 39494                                                                                                                                                                                          EE states while attempting to get up from a chair he twisted his rt ankle
## 39495                                                                                                                                                                                EE states while attempting to get up from a desk she struck her rt knee on the desk
## 39496                                                                                                                                                                     EE states while attempting to go between a sally port door the door closed on her rt upper arm
## 39497                                                                                                                                                            EE states while attempting to handcuff an inmate during a use of force inmate bit EE on lt side of neck
## 39498                                                                                                                                                                        EE states while attempting to handcuff an inmate the inmate kicked him in the lt groin area
## 39499                                                                                                                                                                            EE states while attempting to handcuff an inmate the inmate struck EE in the face/cheek
## 39500                                                                                                                                           EE states while attempting to handcuff an inmate, the inmate turned and struck him in the left temple, knocking him down
## 39501                                                                                                                                                        EE states while attempting to hold a metal bar up in the food services truck his rt ring finger was pinched
## 39502                                                                                                                                                          EE states while attempting to keep a client from entering a room due to wet floor he injured his lt knee.
## 39503                                                                                                                                                                    EE states while attempting to keep a door from slamming her lt hand was caught between the door
## 39504                                                                                                                                                                                   EE states while attempting to lift a heavy object he pulled a muscle in his back
## 39505                                                                                                                                                                             EE states while attempting to lock the gate her finger was caught in between the bars.
## 39506                                                                                                                                                        EE states while attempting to loosen inmate handcuffs the inmate struck her on the lt side of head and neck
## 39507                                                                                                                                   EE states while attempting to make an arrest and while chasing defendant EE slipped and fell on some rocks injurying both wrist.
## 39508                                                                                                                                                                      EE states while attempting to make an arrest he fell down on pavement and injured his rt knee
## 39509                                                                                                                                                                            EE states while attempting to make an arrest he was bitten by a dog on the back of leg.
## 39510                                                                                                                             EE states while attempting to manually winch a boat onto the trailer, the handle slipped from his hand striking him in the groin area.
## 39511                                                                                                                                                         EE states while attempting to obtain a statement from an inmate the inmate threw some feces in her rt eye.
## 39512                                                                                                                                                      EE states while attempting to open a car window the window shattered causing a cut to the lt thumband rt hand
## 39513                                                                                                                                                  EE states while attempting to open a cooler door that was difficult to open he felt a muscle pull of his rib cage
## 39514                                                                                                                   EE states while attempting to open a door to the clotheshouse the door was difficult to open so therefore EE had to pull causing a strain rt arm
## 39515                                                                                                                                                                             EE states while attempting to open a lock to a gate the lock struck her lt hand finger
## 39516                                                                                                                                         EE states while attempting to open a sliding window her had slipped off the latch causing her rt pinky finger to be caught
## 39517                                                                                                                                                                EE states while attempting to open cell to pick upa tray the door of the cell closed on EE lt wrist
## 39518                                                                                                                                                                             EE states while attempting to open echo dorm outer sallyport door she injured her hand
## 39519                                                                                                                                                                           EE states while attempting to open file door his finger was caught causing a laceration.
## 39520                                                                                                                                                              EE states while attempting to open the door to the kitchen she struck her lt middle finger on thedoor
## 39521                                                                                                                                                          EE states while attempting to open the tower door the rod slipped out of hand and mashed third lt finger.
## 39522                                                                                                                                                                  EE states while attempting to open trap door the rod slipped from his hand mashing his lt finger.
## 39523                                                                                                                                        EE states while attempting to pass through controldoor the door closed causing EE to be caught between door injuring rt arm
## 39524                                                                                                                                                                                       EE states while attempting to pick up a bucket of steele he injured his back
## 39525                                                                                                                                                                                           EE states while attempting to pick up a stool he heard a pop in his back
## 39526                                                                                                                                                                  EE states while attempting to place a storage shelf he felt a sharp pain in hip and rib cage area
## 39527                                                                                                                                                                                        EE states while attempting to place inmate in car he twisted his lower back
## 39528                                                                                                                                        EE states while attempting to place lid on top of cooler he slipped and struck his head on the corner of a metal window fan
## 39529                                                                                                                                                EE states while attempting to place patient in restraints, patient pulled against her and pullingher wrist and hand
## 39530                                                                                                                                EE states while attempting to pull a sign from itsstand as he was lifting the sign it immediately released striking EE in the nose.
## 39531                                                                                                                                               EE states while attempting to pursue a probationershe slipped and fell on wet surface injuring her lt leg/lower back
## 39532                                                                                                                                                                  EE states while attempting to push a conveyor he felt sharp pain in the lower portion of his back
## 39533                                                                                                                                               EE states while attempting to put the binoculars back in the cabinet he struck his head on the latch of the cabinet.
## 39534                                                                                                                         EE states while attempting to remove an electricalcan opener from the top of a toast oven she place her lt hand on the oven causing a burn
## 39535                                                                                                                                                                                             EE states while attempting to restrain a client he injured his lt hand
## 39536                                                                                                                                                                                     EE states while attempting to restrain a student she injured her abdomen area.
## 39537                                                                                                                                    EE states while attempting to restrain a student the student pushed EE against a wall causing injurying to the rt index finger.
## 39538                                                                                                                 EE states while attempting to restrain an aggressiinmate--the inmate tried to pull away from EE causing EE rt hand/thumb to be caught in handcuffs
## 39539                                                                                                                                                              EE states while attempting to restrain an aggressive inmate he fell to the floor injuring his rt knee
## 39540                                                                                                                                                                                   EE states while attempting to restrain an inmate the inmate fell on his rt ankle
## 39541                                                                                                                                        EE states while attempting to restrain an inmate the inmate pushed him into a boat deck causing injury to his lt upper arm.
## 39542                                                                                                                                              EE states while attempting to retrieve some cleaner to clean doors the broom handle fell striking her across the head
## 39543                                                                                                                                                      EE states while attempting to run away from a large rotweiler dog he struck the side of car twisting his back
## 39544                                                                                                                                                            EE states while attempting to sat down in a chair she fell to the floor injurying her buttocks and back
## 39545                                                                                                                                                EE states while attempting to sat down in a chair the chair broke causing EE to hit the floor striking his lt elbow
## 39546                                                                                                                                                                           EE states while attempting to sat in a chair the chair tipped over causing a back injury
## 39547                                                                                                                               EE states while attempting to sat in a chair whileanswering the phone the chair slid from underneathher causing her to fall to floor
## 39548                                                                                                                                                           EE states while attempting to secure a lock he heard something pop in the knuckle of his rt indexfinger.
## 39549                                                                                                                                                                           EE states while attempting to secure the gate her rt thumb was mashed by the locking bar
## 39550                                                                                                                                                   EE states while attempting to seperate two inmate from fighting one of the inmate head struck her under the chin
## 39551                                                                                                                                           EE states while attempting to seperate two inmate who was fighting she received at scratch to the lower side of her face
## 39552                                                                                                                                          EE states while attempting to seperate two inmatesinvolved in a physical altercation, EE injured hisgroin in the process.
## 39553                                                                                                                                                                        EE states while attempting to serve arrest paper on a defendant he fell in the parking lot.
## 39554                                                                                                                                            EE states while attempting to sew a button on another nurse's uniform she puncture her rt index finger with the needle.
## 39555                                                                                                                         EE states while attempting to sit down in a chair she missed the chair falling striking a desk and file cabinet causing injury to his back
## 39556                                                                                                                            EE states while attempting to sit down in a chair the chair move from underneath him causing him to fall on the floor injuring his hip.
## 39557                                                                                                                                            EE states while attempting to sit down in a chair the chair roll from under her causing injury to her back and lt wrist
## 39558                                                                                                                               EE states while attempting to sit down in a chair the chair rolled from under her causing her to fall to the floor injuring her back
## 39559                                                                                                                  EE states while attempting to sit down in a chair the chair rolled from under him causing him to fall to the floor injuring his back and lt elbow
## 39560                                                                                                                                   EE states while attempting to sit down in a chair the chair rolled from under him causing him to land on his buttocks and rt hip
## 39561                                                                                                                                           EE states while attempting to sit down in a chair the chair slipped from under him causing him to fall injuring his back
## 39562                                                                                                                  EE states while attempting to sit down in a chair the chair started falling backward and while trying to keep from falling she injured her rt han
## 39563                                                                                                                                                       EE states while attempting to sit down in a chair the chair tilted forward when EE heard a popped inhis back
## 39564                                                                                                                                       EE states while attempting to sit down on a stool the stool slipped from under her causing her to fall backward to the floor
## 39565                                                                                                                          EE states while attempting to sit down on a stool to stool rolled away from under her causing EE to fall to the floor injurying her back.
## 39566                                                                                                                                                                                              EE states while attempting to sit in a chair she felt her rt knee pop
## 39567                                                                                                                              EE states while attempting to sit in a chair she heard a pop when the chair went backward causing injury to her lt arm and back area.
## 39568                                                                                                                                                   EE states while attempting to sit in a chair the chair broke causing EE to fall backward injuring his lower back
## 39569                                                                                                                            EE states while attempting to sit in a chair the chair broke causing EE to fall onto the floor injurying his head, neck, back, and hips
## 39570                                                                                                                                                                       EE states while attempting to sit in a chair the chair broke causing EE to fall to the floor
## 39571                                                                                                                       EE states while attempting to sit in a chair the chair broke causing EE to fall to the floor injuring her rt shoulder, arm, thigh, and wrist
## 39572                                                                                                                                                                    EE states while attempting to sit in a chair the chair broke causing her to fall onto the floor
## 39573                                                                                                                                       EE states while attempting to sit in a chair the chair rolled from under her causing her to fall striking against a bookcase
## 39574                                                                                                                                                                EE states while attempting to sit in a chair the chair seat fell forward causing the chair to break
## 39575                                                                                                                                       EE states while attempting to sit in a chair the chair slid from under her causing EE to fall to the floor injuring lt elbow
## 39576                                                                                                                                                                  EE states while attempting to sit in a chair the chair slipped from under her causing her to fall
## 39577                                                                                                                                EE states while attempting to sit in a chair the chair was not secured causing EE to fall to the floor injuring her lt leg and back
## 39578                                                                                                                             EE states while attempting to sit in a roller chair the chair rolled from under him causing him to fall to the floor injuring lt elbow
## 39579                                                                                                                                        EE states while attempting to sit in a swivel chair that had some screws missing she fell out ofchair injurying her rt hip.
## 39580                                                                                                                              EE states while attempting to sit in chair the chair roll from under her causing her to fall to the ground and injured her lower back
## 39581                                                                                                                                                                    EE states while attempting to sit in chair the chair slipped causing EE to fall onto the floor.
## 39582                                                                                                                                    EE states while attempting to sit on a stool the stool rolled from under her causing her to fall to the floor injuring her back
## 39583                                                                                                                                                    EE states while attempting to slide a desk closer to a wall his lt finger was caught between the desk and wall.
## 39584                                                                                                                                                                                 EE states while attempting to stand up his knee popped and gave away causing pain.
## 39585                                                                                                                                        EE states while attempting to take a defendant into custody the defendant ran into stairway causing injury to EE rt finger.
## 39586                                                                                                                                        EE states while attempting to tp restrain a student the student elbow hit the ypa's rt index finger May possibly be jammed.
## 39587                                                                                                                                               EE states while attending a mandatory pepper spraytraining she was sprayed in the face and eyes withthe pepper spray
## 39588                                                                                                                                                                     EE states while attending a pepper spray training course some of the spray got into his lt eye
## 39589                                                                                                                                              EE states while attending a pesticide meeting at the greensboro agriculture ctr he was bitten by a spider on the neck
## 39590                                                                                                                                                                    EE states while attending a training contact she was struck on the rt side of head by a client.
## 39591                                                                                                                                                                 EE states while attending a unarmed self denfense training course she fell and injured her rt knee
## 39592                                                                                                                                               EE states while attending an oc pepper spray training course---the fumes from the pepper spray has caused irritation
## 39593                                                                                                                                                                          EE states while attending training she injured her back hips and leg doing repetative cpr
## 39594                                                                                                                                                                                                EE states while backing lawn mower she struck the metal on a fence.
## 39595                                                                                                                                                                                                                    EE states while backing she fell over a crutch.
## 39596                                                                                                                                                           EE states while bathing a resident he began to fall EE reached out to catch him and felt pain in rt arm.
## 39597                                                                                                                                                                                                       EE states while bathing client EE claims to have hurt wrist.
## 39598                                                                                                                                                                                                        EE states while bathing client struck EE in the chest area.
## 39599                                                                                                                                          EE states while bathing client the client became aggressive and started striking EE causing injury to lt wrist and thumb.
## 39600                                                                                                                                                                   EE states while beaking loose bonnet on valve while pulling pipe wrench and hit rt lef w/hammmer
## 39601                                                                                                                                                                                                                 EE states while bending a pipe he injured his back
## 39602                                                                                                    EE states while bending down emptying trash, she straighten up hit her head on the counter because trash was under counter. Anrde lunsford witness accident. ()
## 39603                                                                                                                                                                               EE states while bending down to assist with clientshe slipped and fell on a wet mat.
## 39604                                                                                                                                                              EE states while bending down to conduct a locker search when he stood up he felt a pop in his lt knee
## 39605                                                                                                                                                     EE states while bending down to pick up a bag of laundry and when she stood up she felt pain in herlower back.
## 39606                                                                                                                                                                         EE states while bending down to pick up a form shefelt a muscle being pulled in her lt leg
## 39607                                                                                                                                                        EE states while bending down to pick up a piece ofpaper when he stood up he struck his head on a metal box.
## 39608                                                                                                                                                                                              EE states while bending down to search im locker, his rt knee popped.
## 39609                                                                                                                                                                                  EE states while bending down to squeeze out a mop she felt pain in her lower back
## 39610                                                                                                                                                                                    EE states while bending down to unlock leg irons on inmate he injured his back.
## 39611                                                                                                                                                                       EE states while bending downward to pick up some equipment he felt a pull in his lower back.
## 39612                                                                                                                                                                         EE states while bending in front of a cabinet when he stood up he felt pain in his rt knee
## 39613                                                                                                                                                                  EE states while bending onto the floor to pickup a thumbtack one of the tack went into her lt leg
## 39614                                                                                                                                                                            EE states while bending over a fence to pick up sunglasses he cut his lt middle finger.
## 39615                                                                                                                                                                        EE states while bending over the control panel block he felt a sharp pain in his lower back
## 39616                                                                                                                                                        EE states while bending over to pick up a canteen she raised upward and struck her head against the cabinet
## 39617                                                                                                                                                                                   EE states while bending over to pick up a tray shefelt a pain in her chest area.
## 39618                                                                                                                                                EE states while bending over to pick up keys outside of his truck the wind blew causing the door to strike his head
## 39619                                                                                                                                                                                       EE states while bending over to pick up mail she felt pain in her lower back
## 39620                                                                                                                                                   EE states while bending over to retrieve a computer disk he sneezed and felt pain in the lt side of his rib cage
## 39621                                                                                                                                                                EE states while bending over to retrieve a folder from file cabinet he struck his head on the latch
## 39622                                                                                                                                                      EE states while bending over to wash out a barrellwith a water hose he felt sharp pain in his lower back area
## 39623                                                                                                                                                                 EE states while bending the end of a fluroscent tube it shattered in her hand injurying her finger
## 39624                                                                                                                                                                                    EE states while bending to pickup a box of trash bag she felt pain in her back.
## 39625                                                                                                                EE states while bent down, cleaning the food off the floor in front of a resident, I stood and felt a sharp pain in my ankle and pop in my knee. ()
## 39626                                                                                                                                                   EE states while between two cows and milking them he was crushed and squeezed causing pressure to his chest area
## 39627                                                                                                                                                                                       EE states while blocking a door with a doorstop the door struck EE head/nose
## 39628                                                                                                                                                                           EE states while boarding an ambulance with an inmate her left knee gave out causing pain
## 39629                                                                                                                                                                           EE states while breaking up a fight between inmatean inmate scatched her rt index finger
## 39630                                                                                                                                                  EE states while breaking up a fight between two inmates he fell into a ditch injurying his rt elbow and low back.
## 39631                                                                                                                                                                                       EE states while breaking up a fight, was bitten and cut on the rt finger/arm
## 39632                                                                                                                                                                                       EE states while breaking up two inmates from fighting his rt arm was injured
## 39633                                                                                                                                                                            EE states while breaking up two inmates from fighting--blood splattered into EE's mouth
## 39634                                                                                                                                                       EE states while breeding cows he stepped backward into a hole or scale pit injuring his ribs and lt shoulder
## 39635                                                                                                                                                                      EE states while bringing paper work to supervisor home the car ran off road and flipped over.
## 39636                                                                                                                                                                                                    EE states while buffing the floor a bee stung him on the rt ear
## 39637                                                                                                                    EE states while building a shed he was holding thepost when the timber became loose striking EE on the lt hand injuring his 2nd and 3rd fingers
## 39638                                                                                                                 EE states while caring a obese patient to restrainpatient became combative, EE was knocked into door. Carpal tunnel synd rt hand, rt shldr impinge
## 39639                                                                                                                                                                          EE states while carring a patient to the quiet room patient bit EE on top of the lt hand.
## 39640                                                                                                                                                                                                EE states while carry a bag of needle she was stuck in the rt hand.
## 39641                                                                                                                                                                                                          EE states while carry a platform he twisted his lt wrist.
## 39642                                                                                                                                                                                             EE states while carry some files up some steps shetwisted her rt ankle
## 39643                                                                                                                                               EE states while carrying a 5 gallon bucket to a garage he stepped on a pipe amd turn the wrong waytwisting his back.
## 39644                                                                                                                                                                                           EE states while carrying a bag up some steps she injured her lower back.
## 39645                                                                                                                                                                                              EE states while carrying a box out of warehouse she injured her back.
## 39646                                                                                                                                                                              EE states while carrying a bucket down some stairshe slipped and injured his lt knee.
## 39647                                                                                                                                                                                                        EE states while carrying a ladder he felt pain in his back.
## 39648                                                                                                                  EE states while carrying a mattress onto the cell block, he accidentally cut his left forearm on an exposed piece of metal attached to food cart.
## 39649                                                                                                                                                                          EE states while carrying a pan with milk and juiceup some steps he felt pain in his back.
## 39650                                                                                                                                                                                                  EE states while carrying a scales she pulled a muscle in her back
## 39651                                                                                                                                                                                     EE states while carrying copier paper up stairs he pulled a muscle in his back
## 39652                                                                                                                                                                           EE states while carrying food trays from cafeteriaee slipped on steps twisting rt ankle.
## 39653                                                                                                                                                           EE states while carrying items to a room she slipped and fell on the floor injuring her coccyx(tailbone)
## 39654                                                                                                                                                                                           EE states while carrying tools to the bus his lt knee struck a guardrail
## 39655                                                                                                                                                                                              EE states while carrying tools to the shop he feltpain in his lt arm.
## 39656                                                                                                                                                                        EE states while carrying trays to cells she stepped off a sidewalk and twisted her lt ankle
## 39657                                                                                                                                                                              EE states while catching a falling wall locking he pulled a muscle in his groin area.
## 39658                                                                                                                                                                                   EE states while changing a tire due to blow out he pulled a muscle in his rt arm
## 39659                                                                                                                                                                  EE states while changing a tire on trailer his finger was caught between the tire and trailer bed
## 39660                                                                                                                                                                                              EE states while changing pt the pt grabbed EE lt hand and twisted it.
## 39661                                                                                                                                               EE states while changing the blade in a razor paint scrapper the razor slipped out of hand and cut thumb on rt hand.
## 39662                                                                                                                                                         EE states while changing the direction of the blow chute it felled off machine injurying EE neck and head.
## 39663                                                                                                                                                                                   EE states while changing the handles on a bush axehe accidently cut his forehead
## 39664                                                                                                                                 EE states while changing the oil in a storm drain well--he lifted the grate when the grate slipped striking EE on the lt lower leg
## 39665                                                                                                                                                                                                  EE states while changing tires on a car he felt pain in his chest
## 39666                                                                                                                                                                                         EE states while chasing a client down the hall shefell injuring her lt hip
## 39667                                                                                                                                              EE states while chasing a client he and the clientboth fell to floor causing injury to EE lt knee and upper rib cage.
## 39668                                                                                                                                                    EE states while chasing a defender he fell in some brush and thorn and recd scratches on his lt arm, face, neck
## 39669                                                                                                                                                                               EE states while chasing a suspect up a hill the suspect kicked EE in the chest area.
## 39670                                                                                                                                                                                EE states while chasing an absconder he fell striking his rt knee on a cinderblock.
## 39671                                                                                                                                                                             EE states while chasing some cows thru some weeds his rt arm started to itch and swell
## 39672                                                                                                                                                           EE states while chasing suspect on foot he ran into a parked vehicle and injured both knees and lt side.
## 39673                                                                                                                                                      EE states while checking a closet during a sercuity check he felt some type of insect bite him on the forearm
## 39674                                                                                                                                        EE states while checking a fire extinguisher for safety report his lt hand slipped on the metal causing a cut to the finger
## 39675                                                                                                                                                             EE states while checking a vent over a deep fryer one of the vent fell down striking EE on the rt knee
## 39676                                                                                                                                                               EE states while checking a work site his foot was caught in some vines causing injury to his lt knee
## 39677                                                                                                                                                                   EE states while checking an inmate pulse and breathing sounds the inmate bit her on the rt wrist
## 39678                                                                                                                                                         EE states while checking bearing roller on a machine his hand slipped into the roller injuring his rt hand
## 39679                                                                                                                                                                             EE states while checking blood sugar she was stuck by the needle to her rt hand finger
## 39680                                                                                                                                                                              EE states while checking doors he tripped over a metal door stop injuring his rt foot
## 39681                                                                                                                                              EE states while checking equipment in the parking lot he slipped and fell on ice striking his rt knee against the van
## 39682                                                                                                                                                                                  EE states while checking fisherman on lake he fell on rocks injuring his rt wrist
## 39683                                                                                                                                                      EE states while checking food cart and trays a strap with a metal hook bounced back striking EE in the lt eye
## 39684                                                                                                                                                                                          EE states while checking for leaks he made a turn and struck his rt elbow
## 39685                                                                                                                               EE states while checking his computer unit to see why his light was not blinking he tilted the unit causing it fall onto his rt foot
## 39686                                                                                                                                           EE states while checking in the storage room he turned to exit when he slipped and struck his headagainst the door frame
## 39687                                                                                                                                                                                                     EE states while checking on a probationer he was bit by a dog.
## 39688                                                                                                                                                                     EE states while checking on a probationer she slipped and fell off porch injuring her rt knee.
## 39689                                                                                                                                                                              EE states while checking out library books an inmate threw some unknown liquid at her
## 39690                                                                                                                                               EE states while checking pt temperature some bed linens was shaken above her head causing lint to get into her eyes.
## 39691                                                                                                                                       EE states while checking security on some metal cabinets and upon exiting the area her right indexfinger was caught in door.
## 39692                                                                                                                                                                                  EE states while checking supply closet for supplies someting got into his lt eye.
## 39693                                                                                                                         EE states while checking terminals a gate valve rod caught his shirt and while turning to release himself from the rod he injured his back
## 39694                                                                                                                                                            EE states while checking the blood transfusion machine the top came off and splattered blood everywhere
## 39695                                                                                                                                                                                             EE states while checking the doors she became overheated and felt sick
## 39696                                                                                                                                             EE states while checking the fluid level on the road squad bus he stepped down from the bumper andtwisted his lt knee.
## 39697                                                                                                                                                     EE states while checking the milk truck for sercuity purpose she lost her balance and fell injuring her rt hip
## 39698                                                                                                                                                          EE states while checking the security of the perimeter fence he stepped on a rock and twisted his lt foot
## 39699                                                                                                                                                                                                       EE states while checking the showers he fell on waxed floor.
## 39700                                                                                                                                                EE states while checking to see has inmate completed exercises his lt arm was caught against the frame of the door.
## 39701                                                                                                                                                        EE states while checking under a table for a contraband the table slipped off the chair striking EE big toe
## 39702                                                                                                                                                               EE states while checking urine specimens she has to force the lock open and cut her lt thumb on lock
## 39703                                                                                                                                                                                                       EE states while checking water level he stepped into a ditch
## 39704                                                                                                                      EE states while checking weapon after assuring post the bolt on the rifle did not work properly while pulling the bolt back rifile discharged
## 39705                                                                                                                                                             EE states while chopping wood with hand tool the handle of the tool slipped striking EE on the rt knee
## 39706                                                                                                                                                                                 EE states while cleaing wheelchair some of the cleaning fluid got into his rt eye.
## 39707                                                                                                                                                                                         EE states while cleaning a bathroom a bar fell on her lt shoulder and ear.
## 39708                                                                                                                                                                   EE states while cleaning a blood spill some germicide chemical splashed and got into her lt eye.
## 39709                                                                                                                                         EE states while cleaning a cell she found a newspaper which contained a razor blade which cut her on the lt middle finger.
## 39710                                                                                                                                                                     EE states while cleaning a cooling tower he grabbed a metal support and cut his rt ring finger
## 39711                                                                                                                                                              EE states while cleaning a helicopter EE misjudge a step and fell 3 to 4 feet onto the concrete floor
## 39712                                                                                                                                  EE states while cleaning a light fixture during tower duty his mouth struck the end of the broom causing his front tooth to crack
## 39713                                                                                                                                                                             EE states while cleaning a refrigerator he strain his back while reaching and bending.
## 39714                                                                                                                                                EE states while cleaning a roof his foot slipped and while trying to keep from falling he injured his rt hand thumb
## 39715                                                                                                                                                            EE states while cleaning a room she slipped and fell in some water injurying her thigh and lt shoulder.
## 39716                                                                                                                  EE states while cleaning air conditioning units with a cleaning detergent the detergent accidentalspilled on his rt foot causing a chemical burn.
## 39717                                                                                                                                                                                       EE states while cleaning an air conditioner filterhe cut his rt hand finger.
## 39718                                                                                                                                            EE states while cleaning an inmate threw a cup which contained urine causing it to strike EE on the chest and arm area.
## 39719                                                                                                                              EE states while cleaning boiler tubes his glasses fell off from his face --EE accidently stepped on his glasses causing them to break
## 39720                                                                                                                                                                           EE states while cleaning counter top he cut his hand on the broken laminated counter top
## 39721                                                                                                                                                       EE states while cleaning dental instrument she was punctured on the rt hand middle finger by a tyne explorer
## 39722                                                                                                                                            EE states while cleaning dorm rooms she gradually developed pain in her upper right shoulder. Deniesany physical injury
## 39723                                                                                                                                                       EE states while cleaning fountain filter, filter turned and power washer water hit hand and cut left hand ()
## 39724                                                                                                                                                                                             EE states while cleaning office some disinfectant got into his lt eye.
## 39725                                                                                                                                                                         EE states while cleaning out back of truck he footslipped causing an injury to his rt leg.
## 39726                                                                                                                                                 EE states while cleaning out supplies to be sent to surplus she moved 3 cases of paper which has caused back pain.
## 39727                                                                                                                                                                                     EE states while cleaning patient's storage closet and felt pain in lower back.
## 39728                                                                                                                                                                                         EE states while cleaning refrigerator something bit her on her left leg ()
## 39729                                                                                                                      EE states while cleaning seats in bus, he was in an awkard position spraying back of seats in frontof back seats for extended period of time.
## 39730                                                                                                                                                                                                         EE states while cleaning showers she injured right forearm
## 39731                                                                                                                                                                       EE states while cleaning some light fixtures some of the cleaning solution got into his face
## 39732                                                                                                                                                                   EE states while cleaning spots on walls, quat- disinfectant was sprayed on rag and got in lt eye
## 39733                                                                                                                                                                                            EE states while cleaning the bottom of refrigeratoshe injured her back.
## 39734                                                                                                                                                                      EE states while cleaning the control room he felt a stinging sensation of his lt hand and arm
## 39735                                                                                                                                                                                          EE states while cleaning the lathe cutting tool he cut his lt hand/finger
## 39736                                                                                                                                     EE states while cleaning the physics lab he pickedup trash and lifted heavy equipment when he felt pain in his lower back area
## 39737                                                                                                                              EE states while cleaning the recreation area she was assaulted by an inmate-the inmate held a razor to her throat causing her to fall
## 39738                                                                                                                 EE states while cleaning the supply closet she reached for a trash bag when a mop fell down from top shelf striking EE nose & damaging her glasses
## 39739                                                                                                                                                                                              EE states while cleaning tower of a trap door he fell through opening
## 39740                                                                                                                                                                         EE states while cleaning unit, she scrape her right arm on a contaminated hand-piece burr.
## 39741                                                                                                                                                                                                  EE states while cleaning up a sewage spill he was bitten by ticks
## 39742                                                                                                                       EE states while cleaning up broken glass which was caused by a falling window she felt some of the glass embedded in the palm of her rt hand
## 39743                                                                                                                                                                        EE states while cleaning work area she slipped andfell on floor injurying her back and hip.
## 39744                                                                                                                      EE states while cleaning/ waxing overhead pipes in control booth as the offcier reached over to do the end of pipe ladder slipped and he fell
## 39745                                                                                                                                                                         EE states while clearing vines to access a transformer he came in contact with poison ivy.
## 39746                                                                                                                                                                            EE states while climbing a flight of steps she felt something pull in her upper stomach
## 39747                                                                                                                                                                          EE states while climbing a flight of steps to feed inmates he pulled a muscle in his back
## 39748                                                                                                                                                                                                  EE states while climbing a ladder he felt pain in his groin area.
## 39749                                                                                                                                                              EE states while climbing a scaffold he lost his grip and fell approximately 15ft injuring his rt foot
## 39750                                                                                                                                                                                                 EE states while climbing a steep bank he felt a pop in his rt foot
## 39751                                                                                                                        EE states while climbing on a chair to place mail basket on top of shelf the chair began to roll backwards causing EE to fall to the floor.
## 39752                                                                                                                                                                          EE states while climbing out of a manhole his footslipped causing him to strike his knee.
## 39753                                                                                                                                                                                                            EE states while climbing steps she twisted her lt knee.
## 39754                                                                                                                                                                           EE states while climbing up some steps she steppedthe wrong way and twisted her lt ankle
## 39755                                                                                                                                                                                                          EE states while climing out of tower # 5 he hit his elbow
## 39756                                                                                                                                                                                     EE states while closin g the stall door in the bathroom and mashed his finger.
## 39757                                                                                                                                                                                                   EE states while closing a door he struck his rt knee on the door
## 39758                                                                                                                                                                                   EE states while closing a door her finger was caught between door and doorframe.
## 39759                                                                                                                                                                                                   EE states while closing a door her finger was caught in the door
## 39760                                                                                                                                                                                        EE states while closing a door his finger was caught in the door--lt finger
## 39761                                                                                                                                                                 EE states while closing a door his hand slippped causing his rt wrist to strike the locking device
## 39762                                                                                                                                                                                        EE states while closing a door it slammed on his 2nd finger and pinched it.
## 39763                                                                                                                                                                                    EE states while closing a door she accidentally closed her lt thumb in the door
## 39764                                                                                                                                                                                                    EE states while closing a door the door closed on his rt finger
## 39765                                                                                                                                                                EE states while closing a door to the dormitory she closed the door on her lt index finger and hand
## 39766                                                                                                                                                         EE states while closing a door to the quiet room astudent kicked the door into EE's finger on the lt hand.
## 39767                                                                                                                                                        EE states while closing a drawer to a cabinet the drawer fell off alignment and smashed his lt index finger
## 39768                                                                                                                                                                                 EE states while closing a gate an inmate pushed the gate open injuring her fingers
## 39769                                                                                                                                                                                EE states while closing a gate her finger was caught between the latch and the gate
## 39770                                                                                                                                                                                                   EE states while closing a gate her finger was caught in between.
## 39771                                                                                                                                       EE states while closing a glass window she injuredher rt hand---severe cuts and lacerations michael garland/pa.. F18 filed..
## 39772                                                                                                                                                                         EE states while closing a steel door he accidently closed the door on his rt middle finger
## 39773                                                                                                                                                                                 EE states while closing a trap door to a cell he felt pain in his middle back area
## 39774                                                                                                                                                                                                      EE states while closing a window she felt a pain in her neck.
## 39775                                                                                                                                                                            EE states while closing an envelope a metal clasp cut her rt ring finger on the lt hand
## 39776                                                                                                                                                                                              EE states while closing door he accidently closed finger in the door.
## 39777                                                                                                                                                                               EE states while closing door his rt hand was caught between the door and door frame.
## 39778                                                                                                                                                    EE states while closing door of the bathroom the door was closed on her lt hand injurying her lt middle finger.
## 39779                                                                                                                                                                      EE states while closing door to vehicle she accidently close the door on her lt index finger.
## 39780                                                                                                                                                                                             EE states while closing doors her finger was caught between two doors.
## 39781                                                                                                                                                                                    EE states while closing gate she had to pulled injuring her rt arm and shoulder
## 39782                                                                                                                                                                 EE states while closing sercuity door he reached up to pull door shut when his rt shoulder popped.
## 39783                                                                                                                                                                                         EE states while closing the closet door her lt thumb was caught--torn skin
## 39784                                                                                                                                                                                 EE states while closing the door of a metal gate her finger got caught in between.
## 39785                                                                                                                                                      EE states while closing the door to his car he felt pain in his rt shoulder--do not know what caused the pain
## 39786                                                                                                                                                                        EE states while closing the door to the control station his rt hand was closed in the door.
## 39787                                                                                                                                                                   EE states while closing the door to the library her finger on the lt hand was caught in between.
## 39788                                                                                                                                                                                   EE states while closing the file drawer the drawer closed on her rt index finger
## 39789                                                                                                                                                                                    EE states while closing the hood on a truck he felt pain in his back and rt leg
## 39790                                                                                                                                                                   EE states while closing the kitchen door she smashed her lt index finger in the edge of the door
## 39791                                                                                                                                                                          EE states while closing the sally port gate door the metal piece fell down on her rt hand
## 39792                                                                                                                                       EE states while closing the sliding window in the tower his lt middle finger was caught between the door and the door frame.
## 39793                                                                                                                                                                                                EE states while closing trap door she closed the door on her finger
## 39794                                                                                                                           EE states while collecting keys right index fingerwas caught in drawer when officer james turner pushed the drawer closed. Finger mashed
## 39795                                                                                                                                                                                                     EE states while collecting paper he was exposed to formic acid
## 39796                                                                                                                                           EE states while collecting tray, inmate threw trashout the wicker door while closing & lt 4th finger was caught in door.
## 39797                                                                                                                                                EE states while collecting trays from inmate the inmate shoved a tray causing the tray to strike against EE rt hand
## 39798                                                                                                                                                 EE states while coming down a ladder she lost her balance and missed a step striking her rt hand on the steel rail
## 39799                                                                                                                                                                   EE states while coming down stairs the handrail gave away causing officer to injured his lt foot
## 39800                                                                                                                                                               EE states while coming down stairs to the control room she cut her rt arm on the metal light switch.
## 39801                                                                                                                                                                                             EE states while coming down step he slipped and fell injuring his back
## 39802                                                                                                                                        EE states while coming down steps he slipped and while holding to the rails to keep from falling heinjured his lt shoulder.
## 39803                                                                                                                                                                EE states while coming down steps to count inmateshis rt foot slipped causing him to fall on floor.
## 39804                                                                                                                                                EE states while coming down the stairwell she missed step and grabbed the rall with her lt arm to keep from falling
## 39805                                                                                                                                                                  EE states while coming downs somes stairs she slipped and fell injuring her arm, calf and buttock
## 39806                                                                                                                                                                EE states while coming downs steps with trash bag in hand he slipped causing a pop in his back area
## 39807                                                                                                                                                                                    EE states while coming into work she stepped on a stone an twisted her rt knee.
## 39808                                                                                                                                                                                                       EE states while coming into work she tripped on the curb. ()
## 39809                                                                                                                                               EE states while coming out a produce cooler when she stepped on the grate and fell striking her rt knee on the floor
## 39810                                                                                                                                     EE states while coming out of 145a her rt foot gotcaught in shower hose sprayer on bathing slab tripped & fell down on lt knee
## 39811                                                                                                                                                                                EE states while coming out of a door another officer closed the door on his rt hand
## 39812                                                                                                                                                                      EE states while coming out of a door he slipped and fell on ice injurying his back and lt leg
## 39813                                                                                                                                                                EE states while coming out of a room she missed a step and fell injurying her neck and lumbar area.
## 39814                                                                                                                                                                     EE states while coming out of bathroom she fell and slipped on wet floor twisting her lt knee.
## 39815                                                                                                                                                                   EE states while coming out of bedroom a client pushed door causing her lt hand to bend backward.
## 39816                                                                                                                                                                   EE states while coming out of dorm area an inmate struck him on the lt hip with a broom handle..
## 39817                                                                                                                               EE states while coming out of the cooler in the kitchen his foot slipped as he stepped off the edge of a ramp injurying his rt ankle
## 39818                                                                                                                                                                         EE states while coming out of the soap room and fell EE pulled muscle in back and lt hand.
## 39819                                                                                                                                                                                    EE states while coming thru the gatehouse door the door closed on her rt finger
## 39820                                                                                                                                                           EE states while completing observation round stepping down the stairs, she twisted her ankle and fell ()
## 39821                                                                                                                                                                                   EE states while conducting a count on inmates he turned and twisted his lt foot.
## 39822                                                                                                                                                                       EE states while conducting a count on inmates he was struck in the rt eye by a inmate elbow.
## 39823                                                                                                              EE states while conducting a drug test on inmate the inmate provided a urine sample in a bottle while handing bottle to him the bottle dropped to. ..
## 39824                                                                                                                                                             EE states while conducting a home visit his foot slipped while going down steps twisting his lt ankle.
## 39825                                                                                                                                                                       EE states while conducting a research on inmates he was punctured by a needle on the rt hand
## 39826                                                                                                                                                     EE states while conducting a routine house visit he stepped into a hole in the ground and injured his rt knee.
## 39827                                                                                                                                                          EE states while conducting a search & patting downmattress she was stuck by a metal object in her finger.
## 39828                                                                                                                                                                  EE states while conducting a search of pope chase on green unit, she hit her head on a pipe brace
## 39829                                                                                                                                                          EE states while conducting a search on an inmate his hand rubbed across a needle puncturing his rt finger
## 39830                                                                                                                                EE states while conducting a shake down on h unit he bent over to pick a bottle of cleaning solutionand top busted splashed in eyes
## 39831                                                                                                                                                                                                        EE states while conducting a survey he was bitten by a tick
## 39832                                                                                                                                               EE states while conducting a unit count she slipped and fell into a floor drain injuring her rt foot, elbow and back
## 39833                                                                                                             EE states while conducting an inspection he was bending over and stooping to view equipement and stepping on/off loading dock noticed pain lower back.
## 39834                                                                                                                                                                                   EE states while conducting an inventory his rt knee gave away causing an injury.
## 39835                                                                                                                                       EE states while conducting cell search, he reachedto pull something off I/m cell window & felt a sharp pain in his shoulder.
## 39836                                                                                                                                               EE states while conducting curfew check she got out of her car and slipped and fell on ice injuring her buttock/back
## 39837                                                                                                             EE states while conducting curfew checks he had torepeatly enter and exit the state's vehicle which has caused back pain due to the size of the vehicl
## 39838                                                                                                                                             EE states while conducting home visit EE slipped and missed a step landing on the ground causing injury to lower back.
## 39839                                                                                                                                                                              EE states while conducting rounds her foot slippedcausing her to fall on her lt knee.
## 39840                                                                                                               EE states while conducting routine office visits, an offender under EE supervision attacked him. EE shot the offender and came in contact with blood
## 39841                                                                                                                                                           EE states while confiscated razor blade from an inmate when he received a cut the his lt hand ringfinger
## 39842                                                                                                                                                                   EE states while cooking peas in a kettle he openedthe lid and the steam burned his lip and nose.
## 39843                                                                                                                                                                                         EE states while cooking some hot grease splatter and went into his rt eye.
## 39844                                                                                                                                                     EE states while counseling a verbally aggressive student, the student struck EE in the face with closed fists.
## 39845                                                                                                                                                                   EE states while counseling an inmate the inmate became violent striking EE in the face with fist
## 39846                                                                                                                                                                                        EE states while counting inmates he scratched his rt elbow on the cell door
## 39847                                                                                                                                                                         EE states while counting inmates he slipped and fell onto floor injurying his lt leg/thigh
## 39848                                                                                                                                  EE states while counting money and moving bags having to turn side to side to complete his job tasks he has pain in his shoulder.
## 39849                                                                                                                                                                                                EE states while crawling under a building he was bitten by a spider
## 39850                                                                                                                                                                   EE states while crossing a street his foot slippedand fell on ice causing injury to his lt ankle
## 39851                                                                                                                                                                         EE states while crossing a wire fence during training her lt boot got caught under to wire
## 39852                                                                                                                        EE states while crossing the road to enter the facility she slipped on the road twisting her rt foot and ankle and falling into her lt knee
## 39853                                                                              EE states while crossing the st. From parking deck to attend a meeting, in the gym, she proceeded to step onto the sidewalk & rt foot caught uneven pavement & she tumbled & fell. ()
## 39854                                                                                                                                                          EE states while crossing the street a vehicle rode by and caused some dust particles to fly intoee lt eye
## 39855                                                                                                                                                         EE states while crossing the street she stepped off the sidewalk stumbled and fell injuring her lt/rt knee
## 39856                                                                                                                                                EE states while crossing the street she tripped over an uneven pavement and fell injurying her rt knee and lt ankle
## 39857                                                                                                                                                                      EE states while crossing the yard during a thunderstorm he slipped and fell injuring his back
## 39858                                                                                                                                                                                           EE states while cutting a cabbage--she cut her lt. Thumb with the knife.
## 39859                                                                                                                                                                                        EE states while cutting a conduit with a backsaw the saw cut lt ring finger
## 39860                                                                                                                                                        EE states while cutting a hole during duct work his tin snips slipped causing EE to cut his lt pinky finger
## 39861                                                                                                                                                    EE states while cutting a piece of metal with a hacksaw the metal slipped causing EE to cut his lt index finger
## 39862                                                                                                                                                                 EE states while cutting a sealing strip with scissors the point of the scissors stuck her lt hand.
## 39863                                                                                                                                                                     EE states while cutting a tree at the warehouse the tree kicked back and landed on his lt foot
## 39864                                                                                                                                                                      EE states while cutting an air duct to install some insulation something blew into his rt eye
## 39865                                                                                                                                                                                                             EE states while cutting an onion, cut rt top of thumb.
## 39866                                                                                                                                                                EE states while cutting briars with a swinging blade a branch flew back and struck EE in the lt eye
## 39867                                                                                                                                                                                                      EE states while cutting cloth he accidentally cut his rt hand
## 39868                                                                                                                                             EE states while cutting designs w/pro-cutter when finger got caught in slide. Cutting middle tip of finger on lt hand.
## 39869                                                                                                                                                                    EE states while cutting grass on a riding lawn mower something flew down the back of his shirt.
## 39870                                                                                                                                                                                                          EE states while cutting limbs he injured his rt shoulder.
## 39871                                                                                                                                                                                      EE states while cutting limbs out of trees he came in contact with poison ivy
## 39872                                                                                                                                     EE states while cutting rt of ways for the community work prog he was exposed to insect bites and poison plants--lft arm, skin
## 39873                                                                                                                                              EE states while cutting sheet metal with shears he felt a sharp pain between shoulder blade and mid part of back area
## 39874                                                                                                                                                                                                EE states while cutting steel a piece of steel went into his lt eye
## 39875                                                                                                                                                                                                      EE states while cutting strap off plastic he cut his lt thumb
## 39876                                                                                                                                                                          EE states while cutting with a knife the knife slipped cutting EE on the rt index finger.
## 39877                                                                                                                                                                                   EE states while cutting wood on a table the wood kicked back striking EE lt hand
## 39878                                                                                                                                                                                EE states while dealing with aggressive inmate he received an injury to his rt hand
## 39879                                                                                                                                                                                   EE states while dealing with an aggressive inmate he injured his rt arm and hand
## 39880                                                                                                                                                                           EE states while dealing with an aggressive inmate his rt knee struck a concrete sidewalk
## 39881                                                                                                                  EE states while delivering mail in state vehicle a car pulled out in front of him and damage the ltfront fender and caused injury to both knees..
## 39882                                                                                                                        EE states while delivering mail she stepped on a porch and struck her lt foot on a cement ashtray causing her to tripped and strike rt knee
## 39883                                                                                                                                                                                     EE states while demolishing a garage a board fell on him striking his rt elbow
## 39884                                                                                                                                                                                 EE states while demonstrating a rock climbing technique he injured his rt shoulder
## 39885                                                                                                                                                                                    EE states while demonstrating a training techniqueher rt hand/wrist was injured
## 39886                                                                                                                                                  EE states while demonstrating a wrist movement procedure during a self defense class he felt a pop in his rt hand
## 39887                                                                                                                                                             EE states while demonstrating how to put linens onhospital bed the bed came apart and fell on her feet
## 39888                                                                                                                                                        EE states while demonstrating on how to castrate a calf's head the head of the calf struck him in the nose.
## 39889                                                                                                                                                             EE states while demonstrating the use of gears he was knock down and the tractor ran over his lt thigh
## 39890                                                                                                               EE states while demonstrating to another nurse on accu chek advantage strips she reached into the case to get a strip when she was stuck by a needle
## 39891                                                                                                                               EE states while demostrating a 2nd phase ropes course obstacle his foot slipped on the bonsil chair as he reached for rope fell back
## 39892                                                                                                                                                                  EE states while digging a hole she fell back on the shovel and recd a laceration on her rt thigh.
## 39893                                                                                                                                                     EE states while directing traffic a motor vehicle failed to stop ran off the road and struck EE on the lt leg.
## 39894                                                             EE states while directing traffic at the inters of alston ave & lawson st, the driver of a vehicle turned short striking officer with outside mirror of vehicle injuring left shoulder and left arm ()
## 39895                                                                                                                                                                                                EE states while directing traffic she became overheated by the heat
## 39896                                                                                                                                                                                                         EE states while distributing linen he was attackedby a pt.
## 39897                                                                                                                     EE states while do unarmed self defense training he was thrown by his partner & he landed on his elbow which pressed into his left rib cage ar
## 39898                                                                                                                                                                                         EE states while doing a law enforcement training was propelled into a door
## 39899                                                                                                                          EE states while doing a perimeter fence check he slipped on the frost-covered ground. Area was steep and he injured right knee as he fell
## 39900                                                                                                             EE states while doing a scan of north yard when he was walking around c dorm going towards the frontof the dorm he stepped up to the wing and felt pai
## 39901                                                                                                                                    EE states while doing adl resident started kicking, punching, hitting very comsutive and staff was struck left side of check ()
## 39902                                                                                                                                              EE states while doing dental processing, he turnedto look in the mouth of an inmate and his neck slipped out of joint
## 39903                                                                                                                                                                               EE states while doing im locker search he was bitten on r. Arm by an unknown insect.
## 39904                                                                                                                                                     EE states while doing inventory she had to lift serval printers from cabinets and bookcases felt shoulder pull
## 39905                                                                                                                                                                                             EE states while doing paperwork in office his rt eye became irritated.
## 39906                                                                                                                                                                                                          EE states while doing treatment EE experienced back pain.
## 39907                                                                                                                                                           EE states while doing wiring installation the cable slipped and EE cut her lt thumb with telco scissors.
## 39908                                                                                                                                                                           EE states while drawing blood from an inmate she accidentally stuck her rt index finger.
## 39909                                                                                                                                                                                      EE states while drawing blood from an inmate she was punctured by the needle.
## 39910                                                                                                                                                           EE states while drawing blood from an inmate she was stuck by a needle which did not penetrate the skin.
## 39911                                                                                                                                                                        EE states while drawing blood from an inmate she was stuck on the rt hand palm by a needle.
## 39912                                                                                                                                                                    EE states while drawing blood from an inmate the needle slipped and punctured EE rt hand finger
## 39913                                                                                                                                                                                EE states while drawing blood from inmate her rt hand finger was struck by a needle
## 39914                                                                                                                                                                         EE states while drawing blood from inmate she was stuck by a needle in her lt index finger
## 39915                                                                                                                                                                                        EE states while drawing blood she was punctured bya needle to the rt finger
## 39916                                                                                                                                                                                  EE states while drawing blood the needle slipped and punctured her lt forefinger.
## 39917                                                                                                                                                                                       EE states while dressing a resident in bed she felt a sharp pain in her back
## 39918                                                                                                                                                                                                        EE states while drilling a hole his rt finger was punctured
## 39919                                                                                                                                         EE states while drilling a hole with an electricaldrill he lost his balance causing drill to get hung twisting his rt arm.
## 39920                                                                                                                                                                                                  EE states while drilling concrete when he felt pain in lower back
## 39921                                                                                                                       EE states while driving a bus transporting inmatesthe beam around the side mirror cracked causing the glass particle to enter into EE rt eye
## 39922                                                                                                                             EE states while driving a fire extinguinsher accidently discharge inside the vehicle EE is having breathing problem from the chemicals
## 39923                                                                                                                                                                      EE states while driving a ford rover the smell of gas caused him to have respiratory problems
## 39924                                                                                                                                                 EE states while driving a state car on job car hita patch of slick mud, ran off rt side of road into a deep ditch.
## 39925                                                                                                                                   EE states while driving a state vehicle he was struck in the rear by another vehicle causing injury to his head, neck, and back.
## 39926                                                                                                                                                              EE states while driving a tractor with the mower attached a rock flew forward striking EE in the eye.
## 39927                                                                                                                             EE states while driving a van another vehicle ran a stop and struck the rear end of the van causing injury to his lt arm and shoulder.
## 39928                                                                                                                                                                                 EE states while driving a vehicle another vehcile struck his vehicle from the back
## 39929                                                                                                                           EE states while driving a vehicle. He stopped at ared traffic light and another vehicle ran into the rear of the vehicle he was driving.
## 39930                                                                                                                                                                              EE states while driving an inmate to court a car ran a stop sign causing an accident.
## 39931                                                                                                                                                                   EE states while driving another car struck her vehicle on the passenger side causing back injury
## 39932                                                                                                                                                                                            EE states while driving another vehicle struck hisvehicle from the rear
## 39933                                                                                                                                  EE states while driving around in the patrol vehicle he injured his head. EE stated he black out and do not remember what happen.
## 39934                                                                                                                                                           EE states while driving back to his job unit he was struck in the rear of the vehicle by another vehicle
## 39935                                                                                                                                                    EE states while driving company's car a deer ran into the side of the vehicle causing injury to the rt shoulder
## 39936                                                                                                                                                                 EE states while driving from central prison something from the air condition blew into his rt eye.
## 39937                                                                                                                         EE states while driving he approached an intersectand failed to stop for a red light and was struck on the driver side by another vehicle.
## 39938                                                                                                                                                                               EE states while driving he looked down for a second then realized he struck a truck.
## 39939                                                                                                                   EE states while driving he ran into another vehicle--the front of his car struck the front of a truck--causing amputation to the upper extremity
## 39940                                                                                                                                                                           EE states while driving he smell gas coming from the battery causing respiratory problem
## 39941                                                                                                                                           EE states while driving he stop to make a turn another vehicle struck his vehicle in the rear causing lt shoulder injury
## 39942                                                                                                                                                                       EE states while driving he was going around a curve when he saw a cow and was unable to stop
## 39943                                                                                                                                                                                                EE states while driving he was involved in a motor vehicle accident
## 39944                                                                                                                                                       EE states while driving he was involved in an accident--another vehicle struck vehicle on the passenger side
## 39945                                                                                                                                                                     EE states while driving he was rear-ended by another vehicle causing back strain and headaches
## 39946                                                                                                                                     EE states while driving he was struck by a anothervehicle on the front end of car--EE is having painin lower back and shoulder
## 39947                                                                                                                                                                                EE states while driving he was struck by a tractor trailer from the rear of vehicle
## 39948                                                                                                                                                                         EE states while driving he was struck by another vehicle from the rear causing back injury
## 39949                                                                                                                                                                EE states while driving he was struck from behind by another vehicle causing neck and headache pain
## 39950                                                                                                                                                            EE states while driving inmates to pick potatoes a spider crawled in his shirt and bit him on the back.
## 39951                                                                                                                                                                     EE states while driving on a trip he was struck in the rear of the vehicle by another vehicle.
## 39952                                                                                                                                          EE states while driving on the interstate she was side swipe by a tractor trailer truck injuring her rt neck and shoulder
## 39953                                                                                                                                                                  EE states while driving patient s ot park a foreign object flew into EE's eye through the window.
## 39954                                                                                                                                                                  EE states while driving pickup truck she felt painin rt shoulder while turning the steering wheel
## 39955                                                                                                                                                                                     EE states while driving she collided with a stop car---EE was traveling 50 mph
## 39956                                                                                                                               EE states while driving she leaned down to retrieve her bag when the rear view mirror came off the window and struck EE on the nose.
## 39957                                                                                                                               EE states while driving she stopped at a railroad crossing when another vehicle struck her from the rear causing injury to her neck.
## 39958                                                                                                                                                                                               EE states while driving she was involved in a motor vehicle accident
## 39959                                                                                                                       EE states while driving she was stop at an inter- section when another vehicle struck her car from the rear causing neck and lower back pain
## 39960                                                                                                                                                                                             EE states while driving she was struck by another vehicle from behind.
## 39961                                                                                                                                                                                             EE states while driving she was struck by another vehicle in the rear.
## 39962                                                                                                                                                                                    EE states while driving she was struck by another vehicle on the passenger side
## 39963                                                                                                                                                        EE states while driving she was struck in the rearof vehicle by another vehicle injuring neck and back area
## 39964                                                                                                                                                                              EE states while driving state car another vehicle ran into the back of the state car.
## 39965                                                                                                                           EE states while driving state vehicle another driver pulled out in front of him striking the state vehicle causing an injury to his back
## 39966                                                                                                                                                                 EE states while driving state vehicle he struck another vehicle from the rear--causing back injury
## 39967                                                                                                                                                                        EE states while driving state vehicle he was hit in the rear of vehicle by another vehicle.
## 39968                                                                                                                EE states while driving state vehicle her lt leg caught a cramp and while getting out to stretch she missed the board striking her lt foot on grave
## 39969                                                                                                                                                                              EE states while driving state vehicle she was struck from the rear by another vehicle
## 39970                                                                                                                                                        EE states while driving state vehicle transportingan inmate he was struck from the rear by a anothervehicle
## 39971                                                                                                                                                                             EE states while driving the patrol vehicle he was bitten by a spider on the lower chin
## 39972                                                                                                                                                                             EE states while driving the state van another vehicle struck the rear of the state van
## 39973                                                                                                                  EE states while driving the state vehicle another vehicle struck the state vehicle from the rear EE was taken to the hosp for back and chest pain
## 39974                                                                                                                                              EE states while driving the state vehicle he was struck by another vehicle from the side EE experience mild neck pain
## 39975                                                                                                                                                                           EE states while driving the state vehicle he was struck from the rear by another vehicle
## 39976                                                                                                                                                         EE states while driving the state vehicle he was struck in the rear by another vehicle causing back injury
## 39977                                                                                                                                                    EE states while driving the state vehicle she struck another car from behind--causing lower backand neck injury
## 39978                                                                                                               EE states while driving the state vehicle someone threw an object and hit windshield causing glass to shatter and the particles went into EE lt eye.
## 39979                                                                                                                                                                           EE states while driving to a staff meeting he was struck by another vehicle from behind.
## 39980                                                                                                                                                  EE states while driving to conduct a home check he struck a trailer while trying to avoid strikinganother vehicle
## 39981                                                                                                                                                         EE states while driving to transport inmate the vehicle--he was driving was struck in the rear by a truck.
## 39982                                                                                                                                                   EE states while driving transfer bus, an unknown object came through an open window stricking him in his rt eye.
## 39983                                                                                                                                                   EE states while driving vehicle the hood flew up causing windshield to shatter and some glass went into his eye.
## 39984                                                                                                                                                                                 EE states while driving with the window down the wind blew something in his lt eye
## 39985                                                                                                                     EE states while driving-an oncoming vehicle slid into path of EE vehicle causing EE to steer to rt side of road to avoid a collision--hip pain
## 39986                                                                                                                                                                EE states while dumping a loaded basket into the laundry conveyor the metal lift scraped his rt leg
## 39987                                                                                                                                                                               EE states while dumping peanuts in the back of trailer--she was struck in the rt eye
## 39988                                                                                                                                                                                     EE states while dumping trash in a trash can he was stung by a bee on the back
## 39989                                                                                                                                                              EE states while during a mantracking exercise training he stepped on a limb and injured his lt ankle.
## 39990                                                                                                                                                         EE states while during a sercuity check he steppedinto a hole in the ground injurying his lt foot and leg.
## 39991                                                                                                                                             EE states while during adl care, making last round foot became tangled in the alarm cord, tripped and fell on floor ()
## 39992                                                                                                                                                                                        EE states while eating a piece of cheese the cheese got stuck in his throat
## 39993                                                                                                                                                                                          EE states while empting out a bucket of water he felt pain in his rt leg.
## 39994                                                                                                                                                                                  EE states while emptying a trash can the top of the trash can fell on her rt hand
## 39995                                                                                                                                                                                          EE states while emptying mop buckets she felt tightness in her chest area
## 39996                                                                                                                                                                                                 EE states while emptying trash in dumpster he feltpain in his back
## 39997                                                                                                                                                 EE states while emptying trash into dumpster she strained her low back. EE atty is c. Scott whisnant 828-437-4220.
## 39998                                                                                                                       EE states while enroute to a medical facility with two inmates he was involved in a motor vehicle accident-other driver fail to stop @ light
## 39999                                                                                                                                                                      EE states while enroute to a training program he struck on the side of car by another vehicle
## 40000                                                                                                             EE states while enroute to another county to work some snow fell on windshield and he got out of carto wipe window when he slipped and struck his hand
## 40001                                                                                                                                                                       EE states while enroute to conduct home visits she was involved in a motor vehicle accident.
## 40002                                                                                                                                                                                       EE states while enrouted to a building the wind blew something in her rt eye
## 40003                                                                                                                                            EE states while enrouted to an assignment in a utilty cart he struck an speed bump which has caused injury to his back.
## 40004                                                                                                                                                                                       EE states while enter data in the computer the thumb on rt hand becomes numb
## 40005                                                                                                                                                                        EE states while entering a building he slipped andfell on wet waxed floor injuring his back
## 40006                                                                                                                                                                          EE states while entering a building he the door struck his rt hand injuring his rt wrist.
## 40007                                                                                                                                                                EE states while entering a building she slipped and fell on the floor injuring her lt ankle/rt foot
## 40008                                                                                                                                                                            EE states while entering a building she tripped and fell over a mat injuring both knees
## 40009                                                                                                                                   EE states while entering a building the door closed on her rt and lt shoulders causing injury to her neck, chest, arms, and head
## 40010                                                                                                                                                                           EE states while entering a building thru a main door she slipped and fell on a wet floor
## 40011                                                                                                                                                                                            EE states while entering a cell gate something struck him in the rt eye
## 40012                                                                                                                        EE states while entering a closet door to pick up some mail from inmates the door knob of the door struck her on the lower part of her back
## 40013                                                                                                                                                                            EE states while entering a computer room he slipped and fell on wet floor injuring back
## 40014                                                                                                                                                                                       EE states while entering a door a piece of metal got beneath his fingernail.
## 40015                                                                                                                                                                                       EE states while entering a door he felt a sharp pain in his lower back area.
## 40016                                                                                                                                                             EE states while entering a door he slipped and fell on the wet floor causing injuring to his rt elbow.
## 40017                                                                                                                        EE states while entering a door he slipped on a slick spot on the floor and while trying to catch himself from falling he injured his back.
## 40018                                                                                                                                                                EE states while entering a door he turned around and felt pain and burning sensation of his rt knee
## 40019                                                                                                                                             EE states while entering a door she slipped and fell on ice causing injurying to her lower back, rt shoulder, and neck
## 40020                                                                                                                                                                                             EE states while entering a door the door shut on his rt middle finger.
## 40021                                                                                                                                                                                    EE states while entering a gate he stepped into a hole and twisted his lt ankle
## 40022                                                                                                                                                        EE states while entering a lobby door she tripped over a rubber mat and fell injuring her hands and lt knee
## 40023                                                                                                                                                                              EE states while entering a meat cooler he stepped into the drain injuring his lt knee
## 40024                                                                                                                                                 EE states while entering a port-a-john door she placed her rt hand on the inside panel and felt her knuckle popped
## 40025                                                                                                                                                            EE states while entering an inmate cell the inmatepushed another officer on him injuring his chest area
## 40026                                                                                                                                                            EE states while entering bathroom he slipped on a newspaper on the floor causing injury to his rt ankle
## 40027                                                                                                                                                                                           EE states while entering dorm door the door struckhim on the rt foot/toe
## 40028                                                                                                                                                                                 EE states while entering gatehouse he slipped and fell injuring his hand and heel.
## 40029                                                                                                                                                  EE states while entering the bathroom he slipped and fell on wet floor injuring his lower back areaand lt buttock
## 40030                                                                                                                                                                        EE states while entering the building the sally port door closed striking injuring his back
## 40031                                                                                                                                                                                       EE states while entering the cafeteria the door closed on EE rt hand fingers
## 40032                                                                                                                           EE states while entering the cell to remove inmates property and inmate grabbed EE by the rt side of head and by hair and pulled it out.
## 40033                                                                                                                                                                                 EE states while entering the dormitory an inmate grabbed her lt arm and pulled it.
## 40034                                                                                                                                                                   EE states while entering the gym he slipped and fell in a puddle of water injurying his lt knee.
## 40035                                                                                                                                                                                           EE states while entering the lobby she slipped andfell injuring her back
## 40036                                                                                                                                                                              EE states while entering the nurse station she struck her rt lower leg on the drawer.
## 40037                                                                                                                                                                    EE states while entering the sercuity van the metal step came down and struck EE on the lt knee
## 40038                                                                                                                                             EE states while entering the van she took hold of the top of door when a sharp object cut pinky finger on her rt hand.
## 40039                                                                                                                                                        EE states while escorting a client out of dining room the client grabbed EE lt thumb and bent it backwards.
## 40040                                                                                                                                                                    EE states while escorting a student he stepped offthe edge of a sidewalk injurying his lt knee.
## 40041                                                                                                                          EE states while escorting an inmate during a Dr Visit she become nausea and lost consciousness and felled striking her head on the floor.
## 40042                                                                                                              EE states while escorting an inmate from a shower to his cell he was struck on the lt side causing him to lose his balance and his rt leg was jammed.
## 40043                                                                                                                                                                                           EE states while escorting an inmate her rt foot slipped off the sidewalk
## 40044                                                                                                                                                                                               EE states while escorting an inmate his foot slipped on a wet floor.
## 40045                                                                                                                                                                EE states while escorting an inmate the inmate attempted to assault him causing injured his rt hand
## 40046                                                                                                                                                                EE states while escorting an inmate the inmate becamed aggressive and struck her on the rt shoulder
## 40047                                                                                                                                                                                       EE states while escorting an inmate the inmate kicked him in the groin area.
## 40048                                                                                                                                                                     EE states while escorting an inmate the inmate pushed EE into a door injuring his rt shoulder.
## 40049                                                                                                                                 EE states while escorting an inmate the inmate ranback and hit the door causing EE to fall against a wall injurying his upper arm.
## 40050                                                                                                                                                                         EE states while escorting an inmate the inmate spitted in EE face and scratched his lt arm
## 40051                                                                                                                                           EE states while escorting an inmate to a loading dock she slipped and fell on some ice injurying her rt hip and rt knee.
## 40052                                                                                                                                                                                     EE states while escorting an inmate to his cell the inmate spitted in EE face.
## 40053                                                                                                                                                                                         EE states while escorting an inmate to his cell the inmate spitted on him.
## 40054                                                                                                                                                               EE states while escorting an inmate to medical tx the inmate accidentally spitted on him (face area)
## 40055                                                                                                                                                                        EE states while escorting an inmate to the medicaltx area--the inmate spit in his face/eyes
## 40056                                                                                                                                             EE states while escorting an inmate to the recreation area the inmate struck EE in the mouth with a pair of handcuffs.
## 40057                                                                                                                                               EE states while escorting an inmate to unit he got into a confrontation with the inmate causing a cut to his rt hand
## 40058                                                                                                                                                                                      EE states while escorting an inmate to unit the inmate struck EE in the face.
## 40059                                                                                                                                                                                   EE states while escorting church volunteers to church his rt foot was stepped on
## 40060                                                                                                                                                                  EE states while escorting im to seg. She stepped off sidewalk by chapel office & twisted rt. Knee
## 40061                                                                                                                                                                   EE states while escorting inmate from shower the inmates squirted a bottle with urine in EE face
## 40062                                                                                                                                                                        EE states while escorting inmate to cell she slipped on wet floor and twisted her lt ankle.
## 40063                                                                                                                               EE states while escorting inmate to exam room, inmate slipped & fell on wet/wax floor, EE tried to prevent serious injury to inmate.
## 40064                                                                                                                                                  EE states while escorting inmate to sewing plant he stepped in a hole which caused him to twist hisknee and ankle
## 40065                                                                                                                           EE states while escorting patient to quiet room, patient became combative, grabbed EE around neck, put EE in headlock, fell on EE's neck
## 40066                                                                                                                               EE states while escorting pt in a therapeutic holdto quiet room the pt kicked EE in stomach. Kicked in stomach s/p elective abortion
## 40067                                                                                                                                              EE states while escorting visitors she walked toward gatehouse when something from a lawn mower flew into her rt eye.
## 40068                                                                                                                                                                                               EE states while examining a dead animal he was exposed to salmonella
## 40069                                                                                                                                                                                       EE states while examining a paper shedder for damage it fell on her rt foot.
## 40070                                                                                                                                                                                     EE states while exercising with clients she felt something popped rt leg(calf)
## 40071                                                                                                                                        EE states while existing a door of a fire truck his foot was caught causing him to lose his balance and fall to the ground.
## 40072                                                                                                                                                                                    EE states while exiting a bathroom door the door closed on her rt middle finger
## 40073                                                                                                                                                            EE states while exiting a cooler with case of juice she fell forward injuring her rt shoulder and knee.
## 40074                                                                                                                                                                               EE states while exiting a door he slipped and fellon a mat and landed on his lt knee
## 40075                                                                                                                                                                          EE states while exiting a door he slipped and fellon a wet floor injuring his lt foot/toe
## 40076                                                                                                                                                                                          EE states while exiting a door she slipped and fell twisting her lt ankle
## 40077                                                                                                                                                                                   EE states while exiting a door the door shut closestriking EE on the lt shoulder
## 40078                                                                                                                                                                                                          EE states while exiting a door the door struck his lt arm
## 40079                                                                                                                                                                                        EE states while exiting a slide door the door closed on her rt arm/shoulder
## 40080                                                                                                                                                                                     EE states while exiting a sliding door the door slid and closed on his rt hand
## 40081                                                                                                                                                                                           EE states while exiting a tower door she was struck in the head by a can
## 40082                                                                                                                      EE states while exiting an elevator she lost her balance and while attempting to regain her balanceshe struck her finger against the elevator
## 40083                                                                                                                                                                                                 EE states while exiting his vehicle he slipped andfell on some ice
## 40084                                                                                                                                                      EE states while exiting the bathroom in bc-2d she pumped her righ knee against the 1st step which was cement.
## 40085                                                                                                                                                                               EE states while exiting the control room, EE twisted his right knee when he slipped.
## 40086                                                                                                                                                           EE states while exiting the dining room he collidewith another individual and fell injuring his lt ankle
## 40087                                                                                                                                                                            EE states while exiting the door her hand was caught between the door and the building.
## 40088                                                                                                                                                                                               EE states while exiting the kitchen a client struck her on the neck.
## 40089                                                                                                                                                                                                    EE states while exiting the patrol vehicle he tripped and fell.
## 40090                                                                                                                                             EE states while exiting the tower ladder his foot slipped off the last step when he began to fall injuring his rt hand
## 40091                                                                                                                                                                            EE states while exiting thru a metal door the metal door came down striking her rt hand
## 40092                                                                                                                                                    EE states while exiting tower cab her rt foot twisted causing her to slip down four steps injuring her lt thigh
## 40093                                                                                                                                             EE states while extracting a nail from a piece of wood the hammer became stuck causing the nail to dislodge in rt knee
## 40094                                                                                                                                                                                       EE states while feeding and holding a resident she felt a pull in lower back
## 40095                                                                                                                     EE states while feeding chow he approached inmate reached out of the trap door with a shampo bottle and squeezed the bottle the liquid hit him
## 40096                                                                                                                                   EE states while feeding inmates in line an inmate knocked over the coffee cooler causing coffee to splash on EE arm and leg area
## 40097                                                                                                               EE states while feeding patient and begin to slid down in the cahir while trying to help the patient up the chair turned over and EE pulled her arm.
## 40098                                                                                                                                                                                                  EE states while fighting a fire, he got something in his left eye
## 40099                                                                                                                                                                                EE states while filing an inmate record a metal piece go stuck under her fingernail
## 40100                                                                                                                                      EE states while filing chain his hand slipped causing his finger to hit the chain. Laceration to rt index finger @ 2nd joint.
## 40101                                                                                                                                                                                                    EE states while filing medical chart he felt a pop in lt ankle.
## 40102                                                                                                                                                                                            EE states while filing papers she was bitten by a spider on her rt arm.
## 40103                                                                                                                                                                                                   EE states while filing records she felt a pop in her lt shoulder
## 40104                                                                                                                                                                                                                EE states while filing records she injured her back
## 40105                                                                                                                                                                                     EE states while filing she struck her rt thumbnailon the corner of the record.
## 40106                                                                                                                           EE states while filling water tank the pressure from the water knock him off the truck onto the ground causing injury to his lt shoulder
## 40107                                                                                                                                                                                               EE states while firing a revolver her rt hand and finger was injured
## 40108                                                                                                                                EE states while firing a shotgun during a firearmstraining course the shotgun slipped from lt shoulder causing injury to the lt arm
## 40109                                                                                                                                                EE states while firing a shotgun during a requalification recoil course the shotgun has caused a rt shoulder injury
## 40110                                                                                                                                                                                       EE states while firing a shotgun during training he injured his rt shoulder.
## 40111                                                                                                                                                                                               EE states while firing a shotgun the recoil injured her rt shoulder.
## 40112                                                                                                                                                                      EE states while firing a shotgut the recoil from the gun caused a bruise to the rt upper arm.
## 40113                                                                                                                                                                           EE states while firing a weapon during a training instruction he injured his rt shoulder
## 40114                                                                                                                                                      EE states while firing at a firing range her rt index finger begin to swell due to the weight of the revolver
## 40115                                                                                                                                            EE states while firing weapons during firearm training her ears began to ring. This ringing oc- curred in her left ear.
## 40116                                                                                                                                                                                         EE states while folding down forks on backhoe he mashed his lt ring finger
## 40117                                                                                                              EE states while following inmate to his dorm the inmate struck EE in the nose which resulted into aconfrontation causing EE to fall injurying his nai
## 40118                                                                                                                                                                                                   EE states while fueling gas tank some debris got into his lt eye
## 40119                                                                                                                                      EE states while getting a resident up for his bathhe slapped at EE and hit her hand causing her handto slam into the bedrail.
## 40120                                                                                                                                             EE states while getting client up after bathing, transferring to chair; felt a pop in right wrist. Client jerked away.
## 40121                                                                                                                                                      EE states while getting hot water from water dispenser the hot water spilled out of cup and burned EE rt hand
## 40122                                                                                                                                                                                    EE states while getting in and out of mail van head struck the top of this head
## 40123                                                                                                                                                                 EE states while getting in the car to avoid a dog attack--she struck her knee and injured her back
## 40124                                                                                                                                                                                                        EE states while getting into a van his knee struckthe door.
## 40125                                                                                                                                                                      EE states while getting into a van his lt foot slipped causing it to strike the running board
## 40126                                                                                                                                                      EE states while getting into chair on tower hit outside of right knee on metal frame. Soreness to right knee.
## 40127                                                                                                                                           EE states while getting into the state vehicle to relieve the towers the seat fell all the way back injuring the EE back
## 40128                                                                                                                                                                                                        EE states while getting off a bus she sprained herlt ankle.
## 40129                                                                                                                                                     EE states while getting off a elevator a wheelchair struck her lt foot--the wheelchair was driven by an inmate
## 40130                                                                                                                                                             EE states while getting off a ladder he stepped down and slipped striking his lt foot on the steel bar
## 40131                                                                                                                                          EE states while getting off a stool his rt foot got caught causing him to fall forward striking rt knee against the floor
## 40132                                                                                                                                                                                             EE states while getting off an elevator he felt a pulled in his lt hip
## 40133                                                                                                                                                                             EE states while getting off of bobcat (bulldozer) he slipped and twisted his lt ankle.
## 40134                                                                                                                                                 EE states while getting off the back of a truck he felled on the mirror handle causing injury to his buttock area.
## 40135                                                                                                                                                                                          EE states while getting out a car a steak knife stabbed him in the lt leg
## 40136                                                                                                                                                                                       EE states while getting out of a chair he struck his lt knee on a phone box.
## 40137                                                                                                                                                                        EE states while getting out of a chair she struck her lt knee underneath the control panel.
## 40138                                                                                                                                                                                        EE states while getting out of a chair she struck her rt hip on a gun rack.
## 40139                                                                                                                                                                               EE states while getting out of a truck he stepped on a rock and twisted his lt foot.
## 40140                                                                                                                                                        EE states while getting out of a truck she slippedand fell on ice causing injury to her low back and lt leg
## 40141                                                                                                                                                                                                 EE states while getting out of bed he injured his rt index finger.
## 40142                                                                                                                                                                  EE states while getting out of car in parking lot she slipped and fell on ice causing to the head
## 40143                                                                                                                                          EE states while getting out of her car in the parking lot she slipped and fell on some ice injuring her lt knee and elbow
## 40144                                                                                                                                                                           EE states while getting out of her car to meet a pt for an appt she twisted her rt knee.
## 40145                                                                                                                               EE states while getting out of perimeter vehicle he slipped on wet pavement causing him to hit his lower back on edge of door frame.
## 40146                                                                                                                                                                                     EE states while getting out of shower he slipped and fell injuring his rt hand
## 40147                                                                                                                 EE states while getting out of state vehcile to conduct perimeter check, she closed the vehicle door, and mashed her thumb on her lft hand in door
## 40148                                                                                                                                                                                EE states while getting out of state vehicle she turned and felt a pop in her back.
## 40149                                                                                                                                                                             EE states while getting out of the back of a van coworker shut the door on her rt hand
## 40150                                                                                                                                                                 EE states while getting out of the state vehicle he was bitten by a spider on his lt pinky finger.
## 40151                                                                                                                                                                                   EE states while getting out of truck he stepped down and felt a pop in knee/back
## 40152                                                                                                                                                                                  EE states while getting out of truck he stepped on a rock and twisted his lt knee
## 40153                                                                                                                                                                                    EE states while getting out of van door he bumped his lt elbow against the door
## 40154                                                                                                                                                                                      EE states while getting out of vehicle he felt a sharp pain in his lower back
## 40155                                                                                                                                                                                     EE states while getting out of vehicle he felt something pop in his lower back
## 40156                                                                                                                                              EE states while getting out of vehicle she turned suddenly striking the rt side of the head on the corner of the door
## 40157                                                                                                                                                     EE states while getting out the patrol vehicle he slipped and fell on ice causing an injury to his lt rib area
## 40158                                                                                                                                                                            EE states while getting some coffee from the snackbar the coffee spilled on her lt foot
## 40159                                                                                                                                                                    EE states while getting up from a chair her rt foot slipped causing her to injure her rt ankle.
## 40160                                                                                                                                             EE states while getting up from a chair his foot got caught in the chair causing him to fall and twisting his rt ankle
## 40161                                                                                                                                                                                                EE states while getting up from a desk he felt a pop in his lt knee
## 40162                                                                                                                                                                                          EE states while getting up from desk she struck her rt leg on the drawer.
## 40163                                                                                                                                                           EE states while getting up from the computer she struck her rt knee on the corner of the computer table.
## 40164                                                                                                                                                                                      EE states while getting up to answer the telephonehe felt pain in his rt hip.
## 40165                                                                                                              EE states while getting water from cooler, he had placed the padlock top of the cooler, tractor trail-er shook trailer, padlock fell & hit EE in head
## 40166                                                                                                                                                                                        EE states while giving a injection she recd a needle stick to her rt finger
## 40167                                                                                                                                                            EE states while giving a newspaper to an inmate thru a door the door closed striking EE on the rt knee.
## 40168                                                                                                                                                                               EE states while giving a person direction he closethe door of a van on his rt wrist.
## 40169                                                                                                                     EE states while giving an injection to an inmate she went to medcart to put needle in sharpe container and stuck lft hand 5th digit on knuckle
## 40170                                                                                                                       EE states while giving an injection to inmate, as he withdraw the needle, the inmate moved her arm and I stuck my left hand with the needle.
## 40171                                                                                                                                                                                                          EE states while giving cpr to a pt she injured herlt knee
## 40172                                                                                                                                                           EE states while goin up the stairs she stumbled and fell on the stairs and hit her rt leg on the stairs.
## 40173                                                                                                                                                         EE states while going across parking lot she stepped on a gum ball causing her to fall injuringher rt hand
## 40174                                                                                                                                                EE states while going down a hill he slipped on some loose gravel and twisted his lt foot which has begun to swell.
## 40175                                                                                                                                                                                      EE states while going down a ramp she slipped and fell injurying her rt knee.
## 40176                                                                                                                                                                   EE states while going down a waterslide with a resident the resident kicked EE in the lower back
## 40177                                                                                                                                                                       EE states while going down hall she slipped and fell on wet floor injuring her rt knee/ankle
## 40178                                                                                                                                                                            EE states while going down some stairs he missed a step causing his rt knee to give out
## 40179                                                                                                                                                EE states while going down some stairs he missed a step which caused him to fall injuring his rt foot and rt ankle.
## 40180                                                                                                                                                                   EE states while going down some stairs she missed a step and fell injuring her nose and rt thumb
## 40181                                                                                                                                                         EE states while going down some stairs she missed a step causing her to fall injuring her lt arm and elbow
## 40182                                                                                                                                                     EE states while going down some steps he missed a step and lost his balance twisting his lt knee and lt ankle.
## 40183                                                                                                                                                                                        EE states while going down some steps he missed a steps causing back injury
## 40184                                                                                                                                                                                   EE states while going down some steps he slipped and fell striking his lt elbow.
## 40185                                                                                                                                                                   EE states while going down some steps she missed a step causing her to fall injuring her rt foot
## 40186                                                                                                                                                                            EE states while going down some steps she missed a steps and fell twisting her rt ankle
## 40187                                                                                                                                                                  EE states while going down some steps she missed step causing her to fall and twisted her rt foot
## 40188                                                                                                                                                     EE states while going down some steps she slipped and fell on an unknown object causing injury to her rt knee.
## 40189                                                                                                                                                                           EE states while going down some steps she tripped and fell causing injury to her rt knee
## 40190                                                                                                                                                                     EE states while going down stairs he slipped and fell injurying his rt buttock and lower back.
## 40191                                                                                                                                                                                                  EE states while going down stairs to bedroom she slipped and fell
## 40192                                                                                                                                                                    EE states while going down step her foot missed a step causing her to fall twisting her rt foot
## 40193                                                                                                                                                                                     EE states while going down steps he struck his lt knee on metal rail of stairs
## 40194                                                                                                                                                                                                            EE states while going down steps he twisted his rtknee.
## 40195                                                                                                                                                                                 EE states while going down steps slipped & fell on wet spot injuring lower back ()
## 40196                                                                                                                                                          EE states while going down wet steps, she slipped near the bottom, twisted rt. Ankle & fell to side-walk.
## 40197                                                                                                                                                        EE states while going downs some stairs his lt knee gave way causing his rt knee to twist striking the wall
## 40198                                                                                                                                                                                                              EE states while going downstairs EE twisted left knee
## 40199                                                                                                                                                     EE states while going from another building she slipped and fell on ice causing injury to her rt knee and neck
## 40200                                                                                                                                                       EE states while going from dorm to pick up outgoing mail she stepped off a sidewalk and twisted her lt knee.
## 40201                                                                                                                                                                EE states while going into soil linen room to take the trash out door hit left elbow cut it open ()
## 40202                                                                                                                                                      EE states while going into the mechanical room he tripped over a weight bench causing an injury to his lt arm
## 40203                                                                                                                                      EE states while going out of a building she tripped and fell over an extension cords injuring her lt knee, elbow, and rt hand
## 40204                                                                                                                                                                              EE states while going steps she slipped and fell on ice causing injury to her lt knee
## 40205                                                                                                                                                                              EE states while going thru a door the door began to close and struck her rt shoulder.
## 40206                                                                                                                                 EE states while going thru a door while it was raining her lt leg slipped from under her causing her to fall injuring her rt knee.
## 40207                                                                                                                                                                    EE states while going thru a gate door the door closed on her--striking back, shoulder, and hip
## 40208                                                                                                                                                                                        EE states while going thru a sallyport door the door closed on her rt elbow
## 40209                                                                                                                              EE states while going thru a slider door she was trapped between the door and the door jam--EE injured her rt shoulder and lower back
## 40210                                                                                                                                                                                   EE states while going thru door the door closed onher injurying her lt shoulder.
## 40211                                                                                                                                                                     EE states while going thru gate the door of the gate closed injurying his chest and back area.
## 40212                                                                                                                                                                                                   EE states while going thru sallyport door the door closed on her
## 40213                                                                                                                                                                                         EE states while going thru sliding door his struckhis lt forearm and wrist
## 40214                                                                                                                                                                                     EE states while going to a truck he slippped and fell on ice striking his head
## 40215                                                                                                                                                       EE states while going to get medication from the medication room. A officer closed the track door on her. ()
## 40216                                                                                                                                                             EE states while going to her office she stepped ona spot on the floor and fell injuring her lower back
## 40217                                                                                                                                                        EE states while going to his vehicle in parking lot he slipped and fell on ice causing injury to his lt hip
## 40218                                                                                                                                                                  EE states while going to pick up some mail she tripped and fell catching herself with her lt hand
## 40219                                                                                                                                                                                                EE states while going to the breakroom to get a soda she passed out
## 40220                                                                                                                                                                                          EE states while going to the parking lot she slipped and injured her foot
## 40221                                                                                                                                          EE states while going to vehicle to retreive her coat she slipped and fell down 4 steps injurying her rt shoulder and hip
## 40222                                                                                                                                                         EE states while going under a building to pull telephone wire his back struck a nail causing a laceration.
## 40223                                                                                                                                                                   EE states while going up a flight of stair her rt leg gave way causing her to twist her rt foot.
## 40224                                                                                                                                                                              EE states while going up a flight of stairs he slipped causing him to injure his back
## 40225                                                                                                                                                                            EE states while going up some stairs he struck hisleg on the steps and missed the steps
## 40226                                                                                                                                                                    EE states while going up some stairs she missed a step causing her to fall twisting her lt foot
## 40227                                                                                                                                         EE states while going up some stairs she slipped causing her lt leg/knee to become caught between the bar and the handrail
## 40228                                                                                                                                                                                                          EE states while going up some steps he twisted hisrt knee
## 40229                                                                                                                                                                EE states while going up some steps his foot slipped causing him to strike his lt knee on the step.
## 40230                                                                                                                                                                        EE states while going up some steps she slipped and fell injuring her lt finger and rt knee
## 40231                                                                                                                                                                                    EE states while going up some steps she slipped and fell--EE is 29 wks pregnant
## 40232                                                                                                              EE states while going up some steps to a trailer where they had welding a frame some weight from the frame tilted the trailer and EE fell backswards.
## 40233                                                                                                                                                                           EE states while going up stairs carrying food trays she felt a pull in her lt foot/ankle
## 40234                                                                                                                                                                                                EE states while going up stairs he struck his lt knee on the stairs
## 40235                                                                                                                                                                                                  EE states while going up stairs she felt pain in her rt knee area
## 40236                                                                                                                                                                EE states while going up steps his foot slipped causing him to fall injuring rt shoulder and rt hip
## 40237                                                                                                                                                                  EE states while going up steps his rt leg slipped causing him to fall back injurying his lt knee.
## 40238                                                                                                                                                                             EE states while going up the steps- slipped and fell and struck his knee on the steps.
## 40239                                                                                                                                                                                       EE states while grinding cast iron flange the carbon dust went into his eyes
## 40240                                                                                                                                                                                                     EE states while grinding metal he felt something in his rt eye
## 40241                                                                                                                                                                              EE states while guarding inmate during work squad he came in contact with poison oak.
## 40242                                                                                                                      EE states while guarding inmates on a farm three inmates tried to escape when EE took appropriate action. This has caused EE to be stressful.
## 40243                                                                                                                                                                                 EE states while hammering a drive pin he struck his rt hand finger with the hammer
## 40244                                                                                                                                                   EE states while hand cuffing inmate the inmate jerked backwards causing EE lt thumb to be entangled in handcuffs
## 40245                                                                                                                                                                                            EE states while handcuffing an aggressive inmate he injured his rt hand
## 40246                                                                                                                                                                                                  EE states while handcuffing an inmate he cut his rt middle finger
## 40247                                                                                                                                    EE states while handcuffing an inmate the inmate jerked causing the cuffs to twist cutting EE top middle fingers on the rt hand
## 40248                                                                                                                                                                                            EE states while handcuffing an inmate the inmate struck him in the face
## 40249                                                                                                                                           EE states while handing a pen for a parolee to sign appropriate form the parolee fingernail scratched EE on the rt thumb
## 40250                                                                                                                                            EE states while handing an inmate a cup with juiceover a gate someone open the gate and the gate closed on EE rt thumb.
## 40251                                                                                                                                          EE states while handing mats through the gate to a driver the gate closed on his lt hand/finger ***pa kenneth hardison***
## 40252                                                                                                                                                         EE states while handling a basket with file foldershe lost her grip and her finger were caught in the wire
## 40253                                                                                                                                            EE states while handling a bio container with contaminated needles she was punctured by a needleon the lt index finger.
## 40254                                                                                                                                                                       EE states while handling a cow he fell down a muddy bank and injured his back and chest area
## 40255                                                                                                                                                                                EE states while handling a cow he slipped on some manure and fell injuring his back
## 40256                                                                                                                                                                                            EE states while handling a golf cart she struck the side of her abdomen
## 40257                                                                                                                                                                                       EE states while handling a shotgun she cut her middle finger on the rt hand.
## 40258                                                                                                                                                                              EE states while handling a syringe the needle of the syringe stuck her in the finger.
## 40259                                                                                                                                                                           EE states while handling an empty tobacco rack he made a wrong turn and injured his back
## 40260                                                                                                                                                                   EE states while handling an iv tube for a pt some of the intravenous fluid went into her rt eye.
## 40261                                                                                                                                                              EE states while handling glass sampling a glass broke in his lt hand--received a minor puncture wound
## 40262                                                                                                                                                                                 EE states while handling iv unit she received a needlestick to her rt index finger
## 40263                                                                                                                                                                                      EE states while handling metal box she received a cut to her rt middle finger
## 40264                                                                                                                                                           EE states while handling the computer equipment the tabletop fell striking EE on the rt leg and shoulder
## 40265                                                                                                                                                                                                         EE states while handling tobacco racks he injured his back
## 40266                                                                                                                                                                               EE states while hanging a razor wire his lt hand was caught penetrating hil lt thumb
## 40267                                                                                                                                                                  EE states while hanging blinds using a chair when EE went to step down he felt a pop in his back.
## 40268                                                                                                             EE states while hanging the beater bar from 80 qt mixer up in the knife room it sliped from it's hanger she states she caught beater bar and puller ba
## 40269                                                                                                                                                                                  EE states while he opening the gate he dropped the t-handle on l hand ring finger
## 40270                                                                                                                              EE states while he tried to restrain a non- compliant inmate he fell and struck or rubbed an object scraping his knees and right leg.
## 40271                                                                                                            EE states while he was attempting to handcuff an inmate the inmate became very agreessive and both of them fell to the floor. EE landed on his lt wrist
## 40272                                                                                                                                                       EE states while he was bitten by an inmate while trying to restrain the inmate. He was bitten on the lt arm.
## 40273                                                                                                                                                                           EE states while he was closing cell door he caughthis ring finger on lt hand in the door
## 40274                                                                                                                                                                                                                           EE states while he was exposed to a tick
## 40275                                                                                                             EE states while he was given an imnate a food tray through cell door with both hands inmate grabbed his rt hand banging it and cutting it also bruised
## 40276                                                                                                                                          EE states while he was installing a washing machine he felt pain in his back when pulling and lifting the washing machine
## 40277                                                                                                                                                     EE states while he was leaving to go to the officeto turn in paperwork, he slipped on some wax in the hallway.
## 40278                                                                                                                                               EE states while he was lifting roll of fence fabric he felt sharp pain in lower back center section and in both hips
## 40279                                                                                                                                                                 EE states while he was on his lunch break, the chair he was sitting in broke and fell on the floor
## 40280                                                                                                                   EE states while he was performing break fall techniques during crdt training, he fell back on the middle area of the back/shoulder felt popping.
## 40281                                                                                                                                             EE states while he was picking up food tray fron inmate lunch pack out and as he was bending down he felt a sharp pain
## 40282                                                                                                                   EE states while he was releiving the dorm officer during shift rotation he lifted a chair to move it and upon lifting he felt sharp pain in back
## 40283                                                                                                              EE states while he was searching janitors closet picked up a broom and it slipped from his hand and the broom head hit bottom tooth and broke a piece
## 40284                                                                                                               EE states while he was searching the seat on the work crew bus there was a hole in the seat was getting objects out and something punctured lt thumb
## 40285                                                                                                                                                                                    EE states while he was stepping out of road patrol truck he twisted his lt foot
## 40286                                                                                                                  EE states while he was walking across the back yard he step on drain cover and when he did foot bent backwards hurting right heel. Sprain heel rt
## 40287                                                                                                                          EE states while he was walking down corridor in single cell he slipped and attempted to catch himself when he hit the back of his rt hand
## 40288                                                                                                                                                                      EE states while heating cast iron burner it poppedcausing a piece to strike him in the lt eye
## 40289                                                                                                                                                                                           EE states while heating cast iron on boiler a piece got into his lt eye.
## 40290                                                                                                                        EE states while helping 3 other staff members therapeuticly restrain a client sprained rt thumb. Neckrt wrist, shoulder, and back are sore.
## 40291                                                                                                                                                                EE states while helping a resident back to wheel chair EE felt a sharp pain on the lt side of back.
## 40292                                                                                                              EE states while helping a resident to the restroomresident lean back, falling to floor, she twisted her low back trying to keep resident from falling
## 40293                                                                                                                                                  EE states while helping at graduation, she slipped and fell on some water injuring left shoulder and left hip. ()
## 40294                                                                                                                  EE states while helping co-worker walk client. The client fell back and pinned EE hand against chair arm. Contusion to right middle and ring fing
## 40295                                                                                                                                EE states while helping lower pump into sewage treatment basin using chain, rough surface of chain cut index finger of right hand..
## 40296                                                                                                                                                                    EE states while helping med staff control an inmate she received blood on her blouse and wrist.
## 40297                                                                                                                                                             EE states while helping pt get off a bus his lt hand was caught between the doorway and the pt's head.
## 40298                                                                                                                                                                              EE states while helping remove inmate by force from cell he was pushed into cell door
## 40299                                                                                                  EE states while helping the nurse turn a patient, he began to push back because he did not want to be moved she felt pain she, thought the pain would go away. ()
## 40300                                                                                                                                                                        EE states while helping to arrange the walk in freezer he felt pain in lower back and legs.
## 40301                                                                                                                                                    EE states while hewas walking around minimum custody yard, he stepped off the sidewalk and twisted his lt knee.
## 40302                                                                                                                                                                       EE states while hiking w/ a back pack on, it over-exterded and twisted EE rt ankle and foot.
## 40303                                                                                                                                                                                               EE states while holding a dog the dog bit him on the rt index finger
## 40304                                                                                                                                                                                     EE states while holding a door open she was struckfrom behind by another door.
## 40305                                                                                                                                                     EE states while holding a drop box lid up to deposit money the lid slipped causing EE to injured his rt thumb.
## 40306                                                                                                                                                                        EE states while holding a rifle for a staff memberthe loud sound caused pain in his lt ear.
## 40307                                                                                                                                                        EE states while holding a shotgun her rt wrist popped and she felt a sharp pain and her hand began to swell
## 40308                                                                                                                                                      EE states while holding a stack a paper she made a mistake and poked the corner of the rt eye with the paper.
## 40309                                                                                                                                                                                     EE states while holding an inmate his rt knee hit the ground as they went down
## 40310                                                                                                                                                                             EE states while holding elevators door for a long period of time she injured her back.
## 40311                                                                                                                        EE states while holding patient, my finger jammed patient throwing shoes, in process of moving to prevent being hit. EE struck the door jam
## 40312                                                                                                                                                       EE states while holding the door handle another officer pulled the door closed causing injury to the rt arm.
## 40313                                                                                                                                                         EE states while hooking the wires on to fish tape the tape slipped and caught the area under his rt thumb.
## 40314                                                                                                                                                                            EE states while hooking up a trash cart he stepped in a hole and twisted his rt knee ()
## 40315                                                                                                                                                 EE states while hurrying in the courthouse for a meeting she tripped over the floormat at the entrance of the door
## 40316                                                                                                                                                                           EE states while in a confrontation with an inmate he struck his rt hand against the desk
## 40317                                                                                                                                                                         EE states while in a cooking group with pt the pot slipped and burned her lt index finger.
## 40318                                                                                                                                    EE states while in building entry training, employee reached down and tried to pull officer off his legs and felt his back pull
## 40319                                                                                                                                                         EE states while in chair she turned to reach for a book and struck her rt knee on the corner of thecabinet
## 40320                                                                                                                                                                                                 EE states while in contact with patient she was exposed to scabies
## 40321                                                                                                                                                                               EE states while in court he stepped and missed a step causing injury to his rt knee.
## 40322                                                                                                                                                                                                          EE states while in crdt training twisted rt elbow/forearm
## 40323                                                                                                                                          EE states while in process of performing duties checking vehicles, personnel walking he noticed rtfoot was extreamly sore
## 40324                                                                                                                                     EE states while in quiet room pt began unsafe behavior after several redirections behavior escalated contusion to left abdomen
## 40325                                                                                                                                                                       EE states while in shower she turned and slipped causing her to fall and injured her rt leg.
## 40326                                                                                                                                              EE states while in storage closet filling up bucket he felt ants in his clothes biting him on his arm, neck & hand ()
## 40327                                                                                                                                                       EE states while in the back of hallway turning offthe lights she fell and injured her lt ankle and rt wrist.
## 40328                                                                                                                                                      EE states while in the basement to pick up mail a piece of wood fell off a cart and struck her on the lt foot
## 40329                                                                                                                                                                          EE states while in the breakroom she turned aroundand struck her lt shoulder on the door.
## 40330                                                                                                                   EE states while in the process of securing the north and east yards, she pulled on the gate latchwhen the gate gave way the base fell on finger.
## 40331                                                                                                                                                                                                              EE states while in the woods he was bitten by a tick.
## 40332                                                                                                                                                                                                   EE states while in training he fell backwards twisting his back.
## 40333                                                                                                                                EE states while in unarmed self defense training, he was thrown to the mat and came down on his left side chest area, causing pain.
## 40334                                                                                                                                                                                                                        EE states while in van he injured his back.
## 40335                                                                                                                                                 EE states while in vehicle he stopped at a trafficlight when his vehicle was struck in the rear by another vehicle
## 40336                                                                                                                                                 EE states while in wheelchair he attempted to wheel over a threshold causing strain in his shoulder and chest area
## 40337                                                                                                                                                                                                           EE states while inside a bus he struck the driver mirror
## 40338                                                                                                                                                                   EE states while inside moving vehicle, possible insect bites to both fingers, immediate swelling
## 40339                                                                                                                                                                         EE states while inspectiing a chain his lt index finger was caught between the chain loop.
## 40340                                                                                                                                                                                                        EE states while inspecting a cow the cow kicked her rt hand
## 40341                                                                                                                                                   EE states while inspecting a mattress he reached to turn the mattress and felt something pull in his lt shoulder
## 40342                                                                                                                    EE states while inspecting a table both of his legwere pressed against the bottom shelf which causedswelling and bleeding. EE is a hemophiliac.
## 40343                                                                                                                                                             EE states while inspecting a vehicle when he stoodup his rt shoulder struck the edge of the rear door.
## 40344                                                                                                                                                                                          EE states while inspecting beef he felt pain and swelling of his lt wrist
## 40345                                                                                                                                                                                          EE states while inspecting beef the knife slipped cuttting her lt forearm
## 40346                                                                                                                                                                                         EE states while inspecting kitchen area he slippedand fell on slick floor.
## 40347                                                                                                                                                                                  EE states while inspecting meat using a meat grinder his rt middle finger was cut
## 40348                                                                                                                                                                                           EE states while inspecting peanuts she was stung by a bee on the rt hand
## 40349                                                                                                                   EE states while inspecting rooms he found a piece of paper which contain a razor blade and while pulling the paper he cut his finger on rt hand.
## 40350                                                                                                                                                               EE states while inspecting the exhaust fan on the roof he was bitten by an unknown insect on the lip
## 40351                                                                                                                                                   EE states while inspecting the fence area his rt foot slipped causing him to fall striking his lt knee on a rock
## 40352                                                                                                                                                                                  EE states while installing a conduit he lost his balance and twisted his rt ankle
## 40353                                                                                                                                EE states while installing a door closure he was drilling a hole when the piece of metal slipped from his hand cutting his lt thumb
## 40354                                                                                                                                                                                                     EE states while installing a light fixture he cut his lt thumb
## 40355                                                                                                                                         EE states while installing an air conditioner he lifted the old air conditioner unit when he felt a pull in his groin area
## 40356                                                                                                                                                                             EE states while installing and removing tires on truck he notice pain in his back area
## 40357                                                                                                                                                                          EE states while installing cable he step off a ladder onto floor and twisted his rt knee.
## 40358                                                                                                                                                                                               EE states while installing floor tile he felt painin his lower back.
## 40359                                                                                                                                                                                EE states while installing linoleum he cut his lt index finger with a utility knife
## 40360                                                                                                                                                                                                 EE states while instructing a staff member he twisted his rt ankle
## 40361                                                                                                                                                                EE states while instructing an inmate on how to doa job he was struck on the head by inmate's fist.
## 40362                                                                                                                                                     EE states while instructing inmates on proper food preparation she slipped on wet floor causing lt knee injury
## 40363                                                                                                                                                                        EE states while instructing some student on how touse a saw his rt hand and finger was cut.
## 40364                                                                                                                       EE states while instructing the inmates how to perform routine step, she twisted her ankle in theprocess of showing them how to do the step.
## 40365                                                                                                                                                    EE states while interacting with client during a rehab outing he was playing basketball and injuredhis lt knee.
## 40366                                                                                                                                                                                        EE states while investigating broken glass a pieceof glass got into rt eye.
## 40367                                                                                                                                                                           EE states while involve in a use of force on an inmate he injured his hands and lt knee.
## 40368                                                                                                                                                      EE states while involve with a use of force on an inmate he received a small puncture wound to the rt forearm
## 40369                                                                                                                                      EE states while involved in a cell extraction, the I/m grabbed his leg causing him to fall and hit his head against the wall.
## 40370                                                                                                                                                                                   EE states while involved in a motor vehicle accident he injured his lt leg/knee.
## 40371                                                                                                                                                             EE states while involved in a use of force he was struck by an inmate and also exposed to pepper spray
## 40372                                                                                                                                                                  EE states while involved in a use of force on an inmate he fell to the floor striking his lt knee
## 40373                                                                                                                                                                                     EE states while involved in a use of force on an inmate he injured his lt hand
## 40374                                                                                                                                                                           EE states while involved in a use of force on an inmate he injured his lt leg and lt arm
## 40375                                                                                                                                                                            EE states while involved in a use of force on an inmate he injured his rt forearm/elbow
## 40376                                                                                                                                    EE states while involved in a use of force on an inmate he was struck on top of the lt eye and his rt shoulder struck the floor
## 40377                                                                                                                                                                       EE states while involved in a use of force on an inmate the inmate bit him on his lt forearm
## 40378                                                                                                                                                                EE states while involved in a use of force on an inmate the inmate spit some blood into his rt eye.
## 40379                                                                                                                                                                                                EE states while involved in a use of force she injured her lt wrist
## 40380                                                                                                                                                                                EE states while involved in a use of force with aninmate he got blood on his shirt.
## 40381                                                                                                                                                                                 EE states while involved in a use of force with aninmates he injured his rt elbow.
## 40382                                                                                                                                                                                 EE states while involved in an use of force on an inmate he cut his rt hand finger
## 40383                                                                                                                                                                                  EE states while involved with a use of force on an inmate he injured his rt hand.
## 40384                                                                                                                                                                            EE states while involved with a use of force on aninmate the inmate twisted her lt hand
## 40385                                                                                                                                          EE states while issuing a ticket the motorist started backing the car striking EE lt leg causinghim to twist his lt ankle
## 40386                                                                                                                                  EE states while jumping a ditch as she was beginning to fall she caught herself with her rt hand causing her to jam her rt thumb.
## 40387                                                                                                                                                                                                               EE states while jumping ditch he injured his rt knee
## 40388                                                                                                                                                                           EE states while jumping over a creek his weigh shifted on his rt knee causing an injury.
## 40389                                                                                                                           EE states while k-9 training with pert he was walking down a hill and lost his footing and slipped he slammed his lt knee against a tree
## 40390                                                                                                                                                                                  EE states while keeping a metal door from opening the door closed on her rt thumb
## 40391                                                                                                                                                                                EE states while kneeling down to stop a commode from running he twisted his rt knee
## 40392                                                                                                                                                            EE states while laying some tracks for the dogs he ran into a tree limb which struck him in his rt eye.
## 40393                                                                                                                                       EE states while laying track for bloodhound training and while moving through the woods a tree limb struck him in the lt eye
## 40394                                                                                                                                                       EE states while laying tracks in woods for bloodhounds he was bitten on the lt heel of foot by a rattlesnake
## 40395                                                                                                                                                                              EE states while leaning against a wall a fire extinguisher fell on top of her rt foot
## 40396                                                                                                                                                                                     EE states while leaning back in a chair he felt a sharp pain in his lower back
## 40397                                                                                                                                                         EE states while leaning backward in a chair the chair flipped causing EE to injured her back and buttocks.
## 40398                                                                                                                          EE states while leaning in a chair the chair fell from under him causing him to fall backward and striking his head on the concrete floor
## 40399                                                                                                                               EE states while leaning in chair to put something in the drawer the chair collapsed causing EE to fall injurying his finger and hip.
## 40400                                                                                                                                      EE states while leaning over desk to obtain her clipboard when returning to upright position she struck her mouth on the desk
## 40401                                                                                                                                      EE states while leaning over getting something out of the bottom drawer, turned head and felt sharp pain in left side of neck
## 40402                                                                                                                                                                           EE states while leaning over to remove drink from drink machine he felt pain in his back
## 40403                                                                                                                                                                           EE states while leaving a building she slipped andfell on ice causing injury to her neck
## 40404                                                                                                               EE states while leaving a home during a home visithe step down on a cinder block which turned over causing EE to fall backward injuring his low back
## 40405                                                                                                                                                 EE states while leaving for the day, she stepped on a stone in the facility parking lot and twistedher right ankle
## 40406                                                                                                                                                                          EE states while leaving from work he stepped on an uneven pavement twisting his rt ankle.
## 40407                                                                                                                                                                     EE states while leaving her job her rt foot slipped on some gravel that was in the parking lot
## 40408                                                                                                                                                 EE states while leaving his station he slipped andfell on a patch of ice striking his knee against the stone wall.
## 40409                                                                                                                           EE states while leaving the room the door was not open wide enough, walking full force hit top of rt knee on interfacing of door itself.
## 40410                                                                                                                                                            EE states while leaving the staff restroom she slipped and fell on wet floor injurying her lt hip area.
## 40411                                                                                                               EE states while leaving working driving his patrolvehicle, a car pulled out in front of him causing a collision. Injury rt elbow and bump both knees
## 40412                                                                                                                                                           EE states while leaving workplace going down steps- fell forward twisted lt ankle scrapes to both knees.
## 40413                                                                                                             EE states while letting an inmate out of his cell the inmate grabbed EE by the arm and while making an attempt to get away EE injured her rt wrist/arm
## 40414                                                                                                                                                                    EE states while letting another office through the door the door closed on her rt middle finger
## 40415                                                                                                                                                                                     EE states while letting inmate through gate his finger was closed in the door.
## 40416                                                                                                                                                                EE states while letting tailgate down on dumptruckto dump metal he pulled something in his rt elbow
## 40417                                                                                                                                                                                        EE states while letting the hatch down on a trap door she injured her back.
## 40418                                                                                                                                                                                       EE states while lifing a box of amnio during inventory she injured her back.
## 40419                                                                                                                                                                                                                 EE states while lifing a table he injured his back
## 40420                                                                                                                                                                                     EE states while lifing an inmate onto a gurney he felt pain in his lt shoulder
## 40421                                                                                                                                                                                                    EE states while lifing boxes of brochures she injured her back.
## 40422                                                                                                                   EE states while lifting 45lb weight w/both hands the weight slipped out of rt hand and he was laying against wall and he felt a pop in lft shoul
## 40423                                                                                                                                                               EE states while lifting a 15 gallon pot full of water and potatoes he injured his rt side groin area
## 40424                                                                                                                                           EE states while lifting a 50 lbs bag of potatoes to place on pallet she pulled a muscle in her rib cage and lt side area
## 40425                                                                                                                                                                              EE states while lifting a bag containing inmate person property---he injured his back
## 40426                                                                                                                                                                                 EE states while lifting a bag of socks the bag twisted and fell injuring EE rt arm
## 40427                                                                                                                                                                                                  EE states while lifting a bag she felt a pull in her upper rt leg
## 40428                                                                                                                                                                                EE states while lifting a bag which belongs to an inmate she injured her lower back
## 40429                                                                                                                                                                          EE states while lifting a basket with paper from the floor he felt pain in his lower back
## 40430                                                                                                                                                                                                          EE states while lifting a box he felt pain in lower back.
## 40431                                                                                                                                                                                                  EE states while lifting a box he pulled a muscle in his low back.
## 40432                                                                                                                                                                  EE states while lifting a box of books from the back of a car he felt pain in his lower back area
## 40433                                                                                                                                                                                                     EE states while lifting a box of clothing she injured her back
## 40434                                                                                                                                                                                                  EE states while lifting a box of files she injuredher lower back.
## 40435                                                                                                                                                                           EE states while lifting a box of floor tiles he developed a hernia in the lower abdomen.
## 40436                                                                                                                                            EE states while lifting a box of mail felt a sharppain in lower back the pain reoccurred whenever EE tried to bend over
## 40437                                                                                                                                                                                                    EE states while lifting a box of paper he strainedhis abdominal
## 40438                                                                                                                                               EE states while lifting a box of records from hydraulic lift to be placed on a shelf for storageshe felt her lt knee
## 40439                                                                                                                                                                          EE states while lifting a box of textbooks she felt pain in the lt shoulder and neck area
## 40440                                                                                                                                                      EE states while lifting a box of water from the trunk of a car the box slipped from EE lt hand twisting wrist
## 40441                                                                                                                                                                                              EE states while lifting a box she felt a sharp pull in her upper back
## 40442                                                                                                                                                                                            EE states while lifting a box she lost her balanceand injured her back.
## 40443                                                                                                                                                                                            EE states while lifting a canoe he struck his lt hand on the side panel
## 40444                                                                                                                                                                                           EE states while lifting a case of cheese he felt pain in his lower back.
## 40445                                                                                                                                                        EE states while lifting a client from wheelchair to van she felt a burning/stinging sensation in her lt arm
## 40446                                                                                                                                                                                          EE states while lifting a client into tub she feltsharp pain in her back.
## 40447                                                                                                                                                                                                          EE states while lifting a client she injured her rt wrist
## 40448                                                                                                                                                                                                     EE states while lifting a client she reinjured herrt arm/wrist
## 40449                                                                                                                                                                                             EE states while lifting a crate with jugs of juiceshe injured her back
## 40450                                                                                                                                                                                                               EE states while lifting a door he injured his lt leg
## 40451                                                                                                                                                                                                  EE states while lifting a fuel tank he felt pain in his low back.
## 40452                                                                                                                                                             EE states while lifting a greenhouse bench to clean it the beach slipped--pinching end of littlefinger
## 40453                                                                                                                                                                                                    EE states while lifting a heavy bucket he injured his lt wrist.
## 40454                                                                                                                                                                EE states while lifting a heavy volume of medical charts she felt something pull in her rt shoulder
## 40455                                                                                                                                                                EE states while lifting a hydraulic lift of a truck he felt a muscle pull in his neck and shoulder.
## 40456                                                                                                                                                                                               EE states while lifting a large file cabinet he injured his abdomen.
## 40457                                                                                                                                                                                    EE states while lifting a large trash bag she feltpain in her middle back area.
## 40458                                                                                                                                                                                            EE states while lifting a linen rack out the buggyshe injured her back.
## 40459                                                                                                                                                                                                                 EE states while lifting a log he injured his back.
## 40460                                                                                                                                                                                EE states while lifting a manhole cover he felt a sharp pain in his lower back area
## 40461                                                                                                                                                                             EE states while lifting a milk crate weighing 30lbs he felt pain in his lt groin area.
## 40462                                                                                                                                                                                         EE states while lifting a pan with pancake mix she felt a pop in her hand.
## 40463                                                                                                                                                                                                 EE states while lifting a patient she felt pain in the lower back.
## 40464                                                                                                                                                                                                       EE states while lifting a patient she injured her lower back
## 40465                                                                                                                                                                                                               EE states while lifting a piano he injured his back.
## 40466                                                                                                                                                                                                        EE states while lifting a piece of wood he injuredhis back.
## 40467                                                                                                                                                                           EE states while lifting a plastic container he felt something pull in his shoulder area.
## 40468                                                                                                                                                                                         EE states while lifting a pot off a rack she felt pain in her rt shoulder.
## 40469                                                                                                                                                                                                     EE states while lifting a printer he felt pain in his leg/back
## 40470                                                                                                                                                                                                           EE states while lifting a pt he injured his lt shoulder.
## 40471                                                                                                                                                                                                    EE states while lifting a pt into a chair she injured her back.
## 40472                                                                                                                                                                                             EE states while lifting a rack he felt a sharp pain in his rt shoulder
## 40473                                                                                                                                                            EE states while lifting a ramp to unload drums from truck to trailer he felt a pinch in his lt shoulder
## 40474                                                                                                                                                                                                 EE states while lifting a resident she felt pain in her lower back
## 40475                                                                                                                                                                                                     EE states while lifting a sheetrock he strain his scrotum area
## 40476                                                                                                                                                                                             EE states while lifting a sink to take off a wall he injured his back.
## 40477                                                                                                                                                                                        EE states while lifting a steam funnel gate he pulled a muscle in his chest
## 40478                                                                                                                                                                                               EE states while lifting a stool she felt pain in her lt arm/shoulder
## 40479                                                                                                                                                                                                               EE states while lifting a table she injured her back
## 40480                                                                                                                                                                                                     EE states while lifting a tool box he felt a pull in his neck.
## 40481                                                                                                                                                               EE states while lifting a tote filled with medicalunits jacket she pulled a muscle in her chest area
## 40482                                                                                                                                                                                          EE states while lifting a trailer attach to a van he injured his lt elbow
## 40483                                                                                                                                                                EE states while lifting a trash bag full of trash she felt a pop in her neck causing immediate pain
## 40484                                                                                                                                                                                            EE states while lifting a trash bin he felt pain in his lower back area
## 40485                                                                                                                                                                                            EE states while lifting a trash can she pulled a muscle on her rt side.
## 40486                                                                                                                                                                             EE states while lifting a tub filled with mail he felt a severe pull in her lower back
## 40487                                                                                                                                                                                    EE states while lifting a vacuum she injured her neck, upper back, and shoulder
## 40488                                                                                                                                                                                           EE states while lifting a waste container he felt pain in his lower back
## 40489                                                                                                                                                                       EE states while lifting a wheelchair from chair lift to van he felt a sharp pain in his back
## 40490                                                                                                                                                                                       EE states while lifting an aluminum board he pulled a muscle in his lt elbow
## 40491                                                                                                                                                                                    EE states while lifting an inmate medical record jacket he injured his lt thumb
## 40492                                                                                                                                                                 EE states while lifting an inmate off the floor hefelt a sharp pain in his neck and shoulder area.
## 40493                                                                                                                                                                               EE states while lifting an inmate onto a gurney he injured his lower back and lt hip
## 40494                                                                                                                                                                          EE states while lifting an inmate onto a lift seat she felt pain in her neck and shoulder
## 40495                                                                                                                                                                                                  EE states while lifting an inmate out of bed she injured her back
## 40496                                                                                                                                                                       EE states while lifting and arranging files in boxes she pulled a muscle in her lt shoulder.
## 40497                                                                                                                                                                                                EE states while lifting and moving boxes she injured her lower back
## 40498                                                                                                                                                                                                    EE states while lifting and moving files she injured her rt arm
## 40499                                                                                                                                                                                           EE states while lifting and moving tables he felt pain in his groin area
## 40500                                                                                                                                                                                            EE states while lifting baskets to load truck he injured his lower back
## 40501                                                                                                                                                                                                       EE states while lifting boxes she felt pain in herneck area.
## 40502                                                                                                                                                                                                EE states while lifting boxes she felt pain in thert shoulder area.
## 40503                                                                                                                                                                                                             EE states while lifting boxes she injured her rt thumb
## 40504                                                                                                                                                                                   EE states while lifting boxes to load on a cart she felt pain in her lower back.
## 40505                                                                                                                                                     EE states while lifting cart from floor to countertop--EE experienced back pain below waist in center of back.
## 40506                                                                                                                                                                                          EE states while lifting cases of soda he felt a pain in lt shoulder area.
## 40507                                                                                                                                                                                       EE states while lifting client from bed to wheel chair she injured her back.
## 40508                                                                                                                                                                                 EE states while lifting client from wheelchair shefelt pressure in her chest area.
## 40509                                                                                                                                                                      EE states while lifting client from wheelchair to bed she felt a pull on the rt side of neck.
## 40510                                                                                                                                                                                        EE states while lifting client onto bed she felt a pain in lower back area.
## 40511                                                                                                                                                                                       EE states while lifting client out of bed she felt pain in her lt arm/wrist.
## 40512                                                                                                                                                                               EE states while lifting client out of tub to wheelchair she felt a pain in her back.
## 40513                                                                                                                                                                                                          EE states while lifting client she felt pain in her back.
## 40514                                                                                                                                                                                                   EE states while lifting client she felt sharp painin chest area.
## 40515                                                                                                                                                                                                        EE states while lifting container he injured his lower back
## 40516                                                                                                                                                                   EE states while lifting equipment in preparation for hurricane she injured her rt shoulder/elbow
## 40517                                                                                                                                                                      EE states while lifting file cabinets, desk, and bookcase he injured his pelvis and hips area
## 40518                                                                                                                                                                                          EE states while lifting file storage boxes he strain his back/lt shoulder
## 40519                                                                                                                                                                                  EE states while lifting gallons of wax she noted pain in the neck and chest area.
## 40520                                                                                                                                                                                                                        EE states while lifting he injured his back
## 40521                                                                                                                                                                                         EE states while lifting heavy container he felt soreness in his upper arm.
## 40522                                                                                                                                                                                   EE states while lifting her arm to open a door she felt pain in her rt shoulder.
## 40523                                                                                                                                                                                                          EE states while lifting old tires he injured his lt elbow
## 40524                                                                                                                                                       EE states while lifting patient from chair to bed, patient was still strapped in and pulled muscle in chest.
## 40525                                                                                                                                                                                EE states while lifting patient out of bed sat. Amee felt a pulling in lt shoulder.
## 40526                                                                                                                                                                                     EE states while lifting racks from wash center she strained her lt hand/wrist.
## 40527                                                                                                                                                       EE states while lifting several hot and cold itemsshe injured his rt arm causing pain in wrist and shoulder.
## 40528                                                                                                                                                           EE states while lifting some post and placing theminto holes for a shelter unit he felt pain in his back
## 40529                                                                                                                        EE states while lifting stack of staff folders to top drawer of file cabinet. EE felt sharp pain in upper left side, lateral to left breast
## 40530                                                                                                                                                      EE states while lifting suitcase and cast iron equipment she felt pain in her lower abdomen and rt groin area
## 40531                                                                                                                                                                                  EE states while lifting supplies at a marketing seminar he injured his lower back
## 40532                                                                                                                                                                                          EE states while lifting supplies at a workshop she injured her lower back
## 40533                                                                                                                                                                       EE states while lifting the mobile library cart up the stairs in the dorm EE hurt upper arm.
## 40534                                                                                                                                                                                                   EE states while lifting trash into dumpster he injured his back.
## 40535                                                                                                                                                                                                        EE states while lifting trees with roots he injurehis elbow
## 40536                                                                                                                                                                                                               EE states while lifting weights he injured his back.
## 40537                                                                                                                                                                  EE states while lighting a gas grill some flames blew up in his face--burning face, eyes, and arm
## 40538                                                                                                                                                                                       EE states while loading a deck in a truck it slipped and fell on his rt foot
## 40539                                                                                                                                                                                      EE states while loading a dryer with wet linen he felt pain in his lower back
## 40540                                                                                                                                                                                                 EE states while loading a lowboy he struck his rt hand/idex finger
## 40541                                                                                                                                                                    EE states while loading a trailer he stepped on a nail which penetrate through his safety boot.
## 40542                                                                                                                                                 EE states while loading a truck he slipped and fell on ice in parking lot causing injury to his back and neck area
## 40543                                                                                                                                    EE states while loading a water cooler on a van his rt hand struck the edge of the sercuity screen causing a cut to his fingers
## 40544                                                                                                                                                                                   EE states while loading and unloading a truck he notice swelling of the rt elbow
## 40545                                                                                                                                          EE states while loading boxes into pickup truck he lost his balance and fell backward striking his head on a water trough
## 40546                                                                                                                                               EE states while loading cases on golf cart, then unloading afterwards, my back started hurting; lifting heavy cases.
## 40547                                                                                                                                                                                       EE states while loading cement blocks the blocks fell on his lt pinky finger
## 40548                                                                                                                                                 EE states while loading children on bus preparing to go on a field trip she slipped and fell injuring her lt knee.
## 40549                                                                                                                                                                             EE states while loading computer and book case into mini-van he injured his lower back
## 40550                                                                                                                                                          EE states while loading computer monitors on a flat bed cart she struck her rt elbow on the metalhandle..
## 40551                                                                                                                                                                                     EE states while loading dirt onto gator, he injured the rt side of his back ()
## 40552                                                                                                                                                             EE states while loading dock the front gate flew back striking EE in the mouth injuring rt front tooth
## 40553                                                                                                                                                     EE states while loading equipment and work paper into automobile she strain her back. Lt shoulder, and fingers
## 40554                                                                                                                                                            EE states while loading food trays into a van she slipped on a floor mat and fell injurying her lt leg.
## 40555                                                                                                                                                                                       EE states while loading limbs and branches he camein contact with poison ivy
## 40556                                                                                                                                                                                                EE states while loading pallet unto truck he injured his lower back
## 40557                                                                                                                                                                                                 EE states while loading pallets on truck he strainhis groin muscle
## 40558                                                                                                                                                                                                   EE states while loading scrap metal on a truck he cut his lt arm
## 40559                                                                                                                                EE states while loading state vehicle and attempting to pick up a file folder off the groundhe stepped on uneven pavement and fell.
## 40560                                                                                                                                                                               EE states while loading the truck his feet slippedfrom under him causing him to fall
## 40561                                                                                                                                                                                             EE states while loading trays--she felt sharp painin her rt. Shoulder.
## 40562                                                                                                                                                                              EE states while loading watermelons to a truck trailer he felt pain in his lower back
## 40563                                                                                                                                                                               EE states while locking a gate an inmate threw a rock striking EE on her lt shoulder
## 40564                                                                                                                                                                    EE states while locking a lock to a cell his rt finger was caught between the bar and the lock.
## 40565                                                                                                                                     EE states while locking down inmates, an inmate became combative when he refused to go into his cell and had to be restrained.
## 40566                                                                                                                             EE states while looking in the cabinet for paper towels he lt index finger was caught between the top and bottom drawer of the cabinet
## 40567                                                                                                                                                                                                EE states while looking inside a box she cut her finger on the box.
## 40568                                                                                                                                                   EE states while loosening chain binder unloading a backhoe a pipe came loose striking EE on the back of rt hand.
## 40569                                                                                                                                                                                            EE states while lowering a sign the sign fell striking EE on the lt arm
## 40570                                                                                                                                     EE states while lowering a tractor trailer into a ground the switch got stuck causing EE to be thrown into the steering wheel.
## 40571                                                                                                                                                                             EE states while lowering a trap door an inmate threw some unknown liquid into his face
## 40572                                                                                                                       EE states while lying on the floor installing new computer system in an office and while turning over her pulled a muscle in his lower back.
## 40573                                                                                                                           EE states while making a curfew check at an offender's home the offender open the door and EE stepped back into a railing which gave way
## 40574                                                                                                                                                                                 EE states while making a suddenly turn he felt pain in his lower back and lt thigh
## 40575                                                                                                                                                                                                        EE states while making an arrest he injured his lower back.
## 40576                                                                                                                                                 EE states while making an arrest on an offender the offender became aggressive causing EE to strain his lower back
## 40577                                                                                                                                                EE states while making his sercuity round check he slipped and fell on a wet floor injuring his rt arm and shoulder
## 40578                                                                                                                                                                                                      EE states while making home visit a dog bit him onthe lt leg.
## 40579                                                                                                                                                                                     EE states while making home visit she was involvedin a motor vehicle accident.
## 40580                                                                                                                                                                                     EE states while making house round he was bitten by a dog on the lower rt leg.
## 40581                                                                                                                                                                                               EE states while making iv's for the patients I was stuck with needle
## 40582                                                                                                                                                                                 EE states while making medication rounds she slipped and fell injuring her lt knee
## 40583                                                                                                                                                                             EE states while making resident's bed the corner of the pillow struck EE in the lt eye
## 40584                                                                                                                                                                               EE states while making rounds he slipped and fell on wet sidewalk injuring his wrist
## 40585                                                                                                                               EE states while making rounds in 2 c&d dorm, her arm started burning. When EE checked her lt arm, it had begun to turn red and swell
## 40586                                                                                                                                                                        EE states while making rounds in dorm his rt shoulder was caught in the front sliding door.
## 40587                                                                                                                                                                                      EE states while making rounds in the dormitory something flew into his lt eye
## 40588                                                                                                                                                                               EE states while making rounds she pulled on door handle and strained her rt shoulder
## 40589                                                                                                                                                                    EE states while making rounds through dorms he pinched his lt hand between thumb and forefinger
## 40590                                                                                                           EE states while making routine rounds of instituteee ascended a set of steps which were wet due to rain, EE slipped fell and struck low back, and pulled
## 40591                                                                                                                        EE states while making security check in one of the blocks, as he was coming down stairs "made and akward step" and twisted his right ankle
## 40592                                                                                                                           EE states while making security rounds he pulled the padlock from the main dorm an while pulling the lock his fingers was cut by a razor
## 40593                                                                                                                                        EE states while making sercuity rounds he bent down to look under a truck and when stood up he struck his head on the frame
## 40594                                                                                                                                                                               EE states while making sercuity rounds he slipped on some steps and injured his back
## 40595                                                                                                                                                               EE states while making sercuity rounds his rt leg was jammed on a door stopper which has caused pain
## 40596                                                                                                                                                                EE states while making sercurity check in the yardshe stepped into a hole and injured her rt ankle.
## 40597                                                                                                                                                                   EE states while manning the post someone shined a laser beam pointer into both his lt and rt eye
## 40598                                                                                                                                                                                EE states while marching during training he stepped into a hole causing back injury
## 40599                                                                                                                                                                   EE states while marking numbers on football field he moved the wrong way and twisted his lt foot
## 40600                                                                                                                                                                                    EE states while measuring land to plant trees an insect bit her on the rt thumb
## 40601                                                                                                              EE states while measuring length of pool, a weight block was used to hel end of tape. Lifted weight block and it slopped from hand injuring finger ()
## 40602                                                                                                                                                                                      EE states while mixing dough her fingers was caught in the hook of the mixer.
## 40603                                                                                                                                                                 EE states while monitoring a door the wind blew the door causing it to shut on his rt index finger
## 40604                                                                                                                                                                                              EE states while monitoring inmates he turned and twisted his lt knee.
## 40605                                                                                                                                                                                                          EE states while monitoring the platoon his rt kneelocked.
## 40606                                                                                                                                                                    EE states while mopping a bathroom he fell on a slippery floor and injured his rt arm and hand.
## 40607                                                                                                                                                                EE states while mopping and waxing the floor she slipped and fell injurying her back on the lt side
## 40608                                                                                                                                                                                                           EE states while mopping floor he felt a pain in his back
## 40609                                                                                                                                                                                                         EE states while mopping floor he felt pain on his lt side.
## 40610                                                                                                                                                                                             EE states while mopping floor her lt foot got tangled up with the mop.
## 40611                                                                                                                                                                                       EE states while mopping from side to side EE felt something pull in rt hand.
## 40612                                                                                                                                                                                   EE states while mopping restroom floor slipped & fell while exiting toilet stall
## 40613                                                                                                                                                                                                EE states while mopping the floor his lt knee struck the bed frame.
## 40614                                                                                                                     EE states while moving 6ft wardrobe/dresser to clean it, dresser was unstabled, tilted and began to fall. Left shldr plt atty jeffrey peraldo.
## 40615                                                                                                                                                    EE states while moving a cart he twisted his back pa: peter k gemborys**f18 filed rated 3% & 6% to back = 4. 5%
## 40616                                                                                                                                                                                                          EE states while moving a desk he felt pain in his rt side
## 40617                                                                                                                                                                                                           EE states while moving a fan she injured her lt shoulder
## 40618                                                                                                                                                                                  EE states while moving a foot rest the foot rest fell and struck her on the foot.
## 40619                                                                                                                                               EE states while moving a heavy wooden desk with a coworker, he strained low back ** rehab nurse - melanie marshal **
## 40620                                                                                                                                                                           EE states while moving a patient on a stretcher he ran over his left foot with wheel. ()
## 40621                                                                                                                                                                                           EE states while moving a portable back stop he felt pain in his lt wrist
## 40622                                                                                                                                                         EE states while moving a sheetrock panel the panelslipped from his hand striking his finger on the rt hand
## 40623                                                                                                                                                                           EE states while moving a table he struck his finger on a nail which was under the table.
## 40624                                                                                                                                                                                                       EE states while moving a table the table fell on his lt foot
## 40625                                                                                                                                                                                                      EE states while moving a television he felt a pop in his back
## 40626                                                                                                                          EE states while moving an oil tank the tank becamehung and while trying to free it EE finger was caught between the tank and the wrecker.
## 40627                                                                                                                                                                                           EE states while moving and carrying equipment she injured her lower back
## 40628                                                                                                                                                                                                                          EE states while moving bed hurt left side
## 40629                                                                                                                                                                                                            EE states while moving beds she felt a pop in her back.
## 40630                                                                                                                                                                                                            EE states while moving boxes he was bitten by a spider.
## 40631                                                                                                                                                                              EE states while moving boxes of file from one location to another he injured his back
## 40632                                                                                                                                                      EE states while moving boxes, he turned and felt asharp pain in the left side of hte middle part of his back.
## 40633                                                                                                                                                                                                   EE states while moving carts she tripped and fell over the cart.
## 40634                                                                                                                                                                                     EE states while moving charts she split open finger. Aggravated an old injury.
## 40635                                                                                                                                                                  EE states while moving chemicals to the storage area he mashed his thumb on the latch of the cart
## 40636                                                                                                                                                                   EE states while moving client to a new spot; EE hit left foot on the anti tiper on the chair. ()
## 40637                                                                                                                                                                                         EE states while moving copier he felt pain in backneck, and shoulder area.
## 40638                                                                                                                                                               EE states while moving equipment to new location to set up new office he injured his back and lt hip
## 40639                                                                                                                                                                          EE states while moving feed bags with hand truck his rt hand was cut on an aluminum wall.
## 40640                                                                                                                                                                                                             EE states while moving file cabinet he strain his back
## 40641                                                                                                                                                                                          EE states while moving file cabinet out of class room he injured his back
## 40642                                                                                                                                                                            EE states while moving furniture he bent his kneesand heard a popping sound in his back
## 40643                                                                                                                                                                                                              EE states while moving furniture he injured his back.
## 40644                                                                                                         EE states while moving furniture he pulled muscle in back. Re injury occurred on 01/24/2010 while on work restrictions. EE moving trash filled w/cement ()
## 40645                                                                                                                                                                EE states while moving into another office she lifted a desk an caused strain to the chest and back
## 40646                                                                                                                                                   EE states while moving large chair to wax floor with assistance, started feeling pain in right hip and thigh. ()
## 40647                                                                                                                                                                                     EE states while moving med records shelves she developed pain in her shoulder.
## 40648                                                                                                                                                  EE states while moving medical charts a stack of charts slid striking EE on the nose and breaking her eyeglasses.
## 40649                                                                                                                                                  EE states while moving patient belongings from building to be treated for ants and felt apin in arm and shoulder.
## 40650                                                                                                                                                                              EE states while moving some furniture around in her office she felt pain in her back.
## 40651                                                                                                                     EE states while moving tables to locate computer printers, table slipped from hand, falling on finger, hitting edge table. Contusion to finger
## 40652                                                                                                                                                                                     EE states while moving tables with computers she felt a pull in her lower back
## 40653                                                                                                                                                                                                             EE states while moving tires he injured his lower back
## 40654                                                                                                                                                                                                          EE states while moving trucks he began to have chest pain
## 40655                                                                                                                                                                EE states while moving trucks he slipped on a fueltank causing injury to his rt foot and lower back
## 40656                                                                                                                                                                 EE states while moving two round table around the y slipped out of his hand falling on EE rt foot.
## 40657                                                                                                                                                                                                          EE states while mowing grass he was exposed to poison ivy
## 40658                                                                                                                     EE states while mowing grass some grass flew into his lt ear and when he tried to remove the grass from his ear the qtip broke off in his ear.
## 40659                                                                                                                                         EE states while mowing grass w/whitaker school students, staff was exposed to poison oak during thw use of the weed eater.
## 40660                                                                                                                                                                                          EE states while mowing the grass EE was bite by a tick/spider on lt foot.
## 40661                                                                                                                           EE states while mowing the grass on a hill he felland while trying to keep from fall his rt arm struck the mowing deck and the sign post
## 40662                                                                                                                                                                   EE states while mowing the grass some unknown object flew under his safety glass into his rt eye
## 40663                                                                                                                                                                                     EE states while mowing the lawn he stepped into a hole and injured his lt hip.
## 40664                                                                                                                                                                                                       EE states while near recycling bins he was stung by a insect
## 40665                                                                                                                                        EE states while observing a ballgame her lt hand was bent backward while trying to stop a ball fromstriking her in the face
## 40666                                                                                                                                                                           EE states while observing an inmate the inmate struck EE across the mouth with his hand.
## 40667                                                                                                                                                          EE states while observing inmates enroute to dining hall a fire hose fell striking EE on the rt shoulder.
## 40668                                                                                                                                                                              EE states while observing inmates playing basketball the ball struck EE in the rt eye
## 40669                                                                                                                                           EE states while observing student during a firearmclass another instructor threw a clay pigeon striking EE in the lt eye
## 40670                                                                                                                                                                   EE states while observing students throwing snowballs she was struck in the rt eye by a snowball
## 40671                                                                                                                                                                        EE states while on a flight from raleigh to california she started experiencing lt ear pain
## 40672                                                                                                                EE states while on a ladder changing a light the gate open striking the ladder causing it to fall EE grabbed wire to keep from falling injured hand
## 40673                                                                                                                                                         EE states while on a search team looking for a client he fell into a hole injurying his lt ankle and knee.
## 40674                                                                                                                                                        EE states while on duty as a sercuity officer he open a dump truck and a pipe fell striking EE on the chest
## 40675                                                                                                                                                                 EE states while on duty driving the state vehicle another car struck vehicle on the passenger side
## 40676                                                                                                                                                   EE states while on duty for a home visit she was in an auto accident in which she injured her shoulder and head.
## 40677                                                                                                                                                                EE states while on duty sitting in control room, turned his head to the left to see who was at door
## 40678                                                                                                                                                                  EE states while on fire line, slid down 12 foot embankment & landed in rock culvert on left foot.
## 40679                                                                                                                                                                                    EE states while on foot chasing a suspect he begin to have irregular heart beat
## 40680                                                                                                                                                                       EE states while on foot in pursuit of a dwi driverhe slipped and fell injurying his rt knee.
## 40681                                                                                                                                  EE states while on her way to the mailroom she slipped and fell on waxed floor twisting her rt knee/ankle and jamming lt shoulder
## 40682                                                                                                                   EE states while on his way to work, he had stoppedat intersection, as he crossed, his truck was hit by another vehicle causing cervical whiplash
## 40683                                                                                                                                                                               EE states while on horseback guarding inmates his fingers started to inch and swell.
## 40684                                                                                                               EE states while on hwy 73 in his cwc van, his lt arm was resting on the window as he watched his inmate crew work. Felt something bit/sting his hand
## 40685                                                                                                              EE states while on maintenance trip was struck on right hand side by semi-truck coming out of anothecompany's driveway. EE was passenger. Back injury
## 40686                                                                                                                                 EE states while on patrol it begain to rain, crossed creek, stepped up and twisted knee when climbing onto the other bank of creek
## 40687                                                                                                                             EE states while on pst g&h, EE felt something hit his rt eye-EE tried to dislodge it but couldn't went to nurses' office for treatment
## 40688                                                                                                                       EE states while on routine patrol, hwy 17 north onhis way to a seafood dealer. Truck turned in frontof him causing collison. Cervical strain
## 40689                                                                                                                                                                                         EE states while on south yard was bitten by unknown insect on lower lt leg
## 40690                                                                                                                                    EE states while on the ladder his leg slipped causing the ladder to fall causing EE to strike his head against a wall and floor
## 40691                                                                                                                                    EE states while on the yard outside of seg monitoring inmates on the exercise yard a yard maintenance inmate began to cut grass
## 40692                                                                                                                                                  EE states while on tower a he turned to the rt to push a button to open gate #2 and felt a pull in his lower back
## 40693                                                                                                                 EE states while on trail of escaped inmates he fell on the track and injured his lt knee and lt finger. ***clmt has filed 2 claims 2 days apart***
## 40694                                                                                                                                                            EE states while one on one in mental health, her foot got caught in towel and she twisted her ankle. ()
## 40695                                                                                                                                                                                        EE states while opening a box containing equipmenthe was stuck by a needle.
## 40696                                                                                                                                                                             EE states while opening a box of iron the iron fell out striking EE on the top lt hand
## 40697                                                                                                                                                            EE states while opening a cabinet door the door fell causing EE to fall to the floor injurying herback.
## 40698                                                                                                                                                                                              EE states while opening a can of paint his finger was cut by a knife.
## 40699                                                                                                                                                                   EE states while opening a can of paint with knife the knife slipped and cut EE on the rt finger.
## 40700                                                                                                                                                                                                          EE states while opening a can she cut her rt indexfinger.
## 40701                                                                                                                                                                             EE states while opening a cell door she scraped her rt arm on the lock security plate.
## 40702                                                                                                                                                                                    EE states while opening a desk drawer her rt finger was caught under the handle
## 40703                                                                                                                                                                                    EE states while opening a diaper pad something from the pad went into his eyes.
## 40704                                                                                                                                                                                              EE states while opening a door a piece of trash went into his rt eye.
## 40705                                                                                                                                                        EE states while opening a door an inmate came fromthe other side and caused the door to strike his lt foot.
## 40706                                                                                                                                                                                                                 EE states while opening a door he injured his back
## 40707                                                                                                                                                                                EE states while opening a door he slipped and fellon ice causing injury to his back
## 40708                                                                                                                                                                                              EE states while opening a door his finger on his lt hand was smashed.
## 40709                                                                                                                                                                              EE states while opening a door his rt finger was caught between the door and the wall
## 40710                                                                                                                                                        EE states while opening a door she pulled down on the handle causing pain in rt hip/back area dob: 4. 2. 60
## 40711                                                                                                                                                                                                    EE states while opening a door the door closed on his rt wrist.
## 40712                                                                                                                                                               EE states while opening a door the door flew back smashing rt finger between door and the brickwall.
## 40713                                                                                                                                                                                             EE states while opening a door to a gym he notice pain in his lt wrist
## 40714                                                                                                                                                                       EE states while opening a file cabinet the cabinettipped over striking her on the rt forearm
## 40715                                                                                                                                                     EE states while opening a gate door to allow a truck to go thru she stepped into a hole and twisther rt ankle.
## 40716                                                                                                                                              EE states while opening a gate for a vehicle to exit her rt finger was smashed between the gate and the security pole
## 40717                                                                                                                                                                                             EE states while opening a gate to a construction site he hit his knee.
## 40718                                                                                                                                                    EE states while opening a refrigerator something fell out striking EE on the rt finger causing a cut under nail
## 40719                                                                                                                                                                       EE states while opening a sewer cable his knife slipped causing a cut to his lt index finger
## 40720                                                                                                                                                                                                 EE states while opening a tomatoe can he cut his rt middle finger.
## 40721                                                                                                                                                                                                     EE states while opening a tool trailer lid he cut his lt thumb
## 40722                                                                                                                                                                          EE states while opening a trap door the door fell striking EE rt foot injurying her toes.
## 40723                                                                                                                                   EE states while opening a window in a bathroom a clothes hanger was attached to the window handlecausing a scratch on rt forearm
## 40724                                                                                                                                EE states while opening a window in the modular unit the top part of the window fell freely across my rt hand and mashed my fingers
## 40725                                                                                                                                                                          EE states while opening and closing a trap door his lt index finger was caught in between
## 40726                                                                                                                                                                      EE states while opening and inspecting mail he experience chest pain and shortness of breath.
## 40727                                                                                                                 EE states while opening back door to the recreation yard she slipped in the floor stripper that had been spread on the floor and her feet shot out
## 40728                                                                                                                                                                                          EE states while opening cell door she felt a pull in her lt hand/arm area
## 40729                                                                                                                                                                                                      EE states while opening cell door she twisted her lower back.
## 40730                                                                                                                                                         EE states while opening doors during insp., pulled sallyport door w/left arm & felt sharp pains in l. Arm.
## 40731                                                                                                                                                                                      EE states while opening first aid metal box she cut her lt forearm on the lid
## 40732                                                                                                                                                               EE states while opening gymdoor hourly for inmatesdoor was jamming & chest bone began to get spasms.
## 40733                                                                                                                                                                                 EE states while opening incoming mail she felt something sharp prick her lt finger
## 40734                                                                                                                                                                EE states while opening inmate cell the inmate rushed out and cut EE on the neck with a razor blade
## 40735                                                                                              EE states while opening med drawer to count narcotics she opened med drawer when it hit the back of the cart and felt like dust or unknown object went into rt eye ()
## 40736                                                                                                                                         EE states while opening officer station door, using left arm he felt a pop then a burning with pain in left shoulder area.
## 40737                                                                                                                                                          EE states while opening side door of van he misseda step and fell on rt side injuring rt knee and rt hand
## 40738                                                                                                                                                                                      EE states while opening the bar gate her rt fingerwas caught between the gate
## 40739                                                                                                                                                                                                  EE states while opening the door her head struck a metal cabinet.
## 40740                                                                                                                                                         EE states while opening the door of a control panel she received an electrical shock on her arms and hand.
## 40741                                                                                                                                                                 EE states while opening the door to a passenger van the door struck her on the lt side of the head
## 40742                                                                                                                                          EE states while opening the drawer on the file cabinet the edge of the drawer cut her knuckle on little finger on rt hand
## 40743                                                                                                                                                         EE states while opening the front gate for construction one of the inmates accidently ran over her rt foot
## 40744                                                                                                                                                                                            EE states while opening the gate her lt thumb was caught in the handle.
## 40745                                                                                                                                               EE states while opening the gate to let a vehicle go thru the gate handle slipped out of EE hand striking his rt arm
## 40746                                                                                                                                         EE states while opening the key draw to get out handcuffs another officer close draw causing contusion to rt pinky finger.
## 40747                                                                                                                                                                                               EE states while opening the sercuity door he injured his lt shoulder
## 40748                                                                                                                                                                           EE states while opening trap doors for cell clean up, EE felt severe pain in her rt hand
## 40749                                                                                                              EE states while operating a forklift the battery connector came off causing him to lose control of steering pinning his leg between the lift and rack
## 40750                                                                                                                                                                                           EE states while operating a gasoline tank he pulled a muscle in his back
## 40751                                                                                                                                                                                                 EE states while operating a grinder something got into his rt eye.
## 40752                                                                                                                                                                                                     EE states while operating a jack hammer he injuredhis shoulder
## 40753                                                                                                                                                                                EE states while operating a john deere mower a piece of debris flew into his lt eye
## 40754                                                                                                                                                                                      EE states while operating a machine he was stung by swarm of bees on the face
## 40755                                                                                                                                                                                  EE states while operating a mixer the top of the mixer struck her on the rt hand.
## 40756                                                                                                                              EE states while operating a motor boat during a search and rescue operations the flood water were splashed causing a rash to develope
## 40757                                                                                                                                                                               EE states while operating a pallet jack the palletcompressed rt foot against trailer
## 40758                                                                                                                                 EE states while operating a tractor under a tree the roll bar caught a limb and it came loose and struck EE in the lt eye and face
## 40759                                                                                                                                                                                           EE states while operating equipment some debris got lodged in his rt eye
## 40760                                                                                                                                                                        EE states while operating forklift unloading concrete he notice pain in his lower back area
## 40761                                                                                                                                                                         EE states while operating heavy control equipment he stepped over a log twisting his ankle
## 40762                                                                                                                               EE states while operating the master control she struck her rt hand against the door causing a laceration between 3rd and 4th finger
## 40763                                                                                                                                                                                   EE states while packing a box for shipment she cuther rt thumb on a broken glass
## 40764                                                                                                                        EE states while packing a crate and assisting another EE to remove bolts used to secure the crates EE lost his balance injuring his rt knee
## 40765                                                                                                                                                                EE states while painting a thaw-out cooler the fumes from the paint has caused respiratory problems
## 40766                                                                                                                                            EE states while parking her car and coming back into the bldg she hit her curb and has small hairline fracture to ankle
## 40767                                                                                                                                                                           EE states while participating donning scott airpack when he felt pain in his lower back.
## 40768                                                                                                                                                                      EE states while participating in a defense training course he strained his rt thigh(hamstring
## 40769                                                                                                                                                    EE states while participating in a fire drill she became extremely hot and began to fell dizzy and light-headed
## 40770                                                                                                                                                                 EE states while participating in a fire training EE strain his lower back seasonal EE.. 2nd season
## 40771                                                                                                                                                        EE states while participating in a firearm recertification class she started having pain of the rt shoulder
## 40772                                                                                                                                                                   EE states while participating in a lethal defensivtraining course he felt numbness in his rt arm
## 40773                                                                                                                                                              EE states while participating in a practice on cell extraction he struck his head on a wooden cabinet
## 40774                                                                                                                                                                   EE states while participating in a rope training technique he pulled a muscle in his rt shoulder
## 40775                                                                                                                                                                      EE states while participating in a self denfense training course he landed on his rt shoulder
## 40776                                                                                                                                                                                 EE states while participating in a softball game the ball struck him on the lt leg
## 40777                                                                                                                                                                                   EE states while participating in a training course a window fell on his lt wrist
## 40778                                                                                                                                                          EE states while participating in a training course and using a flashlight pressure was appliedto rt wrist
## 40779                                                                                                                                                              EE states while participating in a training coursehe experience sharp pain in his lower rt groin area
## 40780                                                                                                                                                                                            EE states while participating in a training coursehe injured his rt ear
## 40781                                                                                                                                               EE states while participating in a training on cell extraction the handcuffs were placed tightly on the his lt wrist
## 40782                                                                                                                                                EE states while participating in an unarm self defense training technique he pulled a muscle in his lt arm/shoulder
## 40783                                                                                                                                                                        EE states while participating in an unarmed defense training she injured his rt wrist/elbow
## 40784                                                                                                                                                                       EE states while participating in an unarmed self defense course he fell injuring his lt knee
## 40785                                                                                                                                                        EE states while participating in an unarmed self defense training course he started having pain in his back
## 40786                                                                                                                                                                  EE states while participating in an unarmed self defense training course his lt elbow was injured
## 40787                                                                                                                                                               EE states while participating in an unarmed self defense training course she injured her rt shoulder
## 40788                                                                                                                  EE states while participating in an unarmed self defense training during a wrist technique he felt a pop and burning sensation of his rt shoulder
## 40789                                                                                                                                                                      EE states while participating in an unarmed self defense training his rt shoulder was injured
## 40790                                                                                                                                                                 EE states while participating in an unarmed self denfense training course his rt wrist was injured
## 40791                                                                                                                                                                                  EE states while participating in an unarmed self-defense she injured her rt knee.
## 40792                                                                                                                                                    EE states while participating in self defense training he fell to the floor causing injuring to his rt shoulder
## 40793                                                                                                                                                                 EE states while participating in stretching exercises she felt a sharp pain in her lower back area
## 40794                                                                                                                          EE states while participating in training his partner pinned him on the ground applying pressurecausing injury to the neck and back area.
## 40795                                                                                                                                                                                EE states while participating in unarmed self denfense training he injured his back
## 40796                                                                                                                                                                                                      EE states while particpating in activity became light headed.
## 40797                                                                                                                                                                                                      EE states while pasing out medication she slipped in water ()
## 40798                                                                                                                                            EE states while passing a razor thru a trap door to an inmate the inmate touched and put some semenon EE rt hand/finger
## 40799                                                                                                                                                                    EE states while passing by a cell an inmate threw a cup which contain human waste into his face
## 40800                                                                                                                                                           EE states while passing medication thru door to give to inmate she closed the door on her lt indexfinger
## 40801                                                                                                                                                                 EE states while passing object thru trapped door the lid closed on her rt hand injuring her finger
## 40802                                                                                                                                                           EE states while passing out medication to inmates one on the inmate threw some unknown substances at her
## 40803                                                                                                                                                                                       EE states while passing out trays, an inmate pusheda food cart into his leg.
## 40804                                                                                                                EE states while patroling dorm, he turned to come back through his right knee made a popping sound. The EE stated he felt sharp pain in right knee.
## 40805                                                                                                                                  EE states while patroling on central yard tripped on uneven pavement.. Inj to lt/rt wrists, rt & lt knee abrasions, rt hip sore..
## 40806                                                                                                                           EE states while patroling the area two inmates wasfighting and when tried to restrain inmates from fighting he injured his lt lower leg.
## 40807                                                                                                                                EE states while patroling the north yard he was struck on the back of his right leg by a rock which had been thrown lower right leg
## 40808                                                                                                                                                              EE states while patrolling a unit he inhaled some paint fumes causing breathing problems and headache
## 40809                                                                                                                                                                                               EE states while patrolling dorms an inmate assault him with his fist
## 40810                                                                                                                                                                                 EE states while patrolling her area during yard duty something got into her lt eye
## 40811                                                                                                                                                                                    EE states while patrolling the dorm she noticed both of her ankles were swollen
## 40812                                                                                                                                                                        EE states while patrolling the dorms he struck hisrt hand against the corner of a bed frame
## 40813                                                                                                                                                                                           EE states while patrolling the dorms he was stung by a bee on the lt arm
## 40814                                                                                                                                                      EE states while patrolling the dorms recreation yards he was struck in the back of the neck with a basketball
## 40815                                                                                                                               EE states while patrolling the yard he felt as if something was crawling in his lt ear and when he touched his ear it began to bleed
## 40816                                                                                                                                                                            EE states while patrolling the yard looking for aninmate an insect flew into his rt eye
## 40817                                                                                                                                     EE states while patrolling yard 3 near drainage, she tripped in drainage ditch. Which runs to the left of the basketball court
## 40818                                                                                                                                              EE states while peforming routine home visit at defendant home she stepped into a hole and fell twisting her lt ankle
## 40819                                          EE states while performing a 3 person lift on client; I was in the middle and we were moving her from bed to wheelchair. When we placed client in the wheelchair; EE's left wrist got twisted under client's buttocks. ()
## 40820                                                                                                                         EE states while performing a handcuff technique she was assisting her partner to a standing position when she felt a strain of her lt knee
## 40821                                                                                                                                                          EE states while performing a pic technique on a kid, was kicked during the process. Contusion to rt knee.
## 40822                                                                                                                                                         EE states while performing a sercuity check on fire door he pushed on the door and injured his lt shoulder
## 40823                                                                                                                                                                                        EE states while performing a survey she was bittenby a tick on the rt thigh
## 40824                                                                                                                                                                        EE states while performing a training technique during training she injured her rt shoulder
## 40825                                                                                                                         EE states while performing an inspection the slopewas covered with ice causing EE to lose his balance and fall injurying wrist, back, neck
## 40826                                                                                                                                                                 EE states while performing arrest techniques during a training class his lt hand/wrist was injured
## 40827                                                                                                                                                                                   EE states while performing cpr for recertificationshe strained her left shoulder
## 40828                                                                                                                                                                                          EE states while performing daily clinical task she injured her lower back
## 40829                                                                                                                                                                                       EE states while performing exercises with traineeshe felt pain in his rt leg
## 40830                                                                                                                                                                    EE states while performing his normal duties at work some particle of steel got into his lt eye
## 40831                                                                                                                                                                             EE states while performing job duties lt hand wrist fingers swells and causes numbness
## 40832                                                                                                                                                              EE states while performing job duties she began to have discomfort and pain radiating up her lt elbow
## 40833                                                                                                                                                                                                            EE states while performing job duties she notice a rash
## 40834                                                                                                                                                                                           EE states while performing job duties some form of liquid came from roof
## 40835                                                                                                                                                     EE states while performing job related task he injured his rt and lt leg/foot pa: j william synder (withdrawn)
## 40836                                                                                                                                                                        EE states while performing nursing duties, hands on hand care, came in contact with scabies
## 40837                                                                                                                                                                             EE states while performing routine mainteance he was bitten on both arms (left&right).
## 40838                                                                                                                                                       EE states while performing security checks of doors he stepped away from the door heard a pop in his lt knee
## 40839                                                                                                         EE states while performing self defense, hip throw, partner lost balance and fell on top of him. Lft rib area w/slight tenderness. No deformity/discolortn
## 40840                                                                                                                                                                                  EE states while performing surgery he was cut by a knife on the middle rt finger.
## 40841                                                                                                                                                                        EE states while picking up a box to move closer to her desk she felt pain in her lower back
## 40842                                                                                                                                                                        EE states while picking up a box with trash bags she felt a sharp pain in rt arm and elbow.
## 40843                                                                                                                                                                                          EE states while picking up a mail basket from ground she injured her back
## 40844                                                                                                                                                      EE states while picking up a newspaper he tripped over something in the grass and injured his lower back area
## 40845                                                                                                                                                              EE states while picking up brass casing from the ground he turned the wrong way and twisted his neck.
## 40846                                                                                                                                                                                 EE states while picking up dinner trays an inmate threw some unknown liquid at him
## 40847                                                                                                                                                                       EE states while picking up food tray he pulled a muscle in lower back down to rt groin arear
## 40848                                                                                                                                                            EE states while picking up food trays an inmate threw urine from the cell and struck him in the rt eye.
## 40849                                                                                                                                                                       EE states while picking up some paper that was dropped on the floor he felt pain in his back
## 40850                                                                                                                                                            EE states while picking up trash on interstate 26 his lt foot slipped on pavement twisting his lt knee.
## 40851                                                                                                                                                      EE states while picking up trays an inmate threw a cup of liquid at him striking him in the face and eye area
## 40852                                                                                                                                                                            EE states while placing a bowl into the sink some hot water splashed on his rt forearm.
## 40853                                                                                                                                                                                                EE states while placing a in a box he finger was caught in the box.
## 40854                                                                                                                                EE states while placing a new fire extingusher into a bracket the fire extingusher discharged causing EE to have breathing problems
## 40855                                                                                                                                                                                             EE states while placing a subject under arrest he was exposed to blood
## 40856                                                                                                                                                              EE states while placing a used needle in a container she was punctured by the needle on the lt finger
## 40857                                                                                                                                                                              EE states while placing a water cooler in a van he accidently cut his rt index finger
## 40858                                                                                                                                                                          EE states while placing an aggressive client in a theraputic hold he injured his rt knee.
## 40859                                                                                                                                                                                               EE states while placing an inmate in cell the inmate spitted on him.
## 40860                                                                                                                                                                                       EE states while placing an inmate in handcuffs his rt hand finger was caught
## 40861                                                                                                               EE states while placing an inmate that was restrai-ned behind his back into a bag cell when inmate smashed his fingers on his rt hand and bent them.
## 40862                                                                                                                                                    EE states while placing an item in control box she slipped and fell down some steps injurying herrt and lt leg.
## 40863                                                                                                                                                                                       EE states while placing an item underneath a cart he injured his lower back.
## 40864                                                                                                                                                                                                         EE states while placing bags in cooler he injured his back
## 40865                                                                                                                                                                       EE states while placing dental instrument in autoclave he was struck in the rt index finger.
## 40866                                                                                                                                                                                EE states while placing equipment in storage box the door shut on his lt hand thumb
## 40867                                                                                                                                                                EE states while placing his hand on a window steelhe cut his finger on the rt hand on a razor blade
## 40868                                                                                                                                                                                                       EE states while placing inmate in his cell inmate kicked him
## 40869                                                                                                                                                                                                   EE states while placing inmate in his cell the inmate kicked him
## 40870                                                                                                                                                                                                 EE states while placing inmate in shower the inmate spitted on him
## 40871                                                                                                                                                                                         EE states while placing mail into van his rt hand struck the metal divider
## 40872                                                                                                                                           EE states while placing needle into a sharpe container his glove was caught causing the needle to puncture his rt finger
## 40873                                                                                                                                                                                  EE states while placing patient under dryer nad hit foot on the leg of the chair,
## 40874                                                                                                                                                                      EE states while placing pt in pic hold EE injured his hands, shoulder, elbow, back, and neck.
## 40875                                                                                                                                                             EE states while placing road signs on the side of highway he stepped into a hole injuring his lt knee.
## 40876                                                                                                                                                                           EE states while placing spices on spice rack he cut his finger on the bottom of the rack
## 40877                                                                                                                                                    EE states while placing stretchers back in the ambulance she twisted the wrong way and injured her lt shoulder.
## 40878                                                                                                                                                                        EE states while placing the fire extinguisher in vehicle her lt finger was cut on the metal
## 40879                                                                                                                                                                                 EE states while playing ball with clients she slipped and injured her lt shoulder.
## 40880                                                                                                                                                                        EE states while playing ball with students he slipon the gym floor and twisted his lt knee.
## 40881                                                                                                                                                                                              EE states while playing basketball he injured both his lt and rt knee
## 40882                                                                                                                      EE states while playing basketball he injured his archilles tendon rt leg. He was not performing any normal duties at the time of his injury.
## 40883                                                                                                                                                                                                          EE states while playing basketball he injured his lt leg.
## 40884                                                                                                                                                                                           EE states while playing basketball he jumped and landed on his lt ankle.
## 40885                                                                                                                                                                                   EE states while playing basketball he ran down the court and twisted his lt knee
## 40886                                                                                                                                                                                               EE states while playing basketball in the gym he injured his lt knee
## 40887                                                                                                                                                                                                            EE states while playing basketball she injured herankle
## 40888                                                                                                                                                                        EE states while playing basketball w/male patientsduring open recreation, twisted lt ankle.
## 40889                                                                                                                                                                           EE states while playing basketball with clients he felt a sharp pain in the lt shoulder.
## 40890                                                                                                                                                                EE states while playing basketball with clients he stepped on someone foot and twisted his lt ankle
## 40891                                                                                                                                                                          EE states while playing basketball with clients the basketball struck EE on the rt thumb.
## 40892                                                                                                                                                                     EE states while playing basketball with inmates he fell down on the floor and injured his back
## 40893                                                                                                                                                                               EE states while playing basketball with inmates he jumped and landed on his lt foot.
## 40894                                                                                                                                                                          EE states while playing basketball with patients aparent accidently kicked EE in the leg.
## 40895                                                                                                                                                            EE states while playing basketball with pt the pt accidently tripped EE causing injury to the lt ankle.
## 40896                                                                                                                                       EE states while playing dodge ball as a warm up exercise in wrestling camp, he twisted left knee ** EE work# 336-334-5050 **
## 40897                                                                                                           EE states while playing football with some of the residents. The football bounced, hit EE in lt eye, eegot pushed students stepped on rt ankle, big toe.
## 40898                                                                                                                                                                                               EE states while playing softball she slipped and fell while running.
## 40899                                                                                                                                                                       EE states while playing softball with inmates a ball was thrown striking EE above his lt eye
## 40900                                                                                                                                                                                         EE states while playing softball with student she pull a muscle in her leg
## 40901                                                                                                                                                                                                         EE states while playing volleyball she twisted herrt ankle
## 40902                                                                                                                                                                                                 EE states while playing volleyball with pt he twisted his rt ankle
## 40903                                                                                                                                     EE states while playing volleyball with students she slipped and fell into hole that was in the ground injurying her rt ankle.
## 40904                                                                                                                                                                                                        EE states while policing stepped in mud slipped and fell ()
## 40905                                                                                                                                                                                  EE states while positioning a patient for transfera sharp pain hit in lower back.
## 40906                                                                                                                                                                                              EE states while positioning a pt in bed she felt pain her lower back.
## 40907                                                                                                                                                                            EE states while pouring contaminated water into a drain the water splashed into her eye
## 40908                                                                                                                                                  EE states while pouring hot water from a bucket tofloor some of the hot water entered EE shoe and burned his foot
## 40909                                                                                                                          EE states while preparing food cart she slipped on wet floor and while trying to keep herself fromfalling she strained her abdominal area
## 40910                                                                                                                                                                 EE states while preparing food with a knife the knife slipped causing a small cut at the rt thumb.
## 40911                                                                                                                                                                EE states while preparing for recertification training a bee landed on her rt forearm and stung her
## 40912                                                                                                                                                    EE states while preparing instrument to be cleaneda cap slipped off a needle and punctured EE fingeron lt hand.
## 40913                                                                                                                                                                      EE states while preparing lunch he tried to lift a pan of soup when he felt pain in his back.
## 40914                                                                                                                                                                         EE states while preparing table fundraiser, the end of table collasped & fell on her foot.
## 40915                                                                                                                                   EE states while preparing timber piling for dock foundation EE was assisting lifting the pile when he felt a pull in his abdomen
## 40916                                                                                                                                                              EE states while preparing to register visitor she slid up the window and her rt hand finger got stuck
## 40917                                                                                                                                EE states while preparing to transport inmate in the wheel chair he was preparing safety straps whenwheelchair started to tilt back
## 40918                                                                                                                   EE states while pressing the call button to exit kitchen she felt tingling on right side of body. Info based on EE information. Electrical shock
## 40919                                                                                                                            EE states while pressure washing floors in an enclosed room the loud noise for the machine has caused loss of hearing and head ringing.
## 40920                                                                                                                                          EE states while proceeding to move into traffic a man riding a bike pulled out in front of him striking the state vehicle
## 40921                                                                                                                                                    EE states while providing sercuity he passed out in the operating room striking his head on a fire extinguisher
## 40922                                                                                                                                                                           EE states while providing sercurity in heavily wooded area she was exposed to poison ivy
## 40923                                                                                                                                              EE states while pulling a bugging of clothing he slipped and fell on ice striking his rt elbow and shoulder on ground
## 40924                                                                                                                                                                                    EE states while pulling a cart from a room she struck her lt elbow on the door.
## 40925                                                                                                                                                                                    EE states while pulling a cart his hand was caughtbetween the cart and the wall
## 40926                                                                                                                                                            EE states while pulling a cart of soads to a loading dock--she felt pain in the center part of her back
## 40927                                                                                                                                                                EE states while pulling a cart of weights the carttipped causing the weights to fall on EE lt foot.
## 40928                                                                                                                                                                 EE states while pulling a cart thru a doorway she struck her lt hand between the cart and the door
## 40929                                                                                                                                                                           EE states while pulling a door close she felt something pop on her rt side/abdomen area.
## 40930                                                                                                                                                                                                EE states while pulling a door his rt thumb was slammed in the door
## 40931                                                                                                                                                                                  EE states while pulling a door to close he pulled a muscle in his abdominal area.
## 40932                                                                                                                        EE states while pulling a fire hose up a steep hill the hose slipped causing EE hand to be jerkedbackward causing injury to his lower back.
## 40933                                                                                                                                                                                             EE states while pulling a food cart from a wall heinjured his rt wrist
## 40934                                                                                                                                                                                              EE states while pulling a food cart he felt a painin his lt shoulder.
## 40935                                                                                                                                                                                                EE states while pulling a food cart the cart ran over her lt ankle.
## 40936                                                                                                                                                                                        EE states while pulling a hand cart up steps he pulled a muscle in his back
## 40937                                                                                                                                                                                          EE states while pulling a linen cart he injured his neck and lt shoulder.
## 40938                                                                                                                                                                                EE states while pulling a padlock his lt index finger was cut on a piece of plastic
## 40939                                                                                                                                         EE states while pulling a stool backwards and mailbag slipped off shoulder hitting the stool and thestool hit EE lft foot.
## 40940                                                                                                                                                                                       EE states while pulling a wire fence to stop a fire he strain his lower back
## 40941                                                                                                                                                        EE states while pulling an a/c unit from a window the top window fell cutting his ring finger on hislt hand
## 40942                                                                                                                                                                                                   EE states while pulling boat he pulled something his rt shoulder
## 40943                                                                                                                                                                      EE states while pulling cable behind a tractor he strained his hamstring muscle of his lt leg
## 40944                                                                                                                                                      EE states while pulling drawer out to make copies of some paperwork the corner of the drawer hit EE lt ffoot.
## 40945                                                                                                                                                               EE states while pulling fence wire chain broke andfence wire and pipe struck EE on the right forearm
## 40946                                                                                                                                                                                                     EE states while pulling food cart the cart ran across rt foot.
## 40947                                                                                                                                                                                                    EE states while pulling food cart the cart rolled onto lt heel.
## 40948                                                                                                                                                                                        EE states while pulling food cart the cart swung and struck EE on the heel.
## 40949                                                                                                                                                                                         EE states while pulling food carts mat have pulled a muscle in hte lt arm.
## 40950                                                                                                                                                                                               EE states while pulling freight elevator she injured her lt shoulder
## 40951                                                                                                                                                                                    EE states while pulling himself up a rock wall his injured his rt third finger.
## 40952                                                                                                                                 EE states while pulling himself up on a cord to a loading dock the cord broke causing EE to fall backward and injure his back/head
## 40953                                                                                                                                                            EE states while pulling himself up the back of a truck to unload debris he felt a sharp pain in hisback
## 40954                                                                                                                                                          EE states while pulling jugs of bleach from a shelf one jug slipped from his hand and struck his rt foot.
## 40955                                                                                                                                                                             EE states while pulling linen out the linen cart she felt a pulled muscle in her back.
## 40956                                                                                                              EE states while pulling medication from orignal package EE felt rt wrist pop, developed rt carpal tunnel syndrome. 5% hand =3861. 40/ form 18 filed**
## 40957                                                                                                                                                                         EE states while pulling or lifing a trash out of building he felt a sharp pain in his back
## 40958                                                                                                                                                                   EE states while pulling patient in chair-continuously-aggravated shoulder **work # - 575- 7928**
## 40959                                                                                                                                                            EE states while pulling records and carrying them to the nursing station she heard a pop in her rt arm.
## 40960                                                                                                                                  EE states while pulling the juice cart in segrega-ion, the front wheel locked up, the juice cart fell and he heard his rt arm pop
## 40961                                                                                                                           EE states while pulling the med cart with rt hand and holding the door open with left hand she began to feel pain on her rt. Shoulder ()
## 40962                                                                                                                                                                        EE states while pulling the rope to crank lawn mower he felt a sharp pain in his lower back
## 40963                                                                                                                                                                                            EE states while pulling transformer he felt pain in neck and back area.
## 40964                                                                                                                                                                                                     EE states while pulling trash she injured her lower back area.
## 40965                                                                                                                                                                                                           EE states while pulling up fence post strained his back.
## 40966                                                                                                                      EE states while pumping gas she walked around vehicle and slipped on the pavement and while trying to keep from falling she hurt her shoulder
## 40967                                                                                                                                  EE states while purchasing a window for the correction ctr EE lifted the window off shelf in the store and felt a pop in rt elbow
## 40968                                                                                                                                                                EE states while pushing a cart from the doorway ofthe loading dock he struck his rt leg on the ramp
## 40969                                                                                                                                                                                                 EE states while pushing a cart he felt pain in hislower back area.
## 40970                                                                                                                                                                        EE states while pushing a cart she slipped and fell on a piece of tape twisting her rt knee
## 40971                                                                                                                                                  EE states while pushing a cart some unknown solution got on his hand and when he rubbed his eye it began to burn.
## 40972                                                                                                                                      EE states while pushing a cart through a doorway the cart slammed into the door causing her lt thumb to be caught in the door
## 40973                                                                                                                                                                                          EE states while pushing a cooler door the door struck her rt toe/rt thumb
## 40974                                                                                                                    EE states while pushing a disable vehicle from theroadway she tried to closed the trunk when her rt finger became trapped underneath the trunk.
## 40975                                                                                                                                                                                             EE states while pushing a door he felt a sharp pain in his lower back.
## 40976                                                                                                                                                                                                         EE states while pushing a door she felt a pain in her back
## 40977                                                                                                                                                                                             EE states while pushing a door to open she felt pain in low back area.
## 40978                                                                                                                                                                                          EE states while pushing a food cart her rt toe was caught under the wheel
## 40979                                                                                                                                                 EE states while pushing a food cart the coffee potcontainer flipped off the cart striking his head and lt shoulder
## 40980                                                                                                                                                               EE states while pushing a medical cart a door struck her rt hand. Roc; appt 11/10/98; oow until then
## 40981                                                                                                                                                                                    EE states while pushing a pt in a wheelchair she injured her coccyx and lt leg.
## 40982                                                                                                                                                                           EE states while pushing a stretcher thru doorway the stretcher wheel ran over EE rt foot
## 40983                                                                                                                                                                                           EE states while pushing a tailgate out of dump truck he injured his back
## 40984                                                                                                                EE states while pushing a transfer chart of chairsthrough doorway, wheel stuck causing her to use more force, felt pinch/stinging in upper rt shldr
## 40985                                                                                                                                                                         EE states while pushing a van lift the lift swung back striking EE on the rt shoulder/arm.
## 40986                                                                                                                                                    EE states while pushing a wheel chair the elevatordoor closed on her striking her on the neck and shoulder area
## 40987                                                                                                                                                                                         EE states while pushing a wheelchair she injured her lt shoulder and neck.
## 40988                                                                                                             EE states while pushing an office chair from desk the wheel locked up causing chair to flip out fromunder him falling backward striking head on cabine
## 40989                                                                                                                                                                  EE states while pushing cart containing books his lt leg/thigh struck the metal rod causing a cut
## 40990                                                                                                                                                                                                          EE states while pushing food carts she injured herrt arm.
## 40991                                                                                                                                                 EE states while pushing grill back in position it came off it stand causing it to fall striking EE on the rt wrist
## 40992                                                                                                                               EE states while pushing toilet chair her hand was caught behind chair, client pushed back her hand was caught on metal bar on toilet
## 40993                                                                                                                                                 EE states while pushing trash compactor to the end of the sidewalk to be picked up, he felt pain in lower back. ()
## 40994                                                                                                                                                                                                          EE states while pushing trash her finger struck a needle.
## 40995                                                                                                                                                                                                         EE states while pushing tray court she injured herrt ankle
## 40996                                                                                                              EE states while putting a cow in head lock the cowchanged direction and struck EE knocking him off his feet on to the concrete--injuring rt shoulder.
## 40997                                                                                                                                                               EE states while putting a load of dirty clothes ina basket his lt foot got caught between two pallet
## 40998                                                                                                                                                                              EE states while putting a patient in the quiet room the patiient scraped EE rt thumb.
## 40999                                                                                                                                                                                    EE states while putting a table top on a wheelchair she punctured her rt thumb.
## 41000                                                                                                                                                                               EE states while putting a tire back on a truck he pulled a muscle in his lower back.
## 41001                                                                                                                                                                                           EE states while putting a tire on a tractor the tire struck his lt foot.
## 41002                                                                                                                     EE states while putting clothes client began to move back and forth and finish dressing client; right third finger began to ache and swell. ()
## 41003                                                                                                                                                                                          EE states while putting in fire lines he came in contact with poison ivy.
## 41004                                                                                                                                                            EE states while putting inmate in shower after a use of force inmate spit in face hitting him in rt eye
## 41005                                                                                                                                                                                               EE states while putting linen in bath hamper she twisted her lt leg.
## 41006                                                                                                                                                                      EE states while putting materials in the drawer ofcontrol room the door fell on her lt finger
## 41007                                                                                                                                                                          EE states while putting mop in mop bucket mop handle hit lt side of her face and glasses.
## 41008                                                                                                                   EE states while putting on his shoe he placed his hand at the bottom of shoe a razor was sticking out causing EE to cut the palm of his rt hand.
## 41009                                                                                                                                EE states while putting shoes away in the bedroom EE slipped on plastic clothes hanger EE fell to onlt knee causing her to a split.
## 41010                                                                                                                                          EE states while putting up supplies, he had his back to forklift; forklift backed up hitting EE's right leg calf area. ()
## 41011                                                                                                                                                                                EE states while putting up working signs for the inmates he injured his lower back.
## 41012                                                                                                                                                                       EE states while putting waist chain on inmate, his hand was caught in the crap of cell door.
## 41013                                                                                                                                          EE states while qualifying with pistol on firing range, rt. Index finger popped; continued use caused swelling & bruising
## 41014                                                                                                                                                 EE states while raising a belt to clean under it the switch was not off causing laceration to her lt index finger.
## 41015                                                                                                                                                                                          EE states while raising a trap door the door fell striking EE on the head
## 41016                                                                                                                                                                                  EE states while raising from an office chair he felt a catch in his mid back area
## 41017                                                                                                                                           EE states while raising her rt arm to push the master control to open a gate her rt thumb and finger was cut on the wire
## 41018                                                                                                                                                   EE states while raising the hood on the transfer bus he felt his arm pop--this has aggravated an existing injury
## 41019                                                                                                                                                                                                         EE states while raising up a window she jammed herrt thumb
## 41020                                                                                                                                                                 EE states while reaching back in a chair to open a cabinet the chair gave away causing back injury
## 41021                                                                                                                                                                              EE states while reaching back into the vehicle he felt a sharp pain in his lower back
## 41022                                                                                                                                                                             EE states while reaching behind refrigerator to unplug his cut his knuckle on lt hand.
## 41023                                                                                                                                                                    EE states while reaching down to anchor a wheelchair she felt pain in her lt shoulder and neck.
## 41024                                                                                                                                                      EE states while reaching for a water bottle she slid out of a chair onto the floor causing injury to her back
## 41025                                                                                                                                                                       EE states while reaching for an instrument he was punctured in the lt arm by a sharp object.
## 41026                                                                                                                                                                                                   EE states while reaching for door the door closed on his finger.
## 41027                                                                                                                                                                      EE states while reaching for files from the filing cabinet she strain her lt hamstring & knee
## 41028                                                                                                                                             EE states while reaching for some keys his foot slipped causing him to fall down a window sill injurying his rib cage.
## 41029                                                                                                                                                 EE states while reaching for some paper towels to dry her hand some liquid soap fell and splashed into her rt eye.
## 41030                                                                                                                                                                   EE states while reaching for something in the elevator the door of the elevator shut on her arm.
## 41031                                                                                                                                                                     EE states while reaching for the door knob she struck her rt finger on the corner of the door.
## 41032                                                                                                                                                                                                           EE states while reaching in the safe he cut his rt thumb
## 41033                                                                                                                                                                       EE states while reaching into a bag to retrieve a radio his lt hand was cut on a razor blade
## 41034                                                                                                                                                                      EE states while reaching into inmate personal property she cut her lt finger on a razor blade
## 41035                                                                                                                                                          EE states while reaching into the medication cart her lt hand struck a lancet pricking her in the lt palm
## 41036                                                                                                                                         EE states while reaching into tool cabinet to retreive a band saw he stood up striking his head on the lock of the cabinet
## 41037                                                                                                                                            EE states while reaching past an open door to retrieve a piece of paper from an inmate her hand was caught in the door.
## 41038                                                                                                                                                  EE states while reaching to get sliced meat from under the meat slicer he struck his lt small finger on the blade
## 41039                                                                                                                                                                                         EE states while reaching to paint windows he felt pain in lower back area.
## 41040                                                                                                                                                                    EE states while reaching to retrieve a pan from cabinet she felt a pull on the rt side of neck.
## 41041                                                                                                                                    EE states while reaching to retrieve something from a vehicle his lt foot slipped causing his rt knee to strike the floorboard.
## 41042                                                                                                                                                                                     EE states while reaching under a shelf to move a box she felt pain in her back
## 41043                                                                                                                                                                       EE states while reaching under to get a piece of paper from a desk he felt pain in his back.
## 41044                                                                                                                                                                        EE states while reaching up from a bunkbed she felt something pull in her back and hip area
## 41045                                                                                                                                                                              EE states while reading resident records the edge of paper brushed against his rt eye
## 41046                                                                                                                                  EE states while readjusting the tire machine his foot hit the air valve causing the breaker to fallstriking his rt middle finger.
## 41047                                                                                                                                          EE states while rearranging files in folders she pulled out a file and struck her rt eye on the corner of the file jacket
## 41048                                                                                                                                                                           EE states while receiving a TB shot she fainted and fell on the floor injuring her nose.
## 41049                                                                                                                                                  EE states while redirecting a resident back into unit the resident jerked away from her causing her wrist to pop.
## 41050                                                                                                                                                               EE states while redirecting client, the client hit her right middle finger and whelped right arm. ()
## 41051                                                                                                                    EE states while redirecting resident, the resident dropped to the floor, causing her to fall to the floor on her knees and palms of both hands.
## 41052                                                                                                                                                 EE states while refilling tank on helicopter he got some soap on his hand and rubbed his lt eye causing irritation
## 41053                                                                                                                                                           EE states while regaining control of two inmates fighting EE was exposed to blood on both hands and arms
## 41054                                                                                                                                              EE states while regaining control of two inmates fighting EE was exposed to blood. Blood on both l and r hand and arm
## 41055                                                                                                                                             EE states while regaining control over two inmateswho appeared to have been in a fight EE was exposeto blood on l hand
## 41056                                                                                                                                                                          EE states while relining brakes on hauling unit he dropped the truck hub on his lt finger
## 41057                                                                                                                                                                                      EE states while relocating workstation, got sawdust in rt eye.. F18 filed. ..
## 41058                                                                                                                                                               EE states while removing a binder clips during a firearm training course his rt index finger was cut
## 41059                                                                                                                                                                                         EE states while removing a board he pulled a muscle in his lower back area
## 41060                                                                                                                                                                                     EE states while removing a bracket the pipe came down striking EE in the face.
## 41061                                                                                                                                                         EE states while removing a broken toilet seat fromthe hallway of the cottage to eliminate a safety hazard.
## 41062                                                                                                                                                                 EE states while removing a bundle of clothing she slipped and fell on floor causing rt knee injury
## 41063                                                                                                                                             EE states while removing a cart from elevator the door of elevator closed striking the lt side of face and chest area.
## 41064                                                                                                                                                    EE states while removing a computer desk off a file cabinet the desk broke striking EE on the lt middle finger.
## 41065                                                                                                                             EE states while removing a cover from a fan he encountered a wasp nest and while trying to escapefrom the wasp he twisted his lt ankle
## 41066                                                                                                                                                             EE states while removing a flat tire from a stranded motorist car he felt sharp pain in his lower back
## 41067                                                                                                                                                                                                    EE states while removing a ice chest he injured his lt shoulder
## 41068                                                                                                                                                                                         EE states while removing a inmate from the cell he injured his groin area.
## 41069                                                                                                                                                                                 EE states while removing a manhole cover he felt pain in his groin area lt groin..
## 41070                                                                                                                                                                                 EE states while removing a metal rod from a file cabinet she twisted her rt wrist.
## 41071                                                                                                                                                                                                              EE states while removing a motor he cut his lt finger
## 41072                                                                                                                                                            EE states while removing a piece of flat bar from drill press his rt hand glove was caught in the drill
## 41073                                                                                                                                                                          EE states while removing a potted cactus he recd a puncture wound to his rt index finger.
## 41074                                                                                                                                                                               EE states while removing a razor blade from the winsow sill EE was cut on the thumb.
## 41075                                                                                                                                                                                               EE states while removing a sheet of plywood his hand struck the nail
## 41076                                                                                                                                                                              EE states while removing a spring from a chair it slipped cutting EE on the lt thumb.
## 41077                                                                                                                                                               EE states while removing an inmate from cell his finger was caught between the steel door and track.
## 41078                                                                                                                                                       EE states while removing an object from a box witha slide lid the lid fell on her rt hand injuring her thumb
## 41079                                                                                                                                              EE states while removing and replacing a panel from a cabinet his body turned the wrong way causing a shoulder injury
## 41080                                                                                                                                                                                EE states while removing bags from cart she felt pain in her neck and shoulder area
## 41081                                                                                                                                                                                                  EE states while removing books from shelves she strained her back
## 41082                                                                                                              EE states while removing broken weights from the tip of a wall locker a weight began to fall as he caught the weight his fingers was cut on weld repa
## 41083                                                                                                                                          EE states while removing calloused tissue off inmate the inmate jumped causing the scapel to cutee on the lt index finger
## 41084                                                                                                                                                                             EE states while removing debris from dumpster he slipped and fell injuring his rt leg.
## 41085                                                                                                                                        EE states while removing equipment from a cart she put her hand down on cart when a thumb tack imbedded in the rt hand/palm
## 41086                                                                                                                                           EE states while removing food from microwave the hot liquid from the food spilled burning her on the left middle finger.
## 41087                                                                                                                                       EE states while removing handcuffs from an inmate his hand was pulled through the trap door strikingthe top of the trap door
## 41088                                                                                                                                       EE states while removing handcuffs from an inmate through the cell door the inmate jerked causing EE to injured his rt hand.
## 41089                                                                                                                                                                     EE states while removing handcuffs from inmate his lt hand was caught in between the handcuffs
## 41090                                                                                                                                                                             EE states while removing hospital bed from room a sharp pain occurred in my lower back
## 41091                                                                                                                                  EE states while removing inmate from a hanging position blood was splattered on his left cheek from the nose bleed of the inmate.
## 41092                                                                                                                                                            EE states while removing inmate records from plastic mail box he cut his lt hand finger on a metal clip
## 41093                                                                                                                                               EE states while removing legirone from an inmate his ankle was cut and bleeding and the blood got on EE's left thumb
## 41094                                                                                                                                                                EE states while removing lens cover from fixture some of the light bulb pieces got into his rt eye.
## 41095                                                                                                                                                              EE states while removing material from storage room-a he recd a nail puncture in the rt palm of hand.
## 41096                                                                                                                                                   EE states while removing metal to recycle bin the metal flange slippped from his hand cutting his lt hand finger
## 41097                                                                                                                                                                              EE states while removing money bag from unit he felt something pop in his upper back.
## 41098                                                                                                                                                                     EE states while removing ole light fixture from ceiling some of the debri fell into his lt eye
## 41099                                                                                                                                                 EE states while removing pan with food from the oven some hot water from the lid of pan spilled on his chest area.
## 41100                                                                                                                                                                         EE states while removing pt from bed to stretcher she struck her rt knee on the bed frame.
## 41101                                                                                                                              EE states while removing restraints from an inmatethrough the food port, inmate fell, catching EE's hand between inmate and cell door
## 41102                                                                                                                                                                                     EE states while removing rust from pump some of the debris got into his lt eye
## 41103                                                                                                                 EE states while removing some lugnuts off a boat tire, they were rusted on, causing her to use xtraforce in order to remove, strained her rt elbow
## 41104                                                                                                                                                                                  EE states while removing the axle from a tractor the axle struck him on the head.
## 41105                                                                                                                                                                             EE states while removing the dust cover from a fansome of the dust got into her rt eye
## 41106                                                                                                                                                                        EE states while removing the lancet from the lancet device the lancet puntured her rt thumb
## 41107                                                                                                                                                                      EE states while removing tree limbs from property one of the limbs struck him on the forehead
## 41108                                                                                                                                                                            EE states while repairing a broken glass on a doorsome of the glass got into her rt eye
## 41109                                                                                                                                                                      EE states while repairing a light fixture a splinter got embedded in his lt hand index finger
## 41110                                                                                                                                                                        EE states while repetitive motion from filing medical jackets has caused pain in the rt arm
## 41111                                                                                                                    EE states while replacing a baton onto a hook she let go of the thong before it hooked and the long extended end came down onto her top lt foot
## 41112                                                                                                                                                                    EE states while replacing fire extinguisher in vehicle she cut her lt finger on the metal ring.
## 41113                                                                                                                   EE states while replacing the toner in the copy machine the tray slipped causing her rt finger to be caught on the lever breaking her fingernail
## 41114                                                                                                                                                               EE states while reporting on duty, she walked intofront lobby and slipped on a slippery waxed floor.
## 41115                                                                                                                                                      EE states while reporting to work he slipped and fell on ice causing injury to his lt shoulder, headknee, etc
## 41116                                                                                                                                                           EE states while reporting to work he slipped and fell on ice in parking lot causing hip and thumb injury
## 41117                                                                                                                                                                                           EE states while repositioning a desk he felt something pop in his lt arm
## 41118                                                                                                                                                                                                       EE states while repositioning a patient EE injured lt wrist.
## 41119                                                                                                                                                                                        EE states while repositioning a resident in chair he felt his rt wrist pop.
## 41120                                                                                                                                                                                           EE states while repositioning an inmate he injuredhis shoulder and neck.
## 41121                                                                                                                                                     EE states while responding to a call as he was going thru a gate his finger was smashed between the gate door.
## 41122                                                                                                                                                                 EE states while responding to a call he slipped and felled on floor injurying his lt hand and leg.
## 41123                                                                                                                                                                                                        EE states while responding to a call he sprain his rt foot.
## 41124                                                                                                                                                                   EE states while responding to a call he tripped and fell over a tree stump and injured his back.
## 41125                                                                                                                                                                                                       EE states while responding to a call she injured her lt knee
## 41126                                                                                                                                        EE states while responding to a call while going out the door he was kicked on the lt leg from someone that was behind him.
## 41127                                                                                                                                                                             EE states while responding to a code 2, he was running to the yard and his knee popped
## 41128                                                                                                                                                                          EE states while responding to a code call he push open a door causing injury to this back
## 41129                                                                                                                                                       EE states while responding to a code call she slipped and fell on ice causing injury to her arm and shoulder
## 41130                                                                                                                                                                                                       EE states while responding to a code he injured his rt knee.
## 41131                                                                                                                                                                                  EE states while responding to a code he jumped over a rope and injured his rt leg
## 41132                                                                                                                                                                   EE states while responding to a code he slipped and fell down some stairs causing lt knee injury
## 41133                                                                                                                                                                          EE states while responding to a code he stepped off the sidewalk and injured his lt knee.
## 41134                                                                                                                                                                   EE states while responding to a code his foot slipped on ground causing him to twist his rt knee
## 41135                                                                                                                                                                                        EE states while responding to a code she injured her rt knee while running.
## 41136                                                                                                                 EE states while responding to a code she was goingdown some steps and stepped in an unusual manner causing her to strike her rt foot on the steps.
## 41137                                                                                                                                                EE states while responding to a code while he was going down some steps his foot slipped straining his lt shoulder.
## 41138                                                                                                                                                  EE states while responding to a combative juvenilethe juvenile stated wrestling w/the staff EE ribs were injured.
## 41139                                                                                                                EE states while responding to a cover call, which an inmate asssulted another officer, during the altercation the inmate bit EE on rt forearm, fell
## 41140                                                                                                                                                   EE states while responding to a disturbance call she struck her arm on the telephone unit injuring her lt finger
## 41141                                                                                                                                                                                             EE states while responding to a emergency code he injured his rt ankle
## 41142                                                                                                                                                                                  EE states while responding to a fight he slipped and fell injurying his rt wrist.
## 41143                                                                                                                                                                                          EE states while responding to a fight he slipped and injured his rt knee.
## 41144                                                                                                                                                     EE states while responding to a fight she tripped and fell at the door entrance causing injury to her rt knee.
## 41145                                                                                                                                                                          EE states while responding to a fight she tripped on the sidewalk and fell on her rt knee
## 41146                                                                                                                                                EE states while responding to a fire alarm she tripped on a tree root and fell causing an injurytto the rt shoulder
## 41147                                                                                                                                                                                            EE states while responding to a fire he inhaled a large amount of smoke
## 41148                                                                                                                                EE states while responding to a medical emergency he lifted a table from the exam room to the hall injuring his neck and chest area
## 41149                                                                                                                                                               EE states while responding to a use of force, a small dot sized area on left index finger was noted.
## 41150                                                                                                                                                                     EE states while responding to an altercation between inmates he felt pain in his rt thigh area
## 41151                                                                                                                    EE states while responding to an emergency call he slipped and fell on a wet floor injurying his lt finger when it was caught between the door.
## 41152                                                                                                                                         EE states while responding to an emergency call he stepped into a hole and twisted his foot pulling a muscle in his rt leg
## 41153                                                                                                                                                                              EE states while responding to an emergency call he struck his lt elbow on a door knob
## 41154                                                                                                                                                                  EE states while responding to an emergency she slipped and fell injuring her lt knee and lt elbow
## 41155                                                                                                                                                                                                EE states while responding to an emergency she twisted her rt knee.
## 41156                                                                                                                                                                  EE states while responding to assist with an inmate with medical attention he injured his lt knee
## 41157                                                                                                                                                                                    EE states while responding to the dart program he struck his lt elbow on a cage
## 41158                                                                                                                                                                                              EE states while restocking lacks, lifting boxes and injured right arm
## 41159                                                                                                                                                                                       EE states while restraing client bumped left hand and shoulder on something.
## 41160                                                                                                                                                                                                     EE states while restraining a client she suffered chest injury
## 41161                                                                                                                                                     EE states while restraining a patient and checking her pockets. Patients bit this wrier on the rightupper arm.
## 41162                                                                                                                                                                                     EE states while restraining a patient hurt hand scratched and hurt both knees.
## 41163                                                                                                                                                                                   EE states while restraining a patient the patient grabbed and twisted EE lt hand
## 41164                                                                                                                                                                                                EE states while restraining a pt he felt a pull of his lt shoulder.
## 41165                                                                                                                                                                                                          EE states while restraining a pt he injured his rt wrist.
## 41166                                                                                                                                                                      EE states while restraining a pt he was scratched on the lt index finger and back of lt hand.
## 41167                                                                                                                                                                                                EE states while restraining a pt the pt finger went into EE rt eye.
## 41168                                                                                                                                                                        EE states while restraining a pt the pt stepped onee foot causing EE to twist his rt ankle.
## 41169                                                                                                                                                                           EE states while restraining a pt the pt stepped onlt foot causing EE to twist his ankle.
## 41170                                                                                                                                                                                                    EE states while restraining a student he injured his lower back
## 41171                                                                                                                                                                                                   EE states while restraining a student he injured his lower back.
## 41172                                                                                                                                                                                             EE states while restraining a student he struck his lt hand on a door.
## 41173                                                                                                                                                                                                   EE states while restraining a student he was kick on the rt knee
## 41174                                                                                                                                                                EE states while restraining a student she struck her foot on an unknown object and it began to hurt
## 41175                                                                                                                                                                                           EE states while restraining an aggressive client she injured her lt arm.
## 41176                                                                                                                                                        EE states while restraining an aggressive inmate he received a scrape to his lt arm/hand from the handcuffs
## 41177                                                                                                                                                                           EE states while restraining an aggressive inmate he received stratches to his rt forearm
## 41178                                                                                                                                                                     EE states while restraining an aggressive inmate he slipped on wet floor striking his rt elbow
## 41179                                                                                                                                       EE states while restraining an aggressive inmate the inmate scratched him on the lt elbow and bruised his neck and lt thigh.
## 41180                                                                                                                                 EE states while restraining an aggressive inmate the inmate scratched him on the rt fingers and struck him on his upper back area.
## 41181                                                                                                                                                                                                  EE states while restraining an aggressive pt he injured his back.
## 41182                                                                                                                                                                                               EE states while restraining an aggressive pt he injured his lt knee.
## 41183                                                                                                                                                                                               EE states while restraining an aggressive pt he injured his rt hand.
## 41184                                                                                                                                                                                          EE states while restraining an aggressive pt she injured her lt shoulder.
## 41185                                                                                                                                                                                           EE states while restraining an aggressive pt the pt kicked her rt thumb.
## 41186                                                                                                                                                                                         EE states while restraining an agressive inmate he was struck on the cheek
## 41187                                                                                                                                                                                                EE states while restraining an inmate he injured his lt eye and lip
## 41188                                                                                                                                                                                        EE states while restraining an inmate he injured his neck and shoulder area
## 41189                                                                                                                                                                                      EE states while restraining an inmate he received a cut to his rt hand finger
## 41190                                                                                                                                                            EE states while restraining an inmate he was exposed to blood from the inmate wrist and twistedhis back
## 41191                                                                                                                                                                                     EE states while restraining an inmate he was kick on the lt hand by the inmate
## 41192                                                                                                                                                                                               EE states while restraining an inmate he was kicked in left rib area
## 41193                                                                                                                                                                                                   EE states while restraining an inmate he was kicked in the back.
## 41194                                                                                                                                                                                           EE states while restraining an inmate his hand struck the bunk of a bed.
## 41195                                                                                                                                                                              EE states while restraining an inmate his shoulderstruck the corner of a wall locker.
## 41196                                                                                                                                                                       EE states while restraining an inmate she scraped her lt hand and rt elbow on the handcuffs.
## 41197                                                                                                                                                                                        EE states while restraining an inmate the inmate bit him on the lt forearm.
## 41198                                                                                                                                                                              EE states while restraining an inmate the inmate kicked her on the lt leg and rt hand
## 41199                                                                                                                                                                            EE states while restraining an inmate the inmate struck him in the upper right jaw area
## 41200                                                                                                                                                                          EE states while restraining an inmate the inmate struck him on the forehead with his fist
## 41201                                                                                                                                                                       EE states while restraining an out of control student he struck his rt knee on the bedframe.
## 41202                                                                                                                                                                              EE states while restraining inmates from fighting her lt knee and lt eye was injured.
## 41203                                                                                                                                                                                             EE states while restraining out of control studentshe injured her back
## 41204                                                                                                                                                                                                           EE states while restraining patient EE twisted his back.
## 41205                                                                                                                                                                                        EE states while restraining pt he fell and broke his fall with his rt knee.
## 41206                                                                                                                                                                                                  EE states while restraining student he injured hisrt small finger
## 41207                                                                                                                                                                                               EE states while restraining student her lt knee and foot was injured
## 41208                                                                                                                         EE states while restraining th student y. W. The writer was injured when the writer lt knee sruck thr floor as the student was struggling.
## 41209                                                                                                                                                                       EE states while restraining trainee he received a toothbite to the left forefinger at nuckle
## 41210                                                                                                                                                                                                      EE states while retraining a student he injured his rt elbow.
## 41211                                                                                                                                                              EE states while retrieving a box from a shelf she felt a pop of her rt shoulder 10% ppd to rt arm. ..
## 41212                                                                                                                                                                                   EE states while retrieving a trash bag he stepped onto pole striking his lt leg.
## 41213                                                                                                                                                        EE states while retrieving a volleyball during a fence test his rt arm and lt leg was cut on the razor wire
## 41214                                                                                                                                  EE states while retrieving ammunition from the back of his car during a firearm training course he injured his back and neck area
## 41215                                                                                                                                                              EE states while retrieving class materials from draw he accidental close the drawer on his rt finger.
## 41216                                                                                                                                                             EE states while retrieving equipment he lean down and struck his forehead near lt eye on a metal door.
## 41217                                                                                                                   EE states while retrieving items from cabinet the cabinet started to fall and while trying to keep cabinet from falling he injured his shoulder.
## 41218                                                                                                                                                                                          EE states while retrieving items from cooler the door shut on her rt hand
## 41219                                                                                                                                                                                  EE states while retrieving keys from a metal draw her rt middle finger was mashed
## 41220                                                                                                                      EE states while retrieving narcotics from the cabinet an envelope dropped and when she bent overto pick it up she struck her head on the door
## 41221                                                                                                                          EE states while retrieving parts out of a storage bin he felt a sting on his lt shoulder and when hetook off his shirt a spider fell out.
## 41222                                                                                                                                                              EE states while retrieving some basketballs from between the fence her arm was cut on the razor wire.
## 41223                                                                                                                                                                             EE states while retrieving supplies from supply room her finger was caught in the door
## 41224                                                                                                                                                                         EE states while returning a needle to medical the cap came off and stuck into his rt thumb
## 41225                                                                                                                                                                  EE states while returning from making the bank depoist she was involved in an automobile accident
## 41226                                                                                                                                                                           EE states while returning from the trash dumpster the sercuity gate struck his large toe
## 41227                                                                                                                     EE states while returning inmates to their cells he smelled some type of fumes which caused breathing problems, dizziness, and blurred vision.
## 41228                                                                                                                                                                                         EE states while riding a horse he fell off the horse injuring his lt thigh
## 41229                                                                                                                          EE states while riding as a passenger in a van the van struck another vehicle in the front while another car struck the van from the rear
## 41230                                                                                                                                                  EE states while riding as a passenger in a vehiclethe hood came up causing glass to shatter and wentinto EE face.
## 41231                                                                                                                                                                              EE states while riding elevator the elevator suddenly drop causing injury to his back
## 41232                                                                                                                                                     EE states while riding in a van the van struck a curve and came to a abruptly stop causing EE to jerk her neck
## 41233                                                                                                                                           EE states while riding in a van transporting road squad the van was struck by another vehicle causing lt shoulder injury
## 41234                                                                                                                                            EE states while riding in ambulance to transport client she was injured due to being jerked by the movement of the van.
## 41235                                                                                                                                                 EE states while riding in the back of ambulance transporting an inmate the ambulance colided with another vehicle.
## 41236                                                                                                                   EE states while riding in the state patrol vehiclethe vehicle hit a patch of ice causing the vehicleto overturn causing neck and head contusions
## 41237                                                                                                                                         EE states while riding in the state vehicle another vehicle struck the state vehicle from the rear causing injury his back
## 41238                                                                                                                                     EE states while riding in the state vehicle he was struck in the rear of the vehicle by another vehicle injury rt side of head
## 41239                                                                                                                                                                           EE states while riding in the state vehicle he wasinvolved in an motor vehicle accident.
## 41240                                                                                                                                                                   EE states while riding in the state vehicle the vehicle struck a deer causing injury to his back
## 41241                                                                                                                              EE states while riding on the passenger side of the company's car a deer struck the car causing injury to her neck and shoulder area.
## 41242                                                                                                                           EE states while rolling a rack of biscuits into the cooler it tilted over and the EE tried to catch it and in doing so he cut his lt arm
## 41243                                                                                                                              EE states while rotating inmates for inside recreation and shower rt foot touched the steps felt a pull in the muscles behind rt knee
## 41244                                                                                                                                                                                          EE states while rotating tires on van he strained his lower abdomen area.
## 41245                                                                                                                   EE states while rotating to assigned post, on side-walk in front of dormitories, she stomped between cement slabs & stumbled forward, back jary.
## 41246                                                                                                                                           EE states while running a two mile run during pert training his lt knee started hurting after hestepped off a speed bump
## 41247                                                                                                                                            EE states while running after 2 inmates she lost her balance causing her lt foot to fall in a hole injuring her lt leg.
## 41248                                                                                                                                                                                      EE states while running after a probationer he pulled a muscle in his lt leg.
## 41249                                                                                                                                                                                              EE states while running after a subject he fell injuring his rt thigh
## 41250                                                                                                                                    EE states while running after a suspect who was breaking and entering the shop he fell injurying both knees, back, and rt hand.
## 41251                                                                                                                                                            EE states while running and responding to a code he stepped into a hole in the ground injuring his back
## 41252                                                                                                                                                                                EE states while running down steps he missed a steps causing injurying to his back.
## 41253                                                                                                                                                      EE states while running during pert training he stepped flat on his heel causing pain thru the entire rt foot
## 41254                                                                                                                                                                                                     EE states while running he felt sharp pain in his rt knee/heel
## 41255                                                                                                                                                                                                                      EE states while running he injured his rt leg
## 41256                                                                                                                                                                                                            EE states while running he pulled a muscle in his thigh
## 41257                                                                                                                                                                                                        EE states while running he slipped and fell on his rt knee.
## 41258                                                                                                                                                                                    EE states while running responding to an emergencycall he twisted his rt ankle.
## 41259                                                                                                                                                                                                                   EE states while running she twisted her lt foot.
## 41260                                                                                                                                                                                             EE states while running the dishwasher she injuredher arm and shoulder
## 41261                                                                                                                                                                                                          EE states while running to a code 2, she turned her ankle
## 41262                                                                                                                                                                                           EE states while running to assist another officer he twisted his rt knee
## 41263                                                                                                                                               EE states while running to check on student she slipped and fell on a penny which was on the floorinjuring her neck.
## 41264                                                                                                                                                              EE states while running to get a wheelchair from the nurse station she twisted her rt foot on a rock.
## 41265                                                                                                                                                     EE states while running to respond to help other staff when he twisted his lt ankle while enroute to the yard.
## 41266                                                                                                                                                                          EE states while running with students to a building she tripped and fell on the sidewalk.
## 41267                                                                                                                                    EE states while rushing to answer the phone he slipped and fell to the floor causing injury to his lt hip/shoulder and rt elbow
## 41268                                                                                                                                                                                                   EE states while sanding cabinet stuck splinter of wood in finger
## 41269                                                                                                                                   EE states while scraping paint from the ceiling ofgazebo some of the particles got into his lt eye causing redness and swelling.
## 41270                                                                                                                                                                     EE states while searching a cell she was cut on a sharp piece of metal on her right hand thumb
## 41271                                                                                                                                                                                          EE states while searching a locker he cut his rt thumb on a piece of wire
## 41272                                                                                                                                                                                           EE states while searching a mattress he felt pain in his lower back area
## 41273                                                                                                                                                                                            EE states while searching an inmate a needle stuckhis lt middle finger.
## 41274                                                                                                                                                                                                 EE states while searching an inmate a pencil stuck in his lt hand.
## 41275                                                                                                                                                                                                      EE states while searching an inmate bed his lt thumb was cut.
## 41276                                                                                                                                                                                       EE states while searching an inmate boot his finger was cut on a metal ring.
## 41277                                                                                                                                                                  EE states while searching an inmate clothing he was punctured by a needle on his rt middle finger
## 41278                                                                                                                                                                               EE states while searching an inmate clothing his lt finger was cut by a razor blade.
## 41279                                                                                                                                                                 EE states while searching an inmate coat she felt a sharp object which stuck her rt middle finger.
## 41280                                                                                                                                                                                                   EE states while searching an inmate he felt pain in his abdomen.
## 41281                                                                                                                                                                                                          EE states while searching an inmate he injured hislt leg.
## 41282                                                                                                                                                                          EE states while searching an inmate locker she recd a needle stick to her lt index finger
## 41283                                                                                                                                                               EE states while searching an inmate pocket she felt a sharp object which stuck her rt middle finger.
## 41284                                                                                                                                            EE states while searching an inmate property the inmate start fighing him--EE recd scratches to the lt side of his nose
## 41285                                                                                                                                                   EE states while searching an inmate room the inmate grabbed her and struck her in the lt eye with a pepsi bottle
## 41286                                                                                                                                                                EE states while searching an inmate shoe she was cut on the lt hand by a piece of metal in the shoe
## 41287                                                                                                                                                                  EE states while searching an inmate's locker she was puncture by a needle to the rt middle finger
## 41288                                                                                                                                                          EE states while searching cells she was up and down on her knees on concrete floor from 1:00pm to 6:45 pm
## 41289                                                                                                                                                                                  EE states while searching for inmate item a bag ofbooks and paper fell on EE back
## 41290                                                                                                                                                     EE states while searching inmate EE reports she think something might have bitten her on the lt hand and wrist
## 41291                                                                                                                                                                                              EE states while searching inmate cell the inmate spitted on EE lt arm
## 41292                                                                                                                                                                                     EE states while searching inmate personal propertyhe cut his hand on the shelf
## 41293                                                                                                                                                                                           EE states while searching inmate pocket a pin stuck her lt middle finger
## 41294                                                                                                                                                                             EE states while searching inmate pockets he was cut by a razor blade to his rt finger.
## 41295                                                                                                                                                                           EE states while searching inmate property his lt finger was punctured by a sewing needle
## 41296                                                                                                                                                                                                         EE states while searching inmates his eyes startedburning.
## 41297                                                                                                                                                            EE states while searching inside of wall locker, when right index finger was cut by edge of the locker.
## 41298                                                                                                                                                      EE states while searching of a serial number on back of a laminator a roller and tray fell on his lt foot/toe
## 41299                                                                                                                                                                   EE states while searching probationer's pocket he was cut by razor blade to the lt index finger.
## 41300                                                                                                                                                                       EE states while searching seg. Cells, he took off rubber gloves, wiped above rt. Eye w/hand.
## 41301                                                                                                                                    EE states while searching the room of the safekeeper she was hit in the facial area and scratched on the neck by the safekeeper
## 41302                                                                                                                                                                 EE states while searching units he came in contactwith something that caused him to develop a rash
## 41303                                                                                                                                                                            EE states while securing a laundry chute her finger was caught between the laundry gate
## 41304                                                                                                                                                                                                             EE states while securing a lock he jammed his rt hand.
## 41305                                                                                                                                                                  EE states while securing cell door his rt hand struck the brace of the foor injuring pinky finger
## 41306                                                                                                                                                                        EE states while securing doors he slipped and fellon wet floor injurying his rt ankle/knee.
## 41307                                                                                                                                                                                                       EE states while securing dorm door she bent her lt arm/wrist
## 41308                                                                                                                             EE states while securing inside gate at zone 9, slider pole would not slide down, right hand 5th finger got pinched, breaking the skin
## 41309                                                                                                                                                                                      EE states while securing the fire door the door closed on her rt pinky finger
## 41310                                                                                                                                                                   EE states while securing the gate before shift change he accidently smashed his rt middle finger
## 41311                                                                                                                                                                                            EE states while securing the gate he caught his finger between the bars
## 41312                                                                                                                                                                                                       EE states while securing the post a bug flew into her lt eye
## 41313                                                                                                                                                                        EE states while sending a request documentation thru opening door he struck his lt forehead
## 41314                                                                                                                                                  EE states while separating two patient from fighting she was thrown against the wall causing a lt shoulder injury
## 41315                                                                                                                                                                    EE states while seperating two inmates from fighting one of the inmate kicked him on his lt leg
## 41316                                                                                                                                       EE states while serving a warrant on a defender he was involved in a motor vehicle accident causing an injury to his lt knee
## 41317                                                                                                                          EE states while serving a warrant with another officer a dog (toy yorkie) ran from inside of house and bit officer on upper left thigh ()
## 41318                                                                                                                                                           EE states while serving an order to arrest a defendant the defendant struck EE in the face withhis fist.
## 41319                                                                                                                                                                      EE states while serving arresting papers on an offender he was bitten on the lt pinky finger.
## 41320                                                                                                                                                                                    EE states while serving lunch to inmate a food cart rolled back on his rt foot.
## 41321                                                                                                                                                                                EE states while serving meals to inmates an inmatethrew a cup of urine/feces at EE.
## 41322                                                                                                                                                          EE states while setting out mammal traps, accidntlstepped on yellow jacket nest and was stung multpltimes
## 41323                                                                                                                              EE states while setting up a display at an exhibithe stepped on a board which had a protruding nail nail went through lt side of shoe
## 41324                                                                                                                                                                     EE states while setting up for firearm training he stepped off a boat when his rt knee buckled
## 41325                                                                                                                                                            EE states while setting up for the special olympicshe lifted some heavy equipment and injured her back.
## 41326                                                                                                                                                                EE states while setting up material for education program a metal trunk fell on top of her lt foot.
## 41327                                                                                                                                           EE states while setting up range for training he lifted a heavy object made of steel causing back injury... 15% ppd paid
## 41328                                                                                                                                                         EE states while setting up the dining room her foot tripped over an extension from a chair causing injury.
## 41329                                                                                                                                                                                                  EE states while sharpening a bush axe his rt indexfinger was cut.
## 41330                                                                                                                                                                                      EE states while sharping an ax the ax slipped causing EE to cut his rt wrist.
## 41331                                                                                                                             EE states while she was assisiting a resident withher supper, another resident became upset & head butted her in the back of the head.
## 41332                                                                                                                              EE states while she was attempting to enter mobile home from the deck it was necessary to step wide to get into door twisted lt knee.
## 41333                                                                                                                                                                                 EE states while she was checking coolers her rt hand got caught in the cooler door
## 41334                                                                                                                                                            EE states while she was driving van he was making a lt turn when another vehicle struck him from behind
## 41335                                                                                               EE states while she was filing medical records charts sitting in her chair in the front of the desk she turned to stand up and her rt knee hit the caged monitor. ()
## 41336                                                                                                                                      EE states while she was making a id card she picked up card and turned to walk away and triped and fell over inmate scale. ()
## 41337                                                                                                                                                        EE states while she was preparing to vacuum she turned the wrong way and felt pain in her shoulderand neck.
## 41338                                                                                                                                      EE states while she was supervising inmates in thedining hall, she turned around and hit her left knee on the stool of table.
## 41339                                                                                                                             EE states while she was waliking into the bathroomher foot slipped and she fell on her buttocks, injuring her left knee and right arm.
## 41340                                                                                                                                                                            EE states while she was walking on the wear yard when her lft knee popped out of place.
## 41341                                                                      EE states while she went dry her hands she took up the paper roll off the shelf in the bathroom. The shelf tipped and the bottle of disinfectant fell over and spilled onto her left foot. ()
## 41342                                                                                                                                                                           EE states while shifting a stack of paper she received a cut to the cornea of the rt eye
## 41343                                                                                                                                                       EE states while shooting a shotgun the gun slippedfrom her shoulder causing a bruise on her rt upperarm area
## 41344                                                                                                                                                                EE states while shutting off gas line he was exposed to the fumes--EE became ill after the exposure
## 41345                                                                                                                                                                      EE states while sitting at a desk he attempted to stand when he felt a sharp pain in his back
## 41346                                                                                                                                           EE states while sitting at a desk she quickly turned her chair around causing her rt knee to strike against the desktop.
## 41347                                                                                                                                                                                   EE states while sitting at desk a light fixture felled and stuck EE on the head.
## 41348                                                                                                                                                                                       EE states while sitting at her desk a large mosquito bit her on the lt thumb
## 41349                                                                                                                                                                                       EE states while sitting at her desk she was bittenby an insect on the lt leg
## 41350                                                                                                                                 EE states while sitting at his computer in his office, something bit/stung him or got into his right eye. Eye started to swelling.
## 41351                                                                                                                                                                                        EE states while sitting at his desk he was bitten by a spider on the lt arm
## 41352                                                                                                                                                             EE states while sitting down in a chair his body shifted when he felt pain in his lower back and ltleg
## 41353                                                                                                                                             EE states while sitting down in a chair the chair broke causing EE to fall to the floor injuring hisback and shoulders
## 41354                                                                                                                         EE states while sitting down in an office chair which was very low she injured her back. Reh-lisa hollifield-828-654-7915*cell828-606-3477
## 41355                                                                                                                                                                     EE states while sitting down on a couch he struck his head against the metal frame of a window
## 41356                                                                                                                                                  EE states while sitting in a chair assisting an emergency he turned the wrong way injuring his rt knee and ankle.
## 41357                                                                                                                                                       EE states while sitting in a chair at the control panel she struck her rt knee against the corner ofthe desk
## 41358                                                                                                                                         EE states while sitting in a chair he began to cough which at that point he fainted falling to the floor striking his head
## 41359                                                                                                                 EE states while sitting in a chair she reached underneath the counter and pulled washing powder container and felt a sharp pain in lt buttock area
## 41360                                                                                                                                                                                          EE states while sitting in a chair she struck her lt knee on a steel box.
## 41361                                                                                                                                                                                 EE states while sitting in a chair the chair broke causing EE to fall to the floor
## 41362                                                                                                                                                    EE states while sitting in a chair the chair fell backward and broke causing injury to his back, neckand rt leg
## 41363                                                                                                                                                   EE states while sitting in a chair the chair rolled from under him causing him to strike his head against a door
## 41364                                                                                                                                     EE states while sitting in a chair the chair slipped from under her causing her to fall to the floor landing on her rt hip/leg
## 41365                                                                                                                                            EE states while sitting in a chair the chair went backward and broke causing EE to strike his head on the concrete wall
## 41366                                                                                                                                                           EE states while sitting in a chair the chair went backward causing EE to pull a muscle in his lower back
## 41367                                                                                                                                              EE states while sitting in a chair the leg of the chair gave away causing EE to fall injuring his rt hip and buttocks
## 41368                                                                                                                                           EE states while sitting in a chair the seat came off causing EE to fall backward striking her head and elbow on the door
## 41369                                                                                                                                                           EE states while sitting in a chair with locked wheels he slipped out of chair and injured his back/elbow
## 41370                                                                                                                   EE states while sitting in a chair working at a computer she stood up and felt pain in her rt footee noticed swelling and tenderness of the foot
## 41371                                                                                                                                                                                      EE states while sitting in a rover vehicle and another vehicle hit the truck.
## 41372                                                                                                                                                                 EE states while sitting in a swivel chair he turned around and struck his rt knee against the desk
## 41373                                                                                                                                                                                   EE states while sitting in chair and cause her to walked by tripping over lt leg
## 41374                                                                                                                             EE states while sitting in chair entering information in the computer the chair slipped fromunder him causing him to fall to the floor
## 41375                                                                                                                     EE states while sitting in chair typing she lean forward in chair causing the chair to lean backward--EE fell to floor landing on her buttocks
## 41376                                                                                                                     EE states while sitting in her chair she reached down to pick up a piece of paper when her chair rolled out from under her causing her to fall
## 41377                                                                                                                                                                EE states while sitting in her vehicle in traffic another vehicle struck her vehicle from the rear.
## 41378                                                                                                                                    EE states while sitting in passenger seat of a vehicle another vehicle struck the rear causing injury to his neck and back area
## 41379                                                                                                                    EE states while sitting on a stool she turned when the top of the stool came off-EE struck her rt wrist on the counter trying to keep from fall
## 41380                                                                                                                                                                   EE states while sitting on a stool the stool slid from under him causing him to injure his back.
## 41381                                                                                                                EE states while sitting on high desk chair, placed medication in drawer of med cart causing the chairto roll out from her, fell hitting rt arm, hip
## 41382                                                                                                                                                            EE states while sitting on toilet having a bowel movement she notice pain in her back and abdomen area.
## 41383                                                                                                                                                                                        EE states while sliding a key in a drop box his lt thumb finger was injured
## 41384                                                                                                                                      EE states while sliding the seat back in the statevehicle his lt ring finger was caught between the rail and the seat's wheel
## 41385                                                                                                                                                                                           EE states while soldering copper pipes, turn head and neck touch pipe ()
## 41386                                                                                                                                 EE states while sorting some clothing a client whowas blind came running thru the hallway stumble over a chair causing EE to fall.
## 41387                                                                                                                                                                                                EE states while speaking with an inmate the inmatespit into her eye
## 41388                                                                                                                                                   EE states while spraying pepper spray at an inmatewho had attacked him some of the pepper spray got into EE eyes
## 41389                                                                                                                                                      EE states while spraying some pepper spray on an aggressive inmate some of the pepper spray got into his eye.
## 41390                                                                                                                                                                    EE states while spraying window cleaner to clean window the wind blew the spray into her rt eye
## 41391                                                                                                                                                                                         EE states while squatting downward he felt a burning sensation in lt knee.
## 41392                                                                                                                                                                                             EE states while srchng inmate shoe EE was stuck w/a needle in l thumb.
## 41393                                                                                                                           EE states while stacking magazine he cut his rt hand index finger on a razor blade that was sticking out from the bottom of the magazine
## 41394                                                                                                                                                         EE states while stacking the chairs in visitation I pulled muscle arm began hurting then turned to an ache
## 41395                                                                                                                                                              EE states while standing @ nurses station patient hit EE in the arm & grabbed glasses and broke them.
## 41396                                                                                                EE states while standing and pivoting client; client wrapped his leg around EE's legs and EE tripped over oxygen tubing and client's leg stumbling hurting back. ()
## 41397                                                                                                                                                                                                        EE states while standing at desk she began to havea seizure
## 41398                                                                                                                 EE states while standing at her desk her foot was caught on the carpet causing her to loose her balance and fall to the floor injuring her lt knee
## 41399                                                                                                                                                                  EE states while standing at medical station observing inmates she fainted and landed on her back.
## 41400                                                                                                                         EE states while standing behind a food cart a drink container began to slip and while trying to keep it from falling she injured her back.
## 41401                                                                                                                EE states while standing beside his patrol vehicleinterviewing a suspect, he leaned in his car to get his portable radio and felt pop in right knee
## 41402                                                                                                                                                                         EE states while standing grading poultry he was struck on the lt lower back area by a cart
## 41403                                                                                                                                                                                                         EE states while standing he collasped and struck his head.
## 41404                                                                                                                                                                              EE states while standing he turned the wrong way causing a muscle to pull in his back
## 41405                                                                                                                                                                    EE states while standing in a chair trying to retrieve something she felt a pop in her lt knee.
## 41406                                                                                                                                          EE states while standing in back of pick up truck throwing bags of trash into dumpster he pulled a muscle in his rt elbow
## 41407                                                                                                                                            EE states while standing in front of inmate cell the inmate threw some unknown yellow liquid on herstriking her rt knee
## 41408                                                                                                                                                 EE states while standing in the control center sheshift her weight from her lt leg causing her rt leg to give away
## 41409                                                                                                                                                           EE states while standing in the doorway of an electrical sliding door the door closed on her lt shoulder
## 41410                                                                                                                                   EE states while standing next to a patient bed thepatient kicked EE several times in the stomach causing EE to fall to the floor
## 41411                                                                                                                                                                                   EE states while standing on a catwalk she was bitten on the lt wrist by a spider
## 41412                                                                                                                                                  EE states while standing on a desk to turn off a television the desk turned over causing EE to fallonto the floor
## 41413                                                                                                                                                                        EE states while standing on a ladder cleaning lights he felt pain in his back the next day.
## 41414                                                                                                                                  EE states while standing on a ladder to put clothes on top shelf his foot got caught causing him to fall backward onto the floor.
## 41415                                                                                                                   EE states while standing on a tractor to retrieve dead animals the tractor lurched causing EE arm to come in contact with the exhaust pipe--burn
## 41416                                                                                                                                                                                                  EE states while standing on stairs he felt a pull in this rt knee
## 41417                                                                                                                       EE states while standing on the front porch of a dorm she turned and slipped causing her to fall down some steps injuring her back/side area
## 41418                                                                                                                                                                 EE states while standing on the steps in a lobby she turned the wrong way and twisted her lt ankle
## 41419                                                                                                                                                                       EE states while standing on tree limb trimmint trees limb snapped off and EE fell about 6ft.
## 41420                                                                                                                                                 EE states while standing outside of building to get some fresh air she was bitten by some fire ants on her lt foot
## 41421                                                                                                                                                                                     EE states while standing outside the wind blew some dust/dirt into his rt eye.
## 41422                                                                                                                                                                EE states while standing still the put weight downon lt foot and when this happened she heard a pop
## 41423                                                                                                                                                              EE states while standing up from chair she steppedon the roller arm of chair and twisted her rt ankle
## 41424                                                                                                                                                    EE states while standing up from sitting in a chair the chair tilted causing EE to fall injuringher lt shoulder
## 41425                                                                                                                                                                              EE states while standing up she felt pain in her rt ankle--EE not sure what caused it
## 41426                                                                                                                                                  EE states while standing up to put away some file folders he had a sudden sharp pain in his rt leg and lower back
## 41427                                                                                                                                  EE states while stepping down from ladder missed bottom step of ladder and lost balance falling down and hit back of head on rock
## 41428                                                                                                                                                                       EE states while stepping down off a bus he slippedand fell on the steps bruising his rt heel
## 41429                                                                                                                                              EE states while stepping down off a loaded tractorhis lt ankle rolled to the outside causing EE to fall to the ground
## 41430                                                                                                                                                                                           EE states while stepping down off steps on a bus he twisted his lt knee.
## 41431                                                                                                                                                      EE states while stepping down off the back of a pickup truck he stepped into a hole and twisted his rt ankle.
## 41432                                                                                                                                                      EE states while stepping down out of boat onto trailer he lost his balance and fell injuring his rt shoulder.
## 41433                                                                                                                                                                        EE states while stepping down some steps at a loading dock she slipped and landed on rt leg
## 41434                                                                                                                                                           EE states while stepping down some steps he missedone step causing him to fall. EE stated he passed out.
## 41435                                                                                                                                                            EE states while stepping down some steps his rt foot slipped causing his weight to shift to his ltknee.
## 41436                                                                                                                                                               EE states while stepping down stairs her foot landed the wrong way causing her to twist her lt ankle
## 41437                                                                                                                                                                                         EE states while stepping down steps he felt pain in his lt side/groin area
## 41438                                                                                                                                                                           EE states while stepping down to the floor from the stairs a metal pin struck her rt toe
## 41439                                                                                                                                                                                      EE states while stepping from van onto uneven ground he sprained his lt knee.
## 41440                                                                                                                                                                                                     EE states while stepping into van she felt pain in her rt knee
## 41441                                                                                                                                                                                       EE states while stepping off a cement platform she twisted her lt ankle/knee
## 41442                                                                                                                                                                                EE states while stepping off a loading dock his rt knee buckled causing him to fall
## 41443                                                                                                                                                     EE states while stepping off a patrol boat onto deck a board was missing causing EE lt leg to go thru the deck
## 41444                                                                                                                                                                                           EE states while stepping off a tractor he felt a pain in his chest area.
## 41445                                                                                                                                                                                                    EE states while stepping off a transfer he twistedhis rt ankle.
## 41446                                                                                                                                                                                                            EE states while stepping off bus he twisted his rt knee
## 41447                                                                                                                                                                                                  EE states while stepping off road squad bus his lt knee gave away
## 41448                                                                                                                                                                                               EE states while stepping off road squad bus she twisted her lt knee.
## 41449                                                                                                                                                                               EE states while stepping off the bus with a coolerin hand he stumbled into the ditch
## 41450                                                                                                                                                   EE states while stepping off the road squad bus he slipped and fell on a patch of ice causing injury to his back
## 41451                                                                                                                                                                            EE states while stepping on a boat from one level to the other she twisted her lt ankle
## 41452                                                                                                                                                                  EE states while stepping on back of a bus after loading inmates for transport he injured his back
## 41453                                                                                                                                  EE states while stepping on ladder to check the milk tank the ladder slipped causing EE rt ring finger to be caught in the ladder
## 41454                                                                                                                                                                                       EE states while stepping onto a platform she fell and fractured her rt ankle
## 41455                                                                                                                                                                EE states while stepping onto gooseneck area of his tractor trailor he felt a pop in his right knee
## 41456                                                                                                                                         EE states while stepping out a van her rt foot stepped into a hole causing her to fall to the ground injuring her rt ankle
## 41457                                                                                                                                                                             EE states while stepping out of a plane his foot slipped causing him to twist his back
## 41458                                                                                                                                                                  EE states while stepping out of a vehicle she stepped on an uneven concrete twisting her rt ankle
## 41459                                                                                                                                                              EE states while stepping out of creek onto bank, tripped, fell into wooden stub stricking rt shoulder
## 41460                                                                                                                                      EE states while stepping out of state vehicle he stepped into a hole in the ground causing a muscleto pull in his lt hip area
## 41461                                                                                                                                                  EE states while stepping out of supply truck all her weight shifted on left leg injuring her lt knee and rt ankle
## 41462                                                                                                                                                         EE states while stepping out of the van his lt foot begin to lose balance causing EE to sprain his lt knee
## 41463                                                                                                                                                                                EE states while stepping out of truck he slipped on some ice injurying his lt knee.
## 41464                                                                                                                                                                      EE states while stepping out of van his foot slipped causing EE to fall and land on his neck.
## 41465                                                                                                                                          EE states while stepping out the door of a van a piece of the door lock guard struck him in the back causing a laceration
## 41466                                                                                                                                                                    EE states while stepping over trash and mop bucketthat were on the floor he twisted his lt knee
## 41467                                                                                                                                                                                       EE states while stepping through the doorway he was caught between the door.
## 41468                                                                                                                                                               EE states while stepping up steps to van his foot slipped and twisted causing EE to injured his back
## 41469                                                                                                                                         EE states while stepping up to a podium her right foot was caught on a metal edge causing her to trip injuring her rt knee
## 41470                                                                                                                                                                                  EE states while stepping up to clotheshouse her foot slipped causing her to fall.
## 41471                                                                                                                                   EE states while stooping down to move a tool box out of the way of wet paint he felt pain in his shoulder, arm, and finger area.
## 41472                                                                                                                                                                          EE states while stopped at a stop light another vehicle struck the vehicle from the rear.
## 41473                                                                                                                                                                                     EE states while storaging tables his finger was caught between the two tables.
## 41474                                                                                                                                                    EE states while storing a heavy truck tire he lostcontrol and the tire fell striking EE on the base of rt thumb
## 41475                                                                                                                                                                                                  EE states while stretching he felt heard a pop in his rt shoulder
## 41476                                                                                                                                                                                                       EE states while striking at an inmate she injured her lt arm
## 41477                                                                                                                                                                                        EE states while struggling with an agressive vistor he injured his rt ankle
## 41478                                                                                                                                          EE states while struggling with an inmate to remove marijuana from his hands he fell on concrete causing multiples injury
## 41479                                                                                                                                                                           EE states while supervising a crew he tripped overa tree stump and injured his lt ankle.
## 41480                                                                                                                                      EE states while supervising a student, was struck on the head and left shoulder by student er-910 997-9195; wanda crave hicks
## 41481                                                                                                                                                              EE states while supervising a work crew he slippedand fell down an embankment and twisted his rt knee
## 41482                                                                                                                                                       EE states while supervising a work crew of inmatesshe accidently closed her rt middle finger in the van door
## 41483                                                                                                                            EE states while supervising an inmate cutting grass with lawn mower a foreign object was thrown from under the mower striking EE lt arm
## 41484                                                                                                                                                    EE states while supervising an inmate during community work he was stung by an insect on the ltside of his face
## 41485                                                                                                                                           EE states while supervising bathroom breaks an inmates pushed her into a wall causing her to strike her head on the wall
## 41486                                                                                                                                                                         EE states while supervising during visistation a visitor kick and struck EE on the lt hand
## 41487                                                                                                                                                                             EE states while supervising he stepped into a holein the ground injurying his lt knee.
## 41488                                                                                                                                                                    EE states while supervising inmate during road squad he stepped in a hole twisting his rt knee.
## 41489                                                                                                                                                                             EE states while supervising inmate during yard duty the wind blew something his rt eye
## 41490                                                                                                                                                                          EE states while supervising inmate he tripped and fell on a tree stump striking his back.
## 41491                                                                                                                                              EE states while supervising inmate he tripped and fell over a garbage cart injurying his lt wrist and lt and rt knee.
## 41492                                                                                                                                                         EE states while supervising inmate he walked thru a doorway and tripped and struck rt arm against the wall
## 41493                                                                                                                        EE states while supervising inmate in a tobacco field he was exposed to the heat which has caused a rash on his arm, back and stomach area.
## 41494                                                                                                                                                                  EE states while supervising inmate on a work crew he stepped into a hole and twisted her lt ankle
## 41495                                                                                                                                                                 EE states while supervising inmate playing basket ball the ball struck her on the lt side of head.
## 41496                                                                                                                                                     EE states while supervising inmates a food cart fell off a loading truck striking EE on the arm and back area.
## 41497                                                                                                                                                                                 EE states while supervising inmates and tripped over box trash bags. Injured hand.
## 41498                                                                                                                       EE states while supervising inmates at a flood distribution ctr a conveyor slipped from the back of a trailer and fell striking her rt ankle
## 41499                                                                                                                                                                                            EE states while supervising inmates came in contact with TB from inmate
## 41500                                                                                                                                                            EE states while supervising inmates cleaning drainage ditch he was struck in the rt eye by a tree limb.
## 41501                                                                                                                                                                               EE states while supervising inmates cutting grass he came in contact with poison ivy
## 41502                                                                                                                              EE states while supervising inmates cutting rt of way for road squad EE was checking wooded area and came in contact with poison ivy.
## 41503                                                                                                                                           EE states while supervising inmates during a road squad he entered the back door on a bus and struckhis head on the door
## 41504                                                                                                                                                                            EE states while supervising inmates during bathroom breaks he became very hot and dizzy
## 41505                                                                                                                                                                                EE states while supervising inmates during road squad he noticed a knot on his head
## 41506                                                                                                                                                                    EE states while supervising inmates during road squad he noticed a rash on face, hands, and arm
## 41507                                                                                                                                                                 EE states while supervising inmates during road squad he stepped into a hole twisting his rt knee.
## 41508                                                                                                                            EE states while supervising inmates he became dizzy and called for relief when he began walking he reached for the phone and collapsed.
## 41509                                                                                                                                                                        EE states while supervising inmates he lost his balance while walking twisting his rt ankle
## 41510                                                                                                                                                          EE states while supervising inmates he slipped in a hole on the side of the road and twisted his lt ankle
## 41511                                                                                                                                                EE states while supervising inmates he slipped on loose gravel and fell face first toward pavement injuring lt knee
## 41512                                                                                                                                                          EE states while supervising inmates he was standing in grass when he was bitten by a spider on his lt leg
## 41513                                                                                                                                                                                EE states while supervising inmates he was struck by an inmate and injured shoulder
## 41514                                                                                                                                                                                        EE states while supervising inmates he was struck in the face by an inmate.
## 41515                                                                                                                                         EE states while supervising inmates in a field pulling some weeds he had an allergic reaction causing a rash on both arms.
## 41516                                                                                                                                                                                 EE states while supervising inmates in med. Bldg., a pc. Of dirt went into l. Eye.
## 41517                                                                                                                                                                               EE states while supervising inmates in the dining hall she slipped and fell on floor
## 41518                                                                                                                              EE states while supervising inmates in the kitchena fight started and one of the inmate coughed causing blood to splatter in EE face.
## 41519                                                                                                                                                               EE states while supervising inmates in the recreation yard she was struck in the head by a softball.
## 41520                                                                                                                                                         EE states while supervising inmates moving tree for clearance he lifted the tree and felt pain in his back
## 41521                                                                                                                                              EE states while supervising inmates playing basketball an inmate ran into EE causing injury to his rt shoulder blade.
## 41522                                                                                                                                                 EE states while supervising inmates removing a bardoor the door slipped and fell striking EE on the back of lt leg
## 41523                                                                                                                                                 EE states while supervising inmates she slipped and felled on a muddy bank injurying her rt wrist and rt shoulder.
## 41524                                                                                                                                                             EE states while supervising inmates she stepped off a curb on the side of a road twisting her rt ankle
## 41525                                                                                                                                                                                  EE states while supervising inmates she was struckon the head, back, and abdomen.
## 41526                                                                                                                                                               EE states while supervising inmates unloading a truck she was stung by a bee on the rt side of face.
## 41527                                                                                                                                                                  EE states while supervising inmates working in a park he stepped into a hole injuring his lt knee
## 41528                                                                                                                 EE states while supervising juveniles during pe one juvenile got out of control, approached and punched EE, other juveniles joined in the assault.
## 41529                                                                                                                                                                     EE states while supervising loading of dry goods on truck a wooden pallet fell on his rt foot.
## 41530                                                                                                                           EE states while supervising movement of inmates 2 inmates began to fight, broke up fight, EE was exposed to blood on both hands and arms
## 41531                                                                                                             EE states while supervising road inmates, he went down steep hill & right foot got tangled in vines & twisted his right leg at knee causing sharp pain
## 41532                                                                                                                                                                            EE states while supervising road squad cutting weeds he came in contact with poison ivy
## 41533                                                                                                                                EE states while supervising road squad he stepped into a hole covered with grass--EE felt pain in his lower back and lt hip and leg
## 41534                                                                                                                                                                   EE states while supervising road squad he stepped into a wash out hole falling injuring his back
## 41535                                                                                                                                                 EE states while supervising students during recreation in gym, he was hit in the face with a basketball. Left eye.
## 41536                                                                                                                                                                   EE states while supervising students on playgroundshe stepped into a hole and twisted her ankle.
## 41537                                                                                                                                               EE states while supervising the movement of a piano the rope used to lift the piano came loose and fell on EE lt leg
## 41538                                                                                                                                                        EE states while supervising the serving line he was struck in the head with a metal can thrown by an inmate
## 41539                                                                                                                                                                                    EE states while supervising trainees he stepped into a hole and twisted lt knee
## 41540                                                                                                                                                                                       EE states while supervising work crew she got a piece of thorn in her lt eye
## 41541                                                                                                                                                              EE states while supevising inmates during a community work program he came in contact with poison ivy
## 41542                                                                                                                                                                                  EE states while supvs work detail he closed metal gate door on his rt ring finger
## 41543                                                                                                                                                             EE states while sweeping around his work station he felt a sharp pain in the lower lt side of his back
## 41544                                                                                                                                       EE states while sweeping floors and stairwell in the new science bldg, he accidentally bumped his forehead underneath stairs
## 41545                                                                                                                                                            EE states while sweeping steps, walking backwards he slipped missing a step and twisted his right ankle
## 41546                                                                                                                                                 EE states while taking a battery out of a front end loader he dropped the top of the battery on his lt middle toe.
## 41547                                                                                                                                               EE states while taking a binding strap loose on a food cart the metal buckle kicked back striking EE on the lt thumb
## 41548                                                                                                                                                                        EE states while taking a cardboad apart the pin on the inside punctured her on the lt thumb
## 41549                                                                                                             EE states while taking a cart of linen off trailerat the hospital the cart got hung up with another cart causing EE to strain and injured his low back
## 41550                                                                                                                          EE states while taking a chair down from table thechair slipped and while trying to keep the chair from falling she injured her rt thumb.
## 41551                                                                                                                                                                 EE states while taking a dog out for a break the dog pulled away causing EE to injure her lt hand.
## 41552                                                                                                                                                                 EE states while taking a pan of hot milk from a steamer it splashed striking her on the lt breast.
## 41553                                                                                                                                                                            EE states while taking an inmate out of his exercise cage the inmate spitted in EE face
## 41554                                                                                                                  EE states while taking an inmate to segregation the inmate grabbed EE contraband causing EE to struggle with inmate injuring her rt arm and thumb
## 41555                                                                                                                                                                                           EE states while taking an inmate to the hospital the inmate vomit on him
## 41556                                                                                                                                                                         EE states while taking blood from an inmate she was punctured by a needle in her rt finger
## 41557                                                                                                                                                       EE states while taking blood from container the top came off causing blood to splash on EE face and lab coat
## 41558                                                                                                                                                                     EE states while taking bolts off toilet a piece ofbrass came off the nut and went into his eye
## 41559                                                                                                                                                   EE states while taking bottles of acid out of a case one of the lid was loose causing acid to spill on his hand.
## 41560                                                                                                                                                    EE states while taking boxes of paper towel off stack a box containing trash bags fell striking eein the rt eye
## 41561                                                                                                                                                EE states while taking count for code he slipped and fell on a wet floor pulling a muscle in his arm and chest area
## 41562                                                                                                                                    EE states while taking cover off an outside air conditiner unit he was stung on the lt side of theneck by a yellow jacket(bee).
## 41563                                                                                                                                                                              EE states while taking cuffs off inmate he pulled keys and her hand hit the trap door
## 41564                                                                                                                                                                                                      EE states while taking down blind he cut his rt index finger.
## 41565                                                                                                                                   EE states while taking food carts up to floor on elevator-the elevator dropped and stopped suddenlycausing pain in neck and back
## 41566                                                                                                                                                                              EE states while taking food to units she stepped into a hole and twisted her lt foot.
## 41567                                                                                                                  EE states while taking handcuffs off inmate he pulled his hands into the room and she grabbed the open cuff while he was pulling the opposite way
## 41568                                                                                                                                                             EE states while taking handcuffs off inmate the inmate jerked her arm causing a scratch to her lt hand
## 41569                                                                                                                                                                EE states while taking inmates down a hall for a diagnostic appointment he struck his head on a fan
## 41570                                                                                                                         EE states while taking inmates out of cell for exercises she tripped and fell on broken tile causing injury to hands, knees, and forehead.
## 41571                                                                                                                                                                                         EE states while taking inventory of bread her rt hand struck a bread rack.
## 41572                                                                                                                                                                                               EE states while taking lid off pot she received a burn to her rt arm
## 41573                                                                                                                                                                                                 EE states while taking lid off trash can she injured her lt wrist.
## 41574                                                                                                                                                                    EE states while taking off old insulated garage doors some of the particles got into his lt eye
## 41575                                                                                                                   EE states while taking offender off house arrest. He stepped in hole 6" deep covered with leaves on slate walkway twisting right ankle severely.
## 41576                                                                                                                                                                                   EE states while taking out heavy volume of trash he felt pain in his rt shoulder
## 41577                                                                                                                                                              EE states while taking out some screws from a wooden box he recd a laceration on his rt index finger.
## 41578                                                                                                                                                         EE states while taking out the trash the front section of the dumpster fell causing EE to injure his back.
## 41579                                                                                                                                                                     EE states while taking out trash to dumpster he was stung by a yellow jacket on the rt forearm
## 41580                                                                                                                                                                                               EE states while taking pads off buffer his rt middle finger was cut.
## 41581                                                                                                                                                                     EE states while taking patient back to his room, resident turn around and hit me in my face ()
## 41582                                                                                                                                                             EE states while taking peanuts from the machine her lt leg was caught on the metal shelf causing a cut
## 41583                                                                                                                                           EE states while taking pt to bathroom the pt became aggressive and struck EE in the rt eye causing her glasses to break.
## 41584                                                                                                                                                                                   EE states while taking trays off cart the wheel fell striking EE on the lt hand.
## 41585                                                                                                                                                                         EE states while taking two bags to central controlshe tripped and fell on uneven sidewalk.
## 41586                                                                                                                                                                               EE states while talking on the telephone he turnedaround and heard a pop in his back
## 41587                                                                                                                                                              EE states while talking to a co worker he turned and twisted his rt foot causing injury to his ankle.
## 41588                                                                                                                                                                EE states while talking to an inmate some saliva came from inmate's mouth and went into his lt eye.
## 41589                                                                                                                                                                                  EE states while talking to an inmate the inmate saliva from spit enter her mouth.
## 41590                                                                                                                                                                                                    EE states while talking to an inmate the inmate spitted on him.
## 41591                                                                                                                                                                                      EE states while talking to an inmate the inmate's saliva struck her lip area.
## 41592                                                                                                                                                     EE states while talking to another officer he openthe door when door struck his lt foot injurying his big toe.
## 41593                                                                                                                              EE states while teaching cet training a trainee pulled his left arm, elbow, and shoulder around to his back in a handcuffing position
## 41594                                                                                                                                   EE states while teaching cpr during mandatory training and had having to flex foot. I now have pain in the bend of lower lt leg.
## 41595                                                                                                                                                                                               EE states while teaching her middle rt finger was struck by a board.
## 41596                                                                                                                                                                     EE states while testing cattle a cow struck him in the back knocking him 4 to 5 ft in the air.
## 41597                                                                                                                         EE states while testing swines and while avoiding being cut by a saw he tried to exit the gate when the gate door struck him on the lt arm
## 41598                                                                                                                        EE states while testing utensil for pot and pan detergent the utensil slipped from hand which caused water to splash irritating the lt eye.
## 41599                                                                                                                                                                    EE states while the room was being swept, wind blew in the door causing sawdust to blow in eye.
## 41600                                                                                                                               EE states while their vehicle was stopped a vehicle hit them from the rear and this caused them to hit the vehicle in front of them.
## 41601                                                                                                                                                                                                  EE states while threading a pipe a piece of metal entered his eye
## 41602                                                                                                                                                                                          EE states while throwing a volleyball overhead he injured his lt shoulder
## 41603                                                                                                                                         EE states while throwing hot water on the floor to be used for scrubbing some of the water splashed on her rt leg and foot
## 41604                                                                                                                                                                                                   EE states while throwing trash in dumpster he struck his rt hand
## 41605                                                                                                                                                               EE states while tighten bolts on a bush axe the wrench slipped causing EE to cut his rt index finger
## 41606                                                                                                                                                                                         EE states while to restrain student the student bit him on the lt shoulder
## 41607                                                                                                                                                   EE states while tracting land he pushed a tree over and some bees swarmed out and stung him on his head and face
## 41608                                                                                                                                                                                                  EE states while training a client the client spitted in EE lt eye
## 41609                                                                                                                                              EE states while training bloodhounds he was running through the woods when he stepped on a stump injuring his rt foot
## 41610                                                                                                                                                                                       EE states while training during a basketball game he injured his rt shoulder
## 41611                                                                                                                    EE states while training during recuit school-subj-ect contral arrest tech block. Participating in two-man take down drill when landed on chest
## 41612                                                                                                                                              EE states while training he stepped off a track and twisted his lt foot and received a minor abrasion to his rt knee.
## 41613                                                                                                                                        EE states while training his bloodhound he was running along a sewer line when he tripped and fell injuring his rt shoulder
## 41614                                                                                                                                                                                 EE states while training his partner grabbed his lt hand when he felt a sharp pain
## 41615                                                                                                                                                                                                  EE states while training with bloodhounds he was bitten by a tick
## 41616                                                                                                                                                                       EE states while tranferring a resident he felt a pull on his lt side def atty file # 01-2185
## 41617                                                                                                      EE states while transfering a patient from a strethcer to the bed she felt a sharp pop & pain pull across her rt buttoch down the vack of her right thigh. ()
## 41618                                                                                                                                                    EE states while transfering patient, when the patient started violently pulling on EE and tried to scratch her.
## 41619                                                                                                                                            EE states while transferring a prisoner to the magistrate's office he was exposed to blood which came from the prisoner
## 41620                                                                                                                                                                 EE states while transferring an obese patient fromthe floor to the wheelchair he strained his back
## 41621                                                                                                                                                                                            EE states while transferring inmate to wheelchair she injured her back.
## 41622                                                                                                               EE states while transferring resident from chair to bed, resd suddenly lifted his legs as she moved him pulling EE downward. Strained right shoulder
## 41623                                                                                                                                                                     EE states while transp. Rd. Sqd. Wk. Crew, a car ranred light & they collided in intersection.
## 41624                                                                                                                                                                    EE states while transporting a parolee to residenthe was struck from behind by another vehicle.
## 41625                                                                                                                                                                             EE states while transporting a pt from admttng office to ward pt bit EE on the finger.
## 41626                                                                                                                                                   EE states while transporting a resident from bed to wheelchair she felt pain on the lt side of chest/breast area
## 41627                                                                                                                                                             EE states while transporting a steel bunk bed to another level of the housing unit he injured his back
## 41628                                                                                                                                                      EE states while transporting an inmate for an medical appt, he was rearended while trying to make a left turn
## 41629                                                                                                                                                                                EE states while transporting an inmate to court a deer ran into the path of vehicle
## 41630                                                                                                                                                                             EE states while transporting bags of seed to truckhe felt pain in his lower back area.
## 41631                                                                                                                                                                                        EE states while transporting inmate a truck struckthe vehicle from the rear
## 41632                                                                                                                                  EE states while transporting inmate he pulled the hood released latched and felt pain and discomfortto his lt middle index finger
## 41633                                                                                                                                                                  EE states while transporting inmate in state vehicle he was struck in the rear by another vehicle
## 41634                                                                                                                                                                                      EE states while transporting inmate to hospital she was exposed to meningitis
## 41635                                                                                                                                                                                  EE states while transporting inmates he was involved in a motor vehicle accident.
## 41636                                                                                                                                            EE states while transporting inmates in a van a rock struck the car causing glass to splatter and strike EE in the eye.
## 41637                                                                                                                               EE states while transporting inmates in a van a rock was thrown and splattered the window which caused the glass to get into EE eye.
## 41638                                                                                                                      EE states while transporting inmates, another car ran the red light (& hit their van)(passenger) psych issues go on 4/1/08 claim not this one
## 41639                                                                                                                                                                   EE states while transporting parolee to resident he was struck in the behind by another vehicle.
## 41640                                                                                                                                                                                                   EE states while traveling in car he got something in his rt eye.
## 41641                                                                                                                                            EE states while traveling in state vehicle a truckpulled across the street in front of him and struck him from the side
## 41642                                                                                                                                                      EE states while traveling in state vehicle anothervehicle struck his from the rear causing back and neck pain
## 41643                                                                                                                                                                      EE states while traveling in state vehicle he was struck by another vehicle who fail to yield
## 41644                                                                                                                                                            EE states while traveling in the state vehicle another vehicle struck the state vehicle on the rt side.
## 41645                                                                                                                                        EE states while traveling on highway another vehicle ran a stop sign and crashed into the state vehicle--injury to his ribs
## 41646                                                                                                                                                                 EE states while traveling she was involved in a motor vehicle accident injuring lt wrist and chest
## 41647                                                                                                                                                                EE states while traveling the handbar of a four wheeler struck his rt hand/wrist **form 18 filed***
## 41648                                                                                                                                                               EE states while traveling to a staff meeting he was struck from the behind of car by another vehicle
## 41649                                                                                                                                        EE states while traveling to another pharmacy sitehe was rear-ended by another vehicle striking head causing mouth to bleed
## 41650                                                                                                                           EE states while travelling on road squad bus the bus was struck by another vehicle. EE states some glass got into her face and eye area.
## 41651                                                                                                                                                             EE states while trimming out poster with knife theknife slipped cutting off part of EE lt index finger
## 41652                                                                                                                                                                                                EE states while trimming shrubs bees stung him all over his body ()
## 41653                                                                                                                                                                                           EE states while trimming tree limbs with chain sawthe saw cut his lt leg
## 41654                                                                                                                                                                          EE states while trying retrieve some keys in a drawer her finger was caught in the drawer
## 41655                                                                                                                                                            EE states while trying to arrest a probationer theprobationer tried to run and pushed EE on the ground.
## 41656                                                                                                                                                                                EE states while trying to arrest a subject he was kicked and struck by the subject.
## 41657                                                                                                                                                              EE states while trying to assist with an aggressive pt the pt grabbed EE rt thumb and pulled it back.
## 41658                                                                                                                                                              EE states while trying to assist with changing inmate's clothing the inmate grabbed her hair and hand
## 41659                                                                                                                                                                          EE states while trying to avoid an accident he was struck in the rear by another vehicle.
## 41660                                                                                                                                                                         EE states while trying to avoid from getting struck by another EE fist he injured his neck
## 41661                                                                                                                                                               EE states while trying to break up a fight an inmate struck him with a chair injurying his lt elbow.
## 41662                                                                                                                                                           EE states while trying to break up a fight betweeninmate he injured his rt pinky finger on the handcuff.
## 41663                                                                                                                                                                 EE states while trying to break up a fight betweentwo inmate he pulled a muscle in his chest area.
## 41664                                                                                                                                                             EE states while trying to break up a fight betweentwo inmates he fell injurying his knee and shoulder.
## 41665                                                                                                                                                      EE states while trying to break up a fight betweentwo inmates some blood splattered on his back, armand hand.
## 41666                                                                                                                                                           EE states while trying to break up a fight betweentwo patient he fell on the floor striking his lt elbow
## 41667                                                                                                                                                                                EE states while trying to break up a fight betweentwo students he injured his back.
## 41668                                                                                                                                                                     EE states while trying to break up a fight betweentwo visitors he was scratched on the rt arm.
## 41669                                                                                                                                      EE states while trying to break up two inmates from fighting he fell backward into some bars striking and cutting his lt hand
## 41670                                                                                                                                         EE states while trying to chase a subject who tried to escape custody he fell over several benches and struck his lt wrist
## 41671                                                                                                                                                                 EE states while trying to close a window his lt hand slipped off the knob and went thru the window
## 41672                                                                                                                  EE states while trying to close and lock a window his hand hit the glass cuuting EE underneath his knuckles on his rt hand. Received 10 stitches.
## 41673                                                                                                                                                          EE states while trying to confiscate a contraband from inmate the inmate struck EE in the face with fist.
## 41674                                                                                                                                                              EE states while trying to confiscate a tattoo needle from an inmate the needle puncture his lt finger
## 41675                                                                                                                                                                    EE states while trying to cut a hole in a bottle the knife slipped causing EE to cut rt finger.
## 41676                                                                                                                                                    EE states while trying to decontaminate a contaminate sewing needle--she accidently pricked her rt index finger
## 41677                                                                                                                                  EE states while trying to extract a belt from an inmate's head who was trying to hang himself EE recd an abrasion to his lt hand.
## 41678                                                                                                                                                                 EE states while trying to gain asset to a roof he felled from the ladder and injured his rib cage.
## 41679                                                                                                                                                           EE states while trying to get a food cart thru a door her rt finger was caught between the cart and door
## 41680                                                                                                                                                         EE states while trying to get client's oxygen reading, the client pulled EE hand to his mouth and bit her.
## 41681                                                                                                                                           EE states while trying to get stuck lawn mower blade from a deck wall the blade slipped causing EE to cut his lt forearm
## 41682                                                                                                                                                            EE states while trying to get swans from the paintthe swan clawed the palm of her hand making deep cut.
## 41683                                                                                                                                        EE states while trying to give oxygen to an inmatethe inmate grabbed both of her wrist which had caused tearing of the skin
## 41684                                                                                                                                                          EE states while trying to gives some keys to another sgt the door slipped and struck her on the forehead.
## 41685                                                                                                                                                    EE states while trying to handcuff an aggressive inmate the inmate pulled her arm and bit her on the lt finger.
## 41686                                                                                                                                                                                   EE states while trying to handcuff an inmate the inmate kicked EE on the rt hand
## 41687                                                                                                                         EE states while trying to handcuff an inmate the inmate resisted and pulled away causing EE to twist his rt wrist injuring his lt shoulder
## 41688                                                                                                                                                              EE states while trying to keep a client from falling she grabbed client causing injury to her lt arm.
## 41689                                                                                                                                                                                     EE states while trying to keep a client from falling she injured her lt wrist.
## 41690                                                                                                                                                                EE states while trying to keep a client from falling she injured her rt knee, neck, and lower back.
## 41691                                                                                                                                                                  EE states while trying to keep a computer unit from falling he injured his back & both shoulders.
## 41692                                                                                                                                                                        EE states while trying to keep a food cart from falling he injured his lt thumb and finger.
## 41693                                                                                                                                                EE states while trying to keep a juice from falling off a cart she got her finger caught between the cart and wall.
## 41694                                                                                                                                                         EE states while trying to keep a patient from fighting a staff member the patient kicked EE on the rt knee
## 41695                                                                                                                                                                                              EE states while trying to keep a pt from falling he injured his back.
## 41696                                                                                                                                                                                             EE states while trying to keep a pt from falling she injured her back.
## 41697                                                                                                                                                                                       EE states while trying to keep a pt from falling she injured her lower back.
## 41698                                                                                                                                                                                EE states while trying to keep a pt from falling she injured her rt shoulder blade.
## 41699                                                                                                                                                                 EE states while trying to keep an aggressive pt from assaulting a staff member he injured his knee
## 41700                                                                                                                                               EE states while trying to keep an inmate from falling on the floor the inmate pulled her arm causing injury to back.
## 41701                                                                                                                                           EE states while trying to keep an inmate from running during arrest his body was struck against the post of some stairs.
## 41702                                                                                                                                                            EE states while trying to keep cases of file from falling -struck her rt hand against the metal bookend
## 41703                                                                                                                                                                                           EE states while trying to keep client from fallinghe injured his lt knee
## 41704                                                                                                                                                                                            EE states while trying to keep client from fallingshe injured her back.
## 41705                                                                                                                                                                                      EE states while trying to keep client from fallingshe injured her lower back.
## 41706                                                                                                                                                                                          EE states while trying to keep client from runningshe injured her rt toe.
## 41707                                                                                                                                                                      EE states while trying to keep himself from falling his rt elbow struck against a door frame.
## 41708                                                                                                                                                                                            EE states while trying to keep inmate from fallingshe injured her back.
## 41709                                                                                                                                                                                   EE states while trying to keep inmates from fighting he injured his rt hips/legs
## 41710                                                                                                                                                                                          EE states while trying to keep pt from falling he injured his lower back.
## 41711                                                                                                                                                                                                EE states while trying to keep pt from falling sheinjured her back.
## 41712                                                                                                                                                       EE states while trying to keep two clients from fighting he fell on the floor injurying his lt index finger.
## 41713                                                                                                                                   EE states while trying to keep two inmate from fighting he was thrown to the floor by one of the inmate injuring his lt rib cage
## 41714                                                                                                                                                       EE states while trying to keep two inmates from fighting she got some pepper spray on her face andboth arms.
## 41715                                                                                                                                  EE states while trying to keep two inmates from fighting she lost her balance and twisted her lt knee trying to keep from falling
## 41716                                                                                                                                                                         EE states while trying to keep two patients from fighting one pt fell against his rt knee.
## 41717                                                                                                                                                                        EE states while trying to keep two patients from fighting she fell and injured her rt knee.
## 41718                                                                                                                                                         EE states while trying to keep two pt from fighting he received several scratches on the inside of rt arm.
## 41719                                                                                                                                                                            EE states while trying to keep two student from fighting he injured his lt and rt knee.
## 41720                                                                                                                                                                                            EE states while trying to lift a 10 gallon of water he injured his back
## 41721                                                                                                                                                                     EE states while trying to lift a 5 gallon bucket of laundry detergent he felt pain in rt knee.
## 41722                                                                                                                                                                         EE states while trying to lift a bed rail off the hinges she received a cut to her lt hand
## 41723                                                                                                                                                                               EE states while trying to lift a case of toilet paper he pulled a muscle in his back
## 41724                                                                                                                                                                                                 EE states while trying to lift a laundry bag she injured her back.
## 41725                                                                                                                                                                                                        EE states while trying to lift a pt she injured her lt arm.
## 41726                                                                                                                                                                 EE states while trying to losen pipe with a wrenchthe pipe slipped causing EE to injured his back.
## 41727                                                                                                                                                                    EE states while trying to move a gate into a livestock barn a splinter went into his lt finger.
## 41728                                                                                                                                                              EE states while trying to move a storage cabinet to the back of a truck he felt pain in his back area
## 41729                                                                                                                                                                                           EE states while trying to open a file cabinet the drawer stuck rt thumb.
## 41730                                                                                                                                                                            EE states while trying to open a trap door the handle became loose and fell on EE hand.
## 41731                                                                                                                                                     EE states while trying to open and close cell doorthat was difficult to open she injured her lt handand wrist.
## 41732                                                                                                                                                                   EE states while trying to open door the handle wasjammed which caused EE to injury her rt wrist.
## 41733                                                                                                              EE states while trying to patient to quiet room & another patient into their rm after returning to the ward EE felt chest congestion & coughing hard.
## 41734                                                                                                                  EE states while trying to pick up a piece of steeloff floor he bent over and slipped and while trying to break the fall he grabbed the steam pipe
## 41735                                                                                                                                                                      EE states while trying to place pt in a quiet roomshe was bitten by the pt on the rt forearm.
## 41736                                                                                                                                                                    EE states while trying to prevent a door from slamming shut her rt hand was caught in betweeen.
## 41737                                                                                                                                                                                 EE states while trying to pull a bed which was stuck she strained her lt shoulder.
## 41738                                                                                                                                                             EE states while trying to pull a paper that was jammed into the printer she pulled a muscle in herback
## 41739                                                                                                                                                          EE states while trying to put cardboard boxes under a freezer the freezer tilted and fell on EE rt thumb.
## 41740                                                                                                                                                                                       EE states while trying to put out a fire she experience respiratory problems
## 41741                                                                                                                                                          EE states while trying to put something on self inside the closet the door closed on his lt middlefinger.
## 41742                                                                                                                                                                                   EE states while trying to remove a chalk wheel by kicking he injured his rt foot
## 41743                                                                                                                                                                                          EE states while trying to remove a laundry cart he twisted his lower back
## 41744                                                                                                                                       EE states while trying to remove a road sign standfrom tool box EE pulled a muscle in his lower rt side.. (lower rt abdomen)
## 41745                                                                                                                                       EE states while trying to remove a tree from a stump the tree rolled and struck EE on the lt inner thigh above the knee area
## 41746                                                                                                                                     EE states while trying to remove a wooden door stop from under a door he got a piece of splinter stuck in his rt middle finger
## 41747                                                                                                                                                                     EE states while trying to remove an object from a pipe his finger was caught between the pipe.
## 41748                                                                                                                                                                                EE states while trying to reposition a ring on a pipe he felt a pop in his lt hand.
## 41749                                                                                                                                                                                                   EE states while trying to restrain a cow he injured his rt hand.
## 41750                                                                                                                                                                                                     EE states while trying to restrain a pt he injuredhis lt knee.
## 41751                                                                                                                                                                                                 EE states while trying to restrain a pt he injuredhis lt shoulder.
## 41752                                                                                                                                                                                                     EE states while trying to restrain a pt he injuredhis rt knee.
## 41753                                                                                                                                                                                      EE states while trying to restrain a pt he was scratched on the rt lower leg.
## 41754                                                                                                                                                                                                      EE states while trying to restrain a pt she injured her back.
## 41755                                                                                                                                                                                                 EE states while trying to restrain a pt she injured her lt finger.
## 41756                                                                                                                                                                  EE states while trying to restrain a pt she struckher head on the door frame injurying her rt eye
## 41757                                                                                                                                                                            EE states while trying to restrain a pt the pt bit him on the left side of the abdomen.
## 41758                                                                                                                                                                                                  EE states while trying to restrain a pt when she injured her back
## 41759                                                                                                                                                             EE states while trying to restrain a student from attacking another student he reinjured his rt elbow.
## 41760                                                                                                                                                                                               EE states while trying to restrain a student he injured his lt thumb
## 41761                                                                                                                                                                                                EE states while trying to restrain a student he injured his rt leg.
## 41762                                                                                                                                                                                           EE states while trying to restrain a student she injured her lower back.
## 41763                                                                                                                                                                          EE states while trying to restrain a student she was struck on the forehead with a brush.
## 41764                                                                                                                                                    EE states while trying to restrain a student the student nose was bleeding and some of the blood got on EE hand
## 41765                                                                                                                                                                             EE states while trying to restrain a student the student struck him on the lt forearm.
## 41766                                                                                                                                                                     EE states while trying to restrain an aggessive client she recd a scratch on her rt upper arm.
## 41767                                                                                                                                                                              EE states while trying to restrain an aggressive inmate his head struck the cell bars
## 41768                                                                                                                                                                     EE states while trying to restrain an aggressive inmate the inmate bit him on the rt upper arm
## 41769                                                                                                                                                                                   EE states while trying to restrain an aggressive pt she injured her rt shoulder.
## 41770                                                                                                                                                                                    EE states while trying to restrain an aggressive resident she injured her back.
## 41771                                                                                                                                                                              EE states while trying to restrain an agressive inmate he fell and injured his rt hip
## 41772                                                                                                                                                  EE states while trying to restrain an agressive inmate he was struck in the throat by the lt elbow of the inmate.
## 41773                                                                                                                                                                                          EE states while trying to restrain an agressive pt he injured his rt arm.
## 41774                                                                                                                                                             EE states while trying to restrain an agressive student he was struck in the chin/mouth by the student
## 41775                                                                                                                                                                                  EE states while trying to restrain an agrressive student he reinjured his rt arm.
## 41776                                                                                                                                                                               EE states while trying to restrain an inmate from fighting he was struck by a chair.
## 41777                                                                                                                                                                                             EE states while trying to restrain an inmate he fell injuring his hip.
## 41778                                                                                                                                                              EE states while trying to restrain an inmate he fell on the floor causing injury to his back and neck
## 41779                                                                                                                                   EE states while trying to restrain an inmate he fell to the floor striking a chair injuring his rt shoulder, rib area, and back.
## 41780                                                                                                                                                                                                EE states while trying to restrain an inmate he injured his lt arm.
## 41781                                                                                                                                                                                EE states while trying to restrain an inmate he struck his lt arm on the steel bars
## 41782                                                                                                                          EE states while trying to restrain an inmate he was bitten on the knuckles of his lt hand by the inmate and his rt wrist struck the cell.
## 41783                                                                                                                                                                                               EE states while trying to restrain an inmate he was exposed to blood
## 41784                                                                                                                                             EE states while trying to restrain an inmate his hand was struck against a wall causing injury to his lt middle finger
## 41785                                                                                                                                                                                        EE states while trying to restrain an inmate his knee struck a metal bench.
## 41786                                                                                                                                                                                EE states while trying to restrain an inmate she injured her rt wrist and shoulder.
## 41787                                                                                                                                                                     EE states while trying to restrain an inmate she was kicked by the inmate injuring her rt arm.
## 41788                                                                                                                                                                                      EE states while trying to restrain an inmate the inmate bit him on the lt arm
## 41789                                                                                                                 EE states while trying to restrain an out of con trol client, kicked EE in the lt ankle which caused it to twist also scratched w/a pen on lt arm.
## 41790                                                                                                                             EE states while trying to restrain student--he placed himself in front of the pt. & pt. Made a quick motion injurying EE. Left forearm
## 41791                                                                                                                                                                                   EE states while trying to restrain two inmate fromfighting his rt eye and rt arm
## 41792                                                                                                                                                                      EE states while trying to restrain two student from fighting she was scratched on the lt arm.
## 41793                                                                                                                                 EE states while trying to restrain two visitors from fighting one of the female visitor stepped onee lt foot with high heel shoes.
## 41794                                                                                                                                                           EE states while trying to retreive a tube with blood she was puncture by a needle on the rt indexfinger.
## 41795                                                                                                                               EE states while trying to retrieve a client sweater from the room she slipped and fell on wet spot on floor and injured her lt knee.
## 41796                                                                                                                                                                     EE states while trying to retrieve a pt from undera bed he was bitten on the rt arm by the pt.
## 41797                                                                                                                                                         EE states while trying to retrieve a razor from aninmate the razor slipped and cut EE on his rt handfinger
## 41798                                                                                                                                                            EE states while trying to retrieve item from a control box the lid of the box struck his rt hand finger
## 41799                                                                                                                                      EE states while trying to retrieve something from the medication cart when she stood up she hit her head on the cabinet door.
## 41800                                                                                                                                                           EE states while trying to runaway from a containerwith fire he felled injurying his rt elbow and rt hip.
## 41801                                                                                                                                                   EE states while trying to secure a gate lock whichwas stuck she used excessive force and felt pain in her lt arm
## 41802                                                                                                                                              EE states while trying to separate two inmates from fighting she struck her rt hand on the cornerof the shower stall.
## 41803                                                                                                                                         EE states while trying to show 2 employee where toput supplies her foot got caught on a box causing injury to her lt knee.
## 41804                                                                                                                                                                     EE states while trying to start a lawn mower by pulling the rope he felt a pain in lower back.
## 41805                                                                                                                                                                           EE states while trying to stop 2 students from fighting she was struck above her rt eye.
## 41806                                                                                                                                    EE states while trying to stop fan from rotating to tighten a bolt he rt index finger was caught between the fan and the wrench
## 41807                                                                                                                                                                                       EE states while trying to stop inmates from fighting he injured his lt knee.
## 41808                                                                                                                                                                               EE states while trying to stop two inmates from fighting he injured his lt shoulder.
## 41809                                                                                                                                                                           EE states while trying to stop two inmates from fighting he injured his rt knee and back
## 41810                                                                                                                                                                                           EE states while trying to subdue a pt his rt hand and wrist was injured.
## 41811                                                                                                                                                                                                 EE states while trying to subdue a subject he injured his rt knee.
## 41812                                                                                                                                                              EE states while trying to subdue an agressive pt. The pt scratched EE on the forearm and facial area.
## 41813                                                                                                                                                                             EE states while trying to subdue an inmate he fellon his lt hand injurying his finger.
## 41814                                                                                                                                                                          EE states while trying to subdue an inmate he injured his back. Txed @ roc - Dr Patterson
## 41815                                                                                                                                                                                            EE states while trying to subdue an inmate he injured his lt lower leg.
## 41816                                                                                                                                                                    EE states while trying to subdue an inmate he was kicked on the rt leg and was expose to blood.
## 41817                                                                                                                                                                               EE states while trying to subdue an inmate his lt finger was caught in the handcuffs
## 41818                                                                                                                                                                               EE states while trying to subdue an inmate in a use of force he injured his lt wrist
## 41819                                                                                                                                                                                    EE states while trying to subdue an inmate the inmate kicked him on the rt leg.
## 41820                                                                                                                                                     EE states while trying to subdue an offender she was shoved against a wall causing rt shoulder and neck injury
## 41821                                                                                                                                                           EE states while trying to take a rubber cover off the end of a needle her lt index finger were punctured
## 41822                                                                                                                              EE states while trying to therapeutically restraina student, the student was being aggressive by swinging, punching and kicking staff
## 41823                                                                                                             EE states while trying to therapeutically restraining a client he kicked EE in the ribs and while trying to control his legs, EE was slammed to the fl
## 41824                                                                                                                                                                  EE states while trying to throw trash in trash binshe lost her balance and fell injuring her back
## 41825                                                                                                                                                            EE states while trying to turn a plug in order fora drain to be cleaned out he injured his lt shoulder.
## 41826                                                                                                                                                                                                     EE states while trying to unlock a lock he injuredhis lt hand.
## 41827                                                                                                                                                                  EE states while trying to unscrew a valve the screwdriver slipped and punctured thumb on lt hand.
## 41828                                                                                                                                                                   EE states while turning corner went over on my rt ankle & fell to the floor, hitting my lt knee.
## 41829                                                                                                                                                                           EE states while turning from his desk he felt a sharp pain in his neck and shoulder arm.
## 41830                                                                                                                                                                       EE states while turning off boiler controller he recd an electrical shock to his chest area.
## 41831                                                                                                                                            EE states while turning off vents in housing unitsshe knock the clock off wall which fell striking EE on her lt forearm
## 41832                                                                                                                                                                                                                      EE states while turning pt felt shoulder pop.
## 41833                                                                                                                      EE states while turning pt, the pt grabbed the sheet and EE felt cramp in her back. Was not reported until 08-10-01. EE has had back surgery.
## 41834                                                                                                                                                                                                    EE states while turning she felt a sharp pain in her lower back
## 41835                                                                                                                                                              EE states while turning the key to unlock a door which was difficult to open the injured her lt wrist
## 41836                                                                                                                                                                           EE states while turning the knob to open door she felt a sharp pain in her rt wrist/hand
## 41837                                                                                                                                                         EE states while turning the switch off the electrical panel he received an electrical shock to his rt hand
## 41838                                                                                                                                        EE states while turning the tv off with the remotecontrol the wire of the remote control shocked himon the rt index finger.
## 41839                                                                                                                                                              EE states while turning to place a box of frozen meat onto a shelf he felt a twinge in his lower back
## 41840                                                                                                                            EE states while turning to walk away, right ankle pounded, her rt. Ankle was injured last year at work, on the job & did not heal right
## 41841                                                                                                                                                                                              EE states while turning water valve that some trash got into his eye.
## 41842                                                                                                                                                       EE states while typing and sitting in a chair the chair broke at the base causing EE to fall onto the floor.
## 41843                                                                                                                                         EE states while typing at computer table she pushed away with both legs turning to the right when she felt her rt knee pop
## 41844                                                                                                                                                                             EE states while typing on the computer she felt a sharp pain in her rt wrist and thumb
## 41845                                                                                                                                                                    EE states while typing she began to have pain in her rt wrist/arm/hand with continual swelling.
## 41846                                                                                                                                                         EE states while under a car assisting a student during class a piece of metal fell and went into EE rt eye
## 41847                                                                                                                                                                       EE states while unhooking the equipment trailer from the van he pulled something in his back
## 41848                                                                                                                                                                        EE states while unloading a car she slipped and struck her upper jaw on the door of the car
## 41849                                                                                                                                                                                  EE states while unloading a dump truck a grate fell striking EE lt middle finger.
## 41850                                                                                                                                                                                         EE states while unloading a dumptruck the tailgatefell crushing EE lt hand
## 41851                                                                                                                                                                      EE states while unloading a laundry truck she got a splinter on the upper lt side of her back
## 41852                                                                                                                                                                 EE states while unloading a locker he twisted his lt knee when he stepped off the back of a truck.
## 41853                                                                                                                                                                            EE states while unloading a truck he stepped into a hole and fell twisting his rt knee.
## 41854                                                                                                                                                                         EE states while unloading a truck taking a lock off--the lock fell striking EE on the head
## 41855                                                                                                                                    EE states while unloading boxes from a van into a scissor lift his foot slipped on a damp suface causing injury t h8is rt elbow
## 41856                                                                                                                                                                                                  EE states while unloading boxes into trunk of car injured lt arm.
## 41857                                                                                                                                                                                        EE states while unloading buses to mail field jackets he injured his rt arm
## 41858                                                                                                                                                                           EE states while unloading cans from the back of a truck he fell and injured his lt knee.
## 41859                                                                                                                                                       EE states while unloading clothing at the salvation army he turned to pick up clothing and stepped on a nail
## 41860                                                                                                                                                                                              EE states while unloading commodities off a truck he injured his back
## 41861                                                                                                                                                               EE states while unloading concrete he felt burningsensation of his abdomen which has caused a hernia
## 41862                                                                                                                                                           EE states while unloading cones and quick ups in parking lot, he developed shoulder pain and neck spasms
## 41863                                                                                                                                                                                             EE states while unloading paper from truck the box fell on his rt hand
## 41864                                                                                                                                                                       EE states while unloading pt from an activity bus she struck her head on a rear view mirror.
## 41865                                                                                                                                                        EE states while unloading steele bed frames with a hand truck the frame dropped striking EE on the lt thumb
## 41866                                                                                                               EE states while unloading tools from a truck he struck his head on a pipe rack that was located above his head causing injury to his head, neck, etc
## 41867                                                                                                                                                                                                     EE states while unloading truck the load lock struck lt wrist.
## 41868                                                                                                                                                                                EE states while unloading trucks he received a tear to his lt rotator cuff/shoulder
## 41869                                                                                                                                             EE states while unlocking a door the bottom of thedoor was caught in a cord and flew back striking EE on the forehead.
## 41870                                                                                                                                                                                EE states while unlocking a door the wind blew thedoor striking him on the rt hand.
## 41871                                                                                                                                                             EE states while unlocking a door to let a patient out for breakfast the patient struck him in the face
## 41872                                                                                                                                                                                       EE states while unlocking a gate the chain fell and struck EE on the rt knee
## 41873                                                                                                                                                       EE states while unlocking a interlock bar to a gate when the bar struck her in the back and rt shoulder area
## 41874                                                                                                                                                                                                      EE states while unlocking a lock he pinched his rtring finger
## 41875                                                                                                                                                   EE states while unlocking a trap door to retrieve an inmate's lunch tray the inmate threw some urinein his face.
## 41876                                                                                                                                                       EE states while unlocking hallway door, hurt rt hand between 1st and 2nd fingers. Lock appeared to be broken
## 41877                                                                                                                                                              EE states while unlocking the back door of a bus the wind blew causing door to strike EE on the head.
## 41878                                                                                                                                                                                                      EE states while unlocking the bathroom door, her thumb popped
## 41879                                                                                                                                                          EE states while unlocking the padlock to a gate his rt forearm was caugth on the razor wire causing a cut
## 41880                                                                                                                                                   EE states while unlocking the sercurity gate when he went to push it open he felt a pain in his upper back area.
## 41881                                                                                                                           EE states while unlocking trap doors he felt something strike him on the arm and back of lt leg--the substance was human feces and urine
## 41882                                                                                                                                       EE states while unplugging the heat element from the wall a cup of boiling water flipped over and spilled on her rt arm/hand
## 41883                                                                                                                                                EE states while up from her chair her foot was caught in the phone cord causing her to sprain herlt ankle and knee.
## 41884                                                                                                                     EE states while using a back pack vaccum cleaner something on the carpet, back pack weights caused EE to fall against the metal back os seats.
## 41885                                                                                                                                                                             EE states while using a bolt cutter to cut off a lock she felt a pull in her back area
## 41886                                                                                                                                                                           EE states while using a bush ax to cut and remove a bush he accidently cut his lt finger
## 41887                                                                                                                                                                            EE states while using a drill to drill a hole the drill slipped injurying EE lt finger.
## 41888                                                                                                                                                                         EE states while using a hand held scrubbing block she started having pain in her rt wrist.
## 41889                                                                                                                                                               EE states while using a hand held wire brush to clean gate some of the particle went into his lt eye
## 41890                                                                                                                                                                           EE states while using a knife to cut carpet the knife slipped and cut EE on his lt hand.
## 41891                                                                                                                                                   EE states while using a knife to cut stair tread cover from steps the knife slipped causing EE to cut his rt leg
## 41892                                                                                                                                                                                                            EE states while using a metal blade he cut his lt cheek
## 41893                                                                                                                                           EE states while using a metal frame hand truck to move computer equipment from an office he felt sharp pain in his back.
## 41894                                                                                                                                          EE states while using a nail gun and while depressing on a board he missed the board and the nail went into his rt thigh.
## 41895                                                                                                                                                                                    EE states while using a pocket knife to cut a hole in belt she cut her rt thumb
## 41896                                                                                                                                                                        EE states while using a portable grinder for tool repair some particle flew into his lt eye
## 41897                                                                                                                           EE states while using a propane torch to work on water pipe/line the steam from the torch caused a burn on the upper chest/shoulder area
## 41898                                                                                                                                                       EE states while using a scapel to remove a suture he accidently punctured his lt hand/finger with the scapel
## 41899                                                                                                                                                                                  EE states while using a trencher to cut soil he strained his lt shoulder and neck
## 41900                                                                                                                                           EE states while using an automatic tree tractor to pull roots out of ground he came in contact with some poisonous plant
## 41901                                                                                                                                                     EE states while using an electrical screw driver it slipped out his hand and injured his thumb on his lt hand.
## 41902                                                                                                                                                                        EE states while using buffing machine to strip old wax from floor he injured his lower back
## 41903                                                                                                                                                                                                 EE states while using computer for work has noticed pain in wrist.
## 41904                                                                                                                                       EE states while using force on inmate he hurt his back as he and inmate fell to the floor in the shipping and receiving area
## 41905                                                                                                                                            EE states while using hand truck to move a pallet of feed, when the feed fell over on top of him. **form 18 filed******
## 41906                                                                                                                                                                     EE states while using handcuffs to restrain an inmate his rt thumb was caught in the handcuffs
## 41907                                                                                                                                                           EE states while using rope to lower bucket into water to collect sample she felt sharp pain in both arms
## 41908                                                                                                                                                                         EE states while using the floor buffer back and forth he started feeling pain in his spine
## 41909                                                                                                                                EE states while using the folding machine to fold letters she went to unplug the machine when she recd electric shock to her lt arm
## 41910                                                                                                                                                                                                   EE states while using the sledge hammer he injuredhis lower back
## 41911                                                                                                                                                          EE states while utilizing a sheild during a use offorce the handle on the sheild cut his rt middle finger
## 41912                                                                                                                                                                                                      EE states while visiting a defendant a dog bit himon the leg.
## 41913                                                                                                                                                                                      EE states while visiting a home of an offender something blew into his lt eye
## 41914                                                                                                                                                                                         EE states while visiting a offender home he was bitten by a dog on the leg
## 41915                                                                                                                                                                        EE states while visiting a probationer he stepped in a hole and injured his lower back area
## 41916                                                                                                                            EE states while visiting a probationers home he tripped and fell over some steps causing his lt finger to strike against the door bell.
## 41917                                                                                                                                     EE states while visiting an offender at his residence he stepped off the porch and missed a step and felt a pop in his lt knee
## 41918                                                                                                                    EE states while visiting an offender's home the dog of the offender approached her and licked her lt hand. EE was later told the dog was rabid.
## 41919                                                                                                                                                               EE states while visiting an offenders residence she tripper over some trash and injured her lt ankle
## 41920                                                                                                                                                                                 EE states while visiting offender home he was bitten by a dog on his lower lt back
## 41921                                                                                                                                                                                      EE states while visiting the offender's home he was scratched by a rusty nail
## 41922                                                                                                                                                 EE states while waiting at a stop light a car came from behind and struck the vehicle causing shoulder/back injury
## 41923                                                                                                                                             EE states while waiting at a stop light a car camefrom behind and struck the vehicle from the rear causing back injury
## 41924                                                                                                                                         EE states while walking 0n the sidewalk his foot slipped and while trying to keep himself from falling he injured his back
## 41925                                                                                                                                                                                                       EE states while walking a fan blew something into his rt eye
## 41926                                                                                                                            EE states while walking a hallway she slipped and fell on some wax that had been recently applied to the floor causing a lt knee injury
## 41927                                                                                                                                                                                      EE states while walking across a boarding dock shefell and injured her rt hip
## 41928                                                                                                                                                                                               EE states while walking across a parking lot she twisted her rt foot
## 41929                                                                                                                                                                                                           EE states while walking across a room his lt knee popped
## 41930                                                                                                                                                           EE states while walking across parking lot he slipped and fell on ice striking his rt knee on the ground
## 41931                                                                                                                                                                            EE states while walking across parking lot she stepped on a rock twisting her rt ankle.
## 41932                                                                                                                                                                      EE states while walking across the parking lot he slipped and fell on ice causing back injury
## 41933                                                                                                                                                                          EE states while walking across the yard he slipped and fell on ice causing lt knee injury
## 41934                                                                                                                                                                                              EE states while walking across the yard, he lost his footing and fell
## 41935                                                                                                                                     EE states while walking across warehouse to loading dock he slipped and fell on concrete floorinjuring lt hip, elbow, and knee
## 41936                                                                                                                                                                                                        EE states while walking across yard a bug flew into his ear
## 41937                                                                                                                                                 EE states while walking along side of a road he stepped in a hole causing him to fall forward injuring his lt knee
## 41938                                                                                                                                                           EE states while walking approaching a ramp she slipped and fell on ice causing her to injure her lt knee
## 41939                                                                                                                                                                            EE states while walking around a camper she walkedinto unknown object striking her head
## 41940                                                                                                                          EE states while walking around checking work stations an inmate was grinding a piece of metal when some of the metal got into his lt eye.
## 41941                                                                                                                                                                         EE states while walking around fence she slipped and fell on a slope twisting her rt foot.
## 41942                                                                                                                                                EE states while walking around the stairwell he turned and struck the lt side of his head on the corner of the step
## 41943                                                                                                                                                                                                  EE states while walking at a fast pace her lt footbecame swollen.
## 41944                                                                                                                     EE states while walking back to her office when she fell. She landed on her rt hip and injured her rthand and arm in trying to catch her fall.
## 41945                                                                                                                                                                           EE states while walking back to tower to return weapons she felt weak and almost fainted
## 41946                                                                                                                                                                          EE states while walking between buildings he slipped and fell on ice twisting his lt knee
## 41947                                                                                                                                                         EE states while walking by a steam valve the valvereleased some steam causing it to strike EE on thelt ear
## 41948                                                           EE states while walking by resident room to observe resident walking to bathroom, resident was losing balance falling backward, I went toward res., to brace fall and tripped over my feet hit floor. ()
## 41949                                                                                                                                                                               EE states while walking by the control tower, she was hit in the head by the basket.
## 41950                                                                                                                                                     EE states while walking coming from gatehouse she slipped on an unknown object and twisted and fell on rt knee
## 41951                                                                                                                                                                        EE states while walking down a hall he slipped andfell on floor injuring his rt hand/finger
## 41952                                                                                                                                           EE states while walking down a hall she slipped ona wet spot causing injury to her lt foot/ankle andleg--rt arm/shoulder
## 41953                                                                                                                          EE states while walking down a hall she slipped onsome water which was around a water fountain causing injury to her rt ankle and rt hand
## 41954                                                                                                                                                   EE states while walking down a hallway she fell tothe floor and when she tried to get up she injuredher rt knee.
## 41955                                                                                                                                                                                   EE states while walking down a hill he stepped into a hole twisting his lt knee.
## 41956                                                                                                                                                              EE states while walking down a hill she slipped and fell injuring her rt ankle. Triangle orth/Dr Hall
## 41957                                                                                                                                                                                          EE states while walking down a sidewalk he turned and twisted his lt knee
## 41958                                                                                                                                                                                  EE states while walking down a sidewalk she trip and fell on both hands and knees
## 41959                                                                                                                     EE states while walking down an incline toward themaster control her rt foot slipped causing her to fall injuring her rt knee, ankle, and foot
## 41960                                                                                                                                                                           EE states while walking down an uneven hill she slipped and fell injurying her rt ankle.
## 41961                                                                                                                                                         EE states while walking down hall he slipped on wet floor causing him to fall injuring his rt armsand legs
## 41962                                                                                                                                 EE states while walking down hall her arm rubbed against an inmate who had poison ivy. EE states she now has a rash on her rt arm.
## 41963                                                                                                                         EE states while walking down hallway he slipped and fell backwards landing on his hands--this has caused headaches and soreness in lt knee
## 41964                                                                                                                                                                                         EE states while walking down hallway she slipped and twisted her rt ankle.
## 41965                                                                                                                        EE states while walking down indoor stairs, her left heel got stuck, shoe came off, she lost her balance and tumbled foward onto left elbow
## 41966                                                                                                                                                                                    EE states while walking down some stairs her lt knee gave out and she felt pain
## 41967                                                                                                                                                                                             EE states while walking down some steps he felt a pain in his rt knee.
## 41968                                                                                                                                                                            EE states while walking down some steps he slippedfell inujury both knees and lt elbow.
## 41969                                                                                                                                EE states while walking down some steps her foot slipped out from under her causing her to fall landing on her face on the concrete
## 41970                                                                                                                                                                      EE states while walking down some steps she misseda steps causing her to sprain her rt ankle.
## 41971                                                                                                                                                                                          EE states while walking down some steps she twisted her rt ankle and knee
## 41972                                                                                                                                                                                                   EE states while walking down stairs he felt pain in his lt knee.
## 41973                                                                                                                                                                                       EE states while walking down stairs he tripped and fell injured his lt ankle
## 41974                                                                                                                                                                                                         EE states while walking down stairs he twisted his lt knee
## 41975                                                                                                                                                                              EE states while walking down stairs his foot turned the wrong way causing him to fall
## 41976                                                                                                                                                                        EE states while walking down stairs my left knee turned and there was sharp pain in my knee
## 41977                                                                                                                                                                                        EE states while walking down stairs she felt a pulled or strain in her back
## 41978                                                                                                                                                                                                     EE states while walking down steps he felt a pop in his ankle.
## 41979                                                                                                                                                                            EE states while walking down steps he slipped and struck his rt hand on the steel rail.
## 41980                                                                                                                                                                          EE states while walking down steps her leg went out from under her injurying her rt knee.
## 41981                                                                                                                                          EE states while walking down steps she begin to fall while catching herself to keep from falling she twisted her lt ankle
## 41982                                                                                                                                                                                              EE states while walking down steps she fell and twisted her lt ankle.
## 41983                                                                                                                                                                                                 EE states while walking down steps she fell injurying her lt ankle
## 41984                                                                                                                                                                                EE states while walking down steps she slipped andfell injuring her knee and lt arm
## 41985                                                                                                                                                          EE states while walking down steps she slipped andfell missing a step causing injury to her back andankle
## 41986                                                                                                                                                                                      EE states while walking down steps she twisted herfoot injurying her rt knee.
## 41987                                                                                                                                                                  EE states while walking down the administration hall she fell on wet floor and struck her rt knee
## 41988                                                                                                                                                                                             EE states while walking down the hall he felt something in his rt eye.
## 41989                                                                                                                                             EE states while walking down the hall he stepped and slipped on a glass board causing injury to hiscoccyx/sacral area.
## 41990                                                                                                                                                 EE states while walking down the hall he struck his head on the bottom of the camera which was mounted on the wall
## 41991                                                                                                                                                                            EE states while walking down the hall she slipped and fell on a slick spot on the floor
## 41992                                                                                                                                                                       EE states while walking down the hall to a meetingshe slipped and fell twisting her rt ankle
## 41993                                                                                                                       EE states while walking down the hallway he slipped and fell on wet floor injuring his back and shoulder--the water was leaking from ceiling
## 41994                                                                                                                          EE states while walking down the hallway her foot slipped and while trying to keep herself from falling she injured her lt shoulder/thumb
## 41995                                                                                                                                                               EE states while walking down the sidewalk she was struck on her lt arm by another staff member elbow
## 41996                                                                                                                               EE states while walking down the stairs to pick upthe morning mail she twisted her ankle turning to go down the second set of stairs
## 41997                                                                                                               EE states while walking downs some steps his foot slipped from under and while grabbing the rail to break the fall he injured his rt and lt shoulder
## 41998                                                                                                                                                       EE states while walking from a building he slippedand fell on a rubber mat outside the door injuring rt knee
## 41999                                                                                                                                                                           EE states while walking from a building to anothershe was stung by a bee to the rt thumb
## 42000                                                                                                                                                        EE states while walking from a copy machine he tripped over a box causing injury to his back, kneefoot, etc
## 42001                                                                                                                                                                          EE states while walking from acute hosp she slipped and fell striking her rt knee and hip
## 42002                                                                                                                                                                            EE states while walking from office she stepped ona rock and fell twisting her lt foot.
## 42003                                                                                                                                                 EE states while walking from one building to another he slipped and fell on ice causing injury to his arm and back
## 42004                                                                                                                                         EE states while walking from one bus to another he slipped and fell on ice while in parking lot injuring rt elbow and face
## 42005                                                                                                                                                                 EE states while walking from parking lot to the admininstration building, fell. Sprained lt ankle.
## 42006                                                                                                                         EE states while walking from stairwell to office her lt foot slipped from underneath her she tried to gain balance and landed on her ankle
## 42007                                                                                                                                       EE states while walking from the bathroom he slipped and while trying to keep himself from falling he injured his lower back
## 42008                                                                                                                    EE states while walking from the gatehouse he slipped and fell on ice landing on the pavement causing injury to his neck, shoulders, and finger
## 42009                                                                                                                                                                           EE states while walking from the main building to the gatehouse she twisted her rt ankle
## 42010                                                                                                                                                             EE states while walking from the parking lot he slipped and fell on ice falling on both knees and hand
## 42011                                                                                                                                                                                        EE states while walking he accidently slipped on ice that was on some steps
## 42012                                                                                                                                                                                                 EE states while walking he fell causing injury to his leg and foot
## 42013                                                                                                                                                                                                             EE states while walking he fell injurying his lt knee.
## 42014                                                                                                                                                                                                 EE states while walking he felt something strike him in his rt eye
## 42015                                                                                                                                                                                                   EE states while walking he missed a step and twisted his lt knee
## 42016                                                                                                                                                                                                      EE states while walking he slipped and fell injuring his back
## 42017                                                                                                                                                                                                        EE states while walking he slipped and fell on a wet floor.
## 42018                                                                                                                                                                   EE states while walking he slipped and fell on a wet sidewalk injuring his rt shoulder and wrist
## 42019                                                                                                                                                                            EE states while walking he slipped and fell on ice causing injury to his back and wrist
## 42020                                                                                                                                                                          EE states while walking he slipped and fell on icecausing injury to his rt elbow and hip.
## 42021                                                                                                                                                                                             EE states while walking he slipped and fell on iceinjuring his rt knee
## 42022                                                                                                                                                                                    EE states while walking he slipped and felled on wet floor injuring his lt hip.
## 42023                                                                                                                                                                                EE states while walking he slipped on a small ditch in ground twisting his rt ankle
## 42024                                                                                                                                                                                                               EE states while walking he started having chest pain
## 42025                                                                                                                                                                                     EE states while walking he stepped in a hole causing him to twist his lt ankle
## 42026                                                                                                                                                                   EE states while walking he stepped in a low place on the ground and pulled a muscle in his neck.
## 42027                                                                                                                                                                                             EE states while walking he stepped into a hole andtwisted his rt foot.
## 42028                                                                                                                                                                                      EE states while walking he stepped into a hole in ground twisting his rt knee
## 42029                                                                                                                                                                                                EE states while walking he stepped into a hole injuring his lt knee
## 42030                                                                                                                                                                              EE states while walking he stepped into a washout and slipped off causing back injury
## 42031                                                                                                                                                                       EE states while walking he stepped into some waterand slipped causing injury to his lt knee.
## 42032                                                                                                                                                                                         EE states while walking he stepped off edge road and twisted his rt ankle.
## 42033                                                                                                                            EE states while walking he stepped on a rock and twisted his ankle and while trying to catch his balance he injured his groin/hip area.
## 42034                                                                                                                                                                           EE states while walking he stepped on an uneven pavement and fell injurying his rt knee.
## 42035                                                                                                                                                                                             EE states while walking he stepped on sidewalk andtwisted his lt ankle
## 42036                                                                                                                                                                                                       EE states while walking he tripped and fell striking rt knee
## 42037                                                                                                                                                                                          EE states while walking he tripped on a steel support injuring his rt hip
## 42038                                                                                                                                                                                                                    EE states while walking he twisted his rt ankle
## 42039                                                                                                                                                                                                       EE states while walking her felt she something in her lt eye
## 42040                                                                                                                                                                                                 EE states while walking her foot struck a rope causing her to fall
## 42041                                                                                                                                                 EE states while walking her heel got caught in thebrick on sidewalk causing EE to fall injurying herknee and ankle
## 42042                                                                                                                                                    EE states while walking her lt foot gave away causing her to fall face down injuring her lt leg, foot, and knee
## 42043                                                                                                                                                          EE states while walking her lt foot twisted causing her to fall and injured her rt hip and shoulder area.
## 42044                                                                                                                                                                      EE states while walking her lt foot twisted off sidewalk causing her to injured her lt ankle.
## 42045                                                                                                                                                                             EE states while walking her lt knee gave out causing a sharp pain through the knee cap
## 42046                                                                                                              EE states while walking her rt shoe got hung on a nail that was sticking out of a board and when shetried to pull loose she lost her balance and fell
## 42047                                                                                                                                          EE states while walking his foot slipped causing him to fall injuring his rt knee--EE states the sole of his shoe was wet
## 42048                                                                                                                                                                    EE states while walking his foot slipped causing him to fall on ice injurying his neck and back
## 42049                                                                                                                                                  EE states while walking his foot slipped on ice causing him to fall injurying his rt shoulder, neckand chest area
## 42050                                                                                                                                                            EE states while walking his foot slipped on some wet grass causing EE to fall injuring his rt shoulder.
## 42051                                                                                                                                                                                                               EE states while walking his lt ankle started hurting
## 42052                                                                                                                                                              EE states while walking his lt foot slipped and while trying to keep from falling he injured his back
## 42053                                                                                                                                                                                              EE states while walking his rt foot gave away--- this has caused pain
## 42054                                                                                                                                                       EE states while walking in a thick underbrush a limb from a small tree struck him in on the sideof the face.
## 42055                                                                                                                                                           EE states while walking in a wooded area during an enforcement activity he fell and twisted his lt ankle
## 42056                                                                                                                               EE states while walking in building he slipped on a plastic wrapper and while trying to keep from falling he strained his lower back
## 42057                                                                                                                                                   EE states while walking in parking lot she slippedand fell on ice causing injury to her head, back, and both arm
## 42058                                                                                                                                                                                            EE states while walking in parking lot she slippedand fell on the face.
## 42059                                                                                                                EE states while walking in parking lot stepped on uneven oaved parking and fell hitting mouth on concrete and scrapping lt leg elbow and lt forearm
## 42060                                                                                                                                                                                          EE states while walking in some woods he struck his eye on a tree branch.
## 42061                                                                                                                                                     EE states while walking in staff dining, EE slipped on the wet floor the I/m were mopping. EE fell on rt knee.
## 42062                                                                                                                                                                                EE states while walking in the cooler he stepped on ice and twisting his lower back
## 42063                                                                                                                                                                EE states while walking in the hall to get some supplies she fell to the floor striking her rt knee
## 42064                                                                                                                                                                         EE states while walking in the parking lot he slipped and fell landing on his back and hip
## 42065                                                                                                                                                   EE states while walking in the parking lot he slipped and fell on some ice causing injuring to his neck and back
## 42066                                                                                                                  EE states while walking in wood during a timber exam he reached to push back some branches and it slipped from his hand and struck him in the eye
## 42067                                                                                                              EE states while walking in woods he stepped into a hole that was covered with vegetation and while trying to keep from falling he injured his lt hand
## 42068                                                                                                                                                                                               EE states while walking in yard on sidewalk she twisted her rt ankle
## 42069                                                                                                                                                                                                     EE states while walking in yard something blew into his rt eye
## 42070                                                                                                                                                                          EE states while walking into an office she trippedand fell causing her to twist her ankle
## 42071                                                                                                                                                                            EE states while walking into the kitchen she slipped on wet floor and twisted her back.
## 42072                                                                                                                                                                                EE states while walking making rounds he stepped off a curb and twisted his lt knee
## 42073                                                                                                                                                               EE states while walking on a concrete sidewalk shetwisted her lt foot causing injury to her lt ankle
## 42074                                                                                                                                                                                  EE states while walking on a sidewalk he stepped in a crack and twisted his ankle
## 42075                                                                                                                                    EE states while walking on a sidewalk he stepped into a hole causing injury to his rt knee atty kenneth hardison... F33 filed..
## 42076                                                                                                                                                           EE states while walking on a sidewalk his lt leg slipped off the sidewalk causing injury to his lt knee.
## 42077                                                                                                                                                                                 EE states while walking on a sidewalk the rocks onthe sidewalk caused her to fall.
## 42078                                                                                                                                                                                  EE states while walking on floor it gave way under his right foot. Twisted ankle.
## 42079                                                                                                                                                                                                  EE states while walking on gravel he fell and twisted his lt knee
## 42080                                                                                                                                                                            EE states while walking on hwy guarding inmates he stepped in hole injuring his rt foot
## 42081                                                                                                           EE states while walking on sidewalk behind jacksontower handicap ramp, his ankle gave away & he tumb-led, fell against retaining wall beside of sidewalk
## 42082                                                                                                                                                             EE states while walking on sidewalk he slipped andfell on a patch of ice causing injury to his rt foot
## 42083                                                                                                                                                                      EE states while walking on sidewalk he slipped on ice and fell striking his head and tailbone
## 42084                                                                                                                                                                   EE states while walking on sidewalk he stepped offonto a low spot causing injury to his rt knee.
## 42085                                                                                                                                       EE states while walking on sidewalk her foot got caught in the crack of the sidewalk causing her to fall injuring her rt leg
## 42086                                                                                                                                                           EE states while walking on sidewalk his foot slipped causing him to fall backward injurying hisrt elbow.
## 42087                                                                                                                                                                             EE states while walking on sidewalk his foot slipped causing him to twist his rt ankle
## 42088                                                                                                                                          EE states while walking on sidewalk his foot was caught in a crack of the sidewalk causing EE to fall injuring his rt leg
## 42089                                                                                                                                                              EE states while walking on sidewalk in front of building she stepped on a rock twisting her lt ankle.
## 42090                                                                                                                                                    EE states while walking on sidewalk she slipped and fell to the ground injurying her rt hand, arm, and lt knee.
## 42091                                                                                                                                   EE states while walking on sidewalk with uneven pavement she slipped and while trying to break thefall she injured her lt wrist.
## 42092                                                                                                                                 EE states while walking on the sidwalk he stepped off the edge when his foot slipped causing him to strike his rt knee on a metal.
## 42093                                                                                                                                                                      EE states while walking on uneven ground btwn. Dorms, felt lft. Ft. /leg hurting, ankl. Swlg.
## 42094                                                                                                                                                                        EE states while walking out a door she slipped on a ramp and fell injuring rt ankle/rt foot
## 42095                                                                                                                                                                                EE states while walking out a doorway she lost herbalance and twisted her lt ankle.
## 42096                                                                                                                                                                   EE states while walking out of a door he slipped and fell on wet floor injuring his lt knee/back
## 42097                                                                                                                                                                        EE states while walking out of a door he slipped on ice causing injury to his rt foot/ankle
## 42098                                                                                                                                                                    EE states while walking out of block turned to enter next block felt pain upper side of lt foot
## 42099                                                                                                                                                                    EE states while walking out of comfort inn he tripped and fell on sidewalk injuring his lt hand
## 42100                                                                                                                                                                      EE states while walking out of gate he slipped andfell injuring his arm, hand, leg, and chest
## 42101                                                                                                                                           EE states while walking out of the building she tripped and fell over a rug injurying her finger, hand, knee, and ankle.
## 42102                                                                                                                                                                         EE states while walking out of the front door and stumbled over a black rubber mat. Sprain
## 42103                                                                                                                                                                 EE states while walking out of the parking garage the gate came down and struck her on the lt side
## 42104                                                                                                                                                                                EE states while walking out to dorm he stepped on sidewalk and injured his rt knee.
## 42105                                                                                                                                                                  EE states while walking out to the parking lot sheslipped and fell on ice injurying her rt ankle.
## 42106                                                                                                                                        EE states while walking outside steps of the institution when he slipped, missed a step and came down twisting his rt knee.
## 42107                                                                                                                             EE states while walking she encountered a cement parking barrier and while trying to step over the barrier she struck her rt small toe
## 42108                                                                                                                                                                                                                 EE states while walking she fell and stump her toe
## 42109                                                                                                                                                                                                    EE states while walking she fell and twisted her lt and rt knee
## 42110                                                                                                                                                          EE states while walking she fell over a tree limb that was on the sidewalk causing injury to her lt ankle
## 42111                                                                                                                                                                                                                     EE states while walking she felt her knee pop.
## 42112                                                                                                                                        EE states while walking she felt pain in abdomen causing her to be dizzy and fainted--EE struck head on floor when she fell
## 42113                                                                                                                                     EE states while walking she lost her balance and while trying to keep herself from falling she feltpain in her lower back area
## 42114                                                                                                                                                                                     EE states while walking she slipped and fell injuring her rt wrist and lt knee
## 42115                                                                                                                                                                                      EE states while walking she slipped and fell injurying her neck and back area
## 42116                                                                                                                                                                EE states while walking she slipped and fell on a wet waxed floor injuring her rt hip and lt elbow.
## 42117                                                                                                                                                              EE states while walking she slipped and fell on her rt side causing injury to her back, hip and ankle
## 42118                                                                                                                                                                               EE states while walking she slipped and fell on ice on sidewalk striking her lt knee
## 42119                                                                                                                                                                   EE states while walking she slipped and fell on loose gravel causing her to fall on her rt elbow
## 42120                                                                                                                                                                                       EE states while walking she slipped and fell on some mud injuring her rt leg
## 42121                                                                                                                                                                                                        EE states while walking she slipped and fell on wet floor '
## 42122                                                                                                                                                                             EE states while walking she slipped and fell on wet floor injuring her lt shoulder/arm
## 42123                                                                                                                                                            EE states while walking she slipped in some mud and fell to the ground injuring her rt hand and rtknee.
## 42124                                                                                                                                                                           EE states while walking she stepped into a drainage hole in ground twisting her rt ankle
## 42125                                                                                                                                                                                             EE states while walking she stepped off a curb andtwisted her lt knee.
## 42126                                                                                                                                                     EE states while walking she stepped on an uneven sidewalk and fell causing injury to her ribs, foot, and ankle
## 42127                                                                                                                                                      EE states while walking she stepped over a mud hole and her lt leg slid causing her to fall against the wall.
## 42128                                                                                                                                                                                     EE states while walking she tripped and fell on a sidewalk injuring both knees
## 42129                                                                                                                                                                                                 EE states while walking she tripped and fell twisting her lt ankle
## 42130                                                                                                                                                                             EE states while walking she tripped over shelf equipment causing injury to rt forearm.
## 42131                                                                                                                                                                            EE states while walking she tripped over uneven sidewalk striking her head on the fence
## 42132                                                                                                                                                                                               EE states while walking she twisted her foot injurying her lt ankle.
## 42133                                                                                                                                                                                                                    EE states while walking she twisted her lt foot
## 42134                                                                                                                                                                                                                  EE states while walking she twisted her rt ankle.
## 42135                                                                                                                EE states while walking the hallway she tripped over a door seal and while trying to keep from falling she injured her lt knee, wrist, and shoulder
## 42136                                                                                                                                                                                         EE states while walking through a door the door closed on her rt shoulder.
## 42137                                                                                                                                                                              EE states while walking through a gate the door of the gate closed on his rt shoulder
## 42138                                                                                                                                                                             EE states while walking through admin area she rolled her ankle over injuring lt ankle
## 42139                                                                                                                                                                EE states while walking through door he umbrella became lodged in door causing EE to fall on carpet
## 42140                                                                                                                                                                    EE states while walking through door she slipped and fell on some grease that was on the floor.
## 42141                                                                                                               EE states while walking through door w/one blanketand hit door w/lt. Immediately felt pain and whelpdeveloped on lt little finger and swollen joint.
## 42142                                                                                                                                                     EE states while walking through dorm she slipped and fell over electrical cord fan injuring lt handand rt knee
## 42143                                                                                                                                         EE states while walking through offcier station he accidentaly hit the back of his rt hand on metal corner of firehose box
## 42144                                                                                                                                                                           EE states while walking through parking lot he stepped on a roofing nail with right foot
## 42145                                                                                                                                                                                                            EE states while walking through parking lot slid on ice
## 42146                                                                                                                                                                         EE states while walking through the kitchen he slipped and struck his rt knee on the floor
## 42147                                                                                                                                                                EE states while walking through the nursery 1, sheslipped in the mud causing her to turn her ankle.
## 42148                                                                                                                                                                                                 EE states while walking through woods a bee stung her on the nose.
## 42149                                                                                                                                                                                           EE states while walking through woods he came in contact with poison ivy
## 42150                                                                                                                                                                              EE states while walking thru a door he stepped on a 2 x 4 and twisted his rt leg/knee
## 42151                                                                                                                                                                         EE states while walking thru a gate the gate door closed pinning EE against the gate post.
## 42152                                                                                                                                                                                            EE states while walking thru a slide door the doorstruck EE rt shoulder
## 42153                                                                                                                                                                    EE states while walking thru cafeteria he slipped and fell on an onion skin injuring his lt hip
## 42154                                                                                                                                                                                                  EE states while walking thru door the door closed on her shoulder
## 42155                                                                                                                                                 EE states while walking thru hallway she slipped and fell on a freshly waxed floor injuring both knees and elbows.
## 42156                                                                                                                                                       EE states while walking thru the control door she slipped and fell striking her lt knee, rt hip and rt wrist
## 42157                                                                                                                                                                                            EE states while walking thru woods a tree limb struck him in the lt eye
## 42158                                                                                                                                                                          EE states while walking to a building he slipped and fell on ice causing a rt knee injury
## 42159                                                                                                                      EE states while walking to a building her lt foot was caught on the coffee table causing her to loseher balance and fall injuring her rt knee
## 42160                                                                                                                                                                            EE states while walking to a building she slipped and fell injuring her finger and knee
## 42161                                                                                                                                                                   EE states while walking to a van his foot slipped from under him causing him to fall on his back
## 42162                                                                                                                                          EE states while walking to a work station his footslipped causing EE to fall on the floor injurying his back and stomach.
## 42163                                                                                                                                              EE states while walking to another building she slipped and fell on some rocks on sidewalk twisting her lt knee/ankle
## 42164                                                                                                                                                                           EE states while walking to another station she tripped and fell injuring rt arm/shoulder
## 42165                                                                                                                           EE states while walking to building she slipped onicy parkig lot & fell on left knee. Thought she was ok but now has boney knot on knee.
## 42166                                                                                                                                                  EE states while walking to car I slipped off of sidewalk on left foot and somehow rolled my ankle. Ankle pain. ()
## 42167                                                                                                                                                                 EE states while walking to car his foot slipped onthe gravel causing injury to his lt hip and back
## 42168                                                                                                                                                                   EE states while walking to car she slipped and fell on ice in parking lot causing rt hand injury
## 42169                                                                                                                                                                      EE states while walking to control room an inmate struck him on the head with a broom handle.
## 42170                                                                                                                                                    EE states while walking to her car after a meetingshe stepped on a rock and fell injuring her rt hand and knee.
## 42171                                                                                                                                       EE states while walking to her car at the end of her work day she stepped off of the curb and fell. Twisted lt leg and ankle
## 42172                                                                                                                                                   EE states while walking to her vehicle in the parking lot she slipped and fell on some rock injuring her lt knee
## 42173                                                                                                                                EE states while walking to his assigned post he stepped off the sidewalk onto an uneven ground causing injury to his lt knee/lt leg
## 42174                                                                                                                                                                                                      EE states while walking to his car he slipped and fell on ice
## 42175                                                                                                                                                                              EE states while walking to his office he stepped into a pothole twisting his rt ankle
## 42176                                                                                                                                                                                      EE states while walking to post she stepped into aditch injuring her rt knee.
## 42177                                                                                                                                                  EE states while walking to report to her work station she slipped and fell on ice causing injuryto both her knees
## 42178                                                                                                                           EE states while walking to storage to put away clean laundry she slipped and fell on the wet floor injuring her hands, knee, ankle, back
## 42179                                                                                                                                        EE states while walking to the building she fell into the rail on the side of the walkway causing injury to her lower back.
## 42180                                                                                                                                                                                EE states while walking to the dorm she twisted her lt foot injurying the lt ankle.
## 42181                                                                                                                                                                                       EE states while walking to the nursing station shefell injurying both knees.
## 42182                                                                                                                      EE states while walking to the office he turned to go into the office when the ledge on the door caught his shirt causing lt upper arm injury
## 42183                                                                                                                                                EE states while walking to the printer he bumped into a couch and lost his balance and fell---EE has cerebral palsy
## 42184                                                                                                                                                 EE states while walking to the transfer bus he slipped and fell on ice falling backward causing injury to his head
## 42185                                                                                                                                                                         EE states while walking to the warehouse she stepped off a slope and injured her lt ankle.
## 42186                                                                                                                        EE states while walking to unit #4 and stepped in a hole beside the sidewalk, his lft foot overturned and EE caught hisself on his rt knee.
## 42187                          EE states while walking to work from parking deck, she stumbled on the top step of stairs next to dobbs building on salisbury street. She stated she didn't fall all the way to the ground but caught herself before she hit her face. ()
## 42188                                                                                                                                     EE states while walking toward copier her foot slipped on wet floor causing her to fall injuring her lt hand, knee and buttock
## 42189                                                                                                                                                           EE states while walking toward storage building outside he slipped and fell on ice injurying his lt knee
## 42190                                                                                                                                           EE states while walking toward the office she started to fall and while trying to keep from falling she injured her back
## 42191                                                                                                                                                                      EE states while walking under water pipe in a basement he struck his head on the piper hanger
## 42192                                                                                                                                                                        EE states while walking up a hill her knee gave out which caused her to twist her lt ankle.
## 42193                                                                                                                                                                              EE states while walking up a hill she felt something pulled in the back of her lt leg
## 42194                                                                                                                                                                         EE states while walking up a ramp she slipped and felled injuring her rt hand and rt knee.
## 42195                                                                                                                                                                                                          EE states while walking up a ramp she twisted her lt foot
## 42196                                                                                                                                                                  EE states while walking up driveway coming to workhe slippped and fell on ice falling on his back
## 42197                                                                                                                                         EE states while walking up hill his lt foot slip and while trying to catch himself from falling he injured his rt shoulder
## 42198                                                                                                                                                                                        EE states while walking up some stairs he pulled a muscle in his groin area
## 42199                                                                                                                                                         EE states while walking up some stairs he stumped his lt foot on the steps causing lt foot and ankleinjury
## 42200                                                                                                                                                                                               EE states while walking up some stairs she fell injuring her rt knee
## 42201                                                                                                                                                                    EE states while walking up some steps she missed astep causing her to fall injurying her lt hip
## 42202                                                                                                                                                                                  EE states while walking up some steps she tripped and fell injurying her rt knee.
## 42203                                                                                                                                                                                                    EE states while walking up stairs he felt a pull in his lt knee
## 42204                                                                                                                                                                                          EE states while walking up stairs his rt knee he felt pain in his rt knee
## 42205                                                                                                                                       EE states while walking up steps in the rain her feet slipped on some leaves causing her to fall injurying her back and leg.
## 42206                                                                                                                                                     EE states while walking up the stairs to the 2nd floor she missed a step and hit her lt ankle against the step
## 42207                                                                                                                                                                                         EE states while walking upstairs he pulled a muscle in his leg/groin area.
## 42208                                                                                                                                                                                       EE states while walking upstairs he tripped and fell injurying his lt ankle.
## 42209                                                                                                                                       EE states while walking upstairs to post the gun locker cabinet door was left open causing EE to strike his head against it.
## 42210                                                                                                                                                                                    EE states while walking with bloodhoods he felt a sharp pain of his rt toe/foot
## 42211                                                                                                                                                                 EE states while walking with client down a hallwaythe client jerk EE causing injury to her lt hip.
## 42212                                                                                                                                                                               EE states while walking with client down a hill client grabbed and squeezed EE hand.
## 42213                                                                                                                                                 EE states while walking with client using walking belt to prevent client from falling straining neckand shoulders.
## 42214                                                                                                                                                                                            EE states while washing a pot the pot slipped striking EE in the mouth.
## 42215                                                                                                                                                                                       EE states while washing and lifting cart she felt pain in her low back area.
## 42216                                                                                                                                                                                                                     EE states while washing can she cut her thumb.
## 42217                                                                                                                                                               EE states while washing hands in bathroom some of the soap splashed into her eyes causing irritation
## 42218                                                                                                                                                            EE states while washing his hands he pushed the soap dispenser causing the soap to splash in his rt eye
## 42219                                                                                                                                              EE states while washing out the boiler with a cleaning solution some of the water splashed into his face and eye area
## 42220                                                                                                                                                                           EE states while watch repair of leaf vac, hood of discharge shoot fell & hit left leg ()
## 42221                                                                                                                                                                   EE states while wearing boots during pert trainingthe boots has caused blistering on his lt foot
## 42222                                                                                                                                                                                    EE states while weeding a hill he slipped and fellinjurying his lt ring finger.
## 42223                                                                                                                                                                                                      EE states while welding a piece of metal got into his rt eye.
## 42224                                                                                                                                                                                  EE states while welding a slag came off from undera hood and went into his lt eye
## 42225                                                                                                                                                                                  EE states while welding complained of eye irritation and blurred visionin lt eye.
## 42226                                                                                                                                                                                                       EE states while welding he received flash burns to both eyes
## 42227                                                                                                                                                                   EE states while welding metal he went to pick up a piece of the metal when he felt his back pop.
## 42228                                                                                                                                                                                  EE states while wiping down a stairwell tried to get up felt a catch in her back.
## 42229                                                                                                                                  EE states while with inmates picking up bottled ofall purpose spray cleaner; EE alleged that contact caused an allergic reaction.
## 42230                                                                                                                                                                            EE states while withdrawing a needle from a pt armthe needle tip punctured her rt thumb
## 42231                                                                                                                                     EE states while working a control panel and while removing the cap she received an electrical shock to her rt fingers and arm.
## 42232                                                                                                                    EE states while working a fire tension on a tree loosened causing the tree to strike his facial area with his teeth nearly penetrating his lip.
## 42233                                                                                                                                                                                   EE states while working a nurses desk--she struck the corner of desk with elbow.
## 42234                                                                                                                                                                                                              EE states while working a rack fell on her right foot
## 42235                                                                                                                                                                    EE states while working a traffic post he stepped off a retaining wall and twisted his lt knee.
## 42236                                                                                                                                                                                EE states while working and standing in a boat he fell backwards injuring his back.
## 42237                                                                                                                                                          EE states while working as north yard officer she was trying to unlock a-dorm and hurt left index finger.
## 42238                                                                                                                                                            EE states while working at a command post in a grassy area she received a tick bite to her abdomen area
## 42239                                                                                                                                                EE states while working at night she stepped into a hole and twisted her rt ankle causing her to fall to the ground
## 42240                                                                                                                   EE states while working at pepsi cola's annaul tall ships festival, he was exposed to high temp for long periods causing heat rash on lower legs
## 42241                                                                                                                                                     EE states while working at the desk she reached over to plug up stapler & banged her lt wrist against the desk
## 42242                                                                                                                                           EE states while working come along, he has to usesexcessive force to get streamline aligned. Used every part of his body
## 42243                                                                                                                                                                      EE states while working direct patient care, EE had lifted all day and strained left shoulder
## 42244                                                                                                                                                                                           EE states while working during a fire it caused his blood sugar to go up
## 42245                                                                                                                                                                                   EE states while working he was stung by a yellow jacket on the rt little finger.
## 42246                                                                                                                                                                                                     EE states while working her crew some dust got into her rt eye
## 42247                                                                                                                                                                             EE states while working in a ditch to install a new sewer line he scraped his rt elbow
## 42248                                                                                                                                                                                                EE states while working in a tobacco field she twisted her rt ankle
## 42249                                                                                                                                        EE states while working in office she was exposed to mold which caused her to have asthma symptoms per her family physician
## 42250                                                                                                                                                                                         EE states while working in the electronics shop and was bitten by insects.
## 42251                                                                                                                                                    EE states while working in the flower bed outside of the cottage a client pushed wheelchair into theback of EE.
## 42252                                                                                                                                                                                             EE states while working in the gym she noticed a rash on her rt ankle.
## 42253                                                                                                                                                                                     EE states while working in the kitchen fell to the floor twisting his lt ankle
## 42254                                                                                                                                              EE states while working in the kitchen he slipped on a fan cord which was on a wet floor striking his face on the fan
## 42255                                                                                                                                                                                           EE states while working in the woods she came in contact with poison ivy
## 42256                                                                                                                                                                                 EE states while working in the yard he stepped in a hole and twisted his lt ankle.
## 42257                                                                                                                                                                            EE states while working on a fire a pole sprung back off a tractor cab striking rt hand
## 42258                                                                                                                                               EE states while working on a light fixture the grill came loose and fell striking EE on the forehead and rt eye area
## 42259                                                                                                                                                         EE states while working on a water line he lost his balance and fell from a ladder injuring his lower back
## 42260                                                                                                                                                                           EE states while working on an automobile lift he lost his balance and injured his lt arm
## 42261                                                                                                                                                                                                    EE states while working on computer both wrists started to hurt
## 42262                                                                                                                                                                                EE states while working on electrical panel he was exposed to blood from an inmate.
## 42263                                                                                                                                                         EE states while working on hvac line in ceiling on ladder, ladder slipped on wet floor and fell on back ()
## 42264                                                                                                                                                           EE states while working on maintenance field and while lifting and moving fertilizer he injured hisback.
## 42265                                                                                                                                                                                   EE states while working on refrigeration the wind blew some dust into his rt eye
## 42266                                                                                                                                                                                                     EE states while working on tram, drive shaft fell and cut hand
## 42267                                                                                                                               EE states while working on yard duty on f yard a spider dropped off of the building and bit EE on the little finger of her left hand
## 42268                                                                                                                                                                                                EE states while working outside she came in contact with poison ivy
## 42269                                                                                                                                                                                                       EE states while working post he felt something in his rt eye
## 42270                                                                                                                                                               EE states while working road squad as he was walking up a hill his foot slipped causing him to fall.
## 42271                                                                                                                                                                    EE states while working road squad he stepped down into a ditch and felt sharp pain across back
## 42272                                                                                                                                                                                    EE states while working road squad he stepped into a hole injuring his lt ankle
## 42273                                                                                                                                                                                   EE states while working road squad he stepped on the ground twisting his rt knee
## 42274                                                                                                                    EE states while working road squad he stepped overa log when his foot slipped from under him causinghim to pull a muscle in his lt upper thigh.
## 42275                                                                                                                                                                                       EE states while working road squad he was bitten by fire ants on his lt hand
## 42276                                                                                                                                                                                      EE states while working road squad she stepped on a rock twisting her lt foot
## 42277                                                                                                                                                                         EE states while working she began to swell and a rash appeared on her face, chest, and leg
## 42278                                                                                                                                                                                                          EE states while working she noticed her lips were swollen
## 42279                                                                                                                                                                                               EE states while working she started having chest pain and headaches.
## 42280                                                                                                                                            EE states while working the control center she experience a brief dizzy spell causing her to falland injury her rt knee
## 42281                                                                                                                                                                                      EE states while working the control room she was bitten by an unknown insect.
## 42282                                                                                                                                                                                         EE states while working the dorm she felt some dust or trash in her lt eye
## 42283                                                                                                                                                                                     EE states while working the potatoe digger he became overexhausted by the heat
## 42284                                                                                                                                                                                   EE states while working the switch board he bit his tongue while eating an apple
## 42285                                                                                                                                                                                   EE states while working the unit control room she got a splinter in here rt hip.
## 42286                                                                                                                                                                    EE states while working the yards his foot slippedinto a drainage groove twisting his lt ankle.
## 42287                                                                                                                                                                                                EE states while working under a sink something went into his rt eye
## 42288                                                                                                                                                 EE states while working with a box of supplies he receive a laceration to the rt index finger andrt middle finger.
## 42289                                                                                                                          EE states while working with a milking machine she lifted the machine when the machine slipped down causing her rt index finger to be cut
## 42290                                                                                                                                                                                          EE states while working with a squad an unknown insect struck his rt eye.
## 42291                                                                                                                                                         EE states while working with a tube of concentratebromide the tube tipped over and spilled down EE lt leg.
## 42292                                                                                                                                                      EE states while working with cats he started having sinus reaction and over a period of time has gotten worst
## 42293                                                                                                                        EE states while working with client putting up a trash bin the client let go of the bin causing allthe weight to shift straining EE lt arm.
## 42294                                                                                                                                                                                                     EE states while working with inmates he was exposed to scabies
## 42295                                                                                                                                                                EE states while working with pvc pipes his thumb was caught between the handle and the top of pipe.
## 42296                                                                                                                                                                                                   EE states while working with residents she felt pain in her back
## 42297                                                                                                                                                                              EE states while working with road crew he stepped into a hole causing lt ankle injury
## 42298                                                                                                                                                                                            EE states while working with road squad he became fainted from the heat
## 42299                                                                                                                                                              EE states while working with the road squad he began to sweat heavily and became dizzy and dehydrated
## 42300                                                                                                                                                                                                 EE states while working with timber a bee stung him on the lt knee
## 42301                                                                                                                                                                                          EE states while working with tobacco this has caused an allergic reaction
## 42302                                                                                                                                                                                         EE states while working yard duty he was stung by a bee on the lt forearm.
## 42303                                                                                                                                                                        EE states while working yard duty she stepped off concrete and slipped twisting her rt knee
## 42304                                                                                                                                                                                       EE states while wrist started to swell while pulling and turning patients ()
## 42305                                                                                                                                          EE states while writing a ticket a man on a bike going at a high speed ran into her injuring her rt arm, elbow, knee, etc
## 42306                                                                                                                                                               EE states whilepushing med cart out and holding door with the other hand closed door on left hand ()
## 42307                                                                                                                                                            EE states whle opening door to the gym the door went over foot catching foot underneath the steel door.
## 42308                                                                                                                                       EE states will attempting to restrain a student she fell over some chairs causing injury to her rt shoulder, elbow, and back
## 42309                                                                                                                                                                                                         EE states will chasing a patient down he twisted his knee.
## 42310                                                                                                                                                                                             EE states will in scott air pack training a tank feel on 1st left toe.
## 42311                                                                                                                                                                                               EE states wist started to swell causin pain after a k-19 food truck.
## 42312                                                                                                                                     EE states work station is not ergonomically correct and repetitive keyboarding causing strain in wrists, elbows, and shoulders
## 42313                                                                                                                                                               EE states work station to too low for her, making work uncomfortable. Pain and numbness in right arm
## 42314                                                                                                                                           EE states worked with patients changing diapers, giving baths, transporting, moving, dressing and was exposed to scabies
## 42315                                                                                                                                                                             EE states working as a hole monitor for school golf tournament, wes hit by a golf ball
## 42316                                                                                                                                                                                EE states working the gate house has caused additional pain from a previous injury.
## 42317                                                                                                                                                                         EE states working with an inadequate can opener (hand held opener) right hand swelling. ()
## 42318                                                                                                                                                                                            EE states working with inmate has caused stress and high blood pressure
## 42319                                                                                                             EE states working wrepetitive motion taking pages out of charts and making copies for a week. Rt armhand burning, tingling, constant aching, numbness.
## 42320                                                                                                                                                                                   EE states wrist hhas been hurting for two weeks but has gotten worse with typing
## 42321                                                                                                                                                                                             EE states wrist started to hurt after she bathed aand changed clients.
## 42322                                                                                                                                                                                               EE states writer was struck in his right eye by a combative patient.
## 42323                                                                                                                                                                                               EE states ws bite by dog on the lower right ankle and broke the skin
## 42324                                                                                                                                                                               EE states ws going to work building, when slipped and fell off wet steps onto cement
## 42325                                                                                                                                                                                                                  EE states"coming up hall, got pain in left ankle.
## 42326                                                                                                                            EE states"was walking jeremiah down to dinner & hepulled my arm down to hit his head on my shoulder. I heard and felt my shoulder pop."
## 42327                                                                                                                         EE states, "resident came out of eto while upset and struck belva in nose and eyes with palm of hand causing her head to bounce off wall."
## 42328                                                                                                                               EE states, "she was assisting another resident whenan another came & attacked her from behind, pullingher hair and taking her down".
## 42329                                                                                                                            EE states, "she was attempting to bathe resident & resident sat down while holding her arm & she feltsomething pop in her left shoulder
## 42330                                                                                                                                                                               EE states, "state cell phone pouch was sticking into the left side of my front hip."
## 42331                                                                                                                                                        EE states, I was walking down the stairs, missed astep, causing me to fall and twist right ankle as I fell.
## 42332                                                                                                                         EE states, coming down 3rd floor stairwell it was 2nd half stairwell the 2nd step I was I twister my nakle on my down to the 2nd floor. ()
## 42333                                                                                                                         EE states, during a therapeutic restraint, EE hurther left index finger. The student was very combative causing EE to hit finger on floor.
## 42334                                                                                                               EE states, fell through open glass door, glass was missing from door, from being repaired. Contusionto left wrist, left knee, left ankle, lower back
## 42335                                                                                                            EE states, patient attacked me, threw me on the bed and punched me in the face (left side close to eye), choked me, scratched me and broke necklace. ()
## 42336                                                                                                                                                                EE states, patient attempted to assault staff. Staff injured right wrist while restraining patient.
## 42337                                                                                                                  EE states, patient escalated while tx team were talking to pt. Pt got up and threw chair against window breaking it, grabbed writer in a headlock
## 42338                                                                                                                EE states, pouring expose into pint expose jug, dropped jug, splashed up in EE's face around eye and mouth. First degree burn to left upper eyelid.
## 42339                                                                                                                                                                                      EE states, practicing unarmed self defense training and EE pulled lower back.
## 42340                                                                                                                                                                            EE states, pull in back after restraining patient while placing cuffs on patients feet.
## 42341                                                                                                                                          EE states, she was being fliped from the front mount escape position at training & heard a pop inher right shoulder area.
## 42342                                                                                                                            EE states, she was seeing patients on the floor. While she was walking floor was wet she slipped and fell on her left hip and elbow. ()
## 42343                                                                                                                                                                                            EE states, that he walked into table while perform-ing cleaning detail.
## 42344                                                                                                           EE states, tripped on rug w/plastic ripped edging in medical waiting area. Hit knee & door framem, hit lower r leg, hands on both sides, hit concrete ()
## 42345                                                                                                                                                     EE states, using stripping floor machine in big dayroom on ward 233, slipped and fell on his back hip and leg.
## 42346                                                                            EE states, while 2 staff were attempting to put a patient in a cpi hold in ward hallway, patient fell to the floor with me then other staff that was helping w/ cpi hold fell on EE. ()
## 42347                                                                                                               EE states, while assisting w/evacuation of f-blockhe became contaminated by fumes on block. Fumes were mixture maintenance was using to unclog drain
## 42348                                                                                                                           EE states, while in process of doing cell extraction the lead man penning inmate w/ shield. Inmate pushed man. Shield hit EE on forehead
## 42349                                                                                                                                                   EE states, while using a trolley to move a desk, the desk slipped off the trolley and landed on right big toe ()
## 42350                                                                                                                                                   EE states, while walking out of residents room, she slipped and fell on a puddle of water that was on the floor.
## 42351                                                                                                                                                                          EE states, while working need medicine cart, I hitmy head on a metal bracket on the wall.
## 42352                                                                                                                                                                                                        EE states/alleges going upstrairs to 615 and rt knee popped
## 42353                                                                                                                                    EE states/alleges he went to call 611-3 to answer a question for an inmate about some food and the inmate threw a liquid on him
## 42354                                                                                                                     EE states: "I was weighing myself on an upright scale, stepped back off scale & tripped over an eefoot causing me to hit my head against wall"
## 42355                                    EE states: I had been packing, unpacking, and moving boxes of office materials and supplies for the past several days. I had also been cleaning out cabinets and other spaces to allow our staff to move into the new space. ()
## 42356                                                                                                                   EE states: I was backed into by a light brown explorer standing in a bus parking space. I was knocked to the ground, but do not seem injured. ()
## 42357              EE states: I was going down stairs and missed a step to avoid a bar of soap on the step, losing balance and causing left foot to absorb all weight in an awkward position injuring her left foot or materially aggravating a previous asymptomatic ()
## 42358      EE states: I was in the ladies room when fire alarm sounded. Loud noise caused immediate sharp pain in right ear, ringing in ear and dull pain experienced the rest of the day. I woke up in the middle of the night in intense pain, with pink discharge. ()
## 42359                                                                                                        EE states: I was supervising children during nap time. One child was very disruptive, I was returning him to his cot and felt pain in my right shoulder. ()
## 42360                                                                                                         EE states: I was turning over room, cleaning, and rearranging furniture at morrison dorms. But I did not feel it until I went to bed. Right upper back. ()
## 42361                                                                                                              EE states: I was walking down the side steps of the messicks building, taking out the trash, and I missed a step. I fell down on both of my knees. ()
## 42362                                                                                               EE states: I was walking though the health sciences library and slipped and fell on a wet area. He sustained an unspecified injury to his left leg and left knee. ()
## 42363                                                                                                                                                 EE states: a lot of pain in right knee when walking. Pulled food carts to the ward, ? Struck right knee with cart.
## 42364                                                                                                                                              EE states: a piece of formica fell from a shelf, struck her left wrist, cutting it while she was hanging up her coat.
## 42365                                                                                                                                                 EE states: a resident bit her right forearm while staff was trying to keep her from pulling her iv out of her arm.
## 42366                                                                                                                                       EE states: an inmate handed her a spool of thread & a needle thru the trap window & the needle pricked my left index finger.
## 42367                                 EE states: around 4pm she was unlocking courtroom 402, when she turned around to leave her right knee caught on th eside of the marble bench and she flipped over the bench and landed on the floor full force on her left leg. ()
## 42368    EE states: arrive at codar facility after hurricane irene to asses damage to the control shelter. Fence entry point was buried in two feet of sand and I had to climb over to gain entry. Injury occurred when landing. Right knee became swollen and stiff. ()
## 42369                                                                                                                                   EE states: assisting resident with toileting, resident slipped and grabbed right arm, jerking arm and causing injury to shoulder
## 42370                                                                                                              EE states: attempting to extract shotgun shell from magazine, lost balance, threw left hand out to catch self, caught back of lt hand on name tag hok
## 42371                                                                                                                             EE states: cleaning inside fresh air intake on a ahu, cleaning leaves off the louver and I got an insect or spider bite. Left hand. ()
## 42372                                                                                EE states: cutting a galvanized 3 gutter darn line at parker student dorm on the 1st floor. Tried to pull the nipple out after cutting and developed pain to his right shoulder. ()
## 42373                                                                                                                                                                                                       EE states: cutting meat with a knife-lost focus & cut finger
## 42374                                                                                                                                             EE states: cutting wood on table saw, lumber binded on blade causing kick back. Left hand, knuckle on first finger. ()
## 42375                                                                   EE states: driving to residence of jobs probationers to ensure they were complying with curfew. I was stopped at a traffic light behind another vehicle when a vehicle rear ended my vehicle. ()
## 42376                                                                                                                                EE states: elevator failed to stop evenly and I tripped when entering the elevator. I fell violently and tripped my right ankle. ()
## 42377                                                                                                                                                                                              EE states: employee tripped over last step and injured left ankle. ()
## 42378                                                                                                                                            EE states: employee was typing and briefcase. For ergo eval. Employee sustained unspecified injury to his right arm. ()
## 42379                                                                                                                                 EE states: exited the control center turned left after walking down steps and slipped on wax on theleft side of the control center
## 42380                                                                                                                                                                   EE states: fell about four feet backwards, putting journals on shelf. Back, tingling in legs. ()
## 42381                                                                                                                      EE states: getting a resident with a gait belt up. She was not walking well, went straight to anotherresidents to do basic care and felt pain
## 42382                                           EE states: going back to work from lunch, I fell on top of stairs in back of hospital, near blood bank there was a wet floor sign and I was looking at sign and fell on sign and floor. Right knee, nose, left cheek. ()
## 42383                                                                                                                   EE states: he was injured during a fall trying to restrain an inmate. My shoulder was used to force the legs of an inmate into an officer assist
## 42384                                                                                                                    EE states: he was trying to close the window on tower #4 when recreation had ended for the day. The window was stuck and it suddenly closed whi
## 42385                                                                                                                                      EE states: in diningroom resident became aggitated& paulina turned around quickly to block him & said she felt her back pull.
## 42386                                                                                                                                            EE states: in supply room, an item fell or droppedin thomas right eye. This caused the eye to turn red and causing pain
## 42387                                                                                                                           EE states: leaned on her chest/arm 2 clean between wall & counter. She was using a knife wrapped in acloth & pushed down on the counter.
## 42388                                                                                                                                    EE states: lifted a resident to lay the person down after lunch. She felt pain in her lower back. The pain got worst over time.
## 42389                                                                                                                                                      EE states: lifting a resident's leg up to change diaper. Felt burning, pulling sensation in lower spinal area
## 42390                                                                                                                                                                                                          EE states: lifting leg of resident while putting on pants
## 42391                                                                                                                                                          EE states: management overrides all decisions she makes, and she feels she works in a hostile environment
## 42392                                                                                                                                                             EE states: medicine for a cat (used as therapy) was accidently squirted in mary catherine's right eye.
## 42393                                                                                                                                                 EE states: moving charts. Rack came off pinching & bruising skin of both thumbs along w/laceration to right thumb.
## 42394                                                      EE states: participating with activities on corporate recess, which were all group oriented, team building, and interactive. During one of the team sessions I fell backwards and fractured my left elbow. ()
## 42395                                                                                                                                EE states: patient being escorted to quiet room writer placed arm under patients left arm & pt. Lowered head down and bit ees hand.
## 42396                                                                                                                                         EE states: patient was put in restraints, while putting pt. In EE started with back pain & pt. Bitee on upper right chest.
## 42397                                                                                                                                            EE states: put lift down on van, stepped on lift to open back door of van, foot caught in lift, fell hitting right shin
## 42398                                                                                                                                                                                    EE states: removing asbestos. He sustained an unspecified injury to his eye. ()
## 42399                                                                                                                                     EE states: resident became aggressive & struck at stephanie, she blocked his hit & he struck her rt arm, between elbow & wrist
## 42400                                                                                                                       EE states: resident upset and was implementing behavior support program. Resident being held while matt secured and resident headbutted ron.
## 42401                                                                                                                                     EE states: resident was aggitated. Resident aggressed toward staff. Staff put arm/hand up to block. Finger was bent backwards.
## 42402                                                                                                 EE states: room 1126- slipped on water splashed on floor, tried to catch myself with sink; right knee hit off of sink, after hit I fell to the floor with pain. ()
## 42403                                                                                                                      EE states: rushing down stairs on 2nd floor of kerr hall for 11 a. M. Meeting when I turned my right ankle and fell forward to the ground. ()
## 42404                                                                                                                                         EE states: second degree burn from hot water used to sanitize pots spilled on my right inside leg just above the ankle. ()
## 42405                                                                                                                                                      EE states: separating two student, juveniles fighting, falling over chair with one student on to my knees. ()
## 42406                                                                                                                                                                  EE states: she & jamie were playing with the door. It accidentally closed on gretchen right hand.
## 42407                                                                                                                                                                                  EE states: she breathed air that had chemical fumes in it & she became irritated.
## 42408                                                                                                                                                                                             EE states: she breathed fumes caused by chemicals that had been mixed.
## 42409                                                                                                                             EE states: she placed herself between a behavioralresident & a non-behavioral resident. She was grabbed by her hair & jerked her back.
## 42410                                                                                                                                            EE states: she stepped backward onto a comforter causing her to slide with a popping sensation in the upper left thigh.
## 42411                                                                                                                                                                                                            EE states: she stepped off the van onto uneven pavement
## 42412                                                                                                                       EE states: she told others to watch out the floorwas wet from being mopped. Wet floor signs were upshe slipped on floor after telling others
## 42413                                                                                                                                                                                                                       EE states: she tripped over floor safety mat
## 42414                                                                                                                                                                  EE states: she was in inservice baton training doing different strikes & felt a pain in her back.
## 42415                                                                                                                      EE states: she was in laundry room drying clothingshe dropped a sock on the floor & while retreivingthe sock she hit upper eye on dryer door.
## 42416                                                                                                                                                            EE states: she was lifting a resident from a w/c to bed & her back stiffened up pulling her lower back.
## 42417                                                                                                                                                                                      EE states: she was putting away & rotating stock &claims to have overdone it.
## 42418                                                                                                                                                 EE states: slapped in face by resident. Resident hit nose & knocked head back. Nose bled, tingling &swelling also.
## 42419                                                                                                                          EE states: slipped and fell on ship and hit my side. Fell on deck and fell on top of a hatch combing on the deck. Left side, rib area. ()
## 42420                                                                                                                                                                                                    EE states: stretching band popped. He sustained vision loss. ()
## 42421                                                                                                                                                         EE states: student called my name to get something and I turned around and hit my head on an x-ray arm. ()
## 42422                                                                                                                          EE states: they were changing a residents brief inthe van while on an outing. Resident was in a reclined wheel chair when injury occured.
## 42423                                                                                                                                                      EE states: traveling on fleming drive at inter- section on burkemont another vehicle ran a light &hit the van
## 42424                           EE states: trying to move rack that was loaded with cages with animals, would not move. Pushed and pulled until I got it to move, felt something in my back pulled and knee twisted in process. Both arms tingling, back, right knee. ()
## 42425                                                                                                                                                 EE states: walking down the steps coming from the cafe. The step had a missing stone and it was wet from the rain.
## 42426                                                                                                                  EE states: walking from front of office to rear. EE stepped on the rounded base portion of his chair & twisted his right foot/ankle. Kept working
## 42427                                                                                                                       EE states: was walking w/a person & person steppedon her left great toe. She tried to get her foot out of the way & the toe nail ripped. She
## 42428                                                                                                                  EE states: when assisting 3 other staff members w/lifting a resident out of the pool & put in her chair. I felt a strain (pull) in my lower back.
## 42429                                                                                               EE states: when checking for records I stepped on a step stool. When I got down, I slipped. He sustained an unspecified injury to his left ankle, and lower legs. ()
## 42430                                                                                                                                  EE states: when pulling resident out from back of van, I held on to the head of the stretcher because it felt as if it might fall
## 42431                                                                                                                                                                                                EE states: while asisting with a 2 person lift felt a pull in back.
## 42432                                                                                                                                                             EE states: while assisting a resident down to the floor his knee hit my leg causing a knot & a bruise.
## 42433                                                                                                                                                                       EE states: while changing & turning a resident, she began to fall out of bed & I caught her.
## 42434                                                                                                                          EE states: while checking the parking lot during visitation she stepped on concrete & asphalt causing left ankle to twist to the outside.
## 42435                                                                                                                                          EE states: while picking up charts from chair, slipped and fell hitting the floor. Landed on buttocks, shoulder and head.
## 42436                                                                                                                                                               EE states: while preparing to sit in a chair with wheels the chair slide & rolled out from under her
## 42437                                                                                                                    EE states: while pushing a resident into their bed room, her finger got caught between the door frame& the feeding pump causing a large bruise.
## 42438                                                                                                                                                         EE states: while taking off a clients head rest another staff pushed the head rest on terra's index finger
## 42439                                                                                                                                 EE states: while transporting a resident on the golf cart, resident aggressed causing EE to fall off of the golf cart on sidewalk.
## 42440                                                                                                                                                                                 EE statesthat while changing a resident she felt something pull in her lower back.
## 42441                                                                                                                                                EE stateswhile moving a hand rail lost balance falling across a couple of rows of scats bruising lt shoulder/back.,
## 42442                                                                                                                      EE stationary on lt wall of I-85 investigating a mvc, EE had all lights on and flashers when a vehicle ran off the roadway a hit EE's vehicle
## 42443                                                                                                                 EE statrted having a severe headache. He notified the sergeant and was sent to medical. Medical checked his bloodpressure and advised him to hosp.
## 42444                                                                                                                                                                   EE stats he felt a pinch in his back on left side while delivering 5 heavy boxes to lee biology.
## 42445                                                                                                                              EE stats that he was letting the blinks down b/c of the sun in lobb he tripped on the step up b/t the window and the visiter reg desk
## 42446                                                                                                                                                                                                 EE stats was sorting mail splintr entered middle finger on rt hand
## 42447                                                                                                                                                       EE std he went thru gate btwn e. Yd. & barn, stepped in lg. Swampy area & got lt. Ft. Stuck in mud &twisted.
## 42448                                                                                                                         EE std. He stpd. Off sidewalk, legs slpd. Causing him to catch self landing on rt. Elbow; states currently only rt. Shoulder is 'paining'.
## 42449                                                                                                                                                           EE std. While unloading trans. Bus, he slipped on steps & fell to pvmt. Std. It was raining at the time.
## 42450                                                                                                                                                                           EE steeped backward and fell over protective cover of wiring on the floor injuring back.
## 42451                                                                                                                                                           EE steeped out of storage and onto gravel and foot sanked causing EE to fall and twisted back and ankle.
## 42452                                                                                                                                                                                      EE step off a ladder missing a step landing on concrete twisting rt leg/ankle
## 42453                                                                                                                                                                                               EE step off curve and fell forward. Pain in r thumb and right wrist.
## 42454                                                                                                                                                                                                      EE step off some steps and twisted his lt ankle while walking
## 42455                                                                                                                                                                                                                              EE step off steps and turned rt ankle
## 42456                                                                                                                                EE steped into milk truck, noticing he was about tohit his head he jerked his head backwards causing pain in neck and shoulder area
## 42457                                                                                                                                                                            EE steped into woods to use restroom on the way back to bus a limb hit him in the mouth
## 42458                                                                                                                                                                                                                              EE steped on metal grates and slipped
## 42459                                                                                                                     EE stepped & slipped in a puddle of water. He hithead on wall & right hand on the table. Swollen- right hand, redness & bruise- crown of head.
## 42460                                                                                                                EE stepped a stone in parking lot of six forks cseoffice. Twisted hip and back, unable to walk when EE got home. No sleep monday night due to pain.
## 42461                                                                                                                                                                            EE stepped across the trailer hitch and fell on his right knee... Dislocated right knee
## 42462                                                                                                                                                                                                                        EE stepped and fell on ice. Innjured elbow.
## 42463                                                                                                                                                                                                                                EE stepped and injured her lt ankle
## 42464                                                                                                                                                                                                                 EE stepped and slipped in some glue and hurt knee.
## 42465                                                                                                                                                                                 EE stepped and slipped on powder that was on the bathroom floor injurying his back
## 42466                                                                                                                                                                                   EE stepped and slipped on some boxes on floor injuring her back, leg, and elbow.
## 42467                                                                                                                                                                    EE stepped and twisted left ankle on uneven surfacof concrete and asphalt pavement on driveway.
## 42468                                                                                                                                                                                  EE stepped back at edge of pavement and rt foot slipped off and twisted rt ankle.
## 42469                                                                                                                  EE stepped back from storage cabinet & tripped over floor buffer that was out of place. Fell b ackwards & landed on back causing pain to lower ba
## 42470                                                                                                                                                                                              EE stepped back from the door, lost his balance and twisted his knee.
## 42471                                                                                                                                                                                                           EE stepped back on a manhole cover which fell through ()
## 42472                                                                                                                                                          EE stepped back to keep pt from hitting him and sliped in urine on the fl EE feel between dresser and bed
## 42473                                                                                                                                                                         EE stepped backward and fell off the ledge of a platform, injuring multiple parts of body.
## 42474                                                                                                                                                                                 EE stepped backward off compressor platform and twisted rt ankle. Rt ankle strian.
## 42475                                                                                                                                                                         EE stepped backwards and tripped on scale rollers falling directly on buttocks on rollers.
## 42476                                                                                                                                                                                                            EE stepped backwards in cohort's ofc and fell overchair
## 42477                                                                                                                                                                                                 EE stepped backwards off a bale of shavings and twisted her ankle.
## 42478                                                                                                               EE stepped between two inmates-arguing, reached totake mop from one of them when the other pulled mop pulling her & hurting lower back. Sprain back.
## 42479                                                                                                                                                 EE stepped between two juveniles who were about tofight and then one of the juveniles struck EE in the lower back.
## 42480                                                                                                                                                                                                                  EE stepped between two sofas twisting his lt knee
## 42481                                                                                                                                                                                    EE stepped down and fell off platform and lost balance and injured both ankles.
## 42482                                                                                                                                                                              EE stepped down behind library entrance planters to pull up weeds and turned rt ankle
## 42483                                                                                                                                                                                                            EE stepped down from bike shed and twisted her ankle ()
## 42484                                                                                                                                                       EE stepped down from forklift & something felt like it jammed in his lt hip... See clm 02051295 for bills --
## 42485                                                                                                                                                                                                              EE stepped down from office area and twisted rt ankle
## 42486                                                                                                                                                  EE stepped down from platform and missed step. EE bruised her foot and her hand while trying to keepfrom falling.
## 42487                                                                                                                                                   EE stepped down from sidewalk and stepped on uneven ground, causing compound fx of ankle and sprain of lft ankle
## 42488                                                                                                                            EE stepped down from sidewalk to road. EE caught her toe or heel of shoe in uneven pavement and fell. Twisted left ankle, cut left hand
## 42489                                                                                                                        EE stepped down from the goose neck of trailer bedthen stepped on edge slightly higher portion of bed and foot roller injury to right ankle
## 42490                                                                                                                                                                  EE stepped down from the truck turning his left ankle and falling on his right elbow.. Laceration
## 42491                                                                                                                                                                                               EE stepped down from ticket booth to ground and injured left knee ()
## 42492                                                                                                                                                                                           EE stepped down from tractor onto right side of right foot injuring foot
## 42493                                                                                                                                                                                                               EE stepped down from trailer bed and jarred his back
## 42494                                                                                                                                                                                               EE stepped down from trk onto gravel and twisted or turned rt ankle.
## 42495                                                                                                                           EE stepped down from truck and felt something pullin his leg and had back pain a little later. He had been moving and loading furniture.
## 42496                                                                                                                                                                                                            EE stepped down from van and turned her right footover.
## 42497                                                                                                                                           EE stepped down into a trench on the way to his work station and hit foot gave way as it twisted. Acute left foot sprain
## 42498                                                                                                                                                                                          EE stepped down off of c-frame of tractor and turned ankle. Sprain ankle.
## 42499                                                                                                                                                    EE stepped down off of state gas pump onto hose slipped & fell, strain/sprain to neck, shoulders, & upper back.
## 42500                                                                                                                                                                                                                  EE stepped down off of truck and fel pain in back
## 42501                                                                                                                                                                                                                   EE stepped down off stairway twisted her lt knee
## 42502                                                                                                                                                                               EE stepped down off step at medical building, therefore casusing pain in right foot.
## 42503                                                                                                                                                                     EE stepped down off step from janitors' closet and fell on left side, twisting left ankle/hip.
## 42504                                                                                                                                     EE stepped down on broken section of sidewalk & fell. EE injured arm, knee, finger and received a large contusion to her head.
## 42505                                                                                                                                                                       EE stepped down on last step in stairway and her left foot turned int eh opposite direction.
## 42506                                                                                                                                                             EE stepped down on rear bumper of van placing all his body weight on his leg which caused knee to fall
## 42507                                                                                                                                                                                                               EE stepped down on the sidewalk, twisted right ankle
## 42508                                                                                                                                 EE stepped down one step -stumbled 10 ft, fell face down on concrete walkway, scapped hands/chin **overpayment of ttd- $761. 60***
## 42509                                                                                                                                                                                                EE stepped down onto floor level tripped and fell twisting rt foot.
## 42510                                                                                                                                         EE stepped down onto the curb and twisted ankle. EE fell face first onto the ground. EE broke her fall but sprained ankle.
## 42511                                                                                                                                                                                          EE stepped down stairs, turning ankle causing tornligaments in right foot
## 42512                                                                                                                                                              EE stepped down the stairs & her footing slipped &she landed w/ her foot beneath her. Rt ankle & foot
## 42513                                                                                                                                                                      EE stepped down to Miss The step with r foot and twisting r knee when planting foot on ground
## 42514                                                                                                                                                                            EE stepped down to get a mop bucket handle, to empty water felt a strain in lower back.
## 42515                                                                                                                EE stepped down top of sump to floor and turned her right ankle causing her to fall to the floor on her left side. Injured left--arm, elbow, ankle.
## 42516                                                                                                                                                                                                             EE stepped forward to do a block and felt pain in foot
## 42517                                                                                                                    EE stepped from a chair to the tabletop to reset the clock on the wall. When he descended, he fell from the chair and hit his head on the table
## 42518                                                                                                                                                                                   EE stepped from carpet that was damp from cleaningto tile floor, slipped & fell.
## 42519                                                                                                                                        EE stepped from chair toward gate and inverted his right ankle. Swelling to right ankle. Right ankle had surgery in 2/13/97
## 42520                                                                                                                    EE stepped from elevator to hallway, slipped on wet spot on floor, falling face first, hitting head & breaking glasses. Rt knee/forehead/contus
## 42521                                                                                                                                                                                                          EE stepped from front porch to ground and twisted lt knee
## 42522                                                                                                                                               EE stepped from grass to curb and slipped and fellon right buttock, scraped right arm and over- extended right knee.
## 42523                                                                                                                                                EE stepped from one room to another that containedwater on floor & slipped & fell injuring left ankle & both wrists
## 42524                                                                                                                                                                                                       EE stepped from pavement onto sidewalk and twisted her ankle
## 42525                                                                                                                                                           EE stepped from sidewalk and fell, twisting left ankle and foot w/impact to upper torso, chest and neck.
## 42526                                                                                                                                                                                                       EE stepped from sidewalk into a ditch and strainedleft ankle
## 42527                                                                                                                  EE stepped from sidewalk leaving drug office and lost his balance falling across cinderblock wall (2 ft high) onto pavement injuring right wrist.
## 42528                                                                                                                 EE stepped from sidewalk onto mulch, twisted rightankle, fell forward, broke glasses, struck chest boone, right knee, broken left wrist & rt elbow
## 42529                                                                                                                 EE stepped from sidewalk onto wooden crosstie. Crosstie was wet from rainfall. EE slipped on wet wood and fell. Injury to lower back and right hip
## 42530                                                                                                                                                                                   EE stepped from the last step onto the uneven ground & sprained her right ankle.
## 42531                                                                                                                                                                                       EE stepped from truck to loading dock and felt a sharp pain in right knee ()
## 42532                                                                                                                                                                                                      EE stepped from truck to loading dock and sprainedleft ankle.
## 42533                                                                                                                                                                                    EE stepped from wet carpetted floor onto tile and fell incurring mulit injuries
## 42534                                                                                                                                                                                                 EE stepped ftom stool and twisted left ankle causing fall to floor
## 42535                                                                                                                                                                EE stepped in a bucket of trash while descending aladder causing him to lose his balance & stumble.
## 42536                                                                                                                                                                    EE stepped in a grass covered hole and struck his rt knee on ground EE came back to brown creek
## 42537                                                                                                                                                                                                 EE stepped in a hole and injured foot while inspecting wooded area
## 42538                                                                                                                                                                 EE stepped in a hole and lost balance and fell over planter wall. Fell about 5 feet. Injured back.
## 42539                                                                                                                                                                                                                 EE stepped in a hole and severly sprained rt ankle
## 42540                                                                                                                                                                                                                          EE stepped in a hole and sprained rt foot
## 42541                                                                                                                                                                                             EE stepped in a hole and turned his ankle while investigating a crash.
## 42542                                                                                                                                                                                                                       EE stepped in a hole and twisted left ankle.
## 42543                                                                                                                                                                                                                         EE stepped in a hole and twisted left foot
## 42544                                                                                                                                                                                                                           EE stepped in a hole and twisted rt knee
## 42545                                                                                                                                                                                                              EE stepped in a hole in grass in frt of jones bldg ()
## 42546                                                                                                                                                                                       EE stepped in a hole in parking lot while getting into car - arm, leg, hands
## 42547                                                                                                                                                                                                 EE stepped in a hole in the lumbar yard and hyperextended rt knee.
## 42548                                                                                                                                                                                                      EE stepped in a hole on the creek bank and injuried left knee
## 42549                                                                                                                                                                        EE stepped in a hole on the east yard, between housing units one & two. Twisted right ankle
## 42550                                                                                                                                                     EE stepped in a hole while checking inner perimeter fence on westside of institution causinghim to injury back
## 42551                                                                                                                                                                                                                       EE stepped in a hole while going to vehicle.
## 42552                                                                                                                                                                                  EE stepped in a hole while walking from daniels to page hall and sprained rt foot
## 42553                                                                                                                                                               EE stepped in a nest of (sea?) ticks during a sitevisit to an employer. EE received multiple bites .
## 42554                                                                                                                          EE stepped in a small hole as she stepped from thesidewalk onto the asphalt road causing her fall on both knees. Abrasions to both knees.
## 42555                                                                                                                                                                                        EE stepped in coffee spill.... Slipped and fell injured left wrist and hand
## 42556                                                                                                                                                                                                                                      EE stepped in dip in sidewalk
## 42557                                                                                                                                                                                                     EE stepped in drain going out of the back door of the kitchen.
## 42558                                                                                                                         EE stepped in elevator and fell on the tile floor tile, EE caught herself on her rt shoulder & hearda popping noise and jammed rt shoulder
## 42559                                                                                                                                                                          EE stepped in front of juveniles to break up fight, resulting in EE falling on both knees
## 42560                                                                                                                                                                       EE stepped in hallway to assist another EE with patient. Patient pushed this EE to floor. ()
## 42561                                                                                                                                                                                                    EE stepped in hold beside sidewalk - turned ankle causing pain.
## 42562                                                                                                                                                                                                                                              EE stepped in hole ()
## 42563                                                                                                                                                                                                                  EE stepped in hole and fell on left side of ankle
## 42564                                                                                                                                                                                                                           EE stepped in hole and strained rt knee.
## 42565                                                                                                                                                                                                                         EE stepped in hole and twisted left ankle.
## 42566                                                                                                                                                                                                                           EE stepped in hole and twisted left knee
## 42567                                                                                                                                                                                                                            EE stepped in hole and twisted lt ankle
## 42568                                                                                                                                                                    EE stepped in hole and twisted right ankle when running back to patrol car for first aid equip.
## 42569                                                                                                                                                                              EE stepped in hole in floor next to grate. EE was making rounds in kitchen. No injury
## 42570                                                                                                                                                                                                   EE stepped in hole in ground causing contusion to left lower leg
## 42571                                                                                                                                                                         EE stepped in hole in the parking lot, twisting her ankle, fell and scraped knee and elbow
## 42572                                                                                                                                                                                                   EE stepped in hole while regrading location and twisted rt ankle
## 42573                                                                                                                                                                                                                        EE stepped in hole, fell and twisted ankle.
## 42574                                                                                                                                                                    EE stepped in mud where golf cart was being charged. EE fell injuring hand/wrist breaking fall.
## 42575                                                                                                                                                                                                                   EE stepped in oil and fell stricking pelvic bone
## 42576                                                                                                                                                                                                                    EE stepped in outlet opening and sprained ankle
## 42577                                                                                                                                                                                                                           EE stepped in pot hole and twisted ankle
## 42578                                                                                                                                                                                                                           EE stepped in pot hole in parking lot ()
## 42579                                                                                                                                                                                                       EE stepped in pot hole with right foot, injuring right ankle
## 42580                                                                                                                                               EE stepped in puddle of water that had algee grow-ing in in, EE feet slipped out from under him & landed on his back
## 42581                                                                                                                                                                             EE stepped in spilled food & fell, twisting rt ankle & hitting mouth on concrete floor
## 42582                                                                                                                                                                                        EE stepped in stump hole and twisted his knee was in wood looking for timer
## 42583                                                                                                                                                                                                    EE stepped in stump hole while marking timber, twisted lt knee.
## 42584                                                                                                                                                                           EE stepped in the back of a ford ranger, foot slipped and he fell landing on his lt hip.
## 42585                                                                                                                                                      EE stepped in to break up a fight between two students. He fell in floor landing on his knees onthe concrete.
## 42586                                                                                                                                                                                                      EE stepped in trench, left by rain, hyper extending left knee
## 42587                                                                                                                                                                        EE stepped in undisclosed depression during field wrk, causing stress to the foot and ankle
## 42588                                                                                                                                                                                      EE stepped in water and slipped and fell. Injury to right arm, hand, shoulder
## 42589                                                                                                                                      EE stepped in water on floor in restrm. While leavng, she slipped & landed on her knee. EE used l & r hand to break the fall.
## 42590                                                                                                                                                                                                    EE stepped in wet spot on floor, slipped and fell twisting leg.
## 42591                                                                                                                       EE stepped in what he thought to be shallow water in a manhole, but wasn't. Water filled his boots causing burns to his lwr leg, ankle, foot
## 42592                                                                                                                                                                                                  EE stepped inside door and slipped on wet floor hurting left knee
## 42593                                                                                                                                                          EE stepped inside mental health building, she slipped & fell on a wet floor. Sprain & bruise to left knee
## 42594                                                                                                                                 EE stepped inside of north back hall door floor and shoes were wet. EE fell down on rt knee, rt wristrt elbow, rt hip jarred back.
## 42595                                                                                                                                                                                                                     EE stepped into a 2 ft. Ditch, felt a small ()
## 42596                                                                                                                                                                                                EE stepped into a drain pipe while dumping a toilet injuring lt leg
## 42597                                                                                                                                                                                                         EE stepped into a drainage ditch and twisted his left knee
## 42598                                                                                                                                                                                                   EE stepped into a floor drain and fell down twisting his rt knee
## 42599                                                                                                                                                                                                          EE stepped into a grass covered hole; injured his rt knee
## 42600                                                                                                                                                                                                              EE stepped into a hole and fell injuring his lt ankle
## 42601                                                                                                                                                                                                                  EE stepped into a hole and injured his lower back
## 42602                                                                                                                                                                                                                    EE stepped into a hole and sprained left ankle.
## 42603                                                                                                                                                                                             EE stepped into a hole and twisted ankle while on the recreation field
## 42604                                                                                                                                                                                                                    EE stepped into a hole and twisted her rt ankle
## 42605                                                                                                                                                                                                                  EE stepped into a hole and twisted his right knee
## 42606                                                                                                                                                     EE stepped into a hole in ground with left foot. EE fell forward putting most of her weight on her right knee.
## 42607                                                                                                                                                                                                          EE stepped into a hole in soft grass.. Twisted right knee
## 42608                                                                                                                                                                                                           EE stepped into a hole in the ground, strained lt. Knee.
## 42609                                                                                                                                                                                                              EE stepped into a hole injuring his rt knee and elbow
## 42610                                                                                                                                                                                                                       EE stepped into a hole twisting his lt ankle
## 42611                                                                                                                                                           EE stepped into a hole when she was walking acrosslawn from staff development building to the cafeteria.
## 42612                                                                                                                                                                                      EE stepped into a hole while walking across yard falling injuring her lt knee
## 42613                                                                                                                                                                                                   EE stepped into a hole... Lost his balance, and twisted his back
## 42614                                                                                                                                                                                                                   EE stepped into a manhole cover with his rt foot
## 42615                                                                                         EE stepped into a pond and there was a hole he could not see, he stepped into the hole and stumbled forward. His right knee hit the ground and has been sore and stiff. ()
## 42616                                                                                                                                                                                    EE stepped into a pothole while directing accidenttraffic spraining left ankle.
## 42617                                                                                                                EE stepped into a room where the floor was wet causing her leg to slip out from under her and landed on her backside hitting her elbow on the micro
## 42618                                                                                                                                                                                                                 EE stepped into a small hole and twisted her ankle
## 42619                                                                                                                                                                         EE stepped into a theshold plate that was in the middle of the floor twisting her rt ankle
## 42620                                                                                                           EE stepped into a void created between bumper and deck, fell backwards into the deck, hit left arm andback of head, left leg caught in hole and skinned.
## 42621                                                                                                                                                                             EE stepped into a water trough and tried to step out & in doing so lost balance & fell
## 42622                                                                                                                                 EE stepped into air handler sideways & had to turnagain to get through when he felt a sharp pain in left knee and burning in calf.
## 42623                                                                                                                     EE stepped into cell to remove something, when officer closed door caught EE between cell door and door jam. Threw hands up to get it stopped.
## 42624                                                                                                                     EE stepped into doorway as slider was opening thenslider door shut pinning EE for 5-15 seconds pressure points were felt mid-chest and rt knee
## 42625                                                                                                                                                                     EE stepped into elevator on 2nd fl & fell due to grassy film on floor injuring lt knee/rt foot
## 42626                                                                                                                                                                                         EE stepped into elevator which had just been cleaned with strong cleansers
## 42627                                                                                                                                                                               EE stepped into hallway from office onto carpet adhesive and fell on rt hip and arm.
## 42628                                                                                                                                                                           EE stepped into hallway on wet floor and fell on floor pulling left knee, hip, and back.
## 42629                                                                                                                                                                                                           EE stepped into hole and felt paid in his lower mid-back
## 42630                                                                                                                                                                                                                      EE stepped into hole and sprained right ankle
## 42631                                                                                                                                                                                            EE stepped into hole in probationers driveway whenexiting state vehicle
## 42632                                                                                                             EE stepped into hole on fairgrounds while conducting an inspection and returning from restroom, resulting in stiffness of right knee, pain and numbnes
## 42633                                                                                                                                                                                       EE stepped into hole while checking east side of bldg and twisted left ankle
## 42634                                                                                                                                                                                   EE stepped into hole with right foot dropping intohole causing the leg to twist.
## 42635                                                                                                                                       EE stepped into room to pull a file, pulled out cabinet drawer and fell backwards over a book lying on floor. Injury to back
## 42636                                                                                                                                                                                   EE stepped into side of moving track foot slipped on wet step. Injured rt ankle.
## 42637                                                                                                                                                 EE stepped into tall grass and stepped on a board with a neail in it. EE was lumber for a construction project. ()
## 42638                                                                                                                  EE stepped into the restroom area and stepped upon an unknown liquid substance and his lt foot slipped causing him to fall EE hit his lt shoulder
## 42639                                                                                                                                                                                                                         EE stepped of a curb and twisted left knee
## 42640                                                                                                                                 EE stepped of deck at dumpster onto metal cover usprotect motor from weather. Complain of pain chestlt shoulder & lt leg abrasions
## 42641                                                                                                                                                                                            EE stepped of ladder onto a nail in board. Puncture wound to right foot
## 42642                                                                                                                                      EE stepped of low boy trailer when foot slipped. EE fell and injured right elbow. EE was pushing truck off the bed of trailer
## 42643                                                                                                                                                                                                        EE stepped of the step into a hole and sprained left ankle.
## 42644                                                                                                                                                                                                                            EE stepped off a box and twisted rt hip
## 42645                                                                                                                                                                               EE stepped off a high step in the courtyard area, noticed discomfort to left knee ()
## 42646                                                                                                                                                                                                      EE stepped off a loading dock and injured his backleg and arm
## 42647                                                                                                                                                                              EE stepped off a platform when her foot slipped causing her to slide down some stairs
## 42648                                                                                                                                                                                                               EE stepped off a scaffold & lost his balance & fell.
## 42649                                                                                                                                                           EE stepped off a side of sidewalk twisting right ankle and bruised left elbow, jamming rt middle finger.
## 42650                                                                                                                                                                                                                      EE stepped off a step and rolled his ankle ()
## 42651                                                                                                                                                                                                EE stepped off a step that EE did not know was there. Injured knee.
## 42652                                                                                                                                                 EE stepped off a tracor when he stepped in a depression covered with hay, this caused him to twist his right knee.
## 42653                                                                                                                                                                                   EE stepped off a traffic island and twisted ankle jcruz@mail. Dol. State. Nc. Us
## 42654                                                                                                                                       EE stepped off asphalt into a hole twisting rt foot-which standing on feet directing traffic nextday aggravated foot injury.
## 42655                                                                                                                                                                      EE stepped off atv and stepped on stump with right foot when felt pain on right foot arch. ()
## 42656                                                                                                                                                                                 EE stepped off back of road squad bus and fell into a hole, injuring his right arm
## 42657                                                                                                                                                                                                          EE stepped off bankment onto road - and twisted left knee
## 42658                                                                                                                                                                                                        EE stepped off carpet on wet floor and twisted his lt knee.
## 42659                                                                                                                              EE stepped off cement deck (approx 12") onto ground when left knee gave way. Did not fall, he awkwardly caught himself with left hand
## 42660                                                                                                                                                                                       EE stepped off curb & twisted lt ankle & fell to both knees injuring rt knee
## 42661                                                                                                                                                                                                    EE stepped off curb and felt sharp pain in bottom of left foot.
## 42662                                                                                                                                                                                                         EE stepped off curb and fractured left ankle in two places
## 42663                                                                                                                                                                                               EE stepped off curb and slipped falling to ground-rt thigh contusion
## 42664                                                                                                                                                                                                                             EE stepped off curb and twisted ankle.
## 42665                                                                                                                                                                                                                       EE stepped off curb and twisted her rt ankle
## 42666                                                                                                                                                                                         EE stepped off curb and twisted his right foot stress fracture, right foot
## 42667                                                                                                                                                      EE stepped off curb and twisted lt ankle and fell-lt hand contusion, and lt knee contusion, sprained lt ankle
## 42668                                                                                                                                                                                                  EE stepped off curb and twisted lt ankle and went down on lt kne.
## 42669                                                                                                                                                                                     EE stepped off curb and twisted right ankle due toimperfections in the street.
## 42670                                                                                                                                                                                      EE stepped off curb into a small hole in the pavement and twisted left ankle.
## 42671                                                                                                                                                                                   EE stepped off curb into drainage ditch and twisted lt ankle - sprained lt ankle
## 42672                                                                                                                                                                                              EE stepped off curb onto parking lot area and fellspraining lt ankle.
## 42673                                                                                                                                                                                                    EE stepped off curb onto street and into a hole spraining ankle
## 42674                                                                                                                                                                                                      EE stepped off curb onto wet leaves and fell hurting rt ankle
## 42675                                                                                                                                                                                     EE stepped off curb, felt left foot twist and felt sharp pain in arch of foot.
## 42676                                                                                                                                                                             EE stepped off curb, twisted his ankle while inspecting a damaged tree to cut down. ()
## 42677                                                                                                                                                                                                     EE stepped off curbing wrong and pulled ligament to right heel
## 42678                                                                                                                                                                                                                         EE stepped off dock and injured left knee.
## 42679                                                                                                                                                 EE stepped off edge of curving while helping remove deris lt after hurricane bertha bruised lt in step on lt foot.
## 42680                                                                                                                                                                    EE stepped off elevatior, slipped on wet floor and fell. Both hands, right shoulder, righ knee.
## 42681                                                                                                                                                                         EE stepped off elevator & heel of shoe caught causing EE to fall injuring right hand/wrist
## 42682                                                                                                                                                                      EE stepped off elevator and slipped on wet floor, injuring her left knee and lower left back.
## 42683                                                                                                                                                                                                                 EE stepped off elevator and tripped over floor mat
## 42684                                                                                                             EE stepped off elevator onto tile floor and slipped and fell while picking up mail from mailroom, contusion to l shoulder, arm, leg, back and hip area
## 42685                                                                                                                                                            EE stepped off equipment trailor into hole that was covered with vegetation and twisted his left ankle.
## 42686                                                                                                                                                  EE stepped off fallen tree and twisted left ankle when contact was made with the ground. Left ankle strain/sprain
## 42687                                                                                                                                         EE stepped off from sidewalk onto grass to avoid cart of garbage on sidewalk---EE fell in a hole injuring knees/arms/chest
## 42688                                                                                                                                 EE stepped off golf cart at cluster 2 center core area on to slick mud covered pavement. Left foot slid forward & unable to catch.
## 42689                                                                                                                                                                            EE stepped off golf cart while assisting with capturing a snake and sprained left foot.
## 42690                                                                                                                                                                                              EE stepped off ladder and foot got caught. Right leg right hip strain
## 42691                                                                                                                                                                       EE stepped off ladder and twisted left ankle on uneven sidewalk or rock. Referred to glenda.
## 42692                                                                                                                                                                                                           EE stepped off ladder into a hole - right knee and ankle
## 42693                                                                                                                                                                                                      EE stepped off ladder onto piece of rope and twisted lt ankle
## 42694                                                                                                                                  EE stepped off ledge onto loose gravel. Gravel caused ankle to twist and body to fall forward. EE injured low back and right hip.
## 42695                                                                                                                                                                                                                           EE stepped off loading, slipped off post
## 42696                                                                                                                                                                                                                           EE stepped off mats and slipped on floor
## 42697                                                                                                                                                                                          EE stepped off of 3" pavement while helping motorist and twisted rt ankle
## 42698                                                                                                                                                                                                                     EE stepped off of a curb and twisted rt ankle.
## 42699                                                                                                                                                                                                     EE stepped off of a stair and her foot rolled over and popped.
## 42700                                                                                                                                                                            EE stepped off of backhoe and his foot slipped off of step and he jerked his lower back
## 42701                                                                                                                                                                                                                       EE stepped off of curb and injured left knee
## 42702                                                                                                                                                                               EE stepped off of curb and knees buckled and she caught herself on the side of a car
## 42703                                                                                                                                                                                  EE stepped off of curb and lost his balance.... Injured left thigh and right foot
## 42704                                                                                                                                                                                                                      EE stepped off of curb and twisted left ankle
## 42705                                                                                                                                                                                                                         EE stepped off of curb and twisted rt knee
## 42706                                                                                                                                                                                                         EE stepped off of curb onto pavement and twisted rt ankle.
## 42707                                                                                                                                                                                                    EE stepped off of ladder to get piece of wood and back went out
## 42708                                                                                                                                                                                           EE stepped off of loadind dock into some water andtwisted his left ankle
## 42709                                                                                                                                   EE stepped off of porch landing on both feet. Right foot started hurting later tuesday night. Contusion and sprain to right foot
## 42710                                                                                                                                                                                                                                  EE stepped off of rug and slipped
## 42711                                                                                                                                                                   EE stepped off of the tie to help a child and knee twisted causing EE to fall landing on rt foot
## 42712                                                                                                                                                                                                 EE stepped off pave area while getting into car twisting lt ankle.
## 42713                                                                                                                                                                                                                     EE stepped off pavement and twisted left ankle
## 42714                                                                                                                                                                                 EE stepped off porch of morton hall, stepped on a stick, fell and twisted her back
## 42715                                                                                                                                                                                                   EE stepped off ramp and fell hurting right ankle, toes and neck.
## 42716                                                                                                                                                                                                                   EE stepped off ramp and twisted her right ankle.
## 42717                                                                                                                                                                          EE stepped off ramp in foyer and fell down injuredboth hands, rt ankle, and twisted back.
## 42718                                                                                                                                                                                             EE stepped off side door of the convelsecent van and injured left knee
## 42719                                                                                                                                                                                          EE stepped off side of deck onto board with nail in it covered up by mud.
## 42720                                                                                                                                                                                         EE stepped off side of sidewalk and fell injuring ankle, knees and wrists.
## 42721                                                                                                                                                                                                                     EE stepped off sidewalk and injured her lt leg
## 42722                                                                                                                                              EE stepped off sidewalk and lost his balance rt knee, lt ankle, and lt elbow Dr. Allen/785-3400; bladen corr; surgery
## 42723                                                                                                                                                                                                                   EE stepped off sidewalk and twisted her lt ankle
## 42724                                                                                                                                                                                                            EE stepped off sidewalk down to street and twisted knee
## 42725                                                                                                                                    EE stepped off sidewalk into an eroded space whichcasued her to lose her balance and fall causing injury to her hands and wrist
## 42726                                                                                                                                        EE stepped off sidewalk on to cement step which was broken, twisting her right ankle and falling on her left foot and knee.
## 42727                                                                                                                                                                                                      EE stepped off sidewalk twisted lt ankle and fell on rt knee.
## 42728                                                                                                                                                                                                                       EE stepped off step ladder and twisted back.
## 42729                                                                                                                                                                                                                               EE stepped off step while vacuuming.
## 42730                                                                                                                                                                                                                     EE stepped off steps and lost balance and fell
## 42731                                                                                                                                                                                                       EE stepped off steps onto broken cement and broke left foot.
## 42732                                                                                                                                                         EE stepped off steps onto floor EE didn't know thefloor was wet, EE fell on left knee with all his weight.
## 42733                                                                                                                                                            EE stepped off steps onto uneven concrete causing her to fall & twist lt ankle & cut lt wrist & rt knee
## 42734                                                                                                                                                                                         EE stepped off steps wrong while taking out trash and sprained left ankle.
## 42735                                                                                                                                                                         EE stepped off the back of a mail truck & slipped on some black ice & twisted his lt knee.
## 42736                                                                                                           EE stepped off the back of an electric vehicle in the dark, misjudged distance and fell on the ground. EE was collecting deer for reproductive study. ()
## 42737                                                                                                                 EE stepped off the bus, his feet slipped on the ice, causing EE to fall on his right knee, hand and right forearm. Sharp pain in neck and shoulder
## 42738                                                                                                                                                                                             EE stepped off the curb to inspect inmates and herright knee gave out.
## 42739                                                                                                                                                                                   EE stepped off the curb twisted lt foot fell on both knees then she fell forward
## 42740                                                                                                                                                                                  EE stepped off the loading dock onto the delivery truck and twisted his lt ankle.
## 42741                                                                                                                              EE stepped off the porch onto uneven sidewalk and EE injured lt ankle, finger, knee. ***no future ttd/ppd*** 2 yr statutes expired***
## 42742                                                                                                                                                                                                EE stepped off the road and fell to the ground on a narrow shoulder
## 42743                                                                                                                                                                                                   EE stepped off the side walk and fell down landing on both knees
## 42744                                                                                                                                                                                                                 EE stepped off the sidewalk and twisted left ankle
## 42745                                                                                                                                          EE stepped off top step and misjudged distance. Felt twinge and heard popping sound. Swollen overnight. Lt knee sprained.
## 42746                                                                                                                                                                                                              EE stepped off tractor and pulled muscle in his back.
## 42747                                                                                                                                                                                                      EE stepped off tractor and turned ankle and skinned his knee.
## 42748                                                                                                                                                              EE stepped off tractor to remove limb and slipped and fell on back on cypress sticking up on trail ()
## 42749                                                                                                                             EE stepped off trailer and reached for support on soil sampler and forced shield and support linkage to toggle over and pinched finger
## 42750                                                                                                                                                                         EE stepped off transfer bus, on back of bus he turned ankle when he stepped on the ground.
## 42751                                                                                                                                                                                   EE stepped off truck and right ankle twisted on loose gravel. Sprain right ankle
## 42752                                                                                                                                                                                                                  EE stepped off veh and pulled tendons in rt foot.
## 42753                                                                                                               EE stepped on 5 gal buckets to search truck, when he stepped down his foot went through pallet the buckets were on. EE fell bruising & twisting knee
## 42754                                                                                                                                                                                                                  EE stepped on a ash tray and twisted his lt ankle
## 42755                                                                                                                                                                                                            EE stepped on a bat and rolled his ankle... Right ankle
## 42756                                                                                                                                                                                  EE stepped on a block of cement at a bad angle injurying right foot back of heel.
## 42757                                                                                                                                                                                            EE stepped on a board with nails sticking up & nail punctured left foot
## 42758                                                                                                                                                                                                  EE stepped on a boot that was left in the aisle twisting rt ankle
## 42759                                                                                                                         EE stepped on a fire ant mount while assisting at a auto accident scened. Fire ants bit EE on legs and thigh. Suffered approx 40 ant bites
## 42760                                                                                                                                                                                                        EE stepped on a furrow hidden under grass and broke rt foot
## 42761                                                                                                                                                                                                                    EE stepped on a hairnet and twisted his lt knee
## 42762                                                                                                                                                                                                                  EE stepped on a hauling unit twisting his rt knee
## 42763                                                                                                                                                                                                                        EE stepped on a nail puncturing his rt foot
## 42764                                                                                                                                                                                                      EE stepped on a nail that was in a piece of old roof sheeting
## 42765                                                                                                                                                                                                       EE stepped on a nail while entering mcnair bldg cat # 692414
## 42766                                                                                                                                                                          EE stepped on a nail while unloading equipment from the delivery truck. Injured left foot
## 42767                                                                                                                                                                                                                                 EE stepped on a nail with rt foot.
## 42768                                                                                                                                                                                                                                  EE stepped on a nail... Left foot
## 42769                                                                                                                                                                                                                       EE stepped on a needle.... Injured left foot
## 42770                                                                                                                                                                                      EE stepped on a pecan and slipped and fell injuring her left elbow/right foot
## 42771                                                                                                                                                             EE stepped on a piece of ice and fell to the floorcontusions to arms, back, legs, neck, feet and hands
## 42772                                                                                                                                                                                                 EE stepped on a piece of ice in hallwasy and fell on left side. ()
## 42773                                                                                                                                                  EE stepped on a piece of tar while going to lunch and twisted rt ankle and fell on lt side having pain in lt side
## 42774                                                                                                                     EE stepped on a pine cone and fell on curb. Abrasions, swelling to right side of face, eye, ltwrist, arm, shoulder, back & knee; pain on neck.
## 42775                                                                                                                                                                                                                      EE stepped on a rock & hurt side of left foot
## 42776                                                                                                                                                                                                                EE stepped on a rock and fell twisting his lt ankle
## 42777                                                                                                                                                                                          EE stepped on a rock and twisted ankle, fell over the rock and fx l foot.
## 42778                                                                                                                                                                                                                      EE stepped on a rock and twisted her lt ankle
## 42779                                                                                                                                                                                               EE stepped on a rock and twisted her lt foot causing lt ankle injury
## 42780                                                                                                                                                                                       EE stepped on a rock and twisted her right ankle.. Both knees and both hands
## 42781                                                                                                                                                                             EE stepped on a rock and twisted his left knee. Left knee sx on 1/9/06 rtw ld 1/31/06.
## 42782                                                                                                                                                                                                                       EE stepped on a rock and twisted his lt foot
## 42783                                                                                                                           EE stepped on a rock in the parking lot and lost her balance, falling to the concrete. Contusions to her lt elbow, lt knee, and rt hand.
## 42784                                                                                                                                                                                                          EE stepped on a rock in the parking lot. Injured knee/leg
## 42785                                                                                                                                                                               EE stepped on a rock on sidewalk while coming to work and fell on head, lf/rt hands.
## 42786                                                                                                             EE stepped on a rock on the sidewalk, twisting la ankle. EE has an appt at Dr. Classen on 4-17-09 at1 pm. EE refused treatment the night of the injury
## 42787                                                                                                                           EE stepped on a rock that was on pavement & twisted her left ankle which caused her fall & land on her right knee. The knee was skinned.
## 42788                                                                                                                                                                       EE stepped on a rock while carrying trash to sumpster turning left foot over injuring ankle.
## 42789                                                                                                                                                                  EE stepped on a round piece of rebar left by contractors. In catching his fall, he hurt his back.
## 42790                                                                                                                                                                             EE stepped on a rusty spring wire that penetrated thru his boot puncturing his rt foot
## 42791                                                                                                                                                                                                   EE stepped on a scrapboard with nails penetrating his lt big toe
## 42792                                                                                                                                                                                                                    EE stepped on a sharp rock and twisted rt foot.
## 42793                                                                                                                                                                                                                 EE stepped on a slick log and fell breaking rt arm
## 42794                                                                                                                                                                                                   EE stepped on a small rock and fell on right knee and right hand
## 42795                                                                                                                                                                                     EE stepped on a small rock, lost balance and fell on right knee and right hand
## 42796                                                                                                                                                                                                     EE stepped on a stick causing the stick to puncture his rt leg
## 42797                                                                                                                                                                          EE stepped on a submerged board with a nail while inspecting a flooding at dam right foot
## 42798                                                                                                                             EE stepped on a tree stump which gave way. EE's lt foot and leg went into the hole up to her knee EE fell causing scrapes on left arm.
## 42799                                                                                                                                                                                                                  EE stepped on a twig or acorn and twisted lt foot
## 42800                                                                                                                                                                                    EE stepped on a walk-off mat & twisted his ankle &fell/landing on lt shoulder -
## 42801                                                                                                                                                                                                                     EE stepped on a water hose and injured lt knee
## 42802                                                                                                                                                                     EE stepped on a wheel cart that carries trash & fell to floor-fell on stomach & folled on back
## 42803                                                                                                                                                                                                         EE stepped on an acorn and twisted her left ankle and foot
## 42804                                                                                                                                                                                                                       EE stepped on an acorn and twisted left knee
## 42805                                                                                                                                                             EE stepped on an office chair and fell while trying to remove a hook from the ceiling.. Head, left arm
## 42806                                                                                                                                                                                             EE stepped on an uneven rock lost his footing and twisted his rt ankle
## 42807                                                                                                                                                  EE stepped on an uneven section of the sidewalk while appproaching entrance turned lt ankle and fell on concrete.
## 42808                                                                                                                EE stepped on an uneven sidewalk while talking to officer, inner part of his foot landed on the low part of the sidewalk, weight mainly near ankle.
## 42809                                                                                                                                                                EE stepped on an unlevel area on the sidewalk causing her to fall to the ground injuring left ankle
## 42810                                                                                                                                                                                EE stepped on and fell on broken brick, injurying her rt ankle, lt knee and lt hand
## 42811                                                                                                                                                                                                        EE stepped on broken pavement twisting his lt kneeand ankle
## 42812                                                                                                                                                                   EE stepped on chair and tried to jump over anotherand hit head on door frame. Tender top of head
## 42813                                                                                                                                                                                                                      EE stepped on client foot and sprained ankle.
## 42814                                                                                                                                                                                                   EE stepped on counter with right leg trying to kill wasp in lab.
## 42815                                                                                                                                                                                                         EE stepped on curb and twisted ankle taking out recycling.
## 42816                                                                                                                                                                                                                         EE stepped on curb felt pain in left ankle
## 42817                                                                                                                                                                              EE stepped on drain cover that was not properly on and fell through it straining back
## 42818                                                                                                                                                 EE stepped on drain entering room and foot slippedthrough the space between gate and drain causing lower back pain
## 42819                                                                                                                                                                                                         EE stepped on drain pipe and slipped injuring his left leg
## 42820                                                                                                                                                          EE stepped on edge of ramp in cooler while puttingusda delivery in freezer. Foot twisted on edge of ramp.
## 42821                                                                                                                                          EE stepped on edge of sidewalk caused injury EE reporting for duty fell and hit rt side and knee laceration to both knees
## 42822                                                                                                                                                                                   EE stepped on elevator and fell on floor because floor level was risen-left knee
## 42823                                                                                                                                         EE stepped on elevator and it was not level with floor, stumbled and hit lower right leg and lower foot on elevator floor.
## 42824                                                                                                                                                EE stepped on exposed nail protruding from decking causing puncture between 2nd & 3rd toes and ball of left foot ()
## 42825                                                                                                                             EE stepped on floor where file cabinet had been. While in process of moving it, left knee was hyperextended while pushing the cabinet.
## 42826                                                                                                                                                                                                  EE stepped on food and fell injuring her left kneeelbow, left arm
## 42827                                                                                                                                                                                               EE stepped on foot or face of dog under table. Dog bit EE's left leg
## 42828                                                                                                                                                                                             EE stepped on her right foot the wrong way a few times during training
## 42829                                                                                                                                                                                          EE stepped on large rock causing foot to turn and strained ankle and knee
## 42830                                                                                                                                                                                                                       EE stepped on leaning vertical fan and fell.
## 42831                                                                                                                                                                                             EE stepped on loose piece of metal and fell injuring lt knee and ankle
## 42832                                                                                                                                                                EE stepped on loose stone, which caused him to lose his balance & fall to ground injuring his back.
## 42833                                                                                                                                                                                          EE stepped on mat in bathroom, mat slid from under EE's feet and EE fell.
## 42834                                                                                                                                                                    EE stepped on metal floor cover that shifted, causing foot to slide sideways and ankle to bend.
## 42835                                                                                                                                                 EE stepped on molding strip that separates new hard flooring from the carpet causing her right foot to turn under.
## 42836                                                                                                                                                                                                            EE stepped on nail sticking out from board with rt foot
## 42837                                                                                                                                                   EE stepped on nail while wearing shoes, nail went through sole of shoe and punctures foot required tetanus shot.
## 42838                                                                                                                                                                                                          EE stepped on nail. Puncture wound to bottom of left foot
## 42839                                                                                                                                                                          EE stepped on other agents leg twisting knee and causing EE to fall on concrete driveway.
## 42840                                                                                                                 EE stepped on patch of ice in parking lot, left foot went backwards, right foot went to side, re- sulting in injury to left knee/right lower back.
## 42841                                                                                                                                                                                    EE stepped on road squad bus from back door & hit her head on metal door frame.
## 42842                                                                                                                                                                                                                            EE stepped on rock and twisted lt foot.
## 42843                                                                                                                                                                           EE stepped on rock in p/lot trying to load equipment from building and sprain rt. Ankle.
## 42844                                                                                                                                                                                                                      EE stepped on rock twisting his lt ankle/foot
## 42845                                                                                                                                                                               EE stepped on rock when getting out of vehicle to come into work-twisted right ankle
## 42846                                                                                                                                                                                                              EE stepped on rock while walking and twisted ankle ()
## 42847                                                                                                                                                                               EE stepped on rocks thrown in stairway - both feetgave way & skinned up knee as well
## 42848                                                                                                                                                                                                     EE stepped on rolling foot of office shcair, turned left ankle
## 42849                                                                                                                                                                                                                      EE stepped on rosewood card and twisted ankle
## 42850                                                                                                                                                                                                        EE stepped on rusty nail while hooking up hose to building.
## 42851                                                                                                                                                                                                                    EE stepped on sidewalk edge and twisted rt knee
## 42852                                                                                                                                                           EE stepped on sidewalk that was icy, causing fall/hit head/fell on left side/injured back and right hand
## 42853                                                                                                                                                                                                     EE stepped on slippery sidewalk and fell contusion lt shoulder
## 42854                                                                                                                                                                            EE stepped on slippery surface while investigating accident, slipped and fell to ground
## 42855                                                                                                                                           EE stepped on some debris walking down a slope drive way, and fell on the debris that was lt behind by the construction.
## 42856                                                                                                                                                                                                                  EE stepped on some loose grave.. Turned her ankle
## 42857                                                                                                                                                                                                            EE stepped on some loose rock and twisted his rt ankle.
## 42858                                                                                                                                                                                                                    EE stepped on some rocks and twisted left ankle
## 42859                                                                                                                                                                                             EE stepped on something and foot twisted causing EE to fall on rt knee
## 42860                                                                                                                           EE stepped on steps during count time. He tried tocatch himself and jammed lt leg on the next step down causing him to twist lower back.
## 42861                                                                                                                                                      EE stepped on the curb & stumbled causing him to fall into asphalt. EE was working on homecoming weekend day.
## 42862                                                                                                                                                                   EE stepped on the edge of raised basketball court rolled rt ankle when stepping and fx'd rt foot
## 42863                                                                                                                                                EE stepped on the edge of the sidewalk my foot turned causing something to pull in my right knee & upper leg below.
## 42864                                                                                                                                                                                            EE stepped on the first step, her foot turned under and she sprained it
## 42865                                                                                                                                                                                  EE stepped on the side of a mat while exiting the building, twisting ankle & fell
## 42866                                                                                                                                                                                         EE stepped on the side of the floor mat in the kitchen & turned her ankle.
## 42867                                                                                                                      EE stepped on tile floor in an area where water was collecting on the floor, put hand down to the floor, little finger on left hand sprained.
## 42868                                                                                                                                                                            EE stepped on uneven concrete when she lost her balance and fell injuring knee and back
## 42869                                                                                                                                                                                                                         EE stepped on uneven ground & rolled ankle
## 42870                                                                                                                                                                                              EE stepped on uneven pavement and fell contusion rt elbow and rt knee
## 42871                                                                                                                                                                                                                 EE stepped on uneven pavement and twisted rt ankle
## 42872                                                                                                                                                                     EE stepped on uneven pavement while walking clients to class and fell on left knee and rt hand
## 42873                                                                                                                                                                                                EE stepped on uneven sidewalk & fell injuring leftelbow & left hip.
## 42874                                                                                                                                                                EE stepped on uneven sidewalk while walking to work by way of hospital cafeteria. Injured rt ankle.
## 42875                                                                                                                                                                                                      EE stepped on uneven surface in the parking lot ankle twisted
## 42876                                                                                                                                                                    EE stepped on unlevel concrete in area of a planned melting and turned left foot, bone fracture
## 42877                                                                                                                                                      EE stepped on wash cloth in shower room, slipped and fell catching herself on a rail before she hitthe floor.
## 42878                                                                                                                                                                                                                EE stepped on wet floor and fell twisting left knee
## 42879                                                                                                                                                                                                                           EE stepped on wet floor and injured knee
## 42880                                                                                                                                                                                                                          EE stepped on wet floor and slipped down.
## 42881                                                                                                                                       EE stepped on wood railing used as parking barrierand EE left ankle turned inward over the side, caused sprain to left ankle
## 42882                                                                                                                                                                                           EE stepped onto a freshley mopped floor, slipped and fell on her buttock
## 42883                                                                                                                                         EE stepped onto a lower deck; his foot touching a piece of hose caused him to fall onto a rain-soaked higher step of deck.
## 42884                                                                                                                                    EE stepped onto a wooden railroad tie that was being used as curbing & it was wet at the time & she slipped & fell on her back.
## 42885                                                                                                                                                                  EE stepped onto brick wall and lost balance falling apprx 3 feet land on rt side - fractured ribs
## 42886                                                                                                                                                                                      EE stepped onto loading dock ramp and fell. Hurtingright thumb and left knee.
## 42887                                                                                                                                    EE stepped onto pavement and heel of shoe got caught in hole in pavement which caused EE to fallresulting in multiply injuries.
## 42888                                                                                                                                         EE stepped onto pavement from small step and hearda pop in left knee. Then experienced great pain and couldn't walk on it.
## 42889                                                                                                                          EE stepped onto sidewalk which was covered with ice. Her feet slipped from under her causing her to fall on back and hit head on sidewalk
## 42890                                                                                                                                                            EE stepped onto the work truck bumper and felt his knee snap; he could not put weight on it afterwards.
## 42891                                                                                                                                                                             EE stepped onto treadmill that had been left on by someone and was thrown to the floor
## 42892                                                                                                                                                              EE stepped onto wet floor mats and landed hard on right knee. Left knee strained from being extended.
## 42893                                                                                                                                                                                                       EE stepped out back of work truck and left ankle turned over
## 42894                                                                                                                                             EE stepped out door to courtyard, slipped on yellow strip due to rain, fell down landing on buttocks, right hip/arm ()
## 42895                                                                                                                                                                           EE stepped out front door & turned ankle on step., fell as a result & banged upper knee.
## 42896                                                                                                                                                       EE stepped out of a&b dorm door onto painted part of sidewalk slipped and fell on ice and snow hurt left leg
## 42897                                                                                                                           EE stepped out of back door of housing unit to clear the yard of inmates & stepped off sidewalk on to the ground and twisted left ankle.
## 42898                                                                                                                                EE stepped out of back office door going to trash bend and stepped on rock and twisted lt foot and top middle and upper ankle area.
## 42899                                                                                                                                                                                          EE stepped out of bike shed twisting his ankle & heard a pop in his ankle
## 42900                                                                                                                                   EE stepped out of bldg on first step. Lost balancejumped to keep from falling on concrete, landing on grass on rt knee & elbow..
## 42901                                                                                                                                                                                                  EE stepped out of car on to slippery surface and strained rt knee
## 42902                                                                                                                                                                                                      EE stepped out of delivery vehicle & sprained his left ankle.
## 42903                                                                                                                                                                             EE stepped out of door and slipped and fell on step injuring left foot and rt shoulder
## 42904                                                                                                                                                                                                        EE stepped out of escort van awkward onto chipped pavement.
## 42905                                                                                                                                                             EE stepped out of first hut at the main gate, missed step. Left knee inflammed bulk of weight on knee.
## 42906                                                                                                                                                                 EE stepped out of her car onto an icy parking space and fell when her feet went out from under her
## 42907                                                                                                                                                                                            EE stepped out of her car onto the staurated grounand twisted her knee.
## 42908                                                                                                                                                                             EE stepped out of her vehicle and slipped twistingher ankle and falling in parking lot
## 42909                                                                                                                                                                                     EE stepped out of his machine & when he stepped onthe ground his knee twisted.
## 42910                                                                                                                         EE stepped out of his veh w/lt foot and hit a oily spot and fell, hitting his leg against the frame of the door and a cut above the ankle.
## 42911                                                                                                                                                                                                                  EE stepped out of motor vehicle and twisted knee.
## 42912                                                                                                                                                                              EE stepped out of office and slipped, fell face forward, while transporting documents
## 42913                                                                                                                                                   EE stepped out of pert van and put weight on left leg, began to fall when another officer grabbed EE. Left knee.
## 42914                                                                                                                                           EE stepped out of planter which is 3ft off the ground and hit the railing with her body pulling muscles in leg and back.
## 42915                                                                                                                                   EE stepped out of ppv I passenger side & the floormat slid causing him to slide out of the truck. His back hit the base of truck
## 42916                                                                                                                                     EE stepped out of side door of dining hall and missed the step down causing him to turn his right ankle. Sprain to right ankle
## 42917                                                                                                                                                                                          EE stepped out of state vehicle and felt sharp pain behind left knee cap.
## 42918                                                                                                                                                          EE stepped out of state vehicle and felt somethingsting her, her legs and ankles were covered in red ants
## 42919                                                                                                                                                                                                             EE stepped out of the building wrong, hurting his back
## 42920                                                                                                                                                          EE stepped out of the state vehicle when he began to fall--he injured his rt hand while breaking the fall
## 42921                                                                                                                                                                    EE stepped out of truck in parking lot and slipped on ice and fell on left buttocks and hip. ()
## 42922                                                                                                                                                                                                     EE stepped out of truck on patch of ice and fell on both arms.
## 42923                                                                                                                                                                                                             EE stepped out of truck onto board twisting left ankle
## 42924                                                                                                                         EE stepped out of van after picking up inmates when his foot hit the ground, his left hip popped and pain shot up left side and into back.
## 42925                                                                                                                                                                   EE stepped out of van on lt foot, pain hit her fora second. Rest of day nagging ache. Lower back
## 42926                                                                                                                                                                                                            EE stepped out of van onto a rock and twisted left knee
## 42927                                                                                                                                                                                     EE stepped out of van onto ramp and fell hitting ankle, leg, shoulder and head
## 42928                                                                                                                                                                           EE stepped out of veh-ball under foot caused EE tofall injuring rt ankle, left knee/leg.
## 42929                                                                                                                                                                                                      EE stepped out of vehicle & slipped on ice in the parking lot
## 42930                                                                                                                                                                                                                        EE stepped out of vehicle and twisted knee.
## 42931                                                                                                                                                                                       EE stepped out of vehicle when he stepped in a hole and twisted his lt ankle
## 42932                                                                                                                                                                                      EE stepped out of vehicle, hyperextending right knee causing 60 sec. Of pain.
## 42933                                                                                                                                   EE stepped out of yard office on to the outside steps while stepping down his lt knee popped out of joint causing him to stumble
## 42934                                                                                                                              EE stepped out on balcony to speak to another judge & door closed on hand breaking & cutting finger. Fracture/laceration left finger.
## 42935                                                                                                                                                                    EE stepped out onto the pavement from his vehicle and twisted his ankle due to uneven pavement.
## 42936                                                                                                                                  EE stepped over a cardboard on the floor of his truck when his foot slipped from under him causinghim to fall injuring his lt leg
## 42937                                                                                                                                                                         EE stepped over a floor pallet causing his feet to be caught--EE fell injuring his lt hand
## 42938                                                                                                                                                                    EE stepped over a guard rail near hall-patterson, while mowering and fell, bruising his rt side
## 42939                                                                                                                                                  EE stepped over a rope with his lt foot and as he was bringing his rt foot over the rope his toe got hung in rope
## 42940                                                                                                                                                   EE stepped over bottle and fell in water causing both hands, both knees and right great toe to hit the pavement.
## 42941                                                                                                                                                                                                        EE stepped over cable and twisted left ankle on rubber hose
## 42942                                                                                                                                                                                                                              EE stepped over curb and turned ankle
## 42943                                                                                                                                                                                              EE stepped over pipe and stepped down on nail protruding out of board
## 42944                                                                                                                                                                                                                    EE stepped over the edge and twisted her ankle.
## 42945                                                                                                                                                                                  EE stepped put of car and twisted ankle and fell injuring ankle, rt hand and chin
## 42946                                                                                                                                                                                                                   EE stepped the wrong way and twisted her lt knee
## 42947                                                                                                                                                                                                                  EE stepped the wrong way and twisted her rt ankle
## 42948                                                                                                                                                                              EE stepped through front porch of office while clearing a table after a special event
## 42949                                                                                                                                                                                           EE stepped through the gate on the yard and slipped and fell on the ice.
## 42950                                                                                                                                                                                             EE stepped to close to the access hatch on the tower & slipped & fell.
## 42951                                                                                                                                                                                     EE stepped to get into van and was pulling on steering wheel and strained back
## 42952                                                                                                                                                                                               EE stepped to throw ball and lt leg twisted because of uneven ground
## 42953                                                                                                                                                EE stepped towards gate to shut it. Struck leg on pvc pipe sticking out of ground and caused abrasion ot right shin
## 42954                                                                                                                                                                                                             EE stepped up and down a curb, felt pain in right knee
## 42955                                                                                                                                                                        EE stepped up into van and steps were wet. EE slipped and fell out of van flat on her back.
## 42956                                                                                                                                 EE stepped up on chair to get to higher shelf and hit head on door jam; thought would be fine but felt nauseous and dizzy next day
## 42957                                                                                                                     EE stepped up on either broken or sticky sidewalk when she lost balance and fell into window hittingforehead and landing on rt side and knees.
## 42958                                                                                                                                                                                                            EE stepped up on footstool and fell straining left knee
## 42959                                                                                                                  EE stepped up on rear of van to remove 6ft ladder from top of ladder carrier. Wind came up and snatched ladder away caused EE to turn 180 degrees
## 42960                                                                                                                                                                                             EE stepped up on sidewalk and ankle turned over. Sprain to right ankle
## 42961                                                                                                              EE stepped up on sidewalk to enter building, and stepped on black ice. She fell on her right side &hip injuring right cheek on face & hurting her hip
## 42962                                                                                                                                                                       EE stepped up on step of side of loader, and foot slipped off step, laceration to right shin
## 42963                                                                                                                EE stepped up on step, her l foot slipped off edge, caused her to fall and land on her r knee, r knee was in extreme pain and r hand and wrist hurt
## 42964                                                                                                                                                  EE stepped up onto a chair to reach a light and fell onto his lower back. Injury to lower back and upper buttocks
## 42965                                                                                                                                                                                  EE stepped up onto concrete when she felt something pull in her rt leg(hamstring)
## 42966                                                                                                                                                                                                                     EE stepped up onto sidewalk and knee gave way.
## 42967                                                                                                                                                  EE stepped up onto the curb and her foot slipped on the wet concrete. Causing her to turn her left foot; fracture
## 42968                                                                                                                                                  EE stepped up onto tractor to move timbers-steppedup with rt leg and not push brake due to severe pain in rt knee
## 42969                                                                                                                                                                                                                  EE stepped up onto van step and twisted left knee
## 42970                                                                                                                                      EE stepped up to judges bench in courtroom, turnedaround to exit and fell. Injured left knee, right ankle, left foot, big toe
## 42971                                                                                                                                                                                        EE stepped upon the sidewalk and heard a pop in the ankle, the ankle turned
## 42972                                                                                                                                                                           EE stepped wrong and twisted ankle while walking toward gurney to do an ekg on a patient
## 42973                                                                                                                                                                   EE stepping across ditch and stepped in a hole. Twisting rt ankle and falling to ground on face.
## 42974                                                                                                                                                        EE stepping down from ladder & stepped on water hose & turned rt ankle, causing him to fall on hisleft hip.
## 42975                                                                                                               EE stepping down from platform, heel of shoe was caught on lip of platform & cord. EE fell on rightside, landing on hip, right hand. Right toe hurts
## 42976                                                                                                                                             EE stepping down from step stool-stepped wrong andfell against open file shelving, caught left leg against step stool.
## 42977                                                                                                                                                                                                                      EE stepping down off ladder and turned ankle.
## 42978                                                                                                                                                                                                                EE stepping down steps to ground right ankle popped
## 42979                                                                                                                                 EE stepping down the steps to leave work & missed last step EE was holding a computer tower & other hand was holding the handrail.
## 42980                                                                                                                                                                 EE stepping from ambulance van and foot slipped on top step causing EE to fall injuring left foot.
## 42981                                                                                                                                         EE stepping from carpet onto tile when feet went from underneath EE causing EE to fall twisting ankle and hitting rt knee.
## 42982                                                                                                                                                                           EE stepping from paint van, tripped over curbing causing EE to fall and twist left ankle
## 42983                                                                                                                                                                             EE stepping from the bow of the patrol boat onto tthe boat deck and twisted left ankle
## 42984                                                                                                                 EE stepping from tractor lt foot first on c-frame. Lt foot slipped on wet metal. Leaving rt foot on track causing rt knee to pop. Injured rt knee.
## 42985                                                                                                                                                                                                                       EE stepping from van and twisted left ankle.
## 42986                                                                                                                                                                               EE stepping int golf cart-shoe heel got caught on the side of the veh-fell hit head.
## 42987                                                                                                                                      EE stepping into the shower, left foot slipped on floor, causing EE to bend & twist upper area of right foot, including toes.
## 42988                                                                                                              EE stepping off crawler tractor was to step on c- frame. Then to ground. Foot slipped off c-frame, landed on ground still staning -pulled muscle back
## 42989                                                                                                                                                  EE stepping off elevator, elevator, did not level floor. She tripped and fell on hands and knees. Injured rt knee
## 42990                                                                                                                                                                     EE stepping off ladder and stepped on carpenter's drill and fell to floor twisting left ankle.
## 42991                                                                                                                                                                                        EE stepping off of scaffolding and missed last step caught hand on railing.
## 42992                                                                                                                                                                                                                     EE stepping off tractor and left foot slipped.
## 42993                                                                                                                                                                               EE stepping off tractor and stepped onto small tract scappr chain and twisted ankle.
## 42994                                                                                                                                                           EE stepping off trk-didn't see roll of strapping on the ground causing him to twist left ankle and fall.
## 42995                                                                                                                                                     EE stepping on towel that was placed at door beging used as doormat, she slipped and fell floor - rt knee/pain
## 42996                                                                                                                                                                                     EE stepping onto the curb EE's foot slipped and eefell. Fractured rt shoulder.
## 42997                                                                                                                                                                                                     EE stepping out of truck and turned rt ankle on uneven ground.
## 42998                                                                                                                                                                                       EE stepping out of van to let pt down on lift injury pop on top of left foot
## 42999                                                                                                                                                                     EE stepping out of vehicle into the running board and applied his weight. Ankle turned sharply
## 43000                                                                                                                                                             EE stepping over a chair and fell catching his hand under chair dislocating lft index and ring fingers
## 43001                                                                                                                                                                   EE stepping over a small portable heater and foot hit the roller of chair-lost balance and fell.
## 43002                                                                                                                                                                                                        EE stepping over wall and fell on wall injuring left wrist.
## 43003                                                                                                                                                                 EE stepping up onto a bobcat so that he could un- load a shipment from delivery truck... Left knee
## 43004                                                                                                                                                                                                                      EE stepping up onto stairs, injured right hip
## 43005                                                                                                            EE stepprd into a hole in the kitchen floor twisting her foot and fell to the floor on her knee. Shestates she hurts in rt foot, ankle, lt elbow rt arm
## 43006                                                                                                                                                                              EE stocking shelves when he felt a pull in his right shoulder and a burning sensation
## 43007                                                                                                                                                                                                   EE stocking steel pipe casing when casing fell against EE's knee
## 43008                                                                                                                              EE stocking supplies on shelf in closet, supplies slipped off shelf hitting employee in mouth and breaking tooth 2nd from front right
## 43009                                                                                                                          EE stood and then sat down in chair, chair rolled backwards and from underneath her and she fell to floor injuring right wrist and coccyx
## 43010          EE stood and then saw that to her right a hutch was falling towards her. She caught the piece of furniture and tried to puch it upright but the hutch fell forward again. Everything inside and on tope of the the hutch fell onto her desk and floor. ()
## 43011                                                                                                                                                                                                   EE stood from chair and computer keyboard tray fell on left foot
## 43012                                                                               EE stood from her desk chair and realized her right foot was asleep and had no feeling. When she started to walk and put weight on her right foot, the ankle twisted and she fell ()
## 43013                                                                                                                                             EE stood from his desk and started to walk and shoheel got caught in the floor and EE fell back on his back and elbow.
## 43014           EE stood in a rolling chair with someone holding it so she could change the time on the wall clock. She decided to get down since the chair kept moving and while getting down, she caught her foot on the arm of the chair falling and hitting head. ()
## 43015                                                                                                                   EE stood in chair to reach shelf and became dizzy and EE fell and hit shoulder and head on desk- sprained shoulder, foot and ankle, bruised head
## 43016                                                                                                                                                                                      EE stood in chair to reach top shelf-chair turned over & EE fell on left hand
## 43017                                                                                                                                  EE stood in firearm training exercise and while moving to another stance, EE lost balance in mud and slipped and fell. Left hand.
## 43018                                                                                                                                                           EE stood on chair to close light cover - chair broke and EE fell dislocating rt knee and soreness in hip
## 43019                                                                                        EE stood on chair w/casters to close a window, came down from chair and caught her foot on chair, fell corner of the desk, loosing her balance and falling to the floor. ()
## 43020                                                                                                                                                               EE stood on pallet of boxes to remove and item and fell off pallet/ injurying back and (r) side ribs
## 43021                                                                                                                                                                             EE stood on top of desk to hang picture and lost balance, fell and struck upper rt arm
## 43022                                                                                                                                                                                              EE stood on wheeled chair to reach for an object and slipped and fell
## 43023                                                                                                                 EE stood to lean over desk, went to sit in chair and the chair rolled backwards causing EE to fall to floor striking the front of chair with back.
## 43024                                                                                                                                                                                                   EE stood to walk away from desk and hit left knee on open drawer
## 43025                                                                                                                                                                                           EE stood up after changing res and felt a catch in back, low back strain
## 43026                                                                                                                                                                                 EE stood up after examining a patient & struck hishead on the corner of a cabinet.
## 43027                                                                                                                                                                                            EE stood up and hit his head under the bookshelf in the nurse's office.
## 43028                                                                                                                                                      EE stood up and turned to walk out from behind his desk. EE banged lt knee on drawer that was partially open.
## 43029                                                                                                                                                                                                                                   EE stood up and twisted ankle ()
## 43030                                     EE stood up at desk from seated position. Walked around the building to complete work related tasks downstairs. Employee stated that her right knee felt tight. Within one hour she was unable to bear weight on right leg. ()
## 43031                                                                                                                                                                                         EE stood up at desk to get piece of paper, sat back down and missed chair.
## 43032                                                                                                                                                                                                            EE stood up from a squatting position and hurt herback.
## 43033                                                                                                                                                                    EE stood up from chair and stubbed toe on tile floor falling striking arm on corner of console.
## 43034                                                                                                                                          EE stood up from chair and went to make a step andsharp pain around ankle began everytime. EE attempted to put foot down.
## 43035                                                                                                                                                                                      EE stood up from chair in control room and felt something pull in his rt knee
## 43036                                                                                                                                                         EE stood up from chair to get papers-sat back down and chiar tipped over and EE fell hitting back on chair
## 43037                                                                                                                             EE stood up from chair to retreive file from cabinet and chair moved when EE went to sit down and EE fell to the floor-strain rt shldr
## 43038                                                                                                                                                                                                   EE stood up from chair, cabinet door above was open & stuck head
## 43039                                                                                                                             EE stood up from chair, her foot caught either thechair leg or the floor mat and she fell, hitting her head on the corner of her desk.
## 43040                                                                                                                                                                                      EE stood up from desk & bumped her lt knee on the lock causing pain/swelling.
## 43041                                                                                                                                                                                             EE stood up from desk/left foot was caught in mouse wiring and EE fell
## 43042                                                                                                                                     EE stood up from dest for a moment, when sat down, either missed chair or chair rolled away. Fell onback between desk & chair.
## 43043                                                                                                                                                                                          EE stood up from table and left ankle buckled causing EE to fall to floor
## 43044                                                                                                                                              EE stood up from working at desk, turned and hit his head on wall-mounted metal shelf. Contusion rt side of forehead.
## 43045                                                                                                                                                                                                       EE stood up on foot while foot was asleep. Srained rt ankle.
## 43046                                                                                                                                                                                             EE stood up to assist client and made an awkard turn, pain right side.
## 43047                                                                                                                                                           EE stood up to file papers and when she was going to sit back down the chair slipped out from under her.
## 43048                                                                                                                                           EE stood up to get drink for clients rt ankle gaveway causing EE to fall onto arm of clients chair- striking lt rib cage
## 43049                                                                                                                                      EE stood up to get files on back of desk. When he sat back down, chair had slipped from under him and he landed on the floor.
## 43050                                                                                                                                              EE stood up to leave desk, feet became entangled in computer cords, fell onto the floor on knees & palms of hands. ()
## 43051                                                                                                                                                         EE stood up to leave meeting feet became entangledin chair legs, EE fell landing on left side and shoulder
## 43052                                                                                                                                                                                                           EE stood up to leave the room turned ankle over rtankle.
## 43053                                                                                                                                                                     EE stood up to put food tray lid on tray, pt became aggressive, shoved tray in to EE's chin ()
## 43054                                                                                                                                                                        EE stood up to run test on pump, he got up to quick or something & felt pain in lower back.
## 43055                                                                                                                                                                                                      EE stood up to swear in witness and hit lt knee onrim of desk
## 43056                                                                                                                                                                                                             EE stood up to unlock door and felt sharp pain in foot
## 43057                                                                                                                                                EE stood up to walk out of office, caught heel of shoe on phone cord and fell forward, lainding on arms and lt knee
## 43058                                                                                                                                                            EE stooped down to get a metal 5 gal water container and upon streightening felt pain in lower rt back.
## 43059                                                                                                                                                                                                                  EE stooped down to lift patient and strained back
## 43060                                                                                                                                                                                                 EE stooped down to pick patient off of floor and felt shoulder pop
## 43061                                                                                                                                                                                                                EE stooped to pick up radio, pulled muscle in back.
## 43062                                                                                                                                  EE stoped at the traffic light at hwy 50 and millbrook rd when the state vehicle he was driving was rear ended by another vehicle
## 43063                                                                                                                            EE stoped vehicle in driveway, suspect ran and EE ran and attempted to place suspect to ground, no- ticed pulled hamstring in left leg.
## 43064                                                                                                             EE stopeed violator vehicle when he was struck by another vehicle in lt back quarter. EE vehicle carwas thrown into lane & struck strain shoulder/neck
## 43065                                                                                                                                                                               EE stopped a a stop light when another vehicle bumped him in the rear of the vehicle
## 43066                                           EE stopped a cmv to conduct a weight check. EE bent over to retrieve a portable scale used to conduct the weight check. EE felt a sharp pain in his right hip, knee, and ankle as he bent over to retrieve the scale. ()
## 43067                                                                                    EE stopped a driver who was uncooperative and attempted to run. EE reached out and grabbed the subject with his left hand and his pinky finger got caught in the subjects coat.
## 43068                                                                                                                     EE stopped a moped for equipment violation, the violator attempted to swallow substance, EE grabbedhim, violator jerked away, EE finger popped
## 43069                                                                                                                                                                    EE stopped a motorist who fled on foot, pursued thedriver on and fell to the ground in a ditch.
## 43070                                                                                                                                   EE stopped a truck for safety inspection. When extvehicle EE closed door on hand. EE called sgt. T. Dwheeler to report incident.
## 43071                                                                                                             EE stopped a vehicle on us64 which started rolling backwards toward his vehicle. EE struck lt knee on dash trying to activate antitheft switch which I
## 43072                                                                                                                                                                          EE stopped at a stop light. Antoher vehicle hit the bakc of EE's car cracking the bumper.
## 43073                                                                                                                                     EE stopped at a stop sign at exit 435 in newport, tn. And a pick up truck ran into to the back of her car. Severe back strain.
## 43074                                                                                                                                                                                         EE stopped at a stoplight when hit from behind causing neck and back pain.
## 43075                                                                                                                      EE stopped at a traffice light when another motor vehicle approaching from rear side swiped his vehicle. EE sustained shoulder & neck injury.
## 43076                                                                                                                                                                                    EE stopped at a yield sign and was hit in rear by another vehicle. No injureies
## 43077                                                                                                                                                                                     EE stopped at mva and was hit from behind by another car-strained back and hip
## 43078                                                                                                                                                          EE stopped at railroad crossing and her vehicle was struck in rear by vehicle that following top closely.
## 43079                                                                                                                                                        EE stopped at red light, hit in the rear by motorist that failed to reduce speed - sharp pain in lower back
## 43080                                                                                                                                                                     EE stopped at stop light-was rear ended by anothervehicle-caused EE lower back pain & headache
## 43081                                                                                                                                                                               EE stopped at stop sign & car behind failed to stop hitting EE-neck/back/lt shoulder
## 43082                                                                                                                                                                               EE stopped at stoplight and was waiting for light to change and was hit from behind.
## 43083                                                                                                                                                                          EE stopped at traffic light when struck in rear by another vehicle causing injur to back.
## 43084                                                                                                                            EE stopped behind another vehicle waiting to make a left turn when struck in the rear by a vehicle that could not stop-neck & back pain
## 43085                                                                                                                EE stopped cart abruptly to keep from hitting a student who stepped in his path, the cart rolled over his big lt toe causing a contusion to his toe
## 43086                                                                                                              EE stopped facing north at red light attempting tomake lt turn onto hwy 5 other vehicle was traveling n on us 1 in the lt travel straight......... ..
## 43087                                                                                                                                                                                             EE stopped for car in front of him and was hit in rear by another veh.
## 43088                                                                                                                                                       EE stopped for the car in front of him to make left turn. Car behind him did not stop and hit state vehicle.
## 43089                                                                                                                                     EE stopped his vehicle behind a disabled vehicle. EE was seated in his vehicle when struck from behind. Strain to neck muscles
## 43090                                                                                                                                         EE stopped in line of traffic and was struck in the rear end of the vehicle he was a passenger in. Headache and back pain.
## 43091                                                                                                                                       EE stopped in traffic due to collison, hit in the rear by another vehicle that was unable to stop lower back, lt foot, chest
## 43092                                                                                                                                                                             EE stopped in traffic on I-40. Vehicle struck by another vehicle which failed to stop.
## 43093                                                                                                                                                                    EE stopped in traffic when veh was hit in rear causing head to snap backwards and hit headrest.
## 43094                                                                                                                                                                                             EE stopped in traffic, truck hit from rear, strain to neck, back, legs
## 43095                                                                                                                                  EE stopped on I-85 in traffic stop writing trafficcitations. Patrol vehicle was struck by another vehicle on left passenger side.
## 43096                                                                                                                        EE stopped on emergency strip of I-40 to remove a large strip of truck tire. Upon returning to patrol vehicle, slipped breaking right hand.
## 43097                                                                                                                                                      EE stopped on interstate for construction rear ended by large truck, going to fast. Neck and lower back pain.
## 43098                                                                                                               EE stopped on left shouder of I40 issuing citation when patrol car was struck in rear by suv then again by tractor trailer. Strain neck/spine/chest.
## 43099                                                                                                                                                      EE stopped on steps to open door-when stepped downfoot slipped causing her to fall to knees-left knee swollen
## 43100                                                                                                                               EE stopped on top step, both feet slid out from un-der her and fell down 6 steps, injuring left ankle left shoulder, and right back.
## 43101                                                                                                             EE stopped patrol car behind car that was waiting to make left turn, car behind EE failed to stop & struck EE's car in rear causing EE to hit car in f
## 43102                                                                                                                       EE stopped speeding car. Needed his flashlight from under the seat. Charger was in middle so EE had to reach further causing strain in back.
## 43103                                                                                                             EE stopped suddenly b/c another EE was coming out of warewash pushing cart filled w/food trays. Had on plasitc boots & feet slipped out from under her
## 43104                                                                                                                                                      EE stopped suspected impaired driver-suspect fled on foot-EE followed & while chasing heard pop in right knee
## 43105                                                                                                                          EE stopped to assist motorist with catching a dog, covered dog with a coat and picked him up, dog became aggressive and bit EE on lt hand
## 43106                                                                                                                                  EE stopped to assist stranded motorist on I-77 near clanton rd. & some debris was blown in his right eye from traffic passing by.
## 43107                                                                                                                                         EE stopped to assit motorist and found he was wanted - a struggle occurred and EE fell on hwy injuring left hand and wrist
## 43108                                                                                                              EE stopped to check a hunter who'd just come out of woods, takina a deer. EE helped the hunter loaddeer into truck, pulling right shoulder *sal cont*
## 43109                                                                                                                             EE stopped to check disabled vehicle, a truck observed patrol lights & attempted to reduce speed lost control, hitting EE's patrol car
## 43110                                                                                                                                                  EE stopped to check on abandoned veh-when approaching veh EE stepped on a piece of metal causing EE to twist knee
## 43111                                                                                                                                                       EE stopped to let vehicle enter street and car behind struck him in the rear causing head to snap backwards.
## 43112                                                                                                                                EE stopped to make left turn. Vehicle 2 stopped behind. Vehicle 2 was struck by vehicle 3 in rear which in turn struck EE's vehicle
## 43113                                                                                                                                                      EE stopped to remove a driveshaft from the road touch it with his rt hand - it was hot and burned his rt hand
## 43114                                                                                                                           EE stopped to wait for car in front to make left turn. Was rear-ended by truck that was approachingand didn't stop. Neck and back strain
## 43115                                                                                                                 EE stopped veh for speeding and had suspect get out-while talking suspect ran and EE followed-EE fell twice following suspect-knee, leg and finger
## 43116                                                                                                                                                         EE stopped veh to attempt to arrest when struggle ensued knocking EE to the ground injuring head andchest.
## 43117                                                                                                                                                            EE stopped veh, suspect jumped out of veh and ran, EE ran after suspect and pulled hamstring in rt leg.
## 43118                                                                                                              EE stopped vehicle to check driver impaired driverviolator fell out of vehicle was in rev. EE jumpedcar to avoid another vehicle-mild sprain rt knee.
## 43119                                                                                                             EE stopped violator for speeding and attempted to put handcuffs on violator when violator drove off w/EE hung in door jam dragging on hwy-lft shin/leg
## 43120                                                                                                                           EE stopped was stopping a boat for safety check the other boat quickly stopped and turned into EE boat and collided-EE thrown into water
## 43121                                                                                                                                                                                                      EE strain back while attempting to take inmate blood pressure
## 43122                                                                                                                                                                                                     EE strain back while rearranging tables and chairsin classroom
## 43123                                                                                                                                                                                              EE strain her back while lifting something that was too heavy for her
## 43124                                                                                                                                                                                                                         EE strain her rt elbow while lifting files
## 43125                                                                                                                                                                                                 EE strain his right knee while assisting in restraining a suspect.
## 43126                                                                                                                                                                                                  EE strain his rt arm/elbow while lifting a gate toa laundry chute
## 43127                                                                                                                                                                                                    EE strain his upper chest while trying to open an elevator door
## 43128                                                                                                                                                                                                                         EE strain lt leg while running across yard
## 43129                                                                                                                                                                                                                      EE strain muscle in back while lifting tables
## 43130                                                                                                                                                                                                        EE strain neck muscle while lifting a planter in greenhouse
## 43131                                                                                                                                                                                                                          EE strain rt elbow while digging fireline
## 43132                                                                                                                                                                                                                   EE strain rt hand while climbing the radio tower
## 43133                                                                                                                                                                                                        EE strain rt shoulder and neck muscle while handling a boat
## 43134                                                                                                                                                                                                                          EE strain rt wrist while restacking trays
## 43135                                                                                                                                                                                EE strain/sprain his back when pushing through front door while carrying a computer
## 43136                                                                                                                                                                                                    EE strained a muscle in her back while moving office furniture.
## 43137                                                                                                                                                                                  EE strained abdomen - lifting patients EE has been employed by juh 6 yrs 7 months
## 43138                                                                                                                                                                                                            EE strained abdomen area lifting resident several times
## 43139                                                                                                                                                                                                    EE strained and bruised left shoulder while restraining patient
## 43140                                                                                                                                                                                                                                EE strained ankle walking up stairs
## 43141                                                                                                                                                                                                                        EE strained arm during unarmed self defense
## 43142                                                                                                                                                                                                                        EE strained arm getting resident out of tub
## 43143                                                                                                                                                                                                                 EE strained arm restraining out of control student
## 43144                                                                                                                                                     EE strained arm while intervening with aggressive client who was kicking, hitting, pushing and causing injury.
## 43145                                                                                                                                                                                   EE strained back after attempting to lift a table while setting up for an event.
## 43146                                                                                                                                                                                                            EE strained back and chest taking trash out to dumpster
## 43147                                                                                                                                                                                   EE strained back and hips while continously having to reposition resident in bed
## 43148                                                                                                                                                                                                           EE strained back and lft hip while pulling box of plants
## 43149                                                                                                                                                                                                  EE strained back and neck moving bags for dirt and large planters
## 43150                                                                                                                                                         EE strained back and rt shoulder while apprehending juvenile and restraining juvenile for 30 to 40 minutes
## 43151                                                                                                                                                                                                              EE strained back and shoulders lifting boxes of files
## 43152                                                                                                                                                                                                  EE strained back assisting in lifting a patient with 2 other EE's
## 43153                                                                                                                                                                                                           EE strained back assisting in lifting patient out of bed
## 43154                                                                                                                                                                                                               EE strained back assisting lifting resident into bed
## 43155                                                                                                                                                                                                                        EE strained back assisting patient to chair
## 43156                                                                                                                                                                                                                  EE strained back attempting to move an 80 lb desk
## 43157                                                                                                                                                                                                       EE strained back bending over to place computer on the floor
## 43158                                                                                                                                                                                                                      EE strained back by lifting an injured person
## 43159                                                                                                                                                                                                              EE strained back carrying and laying shingles on roof
## 43160                                                                                                                                                                                  EE strained back carrying charts from alpine to car then from car to records room
## 43161                                                                                                                                                                                                                          EE strained back carrying consumer on mat
## 43162                                                                                                                                                                                                                    EE strained back carrying patient to quiet room
## 43163                                                                                                                                                                                                   EE strained back catching resident that was falling out of chair
## 43164                                                                                                                                                                                                                                 EE strained back changing resident
## 43165                                                                                                                                                                                                            EE strained back changing window units in electric shop
## 43166                                                                                                                                                                               EE strained back due to lifting, pushing, and pulling of files, boxes, and furniture
## 43167                                                                                                                                  EE strained back during course of changing individuals after breakfast & after changing/ toileting-felt the pain the next morning
## 43168                                                                                                                                                                                                              EE strained back during emergency evacuation training
## 43169                                                                                                                                                                                                        EE strained back emptying trash into large plasticcontainer
## 43170                                                                                                                                                                                                                   EE strained back from lifting water bottle racks
## 43171                                                                                                                                                                                                              EE strained back gettin patient out of bed into chair
## 43172                                                                                                                                                                                                                        EE strained back getting clients out of bed
## 43173                                                                                                                                                                                                                      EE strained back getting patient out of chair
## 43174                                                                                                                                                                                                                       EE strained back getting patient up from bed
## 43175                                                                                                                                                                                                         EE strained back helping lift heavy patient from the floor
## 43176                                                                                                                                                                                                                   EE strained back helping lift patient out of bed
## 43177                                                                                                                                                                                                                     EE strained back helping resident from falling
## 43178                                                                                                                                                                                                                             EE strained back holding on to patient
## 43179                                                                                                                                                                                                                       EE strained back in flower bed at foothills.
## 43180                                                                                                                                                                             EE strained back lifing a box he thought was empty which was actually full of hardware
## 43181                                                                                                                                                                                                                                  EE strained back lifing equipment
## 43182                                                                                                                                                                                                                    EE strained back lifting 70# boxes in warehouse
## 43183                                                                                                                                                                                                                                EE strained back lifting a bed rail
## 43184                                                                                                                                                                                                                            EE strained back lifting a box of books
## 43185                                                                                                                                                                                                                 EE strained back lifting a box of welding supplies
## 43186                                                                                                                                        EE strained back lifting a bucket of wax 5/4/04. EE began complaining of lower back pain 1/4/07, stating pain in same area.
## 43187                                                                                                                                                                                                                         EE strained back lifting a carton of paper
## 43188                                                                                                                                                                                                                     EE strained back lifting a case of prune juice
## 43189                                                                                                                                                                                                      EE strained back lifting a resident off of the restroom floor
## 43190                                                                                                                                                                                                                      EE strained back lifting box from under table
## 43191                                                                                                                                                                                                                          EE strained back lifting box of envelopes
## 43192                                                                                                                                                                                                                             EE strained back lifting box of shades
## 43193                                                                                                                                                                                                                                     EE strained back lifting boxes
## 43194                                                                                                                                                                                                                       EE strained back lifting boxes for envelopes
## 43195                                                                                                                                                                                                                  EE strained back lifting boxes from delivery trk.
## 43196                                                                                                                                                                                                                            EE strained back lifting boxes of paper
## 43197                                                                                                                                                                                                                           EE strained back lifting bulk mail sacks
## 43198                                                                                                                                                                                                                                      EE strained back lifting case
## 43199                                                                                                                                                                                                                           EE strained back lifting client for back
## 43200                                                                                                                                                                                                                EE strained back lifting client from floor to chair
## 43201                                                                                                                                                                                                                  EE strained back lifting client out of wheelchair
## 43202                                                                                                                                                                                                                                      EE strained back lifting desk
## 43203                                                                                                                                                                                                                                     EE strained back lifting desks
## 43204                                                                                                                                                                                                                               EE strained back lifting heavy boxes
## 43205                                                                                                                                                                                                                       EE strained back lifting heavy items at work
## 43206                                                                                                                                                                                                                              EE strained back lifting heavy object
## 43207                                                                                                                                                                                                                               EE strained back lifting heavy trash
## 43208                                                                                                                                                                                                                                EE strained back lifting hvac motor
## 43209                                                                                                                                                                                                                EE strained back lifting ladder off of loading dock
## 43210                                                                                                                                                                                                                           EE strained back lifting laundry baskets
## 43211                                                                                                                                                                                                         EE strained back lifting packets of material off of a cart
## 43212                                                                                                                                                                                                            EE strained back lifting patient from bed to gero-chair
## 43213                                                                                                                                                                                                                          EE strained back lifting patient into bed
## 43214                                                                                                                                                                                                                        EE strained back lifting patients in clinic
## 43215                                                                                                                                                                                                                       EE strained back lifting resident from chair
## 43216                                                                                                                                                                                                                                 EE strained back lifting sculpture
## 43217                                                                                                                                                                                                                         EE strained back lifting tubs of iv fluids
## 43218                                                                                                                                                                                   EE strained back loading boxes into her car for transport from office to storage
## 43219                                                                                                                                                                                                                                    EE strained back moving a table
## 43220                                                                                                                                                                                                               EE strained back moving and lifting boxes in storage
## 43221                                                                                                                                                                                                                      EE strained back moving bed frames from rooms
## 43222                                                                                                                                                                                                                                   EE strained back moving computer
## 43223                                                                                                                                                                                                       EE strained back moving computer equipment with a hand truck
## 43224                                                                                                                                                                                                   EE strained back moving computer monitors to set up computer lab
## 43225                                                                                                                                                                                                                               EE strained back moving picnic table
## 43226                                                                                                                                                                                                                         EE strained back muscle while lifting box.
## 43227                                                                                                                                                                                                                                   EE strained back picking up a tv
## 43228                                                                                                                                                                                                                                  EE strained back picking up trays
## 43229                                                                                                                                                                                                                 EE strained back preventing a patient from falling
## 43230                                                                                                                                                                                               EE strained back pulling bandsaw that was left on metal by a student
## 43231                                                                                                                                                                                                           EE strained back pushing a file cabinet in with her feet
## 43232                                                                                                                                                             EE strained back pushing boxes full of computers across the floor against the advice of the supervisor
## 43233                                                                                                                                                                                                                                 EE strained back pushing food cart
## 43234                                                                                                                                                                                                                       EE strained back putting patient back to bed
## 43235                                                                                                                                                                                                                    EE strained back putting trash bags in dumpster
## 43236                                                                                                                                                                                                           EE strained back reaching for film container in hes car.
## 43237                                                                                                                                                                                                                   EE strained back repetitively lifting auto parts
## 43238                                                                                                                                                                                                                                 EE strained back straining student
## 43239                                                                                                                                                                                                                  EE strained back subduing out of control juvenile
## 43240                                                                                                                                                                                                             EE strained back transfering pt from bed to geri-chair
## 43241                                                                                                                                                                                                                    EE strained back trying to break patient's fall
## 43242                                                                                                                                                                                                           EE strained back trying to catch falling suction machine
## 43243                                                                                                                                                                                                    EE strained back trying to catch resident from falling to floor
## 43244                                                                                                                                                                                                                       EE strained back trying to lift file cabinet
## 43245                                                                                                                                                                                                                            EE strained back trying to lift patient
## 43246                                                                                                                                                                                                           EE strained back trying to lift patient during restraint
## 43247                                                                                                                                                                                                     EE strained back trying to restrain an out of control juvenile
## 43248                                                                                                                                                                                                               EE strained back trying to stop client from falling.
## 43249                                                                                                                                                                                                                      EE strained back unloading boxes from a truck
## 43250                                                                                                                                                                                                            EE strained back unloading dishes from the dish machine
## 43251                                                                                                                                                                                                              EE strained back unloading equipment from back of car
## 43252                                                                                                                                                                                                                                EE strained back using hole puncher
## 43253                                                                                                                                                                                 EE strained back was struck in the face, and struck elbow while restraining client
## 43254                                                                                                                                                                                                                   EE strained back when a client fell. Back strain
## 43255                                                                                                                                               EE strained back when client tried to sit down in chair and missed chair. EE prevented client from falling to floor.
## 43256                                                                                                                                                                                                    EE strained back when he picked up pump.. Notes are not legible
## 43257                                                                                                                                                                                          EE strained back when lifted client (dead weight) from bed to wheelchair.
## 43258                                                                                                                                                                                                                   EE strained back when she stumbled with a client
## 43259                                                                                                                                                                                                                          EE strained back whil pulling garden hose
## 43260                                                                                                                                                       EE strained back while breaking up a fight in the cafeteria ******* ken king. ****** EE at work 252 523 2757
## 43261                                                                                                                                                                                                                         EE strained back while confronting patient
## 43262                                                                                                                                                                           EE strained back while delivering 25 100 lb bags of sandblasting sand. Strained to back.
## 43263                                                                                                                                                                                                          EE strained back while escorting combative suspectto jail
## 43264                                                                                                                                                                                                     EE strained back while escorting patient in a therapeutic hold
## 43265                                                                                                                                                                                                              EE strained back while getting patient up and dressed
## 43266                                                                                                                                                                                                                EE strained back while holding a resistive resident
## 43267                                                                                                                                                                                                                      EE strained back while lifting a bag of trash
## 43268                                                                                                                                                                                                           EE strained back while lifting deck of riding lawn mower
## 43269                                                                                                                                                                                                             EE strained back while lifting file cabinet to move it
## 43270                                                                                                                                                                                                                        EE strained back while lifting fire hydrant
## 43271                                                                                                                                                                                                                        EE strained back while lifting full wet vac
## 43272                                                                                                                                                                                                                             EE strained back while lifting patient
## 43273                                                                                                                                                                                                                 EE strained back while lifting resident out of tub
## 43274                                                                                                                                                                                                                      EE strained back while lifting spool of cable
## 43275                                                                                                                                                                                                                       EE strained back while lifting through shift
## 43276                                                                                                                                                                                                             EE strained back while mopping and changing mop bucket
## 43277                                                                                                                                                                               EE strained back while performing morning pt. Morespecific while performing sit ups.
## 43278                                                                                                                                                                                             EE strained back while picking up tires full of sand and mud on beach.
## 43279                                                                                                                                                                                                                              EE strained back while pruning plants
## 43280                                                                                                                                                                                                                     EE strained back while putting resident to bed
## 43281                                                                                                                                                                                                           EE strained back while releasing parking brake on e-z go
## 43282                                                                                                                                                                                             EE strained back while repairing broken water main atty- heidi chapman
## 43283                                                                                                                                                                                                               EE strained back while repositioning resident in bed
## 43284                                                                                                                                                                                                                          EE strained back while restraining client
## 43285                                                                                                                                                                                                     EE strained back while restraining juveniles who were fighting
## 43286                                                                                                                                                                                                                         EE strained back while restraining patient
## 43287                                                                                                                            EE strained back while restraining patient clmt had prev back inj 9/99- pd 5% ppd to the back$4251. 75 thru 4-18-2000 paid on 5-16-2000
## 43288                                                                                                                                                                                                                         EE strained back while restraining student
## 43289                                                                                                                                                                                                                          EE strained back while setting up a stage
## 43290                                                                                                                                                                                                    EE strained back while subduing and moving an agressive patient
## 43291                                                                                                                                                                                                                EE strained back while taking down tent for storage
## 43292                                                                                                                                                                                       EE strained back while trying to get resident up off the ground to board bus
## 43293                                                                                                                                                                                               EE strained back while trying to hold patient in wheelchair in a van
## 43294                                                                                                                                                                             EE strained back while trying to hold resident who was pulling another resident's hair
## 43295                                                                                                                                                                                       EE strained back while trying to keep patient from falling out of wheelchair
## 43296                                                                                                                                                                                                      EE strained back while trying to remove patient from elevator
## 43297                                                                                                                                                                                                         EE strained back while trying to restrain fighting student
## 43298                                                                                                                                                                                   EE strained back while trying to restrain several students during a gang assault
## 43299                                                                                                                                                                                           EE strained back while trying to stretch, slide chair and hold open door
## 43300                                                                                                                                                                                                          EE strained back while unloading boxes of medical records
## 43301                                                                                                                                                                                                    EE strained back, hip thumb and chest while restraining student
## 43302                                                                                                                                                     EE strained back, shoulder and left wrist while manually lifting wheelchair repeatedly in and out of golf cart
## 43303                                                                                                                                                                                                            EE strained both shoulders while working with equipment
## 43304                                                                                                                                                                                                                                    EE strained chest lifting boxes
## 43305                                                                                                                                                                                                       EE strained chest while lifting patient to put in restraints
## 43306                                                                                                                                                                                                                              EE strained groin during pic training
## 43307                                                                                                                                                                                                              EE strained groin trying to keep patient from falling
## 43308                                                                                                                                                                                                           EE strained hamstring while transferring client to chair
## 43309                                                                                                                                                                                                            EE strained her back breaking client's fall in bathroom
## 43310                                                                                                                                             EE strained her back when lifting a desk onto a rolling cart. On 3-31-13, a small movement increased her back pain. ()
## 43311                                                                                                                                                                                                     EE strained her back when putting a cooler in her car at home.
## 43312                                                                                                                                                                                                                EE strained her back while attempting to lift a dog
## 43313                                                                                                                                                                                 EE strained her back while lifting a case of candyat the cone center candy counter
## 43314                                                                                                                                                                                                                         EE strained her back while unpacking books
## 43315                                                                                                                                                           EE strained her back, neck and head while placing patient in nci hold. EE out of work Mar. 19 - present.
## 43316                                                                                                                                                                                 EE strained her back, neck, & chest when making rounds, and repositioning clients.
## 43317                                                                                                                                                                                                         EE strained her left shoulder while scrubbing the bathtubs
## 43318                                                                                                                                                                          EE strained her left wrist during therapeutic carry of client in uncontrollable behavior.
## 43319                                                                                                                                                 EE strained her muscle in right arm when she help pick up ice cooler to move from lobby of single cell to kitchen.
## 43320                                                                                                                                                                                                            EE strained her neck when patient was trying to hug her
## 43321                                                                                                                                                      EE strained her neck when she jerked her head around after being struck in the back of the neck by a resident
## 43322                                                                                                                                                                                                            EE strained her neck while turning to pick up the phone
## 43323                                                                                                                                                                       EE strained her shoulder when pulling washing machine out from wall to clean behind machine.
## 43324                                                                                                                                                                                                                       EE strained hip while demonstrating movement
## 43325                                                                                                                                                                      EE strained his back lifting the inmate from the floor after the restraints had been applied.
## 43326                                                                                                                                                                                                             EE strained his back lifting trash out of a trash can.
## 43327                                                                                                                          EE strained his back while assisting stranded motorists during snowstorm. He strained his back helping to push cars out of the road, etc.
## 43328                                                                                                                                                                                                 EE strained his back while doing sit-ups for weight training class
## 43329                                                                                                                                                                                                                   EE strained his back while lifting work booklets
## 43330                                                                                                                                                                                                               EE strained his back while manually pulling a pallet
## 43331                                                                                                                                                                                                                       EE strained his back while moving heavy mats
## 43332                                                                                                                                                                                                               EE strained his back while stepping off of a tractor
## 43333                                                                                                                                                                                      EE strained his chest area while trying to handcuff a suspect.... Upper chest
## 43334                                                                                                                               EE strained his hip over a period of time from prolonged sitting at computer terminal. Stated that desk & chair was poorly designed.
## 43335                                                                                                                                                                                                          EE strained his knee while stepping off bob cat left knee
## 43336                                                                                                                                                                                          EE strained his lower right side of back while lifting plaster materials.
## 43337                                                                                                                                                                             EE strained his right shoulder in an effort to break up a fight between two juveniles.
## 43338                                                                                                                                                                                                 EE strained his rt hand and wrist while pulling a chain on a valve
## 43339                                                                                                                                                                                                         EE strained his rt shoulder during training more than once
## 43340                                                                                                                                                                                                    EE strained his rt shoulder lifting money bags strain shoulder.
## 43341                                                                                                                                                                                                               EE strained knee seperating 2 students from fighting
## 43342                                                                                                                                                                                    EE strained knee while lifting objects up to 55 lbs and pulling 650 lbs up ramp
## 43343                                                                                                                                                                                              EE strained knee while struggling with resident EE's work #- 575-7119
## 43344                                                                                                                                                                                                                    EE strained l shoulder while handling a monitor
## 43345                                                                                                                                                                                                                     EE strained left arm lifting tailgate on truck
## 43346                                                                                                                                                                                                                    EE strained left arm placing client in pic hold
## 43347                                                                                                                                                                                                                   EE strained left hand and elbow lifting patients
## 43348                                                                                                                                                                                                                   EE strained left knee helping put patient in bed
## 43349                                                                                                                                                                                                               EE strained left knee intervening in a patient fight
## 43350                                                                                                                                                                                                                          EE strained left knee restraining patient
## 43351                                                                                                                                                                               EE strained left knee while assisting another EE from keeping a patient from falling
## 43352                                                                                                                                                                                                                 EE strained left lower back lifting a box of paper
## 43353                                                                                                                                                                                                   EE strained left shoulder and arm when emergency brake released.
## 43354                                                                                                                                                                                                    EE strained left shoulder lifting client from wheelchair to tub
## 43355                                                                                                                                                                                                                         EE strained left shoulder lifting resident
## 43356                                                                                                                                                                                                              EE strained left shoulder lifting trash into dumpster
## 43357                                                                                                                                                                                                                     EE strained left shoulder restraining juvenile
## 43358                                                                                                                                                                                                               EE strained left shoulder while breaking down boxes.
## 43359                                                                                                                                                                                                                 EE strained left shoulder while turning a resident
## 43360                                                                                                                                                                                                                       EE strained left side demonstrating exercise
## 43361                                                                                                                                                                                                                 EE strained left thumb while restraining a student
## 43362                                                                                                                                                                                                           EE strained left upper arm while trying to catch patient
## 43363                                                                                                                                                                                                         EE strained left wrist breaking clients fall from a chair.
## 43364                                                                                                                                                                                                                              EE strained left wrist lifting client
## 43365                                                                                                                                                                                                                 EE strained left wrist trying to restrian resident
## 43366                                                                                                                                                                                                                    EE strained left wrist while restraining client
## 43367                                                                                                                                                                                      EE strained leftl eg while attempting to put aggressive patient in seculusion
## 43368                                                                                                                                                                                                 EE strained leg and bruised wrist while carrying monitor up stairs
## 43369                                                                                                                                                                                                                 EE strained low back assisting patient back to bed
## 43370                                                                                                                                                                                                           EE strained low back assisting resident in swimming pool
## 43371                                                                                                                                                                                             EE strained low back lifting a waste can full of ice to shoulder level
## 43372                                                                                                                                                                                                                        EE strained low back lifting stacks of file
## 43373                                                                                                                                                                                                                    EE strained low back lifting waste drain vessel
## 43374                                                                                                                                                                                                                            EE strained low back moving heavy boxes
## 43375                                                                                                                                                                                                             EE strained low back trying to handle student outburst
## 43376                                                                                                                                                EE strained low back while setting up various typeof furniture for the summer conference ** EE work# 336-334-1078**
## 43377                                                                                                                                                                                           EE strained low back while trying to restrain an out of control student.
## 43378                                                                                                                                                                                                                              EE strained lower arm bathing patient
## 43379                                                                                                                                                                                              EE strained lower back bending over to move trunk in orientation room
## 43380                                                                                                                                                                                                                              EE strained lower back carrying books
## 43381                                                                                                                                                                                                                           EE strained lower back lifting trash can
## 43382                                                                                                                                                                                                        EE strained lower back pushing patient on stretcher to xray
## 43383                                                                                                                                                                                                                              EE strained lower back shoveling snow
## 43384                                                                                                                                                                                         EE strained lower back when lifting tasks related to collecting recycling.
## 43385                                                                                                                                                                                                        EE strained lower back while assisting resident in dressing
## 43386                                                                                                                                                                                       EE strained lower back while attempting to move sheep to scale to be weighed
## 43387                                                                                                                                                                                                                  EE strained lower back while lifting a television
## 43388                                                                                                                                                                                                                 EE strained lower back while makeing patient's bed
## 43389                                                                                                                                                                                                                   EE strained lower back while moving equipment ()
## 43390                                                                                                                                                                                                           EE strained lower back while pulling student to restrain
## 43391                                                                                                                                                                                                                         EE strained lower back while pulling weeds
## 43392                                                                                                                                                                                                EE strained lower back while trying to catch a patient from falling
## 43393                                                                                                                                                                                                    EE strained lower back, while moving furniture in to new office
## 43394                                                                                                                                                                                       EE strained lr wrist while getting up off of ground during physical training
## 43395                                                                                                                                                                                                    EE strained lt arm climbing in and out of truck tractor all day
## 43396                                                                                                                                                                                                                   EE strained lt arm trying to restraining patient
## 43397                                                                                                                                                                                                      EE strained lt arm while transferring patient to parent's car
## 43398                                                                                                                                                                                                                    EE strained lt elbow while restraining patient.
## 43399                                                                                                                                                                                                                               EE strained lt hand lifting gate bar
## 43400                                                                                                                                                                                            EE strained lt hand trying to catch resident who was falling out of bed
## 43401                                                                                                                                                                                                                          EE strained lt hand while ringing out mop
## 43402                                                                                                                                                                                          EE strained lt knee while doing physical training running a 1. 5 mile run
## 43403                                                                                                                                                                                                       EE strained lt knee while supporting patient who had slipped
## 43404                                                                                                                                   EE strained lt shoulder & arm when trying to open cooler door. Maintenance & safety officer verifiedproblem with door on cooler.
## 43405                                                                                                                                                                                                                  EE strained lt shoulder while restraining student
## 43406                                                                                                                                                                                              EE strained lt testicle by pushing a large lawn tractor onto trailer.
## 43407                                                                                                                                                                         EE strained lt upper arm front and back reaching for bag of potatoes to take off of pallet
## 43408                                                                                                                                                                                                      EE strained lt wrist assisting consumer with therapeutic walk
## 43409                                                                                                                                                                                                                  EE strained lt wrist repositioning patient in bed
## 43410                                                                                                                                                                                                               EE strained lt wrist while catching client from fall
## 43411                                                                                                                                                                                                                       EE strained lumbar while lifting a large box
## 43412                                                                                                                                                                                                                EE strained moving furniture while cleaning up room
## 43413                                                                                                                                                                                                                   EE strained muscle in back while using pick axe.
## 43414                                                                                                                                                                                                EE strained muscle in right abdomen while practicing guard in moves
## 43415                                                                                                                                                                                        EE strained muscles from exerting force while pressing seals on transcripts
## 43416                                                                                                                                                                                                       EE strained neck and back while hanging a door in ricks hall
## 43417                                                                                                                                                                                             EE strained neck and back while restraining patient during altercation
## 43418                                                                                                                                                                                                                     EE strained neck and shoulder lifting a bucket
## 43419                                                                                                                                                                                                                EE strained neck and upper back while washing walls
## 43420                                                                                                                                                                                                                     EE strained neck during annual recertification
## 43421                                                                                                                                                                                      EE strained neck from working on a computer that was not positioned correctly
## 43422                                                                                                                                                                                                                        EE strained neck trying to restrain patient
## 43423                                                                                                                                                                                                                             EE strained neck while lifting patient
## 43424                                                                                                                                                                                                 EE strained neck while trying to subdue an out of control juvenile
## 43425                                                                                                                                                                                                              EE strained neck workign w/computers and work orders.
## 43426                                                                                                                                                                                                                           EE strained neck/back due to workstation
## 43427                                                                                                                                              EE strained or pulled left shoulder while pulling a 3/4" pipe line & trap behind steam station in bbri mechanical rm.
## 43428                                                                                                                                                                                                      EE strained r shoulder/neck from keyboarding/mousepositioning
## 43429                                                                                                                                                                                       EE strained right shoulder after day of shoveling mulch. Referred to glenda.
## 43430                                                                                                                                                                                                          EE strained right wrist while liftin computers & monitors
## 43431                                                                                                                                                                                                                        EE strained right wrist while moving client
## 43432                                                                                                                                                                                                              EE strained rt ankle while trying to restrain patient
## 43433                                                                                                                                                                                                             EE strained rt arm and hand helping patient up in room
## 43434                                                                                                                                                                                                                        EE strained rt arm and neck removing a pipe
## 43435                                                                                                                                                                                                                            EE strained rt arm picking up trash can
## 43436                                                                                                                                                                                                                 EE strained rt biceps tendon lifting client in bed
## 43437                                                                                                                                                                                                                    EE strained rt elbow trying to restrain client.
## 43438                                                                                                                                                                                                                    EE strained rt elbow trying to restrain student
## 43439                                                                                                                                                                                                                      EE strained rt foot while restraining student
## 43440                                                                                                                                                                                                      EE strained rt forearm lifting trash, vaccuming sweeping, etc
## 43441                                                                                                                                                                                                                      EE strained rt forearm while turning resident
## 43442                                                                                                                                                                                            EE strained rt forearm/wrist trying to restrain out-of control juvenile
## 43443                                                                                                                                                            EE strained rt hand and arm from repetitive action of holding pan from bottom while grinding fertilizer
## 43444                                                                                                                                                                                                 EE strained rt hand by lifting and dipping chickencooking baskets.
## 43445                                                                                                                                                                                                                             EE strained rt hand pushing wheelchair
## 43446                                                                                                                                                                                                               EE strained rt hand while assisting lifting a client
## 43447                                                                                                                                                                                                               EE strained rt hand while trying to restrain student
## 43448                                                                                                                                                                                    EE strained rt hand with extra lifting, pulling onclient and reaching over beds
## 43449                                                                                                                                                                                                                             EE strained rt hip pulling a trash can
## 43450                                                                                                                                                                                                                       EE strained rt hip while restraining student
## 43451                                                                                                                                                                                       EE strained rt knee in an attempt to arrest a suspect who was trying to flee
## 43452                                                                                                                                                                                                   EE strained rt knee walking over rough terrain EE retired 5-1-04
## 43453                                                                                                                                                                                                                    EE strained rt knee while chasing after patient
## 43454                                                                                                                                                                                                      EE strained rt knee while placing patient in therapeutic hold
## 43455                                                                                                                                                                                                            EE strained rt knee while running in pursuit of suspect
## 43456                                                                                                                                                                                                               EE strained rt knee while trying to restrain patient
## 43457                                                                                                                                                                                                                     EE strained rt shoulder & back lifting patient
## 43458                                                                                                                                                                                                                EE strained rt shoulder and arm lifting box of food
## 43459                                                                                                                                                                                                                 EE strained rt shoulder and arm lifting trash cans
## 43460                                                                                                                                                                       EE strained rt shoulder and arm trying to prevent client from falling while in the bathroom.
## 43461                                                                                                                                                                                                                     EE strained rt shoulder breaking client's fall
## 43462                                                                                                                                                                                            EE strained rt shoulder due to increase workload during shaking process
## 43463                                                                                                                                                                                   EE strained rt shoulder during training exercises notified supervisor on 1/20/05
## 43464                                                                                                                                                                                                         EE strained rt shoulder lifting a truck tire to be mounted
## 43465                                                                                                                                                                                                                            EE strained rt shoulder moving bookcase
## 43466                                                                                                                                                                                                           EE strained rt shoulder pulling door handle to gatehouse
## 43467                                                                                                                                                                                                          EE strained rt shoulder restraining out of controlstudent
## 43468                                                                                                                                                                         EE strained rt shoulder restraining resident er has given oow dates: 5/8-5/11; 9/8-present
## 43469                                                                                                                                                                                                    EE strained rt shoulder trying to catch client that had tripped
## 43470                                                                                                                                                                                                                     EE strained rt shoulder trying to restrain pig
## 43471                                                                                                                                                                                      EE strained rt shoulder twisting pin back and fothr removing it from footrest
## 43472                                                                                                                                                                                                                     EE strained rt shoulder while moving furniture
## 43473                                                                                                                                                                                                                EE strained rt shoulder while using backpack blower
## 43474                                                                                                                                                                                                                         EE strained rt shoulder, arm lifting trash
## 43475                                                                                                                                                                                                                               EE strained rt side carrying patient
## 43476                                                                                                                                                                                                                     EE strained rt thigh while restraining patient
## 43477                                                                                                                                                                                                            EE strained rt thumb and left elbow restraining student
## 43478                                                                                                                                                     EE strained rt thumb during training. EE was in lying position, used rt hand to push up when rt thumb slipped.
## 43479                                                                                                                                                                                                            EE strained rt thumb lifting trashbag full of textbooks
## 43480                                                                                                                                                                                                        EE strained rt upper leg and knee while restraining patient
## 43481                                                                                                                                                                                                   EE strained rt wrist & hand while moving tables from a warehouse
## 43482                                                                                                                                                                                                       EE strained rt wrist aiding patient to floor who had fainted
## 43483                                                                                                                                                                                                          EE strained rt wrist and forearm while restrainingpatient
## 43484                                                                                                                                                                                                                       EE strained rt wrist lifting heavy mail tubs
## 43485                                                                                                                                                                                                                           EE strained rt wrist lifting heavy table
## 43486                                                                                                                                                                                                                EE strained rt wrist preventing client from falling
## 43487                                                                                                                                                                                                                          EE strained rt wrist restraining resident
## 43488                                                                                                                                                                                                                           EE strained rt wrist restraining student
## 43489                                                                                                                                                                                                    EE strained rt wrist trying to put resident in therapeutic hold
## 43490                                                                                                                                                                                                                 EE strained rt wrist while lifting client into bed
## 43491                                                                                                                                                                                                          EE strained rt wrist while lifting mattress to change bed
## 43492                                                                                                                                                                                                              EE strained rt wrist while trying to restrain patient
## 43493                                                                                                                                                                                                                 EE strained shoulder and neck restraining juvenile
## 43494                                                                                                                                                                                     EE strained shoulder cutting cardboard on bandsaw and then loading heavy boxes
## 43495                                                                                                                                                                                                                   EE strained shoulder helping people with weights
## 43496                                                                                                                                                                                                                                    EE strained shoulder lifting ac
## 43497                                                                                                                                                                                                                EE strained shoulder lifting box of unserved papers
## 43498                                                                                                                                                                                                                                 EE strained shoulder lifting mower
## 43499                                                                                                                                                                                                                EE strained shoulder lifting trash bags into barrel
## 43500                                                                                                                                                                                                                  EE strained shoulder pulling on hard to open door
## 43501                                                                                                                                                                                        EE strained shoulder while reaching across body to turn pages of heavy book
## 43502                                                                                                                                                                                                                 EE strained shoulder while struggling with patient
## 43503                                                                                                                                                                                                                   EE strained shoulder while trying to lift client
## 43504                                                                                                                                                                                                                EE strained shoulder, back and arm pulling resident
## 43505                                                                                                                                                             EE strained tendon in right arm due to constant use of hand operated sheers while pruining grape vines
## 43506                                                                                                                                                                                           EE strained thigh while trying to control student who was assaulting him
## 43507                                                                                                                                                                                                                               EE strained thumb playing basketball
## 43508                                                                                                                                                                                                           EE strained thumb trying to get up from therapeutic hold
## 43509                                                                                                                                        EE strained upper arm, back and neck trying to catch candy jar that was falling from shelf (s/p cervical fusion/discectomy)
## 43510                                                                                                                                                                                                      EE strained upper back assisting in lifting resident to chair
## 43511                                                                                                                                                                                                                EE strained upper back lifting production equipment
## 43512                                                                                                                                                                                                       EE strained upper back lifting pt from wheelchair to commode
## 43513                                                                                                                                                                                                                         EE strained upper back picking up suitcase
## 43514                                                                                                                                                                                                              EE strained upper back readjusting patient in a chair
## 43515                                                                                                                                                                                                                         EE strained upper back restraining patient
## 43516                                                                                                                                                                                                          EE strained upper back while lifting 25 hp outboard motor
## 43517                                                                                                                                                                                                             EE strained wrist boxing and unboxing books and files.
## 43518                                                                                                                                                                                                                                  EE strained wrist lifting patient
## 43519                                                                                                                                                                          EE strained wrist while client was being held on a therapeutic hold. Strain to left wrist
## 43520                                                                                                                                                                EE strained, neck & rt shoulder intervening with aclient in behavior - client was jumping up in bed
## 43521                                                                                                                                                                                        EE strapping down hand cart-strap slipped & the metal end struck EE on chin
## 43522                                                                                                                                                                       EE straubed rt chest wakk reaching for and helpingup patient who was going down to the floor
## 43523                                                                                                                 EE stretching lt arm up &over computer to wall to hang a calander. Felt snap in lt shoulder, as theday progressed shoulder & lt side became stiff.
## 43524                                                                                                                                                                                  EE stretching over large recycle bin and lifting files, pain in lower rt rib cage
## 43525                                                                                                                                                                                  EE stripped the floor and slipped on slick surfaceback & head - slight concussion
## 43526                                                                                                                                                             EE stripping floor walked across floor towards supervisors office accidently slipped. Cut top of head.
## 43527                                                                                                                              EE stripping floor, backing out of room when EE foot slipped out from under him and EE fell hit head on floor. Bruise to back of head
## 43528                                                                                                                                                                                                                       EE stripping floor, injured back moving desk
## 43529                                                                                                                                                                         EE stripping floors did not know two kinds of wax had been mixed-hard to breath on rt side
## 43530                                                                                                                                                                                                                                EE struck a deer on his patrol car.
## 43531                                                                                                                                                                                                                    EE struck a deer while driving a state vehicle.
## 43532                                                                                                                                                                                 EE struck a deer while driving state vehicle injuring his neck, shoulders and back
## 43533                                                                                                                                               EE struck a pole with his state issued vehicle while conducting home contacts on offenders assigned to the caseload.
## 43534                                                                                                                                                                                                                          EE struck a window glass with his rt hand
## 43535                                                                                                                                                                                                          EE struck and killed a pedisterian on his patrol vehicle.
## 43536                                                                                                                                                                                                                           EE struck another vehicle from the rear.
## 43537                                                                                                                                                                                                                             EE struck by a flying object--rt wrist
## 43538                                                                                                                       EE struck by automobile in road while investigatina traffic accident had previously occurred on hwy. Sprain rt wrist & severe bruise rt leg.
## 43539                                                                                                                                                                                                            EE struck by client, redirecting client from gym lobby.
## 43540                                                                                                                                                                                EE struck by needle after giving injection switched hands and stuck needle in hand.
## 43541                                                                                                                                                                                                   EE struck elbow on postage machine while straightening envelopes
## 43542                                                                                                                                                                                                                         EE struck ex-fellow EE during altercation.
## 43543                                                                                                                                                                           EE struck face against corner of car door while placing shoppinf items in car for client
## 43544                                                                                                                                                                                           EE struck finger on door frame when carrying a printer through the door.
## 43545                                                                                                                                                                                                                                EE struck finger with suture needle
## 43546                                                                                                                                                                     EE struck front tooth with post hole digger handle while pulling post hole diggers out of hole
## 43547                                                                                                                                                                                                  EE struck hand against door jerking hand out from under hot water
## 43548                                                                                                                                                                            EE struck hand on a paper towel holder. Treated at physician primecare, rtw 12/30/09 ()
## 43549                                                                                                                                                                                              EE struck hand on pump to move it and handle from pump hit EE's thumb
## 43550                                                                                                                                                                                                        EE struck head on a piece of steel while on a transfer bus.
## 43551                                                                                                                                                                         EE struck head on computer frame while obtaining a wet floor warning sign. Head contusions
## 43552                                                                                                                                                                                              EE struck head on corner of wooden cabinet, super- ficial laceration.
## 43553                                                                                                                                                                                 EE struck head on door while trying to restrain client who was striking another EE
## 43554                                                                                                                                                                                             EE struck head on dumb waiter while picking up food trays off of floor
## 43555                                                                                                                                                                                                                                          EE struck head on vehicle
## 43556                                                                                                                                               EE struck her elbow on the head of the bed while EE was trying to administer medication and patientbecame combative.
## 43557                                                                                                                                                                                                                 EE struck her head on roof of van while getting in
## 43558                                                                                                                                                                                                   EE struck her left hand against cart while restraining a client.
## 43559                                                                                                                                                                                                                               EE struck her left hand on the table
## 43560                                                                                                                                                                                        EE struck her lt elbow against a wall while responding to an emergency code
## 43561                                                                                                                                                                                                EE struck her lt hand on a door knob striking her lt arm/wrist area
## 43562                                                                                                                                                                                                             EE struck her right eye with corner of door in clinic.
## 43563                                                                                                                                                                                                                 EE struck her right wrist on wheelchair handle. ()
## 43564                                                                                                                                                                              EE struck her rt ankle against a cart while tryingto break up a fight between inmates
## 43565                                                                                                                                                                                                                   EE struck her rt ankle on the side step of a van
## 43566                                                                                                                                                                                                    EE struck her rt hand against a metal stand puncturing rt thumb
## 43567                                                                                                                                                                                                 EE struck her rt thumb aginst the dish machine causing a fracture.
## 43568                                                                                                                                                                                         EE struck her toe on rt foot on the elevator entryplatform. Rt foot strain
## 43569                                                                                                                                                                                                                                         EE struck him in the mouth
## 43570                                                                                                                                                                                               EE struck his left hand on a protective suit whileperforming a drill
## 43571                                                                                                                                                                                                                             EE struck his lt ankle on a door frame
## 43572                                                                                                                                                                                                                                    EE struck his lt arm on a table
## 43573                                                                                                                                                                                                  EE struck his lt hand against the back of a chair striking a nail
## 43574                                                                                                                                                                                                                            EE struck his lt hand on a exhaust pipe
## 43575                                                                                                                                                                       EE struck his lt hand with a hammer while adjusting a clutch on a hauling unit **f18 filed**
## 43576                                                                                                                                                                                                                                EE struck his rt elbow on the fence
## 43577                                                                                                                                                                                                                     EE struck his rt hand against the dish machine
## 43578                                                                                                                                                                                                                   EE struck his rt hand on the corner of a box fan
## 43579                                                                                                                                       EE struck his wheelchair against table causing foot support to swing out-EE struck foot on door frame causing foot contusion
## 43580                                                                                                                                                                                        EE struck in back of head w/small rocks thrown by unknown inmate or inmates
## 43581                                                                                                                                   EE struck in head/neck area by a steel trailer stiff knee.. (stiff knee is a tensioner that helps suport the top of the trailer)
## 43582                                                                                                                                                                        EE struck in left eye by a student's closed fist while attempting to get him under control.
## 43583                                                                                                                                                                                                 EE struck in left eye by bungie cord end while releasing speakers.
## 43584                                                                                                                                                                                                            EE struck in mouth by agitated patient. Slight swelling
## 43585                                                                                                                                                                                        EE struck in mouth by patient when bent down to unlock wheels on wheelchair
## 43586                                                                                                                   EE struck inmate with a closed fist in the mouth area causing pain to middle knuckle on rt hand. Also struck lt knee on desk & floor -abrasion -
## 43587                                                                                                                                                                                     EE struck knee several times with other "aggressors" during training exercises
## 43588                                                                                                                                                                                                    EE struck left arm on fire extinguisher rack causing laceration
## 43589                                                                                                                                                                                                                                       EE struck left elbow on desk
## 43590                                                                                                                                                                                                         EE struck left hand on corner of desk. Hemetoma left hand.
## 43591                                                                                                                                                                                                                             EE struck left knee on a golf cart bar
## 43592                                                                                                                                                                                                      EE struck left knee on door frame upon re-enteringbc station.
## 43593                                                                                                                                                                                  EE struck left knee on door of ice machine rehab- carolina case mgmt - pam harris
## 43594                                                                                                                                                                                                  EE struck left leg and back on bed rail while restraining patient
## 43595                                                                                                                                                                                                EE struck left leg on door frame when helping patient to restraints
## 43596                                                                                                                                          EE struck left side of head on protruding piece of ankle iron on rear of steam boiler while installing rear boiler doors.
## 43597                                                                                                                                                                                                                                   EE struck leg against foot stool
## 43598                                                                                                                                                                                              EE struck leg on wooden post while attaching grain angier on tractor.
## 43599                                                                                                                                                                                                                                  EE struck little finger with sink
## 43600                                                                                                                                                               EE struck lt ankle with hammer while punching holein a concrete wall in gym - contusion to lt ankle.
## 43601                                                                                                                                                                                           EE struck lt elbow on asphalt while tackling suspect during apprehension
## 43602                                                                                                                                                                                                                                      EE struck lt elbow on doorway
## 43603                                                                                                                                                                                                                      EE struck lt eye with corner of cardboard box
## 43604                                                                                                                                                                                                                                         EE struck lt foot on steps
## 43605                                                                                                                                                                                                                                    EE struck lt hand on cell door.
## 43606                                                                                                                                                                                                                                EE struck lt heel w/the hand truck.
## 43607                                                                                                                                                                                                       EE struck on lower lip by another EE, breaking skin interior
## 43608                                                                                                                                                                       EE struck on lt forearm by an inmate as EE was conducting medical sick on co-op medical unit
## 43609                                                                                                                                                                                                                             EE struck on rt side of face by inmate
## 43610                                                                                                                                                                                                                           EE struck on the face by a flyaway ball.
## 43611                                                                                                                                                                          EE struck on the right hand 3 times with baton while another EE attempted to restrain I/m
## 43612                                                                                                                                                              EE struck on the right side of the head with a football while waiting to fire weapon on firing range.
## 43613                                                                                                                                                                                       EE struck open cabinet door with head causing laceration to forhead and nose
## 43614                                                                                                                                                                        EE struck right hand on hinge of van door while loading cpr equipment. Injury to right hand
## 43615                                                                                                                                                                                                EE struck right index finger while unsecuring a kitchen entry door.
## 43616                                                                                                                                                                                        EE struck right knee on a dest drawer when attempting to get up from chair.
## 43617                                                                                                                                                                                                                               EE struck rt 4th toe on file cabinet
## 43618                                                                                                                            EE struck rt arm on the door of the clinic clmt previously rated at 7% ppd/arm- not yet paid rtn'd to physician... Not at mmi presently
## 43619                                                                                                                                                                                        EE struck rt chin on rusty nail that was sticking out of a piece of lumber.
## 43620                                                                                                                                                                                                                          EE struck rt elbow against a file cabinet
## 43621                                                                                                                                                                                                                        EE struck rt elbow on door and fractured it
## 43622                                                                                                                                                                                        EE struck rt foot on curb when trying to step over curb and fractured ankle
## 43623                                                                                                                                                                                                                             EE struck rt forearm on corner of desk
## 43624                                                                                                                                                                                            EE struck rt hand against door while transporting claimant into bedroom
## 43625                                                                                                                                                                                                                                 EE struck rt hand on cleaning cart
## 43626                                                                                                                                                                                              EE struck rt hand on metal door frame while pushing cart down hallway
## 43627                                                                                                                                                                                                          EE struck rt hand on sink which has caused some swelling.
## 43628                                                                                                                                                                                                         EE struck rt knee on metal foot stool while in the tubroom
## 43629                                                                                                                                                                                                                            EE struck rt knee on the corner of desk
## 43630                                                                                                                                                                                                                            EE struck rt middle finger against door
## 43631                                                                                                                                                                                    EE struck rt middle finger on door while pushing a buffer and holding a bucket.
## 43632                                                                                                                                                                          EE struck rt thumb against metal part of wheel chair while transferring pt to wheelcahir.
## 43633                                                                                                              EE struck shoulder on an object in the cell, in anattempt to subdue and inmate that had struck him in the face with closed fist. Lt jaw & lt shoulder
## 43634                                                                                                                   EE struck the roof mounted shotgun rack while riding in the back seat of a patrol vehicle when the driver stopped abruptly. Laceration forehead.
## 43635                                                                                                                                                                                                                        EE struck thumb on needle causing bleeding.
## 43636                                                                                                                                                                                                  EE struck top of head while exiting boiler room thru low doorway.
## 43637                                                                                                                                                                                                                            EE struck under right eye by a resident
## 43638                                                                                                                                                                                   EE struck upper lip on instructor's forearm while being trained in pic restraint
## 43639                                                                                                                                                                              EE struck wrist hard on corner of pull out tray on desk causing swelling and numbness
## 43640                                                                                                                                                                                    EE struck wrist while using a hammer to install anchors in concrete for tables.
## 43641                                                                                                                                                                                        EE struggled while restraining patient adn cut forehead and bruised rt knee
## 43642                                                                                                                                                           EE struggled with a combative patient and sufferedlaceration to surface of two middle fingers on rt hand
## 43643                                                                                                                                                   EE struggled with suspect pulling suspect out of creek to make arrest & strained back & rt arm 4% back/5% rt arm
## 43644                                                                                                                                                                                                                   EE struggling with inmate & scraped his lt elbow
## 43645                                                                                                                                                                                                        EE struggling with probationer & cut left thumb onhandcuffs
## 43646                                                                                                                                                   EE sttae she picked up four food trays and turned to place them on the knockout table and felt pain in her back.
## 43647                                                                                                                                                                                        EE stted firing shotgun, developed large bruise onrt side above breast area
## 43648                                                                                                                                          EE sttes driving back to area, making left turn and the truck driver didn't see the turn signal and hit EE in the lt side
## 43649                                                                                                                                                                                                                EE stubbed his big toe on a wood skid.... Right toe
## 43650                                                                                                                                                                                               EE stubbed his lt big toe into the concrete steps in front of offcie
## 43651                                                                                                                                                                 EE stuck by needle in rt finger when student insturcting class removed needle for another student.
## 43652                                                                                                                                                                          EE stuck finger on needle as he was getting plastic bag out of box. Needle fell into box.
## 43653                                                                                                                            EE stuck hand in contraband envelope, cutting self on finger by a razor inside. Envelope was not labeled as a razor part of contents ()
## 43654                                                                                                                                                                                                 EE stuck hand in saw area of cotton gin and cut finger on rt hand.
## 43655                                                                                                                                                                                              EE stuck hand in tank to adjust display and was bitten by a moray eel
## 43656                                                                                                                                                                                                               EE stuck hand with needle while cleaning biology lab
## 43657                                                                                                                                                                                                EE stuck hands between doors to stop from closing the doors closed.
## 43658                                                                                                               EE stuck her right hand in the control room drawerto get a radio battery. Another EE pulled drawer causing trap to close on EE's right middle finger
## 43659                                                                                                                                                                                                                                              EE stuck in forehead.
## 43660                                                                                                                                                                                                    EE stuck in thumb with needle while attempting to sedate a cat.
## 43661                                                                                                                                                                                              EE stuck left index finger with contaminated neelde from aids patient
## 43662                                                                                                                                                                                          EE stuck left index finger with need during arterial access in a patient.
## 43663                                                                                                                                                                                  EE stuck left thumb with scapal during insertion of pacemaker in cardiac patient.
## 43664                                                                                                                                                                                                                                            EE stuck needle in hand
## 43665                                                                                                                                              EE stuck right index finger on dirty needle when disposing of it - hard stick on student who wasn't properly hydrated
## 43666                                                                                                                                                                                                                 EE stuck with needle that had been used on patient
## 43667                                                                                                                                                                        EE stumble on cement parking block, fell forward hitting both knees, both hands, and mouth.
## 43668                                                                                                                                                                                                             EE stumbled and fell down stairs; injured his lefthand
## 43669                                                                                                                                                    EE stumbled and fell in trench, cut in parking lotwhile pursuing violator on foot, breaking bone in right hand.
## 43670                                                                                                                                                                                                         EE stumbled and fell on both knees while walking down hall
## 43671                                                                                                                                                                         EE stumbled and fell on chest hitting lt shoulder causing pain in lt shoulder and low back
## 43672                                                                                                                                                             EE stumbled and fell on pavement whiule walking toto get mail from post office. Injured hand and wrist
## 43673                                                                                                                                                                                                            EE stumbled and fell on uneven brick injured both knees
## 43674                                                                                                                                                                                                               EE stumbled and fell while descending a stairway. ()
## 43675                                                                                                                                  EE stumbled and fell while running to vehicle ld 15hrs p/wk on 3/1. Rtw ft, ld 4/18 oow since 1/31/06 paid wp. Work 919 620 0100.
## 43676                                                                                                                                                                                                             EE stumbled and twisted ankle while descending stairs.
## 43677                                                                                                                                                                        EE stumbled but did not fall, caught himself and heard a snap sound and felt as he slipped.
## 43678                                                                                                                                            EE stumbled down the steps and tripped on the parking stop. He fell forward on his hands and bent his right wrist back.
## 43679                                                                                                                        EE stumbled going down the stairs and landed on his right side; scraped his right knee and injured his right knee; also minor pain in elbow
## 43680                                                                                                                                                            EE stumbled into a concrete slab-attempted to brace self with hands and a piece of glass cut left hand.
## 43681                                                                                                                                                                                                         EE stumbled into a student and hit a rail... Right forearm
## 43682                                                                                                                                                                                                            EE stumbled on a log on an exhibit and scraped left leg
## 43683                                                                                                                                                                                                       EE stumbled on a rock on sidewalk and fell on hands and knee
## 43684                                                                                                                                                                        EE stumbled on a student's bookbag, fell against wall, injured right pinky finger and wrist
## 43685                                                                                                                                                                                                            EE stumbled on buckled carpet and injured left shoulder
## 43686                                                                                                                                                                                EE stumbled on corner of file cabinet. EE caught self with left hand and hurt wrist
## 43687                                                                                                                                 EE stumbled on loose gravel waking from parking area to courthouse to work - injuries are scrapes and general soreness of limbs ()
## 43688                                                                                                                                                                                                                EE stumbled on sidewalk; fell and hit left knee. ()
## 43689                                                                                                                                                                                               EE stumbled on stairs and bruised left knee and sprained left wrist.
## 43690                                                                                                                                                                                       EE stumbled on uneven pavement, EE braced fall with hand, injured left wrist
## 43691                                                                                                                                                                                           EE stumbled on worn carpet & hit right forearm on cabinet door hardware.
## 43692                                                                                                                                                                                                                      EE stumbled over a mat and reinjured her back
## 43693                                                                                                                                                                       EE stumbled over an uneven part of the side walk and fell on cement, injuring her right hand
## 43694                                                                                                                                                                                                    EE stumbled over cement planter causing abrasion to right shin.
## 43695                                                                                                                                                                                       EE stumbled over stool while entering the files location, injury to left leg
## 43696                                                                                                                                                                                                     EE stumbled over the parking lot curb twisting herleft ankle..
## 43697                                                                                                                                                                EE stumbled uneven sidewalk getting a bottle of water from machine injury to left knee hand fingers
## 43698                                                                                                                                                                                                       EE stumbled walking away from desk & fell injured left ankle
## 43699                                                                                                                                                                                                              EE stumbled while coming up steps injuring left foot.
## 43700                                                                                                                                                                              EE stumbled while leaving animal room and tripped and hit lip on side of animal rack.
## 43701                                                                                                                                                                EE stumbled while walking in stairwell. Hit handrail and fractured her 5th finger on right hand. ()
## 43702                                                                                                                                                                                                                         EE stumbled while walking in the building.
## 43703                                                                                                                                           EE stumped toe on uneven brick coming in building and fell. Scratched right eyebrow, left hand, and fractured left knee.
## 43704                                                                                                                                                                                                                                            EE stung by bee on face
## 43705                                                                                                                                                                                                             EE stung by bees during a marijuana opration in woods.
## 43706                                                                                                                                                                                                                                    EE stung by bees while pruning.
## 43707                                                                                                                                                                                                          EE subdiving student hit in the face by bottle of lotion.
## 43708                                                                                                                                                                                                                     EE suffered a blow to the head during training
## 43709                                                                                                                                                                        EE suffered a heart attack during physical training, jogging at lunch with fellow employees
## 43710                                                                                                                                                                           EE suffered an allergic reaction with bronical spasm after eating food containing onions
## 43711                                                                                                                                                                                    EE suffered an infection in lt eye from coming in contact with infected student
## 43712                                                                                                                                        EE suffered an injury arising out of and in the course and scope of her employment **employer injury date of 8-29-2005???**
## 43713                                                                                                                                                                                               EE suffered an injury lifting washers/dryers... Left lung collapsing
## 43714                                                                                                                                                                                                EE suffered back injury occurred during working in laboratory area.
## 43715                                                                                                                     EE suffered chest pains while driving to work. Has worked excessive hours for weeks, heart attackcould be stress related due to heavy caseload
## 43716                                                                                                                                                                                                                EE suffered cramps in legs due to using stairs.. ..
## 43717                                                                                                                                                                                               EE suffered heat exposure while reporting an exhaust fan on the roof
## 43718                                                                                                                                               EE suffered lumbar muscle strain as a result of assisting with putting a resistive patient in seclusion & restraint.
## 43719                                                                                                                      EE suffered neck and mid back injuries as a result of a automobile accident when bus he was in swerved to Miss A car while taking him to work
## 43720                                                                                                                                                                                                  EE suffered tick bite on back of right knee while sitting at desk
## 43721                                                                                                                                                                                          EE suffered tick bite while doing enforcement work on head/shoulders/back
## 43722                                                                                                                     EE suffered unknown heart attack while at home spouse alleges it was due to overwork. Cause of death deemed natural and cardiovascular disease
## 43723                                                                                                                                                                                                                    EE suffers depression from job related charges.
## 43724                                                                                                            EE suffers from carpal tunnel syndrome on rt hand from 15 years of turning keys to lock/unlock doorsstarting vehicles, lengthy writing & arresting sus.
## 43725                                                                                                                                   EE suffers from continuing stress & weeps uncontrollably, hyperventilate, has chest pain, insomnia & is unable to focus on work.
## 43726                                                                                                                                             EE suffers from depression and anxiety due to conflict withsupervisor and employers refusal to correwct the situation.
## 43727                                                                                                                                                                                       EE suffers from fibro myalgia which causes severepain in rt lower extremity.
## 43728                                                                                                                                                                                                                           EE suffers physical & emotional problems
## 43729     EE supervised inmates, searches, frisk, locker search, escorts; all duties required by custody supervisors. EE states he feels he contracted blood infection at pender corr. Inst. He had blood work taken on 10/7/13 and was hospitalized because of results.
## 43730                                                                                                                   EE supervising education of f black EE became contaminated by fumes on cell block, fumes were coming from mixture maintenance using to unclog Dr
## 43731                                                                                                               EE supervising his assigned area when he attemptedto stop a fight between inmates on inmate struck him twice in chest area with fist. Injured chest.
## 43732                                                                                                                                         EE supervising in kitchen--inmate slipped on wet floor and used EE right shoulder to break fall. Right shoulder contusion.
## 43733                                                                                                                                                                                  EE supervising in mail room. Lost his balance, fell and hit lft knee on floor. ()
## 43734                                                                                                             EE supervising inmate unloading truck, it was verycold, EE went into office to warm up and his r hand started tingling, saw a small pin hole in r hand
## 43735                                                                                                                                              EE supervising inmate visitation when code yellow announced in front of dorm 2 EE felt pain in left knee when running
## 43736                                                                                                                                                                                              EE supervising inmates - inmate hit her leg with broom. Rt lower leg,
## 43737                                                                                                                                                          EE supervising inmates clean up a cell an inmate had flooded-slipped in water & injured left foot & ankle
## 43738                                                                                                                      EE supervising inmates he was struck from behind on rt side of his neck & shoulder by inmate work boot. Injured rt side of neck and shoulder.
## 43739                                                                                                                                                       EE supervising inmates on d-hall when inmate swung on inmate hall & missed him & struck the EE on left cheek
## 43740                                                                                                                                                                  EE supervising inmates picking up trash-next day found tick on stomach-area later became infected
## 43741                                                                                                                                     EE supervising inmates raking leaves at park they disturbed a nest of hornest & EE rec'd insect sting lt hand and lt ear lobe.
## 43742                                                                                                                                                                     EE supervising inmates she began experiencing painin lt arm, shoulder and down into her chest.
## 43743                                                                                                                           EE supervising inmates that were cleaning cells, inmate threw unknown substance on EE. Liquid sub on left side of face, eyes, nose, arms
## 43744                                                                                                                                                           EE supervising meal time program and had to intervene in client's behavior and twisted back. Back strain
## 43745                                                                                                                                      EE supervising showers, inmate exited shower, assaulted officer striking on rt side of his face injured rt jaw, nose, lt hand
## 43746                                                                                                                                                                                                     EE supervising students diagnosed with MRSA left shoulder rash
## 43747                                                                                                                                     EE supervising students playing basketball in the mpac, when a student kicked a basketball and it hit EE directly in the face.
## 43748                                                                                                            EE supervising the unloading of a del. Truck & wason loading dock a 6' storage rack fell behind her striking her right shoulder area. Bruised rt should
## 43749                                                                                                                                                    EE supervising unit gym call, heard phone ringing jumped off stage floor - twisted rt ankle. Sprained rt ankle.
## 43750                                                                                                                                                         EE supervising window crew climbed the scaffold, climbing the scaffle he notice his rt knee startedhuring.
## 43751                                                                                                                                                                    EE supported herself getting up from the floor using her left hand... Heard a pop... Left thumb
## 43752                                                                                                                                    EE suprvising inmates while on the recreation yardhe became dizzy, fainted and was unconscious to the heat. EE had heat struck.
## 43753                                                                                                                                                                                                  EE sustained a 2nd degree burn to left arm on 3/10/02 and 2/24/02
## 43754                                                                                                                                                                             EE sustained a bruise to her right shoulder area while attempting to fire the shotgun.
## 43755                                                                                                                        EE sustained a chemical burn while checking instruments, wash solution sprayed in EE right eyewhile trouble shooting instrument. Right eye.
## 43756                                                                                                                                                 EE sustained a cut by sweeping up debris with handinstead of a broom or brush. Small glass pieces ingrout of floor
## 43757                                                                                                                                                                                                                    EE sustained a heat stroke while he was mowing.
## 43758                                                                                                                   EE sustained a laceration to left upper eyelid and a bruise to left cheekbone when he was struck in face w/ baton by coworker while in training.
## 43759                                                                                                                                                                                          EE sustained a neck and upper back strain as a result of lifting a stool.
## 43760                                                                                                                                                                                                                     EE sustained a needle stick in her left thumb.
## 43761                                                                                                                                                                                    EE sustained a needle stick while drawing client'sblood. Needlestick to r thumb
## 43762                                                                                                                                                                                                             EE sustained a needle stick while flushing an iv line.
## 43763                                                                                                                                                                  EE sustained a r forearm contusion while putting a client in manual restraints. Seen at lmh er ()
## 43764                                                                                                                                                                          EE sustained a specific traumatic incident during the course and scope of her job duties.
## 43765                                                                                                                                                                         EE sustained an allergic reaction to the fumes of the hallways and rooms recently painted.
## 43766                                                                                                                                                                         EE sustained an injury by accident in the course & scope of his employment. Left leg/knee.
## 43767                                                                                                                                                                                                            EE sustained an insect bite to her rt wrist & handarea.
## 43768                                                                                                                                                                                                EE sustained bruises to right jaw, neck and right collarbone areas.
## 43769                                                                                                                                                                   EE sustained carpel tunnel syndrome due to the repetitive nature of the duties of her employment
## 43770                                                                                                                        EE sustained finger laceration while cleaning a mobile bin used to transport laboratory glassware. Broken glass fragment penetrated gloves.
## 43771                                                                                                                                                                                                    EE sustained injuries as a result of injuries to auto accident.
## 43772                                                                                                                                                                      EE sustained injuries restraining a pt while in the course and scope of his employment. Back.
## 43773                                                                                                                                                              EE sustained injuries to back after performing new self-defense training exercises called break falls
## 43774                                                                                                                                                                               EE sustained injury to back after lifting a portion of a tree during installation ()
## 43775                                                                                                                                                                                                           EE sustained injury while using force to control inmate.
## 43776                                                                                                                   EE sustained minor injury to airways while giving aid to trapped vehicle accident victim-vehicle wascarrying liquid nitro. & leaking diesel fuel
## 43777                                                                                                                                                                                                               EE sustained no injury after hitting another vehicle
## 43778                                                                                                                       EE sustained pulled muscle injury and pain to right upper leg area while participating in walking exercise activity. Rt upper rear leg area.
## 43779                                                                                                                                                                                   EE sweeping floor & bringing down trash, suddenly got dizzy and had chest pains.
## 43780                                                                                                                                                                                  EE sweeping floor and when she bent over she hit her shoulder on corner of table.
## 43781                                                                                                                                      EE sweeping floor when EE felt tingling sensation in eye. Rubbed eye and splashed with water, noticdsmall welt under left eye
## 43782                                                                                                                                                                                     EE sweeping frt porch and moved a bench felt pull in shoulders and lower back.
## 43783                                                                                                                                                                                                EE sweeping stairs, and fell down four steps and twisted left ankle
## 43784                                                                                                                                                                                                EE sweeping the floor in front of meat sink and fell on right side.
## 43785                                                                                                                                    EE sweeping under couch were client was laying- client pulling a piece of plastice between teeth and saliva got into EE's eyes.
## 43786                                                                                                                                                                                                EE sweeping up clients floor-unknown particle got into EE's rt eye.
## 43787                                                                                                                                                                                   EE swelling bruised rash tenderness/injection site. Repeated manadatory TB skin.
## 43788                                                                                                              EE swept up a pile of trash and did not have a dust pan. EE attempted to pick up pile with papertowel and was stuck by unknown object on right thumb.
## 43789                                                                                                                                                                       EE swerved to Miss Animal and went off the road bruising knee and strained back and shoulder
## 43790                                                                                                                                                                              EE swerved to Miss Deer and ran off road hitting several trees-pain in head and neck.
## 43791                                                                                                                                                                 EE swerved to Miss Oncoming vehicle and struck parked vehicle jamming rt wrist into steering wheel
## 43792                                                                                                                                                                             EE swerved to avoid debris that came off truck passing by and her veh overturned twice
## 43793                                                                                                                                   EE swimming with campers when a camper accidentalystepped on head of EE while under water. Resulted in front tooth being chipped
## 43794                                                                                                                                                                                                            EE swinging fists and tryin gto get handcuffs on inmate
## 43795                                                                                                                        EE swip her badge to leave unit when resident suddenly grabbed & jerked l arm & jacket pulling EE downward. L arm/neck, l shoulder arm pain
## 43796                                                                                                                                    EE switching files in file cabinet when cabinet began to fall-att to catch cabinet in process twisted resulting in lumbar pain.
## 43797                                                                                                                                                             EE swung baseball bat, bat almost slipped out of EE's hand. Tore rotator cuff in lt shoulder. Fulltear
## 43798                                                                                                                                                                                                 EE swung legs out of golf cart to get out and left knee popped. ()
## 43799                                                                                                                                                                        EE swung swivel chair around to answer phone. Hit outside edge of wrist against lower desk.
## 43800                                                                                                                                                                             EE tackled suspect to the ground to keep from fleeing-resulting in EE injuring rt hand
## 43801                                                                                                                                                                                EE takes consumer to dayroom and another consumer walks up and hit EE in the chest.
## 43802                                                                                                                                                                                             EE takes oral radiographs which has caused rt wrist to swell and ache.
## 43803                                                                                                                                                         EE taking 12 boxes on hand truck to annex room-hand trk went out of control and rolled over EE's left foot
## 43804                                                                                                                                                                                       EE taking a child to time out child became combative injury kick in the neck
## 43805                                                                                                                                                                                            EE taking a childs temperature when chile bit EE on left side of chest.
## 43806                                                                                                                                                     EE taking a client to the bedroom, slipped on wet floor & fell. Seen at lmh er returned back to workon 4-24-09
## 43807                                                                                                                                        EE taking a cook steam valve bolted to a wooden pallet hot valve and pallet jerked up and spun around and fell on EE's leg.
## 43808                                                                                                                                                                         EE taking a pan of hot water out of steamer, when the water from the pan fell on EE's feet
## 43809                                                                                                                      EE taking a patients blood pressure, patient became assaultive and hit EE several times in the stomach with his fist. Bruise to upper stomach
## 43810                                                                                                                                                         EE taking a rolling table to the top floor of technical ed bldg, when the elevator closed on his right arm
## 43811                                                                                                                                                       EE taking an aggressive pt to seclusion room, pt picked up leg and struck EE in the rt groin area four times
## 43812                                                                                                                                          EE taking apart 2x4 frame-dropped board with nailssticking out-bent down to pick it up and stepped on a nail with rt foot
## 43813                                                                                                                                                                          EE taking attends outside and slipped and fell on ice- sprain rt arm, contusion left leg.
## 43814                                                                                                                                                                                            EE taking bags of trash to trk-one bag w/a knife in it cut EE's rt leg.
## 43815                                                                                                                                                                            EE taking blood sampe from restrained cow and received needle stick to middle left hand
## 43816                                                                                                                                                                             EE taking blue boxes off the warewasher machine, felt like a strain in right shoulder.
## 43817                                                                                                                        EE taking bolts out of the pump to remove it for repair. EE looked to check power switch the pump came off & sprayed hot water on his legs.
## 43818                                                                                                                                                                              EE taking boxes to dump, felt sharp pain in lt foot, needle was stuck inside of shoe.
## 43819                                                                                                                                                                                       EE taking bunk beds apart and felt a burning strained feeling in lower back.
## 43820                                                                                                                                                                                 EE taking canoes off of rack for program and pulled a muscle in left side of back.
## 43821                                                                                                                             EE taking care of patient in bathroom & monitoring dayroom. Patient came from bathroom running & shouting, punched EE in face/head. ()
## 43822                                                                                                                                                                           EE taking cash box to receptionist-going back to office slipped and fell on waxed floor.
## 43823                                                                                                                                                                                  EE taking chairs off top of the table when he felt a pain in his lower left side.
## 43824                                                                                                                                       EE taking child for walk he has limited communication skills he wanted EE's attention and was frustrated he bit EE on lt arm
## 43825                                                                                                                                   EE taking chow into aumen seg for del. To inmates. Cart rolled over big toe on lt foot, she alleged that she pulled back muscle.
## 43826                                                                                                                                                                                                       EE taking client to class when client grabbed EE'srt finger.
## 43827                                                                                                                                       EE taking client to clinic-client wanted to listento walkman-while checking battries to walkman acidwent into face and eyes.
## 43828                                                                                                                                             EE taking client to get bath-another EE in room w/a cart-EE moved cart out of the way and rolled over toes in process.
## 43829                                                                                                                                                                                                  EE taking client to p. R. And client fighting and twisted rt arm.
## 43830                                                                                                                                                                         EE taking client to smoke-felt something hit her on left arm-notice red area and swelling.
## 43831                                                                                                                                                                           EE taking client's blood sugar when client hit EE under the chine jamming teeth together
## 43832                                                                                                                                                        EE taking clients lab work-client came at EE whilewaiting for lab work - EE injured knees, neck and stomach
## 43833                                                                                                                                                                                    EE taking clients shirt off and felt somthing pop in rt wrist. Sprain rt wrist.
## 43834                                                                                                                                                                                      EE taking computer out of bldg-computer fell off of cart onto EE's left foot.
## 43835                                                                                                                                                                          EE taking dining trays to unload zone, slipped on some liquid and fell injuring left knee
## 43836                                                                                                                                                                EE taking dish to dishroom and slipped on wet spot on the floor - injuring lower back and left side
## 43837                                                                                                                                                                                                       EE taking documents to another bldg-wind blew sand into eye.
## 43838                                                                                                                              EE taking documents to bring to the dept in a shopping bag. The bag broke and EE lost balance and stumbled and fell. EE sprained knee
## 43839                                                                                                                                                                         EE taking down a display case from wall and moving to dining hall-felt pain in rt shoulder
## 43840                                                                                                                                                                                                  EE taking down a phone message & felt sudden pain in hand & wrist
## 43841                                                                                                                                                                                           EE taking down an aggresive client and hit knee on floor, also hurt ribs
## 43842                                                                                                                                                                                                   EE taking down christmas decorations and thumb tack hit left eye
## 43843                                                                                                                    EE taking down display of hay cotton bedspread, corn and pumpkin that was used for her career enchancement class. Rash on arms, neck & stomach.
## 43844                                                                                                                                                                                                                 EE taking down gutter when trash blew in right eye
## 43845                                                                                                                                                                                                        EE taking down old damaged ceiling-debris flew in right eye
## 43846                                                                                                                                                                 EE taking down tape at track field tripped on cement pad and fell on his hands injury to left foot
## 43847                                                                                                                                                                                     EE taking dust mop off cart-hand got caught on keyring and hit corner of cart.
## 43848                                                                                                                              EE taking empty boxes out of bldg and placed them next to bldg-walking towards staff member and fellinjuring rt knee, elbow and hand.
## 43849                                                                                                                                                                                 EE taking empty rolls of tissue off of dispensers when released EE scraped rt hand
## 43850                                                                                                                                                                                                                EE taking equipment off boat and hit rt toe on deck
## 43851                                                                                                                                                   EE taking food out of cabinet when closing the inside rack, EE's right thumb was mashed between the rack & door.
## 43852                                                             EE taking food out of refrigerator. EE went to throw out a bag with container which was dripping into trash, EE slipped and fell with left leg under body. EE states hurt left ankle and left foot. ()
## 43853                                                                                                                                                                                             EE taking heating unit valve off, got wrist twisted & pulled something
## 43854                                                                                                                                               EE taking inmate to er after biting his tongue, when inmate talked he sprayed blood of of mouth & went into EE eyes.
## 43855                                                                                                                 EE taking inmates to c-block when inmate took EE'shandcuffs & raised hands up as EE approached. EE took inmate to ground, handcuff punctured elbow
## 43856                                                                                                                                                                                         EE taking items from xray and tray slipped off table and landed on rt foot
## 43857                                                                                                                                                                                         EE taking laundry to laundry room and went to throw bag twisted left knee.
## 43858                                                                                                                                                         EE taking lumber from stack and splinter went under nail. Splinter under nail of middle finger right hand.
## 43859                                                                                                                                                                                                EE taking lunch from maple cottage to par 2 trippdand fell on knees
## 43860                                                                                                             EE taking lunch items to car with co-workers' helpco-worker opened car door and went ahead, noticed EE had fallen over off the sidewalk onto the grass
## 43861                                                                                                                                                       EE taking materials to car when end of luggage rack slipped-att to catch carts and strained back in process.
## 43862                                                                                                                 EE taking measurements of new warehouse, did not notice indentation in floor, stepped on top edge, foot slipped in loose concrete, fell on rt knee
## 43863                                                                                                                                    EE taking measurements on shoulder of rd at acidntscene and stepped on large rock lying on shoulder of road twisted right ankle
## 43864                                                                                                                                            EE taking medical staff around for med-pass. The inmate threw urine on EE upper body when EE opened the cell trap door.
## 43865                                                                                                                                                                  EE taking metal lockers apart w/hammer & chisel missed the chisel felt pain in rt shoulder & arm.
## 43866                                                                                                                       EE taking object of the access control room #1 box was closed hit rt hand. Conducting routine patrol of area at time. Rt hand middle finger.
## 43867                                                                                                                                                          EE taking out recycling when she slipped and fell down the back steps twisting rt ankle and skinned knee.
## 43868                                                                                                                                                                                                            EE taking out trash & fell in a hole & injured rt ankle
## 43869                                                                                                                                                                                                                   EE taking out trash and cut left forearm on door
## 43870                                                                                                                                                                         EE taking out trash and door locke behine him-EE was running up ramp and rt foot gave out.
## 43871                                                                                                                                                                                                                                 EE taking out trash and passed out
## 43872                                                                                                                                                                          EE taking out trash and slipped and fell on ice and something sharp stuck EE in left leg.
## 43873                                                                                                                                                                                                                  EE taking out trash and top came down on rt hand.
## 43874                                                                                                                                                                                                         EE taking out trash slipped on steps sprain/strainrt thigh
## 43875                                                                                                                                                                     EE taking out trash turn go down next level of stairs-turned the wrong way and felt back pull.
## 43876                                                                                                                             EE taking out trash, dumpster stood next to bar gate, the bar gate opened causing EE to fall, hitting rt hip & back on dumpster motor.
## 43877                                                                                                                               EE taking paper out of the cabinet in living room whe resident kicked the door to the cabinet, hit EE on upper rt top of her breast.
## 43878                                                                                                                                                                      EE taking papers to sheriff dept came around corner and fell in hallway. Sprained right foot.
## 43879                                                                                                                                                                                          EE taking patient out to breezeway to smoke and patient became combative.
## 43880                                                                                                                                                                               EE taking radio equipment from shelf and felt a pop and sharp pain in left shoulder.
## 43881                                                                                                                                                              EE taking reports from one room to another - slipped and fell on newly waxed floor between door frame
## 43882                                                                                                                EE taking resident shirt off & resident stood up & fell forward. EE had to catch resident to prevent hard fall injured lt eye blood vessel bursted.
## 43883                                                                                                                                                                                              EE taking shingles to shed roof and lost balance and fell off ladder.
## 43884                                                                                                                                                                                              EE taking steps backwards when she turned her ankle and fell to floor
## 43885                                                                                                                                                                                                       EE taking supplies out of box when thumb popped on left hand
## 43886                                                                                                                    EE taking survical counts in an open field, put hisshovel in the ground for a center, hit a bee nest and was stung on rt hand. Allergic to bees
## 43887                                                                                                                                                EE taking suspect to intoxylizer room w/handcuffs on-suspect jerked away from EE and twisted finger into handcuffs.
## 43888                                                                                                                                         EE taking the student role to the office and was knocked down by student to the floor. Injury to hip, wrist, back of head.
## 43889                                                                                                                                                                    EE taking the trash liner out of the trash can anda piece of broken glass cut EE on left thumb.
## 43890                                                                      EE taking toilet off truck carrying into group home back door while opening door to home; carrying into bathroom while holding door; placed on floor felt pain in left side of lower back. ()
## 43891                                                                                                                                                                                 EE taking toilet paper up stairs by pulling it on a hand truck & strained her back
## 43892                                                                                                                                                                                                         EE taking trash out and slipped on ice, spraining rt ankle
## 43893                                                                                                                                                                                 EE taking trash out as EE put trash in dumpster EE hit arm injury cut on right arm
## 43894                                                                                                                       EE taking trash out of sanitary disposal containerwhen she noticed a bottle in it-went to remove bottle and got stuck by needle on rt thumb.
## 43895                                                                                                                                                                                                                    EE taking trash out of trashcan and pulled back
## 43896                                                                                                                                                                                               EE taking trash out placing into metal can and cutleft index finger.
## 43897                                                                                                                                                                                                           EE taking trash to dumpster and was stung on rt shoulder
## 43898                                                                                                                                                                  EE taking trash to dumpster lifted trash bag to put in dumpster injury left shoulder blade & neck
## 43899                                                                                                                                                                            EE taking trash to dumpster slipped and fell on icy sidewalk landing on left leg/knee..
## 43900                                                                                                                                                                                                   EE taking tray inserts from warmer and pulled something in back.
## 43901                                                                                                                                                                                    EE taking tray out of autoclave-tray was heavy andliquid splashed on left ankle
## 43902                                                                                                                                                           EE taking two bags of trash down steps and trippedattempted to catch self and hit backside against step.
## 43903                                                                                                                    EE taking up squares of temporary floor playing surface and reached to set box upright and felt pulled muscle in lower back. Lower back strain.
## 43904                                                                                                                                                                                                        EE taking xray of dog-dog snapped at rt hand then left hand
## 43905                                                                                                                    EE talkiing with inmate swung his rt fist, striking lt lower rt area, restraining inmate elbow struck wall lower arm wrist area. Bruised rt arm
## 43906                                                                                                                                          EE talking on phone with police investigator. Reached behind desk for book & pulled back causingsevere pain in lower back
## 43907                                                                                                                                           EE talking on phone-client walked up and gave EE faxes-EE looking at faxes when client hit EE on rt side of face w/fist.
## 43908                                                                                                                                                                                           EE talking to inmate, when saliva from inmates mouth hit EE in left eye.
## 43909                                                                                                                                               EE talking w/ patient 1:1. Patient grabbed EE by throat, pulled EE's hair and punched EE in the face numerous times.
## 43910                                                                                                                                                 EE talking w/other staff carrying bedpads-turned and tripped over foot stool falling on rt knee, head and shoulder
## 43911                                                                                                                                                                                               EE talking with another EE and felt something sting her on the neck.
## 43912                                                                                                                                                                              EE talking with client when another client chargedhitting EE in chest & upper lt arm.
## 43913                                                                                                                                                      EE talking with co-worker & supervisor-turned around to return to cubicle & twisted right knee causing injury
## 43914                                                                                                            EE talking with patient that was upset about prolonged hospitalization & no benefits, did not get to go on shopping trip. Patient struck EE on chin. ()
## 43915                                                                                                                               EE talking with prosecuting witness about case. Witness became upset & punched EE in face. Knockinoff EE glasses. Contusions to face
## 43916                                                                                                             EE tapping glass stopper with a wrench, in a glassbottle--neck of bottle broke---reagent, chem wash spilled on EE waist down--frnt lwr torso/feet/legs
## 43917                                                                                                                                           EE tapping window pane in dining hall, window broke trying get inmate attention causing three small cut on back rt hand.
## 43918                                                                                                             EE taught several classes outdoors on tuesday from900 to 1000 - woke up w/embedded tick next morningbite began showing signs of infection by late week
## 43919                     EE teaches cpi & nci and after several yrs of these high impact classes, EE has developed pain and discomfort in my shoulders and elbows. EE is now experiencing numbness in arms and pain when he holds heavy in hands while at his sides. ()
## 43920                                                                                                                                  EE teaches the electric lineman classes & was demonstrating the pole climbd slid down the pole scraping both arms along the pole.
## 43921                                                                                                                                          EE teaching & assessment act with 6 yr old with autism; child became frustrated biting EE right shoulder through EE shirt
## 43922                                                                                                                                                              EE teaching 3 man carry training class trying to hold on to the "dummy" leg and fell down on her knee
## 43923                                                                                                                                                                 EE teaching auto mech class EE tighting a nut and nut slipped and cut EE index finger on left hand
## 43924                                                                                                                                               EE teaching cabinet making class and instructin students on how to use wood planner has caused ringing in both ears.
## 43925                                                                                                                                                                   EE teaching class-reached down to turn machine offand touched exhaust cover burning two fingers.
## 43926                                                                                                                                                               EE teaching in hospital stepped on temp probe & twisted left ankle, hurting right toe, fell to floor
## 43927                                                                                                                   EE teaching inmate self-administration of insulin & afterwards needle protector did not shield needle & thinks scratch on thumb caused by needle
## 43928                                                                                                                               EE teaching scuba, was kicking to remain at the surface while providing veral feedback to the students, felt a pop/pain in left knee
## 43929                                                                                                                                                       EE teaching students to use gate belt when a large student fell off the table and landed on EE's flexed leg.
## 43930                                                                                                                                                                                                 EE teaching students who have been exposed to mrsaupper chest area
## 43931                                                                                                                                                                                   EE teaching swimming class, & one of the campers grabbed her finger injurying it
## 43932                                                                                                                                                                                             EE tearing down clinder block wall w/sledgehammer and injured himself.
## 43933                                                                                                                         EE telling student to go to his room & pointing indirection of room, when student slapped rt arm. Bruise rt forearm, redness next morning.
## 43934                                                                                                                                                                     EE tending to group of clients-came around table tripped over wheelchair injuring rt leg/ankle
## 43935                                                                                                                                 EE tending to patient who had fallen. EE was running through a doorway and missed door handle and ran into door injurying wrist. (
## 43936                                                                                                                                                                                                                  EE tensed up in back while running after student.
## 43937                                                                                                                                                                                                                                            EE test postive for TB.
## 43938                                                                                                                                                                                                    EE tested positive for TB after another EE was tested positive.
## 43939                                                                                                                                                                                       EE tested positive for TB after being exposed to an inmate who has active TB
## 43940                                                                                                                                                                                                                                     EE tested positive for TB skin
## 43941                                                                                                                                                                                                                                         EE tested positive for ppd
## 43942                                                                                                                                                                                                                 EE tested positive for t. B. An x-ray was ordered.
## 43943                                                                                                                                                        EE tested positive to a TB skin test that was administered by the bcci medical staff and was read on2/14/05
## 43944                                                                                                                                       EE tested yearly for TB thru the doc. Has worked for prison system for 7 years. EE tested positive on for TB 10-20-06. Lungs
## 43945                                                                                                                 EE the steps were detached from mobile unit, EE placed boards on steps, thought secure, not, walking up steps, steps collapsed, causing EE to fall
## 43946                                                                                                                                                                                    EE then shifted weight to complete task and return to work. Pain didnt go away.
## 43947                                                                                                                                                                  EE thinks he rec'd scabies from pat-searching inmates going into & out of the vocational building
## 43948                                                                                                                                                                                                                 EE thinks he strained back while making deliveries
## 43949                                                                                                                                                                                                           EE thinks injury occured during use of the floor buffers
## 43950                                                                                                                                                                                                 EE thinks she has been in contact with asbestos rash all over body
## 43951                                                                                                                                                EE thinks she pulled a muscle when folding table. Acute low back pain began immediately the next morning. Low back.
## 43952                                                                                                                                                                 EE thinks that her injury occured while assisting another EE with a patient... Lower left rib cage
## 43953                                                                                                                                                                 EE thought another staff needed help w/client-EE ran down the hall and felt a deep pop in rt knee.
## 43954                                                                                                                                                                          EE thought he was on bottom step on ladder and stepped too soon making jolt in lower back
## 43955                                                                                                                                  EE thought he was on last ring of ladder but was on second. Stepped down and fell to ground; felt sharp pain go straight up spine
## 43956                                                                                                                                                                       EE thought she had been bitten by something be- cause her left earlobe and jaw were swollen.
## 43957                                                                              EE thought she had injured herself exercising but it did not subside, so EE thinks it May be work related. Numbness/soreness in right arm down to my fingers. From my right arm down.
## 43958                                                                                                                                                                           EE thought something had bitten her on the rt forearm while she was assigned to the yard
## 43959                                                                                                                                                                                        EE threw an empty box in truck and it caused a strain in neck and shoulder.
## 43960                                                                                                                                                             EE threw an unknown substance liquid in EE's facial area while escorting another inmate to the shower.
## 43961                                                                                                                                                                EE threw chair and EE proceeded to place patient in therapeutic hold and felt a pain in lower back.
## 43962                                                                                                                                     EE threw football to student, student missed and ball struck EE on right shoulder/arm. Dx: rtc tear** EE wrk# 704-786-9163 ***
## 43963                                                                                                                                                                                                                               EE threw garbage bags in dumpster ()
## 43964                                                                                                                      EE threw heavy garbage bag of wet attends into thedumpster, bag heavier than usual, when throwing the bag, felt pain/pull in right elbow/arm.
## 43965                                                                                                                                                                                      EE threw out a large trash bag of books in dumpster, strain to right shoulder
## 43966                                                                                                                                                                                                 EE threw tape measure on table and cut rt hand on a piece of metal
## 43967                                                                                                                                                                      EE throwing away trash-turned around and walked into a steel post cutting upper shin left leg
## 43968                                                                                                                                                                                             EE throwing large trash bag into dumpster and feltpain in rt shoulder.
## 43969                                                                                                                                                                   EE throwing small bag of trash in trash can & shoulder became dislocated due to injury on 5/9/05
## 43970                                                                                                                                                            EE throwing trash in dumpster-picked a bag that was too heavy causing pain in lower back and shoulders.
## 43971                                                                                                                                                                                                                  EE throwing trash into trash dumpster-strain knee
## 43972                                                                                                                                                       EE thrown by partner landed on mat w/elbow & lt hand underneath ribs felt sharp pain on lt side & upper back
## 43973                                                                                                                             EE throws and pitches at softball practice and developed arm/shoulder/neck soreness and stiffness onher left side. Referred to glenda.
## 43974                                                                                                                                                                                       EE thumb became swollen and sore during process offrying, wiping, & cutting.
## 43975                                                                                                                                                                                                                     EE thumb sliced when throwing anchor from boat
## 43976                                                                                                                                                                                                     EE thumb touched grinding wheel while adjusting. Cut lt thumb.
## 43977                                                                                                                                                                                     EE thumb was caught between frame of table saw and concrete column f18 filed..
## 43978                                                                                                                                                             EE thumb was caught between janitor's cart and door while washing barbage cans. **ag's file# 03-1009**
## 43979                                                                                                                                                                                                                  EE thumb was pulled back by client and it popped.
## 43980                                                                                                                                                          EE tightening a screw w/wrench, hand slipped & hit screw on face of machine, cut middle finger on rt hand
## 43981                                                                                                                          EE tightening hydraulic line, wrench slipped on line nut causing EE to slip strike right knee on dekof lawnmower bruise to right knee cap
## 43982                                                                                                                                                                EE tightening strap for client restrain on van- pulling strap-hand slipped off and stuck wheelchair
## 43983                                                                                                                                  EE tightening the locking nut for lawnmower blade, ratchet slipped off the nut and finger struck blade. Laceration rt 5th finger.
## 43984                                                                                                                      EE tilted up to reach something on desk and as she lowered herself back into the chair-the chair rolled back and she fell-hitting head on tbl
## 43985                                                                                                                                                                                   EE tipped over in a chair and fell to floor hitting head and twisting left ankle
## 43986                                                                                                                                                                                                     EE tired to keep dog from removing tube and got bitten on hand
## 43987                                                                                                                                                            EE to keep client from falling client fell on EE left leg causing to twist left ankle. Lt ankle strain.
## 43988                                                                                                                                                                                               EE to lift box from floor. Felt sharp pain in back. Lower back pain.
## 43989                                                                                                                                                    EE to wake up b/c it was not the place to sleep on sofa. EE upset and scratched me on lt hand. Scratch lt hand.
## 43990                                                                                                                                                                                                                               EE toe was caught under a heavy door
## 43991                                                                                                                                                                                   EE toilering client-reached around client and pulled something in left shoulder.
## 43992                                                                                                                                                         EE toileting a client-trnd and bent over to turn faucet off-foot slipped causing EE to fall landingon back
## 43993                                                                                                                                                                                                       EE toileting client when client bent EE's rt thumb backwards
## 43994                                                                                                                                                                           EE toileting client, ask charge person for an attend & door closed on left middle finger
## 43995                                                                                                                          EE told driver to back truck while she was standing next to the vehicle the door on the truck was open and hit the rt side shoulder of EE
## 43996                                                                                                               EE told supervispr: everytime EE turned her back she hurt & was having hard time breathing. EE did not fill out accident report & has since resigned
## 43997                                                                                                                                                                                               EE took a TB skin test which has caused blisteringon her lt arm area
## 43998                                                                                              EE took a breaking and entering of a motor vehicle call when he cut his finger while trying to open a door that had been pried open by a latch with rusted rivets. ()
## 43999                                                                                                                                                                                     EE took a cap off a steamer when the steam burn his rt side of face and rt arm
## 44000                                                                                                                                                                                        EE took a nap, right leg numb, tripped over brief- case, fell on right hip.
## 44001                                                                                                                                                                     EE took a sip of drink from diet coke can that wasin her desk drawer and tasted like medicine.
## 44002                                                                                                                                                                       EE took a wheelchair client to hosp and had to lift client into the van injuring lower back.
## 44003                                                                                                                                    EE took bag of trash out, EE opened lid of dumpster and let it rest back. The wind blew the dumpster lid back down on his hand.
## 44004                                                                                                                     EE took barrel with approx 20 gal of water and loaded on back of pickup to clean a walkway. After unloading the barrel felt back pain. Strain.
## 44005                                                                                                                                                                        EE took client by arm to redirect out of unit, client reached down and bit EE's right hand.
## 44006                                                                                                                                               EE took consumer and several others to duck pond for fishing and consumer threw stick hitting EE inback of his head.
## 44007                                                                                                                          EE took cups from a pt room that wasn't surpose tohave them pt followed EE to nursing station & hit EE in the head, EE head hit the wall.
## 44008                                                                                                                      EE took elevator to basement and the elevator didn't land even with the floor-EE stepped out and lunged forward, almost falling strained neck
## 44009                                                                                                                                                EE took flu shot at approx 7am began to develop allergic reaction about 10:30am continued fell worse until checked.
## 44010                                                                                                              EE took hold of a cell door & got what appeared tobe semen on him. EE had an open sore on his first finger on rt hand that was exposed to this fluid.
## 44011                                                                                                                                              EE took hold of an inmate and carried him to cell, carried down northside steps to his cell. Possiblestrain rt elbow.
## 44012                                                                                                                EE took hold of inmate to be escorted to block shower area. EE was injured while inmate struggledee was holding inmate's feet. Injury to left elbow
## 44013                                                                                                                                                           EE took hold of inmate's upper body and took the inmate to the floor and developed pain in l middleback.
## 44014                                                                                                                                            EE took it upon himself to hang black board in hisclassroom w/out calling maintenance. Felt pop in right bicep/shoulder
## 44015                                                                                                                                                      EE took lapboard off of wheelchair and put it on headboard of bed-turned around and board fell on top of foot
## 44016                                                                                                                                                                      EE took lock off gate to enter, a piece of metal went thru her left middle finger fingernail.
## 44017                                                                                                                              EE took non ambulating client to beauty shop. EE had to tilt wheelchair back to rinsing bowl several time. Felt pain in wrist and arm
## 44018                                                                                                                       EE took off her seat belt and got up from her seatbefore the driver stopped. Driver swerved and bumped and EE fell and hit ribs on arm rest.
## 44019                                                                                                                                                               EE took off into a sprint at blet class from a standing position & injured her left achilles tendon.
## 44020                                                                                                                  EE took out trash from med room, walking up steps on loading dock of 5 ward, lights were off, steps were wet, EE fell landing on rt hip/arm/back.
## 44021                                                                                                                    EE took pan of bread out of oven-dropped pan of bread in floor- EE reached down to pick pan up burn to pointer finger and middle finger rt hand
## 44022                                                                                                                                                     EE took patient down to the floor during an eri, EE uncertain if he hit his eye on the pt's knee or a chair ()
## 44023                                                                                                                                         EE took patient out to smoke and when patient was finished they took a step towards EE and swung and struck EE in the jaw.
## 44024                                                                                                                                EE took pepper spray training, a a result of beingsprayed in face, EE is suffering from headaches. Was not having headaches before.
## 44025                                                                                                                                                                                                EE took pt to time out & pt grabbed left thumb & bent back to wrist
## 44026                                                                                                                                              EE took resident into bathing room, resident beganto fall toward floor and EE had to catch him. Reinjured left thumb.
## 44027                                                                                                                                                                                                         EE took resident to bathroom and shoved EE into wall 3x's.
## 44028                                                                                                                                          EE took shipment of boxes to mailroom and then went back to his desk to sit down-when he got back up had pain in low back
## 44029                                                                                                                                 EE took shower on the night and used soap that was given to them to use he woke up the nexy morning to fing his skin was broke out
## 44030                                                                                                                            EE took some high school students in coastal hrdrology out of doors for an out-side experience and that's when the spider bite occured.
## 44031                                                                                                                      EE took some wheelchair bound students on feild trip to the mountains. Constant lifting of the wheelchair in/out of the vehicle injured back.
## 44032                                                                                                                        EE took state car to have oil changed, EE forgot she had to climb down steps to get out and fell on back on street in front of home office.
## 44033                                                                                                                                                 EE took table away from agitated patient, contact occurred. Also assisted in taking same agitated patient to m. R.
## 44034                                                                                                                                                 EE took the gloves off later he began to itch in the eye area. EE was scanning through inmate's personal property.
## 44035                                                                                                                              EE took the mandatory TB skin test on 10/22 and at1800 hours the serum used in the test reacted causing a skin rash over entire body.
## 44036                                                                                                                                                                           EE took the violator to the ground, injured left knee in the scuffle, pain in lower back
## 44037                                                                                                                                                               EE tore cartilage in his left knee when he exited his patrol vehicle for a traffice enforcement stop
## 44038                                                                                                                                                                                                                EE tossed tarp on back of truck and hit right elbow
## 44039                                                                                                                                                                                          EE tossing a bag of garbage onto a dump truck whenhe strained his rt arm.
## 44040                                                                                                                                                                                                                                      EE touched a pool of blood ()
## 44041                                                                                                                                                                                                                 EE touched a saw blade with hand, injured knuckles
## 44042                                                                                                                                                                                                                                                EE touched blood ()
## 44043                                                                                                                      EE touched his lt eye lid and lid became swollen & irritated. EE feels he came in contact with unknown substance which transferred to eye lid
## 44044                                                                                                                                                                                                                   EE touched hot mold containing asphalt on rt arm
## 44045                                                                                                                                                                                      EE touched hot uninsulated pipe near wire tray. 2nd degree burns to left hand
## 44046                                                                                                                                                                                                                          EE touched power source on laptop unit ()
## 44047                                                                                                                                       EE touched red light bulb on control panal & the bulb shocked her causing sparks to fly in the air & put a blister on finger
## 44048                                                                                                                                                                                       EE touring on ambulance and crammed her foot on an attachement in the floor.
## 44049                                                                                                                                                                                                 EE tracing porsonal property of inmate. Cut left hand below thumb.
## 44050                                                                                                                                         EE training assisting dog handlers in laying trackfor bloodhounds exercise. A briar flung back & struck subject in rt eye.
## 44051                                                                                                                                                                         EE training at academy injury to left knee while sparring with a cadet injury to left knee
## 44052                                                                                                                                                        EE training bloodhounds in the woods and came in contact with poison oak on left wrist, face and groin area
## 44053                                                                                                                                            EE training class went outside, as she stepped outdoor, caught heel on curb & fell scratching rt knee & bruised rt palm
## 44054                                                                                                                                                                                                       EE training exercises struck in mouth by elbow tooth chipped
## 44055                                                                                                                                                                                                      EE training fell backward on training mat injury to tail bone
## 44056                                                                                                                                    EE training in defensive tactics, wrestling to escape, when poked in eye. Right eye retinal injury, EE washed out & made report
## 44057                                                                                                                                                                                                                              EE training in ground defense tactics
## 44058                                                                                                                                                 EE training on atv and turned at high rate of speed and struck a tree-injuring rt hip, thigh rib cage and rt ankle
## 44059                                                                                                                                                             EE training on bus, when he entered rear of bus he alleges he struck top of head on frame of the door.
## 44060                                                                                                                  EE training under swimming & water safety block ofbasic wildlife recruit school. Did exercises and pool for 6 hrs. Later noticed l knee swelling.
## 44061                                                                                                                                                  EE training w/pr24 baton strikes and arm bar comalongs and holds. After training rt elbow became sore and swelled
## 44062                                                                                                                                                                                                EE transfered from wheelchair to bed without lift and strained back
## 44063                                                                                                                                                                                              EE transfering client from bed to chair and felt a pull in lower back
## 44064                                                                                                                                                                                             EE transfering client from geri chair to bean bag and left knee poped.
## 44065                                                                                                                                     EE transfering resident to another dayroom to be prepared for lunc, resident pulled rt hand & felt like she pulled a ligament.
## 44066                                                                                                                                                                                       EE transferred pt from bed to lumax chair, felt a sharp pain in my upper leg
## 44067                                                                                                                                                                               EE transferring a corpse from the stretcher to the morgue and felt painin lower back
## 44068                                                                                                                                                                               EE transferring client frm bed to wheel chari, felt electric sensation to the spine.
## 44069                                                                                                                                                EE transferring client frm bed to wheelchair when client lost balance and EE att to assist client and injured back.
## 44070                                                                                                                                                EE transferring client from bed to w/c stand when client went in opposite direction and EE noted pain in lower back
## 44071                                                                                                                                                                                               EE transferring client from bed to wheelchair, EE twisted right knee
## 44072                                                                                                                                                                                              EE transferring client from bed to wheelchair, felt pain in back area
## 44073                                                                                                                                                                              EE transferring client from floor to chair client grabbed and scratched EE right hand
## 44074                                                                                                                                                          EE transferring client from horse cart into wheel chair; felt sharp pain in upper back down into left arm
## 44075                                                                                                                                                                  EE transferring client from toilet into chair whenlegs buckled-which caused EE to dislocate knee.
## 44076                                                                                                                                                                                          EE transferring client to bed frm wheelchair-EE caught left hand on chair
## 44077                                                                                                                                                                                       EE transferring client to shower chair lost balance injury to right shoulder
## 44078                                                                                                                                                  EE transferring client who began to fall-EE kept holding on to client and both fell-EE injured left arm and back.
## 44079                                                                                                                                                                                                    EE transferring patient from bed to stretcher felt pop in back.
## 44080                                                                                                                                                                                   EE transferring patient from wheelchair to bed injured lower r back, lower r leg
## 44081                                                                                                                                                                                   EE transferring pt to pot pt refused, left arm started to hurt from neck on down
## 44082                                                                                                                                            EE transferring resident from wheelchair to toiletwhen resident began to fall, EE broke fall & hurt something in lt arm
## 44083                                                                                                                                                                          EE transported inmate who had ringworm-EE noticed what appeared to be ringworm on rt hand
## 44084                                                                                                                     EE transporting a 2 gallon sprayer with no brite chemical & water from one truck to another when the wand splashed chemical into his left eye.
## 44085                                                                                                                                     EE transporting an inmate to eye clinic & while climbing stairs he slipped on 2nd from top step bending his right foot upwards
## 44086                                                                                                                   EE transporting an inmate to mcdonalds in wilson when a deer ran out in front of EE. It struck the state vehicle on driver side front. No injury
## 44087                                                                                                                                      EE transporting blind client who tripped on leg offurniture-EE tried to steady client from falling and injured rt ankle/knee.
## 44088                                                                                                                                                                         EE transporting chearleaders to ball game, ran into back of another vehicle. Injured neck.
## 44089                                                                                                                                                                 EE transporting client frm bed to chair-client went limp and refused to help-EE felt pain in back.
## 44090                                                                                                                                                                       EE transporting client from Dr. Appt. EE noted pain in right wrist after operating van lift.
## 44091                                                                                                                                                                                 EE transporting client from bath table to dressingtable-felt pain in lower abdomen
## 44092                                                                                                                                                                                                 EE transporting client from bed to trolley when rt shoulder popped
## 44093                                                                                                                                                                                                            EE transporting client from wheelchair to another chair
## 44094                                                                                                                                                                       EE transporting client to hosp-lifted client's belongs out of veh felt pain in back and leg.
## 44095                                                                                                                                                           EE transporting client to ito there was a struggleand staff hurt right hand possible fracture to rgthand
## 44096                                                                                                                                                        EE transporting client to room when client began to struggle and EE attempted pic hold-felt pain inrt knee.
## 44097                                                                                                                                            EE transporting client-client saw girls and att torun after them-EE placed client in therapeutic hold and fell on knees
## 44098                                                                                                                                                     EE transporting consumers to building and ito. Bent right thumb back causing pain and swelling strain to thumb
## 44099                                                                                                             EE transporting heavy load with a handcart, kept constant pressure on cart for aprox 2 blocks, caused shoulder/neck strain. To urgent care 10/31& rtw.
## 44100                                                                                                                                              EE transporting inmate from union unit while retrieving buggy inmate grabbed buggy from EE injury to lower right back
## 44101                                                                                                                          EE transporting inmate to clinic. Traveling on I-85, an unknown object struck vehicle windshield causing glass to shatter inside vehicle.
## 44102                                                                                                            EE transporting inmates to er. On way back, horsewas in road, windshield side glass was knocked outthrowing glass at face & body. Cut face, hands, eyes
## 44103                                                                                                                  EE transporting inmates-franklin regional on way back, horse in middle of road, knocked out wind- shield side glass throwing glass in staffs face
## 44104                                                                                                                                                                 EE transporting line lids from the dishroom and slipped and fell in water on floor landing on back
## 44105                                                                                                                      EE transporting patient to another unit, patient began to run to get away, as patient went through door, door slammed on EE's (right) hand ()
## 44106                                                                                                                                                       EE transporting pt to seclusion room, tripped on pt's feet, fell to floor hitting left knee. Knee contusions
## 44107                                                                                                                                                           EE transporting residents in wheelchairs, on/off elevator, felt pain/numbness in right shoulder andelbow
## 44108                                                                                                                                                                       EE transporting sick call charts on chart rack to medical suite. Felt pain to lower back. ()
## 44109                                                                                                                         EE transporting to Dr'S appointment, when vehicle going northbound hydroplaned to the left of EE's vehicle, causing both the spin & wreck.
## 44110                                                                                                                                                 EE transporting two clients-one ran ahead to keep other frm getting hit by car-EE ran after them andstumble rt toe
## 44111                                                                                                                                                                      EE trash can to deposit trash spilled on liquid floor and fell on rt shoulder and lower back.
## 44112                                                                                                                                                                                 EE traveled in elevator, states that elevator malfunctioned, was erratic & shaking
## 44113                                                                                                                                                                      EE traveling around curve on ramp skid on ice wentover embankment into culvert straining back
## 44114                                                                                                                                                             EE traveling between watauga co. And ashe co. Offices, on hwy 194. Truck forced off road. Neck strain.
## 44115                                                                                                                                                                          EE traveling down a flight of stairs & fell off patrol bicycle, sustaining minor injuries
## 44116                                                                                                                                                                                EE traveling down road when ov ran stop sign and hit EE on the left rear of bumper.
## 44117                                                                                                                                                      EE traveling from one job site to another, ran into back of stopped fedex truck that was making a right turn.
## 44118                                                                                                                                                 EE traveling from raleigh when other vehicle out of control hit left panel of car resulting in hitting guard rail.
## 44119                                                                                                                     EE traveling home in course of employment - late evening hit a black bear standing in road. No phy. Injury - state owned vehicle police report
## 44120                                                                                                                EE traveling home when became dizzy & had a headache. Prior to leaving, EE had been working in kitchen with the natural gas conversion occuring. ()
## 44121                                                                                                                         EE traveling hwy 87 to transport prisoner - rock thrown from tire of on-coming vehicle bounced off windshild. Glass particles in both eyes
## 44122                                                                                                               EE traveling in state car as a passenger in front seat w/seatbelt on. EE visiting client pulled intointersection green light & hit car - rt shoulder
## 44123                                                                                                                                                                                                  EE traveling on I40, sun in eyes, hit another vehicle from behind
## 44124                                                                                                                                                        EE traveling on nc 24 when another vehicle turned left into EE path causing EE to collide with said vehicle
## 44125                                                                                                               EE traveling on woodleaf rd in rowan county, when he lost control of his vehicle, slid on guard rail& went over bridge, landed 24' in a creek. Head.
## 44126                                                                                                                       EE traveling south on I-95 in his patrol vehicle. Traffic had come to a stop & EE struck rear of another vehicle. Neck due to airbag deploy.
## 44127                                                                                                                EE traveling south on rp 1007 (rocky river rd) as EE entered intersection nc hwy 84, he collided with another vehicle. Strain rt shoulder & rt leg.
## 44128                                                                                                                  EE traveling south on us17 when another vehicle crossed into his lane of travel & struck his patrlvehicle in the passenger area. Cut on forehead.
## 44129                                                                                                                          EE traveling through intersection on green light when another vehicle ran thru light hitting EE in front part of van injury left shoulder
## 44130                                                                                                                                 EE traveling to a recruiting event in van, van washit by another vehicle while making a left turn injury to back and shoulder pain
## 44131                                                                                                                                                EE traveling to hospital to care for patient stopped at stop light hit from behind by vechicle injury to whole body
## 44132                                                                                                                   EE traveling to magistrates office. EE stopped at intersection & was struck from the rear by anothervehicle. She received some stiffness in neck
## 44133                                                                                                                                          EE traveling to training when an approaching car hydroplaned into EE's path causing a head-on collision-multiple injuries
## 44134                                                                                                                    EE traveling to work depot, a vehcile accident involving dump truck driven by injured and school bus 2 other vehicles. Back, chest, leg strain.
## 44135                                                                                                                                                      EE traveling to work related appointment when struck from behind by another vehicle, injury to neck and back.
## 44136                                                                                                             EE traveling w hwy 98 at 55mph, vehicle #2 pulled directly into line of travel vehicle #1. Vehicle #2failed to come to complete stop. Hit rt 1/4 panel
## 44137                                                                                                                      EE traveling wb on neuse blvd when an eb vehicle made a left turn into his lane of travel. EE struck a vehicle in wb lane. Right hand & neck.
## 44138                                                                                                                EE traveling west on I-240 near us 19. EE stopped in rd due to heavy traffic, when third vehicle behind caused 2nd vehicle to hit EE veh. Back/neck
## 44139                                                                                                             EE traveling west on east broad st in statesville. While making a right turn into a business place, EE was rear-ended by another vehicle. C/o headache
## 44140                                                                                                                                                              EE traveling, another vehicle hydroplained and hit EE's vehicle, EE's vehicle ran off road into trees
## 44141                                                                                                                                                                      EE treated for sinus infection and bronchitis since moving to the park housing, signs of mold
## 44142                                                                                                                                             EE treating calf for pink eye w/needle filled w/medicine, calf jumped, she dropped needle & medicine got into her eye.
## 44143                                                                                                                                                                                                 EE treating client with physical therapy and 2nd mcp joint locked.
## 44144                                                                                                                                       EE tried on a new type of gloves while performing a vila swipe testing and EE did not notice the reactoin until the next day
## 44145                                                                                                                  EE tried to avoid tire being thrown onto trailer and use his hand and arm to push it away while ducking. Sore left wrist ***rt wrist not covered*
## 44146                                                                                                                 EE tried to break a client's fall. She fell on client, striking her right shoulder on the floor and knocking her glasses off scratching the lenses
## 44147                                                                                                                                                        EE tried to break up a fight between 2 juveniles and one juvenile rolled over and struck EE in the rt thumb
## 44148                                                                                                                                                                                         EE tried to break up altercation between two pt's - EE/pt's fell to floor.
## 44149                                                                                                                                                                                          EE tried to break up fight between 2 patients, EE got punched in l eye ()
## 44150                                                                                                                                                                         EE tried to break up fight between patients in theprocess the EE was bitten on the forearm
## 44151                                                                                                                        EE tried to break up fight between two pts injuring left middle finger and injuring lower back. Clm denied after new onset of pain on 01-06
## 44152                                                                                                                                                                                                  EE tried to break up fight between two pts, twisted shoulder/back
## 44153                                                                                                                        EE tried to calm an elementary student down when the student landed on EE last toe. The student turned around 2x and broke EE's fingernail.
## 44154                                                                                                                                                      EE tried to calm student down student lost controlthrew chair, sunk nails into hands, twisted wrists& kicked.
## 44155                                                                                                                                                                            EE tried to catch Dr. Farwell and they both fell to a sitting position on the floor. ()
## 44156                                                                                                                                                                                         EE tried to catch a resident that had drop to the floor during a transfer.
## 44157                                                                                                                                                                                                                               EE tried to catch door from slamming
## 44158                                                                                                                                                                                                             EE tried to catch falling paper; strained shoudlerback
## 44159                                                                                                                                                                                     EE tried to catch himself from falling when she pulled a muscle and lower back
## 44160                                                                                                                                                                                                     EE tried to catch patient before he fell. EE hit fist on chair
## 44161                                                                                                                               EE tried to catch patient from falling to floor, eewas behind patient letting slide down knee to floothen EE felt pain in right hip.
## 44162                                                                                                                                                           EE tried to catch patient from falling when comingback up steps. Outside with patient during smoke time.
## 44163                                                                                                                                                                EE tried to catch pt as pt fell to floor EE also fell striking left upper leg and left side of head
## 44164                                                                                                                                                                                                               EE tried to catch pt who dived off table in day room
## 44165                                                                                                                                                                    EE tried to catch resident and both resident and EE fell injuring EE's knees, left hip & wrists
## 44166                                                                                                                                                                                                EE tried to contain struggling student. Student bit EE's right arm.
## 44167                                                                                                                                                                        EE tried to dislodge a stick caught in the hopper of tm machine while machine was in motion
## 44168                                                                                                                                    EE tried to get a battery out of a computer when the batter was tilted the computer the battery fell out and smashed her finger
## 44169                                                                                                               EE tried to get a person to come inside building person became aggressive. EE suffered bite to lt hand, swelling skin broken, twisted back, shoulder
## 44170                                                                                                           EE tried to get client to go to room, when client turned he slipped and fell. When EE tried to help client up client swung and hit EE in mouth split lip
## 44171                                                                                                                                                                EE tried to grab a pt when she was given the pt a bath and EE stepped her foot twisted and EE fell.
## 44172                                                                                                                                                                                                             EE tried to grab falling vacuum & handle hit her thumb
## 44173                                                                                                               EE tried to help with a fire that had broke out in cheshire hall, when he went back into building to see if anyone was still inside he inhaled smoke
## 44174                                                                                                                                                                             EE tried to hold door open with left leg to keep it from hitting patient has hip pain.
## 44175                                                                                                                    EE tried to intercept between two students and students started toward teacher, putting foot under teachers foot. He fell and hit head on floor
## 44176                                                                                                                                                                                  EE tried to keep client from falling by putting client back in chair injured back
## 44177                                                                                                                                                                                                 EE tried to keep dog from removing tube from throat and dog bit EE
## 44178                                                                                                                                                                                                   EE tried to kill fly, struck hand on truck EE bruised right hand
## 44179                                                                                                                                                       EE tried to lift a box of paper material, he fell off truck while doing this. Experiencing middle back pain.
## 44180                                                                                                                                                                   EE tried to lift some boxes w/files in them an it was too heavy. Ly hip/down leg has pain in it.
## 44181                                                                                                                                                                                EE tried to lift the lid off the trash can and caught her finger on the metal edge.
## 44182                                                                                                                                                                              EE tried to make a phone call by sticking his arm through the cell bars and got stuck
## 44183                                                                                                                                                                     EE tried to mediate an altercation between two pts, pt grabbed EE throwing him to the floor ()
## 44184                                                                                                                                                                                 EE tried to move bench, but fell landing on the edge of the bench at sternum/ribs.
## 44185                                                                                                                                                                           EE tried to move pallet jack in pickup truck usinghis right leg and heard his knee "pop"
## 44186                                                                                                                                                                                                                                   EE tried to move pipes with hip.
## 44187                                                                                                                                                           EE tried to open dumpster lid with broom handle and the broom slipped and hit left hand pinky finger. ()
## 44188                                                                                                                             EE tried to prevent a patient from getting oout ofthe door & was pushed to floor by the patient. Minor contusion of rt post hip/flank.
## 44189                                                                                                                                                           EE tried to prevent client from leaving building. Her left arm got caught between clients body and door.
## 44190                                                                                                                                                 EE tried to re-direct aggressive pt, pt swung at co-worker, EE tried to block punch, pt punched EE in the r jaw ()
## 44191                                                                                                                                                            EE tried to redirect aggressive pt - pt took off safety belt, started to fall to floor and EE caught pt
## 44192                                                                                                                                                   EE tried to redirect patient-patient became aggressive and struck EE in mouth contusion to mouth and loose teeth
## 44193                                                                                                                                                                                               EE tried to redirect pt to take bath, pt refused, started kicking EE
## 44194                                                                                                                                                                                   EE tried to redirect pt, pt jumped up and hit EE in left eye with closed fist ()
## 44195                 EE tried to redirect resident after he had came into the hall asking if he could take a shower. Resident began hitting EE multiple times with fist EE threw up left hand and block fist when resident grabbed my hand and continued hitting it. ()
## 44196                                                                                                                                       EE tried to redirect resident who was going into another resident's room when he slipped and fell on his back and elbows. ()
## 44197                                                                                                                              EE tried to remove a piece of material from machine without turning it off. Injury to rt hand cuts bruised, fractures to finger tips.
## 44198                                                                                                                       EE tried to remove medication from med window b/c the fire alarm sounded. Tried to remove the cup ofmeds and the door slammed on left thumb.
## 44199                                                                                                                                                                                                      EE tried to restrain patient and received a rt patella injury
## 44200                                                                                                                  EE tried to restrain patient, pt jerked away and 3EE fell, hitting lt knee on floor - lt anterior cruciate ligament tear, lt torn medial meniscus
## 44201                                                                                                                   EE tried to restrain patient. Client raised arm and thrust fist into chest of EE. EE tried to restrain resident. EE felt pulling neck & low back
## 44202                                                                                                                                                            EE tried to separate 2 patients that were fighting. Was hit on both shoulders & on the side of head. ()
## 44203                                                                                                                               EE tried to sit in the chair & it slipped from under him & he reached for the chair to hold on & pulled a muscle in his rt side.. ..
## 44204                                                                                                                                                   EE tried to sit on stool, stool slid out from under EE. EE hit head. Head is hurting and is having blurry vision
## 44205                                                                                                                                                                                                           EE tried to slide mixer and hurt back while movingmixer.
## 44206                                                                                                                         EE tried to slow bike down resident got off by placing her hand on knee. Resident brought knee upcaught between knee & bike. Injured hand.
## 44207                                                                                                                                                                                    EE tried to stay off waxed floor by stepping on rug, slipped and twisted ankle.
## 44208                                                                                                                    EE tried to step over copy paper sized box & fell.. Neck/back-1/30/63 dob-prev 3/14/96 back clm ***do not pay any medicals w/o my approval*****
## 44209                                                                                                                                                                                EE tried to stop angry client from getting a knifeclient bit staff on right forearm
## 44210                                                                                                                                                                      EE tried to stop door so it would not lock and it caught his fingers before he could stop it.
## 44211                                                                                                                                             EE tried to stop patient from falling off the bed. Patient's weight fell on employee & employee's hand hit the closet.
## 44212                                                                                                                                                                                                            EE tried to stop some falling boxes and injured finger.
## 44213                                                                                                                EE tried to stop student, used nci, student pulledarm when EE tried to hold him in order to keep from metal rod. Both went down EE injured shoulder
## 44214                                                                                                                                              EE tried to stop two inmates from arguing; approached one inmate who was yelling and spit gotinto EE's eye and mouth.
## 44215                                                                                                                                          EE tried to stop two students from fighting when one of the students grabbed EE's right arm knocking her into metal door.
## 44216                                                                                                                                                                                  EE tried to stp a fight between two students causing muscle strain in the lt arm.
## 44217                                                                                                                                                            EE tried to talk to 2 patients that were fighting. One moved near EE and other patint struck EE in head
## 44218                                                                                                                        EE tried to turn resident and pulled lower back. **ruth bailey l4-5 back surgery. 4/10/06 *pl-atty - elizabeth haddix 919-542-9880* or 9800
## 44219                                                                                                                                                 EE tried to unclog large paper shredder, turned iton its side, it was too heavy and she dropped it on her left toe
## 44220                                                                                                                                                                                  EE triming trees---tree limb struck EE in face----knocking out second left tooth.
## 44221                                                                                                                                                                                   EE trimming bushes beside training center when a bee stung him on the right leg.
## 44222                                                                                                                EE trimming callaused area on bottom of hiv pos. Inmate when blade slipped due to tough skin tip ofblade hit lt index finger EE was wearing gloves.
## 44223                                                                                                                                         EE trimming weeds on playing fields with a string trimmer alleges poison oak debbis came in contact with rt arm and torso.
## 44224                                                                                                                                                                                                       EE triped over sidewalk and jarred her middle and lower back
## 44225                                                                                                                                                                                                                         EE tripee over floor mat - sprain lt ankle
## 44226                                                                                                                                                                          EE tripped & fell against open drawer of file cabinet hitting mouth & breaking two teeth.
## 44227                                                                                                                                                                      EE tripped & fell down inside stairs when her heelgot caught on black rubber section of step.
## 44228                                                                                                                                                                                       EE tripped & fell down stairs. Injured right ankle, right knee & left ankle.
## 44229                                                                                                                EE tripped & fell due to broken pavement on walk way. EE seen at er & taken out of work for 7 days. EE said she was leaving on 4-30-09 for a cruise
## 44230                                                                                                                                                    EE tripped & fell hitting head on door jam or doorhandle causing a laceration above lt eye that reqd16 stitches
## 44231                                                                                                                                                                                                         EE tripped & fell in parking lot due to crack in pavement.
## 44232                                                                                                                                                                                                                     EE tripped & fell landing on rt-side\\shoulder
## 44233                                                                                                                                         EE tripped & fell on concrete sidewalk outside williams hall when returning from mail run, injuring right ankle & foot. ()
## 44234                                                                                                                                                               EE tripped & fell on the frt steps of hillsboroughbuilding, injuring her leg, shoulder, back & hands
## 44235                                                                                                                                                                 EE tripped & fell over a cable which was not tapedto floor causing broken little finger of rt hand
## 44236                                                                                                                                                                   EE tripped & fell over cord on the floor, injuring her lower back, wrists, knees, & shoulder. ()
## 44237                                                                                                                                                 EE tripped & fell over raised sidewalk in front of the dehuguley building causing bruises on left hand, wrist eye.
## 44238                                                                                                                                                            EE tripped & fell walking up the steps to the theraputic center. Injury to (l) hand/wirst & (r) foot ()
## 44239                                                                                                                                                                                      EE tripped & fell while climbing stairs & struck her head & arms on cell door
## 44240                                                                                                                                           EE tripped & fell while hurriedly walking from herdesk to the printer scraping her right elbow & bruising her left knee.
## 44241                                                                                                             EE tripped & fell while walking to car, EE believes May have stepped in a hole from broken pavement causing pain left hand, rt side of body neck-ankle
## 44242                                                                                                                                                                                                                         EE tripped after a team building exercise.
## 44243                                                                                                                                                                                                                       EE tripped and fell across a telephone cord.
## 44244                                                                                                                                                                             EE tripped and fell as she entered the elevator; injured left knee, left arm, shoulder
## 44245                                                                                                                                                                                                                     EE tripped and fell catching self with rt hand
## 44246                                                                                                                                                                 EE tripped and fell causing contusion to rt knee wrist and laceration to lower lip, broken glasses
## 44247                                                                                                                                                                                                      EE tripped and fell down a flight of staris injuring rt knee.
## 44248                                                                                                                                                                                                    EE tripped and fell down some steps in rt shoulderand back area
## 44249                                                                                                               EE tripped and fell from top step to the bottom; abrasion and bruise to left knee; sore shoulder on left side resulting from fall; sprained rt wrist
## 44250                                                                                                                                                              EE tripped and fell hitting back against door frame mother's ph# 828-274-4985- rtw 1/2 days 2-11-2002
## 44251                                                                                                                                                            EE tripped and fell hitting head on desk and whiletrying to recover fell back and hit arm on other desk
## 44252                                                                                                                                                                                                                         EE tripped and fell hitting head on floor.
## 44253                                                                                                                                                                                              EE tripped and fell in a hole injuring lt knee andankle form 18 filed
## 44254                                                                                                                                                                                                                                     EE tripped and fell in hallway
## 44255                                                                                                                                                                                                                                EE tripped and fell in parking lot.
## 44256                                                                                                                                                            EE tripped and fell in the driveway, hit her forehead, and sustained scrapes on both hands and arms. ()
## 44257                                                                                                                                                                                                                        EE tripped and fell injuring his left knee.
## 44258                                                                                                                                                                                                 EE tripped and fell injuring his right hand and fingers on a table
## 44259                                                                                                                                                                                                                               EE tripped and fell injuring rt knee
## 44260                                                                                                                                                 EE tripped and fell on a newly waxed floor... Right side of body... Shoulder, hip, knee, arm, head, hand, and neck
## 44261                                                                                                                                                                                                                 EE tripped and fell on a rug striking his rt elbow
## 44262                                                                                                                                                                                             EE tripped and fell on a sheet of plywood injuring lt hand and rt knee
## 44263                                                                                                                                                                                                               EE tripped and fell on cement... Left eye, and knees
## 44264                                                                                                                                                                                                           EE tripped and fell on floor within her office space. ()
## 44265                                                                                                                                                                                                                           EE tripped and fell on gravel ground. ()
## 44266                                                                                                                                                                                                               EE tripped and fell on gravel landing on her lt knee
## 44267                                                                                                                                                                                                                            EE tripped and fell on hands and knees.
## 44268                                                                                                                                                                                                             EE tripped and fell on her way to the copy machine. ()
## 44269                                                                                                                                                                                           EE tripped and fell on linoleum, as she fell head impacted doorway frame
## 44270                                                                                                                                                                                                                 EE tripped and fell on mat injuring her left wrist
## 44271                                                                                                                                                                           EE tripped and fell on metal plate that was sticking out from sidewalk injuring rt wrist
## 44272                                                                                                                                                  EE tripped and fell on pavement, braced for a fall with hand.. Tried to ice and see if swelling would go down. ()
## 44273                                                                                                                                                                        EE tripped and fell on scissors she was carrying and received puncture to jaw and eye area.
## 44274                                                                                                                                                                                    EE tripped and fell on sidewalk - bilateral knee contusions and low back strain
## 44275                                                                                                                                                                                                     EE tripped and fell on sidewalk injuring her rt elbow and knee
## 44276                                                                                                                                                                                                         EE tripped and fell on sidewalk... Twisted her right ankle
## 44277                                                                                                                                                                  EE tripped and fell on some steps injuring abdomen, shoulder, arm, hand, lt leg, lt foot, and toe
## 44278                                                                                                                                                                                        EE tripped and fell on something that was on the walkway injuring both arms
## 44279                                                                                                                                                                                                                 EE tripped and fell on stair injuring his lt ankle
## 44280                                                                                                                                                                                                       EE tripped and fell on stairs injuring his rt shoulder/elbow
## 44281                                                                                                                                                                                                                   EE tripped and fell on stairs injuring left knee
## 44282                                                                                                                                              EE tripped and fell on stairs injuring right knee ** EE also has chronic djd in same knee that is **being challenged.
## 44283                                                                                                                                                                                                                  EE tripped and fell on steps striking her rt knee
## 44284                                                                                                                                                                                                                                  EE tripped and fell on the street
## 44285                                                                                                                          EE tripped and fell on the way to her vehicle. EE would like to see a doctor due to persistent pain. EE has not missed anytime from work.
## 44286                                                                                                                                                                                           EE tripped and fell on uneven concrete.... Injured left side... Rib area
## 44287                                                                                                                                                                                                               EE tripped and fell on uneven pavement... Right knee
## 44288                                                                                                                                                                                                              EE tripped and fell on uneven pavement.... Both knees
## 44289                                                                                                                                                                                           EE tripped and fell on uneven sidewalk injuring knee, shoulder and head.
## 44290                                                                                                                                                                                                           EE tripped and fell over a brick injuring back andrt arm
## 44291                                                                                                                                                                                         EE tripped and fell over a concrete stopper... Injured her hands and knees
## 44292                                                                                                                                                                                         EE tripped and fell over a covering that was on the floor injuring rt knee
## 44293                                                                                                                                                                                                                  EE tripped and fell over a desk injuring his back
## 44294                                                                                                                                                                                           EE tripped and fell over a pallet injuring his left knee, right shoulder
## 44295                                                                                                                                                                                      EE tripped and fell over a rope in parking lot causing injury to arm and leg.
## 44296                                                                                                                                                                                                             EE tripped and fell over carpet, landing on her rtknee
## 44297                                                                                                                                                                            EE tripped and fell over chair after entering office. Swelling to right knee and ankle.
## 44298                                                                                                                                                       EE tripped and fell over client that had dropped suddenly to the floor causing lt ankle sprain and contusion
## 44299                                                                                                                                                                                                          EE tripped and fell over file cabinet injuring herrt knee
## 44300                                                                                                                                                                                                                EE tripped and fell over steps striking her rt knee
## 44301                                                                                                                                                                                                       EE tripped and fell over stool and hit left shoulder on rack
## 44302                                                                                                                                                                                                             EE tripped and fell over telephone and injured rt knee
## 44303                                                                                                                                                                                                        EE tripped and fell up stairs injuring lt hip, leg and foot
## 44304                                                                                                                                                                  EE tripped and fell up the stairs falling onto step on lt leg bruising and swelling of leg later.
## 44305                                                                                                                                                                         EE tripped and fell up the steps in courthouse building - bruised nose and muscle soreness
## 44306                                                                                                                                                                                             EE tripped and fell walking across parking lot and fractured lt fibula
## 44307                                                                                                                                                                                                                     EE tripped and fell when stepping over a stool
## 44308                                                                                                                                                                  EE tripped and fell while going to the parking lot to move her car and injured her hand and wrist
## 44309                                                                                                                                                                       EE tripped and fell while going up steps while responding to a service call--injuring rt leg
## 44310                                                                                                                                                     EE tripped and fell while participating in a dramaworkshop and struck her head and chin on the hardwood floor.
## 44311                                                                                                                                                                                             EE tripped and fell while running eith children and injured left wrist
## 44312                                                                                                                                            EE tripped and fell while walking on uneven sidewalk in front of joyner library on her way to the flanagan building. ()
## 44313                                                                                                                             EE tripped and fell, EE extended arm to catch himself from falling & caught the fence, right arm started hurting and didn't feel right
## 44314                                                                                                                                                                           EE tripped and fell, cutting the top of his head when attempting to step up into the van
## 44315                                                                                                                                                                       EE tripped and fell. EE caught himself on safety railing hurting right shoulder and forearm.
## 44316                                                                                                                                                                                                  EE tripped and felled on a floor mat causing injury to her lt arm
## 44317                                                                                                                                                                                                    EE tripped and felled over client causing injury to her lt leg.
## 44318                                                                                                                                                                           EE tripped and felled over cord from a buffer machine injurying her hip, wrist, and leg.
## 44319                                                                                                                                                                                                                          EE tripped and hit head on door handle ()
## 44320                                                                                                                                                                                                                                EE tripped and injured his lt ankle
## 44321                                                                                                                                                                   EE tripped and landed awkwardly. He heard popping sounds and felt a sharp pain in his right knee
## 44322                                                                                                                                                     EE tripped and lost balance getting off mower- grabbed the street lever and caused mower to run over left leg.
## 44323                                                                                                                                                                                                                            EE tripped and sprained her right ankle
## 44324                                                                                                                                                                                                         EE tripped and struck lt wrist on table-fractured lt wrist
## 44325                                                                                                                                     EE tripped and stumbled on the stairs leading from wright plaza to the terrace area outside wright place on the ecu campus. ()
## 44326                                                                                                                                                                                                                   EE tripped and the trash barrel hit him in mouth
## 44327                                                                                                                                                                              EE tripped and twisted her left ankle, scraped herright palm and right knee on gravel
## 44328                                                                                                                                                                                                                       EE tripped as she was walking up the stairs.
## 44329                                                                                                                                                                                                        EE tripped at bottom of stairs and fell landing on left hip
## 44330                                                                                                                                                 EE tripped at edge of sidewalk & pavement exiting patton admin. Bldg. Caught self on hands and sprain right thumb.
## 44331                                                                                                                                                                                         EE tripped at entry way to main office and hit her head on the printer. ()
## 44332                                                                                                                                                                                                                        EE tripped cutting and bruising his knee ()
## 44333                                                                                                                                                                                                         EE tripped down the stairs and injured multiple body parts
## 44334                                                                                                                                                                                  EE tripped due to missing grate on drain trough. Fell with glass bowl in hand. ()
## 44335                                                                                                                                                                                                                                       EE tripped going down stairs
## 44336                                                                                                                                                                                                            EE tripped going down stairs & sprained her left ankle.
## 44337                                                                                                                                                                                                                                         EE tripped going up stairs
## 44338                                                                                                                                                                                                           EE tripped going up stairs and landed on her right knee.
## 44339                                                                                                                                                                                                                  EE tripped going up stairs and sprained rt wrist.
## 44340                                                                                                                                                                EE tripped going up the stairs and fell, hitting her rt knee against the stairs. Contusion rt knee.
## 44341                                                                                                                                               EE tripped going up the stairs and missed handrailas fell-causing handrail to catch rt ring finger and bent it back.
## 44342                                                                                                                                                                                                           EE tripped going up the stairs and twisted his rt ankle.
## 44343                                                                                                                                                                                                         EE tripped going up the steps and fell on rail right side.
## 44344                                                                                                                                                                           EE tripped in bathroom stall & caught self with left arm against wall, injuring left arm
## 44345                                                                                                                                                   EE tripped in hall and fell and injured knee, EE stepped over the roller of my chair and twisted the knee again.
## 44346                                                                                                                                                                                                                  EE tripped in parking lot scraping legs and knees
## 44347                                                                                                                                                              EE tripped in the doorway of the activity room andone is higher than the other nad knee over extended
## 44348                                  EE tripped in the hallway, when she was notifying he supervisor she fell against the desk upon entering his office. When EE tried to stand back up she hit the underneath of her chin on the desk and fell to the floor again. ()
## 44349                                                                                                                                                                                                                    EE tripped in the office and sprained her ankle
## 44350                                                                                                                                                                                                     EE tripped nad fell in the hallway. Injuring lt knee and back.
## 44351                                                                                                                                                                                            EE tripped o edge of curb, fell into back of truckbruising right elbow.
## 44352                                                                                                                                                                                                                      EE tripped on a chair falling on her ankle ()
## 44353                                                                                                                                                                                                                    EE tripped on a chair leg and sprained rt thumb
## 44354                                                                                                                                                                                                                       EE tripped on a cord hitting rt hand on desk
## 44355                                                                                                                                                                    EE tripped on a curb while avoiding a on coming vehicle causing a fracture to the left humerous
## 44356                                                                                                            EE tripped on a door stop on brick 4 inch in the floor on the outside of the building. EE fell and sustained bruises and scrapes on hip, legs, and hand
## 44357                                                                                                                                         EE tripped on a metal crate causing him to fall into a glass window causing severe cuts to face, arm, upper and lower legs
## 44358                                                                                                                     EE tripped on a piece of pipe sticking out of the ground while making rounds, causing him to stumble suffering pain in right hip and low back.
## 44359                                                                                                                                              EE tripped on a piece of rebar EE fell on his rt side hurting his rt wrist and had soreness on his rt side chest area
## 44360                                                                                                                                                                                     EE tripped on a piece of sceneryin arts bldg and fell trrowing wgt on rt wrist
## 44361                                                                                                                                                                                             EE tripped on a raised concrete floor injuring left foot and left hand
## 44362                                                                                                                                                                                                EE tripped on a rock outside the front of the bldgand fell on face.
## 44363                                                                                                                                                   EE tripped on a rolled-up floor mat in a storage room and fell to floor. Left knee, right wrist, andneck strain.
## 44364                                                                                                                                                                                                                     EE tripped on a rug falling to the sidewalk ()
## 44365                                                                                                                                                                                   EE tripped on a wheelchair and fell injuring left breast, leg, elbow and rt knee
## 44366                                                                                                                                                                                           EE tripped on an uneven spot/hole and fell injuring her left ring finger
## 44367                                                                                                                                                                                         EE tripped on back stairs and while taking out trash, and fell on lt side.
## 44368                                                                                                                                                 EE tripped on bag of materials sitting on floor. Right ankle twisted, pulled muscle in neck, waist, back and head.
## 44369                                                                                                                           EE tripped on balance beam that was laying on the floor. Suffered rotator cuff tear to r/arm *** EE's atty is mark gray 336-691-9200 ***
## 44370                                                                                                                                                                   EE tripped on black nylon cord, lying on the pavement and injured her right knee and right hand.
## 44371                                                                                                                                                                                EE tripped on board that was on sidewalk and fell injuring her lt elbow and rt knee
## 44372                                                                                                                                                                                               EE tripped on box that was on the floor striking her right breast ()
## 44373                                                                                                                                                                                               EE tripped on bread rack which inmate had left lying down in pathway
## 44374                                                                                                                                                                                                    EE tripped on brick sticking up in sidewalk and fell on ground.
## 44375                                                                                                                                                                                                  EE tripped on broken concrete on sidewalk and fellstraining wrist
## 44376                                                                                                                                                                   EE tripped on broken sidewalk and fell forward striking chin, hands and knees and chipping tooth
## 44377                                                                                                                                                                                            EE tripped on cables and cords attempted to catch self and injured arm.
## 44378                                                                                                                                                                                                                                               EE tripped on carpet
## 44379                                                                                                                                                                                                                     EE tripped on carpet and fell injuring rt knee
## 44380                                                                                                                                          EE tripped on carpet and fell on right shoulder. EE could not move and 911 was called and she was transported to hospital
## 44381                                                                                                                                                                 EE tripped on carpet and turned toe under on rt foot putting pressure on big toe and ball of foot.
## 44382                                                                                                                                                                                                                    EE tripped on carpet and twisted her left ankle
## 44383                                                                                                                                                                                                                     EE tripped on carpet falling on left knee cap.
## 44384                                                                                                                                                                                EE tripped on carpet in foyer then landed in open elevator on left knee and rt hand
## 44385                                                                                                                                                                                      EE tripped on carpet while walking from the h/r office injured left knee/leg.
## 44386                                                                                                                         EE tripped on carpet, lost balance, trying to balance herself, EE lost her balance and her weight shifted to her left ankle and it twisted
## 44387                                                                                                                                                                                                              EE tripped on carpet, stumbled and fell on left side.
## 44388                                                                                                                                                                                            EE tripped on carpet; scraped right elbow... Strain right thigh and hip
## 44389                                                                                                                                                             EE tripped on cart and fell behind rack and food cart. Fell on right side, foot got caught under cart.
## 44390                                                                                                                                                                                 EE tripped on chair and hit her head on the floor. Injured chest, face, arm, knee.
## 44391                                                                                                                                                                                                                     EE tripped on chair between chair and platform
## 44392                                                                                                                                                                                                                      EE tripped on chair leg and sprained rt thumb
## 44393                                                                                                                                                                                   EE tripped on chair leg that was too close to opening of door and fell on knees.
## 44394                                                                                                                                                                               EE tripped on client's bag of personal items and struck client's helmet with rt knee
## 44395                                                                                                                                                                                                              EE tripped on concrete of curb pavement in parkinglot
## 44396                                                                                                                                                                                                         EE tripped on cord and fell injuring shoulder hip and hand
## 44397                                                                                                                                                                                                  EE tripped on cord and fell landing on back, head and rt shoulder
## 44398                                                                                                                                                                                                                            EE tripped on cord hanging from desk ()
## 44399                                                                                                                                                                                                                                 EE tripped on crack in sidewalk ()
## 44400                                                                                                                                                                                          EE tripped on crack in sidewalk and fell forward on hands, knees and shin
## 44401                                                                                                                                                                                                                                              EE tripped on curb ()
## 44402                                                                                                                                                                                      EE tripped on curb and fell twisting left ankle and back and abrading rt knee
## 44403                                                                                                                                                                                                           EE tripped on curb at wheelchair ramp hurting knee/thumb
## 44404                                                                                                                   EE tripped on curb going into a meeting spraining lt wrist and ankle-went to Dr-On way to hosp to get xray was rearended by another EE flwng her
## 44405                                                                                                                                                                                                                               EE tripped on curb in parking lot ()
## 44406                                                                                                                                                                                                                         EE tripped on curb in parking lot and fell
## 44407                                                                                                                                                                                                                        EE tripped on curb injuring her right ankle
## 44408                                                                                                                                                                                                EE tripped on curb while walking into the school fractured left arm
## 44409                                                                                                                                                                                                             EE tripped on curbside/handicap ramp and scrapped knee
## 44410                                                                                                                                                                                                      EE tripped on debris and fell landing on left hand and wrist.
## 44411                                                                                                                                                                                                                 EE tripped on dip in sidewalk. Injured left wrist.
## 44412                                                                                                                      EE tripped on door jam and fell to carpet when entering a room to turn off the lights---glasses pierced the top of left eye and broke glasses
## 44413                                                                                                                                                                                                                      EE tripped on door ledge and sprained rt foot
## 44414                                                                                                                                                                                                                        EE tripped on door mat and twisted rt ankle
## 44415                                                                                                                                                                                                          EE tripped on door prop, falling forward to the sidewalk.
## 44416                                                                                                                                                                                                                      EE tripped on door stop and fell against wall
## 44417                                                                                                                                                                    EE tripped on door threshold & fell to the floor, hit head on tile floor. Knees eye head & neck
## 44418                                                                                                                                                                                            EE tripped on drain coming out of cottage and fell on left hip and knee
## 44419                                                                                                                                                EE tripped on dropcord that was in front of a doorway and fell injuring rt upper arm, neck shoulder, side, and knee
## 44420                                                                                                                                                                                                          EE tripped on edge of sidewalk and tripped bruising knees
## 44421                                                                                                                                                                                                                    EE tripped on edge of steps and fell on l wrist
## 44422                                                                                                                                                                                               EE tripped on electrical cord and fell hitting rt knee and left hand
## 44423                                                                                                                                                       EE tripped on elevated bricks at the bottom of steps at rear entry of obap. Fell on r knee/side &rolled over
## 44424                                                                                                                                                                                                                    EE tripped on equipment fell and broke rt wrist
## 44425                                                                                                                                                                                                                     EE tripped on floor covering injury right knee
## 44426                                                                                                                                                                                                                EE tripped on floor mat and fell bruising left knee
## 44427                                                                                                                                                    EE tripped on gravel in gravel parking lot, injury to face, lip, possib. Chipped tooth, knees scratched glasses
## 44428                                                                                                                                                                                  EE tripped on hallway rug and fell injuring rt knee, left shoulder and left wrist
## 44429                                                                                                                                                                                           EE tripped on kick plate. Caused pain in neck, back, and right shoulder.
## 44430                                                                                                                                                  EE tripped on landing and fell down 8 steps injuring 2 fingers on right hand, right eye, rightknee & right thigh.
## 44431                                                                                                                                                                   EE tripped on lifter on van which caused her to fall & hit her forehead, right shin & both knees
## 44432                                                                                                                                                                                                               EE tripped on loose brick and fell striking rt elbow
## 44433                                                                                                                                                                                      EE tripped on loose carpet sitting beside elevatorand fell injury left wrist.
## 44434                                                                                                                                                                                             EE tripped on loose/uneven floor tiles... Jammed left wrist into floor
## 44435                                                                                                                                                                                  EE tripped on mat in hallway and fell fracturing rt wrist and bruising both knees
## 44436                                                                                                                                                       EE tripped on meatl frame w/four wheels hit knee on corner of angle iron hit head on corner of milk crate ()
## 44437                                                                                                                                                                                                    EE tripped on metal strip on stair and fell injuring left ankle
## 44438                                                                                                                                                                                                                         EE tripped on netting hanging from a pc ()
## 44439                                                                                                                                                                                                                                             EE tripped on own foot
## 44440                                                                                                                                                                                                     EE tripped on phone cord and fell. Lt hand, arm, and shoulder.
## 44441                                                                                                                                                                                                                       EE tripped on phone cord fell on left ankle.
## 44442                                                                                                                                                                                              EE tripped on phone cord laying on floor and fell on hands and knees.
## 44443                                                                                                                                                                                                                         EE tripped on piece of carpet outside room
## 44444                                                                                                                                                         EE tripped on pieces carried to cat pen, used hand to brace self against fall into wall and injured wrist.
## 44445                                                                                                                                                                                                          EE tripped on poster board and hit left knee when falling
## 44446                                                                                                                                                                                            EE tripped on protruding plastic chair matt while running down the hall
## 44447                                                                                                                                   EE tripped on raised brick on brick walkway-landedon back & couldn't move various areas-hitting rt hand/elbow/pelvis & left knee
## 44448                                                                                                                                  EE tripped on raised brick while walking from assigned parking spot. Deep cut on rt. Knee, discomfort in both ankles and rt. Hip.
## 44449                                                                                                                                                                           EE tripped on raised sidewalk and fell onto driveway. Injured knee, face shoulder, knee.
## 44450                                                                                                                                                                   EE tripped on resident's tabletop and fell face forward - apparently passed out and cut forehead
## 44451                                                                                                                                                                                                              EE tripped on residents chair and twisted r ankle. ()
## 44452                                                                                                                                                                                                    EE tripped on rt side mat causing injury to rt leg-torn tendons
## 44453                                                                                                                                                                                                        EE tripped on rubber mat at front door & landed on concrete
## 44454                                                                                                                                                                                                                                               EE tripped on rug ()
## 44455                                                                                                                                                                                     EE tripped on rug and fell while trying to answer the phone and struck rt knee
## 44456                                                                                                                                                                                  EE tripped on rug and fell.. Injuring her right ankle, knee, wrist, back and head
## 44457                                                                                                                                                                                                                  EE tripped on rug hitting arm against window sill
## 44458                                                                                                                                                                                                                      EE tripped on rug in course of normal duties.
## 44459                                                                                                                                                                                                           EE tripped on rug in hall and fell on knees and lt hand.
## 44460                                                                                                                                                                                                               EE tripped on rug in lobby area straining left wrist
## 44461                                                                                                                                                                        EE tripped on seams between slat of concrete fell causing injury to rt side of face/rt hand
## 44462                                                                                                                                                                                                                              EE tripped on sheetrock; injured back
## 44463                                                                                                                                                                                                 EE tripped on shifted, bunched door mat while exiting the building
## 44464                                                                                                                                                                                      EE tripped on sidewalk and fell. Chipped front tooth, scraped elbow, rt knee.
## 44465                                                                                                                                                                   EE tripped on sidewalk and hurt her right shoulderscraped her right knee & got a lump on rt arm.
## 44466                                                                                                                                                                                                                   EE tripped on sidewalk and injured rt 5th finger
## 44467                                                                                                                                                                                                                  EE tripped on sidewalk going into the ed building
## 44468                                                                                                                                             EE tripped on sidewalk pavement walking to training site causing contusion to multiple body parts & strain neck & back
## 44469                                                                                                                   EE tripped on sidewalk while walking between buildings while performing the job duties of night shift housekeeper. Injured knee, elbow, rt knee,
## 44470                                                                                                                                                                                               EE tripped on sidewalk, lost balance and fell on rt hand and rt knee
## 44471                                                                                                                                                      EE tripped on some electrical tracks that were in the carpet and causing her to fall injuring lt hipand foot.
## 44472                                                                                                                                                                                                              EE tripped on some rocks and felt pain in his lt knee
## 44473                                                                                                                                                                                       EE tripped on someones foot during training activity and bruised her toes ()
## 44474                                                                                                                                                                                                                                               EE tripped on stairs
## 44475                                                                                                                                                                                                                        EE tripped on stairs & twisted rt ankle/leg
## 44476                                                                                                                                                                        EE tripped on stairs and fell. She was on the stairs to the basement level of the building.
## 44477                                                                                                                                                                                                                  EE tripped on stairs and heard popping in lt foot
## 44478                                                                                                                                                                              EE tripped on stairs while walking in classroom preparing for next class to begin. ()
## 44479                                                                                                                                                                                                       EE tripped on step and fell causing abrasion to lt lower leg
## 44480                                                                                                                                                                                                            EE tripped on step and fell on elbow, shoulder and back
## 44481                                                                                                                                                                        EE tripped on step and fell on landing, hit her head, left side of body and right wrist. ()
## 44482                                                                                                                                                EE tripped on step at entrance of lower door of twr one EE entering tower at shift change abrasion on left knee cap
## 44483                                                                                                                                                                EE tripped on step entering building and fell face first - scrapes and bruises both hands and knees
## 44484                                                                                                                                                                                                    EE tripped on step going out doorway and fell spraining rt hand
## 44485                                                                                                                                                                                   EE tripped on steps and fell landing on rt knee and lt ankle - sprained lt ankle
## 44486                                                                                                                                                                                                                   EE tripped on steps at entrance injuring rt knee
## 44487                                                                                                                                                                                                 EE tripped on steps causing her to fall injuring rt leg and ankle.
## 44488                                                                                                                                                                              EE tripped on steps exiting bldg, caught self with both hands, right thumb hurting ()
## 44489                                                                                                                                                                   EE tripped on steps exiting courthouse, twisting knee and ankle. Sprain left foot and right knee
## 44490                                                                                                                                                                                  EE tripped on steps going from parking lot to class and injured lt hand and wrist
## 44491                                                                                                                                                                                                        EE tripped on steps while walking up injuring rt lower leg.
## 44492                                                                                                                                                                                                                                               EE tripped on steps.
## 44493                                                                                                                                                                                EE tripped on strip on rug while escorting vistor to meeting room injuring rt hand.
## 44494                                                                                                                                                                                                                                         EE tripped on table leg ()
## 44495                                                                                                                                                                                                             EE tripped on telephone cord amd fell bruising rt foot
## 44496                                                                                                                                                                                                   EE tripped on telephone cord when getting up and fell on rt knee
## 44497                                                                                                                                                                                                     EE tripped on the pavement as she was going to theschool area.
## 44498                                                                                                                                                          EE tripped on the threshold coming into williams hall & fell to the floor, injuring her left shoulder. ()
## 44499                                                                                                                                                                                                                      EE tripped on top step and fell onto rt hand.
## 44500                                                                                                                                      EE tripped on top step of stairs going to the breezeway leading to a & e bldgs. EE fell foward injuring hands, knees, & face.
## 44501                                                                                                                                                                             EE tripped on transition strip between tile and carpet landing on her knees and elbows
## 44502                                                                                                                                                                                               EE tripped on tree branch while turning around andtwisted left ankle
## 44503                                                                                                                                                                               EE tripped on tree root twisting her ankle and hitting her right knee on the root ()
## 44504                                                                                                                                                                EE tripped on tub of files and fell causing leg to hit sharp corner of table between thigh and knee
## 44505                                                                                                                                                    EE tripped on uneven asphalt in parking lot & fellee sustained abrasions to knees & laceration to lip and face.
## 44506                                                                                                                                                                                            EE tripped on uneven concrete on the sidewalk; fell injuring left wrist
## 44507                                                                                                                                                                                                                  EE tripped on uneven floor injuring rt/left knees
## 44508                                                                                                                                                                                               EE tripped on uneven ground landed on hand, jammed thumb on lt hand.
## 44509                                                                                                                                                                                                                                    EE tripped on uneven pathway ()
## 44510                                                                                                                                                                                                                EE tripped on uneven pavement and fell breaking leg
## 44511                                                                                                                                                                                   EE tripped on uneven sidewalk and fell injuring chin, rt arm, left hand and knee
## 44512                                                                                                                                                                                                  EE tripped on uneven sidewalk and fell on rt side injuring rt arm
## 44513                                                                                                                                                                                                   EE tripped on uneven sidewalk and fell spraining rt knee and arm
## 44514                                                                                                                                                                                                EE tripped on uneven sidewalk and fell striking rt hand and rt knee
## 44515                                                                                                                                                                                                          EE tripped on uneven sidewalk at terrell building & fell.
## 44516                                                                                                                                                                                              EE tripped on uneven sidewalk near building. Fell on hands and knees.
## 44517                                                                                                                                                           EE tripped on uneven sidwalk and fell-cuts and abrasions to rt knee, both hands, chin also chipped tooth
## 44518                                                                                                                                                                          EE tripped on uneven square bricks on walkway & fell hitting knee, scraped forearm & hand
## 44519                                                                                                                                                        EE tripped on unlevel sidewalk in front of admin. Bldg & fell on right side. Right knee, elbow & upper arm.
## 44520                                                                                                                                                                                                             EE tripped on unmarked speed bump & sprained her ankle
## 44521                                                                                                                                                                                    EE tripped on vines while clering hill for p/lot and fell bendin rt thumb back.
## 44522                                                                                                                                                                                                                                              EE tripped on walkway
## 44523                                                                                                                                                                                     EE tripped on wrinkle/roll in carpet and fell to floor on rt knee and shoulder
## 44524                                                                                                                                                                                                                                EE tripped over "hump" in drive way
## 44525                                                                                                                                                      EE tripped over 4 reams of paper stacked in hall. Injury to right shoulder, left knee, left ankle, left wrist
## 44526                                                                                                                                                      EE tripped over a 2" corrugated; while performing a backwash; landed unevenly on hose and sprained left ankle
## 44527                                                                                                                                                                                                  EE tripped over a 4 x 4 log walking on side walk &fell face down.
## 44528                                                                                                                                        EE tripped over a 5 gallon bucket when exiting the gatehouse injuring her left leg, below knee area. Lt leg (shine) swollen
## 44529                                                                                                                                                                                                                    EE tripped over a bag of clay and fell on knees
## 44530                                                                                                                                                                                                                       EE tripped over a board and injured left leg
## 44531                                                                                                                                                                           EE tripped over a bookbag and hit arm on the wall trying to prevent hitting head on wall
## 44532                                                                                                                    EE tripped over a bookbag that was on the floor under her desk. The handle was partially protrud- ing & her foot got caught causing her to trip
## 44533                                                                                                                                                                                                                  EE tripped over a box and injured hip, arm, knee.
## 44534                                                                                                                                                                EE tripped over a box while turning from work station, fell and hit head. Injured head neck & back.
## 44535                                                                                                                                                                                              EE tripped over a broom handle when leaving the maintenance building.
## 44536                                                                                                                                                   EE tripped over a bubble in carpet and fell into the hallway twisting left ankle and pulled muscle in left calf.
## 44537                                                                                                                                                                                                                           EE tripped over a can in the parking lot
## 44538                                                                                                                                                                                        EE tripped over a chair and fell bruising both elbows, wrists, knee and hip
## 44539                                                                                                                                                                                                            EE tripped over a chair and fell bruising elbow and hip
## 44540                                                                                                                                                                              EE tripped over a chair and fell forward into desk injuring left arm, chest and face.
## 44541                                                                                                                                                                                                  EE tripped over a chair and fell... Injured left shoulder and arm
## 44542                                                                                                                                                                                                              EE tripped over a chair leg between table and machine
## 44543                                                                                                                                                                      EE tripped over a chair leg while carring some lt over training manuals to the training room.
## 44544                                                                                                                                                                                                   EE tripped over a childs foot during a fire drill. Injured knee.
## 44545                                                                                                                                                      EE tripped over a computer cord and as a result ofthe fall he hit his head and injured both wrists and kness.
## 44546                                                                                                                                                                                                                     EE tripped over a computer injuring lower back
## 44547                                                                                                                                                                           EE tripped over a concrete barricade while out picking up the schools' newpaper pictures
## 44548                                                                                                                                                                                                  EE tripped over a coworker's foot, falling and hitting the floor.
## 44549                                                                                                                                                                                                           EE tripped over a door threshold when exiting a building
## 44550                                                                                                                                                                                                                       EE tripped over a large rock striking lt toe
## 44551                                                                                                                                                                                                 EE tripped over a limb and fell in parking lot injuring left ankle
## 44552                                                                                                                                                                                                               EE tripped over a loose cord to time clock and fell.
## 44553                                                                                                                                                                                  EE tripped over a loose floor tile with his left foot. And fell on his left knee.
## 44554                                                                                                                                                                  EE tripped over a mat on the ground while walking out bldg and fell over trash can injuring back.
## 44555                                                                                                                                                  EE tripped over a metal plate at entrance to stackarea on first floor. Injury to right side neck andshoulder area
## 44556                                                                                                                                                                                               EE tripped over a mop striking her knee and also falling on her face
## 44557                                                                                                                                                                                                                                    EE tripped over a pair of boots
## 44558                                                                                                                                                                                                                        EE tripped over a piece of carpet and fell.
## 44559                                                                                                                                                                                           EE tripped over a piece of equipment in dental laband injured her wrist.
## 44560                                                                                                                                                                                               EE tripped over a piece of equipment... Injured left knee/right knee
## 44561                                                                                                                                                                                                             EE tripped over a pipe injuring left knee and shoulder
## 44562                                                                                                                                                                                                             EE tripped over a platform in her very crowded office.
## 44563                                                                                                                                                          EE tripped over a resident who was laying behind her on floor. EE fell over resident landing on herknees.
## 44564                                                                                                                                                                                             EE tripped over a rock and sling blade slipped and struck rt lower leg
## 44565                                                                                                                                                                                             EE tripped over a root falling on all fours injury (r) shoulder, knees
## 44566                                                                                                                                                                                                                                             EE tripped over a rug.
## 44567                                                                                                                                                                                              EE tripped over a rug... Cut lip, head/forehead right side, left knee
## 44568                                                                                                                                                                                                                                   EE tripped over a short stool ()
## 44569                                                                                                                                                                               EE tripped over a small child's chair and fell. She landed on her left side and back
## 44570                                                                                                                                   EE tripped over a small fallen tree as the dog waspulling him & right ankle folded over to the side making a loud cracking sound
## 44571                                                                                                                                                                                                                 EE tripped over a stack of brick and strained back
## 44572                                                                                                                                                                                                                          EE tripped over a stair at the stairwell.
## 44573                                                                                                                                                                                                                   EE tripped over a step falling on her right knee
## 44574                                                                                                                                                EE tripped over a step stoll on the floor and fell down on the floor. EE fell on left knee and side hit a chair leg
## 44575                                                                                                                                                                                                                        EE tripped over a step striking rt shoulder
## 44576                                                                                                                                                                                                             EE tripped over a student's cane & fell on both knees.
## 44577                                                                                                                                                EE tripped over a telephone cord and fell to the floor on both knees, hitting left rib cage area on corner of desk.
## 44578                                                                                                                                                                                                              EE tripped over a traffic cone and landed on buttocks
## 44579                                                                                                                                                                                                EE tripped over a transformer.... Injured his left knee and forearm
## 44580                                                                                                                                                                                                                   EE tripped over a trash can and injured his knee
## 44581                                                                                                                                                                                                       EE tripped over a trashcan and fell injuring her right elbow
## 44582                                                                                                                                                                                                             EE tripped over a tree limb and twisted his left knee.
## 44583                                                                                                                      EE tripped over a tree stump and fell on arm/shoulder as he was running to help resident indanger--tripped over stump in dark/unfamiliar area
## 44584                                                                                                                                                                                                                     EE tripped over a tub sitting on the floor. ()
## 44585                                                                                                                                                                           EE tripped over a welder and while trying to keep from falling he injured his lower back
## 44586                                                                                                                                                      EE tripped over a wheelchair and fell on floor. Eeseen at wayne memorial er, did not Miss Anytime f rom work.
## 44587                                                                                                                                                                                        EE tripped over a wooden t. V stand and fell, injuring r foot and left knee
## 44588                                                                                                                                                                             EE tripped over above ground spigot and fell on lt side-contusion to ribs and lt wrist
## 44589                                                                                                                                                                                                                        EE tripped over air copressor hose and fell
## 44590                                                                                                                                                                                                           EE tripped over an animal kindness cage injured rt ankle
## 44591                                                                                                                                                                                            EE tripped over an ash tray left forearm, left shin, l elbow, right hip
## 44592                                                                                                                                                                                                                                 EE tripped over an electrical cord
## 44593                                                                                                                                    EE tripped over an extension cord strung across doorway by an off-campus contractor. Right knee, left wrist, forearm and elbow.
## 44594                                                                                                                                                                                                      EE tripped over an ottoman in the lobby of injuring his back,
## 44595                                                                                                                                                   EE tripped over and went head first from landing to the bottom of the steps. Injured ankle, hand, fingers, head.
## 44596                                                                                                                                                                                                                     EE tripped over ashtray and fell; hitting knee
## 44597                                                                                                                                                                                                               EE tripped over block in break area injury left foot
## 44598                                                                                                                                                                                                                        EE tripped over board walking in truck bed.
## 44599                                                                                                                                            EE tripped over books in floor, fell and landed onleft arm. Dislocted left elbow, fractured left elbow and chipped bone
## 44600                                                                                                                                                                                                                            EE tripped over box in floor, back sore
## 44601                                                                                                                                                                        EE tripped over box in stockroom and stumbled to catch self and hit head on side of desk ()
## 44602                                                                                                                                                                                                               EE tripped over box that was left in the aisle, fell
## 44603                                                                                                                                     EE tripped over box while exiting office ( was carrying equipment), hit floor on elbows, knees, and lacerated lt 4th finger ()
## 44604                                                                                                                                                                                                                                           EE tripped over boxes ()
## 44605                                                                                                                                                                                                  EE tripped over boxes being packed for moving, bruised right foot
## 44606                                                                                                                                                                                                  EE tripped over boxes in storage room and fell landing face down.
## 44607                                                                                                                                EE tripped over brick at front entrance injury head, chest, face shoulder, knee cell 580 0763** ******* shirley poland ******* 7909
## 44608                                                                                                                                                                            EE tripped over bricks.... Injured both knees, hands, right hip, and right side of face
## 44609                                                                                                                                                    EE tripped over can wash area while pulling a cart up the stairs. EE twisted his right ankle under the cart. ()
## 44610                                                                                                                                                                                                             EE tripped over canoe floor display and fell to floor.
## 44611                                                                                                                                                                                                          EE tripped over carpet and strained back catching himself
## 44612                                                                                                                                                                                  EE tripped over carpet at entrance of building. Contusion to both knees & rt hip.
## 44613                                                                                                                                                                                                                   EE tripped over carpet in hallway during lunch..
## 44614                                                                                                                                                                   EE tripped over cart in the kitchen, fell on her knee and tried to catch her fall with her hands
## 44615                                                                                                                                                                                              EE tripped over cement block and fell causing abrasions to both knees
## 44616                                                                                                                                                                                           EE tripped over cement block in parking lot, fell forward, twisted back.
## 44617                                                                                                                                                                                                 EE tripped over chair & fell to floor on wrist, armshoulder& face.
## 44618                                                                                                                                                                   EE tripped over chair (client placed in front of bedroom door) and fell; pain in left hand/wrist
## 44619                                                                                                                                                                                                           EE tripped over chair and struck rt elbow on counter top
## 44620                                                                                                                                                                     EE tripped over chair assisting student at the window. Contusions and swelling on arm and legs
## 44621                                                                                                                                         EE tripped over chair beside computer. Did not fall but felt pull in upper right leg and buttock. Pain in right knee also.
## 44622                                                                                                                                                                                      EE tripped over chair leg and fell injuring lower back, hip, thigh, and wrist
## 44623                                                                                                                                                                                                                                EE tripped over chair leg and fell.
## 44624                                                                                                                                                                                                                  EE tripped over client's feet and fell on rt knee
## 44625                                                                                                                                                                                      EE tripped over client's leg trying to intervene between two clients fighting
## 44626                                                                                                                                                                            EE tripped over client's rocking chair adaptive piece and fell injuring rt arm and back
## 44627                                                                                                                                                                                              EE tripped over computer cord proctector and twisted her right ankle.
## 44628                                                                                                                                                                       EE tripped over computer cord. Sprained right ankle/foot. Ankle/foot are bruised and swollen
## 44629                                                                                                                                                                           EE tripped over concret walk when backing up whilewashing vehicle-dislocated rt shoulder
## 44630                                                                                                                                                                                   EE tripped over concrete barrier and fell on face taken to hospital by ambulance
## 44631                                                                                                                                                                   EE tripped over concrete barrier landing on right hand, wrist, both knees, rt foot & shoulder ()
## 44632                                                                                                                                                                                                                  EE tripped over concrete parking stop and fell ()
## 44633                                                                                                                                                                                                                             EE tripped over construction material.
## 44634                                                                                                                                                                        EE tripped over cord and fell down stairs strained rt wrist, contusion knee, elbow, rt hand
## 44635                                                                                                                                                                                         EE tripped over cord lying in the middle of the floor strained lower back.
## 44636                                                                                                                                                                                                     EE tripped over corner pile of cardboard and fell on left arm.
## 44637                                                                                                                                                                                   EE tripped over crack in the sidewalk; injured right knee and palm of both hands
## 44638                                                                                                                                                EE tripped over cracked floor as she walked into the bathroom. EE fell on knee that had been operated on last year.
## 44639                                                                                                                                                                                                  EE tripped over curb in parking lot and fell on entire right side
## 44640                                                                                                                                                                                                                                       EE tripped over curb stop ()
## 44641                                                                                                                                                                EE tripped over curb when getting into van and injured left hand, rt knee and big toe on left foot.
## 44642                                                                                                                                                                                                                  EE tripped over curb; injured lower lip; stitches
## 44643                                                                                                                                                                                                                  EE tripped over dirt clod and strained lower back
## 44644                                                                                                                                                                                                                                           EE tripped over door jam
## 44645                                                                                                                                                                                            EE tripped over door mat in front of building whenleaving the building.
## 44646                                                                                                                                EE tripped over door mat while existing door at the elliot hall student center fell forward onto left side fracturing left shoulder
## 44647                                                                                                                                                                                      EE tripped over door stop and fell to floor. Landed on right shoulder and hip
## 44648                                                                                                                                                                                                                                    EE tripped over door stopper ()
## 44649                                                                                                                                                                    EE tripped over egg crate and fell into the ice machine and bruised arm and hit head on rt side
## 44650                                                                                                                                                                                    EE tripped over electrical outlet in the floor, fell and hit wall with shoulder
## 44651                                                                                                                                                                                                                       EE tripped over empty boxes in storage room.
## 44652                                                                                                                                                                                                                                       EE tripped over equipment ()
## 44653                                                                                                                                                                      EE tripped over floor mat head hit on wooden desk. Tired to break fall with her right hand ()
## 44654                                                                                                                                                EE tripped over flower tray & sustained cracked tooth, broken glasses, scrapes, facial abrasions andsprained thumb.
## 44655                                                                                                                                       EE tripped over foot pedal of another clients wheelchair and fell into serving care hitting abdomen. EE is 7 months pregnant
## 44656                                                                                                                                                                EE tripped over foot rest of wheelchair and hit head on floor. Head contusion, possible concussion.
## 44657                                                                                                                                                                                            EE tripped over foot stool getting out of chair and sprained left ankle
## 44658                                                                                                                                                                                              EE tripped over footrest of empty wheelchair and fell onot left side.
## 44659                                                                                                                                                                           EE tripped over gap in sidewalk causing her to fall injurying both knees, chin and mouth
## 44660                                                                                                                                                                          EE tripped over garden hose on sidewalk-fell to ground injuring rt shoulder, arm and knee
## 44661                                                                                                                                                                                                       EE tripped over handbag and fell on floor. Injuredleft knee.
## 44662                                                                                                                                                                                                EE tripped over her feet and fel on her hand and injured her wrist.
## 44663                                                                                                                                                                                     EE tripped over her own feet and fell to the floorinjuring her knees, and neck
## 44664                                                                                                                                                                                                            EE tripped over hydraulic lift arm and fell on left arm
## 44665                                                                                                                                                                                                      EE tripped over inmate's feet causing her to strike right leg
## 44666                                                                                                                                                                                                         EE tripped over landscape brick and fell-EE is on coumadin
## 44667                                                                                                                                                             EE tripped over landscape timber that borders walkway she fell on rt knee & braced her fall w/rt hand.
## 44668                                                                                                                                                                                        EE tripped over landscape timbers and fell on both knees injuring left knee
## 44669                                                                                                                                                                                                                     EE tripped over light and fell injuring rt leg
## 44670                                                                                                                                                                                         EE tripped over loose tile in floor & fell on her head & back of rt elbow.
## 44671                                                                                                                                                                                                  EE tripped over mail bag and fell injuring her wrist, arm, & leg.
## 44672                                                                                                                                                                                                  EE tripped over mail carrier w/ schedules sitting at end of table
## 44673                                                                                                                                                                                                                EE tripped over mat and fell. Fell on left shoulder
## 44674                                                                                                                                                                                           EE tripped over mat at the door and fell injuring neck, rt hand and arm.
## 44675                                                                                                                                                                                                                        EE tripped over mat fell, right arm and leg
## 44676                                                                                                                                                         EE tripped over mat that was in front of dining hall. Injury to right side, neck, back, hip, foot and knee
## 44677                                                                                                                                                                                                      EE tripped over materials falling face forward to the ground.
## 44678                                                                                                                                                                                                 EE tripped over metal door frame lip and caught self with rt hand.
## 44679                                                                                                                                                                                                                                       EE tripped over metal object
## 44680                                                                                                                                                                                                          EE tripped over metal piece at door and chipped her tooth
## 44681                                                                                                                                                                                                EE tripped over metal that was on floor and fell bruising left knee
## 44682                                                                                                                                                                                                      EE tripped over mixing bowl wheels and hit his right elbow ()
## 44683                                                                                                                                                                                   EE tripped over mop bucket landing on her lt knee striking back of head and back
## 44684                                                                                                                                                                                           EE tripped over mop bucket that had been sitting in area bruised rt foot
## 44685                                                                                                                                                                                                              EE tripped over object on floor injurying his rt knee
## 44686                                                                                                                                                                                                               EE tripped over office chair while packing boxes. ()
## 44687                                                                                                                                                                        EE tripped over open desk drawer and fell backwards bruising rt elbow, rt hip and left calf
## 44688                                                                                                                                                                 EE tripped over own foot due to weakness from a recent illness, falling on shoulder, elbow, wrist.
## 44689                                                                                                                                                                EE tripped over own two feet on ward hallway during bed checks. Fell to floor reinjuring left knee.
## 44690                                                                                                                                                                                                         EE tripped over parking space bumper, injuring right knee.
## 44691                                                                                                                                                                                                                     EE tripped over phone cord and fell on rt hand
## 44692                                                                                                                                                                                    EE tripped over phone cord. EE was walking back todesk to view computer screen.
## 44693                                                                                                                                                                                  EE tripped over pile of conduit on floor landing on rt side injuring upper rt leg
## 44694                                                                                                                                                          EE tripped over pipe extending from air conditioning straining rt hand, aand bruising rt shoulder and hip
## 44695                                                                                                                                                                                                   EE tripped over planter. She fell, hitting her head on pavement.
## 44696                                                                                                                                                          EE tripped over power cord while walking with docket book and fell forward-contusions to rt hand and knee
## 44697                                                                                                                                                                                                                          EE tripped over power cord; injured knees
## 44698                                                                                                                                                               EE tripped over rack blocking doorway while removing the trash from off. Bruising her arm, leg, back
## 44699                                                                                                                                                                                                     EE tripped over raised brick walking from mccoll parking deck.
## 44700                                                                                                                            EE tripped over raised piece of concrete in sidewalk and fell. Multiple consuions/abrasions left wrist, right wrist, arm and right knee
## 44701                                                                                                                                                                                            EE tripped over resident feeding tube cord daughter phone- 252 218 4219
## 44702                                                                                                                                                                                                         EE tripped over rock and fell injuring knees face and arms
## 44703                                                                                                                                                                                                   EE tripped over rock that was protruding from crack in concrete.
## 44704                                                                                                                                                        EE tripped over rocks while walking off steps and fell on rt side-bruised rt knee, hip, elbow and upper arm
## 44705                                                                                                                                                      EE tripped over roller leg of chair. She put her hand down to break her fall and possibly fracturedher wrist.
## 44706                                                                                                                                                  EE tripped over root of tree-falling into road- hitting pavement. EE landed on left shoulder, elbow, hand and hip
## 44707                                                                                                                                  EE tripped over rug and turned her right foot, pulled knee. Later, EE was pulling bathroom door open and twisted right knee again
## 44708                                                                                                                     EE tripped over rug at the post office in raeford. Reported to postmaster and she took pictures. Injured knee, hand. W 910 875 4532 sx 4/27/05
## 44709                                                                                                                                                                                 EE tripped over rug while redirecting a consumer and struck left knee on the floor
## 44710                                                                                                                                                                                                                   EE tripped over short stool. Injured both knees.
## 44711                                                                                                                                                                                   EE tripped over small brickwall while taking out the trash and injured left foot
## 44712                                                                                                                                                                                                   EE tripped over some bolts that were sticking up from the cement
## 44713                                                                                                                                         EE tripped over some limbs and while bracing to keep from falling a stick punctured his rt hand when he fell to the ground
## 44714                                                                                                                                                                                                           EE tripped over some steps and fell injuring his rt knee
## 44715                                                                                                                                                     EE tripped over some steps and fell while cleaninga classroom in physical science bld - lumbar strain to back.
## 44716                                                                                                                                                     EE tripped over something while walking by a couchthat was to be removed and fell face down hitting tile floor
## 44717                                                                                                                                                                                     EE tripped over speed bump and fell to pavement... Right shoulder... Left knee
## 44718                                                                                                                                                                                                                       EE tripped over speed bump in parking lot ()
## 44719                                                                                                                                                                            EE tripped over stand that support room divider injury to lt hand arm shoulder and side
## 44720                                                                                                                                                                                                                               EE tripped over stationary fork lift
## 44721                                                                                                                                                                                                                       EE tripped over step stool in clutterd room.
## 44722                                                                                                                                                                      EE tripped over steps leaving johnsonville elem school and fell hitting hand, chest and knees
## 44723                                                                                                                                                                                             EE tripped over stepstool injuring rt knee and heel, rt hand and back.
## 44724                                                                                                                                                                                                 EE tripped over stomp on sidewalk and fell into driveway entrance.
## 44725                                                                                                                                                                             EE tripped over surge protector & fell on right shoulder. Numbness in rt shoulder/neck
## 44726                                                                                                                                                                                                        EE tripped over telephone cord and landed on her left knee.
## 44727                                                                                                                                                                                                                 EE tripped over telephone cord and landed on knees
## 44728                                                                                                                                EE tripped over telephone cord in front of desk inschool office and fell on the floor on her lt sidetried to catch self w/ lt hand.
## 44729                                                                                                                                                                                                                  EE tripped over telephone cord injuring lt elbow.
## 44730                                                                                                                                                                                                                 EE tripped over telephone cord injurying her elbow
## 44731                                                                                                                                                                                          EE tripped over telephone cord-injury to spinal cord-fractured vertabrae.
## 44732                                                                                                                                                                               EE tripped over telephone line to phone er thus falling on left knee and right foot.
## 44733                                                                                                                                                                 EE tripped over telephone line to phone in emergency room thus falling on left knee and right foot
## 44734                                                                                                                                                                  EE tripped over the base of the fence & fell face first into street narrowly missing oncoming car
## 44735                                                                                                             EE tripped over the curb in carolina parking lot. She was on her way to interview dinner meeting. Eehurt lt side of body/face/knee/shoulder/bk glasses
## 44736                                                                                                                                                                                                                  EE tripped over the curb landing on her left knee
## 44737                                                                                                                                                                                           EE tripped over the edge of curbing and sidewalk and hyperextended knee.
## 44738                                                                                                                                                                             EE tripped over the foot of mover---injuring right foot and left thigh (fell to floor)
## 44739                                                                                                                                                                                      EE tripped over the handle of the flower cart and fell into fellow EE's arms.
## 44740                                                                                                                                                  EE tripped over the legs of a wheelchair in the hall of the medical building. Pain in the left wrist and lt knee.
## 44741                                                                                                                                                                                                                   EE tripped over the projector cord... Left wrist
## 44742                                                                                                                                                                       EE tripped over threshold at entrance of restroom floor and fell hurting left wrist and hand
## 44743                                                                                                                                                                      EE tripped over throw rug and fell - extended hands to catch self and injured lt small finger
## 44744                                                                                                                                                                                  EE tripped over trash can in supply room injuringrt and left shoulder and rt knee
## 44745                                                                                                                                                                              EE tripped over two boxes that were left in the reception area. She fell to the floor
## 44746                                                                                                                   EE tripped over two timbers stacked in the storagebay while exiting car. He grabbed the steering wheel to keep from fall and strain his low back
## 44747                                                                                                                                                                                                                                    EE tripped over uneven concrete
## 44748                                                                                                                                                  EE tripped over uneven ground while on a walk with students to park-fell face down-injured nose jarred whole body
## 44749                                                                                                                                                                                           EE tripped over uneven sidewalk that is part of the campus walking loop.
## 44750                                                                                                                                                                                                                                EE tripped over uneven sidewalk. ()
## 44751                                                                                                                                                     EE tripped over unlevel are in doorway and fell hitting r side of head causing injury above eye and r shoulder
## 44752                                                                                                                                                                                                                        EE tripped over vacuum cord... Hip and calf
## 44753                                                                                                                                                                                                      EE tripped over water hose in aquarium bldg and twisted ankle
## 44754                                                                                                                                                                                                              EE tripped over water meter lid... Bruised right knee
## 44755                                                                                                                                                                                                                 EE tripped over weight bench and bruised left shin
## 44756                                                                                                                                                                                     EE tripped over wheel on cart, stumbled, hit chart rack with upper left arm ()
## 44757                                                                                                                                                                EE tripped over wheelchair foot rest and fell on left knee and bumped head on frame around commode.
## 44758                                                                                                                                                                                               EE tripped over wheelchair footing fell forward landing on left knee
## 44759                                                                                                                                                                      EE tripped over wide metal plate bolted to floor scrape leg, knee, hip. Left shoulder tender.
## 44760                                                                                                                                                                                                          EE tripped over wire basket of fileds in her workspace ()
## 44761                                                                                                                                                                EE tripped over wires and fell through ceiling in the attic - scraped left shin and left lower back
## 44762                                                                                                                                                                                                                       EE tripped over wires lying across the floor
## 44763                                                                                                                                                                                                       EE tripped over wires on the floor and injured left knee. ()
## 44764                                                                                                                                                                                                                                            EE tripped up stairs ()
## 44765                                                                                                                                                                   EE tripped walking out of the gym when heel of shoe got caught in doorframe. Injuring hand/knee.
## 44766                                                                                                                                                  EE tripped walking up the steps and used hand to stop face from hitting steps causing pain in hand neck and wrist
## 44767                                                                                                                    EE tripped when entering bathroom over a box. Gashed left big toe on something & landed on left knee. Laceration left big toe & sore left knee.
## 44768                                                                                                                                                                         EE tripped when stepped up from curb to stairs foot slipped & she fell injuring right knee
## 44769                                                                                                                                                                                                        EE tripped when walking across speed bump (foot got caught)
## 44770                                                                                                                                                                            EE tripped while going ascending stairs and fell on right shoulder. Dislocated shoulder
## 44771                                                                                                                                               EE tripped while opening door, door flung back at EE after being deflected by door stop, hitting EE on the left hand
## 44772                                                                                                                                                                                                         EE tripped while pruning shrubs and cut left middle finger
## 44773                                                                                                                                                                                                            EE tripped while steppin off curb and sprained rt ankle
## 44774                                                                                                                                                                                     EE tripped while stepping off of fire truck and fell on rt elbow fracturing it
## 44775                                                                                                                                                                                   EE tripped while walking across sidewalk causing scrape injury to left great toe
## 44776                                                                                                                                                                                       EE tripped while walking backwards and broke his fall with his right hand ()
## 44777                                                                                                                                                                                                                    EE tripped while walking down courthouse steps.
## 44778                                                                                                                                                                                                                                 EE tripped while walking down hall
## 44779                                                                                                                                                                                                                EE tripped while walking. Injured leg, knee, elbow.
## 44780                                                                                                                                                                            EE tripped, missing a step and fell down on both knees. Bruising and bleeding to knees.
## 44781                                                                                                                                                                                     EE tripped, when walking through a natural area covered with pine straw. Ribs.
## 44782                                                      EE tripped/slipped/stumbled off of raised concrete platform surround parking deck ticket booth. Was exiting booth to remove a sign outside booth. Fell forward onto her knees and hands. Lt elbow & rt ankle.
## 44783                                                                                                                                                              EE tripped/twisted ankle while walking down the courthouse steps, when leaving work. Rt ankle broken.
## 44784                                                                                                                                                                                      EE tripping and waxing floors-slipped and fell on rt knee and back in process
## 44785                                                                                                                                      EE trnd off power and checked meter-got brush to clean breaker-when brush touched breaker an electrical arc burned EE's eyes.
## 44786                                                                                                                                                                                     EE truck door sprained back while EE exiting vehicle injuring finger and wrist
## 44787                                                                                                                                                                                                  EE tryiing to keep client from falling, pain in shoulder and back
## 44788                                                                                                                               EE trying protecting device on pt chair. EE bend- ing over - when she raised up hit back of head on cabinet. - injured back of neck.
## 44789                                                                                                                                                         EE trying pull student away from another staff member, student and EE fell backwards onto the students bed
## 44790                                                                                                                                                                         EE trying ro remove motor from pump when slipped and hit head on frame of feed water tank.
## 44791                                                                                                                            EE trying subdue an inmate & lost balance strikingshoulder on toilet. Inmate struck EE in jaw & neckwith hands, rt finger also bruised.
## 44792                                                                                                                                                                                          EE trying to adjust placement of wall during constr. Class with left foot
## 44793                                                                                                                                                                      EE trying to answer phone and slipped and fell on her lt elbow, resulting in broken lt elbow.
## 44794                                                                                                                                                                    EE trying to apprehend student. Student picked updirt & threw in EE face, getting sand in eyes.
## 44795                                                                                                               EE trying to arrest an offender. Offended resistedarrest and assulted him by kicking him, injuring his arms and hands, resulting in bruised and cuts
## 44796                                                                                                                                        EE trying to assist & help res. To take shower, res turned around to attack other staff by pushing table into EE stomach ()
## 44797                                                                                                                                                                                           EE trying to assist agitated client who grabbed and jerked EE backwards.
## 44798                                                                                                                                                                                           EE trying to assist client who became aggressive and hit EE in the neck.
## 44799                                                                                                                                                                                                    EE trying to assist client-client hit EE in the mouth and nose.
## 44800                                                                                                                 EE trying to assist patient to hall-patient took swing at fist at hct, patient placed a pic hold and patient struggled causing EE to fall on knee.
## 44801                                                                                                                                             EE trying to assist pt from falling out of wheelchair to floor, squatted down to help pt, hit left knee on wheelchair.
## 44802                                                                                                                                            EE trying to assist staff with calming patient down. Patient bent EE's wrist back trying to continue to fight staff. ()
## 44803                                                                                                                EE trying to avoid being in accident with other vehicles & hit the bank. 2 broken ribs, sprain rt knee, cuts on shoulder, rt waist, lt arm, & nose.
## 44804                                                                                                                                EE trying to avoid suspect's wrecked vehicle & drove his car off rt side of road-went down 50 ft drop into creek - sore rt shoulder
## 44805                                                                                                                                                                                                 EE trying to block basket client threw in process twisted left leg
## 44806                                                                                                                                                              EE trying to break up altercation between studentsee strained back. Left elbow, bruise on right calf.
## 44807                                                                                                                                                        EE trying to break up fight between inmates & was struck on left temple causing skin to break and bleeding.
## 44808                                                                                                                                                  EE trying to break up fight between patients & fell over a patient fell to floor hitting lt shoulder pain in neck
## 44809                                                                                                                  EE trying to brush client's hair-put hand under client's chin to hold head up and client pushed back causing wheelchair to fall back on EE's foot
## 44810                                                                                                                                                                                          EE trying to calm client down-client became upset and hit EE in the face.
## 44811                                                                                                                                                                      EE trying to calm client from attacking another client, client then pushed EE in the face. ()
## 44812                                                                                                                                                                        EE trying to calm irrate client by taking down to the floor felt pain in neck and shoulder.
## 44813                                                                                                                                                                   EE trying to carry too many boxes at once while unloading mail van and strained left wrist/hand.
## 44814                                                                                                                                                                    EE trying to catch an individual that was falling & EE tried to catch them striking hand on bed
## 44815                                                                                                                                                                                    EE trying to catch client that ran out and hit rt hand on entertainment center.
## 44816                                                                                                                                                                                               EE trying to catch falling resident felt pain in back strain to back
## 44817                                                                                                                                                  EE trying to chng clients diaper-client became very outraged at EE, started biting, kicking, fighting, scratching
## 44818                                                                                                                 EE trying to close & lock gate when sliding bar became stuck. Pulled up on bar it freed itself, pinching lt thumb. Puncture with bruising lt thumb
## 44819                                                                                                                                                                                               EE trying to close a window that was stuck and strained right elbow.
## 44820                                                                                                                                                                                             EE trying to close and lock door, arm got caught and pinched right arm
## 44821                                                                                                                                                   EE trying to close door that wouldn't shut-EE tried using lt shoulder to shut door causing injurto left shoulder
## 44822                                                                                                                                                                         EE trying to close window. Sections of window slidsmashing both hand between window frames
## 44823                                                                                                                                                                       EE trying to control aggressive client who choked EE both went to floor EE injured rt ankle.
## 44824                                                                                                                                                         EE trying to control aggressive client-using pic hold and lost balance and fell on floor hitting rt elbow.
## 44825                                                                                                                                                      EE trying to control inmate felt sharp pain in rt shoulder and right arm, grabbed inmate during strglin fight
## 44826                                                                                                                                                                 EE trying to direct client to quiet room when client became combatitive and pulled EE's left hand.
## 44827                                                                                                                 EE trying to dry resident who was resistive. One day later felt stiff neck and tight muscles in back. Two days later back pain trying to bend over
## 44828                                                                                                                                     EE trying to extinguish fire during training wind shifted directions causing lt burns of rt hand & lower face rt side of head.
## 44829                                                                                                                                                                                 EE trying to fix stapler & accidently hit stapler. Staple went through left thumb.
## 44830                                                                                                                                                            EE trying to free piece of metal that was caught on something. Piece of metal slipped and cut righthand
## 44831                                                                                                                                 EE trying to gain contol of inmate when he kicked her several times in the shin and lower lt back inmate pushed her into the wall.
## 44832                                                                                                                                                                                           EE trying to get I/m cuffed and secured I/m struck and hit EE in face ()
## 44833                                                                                                                                                                                     EE trying to get aggressive client off another client and strain left shoulder
## 44834                                                                                                                                                                                 EE trying to get client to change clothes-started kicking and hitting EE in chest.
## 44835                                                                                                                                                    EE trying to get client to put on cloths client became upset and pushed bed from wall, and hit EE left big toe.
## 44836                                                                                                                                                                                          EE trying to get client under control and client twisted EE's left wrist.
## 44837                                                                                                                                                       EE trying to get client under control-client dropped to the floor hitting EE's rt arm on the arm of a chair.
## 44838                                                                                                                                                              EE trying to get hot buggy thru door in day room of unit when she caught lt arm between door & buggy.
## 44839                                                                                                                                                                                  EE trying to get metal out of clients hand and client pushed table into EE's leg.
## 44840                                                                                                                                                                                                     EE trying to get pipe out of the way and hit hand with hammer,
## 44841                                                                                                                                                                                       EE trying to get pt to take meds when pt jumped EE and they fell to floor ()
## 44842                                                                                                                       EE trying to get thru locked door btwn elevator and admin, EE dropped agenda tried to pick up it was caught, EE pulled and felt pain in back
## 44843                                                                                                                            EE trying to grab an agitated patient to place in manual restraints. EE fell to the floor landing onright elbow. Bruise to right elbow.
## 44844                                                                                                                                                                            EE trying to grab door jam when student slammed the door shut, cutting EE right finger.
## 44845                                                                                                                                                                             EE trying to help client out of bathtub-client stumble and EE caught EE injuring back.
## 44846                                                                                                                                                                           EE trying to help patient put on her shoes when patient became agitated & bit EE finger.
## 44847                                                                                                                                                           EE trying to help restrain & hold resident till more help, EE got her right hand-thumb forefinger jammed
## 44848                                                                                                                                      EE trying to hold down a student having violent seizure-EE fell several times & student fell on her leg-foot out-chest & face
## 44849                                                                                                                                                                   EE trying to hook up trailer hitch jerked on handlto position it onto ball & strained lower back
## 44850                                                                                                                                                                               EE trying to intervene with agitated patient & shehit patient in face. Poked lt eye.
## 44851                                                                                                                                                                                          EE trying to keep client from jerking and pulled left shoulder in process
## 44852                                                                                                                                                                       EE trying to keep cow from going down in aquacow tank when left arm got caught between both.
## 44853                                                                                                                               EE trying to keep keys in the file cabinet lock from getting caught in drawer. Closed file drawer on finger. Rt hand - index finger.
## 44854                                                                                                                                                                                                       EE trying to keep pt from hitting him, somehow twisted knee.
## 44855                                                                                                                                                            EE trying to lift an obese patient off floor when she felt pain in lt wrist radiating to left shoulder.
## 44856                                                                                                                                         EE trying to lift his partner during unarmed self defense training when rt knee slipped he injured rt knee. Sprain rt knee
## 44857                                                                                                                                                                                EE trying to locate a book when metal pole againstwall fell and hit EE in the head.
## 44858                                                                                                                                                                                          EE trying to loose jammed windows and broke the glass which cut left hand
## 44859                                                                                                                             EE trying to loosen a shutter on lighting instru- ment. Cut index finger his left hand with a cresent wrench. Cut index finger lt hand
## 44860                                                                                                                                    EE trying to move gate and post slipped downward &trapped lt thumb between latch & bar. It took a piece of flesh from the thumb
## 44861                                                                                                                                                                                                                      EE trying to muzzle dog it bit her in forearm
## 44862                                                                                                                                                                                     EE trying to open a stuck door-when door suddenly open and hit EE in forehead.
## 44863                                                                                                                                                                     EE trying to open a stuck sliding window when the windown became unjammed it caught EE's hand.
## 44864                                                                                                                                                                                              EE trying to open cubicle doors, hard to open strained right shoulder
## 44865                                                                                                                    EE trying to open door to end admin. Bldg. Then trying to out of second door & had a hard pain go thru back & chest when pushing on second door
## 44866                                                                                                                                                                     EE trying to open dormintory door and sprained rt thumb because door was extremly hard to turn
## 44867                                                                                                                                                                                                   EE trying to open stripper bucket, stripped splashed in left eye
## 44868                                                                                                                                                                                   EE trying to patient off of other staff member & somehow scratched right hand ()
## 44869                                                                                                                                        EE trying to physically control a student, was punched & kicked. Injured knees, back, shoulders, upper body, legs, abdomen.
## 44870                                                                                                                                                                                      EE trying to place cleint in seclusion and restraint and was hit in the nose.
## 44871                                                                                                                                                                                                             EE trying to place client on strectcher and pulledback
## 44872                                                                                                                                                                                                                             EE trying to place juvinile in custody
## 44873                                                                                                                                                                                               EE trying to prevent client from falling & client & EE fell on floor
## 44874                                                                                                                                                 EE trying to prevent client from falling face first to floor & both fell to floor, EE struck her head against wall
## 44875                                                                                                                                 EE trying to prevent client from falling. Floor was wet & had oil on it, EE fell on floor on top of client, hurting right shoulder
## 44876                                                                                                                                                                     EE trying to prevent client from hurting self in shower when client scratched EE on rt forarm.
## 44877                                                                                                                                                                                                                          EE trying to prevent fall. Lumbar sprain.
## 44878                                                                                                             EE trying to prevent injury to client who was in abehavior. Client kicking, banging head, biting. EE on floor with client off and on for about 45 min.
## 44879                                                                                                                                                                    EE trying to prevent resident from falling to the floor, had pain in right lower & middle back.
## 44880                                                                                                                                              EE trying to prevent student from falling & sprained his finger when he reached for him. Sprain first finger lft hand
## 44881                                                                                                                                                                                        EE trying to prevent students from injuring them- selves or other students.
## 44882                                                                                                                                                  EE trying to prevent unstable client from falling. Both fell to floot, EE struck elbow against a stationary bike.
## 44883                                                                                                                                                                                                   EE trying to protect pt who was falling, sprain to back and neck
## 44884                                                                                                                                                                   EE trying to pull door shut that had expanded. Inhis attempt he claims to have strained his back
## 44885                                                                                                                                                                                              EE trying to pull up recliner into a regular position and pulled back
## 44886                                                                                                                                                                                                          EE trying to push open a locked door and sprained rt hand
## 44887                                                                                                                                                EE trying to put client in arm splints-client kicking at EE-both ended up on the floor-EE noted pain in left should
## 44888                                                                                                                                                                 EE trying to put client in pic hold while cleint kicking and fighting EE causing EE to twist back.
## 44889                                                                                                                                                EE trying to put client in therapeotic hold and client grabbed EE by shirt collar and pushed EE against metal door.
## 44890                                                                                                                                                                                EE trying to put drain insert back on bathing tub the clamp on hose cut right thumb
## 44891                                                                                                                                                     EE trying to put milk in lower compartment of refrigerator. When he stood up he hit his right hip on the sink.
## 44892                                                                                                                        EE trying to put on client's clothes; client started resisting; client pulling back causing pain in EE's shoulders, neck and upper back. ()
## 44893                                                                                                                                     EE trying to put on client's coat-EE leaned against client and both fell causing EE to hurt elbow, rt shoulder, knee and back.
## 44894                                                                                                                                                                 EE trying to put out fire and came in contact withsome of the chemicals used in the extinguishere.
## 44895                                                                                                                                                 EE trying to put patient in restraints, patient began resisting, fell to floor pulling EE to floor, straining back
## 44896                                                                                                                          EE trying to put resident helmet on, EE fell against wall, caught hand between wall and helmet. Blister on rt thumb area, slight swelling
## 44897                                                                                                                                                                                      EE trying to recuff I/m and I/m sung on him and hit the crown area of head ()
## 44898                                                                                                                                                                    EE trying to redirect an aggressive client-client started hitting, pushing and screaming at EE.
## 44899                                                                                                                                                                                                   EE trying to redirect client and EE scratched on rt arm at wrist
## 44900                                                                                                                                                                   EE trying to redirect client from dining room - when client grabbed EE right wrist & twisted it.
## 44901                                                                                                                                                                                                EE trying to redirect combative cleint who kicked EE in left tempal
## 44902                                                                                                                   EE trying to redirect patient after running out front door patient began to run down stair EE try to grab pt & had to catch herself from falling
## 44903                                                                                                                                                   EE trying to redirect resident to calm down the resident began throwing objects which hit EE in upper left thigh
## 44904                                                                                                                                                   EE trying to remove a cap from a broken glass charcoal tube--EE hand slipped and she cut her thumb on left hand.
## 44905                                                                                                                                      EE trying to remove box of tranfer bags from stackof boxes, stack of boxes fell on EE, bruised lower legs and side of stomach
## 44906                                                                                                                                                            EE trying to remove clip from her radio & receivedsmall cut to her left hand between thumb & forefinger
## 44907                                                                                                                                                  EE trying to reposition client - client kept sliding down in wheelchair. EE noted a sharp pain in right shoulder.
## 44908                                                                                                                                                                 EE trying to repostion a client in wheelchair and bent over and felt something pull in lower back.
## 44909                                                                                                                                                       EE trying to restrain a combative juvenile they fell on chair then on to the floor injuring EE's lt shoulder
## 44910                                                                                                                                                                                           EE trying to restrain aggressive cleint who grabbed arm and broke watch.
## 44911                                                                                                                                                           EE trying to restrain aggressive student & fell to floor on both knees. Soft tissue injury to both knees
## 44912                                                                                                                                                         EE trying to restrain agitated pt, pt starting fighting staff, both fell to ground landing on staff's arm.
## 44913                                                                                                                                                                                             EE trying to restrain an inmate, the inmate kicked her lower left leg.
## 44914                                                                                                                                                                                                              EE trying to restrain client and strained lower back.
## 44915                                                                                                                                                                                                                     EE trying to restrain client bite on right arm
## 44916                                                                                                                                                                                          EE trying to restrain client that was assaultive and was hit in the head.
## 44917                                                                                                                                              EE trying to restrain client, client snatched fromee, jumping up & down causing arm to extend highercaused sharp pain
## 44918                                                                                                                                             EE trying to restrain combative juvenile injured left knee and right shoulder. Clmt also has open inj to left shoulder
## 44919                                                                                                                                                                                             EE trying to restrain fighting students when student struck EE in face
## 44920                                                                                                                                                                                        EE trying to restrain inmate and was scratched by inmate on her rt forearm.
## 44921                                                                                                                           EE trying to restrain inmate from assaulting another inmate-inmate taken to floor and legs cuffed EE's legs causing EE to fall to floor.
## 44922                                                                                                                           EE trying to restrain inmate that was assaulting another officer. The officer assaulted him. Cut rtear, contusions back of head and neck
## 44923                                                                                                                                                              EE trying to restrain inmate who was having a seizure when she received small scratch to lower rt arm
## 44924                                                                                                                                                                          EE trying to restrain student who was struggling during a scuffle. Pulled muscle in back.
## 44925                                                                                                                                EE trying to restrian an out of control patiett patient kicked her several time in rt side of backmild rt sided thoracic contusion.
## 44926                                                                                                                                EE trying to return mental patient who was trying to excape. Patient became agressive and kicked eeinside lt thigh near groin area.
## 44927                                                                                                                                                      EE trying to roll chair to desk & chair would not roll, causing EE's left hand to be slammed into pen drawer.
## 44928                                                                                                                                                                          EE trying to seat herself on bus when she was stabbed by a bolt protruding from the frame
## 44929                                                                                                             EE trying to secure door on transfer bus. EE went on back of bus to restrain a violent & disruptive inmate. EE was kicked in upper chest & hit in face
## 44930                                                                                                                                                       EE trying to separate 2 pts that were fighting-holding one of the pt and fell to floor landing on both knees
## 44931                                                                                                                                                                                             EE trying to separate 3 pts when EE was hit in thewrist by a pt's fist
## 44932                                                                                                                           EE trying to separate two inmates from fighting pulled up one inmate-started to fall-EE turned around & landed on lt knee & twisted back
## 44933                                                                                                                                                                                                    EE trying to separate two patients when patient spit in EE face
## 44934                                                                                                                                               EE trying to seperate two students were fighting all three fell to floor, EE landed on her tailbonebruised tailbone.
## 44935                                                                                                                                                                                        EE trying to seperate two students who were fight-ing EE jammed his finger.
## 44936                                                                                                                                                                     EE trying to sit down in chair-chair rolled out from underneath her and she fell to the floor.
## 44937                                                                                                                                                              EE trying to sit in chair-chair rolled from under EE causing EE to fall hitting head, neck and wrists
## 44938                                                                                                                                                                EE trying to sterilized instrument - wasn't working properly when opened and liquid poured down leg
## 44939                                                                                                                                                                                                                   EE trying to stop a pt fight. Pt hit EE in back.
## 44940                                                                                                                                                    EE trying to stop client from attacking another client-when client threw EE against wall striking back of head.
## 44941                                                                                                                                                                      EE trying to stop inmate altercation-EE pushing inmate back caused strain to neck & shoulders
## 44942                                                                                                                                                                        EE trying to stop red rider from rolling down hillrolled over EE's heel causing great pain.
## 44943                                                                                                                                                                                                                           EE trying to subdue a combative resident
## 44944                                                                                                                                                                 EE trying to subdue inmate to place him in seg when EE was assaulted by inmate, chipped lower toot
## 44945                                                                                                                                                                                                       EE trying to take patients pulse, patient scratchdright hand
## 44946                                                                                                                                                                                                   EE trying to take weights out of dumpster and pulled lower back.
## 44947                                                                                                                                                                                               EE trying to tighten stopper in flash-flash broke and cut EE's hand.
## 44948                                                                                                                                                             EE trying to turn pole with anchor bar and chain chain slipped and EE fell and hit left elbow on truck
## 44949                                                                                                                                                                  EE trying to un-jam pallet jack. Pulling it from side to side and felt pain in back. Back strain.
## 44950                                                                                                                         EE trying to unscrew 2 inch elbow pipe from another pipe, he improperly applied to much press-ure & strained his mid-to-lower back muscles
## 44951                                                                                                                                                                                                   EE trying to unstick bleachers and cut elbow on brace extension.
## 44952                                                                                                                                                                           EE trying to unstop a garbarge disposal-pulling onpipe to unclog drain-felt pain in back
## 44953                                                                                                                                                                             EE trying to use pic on client when client hit EE in the face and kicked EE on rt leg.
## 44954                                                                                                                                                                         EE trying yo redirect client and remove object from client, client bit EE r pointer finger
## 44955                                                                                                                                                           EE turb=ned to leave area and twisted rt ankle and fell against file cabinet and bruised lt arm and ribs
## 44956                                                                                                                                                                                         EE turn from the side reach for the trash can EE pull a muscle in l hip ()
## 44957                                                                                                                                                EE turned (walk) corner and tripped over a plasticcontainer on floor, felt resistance and twisted left hip and back
## 44958                                                                                                                                                                                                                                EE turned and hit right arm on desk
## 44959                                                                                                                                                                                                         EE turned and lost balance, falling backwards intobathtub.
## 44960                                                                                                                                                                 EE turned and reached for folder on top of desk, when experience sharp pain or pull in lower back.
## 44961                                                                                                                                          EE turned and resident was in wheelchair behind him, EE fell over wheelchair. Injured lower back- spinal area- right leg.
## 44962                                                                                                                                                                                                                                   EE turned and twisted his lt hip
## 44963                                                                                                                                                                                                                                    EE turned and twisted left knee
## 44964                                                                                                                                                                    EE turned ankle and fell when she stepped on uneven pavement in parking lot j at central office
## 44965                                                                                                                                                                                                      EE turned ankle and fell when she stepped on uneven pavement.
## 44966                                                                                                                                                                         EE turned ankle on loose gravelthat was on the road when EE stepped from sidewalk to raod.
## 44967                                                                                                                                                                                                         EE turned ankle on stump while making a timber examination
## 44968                                                                                                                                  EE turned ankle when shoe caught on bad place in carpet going to med cabinet to get meds. Hematoma to left foot below ankle bone.
## 44969                                                                                                                                                                      EE turned ankle while removing trashed. Pushed wheel bar over broken sidewalk. Rt ankle/foot.
## 44970                                                                                                                                                                                                                         EE turned ankle while walking down hallway
## 44971                                                                                                                                                           EE turned around & fell over student's kit which had been left in walking area-EE fell back on left side
## 44972                                                                                                                                                                                            EE turned around and bumped his head on coat rack; has bump on his head
## 44973                                                                                                                                                                                                                 EE turned around and elbow hit window and broke it
## 44974                                                                                                                                                                                          EE turned around and hit a power pole injurying rt temple and left thumb.
## 44975                                                                                                                                EE turned around and tripped over wheelchair that was placed accidently behind her and she fell-contusions lt elbow, arm and rt hip
## 44976                                                                                                                                             EE turned around and walked straight into the sideof the door, hitting the door with her whole left front of her body.
## 44977                                                                                                                                                                                           EE turned around chair to lean forward to get up and fell on leg and hip
## 44978                                                                                                                                                      EE turned around from getting a steel brace, his head struck corner of trailer. Laceration lt upper forehead.
## 44979                                                                                                                                                                                                EE turned around in chair to bookcase and knee hit corner of table.
## 44980                                                                                                                                                                                                          EE turned around quickly twisting and tripping over feet.
## 44981                                                                                                                                                                                                          EE turned around to answer phone and hit knee on console.
## 44982                                                                                                                                                   EE turned around to check on client, right ankle turned over, didn't hurt at time, ankle was swollen on 7/29/97.
## 44983                                                                                                                                                                                  EE turned around to give coworker info & fell off walkway & twisted rt foot/ankle
## 44984                                                                                                                           EE turned around to his computer & leaned back chair slipped he hit left leg under his desk to break fall. Went home & noticed swelling.
## 44985                                                                                                                            EE turned around to pick papers off of cabinet, back of chair broke, EE fell to floor hitting the back of her head on the cabinet door.
## 44986                                                                                                                                                                                                   EE turned around to respond to a code & pulled something in back
## 44987                                                                                                                                                          EE turned around to the door - inmate threw tennisshoe striking him in chest. Bruised in middle of chest.
## 44988                                                                                                                                                                                                           EE turned around while seated and struck knee on drawer.
## 44989                                                                                                                                                                                             EE turned aroundand walked into and sharp object cut EE on the rt ear.
## 44990                                                                                                                                                                                               EE turned at desk to walk a different way and felt pop in rt knee ()
## 44991                                                                                                                                                                                            EE turned client during a treatment and pulled back muscle. Back strain
## 44992                                                                                                                                                                                                          EE turned client during bathing & felt pain in right side
## 44993                                                                                                                                                                                                                        EE turned client over and strained low back
## 44994                                                                                                                                                    EE turned down sunvisor on patrol vehicle. Metal paper clip struck EE in left eye. Corneal abrasion to left eye
## 44995                                                                                                                                        EE turned foot over in drain hole she stated pipe had been removed leaving drain open. Unknown EE chose not to go to clinic
## 44996                                                                                                                                                                                                     EE turned foot while stepping down from one step to next step.
## 44997                                                                                                                                                                         EE turned foot while walking in d wing on mezzanie while coming down the stairs it popped.
## 44998                                                                                                                                                                                             EE turned foot without stepping on anything or stepping off an upgrade
## 44999                                                                                                                                                                        EE turned from a sitting position to pick up a box in the back of the van and strained back
## 45000                                                                                                                   EE turned from cash register, stepping into a basket. He fell against corner of table holding cash register. The rim of his glasses cut his eye.
## 45001                                                                                                                                    EE turned from desk to go to computer table to do some work. He hit edge of computer table against right elbow causing swelling
## 45002                                                                                                                                                                                                     EE turned golf cart sharply which tipped over on right side ()
## 45003                                                                                                                                  EE turned head to r when walking into pt room w/ pt, EE turned around towards door adn hit forehead on corner of concrete doorway
## 45004                                                                                                                                                                                                       EE turned head to start typing and something popped in neck.
## 45005                                                                                                                                                                                                EE turned her rt ankle when stepping off porch to go see a patient.
## 45006                                                                                                                                                               EE turned his attention from road and run into theback of van which had stopped, contusion to chest.
## 45007                                                                                                                                                                                                    EE turned his foot stayed stationary and my knee twisted popped
## 45008                                                                                                                                                                                     EE turned his left ankle as he stepped down off the curb in the parking lot ()
## 45009                                                                                                                                                                                                                      EE turned his left ankle going down steps. ..
## 45010                                                                                                                                                                                                                   EE turned his left ankle while walking into work
## 45011                                                                                                                                                                    EE turned his right ankle when he stepped on the 2x4 board attached to the bottom of the chair.
## 45012                                                                                                                                                                                     EE turned in chair, foot caught on snap on floor mat and caused knee to twist.
## 45013                                                                                                                EE turned in her chair to get up, EE didn't realize the cd door had opened automatically after the formatting was finished, cut her leg on the door
## 45014                                                                                                                       EE turned key in barber shop door, EE applied pres-sure with right arm and applied pressure with his left leg hard enogh to force door open.
## 45015                                                                                                                                                                                                            EE turned left ankle entering restroom on uneven floor.
## 45016                                                                                                                                                                                                     EE turned left ankle the wrong way stepping on an unlevel spot
## 45017                                                                                                                                                                                               EE turned left ankle while running platoon during morning p. T. Run.
## 45018                                                                                                                                                                                                                     EE turned left ankle while turning in hallway.
## 45019                                                                                                                    EE turned left on her bike her left saddle bag caught brick wall-threw EE head first over handle bars landed left side pinned btwn wall & bike-
## 45020                                                                                                                                                        EE turned left to pull a record from her filing cabinet & when she went back up, she felt pain in her back.
## 45021                                                                                                                                                                                          EE turned lt ankle when she tripped on a rock thatwas in the parking lot.
## 45022                                                                                                                                                                                                                        EE turned on a/c trash blew in EE's lt eye.
## 45023                                                                                                                                                                                          EE turned on the air condition when some of the debris flew in his lt eye
## 45024                                                                                                                                           EE turned on the lights in the aquarium room and got shocked, she was standing in water that leaked out of the aquariums
## 45025                                                                                                                                                                                                    EE turned on vehicle air conditioning and particle blew in eyes
## 45026                                                                                                                                                                  EE turned over a rock and felt two pops in lower back. Followed by pain in lower back and hips ()
## 45027                                                                                                                                                                                                                             EE turned over left ankle at tram stop
## 45028                                                                                                                                                                                                EE turned paper over with left hand and felt pain in arm and wrist.
## 45029                                                                                                                                                                                  EE turned quickly slamming rt hand into cabinet causing injury to rt ring finger.
## 45030                                                                                                                                                                                                                                         EE turned rt ankle on curb
## 45031                                                                                                                                                                                         EE turned rt ankle while escorting an inmate and walking on uneven ground.
## 45032                                                                                                                                                                     EE turned steamer off - opened steamer, steam was not off - burn rt inner forearm above wrist.
## 45033                                                                                                                          EE turned the autoclave on, to fill with water, itover flowed, EE opened the autoclave to unload thewater, but it spilled out on her feet
## 45034                                                                                                                                                                               EE turned the her ankle in the root retrieving xhibit barrier at the end of the day.
## 45035                                                                                                                                     EE turned the intercom on & she pricked the side of her left hand near the thumb with a sewing neele which is used by inmates.
## 45036                                                                                                                                                          EE turned the wrong way and strained something in his back while trying to get a patient off of the floor
## 45037                                                                                                                                                      EE turned to answer a questions and tripped on something. She fell on the floor and her knee hit the floor ()
## 45038                                                                                                                                                                                     EE turned to block a client from hitting her and he hit rt hand little finger.
## 45039                                                                                                                                                                                                    EE turned to catch another peron from falling and twisted knee.
## 45040                                                                                                                                                                                                                  EE turned to catch closing door and twisted ankle
## 45041                                                                                                                                                                                                   EE turned to catch door before it slammed and felt left knee pop
## 45042                                                                                                                                                                     EE turned to do a fouette in dance rehearsal and felt a popping and tearing on back of rt hip.
## 45043                                                                                                                                                                                                          EE turned to face co-workers and banged left knee on desk
## 45044                                                                                                                                                                                                  EE turned to get client-lost balance and fell on rt leg and knee.
## 45045                                                                                                                                                                                                                 EE turned to get into truck and twisted left knee.
## 45046                                                                                                                                                                                                    EE turned to get off ladder and twisted his knee while doing so
## 45047                                                                                                                                                                                                                 EE turned to get onto elevator & fell on left side
## 45048                                                                                                                                                                  EE turned to get something out of box and turned back to computer table. Twisted right ankle/foot
## 45049                                                                                                                                                EE turned to get something out of training car andstruck his left middle finger on mirror causing tendon to rupture
## 45050                                                                                                                                                                                                  EE turned to get up from doing work and struck left knee on desk.
## 45051                                                                                                             EE turned to go around her desk and reports that she bumped the desk, caused her to lose balance, fell, landed on her lt side, broke fall with lt hand
## 45052                                                                                                                         EE turned to hold door open for someone. She stepped back and fell over a buffer that was sitting in the hall. Injured right knee and back
## 45053                                                                                                                                                                             EE turned to leave and ran into the food wagon hitting right side just below the robs.
## 45054                                                                                                                                    EE turned to leave clinic area and slipped in vomit on floor causing her to fall on buttocks & caused her legs to spread apart.
## 45055                                                                                                                                                                                                              EE turned to leave the cooler and twisted his lt knee
## 45056                                                                                                                                                            EE turned to move from work station foot became tangled in mouse cord, EE fell flat to a concrete floor
## 45057                                                                                                                                                                                                  EE turned to pick up a maintenance log and felt a pop in her neck
## 45058                                                                                                                                                                                                          EE turned to pick up cart and hit knee on mail push cart.
## 45059                                                                                                                                                                                               EE turned to pick up package in back of van felt pain in mid rt back
## 45060                                                                                                                                                                                                    EE turned to put folders on counter and struck rt elbow on desk
## 45061                                                                                                                                                                                 EE turned to put leisure equipment away and felt pop in lower back, pelvic and hip
## 45062                                                                                                                                                                                                    EE turned to put something in waste baket; chair fell backwards
## 45063                                                                                                                                                            EE turned to remove a portable pottie chair from behind patient a felt a pain in upper lt side of back.
## 45064                                                                                                                                                                                      EE turned to respond to another EE and hit big toe on door causing laceration
## 45065                                                                                                                                                                                              EE turned to return to desk and tripped over calculator cord and fell
## 45066                                                                                                                                                                                                         EE turned to shut the door she shut her hand in the frame.
## 45067                                                                                                                                                                               EE turned to speak to another EE & felt pain in left lower side of back. Back strain
## 45068                                                                                                                                                                                                                EE turned to speak to inmate and twisted lower back
## 45069                                                                                                                                                                                                                     EE turned to speak to student and injured back
## 45070                                                                                                                                     EE turned to stop juvenile from running and slipped and fell landing on rt side-contusion fx to rt thumb and contusion rt knee
## 45071                                                                                                                                                EE turned to talk to another officer and hit his head into the station wall hitting left side of head. Lump on head
## 45072                                                                                                                                                                                                  EE turned to the side to pick up a baby & felt pain in lower back
## 45073                                                                                                                                                                                                                          EE turned to walk and left knee went weak
## 45074                                                                                                                                                                                                            EE turned to walk away from printer and injured rt knee
## 45075                                                                                                                                                                               EE turned to walk away, slipped on wet floor strik-ing right knee and full body hit.
## 45076                                                                                                                                                                                          EE turned to walk down stairs and fell, landing on right side of rt ankle
## 45077                                                                                                                                                                                                            EE turned to walk down steps and fell. Injured lt knee.
## 45078                                                                                                                                                    EE turned to walk off probationer's front porch & his dog (didn't know was there) jumped out & bit EE on rt leg
## 45079                                                                                                                                                         EE turned while seated to open top desk while stuck completely and experienced severe pain in rt shoulder.
## 45080                                                                                                                                                                                          EE turned while sitting to put something in a fileand felt her back catch
## 45081                                                                                                                                             EE turned, then bent down in chair to pick up folders etc. From floor. Sharp pain when came backup in upright position
## 45082                                                                                                                                                                           EE turned/twisted wrong while on the line to get some straps-later felt pain in left hip
## 45083                                                                                                                                          EE turning a post pile with a pitch fork, it went into pile and into the skin of her left foot caus-ing a puncture wound.
## 45084                                                                                                                                                             EE turning around on sidewalk twisting his left ankle falling to the ground injuring his left shoulder
## 45085                                                                                                                                                                                       EE turning client over and felt a pop in wrist andfingers started to tingle.
## 45086                                                                                                                                                                                                               EE turning client over client grabbed EE in left eye
## 45087                                                                                                                    EE turning corner to come into special proceedingsfeet slipped on non-carpeted floor & fell contusion lt shoulder, knees, soreness lt side back
## 45088                                                                                                                                                                                            EE turning light on in dark lobby and walked into a bench hitting knee.
## 45089                                                                                                                                                                                                           EE turning off water hosed and got a splinter in rt leg.
## 45090                                                                                                                                                                                                           EE turning onto hwy hit by ov causing head to hit window
## 45091                                                                                                                                                                                                                   EE turning pt pt pulling back, EE strain to back
## 45092                                                                                                                                                                      EE turning resident to reposition as he pushed back suddenly hand hit against the bed rail ()
## 45093                                                                                                                                                           EE turning to go to medicine cabinet of new dorm she banged her lt knee on open desk drawer. Lt knee cap
## 45094                                                                                                                                                                                                                 EE turning to put client down injury to lower back
## 45095                                                                                                                            EE turning to step off passenger ferry when EE blacked out and stepped in btwn boat and dock intowater, lacerations to left leg and arm
## 45096                                                                                                                                                  EE turning trays on the lower rack & back started to hurt and as I continued to work it got worse. Lumbar strain.
## 45097                                                                                                                                                               EE twirling stick in front of office unaware of eetip of stick hit her in face and put cut on cheek.
## 45098                                                                                                                                                                                                                 EE twist his ankle on a curb. Right ankle and foot
## 45099                                                                                                                                                                                            EE twisted & slipped on wet gravel in parking lot & twisted (rt) ankle.
## 45100                                                                                                                     EE twisted (r)ankle & foot while working barricadeat turnaround for hs graduation; turning to look attraffic felt sharp pain & pop in (r)foot.
## 45101                                                                                                                                                                 EE twisted and sprained his ankle, tearing ligaments in left ankle due to faulty footing on stairs
## 45102                                                                                                                                                                                                     EE twisted ankle & fell hitting head & rt shoulderagainst wall
## 45103                                                                                                                                                                            EE twisted ankle in parking lot of hotel in which a conference was being held and fell.
## 45104                                                                                                                                                               EE twisted ankle on loose brick in sidewalk outside of unc student store. Swelling and pain to ankle
## 45105                                                                                                                                                                                                                EE twisted ankle on sidewalk edge-sprained lt ankle
## 45106                                                                                                                                                                                                                                EE twisted ankle playing basketball
## 45107                                                                                                                                                                                              EE twisted ankle running to assist a patient who was having a seizure
## 45108                                                                                                                                                                                                            EE twisted ankle wahile on a tour of historic landmarks
## 45109                                                                                                                                                                 EE twisted ankle walking down steps in main build-ing due to debris on steps from renovation work.
## 45110                                                                                                                                                                                                             EE twisted ankle while assisting a pt to the bathroom.
## 45111                                                                                                                                                             EE twisted ankle while running from psycholgy office. Left foot turned as he stepped on uneven surface
## 45112                                                                                                                                                                                                                           EE twisted ankle while walking down ramp
## 45113                                                                                                                                                                                                        EE twisted ankle while walking in hall, sprained right foot
## 45114                                                                                                                                                                                                                           EE twisted ankle while walking on carpet
## 45115                                                                                                                                                EE twisted back / torso while being assualted by patient, EE tried to prevent patient from hurting staff & self. ()
## 45116                                                                                                                                                                                                             EE twisted back on left side - cause of injury unknown
## 45117                                                                                                                                                                                                                                 EE twisted back putting cones away
## 45118                                                                                                                                                                                                                               EE twisted back while loading signs.
## 45119                                                                                                                                                                                                         EE twisted back while throwing full trash bags in dumpster
## 45120                                                                                                                                                                      EE twisted finger while trying to turn around in small mud drum boiler. Pain in little finger
## 45121                                                                                                                                                                                                                              EE twisted foot and fell fx left foot
## 45122                                                                                                                                                                                                     EE twisted foot while walking down steps, straining lower back
## 45123                                                                                                                                                                                         EE twisted her ankle and fell against a wall hitting her head and shoulder
## 45124                                                                                                                                           EE twisted her ankle in hole-while attempting to catch herself from falling, she grabbed at fence& punctured her finger.
## 45125                                                                                                                                                                                   EE twisted her ankle while helping a somewhat unsteady patient walk to bathroom.
## 45126                                                                                                                                                                                             EE twisted her ankle while stepping half on/half off floor safety mat.
## 45127                                                                                                                                                                                                            EE twisted her ankle while walking to answer the phone.
## 45128                                                                                                                                                                EE twisted her back when she was trying to a assist a client with his pants; right shoulder andback
## 45129                                                                                                                                                                                                     EE twisted her foor on the floor while walking in the bathroom
## 45130                                                                                                                                                        EE twisted her knee when she lost her balance while putting on coveralls required when entering animal room
## 45131                                                                                                                                                                      EE twisted her left foot & fell when she stepped on an acorn in parking lot. Foot is swollen.
## 45132                                                                                                              EE twisted her left foot and fell on some roots in a natural area adjacent to the parking area while walking from the parking lot to the building. ()
## 45133                                                                                                                                                                                     EE twisted her left knee while pushing a chair out her way with her right foot
## 45134                                                                                                                                                                                                                                            EE twisted her lt ankle
## 45135                                                                                                                                                                                                          EE twisted her lt knee during a use of force on an inmate
## 45136                                                                                                                                                                                                                       EE twisted her right foot on uneven pavement
## 45137                                                                                                                                                                                                            EE twisted her right knee on rocks and unleveled ground
## 45138                                                                                                                                                                                 EE twisted her right knee when she jumped up to help pt that was about to fall. ()
## 45139                                                                                                                                                  EE twisted her right wrist when catching & preventing water cooler from falling as she was taking itout of a cart
## 45140                                                                                                                                                                             EE twisted her rt ankle & rt leg on a rock while walking down the steps to her office.
## 45141                                                                                                                                                                                                               EE twisted her rt ankle on an unlevel ground surface
## 45142                                                                                                               EE twisted her rt foot in an attempt to avoid a patient who was running toward her. EE was wearing walking boot. Increase swelling/pain from prv inj
## 45143                                                                                                                                                             EE twisted her rt knee and it popped as she was getting up to walk to the control panel to open a door
## 45144                                                                                                                                                                                     EE twisted her rt knee while digging with a shovel--EE was transplanting trees
## 45145                                                                                                                                                                                                           EE twisted her rt knee while stepping down a step ladder
## 45146                                                                                                                                                                              EE twisted his ankle after slipping on wet surface. Stretched ligaments on rt- ankle.
## 45147                                                                                                                                                                                                       EE twisted his ankle and foot while walking on steep terrain
## 45148                                                                                                                                                                                                                       EE twisted his ankle at curb cut on sidewalk
## 45149                                                                                                                                                                                                EE twisted his ankle on a curb; right ankle; foot possibly sprained
## 45150                                                                                                                                                                                              EE twisted his ankle when attempting to stop patient from choking rn.
## 45151                                                                                                                                                                                                        EE twisted his ankle while playing basketball withpatients.
## 45152                                                                                                                                                                                                                   EE twisted his back while getting out of his car
## 45153                                                                                                                                                                               EE twisted his back while he was trying to keep the door of the car from hitting him
## 45154                                                                                                                                                                                          EE twisted his back while lifting a box in the stockroom; his back popped
## 45155                                                                                                                                                                                                               EE twisted his back while moving an electrical panel
## 45156                                                                                                                                          EE twisted his back while removing video camera f/elevator car, was in ackward position that caused him to twist his back
## 45157                                                                                                                                                                                               EE twisted his back while standing... He turned and twisted his back
## 45158                                                                                                                                                                                 EE twisted his back while trying to hold open a door and pull a wheelchair through
## 45159                                                                                                                                              EE twisted his body around attempting to load a stack of food trays on the hand cart causing pain lt pelvic & lt leg.
## 45160                                                                                                                                                                                                              EE twisted his elbow while drilling a hole in a post.
## 45161                                                                                                                                                                                                EE twisted his forearm while handling a pig that was to be weighed.
## 45162                                                                                                                                                                             EE twisted his knee coming out of the job trailer carrying power saws. Injured rt knee
## 45163                                                                                                                                                                                                               EE twisted his knee while avoiding a player in drill
## 45164                                                                                                                                                                                                        EE twisted his knee while putting his air tank on lab truck
## 45165                                                                                                                                                                                                                EE twisted his knee while running....... Right knee
## 45166                                                                                                                                                                                                                  EE twisted his left knee when getting on tractor.
## 45167                                                                                                                                                                           EE twisted his lower back while unloading van. Pain has consistantly become more intense
## 45168                                                                                                                                                                                                         EE twisted his lt ankle during a use of force on an inmate
## 45169                                                                                                                                                                                                                       EE twisted his lt ankle while entering a van
## 45170                                                                                                                                                                                                           EE twisted his lt ankle while walking on an unevenground
## 45171                                                                                                                                                                                                                    EE twisted his lt knee while chasing an inmate.
## 45172                                                                                                                                                                                  EE twisted his neck while trying to loosen bearingfrom shaft in air handler unit.
## 45173                                                                                                                      EE twisted his right ankle in the sand at bravo vehicle gate as he was responding to a code 400 in d-2 dormitory. Pain & swelling to rt ankle
## 45174                                                                                                                                                                                                             EE twisted his right ankle on an uneven grassy surface
## 45175                                                                                                                                                                                                                  EE twisted his right ankle when he slipped on ice
## 45176                                                                                                                                                                                                                 EE twisted his right knee during asp training.. ..
## 45177                                                                                                                                                                                                  EE twisted his right knee during demonstration of escape attempt.
## 45178                                                                                                                                                                                    EE twisted his right knee while conducting backpacking walk up side of mountain
## 45179                                                                                                                                                                                                                 EE twisted his right wrist while tying down debris
## 45180                                                                                                                                                                                                      EE twisted his right wrist while using a saw to remove debris
## 45181                                                                                                                                                                                                             EE twisted his rt ankle while stepping off a bulldozer
## 45182                                                                                                                                                                                                                         EE twisted knee during physical restraint.
## 45183                                                                                                                                                                                                               EE twisted knee when stepping off transportation van
## 45184                                                                                                                                                               EE twisted knee while assisting a falling client. *iw resigned from murdoch-separation date 12/9/03*
## 45185                                                                                                                                                                                                  EE twisted knee while playing ball with clients. Strain left knee
## 45186                                                                                                                                                                                                               EE twisted knee while teaching fitness walking class
## 45187                                                                                                                                                                                                        EE twisted left ankle and foot while walking to the cottage
## 45188                                                                                                                                                                                                                EE twisted left ankle and knee going down wet steps
## 45189                                                                                                                                                                                                                                 EE twisted left ankle on sidewalk.
## 45190                                                                                                                                                                                                             EE twisted left ankle playing basketball with patients
## 45191                                                                                                                                                                                                                                EE twisted left ankle when slipped.
## 45192                                                                                                                                                                                                                     EE twisted left ankle while walking to meeting
## 45193                                                                                                                                                                                                        EE twisted left elbow while practicing unarmed self defense
## 45194                                                                                                                                                                                                                EE twisted left foot as she was coming down stairs.
## 45195                                                                                                                                                                                                         EE twisted left foot when standing from a kneeled posiiton
## 45196                                                                                                                                                                                                                                               EE twisted left knee
## 45197                                                                                                                                                                                                  EE twisted left knee crawling under counter top to open bathouse.
## 45198                                                                                                                                                                                                                    EE twisted left knee during physical restraint.
## 45199                                                                                                                                                                                         EE twisted left knee exiting a 2-ton truck and stepping ono unlevel ground
## 45200                                                                                                                                                                                                                     EE twisted left knee while moving a small pig.
## 45201                                                                                                                                                                        EE twisted left knee while running down ditch bankwhich was uneven terrain chasing suspect.
## 45202                                                                                                                                                                                                      EE twisted left knee while running sprints on the sand track.
## 45203                                                                                                                                                                      EE twisted left knee while running to the telephone on the ward. Possible sprain of left knee
## 45204                                                                                                                                                                                  EE twisted left knee while trying to restraint two students that were fighting ()
## 45205                                                                                                                                                                                             EE twisted left little figner while attempting to place inmate in cell
## 45206                                                                                                                                                                                                                 EE twisted left thumb while restraining an inmate.
## 45207                                                                                                                                                                                           EE twisted left wrist getting mail out of mailbox and bruised left wrist
## 45208                                                                                                                                                                                     EE twisted left wrist while placing client on backboard to change his clothes.
## 45209                                                                                                                                                                                                      EE twisted leftknee when moving patient from bed to stretcher
## 45210                                                                                                                                                             EE twisted low back and torso working light duty in lab area taking water samples strain to lower back
## 45211                                                                                                                                                                     EE twisted lower back & lower part of stomach while trying to break up fight between students.
## 45212                                                                                                                                                                                                                                   EE twisted lower back during eri
## 45213                                                                                                                                                                                                                        EE twisted lower back when cleaning floors.
## 45214                                                                                                                                                                                         EE twisted lt ankle and fell on rt knee - sprain lt ankle abrasion rt knee
## 45215                                                                                                                                                           EE twisted lt ankle when the client being carried hit the other staff membver during a two person carry.
## 45216                                                                                                                                                                       EE twisted lt ankle while conducting security inspecting of institution. Twisted left ankle.
## 45217                                                                                                                                                                                                   EE twisted lt ankle while escorting pt to recreational activity.
## 45218                                                                                                                                                                                                                 EE twisted lt ankle while trying to answer a call.
## 45219                                                                                                                                                                                 EE twisted lt foot when he stepped in hole in the road while conducting inspection
## 45220                                                                                                                                                                                                    EE twisted lt knee. While carrying code blue cart up stairwell.
## 45221                                                                                                                                                                                                        EE twisted lt pinky finger during the process of restraint.
## 45222                                                                                                                                                                            EE twisted right ankle and fell to ground when leaving side entrance to avery building.
## 45223                                                                                                                                                                                             EE twisted right ankle in parking lot when approching a clients house.
## 45224                                                                                                                                                                                                 EE twisted right ankle when going down stairs during dinner break.
## 45225                                                                                                                                                                                                                 EE twisted right ankle while bowling with clients.
## 45226                                                                                                                                                                                                                       EE twisted right ankle while chasing patient
## 45227                                                                                                                                                                              EE twisted right ankle while going up steps. EE's ankle is swolled, sore, and tender.
## 45228                                                                                                                                                                              EE twisted right foot and fell on left leg down stairs... Injured lower back and feet
## 45229                                                                                                                                    EE twisted right foot at edge of sidewalk leaving visitation center near bicentinneal area of campus. Foot slide twisting ankle
## 45230                                                                                                                                                                               EE twisted right foot while going down to dormitorcausing pain that reoccured later.
## 45231                                                                                                                                                                                               EE twisted right knee as he put weigt on it to turn and exit vehicle
## 45232                                                                                                                                                                            EE twisted right knee getting out of vehicle, which was parked on an inclined driveway.
## 45233                                                                                                                                                                                                                 EE twisted right knee while pushing medicine cart.
## 45234                                                                                                                                                                                 EE twisted right wrist while repositioning client who became aggressive toward EE.
## 45235                                                                                                                                                                                                                                                EE twisted rt ankle
## 45236                                                                                                                                                                                                        EE twisted rt ankle and fell to floor-felt a popping sound.
## 45237                                                                                                                                                                                                         EE twisted rt ankle and fell when stepping down from curb.
## 45238                                                                                                                                                                EE twisted rt ankle on inclined cement walkway on rounds and heared rt knee pop - strained rt ankle
## 45239                                                                                                                                                                                                       EE twisted rt ankle stepping over stone wall and sprained it
## 45240                                                                                                                                                                                                          EE twisted rt ankle trying to get resident off of the bus
## 45241                                                                                                                                                                                                                    EE twisted rt ankle when she stepped on a rock.
## 45242                                                                                                                                                                                                     EE twisted rt ankle while attempting to put clientin pic hold.
## 45243                                                                                                                                              EE twisted rt ankle while conducting a security inspection of institution. Stepped off cement slab and twisted ankle.
## 45244                                                                                                                                                                                                                       EE twisted rt ankle while playing basketball
## 45245                                                                                                                                                                                               EE twisted rt ankle while playing basketball during afternoon break.
## 45246                                                                                                                                                                                                      EE twisted rt ankle while stepping down off of merry go round
## 45247                                                                                                                                                                                                                    EE twisted rt ankle while stepping out of truck
## 45248                                                                                                                                                                                                                  EE twisted rt foot and fell walking down hallway.
## 45249                                                                                                                                                                                             EE twisted rt hand and wrist due to hard to open cyclinder block lock.
## 45250                                                                                                                                                                                                            EE twisted rt hand trying to open jammed cabinet drawer
## 45251                                                                                                                                                                                                             EE twisted rt knee during confrontation with an inmate
## 45252                                                                                                                                                                                                                               EE twisted rt knee getting off train
## 45253                                                                                                                                                          EE twisted rt knee getting out of way while furniture was being moved and tripped over drop cord and fell
## 45254                                                                                                                                                                                                                               EE twisted rt knee going down stairs
## 45255                                                                                                                                                                                                                         EE twisted rt knee stepping off bulldozer.
## 45256                                                                                                                                                                                                             EE twisted rt knee while ? A patient rt knee contusion
## 45257                                                                                                                                                                                                     EE twisted rt knee while crossing over 12" floor mounted pipe.
## 45258                                                                                                                                                                                                 EE twisted rt knee while turning corner leaving the kitchen area ,
## 45259                                                                                                                                                                                                          EE twisted rt wrist when drill bit got caught in concrete
## 45260                                                                                                                                                  EE twisted this thumb on his right hand and his lt shoulder while assisting staff with an out of control student.
## 45261                                                                                                                                                                  EE twisted to prevent a client from hitting head on desk causing sharp pain in back and right hip
## 45262                                                                                                                                                  EE twisted while lifting hand cart into back rear doorway of vending truck, and felt strain on back upon lifting.
## 45263                                                                                                                                                                                        EE twisted while walking on sidewalk-unsure what happened-sprained lt ankle
## 45264                                                                                                                                                                                                                               EE twisted wrist while washing tram.
## 45265                                                                                                                                                                                                               EE twisting his lt. Knee on a crack in the sidewalk.
## 45266                                                                                                                    EE two wheel hand truck loaded with supplies, opened door enter building and caught hand betweendoor and handle. Broke blood vessel on lt hand.
## 45267                                             EE typed 2 extremely long letters this past week and hands hurt, went numb at night. Tried wearing hand supports but does not help. Had hard time gripping, holding things over the weekend. Hands/fingers go numb. ()
## 45268                                                                                                                                                                                                    EE types & transcribes daily. Pain worsened supvr sent EE to er
## 45269                                                                                                                                                        EE types a lot and has been experiencing pain in wrists for 2 or 3 months; pain started to persist in March
## 45270                                                                                                                                                                               EE types and use mouse on a daily basis; wrist continue to get worse everyday... Cts
## 45271                                                                                                                                                                                                     EE types high volume of letters, documents, etc during the day
## 45272                                                                                                                                                                              EE types many hours per day in her support of 3 doctors transcripts-pain in rt wrist.
## 45273                                                                                                                                                                                                                                EE types on the computer constantly
## 45274                                                                                                                                                                                 EE typing a lot of letters and vouchers, more than normal-hand/thumb began to hurt
## 45275                                                                                                                                                                  EE typing on computer - felt tingling, numb sen- sation in left fingers. Feeling did not diminish
## 45276                                                                                                                                                           EE typing on computer and started experiencing servere pain in rt arm at the wrist, elbow, and shoulder.
## 45277                                                                                                                 EE unable to control shotgun when firing during basic training. Shotgun because of EE size kicked EE in left arm and fired 10 shot causing bruises
## 45278                                                                                                                                                                       EE unbuckling seat belt and client reached out and scratched EE left eye scratch to left eye
## 45279                                                                                 EE unclogging sink in diag. Ctr. Using glug cleaning solution. Solution blew back from drain soaking his right pant leg. Localized first degree chemical burn of the right leg. ()
## 45280                                                                                                                                   EE uncovered a cell observation camera an inmate threw liquid substance stricking him in the facialarea particular the eye area.
## 45281                                                                                                              EE uncuffed inmate to take a shower and inmate struck EE with fist on her left eye/cheek area, causing her to loose balance and partial consciousness
## 45282                                                                                                                                 EE uncuffed inmate, inmate shoved him in chest, backwards. Inmate shaving rt & lt side of chest. Red areas on both sides of chest.
## 45283                                                                                                                             EE under desk throwing something in trash can & upon rising up, hit forehead on bottom of wooden tray - forehead, sore, swollen, bumpy
## 45284                                                                                                                                                                                                        EE unhitching part from tractor and left finger was mashed.
## 45285                                                                                                                                                           EE unhooking boat trailer from vehicle and struck mouth on jack handle of boat breaking frtont toothcap.
## 45286                                                                                                                                                                                            EE unintentionally struck with spit in eye while speaking with attorney
## 45287                                                                                                                                   EE unknowingly had his fingers in the door frame while the door was open-when door closed it crushed the fingers on his lt hand.
## 45288                                                                                                                                                                                       EE unknowingly sat on broken toilet seat causing him to fall injuring rt leg
## 45289                                                                                                                                                                                           EE unloaded hamper when he felt a sting in his middle finger-right hand.
## 45290                                                                                                                                                                       EE unloaded six buckets of 40 lbs detergent for use in patient dorms. Pain in both shoulders
## 45291                                                                                                                                                                   EE unloading 20 pound boxes of paper - arm was hurting while unloading. Bursitis in rt shoulder.
## 45292                                                                                                                    EE unloading 5-gallon buckets of paint from back of truck. Crossed lt leg in front of rt leg & pushed pain of paint w/lt foot-twisted pain/back
## 45293                                                                                                                                                               EE unloading a schrub when plant slapped the back of EE's leg causing a large thorn to hit left calf
## 45294                                                                                                                                                                      EE unloading a utility vehicle and pulled on rope which broke causing EE to fall on left hand
## 45295                                                                                                                                         EE unloading a wrecked vehicle form callback EE walked into fender stricking out from another wrecked one. Injured lt knee
## 45296                                                                                                                                                              EE unloading and loading manhole rings onto trk and taking to another location caused stomach hernia.
## 45297                                                                                                                                                                                     EE unloading bookcases from truck bed-strained to chest when lifting bookcase.
## 45298                                                                                                                                  EE unloading bottles from freight elevator-reachedfor strap & pulled elevator door shut-EE caught hand in door crushing 4 fingers
## 45299                                                                                                                                                     EE unloading boxes and stacking at janitorial plant barn he injured rt lower back. Back pain on lower rt side.
## 45300                                                                                                                                                                                                       EE unloading boxes from trk and felt something pull in back.
## 45301                                                                                                                            EE unloading boxes of telephone wire form tractor-trailer, weighing approx 40 lbs. EE felt sharp pain in rt upper back area & shoulder.
## 45302                                                                                                                      EE unloading cans to be placed on rack, accidently rubbed fourth & fifth fingers across sharp edge ofrack, leaving 1 1/2" cut to both fingers
## 45303                                                                                                                                                         EE unloading cart of boxes, felt pull in right side of back ***dob-11/7/1965**doh 2000- oow begin 2006 ***
## 45304                                                                                                             EE unloading cases of tennis shoes on wooden pallet and stepped on empty pallet, caught rt foot btwntwo slats of empty pallet cause EE to fall, twistd
## 45305                                                                                                                                                                                             EE unloading coreless tissue off van and hit rt knee on bumper of van.
## 45306                                                                                                                                                                          EE unloading crates from her car containing case files, one fell out, landed on left hand
## 45307                                                                                                                                                                    EE unloading detergent from truck-stepped off of truck onto loading dock and left knee gave out
## 45308                                                                                                                                                                                                                         EE unloading hay when it blew in both eyes
## 45309                                                                                                                                                                           EE unloading laundry buggies the small brass bradson handle scratched right index finger
## 45310                                                                                                                   EE unloading lg fax mach. From box on loading dockee stepped on piece of cardboard & other end came up hit EE rt side face, pain in tooth & face
## 45311                                                                                                                                                                                                       EE unloading mail hamper from van and felt a twinge in back.
## 45312                                                                                                                                   EE unloading mulch from trk when turning another EE was turning back and rcvd a puncture wound with cotton seed fork on rt hand.
## 45313                                                                                                                                                                                                      EE unloading pallets and felt/heard something give in rt arm.
## 45314                                                                                                                                                               EE unloading patient from ambulance-as EE was going to step onto lift-hit forehead on top of vehicle
## 45315                                                                                                                                                                                                      EE unloading risers from a folly and cut left handring finger
## 45316                                                                                                                                            EE unloading supplies-lift was down on truck was backing & fell off truck onto tree stump injured neck/back & left knee
## 45317                                                                                                                                                                EE unloading tank of heluim from back of truck- jumped off the side of truck and left leg gave away
## 45318                                                                                                                                                                                              EE unloading tools from truck when a pick fell, striking his lt ankle
## 45319                                                                                                                        EE unloading trash from truck into trash compactor when wooden object pierced the bag and caused a small, shallow laceration to EE hand. ()
## 45320                                                                                                                           EE unloading truck of building materials at hols- houser, sliding metal 2 x 4 studs into storage area, studs slipped laceration lt hand.
## 45321                                                                                                                                                                     EE unloading truck, pushed knee's against box to slide on pallet, felt something in left knee.
## 45322                                                                                                                                                                                          EE unloading wheel barrow from back of truck, tripped & fell on left elbo
## 45323                                                                                                                                                                                                          EE unloading wheelchair and fell injuring back and ankel.
## 45324                                                                                                                      EE unlocked chain on gate and pushed on side of gate with foot, chain fell across face hitting EE between the center of face above nose area.
## 45325                                                                                                                                       EE unlocked dining room door, felt cobweb as he walked through the dining room, looked down & saw red bumps on right arm. ()
## 45326                                                                                                                              EE unlocked double door gate & pushed one side of the gate back other side came off hinge & fell on EE rt shoudler. Pain rt shoudler.
## 45327                                                                                                                                                                                     EE unlocked gate and a wasp stung her in the abdomen; had an allergic reaction
## 45328                                                                                                                                                          EE unlocked lock with her key and lifted gate latch and it dropped onto right thumb. Cut right thumb nail
## 45329                                                                                                                                                                        EE unlocked oven door and touched lock. Lock was hot and burned left index finger and thumb
## 45330                                                                                                                                                                                                                EE unlocked te 105 and fell as she entered the room
## 45331                                                                                                                                                        EE unlocked the roll up door for loading dock to supervise inmates the door fell hitting EE him in the head
## 45332                                                                                                              EE unlocked the tow locks on sallyport and tried to pull the lever up and it wouldn't move, pulled harder and when it moved he felt pull in low back.
## 45333                                                                                                                                                                               EE unlocking outside door and door slammed shut on EE lt thumb. Laceration lt thumb.
## 45334                                                                                                                                                       EE unlocking supply cabinet to get supplies & hit lt hand on door divider going out to cat walk on 2nd floor
## 45335                                                                                                                    EE unlocking the lower yard back gate to allow female inmates to empty trash into dumpster she caught rt finger in hook - causing swelling-pain
## 45336                                                                                                                                                             EE unscrewed the top of the door dam, lifted it and took a step to his right and felt a sharp pain. ()
## 45337                                                                                                                                                                                 EE unstoping floor drain with cable machine when cable injured finger on left hand
## 45338                                                                                                                                                                                                   EE unstopping sink with plunger and water splashedinto left eye.
## 45339                                                                                                                         EE unsure - noted rt elbow sore when sleeves were pushed up on lab jacket, heat coming from area a small lump like an insect bite present.
## 45340                                                                                                                                                                        EE unsure as to exact time over a period that hands have been hurting, tingling, being numb
## 45341                                                                                                                               EE unsure as to what caused her to fall but she fell & broke her leg. She had gone to courier mail box to retrieve mail for district
## 45342                                                                                                                           EE upon entering bathroom thought someone in bath room but wasn't it was broom handle, so EE immed closed door and left hand caught foor
## 45343                                                                                                                             EE use a ditch blade property in overhead. During stretch to right side of my body. Felt sharp pain in groin. Injury lt side of groin.
## 45344                                                                                                                              EE use of force EE received abrasions on both forearms caused by inmate when he resisted staff's ef-forts to place him in restraints.
## 45345                                                                                                                                                                                                     EE use of force with an agressive inmate, twisted right ankle.
## 45346                                                                                                                                                        EE use of force with an inmate sgt fell back into desk striking rt arm just above rt wrist on side of desk.
## 45347                                                                                           EE used a 5 gallon bucket to drain the water out of the water heater, stumbled and fell throught the ceiling and caught his knee on a 2x4 that was nailed to the rafter.
## 45348                                                                                                                                                                                       EE used a chemical spray to remove glue from windows caused lung/throat inj.
## 45349                                                                                                                               EE used a metal stool to pull a file, picked the stool up and struck her rt foot. The rubber guard was missing off the bottom of it.
## 45350                                                                                                                                                                 EE used a test tube brush to clean a test tube and a piece of the wire handle went into her finger
## 45351                                                                                                                          EE used alternate method of holding a flashlight while firearm training causing weapon and the slide to kick back and hit lt pinky finger
## 45352                                                                                                                                                    EE used chlorox to mop kitchen and pour down drains; as a result EE had a headache, sore throat, and chest pain
## 45353                                                                                                                                                                                          EE used extreme pressure to open file drawers and injured her right thumb
## 45354                                                                                                                        EE used force on inmate to control, while inmate was being forced to the floor, there was a struggleee fell back hitting head against wall.
## 45355                                                                                                                                                                                                                        EE used force on inmate. Injured righ hand.
## 45356                                                                                                                                                                                       EE used force with inmate and inmate was pulling away EE straining EE's back
## 45357                                                                                                                                                                  EE used gloves to clean eperaton, when she removedglove her wrist was red and beginning to swell.
## 45358                                                                                                                                                                                       EE used his hands to stop an inmate from spitting on him in the facial area.
## 45359                                                                                                                                                                      EE used his left arm to block and push an attackerduring defense training; pain in left elbow
## 45360                                                                                                                EE used his right foot to break the drivers side window from a vehicle which had been involved in atraffic collision in order to remove the driver.
## 45361                                                                                                                              EE used his rt shoulder to push an inmate away who was attacking another officer, and bring him under control. Hurting his rotary cup
## 45362                                                                                                                                                                  EE used left arm to lift himself off the ground while participating in firearms qualification. ()
## 45363                                                                                                                                                    EE used physical force to place inmate on hosp. Bedafter inmate assaulted another inmate-EE strained lower back
## 45364                                                                                                                                  EE used pic hold to keep client from hurting self-EE went to floor hitting rt knee then cleint starting bitting EE on left finger
## 45365                                                                                                                                                                                     EE used pic to free self from client and in pro- cess hurt lower back. Strain.
## 45366                                                                                                                                                                                                                 EE used powdered gloves and had allergic reaction.
## 45367                                                                                                                                                                                         EE used prybar to loosen dry ban - slipped and caught on rt little finger.
## 45368                                                                                                                                                                                          EE used right leg to pull himself closer to the desk he was sitting at ()
## 45369                                                                                                                                                   EE used stop sticks to stop car chase. Later, EE retrieved his sticks. Left knee began to stiffen and hurt later
## 45370                                                                                                              EE used the mild crate to step on in order to get in the chair and then center of milk crete broke. Fell on left side with her right foot/leg caught.
## 45371                                                                                                                                                                                 EE used the office telephone that had been used by a co-worker who had poison ivy.
## 45372                                                                               EE used toilet in men's room. Tail of t-shirt touched chemicals used for cleaning. EE tucked shirt in and chemical soaked through t-shirt and underwear and burned right buttock. ()
## 45373                                                                                                                                                              EE used unarmed self defense technique to gain control over a juvenile who was in the defensive mode.
## 45374                                                                                                                                         EE uses cane to ambulate, and while at work lost grip on cane. Pain started upon bending over to pick up cane. Lower back.
## 45375                                                                                                                                EE uses computer 6 hours/day, inverts wrist to usemouse in center of computer, right forearm and hand feels numb, weak and tingling
## 45376                                                                                                                                                                                      EE uses computer atleast 5-6 hours a day; complains of pain and numbness; cts
## 45377                                                                                                                                                                                        EE uses computer constantly-having numbness in thumb and rt hand wrist area
## 45378                                                                                                                                                                EE uses computer heavily in scope of her job. EE has pain in left and right hands, wrists, and arms
## 45379                                                                                                                                                                       EE uses computer on a regular basis, pain gradually increased & was notably worse on 11-20-8
## 45380                                                                                                                                                                                                               EE uses computer repetitively, pain in neck and back
## 45381                                                                                                                          EE uses crutches to walk. EE was walking back to her desk when one of her crutches got caught in a hole in the floor causing her to fall.
## 45382                                                                                                                                                                            EE uses floor machine daily cleaning floors, left wrist began hurting... Sharp pains ()
## 45383                                                                                                                                                                                                                                EE uses hooks to pull out bleachers
## 45384                                                                                                                                                                   EE uses sign lanuguage. Has tingling sensations infingers and pain radiating from palm to wrist.
## 45385                                                                                                                     EE uses the computer frequently without a wrist board which has caused a knot on her wrist. Recently she has found another knot. See log notes
## 45386                                                                                                                                                                     EE using a drill with a phillips head bit and it slipped and punctured tip of rt third finger.
## 45387                                                                                                                                 EE using a grinder on wall-window cord blown from inside windown sill into grinder causing grinder to jerk and hit EE in the face.
## 45388                                                                                                                  EE using a hammer to drive a steel rod into groundto stabilize a plastice wtr line and cut off valveand missed rod and hit left knee with hammer.
## 45389                                                                                                                                                                                                        EE using a wrench that slipped and his hand hit the wall ()
## 45390                                                                                                                                                          EE using back-pack blower in coliseum parking deckwhen he backed into curb and fell breaking his left hip
## 45391                                                                                                                                                                     EE using bathroom, when she stood up and rotated her both to the right, heard her lt knee pop.
## 45392                                                                                                                                                                                        EE using bolt cutters in awkward position and popped shoulder out of joint.
## 45393                                                                                                                      EE using bolt cutters on 6th floor to remove a malfunctioning padlock, on port window, when he cut lock flew off & hit him in head. Cut head.
## 45394                                                                                                                                                                                                EE using chain saw to cut limb-bending over and cut left upper leg.
## 45395                                                                                                                                                                              EE using chainsaw to cut wood and stacking for 3 consecutive days causing back strain
## 45396                                                                                                                 EE using chair to reach a box of uniforms, fell backwards onto floor hitting her lt shoulder on two laundry carts, bruising lt thigh, hitting head
## 45397                                                                                                                                                                              EE using chemicals (2-thiocyanato pyrrole &absored through gloves & spread over palms
## 45398                                                                                                                                                      EE using chemicals to clean pool (penpox) changed to bleach without proper rinsing. EE inhaled the chemicals.
## 45399                                                                                                                                                 EE using computer-stood up to get disk out of machine-went to sit down and missed chair falling on concrete floor.
## 45400                                                                                                                                                                    EE using cordless drill to mount hasp screw slippdcausing bit to penetrate EE's lt index finger
## 45401                                                                                                                   EE using crank at foot of bed. Hand slipped and hitback of head against foot board. Bruise on back of head. No difficulty moving rt hand/fingers
## 45402                                                                                                                                                                                                          EE using file cabinet and sharp edge on drawer cut arm ()
## 45403                                                                                                                                                       EE using force on inmate - injured by unknown inmate person in scuffle and was spit on by inmateon the neck.
## 45404                                                                                                                                                  EE using force on inmate in library, he struck hishead & left side elbow against bookcase when inmate pushed him.
## 45405                                                                                                              EE using force on inmate who had in her possessionglass from coffee pot, not exactly sure how or whengot cut, observed after force. Left ring finger.
## 45406                                                                                                                                                               EE using force to put inmate on floor EE hit rt knee on concrete as inmate was being placed on floor
## 45407                                                                                                                                       EE using force to restrain inmate, during strugglehe scratched his right hand and left knee by unknown object/unknown person
## 45408                                                                                                                                                     EE using forklift to position specimen in machine and speciment tipped over catching EE's arm between machines
## 45409                                                                                                                                                                       EE using glass pipette to transfer formic acid; upon recording notes, stinging on rt forearm
## 45410                                                                                                                                                              EE using hammer daily to put metal/plastic tops soles os shoes has caused pain in left middle finger.
## 45411                                                                                                                                                                    EE using handrails to walk down steep steps when the muscle in rt leg, knee & calf area pulled.
## 45412                                                                                                                  EE using issued highway patrol flashlight to get road number from a sign while working a collision. EE struck self in front teeth with flashlight
## 45413                                                                                                                                                                           EE using keyboard & mouse and now has pain in right hand. Improperly set up work station
## 45414                                                                                                                                                                                                                        EE using knife and cut left middler finger.
## 45415                                                                                                                                                                               EE using knife to pry open frozen foods for animals-knife slipped and cut left hand.
## 45416                                                                                                                           EE using lift to help client-lift wouldn't turn good & heg hit bottom pannel of tub causing lift to tilt striking EE's left arm/shoulder
## 45417                                                                                                                                            EE using metal working lathe, workpiece metal tubebent & started whipping around, then struck EE shoulder on right side
## 45418                                                                                                                                                                                                EE using microfilm and when getting up hit head on corner of table.
## 45419                                                                                                                                                           EE using mop, mop slipped, EE fell on floor on rt arm & knee. EE sent to lmh er for right shouler injury
## 45420                                                                                                                                                                              EE using new keyboard and experienced rt elbow pain extending both to wrist and hand.
## 45421                                                                                                                                                        EE using numberic keypad on computer to verify invoices for payment, hand and arm slightly numb up to elbow
## 45422                                                                                                                          EE using participation on a use of force, he was accidently struck on top of his head with a baton a fellow officer. Injured top of head,
## 45423                                                                                                                                                  EE using phone when extremly loud noise caused excessive pain in lt ear. EE complained of ring- ing noise in ear.
## 45424                                                                                                                                                                                               EE using physical force to subdue unruly inmate and injured his back
## 45425                                                                                                                                                                                                                   EE using pitch fork for mulch when back went out
## 45426                                                                                                                                                                                             EE using pocket knife to cut a hose it slipped and cut rt index finger
## 45427                                                                                                                                                                                     EE using pry bar to remove clutch on door, pry barslipped, landing on rt wrist
## 45428                                                                                                                                                                 EE using pryboard to lift freezer so helper could attach legs & pulled back when he lifted corner.
## 45429                                                                                                                                                                         EE using razor blade trying to break down card board box when blade slipped & cut her hand
## 45430                                                                                                                                                                                        EE using sander when sander kicked back and cut EE on upper part of rt leg.
## 45431                                                                                                                                       EE using saw to cut metal door-when turned off and removed safety glasses to brush metal off faceshavings went into left eye
## 45432                                                                                                                                                                                                     EE using scissors to remove metal cap and cut left forefinger.
## 45433                                                                                                                                                                EE using security phone to gain access for inspection, cut forearm on security phone box metal edge
## 45434                                                                                                                                                                                          EE using shovel to unload gravel from back of trk over strained rt elbow.
## 45435                                                                                                                                                                                                          EE using shower brush machine and strain lower left back.
## 45436                                                                                                                                                                           EE using sledge hammer and a small piece of metal came off pin and hit EE on the rt shin
## 45437                                                                                                                                                                   EE using sledge hammer to break iron gate, head of hammer came off, EE's hands hit brick walkway
## 45438                                                                                                                                                                                    EE using sprayer, another EE accident pulled on sprayer injuring EE shoulder ()
## 45439                                                                                                                                                                                       EE using steel tape measure released by button accidentally tape cut rt hand
## 45440                                                                                                                                             EE using the computer, making copies, distributingmail, answering phone had caused pain in elbows, wrist and shoulder.
## 45441                                                                                                                                                                                        EE using therapeutic hold on client who bit EE on left hand middler finger.
## 45442                                                                                                                                                                                          EE using time clock for filing-when clock fell offcounter onto EE's hand.
## 45443                                                                                                                            EE using torch when it messed up. EE working on torch, didn't realize pants on fire, when he saw fire he slapped at it burnong his hand
## 45444                                                                                                                                EE using tow motor to lift product, a bottle of tile cleaner fell out of box, fork lift split openbottle splashed into EE right EE.
## 45445                                                                                                                                                                                                    EE using washing machine and got finger smashed by top breaker.
## 45446                                                                                                                                                                 EE using x-acto knife to but brochure and left index finger protuded beyond edge of ruler & sliced
## 45447                                                                                                                         EE usually switches weeks packing books to go to colleges-other EE is on lt duty and the increase in workload lead to strain in upper back
## 45448                                                                                                                                                                         EE utilized latex gloves to clean up brass shell casings, had allergic reaction to gloves.
## 45449                                                                                                                                                          EE utilizes computer daily. Pain in left shoulder, arm and finger hurting. Sharp spasms in shoulder area.
## 45450                                                                                                                                                                                              EE vac carpet on steps, lost balance and twisted his upper left thigh
## 45451                                                                                                                                                                                                                         EE veh didn't stop and hit ov in the side.
## 45452                                                                                                                                               EE veh in line of traffic-hit in rear by another vhe which knocked EE veh into another veh resulting in back strain.
## 45453                                                                                                                                                                                                  EE veh parked on emergency strip-ov skidded on iceand hit EE veh.
## 45454                                                                                                                                                                                                                     EE veh sitting at stoplight hit in rear by ov.
## 45455                                                                                                                                                                                                          EE veh struck in rear by another veh causing neck strain.
## 45456                                                                                                             EE vehicle became stuck in the snow and ice while trying to turn into a driveway. He got out and tried to push the car backward the car rolled on leg.
## 45457                                                                                                             EE vehicle chase, suspect jumped & ran on foot ranbehind private residence & fell in mud causing rt leg to extend forward. Hyper extended back rt leg.
## 45458                                                                                                                                                  EE vehicle ran off the road, struck a tree and a utility pole, fracture to ribs on right side, rightelbow swollen
## 45459                                                                                                                                                           EE vehicle stopped a light, another car hit the car behind EE & that car hit EE........ No injury.... ..
## 45460                                                                                                                       EE vehicle struck another car enroute to prison facility, fx'd lt collarbone, fx lt forearm, fx lt shoulder blade, fx rt femur (in 2 places)
## 45461                                                                                                                                   EE vehicle struck another vehicle while attemptingto back into proper parking space, other vehicle was parked in a proper space.
## 45462                                                                                                                                      EE vehicle was struck by another vehicle that came into EE lane injury to upper mid and lower back left shoulder arm and hand
## 45463                                                                                                                           EE vehicle was struck in rear by another vehicle causing his vehicle to strike back of car in frontstrain to back, neck, and right wrist
## 45464                                                                                                                                                           EE vehicle was struck in the rear by another vehicle while driving--pain in neck, back, lt shouldand leg
## 45465                                                                                                                                            EE visiting client home. When leaving accidently walked into a pine tree branch hanging over drive way. Scratched eyes.
## 45466                                                                                                                EE visiting clients home. Went to next residence to locate client. Upon knocking on door. Dog bit bit her without warning. 2 puncture lt leg - knee
## 45467                                                                                                                                                                                                          EE volunteered to move beds to another ward. Injured back
## 45468                                                                                                                                                                                                     EE w/ others was lifting a clock and EE felt pain in low back.
## 45469                                                                                                                                                                                       EE w/1:1 pt, pt began swinging at another pt, hit EE on left side of face ()
## 45470                                                                                                                            EE w/another staff were toileting and helping dresa patient and the patient suddenly went down and caused EE to hit hand on wheelchair.
## 45471                                                                                                                                                EE w/combative patient, patient grabbed EE by hairon lt side pulling head fwd hurting neck & lt handduring struggle
## 45472                                                                                                                                 EE w/the help on the driver lifted a ramp to place it back in storage and EE's finger was caught in between the brick wall & ramp.
## 45473                                                                                                                                                                                      EE wa attempting to close gate when gate stuck causing him to injury his back
## 45474                                                                                                                     EE wa in foot pursuit of arrested subject. EE jumped downhill to creek bank & on impact his right knee buckled under him. Injury to right knee
## 45475                                                                                                                EE wa in heavily wooded area en route to growing marijuana plants, EE crossed slick log approx 2 ft off ground and slipped off log wrenching r knee
## 45476                                                                                                                         EE wa loading personnel into truck and went to remove block from behind wheel-another EE did not see him and let down tailgate hitting him
## 45477                                                                                                                                  EE wa making routine home visit, got out of car, closed door, dog bit her on left calf muscle causing bruise and skin was broken.
## 45478                                                                                                                                   EE wa on post #19 & ppv #2. He stood up too fast out of truck #19 to do post duty and struck his head on top of the door jam. ()
## 45479                                                                                                                                                   EE wa participating in required physical fitness run and as he was running he felt a sharp pain in his left leg.
## 45480                                                                                                             EE wa performing ususal assignment when she began experience soreness and tightness in l hand and pain in finger when typing, flexing and folding fing
## 45481                                                                                                                                                        EE wa placing horse for bone scan that was not cooperative-when beingm oved horse stepped on EE'sleft foot.
## 45482                                                                                                                                                                          EE wa pushing cart back to its usual site, back wheel came off and cart leaned backwards.
## 45483                                                                                                                                                                                       EE wa putting chemical mixture onto press and got chemicals in eyes and face
## 45484                                                                                                                                                                        EE wa putting pic hold on a pt both EE and pt fellto the floor and knee striking the floor.
## 45485                                                                                                                                                                                                                               EE wa rear ended by another vehicle.
## 45486                                                                                                                          EE wa sgiving a patient some medi, when the pt got aggressive and fell to the floor. As falling the pt scratched EE on the upper forearm.
## 45487                                                                                                                                                                                                                    EE wa shit in the head w/a chair by a juvenile.
## 45488                                                                                                                          EE wa smoving files from one file drawer to another had 2 drawers open, attempted to close bottom and upper drawer closed on his fingers.
## 45489                                                                                                                                                        EE wa son hwy 74 east obseving inmates work when EE went to back up he turned his neck and EE heard it pop.
## 45490                                                                                                                                                                                                                                 EE wa spiking 30lk of water in lab
## 45491                                                                                                                                                     EE wa standing on the rt side of pt trying to turn her, pt was very contracted and EE felt pain in lower back.
## 45492                                                                                                                                                                                                                                          EE wa walking down steps.
## 45493                                                                                                                         EE waas trying to control and aggitated client andee grabbed clients wrist & client twisted EE rt wrist and pushed her lt thumb backwards.
## 45494                                                                                                                                                                                                                                       EE wacked head on guard rail
## 45495                                                                                                                                      EE wad adjusting valve on machine-had to climb andreach high above head and pull himself around partof machine- strained back
## 45496                                                                                                                                              EE wading in goose creek, lost footing, contacted left hand on rock, resulting in laceration to base of left thumb ()
## 45497                                                                                                                                                      EE waiting at light to complete drive home from work-related meeting, another vehicle rear-ended her vehicle.
## 45498                                                                                                                                                                             EE waiting at stop light vehicles crashed and swerved into EE's van-hurt back and neck
## 45499                                                                                                                                                                EE waiting for client in front of building, EE movdsome equipment and pain started to occur in back
## 45500                                                                                                                                                                              EE waiting for fan to stop turning - leaned in to look at belt - left hand got caught
## 45501                                                                                                                EE waiting for fellow EE to driver car down for anoutside work assignment. As EE walked near a window to look out she tripped over a block of wood.
## 45502                                                                                                                                  EE waiting in traffic when the truck was struck from behind by another vehicle, causing a sore neck, back of head and lower back.
## 45503                                                                                                                              EE waiting to make a turn into driveway of doc offender when offender rear-ended officer mcallister - pain in neck, back and shoulder
## 45504                                                                                                                                                                        EE wake up one morning with something in his eye. Object scratched eye, causing severe pain
## 45505                                                                                                                                                                                                      EE wal loading brush, stepped off truck and twisted lt ankle.
## 45506                                                                                                                                                    EE wal pulling a wagaon of canned food-got to closed to another wagon and tripped and fell injuring rt big toe.
## 45507                                                                                                                                EE waling behind person after supper, floppin his hands rocking back tried to catch him from fallinginjured lower, rt side of back.
## 45508                                                                                                                                                                                     EE waling into office slipped on slick spot on thefloor and fell on left side.
## 45509                                                                                                                                                                                               EE waling on concrete sidewalk and slipped and fell hitting forhead.
## 45510                                                                                                                                                                                             EE waling through parking lot slipped and fell on ice breaking rt leg.
## 45511                                                                                                                                                              EE waling up to stair steps, turned quickly & started bak down - knee twisted & poppped. Wrist & knee
## 45512                                                                                                                                       EE walk down stairs with both hands full, lost footing and fell down. Week later knee started hurting. Minor sprained ankle.
## 45513                                                                                                               EE walk-in freezer to get meats for breakfast mealentered walk-in freezer her shoe froze to floor causing her to pitch forward. Rt knee bruised/skin
## 45514                                                                                                                                                                           EE walked about 5' from desk-turned left & fell hit right side-scratched face-arm & knee
## 45515                                                                                                                                                                                                                   EE walked across floor when EE's knee gave away.
## 45516                                                                                                                                                                                              EE walked across mat and fell to the floor injuring rt knee and elbow
## 45517                                                                                                                                                                                                              EE walked across parking lot and slipped on oil spot.
## 45518                                                                                                                                  EE walked across snow to get to sidewalk, when EE stepped on side walk slipped and fell forward catching self on hands and knees,
## 45519                                                                                                                                                      EE walked across street to pick up courier mail, when he stepped across water in ditch and fell on left knee.
## 45520                                                                                                                                                               EE walked across the street in hopes to arrest an absconder & was bit in the left rear leg by a dog.
## 45521                                                                                                                                                                                            EE walked across wet floor--slipped and fell on face injuring lt eyelid
## 45522                                                                                                                                  EE walked across wet grass and was getting in van when foot slipped on running board and he caught him self with forearm on seat.
## 45523                                                                                                                                                     EE walked around table and fell prone on elevated stage. Three weeks later she went to EE clinic for treatment
## 45524                                                                                                                                                                  EE walked around the van, started back to bldg slipped & fell on ice injuring rt elbow and wrist.
## 45525                                                                                                                                                                                                                      EE walked away from desk and twisted lt ankle
## 45526                                                                                                                                                     EE walked between desk and trash can in adjacent office and hit sharpe pointed edge of trash can with left leg
## 45527                                                                                                                                                             EE walked by maintenance vehicle that had ladder protruding from rear of truck. EE hit head on ladder.
## 45528                                                                                                                                                                                                             EE walked by patient and patient slapped staff in face
## 45529                                                                                                                                                                                                            EE walked by roll of chain fence and struck her ltfoot.
## 45530                                                                                                                                                                                                EE walked by the pit and stepped on the side of itand turned ankle.
## 45531                                                                                                                                                    EE walked down stairs inside peabody hall-slipped on recently waxed floor-fracture left ankle contusion to head
## 45532                                                                                                                                                              EE walked down stairs-once down stair went to takea couple of steps and had pain shooting down rt leg
## 45533                                                                                                                              EE walked down steps near her building reporting to work when she slipped on the steps & fell hurting her left hip, buttock and back.
## 45534                                                                                                                        EE walked down steps when he stepped down off the curb his right knee gave away causing him to fall down on the pavement with a lot of pain
## 45535                                                                                                                         EE walked down the housing unit hall to check on student upon stepping onto the hall floor, EE slipped on wet floor that had been flooded.
## 45536                                                                                                                                                                                                      EE walked home in snow at the end of shift. Frost biten feet.
## 45537                                                                                                                                                                                                            EE walked in building & slipped, falling onto wet floor
## 45538                                                                                                                      EE walked in day room- tried to open resident fingers who was on the floor in a fit- resident bit EE on left lower wrist, broken bruised skin
## 45539                                                                                                                                                                                                         EE walked in front of fan and it blew something in his eye
## 45540                                                                                                                                                           EE walked in rm when existing slipped on recently mooped floor twisting rt foot and falling to the floor
## 45541                                                                                                                          EE walked in the broom closet and went to get somepaper for the inmates on the unit and brushed handagainst the metal top of the cabinet.
## 45542                                                                                                                                                                          EE walked in the receiving room and heard a hissing noise. EE went to get his supervisor.
## 45543                                                                                                                                        EE walked in the side entrance in from rain and slipped as EE was about to go upstair-twisted rt arm and right side of body
## 45544                                                           EE walked in woods looking for turkey baiting violations. The next morning found 2 embedded ticks, 1 on chest and 1 on leg. 4/16/11 EE had severe rash on stomach & wrist he thought from tick bites. ()
## 45545                                                                                                                                                              EE walked inside with wet shoes and slipped, catching herself with her rt foot spraining rt great toe
## 45546                                                                                                                                                                                      EE walked into a bench in the hallway of spruce cottage and injured her knee.
## 45547                                                                                                                EE walked into a building stepped on metal door stop w/lft foot turned over ankle lost balance andfell on rt leg, knee shifted hitting the concrete
## 45548                                                                                                                                                            EE walked into a cabinet lock hasp located in the wood cutting room and cut the center of his forehead.
## 45549                                                                                                                                                                      EE walked into a caution sign posted on a recentlyinstalled power pole in heavy traffic area.
## 45550                                                                                                                                                                                            EE walked into a ceiling suspended tv set strikingthe crown of his head
## 45551                                                                                                                                                                                                               EE walked into a corner of desk injuring her lt side
## 45552                                                                                                                                                                                    EE walked into a guidewire he was going to the homeless shelter to check curfew
## 45553                                                                                                                                            EE walked into a hole in the floor caused by construction; fell forward hitting her stomach; 5 mos pregnant at the time
## 45554                                                                                                                                                                                                    EE walked into a partially closed garage door cutting his head.
## 45555                                                                                                                                   EE walked into a piece of glass that was being cleaned EE grabbed the piece of glass before it hit the ground cutting left thumb
## 45556                                                                                                                                                                                                                               EE walked into a pole and cut rt eye
## 45557                                                                                                                                                                           EE walked into a room where aggresion was going on. EE was putting resident in restraint
## 45558                                                                                                                                                                                                             EE walked into a wall injuring her nose and left wrist
## 45559                                                                                                                                                                EE walked into an office and slipped. When walkingback into hallway the she fell and twisted ankle.
## 45560                                                                                                                                                               EE walked into bathroom in sgt's office & slipped causing left leg to slip backwards & away from him
## 45561                                                                                                                                                                   EE walked into bioinformatics lobby and slipped on wet floor injury to right ankle and lower leg
## 45562                                                                                                                                                               EE walked into blue room to change resident linensresident came towards EE jerking her rt upper arm.
## 45563                                                                                                                                             EE walked into boiler room and slipped on steps and laned on right buttock. Boots were wet causing EE to slip and fall
## 45564                                                                                                                                                                            EE walked into building and slipped on a slippery area and fell on both knees and hands
## 45565                                                                                                                                                                                               EE walked into building and slipped on wet floor and strained rt leg
## 45566                                                                                                                                                                        EE walked into building, slipped and fell on wet floor from rain - side and back were hurt.
## 45567                                                                                                                        EE walked into client's room and slipped on feeding on floor, slid sideways across floor and fell against the dresser hurting hips and legs
## 45568                                                                                                                                                                   EE walked into control cener and laid pad down, bent over - raised up back slipped. Injured back
## 45569                                                                                                                                                                                                  EE walked into dark room, hit left knee on bottom on clients bed.
## 45570                                                                                                                                                                                   EE walked into dinningroom and slipped on floor, no wet floor sign was in place.
## 45571                                                                                                                                                                                                                                                EE walked into door
## 45572                                                                                                                                                                         EE walked into doorframe leaving office 1 inche incision to forehead requiring 6 stitches.
## 45573                                                                                                                                                                                      EE walked into extended arm of lab chair near abdomen causing EE to twist leg
## 45574                                                                                                                                                                                                    EE walked into foyer and slipped on wet floor hitting her head.
## 45575                                                                                                                                                                       EE walked into freezer to supervise an inmate, and she stepped on a patch of ice and slipped
## 45576                                                                                                                                      EE walked into front entrance, pushed back of bodyagainst door to open it. Left first finger slippedinto hinged edge of door.
## 45577                                                                                                                                                                   EE walked into garage and almost fell into pit- turned quickly to avoid fall and twisted rt knee
## 45578                                                                                                                                                EE walked into gate house and eyes began tearing and became red and irritated. Floors were just cleaned with clorox
## 45579                                                                                                                                                                                                            EE walked into glass door and cut nose and bruised chin
## 45580                                                                                                                                                                                                        EE walked into his office and hit his leg on a chair corner
## 45581                                                                               EE walked into kitchen area in 117. Returned though room 117 doorway and slipped. It looked as if there was grease on the floor from the previous days staff development lucheon. ()
## 45582                                                                                                                                                                                                    EE walked into kitchen at the atrim and twisted her left ankle.
## 45583                                                                                                                                                                                   EE walked into latch that was sticking out of deskdrawer when leaving sgt office
## 45584                                                                                                                                                                         EE walked into leg rest of wheelchair. Fell hitting right side of breast and hip on floor.
## 45585                                                                                                                                          EE walked into library and slipped on waxed flor; when doing so, twisted left knee causing sharp pain and burning feeling
## 45586                                                                                                                                                                                                       EE walked into machine & cut her forehead on a coil of wire.
## 45587                                                                                                                                                              EE walked into office to give message to anderson, slipped and fell, hurt right knee and right elbow.
## 45588                                                                                                                                  EE walked into physician bldg & slipped on marble floor located ground floor near elevators injuringrt wrist, ankle, knee & elbow
## 45589                                                                                                                           EE walked into program building and floor was slprwalking slowly both feet slipped from under EE, EE tried to break fall hands behind EE
## 45590                                                                                                                                                                                            EE walked into restroom and passed out, hit her head & broker her wrist
## 45591                                                                                                                                                                            EE walked into restroom and slipped in unknown substance and fell hitting head and knee
## 45592                                                                                                                                                    EE walked into restroom and went to turn on water and slipped on wet floor-grabbed counter to keep from falling
## 45593                                                                                                                                                                        EE walked into restroom slipping on wet floor resulting in falling and hittinghead on sink.
## 45594                                                                                                                          EE walked into restroom, EE tripped over rock that was bing used to prop open the door. Fell down, injuring right elbow and right knee ()
## 45595                                                                                                                                                                EE walked into restroom-floor was wet and her feet went out from underneath her-injury to shoulder.
## 45596                                                                                                                                            EE walked into room of a resident to approach bed, EE slipped and fell. EE states floor was wet and no caution sign up.
## 45597                                                                                                                                                                           EE walked into room to retreive jacket and slipped and fell on tailbone due to wet floor
## 45598                                                                                                                                                                              EE walked into room-looked up to speak with an EE & stepped off a step & turned ankle
## 45599                                                                                                                                                                      EE walked into spider web and a brown spider bit him on crown of head. Injury to back of head
## 45600                                                                                                                  EE walked into storgae room to put supplies away stool was partially in doorway EE tripped over stool fell into wall hitting rt side of forehead.
## 45601                                                                                                                                                                     EE walked into the EE dining hall and slipped and fell on the floor due to wax being on floor.
## 45602                                                                                                                      EE walked into the break room the floor had just been mopped and was still wet EE slipped and fell landing in kneeling position on both knees
## 45603                                                                                                                                                        EE walked into the building after it had been raining and the floor was wet and EE fell. Back, arms, hands.
## 45604                                                                                                                                                                                            EE walked into the building and it smelled like bug spray. No injuries.
## 45605                                                                                                                                                       EE walked into the classification office and un- aware the floor was wet and slipped and fell on her knee. .
## 45606                                                                                                                                                           EE walked into the corner of a dictionary holder that was hanging on the side of a desk; injured rt arm.
## 45607                                                                                                                                                                                                 EE walked into the door of childrens schedule board and cut scalp.
## 45608                                                                                                                                                                                                                   EE walked into the handle of vise-hitting thigh.
## 45609                                                                                                                                        EE walked into the lobby and trip over a mat that someone had rolled up and put in door. EE fell on both knees and rt elbow
## 45610                                                                                                                 EE walked into the restroom and fell to floor twisting her leg and hitting her head against the door. Rt knee strain/head/back surgery 10/18 *****
## 45611                                                                                                                                           EE walked into the student ctr on lee campus and ran into a pole with my face, nose, and forehead, head. Fractured nose.
## 45612                                                                                                             EE walked into the women's restroom in the admin building and slipped on wet/oily spot - abrasions & bruises-buttocks, knot-right inner medial buttock
## 45613                                                                                                                                                         EE walked into to a student's room to remove a matress from obseration view and student spit in EE's face.
## 45614                                                                                                                                                                                            EE walked into trailer and fell through the floor injuring rt leg/knee.
## 45615                                                                                                                                       EE walked into unit 4 side in ars day room, fell down into a split with left foot forward & right foot back, EE caught self.
## 45616                                                                                                                                                               EE walked into unit to get drink-foot slipped fromunderneath EE causing her to fall flat on her back
## 45617                                                                                                                                                                                                                               EE walked into wheelchair foot rest.
## 45618                                                                                                                                                                                     EE walked into work and slipped on ice covered sidewalk outside of courthouse.
## 45619                                                                                                                                                                                          EE walked off edge of set during power outage and possible cracked a rib.
## 45620                                                                                                                                                         EE walked off elevator and stepped on coffee spillcausing EE to fall to floor. Left arm and hand, lowback.
## 45621                                                                                                                      EE walked off elevator to her right & slipped & fell b/c of water on floor coming from leaking ceiling tile. EE injured right wrist/shoulder.
## 45622                                                                                                                                                                                                   EE walked off of curb and twisted both ankles straining rt ankle
## 45623                                                                                                                                                                                                  EE walked off ramp and fell injurying rt knee, hand, and lt ankle
## 45624                                                                                                                                                                             EE walked off the elevator, slipped on water that was in the floor, twisted right foot
## 45625                                                                                                                                                                                                   EE walked on mopped floor-slipped, twisted, and landed on floor.
## 45626                                                                                                                                                                                                                     EE walked on sidewalk, stubbed her toe & fell.
## 45627                                                                                                                                                                                              EE walked on wet floor and slipped and fell injured left knee and arm
## 45628                                                                                                                           EE walked onto dining room floor where wax was being removed and floor being mopped. Slipped and fell on back. Wet floor signs were out.
## 45629                                                                                                                                                                                    EE walked onto uneven pavement fell on sidewalk hitting right hip, knee & hand.
## 45630                                                                                                                                                                                                        EE walked out door and fell down the steps scraping rt leg.
## 45631                                                                                                                                                           EE walked out from back dining hall and slipped on some water on the floor, fell and hit his right knee.
## 45632                                                                                                                                                                                  EE walked out of bldg and turned corner when left leg slid and left knee twisted.
## 45633                                                                                                                                                                                     EE walked out of controll room into day room and door closed on rt ring finger
## 45634                                                                                                           EE walked out of dining hall, after stepping off steps, stepped in hole with right foot, causing her to fall on her left hand. Possible fracture/cut. ..
## 45635                                                                                                           EE walked out of eagle card office (lee biology bldg) and turned rt to go to rrm 120b, slipped on slippery hand sanitizer substance on corridor floor ()
## 45636                                                                                                                                                      EE walked out of exit door of back entrance, EE tripped over cross tie and fell to ground on rt sdrt shoulder
## 45637                                                                                                                                                                                           EE walked out of exit door of dorm slipped on ice. Chipped bone in neck.
## 45638                                                                                                                                                        EE walked out of gas shed and stepped on gas hose & lost balance and twisted left ankle sprained left ankle
## 45639                                                                                                                                                          EE walked out of her office & ran into a concrete pillar & hit her head hard enough to leave a largeknot.
## 45640                                                                                                                                                                                  EE walked out of office and tripped down steps and hit face on door injuring nose
## 45641                                                                                                                                                                                 EE walked out of office into hall, stepped on a pebble, and turned right foot over
## 45642                                                                                                                                            EE walked out of office into hallway, slipped & fell on wet floor which had been mopped by wssu house keeping personnel
## 45643                                                                                                                                                                  EE walked out of the bathroom and turned the corner a black bug flew into rt eye. Burning occured
## 45644                                                                                                                                                                                                EE walked out of the office and slipped on the icy entrance ramp ()
## 45645                                                                                                                                                        EE walked out office door, for lunch, slipped, fell by elevator. Floor outside elevator area was slippe-ry.
## 45646                                                                                                                   EE walked out on the back loading dock to check for inmates outside during count and slipped on spilled grease and fell on lt knee and lt wrist.
## 45647                                                                                                                              EE walked out onto loading dock when door behind him was opened by another EE and door knob struck right elbow. Strain to right elbow
## 45648                                                                                                                                           EE walked out onto uneven walkway-heel of right shoe slipped & EE fell landing on left knee & lt hand sprain right ankle
## 45649                                                                                                                                                                                       EE walked outside and slipped on ice. Injured lt leg, both shoulders & neck.
## 45650                                                                                                                      EE walked outside of office. Came back in through same entry. Walked across wet carpet. Entered bathroom, slipped hit back, hips, elbow, head
## 45651                                                                                                                                EE walked outside on break, stepped down from entrance walkway, right foot stepped/slipped on sidewalk edge and caused her to fall.
## 45652                                                                                                                  EE walked outside onto the black rubber mat was wet caused by rain and her t foot slid and fell backwards on lt side of buttocks. Rt knee & back.
## 45653                                                                                                                       EE walked over to a table where ups delivered somes boxes and when she turned around she hit her lower part of leg on a cart that was there.
## 45654                                                                                                                                                                                           EE walked over to shower chair, when I turned around I fell to the floor
## 45655                                                                                                                                               EE walked pass client's lounge chair and another client's wheelchair, trippeed and fell injuring rt wrist, and knees
## 45656                                                                                                                                                                                                            EE walked passed desk and cut rt forarm on filing tray.
## 45657                                                                                                                                                                                                        EE walked passed metal box in control room and cutright arm
## 45658                                                                                                                                                                             EE walked passed wheelchair with client sitting inand stuck rt knee against foot rest.
## 45659                                                                                                                                                                               EE walked past residents wheelchair, the leg rest hit her right leg in the shin area
## 45660                                                                                                                                                                                 EE walked through area where spray adhesive had recently been used; inhaled vapor.
## 45661                                                                                                                                                                                     EE walked through door and ladder fell from behinddoor and hit EE on her back.
## 45662                                                                                                                                                                              EE walked through door way and slipped on floor and fell on the way to the wash room.
## 45663                                                                                                                                                                                                                       EE walked through fine dust from demolition.
## 45664                                                                                                                                        EE walked through front entrance, smelled strong odor immediateley. Eyes started itching immediatleand nose, blurred vision
## 45665                                                                                                                                                                        EE walked thru construction area getting lungs filled with dust EE has respiratory disorder
## 45666                                                                                                                                                                                      EE walked to car in parking lot, feet slipped on pavement and EE fell on back
## 45667                                                                                                                                                                            EE walked to conference room and slipped on wet floor injuring shoulder, arm and wrist.
## 45668                                                                                                                                                                                                           EE walked to drink machine on wet floor/ sign was posted
## 45669                                                                                                                                                                                                EE walked to his car, stepped on uneven pavement felt left knee pop
## 45670                                                                                                                   EE walked to the end of the clients bed and as shewas turning, the EE lost her balance and fell to the floor, onto her left wrist/hand/arm area.
## 45671                                                                                                                                                                   EE walked too close to edge of loading dock and fell off and landed on foot. Bruise to left foot
## 45672                                                                                                                             EE walked toward me hit with her fist in temple knocked my glassed. Temple and ear became red. Redness and soreness to temple and ear.
## 45673                                                                                                                                    EE walked up a grass covered hill toward the troop office. EE slipped on the frost covered grass and fractured his right ankle.
## 45674                                                                                                                                                              EE walked up ramp and stepped onto metal grate and lost his footing slipped and fell hard on rt elbow
## 45675                                                                                                                                    EE walked up the outside step on her way to a meeting, tripped when pavement slanted upward and impacted head on steel door. ()
## 45676                                                                                                                                                                   EE walked up to a Dr Who was lancing an abcess when blood and pus shot into her eye hiv exposure
## 45677                                                                                                                                                  EE walked up to client to advise him to take meds and client swung hitting EE on left/rt cheek, and left shoulder
## 45678                                                                                                                                                                                              EE walked up to consumer and EE was hit in the mouth by the consumer.
## 45679                                                                                                                               EE walked up to vacant office assistants desk withintention of placing book on shelf when unattach- ed board fell on lt foot big toe
## 45680                                                                                                                                                                                    EE walkedout of bldg when foot slipped on wheelchair ramp in front of building.
## 45681                                                                                                                                                                                                            EE walkign and caught foot in cord and twisted lt knee.
## 45682                                                                                                                                                                                               EE walkign on ward, attacked from behind by pt w/out any provacation
## 45683                                                                                                                     EE walkin down steps, steppeddown on brick pave- ment, bricks were uneven and foot turned outward and under. Right foot - top, side, and ankle
## 45684                                                                                                                                                                                                            EE walking & fell on uneven pavement injured left ankle
## 45685                                                                                                                                                                EE walking & foot turned over causing EE to fall fell on back straight down-shoulders thru hip sore
## 45686                                                                                                                                                                                 EE walking & slipped on wet floor in kitchen area fell & twisted ankle & left knee
## 45687                                                                                                                                                               EE walking & tripped on worn rolled up piece of carpet. Sell to floor hitting leg and ankle on floor
## 45688                                                                                                                                        EE walking across board placed by construction workers and fell-scraped both hands, elbows, kneesand pain in head and ribs.
## 45689      EE walking across couryard between a & b buildings, caught right foot in loose aggregate on walkway. Right foot stuck and fell onto left knee and right hand. Developed ping-pong sized knot on top of right foot, right foot bruised; right wrist twisted ()
## 45690                                                                                                                                                                                     EE walking across firing range-stepped into hole in ground twisting left ankle
## 45691                                                                                                                                                                                        EE walking across floor and slipped in water landing on hip and left wrist.
## 45692                                                                                                                                                       EE walking across floor on 15th floor, EE slipped on slick spot on floor and turned ankle. Injured rt ankle.
## 45693                                                                                                                                                                                 EE walking across floor to bulletin board and stumbled and fell on prosthetic leg.
## 45694                                                                                                                                                                                                                   EE walking across hall and turned left foot over
## 45695                                                                                                                                                                     EE walking across p/lot to enter bld and slipped and fell on patch of ice injuring left ankle.
## 45696                                                                                                                                                              EE walking across parking lot and stepped up on sidewalk-foot caught edge and fell on hands and knees
## 45697                                                                                                                                        EE walking across parking lot and tripped over anchor wire that was attached to tree and EE fell forward almost on her face
## 45698                                                                                                                 EE walking across parking lot infront of cafe. Stepped up on island, missed step, tripped, face hit ground striking upper lip, tooth chipped, back
## 45699                                                                                                                            EE walking across parking lot on way to work, stepoff sidewalk onto grass, and felt something snap, result broken bone in EE right foot
## 45700                                                                                                                                       EE walking across parking lot toward car to attendmeeting when wind blew a big tree limb down & intort foot causing a severe
## 45701                                                                                                                                                                EE walking across parking lot was struck by vehicle. Bumper struck right knee area. Rt elbow, ribs.
## 45702                                                                                                                                                                                                EE walking across room to get thermometer she twisted her lt ankle.
## 45703                                                                                                                                        EE walking across room, when tripped over electricheater cord, causing EE to fall forward, hitting the floor with left knee
## 45704                                                                                                                                                                                        EE walking across street & tripped on broken pavement & fell on lt knee/leg
## 45705                                                                                                                  EE walking across street from school of pub healtharrived to sidewalk in front stumped toe and fell forward, EE escortin candidate from interview
## 45706                                                                                                                                                                                   EE walking across the floor and fell-hitting head on a table and back on a chair
## 45707                                                                                                                                                                                         EE walking across the room and knee gave away falling on construction set.
## 45708                                                                                                                                                 EE walking across the street-stepped up on sidewalk and rt foot slipped-lost balance and fell on rt hand and knee.
## 45709                                                                                                                                                                                EE walking across wet floor and slipped. Broke fall with wrist against the wall. ()
## 45710                                                                                                                     EE walking along back of lake, slipped on rock near a boat, falling, then landing on the boat with shoulder EE 252 578 5733 sx 5/21 arm pector
## 45711                                                                                                                                                                  EE walking along beside potato digger-while leaning rt ankle gave way and body fell onto machine.
## 45712                                                                                                                                   EE walking along curb, tripped & fell in parking lot causing abrasions to rt ankles, rt thigh, both knees & sore neck & shoulder
## 45713                                                                                                                                                                                                             EE walking and his right foot did not move with him ()
## 45714                                                                                                                                                                                                   EE walking and slipped and fell felt pain in legs hip and ankle.
## 45715                                                                                                                                                                                         EE walking and slipped on some oil and injured both knees and right wrist.
## 45716                                                                                                                                                                                       EE walking and stumbled and fell on street, rt knee swollen, rt hand bruised
## 45717                                                                                                                                                EE walking and stumbled or tripped on broken pavement, fell on face, scrapes on forehead to chin, scratched glasses
## 45718                                                                                                                                                                                           EE walking and tripped and fell on sidewalk landing on knees and ft arm.
## 45719                                                                                                                                                                              EE walking and tripped on the sidewalk falling on left shoulder, hand, wrist and arm.
## 45720                                                                                                                                                      EE walking and tripped over cord fell on rt knee caught self with left hand to prevent face from hitting wall
## 45721                                                                                                                                                                                    EE walking and tripped over rubber strip in door- way causing multiple injuries
## 45722                                                                                                                                                                  EE walking and tripped over uneven ground turning rt ankle and fell on ground hitting knees/hands
## 45723                                                                                                                                                                                           EE walking and turned foot over... Tried to catch herself with left hand
## 45724                                                                                                                                                                                EE walking around a ladder when light fixture fellon hit EE in the top of the head.
## 45725                                                                                                                                                                                             EE walking around corner and caught leg shin on corner of metal buggy.
## 45726                                                                                             EE walking around corner to get wheelchair during fire drill; another staff coming around corner with wheelchair when the wheelchair hit EE on the lower right leg. ()
## 45727                                                                                                                                                                   EE walking around exam table & tripped over the standing weight scale-fell & landed on left knee
## 45728                                                                                                                                                                        EE walking around in control area when she passed out & fell back hitting her head on floor
## 45729                                                                                                                                                                                            EE walking around patrons leg and hit head on number label and cut leg.
## 45730                                                                                                                                                                                                   EE walking around rec hall and stepped on glass inmud. Left foot
## 45731                                                                                                                                                                EE walking around site where class was to be held-slipped on slippery rocks and fell - fx rt ankle.
## 45732                                                                                                                                                                                             EE walking around the bachoe to get in and bumped head on buck bucket.
## 45733                                                                                                                                                                 EE walking around vehicle to unlock doors, felt sharp pain in upper left back area and lost breath
## 45734                                                                                                                                                                                         EE walking at a fast pace leaving office and fell sprain rt hand and wrist
## 45735                                                                                                                                                                          EE walking back after putting up wheelchair, EE twisted right foot, sprain to right ankle
## 45736                                                                                                                                                   EE walking back approached steps fell down steps twisting and scraped ankle - lt leg pulled some- thing in back.
## 45737                                                                                                                                                                            EE walking back country on sharp top mountain and noticed rash on back, chest and arms.
## 45738                                                                                                                         EE walking back from court of appeals after picking up documents, just walking next thing fell flat on face, nose, lip, finger, hand, knee
## 45739                                                                                                                                                                                     EE walking back from student lounge, slipped and fell on tile floor by stairs.
## 45740                                                                                                                                                                                                         EE walking back from the ic building and tripped and fell.
## 45741                                                                                                                                                                      EE walking back into building after fire drill stepped off the back walkway injury left ankle
## 45742                                                                                                                                                                                      EE walking back to bldg from lunch and tripped over uneven sidewalk and fell.
## 45743                                                                                                                           EE walking back to car-walked infront of maint. Truck parked on asphalt-lt foot hit muddy area & slipped & fell on both knees on asphalt
## 45744                                                                                                                                                                                                    EE walking back to desk and rt hand hit handle on paper cutter.
## 45745                                                                                                                                                                    EE walking back to office after parking service truck and turned left ankle walking across lawn
## 45746                                                                                                                                                                                   EE walking back to office and tripped in crack in sidewalk landing on left knee.
## 45747                                                                                                                                                                                                               EE walking back to shop wind blew trash into his eye
## 45748                                                                                                                                                            EE walking back to veh after making a traffic stopand stepped on uneven payment and twisted left ankle.
## 45749                                                                                                                                                                                                      EE walking back to work area and tripped and dislocated knee.
## 45750                                                                                                                                                             EE walking back to work station and caught shoe ontile floor-stumble and fell forward onto both knees.
## 45751                                                                                                                                                             EE walking back to work station when she stepped in a low spot on the ground and twisted her rt ankle.
## 45752                                                                                                                                                                                                               EE walking backwards & something bit him on left leg
## 45753                                                                                                                                                                                      EE walking backwards dragging surplus when a nail pierced bottom of left foot
## 45754                                                                                                                                                                                    EE walking backwards supervising inmates-balance was off-fell onto his back. ()
## 45755                                                                                                                                           EE walking backwards while blowing leaves, bumped by vehicle other EE was backing in. EE located in driver's blind spot.
## 45756                                                                                                                                                                                                  EE walking backwards with a chair and fell over housekeeping cart
## 45757                                                                                                                    EE walking behind a vfd unit at night while responding to a wildfire, limb released and slapping in EE face, swelling and pain, l eye scratched
## 45758                                                                                                                                                                                   EE walking behind physical plant and stepped on uneven asphalt injuring rt foot.
## 45759                                                                                                                                                                                           EE walking between bldgs & fell on sidewalk causing injury to both knees
## 45760                                                                                                                                      EE walking between copy machine and file shelving & tripped over step stool. Was carrying arm full of files. Fell on lft knee
## 45761                                                                                                                                                                                EE walking between trees when client ran up and grabbed EE's left hand and twisted.
## 45762                                                                                                                                     EE walking briskly down sidewalk by old cafeteria EE heel caught on curb and fell causing injury to right leg, hip, lower back
## 45763                                                                                                                                                                                                                        EE walking by counter top and hit rt. Hand.
## 45764                                                                                                                                                                                 EE walking by kit cooler, tripped & fell on left shoulder, left elbow & left knee.
## 45765                                                                                                                                                                 EE walking by receiving door, when inmate opened steel door causing EE to hit her rt arm and hand.
## 45766                                                                                                                                                                                         EE walking by tilt cooker & slipped on wet floor injuring rt hip- low back
## 45767                                                                                                                                    EE walking client down lane to sit down-saw bee's coming trying to get client out the way and tripped and fell on stomach/chest
## 45768                                                                                                                       EE walking client into dining room when client began to turn, went down to floor. To prevent fallee lifted client back up. Felt pull in back
## 45769                                                                                                             EE walking client to bathroom when client stepped on EE's rt foot causing EE to lose balance-EE att to regain balance when client stepped on left foot
## 45770                                                                                                                                         EE walking client to bathroom, client pulled back, causing EE to twist lt wrist, EE was trying to keep client from falling
## 45771                                                                                                                           EE walking client to bathroom-client stopped abruptly-EE grabbed back of client to keep from falling and bent 3rd/4th fingers on rt hand
## 45772                                                                                                                                                                               EE walking client to breakfast-client dropped to floor (collapsed)-pulling EE's back
## 45773                                                                                                                                      EE walking client to class when client lost balance-EE tried to hold on the belt to keep client frm falling and injured back.
## 45774                                                                                                                                                                               EE walking client to room-client fell-tried to catch client and back started hurting
## 45775                                                                                                                                                                  EE walking client to wheelchair when client fell causing EE to lose balance and fall into closet.
## 45776                                                                                                                                                                   EE walking client--client dropped to floor, pulling EE down to floor. EE injured buttocks & leg.
## 45777                                                                                                                   EE walking deaf student to financial aid office- looking at student while signing-EE tripped over uneven sidewalk fell on knees and both wrists.
## 45778                                                                                                                                                              EE walking dog outside to treatment area and dog pulled on chain-EE fell on ice and hit back of head.
## 45779                                                                                                                                                   EE walking down a long set of steps with rubber boots on when he slipped and fell on rt wrist. Injured rt wrist.
## 45780                                                                                                                                                                             EE walking down a ramp-stopped to talk to a student and slipped and fell on left knee.
## 45781                                                                                                                                                                     EE walking down a set of steps & slipped on ice patch - cut to left elbow, required 2 stitches
## 45782                                                                                                                                                     EE walking down a two tier three story flight of stairs half way down left knee buckled and felt share pain ()
## 45783                                                                                                                                                                                                  EE walking down aisle to managers office slipped and fell in oil.
## 45784                                                                                                                   EE walking down basement steps to check water gauges, bag of cans leaking liquid. EE slipped on step causing him to twist lt knee. Pain lt knee.
## 45785                                                                                                                                                                                   EE walking down concrete ramp stumble and fell injuring left ankle, rt knee/hip.
## 45786                                                                                                               EE walking down corridor of wake med. Water was on floor. Didn't see water slipped & fell on floorrt thumb & rt hip contusion, lower back contusion.
## 45787                                                                                                                             EE walking down embankment to examine wrecked vehicle. Foot caught in weeds as EE was walking. Freed foot while falling & twisted knee
## 45788                                                                                                                              EE walking down flight of polished steps whe EE lost footing and fell on buttocks, bounced down 3 steps, cracked cockyx, twisted foot
## 45789                                                                                                                  EE walking down flight of stairs sixth floor to fifth floor at 320 s salisbury st. He slipped on top step landed on rear end, back & right elbow.
## 45790                                                                                                                                                                                                               EE walking down flight of stairs, felt a pop in foot
## 45791                                                                                                                                                       EE walking down flight of steps, slipped and slid down several steps - put out right arm to catch herself ()
## 45792                                                                                                                                                                 EE walking down hall and slipped on wet area on the floor-rt side of body, both knees and rt hand.
## 45793                                                                                                                                                                EE walking down hall doing hourly checks, walked past pt, pt kicked EE & punched in face. Rt cheek.
## 45794                                                                                                                                                                                   EE walking down hall slipped and fell from salvia in floor landing on left knee.
## 45795                                                                                                                                                                                                            EE walking down hall slipped and fell hurting left foot
## 45796                                                                                                                                                                               EE walking down hall slipped on floor and fell into wooden table and stacked chairs.
## 45797                                                                                                                                                                                          EE walking down hall slipped on wet area injury right knee and lower back
## 45798                                                                                                                                                                                        EE walking down hall stepped in hole in floor herniated disc in lower back.
## 45799                                                                                                                                                                             EE walking down hall w/client-client turned very quickley and hit EE on head and neck.
## 45800                                                                                                                                                                       EE walking down hall when cleint came up behind eeand gave a krate chop to the back of head.
## 45801                                                                                                                                                                                   EE walking down hall when patient came from behindand kicked her in the lt knee.
## 45802                                                                                                                                                          EE walking down hall when rubber sole shoe stoppedcausing EE to fall. Injury to left knee and right wrist
## 45803                                                                                                                                                        EE walking down hall, foot flipped on waxed floor, fell on knees with left knee bearing brunt & left wrist.
## 45804                                                                                                                                        EE walking down hall, rt heel slipped causing footto rollover & EE fell injuring outside of foot, lt arm, ankle, both knees
## 45805                                                                                                                                                                                                         EE walking down hall, slipped and fll on knee and ankle ()
## 45806                                                                                                                                                                                                                      EE walking down hall, slipped on water & fell
## 45807                                                                                                                   EE walking down hall, tripped, fell hitting right arm and left knee on edge of wall. Lt knee osteochondral inj, low back strain, cervical strain
## 45808                                                                                                                                  EE walking down hall, when slipped on wet floor & fell, hitting door with head & nose, chin & lip hit cup & scrapping both knees.
## 45809                                                                                                                                                EE walking down hall-hall weeet hand been mopped feet went out from under EE. EE landed lt side. Acute back strain.
## 45810                                                                                                                                                    EE walking down hall-hit slick/wet spot on floor slipped and fell on tailbone-left hip-left elbow & right wrist
## 45811                                                                                                                                                                       EE walking down hallway and foot slipped-twisted rt ankle and fell on left knee and rt hand.
## 45812                                                                                                                                      EE walking down hallway and made sudden change in direction-lost balance and fell injuring left arm, shoulder and jammed chin
## 45813                                                                                                                                                                                EE walking down hallway and slipped & fell to floor, striking rt arm & hip on floor
## 45814                                                                                                                                                                            EE walking down hallway and slipped and fell on floor injuring left forearm, elbow, hip
## 45815                                                                                                                                                        EE walking down hallway and slipped and fell wateron floor in front of elevators. Severe sprain - rt ankle.
## 45816                                                                                                                                                 EE walking down hallway and slipped on a wet spot on the floor and fell jamming rt hand ring finger into the wall.
## 45817                                                                                                                                                       EE walking down hallway hit lt side of head on wall (light) sconce. ****iw elects monthly ttd benefits. ****
## 45818                                                                                          EE walking down hallway in front of her office, her hands were full, slipped, unable to catch herself and fell forward, hitting her head on wall and fell to her knees ()
## 45819                                                                                                                                  EE walking down hallway shoe caught on floor & EE fell face first hitting floor injury to face nose cut inside of mouth & rt knee
## 45820                                                                                                                                                                                              EE walking down hallway swinging arm and stuck object protruding out.
## 45821                                                                                                                                                                               EE walking down hallway to get mail and started having trouble brething and wheezing
## 45822                                                                                                                                                                        EE walking down hallway when a student coming out of a room in a hurry hit EE in the chest.
## 45823                                                                                                                                          EE walking down hallway when severe pain occured in lt knee, resulting in assitance from near by coworkers. Pain lt knee.
## 45824                                                                                                                                       EE walking down hallway, heel caught on carpet seamcausing EE to trip & fell, injured rt elbow, left pinkie finger, abdomon.
## 45825                                                                                                                                                                                                               EE walking down hallway, slipped & fell on left knee
## 45826                                                                                                                                                                                        EE walking down hallway, slipped and fell. Lt hip, hand, arm, and shoulder.
## 45827                                                                                                                                                                                                      EE walking down hallway-missed step between hall &copy center
## 45828                                                                                  EE walking down hillside to pick up litter, she slipped on some pine needles and fell on the ground. She twisted her right leg hurting the right upper leg just above the knee ()
## 45829                                                                                                                                                             EE walking down last level steps-foot slipped fromunder her. Tried to break fall-injured back and leg.
## 45830                                                                                                                              EE walking down newly mopped hallway turned cornerright foot slipped out from under EE. Resulting infall onto right hip & jerked head
## 45831                                                                                                                                                                                   EE walking down north hal & fell/slipped on apparently applesauce in hallway. ()
## 45832                                                                                                                               EE walking down parking lot to car, slipped on wet pavement. Landed on knee and slid down parking lothill 4 feet. Also injured foot.
## 45833                                                                                                                                                                                             EE walking down ramp and tripped on a slick spot falling on left knee.
## 45834                                                                                                                                            EE walking down ramp backwards pulling cart-stepped down and all weight went on one foot felt snap in left calf muscle.
## 45835                                                                                                                                                                   EE walking down ramp between avery & jones left foot twisted and turned inward injury left ankle
## 45836                                                                                                                           EE walking down ramp holding onto hand rail & carrying oxygen tanks when rail gave way, causing EE to be thrown to side twisting around.
## 45837                                                                                                                                                            EE walking down side of wet embankment and feet slipped out and lt arm out to break fall, felt riphurt.
## 45838                                                                                                                                                 EE walking down sidewalk & lt ankle turned lt (outside) as he stepped on edge of side walk, causing ankle to twist
## 45839                                                                                                                                                   EE walking down sidewalk and came thru gate and fell on the sidewalk, fractured nose, bruised both arms and legs
## 45840                                                                                                                                                                               EE walking down sidewalk and tripped and fell causing injury to left hand (fracture)
## 45841                                                                                                              EE walking down sidewalk behind bldg #3 & slipped on ice on sidewalk. EE fell on left side. When he stood up felt pain from hip to left side of knee.
## 45842                                                                                                           EE walking down sidewalk by old cafeteria, stepped in hole by pavement and fell on face, hit chest, both knees, right arm. Scratches to face, chest, kne
## 45843                                                                                                                                                 EE walking down sidewalk foot hit teh edge of uneven pavement and left ankle turned over causingee to fall forward
## 45844                                                                                                                                                                       EE walking down sidewalk twisted lt foot stumbled & fell contusion to chest, lt hand lt knee
## 45845                                                                                                                  EE walking down sidewalk when right foot stepped on sidewalk causing her rt knee to go out from under her, falling on her hands lt knee & lt side
## 45846                                                                                                                                                                            EE walking down sidwalk durning lunch time slipped and fell injury left knee right foot
## 45847                                                                                                                                                              EE walking down stairs and apparently lost footingand fell injuring right ankle sprain to right ankle
## 45848                                                                                                                                                                                        EE walking down stairs and fell injuring shoulder rt side, head, both knees
## 45849                                                                                                                                                          EE walking down stairs and foot heel got caught onstair tread making EE loose balance and twist leftfoot.
## 45850                                                                                                                            EE walking down stairs and foot slipped-grabbed for hand rail but missed, tumbled head first to nextlanding breaking fall w/left wrist.
## 45851                                                                                                                                                                          EE walking down stairs and lost balance and fell down stairs injuring left knee and ankle
## 45852                                                                                                                                                                                              EE walking down stairs and lost footing falling to bottome of stairs.
## 45853                                                                                                                                                                                             EE walking down stairs and missed last step and fell injuring rt wrist
## 45854                                                                                                                                                                                      EE walking down stairs and slipped on wet stairs and fell on buttock and back
## 45855                                                                                                                                                                     EE walking down stairs carrying fax machine and knee popped and gave way-EE fell to the floor.
## 45856                                                                                                                                                  EE walking down stairs in front of institution she missed on step causing her lt ankle to twist. Injured lt ankle
## 45857                                                                                                                EE walking down stairs outside brady building missed last step 1st landing fell on 2nd landing injurlower back, buttocks, right knee, leg and thigh
## 45858                                                                                                                                                                        EE walking down stairs to basement of avery bldg stepped onto stairs and left foot twisted.
## 45859                                                                                                                            EE walking down stairs when foot slipped-grabbed for the rail and jammed left hand/thumb. **close once final ppd pmt of 6/10/02 made***
## 45860                                                                                                                                                                                                                  EE walking down stairs when he twisted right knee
## 45861                                                                                                                             EE walking down stairs when she got halfway down foot slipped causing EE to land on tailbone & she grabbed rail injuring left shoulder
## 45862                                                                                                                                                                                   EE walking down stairs, fell & twisted ankle. Causing twisted, sprain left ankle
## 45863                                                                                                                                                                                EE walking down stairs, slipped and bounced down several steps landing on left side
## 45864                                                                                                                                                                                    EE walking down stairs, thought she was at the bottom, fell, fracture to leg ()
## 45865                                                                                                                                                                                            EE walking down stairs-foot slipped and fell hitting left knee on post.
## 45866                                                                                                                      EE walking down stairwell when he lost footing & slid down 4-5 steps-his heel caught & he felt pressure on spine-later pain in shoulders/back
## 45867                                                                                                                                  EE walking down steep bank & fell during landslideinvestigation fall caused a rock boulder to fall striking EE in head caused cut
## 45868                                                                                           EE walking down steep trail to check fishing activity, slipped, grabbed guard rail to stop fall and wrenched right arm back causing pain in collarbone/shoulder area. ()
## 45869                                                                                                                      EE walking down steps a co-worker was walking be- hind EE talking to him, EE turned towards coworker& missed a step and twisted his left knee
## 45870                                                                                                                                                                                                 EE walking down steps and fell hitting rt side of body on railing.
## 45871                                                                                                                                                                                                                 EE walking down steps and fell injuring left ankle
## 45872                                                                                                                                                                                                                     EE walking down steps and fell injuring rt leg
## 45873                                                                                                                                                                                                                   EE walking down steps and fell injuring rt thigh
## 45874                                                                                                                                                                              EE walking down steps and fell injuring rt/left ankle, shoulders, arms, legs and back
## 45875                                                                                                                                                                                         EE walking down steps and fell on last 6 steps; hit head on concrete floor
## 45876                                                                                                                                                                                                        EE walking down steps and foot twisted and hurt left ankle.
## 45877                                                                                                                                                                                                                        EE walking down steps and twisted rt ankle.
## 45878                                                                                                                       EE walking down steps at back single cell b when she slipped on a sheet of ice landing on her lt arm and back. Lt arm & shoulder, lower back
## 45879                                                                                                                                                                                             EE walking down steps in dark, mis-calulated last step and hurt ankle.
## 45880                                                                                                                                                                                   EE walking down steps in front of dorm h slipped and fell and twisted her ankle.
## 45881                                                                                                                                                                EE walking down steps in our office and reached last step, ankle just turned to side. Turned ankle.
## 45882                                                                                                                                                                                         EE walking down steps in rain & slipped & fell injuring left elbow and hip
## 45883                                                                                                                                                                           EE walking down steps of site ofc trailer, slipped on steps, fell backward onto steps ()
## 45884                                                                                                                           EE walking down steps rt heel caught bottom step EE holding shotgun in rt hand got twisted trying to keep balance & fell low back/rt hip
## 45885                                                                                                                                                                               EE walking down steps slipped on ice and fell straining rt shoulder and cut rt hand.
## 45886                                                                                                                                                                                  EE walking down steps tripped and fell injuring left side neck, shoulder and arm.
## 45887                                                                                                                                                                                   EE walking down steps when foot slipped turned to grab the rail and twisted back
## 45888                                                                                                                                                                          EE walking down steps when he slipped on ice and fell injuring shoulders, back, and knees
## 45889                                                                                                                                                 EE walking down steps with co-worker and fell down2 steps landing on buttock and left ankle twisted towards the rt
## 45890                                                                                                                                                      EE walking down steps, foot slipped, grabbed rail to keep from falling hurting rt shoulder and rt middle back
## 45891                                                                                                                                                                                 EE walking down steps, missed last two steps, fell striking both knees on concrete
## 45892                                                                                                                                                                                                     EE walking down steps, slipped and fell - tailboneand left arm
## 45893                                                                                                                                                                 EE walking down steps-right foot caught on step & EE fell hurting her right ankle & right shoulder
## 45894                                                                                                                                                                                 EE walking down stesp reporting to work-feet started slipping and fell down steps.
## 45895                                                                                                                                                                                   EE walking down the hall & feet slipped out from under her. The floor was slick.
## 45896                                                                                                                                                                  EE walking down the hallway to office when slippedand fell bruising rt knee & pain in rt shoulder
## 45897                                                                                                                                                         EE walking down the metal walkway which leads to the office-slipped and fell when walking through walkway.
## 45898                                                                                                                                  EE walking down the stairs to go home and tripped and fell; tried to use the rail to offset the fall and hurt her arm and hand ()
## 45899                                                                                                                     EE walking down the stairway, carrying the mail box, when his foot slipped & fell. Minor lacerationrt elbow, minor abrasion rt arm & shoulder.
## 45900                                                                                                                         EE walking down the stairway, her rt foot slipped she immediately attempted to grab the hand rail when rt foot twisted injurying rt ankle.
## 45901                                                                                                                                                                                                                    EE walking down the steps and twisted lft foot.
## 45902                                                                                                                                                                                 EE walking down the street and tripped over unevensidewalk and fell to the ground.
## 45903                                                                                                               EE walking down the street at corner slipped on a slick spot and feet went out from under her. EE landed on back and shoulder. When helped right arm
## 45904                                                                                                                                                                              EE walking down walkway and caught foot in the empty cylinder and fell to the ground.
## 45905                                                                                                                                  EE walking down walkway to parking lot - slipped on top when attempting break fall by using handrail - rt thumb - rt hip - rt leg
## 45906                                                                                                                                                                                                                 EE walking down wet marble stairs slipped and fell
## 45907                                                                                                                                                                       EE walking down wet stairs-slipped on last step & landed on rt leg/knee stairs wet from rain
## 45908                                                                                                                                                                                                         EE walking down wet steps & fell backwards hurtinglt wrist
## 45909                                                                                                                                                                                                   EE walking downstairs and slipped, turning right foot and ankle.
## 45910                                                                                                                                            EE walking downstairs missed step & fell 5-steps hit lt hand & top of head when trying to stop fallcontusion both knees
## 45911                                                                                                                                                                                            EE walking fast out of her office and tripped and fell on panel border.
## 45912                                                                                                                                                            EE walking fast to a code blue, he stepped on uneven surface, flet sudden pain in upper back & lt thigh
## 45913                                                                                                                                                                                                            EE walking frm car to bldg and slipped on ice and fell.
## 45914                                                                                                                                                                                                       EE walking frm car to the office and fell on uneven payment.
## 45915                                                                                                                                                           EE walking from bldg and tripped in brickyard and fell on left knee hitting rt frt leg on corner of step
## 45916                                                                                                                                                                                                       EE walking from bldg fell off the sidewalk and fx left foot.
## 45917                                                                                                                 EE walking from blue unit--when she turned the corner she was hit by a food cart being pushed by an inmate. Right lower leg bruise. Left leg pain.
## 45918                                                                                                                                                                                 EE walking from building; bee flew into face. Batted it away was stung on rt hand.
## 45919                                                                                                                                                                              EE walking from cafeteria & slipped on water in floor. Fell on left hip & pulled back
## 45920                                                                                                                                                         EE walking from car to building inwhich he works and was bitten by a fire ant. Rt. Hand forefinger knuckle
## 45921                                                                                                                                                               EE walking from car to service building...... Fell hitting mouth/nose/lt hand/lt knee, and rt elbow.
## 45922                                                                                                                                                                                  EE walking from car to work tripped at the curb on sidewalk injury over right eye
## 45923                                                                                                                                                                                         EE walking from car when foot slipped on acorns onice and fell on rt knee.
## 45924                                                                                                                                                            EE walking from car with folders/books and slippedon wet asphalt injuring left knee, rt hip and forearm
## 45925                                                                                                                                        EE walking from central unit to control center. Slipped and fell down landing on lt knee & hands. Injured lt knee and hands
## 45926                                                                                                                                                                                                              EE walking from dayroom slipped on floor fell on back
## 45927                                                                                                                                                           EE walking from dorm c to g/h dorm an insect hit her 3rd/4th fingers. Causing swelling to noted fingers.
## 45928                                                                                                                                                                     EE walking from dorm to lower part of yard and tripped down the steps outside part of lt foot.
## 45929                                                                                                                                   EE walking from epa facitlity to hospital, EE stepon uneven pavement EE lost balance and fell injureto right ankle and left knee
## 45930                                                                                                                                        EE walking from his car to his assignment which was tower #6. Slipped and fell on ice. Pain in lt arm, lt shoulder, & neck.
## 45931                                                                                                                   EE walking from his work area to another part of bldg. Entered area where floors were wet with feetslipped from under him. Injured back and arm.
## 45932                                                                                                                                                                                                            EE walking from library to class and sprained rt ankle.
## 45933                                                                                                                                                                                                                EE walking from meeting and debris went into rt eye
## 45934                                                                                                                                      EE walking from office to control office fell on wet floor causing EE to hurt side, arm & leg injured rt side, rt arm, rt leg
## 45935                                                                                                                                                                                         EE walking from one bldg to another and tripped and fell injury rt finger.
## 45936                                                                                                                                                                                                EE walking from one bldg to another on gravel and twisted rt ankle.
## 45937                                                                                                                                                                EE walking from one office another, EE hit her elbow on corner of wall as she turned out. Lt elbow,
## 45938                                                                                                                                                                           EE walking from one work area to another EE fell face down bruising elbows and left knee
## 45939                                                                                                                                                         EE walking from p/lot and foot got caught on uneven pavement which caused EE to twist left ankle and knee.
## 45940                                                                                                                                                                                                       EE walking from parking lot into work and twisted left ankle
## 45941                                                                                                                                                                               EE walking from parking lot stepped on ice patch and fell landing on hands and knees
## 45942                                                                                                                                  EE walking from parking lot toward bldg. Stepped off grass median onto curb, stepped on leaves & slipped, falling onto right knee
## 45943                                                                                                                  EE walking from storage room of the admin. Into office, slick spot on hard wood floor, therefore foot slipped and fell on floor on rt knee & arm.
## 45944                                                                                                                                    EE walking from testing room to office & crutch caught edge of desk. She fell and finger bent backwards/up. Landed on left hand
## 45945                                                                                                                                                                    EE walking from the butler bldg to p/lot and slipped and fell on ice-strained back, neck rt sde
## 45946                                                                                                                                                                             EE walking from trailer to post & stepped half on sidewalk & half off. Pop in lt foot.
## 45947                                                                                                                   EE walking fron outside into bldg. Her feet were wet & floor inside wet. EE slipped & tried to stop herself from falling grabbing rail- back/hip
## 45948                                                                                                                                                                                            EE walking hilly uneven terrain, slip, no fall to gnd, injured lf ankle
## 45949                                                                                                                                                                   EE walking in 2nd entrance around to elevator & slipped & fell to ground straining left shoulder
## 45950                                                                                                                                                EE walking in alpha dormitory to help clear yard EE stepped in a small hole and incline and fell on her right ankle
## 45951                                                                                                                                                                               EE walking in bldg and slipped in mayonaise that was on the floor injuring left knee
## 45952                                                                                                                                                            EE walking in camping area when something blew into right eye and EE unable to remove it independently.
## 45953                                                                                                                                                                                             EE walking in classroom falling over shoe laces injury right hand, hip
## 45954                                                                                                                   EE walking in door to clock in for work, carrying a soda, started to drop soda & grabbed for it & fell onto hands, knees, lt hip, rt foot, neck.
## 45955                                                                                                                                                                                      EE walking in from parking lot and stepped in large rock and twisted rt knee.
## 45956                                                                                                                                                                                   EE walking in front of hoffmeyer hall dining room she fell twisting her rt ankle
## 45957                                                                                                                                                                          EE walking in front of lipinsky and fell hard on both knees, two hands & face (right eye)
## 45958                                                                                                                                                                                              EE walking in front of stage and slipped and fell injuring left knee.
## 45959                                                                                                                        EE walking in hall on damp floor inmate had just mopped. Lt. Foot slipped, she fell on lt knee hittinging wooden shelf whith left shoulder.
## 45960                                                                                                                                                                                                   EE walking in hallway hit arm on doorway bruising rt hand/wrist.
## 45961                                                                                                                                                                        EE walking in hallway on her way to clean bathroomwhen client hit EE on left arm with fist.
## 45962                                                                                                                                                                                  EE walking in hallway slipped in spilled water on tile floor injury to head, neck
## 45963                                                                                                                                                                        EE walking in heavy brush/rock adjacent to walk became to ? And fell,, landing on left hand
## 45964                                                                                                                                         EE walking in hurried pace when her rt foot struckthe landscaping timber on premises. EE fell & hurtrt knee and lower hip.
## 45965                                                                                                                                                                         EE walking in kitchen to empty pitcher and slippedon wet floor-cut on elbow, body bruised.
## 45966                                                                                                                                                                                                 EE walking in lobby tripped and fell when foot gotcaught in carpet
## 45967                                                                                                                                            EE walking in office hallway turned corner and fell injury to right foot, knot and pain when walking, right hip bruised
## 45968                                                                                                                                                                                     EE walking in parking lot, stepped on pebble right ankle gave away and twisted
## 45969                                                                                                                                                                                                               EE walking in plbg shop, something flew in right eye
## 45970                                                                                                                                                                                    EE walking in the bell tower parking lot and fell face down on grassy embankmen
## 45971                                                                                                                                                                              EE walking in the cafeteria, slipped and fell on food that a student dropped on floor
## 45972                                                                                                                                EE walking in the library looking at floor trying to avoid carpet equp. There was a metal bar hanging over head and walked into it.
## 45973                                                                                                                                          EE walking in the p/lot and tripped on a coat hanger and fell on pavement injuring both knees, rt hand, side and shoulder
## 45974                                                                                                                                              EE walking in the parking lot, when tripped on a large rock & fell on knee. Bruised knee & upper calf just below knee
## 45975                                                                                                                                                                                                                  EE walking in wooded area, notice tick bite later
## 45976                                                                                                                                                                                                       EE walking inside the unit when a bug flew inside my rt eye.
## 45977                                                                                                                                                                         EE walking into bathroom after it had been mopped and slipped and fell on hip and buttock.
## 45978                                                                                                                                                                   EE walking into bathroom and slipped on a puddle of wax stripper on floor and turned left ankle.
## 45979                                                                                                                                                                     EE walking into bathroom, staff reaching for screefingernail accidently poked EE in right eye.
## 45980                                                                                                                                                                                                           EE walking into bldg and slipped on a thin piece of ice.
## 45981                                                                                                                                                                                                 EE walking into bldg and slipped on icy spot in front of the door.
## 45982                                                                                                                                                                                               EE walking into bldg and slipped on wet door mat falling on rt ankle
## 45983                                                                                                                                                                                                  EE walking into bldg slipped and fell landing on rt hand and back
## 45984                                                                                                                                                        EE walking into bldg-wiped feet on wet rug startedwalking and slipped and fell injured rt foot and rt side.
## 45985                                                                                                                                                                                                             EE walking into blgd-foot slipped and fell on rt knee.
## 45986                                                                                                                                                                         EE walking into building and slipped and fell in water injuring rt hand, arm, and fingers.
## 45987                                                                                                                                                                         EE walking into building and slipped and fell on black ice falling on left knee and elbow.
## 45988                                                                                                                                                            EE walking into building and stepped into fish pool(drooping 1ft)while on business and injured left leg
## 45989                                                                                                                                                                                     EE walking into building w/high heel shoes and slipped on a wet spot and fell.
## 45990                                                                                                                                                                                 EE walking into conference room from office & her leg gave out & she fell on floor
## 45991                                                                                                                                                                       EE walking into cubby hole, when he made the turn into cubby hole he twisted his right knee.
## 45992                                                                                                                                                                                                                  EE walking into door & tripped & fell on concrete
## 45993                                                                                                                                                                                                                      EE walking into hospital tripped and hit head
## 45994                                                                                                                                              EE walking into kendall bldg and stepped on pebbleor something and twisted ankle losing balance falling on left knee.
## 45995                                                                                                                                                                                                            EE walking into lobby and slipped on wet floor andfell.
## 45996                                                                                                                                                                                    EE walking into medlin building tripped and fell on steps EE twisted right foot
## 45997                                                                                                                                           EE walking into office tripped over threshold and fell down and blocked fall with left hand-pain in left ankle and wrist
## 45998                                                                                                                   EE walking into office, bumped fax mach. & paper went flying. EE twisted to catch a page & foot didnot move & EE heard pop in middle top rt foot
## 45999                                                                                                                                                                                      EE walking into office-slipped on ice on sidewalk. EE pulled muscles in back.
## 46000                                                                                                                                                                       EE walking into office-slipped on papers on floor causing EE to fall and hit rt hand on door
## 46001                                                                                                                         EE walking into record room at fast pace when caught her foot in leg of chair and fell down. Striking lt eye on chair and landing on side.
## 46002                                                                                                                                                             EE walking into research area & hit head on lift device when climbing around it to get to area of work
## 46003                                                                                                                                                                       EE walking into steam plant to report to work & slipped on mud outside of bldg. Injuring ear
## 46004                                                                                                                                                                               EE walking into the breakroom and slipped on floorhitting left elbow on atm machine.
## 46005                                                                                                                                            EE walking into the ground floor of old cafeteria building and slipped and fell on water and injured her right knee. ()
## 46006                                                                                                                                                       EE walking into vault & tripped over wiring causing her to fall to floor. EE alos fell onto corner of a box.
## 46007                                                                                                                                                                       EE walking into work & slipped & fell in parking lot on a decline that was slippery and wet.
## 46008                                                                                                                                                                                                                            EE walking into work & slipped on floor
## 46009                                                                                                                                              EE walking into work and stepped on a rock and loose gravel loosing balance and fell on ground injuring rt knee/ankle
## 46010                                                EE walking into work stepped off curb to go around person standing in middle of sidewalk and foot hit edge of curbing (11/2-2 inches above turn up street and foot turned and she fell. Left ankle 9 end of fibula)
## 46011                                                                                                                                              EE walking into work through p/lot-slim from drainage on sides of driveway caused EE to slipped and fall on left leg.
## 46012                                                                                                                                                                    EE walking into work up east drive and tripped and fell on hands and knees (construction area).
## 46013                                                                                                                                                                  EE walking laps during lunch water on ashpalt icedover & EE slipped & fell caused broken lt elbow
## 46014                                                                                                                                                                                     EE walking on break on public sidewalk-tripped & fell injuring arm/knees/hands
## 46015                                                                                                                                                                           EE walking on break-tripped over lose bricks and fell to the ground injuring rt shoulder
## 46016                                                                                                                                                                           EE walking on campus when she tripped and fell injuring left/rt knees, hands, and elbow.
## 46017                                                                                                                                    EE walking on campus, stepped from asphalt to grass& stepped on rock & fell causing torn tendon & ripped cartilage to left knee
## 46018                                                                                                                                                                             EE walking on campus, tripped on raised brick and fell injuring rt wrist and left knee
## 46019                                                                                                                                          EE walking on carpet to bathroom when fell hittinghead on wall & bruised hand during fall. Not evidence of safety issues.
## 46020                                                                                                                              EE walking on computer room floor shoe caught in floor, EE tripped, fell forward injured herself on metal edge of floor and the steps
## 46021                                                                                                                                                      EE walking on construction trash carrying 2- buckets lost balance & hit head on outside wakk & scraped lt leg
## 46022                                                                                                                  EE walking on dirt surface-stepped on paving stonewith light covering of sand causing EE to slip andfall causing contusion right elbow-upper back
## 46023                                                                                                                                                                         EE walking on dry floor and hit slick spot on floor-slipped and fell on right side of body
## 46024                                                                                                                     EE walking on edge of sidewalk when left foot turned over on edge of sidewalk-EE lost balance and fell injuring lft arm, knee, and cheekbone..
## 46025                                                                                                                                           EE walking on erosion control project, foot slipped on wet leaves, no fall, but felt sharp pain in hip and lower back ()
## 46026                                                                                                                                                                       EE walking on floor in fellowship hall slipped and fell injuring left hand, knee, and wrist.
## 46027                                                                                                                                                                               EE walking on ice and snow feet slipped out from underneath EE falling on left hand.
## 46028                                                                                                                                                                  EE walking on pavement, stepped on some gravel & turned foot falling on knee - cuts on knee & arm
## 46029                                                                                                                                 EE walking on shoulder of road to check license of a motorist when a veh drove by too close and mirror of veh hit EE's left elbow.
## 46030                                                                                                                                                 EE walking on sidewalk & tripped & fell on lt wrist (sprain); fracture to top of right foot and sprained r. Ankle.
## 46031                                                                                                                                                    EE walking on sidewalk and either stepped on unlevel area or off side and fell injuring left wrist and rt knee.
## 46032                                                                                                                                                                                              EE walking on sidewalk and slipped on ice and fellon elbows and face.
## 46033                                                                                                                                                                                            EE walking on sidewalk and slipped on uneven pavement, injuring rt foot
## 46034                                                                                                                       EE walking on sidewalk in front of dining hall - tripped on division where cement meets bricked area - fell hard and landed on knees & hands
## 46035                                                                                                                                                            EE walking on sidewalk leaving work when she hit the side of the sidewalk & turned her right foot over.
## 46036                                                                                                                    EE walking on sidewalk near the programs bldg in ran her leg slipped out in front of her causing knee to pop out of place. Dislocation lt knee.
## 46037                                                                                                                                                                       EE walking on sidewalk right foot hit raised surface and EE fell injury to knees hands wrist
## 46038                                                                                                                                                                                                                        EE walking on sidewalk to building and fell
## 46039                                                                                                                                                                                    EE walking on sidewalk to gym, and turned rt foot off sidewalk. Strain rt foot.
## 46040                                                                                                                                                       EE walking on sidewalk w/ acorns on it. Fell on rt side hitting rt knee, arm & shoulder & scrapingboth hands
## 46041                                                                                                                                                                                 EE walking on sidewalk when he stepped off sidewalk, he tore ligament in his knee.
## 46042                                                                                                                    EE walking on sidewalk, ft tangled in caution tape fell & landed on concrete; injuring rt palm, knee, foot (top)lower rib & sternum. Left knee.
## 46043                                                                                                                EE walking on sidewalk- faulty concrete caused himto trip and fall. Bother hands have cuts. Left hand has blodd blister on palm right hand swelling
## 46044                                                                                                                                                                           EE walking on sidewalk. Tripped on uneven ground/sidewalk juncture and strained his back
## 46045                                                                                                              EE walking on sidwalk form adminstration building to car in parking lot, he stepped in hole beside sidewalk causing him to fall. Injured hand & knees
## 46046                                                                                                                                                                         EE walking on slick floor when she slipped & struck her elbow (left arm) on food prep cart
## 46047                                                                                                                                                                       EE walking on steep logging road for long periods of time surveying land, strained left heel
## 46048                                                                                                                                 EE walking on the medium yard when a small bug flew into her left ear and she could not get it out. Pain & irritation in left ear.
## 46049                                                                                                                                                                              EE walking on the roof of brinkhouse bullett and the wind blew something int left eye
## 46050                                                                                                                                                                                              EE walking on uneven ground while conducting timber exam and stumble.
## 46051                                                                                                                                                                EE walking on uneven path, stepped on rock and foottwisted on way to EE car, fracture to left ankle
## 46052                                                                                                                                                                       EE walking on west yard to 208 yard slipped on some mud on sidewalk bruised area on left hip
## 46053                                                                                                                                            EE walking on yard #1, when he stepped in dorm #1 felt sharp pain rt foot. Small knot & swollen rt foot toes look blue.
## 46054                                                                                                                                                          EE walking onto compile to register them for the site. Thier dog ran at me and bit me on the ring finger.
## 46055                                                                                                                                                                            EE walking onto grass on dirt path between phillips & karpen - stepped in hole and fell
## 46056                                                                                                                                                                                         EE walking opened door & walked into room leading w/rt. Foot which twisted
## 46057                                                                                                                              EE walking out back entrance of building and fell on uneven bricks. Injured left side of head, left hand scratched, right wrist sore.
## 46058                                                                                                                                                                       EE walking out building and fell down steps injuring forehead, lip, face, nose, and rt cheek
## 46059                                                                                                                                                                                                 EE walking out building and fell injuring left hand and both knees
## 46060                                                                                                                                                                                   EE walking out door of cottage when left foot turned as EE stepped on last step.
## 46061                                                                                                                                                                  EE walking out of a bldg on campus missed a step down & fell on concrete floor landing on lt knee
## 46062                                                                                                                 EE walking out of albemarle bldg onto brick area, EE suddenly fell 1st doing split then going down on lt knee twisting leg & foot pull lt shoulder
## 46063                                                                                                                                                                      EE walking out of bathroom and fell on back on wet floor hitting left elbow and back of head.
## 46064                                                                                                                                                                                  EE walking out of bathroom slipped & fell causing injury to lt/rt hands & lt-knee
## 46065                                                                                                                                                          EE walking out of bldg going to car-shoe got caught in raised concret EE lost balance and fell on rtknee.
## 46066                                                                                                                                                     EE walking out of building from work - lost balance. Landed on lt eye, scraped face, eye swollen and blackend.
## 46067                                                                                                                                                      EE walking out of building slipped on some moss that was on bricks. Trying to break fall and twisted his back
## 46068                                                                                                                                           EE walking out of control room to open one of the doors was locked; my foot slipped off second step and twisted lt knee.
## 46069                                                                                                                                                                                                 EE walking out of copy room and struck her ankle on the door frame
## 46070                                                                                                                                                                      EE walking out of front door he walked into construction tunnel & something flew into his eye
## 46071                                                                                                                                               EE walking out of nct office accidently hit rt hand over metal door handle this resulted middle finger feeling numb.
## 46072                                                                                                                                                                                                          EE walking out of office when hit by a chair client threw
## 46073                                                                                                                                                                                                  EE walking out of office with mail box and fell onknees and hands
## 46074                                                                                                                                                                                                         EE walking out of parking lot slipped injury to right foot
## 46075                                                                                                                                                                                           EE walking out of restroom & slipped & fell when he stepped on door stop
## 46076                                                                                                                                                                 EE walking out of room did not see wheelchair sitting at door and walked into it hitting left leg.
## 46077                                                                                                                                                                                                         EE walking out of the front of the building and tripped ()
## 46078                                                                                                                                                        EE walking out of the office into hallway and slipped and fell on wet floor injuring lower back and rt side
## 46079                                                                                                                                                                           EE walking out of the room and stepped on the push broom head and left ankle rolled over
## 46080                                                                                                                                                                              EE walking out office door and swinging hand and accidentally hit rt hand on bookcase
## 46081                                                                                                                                                                                  EE walking outside on side walk when I crossed side walk to parking lot I fell ()
## 46082                                                                                                                                                                                              EE walking over & through fallen branches when he twisted he lt knee.
## 46083                                                                                                                                                                                  EE walking over gravel in hole and slipped and fell on left arm, elbow and wrist.
## 46084                                                                                                                                                                   EE walking over wooden bridge and stepped on algie covered lumber bridge and slipped and fell ()
## 46085                                                                                                                                                                                  EE walking pass milling machine and bumped rt leg into handle of milling machine.
## 46086                                                                                                                                                                                             EE walking pass picnic table and hit the corner oftable and cut rt leg
## 46087                                                                                                                                                                               EE walking past gate to deck as it was coming down & ducked to Miss It & pulled back
## 46088                                                                                                                      EE walking past inmate cell. Inmate reached through cell with lt hand & grabbed EE lt upper arm & twisting upper arm. Abrasions upper lt arm.
## 46089                                                                                                                                                                                                  EE walking patients back, slipped on wet steps and landed on back
## 46090                                                                                                               EE walking plast a cold room. EE fell to floor whenn he encounter a liquid substance on floor in front of cold room. Rt leg adductor longus/cracilis
## 46091                                                                                                                                                        EE walking pt to ward fm courtyard, pt became aggressive, EE put up right hand, pt hit EE on right elbow ()
## 46092                                                                                                                     EE walking rear of building, walked up two-step flight, & stuck toes of rt foot on riser bending it back. Toes of rt foot, especially big toe.
## 46093                                                                                                                                            EE walking stepped off curb & heard bus barreling down to lt tried to stop her step & twisted lt ankle falling off curb
## 46094                                                                                                                                                EE walking swiftly and as she turned into the doorway, her arm hit the frame and EE fell to the floor. Injured knee
## 46095                                                                                                                                                                  EE walking the catwalk on post #2 & hit his head on speakerphone, cutting right side of forehead.
## 46096                                                                                                                                          EE walking through a rock jetty coming in off the beach & his lt-little toe nail was caught on a rock. Toe nail torn off.
## 46097                                                                                                                                               EE walking through a weed filled field along the new river and stepped in a hole twisting rt ankle and lower rt leg.
## 46098                                                                                                                                                    EE walking through bathroom area, when he stepped in some water and slipped and fell on floor injuring lt knee.
## 46099                                                                                                                                                        EE walking through bldg at normal pace - slipped and fell on slippery floor injuring left knee and rt hand.
## 46100                                                                                                                                                      EE walking through cafteria and slipped in clear liquid on floor-twisting back, hip, knee, and footon rt side
## 46101                                                                                                                                   EE walking through coliseum deck, EE ran into pipes hanging krom ceiling during routine enforce-ment. Laceration head on rt side
## 46102                                                                                                                                        EE walking through cut brush with chainsaw running& finger on trigger. EE stumbled stepping over debris & saw cut left leg.
## 46103                                                                                                                                                          EE walking through dishroom & slipped on water in floor. Carrying jar - slipped fell - gash in rt temple.
## 46104                                                                                                                                                        EE walking through door entering kennel. Door waist high, struck top lt lateral of scalp causinglaceration.
## 46105                                                                                                                                            EE walking through doorway pushing cleaning cart and holding vaccum-rt finger hit door when vaccum slipped out of hand.
## 46106                                                                                                                                                                         EE walking through dormitory slipped in puddle of water that was on floor but didn't fall.
## 46107                                                                                                                                               EE walking through first set of door and foot got caught on floor mat-tripped and fell into the doorhitting forehead
## 46108                                                                                                                                                                                      EE walking through gate, started closing it and nail scraped back of rt calf.
## 46109                                                                                                                                                                          EE walking through grass ans stepped in an hole and fell to the ground injuring rt ankle.
## 46110                                                                                                                   EE walking through inmate receiving, floor was waxed, still wet, EE slipped, fell on concrete floorlt knee hitting the floor, set of restraints.
## 46111                                                                                                                                                                                                              EE walking through lobby and fell on carpet fx rt arm
## 46112                                                                                                                                                 EE walking through office and fell due to slippery floor; caused by furniture polish used by cleaning personnel ()
## 46113                                                                                                                                                                                                        EE walking through p/lot and stepped on a rock/mudand fell.
## 46114                                                                                                                                                          EE walking through parking garage stepping on a metal grate that gave away causing EE to twist left ankle
## 46115                                                                                                                                                                                          EE walking through parking lot slipped and fell landing on her left wrist
## 46116                                                                                                                                    EE walking through r-wd & patient took a hold of arm & asked question. Jerked arm away & he scratched arm. Scratch to rt wrist.
## 46117                                                                                                                                                                                                    EE walking through slider c38 and slider closed on left foot ()
## 46118                                                                                                                                                                 EE walking through the lobby and shoes were wet from rain-slipped and fell on both hands and knees
## 46119                                                                                                                                                                                 EE walking through tunnel and slipped on wet tunnel floor - lower back and abdomen
## 46120                                                                                                                                                                      EE walking through welding shop; other EE's cuttingsteel; piece of steel went into right eye.
## 46121                                                                                                                                                                EE walking through wetlands and came in contact with poison ivy while delineating wetland boundries
## 46122                                                                                                                                                                                  EE walking through woods collecting data and came in contact with poison oak/ivy.
## 46123                                                                                                                   EE walking through woods leaving her work site, stepped on tree trunk it moved against a tree. Broke fall by grabbing tree. Injured rt shoulder.
## 46124                                                                                                                                                                       EE walking thru & inspecting bldg when the dust & fumes in air gave her an allergic reaction
## 46125                                                                                                                                                                  EE walking thru canteen area-slipped & fell on some floor stripper injuring lt shouler & low back
## 46126                                                                                                                                                                                                     EE walking thru wash room hit elbow on side of rack, rt strain
## 46127                                                                                                                                               EE walking to a bldg-stopped to give studen instruction-stepped forward and tripped on uneven pavement pulling back.
## 46128                                                                                                                                                                                                                    EE walking to a meeting fractured bone in foot.
## 46129                                                                                                                                                                                         EE walking to a shs retreat-injury to left knee ring finger and left hand.
## 46130                                                                                                                                                         EE walking to a soda machine when a student ran into EE, knocking EE onto floor. Contusions lt ankle & leg
## 46131                                                                                                                                     EE walking to adminstrative bldg-steeped onto lawnand stepped into a hole causing EE to fall and twist left foot and skin knee
## 46132                                                                                                                                                                            EE walking to an enrollment services meeting and stepped off curb and twisted rt ankle.
## 46133                                                                                                                                                                          EE walking to another bldg & tripped over uneven pavement & fell contusion rt hand & back
## 46134                                                                                                                                                                                       EE walking to bathroom when fell in hallway injuring left leg, knee, & chest
## 46135                                                                                                                                                                        EE walking to bldg and fell-stepping up to curb inparking lot-injured left foot and big toe
## 46136                                                                                                                                                       EE walking to bldg and stepped on a ridge in blacktop-instead was a hole which caused EE to break left foot.
## 46137                                                                                                                                                                                                 EE walking to bldg and tripped and fell on rock injuring rt pinkie
## 46138                                                                                                                                                                                       EE walking to bldg for work and slipped on inclineand fell injuring rt foot.
## 46139                                                                                                                                      EE walking to bldg-startled by horn of car passingand stepped off sidewalk into hole which cause EE to lose balance and fall.
## 46140                                                                                                                                                                                            EE walking to breakroom; water on floor; slipped on floor on left knee.
## 46141                                                                                                                                                       EE walking to building and fell on sidewalk stricking head, injuring right hand, and scraping right knee. ()
## 46142                                                                                                                                                                                         EE walking to building, ice and snow in p/lot, slipped and fell on lt knee
## 46143                                                                                                                                                                                        EE walking to building-moved over to let othes pass by and fell on sidewalk
## 46144                                                                                                                                                                        EE walking to campus when chased by a dog and slipped and fell on ice landing on left knee.
## 46145                                                                                                                                                                                                 EE walking to car after work, stepped on a limb & fell on tailbone
## 46146                                                                                                                                                                                                               EE walking to car and fell off sidewalk. Left ankle.
## 46147                                                                                                                                                                                            EE walking to car and fell on concrete driveway injuring hand and face.
## 46148                                                                                                               EE walking to car from courthouse, stepped on a stone & foot rolled to the outside. Causing EE to fall. Scraping left knee & spraining rt ankle/foot
## 46149                                                                                                                                                                                                         EE walking to car in parking lot injured left hand and arm
## 46150                                                                                                                                                                                               EE walking to car on break, slipped on black ice and fell on rt side
## 46151                                                                                                                                                                                               EE walking to car slipped and fell on ice landing on back and elbow.
## 46152                                                                                                                                                                          EE walking to car through grass & slipped on magnolia pod, then fell. Sprained left ankle
## 46153                                                                                                                                                            EE walking to car to move to another location slipped and fell on ice landing on buttock and left hand.
## 46154                                                                                                                                                                                             EE walking to car, stepped and slid on pecan on cement; fell to ground
## 46155                                                                                                                                                                            EE walking to cash register & hit edge of registerstand & caused fingernail to come off
## 46156                                                                                                                          EE walking to class on sidewalk in front of woodard 1 east. Sidewalk had bird droppings on it & was wet, slipped and fell on sidewalk. ()
## 46157                                                                                                                                                                       EE walking to classroom bldg frm p/lot slipped andfell on ice causing fracture to rt radius.
## 46158                                                                                                                                                                                       EE walking to classroom building and slipped and fell on ice hurting rt side
## 46159                                                                                                                                              EE walking to command bus at speedway and slipped on loose material causing EE to fall on right kneebruise right knee
## 46160                                                                                                                   EE walking to courthouse to begin work day, parknglot ice over, EE slipped on ice, falling backwards& hit left side of back, elbow & right wrist
## 46161                                                                                                                                                                               EE walking to desk carrying a book and tripped over box falling on elbows and knees.
## 46162                                                                                                                                                                                  EE walking to dorm when he wlipped and fell into grass area landing on his elbow.
## 46163                                                                                                                                        EE walking to dumpster stepped on object and started to fall-rt foot turned over falling injuring left elbow, leg and wrist
## 46164                                                                                                                                                                                  EE walking to empty pans in the pot & pan area & fell and hit ribs on the counter
## 46165                                                                                                              EE walking to equipment shelter, EE lost footing inmud, tried to keep from falling and fell into side of shelter. Left face, wrist, hip, side pulled.
## 46166                                                                                                                      EE walking to exit institution, inmates arguing EE called out lost balance fell on ice landing on backside. Injured lower back, hip & rt side
## 46167                                                                                                                                                               EE walking to feeding area-slipped in small area of vomit and fell to floor injuring left hip & knee
## 46168                                                                                                                                                                                       EE walking to get truck and foot went down in a sink like and twisted ankle.
## 46169                                                                                                                                                                             EE walking to go out door in file center-felt light headed-lost balance & fell on face
## 46170                                                                                                                                                                   EE walking to harper b to go to work, stepped on a rock & about fell - lt hip, neck and rt ankle
## 46171                                                                                                                          EE walking to her car parked on lower level of theparking lot where she works, slipped & fell on grassy slope, fractured her right ankle.
## 46172                                                                                                                                           EE walking to her desk when she hit her lt upper leg against the corner of desk causing scratch. Scratched lt upper leg.
## 46173                                                                                                                  EE walking to her vehicle after being relieved by 3rd shift, when she stepped into the hole her ankle & knee. Sprained lt ankle - swollen rt knee
## 46174                                                                                                                                        EE walking to job assignment on 2/06/96 EE slippedon ice, bag EE was carrying caused shoulder to be injured, right shoulder
## 46175                                                                                                                EE walking to lineup room-felt stinging sensation like bee sting on left inner arm-moved book she holding & didn't see anything but red bump on arm
## 46176                                                                                                                                                                                                                    EE walking to lunch and tripped on the sidewalk
## 46177                                                                                                                                                                                                              EE walking to mail room, feet skidded on plastic mat.
## 46178                                                                                                                                                                                EE walking to murphy hall and slipped on painted sidewalk and fell injuring rt knee
## 46179                                                                                                                                                                        EE walking to obtain cleaning fluid and slipped and fell on the floor - left ankle, rt knee
## 46180                                                                                                                             EE walking to office and quickly turned around to look at inmate coming from the waiting room and hit her rt hand on fingerprint door.
## 46181                                                                                                                                                            EE walking to office and slipped on waxed floor and fell hitting wall with head, arms, stomach andlegs.
## 46182                                                                                                                                                            EE walking to office bldg after delivering paperwork to another bldg. She was struck in eye by the pole
## 46183                                                                                                                                                                                             EE walking to office-right foot slipped in a hole next to fire hydrant
## 46184                                                                                                                                                                                                                 EE walking to picnic shelter and twisted left foot
## 46185                                                                                                                                                                  EE walking to put letters in dean's office-steppedon a loose rock and twisted left foot and fell.
## 46186                                                                                                                                                                                                    EE walking to reception desk and slipped and fell on wet floor.
## 46187                                                                                                                                                                   EE walking to refrig then felt sting and got bug off arm, later noticed swelling and redness, rt
## 46188                                                                                                                                                                      EE walking to residence hall and tripped on a brick and fell injuring rt ankle, legs and knee
## 46189                                                                                                                                                                     EE walking to restroom when EE slipped and fell on left side of body bumping head, hip and arm
## 46190                                                                                                                                                                                          EE walking to sallyport to check in vehicle & felltwisting her left ankle
## 46191                                                                                                                                                                                            EE walking to scrogg bldg and stepped down on a stone turning left foot
## 46192                                                                                                                                                                                                  EE walking to sit in wooden chair-hit leg of chairwith left heel.
## 46193                                                                                                                                                                                            EE walking to snack bar, slipped on rubber mat and fell. Left knee/leg.
## 46194                                                                                                                          EE walking to sot office to request classroom to be unlocked, when slipped & fell on floor. Causingcontusions to left rib cage, arm & leg
## 46195                                                                                                              EE walking to state car parked in w lot, EE comingdown sidewalk and had to cross curb into parking area, foot slipped off curb and fell, fracture fot
## 46196                                                                                                                                                         EE walking to supervisor's office & stepped on a nail/tack went thru shoe. Lt foot 2nd toe next to big toe
## 46197                                                                                                                                                                                  EE walking to the restroom and fell on ramp injuring rt hand, wrist, rt/left knee
## 46198                                                                                                                                       EE walking to truck to take front gate keys to officer at gate. While walking to the truck, twisted l ankle on bed of rocks.
## 46199                                                                                                                                                                                                      EE walking to unit slipped and fell on ice landingon buttocks
## 46200                                                                                                                                                         EE walking to veh after a meeting-van did not stopand yield to EE and hit her. *********subro*************
## 46201                                                                                                                                                   EE walking to veh in p/lot when foot slipped and left ankle turned, rt leg, hand, fingers, and shoulder scraped.
## 46202                                                                                                                                                                                                            EE walking to vehicle stepped in deep hole. Strainback.
## 46203                                                                                                                                                EE walking to visit professor and fainted falling in pool hitting head and breaking rt wrist, and twisting rt knee.
## 46204                                                                                                                                                                               EE walking to work from p/lot and slipped on a gumball which had fallen from a tree.
## 46205                                                                                                                  EE walking to work from parking space (friend's) walked thru another parking lot, walking down steps and thinks May has missed last step not sure
## 46206                                                                                                                                                      EE walking to work-stepped off sidewalk to cross street and stepped into a hole injuring both ankles, rt knee
## 46207                                                                                                                                                                              EE walking toward 1041 bldg-twisted foot causing her to lose balance & fall to ground
## 46208                                                                                                                                                EE walking toward bldg & slipped on wet pavement twisted & scraped knee, also reinjured area mole had been removed.
## 46209                                                                                                                                                          EE walking toward bldg to work-tripped over unevenpavement and fell injuring left hip, forearm and ankle.
## 46210                                                                                                                                                                                    EE walking toward carpet and feet slipped from underneath falling to the floor.
## 46211                                                                                                                                                       EE walking toward exit gate and tripped over a floor mat that was misplaced and torned injuring rt shoulder.
## 46212                                                                                                                                                            EE walking toward office building misjudge step and fell twisting rt foot/ankle, hand, arm and shoulder
## 46213                                                                                                                                      EE walking toward sidewalk, stepped on something uneven, causing right foot to turn over, lost balance and fell on left knee.
## 46214                                                                                                                                                                               EE walking toward van outside of conference centeree right ankle twisted and EE fell
## 46215                                                                                                                                               EE walking towards admin. Bldg stepped on painted curb, foot slipped and fell on sidewalk injuring rt elbow and hip.
## 46216                                                                                                                                                                              EE walking towards back of bldg and tripped on uneven walkway and fell onto sidewalk.
## 46217                                                                                                               EE walking towards back of equipment van, when stepped on a brick, causing EE to stumble forward, kept self from falling, received sharp pain n back
## 46218                                                                                                                                             EE walking towards double doors slipped lt leg went towards front & rt knee hit floor & stop w/hands contusion rt knee
## 46219                                                                                                                                                                                         EE walking towards elevator and slipped and fell hitting head on something
## 46220                                                                                                                                                                            EE walking towards her office when foot slipped onthe floor causing injury to rt thigh.
## 46221                                                                                                                                           EE walking towards medical-stepped on edge of sidewalk-left foot turned & EE fell striking head on sidewalk & right knee
## 46222                                                                                                                                                                                                    EE walking towards office and hit foot against lounge furniture
## 46223                                                                                                                                                                                              EE walking towards office and slipped and fell in hallway on buttocks
## 46224                                                                                                                                                                  EE walking towards office, stepped off drop off area between ground & side walk, twisted rt ankle
## 46225                                                                                                                                                EE walking towards the sink turned around to answer a client's questions when another client accidently tripped EE.
## 46226                                                                                                                                EE walking up 2 steps between tort hold & dlk holding carrying a food dish. EE stumbled & fell. Lt knee/lt hand/lteft side of back.
## 46227                                                                                                                   EE walking up cement stoop side of front street hlth service when she feel hitting lt side forehead forehead against brick wall. Lt side forehad
## 46228                                                                                                                                                     EE walking up drive and the plastic cover was blown off by the wind resulting in EE tripping over the plastic.
## 46229                                                                                                                 EE walking up hallway with three patients, a 4th patient opened door EE intervened to prevent phys attack and 4th patient slammed door on EE right
## 46230                                                                                                                                                                                                                     EE walking up incline - muscle pull in lt calf
## 46231                                                                                                                                                                               EE walking up ramp to entrance, slipped on slipperywet ramp. Both knees and l elbow.
## 46232                                                                                                                                                                                             EE walking up sidewalk and stepped off sidewalk and twisted left ankle
## 46233                                                                                                                                                                                EE walking up staircase when she slipped & hit head on railing knot above rt temple
## 46234                                                                                                                                                                                                                 EE walking up stairs & hit head on piece metal rod
## 46235                                                                                                                                                                                 EE walking up stairs and slipped and fell catchingself on handrail under left arm.
## 46236                                                                                                                                                                                        EE walking up stairs and slipped and fell injuringlower back, thigh and leg
## 46237                                                                                                                 EE walking up stairs at exit b in id building, EE fell catching herself on palm lt hand causing painin lt forearm & hand. Sprain lt wrist & thumb.
## 46238                                                                                                                                                                           EE walking up stairs from required building evacuation, felt chest pain and back pain ()
## 46239                                                                                                                                                                                            EE walking up stairs in gardner hall and slipped and fell on left knee.
## 46240                                                                                                                                                                                                          EE walking up stairs slipped and fell injurying rt wrist.
## 46241                                                                                                                                                                                                                 EE walking up stairs to brown hall and fell on arm
## 46242                                                                                                                                                                                              EE walking up stairs to ward slipped on wet surface-pain in left side
## 46243                                                                                                                                                                                                         EE walking up stairs when foot slipped and EE fellon knees
## 46244                                                                                                                                                                                                          EE walking up stairs, tripped & fell on knees. Left knee.
## 46245                                                                                                                                                                                             EE walking up stairs-pain in left knee & calf & burning in right ankle
## 46246                                                                                                                                 EE walking up stairwell. Began hearing a popping noise from his ankle area. Upon which time he began to fell discomfort - rt foot.
## 46247                                                                                                                           EE walking up stepes between lower f and upper f missed step. Lt leg went back and hit step with lt knee. Injured lt medial knee/muscle.
## 46248                                                                                                                                           EE walking up steps into blgd and tripped on uneven sidewalk and fell injuring rt hand, arm, left hand, rt leg and back.
## 46249                                                                                                                                                                                        EE walking up steps returning from copy center andslipped and cut left toe.
## 46250                                                                                                                                                                                                                EE walking up steps slipped on small stone and fell
## 46251                                                                                                                                              EE walking up steps to door of dietary caught rt foot on loose brace mat, pain and stiffness in rt lower back and leg
## 46252                                                                                                                                            EE walking up steps to his assigned duties & hit his lt leg above the knee on one of the steps. Swelling above lt knee.
## 46253                                                                                                                                                   EE walking up steps to laundry tower, rt foot sli-pped & lower part of rt leg hit against steps be- low kneecap.
## 46254                                                                                                                                                                    EE walking up steps when lt foot slipped off step causing all of his body to shift to left leg.
## 46255                                                                                                                                     EE walking up steps, tripped on steps, fell front landed on right knee and hand. Sprain to right wrist, abrasion to right knee
## 46256                                                                                                                                                                                      EE walking up the outside of stone steps and slipped and fell hitting rt knee
## 46257                                                                                                                                                                                        EE walking up the stairs in building and hit rt hand on point of hand rail.
## 46258                                                                                                                                                                        EE walking up the stairwell, left foot hit against a step, lost balance and fell. Low back.
## 46259                                                                                                                       EE walking up the walkway to go to work a residentcame running out of the building she caught them, twistig her rt ankle and fell on lt hip.
## 46260                                                                                                                                                                                                           EE walking up/down steps and fell causing multi injuries
## 46261                                                                                                                  EE walking w/ patient who was 1:1 observation, EE turned for a quick second and before EE knew it the patient hit her on the side of her face. ()
## 46262                                                                                                                            EE walking w/a student then a male student trippedee's leg causing her to fall onto the carpet landing on both knees, lt shoulder, face
## 46263                                                                                                                                               EE walking w/client who suddenly dropped to the floor-EE holding on to client's belt felt sharp pain in lower back..
## 46264                                                                                                                                                                                                EE walking w/vacuum cleaner slipped & fell causing injury to lt leg
## 46265                                                                                                                                                                                                         EE walking when she tripped and fell injuring her rt wrist
## 46266                                                                                                                                                                                                   EE walking with another EE. Suddenly EE fell face first on floor
## 46267                                                                                                                          EE walking with client, client startle and droppedto the sidewalk. Client's walking belt twisted around right hand. Contusion to rt thumb
## 46268                                                                                                                                                                     EE walking with client, who pulled the EE down steps causing her to fall, injury to both knees
## 46269                                                                                                                                   EE walking with client-cleint started to fall-EE att to break fall-in process fell hitting head on cupboard and landing on floor
## 46270                                                                                                                                                                                      EE walking with resident, resident fell forward causing EE to fall as he did.
## 46271                                                                                                                                                      EE walking witness to court for trial, missed bottom 3 steps, tripped forward and twisted body lt and rt knee
## 46272                                                                                                                                                                                        EE walking, climbing up the bank and slipped. Injured calf muscle left leg.
## 46273                                                                                                                                                                                        EE walking, coming back from meeting, something bit on top part of left leg
## 46274                                                                                                                                                                                                 EE walking, slipped & fell striking the rt side of face and rt leg
## 46275                                                                                                                      EE walking, sole of shoe stuck on carpet. She stumbled w/ rt foot, caught her self w/ left leg to avoid falling. Left knee popped & feltpain.
## 46276                                                                                                                                                                EE walking, stepped off the last step & stepped onto the edge of the sidewalk & twisted her lt foot
## 46277                                                                                                                                                                                                                                  EE walking. Knee twisted & popped
## 46278                                                                                                           EE walkingup stairs, tripped toe on step and fell up steps landing on rt side, arm, knee, twisted left ankle & back. Rt side body twisted body and ankle
## 46279                                                                                                                                                                                               EE walkingup steps rt foot hit step-halfway stumbled, turned rt knee
## 46280                                                                                                                                                                                                             EE walkining to dorm h in rain slipped, but caughtself
## 46281                                                                                                                                                                 EE walks with client who pulls with an attached strap-this has caused EE to experience rt hip pain
## 46282                                                                                                                          EE wallking into libary tripped over a raised plywood cover and fell on concrete, bruising handsarm, knee and strained shoulder and neck.
## 46283                                                                                                                                                                                                                  EE want to pick up sheet pan and twisted rt wrist
## 46284                                                                                                                                                       EE wanted to smoke and it was not time-became aggressive toward EE and scratched and bent rt thumb backwards
## 46285                                                                                                                                                        EE warming up for crdt training, practicing break falls, twisted right knee whiled doing break fallsquickly
## 46286                                                                                                                                                                       EE warming up soccer team when ball stuck her lt index finger; getting xray to see if broken
## 46287                                                                                                                EE was & had been using a paint roller for severalcontinous days. Started complaining of aches in arms & hands with numpness. Rt & lt arms & hands.
## 46288                                                                                                  EE was ''cutting in'' a piece of equipment during set up of heart lung machine. While using a surgical blade EE lost her balance and cut her left index finger ()
## 46289                                                                                                           EE was 1:1 observations; standing there as normal & for no reason, without any warning patient slapped EE on the right side of face hitting EE's eye. ()
## 46290                                                                                                                                                                                                            EE was 1:1 w/pt, pt became violet hitting/kicking EE ()
## 46291                                                                                                                                                                                        EE was 1:1 with pt, pt became aggressive, kicked EE in the ribs and back ()
## 46292                                                                                                                                                       EE was 1:1, pt began banging head on wall, EE tried to intervene, pt became combative, both fell to floor ()
## 46293                                                                                               EE was 1on1 with patient, patient ran into quiet room and EE followed. EE verbally encouraging patient to take meds, patient became upset scratching EE on chest. ()
## 46294                                                                                                                                                         EE was ? In the wilderness area, he was descending a steep grande and lost his footing causing him to fall
## 46295                                                                                                                          EE was ??? A dog that was caught in chain link fence that surrounds headquarters. Dog bit EE while EE was trying to get him out of fence.
## 46296                                                                                                                                                                                                EE was ??? A file cabinet up stairs of carolina hall and cut elbow.
## 46297                                                                                                                                                          EE was @ gym doing walk thru. EE went to restroom to use bathroom slipped and fell injuring left elbow ()
## 46298                                                                            EE was @ headquarters when she attempted to ride segway, she was turing to leave & the outdoor carpet gripped the tire and she was thrown off the segway. EE hit her head & left leg ()
## 46299                                                                                                                    EE was @ lottery retailer unloading a play station(similar to a podium) and felt a twinge in her back. EE continued working and pain increased.
## 46300                                                                                                                                                                                             EE was @ nurses desk writing in chart, turned and twisted left knee ()
## 46301                                                                                                            EE was a driver in a state car on offical businesswhen the vehicle was struck on the right front. EE body was forced sideways resulting in slight... ..
## 46302                                                                                                                                             EE was a driver in a state vehicle which side-swiped a metal pole at a low rate of speed. EE states he was not injured
## 46303                                                                                                                                  EE was a glass carboy when carboy broke on side ofsink; shattered glass cut left wrist causing damageto artery, nerves, ligaments
## 46304                                                                                                                                                                     EE was a participant in rcdt training. EE was hit in the chest by another employees' elbow. ()
## 46305                                                                                                                                                                                     EE was a passenger in a car that was struck by another car causing leg bruises
## 46306                                                                                                                           EE was a passenger in a car, applied brakes vehiclecontinued to slide due to ice & snow. The truck sled down hill hitting truck in rear.
## 46307                                                                                                                                                                          EE was a passenger in a patrol vehicle that hit a bear and then trees and landed in ditch
## 46308                                                                                                                                                     EE was a passenger in a state vehicle that was rearended by a wrecker-bumped head, strained neck and shoulders
## 46309                                                                                                                                EE was a passenger in a state vehicle when anotherstate vehicle ran into the back of the state vehicle EE was sitting in.. (inmate)
## 46310                                                                                                                                                        EE was a passenger in a stationary vehicle, when acar hit the vehicle from behind, causing cervical strain.
## 46311                                                                                                                      EE was a passenger in a stopped at stop light when it was struck form behind by another vehicle. Pain & soreness in neck, shoulder, and back.
## 46312                                                                                                                               EE was a passenger in a vehicle accident & rec'd soft tissue burn from the seat belt & scraps & scratches to legs, chest, hand, nose
## 46313                                                                                                                                                                                               EE was a passenger in a vehicle that was rearendedby another vehicle
## 46314                                                                                                                        EE was a passenger in a vehicle that was returningto a training session. While merging into the rt lane the vehicle collided with a minivan
## 46315                                                                                                                                            EE was a passenger in a vehicle that was stationary for a red light and was struck from the rear by another vehicle. ()
## 46316                                                                                                                                                EE was a passenger in a vehicle that was struck in the passenger side by another vehicle - rt hip low back, lt knee
## 46317                                                                                                                                               EE was a passenger in car belonging to fellow student. Driver lost control of his care in gravel & car flipped over.
## 46318                                                                                                                                                                            EE was a passenger in car returning from a workshop and was struck from behind by a suv
## 46319                                                                                                                                                    EE was a passenger in high-speed training when thedriver lost control of the car and it flipped overon its top.
## 46320                                                                                                                                                                                        EE was a passenger in pick-up truck when vehicle was struck by a 18 wheeler
## 46321                                                                                                                                                       EE was a passenger in state car, stopped and was struck by another vehicle from behind. No injuriesreported.
## 46322                                                                                                                                                                                     EE was a passenger in state vechicle that was hit on the side by a citizen car
## 46323                                                                                                                                   EE was a passenger in state vehicle on vass rd and farm life school rd when another car ran stop sign and ran into state vehicle
## 46324                                                                                                                                     EE was a passenger in state vehicle that hit an ice patch on bridge. EE kicked door open to exit vehicle once it came to rest.
## 46325                                                                                                                                    EE was a passenger in the patrol; attempting to avoid an accident the patrol car that he was in ran off the road; muscle strain
## 46326                                                                                                                                                                                       EE was a passenger in the rear seat of the golf cart, when it overturned. ()
## 46327                                                                                                                                                                 EE was a passenger in truck when it was forced into ditch while passing a truck pulling a trailer.
## 46328                                                                                                                                                                         EE was a passenger in van leaving chapel hill when she was involved in rear end collision.
## 46329                                                                                                                                                                                              EE was a passenger in veh which wrecked and EE hit head on windshield
## 46330                                                                                                                                                                                                  EE was a passenger in vehicle involved in motor vehicle accident.
## 46331                                                                                                               EE was a passenger in vehicle when it was struck by another car that tried to pass it on the rt side of a single lane street. EE upper right arm was
## 46332                                                                                                                                                                    EE was a passenger in vehicle when the vehicle wasstruck from rear while sitting at stop light.
## 46333                                                                                                                                                  EE was a passenger of golf cart which flipped over when driver hit a curb. EE was on side that cart flipped on ()
## 46334                                                                                                                 EE was a passenger of physcial plant truck. Truckstopped at intersection when another vehicle hit her from the rear. She had pain in her back/neck
## 46335                                                                                                                                  EE was a passenger on the garbage truck and got off the truck and walked around the front of the truck. Lacaeration to the scalp.
## 46336                                                                                                                                                               EE was a passenger on van, hit a steel beam to thechurch, causing truck to bounce her back and forth
## 46337                                                                                                                              EE was a small refrigerator while in the process of moving it he pulled a muscle in his back causingpain in lower back and both legs.
## 46338                                                                        EE was a student driver in a pursuit driving class under the instructional supervision of kevin jones. EE failed to maintain control of the car and left the road colliding with a tree. ()
## 46339                                                                                                                                                                 EE was a temporary employee assisting a client in bed and hurt her back. EE missed 7 days of work.
## 46340                                                                                           EE was a ump at an intramual softball game. Batter hit a foul ball, ball came back off the bat & struck just above left eye. No cuts or abrasions, but glasses broke. ()
## 46341                                                                                                                                                                                EE was aatempting to pull into hwy 64w car started and stopped and hit car in rear.
## 46342                                                                                                                     EE was about to cut meat, cut his finger while wiping the blade clean. He received first aid. Later, cut continued to bleed & went to hospital
## 46343                                                                                                                       EE was about to descned stairs when her heel caught & she lost her balance falling & twisting down 15 steps. Steps were very narrow & steep.
## 46344                                                                                                                                                                                      EE was about to give a cat an injection when the cat scratched her left hand.
## 46345                                                                                                                                                   EE was about to open the door in master control bldg when cpt. Blackmon opened the door and jammed her r hand ()
## 46346                                                                                                                                                                         EE was about to pick up 2x6 piece of wood and he slipped on another piece of wood and fell
## 46347                                                                                                                                                            EE was about to sit & chair slid from beneath her. She extended her right arm to catch & break her fall
## 46348                                                                                                                                                        EE was about to start working and chemical from stripper was to strong and EE became light headed and sick.
## 46349                                                                                                                                                                                                       EE was about to walk down the stairs and twisted right knee.
## 46350                                                                                                                                                                      EE was about to walk into supervisor's office, he hit a wet spot in floor and hurt his ankle.
## 46351                                                                                                                                                                          EE was accidentally bitten on right index finger by a small shark while cleaning its tank
## 46352                                                                                                                                                                                                                         EE was accidentally exposed to insecticide
## 46353                                                                                                                                                                                              EE was accidentally struck by fellow employee baton while in practice
## 46354                                                                                                                                                                                             EE was accidentally stuck in left 5th finger with contaminated needles
## 46355                                                                                                                                                                                                    EE was accidentally tripped by a student, straining leg muscles
## 46356                                                                                                                                                                                 EE was accidently hit in the mouth w/ a clipboard held by another EE-tooth chipped
## 46357                                                                                                                                                                                                                          EE was accidently poked in eye with plant
## 46358                                                                                                                                                                EE was accidently poked in the eye by a student causing her hard contact lens to scratch her cornea
## 46359                                                                                                                                             EE was accidently struck by another EE in the stomach in greeting. EE has had prev surgery there-May need more surgery
## 46360                                                                                                                                  EE was accidently stuck in the back of her right arm by a zzga needle by another EE, after while helping to draw blood from a cat
## 46361                                                                                                                                                                                          EE was accidently tripped by client as she was getting client out of bed.
## 46362                                                                                                                           EE was accompanying child to work area while she was consulting to this child's classroom when he began hitting her and bit her forearm.
## 46363                                                                                                                                                                                                  EE was accompanying client and client kicked EE inthe right knee.
## 46364                                                                                                                        EE was accompanying client to local movie and was exiting the movie, stepped off curb and her foot twisted & she fell. Hip, ankle, elbow/rt
## 46365                                                                                                                                                                           EE was accompanying eagles group on hike. After hike EE notices stiffness in right knee.
## 46366                                                                                                                          EE was acting as a decoy for canine exercise-when canine grabbed EE on sleeve an bite through on second time-making contact with rt thumb
## 46367                                                                                                                        EE was acting as offender in lldt training- instructor applied pressure to wrist and took down EE-causing injury to left shldr, wrist, neck
## 46368                                                                                                                EE was acting as the inmate for execution practiceand refused to comply to walk to destination, staffforced him against wall and door. L chest area
## 46369                                                                                                                                                                                                                 EE was acting out and was kicked in stomach & legs
## 46370                                                                                                                                      EE was adding in inmate who was having a seizure from injuring himself, EE pulled muscle in low back and right lower abdomen.
## 46371                                                                                                                                                         EE was adding more bend to pipe w/ bender using his body weight and heard a pop and his ribs began to hurt
## 46372                                                                                                                                              EE was adding pro sure to mop bucket. Solution splashed in right eye. Eye became red and burning. Flushed with water.
## 46373                                                                                                                                                                         EE was adding water to the radiator when some of the hot fluid splashed into his face/eyes
## 46374                                                                                                                                                                                                                                EE was addressing envelopes by hand
## 46375                                                                                                                                                            EE was adjusting a bolt on van when wrench slippedhitting EE's finger(lft hand)--finger red and swollen
## 46376                                                                                                              EE was adjusting a weight machine that required pulling out a metal pin for re serting the weights after EE pulled out the pin part of the lever fell
## 46377                                                                                                                                                                             EE was adjusting boat trailer when his lt finger was caught between the bow and roller
## 46378                                                                                                                 EE was adjusting ceiling fan to reduce fan noise. EE lost his footing on ladder and came in contact with fan blade while trying to regain balance.
## 46379                                                                                                                                                                              EE was adjusting client in bed; pulled draw sheet up and felt pain in both wrists. ()
## 46380                                                                                                                                      EE was adjusting doors on trailer and as he shut the door of trailer, the edge of door cut his finger. Cut to left 5th finger
## 46381                                                                                                                                                                EE was adjusting football jugs machine for football practice, securing the motor mount to the cart.
## 46382                                                                                                                                                                                          EE was adjusting gas pressure when a flame shot out from the burner area.
## 46383                                                                                                                                                                                   EE was adjusting grinding machine and jammed indedand middle finger of left hand
## 46384                                                                                                                                                                           EE was adjusting iv machine when the pump came loose and fell striking EE on the lt foot
## 46385                                                                                                                                                                                        EE was adjusting light in overhead projector and touched bulb with rt thumb
## 46386                                                                                                                                                                       EE was adjusting machine, when machine spun around causing EE to fall - large gash on lt leg
## 46387                                                                                                                                                        EE was adjusting mower - cut the mower off and theblade had not completely stopped and dislocated rt thumb.
## 46388                                                                                                                                  EE was adjusting paper on printer in telephone room. Her left forefinger struck wooden table and embedded a splinter into finger.
## 46389                                                                                                                                                                                                             EE was adjusting patient's restraints and strainedback
## 46390                                                                                                                 EE was adjusting steel plates on lading ??? While working on research project when the plate slippedand fell on his left index finger causing cut.
## 46391                                                                                                                                           EE was adjusting the car seat when his finger got caught between the seat and the base cutting his his right ring finger
## 46392                                                                                                                                                                                        EE was adjusting the driver's seat in transport van and bruised his finger.
## 46393                                                                                                                                     EE was adjusting the fork on a tow motor and the fork slid out of place and the motor fell on EE's foot. Fracture foot & toes.
## 46394                                                                                                                     EE was adjusting the grill's regulator; while loosening a bolt the wrench slipped & he hit the metal edge of the grill cutting his right wrist
## 46395                                                                                                                                                                                                 EE was adjusting the kg blade and a pin from it fell on right foot
## 46396                                                                                                                                        EE was adjusting the projecting and turned and the projector banged EE in the eye causing severe pain and blackened the ey.
## 46397                                                                                                                                                                EE was adjusting the seat in state van when his lthand hit adjustment lever his rt hand was injured
## 46398                                                                                                                                                          EE was adjusting the straps of a sling when she felt a sharp pain across her collar bone area up her neck
## 46399                                                                                                                                                                                            EE was adjusting top of sharps container and needle stuck her left hand
## 46400                                                                                                                                                                         EE was adjusting van seat when left middle finger got caught between coat runner and seat.
## 46401                                                                                                                                                                 EE was admin meds to client and client reched out and grabbed EE's thumb and twisted it backwards.
## 46402                                                                                                                   EE was administered the t. B. Skin test by the infirmary staff after reporting to them positive reading in past. Swollen/pain area to her lt arm
## 46403                                                                                                                          EE was administering a shot to a cow she was standing in front of the cow the cow kicked with her back foot and hit EE in the upper thigh
## 46404                                                                                                                                                                 EE was administering an injection when she was puncture with a needle to the rt hand middle finger
## 46405                                                                                                                                                                                 EE was administering care to pt and pt pulled awayfelt pain in lower l side & back
## 46406                                                                                                                                                                                       EE was administering crp and came in contact with the patients body fluid ()
## 46407                                                                                                                                                                                        EE was administering drug to animals and EE is severly allergic to animals.
## 46408                                                                                                                                  EE was administering drugs from the cart and bent over to get from bttomg drawer and unable to stand up for a brief periopd time.
## 46409                                                                                                                                                EE was administering euthanasia solution to rabbitwhen needle dislodged & the syringe sprayed EE in eyes and mouth.
## 46410                                                                                                                                                                                                                       EE was administering eye ointment to clients
## 46411                                                                                                                                                                             EE was administering flu shot to a pt, diifferent pt got up scratching her on chest ()
## 46412                                                                                                                            EE was administering injection into client's thigh; client swung arm at EE causing needle to rise and stick in EE's left hand thumb. ()
## 46413                                                                                                                                                       EE was administering insulin to client, client jerked, causing the needle to stick/puncture to EE left thumb
## 46414                                                                                                                                                                                                     EE was administering med to delusional pt when pt attacked her
## 46415                                                                                        EE was administering medication and when cleaning up area, staff had a needle in one hand and was attempting to pick up trash with other hand, needle pricked her finger ()
## 46416                                                                                                                                    EE was administering medication to a cat when the cat attacked the employee's hand causing 3 puncture wounds on rt index finger
## 46417                                                                                                                                                                                EE was administering medication to patient, patient hit EE's in the face with fist.
## 46418                                                                                                                                                                              EE was administering medications and got liquid thorazine on hands and a rash formed.
## 46419                                                                                                                                              EE was administering medications to patient when side port came open and medications splashed into EE face and lt eye
## 46420                                                                                                                                                                         EE was administering morning meds and backed intothe arm of med chair hurting her tailbone
## 46421                                                                                                                                                                    EE was administering oral antibioties to a researccat. Cat became fractious and bit/scrated EE.
## 46422                                                                                                                                                                                 EE was administering shot when she was punctured by a needle on the lt hand/finger
## 46423                                                                                                                                 EE was administeriny vaccinations to group of sowswhen unruly sow charged into him knocking him downand stricking him on head area
## 46424                                                                                                                                                                                       EE was administiring penloborbilo to the rat whichbit EE on rt index finger.
## 46425                                                                                                                                                                                                        EE was adminstering ppd to im and sturk himself with needle
## 46426                                                                                                                     EE was admitting a new patient when he took deputy's gun, shot co-worker and asked if she would like to die too, but then shot himself. Stress
## 46427                                                                                                                         EE was admitting patient to room 2515 while inmatewas signing rules sheet, gust of wind blew, then window blinds fell on head, right side.
## 46428                                                                                                                                                                                                 EE was affected by pepper spray and irritated her eyes and throat.
## 46429                                                                                                                                                                       EE was after inamte were evacuated from cell blockwhere fire had been - no injury sustained.
## 46430                                                                                                                                                                                                 EE was aggravated his low back injury while moving a weight scale.
## 46431                                                                                                                                                                                                     EE was agitated, threw book down & something flew in EE's eye.
## 46432                                                                                                                                                                          EE was aligning a boat trailer to vehicle hitch when he pulled a muscle in his lower back
## 46433                                                                                                                                                            EE was aligning etalon in dye laser when the reflection from the front surface struck her in the lt eye
## 46434                                                                                                                                                     EE was aligning paper in paper cutter when thumb struck the paper clamp, contusion and abrasion to left thrumb
## 46435                                                                                                                                   EE was alking on the new criminal magistrates floor hallway into lobby carrying a box and looked to the left and hit a column ()
## 46436                                                                                                               EE was allegedly opening a stairwell door attempting to push a food cart through when the door opened all the way it smashed her lt hand bt the door
## 46437                                                                                                                                                              EE was allegedly retrieving trash from inmate cell when he threw an unknown liquid substance onto her
## 46438                                                                                                                                      EE was allowing safekeeper out to use the restroomwhen he struck him in the chest with his fist. They then struggled in hall.
## 46439                                                                                                             EE was alone in nursing station when patient ran from middle of ward picked chair up over head and came at EE. EE stood up grabbed chair injured thumb
## 46440                                                                                                                    EE was already in a cast & walking with crutches due to surgery, his crutch slipped due to wet area& he hit his foot. Was referred to his ortho
## 46441                                                                                                                                                                                                      EE was ambulating client- client grabbed EE's wrist & pulled.
## 46442     EE was an active role player in a cmv counterterrorism scenario, when another trooper, who was a role player, took the EE to the ground with an arm bar in an attempt to make an arrest. During the transition to the ground the EE was struck in the ribs. ()
## 46443                                                                                                                       EE was an occupant in van that struck a vehicle that pulled out of a side road in fron of the van. Ribs on lt side bruised & rt toe injured.
## 46444                                                                                                                                                               EE was anesthetizing a mouse for blood collection and the mouse used its leg to scratch his hand. ()
## 46445                                                                                                                              EE was anesthetizing the scrotum of an inmate to remove a lesion. After injecting with lidocaine the needle punctured his left thumb.
## 46446                                                                                                                                                                                      EE was answering a call while going down steps felt something pull in rt knee
## 46447                                                                                                                                                                                         EE was answering a clinic call when something stung body, an insect sting.
## 46448                                                                                                                                                                                          EE was answering a code and twisted left knee while running on wet leaves
## 46449                                                                                                                                                                                                                   EE was answering phone and lost balance and fell
## 46450                                                                                                                                                                            EE was answering phone in another office when she twisted her back while turning corner
## 46451                                                                                                                                                              EE was answering phone when lightening struck and noise ran through wire, this noise injured EE l ear
## 46452                                                                                                                                    EE was answering phones & noticed odor in air. The was a gas leak causing fumes to enter buildingthese fumes caused discomfort.
## 46453                                                                                                                                                                      EE was answering phones when she felt a sting on her lt arm that later turned red and swollen
## 46454                                                                                                                                         EE was answering the phone in one of the offices, door stop was kicked out from door and EE stepped into the closing door.
## 46455                                                                                                                                                                                                                   EE was apparently bitten by unidentified insect.
## 46456                                                                                                                              EE was applying blankets beneath the door to soak up the rain that was coming in when EE slipped y fell on his back hitting his head.
## 46457                                                                                                            EE was applying brakes to avoid striking another vehicle which had been wrecked and disabled in his lane. The impact caused his right knee to hit dash.
## 46458                                                                                                                                                                                             EE was applying brakes to gurney and hit head on shelf by patient bed.
## 46459                                                                                                                                                     EE was applying cream to patient's arm when patient snatched his arm away from EE and punched her in the chin.
## 46460                                                                                                                                         EE was applying deepscrub cleaner to floor & floorbecame very slippery. I slipped & my legs split apart hurt rt side groin
## 46461                                                                                                                                                                                                      EE was applying deicer. Neck rash and taste of blood in mouth
## 46462                                                                                                                  EE was applying floor restorer on the floor with awet mop, the mop slipped out of her hands and EE tried to grab it, causing pain to rt shoulder.
## 46463                                                                                                                  EE was applying hand cuffs to an inmate through cell door when the inmate pulled his hands back pulling EE into cell door, injuring EE's lt knee.
## 46464                                                                                                          EE was applying ice melt on steps and walk due to the snow, EE was going back to vehicle for more icemelt, opening tailgate feet slipped. Smashed finger.
## 46465                                                                                                                                                                     EE was applying milking units to cow udder when cow kicked arm then stepped on arm repeatedly.
## 46466                                                                                                                                                                         EE was applying pressure to box to secure it on wall, die cast box broke and EE cut finger
## 46467                                                                                                                                                                       EE was applying self-defense technique on another officer & felt sharp pain in her rt wrist.
## 46468                                                                                                  EE was applying stripper and water. When she went to apply the water, after applying the stripper she lost her balance and fell on the right side of her body. ()
## 46469                                                                                                                                                   EE was apprehending a fox when the fox kicked and scratched EE on the rt leg--the fox is being tested for rabies
## 46470                                                                                                                                                                      EE was apprehending a runaway juvenile and juvenile resisted and EE hurt knee while doing so.
## 46471                                                                                                                                                                         EE was apprehending a student runaway in a wood area and came into contact with poison ivy
## 46472                            EE was apprehending a subject who ran from a vehicle stop. EE attemptined to handcuff the subject, and the subject began resisting so EE struck him with with his asp baton. The motion from strikes caused him to sprain his wrist. ()
## 46473                                                                                                                                                                       EE was apprehending a suspect shop lifter, sprain left ankle and hair line fracture in foot.
## 46474                                                                                                                                                         EE was approached by a client while swingging, andanother staff intervened and everyboy fell to the floor.
## 46475                                                                                                                                                                       EE was approached by a patient and was struck in tthe chest by the paatient fist full force.
## 46476                                                                                                                     EE was approached by inmate asking if he was the one that messed with his cousin last night, then inmate hit EE with closed fist on right jaw.
## 46477                                                                                                                                              EE was approaching a team for pregame check-in andwas blindsided with a football. Ball hit her on right side of head.
## 46478                                                                                                                                                                           EE was approaching an outside door, reporting to work, and slipped on ice outside office
## 46479                                                                                                                 EE was approaching home for curfew check when a vehicle ran though intersection & hit EE's car on the left front side. The other driver was drunk.
## 46480                                                                                                                              EE was approaching resident to assist w/ transfer, he (resident) became upset & grabbed EE's r thumb thumb popped & started to swell.
## 46481                                                                                                                 EE was approaching the gatehouse when she stepped off the edge of the sidewalk with her rt foot she fell twisting her rt ankle scratching lt elbow
## 46482                                                                                                                                                                    EE was ar yorkshire center for a meeting, she walked outside, and found an embedded tick later.
## 46483                                                                                                                                                                                                 EE was aresting suspect when suspect kicked EE twice on left ankle
## 46484                                                                                                                                                                EE was arranging and copying files stapling and removing them and putting paper clips on the files.
## 46485                                                                                                                                 EE was arrested drunken female she managed to get out of cuffs & start fighting officer, during altercation EE injured his back ()
## 46486                                                                                                                                         EE was arresting a beligerent inmate w/other staffhe injured his elbow and rt shin while attempting to restrain the inmate
## 46487                                                                                                                                                   EE was arresting a defendant when some saliva and mucus splashed into his face--offender is known as hiv postive
## 46488                                                                                                               EE was arresting a suspect after a car chase and a struggle took place and the suspect began to back up knocking EE down and dragging her. Head/knee
## 46489                                                                                                                                                                           EE was arresting a suspect and slipped during the arrest - muscle strain on rt upper leg
## 46490                                                                                                                     EE was arresting a suspect for dwi, suspect resistearrest, EE force him to the ground. EE's hand was caught between the suspect and the ground
## 46491                                                                                                                                        EE was arresting a suspect for dwi-suspect fled onfoot-EE went after suspect-in process tripped and fell injuring left eye.
## 46492                                                                                                                                EE was arresting a suspect who was resisting arrest by fighting and pulling away. During struggle EE hit gournd injuring left knee.
## 46493                                                                                                                                     EE was arresting a suspect who was resisting arrest by fighting and pulling away. EE fought with suspect and injured his hand.
## 46494                                                                                                                  EE was arresting a suspect, suspect resisting & eefought on ground with him until he was handcuffed scratch on rt forearm, sprain back & lt hand.
## 46495                                                                                                                                      EE was arresting a vioator who was resisting arrest EE and the violator fell with the EE landing on his rt hand fracturing it
## 46496                                                                                                                                                     EE was arresting an offender when some saliva and mucus got into EE face--offender is known to be hiv positive
## 46497                                                                                                                                             EE was arresting combative suspect for motor veh violation, EE fell to the ground with the suspect injuring left hand.
## 46498                                                                                                                                                                              EE was arresting driver for suspended license whenhe was kicked in the lower left leg
## 46499                                                                                                                                           EE was arresting dwi suspect when suspect ran. EE tackled him and fell to asphalt. Scrapes and bruises to hands and knee
## 46500                                                                                                                               EE was arresting dwi suspect. Suspect attempted to steal patrol car and wrecked vehicle. Vehicle struck as it went down embankments.
## 46501                                                                                                                         EE was arresting dwi suspect. Suspect resisted. EE struck himself in the rt hand with flashlight whhile attempting to strike suspect's arm
## 46502                                                                                                                           EE was arresting offender. Offender became irrational. EE responded with unarmed self defenseduring interaction EE fell injuring finger.
## 46503                                                                                                                                                                                     EE was arresting probationer while he was resisting. EE was struck in left eye
## 46504                                                                                                                               EE was arresting suspect for dui-suspect resisted and a confrontation broke out-EE hit left side of lip and craceked left rear tooth
## 46505                                                                                                             EE was arresting suspect for dwi. The suspect ran into woods and EE gave foot pursuit. EE attempted to take suspect into custody & suspect bit & hit e
## 46506                                                                                                                                                            EE was arresting suspect in the woods and a briar struck and scratched right eye, face, hands, and arms
## 46507                                                                                                                                                                EE was arresting suspect when blood of both came in contact-cuts occurred from a nail in the closet
## 46508                                                                                                                                         EE was arresting the suspect and was taking him to the ground and the back of the suspect's head struck his right eyebrow.
## 46509                                                                                                                                                           EE was arriving at work and entered nurses stationwhen inmate ynaked door our of EE's hand pulling hand.
## 46510                                                                                                                                                       EE was arriving at work when state van backed into her car. EE complains of pain in shoulder back and chest.
## 46511                                                                                                                                              EE was ascending bus steps. Missed first step and the arm holding bus railing was wrenched. Dislocated left shoulder.
## 46512                                                                                                                                  EE was ascending staircase and was watching foot steps-reached for handrail without looking and struck rt ring finger on handrail
## 46513                                                                                                                                                                                                                               EE was ascending stairs and slipped.
## 46514                                                                                                                                                                                 EE was ascending stairway in station when she struck her right knee on stair tred.
## 46515                                                                                                                                                                                                      EE was ascending steps and missed a step falling on left hand
## 46516                                                                                                                                                                                                            EE was ascending the staircase and fell injured lt leg.
## 46517                                                                                                                                                                                                   EE was asembling a notebook and shoulder and side began to hurt.
## 46518                                                                                                              EE was asisiting a resident down the waterslide ina boat we turned over, trying to protect the resident she took blunt of the roll as her lt shoulder
## 46519                                                                                                                                                                       EE was asisting an obese patient from a vehicle and EE felt pain in back shoulder, and neck.
## 46520                                                                                                                   EE was asked to rearrange a room in mendenhall for an interview. EE started moving eight foot tables. EE woke up next morning with back pain. ()
## 46521                                                                                                                                                                              EE was asked to utlize quiet room and started to swing hitting writer in the abdomen.
## 46522                                                                                                                                        EE was asking client questions about activities and for no apparent reason client hit EE on the left side of face and nose.
## 46523                                                                                                                   EE was asking co-worker spouse to leave facility. Right knee was injured during physical confrontatiwith spouse to prevent other EE to get hurt.
## 46524                                                                                                                                                                            EE was asking spanish expert language questions & heavy spanish book fell on EE's foot.
## 46525                                                                                         EE was asleep in her dorm room in building 3. EE woke up and attempted to get out of bed to walk to the bathroom. EE fell out of the bed and landed on her right shoulder.
## 46526                                                                                                                                                                    EE was asministring oral anitbiotics to research cat. Car became froctious and bit, scratch EE.
## 46527                                                                                                                                          EE was aspicating when the stopper of the vacuum aspirator was stuck into the flask, splashing bio- logical fluids on EE.
## 46528                                                                                                                                                                                                                EE was assaulted an unknown yellow liquid by inmate
## 46529                                                                                                                                                               EE was assaulted bu a patient. He recieved an injury while attempting to block punches from pateint.
## 46530                                                                                                                                EE was assaulted by 2 males-she was thrown to the ground, she then called the police-EE reports panice attacks and trouble sleeping
## 46531                                                                                                                   EE was assaulted by 2 safekeepers during an escapeattempt EE reports being hit in the head with lockby safekeeper and kicked repeatedly, dragged
## 46532                                                                                                                     EE was assaulted by a client. EE was see at urgent care and taken out of work. EE has an appt at urgent care on 6-12-09 to address rt w status
## 46533                                                                                                                                                                                                           EE was assaulted by a driver he stopped for speeding. ()
## 46534                                                                                                                            EE was assaulted by a group of inmates, resulting in a broken eye socket, other injuries to face/ head area-possible internal injuries.
## 46535                                                                                                                                                EE was assaulted by a juvenile while discharging his duties as counselor tech injury to lumbar, both hands left eye
## 46536                                                                                                                                                                                                                     EE was assaulted by a patient and injured neck
## 46537                                                                                                                                            EE was assaulted by a student that was out of control. Resulted in physical confrontation, both fell on concrete floor.
## 46538                                                                                                                                                                                              EE was assaulted by a student who struck her EE with his on the head.
## 46539                                                                                                                                                                                       EE was assaulted by a student who struck her several times with a telephone.
## 46540                                                                                                                                                                                                                             EE was assaulted by a student. Cut lip
## 46541                                                                                                                                                                                                     EE was assaulted by a student. Student punched EE in the face.
## 46542                                                                                                                                                                                      EE was assaulted by a suspect during an investi- gation... Head and right leg
## 46543                                                                                                             EE was assaulted by an aggressive inmate. Inmate blindsided EE and knocked him down, began stomping kicking him repeatedly. Bruises ribs/face, fx hip.
## 46544                                                                                                                    EE was assaulted by an angry patient with a pool stick. EE asked pt. To be seated after losing gamewith a peer. Pt. Became angry and hit staff.
## 46545                                                                                                                                                                                                                        EE was assaulted by an imate-struck in face
## 46546                                                                                                                                                                                                                                      EE was assaulted by an inmate
## 46547                                                                                                                                             EE was assaulted by an inmate and staff intervened to help they fell on right leg. Hyperextended right leg at the knee
## 46548                                                                                                                                                                                                      EE was assaulted by an inmate causing injury to left shoulder
## 46549                                                                                                                                                                                       EE was assaulted by an inmate who threw a basketball and hit EE in the face.
## 46550                                                                                                                                                                                                         EE was assaulted by an inmate's fist and with pepper spray
## 46551                                                                                                                                                                               EE was assaulted by an inmate, left eye, left cheeck, right ring finger, left eyelid
## 46552                                                                                                                                                                                              EE was assaulted by an inmate. Laceration on lt side of head and eye.
## 46553                                                                                                                                                                                EE was assaulted by assailant attempting to steal her purse injuring left shoulder.
## 46554                                                                                                             EE was assaulted by felon. Felon butted heads withee attempted to gouge eyes & strike with fists, laceration lt hand finger, rt eye red, forehead sore
## 46555                                                                                                                                                                                    EE was assaulted by in inmate and was struck 3x in the face w/his closed fists.
## 46556                                                                                                                                                                                                  EE was assaulted by inmate as he was giving him a bathroom break.
## 46557                                                                                                                EE was assaulted by inmate when conducting routinecell search. Inmate struck EE with lock on the right side of ribs & bit him on lower right torso.
## 46558                                                                                                                                              EE was assaulted by inmate when he had the recreation door open. Suffered injuries to nose, right ear, and right arm.
## 46559                                                                                                                                         EE was assaulted by inmate while addressing questions to the dart group inmate used his fist & feet to deliver blows to EE
## 46560                                                                                                                                                     EE was assaulted by inmate while attempting to counsel him by being struck in the jaw on the leftside of face.
## 46561                                                                                                                                                                                                           EE was assaulted by inmate while restraining the inmate.
## 46562                                                                                                                                                    EE was assaulted by inmate, and was wrestling for several minutes on the floor, no injuries noted at this time.
## 46563                                                                                                          EE was assaulted by inmate, inmate struck EE on theleft side of his face. In the process EE fell down skinned his left knee and elbow, landed on his back
## 46564                                                                                                                            EE was assaulted by inmate, with a closed fist to twice EE on job assignment in g hallway managing inmate going & coming. Lt jaw - sore
## 46565                                                                                                                                              EE was assaulted by inmate-struck on left side of head-EE fell to floor with inmate hitting her head and left forearm
## 46566                                                                                                                                           EE was assaulted by inmate. Inmate swung at EE, hitting him in left arm. Inmate grabbed EE's legs and threw him to floor
## 46567                                                                                                                                                                                                    EE was assaulted by juvenile in effort to restrainthe juvenile.
## 46568                                                                                                                                                                             EE was assaulted by juvenile who became aggressive, staff was redirecting juvenile. ()
## 46569                                                                                                                                                                                                EE was assaulted by patient causing bruised nose and broken glasses
## 46570                                                                                                                                                                                                               EE was assaulted by patient causing facial contusion
## 46571                                                                                                                                                                                                EE was assaulted by patient causing to injury to lt eye and forhead
## 46572                                                                                                                                                                       EE was assaulted by patient while trying to assistanother patient. EE's glasses were broken.
## 46573                                                                                                                                                                                EE was assaulted by patient-struck in eye and in the back of the head several times
## 46574                                                                                                                                                  EE was assaulted by student *clmt previously rec'd 2. 5% ppd/back***pd 5/11/01*atty- robert younce - 919-783-7887
## 46575                                                                                                                                                                                                       EE was assaulted by student - injured neck, back and rt arm.
## 46576                                                                                                                                                                                                         EE was assaulted by student and injured rt foot cat 675205
## 46577                                                                                                                                                                                                             EE was assaulted by student atty ken king 910 455 4065
## 46578                                                                                                                                                                                               EE was assaulted by student causing injury to back & neck left wrist
## 46579                                                                                                                                                                                         EE was assaulted by student while teaching - cut face, broken eye glasses.
## 46580                                                                                                                       EE was assaulted by subject while attempting to issue citation. EE was struck in chest three timeswith elbow and kicked in groin/thigh area.
## 46581                                                                                                                                                                                                           EE was assaulted by supervisor causing EE to strain back
## 46582                                                                                                                                                                    EE was assaulted by two male subjects. One kicked him in groin and one pounded him in the face.
## 46583                                                                                                                                                                                                                     EE was assaulted while making arrest f18 filed
## 46584                                                                                                                                                                                                                                    EE was assaulted with a weapon.
## 46585                                                                                                  EE was assembling a desk, which included a hutch, woke up the following morning and could not bend to put his shoes on. Possibly strained while lifting hutch. ()
## 46586                                                                                                                                                                                   EE was assembling a table when the table assembly fell and struck her left ankle
## 46587                                                                                                                                                                                       EE was assembling and lifting boxes for packaging books. Pain in right elbow
## 46588                                                                                                                                                                              EE was assembling book shelves when tool slipped out ot hand and cut rt index finger.
## 46589                                                                                                                                                                                                  EE was assembling easel for training class and cutfinger on easel
## 46590                                                                                                                                         EE was assembling library shelves & a shelf spreader cut hand at the base of thumb. Laceration left hand at base of thumb.
## 46591                                                                                                                                                           EE was assembling metal shelves, pounding out dentsprying flanges, twisting on floor & overreached on 24
## 46592                                                                                                                                                                             EE was assembling racks and pushed on rack when he pulled forward and felt pin in leg.
## 46593                                                                                                                                                                  EE was assessing a ceramic tile job. Handled a broken tile and sharp edge cut right index finger.
## 46594                                                                                                                                                                                                                         EE was assessing an inmate and was struck.
## 46595                                                                                                                                                        EE was assessing child's developmental progress, at end of session, parents stated whole family had scabies
## 46596                                                                                                                             EE was assessing injuries of a resident who fell the resident jump up and punched EE in the chest over r breast and punched r shoulder
## 46597                                                                                                                                  EE was assigned as lead c/o on squad & he stepped on a yellow jacket nest along side of the highway, EE was stung on his rt hand.
## 46598                                                                                                                                                    EE was assigned as the kitchen offcier and reported that as he walked on operations yard he slipped on some ice
## 46599                                                                                                                                                        EE was assigned for basic training for shot gun while firing the stock slipped off shoulder hitting in face
## 46600                                                                                                               EE was assigned to a surveillance detail & upon returning to his vehicle, EE stepped on an uneven surface & caused him to fall injuring right ankle.
## 46601                                                                                                                        EE was assigned to assist control/arrest techniqueee was loosing a lot of water, having headaches & nausea. Transported to wake medical er.
## 46602                                                                                                                                                               EE was assigned to c-dorm while monitoring the dorm she was hit by an orange on her upper right arm.
## 46603                                                                                                                                                    EE was assigned to chow hall with inmates for lunch, on the way down the steps she fell at the last stair step.
## 46604                                                                                                                                                                 EE was assigned to clean dining room; injured while she was there. Felt like she pulled something.
## 46605                                                                                                                  EE was assigned to client during special olympics and client was tugging and pulling on EE through out the event causing neck and shoulder spasm.
## 46606                                                                                                                 EE was assigned to community work program, EE was instructing inmates how to sharpen bush axe when the file slipped causing cut left index finger.
## 46607                                                                                                                                                                                 EE was assigned to contol room and felt a bite from an insect causing area to itch
## 46608                                                                                                                                             EE was assigned to cwc 1, transporting 10 inmates, EE was pulling of I-85 n when hit by truck on right side of trailer
## 46609                                                                                                                      EE was assigned to cwp work squad the EE was in a ditch supervising inmates who were clearing it out he was stuck by briars/burs in his thigh
## 46610                                                                                                                                          EE was assigned to dorm I was walking across the iupper level in c pod when inmate came to me and attacked me from behind
## 46611                                                                                                                             EE was assigned to go thru woods and to be able todo proper security. While walking through woods itappeared that limb struck his eye.
## 46612                                                                                                                                                                                      EE was assigned to hospital to supervise inmate that was being treated fot TB
## 46613                                                                                                                                                               EE was assigned to kitchen security, EE stepped inwater that caused him to slip & fall to the floor.
## 46614                                                                                                                                                               EE was assigned to kitchen yard and storm blew up and strong winds caused sand to blow into his eyes
## 46615                                                                                                             EE was assigned to medical and while at the medicine cart EE had to walk down to door 201 to let inamember of the medical sraff something in hell popp
## 46616                                                                                                                                         EE was assigned to medium yard, he walked past several inmates and was hit by flying object such as rock or piece of glass
## 46617                                                                                                                                                       EE was assigned to mm bay which was surrounded by unknown fumes in work area which caused both eyes to swell
## 46618                                                                                                                                    EE was assigned to patient, who was 2 to 1 aggression, she started to fall and he attempted to catch her, thus pulling his back
## 46619                                                                                                                                           EE was assigned to plant flowers outside building. EE has allergic reaction on left forearm from flowers or spider bite.
## 46620                                                                                                                        EE was assigned to read shelf and check numbers ofbooks-after reading and shelving books EE complained of pain in neck, arm, and shoulders.
## 46621                                                                                                                                                       EE was assigned to road squad while standing his post on a power line cut over he slipped and fell in a hole
## 46622                                                                                                            EE was assigned to roving patrol she was opening the security salley port gate to let a vehicle ontothe compound gate got jammed and stopped moving. ..
## 46623                                                                                                               EE was assigned to seg.. Went into an inmates cell to take paper off light fixture.. He stood on the inmates bed frame, he stepped down and hit knee
## 46624                                                                                                                                               EE was assigned to supervise 2 inmates, during the paintingshe began to breathing problems, the fumesfrom the paint.
## 46625                                                                                                                                          EE was assigned to supervising inmates while they buff and wax floor EE was walking across floor when he slipped and fell
## 46626                                                                                                                                  EE was assigned to the dining hall and an inmate opened dining hall doot and bent EE's right hand back in the opposite direction.
## 46627                                                                                                                                      EE was assigned to the mailroom was pushing the mail cart outside the front entrance of admin building due to mice he slipped
## 46628                                                                                                                                                   EE was assigned to the n. C. Ale training academy as a trainee. EE was doing pudsh-ups at the time of injury. ()
## 46629                                                                                                                                              EE was assigned to the perimeter patrol vehicle during his patrol he felt light headed and felt weak due to the fumes
## 46630                                                                                                                        EE was assigned to the road squad, as EE supervised the female inmates, she stepped on a board & a nail went through her boot into rt foot.
## 46631                                                                                                                                            EE was assigned to tower # 4 when she unlocked theperimerter gate door for maintenance to enter & fell in the sidewalk.
## 46632                                                                                                                                         EE was assigned to tower #3 when lightning struck. He felt a strong burning on the right side of the neck and both elbows.
## 46633                                                                                                                                                              EE was assigned to tower he stated a wasp entered his shirt sleeve and stung him unger his lt arm pit
## 46634                                                                                                                                                                                                    EE was assigned to tower when she tripped and fellonto rt knee.
## 46635                                                                                                                                        EE was assigned to transportation and was involved to an accident a car came to a suden stop EE tried to stop but could not
## 46636                                                                                                                                EE was assigned to unit dorm, when he felt lower left stinging, & observed a spider under his pants. Right lower leg red & swollen.
## 46637                                                                                                                                                             EE was assigned to valdese hospital to supervise an inmate and later determined that the inmate hastb.
## 46638                                                                                                                                                         EE was assigned to valdese hospital to supervise an inmate and later was determined that the inmatehas TB.
## 46639                                                                                                                             EE was assigned to work unit 1 when inmate came out of his cell and cut anoter inmate and he used force on inmate taking him to ground
## 46640                                                                                                                                                                                            EE was assigned to yard duties when an insect stung her on the rt thumb
## 46641                                                                                                                                                                      EE was assigning inmate to dorm when he was talking to her saliva struck inmate in the rt eye
## 46642                                                                                                                                      EE was assisiing in loading a ascore board from hand cart. Cart moved and EE's finger was caught between cart and scoreboard.
## 46643                                                                                                                                 EE was assisiting a nurse collecting specimen sample. EE went to bend over to give a cup and felt a pulling li lt lower back area.
## 46644                                                                                                                          EE was assisiting a resident changing her attends, when she shifted her weight to keep the resident from falling and twisted her lt knee.
## 46645                                                                                                                                             EE was assisiting anothe staff member w/a client in the bed in a lift position and felt a sharp pain in lower abdomen.
## 46646                                                                                                                                               EE was assisiting another staff to break up a fight and restrained on of the students and EE's leg hit the door jam.
## 46647                                                             EE was assisiting another staff with patient adl care. EE was attempting to assit patient with standing up from toilet, after care performance EE felt a burning sensation in middle to lower back. ()
## 46648                                                                                                                                                                                                     EE was assisiting client in dressing EE felt pain in her back.
## 46649                                                                                                                                                                                  EE was assisiting client out of bed to get dressed and felt a pull in lower back.
## 46650                                                                                                                                             EE was assisiting client to stand and 1/2 way up the client fell back down resulting in back, neck, & shoulder strain.
## 46651                                                                                                                                                                                    EE was assisiting falling client into wheelchair and EE felt pain in upper arm.
## 46652                                                                                                                                                   EE was assisiting in an arrest when an unident lawenforcement officer struck EE above the lt eye w/a flashlight.
## 46653                                                                                                                                                                                               EE was assisiting in carrying a patient and felt pain in back later.
## 46654                                                                                                                                                                                         EE was assisiting in restarin a dellusional pt and was struck in the face.
## 46655                                                                                                                                                                              EE was assisiting in restaring a patient and while doing so EE's low back was pulled.
## 46656                                                                                                               EE was assisiting in restraining of a student and in the process the student nose was bleeding and came in contact w/EE's hand. EE wanted a hiv test
## 46657                                                                                                                                                       EE was assisiting in restraining pt during stugglereceived carpet burns to the finger and abrasions to knee.
## 46658                                                                                                                EE was assisiting lifting a client from bed to wheelchair. Client would not put weight on his legso EE had to hold total weight causing pain in bac
## 46659                                                                                                                                                                                                   EE was assisiting lifting another pt and felt painin lower back.
## 46660                                                                                                              EE was assisiting lifting client our of bed and into wheelchair turned to place client in chair and felt a pull/sarp pain back radiating down rt leg.
## 46661                                                                                                                     EE was assisiting patient to the bathroom and patient started to fall and EE tried to hold the patient to keep them from falling to the floor.
## 46662                                                                                                                                                     EE was assisiting patient when patient ran from room, attached another patient. During struggle strained back.
## 46663                                                                                                                                                                                EE was assisiting put a client to bed and felt a jolt in her neck and it got worse.
## 46664                                                                                                                                                                    EE was assisiting residednt up stairs and resident began to fall and caught EE rt side of back.
## 46665                                                                                                                                                  EE was assisiting staff members restrain a patientand patient fell to the floor w/EE and landed on leg and ankle.
## 46666                                                                                                                                                                   EE was assisiting to restrain student after a fight when EE felt a sharp pain in her lower back.
## 46667                                                                                                                                                                                            EE was assisiting w/ aggressive client and they kicked her in her ribs.
## 46668                                                                                                              EE was assisiting with a car chase and lost control of his vehicle ran off the left side of the roadway striking the concrete median barrier wall. ()
## 46669                                                                                                                                                EE was assisiting with a tree when a chainsaw operated by another employee caused EE to have 2 lacerations on shin.
## 46670                                                                                                                                            EE was assisiting with breaking up a fight b/t two students while pulling the students he twisted lt wrist and shoulder
## 46671                                                                                                                                                 EE was assisiting with the restraint of an aggressive student when student bit and scratched EE on the lt forearm.
## 46672                                                                                                                                                                                                    EE was assisitn slient when the bed rails fel on her left foot.
## 46673                                                                                                             EE was assisitng client to bedroom was exiting room and caught tennis shoe on carpet falling forwardstaf grabbed rail and caught arm between rail/wall
## 46674                                                                                                                                 EE was assissting client off commode and client pulled back instead of standing up. EE felt immediate pain/cramping in right back.
## 46675                                                                                                                                                                                      EE was assissting client up out of chair when she felt a pull in her abdomen.
## 46676                                                                                                                                                  EE was assissting with an inmate, who set fire on cellblock 1c. Inmate became combative and use of force occured.
## 46677                                                                                                                                                                           EE was assistance with removing pt table top when pt punch her in face on l side of jaw.
## 46678                                                                                                                                                                        EE was assistanting with transfering pt to anotherchair felt sharp pinch in left wrist area
## 46679                                                                                                                                          EE was assisted client in the bathroom, client insisted upon sitting on floor & EE was trying to hold EE & strained back.
## 46680                                                                                                                                       EE was assistig patient when the patient grabbed her arm causing her neck to jerk... Injuring her lt shldr, lt arm, and hand
## 46681                                                                                                                                                                    EE was assistiing with an inmate when inmate pushed him to the floor causing injury to his head
## 46682                                                                                                                                           EE was assistin deputy with arrest-when suspect resisted and assaulted the EE while being handcuffed-EE injured left arm
## 46683                                                                                                                                    EE was assisting 2 other staff members to do a 3 person lift of patient into high tub only had one lift cover-strained shoulder
## 46684                                                                                                                                                                 EE was assisting 3 other medical personnel in restraining a sick horse. Sprain left knee and back.
## 46685                                                                                                                                                          EE was assisting 3 other people move half of a car used for seat belt demos at the fair and strained back
## 46686                                                                                                                EE was assisting 4other staff to subdue a patient, attempted to get her arm in a hold and rammed finger in patients belt buckle, 5th finger rt hand
## 46687                                                                                                                                                                      EE was assisting EE place resisent in personal restraints and then escorting to time out room
## 46688                                                                                                                                     EE was assisting MD w/ paracentosis procedure. EE was stuck with needle that was used to inject lidocaine into inmates abdomen
## 46689                                                                                                                                                       EE was assisting a blind pt up stairs, pt missed step, stumbled. EE held on to pt pulling right shoulder. ()
## 46690                                                                                                                                                           EE was assisting a board member when she was puncture by an umbrella to the pubic bone lt side of pelvis
## 46691                                                                                                                          EE was assisting a client and she ran over her foot with the clients wheelchair. EE was seen in the er for foot pain.. EE rtw on 5/23/09.
## 46692                                                                                                                                                                                       EE was assisting a client from bed to wheelchair and felt a pulling in back.
## 46693                                                                                                                                                                                         EE was assisting a client from falling when lower back struck door handle.
## 46694                                                                                                                                                        EE was assisting a client from floor to her chair rhonda's rt knee locked up where she couldn't walk on it.
## 46695                                                                                                                                                                                                EE was assisting a client in getting up and lt palm bent backwards.
## 46696                                                                                                              EE was assisting a client in the restroom, EE saysshe strained her back while preventing the client from falling. EE would like to see a doctor asap.
## 46697                                                                                                                                                 EE was assisting a client in the restroom, client pulled away from EE. EE was seen in er & returned to work 3-8-09
## 46698                                                                                                                                         EE was assisting a client in walking when client felled and pulled EE rt arm as she was trying to stop client from falling
## 46699                                                                                       EE was assisting a client obtain job coaching services. The client was later admitted to the hospital with a diagnosis of bacterial meningitis. Possible exposure existed ()
## 46700                                                                                                                         EE was assisting a client off the golf cart when the client tripped. The EE attempted to catch the client causing the right wrist to bend.
## 46701                                                                                                             EE was assisting a client on the toilet and the client was falling so the EE caught client and she hurt her left shoulder. EE was seen at lmh er. EE h
## 46702                                                                                                                EE was assisting a client set up a work area and astaple gun accidently hit the back of EE's hand discharging a staple in the knuckle index finger.
## 46703                                                                                                                                                                  EE was assisting a client to bed and the client became upset and hit his head on EE's lt forearm.
## 46704                                                                                                                                                                                       EE was assisting a client to get dressed and client kicked and pushed staff.
## 46705                                                                                                                          EE was assisting a client to walk he began to fall and EE attempted to catch client when he grabbed her lt hand felt a sharp pian in arm.
## 46706                                                                                                                                     EE was assisting a client up out of wheelchair andclient failed to support own weight and EE tried &felt pain in leg and back.
## 46707                                                                                                                                                                EE was assisting a client w/ taking a bath & she fell on the floor. Seen at er, will rtw on 2-22-09
## 46708                                                                                                                      EE was assisting a client wash their hands and pt began to resist and started to swing elbow hittingee in the stomach. EE is 38 wks pregnant.
## 46709                                                                                                                                                                                          EE was assisting a client when client grabbed EE lt thumb causing injury.
## 46710                                                                                                                                                                                               EE was assisting a client when client grabbed EE neck and pulled it.
## 46711                                                                                                                                                                                           EE was assisting a client when client grabbed EE rt wrist and twisted it
## 46712                                                                                                                                                                                                EE was assisting a client when client injured EE finger on rt hand.
## 46713                                                                                                                                                                                 EE was assisting a client when he fell hitting hisleg on the chair right knee/chin
## 46714                                                                                                                                                                                                      EE was assisting a client when her foot was struckby a chair.
## 46715                                                                                                                                                                                                              EE was assisting a client when she felt pain in back.
## 46716                                                                                                                                                                                                               EE was assisting a client when she injured her back.
## 46717                                                                                                                    EE was assisting a client when the client suddenlyknicked him with his foot in the face knocking offhis glasses; bruised lt eye; glasses broken
## 46718                                                                                                                                                          EE was assisting a client with taking a bath and injured her back. EE was seen in the er, rtw 21 June 09.
## 46719                                                                                                                                                                                                            EE was assisting a client, client bit staff on lt wrist
## 46720                                                                                                                                    EE was assisting a co-worker in restraining a student, the student broke away and EE had to leap over a bed and hit his rt leg.
## 46721                                                                                                                                                                             EE was assisting a co-worker to change resident, he grabbed EE finger & twisted it. ()
## 46722                                                                                                                                                                                                                       EE was assisting a combative. Injured wrist.
## 46723                                                                                                                                                                      EE was assisting a consumer to the bathroom, the consumer reached to hug EE pulling her neck.
## 46724                                                                                                                                                            EE was assisting a coworker in getting a resident out of a water bed and felt a pull in back and rt leg
## 46725                                                                                                                                                           EE was assisting a delivery person place some boxes. A box fell off of the dollie and landed on EE foot.
## 46726                                                                                                                                               EE was assisting a facility worker w/instructionalvideo when EE fell and he hit his chin and bit down hard on teeth.
## 46727                                                                                                                  EE was assisting a fellow officer who was being attacked by unknown person choking him. EE was struck in the face causing his glasses to be knock
## 46728                                                                                                                                                               EE was assisting a fellow staff that had fallen onstairs. EE could not see stairs well and she fell.
## 46729                                                                                                                EE was assisting a lady with her car which rolled down an enbankment-while attempting to stop the car EE open the door and fell striking his lt leg
## 46730                                                                                                                                                                                             EE was assisting a motorist when a vehicle hit his patrol car in rear.
## 46731                                                                                                                                  EE was assisting a nash co. Deputy with effecting an arrest of a suspect. EE strain low back while engaged in fight with suspect.
## 46732                                                                                                                                                                            EE was assisting a new EE in re-arranging & setting up office. Experienced muscle pain.
## 46733                                                                                                                                                                            EE was assisting a nurse with getting a urine sample when she injured her lt hand/thumb
## 46734                                                                                                                                                                                             EE was assisting a patient from fslling and she felt pain in her back.
## 46735                                                                                                                 EE was assisting a patient in walking. Patient became off balance and began to fall. EE assisted patient to floor. EE injured low and middle back.
## 46736                                                                                                                                                             EE was assisting a patient inti their wheelchair and they struggled with her causing her back to hurt.
## 46737                                                                                                                                 EE was assisting a patient into bed when the patient's body went limp falling back, causing the EE spine to pop; injured back back
## 46738                                                                                                                                                EE was assisting a patient move a table out of theway and EE's finger was caught between the table and cement post.
## 46739                                                                                                                                                          EE was assisting a patient move in the bed and felt like something pulled. Has been hurting ever since ()
## 46740                                                                                                                                                                   EE was assisting a patient on van and patient let go and fell back on EE. Injured low back/side.
## 46741                                                                                                                                                                                                        EE was assisting a patient when his back twisted and popped
## 46742                                                                                                                                                                                                     EE was assisting a patient when she injured her left great toe
## 46743                                                                                                                                                          EE was assisting a patient who was about to faint, and EE hurt her back when helping patient lie down. ()
## 46744                                                                                                                                                                    EE was assisting a patient who was falling when she felt a pulling in her back and left side ()
## 46745                                                                                                                                                                             EE was assisting a patient with bathing and slid hitting right knee on shower chair ()
## 46746                                                                                                                                                                    EE was assisting a pt fm w/c to bed, pt was non weight bearing, EE felt a pull in r shoulder ()
## 46747                                                                                                                                                                        EE was assisting a pt in the laundry room, slipped/fell on soap powder that was on floor ()
## 46748                                                                                                                                           EE was assisting a pt out of the floor, while holding pt's legs pt kicked EE causing shoulder to be pulled. Rt shoulder.
## 46749                                                                                                                                                                        EE was assisting a pt that became faint and limp safely into a chair then to the ground. ()
## 46750                                                                                                                                                                                 EE was assisting a pt w/bedside comode felt a quick sharp pain on lt side rib cage
## 46751                                                                                                                                                                                                              EE was assisting a pt when he injured his lt forearm.
## 46752                                                                                                                                                                                    EE was assisting a pt when pt dropped a drinking cup striking EE in the lt eye.
## 46753                                                                                                                                                                                                       EE was assisting a pt when pt grabbed and twisted rt breast.
## 46754                                                                                                                                                                                EE was assisting a pt when she felt burning and a pulling sensation in back of neck
## 46755                                                                                                                                                                                                              EE was assisting a pt when she injured her lower back
## 46756                                                                                                                                                                      EE was assisting a pt with shower, slipped and fell striking right ribcage on shower chair ()
## 46757                                                                                                                             EE was assisting a resident change his cloths, whnshe turned around, client fell against her, cause EE to fall on her low back/buttock
## 46758                                                                                                                                                                                    EE was assisting a resident in a tub and strained back moving toward step stool
## 46759                                                                                                                                                                                                  EE was assisting a resident off the floor and strained lower back
## 46760                                                                                                                                                                             EE was assisting a resident to eto, his hand hit the door facing and gdadually swollen
## 46761                                                                                                                                                                                 EE was assisting a resident to shower stretcher and pulled muscle in rt upper arm.
## 46762                                                                                                                                                                 EE was assisting a resident with a bath and the resident hit EE in the face and broke her glasses.
## 46763                                                                                                                     EE was assisting a resident with getting out of another resident's room, in the hallway the resident jerked away from EE, popping his shoulder
## 46764                                                                                                                      EE was assisting a staff with an out of control student. When he grabbed the chair to prevent injury, he felt pain in right shoulder to back.
## 46765                                                                                                                    EE was assisting a stranded motorist by changing a tire & was tightening the lug nuts on the wheel & felt a pull in the lower part of his back.
## 46766                                                                                                                 EE was assisting a stranded motorist by changing their flat tire. In the process been previously injured and he had been cleared to return to full
## 46767                                                                                                                            EE was assisting a stranded motorist change a flattire when EE felt a sharp pain in middle of back, as he placed spare tire on vehicle.
## 46768                                                                                                                           EE was assisting a stranded motorist, changed the flat tire, the jack was wedged in the undercarriagof car. EE attempted to pull it free
## 46769                                                                                                                        EE was assisting a stranded motorist. As he was getting back in the vehicle, his left foot slipped out from under him & twisted right knee.
## 46770                                                                                                                                                               EE was assisting a stranded vehicle and pushed thevan backwards and noticed a sharppain in low back.
## 46771                                                                                                                                                                                                    EE was assisting a student that tested positive for hepatitis c
## 46772                                                                                                                                                                                      EE was assisting a student trying to lift patient pulled a muscle in her back
## 46773                                                                                                                                                   EE was assisting a student w/financial aid when EE's phone ranged and EE turned to answer and EE felt back pain.
## 46774                                                                                                                             EE was assisting a student while in squatting posi-tion. Moved to his lt, tried to stand up, felt and heard his lt knee pop real loud.
## 46775                                                                                                                                                                     EE was assisting a student with a patient when the patien coughed and spitted on EE in the eye
## 46776                                                                                                                                                                    EE was assisting a student with a project when she tripped on a map-tube that fell on floor. ()
## 46777                                                                                                         EE was assisting a town of catawba officer place a female suspect into the officer's vehicle. EE was bitten in the upper right thigh during the arrest. ()
## 46778                                                                                                               EE was assisting a tractor operator in changing a wtractor implement. EE finger was pinched when it was caught between implement & tractor lift arm.
## 46779    EE was assisting a traveler at the counter & turned away to retrieve a map from the back counter & in the process of getting the map, she tripped over a step stool that was being used to update the activity board located directly above the back counter. (
## 46780                                                                             EE was assisting a wrecker driver with the removal of a camper shell from the roadway at a traffic crash. EE stated he began to experience pain in his left stomach and groin area. ()
## 46781                                                                                                                                                                      EE was assisting all wk carrying a child whois not mobile and that put a strain on EE's back.
## 46782                                                                                                                                                                                                         EE was assisting an aggressive pt he injured his lt ankle.
## 46783                                                                                                                                                       EE was assisting an agressive client when client struck and pull EE down to floor causing injury to stomach.
## 46784                                                                                                                                                                                              EE was assisting an agressive client when she was kicked in the face.
## 46785                                                                                                                                                                                  EE was assisting an agressive patient and the patient began to scratch and hit EE
## 46786                                                                                                                                         EE was assisting an elderly subject who had fallen out of the bed in the floor. EE strained his stomach and left shoulder.
## 46787                                                                                                                                                                      EE was assisting an injuried inmate when blood spilled on his rt index finger from the inmate
## 46788                                                                                                                                                          EE was assisting an inmate cutting a piece of cloth, scissors went through cloth and cut EE's left thumb.
## 46789                                                                                                              EE was assisting an inmate to b-block when he got his right thumb caught between the wall, inmate andbars of the holding pan area between a&b blocks.
## 46790                                                                                                                                                                                                          EE was assisting an inmate when inmate grabbed herrt hand
## 46791                                                                                                                                                            EE was assisting an inmate with pulling a chart from the wall when the strap broke cutting EE rt finger
## 46792                                                                                                                           EE was assisting an iredell dententon officer restrain an intoxicated driver. The driver spit in the face of EE in the left eye area. ()
## 46793                                                                                                                        EE was assisting an officer with serving a warrantfor arrest. As EE attempted to arrest person he lost balance & fell. Twisted lt shoulder.
## 46794                                                                                                                                                                             EE was assisting an out of control student and they fell pinning his arm to the floor.
## 46795                                                                                                                                                                                              EE was assisting an rn with a pt when the pt radiofell on EE lt hand.
## 46796                                                                                                                                                                       EE was assisting and transferring new ambulatory client several times, noticed pain in back.
## 46797                                                                                                                                                      EE was assisting and was kicked by the offender and knocked over on the floor while trying to securehis legs.
## 46798                                                                                                                                                                                   EE was assisting another EE and she lifted client from wheelchair, felt back pop
## 46799                                                                                                                                                                       EE was assisting another EE and when rtn to my desk hit knee on chair and fell to the floor.
## 46800                                                                                                                                                               EE was assisting another EE assemble metal shelf. Shelf fell off bracket onto EE's left index finger
## 46801                                                                                                                                                                   EE was assisting another EE in escorting inmate the inmate refused to enter his cell and grabbed
## 46802                                                                                                                                                                        EE was assisting another EE in loading heavy crates into truck and strained lt side and hip
## 46803                                                                                                                                                       EE was assisting another EE in restraining studentstudent was kicking and jerking- straining rt arm and back
## 46804                                                                                                                                 EE was assisting another EE moving a computer and pushed the door out so he could go thru and felt pain in his neck and upper back
## 46805                                                                                                                                                          EE was assisting another EE put a patient back to bed as she turned she felt shooting pains in lower back
## 46806                                                                                                                                                                EE was assisting another EE subdue a violent pt. & pt. Scratched his right ring finger & left thumb
## 46807                                                                                                                                                         EE was assisting another EE trying to restrain a patient. They all fell to the floor. EE injured her right
## 46808                                                                                                                                                                   EE was assisting another EE with an arrest- strained lt elbow while attempting to secure suspect
## 46809                                                                                                                                                                                       EE was assisting another EE with combative resident and was bit on the hand.
## 46810                                                                                                                                                       EE was assisting another EE with getting a patient into bed, when patient refused and would not stand alone.
## 46811                                                                                                                                            EE was assisting another EE with getting copy paper fromthe storage closet when she twist to turn and felt pain in back
## 46812                                                                                                                                                                      EE was assisting another EE with incontinence care pt bucking back & forth and injured my arm
## 46813                                                                                                                        EE was assisting another EE with movement of filing cabinet. EE's left hand was caught between two cabinets as other employee released one.
## 46814                                                                                                                   EE was assisting another EE with out of control student. Student broke free and EE was still holding. EE fell to ground and student on top. Ankl
## 46815                                                                                                                           EE was assisting another cna in redressing a male patient who disrobed, patient became angry and scratched cna on the forearm and wrist.
## 46816                                                                                                                              EE was assisting another employee moving a concrete beam with a crane when beam fell off cribbing and rolled onto EE's right hand. ()
## 46817                                                                                                                           EE was assisting another employee with cutting bamboo with a weedeater. The cutting made contact with right knee cut through the skin ()
## 46818                                                                                                                                                                     EE was assisting another hct in resident rm #230c to assist with lifting her to head of bed ()
## 46819                                                                                                                                                                          EE was assisting another hct w/patient and hct's hand slipped and hitting EE in the face.
## 46820                                                                                                                                                                                        EE was assisting another officer in a use of force. Lt wrist was bent back.
## 46821                                                                                                                          EE was assisting another officer in lifting an overweight inmate off the floor and experienced pain in neck, lt shoulder, and finger tips
## 46822                                                                                                                                                                        EE was assisting another officer removing boxes when his rt hand was caught between the box
## 46823                                                                                                                             EE was assisting another officer to handcuff a resisting subject who was bleeding. EE was exposed to blood from this person onto hand.
## 46824                                                                                                                                                                                          EE was assisting another officer when an inmate struck EE in the left eye
## 46825                                                                                                                                                                                EE was assisting another officer with an inmate when he injured his fingers and lip
## 46826                                                         EE was assisting another officer with controlling a subject that was resisting arrest. EE did a balance displacement technique and hit his left knee on the floor as he took the subject to the ground. ()
## 46827                                                                                                                                                             EE was assisting another officer with leg irons, lost his footing and twisted hit knee and lower back.
## 46828                                                                                                                      EE was assisting another patient in dressing himself when another patient picked up a book & threw it across the hallway striking EE in chin.
## 46829                                                                                                                           EE was assisting another stafdf member remove some pants from one of the residents and began to feel a pinch burn sensation in shoulder.
## 46830                                                                                                            EE was assisting another staff during a behavioralintervention, while transporting a resident from the floor to mat. EE felt tremendous pain in finger.
## 46831                                                                                                                      EE was assisting another staff empty trash from alarge container. The container slipped out of other staffs hand and fell on EE's right hand.
## 46832                                                                                                                                                EE was assisting another staff in a student restraint. EE fell while assisting with the restraint injuring himself.
## 46833                                                                                                                                                                                      EE was assisting another staff in drawing blood and felt catch in lower back.
## 46834                                                                                                                                                         EE was assisting another staff in getting a student into their room and student closed door on staff hand.
## 46835                                                                                                               EE was assisting another staff in getting patient out of bed and dressing him when patient pulled back pulling EE over coworker causing low back pai
## 46836                                                                                                                                                                  EE was assisting another staff in picking a client up off of the floor when she felt back pain ()
## 46837                                                                                                                                            EE was assisting another staff in transport of client-felt pull in left chest cavity when EE pivoted client into chair.
## 46838                                                                                                               EE was assisting another staff member in breaking up a fight between two students. EE was knocked to the floor and another person fell on her leg ()
## 46839                                                                                                                                                           EE was assisting another staff member in excortingan aggressive client back to bathroom. Mid back strain
## 46840                                                                                                                                              EE was assisting another staff member to carry stage floor covering when a display bench fell striking EE on the head
## 46841                                                                                                                           EE was assisting another staff member to get patient off the floor. The weight shifted and EE had to bear all the weight on the lt side.
## 46842                                                                                                                                                                                              EE was assisting another staff member to lift a client onto a trolley
## 46843                                                                                                                                                             EE was assisting another staff member to restrain a student was kicking and fighting EE hurt his back.
## 46844                                                                                                                                                   EE was assisting another staff member w/student who had staff in the head hold and EE injured back against wall.
## 46845                                                                                                                                          EE was assisting another staff member, the staff member collapsed agains EE and EE fell into windowand then to the floor.
## 46846                                                                                                               EE was assisting another staff person walking an individual by a gaft belt when the individual dropped to the floor unexpectedly pulling both staff.
## 46847                                                                                                                                                                  EE was assisting another staff restrain a patient/student when the student hit and scratched her.
## 46848                                                                                                                 EE was assisting another staff to clean a residentup. Resident was combative and EE strained back. **atty patrick allan*** po box 2229 spartanburg
## 46849                                                                                                             EE was assisting another staff to lift client to lay the client down. After laying the client down, the EE heard her back pop back began to hurt later
## 46850                                                                                                                                            EE was assisting another staff to pick up a case of bleach to take it to another unit EE felt a sharp pain in low back.
## 46851                                                                                                                                                                   EE was assisting another staff with an aggressive resident when she jammed her left index finger
## 46852                                                                                                                                                                   EE was assisting another trooper effect an arrest and was hit with a flashlight on the left knee
## 46853                                                                                                                              EE was assisting another trooper locate suspect inwooded area. EE slipped while going down ditchbankand fell injuring her left ankle.
## 46854                                                                                                             EE was assisting another trooper on an arrest for disorderly conduct and EE used a vascular restraint on the suspect and they both fell to the ground.
## 46855                                                                                                                       EE was assisting another trooper who was involved in a chase with a motorcycle. EE was attempting toflag down motorcycle when he was struck.
## 46856                                        EE was assisting another trooper with a passenger on a vehicle stop. The passenger fled on foot and the EE gave chase. The EE right foot hit the right tire of the violator vehicle. EE fell hit left knee and shoulder. ()
## 46857                                                                                                                               EE was assisting another unit on a traffic stop, who was trying to extracing a driver who had barr-acaded himself inside of vehicle.
## 46858                                                                                                                  EE was assisting auditors in pulling records from file cartons. Necessary to pull cartons from top shelf & put on table. Cartons weigh 35-45 lbs.
## 46859                                                                                                                                                                 EE was assisting breaking up a fight b/t two students rt middle finger twisted in shirt of student
## 46860                                                                                                                                                       EE was assisting buses turn around due to a road block. After the third bus EE showed heart attack symptoms.
## 46861                                                                                                                            EE was assisting camper along hiking trail. Camperslipped and fell. As she fell she pulled on EE's arm. Sprain to left arm and shoulder
## 46862                                                                                                               EE was assisting campus manager during student restraint. While on the floor student rolled. On rightknee. Jerry rhoades 910 947 4929 vanessa totten
## 46863                                                                                                                                       EE was assisting carrying a resident from one hallto another. Once there assisted in therapuetic hold. Complain of back pain
## 46864                                                                                                                                                                                        EE was assisting carrying ladder up stairs-felt pain in back and shoulders.
## 46865                                                                                                                                                       EE was assisting change a client-client grabbed emp. Left hand and twisted. Emp. Felt a sharp snap and pain.
## 46866                                                                                                                             EE was assisting change client, client became ag- gressive, grabbed EE left thumb and twisted it to- ward index finger then backwards.
## 46867                                                                                                                                EE was assisting changing a resident. EE was rolling resident on to his side and EE felt a pop on the outer side of his right hand.
## 46868                                                                                                                                                                         EE was assisting changing client agitated kicking-punching- punched EE in the upper chest.
## 46869                                                                                                                                                         EE was assisting changing pt's clothing that was soiled and bed linens too, pt bite EE on the right arm ()
## 46870                                                                                                                                                                  EE was assisting child on monkey bars and was hit in the cheek accidentally with the child'selbow
## 46871                                                                                                                                                                                                                    EE was assisting child who bit EE on rt forearm
## 46872                                                                                                                                                                            EE was assisting cleaning and watering plants when a splinter stuck her in the rt thumb
## 46873                                                                                                                                                    EE was assisting cleaning bathrooms when she lifted trash container, she was bitten by ants on rt hand & arm ()
## 46874                                                                                          EE was assisting cleaning the dressing dressing/bathrooms @ bn duke when she picked up the trash container to empty she was bitten by ants that where all over the can ()
## 46875                                                                                                                                             EE was assisting cleint to sit up in tub with leftarm behind client's back for support in process eefelt pain in neck.
## 46876                                                                                                                                                                                                    EE was assisting client and turned, hearing crunchin left foot.
## 46877                                                                                                                                                                                          EE was assisting client at lunch and client pushedchair into EE's lt knee
## 46878                                                                                                                                                                                          EE was assisting client back in the bed when she felt a sharp in her back
## 46879                                                                                                                                                                           EE was assisting client back to room who was running around naked and injured lower back
## 46880                                                                                                                                                                                             EE was assisting client bathing when she slipped and twisted left knee
## 46881                                                                                                                                           EE was assisting client became upset and aggressive toward staff, staff had to put client in restraint and twisted back.
## 46882                                                                                                                                                                                                    EE was assisting client brushing teeth when clientbit EE lt arm
## 46883                                                                                                                                                                                  EE was assisting client care, staff assisting pushed oj lift over bed & hit head.
## 46884                                                                                                                                                                EE was assisting client change attends-went to lift client's leg felt sharp pain in left lower back
## 46885                                                                                                                                                                                    EE was assisting client change. Client jerked EE's left arm. Pain in left elbow
## 46886                                                                                                                                                                                       EE was assisting client dress when client pulled EE's rt pinkie finger back.
## 46887                                                                                                                                                                                      EE was assisting client dressing and client dropped down and EE strained back
## 46888                                                                                                                                                          EE was assisting client dressing when client became agressive causing EE to strain back neck and shoulder
## 46889                                                                                                                                                                                                 EE was assisting client from bed to chair when sheinjured her back
## 46890                                                                                                                                                                                                      EE was assisting client from floor and pulled backin process.
## 46891                                                                                                                                                                                     EE was assisting client from pottie chair, felt burning and pull in lower back
## 46892                                                                                                                                                                    EE was assisting client from wheelchair and foot rest from chair came down on EE's rt big toe..
## 46893                                                                                                                                    EE was assisting client having a spinal tap. As drwas giving spinal tap, client was leaning on EE causing strain to lower back.
## 46894                                                                                                                                                                            EE was assisting client in bathing and EE became agressive and slapped and scratched EE
## 46895                                                                                                                                         EE was assisting client in bathroom and had lt hand on door and another client opened door and jammed EE's fingers in door
## 46896                                                                                                                                                                                          EE was assisting client in bathroom when the client falling. Injured leg.
## 46897                                                                                                                         EE was assisting client in bathroom, client stood up & his head struck under EE's chin causing EE's tooth to be chipped & abrasion to lip.
## 46898                                                                                                                                                                      EE was assisting client in bathroom. Client startestomping his feet. Stomping on EE's lt foot
## 46899                                                                                                                                                                                                            EE was assisting client in bed when left arm was pulled
## 46900                                                                                                                                                                          EE was assisting client in brushing teeth, client clinched down on EE's left index finger
## 46901                                                                                                                                                          EE was assisting client in chair and experienced loss balance resulting in rt leg bearing weight on knee.
## 46902                                                                                                                                                          EE was assisting client in clothing; leaned over to pull up underwear and EE felt something pull in back.
## 46903                                                                                                                      EE was assisting client in getting out of bed, client placed arms around EE neck, client stood up and dropped, EE caught and placed in chair.
## 46904                                                                                                                                                                                      EE was assisting client in getting up when she felt pain in her lower abdomen
## 46905                                                                                                                  EE was assisting client in hallway (walking) client fell, EE attempted to break fall, felt painin the mid/upper back, radiating dull pain in arm.
## 46906                                                                                                                                                            EE was assisting client in laying down, client fell backwards onto EE arm, EE felt some pressure on arm
## 46907                                                                                                                               EE was assisting client in pivot transfer and client's feet slid out from under him and staff assisted client to floor-strained back
## 46908                                                                                                                                                                 EE was assisting client in place clothed in laundry basket and the client struck EE in the stomach
## 46909                                                                                                                         EE was assisting client in restroom, another clienttried to get by wheelchair, client holding chair and other client fell, EE caught both.
## 46910                                                                                                                                                                EE was assisting client in the bathroom and the client pulled back from the EE causing pain in back
## 46911                                                                                                                                                EE was assisting client in the bathroom; bent down to pull up client's pants, felt a sharp pain in lower left back.
## 46912                                                                                                              EE was assisting client in the dining area. Clientbegan to sit on the floor, EE strained muscle in left arm. EE is still working, has an ortho appt 3
## 46913                                                                                                                                     EE was assisting client intervention, client strug-gling, after intervention EE felt faint shakey and experienced chest pains.
## 46914                                                                                                                                                                                       EE was assisting client into bed and client fingers struck EE in the rt eye.
## 46915                                                                                                                                                                               EE was assisting client into bed and twisted back resulting in pain in left hip, leg
## 46916                                                                                                                                               EE was assisting client into bed-client pulled herlegs up casuing EE to feel full weight-resulted inlower back pain.
## 46917                                                                                                                                                                             EE was assisting client into pajamas when client grabbed EE's right wrist and twisted.
## 46918                                                                                                                                                              EE was assisting client into van, bent down to getclient from wheelchair, stood up and felt back pain
## 46919                                                                                                                                                                               EE was assisting client into van, client fell ontostaff and both fell to the ground.
## 46920                                                                                                                                                                                          EE was assisting client near door way and was struct with door on rt arm.
## 46921                                                                                                                       EE was assisting client off campus. Client became upset & aggressive to other staff. When placed in theraputic hold EE strained right wrist.
## 46922                                                                                                                  EE was assisting client off elevator when client becam aggitated and attempted to strike EE in faceee raised lt hand and client struck EE in hand
## 46923                                                                                                                                    EE was assisting client off of floor, client stoodup then buckled-falling to the floor causing EE to fall. Lumbar sprain/strain
## 46924                                                                                                                                               EE was assisting client off van, client fell onto EE & EE was trying to support client and twisted l knee in process
## 46925                                                                                                                                                    EE was assisting client onto shuttle bus. Wind blew door shut on EE's right hand, index, middle and ring finger
## 46926                                                                                                                                                                              EE was assisting client onto the floor due to medical situation and felt pain in back
## 46927                                                                                                                                                                               EE was assisting client onto trolley, client into wheel chair causing employee twist
## 46928                                                                                                                                                                                         EE was assisting client out of bathing chair, felt pain in right shoulder.
## 46929                                                                                                                                                                                                         EE was assisting client out of bed and strained lower back
## 46930                                                                                                                    EE was assisting client out of bed into chair. Client would not assist EE, held onto bed. EE lifted client off bed and into chair, injuring bac
## 46931                                                                                                                                                                                 EE was assisting client out of bed. Lowered bed rail and jammed left index finger.
## 46932                                                                                                                                    EE was assisting client out of chair into wheelchar when the client hit the lt side of EE's head with her head. Contusion head.
## 46933                                                                                                                                                                           EE was assisting client out of chair, inorder to change and fekt pull in her lower back.
## 46934                                                                                                                                                                          EE was assisting client out of the building duringa fire drill and injured mid/upper back
## 46935                                                                                                                                                                                         EE was assisting client she injured her thumb on a fastener... Right thumb
## 46936                                                                                                                                                                                                                  EE was assisting client sit up in the wheelchair.
## 46937                                                                                                                            EE was assisting client taking a bath and client had a seizure-EE had to lean into tub to keep client's head out of water-strained back
## 46938                                                                                                                                                                                  EE was assisting client that was hurting self and EE injured lower back, shoulder
## 46939                                                                                                                                                           EE was assisting client that wast yelling, pushinghitting face when client pulled back on EE's rt thumb.
## 46940                                                                                                                              EE was assisting client to ambulate, and when cleint started to fall, EE tried to break the fallwhen EE's left ring finger bent back.
## 46941                                                                                                                                    EE was assisting client to bed---client started tofall---EE attempted to keep from falling braced ltfoot heard pop in lt ankle.
## 46942                                                                                                                                                                     EE was assisting client to bedroom to dress and assist up in bed and strained left lower back.
## 46943                                                                                                                                   EE was assisting client to dining room, client started to sit down, EE tried to hold client, re- sulting in back and chest pain.
## 46944                                                                                                                                             EE was assisting client to dinning room and EE client grabbed EE rt ahdn and twisted it. Injured hand and ring finger.
## 46945                                                                                                                         EE was assisting client to eat when client refusedbecame aggressive, & pushed EE into the door. She suffered from a strain to right ankle.
## 46946                                                                                                                  EE was assisting client to get off floor in bedroom, client was not bearing any weight on foot & as EE tried to get client up client leaned back.
## 46947                                                                                                                                    EE was assisting client to get ready for bed. Client resisted fell back onto bed pulling EE downwith him. Back and lt buttocks.
## 46948                                                                                                                                                                        EE was assisting client to pull up pants bent at knees leaned to rt pulled muscles in back.
## 46949                                                                                                                                      EE was assisting client to sit in chair-client attempted to sit in floor-EE placed rt knee under client to keep from falling.
## 46950                                                                                                                                                                                               EE was assisting client to sit-up and felt sharp pain in lower back.
## 46951                                                                                                                                               EE was assisting client to stand from seated position- client lost balance employee caught & in process pulled back.
## 46952                                                                                                                                                                                       EE was assisting client to stand pivot when she felt pain in her right knee.
## 46953                                                                                                                                    EE was assisting client to stand up-client holdingonto EE lt arm/elbow client started to fall resultin pulling of emp lt elbow.
## 46954                                                                                                                                                                                      EE was assisting client to stand( to dress) and eefelt pop/pain in elbow/arm.
## 46955                                                                                                                                                                 EE was assisting client to stand-client grabbed EE's rt wrist and sat back down pulling EE's wrist
## 46956                                                                                                                              EE was assisting client up and out of bed. Client was holding onto EE's left arm. Client dropped down into the bed causing EE to fall
## 46957                                                                                                                                                                           EE was assisting client up from bed to use toilet and felt pain between shoulder blades.
## 46958                                                                                                                                                                          EE was assisting client up from wheelchair and felt pain between shoulder blades and neck
## 46959                                                                                                                                                                                      EE was assisting client up into van when she turned and felt pain in rt knee.
## 46960                                                                                                                                                 EE was assisting client walk when cleint began to fall-EE att to keep client from falling and hyerextended rt arm.
## 46961                                                                                                                                                                                            EE was assisting client when client grabbed EE rt thumb and twisted it.
## 46962                                                                                                                                                                                   EE was assisting client when client pulled EE arm causing EE to have chest pain.
## 46963                                                                                                                                                                                           EE was assisting client when client struck and bit EE on the lt shoulder
## 46964                                                                                                                                                                                                      EE was assisting client when he hit his right kneeon the rail
## 46965                                                                                                                                                                                                          EE was assisting client when she felt a pain in rt wrist.
## 46966                                                                                                                                                                                                     EE was assisting client when she felt a pull in her upper back
## 46967                                                                                                                                                                                                                  EE was assisting client when she injured her back
## 46968                                                                                                                                                                                       EE was assisting client when she injured her rightpinky, back, and left knee
## 46969                                                                                                                                                                                                      EE was assisting client when she strain her abdominal muscle.
## 46970                                                                                                                                                                             EE was assisting client when the client attacked her.... Struck right arm and shoulder
## 46971                                                                                                                                                                                       EE was assisting client when the client fell to the floor; EE went down also
## 46972                                                                                                                                                                                      EE was assisting client when the client lost balance; injured right side/back
## 46973                                                                                                                                                                                        EE was assisting client when the client's legs gave way; injured lower back
## 46974                                                                                                                                     EE was assisting client who began to fell dizzy holding her arm to sit down gradually, pain in lf side of back, neck, shoulder
## 46975                                                                                                                                                             EE was assisting client who was in personal restraint-client dropped to floor-pulling EE strained back
## 46976                                                                                                                                                                          EE was assisting client with a bath and she fell against tub jamming her rt little finger
## 46977                                                                                                                                      EE was assisting client with a bath and the clientwas agitatiing causing the EE to be jerked forwardinjuring EE's lower back.
## 46978                                                                                                                                                       EE was assisting client with adl's when client began cursing and kicking EE in lower left brest and rt foot.
## 46979                                                                                                                                                                                 EE was assisting client with bath and client became combative and EE strained back
## 46980                                                                                                                                                                     EE was assisting client with bath when client starting hitting him--injured neck and head area
## 46981                                                                                                                                                           EE was assisting client with bath, client unlocked wheelchair, causing chair to roll over EE's left foot
## 46982                                                                                                                                           EE was assisting client with bath-client stood up to dry off and slipped and fell in process grabbing EE around the neck
## 46983                                                                                                                                     EE was assisting client with bathing-client began to fall and EE tried to catch client from hitting head and injured left hand
## 46984                                                                                                                                                                           EE was assisting client with dressing when EE coughed and felt a pull in his right side.
## 46985                                                                                                                                       EE was assisting client with getting into chair, client became aggressive, and started to fall, EE tried to prevent the fall
## 46986                                                                                                                  EE was assisting client with his ambulator by holding gait belt loops. Client fell forward and EE broke his fall straining her shoudlers and arms
## 46987                                                                                                                                                              EE was assisting client with shower, floor was wet and the EE fell, landing on bottom. EE is pregnant
## 46988                                                                                                                                                                                                          EE was assisting client with toileting and injuredrt leg.
## 46989                                                                                                                                                            EE was assisting client with toileting. Client agitated and hit EE in right eye with back of right hand
## 46990                                                                                                                                                                  EE was assisting client with undressing. Cleint suddenly moved, his head struck EE under left eye
## 46991                                                                                                                                                                                           EE was assisting client, client started to fall and EE injurd her thumb.
## 46992                                                                                                                                   EE was assisting client-band broke on bed causing client's hand to go out of control and hit EE in the face breaking eyeglasses.
## 46993                                                                                                                                                           EE was assisting client. After wetting washcloth, EE looked at client and he spit in face and both eyes.
## 46994                                                                                                                                                          EE was assisting client. EE was holding top of pants and consumer pushed, grabbed and twisted her finger.
## 46995                                                                                                                                    EE was assisting clientfrom wheelchair into bed-wheelchair rolled causing clients right metal leg aplint to hit employee chest.
## 46996                                                                                                                                                                    EE was assisting clients into special swing for sensory attn, activities and pulled lower back.
## 46997                                                                                                                                                              EE was assisting clients t a window when she turned to address officer and tripped on vinyl floor mat
## 46998                                                                                                                                                        EE was assisting clients with cooking supper. Picked up pot of hot water and turned it over on right wrist.
## 46999                                                                                                                                                        EE was assisting co-worker in putting a juvenile in his room, & in the process the student spat in EE face.
## 47000             EE was assisting co-worker move a pt fm w/c to a more comfortable chair, pt was over weight, pt stood up, went to sit down, went limp, almost slipping in to floor, EE helped co-worker to reposition pt in chair, immediately feeling back tighten ()
## 47001                                                                                                                                     EE was assisting co-worker that was being attacked& strained her right shoulder & arm. EE did not report injury until 1/12/08.
## 47002                                                                                                                                                           EE was assisting co-worker w/hand held tape dispenser and cut left thumb with cutting teeth of dispenser
## 47003                                                                                                                                 EE was assisting co-worker with a resistive pt to stand to get on to scales, back began hurting from lifting(neck pain head aches)
## 47004                                                                                                                                       EE was assisting co-worker with aggressive client and client dropped to floor and client pulled EE'sfeet from underneath EE.
## 47005                                                                                                                           EE was assisting co-worker with an aggressive pt in to the seclusion rm, pt began scratching EE holding and pulling on EE's right arm ()
## 47006                                                                                             EE was assisting co-worker with an arrest. Offender was extremely resistant. Once control of the offender was gained EE observed that his right wrist was bleeding. ()
## 47007                                                                                                                                       EE was assisting co-worker with resident when resident became compative, EE pulled away, stumbling and hitting hand on chair
## 47008                                                                                                                 EE was assisting co-workers with rolling up wide mats onto mechanized roller had to pull and tug toget mats rolled on straight. Strained rt finger
## 47009                                                                                                                                                                          EE was assisting co-wrker, went to get some materials needed and hit leg on handle of bed
## 47010                                                                                                                                                     EE was assisting consumer in shower room and consumer fell-EE strained mid/upper back trying to catch consumer
## 47011                                                                                                                                                                         EE was assisting consumer out of vehicle with broken leg and cast on. Injury to lower back
## 47012                                                                                                                                                           EE was assisting consumer to couch after breakfast and consumer pulled EE to couch s straining EE's back
## 47013                                                                                                                            EE was assisting consumer when both lost balance, wrestled around and slipped on leg that was on floor, twisted ankle and heard it pop.
## 47014                                                                                                                                                                                      EE was assisting consumers off sofas and chairs, felt strain or pull in back.
## 47015                                                                                                                             EE was assisting corr offices with an inmate who had been sprayed with pepper spray which caused his blood pressure to become elevated
## 47016                         EE was assisting coworker with separating juveniles during an altercation. As the employee reached out to grab the students he instead grab the coworkers shirt and as she grabbed her shirt, her radio swung around& hit EE in the for ()
## 47017                                                                                                                                          EE was assisting coworker witherspoon in attempting to redirect aggressive student when student assaulted Mr. Williams ()
## 47018                                                                                                                                     EE was assisting coworkers with restraint of aggressive student and he cut his ring finger on his right hand with handcuffs ()
## 47019                                                                                                                                                                     EE was assisting custody staff in placing an inmate back in her cell, hand was caught in door.
## 47020                                                                                                                                                         EE was assisting customer w/ starting a vehicle by cleaning the baterry. Battery acid got in EE's left eye
## 47021                                                                                                                                                                    EE was assisting down hallway and he came down across EE's wrist w/helmet causing wrist to pop.
## 47022                                                                                                                                                                                           EE was assisting dressing a client when client bitee on the rt shoulder.
## 47023                                                                                                                                                                                          EE was assisting during eri, pt kicked EE in the right wrist/right arm ()
## 47024                                                                                                                               EE was assisting ems loading a 380-400 lb subject into ambulance when he experienced a sharp pain inright knee. Possible torn tendon
## 47025                                                                                                                                                                                     EE was assisting faculty member by carryign her books and supplies to meeting.
## 47026                                                                                                                                                                                   EE was assisting feeding lunch to inmates when an inmate threw some urine at him
## 47027                                                                                                                   EE was assisting fellow officer arrest intoxicated& combative person. Subject kicked EE under right jaw bone, small abraison & swelling. Rt jaw.
## 47028                                                                                                                                                       EE was assisting fellow officer kelvin raynor when EE lost his footing fell injuring lt knee & both hands ()
## 47029                                                                                                                                    EE was assisting femal diabled motorist change a flat tire when he lost his balance loosening lug- nut and fell injuring ankle.
## 47030                                                                                                                                                                   EE was assisting fire dept removing tree limbs from roadway-lifted a limb and felt pain in back.
## 47031                                                                                                                                                      EE was assisting getting a patient on the commode and the patient pulled EE by the neck and strainedee's back
## 47032                                                                                                                                                               EE was assisting getting patient and started feeling pain in both sides of back and down the middle.
## 47033                                                                                                                                                                                                                EE was assisting hct w/ pulling rssident up in bed.
## 47034                                                                                                                                                                                                EE was assisting help redirect a pt, pt scratched EE on left arm ()
## 47035                                                                                                                      EE was assisting implement a behavioral prgram on a client-in teh process EE injured her lower back-felt pain in lower back, fatigue in legs.
## 47036                                                                                                                                                                                          EE was assisting in a 3 man lift on a resistive patient and strained back
## 47037                                                                                                                                                  EE was assisting in a 3 person carry to therapuetic room and after leaving the room EE felt pain in rt hamstring.
## 47038                                                                                                                                                                                                                 EE was assisting in a behavoir and hurt lowerback.
## 47039                                                                                                                                                                                      EE was assisting in a body alarm call and was injured during the altercation.
## 47040                                                                                                                             EE was assisting in a client behavior intervention, the client managed to get loose and kicked EE on l shoulder and pulled on EE l arm
## 47041                                                                                                                     EE was assisting in a confrontation between inmates, an inmate came around the corner swinginga bolt w/ a lock at the end. Hitting EE in calf.
## 47042                                                                                                               EE was assisting in a move of one of our residents from one resident hall to another, EE was moving some heavily laden duffel bags and strained back
## 47043                                                                                                                              EE was assisting in a nci carry, client twisted his legs around EE's legs, when they stop her shoulder jerked back and finger twisted
## 47044                                                                                                                                                                                        EE was assisting in a restraint to control student. () injured lt shoulder.
## 47045                                                                                                                                                   EE was assisting in a training exercise with a police k-p dog, while running he twisted his knee and heard a pop
## 47046                                                                                                                                                                                       EE was assisting in a two man lift of client and EE felt a pull in his back.
## 47047                                                                                                                                                                                                      EE was assisting in a two person lift and strainedlt shoulder
## 47048                                                                                                                                                 EE was assisting in a two person pivot carring a client the client dropped suddenly and EE felt a pain lower back.
## 47049                                                                                                                             EE was assisting in a use of force on an inmate, EE was coming out of the inmates cell when he cut his finger on the cell door. Right.
## 47050                                                                                                                         EE was assisting in adm of meds to cat infected w/trichomanocis when she was bitten resulting in allergic reaction requiring med attention
## 47051                                                                                                                                                        EE was assisting in an emergency situation with co-worker, she tried to prevent the co-worker from falling.
## 47052                                                                                                                                     EE was assisting in an eri, stepped in bathroom, water in floor, assisting pt down hall, slid in water, turned over r ankle ()
## 47053                                                                                                                                                    EE was assisting in arrest. Subject assaulted him. EE was hit on right side of hand and ear. EE was also choked
## 47054                                                                                                                                                                                           EE was assisting in arresting a probationer when he was exposed to blood
## 47055                                                                                                                   EE was assisting in arresting a violator. Violator refused to exit vehicle, then quickly accelerated backwards, causing EE to fall to the ground
## 47056                                                                                                                                                                                  EE was assisting in assembling a section of duct and injured rt knee bending down
## 47057                                                                                                                                                                                    EE was assisting in batheing client-lifted client into tub- sharp pain in back.
## 47058                                                                                                                                                                                              EE was assisting in bathing client and patient kicked EE in the chest
## 47059                                                                                                                                        EE was assisting in bathing client, floor wet and EE feet slipped out from under EE, fell landing onbuttocks back lt ankle.
## 47060                                                                                                                                                              EE was assisting in behavior program when residentdropped to floor and caused EE to strain rt big toe
## 47061                                                                                                                                                                     EE was assisting in breaking up a fight between several students when EE's finger got injured.
## 47062                                                                                                                                                                                                      EE was assisting in breaking up a fight between two juveniles
## 47063                                                                                                                                                            EE was assisting in breaking up a fight between two students and was kicked in the knee and injurehand.
## 47064                                                                                                                                            EE was assisting in breaking up a fight when his elbow struck a mail box on the wall in the dorm. Scrap in right elbow.
## 47065                                                                                                                                                                   EE was assisting in calming a student. Student became aggressive and EE's hand and lip were cut.
## 47066                                                                                                                                    EE was assisting in capture of a live bat. Bat flew at EE and she turned to run from bat. She slipped and fell forward on hands
## 47067                                                                                                                                                              EE was assisting in capturing a escape juvenile and grabbed him by the waist chain and cut her finger
## 47068                                                                                                                                                                          EE was assisting in car wash with patients and later that day noticed soreness in rt knee
## 47069                                                                                                                                                                                       EE was assisting in care of patient when patient kicked EE's right shoulders
## 47070                                                                                                                             EE was assisting in carring food cart up stairs. When EE reached top step he turned to sit the cart down, and felt a pull in low back.
## 47071                                                                                                                                                EE was assisting in carrying a resident. The resident weisgt suddenly shifted and caused strain in EE's lower back.
## 47072                                                                                                                                                                  EE was assisting in carrying an agressive patient to quiet room and patient kicked EE in shoulder
## 47073                                                                                                                                                       EE was assisting in carrying client to bathroom. Client was aggitated and fighting. EE felt pull inher back.
## 47074                                                                                                                                                EE was assisting in carrying restrained student and slipped on beads and fell hitting rt knee and rt elbow on floor
## 47075                                                                                                                         EE was assisting in changing a client when the client started to fall backwards. EE caught clientnoting pain in her right leg and buttocks
## 47076                                                                                                                                             EE was assisting in changing client and client dropped to the floor taking EE down also and EE landed on hip and back.
## 47077                                                                                                                                                                                                  EE was assisting in changing client- client hit EE in the lt jaw.
## 47078                                                                                                                                              EE was assisting in changing client. Client became aggressive and tugged on EE's arm. Strainedee's neck and shoulders
## 47079                                                                                                                                                    EE was assisting in changing patient and patient started to fall EE turned to support patient and strained back
## 47080                                                                                                                                                EE was assisting in closing the door and as the door closed the middle finger on his lt hand was caught in the door
## 47081                                                                                                                                                                 EE was assisting in controlling an violent inmate and hand and arm was hit during the altercation.
## 47082                                                                                                                       EE was assisting in dining hall. EE was standing against wall with hands behind him. He noticed right wrist area itching. EE had been bitten
## 47083                                                                                                                             EE was assisting in escorting an aggressive stud- ent to time net, EE's left elbow was twisted. Strain muscle in left upper arm/elbow.
## 47084                                                                                                                                               EE was assisting in giving a pig an injection of anethesia pig jerked violently and needle pricked EE skin on finger
## 47085                                                                                                                             EE was assisting in giving patient medication and patient struck EE in the nose, knocking glasses off and causing pain ti rt shoulder.
## 47086                                                                                                                                                                 EE was assisting in handcuffing an inmate and fellto the floor while trying to handcuffing inmate.
## 47087                                                                                                                                                               EE was assisting in handcuffing an inmate when he got cut on his right 2 fingers the 3rd 4th fingers
## 47088                                                                                                                                                                                                  EE was assisting in handcuffing inmate and injuredrt index finger
## 47089                                                                                                                                                                          EE was assisting in helping a client with pulling up pants after the toilet. Injured leg.
## 47090                                                                                                                                    EE was assisting in hjolding client down & using both of her arms, later noted pain in rt side of neck radiating into mid back.
## 47091                                                                                                               EE was assisting in intervention with client, car- rying client, EE had client's right leg, client be- gan to kick and buck-in process straining EE.
## 47092                                                                                                                                                                                               EE was assisting in lifting a client and felt his left shoulder pop.
## 47093                                                                                                                                                             EE was assisting in lifting a client and noted it was a bad lift reoccured back pain in lower rt back.
## 47094                                                                                                                              EE was assisting in lifting a large mixing bowl with raw cabbage in it to pour into a large steamer injuring his back in the process.
## 47095                                                                                                                                            EE was assisting in lifting a patient from wheel- chair to table then back to wheelchair. Injured lt shoulder, fingers.
## 47096                                                                                                                                                                                                           EE was assisting in lifting a resident and strained back
## 47097                                                                                                                                                                                        EE was assisting in lifting a table when he felt a pull in his abdomen area
## 47098                                                                                                                     EE was assisting in lifting a w/c onto van and finger was caught between the w/c and lift & whiletrying to remove finger heard pop in sternum.
## 47099                                                                                                                                                                                                      EE was assisting in lifting client and felt pain in low back.
## 47100                                                                                                                                                                                       EE was assisting in lifting client and strained neck, shoulder, and left arm
## 47101                                                                                                                                                                    EE was assisting in lifting client from bed into wheelchair and noted pain in rt hand and knee.
## 47102                                                                                                                                      EE was assisting in lifting client from chair intobed. Other staff lifting quickly pulling client forward causing pulled back
## 47103                                                                                                                                      EE was assisting in lifting client from wheelchairinto bed- clients weight shifted -felt shooting pain in rt hand into elbow.
## 47104                                                                                                                                         EE was assisting in lifting pateint from bed to chair. In process patient became figity and EE's left thumb was bent back.
## 47105                                                                                                                                          EE was assisting in lifting patient and pt began to fall to floor EE tried to hold the patient up and felt pull in chest.
## 47106                                                                                                                                                                                                        EE was assisting in lifting patient. Felt pain in low back.
## 47107                                                                                                                                      EE was assisting in lifting weighted bucket for the climbing wall in the gym. I experienced a severe pain in my left kneeq ()
## 47108               EE was assisting in loading pieces of trench box on a trailer. He was unhooking the lifting chain when the driver motion for the track hoe driver to raise the chain. The EE finger was cut as he was unable to release his hand as shouting stop ()
## 47109                                                                                                                                                                                                           EE was assisting in manuel restraints twisted right knee
## 47110                                                                                                                EE was assisting in moving a refridgerator up two flights of stairs. One co-worker slipped dropping his end of the fridge causing it to fall on EE.
## 47111                                                                                                                                    EE was assisting in moving a refrigerator outside to defrost & clean. Refrigerator slipped off dollywhile pushing across drain.
## 47112                                                                                                                                        EE was assisting in moving and adjusting a table for a student who was in a wheelchair and felt pain in abdomen(navel area)
## 47113                                                                                                                                                                      EE was assisting in moving gate post when his back gave way, reported severe pain in low back
## 47114                                                                                                                                                                                    EE was assisting in moving ramp and ramp fell on rt toes-fractured rt great toe
## 47115                                                                                                                                        EE was assisting in moving stacks of files to the basement, required going up and down steps with files - strain lower back
## 47116                                                                                                                                                                            EE was assisting in nci 2 patient when she felt something pop in the middle of her back
## 47117                                                                                                                                                                          EE was assisting in pap smear for student and preparatory solution splashed into left eye
## 47118                                                                                                                                                                                      EE was assisting in picking up tree limbs and debris when he tripped and fell
## 47119                                                                                                                                                EE was assisting in placing a patient in therepuetic hold to carry to quiet room nad patient bit EE on the forearm.
## 47120                                                                                                               EE was assisting in placing aggressive patient in cpi hold and patient's weight was against her leg causing strain. Patient also scratched EE's arm.
## 47121                                                                                                                             EE was assisting in placing patient in nci hold, &fell against the wall reinjuring her rt. Wrist & also spraining her neck. Out 4 days
## 47122                                                                                                                                                                                        EE was assisting in placing patient in pic hold and felt a pull in her back
## 47123                                                                                                                                                                   EE was assisting in placing patient in quiet room and patient bit EE on the back of the lt hand.
## 47124                                                                                                                                                             EE was assisting in pt to resident and was hit and scratched and thrown to the floor and injured hand.
## 47125                                                                                                                                                         EE was assisting in pulling a patient off another staff when the patient hit EE's arm outward at an angle.
## 47126                                                                                                                                                                                   EE was assisting in pulling patient up in chair and felt sharp pain in low back.
## 47127                                                                                                                                  EE was assisting in putting on truck step. Another EE was putting bolt in step inproperly andwhen EE stepped on the step to fall.
## 47128                                                                                                                  EE was assisting in removing an inmate from cell while the inmate was being restrained EE hit his ltknee on the inmates bed and on the cell floor
## 47129                                                                                                               EE was assisting in removing electrical disconnect. Another EE was using hammer and chisel to remove bolts from concrete. The hammer slipped and shi
## 47130                                                                                                                                 EE was assisting in removing inmate from cell when inmate began to twist and turn EE stated that he felt something pop in his back
## 47131                                                                                                                                                                                          EE was assisting in repositioning client when she felt a pull in her neck
## 47132                                                                                                                   EE was assisting in restraining a client EE was down on floor on both knees for 1 hr and 45 min. Notes pain in both knees after prone restraint.
## 47133                                                                                                                                                                                             EE was assisting in restraining a client when her rt leg turned wrong.
## 47134                                                                                                                                                                         EE was assisting in restraining a male willie m. Student and strained his rt foot and leg.
## 47135                                                                                                                                                                              EE was assisting in restraining a patient and EE fell, hitting his knee on the floor.
## 47136                                                                                                                                                                                          EE was assisting in restraining a patient and was bitten on the upper arm
## 47137                                                                                                                                                                 EE was assisting in restraining a student and the student spit in EE's face with bloody secretion.
## 47138                                                                                                                                                                     EE was assisting in restraining a student that was kicking and struggling and EE strained back
## 47139                                                                                                                                                                              EE was assisting in restraining a suspect when he fell down and twisted his left knee
## 47140                                                                                                                                                                    EE was assisting in restraining an aggressive student when student bit staff member on rt hand.
## 47141                                                                                                                                                                                             EE was assisting in restraining an agressive student and strained back
## 47142                                                                                                                                                       EE was assisting in restraining an out of control juvenile and another staff was shoved against EE's ribcage
## 47143                                                                                                                                                                              EE was assisting in restraining client and fell across trampoline injuring rt forearm
## 47144                                                                                                                                                                                                           EE was assisting in restraining client and strained back
## 47145                                                                                                                       EE was assisting in restraining combative patient. In the process the patient kicked the EE on his left thumb and scratched him on his head.
## 47146                                                                                                                       EE was assisting in restraining in the restroom, EE slid in water and fell. EE fell on hip and knee& another student came in & jumped on EE.
## 47147                                                                                                                                            EE was assisting in restraining inmate. Received pepper mace in the face when I fell to the cement floor and hit knees.
## 47148                                                                                                                                                                                                      EE was assisting in restraining patient and recieved injuries
## 47149                                                                                                                                                                      EE was assisting in restraining patient and struckback on table and was bit on the rt forearm
## 47150                                                                                                                                                         EE was assisting in restraining patient who was kicking and screaming and kicking and EE injured shoulder.
## 47151                                                                                                                                                                                EE was assisting in restraining student and fell to floor striking rt knee on floor
## 47152                                                                                                                                                                             EE was assisting in restraining student and was bitten on the left forearm and rt hand
## 47153                                                                                                                               EE was assisting in restraining student who was physically aggressive towards other students, in the process she injured herself. ()
## 47154                                                                                                                      EE was assisting in restraint and seclusion procedure. During process patients struggle causedsmall laceration to right thumb caused by watch
## 47155                                                                                                                   EE was assisting in separating two juveniles who were fighting when she & one of the juveniles fellon the gym floor injuring her rt. Hand/finger
## 47156                                                                                                                           EE was assisting in shooting a video for the summer camp program by jumping over bushes, EE cleared the bushes but landed wrong on foot.
## 47157                                                                                                                                                                                 EE was assisting in stopping an inmate from fighting when he was struck on the arm
## 47158                                                                                                                                                    EE was assisting in subduing an inmate that was running from a fire that the inmate set and kicked in the mouth
## 47159                                                                                                                                                                             EE was assisting in subduing and restraining patient 3rd finger was jammed on lt hand.
## 47160                                                                                                             EE was assisting in taking a client to the restroom, client became unsteady and both the client and EE fell on the floor. EE was out of work until 12/
## 47161                                                                                                                              EE was assisting in taking a student to her room she turned and bit EE on the lt side causing a puncture wound and breaking the skin.
## 47162                                                                                                                                       EE was assisting in taking patient to quiet room and patient became combative and while restaining patient and injured hand.
## 47163                                                                                                                                                                                            EE was assisting in taking patient to quiet room. Twisted left shoulder
## 47164                                                                                                                                                          EE was assisting in the insertion of a cathater and punctured his left middle finger with a hollowneedle.
## 47165                                                                                                                                                         EE was assisting in the moving of a cutting board which was connected to the equipment slipped and hit him
## 47166                                                                                                                                                                      EE was assisting in the parking lot b/c of ice storm helping staff. EE fell and hit his head.
## 47167                                                                                                                                                                                           EE was assisting in the removal of a dock when he injured his lower back
## 47168                                                                                                                EE was assisting in the restraint of a student that ws out of control and student pick up a ink pen that had fallen to the floor, stabbed EE'rt eye
## 47169                                                                                                                                                          EE was assisting in the surplus cage locating serial numbers and model numbers when something bit her. ()
## 47170                                                                                                                      EE was assisting in the transfer of a client. Client landed on EE left leg. EE injured back, went toer and is out of work due to restrictions
## 47171                                                                                                                                              EE was assisting in the treatment of a horse. Thehorse became agitated and struck the employee's chest with its hoof.
## 47172                                                                                                                                   EE was assisting in transferring client from one bed to another-cleint became aggressive and EE hyperextended lt elbow and wrist
## 47173                                                                                                                                            EE was assisting in transferring resident and resident became spastic and this caused him to hit and kick EE's lt wrist
## 47174                                                                                                                                                                                EE was assisting in turning a client when she feltslight pressure to the upper back
## 47175                                                                                                                                  EE was assisting in turning a patient & injured her lower back. Lumbosacral strain. **no meds to pay- only monthly ttd benefits**
## 47176                                                                                                               EE was assisting in unloading the turkey's for theemployee's and as he was going up ramp of the trckand hit head n the door & fell and twisted knee.
## 47177                                                                                                                             EE was assisting in unloading turkeys, which con- stituted climbing in/out truck 2 days. EE exper- ienced pain in r foot. Foot sprain.
## 47178                                                                                                                   EE was assisting in unsafe situation-client started to run to other unit and was therapeutic restrained 2x-abrasions to knees, contusion to wrst
## 47179                                                                                                                                                                                                EE was assisting in use of force on inmate and landed on his rt arm
## 47180                                                                                                                                                  EE was assisting in wiping a resident face and wasstruck in the face/nose by a resident with their head nad fist.
## 47181                                                                                                                                                                   EE was assisting individual on treadmill, when person began to fall, EE attempted to catch them.
## 47182                                                                                                                                 EE was assisting injured innate into vehicle and lt ankle rolled, did not hurt right away but several hrs later it began to swell.
## 47183                                                                                                                                                                    EE was assisting inmate back to cell when inmate became aggressive and struck EE on the lt hand
## 47184                                                                                                                    EE was assisting inmate in sticking finger with lancet to determine bliid sugar level. In disposinof blood contaminated gause, lancet stuck EE.
## 47185                                                                                                                                                             EE was assisting inmate in the shower when EE shutdoor inmate spit on EE right side of face and mouth.
## 47186                                                                                                                      EE was assisting inmate janitor in diagnostic center with dilution of chemicals. EE bent over to pour mixture. When she stood she pulled back
## 47187                                                                                                                                                                                       EE was assisting inmate who was having a seizure and they fell to the ground
## 47188                                                                                                                                                                                              EE was assisting inmate with moving a file cabinet, twisted left knee
## 47189                                                                                                                                                                                  EE was assisting inmates during road sqaud when hecame in contact with poison ivy
## 47190                                                                                                                         EE was assisting inmates on trash disposal. All trash bags had weeds dirt and rocks EE helped inmate lift cart and felt pain in lower back
## 47191                                                                                                                             EE was assisting inmates with counting baskets on a truck when one of the basket fell causing EE to move quickly twisting his lt knee.
## 47192                                                                                                                                           EE was assisting inrestraining student to get him to Dr.. Whils struggling w/ the student EE hurt thumb, ankle, shoulder
## 47193                                                                                                                                                                            EE was assisting law enforecement taking juvenile into custody. Pulled muscles in back.
## 47194                                                                                                                                         EE was assisting law in apprehension of suspect, eefell on right leg causing knee to bend backwards in opposite direction.
## 47195                                                                                                                                               EE was assisting lift a client from wheelchair into tub, felt a twisting motion then experienced pain in left wrist.
## 47196                                                                                                                                                                            EE was assisting lift a client out of bed when shefelt a pull on left side of her ribs.
## 47197                                                                                                                                                                                      EE was assisting lift a client when she felt a sharp pain in her right wrist.
## 47198                                                                                                                                                EE was assisting lift a client-when the client threw back his head-hitting EE in the mouth and chipping EE's tooth.
## 47199                                                                                                                       EE was assisting lift a patient off the floor thathad fallen out of bed & patient was not helping & later EE felt pain in back & chest area.
## 47200                                                                                                                                                 EE was assisting lift client from bed into wheelchair-snow fell from wheelchair causing EE to slip and twist back.
## 47201                                                                                                                                                                                     EE was assisting lift client from chair and felt pain in her left arm/shoulder
## 47202                                                                                                                                                                         EE was assisting lift client into and out of wheelchair. Flet pull or pain in rt hand/arm.
## 47203                                                                                                                            EE was assisting lift client into wheelchair, client bore no weight, client started down, EE felt pain in back as she lifted client up.
## 47204                                                                                                                                                                EE was assisting lift client up off of floor in amafter lunch noted pain in abdomen going into hip.
## 47205                                                                                                                             EE was assisting lift client when another employeelost her footing resulting in EE catching clients weight, causing pain in lower back
## 47206                                                                                                                                             EE was assisting lift client when another staff began to lift prior to notifying EE-resulting in EE injuring left arm.
## 47207                                                                                                                                                                                         EE was assisting lifting a client from chair to bean bag and strained back
## 47208                                                                                                                                                                                  EE was assisting lifting client and client threw head back hitting EE in the nose
## 47209                                                                                                                 EE was assisting lifting client from waterbed whenher right wrist gave way-she noted sharp pain in right wrist and pain traveling down into elbow.
## 47210                                                                                                                EE was assisting lifting client from wheelchair toflat tub-assisting staff failed to reposition- resulting in EE bearing all weight of client. Back
## 47211                                                                                                                                                                                                    EE was assisting lifting client into chair and sprained lt knee
## 47212                                                                                                                                                                                                      EE was assisting lifting client up into bed and strained back
## 47213                                                                                                                                                                              EE was assisting lifting client when client reached back and punched EE in the rt jaw
## 47214                                                                                                                                                       EE was assisting lifting client-client bucked causing knees to forcefully hit EE in the left upper rib cage.
## 47215                                                                                                                                                                                                       EE was assisting lifting resident into van and strained back
## 47216                                                                                                            EE was assisting lt with trying to restrain inmateand she grabbed several chairs trying to throw andthe second chair hit EE's lift knee, head, shoulder
## 47217                                                                                                                                     EE was assisting male hct bodily carry patient to quiet room, EE fell on shoulder in the hall in front of the medication room.
## 47218                                                                                                               EE was assisting mcdowell co sherriff dept EE's inloading of prisoner into patrol vehicle. EE strained lower back while attempting to lift prisoner.
## 47219                                                                                                             EE was assisting medical staff with an inmate thathad fainted, fell & cut his elbow. While placing inmate in chair, EE's hand came in contact w/ blood
## 47220                                                                                                                                                                                        EE was assisting medical staff with inmate when inmates vomit on EE rt arm.
## 47221                                                                                                                          EE was assisting motorist by pushing vehicle off of road. While pushing the vehicle the EE experienced a sudden discomfort in mid section
## 47222                                                                                                                                                                                 EE was assisting moving client to quiet room and client kicked EE in the left knee
## 47223                                                                                                                                                                                           EE was assisting moving of inmate back to cell. Left forearm was bitten.
## 47224                                                                                                                                                                              EE was assisting nurse in giving resident an injection. Resident bit EE left forearm.
## 47225                                                                                                                                                                            EE was assisting nurse to give resident injection resident bit employee on left forearm
## 47226                                                                                                                                                                                   EE was assisting nurse w/ear irrigation when resident bit knuckle of 2nd finger.
## 47227                                                                                                            EE was assisting nurse with patient changing pam- per, became aggitated, began to fall, EE holding to keep from falling, felt pain in abdomen and back.
## 47228                                                                                                                                                             EE was assisting nurse with patient. Patient passed out and fell to floor and EE tried to catchpatient
## 47229                                                                                                                                             EE was assisting nurse with patient... Patient pulling away fell to the floor--pulling EE with him. Injured right arm.
## 47230                                                                                                                                                        EE was assisting nurses with blood draw patient started kicking & hitting and struck EE on the wrist & leg.
## 47231                                                                                                                    EE was assisting of an vehicle accident that endedup in wooded area and contracted poison ivy on face and head, face, lips, nose, ears and eyes
## 47232                                                                                                                                              EE was assisting officer in restraining an inmate during the struggle EE injured right knee by striking a metal bulk.
## 47233                                                                                                                                                                                               EE was assisting officer in subdueing an inmate & he hurt his thumb.
## 47234                                                                                                                                                                                     EE was assisting officer raynor & feliu when EE injured both lt & rt hamstring
## 47235                                                                                                                                             EE was assisting on repair of an electric blind. EE was removing a ceiling tile when some debris went into his eye. ()
## 47236                                                                                                                                                   EE was assisting one client to sit and another client grabbed her left arm and pulled it straining left shoulder
## 47237                                                                                                                                                            EE was assisting other EE pushing a extremely heavy cooler thru the library door and felt pain in groin
## 47238                                                                                                                                                 EE was assisting other EE with carrying patient topsychiatric ward; EE felt something pull in bottommiddle of back
## 47239                                                                                                                                                                        EE was assisting other employee to help restrain hostile patient when EE twisted left foot.
## 47240                                                                                                                          EE was assisting other offciers in making arrest when probationer ran away. Had to pull him out of ditch. Lt upper shoulder/upper back ..
## 47241                                                                                                                                                               EE was assisting other staff members in getting a juv. Under control & pulled muscle in lower lt leg
## 47242                                                                                                                                       EE was assisting other staff members w/ combative patient & patient "threw" his body into EE's causing knee and back injury.
## 47243                                                                                                                                                                       EE was assisting other staff move a filing cabinetand thumb got caught between two cabinets.
## 47244                                                                                                                                                       EE was assisting other staff to restrain an out ofcontrol juvenile. Several scratches and a gash on rt hand.
## 47245                                                                                                                                                           EE was assisting other staff with removing items from cell, when inmate became angry & spit in EE'sface.
## 47246                                                                                                                                                   EE was assisting others in moving a football blocking sled from truck; finger was crushed between sled and truck
## 47247                                                                                       EE was assisting others in restraining a juvenile who was out of control in order to prevent injury to self or others and felt pain in right knee. Dx: medical meniscus tear
## 47248                                                                                                                            EE was assisting others to escort patient to time out, patient became hostile stricking EE. Superfic ial lacerations r scapula region.A
## 47249                                                                                                                                              EE was assisting passing out medications and inmate threw an unknown liquid hitting him on his body face in his mouth
## 47250                                                                                                                                                                               EE was assisting patient - patient scratched EE on lt 5th finger - infection at site
## 47251                                                                                                                                                                                EE was assisting patient and patient became agitated and hit EE in stomach and face
## 47252                                                                                                                                                    EE was assisting patient and patient leaned back and the patient head hit EE in the mouth chipping front tooth.
## 47253                                                                                                                                                                                EE was assisting patient and patient pushed on shoulders and EE felt strain in back
## 47254                                                                                                                            EE was assisting patient back to bed & patient broke his fall by EE's helping causing her to strain her back & neck. Out of wrk 4 days.
## 47255                                                                                                                                              EE was assisting patient change foly catheter. Patient began to shake his hand and urine splashedin her eye and face.
## 47256                                                                                                                                                                                                    EE was assisting patient down the hall when he injured his back
## 47257                                                                                                                                                                                               EE was assisting patient from bed to chair, felt pull in lower back.
## 47258                                                                                                                                                                                                                     EE was assisting patient from floor to bed. ()
## 47259                                                                                                                                                                            EE was assisting patient from floor-patient was too weak to stand 7 injured lower back.
## 47260                                                                                                                                                                     EE was assisting patient from shower and slipped on wet floor and; ater felt pain in low back.
## 47261                                                                                                                                                      EE was assisting patient from the floor and the patient fell back on EE and pushed thumb back in the process.
## 47262                                                                                                                                          EE was assisting patient from wheelchair to bed when patient fell back into chair resulting in jeck/pull EE's lower back.
## 47263                                                                                                                                                                                                 EE was assisting patient from wheelchair when she injured her back
## 47264                                                                                                                                                                                              EE was assisting patient in bathroom when she injured her lt shoulder
## 47265                                                                                                                    EE was assisting patient in restroom and patient began to fall. When trying to prevent patient from falling, patient pulled on employee's wrist
## 47266                                                                                                                                                                 EE was assisting patient in shower that could not walk & injured her back. EE out 2/4/08 - 2/6/08.
## 47267                                                                                                                                                                                             EE was assisting patient in standing up and the patient pulled EE down
## 47268                                                                                                                                                                                            EE was assisting patient in taking off shoes and was kicked in the face
## 47269                                                                                                                                                                  EE was assisting patient in transfer from bed to beside commode. Strained (left) side of back. ()
## 47270                                                                                                                                                                                             EE was assisting patient in walking who was unsteady and strained back
## 47271                                                                                                                                                                                                   EE was assisting patient in wheelchair and strained back muscle.
## 47272                                                                                                                                                                                               EE was assisting patient into bath chair and strained left upper arm
## 47273                                                                                                                             EE was assisting patient into gerochair after throwing up, putting the patient clothes off and on EE felt pain in her wrist on lt arm.
## 47274                                                                                                                                                                                                     EE was assisting patient into wheelchair and into building. ()
## 47275                                                                                                                                                                                                              EE was assisting patient off of floor... Injured neck
## 47276                                                                                                                           EE was assisting patient onto van and patient began to fall and EE was trying to keep patient from falling and EE felt pain in her back.
## 47277                                                                   EE was assisting patient out of breakroom. Patient was going into breakroom & got very violent, pt pushed EE against wall & hit side and arm. Patient then dug nails into left arm & fingers. ()
## 47278                                                                                                                             EE was assisting patient out of shower and slippedon raised edge of shower stall and fell on raised edge hitting left side of abdomen.
## 47279                                                                                                                                                            EE was assisting patient out of shower and while pulling the shower chair, she strained her lower back.
## 47280                                                                                                                                                                                              EE was assisting patient outside and patient struck employee in face.
## 47281                                                                                                                                                                                                           EE was assisting patient sit down and back began to hurt
## 47282                                                                                                                                                    EE was assisting patient to bathroom. Patient felllanding on EE's left side. Pain in left lower backand buttock
## 47283                                                                                                                                EE was assisting patient to bathroom. Patient lostbalance and EE grabbed him and lowered him to the floor, pulling right hip muscle
## 47284                                                                                                                                   EE was assisting patient to be & injured her back & shoulder. No lost workday. EE given restrictionsthat are being accommodated.
## 47285                                                                                                                                                                                                      EE was assisting patient to bed swing EE bent left thumb back
## 47286                                                                                                                   EE was assisting patient to chair, patient pulled out a clump of hair and scratched her face. EE states she has pain in shoulder, neck and back.
## 47287                                                                                                                                                                      EE was assisting patient to cover up with blanket, patient hit EE in upper rib area with knee
## 47288                                                                                                                                EE was assisting patient to get dressed and patient scratched her rt hand. Treated in employeehealth clinic and given tetanus shot.
## 47289                                                                                                                                                                    EE was assisting patient to get him in shower, patient accidentally elbowed EE in right eye. ()
## 47290                                                                                        EE was assisting patient to the bathroom. Patient became aggressive tried to pick up chair, other staff assisted with patient. Patient hit EE, flat-handed in the chest. ()
## 47291                                                                                                                                                  EE was assisting patient to the floor as the patient fell backwards and caused EE to get caught under him/her. ()
## 47292                                                                                                                                         EE was assisting patient up from chair & felt painin lower back. EE out of work March 11 & 12th. Returned to work 3/13/08.
## 47293                                                                                                                                                   EE was assisting patient up off the floor when EE felt pull in her arm and tingling and numbness in her fingers.
## 47294                                                                                                                                                                                EE was assisting patient up steps and EE twisted hand to keep patient from falling.
## 47295                                                                                                                                    EE was assisting patient up, patient's leg gave way & EE caught patient. EE experiencing pain in upper arm & right low back. ()
## 47296                                                                                                                 EE was assisting patient w/perneal care being given patient became resistive when attempting to get stool all over floor. Felt pain in lower abck.
## 47297                                                                                                                                             EE was assisting patient walk out of the laundry room when the patient put EE in a full body head- lock. Injured neck.
## 47298                                                                                                                                                                                                    EE was assisting patient when he injured his back and right hip
## 47299                                                                                                                                                                      EE was assisting patient when patient grabbed Ms. Jova's hand pulled it back and squeezed it.
## 47300                                                                                                                                      EE was assisting patient when patient pirated and grabbed EE's arm under hers. All her weight fell on EE, injuring EE's back.
## 47301                                                                                                                                    EE was assisting patient when patient started to fight staff and during altercation - EE landed with his left knee on the floor
## 47302                                                                                                                                                                           EE was assisting patient when she possibly twistedher back; lower back (l), (r) shoulder
## 47303                                                                                                                         EE was assisting patient with bath and patient slipped while getting out of tub and EE twisted rt knee while preventing the patient's fall
## 47304                                                                                                                   EE was assisting patient with bath w/asst from other staff was helping heavy patient in getting out of tub patient would not help. Injured back.
## 47305                                                                                                                                              EE was assisting patient with daily living activities. Patient grabbed EE's hair & hit EE in the back of the head. ()
## 47306                                                         EE was assisting patient with prescription assistance. Patient's autistic son came aggresively into nurses station. EE grabbed his arm to attempt to pull him off nurse station door. EE strained back. ()
## 47307                                                                                                                                                                              EE was assisting patient, patient became combative& EE injured neck and left shoulder
## 47308                                                                                                                                   EE was assisting patient. Patient was sitting on floor against the wall and when EE began to move resident, resident yanked away
## 47309                                                                                                                                                                                   EE was assisting patient.... Patient started to fall... Lower right side of back
## 47310                                                                                                                                                                                        EE was assisting patient.... Patient was hitting and pushing.... Right hand
## 47311                                                                                                                                                      EE was assisting peers to get pt on the transport board when his left thumb got pulled back. Left thumb sore.
## 47312                                                                                                                                                            EE was assisting personal care to resident when resident became combat ive hit EE in chest with fist ()
## 47313                                                                                                                                                                                  EE was assisting placing a disruptive inmate in cell when he injured his lt thumb
## 47314                                                                                                                                                                             EE was assisting placing restraints on an out of control student and injured left knee
## 47315                                                                                                  EE was assisting pt back on ward. Pt refused to come back on ward, pt grabs EE's face (right-side) & scratches, also scratches the inside of EE's right cheek. ()
## 47316                                                                                                                                        EE was assisting pt dressing and pt began falling fowards and he raised up quickly and felt sharp pain in his lower abdomen
## 47317                                                                                                                                                               EE was assisting pt from bed to wheelchair with co-worker, co-worker lost grip EE held pt w/ lt hand
## 47318                                                                                                                                  EE was assisting pt from chair to bed and felt pull in back and later pain in leg. ***$866. 46 ttd overpayment 7/11/02-7/31/02***
## 47319                                                                                                                                                                                                  EE was assisting pt in a wheelchair when her rt foot was injured.
## 47320                                                                                                                                                                                                   EE was assisting pt in getting adl pt headbutted EE in the r eye
## 47321                                                                                                                                                EE was assisting pt in rm when another pt came in. EE assisted pt out of the wrong rm wheelchair rollover hct foot.
## 47322                                                                                                                                                                                                             EE was assisting pt in to bed, felt right elbow pop ()
## 47323                                                                                                                                                                            EE was assisting pt into a chair - pt got upset and raised knee, striking in groin area
## 47324                                                                                                                                                      EE was assisting pt to bathroom when pt started to fall and EE twisted back while preventing pt from falling.
## 47325                                                                                                                                                                                              EE was assisting pt to bathroom, pt dropped, jerking EE's low back ()
## 47326                                                                                                                                                                                                   EE was assisting pt to bed, hit upper right ribs on bed-rail. ()
## 47327                                                                                                                                                                                                                   EE was assisting pt to chair, pain in lower back
## 47328                                                                                                                                        EE was assisting pt to completion, pt began to fall and EE reached out w/ l hand and grabbed pt, preventing pt from falling
## 47329                                                                                                                                           EE was assisting pt to standing position from chair and had sharp pain running from back of head thru neck and shoulders
## 47330                                                                                                                                                                           EE was assisting pt to transfer fm w/c to bed, noticed a sharp pain in right shoulder ()
## 47331                                                                                                                                                                                                  EE was assisting pt to treatment room when pt hit EE in the face.
## 47332                                                                                                                                                                                 EE was assisting pt up fm potty, pt dropped weight, causing bk to begin hurting ()
## 47333                                                                                                                                                                                                           EE was assisting pt when he felled and twisted his ankle
## 47334                                                                                                                                                                                           EE was assisting pt when pt fell to floor pulling EE's arm jerking back.
## 47335                                                                                                                                             EE was assisting pt when pt grabbed a trash can and begin to fall down to the floor. EE tried to keep pt from falling.
## 47336                                                                                                                                                                                                              EE was assisting pt when pt kicked EE in the lt thumb
## 47337                                                                                                                                                                                                        EE was assisting pt when she injured her back and shoulder.
## 47338                                                                                                                 EE was assisting pt with her bath. Was washing pt cna was assisting pt to help stay mobile pt put all her weight on right side of staffs buttocks.
## 47339                                                                                                                                                                               EE was assisting pt with pullup, pt became combatative, scratched EE on right arm ()
## 47340                                                                                                                           EE was assisting pt. From bathroom, pt. Got mad, started tearing off clothes. EE tried to stop pt., pt. Scratched left arm and shoulder.
## 47341                                                                                                                                                               EE was assisting pt. In getting dressed. The pt. Grabbed the EE's right hand & started squeezing it.
## 47342                                                                                                                                                                         EE was assisting put client in blanket restraint and heard a pop come from low back r side
## 47343                                                                                                                                                                   EE was assisting putting I/m in cell I/m tried to take cuff off the EE hit wrist on cell door ()
## 47344                                                                                                                                                                        EE was assisting putting a client in therapuetic hold when she injured his lt middle finger
## 47345                                                                                                                                                                                        EE was assisting putting a resident in wheelchair when she injured her back
## 47346                                                                                                                                                                     EE was assisting putting down a resident and the resident stiffened and landed on EE's rt hand
## 47347                                                                                                                                                                           EE was assisting putting mats down on floor when steel bar holding rack fell on EE foot.
## 47348                                                                                                                                                               EE was assisting putting patient in t. O room when patient jerked back causing pain in l wrist of EE
## 47349                                                                                                                                                  EE was assisting putting resident to bed and resident began to fall and EE strained back trying to catch resident
## 47350                                                                                                                                                         EE was assisting raleigh police department with a patient who was being combative at wake mental health ()
## 47351                                                                                                                                                       EE was assisting repositioning client in bed-turned client and client kicked left leg hitting EE on rt wrist
## 47352                                                                                                                                                                          EE was assisting resident from dining room when patient hit hct under chin with his fist.
## 47353                                                                                                                                                                                        EE was assisting resident from falling to the floor and strained left wrist
## 47354                                                                                                                                                                         EE was assisting resident from wheelchair to bed, resident slipped and EE felt pop in neck
## 47355                                                                                                                                                                             EE was assisting resident going to the bathroom, resident shut door on EE's left hand.
## 47356                                                                                                                                                               EE was assisting resident in changing clothes. EE hurt back while trying to prevent resident's fall.
## 47357                                                                                                                                               EE was assisting resident in the bathroom and felta pull in upper back while transferring client from chair to stool
## 47358                                                                                                                                                                 EE was assisting resident in walking out of the bathroom and she hit her left shoulder on the door
## 47359                                                                                                                                                             EE was assisting resident into cha, resident slid I pulled so we wouldn't fall my back stretch & pull.
## 47360                                                                                                                                                                   EE was assisting resident out of bed and resident became agitated and scratched EE on lt forearm
## 47361                                                                                                                                                                                             EE was assisting resident to chair when resident sat down on EE lt leg
## 47362                                                                              EE was assisting resident to floor with her weight dependant on my body, as EE assisted resident to the floor felt tingling down her neck, scapula, lower back, progressed to pain ()
## 47363                                                                                                                                                                                        EE was assisting resident to sit on toilet and hand got caught, hit knuckle
## 47364                                                                                                                                                                                    EE was assisting resident to stand, resident droppepulling EE's left wrist down
## 47365                                                                                                                                                                       EE was assisting resident to toilet from w/c I felt strain & back graduially started hurting
## 47366                                                                                              EE was assisting resident to toilet to stand and pivot & she dropped down to sit in chair with dead weight and let go and that's when I felt a pull in my lower back.
## 47367                                                                                                                     EE was assisting resident up from chair and resident fell causing EE to fall also and EE tried to prevent the fall with lt hand. Ijured wrist.
## 47368                                                                                                                                        EE was assisting resident when resident fell and caused EE to fall backward on a door which caused injury to EE lower back.
## 47369                                                                                                                                                                    EE was assisting resident with aodl when resident became resistant pulling and struggling w/EE.
## 47370                                                                                                                                                                         EE was assisting resident with change of clothes, resident became violent and attacked EE.
## 47371                                                                                                                         EE was assisting resident with changing of pants. Resident stepped backwards and EE was attempting to reposition him and injured her back.
## 47372                                                                                                                     EE was assisting resident with getting into the shower, resident was non compliant, dropped to the floor, EE had hand on resident and felt pop
## 47373                                                                                                                                                   EE was assisting resident with personal care, when resident hit EE with his fist. Left temple and left shoulder.
## 47374                                                                                                                                                                              EE was assisting resident with putting clothes & resident kicked her in the lower leg
## 47375                                                                                                                                                                                           EE was assisting resident, changing when resident kicked EE in the head.
## 47376                                                                                                                                                                                EE was assisting resident, resident was unsteady & fell and fell with the resident.
## 47377                                                                                                                                                                  EE was assisting resident. EE leaned over resident to lift and resident bit EE on right shoulder.
## 47378                                                                                                                                                                                          EE was assisting residents to bed. Felt something pull and had pain later
## 47379                                                                                                                                                                         EE was assisting residnet to bed, resident scratched. EE was scratched right side of face.
## 47380                                                                                                                                                                             EE was assisting restrain a client and in the process pulled a muscle in her mid back.
## 47381                                                                                                                                                                                EE was assisting restrain combative patient and strained rt shoulder and hurt back.
## 47382                                                                                                                                                                          EE was assisting restraing student when he fell onthe floor injurying left knee and elbow
## 47383                                                                                                                                                          EE was assisting restraining a disruptive client and was bit in the left upper arm and had glasses broken
## 47384                                                                                                                                                                                           EE was assisting restraining a juvenile, injured his left shld and ribs.
## 47385                                                                                                                                                                                                    EE was assisting restraining a pt when he injured his rt wrist.
## 47386                                                                                                                                                                                      EE was assisting restraining an agressive pt when his chest area was injured.
## 47387                                                                                                                                                     EE was assisting restraining client - was thrown into another EE - twisted rt wrist and hyperextended lt thumb
## 47388                                                                                                                                          EE was assisting restraining patient and patient went to bite her-strained lt upper arm holding pt head to prevent biting
## 47389                                                                                                                                                          EE was assisting restraining student when student threw head back and hit EE in the face breaking glasses
## 47390                                                                                              EE was assisting rn with a pt in bathroom, EE attempted to go behind pt in bathroom, tripped and fell on to floor hurting her right knee, low back and right wrist ()
## 47391                                                                                                                                                             EE was assisting serving inmates meal when one of the inmate threw a cup of urine splashing in EE face
## 47392                                   EE was assisting sgt wagner/robeson county sheriff's dept who had stopped a veh on nc 72 east. Sgt wagner was attacked by the 2 suspects. Trooper connor responded to sgt wagners call for help. Clmt injured his left shoulder.
## 47393                                                                                                                                                                     EE was assisting someone with pulling a cabinet and microwave when she felt a pull in her back
## 47394                                                                                                                                                                  EE was assisting staff by trying to subdue an out of control student when he injured his rt thumb
## 47395                                                                                                                                           EE was assisting staff in attempt to gain control of patient who was fighting staff when patient kicked EE in left side.
## 47396                                                                                                                EE was assisting staff in brining in a disruptive inmate under control and was accidently struck by another officer with a baton. Injured left hand
## 47397                                                                                                                                   EE was assisting staff in restraining fighting patient who grabbed EE lt hand and bent it back injuring lr wrist and lt shoulder
## 47398                                                                                                                                                EE was assisting staff in subduing an out of control student. The student bit EE in the processon his left forearm.
## 47399                                                                                                                                   EE was assisting staff in trying to walk a client client could not move feet; client's weight came forward pulling EE's shoulder
## 47400                                                                                                                                      EE was assisting staff in use of force team, while trying to restrain an inmate, he heard something pop in his righ hip area.
## 47401                                                                                                                                                                          EE was assisting staff member to lift client when he felt a sharp pain in his upper back.
## 47402                                                                                                                                                                 EE was assisting staff w/client in behavior. Clientswung head back & hit EE on right side of face.
## 47403                                                                                                                                           EE was assisting staff with a patient that was physically assaulting staff. Pateint twisted EE's arm during altercation.
## 47404                                                                                                                                                                                               EE was assisting staff with combative client and client attacked EE.
## 47405                                                                                                                                                                   EE was assisting staff with lifting a resident when she felt pain in upper arm and shoulder area
## 47406                                                                                                                              EE was assisting staff with restrictive intervention, using cpi hold. Patient tuned his head and bit EE on the left breast/nipple. ()
## 47407                                                                                                                                  EE was assisting stranded motorist by changing flat tire. Tire jacke fell causing car to crush left hand between tire and fender.
## 47408                                                                                                                     EE was assisting student after given med & while holding, student fainted EE held student up causing injury to right shoulder $24. 25 per hour
## 47409                                                                                                                                                                 EE was assisting student unjam a stapler. When EE closed stapler, a staple lodged into right thumb
## 47410                                                                                                             EE was assisting student with assesment of patienthis iv pulled out while EE was holding him on rt side against bed rails. Blood got on lower leg&foot
## 47411                                                                                                                                        EE was assisting students in the use of baton arrest techniques-student reacted to simulated threat by striking EE on wrist
## 47412                                                                                                                            EE was assisting students moving into sandford hell. Carrying a tv in arms, hit side of door, smash-ing his rt hand against door frame.
## 47413                                                                                                                                                 EE was assisting that was applying medication for scabies although EE had on gloves EE had a rash and was itching.
## 47414                                                                                                                                 EE was assisting the capture of two students who were trying to escape when he stepped in a hole causing him to twist hislt ankle.
## 47415                                                                                                                                                   EE was assisting the client off the floor with his arm as support, client dropped back down jerking the EE r arm
## 47416                                                                                                                             EE was assisting the security staff with the pickup of students from off campus EE slipped and twisted rt knee stepping out of the van
## 47417                                                                                                                         EE was assisting the supervisor unload small utility trailer from vehicle #649 outside the field when EE left running to answer the phone.
## 47418                                                                                                                                                                    EE was assisting to change a client and client kicked EE in the back of the head on thelt side.
## 47419                                                                                                                                                                                                 EE was assisting to change client and client kicked EE in the leg.
## 47420                                                                                                                                               EE was assisting to change client- bent over to put pants on and client punched emp in lt lower rib/ abdominal area.
## 47421                                                                                                                                                   EE was assisting to decorate a christmas tree, losther balance and fell out of chair, landing on her left wrist.
## 47422                                                                                                                           EE was assisting to help with a patient that attacked another staff and EE injured back. **pl-atty -gentry hogan 919-786-1886**ext 104**
## 47423                                                                                                                                                                                   EE was assisting to hold a client that was exhibiting sib and client attacked EE
## 47424                                                                                                                                                 EE was assisting to lift a trash container onto tothe porch when the bottom fell off and struck EE on the rt foot.
## 47425                                                                                                                                                                                                         EE was assisting to lift client and felt pain in lt wrist.
## 47426                                                                                                                                                                                                     EE was assisting to lift client into tub and injured low back.
## 47427                                                                                                                      EE was assisting to lift client. Client bucked in the middrift unbalancing EE causing EE to ram intolocked wheelchair handle hitting abdomen.
## 47428                                                                                                                                        EE was assisting to lifting client from bed into wheelchair pain in low back radiating down into rt leg worsened over time.
## 47429                                                                                                                                                                    EE was assisting to manually restrain a pt. Pt jerked pulling hard on EE right forearm & elbow.
## 47430                                                                                                                                                                EE was assisting to put a patient in therapeutic hold and another attacked employee from back side.
## 47431                                                                                                                                                               EE was assisting to put a writer in therapeutic hold heard a pop sound and felt pain in rt shoulder.
## 47432                                                                                                                             EE was assisting to put an agitated pt in manual restraints & the pt hit EE in the chin, shoving head backwards. Neck-cervical strain.
## 47433                                                                                                                                                  EE was assisting to put inmate in handcuffs. Inmate made a quick move and EE hit her right knee against the bars.
## 47434                                                                                                                                         EE was assisting to redirect (aggressive) patient, and EE was assaulted by patient, scratching right arm & both wrists. ()
## 47435                                                                                                                                                   EE was assisting to restrain a client when the client swung, hitting EE on the right arm with metal arm splints.
## 47436                                                                                                                                   EE was assisting to restrain a juvenile, EE was pushed against the frame of the bed and twisted left knee during the process. ()
## 47437                                                                                                                                                EE was assisting to restrain a student and in the process EE's hand was pinched against the wall. Injured lt wrist.
## 47438                                                                                                                                                               EE was assisting to restrain a student, student kicked EE in the leg and EE fell forward on student.
## 47439                                                                                                                                                    EE was assisting to restrain an out of control juvenile's arms for placement of cuffs, EE twistedhis left knee.
## 47440                                                                                                                                                                 EE was assisting to restrain patient afterwards & began to get this burning feeling in lower back.
## 47441                                                                                                                         EE was assisting to roll a piece of carpet. He waspicking up one end of rolled carpet and when he stood up he hurt his back. Low back pain
## 47442                                                                                                                                                                        EE was assisting to rotate/reposition a client in bed when the client hit EE on right hand.
## 47443                                                                                                                                                                            EE was assisting to serve breakfast and spoon fellout of grits and some fell on lt arm.
## 47444                                                                                                                                 EE was assisting to transfer client from bed to wheelchair client almost standing when sat back down arm was pulled back and down.
## 47445                                                                                                                                                     EE was assisting tractor operator in winching out stuck tractor. EE's hand was crushed between cable and tree.
## 47446                                                                                                                            EE was assisting trainee loading a truck when the trainee accidently tipped over a two wheel hand truck causing it to fall on EE lt leg
## 47447                                                                                                                                                                             EE was assisting trainees in stacking logs. Log rolled off pile and struck right knee.
## 47448                                                                                                                                                                              EE was assisting transfer client from bed into chair twisted - felt pain in low back.
## 47449                                                                                                                                                      EE was assisting transfer client from bed to wheelchair, client did not bear weight. Client felt pull in back
## 47450                                                                                                                                                              EE was assisting transferering client from recliner into wheelchair- employee noted pain in low abck.
## 47451                                                                                                                                                 EE was assisting two other people put a deceased client into vault-strained low back. *-def bill borden 716 6827**
## 47452                                                                                                                                                                              EE was assisting two patients with their showers and she felt sharp pain in her back.
## 47453                                                                                                                                                    EE was assisting unc hospital with subdueing a mental patient that had fled from the hospital - rt index finger
## 47454                                                                                                                                     EE was assisting unpacking and moving television onto a cart. As they lifted box above tv, the tv tipped and fell on EE's foot
## 47455                                                                                                                  EE was assisting volunteer while standing in the aisle of bus. Bus stopped suddenly because a car pulled in front of it. EE lost balance and fell
## 47456                                                                                                                     EE was assisting w/ first aid for student injured on court. Student was bleeding from eye and nose. EE made contact w/ blood on arms and shirt
## 47457                                                                                                               EE was assisting w/ inmate james blackledge who became disoriented from what appeared to be a medical condition. Inmate attempted to leave his cell.
## 47458                                                                                                                                                                                      EE was assisting w/ moving a large dog w/ severe pain. When lifting dog heard
## 47459                                                                                 EE was assisting w/ restrictive intervention, patient throwing chairs & grabbed EE's shirt. EE was struck in the left knee w/ a piece of table causing EE to fall to the floor. ()
## 47460                                                                                                                  EE was assisting w/ the restraint of a student of and the student kicked and the force of the kick threw EE's arm in the air and she heard a pop.
## 47461                                                                                                                                                              EE was assisting w/ tree removal that had poison ivy on it. A few days later face broke out with rash
## 47462                                                                                                                                                                          EE was assisting w/a chase on hwy. Suspect hit troopers car. Injured lt knee, lower back.
## 47463                                                                                                                                                                            EE was assisting w/a combative patient and fell back against a table. Injured back/arm.
## 47464                                                                                                                                              EE was assisting w/a pt in a leisure activity involving a sewing needle. Accidently sticking himself in the lt thumb.
## 47465                                                                                                                                  EE was assisting w/a student who was attempting suicide when staff was intervening he was hit on side of head w/metal flashlight.
## 47466                                                                                                                 EE was assisting w/am snacks. Pt became aggitated. EE attempted redirection. This escalated pt behavior; pt p/u table threw at EE; struck in groin
## 47467                                                                                                                                                                                  EE was assisting w/capture of runaway studdent when he fell twisting his lt knee.
## 47468                                                                                                                                                     EE was assisting w/changing pt's brief that was in restraints, lifting pt, left hand gave out began hurting ()
## 47469                                                                                                                                                       EE was assisting w/cpr on an inmate in a kneeling position bent over when he felt sharp pains down his back.
## 47470                                                                                                                                                                                          EE was assisting w/helpng restrain a pt & pt fell on EE. Hurt knees rt/lt
## 47471                                                                                                                                               EE was assisting wc patients to van and had to strap wc down to the floor and noticed pain in low back later in day.
## 47472                                                                                                                                             EE was assisting winston salem police officer push a large van out of the middle of the road andstrained back and neck
## 47473                                                                                                                                                                               EE was assisting with a 2 person lift and strainedhand trying to reposition resident
## 47474                                                                                                                        EE was assisting with a blood draw on mice in comparative medicine and accidntly stuck her finger with the lancet used to bleed a mouse. ()
## 47475                                                                                                                                                                EE was assisting with a client when client became aggressive causing EE to injured his lt shoulder.
## 47476                                                                                                                                                                                    EE was assisting with a client when client leg struck EE rt thumb causing pain.
## 47477                                                                                                                                                                            EE was assisting with a client when client startedkicking causing injurying to rt knee.
## 47478                                                                                                                                                                    EE was assisting with a client when client struck EE in the chin causing head to snap backward.
## 47479                                                                                                                                                                                         EE was assisting with a client when she struck herlt hand on the bed rail.
## 47480                                                                                                                                                                 EE was assisting with a cow when the cow slipped pinning EE against the wall injuring his rt wrist
## 47481                                                                                                                          EE was assisting with a inmate while inmate in exercise cage and while removing handcuff the inmate snatched handcuffs injuring rt finger
## 47482                                                                                                                                                                          EE was assisting with a lift for an oversized pt - strained back with pain down right leg
## 47483                                                                                                                                                                                   EE was assisting with a lift of client when she felt a pull in her left shoulder
## 47484                                                                                                                                    EE was assisting with a patient stepping down fromscale when patient begin to fall while holding EE rt arm injuring rt shoulder
## 47485                                                                                                                                                              EE was assisting with a patient when patient triedto get into van causing EE to injured his neck area
## 47486                                                                                                                                                                                      EE was assisting with a patient when she pulled a muscle in her lt groin area
## 47487                                                                                                                                                                                                EE was assisting with a patient when the patient kicked her rt hand
## 47488                                                                                                                                                     EE was assisting with a patient who slid out of their chair onto the floor and assisted patient backinto chair
## 47489                                                                                                                                                                  EE was assisting with a prisoner, when the prison-er struck EE and was hit by the co-worker baton
## 47490                                                                                                                                           EE was assisting with a prone intervention-was bent over client holding legs-3 to 5 mins-noted burning pain in lower leg
## 47491                                                                                                                                                                                                              EE was assisting with a pt when she injured her back.
## 47492                                                                                                                                                                                                 EE was assisting with a pt when the pt scratched EE on the rt arm.
## 47493                                                                                                                                                                  EE was assisting with a resident when he felt pain under his rt shoulder work number 919-575-1550
## 47494                                                                                                                                                   EE was assisting with a resident when he lashed out, violently knocking her amr, injuring her left hand & wrist.
## 47495                                                                                                                                 EE was assisting with a staff member installing a light fixture while lifting the fixture overhead he pulled something in his back
## 47496                                                                                                                                                                                                EE was assisting with a student restraint and strained her wrist ()
## 47497                                                                                                                                                                                                                      EE was assisting with a student restraint. ()
## 47498                                                                                                                                                                                       EE was assisting with a two person lift and EE felt a pull in left shoulder.
## 47499                                                                                                                                                                                    EE was assisting with a use of force when an inmate struck him above the lt eye
## 47500                                                                                                                                                                             EE was assisting with a use of force, twisted rightknee. Knee became painful and sore.
## 47501                                                                                                                                                        EE was assisting with a violent patient when the patient grabbed her finger, hand, and wrist and twisted it
## 47502                                                                                                                      EE was assisting with absconder round-up. Was at offender's home inside fenced yard when rottweiller charged at her. She jumped the fence. ()
## 47503                                                                                                                                                                                                EE was assisting with aggressive inmate when he injured his lt hand
## 47504                                                                                                                                                                                   EE was assisting with aggressive inmate when his lt and rt arm receive scratches
## 47505                                                                                                                                                                                    EE was assisting with aggressive patient & strain-ed her neck and left shoulder
## 47506                                                                                                                                                 EE was assisting with aggressive patient and then the patient attacked staff. Injured head, neck, backhand, wrist.
## 47507                                                                                                                                                                   EE was assisting with aggressive patient that was kicking & hitting. Employee injuried shoulder.
## 47508                                                                                                                                                                                         EE was assisting with aggressive patient when her lt knee struck the floor
## 47509                                                                                                                                                                                 EE was assisting with aggressive patient when patient began hitting and choking EE
## 47510                                                                                                                                                                                             EE was assisting with aggressive patient when she injured her lt thumb
## 47511                                                                                                                                                                                      EE was assisting with an aggressive client when client struck EE in the chin.
## 47512                                                                                                                                                      EE was assisting with an aggressive inmate he and the inmate fell to the ground injuring his rt kneeand thumb
## 47513                                                                                                                                                                                      EE was assisting with an aggressive inmate when he fell over bed on left side
## 47514                                                                                                                                                                   EE was assisting with an aggressive inmate when he received abrasion and contusion to his rt leg
## 47515                                                                                                                                                                                          EE was assisting with an aggressive inmate when he was struck in the face
## 47516                                                                                                                                                                       EE was assisting with an aggressive inmate when he was struck on the lt forehead and forearm
## 47517                                                                                                                                                                                            EE was assisting with an aggressive inmate when his lt arm struck a bed
## 47518                                                                                                                                                                                        EE was assisting with an aggressive inmate when his rt rib cage was injured
## 47519                                                                                                                                                                           EE was assisting with an aggressive inmate when the inmate bit EE on the lt index finger
## 47520                                                                                                                                                                                 EE was assisting with an aggressive inmate when the inmate bit him on the lt thumb
## 47521                                                                                                                                                                                              EE was assisting with an aggressive patient when her back was injured
## 47522                                                                                                                                                                                     EE was assisting with an aggressive patient when patient bit EE on the rt hand
## 47523                                                                                                                                                                               EE was assisting with an aggressive patient when the patient bit him on the rt wrist
## 47524                                                                                                                                                  EE was assisting with an aggressive pt when the ptstart fighting causing EE to injury his neck and shoulder area.
## 47525                                                                                                                                                                               EE was assisting with an aggressive resident when he struck his lt knee on the floor
## 47526                                                                                                                      EE was assisting with an aggressive student when student kicked EE on lt side of jaw 2x. Student also bit staff member on lt hand (knuckles).
## 47527                                                                                                                                                                                               EE was assisting with an agressive client and her left hand twisted.
## 47528                                                                                                                                                                       EE was assisting with an agressive client when client struck EE in the lt eye with a helmet.
## 47529                                                                                                                                                                  EE was assisting with an agressive inmate when he fell to the floor striking his head on the desk
## 47530                                                                                                                                                                                         EE was assisting with an agressive inmate when his rt shoulder was injured
## 47531                                                                                                                                                                                                      EE was assisting with an agressive patient injured chest area
## 47532                                                                                                                                                                         EE was assisting with an altercation in dorm when his lt hand touch some blood on the door
## 47533                                                                                                                EE was assisting with an arrest of a combative suspect. EE was kicked in the face, his eye glasseshattered, glass fragments embedding in right eye.
## 47534                                                                                                               EE was assisting with an injured student at bldg #3. EE was going up the steps to call for additional assistance & fell up steps injured right knee.
## 47535                                                                                                                                          EE was assisting with an inmate attempting to pull inmate up from floor when he began to have pain in his lower back area
## 47536                                                                                                                                                                                                      EE was assisting with an inmate when he was struckin the nose
## 47537                                                                                                                                                                                       EE was assisting with an inmate when he was struckon the head and lt forearm
## 47538                                                                                                                                                                                               EE was assisting with an inmate when his rt hand struck a door frame
## 47539                                                                                                                                                                                                       EE was assisting with an inmate when she injured her lt knee
## 47540                                                                                                                                                                                        EE was assisting with an inmate when the inmate threw some urine in EE face
## 47541                                                                                                                                                                         EE was assisting with an out of control student- student spit bloody saliva into EE's eyes
## 47542                                                                                                                                                                            EE was assisting with annual at physicals-EE cughtcat by neck and cat bit EE on rt arm.
## 47543                                                                                                                          EE was assisting with arrest of subject in the park. Subject resisted arrest and struggled. EE substained abrasoin to arm and lt shoulder
## 47544                                                                                                                EE was assisting with arrest. EE fell down severalconcrete stairs. Has cuts on both hands, neck, forehead, face, knees. Glasses scratched & damaged
## 47545                                                                                                                     EE was assisting with bathing a client, when she began to dress client on the trolley, EE pulled a muscle or strained inner part of right arm.
## 47546                                                                                                    EE was assisting with bathing a pt, had to pull pt toward herself in order to bathe back side of pt, when EE did this pt's weight shifted to EE's left wrist ()
## 47547                                                                                                                                                                       EE was assisting with bathing client and client grabbed EE's arm and would not let go of it.
## 47548                                                                                                                                                                     EE was assisting with breaking up a fight b/t two students fell to the floor injuring lt thumb
## 47549                                                                                                                                    EE was assisting with breaking up a fight between student when one of the student threw a chair striking EE on the rt arm/elbow
## 47550                                                                                                                                                                                EE was assisting with carrying an agitated patientlater she complained of back pain
## 47551                                                                                                                                         EE was assisting with cleaning up demolition of a wall when she stepped on a board that had nails init; injured right foot
## 47552                                                                                                                                                       EE was assisting with client when client began to fall EE attempted to catch client when she injuredher back
## 47553                                                                                                                                                                           EE was assisting with client when client fell on top of EE pinning EE knee to the floor.
## 47554                                                                                                                                                                   EE was assisting with client when client grabbed EE and scratched her on the neck and chin area.
## 47555                                                                                                                                                                                EE was assisting with client when client grabbed EE lt thumb and bent it backwards.
## 47556                                                                                                                                                                                         EE was assisting with client when client punch EE in the lower rt abdomen.
## 47557                                                                                                                                                                                             EE was assisting with client when client scratchedee on the lt forearm
## 47558                                                                                                                                                                         EE was assisting with client when client slapped EE in the face causing injury to the neck
## 47559                                                                                                                                                                                                     EE was assisting with client when client struck EE on the head
## 47560                                                                                                                                                                                                   EE was assisting with client when client struck eein the stomach
## 47561                                                                                                                                                                                    EE was assisting with client when he fell to the floor and injured his rt thumb
## 47562                                                                                                                                                                                              EE was assisting with client when he felt pain in his rt kidney area.
## 47563                                                                                                                                                                                 EE was assisting with client when her foot slippedcausing pain in lt knee and leg.
## 47564                                                                                                                                                                                                     EE was assisting with client when she felt a pop in her rt arm
## 47565                                                                                                                                                                           EE was assisting with combative patient and later experienced pain in neck, back and arm
## 47566                                                                                                                               EE was assisting with committee event, returning supplies to EE health clinic on utility cart. Cart lodged on curve EE injured back.
## 47567                                                                                                                                                                                             EE was assisting with company picnic and was stung by bee on upper lip
## 47568                                                                                                                EE was assisting with course management and set upat the driving facility. While unloading traffic cones from truck, he felt pain in left shoulder.
## 47569                                                                                                                                                    EE was assisting with cpi hold on patient, left hand & left nostril scratched; lower back pain from twisting ()
## 47570                                                                                                                                                                                        EE was assisting with eri transport board, afterwards back began hurting ()
## 47571                                                                 EE was assisting with escorting patients back to unit. EE assisted with a cpi hold on a patient that was attempting to escape. Patient rolled onto EE, causing EE to fall, injurying both legs. ()
## 47572                                                                                                                                                                                               EE was assisting with fight when she accidently inhaled pepper spray
## 47573                                                                                                                            EE was assisting with getting a wildfire under control. Began to complain of chest pains, sweatingand shortness of breath as he worked.
## 47574                                                                                                    EE was assisting with helping staff who was bit by patient, & patient pushed EE causing EE to fall. Hitting back against the wall & both knees on the floor. ()
## 47575                                                                                                                                                                                      EE was assisting with hurricane floyd disaster relief and was bitten by a cat
## 47576                                                                                                                                                       EE was assisting with inmate when he and inmate both fell to floor causing EE to strike lt knee on the floor
## 47577                                                                                                                                                                                        EE was assisting with inmate when he fell to the floor injuring his rt knee
## 47578                                                                                                                                                                       EE was assisting with inmate when he injured his groin/inner thigh and scratches on lt elbow
## 47579                                                                                                                                                                                                            EE was assisting with inmate when he injured his lt arm
## 47580                                                                                                                                                                                                          EE was assisting with inmate when he injured his rt wrist
## 47581                                                                                                                                EE was assisting with inmate when he placed his lt hand on handcuff chain the inmate pulled away injuring his lt hand middle finger
## 47582                                                                                                                                                                                                EE was assisting with inmate when he scraped his rt hand and rt leg
## 47583                                                                                                                                                                                    EE was assisting with inmate when he was exposed to bodily fluids on the lt arm
## 47584                                                                                                                                                                                    EE was assisting with inmate when his rt wrist was struck against a hard object
## 47585                                                                                                                                                                        EE was assisting with inmate when inmate became disruptive striking EE on the lt cheek area
## 47586                                                                                                                                                                                                    EE was assisting with inmate when inmate kicker her in the face
## 47587                                                                                                                                                                  EE was assisting with inmate when she struck her lt foot/ankle against another correction officer
## 47588                                                                                                                                                                                       EE was assisting with inmate when she was struck by a basketball in the face
## 47589                                                                                                                                                                               EE was assisting with inmate when the inmate grabbed his face and stratched his neck
## 47590                                                                                                                                                                                                EE was assisting with inmate when the inmate struck him in the face
## 47591                                                                                                                                                                   EE was assisting with inmates feeding breakfast when the inmate threw some unknown liquid at him
## 47592                                                                                                                                                                                                    EE was assisting with inmates when an inmate spitted in EE face
## 47593                                                                                                                                                                                                           EE was assisting with inmates when his head strucka wall
## 47594                                                                                                                                                                                EE was assisting with intervention-in process rt arm twisted-noted rt shoulder pain
## 47595                                                                                                                                                                   EE was assisting with intervention/restrainig of aclient when she noted pain in her right elbow.
## 47596                                                                                                                                                                            EE was assisting with laundry, took off gloves both hands were broke out in red rash ()
## 47597                                                                                                                                                                                  EE was assisting with lifting a client from bed when she felt pain in lower back.
## 47598                                                                                                                                                                                            EE was assisting with lifting a client when she felt pain in her chest.
## 47599                                                                                                                                                                    EE was assisting with lifting of client when she felt something pull in left arm and wrist area
## 47600                                                                                                                                                                                     EE was assisting with loading a tv when the tv fell cutting EE rt index finger
## 47601                                                                                                                                                                                                  EE was assisting with lunch when an inmate struck him in the face
## 47602                                                                                                                                                                  EE was assisting with manual restraint of pt, pt kicked EE in chest, EE fell twisting right ankle
## 47603                                                                                                                                                               EE was assisting with moving furniture when she possibly pulled a muscle in her lower abdominal area
## 47604                                                                                                                                          EE was assisting with moving patient from dayroom. Patient was kicking. Pain in back, numb left leg and scratches on hand
## 47605                                                                                                                                                                      EE was assisting with new pt admission, pt took sheriff deputy's gun and shot EE then himself
## 47606                                                                                                                                        EE was assisting with opening slide chute on corn grinder when a metal fragment from the storage bin fell into left eye. ()
## 47607                                                                                                                       EE was assisting with other staff members in bathing, trying to get patient out of tub, when slipped on floor and fell on back and right arm
## 47608                                                                                                                                                                    EE was assisting with patient being placed on hci hold and fell over someone, falling to floor.
## 47609                                                                                                                     EE was assisting with patient that was in wheel chair & refusing to lift her feet so chair could be pushed. Several times employee had to lift
## 47610                                                                                                                                                                  EE was assisting with patient that was kicking & swinging while place in nci hold & injured back.
## 47611                                                                                                                                                                                   EE was assisting with patient when he injured his rt finger and rt side of head.
## 47612                                                                                                                                                                                                EE was assisting with patient when patient kicked EE in the lt knee
## 47613                                                                                                                                                                                       EE was assisting with patient when she was struck in the head by the patient
## 47614                                                                                                                                                                                        EE was assisting with picking up the basketball floor injured lower abdomen
## 47615                                                                                                                                                          EE was assisting with placing a steel drill rod ona truck for storage pinched right ring finger near nail
## 47616                                                                                                           EE was assisting with placing inmates up from in- side recreation, 2 intensive control inmates began fighting, stricking EE in back of head and rib cage
## 47617                                                                                                                                      EE was assisting with placing patient in nci hold & strained muscle in right shoulder & chest area. Out of work Feb. 11 & 12.
## 47618                                                                                                                                                       EE was assisting with placing patient in nci hold that was kicking & swinging and injuried her back and neck
## 47619                                                                                                                                    EE was assisting with preventing patient from self injurious behavior. Both hands caught in cord with patient strangulating. ()
## 47620                                                                                                                                                                                    EE was assisting with pt & place pt on floor & turned & pt bit him on his back.
## 47621                                                                                                                                                                             EE was assisting with pt when pt grabbeb and twisted her hand and scratched both arms.
## 47622                                                                                                                                                                                                  EE was assisting with pt when pt struck EE with fist in the nose.
## 47623                                                                                                                                                                                                     EE was assisting with pt when she felt a pain in rt lower back
## 47624                                                                                                             EE was assisting with re-organizing stockroom. EE picked up a tray stacked with glass salt & pepper shakers. Tray began to fall as EE began to balance
## 47625                                                                                                                                     EE was assisting with re-setting the social area when she slipped in water and fell hitting her head and shoulder on the wall.
## 47626                                                                                                                                                                                                                    EE was assisting with resident causing a strain
## 47627                                                                                                                                                                                      EE was assisting with resident when resident grab EE hand injuring both wrist
## 47628                                                                                                                                                                                              EE was assisting with resident when resident kick her on the rt wrist
## 47629                                                                                                                                                                 EE was assisting with restraining a pt when the pt started jerking her arm.... Right shoulder/back
## 47630                                                                                                                                                                           EE was assisting with restraining a student, the student bit EE on the rt arm/lt breast.
## 47631                                                                                                                                             EE was assisting with restraining an aggressive pt when pt pulled EE hair and caused EE to injuredboth lt and rt knee.
## 47632                                                                                                                                     EE was assisting with restraining an inmate when rt wrist was injured and pepper spray contacted rt eye while wearing contacts
## 47633                                                                                                                                                                               EE was assisting with restraining an inmate, when EE's left thumb was bent backwards
## 47634                                                                                                                                         EE was assisting with restraining students from fighting and jammed ring finger on left hand also felt pain in left elbow.
## 47635                                                                                                                                                                  EE was assisting with restraint of a student when student kicked member in lt hand /index finger.
## 47636                                                                                                                                            EE was assisting with restraint of students fighting in cafeteria when staff hit his lt hand /ring finger causing pain.
## 47637                                                                                                                                                              EE was assisting with restraint on an aggressive student when student kicked staff member I lt thigh.
## 47638                                                                                                                                                  EE was assisting with restrictive intervention. Felt pain in upper backafter lifting patient off transport board.
## 47639                                                                                                                                                                    EE was assisting with several bouys at workstations which caused alot of straining; hemorrhoids
## 47640                                                   EE was assisting with shake down of inmate at laundry shoot, when two inmates began to fight. EE was sprayed with pepper spray during the take down of the inmate. EE was scratched and bruised on right arm. ()
## 47641                                                                                                                EE was assisting with staff & injured student cameout of room & started attacking EE bu hitting EE with his hands and throwing things. Injured back
## 47642                                                                                                                     EE was assisting with stocking trout into river. He was wlaking down stream when float with fish init got away, EE injured back chasing float.
## 47643                                                                                                                                                                             EE was assisting with student fighting another student and hit rt elbow on cement wall
## 47644                                                                                                                                     EE was assisting with student restraint; EE was holding struggling student and they both fell to the floor. Injured knee, rib.
## 47645                                                                                                                                                                              EE was assisting with student when student struck EE in the face injuring lt eye/chin
## 47646                                                                                                                                                                                                    EE was assisting with students when he fell injured his abdomen
## 47647                                                                                                                                                                                           EE was assisting with supply cart when her rib/ chest area struck a door
## 47648                                                                                                                                                                                     EE was assisting with surgery when her lt hand thumb was punctured by a needle
## 47649                                                                                                                                EE was assisting with suspect who was resisting arrest on foot chase, EE was exposed to pepper spraand had a reaction to the spray.
## 47650                                                                                                                    EE was assisting with the arrest an offender at his home while leaving the house she fell on the steps breaking her lft ankle, and inj shoulder
## 47651                                                                                                               EE was assisting with the installation of a snow plow. EE had to lift up on it; felt a sharp pain inab, thought he strained a muscle; noticed a lump
## 47652                                                                                                                                                                 EE was assisting with the removal of an ac unit when he received a gash in left temple of his head
## 47653                                                                                                                                                                  EE was assisting with the restraint of a juvenile. Juvenile became aggressive toward employee. ()
## 47654                                                                                                                                    EE was assisting with the restraint of a student, student was fighting staff and fell on EE wrist and spit blood in EE face. ()
## 47655                                                                                                                                                                                                  EE was assisting with training with he became overexposed to heat
## 47656                                                                                                                                                                                       EE was assisting with trash pick up when somethingstuck him in the left hand
## 47657                                                                                                                                                                                              EE was assisting with violent patient and sustained multiple injuries
## 47658                                                                                                                                                         EE was assisting with wheelchair and tripped on van ramp and scraped rt ankle and sprained rt small finger
## 47659                                                                                                                                EE was assistingnin putting handcuffs on a studentand was pushed to the ground hitting arm on chair and hurt back also in the fall.
## 47660                                                                                                                                                                     EE was assistint client with changing clothes and cleint began to fall and hit EE's left knee.
## 47661                                                                                                                    EE was assiting a co-worker with assembling a rolling cart file cabinet. While searching for keys she turned her neck & shoulder sharp to left.
## 47662                                                                                                             EE was assiting another dt stand client up to walkto bed, clients legs folded and EE stated she got brunt of weight, EE felt pain in neck and shoulder
## 47663                                                                                                                                                 EE was assiting client with bath, slipped and fellwas able to grag onto chair to break fall but landed on left hip
## 47664                                                                                                                                                                          EE was assiting client with shaving when client became agitated and kicked EE in stomach.
## 47665                                                                                                                                                EE was assiting co-worker replacing lights when a cover fell and hit eeon left side of head, jaw shoulder and thumb
## 47666                                                                                                                                                        EE was assiting coworker move a 300lb air motor from roof to ground, strained low back carrying downstairs.
## 47667                                                                                                                                                                    EE was assiting in restraining a patient. Patient head butted EE on left side and scraped shin.
## 47668                                                                                                                                                                                                               EE was assiting in restraining a pt, scratched by pt
## 47669                                                                                                                                                                          EE was assiting lift a client from wheelchair ontotub when she flet a sharp pain in back.
## 47670                                                                                                                                          EE was assiting pt as she was unsteady, pt bacame uncooperative and combative, pulled away from EE and both fell to floor
## 47671                                                                                                                         EE was assiting pt to dinning room, the pt fell causing EE to fall as well. EE has pain and soreness in left knee. No bruising or swelling
## 47672                                                                                                                                                                                                              EE was assiting pt to van and slipped off bottom step
## 47673                                                                                                                                                     EE was assiting students to move dog to a transport cast, reached over surgery table and strained back muscles
## 47674                                                                                                                                                                 EE was assiting to lift client from shower chair into wheelchair, noted pain in right side of back
## 47675                                                                                                                                                                                      EE was assiting to place a pt in bed when EE felt something pop in l shoulder
## 47676                                                                                                                             EE was assiting w/ a patient who needed some asst getting out of chair and patient lost balance and grabbed EE's shoulder for support.
## 47677                                                                                                                                                                                                       EE was assiting w/ violent patient, pt spit in EE face, eyes
## 47678                                                                                                                                                                            EE was assiting with breaking up a fight b/t students rt middle finger twisted in shirt
## 47679                                                                                                                                                          EE was assiting with clipping cat nails, other EE handed cat to EE to put in kennel then cat bit herthumb
## 47680                                                                                                                                                                                     EE was assiting with emptying a bucket when she felt pain in the left shoulder
## 47681                                                                                                                    EE was assiting with procedure and a contaminated scalpel was laid on chux pad. When pad was wrappedfor disposal clm't received puncture wound.
## 47682                                                                                                                                                       EE was assiting with restraint of a student fighting in shower when she fell to the floor landing onrt knee.
## 47683                                                                                                                                                                             EE was asssisting pt when another pt took object off nightstand and threw at EE rt eye
## 47684                                                                                                                                EE was asst another staff member in helping a pt from g-cjair to shower chair and pt raised foot and almost fell, EE caught the pt.
## 47685                                                                                                                      EE was asst individual with coming to breakfast individual started to fall and EE reached to catch person, person fell over l hand, bend thum
## 47686                                                                                                                                                                                        EE was asst staff restrain juvenile. Later EE began to experince back pain.
## 47687                                                                                                                                                                             EE was asst w/an inmate and was struck by an unknown object. ------ left hand --------
## 47688                                                                                                                              EE was asst with removing a lawnmower from a pickup truck another person snatched lawnmower andcaused EE thumb and wrist to snap back
## 47689                                                                                                                                                                                      EE was asstigin lift client over tub and into shower chair. Felt pull in back
## 47690                                                                                                              EE was assting another hct in changing a patient and the sheet twisted into an awkward position when EE tried to keep pt from fallling. Strained wris
## 47691                                                                                                                                                                                     EE was assting another staff member try to restrain an out of control student.
## 47692                                                                                                                                                                             EE was assting client to get dress for bed-client punched and kicked EE in the abdomen
## 47693                                                                                                                                                                             EE was assting client to get dressed & became aggitated and headbutted EE in the nose.
## 47694                                                                                                                                                                      EE was assting clinet into bed, client rolled off bed and EE caught client. Felt pain in back
## 47695                                                                                                                                                                  EE was assting pt to chair and pt started to go down and placed pt against hip to place in chair.
## 47696                                                                                                             EE was assting pt to toilet, pt became resistive and while she was trying to get them back on toilet she twisted and felt a sharp pain in her shoulder
## 47697                                                                                                                                                      EE was assting to lift client and half way betweenthe recliner & wheelchair EE felt pop and pain in lt wrist.
## 47698                                                                                                                                                                                      EE was assting two clients and jammed her finger on the 1st client wheelchair
## 47699                                                                                                                                                       EE was assting w/another staff member to restrain a student while trying to restrain EE felt a pull in back.
## 47700                                                                                                                                                                               EE was assting w/bed/bath of a pt and afterwards EE felt tenderness in the rt wrist.
## 47701                                                                                                                                                     EE was assting w/breaking upa fight between several students when the EE rt wrist and lt elbow became injured.
## 47702                                                                                                                                           EE was assting w/capture of runaway student when he tripped in a hole in the ground twisting his ltankle and lower back.
## 47703                                                                                                                      EE was assting w/intervention of a resident that became aggressive, the resident went to the floor abruptly pulling staff down on top of him.
## 47704                                                                                                                     EE was assting w/restraining a student. Student kicked EE in the groin area, punched EE in the mouth/face causing EE glasses to fall to floor.
## 47705                                                                                                           EE was asstng blind client 2 rail. Anthr client st artd around them & tripped causing blind client & emplyee 2 fall.. EE fell againt wall hurtnf 4th fng
## 47706                                                                                                                                EE was asstng residen to the dinning room and the resident wanted to sit on the floor and while doing so resident twisted EE wrist.
## 47707                                                                                                                                                                                                                                         EE was assualted by inmate
## 47708                                                                                                                                                                                 EE was assualted by inmate and fell & struck his head on bars that seperate levels
## 47709                                                                                                                                      EE was assulted by inmate. Multiple contusions to face, rt eye, neck pain, upper back, low back pain, dizzy spells, headaches
## 47710                                                                                                                                                                                                                EE was at a beach/park with a client, bit by spider
## 47711                                                                                                                               EE was at a carwash removing ice from the state car when another car came from behind him and struck state car causing rt leg injury
## 47712                                                                                                                                                                                            EE was at a complete stop and was struck from behind by another vehicle
## 47713                                                                                                                                                                                  EE was at a complete stop in his vehicle when he was rearended by another vehicle
## 47714                                                                                                                                                 EE was at a conference in phil. Pa. EE was dragging bag with clothes carrying equipment bag. Wrenched lt shoulder.
## 47715                                                                                                                             EE was at a full stop waiting to make a left turn when large truck carrying heavy equipment rear ended her. Neck and shoulder injuries
## 47716                                                                                                                                                            EE was at a meeting he beagn to take a seat at conf table and hit rt knee cap on a leg supporting table
## 47717                                                                                                                                                               EE was at a probationer's home and was bitten by adog in her rt thigh, causing scratches and bruises
## 47718                                                                                                                                                                                 EE was at a required meeting in ga and fell while walking to lunch injuring rt arm
## 47719                                                                                                                                                            EE was at a state conference in s. Dakota in a hotel. EE was lifting luggage when she injured her back.
## 47720                                                                                                                       EE was at a stopliht, the car behind her was rear ended and it caused the car behind her to rear end her, causing soreness to shoulder/back.
## 47721                                                                                                                       EE was at a training exercise when she stepped into hold which had bees nested. She was attacked by the bees and stung several times on body
## 47722                                                                                                                     EE was at a workshop when she stepped outside hotel she turned her left ankle on uneven bricks causing her to fall hitting her head on bricks.
## 47723                                                                                                                                                                    EE was at annual inservice training performing baton, crdt and restraint training exercises. ()
## 47724                                                                                                                             EE was at back gate at supply truck & was walking at a slight downgrade in wet grass & slipped causing him to fall. Lt ankle sprained.
## 47725                                           EE was at beaufort hospital with a suspected impaired driver. EE was standing behind the suspect as the nurse was attempting to draw blood. The suspect jumped from his seat and headbutted the employee in his nose. ()
## 47726                                                                                                                                                                                        EE was at blet & was doing his morning run & felt a pain in his left ankle.
## 47727                                                                                                                                  EE was at cafeteria removing baked potatoes from oven with towels. Heat came through towels and burned left hand at base of thumb
## 47728                                                                            EE was at camp don lee with pediatric hem/onc patients and received a spider bite on right ankle/foot. It began to swell on wed on sat became red, and hot to touch plus more edema. ()
## 47729                                                                                                                                                                                     EE was at canteen with resident ordering snacks and was head butted on lt jaw.
## 47730                                                                                                                                                                                               EE was at client house and ground was slick slipped and twisted knee
## 47731                                                                                                                                      EE was at client's home with a provider. EE was sitting in a low chair when she stood up, felt a sharp pain/pull in her back.
## 47732                                                                                                                                                                                          EE was at conference and slipped and fell in parking lot injuring lt knee
## 47733                                                                                                                                                                                EE was at conference and was standing on chair hanging a banner and the chair broke
## 47734                                                                                                                                                                          EE was at conference in charlott and was cutting tape to hang a poster and cut her thumb.
## 47735                                                                                                                 EE was at control desk her foot struck plastic milk crate. EE lost balance & caught self with herhand. EE pulled something lower back on left side
## 47736                                                                                                                                                                       EE was at copat training. During training had to drag a 150lb dummy while walking backwards.
## 47737                                                                                                                                                          EE was at crdt training & was trying to throw a person off the top of her body. Strain to right shoulder.
## 47738                                                                                                                                                                                      EE was at davis hosp and was grabbed by the patient and pulling him up in bed
## 47739                                                                                                                                             EE was at day care ctr doing job duties when she went outside to the playground and fell down steps and twisted ankle.
## 47740                                                                                                                 EE was at desk doing paper worka nd got up and returned to the chair and the rolling wheels came off of the chiar and EE fell injuring wrist/hand.
## 47741                                                                                                                                         EE was at desk duty and dropped pen and while bending over to pick it up she fell. While to catch herself and bent wrist .
## 47742                                                                                                                                  EE was at desk performing normal job & was botherdby possible office air quality- burning nostrils, nausea & bitterness of tongue
## 47743                                                                                                                                                EE was at desk working and typing on computer and began experiencing pain and swelling in right wrist and hand palm
## 47744                                                                                                                                         EE was at dish machine when timer went off and another employee opened the door and the steam hit employee in the face. ()
## 47745                                                                                                                  EE was at door as it was opening. He placed hand on door. Ring and index finger were in section of door that was closing and fingers were smashed
## 47746                                                                                                                                                 EE was at door observing inmate. EE reached back to grab door handle and door closed on 3rd and 4th right fingers.
## 47747                                                                                                                                                                    EE was at file cabinet looking at files when draw lifted off tracks and fell on EE's left thigh
## 47748                                                                                                                                                   EE was at fire extinguisher demonstration and inhaled smoke from the fire which triggered a severe asthma attack
## 47749                                                                                                                                                                                            EE was at firearms training. EE was kicked by shotgun when shooting it.
## 47750                                                                                                                                              EE was at firing range waiting for someone to finish-when that person fired his rifle EE experienced pain in left ear
## 47751                                                                                                                                                                                      EE was at full stop and was hitnon the lt side. Neck(soft tissue trauma)neck.
## 47752                                  EE was at garris evans picking up supplies and loading them onto truck, and jumped onto the back of the dump truck and proceeded to push a 2x12 board that was being stacked onto truck when he felt a pull to his lower back. ()
## 47753                                                                                                                                                                             EE was at her desk and leaned over and opened file drawer. Felt bad pain in lower back
## 47754                                                                                                                                                                                                      EE was at her desk keying medical claims-left handthumb/wrist
## 47755                                                                                                                                                                                                                 EE was at her desk when bitten by a flying insect.
## 47756                                                                                                                                                                                    EE was at her post when she felt a sting four time on chest and right shoulder.
## 47757                                                                                                                                                                                EE was at her workstation when she began smelling fumes; coughing, got dizzy.... ..
## 47758                                                                                                                                                       EE was at his car and he saw a snake. EE jumped back and stepped up on the curb and twisted his right ankle.
## 47759                                                                                                                                                                        EE was at his computer and pushed away from desk chair tripped over and EE fell on his back
## 47760                                           EE was at his service truck behind the eberhart building. He was cutting through a bottle of sylicons w/ his utility knife and cut all the way through and hitting lf index finger. Call sup and went to gove health. ()
## 47761                                                                                                             EE was at hoke co clinic trying stop a child from leaving the room when the plastic rug at door way gave way causing EE to fall lt side body wrist leg
## 47762                                                                                                                                                                             EE was at home visit a small dog charged from behind me and bit me on the lower lt leg
## 47763                                                                                                                    EE was at home when her rt hand, arm, & shoulder began hurting. Pain continued from friday-monday afternoon when she went to Dr. Diagnosed cts.
## 47764                                                                                                                           EE was at hosp with suspect when brother of suspect came to see suspect-EE would not let brother seesuspect-brother started fighting EE.
## 47765                                                                                                                                                                                                              EE was at inservice crdt training - EE states that ()
## 47766                                                                                                                                  EE was at johnson c smith uni installing/delivering network cards for computers when he tripped on the stairs and landed on knee.
## 47767                                                                                                                                  EE was at k-9 training--wildlife detection. Handler was assisting his k-9 in locating hidden wildlife. Bite to left index finger.
## 47768                                                                                                                                                     EE was at main kitchen getting ice/water for greenhouse EE's, stepped down to first step, turned left ankle ()
## 47769                                                                                                                                                   EE was at med cart and client came from behind, client pushed EE with both hands causing EE head to snap in back
## 47770                                                                                                                                                                 EE was at ncsd working on a leak in the boiler room, EE's feet were wet, EE slide in to a split ()
## 47771                                                                                                                                                               EE was at nurses office on ward. Caught right middle finger between chart room door and office door.
## 47772                                                                                                             EE was at ortho. Office with patient and patient tried to run away and patient struck EE several times in the back & employee's wrist was hit by door.
## 47773                                                                                                                                                              EE was at personal vehicle changing jacket. His foot slipped from the brake and hit the gas pedal. ()
## 47774                                                                                                                                 EE was at pharmacy picking up the friday med cart, fill 3 baskets. EE exiting pharmacy when she lost her balance and fell to floor
## 47775                                                                                     EE was at phase training. After warm-up exercises while administering rcdt block of instruction, EE complained of severe pain from right hamstring. First aid administered. ()
## 47776                                                                                                                                                                                                 EE was at physical therapy when EE opened van doorrt thumb locked.
## 47777                                                                                                                                                                                   EE was at polk hall walking down stairs at last step when she twisted her ankle.
## 47778                                                                                                                        EE was at rear of truck to unload equipment. Load had shifted and plywood slid out when door was opened and hit EE in shins. Rt & lt shins.
## 47779                                                                                                                        EE was at required firearms training, felt ok whenthrough. Awoke early in morning with sore arm. Hurts from elbow down to wrist. Feels like
## 47780                                                                                                                                                           EE was at rock climbing training and EE slipped while climbing wall. Her foot began to swell over night.
## 47781                                                                                                                                                EE was at scene of accident. When rollback took accident vehicle away, the passenger door hit EE in the lower back.
## 47782                                                                                                                                                                  EE was at scene of traffic collision when his patrol vehicle was struck by an out of control car.
## 47783                                                                                                                                                                                                  EE was at secretrary's conference and tripped and fell over curb.
## 47784                                                                                                                  EE was at sponsored banquet. EE went to the dance floor had just stepped onto the dance floor & immediately fell. Taken to hospital. Broke wrist.
## 47785                                                                                                                                                                                           EE was at stoplight and was rear ended and injuredher neck & upper back.
## 47786                                                                                                                                                  EE was at switchboard when she felt a bite on sideof rt foot - given anitbiotics and iv after foot began to swell
## 47787                                                                                                                                              EE was at tech station and felt pain in her leg shortly after it started itching and a blister appeared - spider bite
## 47788                                                                                                             EE was at the back loading dock area and walking up the steps, she missed one step and lost her balance and hit her left knee on the concrete step. ()
## 47789                                                                                                                   EE was at the courthouse working and was going down steps. The bottom step was covered in personal items and EE stepped over them twisting back.
## 47790                                                                                                                                                                               EE was at the firing range when the barrell of the gun hit EE's thumbn nbruising it.
## 47791                                                                                                                                                                EE was at the gas pump pumping gas into state vehicle. Gas nozzle slipped out and gas sprayed on EE
## 47792                                                                                                                                                                                          EE was at the gate house and the wind blew some- thing into his left eye.
## 47793                                                                                                                                                                    EE was at the home of a client and a dog bit her on her thigh, as she tried to get to the porch
## 47794                                                                                                                                                             EE was at the home of a client, on completion of home visit employee slipped and fell on wet paint. ()
## 47795                                                                                                                                                                              EE was at the justice center on duty. She slipped and fell on wax floor on left knee.
## 47796                                                                                                                                              EE was at the microwave in central files and turned around and feet got caught in a box and she fell on the floor. ()
## 47797                                                                                                                                                                          EE was at the security door coming into work and dropped the laptop on top of rt foot. ()
## 47798                                                                                                                                                                                           EE was at the trash dump and saw a bee and EE hit it and it stung him ()
## 47799                                                                                                                     EE was at traffic when other vechicle struck rest of state car - EE was out performing regular dutieof his office. Slight soreness & stiffness
## 47800                                                                                                                       EE was at training and her partner performed the task of taking a weapon from her, this caused EE's shoulder and arm to be jerked and pulled
## 47801                                                                                                                                                                                                  EE was at unc and pulled patient up and pulled a muscle in chest.
## 47802                                                                                                                                                                                                                 EE was at vending machine with pts, pt was told ()
## 47803                                                                                                                            EE was at visitors desk checking visitors & thingsthey brought in. EE accidentally stepped into a uncovered drain hole behind the desk.
## 47804                                                                                                                                                      EE was at west end dining. He was pulling sheetrock from the wall when he felt a strain to his lower back. ()
## 47805                                                                                                                                                                                                    EE was at work and fell out of a high chair. Injured hip, knee.
## 47806                                                                                                                                                                                                        EE was at work and stepped onto the curb and twisted rt leg
## 47807                                                                                                                                                       EE was at work and using computer and experienced severe pain in rt arm radiating down to hand and shoulder.
## 47808                                                                                                                                                                      EE was at work for approx 4 hours when he noticed a raised reddened rash on his right forearm
## 47809                                                                                                                                                                                                            EE was at work station when consumer hit EE in theface.
## 47810                                                                                                                                                                              EE was at workstation when she began smelling fumes.. Began coughing... Got dizzy. ..
## 47811                                                                                                                                                                                  EE was at/or in intersection when struck on passenger side of veh by another veh.
## 47812                                                                                                                                                                                         EE was atemptin to take out of control student down in order restrain her.
## 47813                                                                                                                                                           EE was atempting to assist police officer with search warrant and twisted left ankle in a drainage ditch
## 47814                                                                                                                                                                                                    EE was att to arrest suspect when supect kicked EE in the chest
## 47815                                                                                                                                                                EE was att to sit down when chair rolled frm underneath EE causing EE to pulled muscle in low back.
## 47816                                                                                                                                                              EE was attached by a inmate. Inmate struck EE in the lt side of face. Lt side of face, fractured jaw.
## 47817                                                                                                                                                      EE was attached by inmate who yanked her arm and tore rotator cuff full extent of injury unknown at his time.
## 47818                                                                                                                                                                                                                                           EE was attached by pt ()
## 47819                                                                                                                                                                              EE was attached by student and while restraining student, student bit her on lt hand.
## 47820                                                                                                                                                                   EE was attaching a boat trailor to vechicle pulledback muscle & aggrevated a nerve f18 filed. ..
## 47821                                                                                                                                              EE was attaching a trailor to truck when the tongue of trailor caught left hand between it and tailgate of the truck.
## 47822                                                                                                                                                            EE was attaching a vaccum to a solvent flask and the flask broke and and glass entered rt index finger.
## 47823                                                                                                                                                         EE was attaching boat trailer to vehicle-while he was pulling trailer to trailer ball, strained upper back
## 47824                                                                                                                                                              EE was attaching the trailor and was punctured by a nail while it ws being lowered onto the hitch. ()
## 47825                                                                                                                                                  EE was attaching the wisp to a mixing bowl and went to secure bowl and struck hand on screw sticking out of mixer
## 47826                                                                                                                                                                                                           EE was attacked & bittened on the shoulder by a student.
## 47827                                                                                                                                                                                    EE was attacked and assaulted by inmate while walking through the main corridor
## 47828         EE was attacked and biten by the family's dog as EE was walking to leave the home. Family member was walking ahead of EE to escort EE to the door following a brief visit to complete some peperwork when the dog came up biting EE's lower right calf. ()
## 47829                                                                                                                                                                                                           EE was attacked by 2 patients--tissue injury to rt flank
## 47830                                                                                                                                                                                                                                        EE was attacked by a client
## 47831                                                                                                                                                                                   EE was attacked by a client, client kicked EE in the head & bit her on the back.
## 47832                                                                                                                                                                                           EE was attacked by a client, injuring her head, left shoulder, left hand
## 47833                                                                                                                                                                                                 EE was attacked by a client.... Face... Laceration on side of chin
## 47834                                                                                                                                                              EE was attacked by a dog while doing a home visit. EE twisted/sprained back while running to get away
## 47835                                                                                                                                                                                                               EE was attacked by a dog. Injured shoulder, leg arm.
## 47836                                                                                                                            EE was attacked by a juvenile who threw something at him striking him in the face, head and shoulderand was thrown to floor by juvenile
## 47837                                                                                                                                                                                                       EE was attacked by a patient and was bitten on the left hand
## 47838                                                                                                                                  EE was attacked by a patient and when EE tried to prevent from being struck by the patient both patient and EE fell to the floor.
## 47839                                                                                                                                                                                                   EE was attacked by a patient hitting EE in the face, head. Neck.
## 47840                                                                                                                                                                                                      EE was attacked by a patient patient kicked and scratched EE.
## 47841                                                                                                                                                  EE was attacked by a patient starting choking him and hitting him in the face. Left cheek scratch anpain in neck.
## 47842                                                                                                                                                               EE was attacked by a patient that was being escorted to seclusion room. Broke skin on hand andwrist.
## 47843                                                                                                                                                                  EE was attacked by a patient who bit her on her left shin and broke left thumb during the attack.
## 47844                                                                                                                                                                          EE was attacked by a patient who hit him in the eye w/his fist. Pt tried to start a riot.
## 47845                                                                                                                                                                                EE was attacked by a patient, the patient cloths lined EE and started to choke him.
## 47846                                                                                                                                                         EE was attacked by a patient. Contusion and possible sprain to right wrist and contusion of right shoulder
## 47847                                                                                                                                                                                                              EE was attacked by a patient. Contusion to left hand.
## 47848                                                                                                                                                                                                              EE was attacked by a patient. EE has cervical strain.
## 47849                                                                                                                                                                                                        EE was attacked by a patient. EE has scratches to forearms.
## 47850                                                                                                                                                                                    EE was attacked by a patient. He suffered scratches to hi face & lumbar strain.
## 47851                                                                                                                                              EE was attacked by a patient. Patient pulled her down by the head. Cervical strain and contusion toleft hand and knee
## 47852                                                                                                                                                                                  EE was attacked by a patient. Patient was hitting& kicking EE in the head & legs.
## 47853                                                                                                                                                                                                 EE was attacked by a patient. Possible contusion of lumbar region.
## 47854                                                                                                                                                                                                         EE was attacked by a pt recd a contusion to the neck area.
## 47855                                                                                                                                                                                                   EE was attacked by a resident and strained rt wrist and shoulder
## 47856                                                                                                                                                                                           EE was attacked by a student and was struck in various parts of his body
## 47857                                                                                                                                    EE was attacked by a student w/chair then student proceeded to lock Mr Daniels in juveniles bedroom EE is salary continuance EE
## 47858                                                                                                                                                 EE was attacked by a student. Student was throwing chairs at the EE. The EE used his hands to block the chairs. ()
## 47859                                                                                                                                                                                                                      EE was attacked by a swarm of yellow jackets.
## 47860                                                                                                                         EE was attacked by a violate student & he slammed her head against a brick wall causing a cut to herhead & she passed out after a few min.
## 47861                                                                                                                                                                                                  EE was attacked by an aggitated pt, fell and landed on right hand
## 47862                                                                                                                   EE was attacked by an aggressive patient and fell injuring his lft shoulder, lft elbow and lft ankle-sprain l shoulder, contusion l elbow, ankle
## 47863                                                                                                                                                                                                         EE was attacked by an aggressive patient. Low back strain.
## 47864                                                                                                                     EE was attacked by an agitated patient. Patient was kicking wildly causing EE to fall on back. Contusion/abrasions to head, human bite, strain
## 47865                                                                                                                                                                    EE was attacked by an agressive patient which caused him to fall on the floor hitting his elbow
## 47866                                                                                                                                                                                                     EE was attacked by an inmate causing bodily injuryto her hand.
## 47867                                                                                                                                                              EE was attacked by an inmate who pulled her blouse& bra, scratched her neck, hand, arm, shoulder, hip
## 47868                                                                                                                                                                   EE was attacked by an inmate-was thrown to the floor twice and was repeatedly struck in the head
## 47869                                                                                                                                            EE was attacked by an out-of-control client. Client back handed EE in the face and then started beating EE on the back.
## 47870                                                                                                                                 EE was attacked by arrestee. EE was kicked in left leg and bitten on right hand. Abrasion on left shin and abrasion on right hand.
## 47871                                                                                                                                                                                                                                   EE was attacked by bees.... Face
## 47872                                                                                                                                                                                   EE was attacked by client who pulled EE's hair, twisted neck and head butted EE.
## 47873                                                                                                                                                                                            EE was attacked by client with fist hitting on rt temple across glasses
## 47874                                                                                                                       EE was attacked by client, causing her to fall to floor hitting her left thumb, right forefinger, right elbow, alson grabbed EE around head.
## 47875                                                                                                                                                                                              EE was attacked by client-hit in head and chest, knocked to the floor
## 47876                                                                                                                                                                                                                                         EE was attacked by client.
## 47877                                                                                                                                                                                                   EE was attacked by combative patient scratches to lt hand & neck
## 47878                                                                                                                                                                                              EE was attacked by consumer causing left shoulder abrastion and bites
## 47879                                                                                                                   EE was attacked by female resident. Pt was being prompted by EE to go to the dining room. This was EE's assigned duty. Patient became combative.
## 47880                                                                                                                                                                                                          EE was attacked by individual while monitoring thedayroom
## 47881                                                                                                                                                                                                                       EE was attacked by inmate in the court room.
## 47882                                                                                                                                                                               EE was attacked by inmate. EE was hit in the mouth after being thrown against a wall
## 47883                                                                                                                                                                                                                        EE was attacked by patient - lt neck sprain
## 47884                                                                                                                                                                                                 EE was attacked by patient adn twisted left knee and left shoulder
## 47885                                                                                                                                             EE was attacked by patient and patient was placed in therapuetic hold by staff-contusions to er index and fifth finger
## 47886                                                                                                                                                                                               EE was attacked by patient causing her to fall hitting head on floor
## 47887                                                                                                                                                                                                                  EE was attacked by patient causing nasal fracture
## 47888                                                                                                                        EE was attacked by patient hitting w/both fists on rt wrists/hand several blocked by pic and kicked several x on rt leg/rt shin by patient.
## 47889                                                                                                                                             EE was attacked by patient in hallway. Pt pushed mail cart away and hit EE in the face and pushed her against the wall
## 47890                                                                                                                                                    EE was attacked by patient suffering a severe human bite and scratches to face and arms. EE fellon right elbow.
## 47891                                                                                                                                        EE was attacked by patient using karate. Bruising to upper left knee, right side of chest & shoulder. EE out of work 1 day.
## 47892                                                                                                                    EE was attacked by patient when he tried to bring patient back into building. Right elbow contusion, left knee and leg strain and lumbar sprain
## 47893                                                                                                                                                                                           EE was attacked by patient while taking patient out of room to bathroom.
## 47894                                                                                                                                                                                EE was attacked by patient, face scratched, glasses destroyed and right elbow sore.
## 47895                                                                                                                                                               EE was attacked by patient-thrown to floor, struck in head several times by fists, choked by patient
## 47896                                                                                                                                                                                                          EE was attacked by patient. EE suffered from back strain.
## 47897                                                                                                                                                      EE was attacked by patient. Patient struck EE several times in the head, face & back. EE remains out of work.
## 47898                                                                                                                                                                                 EE was attacked by patient. Patient was punching employee in the back and stomach.
## 47899                                                                                                                                                                          EE was attacked by patient; injured ankle, right knee, and punched repeatedly in the face
## 47900                                                                                                                                                                          EE was attacked by patient; struck in left side ofhead in temporal area by patient's fist
## 47901                                                                                                                                                                                                                                              EE was attacked by pt
## 47902                                                                                                                                                                      EE was attacked by pt fm the back, pt hit EE in face 3x, knocking glasses off and breaking ()
## 47903                                                                                                                                                                                               EE was attacked by pt when he became violent, kicked EE in testicles
## 47904                                                                                                                                                                                                                EE was attacked by pt, experienced pain in shoulder
## 47905                                                                                                                                                                                                           EE was attacked by pt, fell to floor and pulled her back
## 47906                                                                                                                                                                                               EE was attacked by pt, pushed into air conditioner, pulled/pushed ()
## 47907                                                                                                                                                                  EE was attacked by pt. Pt began hitting EE in chest/head/neck areas, during Mr EE twisted back ()
## 47908                                                                                                                                                                                          EE was attacked by some bees... Stung 12 times on shoulder, back and arms
## 47909                                                                                                                                                                                                EE was attacked by staff and struck in the neck with a blunt object
## 47910                                                                                                                                                        EE was attacked by student with an ax handle and strained muscle in left thigh while strugglingwith student
## 47911                                                                                                                             EE was attacked by students dobbs school atw detention unit while students were trying escape. Dislocated lt shoulder/sprain lt ankle.
## 47912                                                                                                                                                                            EE was attacked from behind and thrown into desk. Bruised face and strained lower back.
## 47913                                                                                                                                             EE was attacked from behind by a inmate (safekeeper) which struck office jones in back of the head w/ his fist(inmate)
## 47914                                                                                                                                                                EE was attacked from behind by a patient at broughton hospital. Right side--neck/arm shoulder/hand.
## 47915                                                                                                                                                         EE was attacked from behind by a resident while doing her housekeeping duties. Imjured knee and head, arm.
## 47916                                                                                                                                                  EE was attacked from behind by pat. In dining roomresulting in fall to floor on back during struggleto subdue pt.
## 47917                                                                                                                                                              EE was attacked from behind by patient who scratched EE's rt arm and neck and strained EE' upper back
## 47918                                                                                                                                                                    EE was attacked from behind... Trying to break loose she injured her upper right shoulder blade
## 47919                                                                                                                                                                                                       EE was attacked in med rm by patient kicking & swing punches
## 47920                                                                                                             EE was attacked in the atw unit. Student placed a pillow case over her head & attempt to sufficate. Inj to right wrist ear lobe & post traumatic stres
## 47921                                                                                                                                                  EE was attacked me in the day room on ward 238. Patient grabbed me in the groin and scratched sideto lt forehead.
## 47922                                                                                                                                                                                                                             EE was attacked staff member w/o cause
## 47923                                                                                                                       EE was attaempting to descend the bare earthen hillside on the south corner of the bridge when she slipped, fell and landed on her buttocks.
## 47924                                                                                                                                                                             EE was attatcked by pt and reinjured groin muscle that was injured earlier in the week
## 47925                                                                                                                                                         EE was attemping to apprehend a fleeing subject, EE climbed over a fence and pulled hamstring in his thigh
## 47926                                                                                                                                                                   EE was attemping to arrest an offender, offender resisted and EE was pushed against the door jam
## 47927                                                                                                                                               EE was attemping to enter cell block, when he blacked out causing him to fall to the floor possibly bumping his head
## 47928                                                                                                                      EE was attemping to make a left turn and was hit in right front by another vehicle. Bruises and air bag burns on nose, left arm and left leg.
## 47929                                                                                                                    EE was attemping to restrain a mentally disturbed pedestrin from walking into traffic-EE lost balance and both fell to ground causing injuries.
## 47930                                                                                                                                                        EE was attemping to sit in chair. Chair rolled back from under officer causing officer to fall to the floor
## 47931                                                                                                                                                                                  EE was attempt to help patient when patient dragged EE down hallway-strained back
## 47932                                                                                                                                          EE was attempted to pass a soda through gate when officer green opened gate, resulting in injury to EE left arm and hand.
## 47933                                                                                                                                                                                          EE was attemptimg to arrest a dwi suspect and fellon lt arm in the ditch.
## 47934                                                                                                                   EE was attempting a displacement technique on a suspect when EE & suspect fell to the ground. EE landed on left shoulder. Injured left shoulder.
## 47935                                                                                                                                                                               EE was attempting a left turn failed to yield right away and collided with vehicle .
## 47936                                                                                                                                                                                                   EE was attempting arrest a suspect when he injuredhis left wrist
## 47937                                                                                                                                                   EE was attempting close a enterance gate to the back of dining hall, when the razor wire cut EE on the forehead.
## 47938                                                                                                                               EE was attempting firearms qulaification. While hewas attempting to put on safety glasses, the frameof glasses struck his right eye.
## 47939                                                                                                                                                 EE was attempting open a door while carrying a heavy box of soft drinks and the box fell striking top of left hand
## 47940                                                                                                                                                                                EE was attempting ot move a shelf to make space for a new computer and cut rt hand.
## 47941                                                                                                                      EE was attempting ot redirect patient to dayroom who was being verbally abusive and demanding. EE recieved scratches on her ankle by patient.
## 47942                                                                                                          EE was attempting the arrest combative suspect when altercation occurred & during altercation both the subject & EE fell down causing injury to lt wrist.
## 47943                                                                                                                  EE was attempting to adjust his walkie talkie w/ shoulder speaker attached when a loud noise frm speaker came unexpected-affecting hearing rt ear
## 47944                                                                                                                               EE was attempting to adjust the driver seat in van. He slid the seat back and left ring finger got caught in slide track of the seat
## 47945                                                                                                                                                                       EE was attempting to administer insulin, pt grabbed EE's right wrist/hand, began twisting ()
## 47946                                                                                                                                                                                                                 EE was attempting to aid patient and fell to floor
## 47947                                                                                                                                                   EE was attempting to align trailor with hitch on vehicle. In manuvering the trailor, he strained his lower back.
## 47948                                                                                                                                                     EE was attempting to apply restraints on inmate. Inmate kicked his right leg and threw unknown liquid on shirt
## 47949                                                                                                                                                 EE was attempting to apprehand a robbery suspect and was struck by suspects veh while struggling with the suspect.
## 47950                                                                                                                                                              EE was attempting to apprehand jump and run suspect on foot and twisted left ankle on unlevel ground.
## 47951                                                                                                                          EE was attempting to apprehand suspect when he ran and EE pursued after him-upon catchin suspect tackled him causing injury to left knee.
## 47952         EE was attempting to apprehend a fleeing suspect and performed a balance displacement technique. As the suspect went to the ground the EE felt his right knee give way. The suspect's wife then pushed the EE and suspect and he fell on the EE left knee.
## 47953                                                                                                                                                        EE was attempting to apprehend a fleeing suspect and was struck by suspects vehicle injuring left shoulder.
## 47954                                                                                                                                                                                        EE was attempting to apprehend a fleeing suspect on foot. Twisted left knee
## 47955                                                                                                                         EE was attempting to apprehend a suspect fleeing from a stolen vehicle. Suspect left vehicle in drive and car rolled into EE's right ankle
## 47956                                                                                                                                                                        EE was attempting to apprehend a susupect after a foot chase and later felt pain in lt leg.
## 47957                                                                                                                            EE was attempting to apprehend a violator who fledfrom patrol vehicle. While attempting to subdue the subject EE jammed his right knee.
## 47958                                                                                                                             EE was attempting to apprehend an escaped patient and the patient hit EE beside of head and then choked him. EE was found beside road.
## 47959                                                                                                                                                 EE was attempting to apprehend an escaping juvenile while in the Dr'S office, EE fell on the floor injured rt knee
## 47960                                                                                                                            EE was attempting to apprehend subject, fleeing onfoot. He jumped a ditch and felt pain in the lowerback. Completed shift for that day.
## 47961                                                                                                                                 EE was attempting to apprehend subject, turned thecar around on wet road and lost control of car and crossed lanes hitting a tree.
## 47962                                                                                                                             EE was attempting to apprehend suspect when he fled on foot. Both fell against subjects truck causing hand to hit truck fracturing it.
## 47963                                                                                                                EE was attempting to approach 2 subjects in a car subjects fled the scene and intentionally hit EE causing injuries to left shoulder and right knee
## 47964                                                                                                                                                               EE was attempting to arrehend an juvenile who had a warrant and was struck by a car while in pursuit
## 47965                                                                                                                               EE was attempting to arrest & handcuff a dwi suspect who fled on foot. EE fell and landed on his left wrist and hand causing injury.
## 47966                                                                                                              EE was attempting to arrest a drunk and disruptivesubject. While handcuffing the subject he began struggling and jerked away from EE, EE twisted back
## 47967                                                                                                                     EE was attempting to arrest a dwi subject and was engaged in a struggle when his sprained his middle finger and was exposed to subjects blood.
## 47968                                                                                                                                                                            EE was attempting to arrest a dwi suspect. Suspect resisted and injured EE's right hand
## 47969                                                                                                            EE was attempting to arrest a femail subject, who didn't obey verbal commands. EE struck the passengeside windown with rt palm, causing window to shatt
## 47970                                                                                                                    EE was attempting to arrest a man for drunk and disruptive behavior. Suspect assualted EE. EE struck suspect in face with right hand fracturing
## 47971                                                                                                                EE was attempting to arrest a parole absconder, theparolee tried to run and escape by pushing and hitting EE around the arm/shoulder several times.
## 47972                                                                                                                                   EE was attempting to arrest a person for dwi, the subject resisted arrest & a struggle began. EE slipped & fell during struggle.
## 47973                                                                                                                                                         EE was attempting to arrest a probation violator when the two began to scuffle EE broke his lt ringfinger.
## 47974                                                                                                                                                                                            EE was attempting to arrest a probationer when he injured his back area
## 47975                                                                                                                                                                             EE was attempting to arrest a probationer when his rt elbow was slammed against a wall
## 47976                                                                                                                                                                  EE was attempting to arrest a probationer when hisbrother pushed EE into the wall form 18 filed..
## 47977                                                                                                                                                                                  EE was attempting to arrest a subject & during a scuffle EE sprained his lt hand.
## 47978                                                                                                                            EE was attempting to arrest a subject for dwi & attempting to fasten his seat belt, EE was spit inthe face, eyes & in mouth by subject.
## 47979                                                                                                                      EE was attempting to arrest a subject for dwi and was engaged in a struggle when he cut his left hand and was exposed to the subject's blood.
## 47980                                                                                                                     EE was attempting to arrest a subject for violations when his rt hand became entangled w/the subject and chain fence causing small cuts/bruise
## 47981                                                                                                                                                         EE was attempting to arrest a subject rec'd spraininjury to rt hand as a result of physical confrontation.
## 47982                                                                                                                                                           EE was attempting to arrest a subject when he grabsubject's jacket and pulled away falling to the floor.
## 47983                                                                                                                     EE was attempting to arrest a suspect & caught hisright hand on their clothing hyper-extending his finger causing a fracture to the 4th digit.
## 47984                                                                                                             EE was attempting to arrest a suspect for controlled substance, when the subject ran from EE, EE pursued subject on foot when he fell on his knee,. ..
## 47985                                                                                                                             EE was attempting to arrest a suspect for dwi suspect was very violent & fighting. During the scuffle EE injured his left ring finger.
## 47986                                                                                                                             EE was attempting to arrest a suspect for dwi whensuspect fled on foot, EE proceeded after suspect and pulled a ham string in left leg
## 47987                                                                                                               EE was attempting to arrest a suspect for dwi. Suspect resisted arrest and fought with EE. Duringstruggle, EE received scratches on face, ears, head
## 47988                                                                                                                                              EE was attempting to arrest a suspect for speedingsuspect resisted arrest and EE struck suspect in face with rt hand.
## 47989                                                                                                                          EE was attempting to arrest a suspect that was resisting and trying to run from him. EE grabbed suspects coat and his shoulder was jerked
## 47990                                                                                                                 EE was attempting to arrest a suspect who was attempting to flee the scene, EE forced the suspect to the ground and his hand was underneath suspec
## 47991                                                                                                                                     EE was attempting to arrest a suspect with warrentand a fight ensued. EE was kicked and bruised and received cut to right eye.
## 47992                                                                                                               EE was attempting to arrest a suspect. Suspect resisted arrest. A struggle ensued between the two resulting in contusion & parathesia to right hand.
## 47993                                                                                                                                                                EE was attempting to arrest a violator, when the violator pulled away, pulling EE fingers backwards
## 47994                                                                                                                 EE was attempting to arrest an individual for dwi. The suspect attented to flee in vehicle & a fight ensued. EE recieved a minor cut to lower lip.
## 47995                                                                                                                       EE was attempting to arrest an intoxicated violatoa struggle broke out and violator escaped into woods. EE sprained his back after struggle.
## 47996                                                                                                                                                  EE was attempting to arrest an offender when the offender start fighting EE and biting her on the lt index finger
## 47997                                                                                                                                                                        EE was attempting to arrest an offender when the offender struck him in the face four times
## 47998                                                                                                                                                       EE was attempting to arrest an uncooperative subject and he injured his right elbow wrestling on the ground.
## 47999                                                                                                                                             EE was attempting to arrest and handcuff the suspect when the subject froke free striking EE inthe face and head area.
## 48000                                                                                                                   EE was attempting to arrest and individual for driving while impaired when subject resisted. The suspects teeth accidentalyy scratched EE's hand
## 48001                                                                                                                                                                              EE was attempting to arrest armed suspect. EE tackled suspect and hit knee on street.
## 48002                                                                                                                           EE was attempting to arrest combative subject. While wrestling with subject he heard pop in left knee. Pain and tightness in right knee.
## 48003                                                                                                                                                                                            EE was attempting to arrest combative suspect; EE was struck by a baton
## 48004                                                                                                                      EE was attempting to arrest defendant when he ran out door. EE grabbed his shirt & jumped out the door with him. He got away. EE turned ankle
## 48005                                                                                                                EE was attempting to arrest dwi suspect, suspect resisted, during altercation, EE struck suspect in mouth causing laceration 2nd finger right hand.
## 48006                                                                                                                                          EE was attempting to arrest dwi suspect. Suspect resisted and EE fell on left hand causing pain and bruising to left hand
## 48007                                                                                                                                         EE was attempting to arrest dwi suspect. Suspect resistied and EE was cut on right hand. Cut was exposed to suspects blood
## 48008                                                                                                                                     EE was attempting to arrest individual they both fell to ground. Individual fell on EE's leg causing right knee to hyperextend
## 48009                                                                                                                     EE was attempting to arrest man in satterwhite point for being intoxicated and disruptive and resisting law enforcement officer. Sttrain thumb
## 48010                                                                                                                                                                       EE was attempting to arrest offender when he ran. EE began to chase him and injure right leg
## 48011                                                                                                                                                                      EE was attempting to arrest person when suspect pushed and fell on top of EE injuring lt knee
## 48012                                                                                                                                                                           EE was attempting to arrest probationer broken right ring finger, cut knee, elbow/finger
## 48013                                                                                                                                                        EE was attempting to arrest subject for several charges when fight ensued. EE was struck in face and chest.
## 48014                                                                                                                   EE was attempting to arrest subject form dwi - resisting and grabbed EE flashlight. His hand was severely twisted - spraining ligaments rt thumb
## 48015                                                                                                                       EE was attempting to arrest subject who was resisting. Cut thumb on handcuff. Subject fell andinjured nose. Subjects blood got on EE's thumb
## 48016                                                                                                                                                                          EE was attempting to arrest subject, subject grabbed EE's right index finger spraining it
## 48017                                                                                                                                  EE was attempting to arrest subject, subject resisted and during fight, subject recieved cut onforehead. Blood got on EE's hands.
## 48018                                                                                                                                           EE was attempting to arrest subject. He resisted and there was a struggle. Fell to floor. EE bruised knee when he fell\\
## 48019                                                                                                                                                      EE was attempting to arrest subject. Struggle ensued and both fell to ground. Cut right middle finger knuckle
## 48020                                                                                                                         EE was attempting to arrest subject. Subject resisted arrest and physical confrontation ensued. EE was kicked in groin, strain back & neck
## 48021                                                                                                                                                EE was attempting to arrest suspect - suspect was resisting arrest and EE cut rt index finger on suspect's clothing
## 48022                                                                                                                     EE was attempting to arrest suspect and suspect resisted arrest; EE grabbed suspect and broke little finger; suspect then hit EE several times
## 48023                                                                                                                   EE was attempting to arrest suspect fleeing on foot-EE tackled the suspect and received abrasionsfrom contact with asphalt-rt elbow and forehead
## 48024                                                                                                               EE was attempting to arrest suspect for dui-when an altercation broke out-both fell to the ground and EE received bruises over various parts of body
## 48025                                                                                                                    EE was attempting to arrest suspect for dwi. Suspect was trying to patrol cae as EE was trying to hold. Suspect slammed hand in car door-broken
## 48026                                                                                                                                    EE was attempting to arrest suspect on drug charges when suspect fled on foot. EE was shoved backwards injuring right hamstring
## 48027                                                                                                              EE was attempting to arrest suspect that was resisresisting arrest and attempting to assaulted EE. EE was using fist to strike suspect defending self
## 48028                                                                                                                                                                  EE was attempting to arrest suspect when scuffle broke out and EE injured rt hand during process.
## 48029                                                                                                                             EE was attempting to arrest suspect when suspect fought with EE and during the struggle EE injured his right thumb and his right knee.
## 48030                                                                                                                                        EE was attempting to arrest suspect who fled on foot and while attempting to climb over concrete median-EE injured rt ankle
## 48031                                                                                                                                          EE was attempting to arrest to arrest an impaired driver and a dog, owned by the suspect, bit the EE on his left hand. ()
## 48032                                                                                                                                                                                         EE was attempting to assist a patient to feel after patient fell in floor.
## 48033                                                                                                                                                                                        EE was attempting to assist a resident who was down and he scratched her ()
## 48034                                                                                                                            EE was attempting to assist client into a sitting position then in lifting client from bed into chair. Strain shoulder, back, and neck.
## 48035                                                                                                                    EE was attempting to assist fellow officer in subduing the offender, when EE was thrown against wall by the offender & pushed by the girlfriend
## 48036                                                                                                                           EE was attempting to assist in moving a tree out of the highway when his feet slipped from under neath him on a muddy surface; left knee
## 48037                                                                                                                             EE was attempting to assist officer and stop inmatfrom assaulting him, EE was struck in the nose and recieved abrasions on right knee.
## 48038                                                                                                                                                                       EE was attempting to assist patient in hanging closthes when patient hit EE in the left eye.
## 48039                                                                                                                                             EE was attempting to assist training partner off the training mat, when he lost his balance and fellon EE's left foot.
## 48040                                                                                                                                 EE was attempting to assist trooper simmons w/ chase started in halifax co. When vehicle being chased struck EE's vehicle in rear.
## 48041                                                                                                                                                                                                  EE was attempting to assist with Mr, Pulled muscle in left leg ()
## 48042                                                                                                                                            EE was attempting to assit another officer from being beaten, another officer grabbed EE and strain back during arrest.
## 48043                                                                                                                                            EE was attempting to avoid being struck by vehiclelost balance & fell against vehicle. Sustaining injury to right hand.
## 48044                                                                                                                      EE was attempting to avoid collision with a dog- ran off the road and lost control of veh-went backon the left side of road and struck a tree
## 48045                                                                                                                                                                                                  EE was attempting to bathe patient and patient bit EE on forearm.
## 48046                                                                                                             EE was attempting to begin teaching her class she had a seizure which caused her to fall to the floor and in doing so got a large bruise on her forehe
## 48047                                                                                                                                                                                              EE was attempting to block swing from patient and injured right thumb
## 48048                                                                                                                                                              EE was attempting to break a client's fall while accompanying client to the special olympics banquet.
## 48049                                                                                                                                                     EE was attempting to break a client's fall; clientsat on EE's lt knee hyper extending knee & twisting lt knee.
## 48050                                                                                                                                            EE was attempting to break two inmates up from fighting. EE used pepper spray and got some mist on himself(face & eyes)
## 48051                                                                                                                                                       EE was attempting to break up a confrontation between two clients EE was kicked one client in the testicles.
## 48052                                                                                                                                                                     EE was attempting to break up a confrontation between two students involved in an altercation.
## 48053                                                                                                                                                                   EE was attempting to break up a fight & had to place an inmate on the floor. Injury to left knee
## 48054                                                                                                                                                                   EE was attempting to break up a fight and 4 finger was dislocated and his low back was strained.
## 48055                                                                                                                                                   EE was attempting to break up a fight and the suspect grabbed the the EE's collar and spit blood in his face. ()
## 48056                                                                                                                                                                                                          EE was attempting to break up a fight and twisted rt knee
## 48057                                                                                                                    EE was attempting to break up a fight b/t inmates after the oc spray was used to deter the fighting inmate elbow struck EE twice in rt rib cage
## 48058                                                                                                                         EE was attempting to break up a fight between 2 students, EE was pushed against a wall mounted pencil sharpner, injured rt hand and elbow.
## 48059                                                                                                                                   EE was attempting to break up a fight between 2 students. Staff fell while separating the studentscontusion to shoulder and knee
## 48060                                                                                                                                               EE was attempting to break up a fight between two patients when he fell against the wall; injured left shoulder area
## 48061                                                                                                                                                                EE was attempting to break up a fight between two patients... Fell... Struck head against the floor
## 48062                                                                                                                                                                                                        EE was attempting to break up a fight between two students.
## 48063                                                                                                                                                 EE was attempting to break up a fight by restaining the student and was struck in the lt jaw and strained rt knee.
## 48064                                                                                                                                                                    EE was attempting to break up a fight; one studentfell and jammed her left thumb into the floor
## 48065                                                                                                                                                                     EE was attempting to break up an altercation betwntwo clients and injured left middler finger.
## 48066                                                                                                                                                                                   EE was attempting to break up fight between 2 students and strained arm and neck
## 48067                                                                                                                        EE was attempting to break up fight between two inmates, she was struck in the mouth by one inmate and in the left kidney area on her back.
## 48068                                                                                                                                                                       EE was attempting to break up soil clod to feed into the grinder when he sprained his wrist.
## 48069                                                                                                                                                    EE was attempting to break up two inmates from fighting when one of the inmates swung and struck EE in the head
## 48070                                                                                                                                                                       EE was attempting to break up two juveniles who were fighting, EE hit her knee on a chair ()
## 48071                                                                                                                                                                   EE was attempting to break up two students fighting and fell to the floor striking his rt elbow.
## 48072                                                                                                                                    EE was attempting to break up two students that were fighting and adn EE received scratches and felt pain in upper in shoulder.
## 48073                                                                                                                                                 EE was attempting to breakup a fight between two juveniles and hand was pressed between the wall and his shoulder.
## 48074                                                                                                                                                              EE was attempting to bring a cow to the stall areato be milked when the cow kicker her on the lt knee
## 48075                                                                                                                               EE was attempting to bring inmate under control bytaking hold of handcuffs. Inmate grabbed EE's right index finger and bent it back.
## 48076                                                                                                                                                     EE was attempting to bring inmate under control during anticipated use of force. EE injured his right forearm.
## 48077                                                                                                                                                                          EE was attempting to button a pt gown when a snap was heard and pain occurred in rt hand.
## 48078                                                                                                                                                                      EE was attempting to calm a behav patient down andpatient struck EE in the rib cage w/lt arm.
## 48079                                                                                                                        EE was attempting to calm an aggitated patient. Eewas pushed to the floor. Complains of discomfort in med back radiating to right rib cage.
## 48080                                                                                                                            EE was attempting to capture a jump and run suspect when he tripped over a log and fell to theground on his right wrist and right knee.
## 48081                                                                                                                      EE was attempting to carry child downstairs and child went lipm and EE tried to keep child from falling, fell over child. Injured face(nose).
## 48082                                                                                                                                              EE was attempting to carry-out behavior intervention plan for resident who fell to floor causing staff to twist thumb
## 48083                                                                                                                                                     EE was attempting to cat into cage; cat got away climbed up EE's body and scratched and bit her above left eye
## 48084                                                                                                                                                                     EE was attempting to catch a cat that escaped from its cage when she was bit by the animal. ()
## 48085                                                                                                                                                                            EE was attempting to catch resident from falling, and felt pulsating sensation in back.
## 48086                                                                                                                                    EE was attempting to catch speeding car. Lost control of car to avoid hitting another car and hit a building. Multiple injuries
## 48087                                                                                                                                                                        EE was attempting to change a tire for a motorist when he pulled a muscle in his lower back
## 48088                                                                                                                                                                       EE was attempting to change speed on milling machine and got finger caught in changing gear.
## 48089                                                                                         EE was attempting to changed residents diaper, when resident awoke asking what EE was doing. EE explained and cleaned the resident the resident kicked EE in the chest. ()
## 48090                                                                                                                                           EE was attempting to check a driver's license at a driver's license checkpoint and was struck by the wheel of a vehicle.
## 48091                                                                                                                                                 EE was attempting to clean dirt on wheel cover when he struck edge of wheel cover w/ r hand cutting r index finger
## 48092                                                                                                                                              EE was attempting to clean off ice from auto due to heavy ice storm & slipped on ice & fell in workplace parking lot.
## 48093                                                                                                             EE was attempting to close box cutting tool that would not close properly & thumb slipped across blade of cutting tool resulting in 6 stitches to thum
## 48094                                                                                                                                                 EE was attempting to close door of truck when a strong gust of wind slammed the door shut on his middle finger. ()
## 48095                                                                                                                                             EE was attempting to close door. She pushed door the wrong way and it felt like she pulled muscle in her abdomen area.
## 48096                                                                                                                                       EE was attempting to close inmate's trap door when inmate punched the trap door causing it to hit the back of EE's left arm.
## 48097                                                                                                                                                                          EE was attempting to close service elevator door hard to pull down and strained shoulder.
## 48098                                                                                                                     EE was attempting to close the elevator door with his lt hand and the door closed on his hand. EE pain. EE went to the doctor. Hand fractured.
## 48099                                                                                                                                                                                           EE was attempting to close the loungetrailer door and strained her back.
## 48100                                                                                                                                 EE was attempting to close the port window when the inmate attempted to prevent off, EE jammed his left finger against the window.
## 48101                                                                                                                                                                        EE was attempting to close trap door on cell, inmatstruck right upper arm with closed fist.
## 48102                                                                                                               EE was attempting to close trap door when handle slipped throught door. Caused jerking motion whichgave him pain on lt side, middle of back & chest.
## 48103                                                                                                                                  EE was attempting to clsoe and overhead hot water valve, as he descended the ladder he misstepped and fell injuring left shoulder
## 48104                                                                                                                                                                      EE was attempting to come to work & fell on ice in parking lot. Torn cartilage in right knee.
## 48105                                                                                                                                                                           EE was attempting to come up the stairs -missed step and jammed toe in the concrete step
## 48106                                                                                                                 EE was attempting to conduct inspection of all handcuffs at start of shift when a piece of chromethat was peeling off cuff cut inside palm of hand
## 48107                                                                                                                                         EE was attempting to connect a piece of rubber vaccum hose to a glass "t" & the glass "t" broke. Cut tendon in left thumb.
## 48108                                                                                                                EE was attempting to control a disturbance in the c-block when he approached inmate causing the disturbance, the inmate struck EE in the lip w/fist
## 48109                                                                                                                               EE was attempting to control a pt who became aggressive, pt grabbed EE's rt arm and twisted it behind her back, popping rt shoulder.
## 48110                                                                                                                                                                                                        EE was attempting to control a student EE fell on his knee.
## 48111                                                                                                                    EE was attempting to control an inmate who refusedto comply to several lawful orders, turned and pushed her into metal gate. Cervical neck area
## 48112                                                                                                                                                EE was attempting to control an out of contro juv, when he tried to spit on EE and then bit EE twice on the rt arm.
## 48113                                                                                                                                            EE was attempting to control at an affray when suspect walked up to agent pace and struck him in the face with his fist
## 48114                                                                                                                          EE was attempting to control two inmates fighting & rec'd injury to rt wrist & left elbow caused by jamming these areas against the wall.
## 48115                                                                                                                                                                     EE was attempting to controll an aggressive clientand got scratched on left calf and rt wrist.
## 48116                                                                                                                                                             EE was attempting to councel distruptive inmate, inmate threw an unknown yellow colored liquid ontoee.
## 48117                                                                                                                                                             EE was attempting to counsel with inmate and inmate struck EE in the nose mouth and head with his fist
## 48118                                                                                                                                                                     EE was attempting to counsel with inmate inmate struck EE in the nose and head mouth with fist
## 48119                                                                                                                                              EE was attempting to cross charles blvd while driving a gator, then was struck by a motor vehicle (state vehicle). ()
## 48120                                                                                                                                                         EE was attempting to cross median guardrall after collision investigation; caught rt foot on rail andfell.
## 48121                                                                                                                                 EE was attempting to cut paper with papercutter- when EE brought down the blade, the paper did not give causing EE to hang rt rib.
## 48122                                                                                                                                EE was attempting to cut plastic tie wrap that washolding some wires with a pocket knife, the knife slipped cutting EE's left hand.
## 48123                                                                                                                                                  EE was attempting to cut shower off when he slipped on a bar of soap that was lying on floor. Injury to right leg
## 48124                                                                                                                                                                               EE was attempting to de-escalate agitated patient. Patient struck EE in the face. ()
## 48125                                                                                                               EE was attempting to defend himself from an attackof a student who was hitting him over the head. Hewas trying to block the strikes. Rt hand 4th fgr
## 48126                                                                                                                                    EE was attempting to deplay stop sticks, nylon cordwas snagged by support vehicle and jerked from EE hand cutting four fingers.
## 48127                                                                                                                                                       EE was attempting to deter a male student from escaping & apprehending him after capture. Right hand swollen
## 48128                                                                                                                                EE was attempting to deworm mare when mare struck EE in (l) side of head, should, elbow and lower back and stepped on EE's (l) calf
## 48129                                                                                                                                  EE was attempting to direct pt away from another pt room, pt grabbed EE around both hands, scratched her and attempted to hit her
## 48130                                                                                                                                                                            EE was attempting to dislodge a marker when the marker struck his face right cheek area
## 48131                                                                                                                                                        EE was attempting to dislodge a stick in the centerboard of a sailboat-the stick broke and hit EE in mouth.
## 48132                                                                                                                       EE was attempting to dismount motor grader, when suddenly EE lost footing and landed on right foot with all body weight. Right leg and foot.
## 48133                                                                                                                                      EE was attempting to dispense scinti-sate scintillant into a scintillatian vial, chemical squirted onto the EE's face & body.
## 48134                                                                                                                             EE was attempting to dispose of used butterfly needle after drawing lab work from inmate & acc. Stuck needle in my right index finger.
## 48135                                                                                                                                                            EE was attempting to do rolling road block when EE was struck in the rear by the vehicle being pursued.
## 48136                                                                                                                        EE was attempting to drink a frozen bottle of water when the pressure from the ice struck her upper lip causing her front tooth to be loose
## 48137                                                                                                                                                                                   EE was attempting to drive a wedge into a sledge hammer- hit thumb accidentally.
## 48138                                                                                                                        EE was attempting to effect a vehicle stop. Suspect halted to stop, circled around EE's patrolcar and rearended it, then struck door twice.
## 48139                                                                                                                                                                        EE was attempting to empty trash EE reports falling from the porch area of the osdt storage
## 48140                                                                                                                                  EE was attempting to enter control officer door which was locked, attempted to open with knife, knife dropped, struck right hand.
## 48141                                                                                                                                                          EE was attempting to enter front door and right foot slipped in water on floor and he landed on left knee
## 48142                                                                                                                                    EE was attempting to enter her building to work and fell on icy surface that was on the campus grounds. Injured tailbone, knee.
## 48143                                                                                                                     EE was attempting to enter his patrol vehicle whenhe slipped on edge of pavement. EE hit face on edge of door. Cut ot eye requiring 4 stitches
## 48144                                                                                                                    EE was attempting to enter his vehicle when another vehicle collided into the driver's side door, pinning EE's foot between door and seat frame
## 48145                                                                                                                       EE was attempting to enter main hallway as the sliding door opened, EE was caught between sliding door and door casing. Right hand, hip, leg
## 48146                                                                                                             EE was attempting to escort an aggressive inmate to segregation and was assaulted by inmate strick-ing his fingers into both of his eyes, and in face.
## 48147                                                                                                                                                                           EE was attempting to exit bathroom in courthouse when she slipped on wet floor and fell.
## 48148                                                                                                                                                               EE was attempting to exit door and person used door from other side striking EE on head and rt elbow
## 48149                                                                                                                                                    EE was attempting to exit veh when radio got intangeled with seatbeat causing EE to loose his balance and fall.
## 48150                                                                                                                                    EE was attempting to exit vehicle when the corner of calendar page struck him in the right eye. Scratch on cornea of right eye.
## 48151                                                                                                                                                                       EE was attempting to extract a resistent suspect from a vehicle when he strained his rt knee
## 48152                                                                                                                                                EE was attempting to fasten client seatbelt & in client was uncooperative and in process EE jammed lt hand/fingers.
## 48153                                                                                                                                                          EE was attempting to fasten one side of a cord andit came loose striking EE in the top corner of the eye.
## 48154                                                                                                                                                              EE was attempting to feed animal. Animal mashed EE's hand against feeder while trying to get to feed.
## 48155                                                                                                                   EE was attempting to file a file in an overfull cabinet. While pushing to make room he injured his right hand. Went to urgent care after work ()
## 48156                                                                                                                      EE was attempting to fire shotgun when EE pulled the trigger the recoil from the gun pressed EE's glasses against upper left cheek. Abrasion.
## 48157                                                                                                                                                                           EE was attempting to fix a leak from an organic and some of the mixture got on her hand.
## 48158                                                                                                                                               EE was attempting to gain control of a not type situations and was thrown to floor across chair and up against wall.
## 48159                                                                                                                                                            EE was attempting to gain control of an aggressiveinmate when he felt some tightness in his lower back.
## 48160                                                                                                                                  EE was attempting to gain control of an inmate whowas running away from him. Strained muscle right leg from groin to calf muscle.
## 48161                                                                                                                      EE was attempting to get 3 day campers out of the swimming pools when her feet slipped and lower bac& tail bone slammed into her edge of pool
## 48162                                                                                                                                EE was attempting to get a client from getting off the ward floor and and in the process and client pushed EE. EE injured low back.
## 48163                                                                                                                                                                 EE was attempting to get a drink out of the vending maching when her lt hand was caught in thedoor
## 48164                                                                                                                      EE was attempting to get a highlighter off of her work cart and her rolling chair rolled from under her and she fell landing on her buttocks.
## 48165                                                                                                                                                                                     EE was attempting to get a patient from bed to chair, felt sharp pain in back.
## 48166                                                                                                              EE was attempting to get a radio from under his break pedal that had fallen, pulling the steering wheel of the rover to the left, hitting yellow pole
## 48167                                                                                                                                                EE was attempting to get an arrested subject into the wake county public safety center and injured his right wrist.
## 48168                                                                                                                                                                       EE was attempting to get box of paper from behind counter and swung around and strained back
## 48169                                                                                                                              EE was attempting to get cats back in pens when one cat bit EE multiple times on right index finger, rt. Thumb and scratched knuckles
## 48170                                                                                                                                                           EE was attempting to get control of inmate EE and inmate fell to ground causing offcier to twist rt knee
## 48171                                                                                                                                          EE was attempting to get coutnersink hole on boat trailors wooden support beam when knife slipped off wood cutting thumb.
## 48172                                                                                                                          EE was attempting to get info on suspect-wen EE exited his veh and was talking to suspects ex-wifeher dog bite EE on the upper left thigh
## 48173                                                                                                                                         EE was attempting to get inmates to clear an area, inmate refused and started striking EE in face andupper body with fist.
## 48174                                                                                                                                                                  EE was attempting to get into minivan and did not lower head enough and hit head on the van door.
## 48175                                                                                                                                    EE was attempting to get out of van when her foot slipped off step causing her weight to shift to her lt side causing back pain
## 48176                                                                                                                                                                                       EE was attempting to get patient off another EE when she pulled lt rib cage.
## 48177                                                                                                                                                                                                         EE was attempting to get pt out of bed and hurt lower back
## 48178                                                                                                                                        EE was attempting to get student to go to her room when student hit EE in the groin area and bit EE on the lt side of face.
## 48179                                                                                                                                                                                    EE was attempting to get up off of mat and bent rt hand back straining rt thumb
## 48180                                                                                                                                 EE was attempting to get violater to exit vehicle, EE opened door and violater accelerated backwards, forcing EE to fall to ground
## 48181                                                                                                                                                      EE was attempting to give client a enema. She rolled client on side and client rolled back over on EE's wrist
## 48182                                                                                                                                                         EE was attempting to give inmate medication; inmate grabbed EE by hair and hit her in the head four times.
## 48183                                                                                                                                                                                       EE was attempting to give patient medicine and patient struck EE in the head
## 48184                                                                                                                                             EE was attempting to go out of the control stationand closed the inner door lt third middle finger causing a small cut
## 48185                                                                                                                                                            EE was attempting to go up ramp to check door, slipped, twisted back while attempting to catch himself.
## 48186                                                                                                                                                           EE was attempting to go up the stairs and missed a step and fell hitting head and hip and twisting ankle
## 48187                                                                                                                                                                                              EE was attempting to groom a resident when he bit her rt index finger
## 48188                                                                                                                                                                           EE was attempting to hancuff a suspect and after doing so notice swelling in left thumb.
## 48189                                                                                                                           EE was attempting to hancuff suspect when he ran causing his coworker to push EE out of the way over a chair injuring his back and elbow
## 48190                                                                                                                                       EE was attempting to hand restrain an aggressive inmate when finger was caught in between handcuff & chain causing abrasion.
## 48191                                                                                                                                                                                          EE was attempting to handcuff Mr. Smith and hurt hhis right pinkey finger
## 48192                                                                                                                  EE was attempting to handcuff a subject after being examined at hospital. Subject resisted & a struggle occured. EE twisted rt ankle in struggle.
## 48193                                                                                                                EE was attempting to handcuff a suspect that was impaired, suspect turned away as EE was applying handcuffs, causing EE to twist rt wrist--swollen.
## 48194                                                                                                                                                                              EE was attempting to handcuff a suspect when his left knee hit the ground bruising it
## 48195                                                                                                                                             EE was attempting to handcuff an imparied driver- the suspect jerked free and tried to run-causing EE to twist rt knee
## 48196                                                                                                                                                              EE was attempting to handcuff an inmate and hit his knee on the picnic table in front of hickory dorm
## 48197                                                                                                                                             EE was attempting to handcuff an inmate that was resisting, I/m caused injury to rt side of face, cheek, & lower back.
## 48198                                                                                                                                        EE was attempting to handcuff inmate that was re- sisting being placed in restraints. Scratch left forearm, r side of head.
## 48199                                                                                                                                          EE was attempting to handcuff inmate when the EE was struck in the back of head by inmate. EE was pushed back into a bed.
## 48200                                                                                                                                                                                               EE was attempting to handcuff suspect and fell fracturing left ankle
## 48201                                                                                                                                             EE was attempting to handcuff suspect when he injured his right hand and right shoulder. He was also kicked in the eye
## 48202                                                                                                                        EE was attempting to hang plywood outside of ware-house, lost footing on ladder, fell 6ft to ground onto tailbone. 4-level fracture to back
## 48203                                                                                                                                                                  EE was attempting to have a seat when the stool came from under her and she fell to the floor. ()
## 48204                                                                                                                        EE was attempting to help a patient ambulate, patient became resistive. Patient pulled away and EE felt a sharp stinging pain in left thumb
## 48205                                                                                     EE was attempting to help another employee clean up a spill in the kitchen. There was a spot that they did not see that was still wet. EE slipped on the wet spot and fell. ()
## 48206                                                                                                                                                 EE was attempting to help another staff move resident from wheelchair to shower and felt a pull in her lower back.
## 48207                                                                                                                       EE was attempting to help cleint stand up-client grabbed EE's leg and started twisting and trying to bit EE-EE fell on left knee in process.
## 48208                                                                                                                EE was attempting to help other staff subdue an aggressive patient when he was pushed into a tablelow back injury & scrathes to fingers on lt hand.
## 48209                                                                                                                                                                             EE was attempting to help partner to get up from the floor, pulled left hip in process
## 48210                                                                                                                    EE was attempting to help restrain a patient that was kicking & fighting EE's-lattismus dorsi strainmediation schedule April 8, 1998 in raleigh
## 48211                                                                                                                  EE was attempting to help restrain a student by applying shackles, when foot was pent underneath student and EE fell hearing something pull(knee)
## 48212                                                                                                                                                                                     EE was attempting to help staff restrain client, client bit her on right ankle
## 48213                                                                                                                                                                    EE was attempting to hold a bag when the contents slipped out and struck EE on the lt large toe
## 48214                                                                                                                                                                                EE was attempting to hold a pt in hold, l thumb nail was torn during incident w/ pt
## 48215                                                                                                           EE was attempting to hold door for someone, caughtrt hand in elevator Dr. EE tried to press open button, door closed on hand, didn't open til next floor
## 48216                                                                                                                      EE was attempting to identify subject, when subject ran. While chasing subject, EE grabbed door frame, pulling section of skin off right hand
## 48217                                                                                                                                                 EE was attempting to implement therapeutic walk w/student, student became aggressive and punched EE in the lt eye.
## 48218                                                                                                                             EE was attempting to inject footpad of anesthized rat. Rat jerked and she accidently stabbed her finger. Puncture to left index finger
## 48219                                                                                                                                                             EE was attempting to insert parafin block into micro his finger came down on blade and finger was cut.
## 48220                                                                                                                                                                            EE was attempting to jump on a table and he fell causing his left arm to hit the floor.
## 48221                                                                                                                              EE was attempting to jump start a disabled vehicle-when EE tried to connect the jumper cablesthe battery exploded in EE face and eyes
## 48222                                                                                                                                                                          EE was attempting to keep aclient from injuring themself and strained a muscle in lt leg.
## 48223                                                                                                                              EE was attempting to keep client from going awol. EE caught clients arm and it was hit against stairway railing. Injury to left wrist
## 48224                                                                                                                               EE was attempting to keep his computer keyboard from hitting the floor & in the process broke the bottom front tooth #24 to the gum.
## 48225                                                                                                                                                                                               EE was attempting to keep patient from falling & sprained her thumb.
## 48226                                                                                                                                            EE was attempting to keep patinet from leaving clinic area. Patient stepped on EE's right foot & hit EE in left breast.
## 48227                                                                                                                                                             EE was attempting to keep pt from hitting another resident when they both fell locking on staff wrist.
## 48228                                                                                                                                      EE was attempting to leave scene where he had arrested suspect. Passenger shot at EE 5 times hitting EE in shoulder and back.
## 48229                                                                                                                    EE was attempting to leave work and upon exiting the office at the back door EE slipped on ice when trying to step down from back door platform
## 48230                                                                                                                                                                        EE was attempting to lift 40lb bag of concrete offthe ground and felt a sharp pain in back.
## 48231                                                                                                                                                                                         EE was attempting to lift a case of paper when she injured her right wrist
## 48232                                                                                                                                                                                                       EE was attempting to lift a typewriter and strained her back
## 48233                                                                                                                                                                   EE was attempting to lift a unit off the wall and caught his shoulder wrong resulting in injury.
## 48234                                                                                                                                                         EE was attempting to lift bottom of birthing bed to prepare for delivery, bed did not disengage initially.
## 48235                                                                                                                                   EE was attempting to lift file when he experiencedsharp pains in left side, middle portion of his back causing limited mobility.
## 48236                               EE was attempting to lift full boxes into a flat-top book truck. First box weighed around 15-20lbs & 2nd box was around 30-35lbs. Book truck would not stay still so I called on mmesser tohold book truck while I put box on top ()
## 48237                                                                                                                                                                         EE was attempting to lift hand truck from vehicle and handle collapsed fracturing rt thumb
## 48238                                                                                                                                                       EE was attempting to lift head of bed of resident, bed was stuck. She felt pain in lower right side of back.
## 48239                                                                                                                                                             EE was attempting to lift resistive pt's lt arm and felt pin sensations in left hand going up left arm
## 48240                                                                                                                                              EE was attempting to lift the hood of a service vehicle to remove snow and ice, employee slipped and fell forward. ()
## 48241                                                                                                                                                                                   EE was attempting to lift trailer and pinched rt index finger causing laceration
## 48242                                                                                                                                                  EE was attempting to light a gas grill to cook steaks when the gas flashed back on his right hand and forearm. ()
## 48243                                                                                                                                                                                 EE was attempting to load a horse onto the scales and the horse kicked employee ()
## 48244                                                                                                             EE was attempting to load a ls-160 (liq nitrogen) tank for delivery on the liq delivery cart. Attempting to lift tank, employee felt tank not secured.
## 48245                                                                                                                                                             EE was attempting to locate a broken steam line and came in contact w/ line and was burned on left arm
## 48246                                                                                                                  EE was attempting to locate a child's shoes in thedark when he hit his mouth on a bed frame causing a puncture wound in his lip & a broken tooth.
## 48247                                                                                                                      EE was attempting to locate an object that was thrown from a suspects vehicle when he slipped on an icy median and injured his right shoulder
## 48248                                                                                                                                                        EE was attempting to lock gate leading into trash compactor, her rt hand got caught between the gate& pole.
## 48249                                                                                                                                                                 EE was attempting to loosen/break free cap regulating chill water system and injured l shoulder ()
## 48250                                                                                                                                                                        EE was attempting to lower curtain from top of cooler door. Part of curtain struck left eye
## 48251                                                                                                                                             EE was attempting to make a felony arrest. As the subject resisted, EE twisted his knee as they fell to the ground. ()
## 48252                                                                                                                EE was attempting to make a lawful arrest for careless & reckless driving and resisting arrest when a struggle ensued. Injured 4 & 5 digits of hand
## 48253                                                                                                                                           EE was attempting to make a u-turn to catch a violator-as EE made turn his veh was struck in the left frt by another veh
## 48254                                                                                                       EE was attempting to make a u-turn to overtake a vehicle for speeding. EE failed to yield to another vehicle and turned into the path of another vehicle. ()
## 48255                                                                                                                                                                       EE was attempting to make an arrest & was attackedinjuring shoulder & lower back in scuffle.
## 48256                                                                                                                                                                                   EE was attempting to make an arrest and fell to sidewalk bruising chest and ribs
## 48257                                                                                                                                                                         EE was attempting to make an arrest and was scratched in forehead and wrist by fingernails
## 48258                                                                                                                         EE was attempting to make an arrest on offender; both fell to the ground, EE scraped both knees, left knee had broken skin and soreness ()
## 48259                                                                                                                                                                                                   EE was attempting to make an arrest when he injured his lt hand.
## 48260                                                                                                                          EE was attempting to make an arrest when the suspect resisted. EE had to use physical force to handcuff suspect. Injured his right thumb.
## 48261                                                                                  EE was attempting to make an arrest, the suspect pulled away and he was regaining control of the suspect, the EE twisted his left ankle causing a fracture to his left fibula. ()
## 48262                                                                                                                           EE was attempting to make an arrest. Subject resisted and struggle occurred. EE's head struck subject's head causing injury to right eye
## 48263                                                                                                                                                                                                         EE was attempting to make arrest, student kicked knee area
## 48264                                                                                                                                       EE was attempting to make lawful arrest & when removing subject from vehicle, he stepped on road-way curb sprained rt ankle.
## 48265                                                                                                                                EE was attempting to make left turn and was struckin the right passenger door by oncoming vehicle. Lower back strained and bruised.
## 48266                                                                                                                           EE was attempting to make na arrest on defendent, defendant began to strike EE in the face with his fist, causing injury to left timple.
## 48267                                                                                                                                       EE was attempting to move a food service cart whenhe slipped on some liquid the leaked out of the cart twisting his rt knee.
## 48268                                                                                                                                                                                      EE was attempting to move a podium when it fell striking her on her left knee
## 48269                                                                                                                                                                            EE was attempting to move bookcase in office. Tender lower back along lower rib margin.
## 48270                                                                                                                                                                                                           EE was attempting to move cabinet and felt pain inelbow.
## 48271                                                                                                                                                    EE was attempting to move desk with hand truck, desk became off balance and fell off the hand trucks onto foot.
## 48272                                                                                                                       EE was attempting to move furniture back into previous position after floor had been waxed, whenshe fell & struck her head on the door knob.
## 48273                                                                                                                                                                                                 EE was attempting to move podium when podium fell over on rt foot.
## 48274                                                                                                             EE was attempting to open a door using the card reader card. EE stepped on water and slipped. EE fell & injured: (r) knee, (r) elbow, (l) toes, (l) sh
## 48275                                                                                                                                                                                    EE was attempting to open a flask of media and flask broke cutting palm of hand
## 48276                                                                                                                       EE was attempting to open a frozen valve on a disabled mower stalled in the street. Once valve broke free his hand slipped hitting the mower
## 48277                                                                                                                                          EE was attempting to open a gate that was hard to open & felt a pull in her left shoulder & burning on left side of neck.
## 48278                                                                                                                                                               EE was attempting to open a gate that was stuck and his hand slipped and he bent his left thumb back
## 48279                                                                                                                          EE was attempting to open a jammed door and hurt his right shoulder when the door opened. Injury to right shoulder and right side of neck
## 48280                                                                                                                           EE was attempting to open a pair of handcuffs to be placed on inmate. When handcuffs stuck EE's left ring finger got caught in handcuffs
## 48281                                                                                                                          EE was attempting to open a stopped up kitchen drain. When he opened the drain cleaner, the fan blew some of the dust into EE's left eye.
## 48282                                                                                                                                           EE was attempting to open a stuck door when he washit by the crash bar on the door. He suffered from contusions ribcage.
## 48283                                                                                                                                                                            EE was attempting to open an oven door that was stuck when she injured her lt upper arm
## 48284                                                                                                                      EE was attempting to open clothes house door that was stuck due to painting it. Pulled on door and it flew open and it struck him on knee cap
## 48285                                                                                                                              EE was attempting to open cooler #1 and in doing so she missed the handle causing her left thumb tosnap back and hit the door handle.
## 48286                                                                                                                                                             EE was attempting to open door and applied force and door did not open. Muscle spasm in left shoulder.
## 48287                                                                                                                                          EE was attempting to open door that had been pad locked in the belk gym loading dock. Bolt cutters slipped striking head.
## 48288                                                                                                                                                 EE was attempting to open doors that were stuck orinoperable & injured both arms and wrists. F18 filed... No 19///
## 48289                                                                                                                                             EE was attempting to open glass jar, lid was jammed, EE applied pressure to sides of jar to grip and jar shattered. ()
## 48290                                                                                                                  EE was attempting to open lab specimen box, wind blew the bag out of hand, attempted to catch, slipped on mud and fell. Palms of hand/both knees.
## 48291                                                                                                                                                                                   EE was attempting to open lower gate to entrance when he injured his lower back.
## 48292                                                                                                                    EE was attempting to open rear outside door at troop e headquarters, door lock turned but door did not open, EE stepped forward fracturing toe.
## 48293                                                                                                                                         EE was attempting to open the clothes house door that was stuck, pulled on door it flew open, struck him on left knee cap.
## 48294                                                                                                                                                     EE was attempting to open the door to the cabinet when the door fell off the hinges striking EE on the lt foot
## 48295                                                                                                                                                                   EE was attempting to open the jammed sallyport door with her rt which was caught in between door
## 48296                                                                                                                EE was attempting to open the manhole cover by using a manhole cover lifting tool. He pulled back on the tool to lift it slipped out from his foot.
## 48297                                                                                                                                 EE was attempting to open trap door when inmate open the door causing it to strike EE in rt finger. Small abrasion rt fore finger.
## 48298                                                                                                                                                                                           EE was attempting to open trap door-pulled on doorand rt forearm twisted
## 48299                                                                                                                                                                         EE was attempting to open warehouse door that was stuck and pulled a muscle in rt shoulder
## 48300                                                                                                                            EE was attempting to overtake a speeding vehicle when his vehicle ran off the road and then collided with another vehicle in left lane.
## 48301                                                                                                                 EE was attempting to overtake a speeding violator. EE lost control of his vehicle in a curve, ran offthe roadway, struck a mailbox and utitly pole
## 48302                                                                                                                                                     EE was attempting to overtake a violator when his vehicle ran off the road to the right, striking a pine tree.
## 48303                                                                                                                                                EE was attempting to overtake speeding vehicle. EE lost control of his vehicle, ran off the road and struck a ditch
## 48304                                                                                                                                                                       EE was attempting to palce the suspect under arrest and she bit him on the right forearm. ()
## 48305                                                                                                                                                                  EE was attempting to park her car and had a seizure which caused her to hit a tree and brick bldg
## 48306                                                                                                                                                 EE was attempting to park in a handivcapp parking space because she was not feeling well and backed into hewr car.
## 48307                                                                                                                                    EE was attempting to pass vehicle when vehicle made left turn in front of him resulting in accident. EE has laceration to chin.
## 48308                                                                                                                                             EE was attempting to physically move agressive patient when he began fighting w/staff--contusion to dorsum of lft hand
## 48309                                                                                                                           EE was attempting to physically restrain a client I along with other staff and student fell to the floor while falling head struck door.
## 48310                                                                                                                EE was attempting to physically restrain a combative inmate in b dorm during the struggle officer recevied a small laceration to her rt ring finger
## 48311                                                                                                                                                           EE was attempting to pick the mouse tray that fallen when she felt a sharp pain along neck and shoulder.
## 48312                                                                                                                                                                                       EE was attempting to pick up a bag of ice when shefelt a pop in her lt wrist
## 48313                                                                                                                                                                        EE was attempting to pick up a load of materials, strained low back, inapropriate movement.
## 48314                                                                                                                                        EE was attempting to pick up heavy milk can full of milk off floor. Experienced pain in lower leftback. Referred to glenda.
## 48315                                                                                                                   EE was attempting to place a drunk driver under arrest. The driver resosted and the EE twisted his back while attempting to restrain the suspect
## 48316                                                                                                                                                                EE was attempting to place a patient into nci when he hit left elbow against the corner of the wall
## 48317                                                                                                                                                               EE was attempting to place a rubber hose on a glass y adapter and the glass broke and cut both hands
## 48318                                                                                                                                                        EE was attempting to place a suspect in custody. Afight ensued causing injury to EE's knuckle on left hand.
## 48319                                                                                                                  EE was attempting to place agitated pt in time outrm, had multiple injuries: (r) 2nd digit and (l) third digit laceration with rt shoulder strain
## 48320                                                                                                                                                          EE was attempting to place an aggressive student in handcuffs and was struck in the mouth by his head. ()
## 48321                                                                                                                                                      EE was attempting to place an inmate into hand restraints when the inmate become violent and began hitting EE
## 48322                                                                                                                            EE was attempting to place an out of control juvenile into their room when the juvenile slammedee onto the floor injuring EE left wrist
## 48323                                                                                                                                                                                             EE was attempting to place handcuffs on inmate when inmate jerked away
## 48324                                                                                                                                                              EE was attempting to place her new floor mat underher desk and during that process twisted her ankle.
## 48325                                                                                                                         EE was attempting to place inmate who was having a seizure on stretcher-EE scraped lt arm on stretcher and came in cntct w/ inmate's blood
## 48326                                                                                                                                                   EE was attempting to place lt arm on back of chair and struck lt elbow on a piece of angle iron on back of chair
## 48327                                                                                                                                                                                 EE was attempting to place patient in Mr. Patient was fighting. Pain in left elbow
## 48328                                                                                                                                                                               EE was attempting to place patient in nci hold and EE and patient fell to the floor.
## 48329                                                                                                                                                                                     EE was attempting to place patient in pic hold and EE felt strain in rt thumb.
## 48330                                                                                                                            EE was attempting to place patient off bed and onto shower bed, felt pain in lower back, when patient began to fight and pull on rails.
## 48331                                                                                                                                                                        EE was attempting to place patients arm back in restraint. Patient grabbed finger and bent.
## 48332                                                                                                                         EE was attempting to place radio microphone in holder when he discovered he was in a curve and lost control of car rolling it three times.
## 48333                                                                                                                                                EE was attempting to place scale in level postion for inspection and pulled forarm muscle while attempting to do do
## 48334                                                                                                                                  EE was attempting to place suspect under arrest- suspect pushed away and ran-EE went after suspect on foot injuring rt upper leg.
## 48335                                                                                                                                           EE was attempting to position patient in bed when patient pushed away in opposite direction causing EE to pull her back.
## 48336                                                                                                                                   EE was attempting to prevent a plate of food from falling to the floor. Left index finger was cut when plate broke on the floor.
## 48337                                                                                                                                   EE was attempting to prevent a runaway juvenile from escaping secure custody. Juvenile pushed EE in the face & knocked her down.
## 48338                                                                                                                        EE was attempting to prevent an impaired driver from leaving parking lot. EE's lt thigh & lt foot was run over while trying to stop driver.
## 48339                                                                                                                                                               EE was attempting to prevent an inmate from fleeing and was struck in the face and lt hand by inmate
## 48340                                                                                                                                                                                  EE was attempting to prevent further fighting, a student hit EE's leg accidentlly
## 48341                                                                                                                         EE was attempting to prevent inmate from destroy- ing state property, EE was pulled into steel showerdoor injuring his left shoulder/neck.
## 48342                                                                                                                                                                           EE was attempting to prevent patient from falling and strained her low back & left knee.
## 48343                                                                                                                                                                                   EE was attempting to prevent patient from falling to the floor when he fell.. ..
## 48344                                                                                                                                                  EE was attempting to prevent patient from taking food off another patient's tray. The patient bit EE on left hand
## 48345                                                                                                                                                    EE was attempting to pull a scale rack out of the trunk area of his patrol vehicle and strained his lower back.
## 48346                                                                                                                                                                                  EE was attempting to pull and lift a loaded gar- bage can EE strained lower back.
## 48347                                                                                                                                            EE was attempting to pull buffing pad boxes from shelf when dispenser on top of box fell and struck employee in head ()
## 48348                                                                                                                                EE was attempting to pull food cart off elevator but it would not roll so he jerked on cart & felt something pull in his lower back
## 48349                                                                                                                                                                           EE was attempting to pull open a door that was stuck when he felt a pull in his rt elbow
## 48350                                                                                                                                                             EE was attempting to push a patrol vehicle out of a traffic lane and felt a sharpe pain in his abdomen
## 48351                                                                                                                                                                                 EE was attempting to push door open and door slammed back and bent hand backwards.
## 48352                                                                                                                                                                   EE was attempting to push keyboard under computer and jammed rt thumb between keyboard and desk.
## 48353                                                                                                                                               EE was attempting to push lift on truck into slot for security, felt a pull in chcest and shoulder area on rt. Side.
## 48354                                                                                                                                                             EE was attempting to put a dish cart on lift gate of truck; pain in right shoulder, arm, and back area
## 48355                                                                                                                                                                                   EE was attempting to put a flusher on a boat motorwhen finger hit the propeller.
## 48356                                                                                                                                 EE was attempting to put a lid on a hollow glass tube when the tubing broke and punctured EE's leftthumb causing deep lacerations.
## 48357                                                                                                                                                     EE was attempting to put a muzzle on an aggressivedog when the dog bit the first two fingers of her left hand.
## 48358                                                                                                            EE was attempting to put a printing plate on printing press. While putting up the the plate clamp toplace the printing plate on hte press, wrist popped
## 48359                                                                                                                                                      EE was attempting to put an aggressive client in therapeutic carry, and her right arm was pulled and injured.
## 48360       EE was attempting to put an aggressive, out of control student in his room. Student freed his hand he then punched Mr. Olds in the face repeatedly hitting EE in the lower right jaw.. Student was restrained again then he bit Mr. Olds on his right wrist.
## 48361                                                                                                                                                  EE was attempting to put client in personal restnt& client got loose bitting EE on the hand and twisting his arm.
## 48362                                                                                                                                                                            EE was attempting to put combative patient in holdthat was attacking satff in elevator.
## 48363                                                                                                                                          EE was attempting to put patient in s/r, he becamecombative, hitting and kicking at staff. He was hit in nose by patient.
## 48364                                                                                                                                                                  EE was attempting to put patient on elevator when patient began to fight EE, kicking and punching
## 48365                                                                                                                                                        EE was attempting to put schackles on probationer and the probationer pulled free causing EE to fallon back
## 48366                                                                                                                                     EE was attempting to put splint on client when client became aggressive and bent EE's left thumb and hit EE in face and chest.
## 48367                                                                                                                                                  EE was attempting to put student in room and student slammed door on thumb causing a large bruise and blood clot.
## 48368                                                                                                                                                                 EE was attempting to put traffic control equipmnt in place when an automobile rant over left foot.
## 48369                                                                                                                                                       EE was attempting to quickly open the door and answer phone, missed lock and jammed r index finger into door
## 48370                                                                                                                                                                          EE was attempting to raise a residents bedreail when she twisted her rt wrist and forearm
## 48371                                                                                                                                                           EE was attempting to re-enter the security vehiclewhe he hit his head on teh top edge of the door frame.
## 48372                                                                                                                                        EE was attempting to readjust patient's restraint when patient grabb his left thumb and twisted it; injuring his left wrist
## 48373                                                                                                                        EE was attempting to reattach a wheel cover to th e front left wheel of his patrol vehicle while in the parking lof of the district office.
## 48374                                                                                                                                                                                                                                EE was attempting to recap a needle
## 48375                                                                                                                       EE was attempting to redirect client-EE was running toward client to intervene when she came down (hard) on the right heel/foot. Noted pain.
## 48376                                                                                                                                                                   EE was attempting to redirect patient and was pushed down by patient. Tenderness in coccyx area.
## 48377                                                                                                                                              EE was attempting to redress client and client became agitated and struck EE in the rt side of the face and the mouth
## 48378                                                                                                                     EE was attempting to register a camper. Visitor was walking up to campsite, her dog ran towards the employee barking. Employee put up his foot
## 48379                                                                                                                             EE was attempting to reload 1000 lb. Weights into truck w/ hoist. Hook slipped from weight & swung around, hitting EE under right eye.
## 48380                                                                                                                 EE was attempting to remove ?? From clip board. As EE raised lid on clipboard a ?? Pictures fell from box on EE's head leaving a knot & cut finger
## 48381                                                                                                               EE was attempting to remove a battery cable on training vehicle, cap was blocked the bolt, removed the battery cap, acid form battery went into face
## 48382                                                                                                                    EE was attempting to remove a blanket from an inmates cell through the food door when the inmatethrew urine on EE's clothing, rt arm & rt hand.
## 48383                                                                                                                                EE was attempting to remove a cable tie from a bundle of wires using scissors, while doing so, his hand slipped and he cut himself.
## 48384                                                                                                                                        EE was attempting to remove a chain binder under tension when the binder recoiled & struck EE in the face. Cut above rt eye
## 48385                                                                                                                                                                  EE was attempting to remove a corn dog stick from garbage disposal injuring rt hand middle finger
## 48386                                                                                                                                                           EE was attempting to remove a key from a jammed lock between/seperating mailroom and pulled lt shoulder.
## 48387                                                                                                                                                                                 EE was attempting to remove a shute from the side of riding mower and hit rt knee.
## 48388                                                                                                              EE was attempting to remove a subject in custody from patrol car. Struggle occured & EE was struck on hand which had scratches on it subject had aids
## 48389                                                                                                                                                           EE was attempting to remove a vival crimp w/decrimper and the vival broke and lacertion of the lt thumb.
## 48390                                                                                                                      EE was attempting to remove a yard stick from the hands of a juvenile who was being defiant. The student became agressive toward employee. ()
## 48391                                                                                                                                                          EE was attempting to remove an inmate from a cell and in the struggle he fell and hit elbow on the floor.
## 48392                                                                                                                            EE was attempting to remove batteries from towel dispense using key as a level. Hand slipped and she banged up finger on right hand. ()
## 48393                                                                                                                      EE was attempting to remove chemicals to perform her duties from chemical supply closet when doors jumped track. Caught lt finger in between.
## 48394                                                                                                             EE was attempting to remove fire extinguisher off back of pickup truck, it started to fall off, EE tried to grab it, caused him to be pulled off balan
## 48395                                                                                                             EE was attempting to remove hand restraints through trap door of inmate's cell. Inmate pulled EE's hand into the opening and scraped it against metal.
## 48396                                                                                                            EE was attempting to remove handcuffs from inmate when inmate charged him and stuck him with a shank, EE sustained several puncture wounds to low back.
## 48397                                                                                                                                                      EE was attempting to remove inmate from the shower when inmate spit in her direction, hitting her in the eyes
## 48398                                                                                                                                                                                        EE was attempting to remove patient coat to take blood pressure. Back pain.
## 48399                                                                                                                                            EE was attempting to remove resident from another resident's room, when resident began being compative and scratched EE
## 48400                                                                                                                          EE was attempting to remove sheetrock type material from a wall with the pry bar. When bar struck wall, it twisted and injured his wrist.
## 48401                                                                                                                                   EE was attempting to remove strap ties that held a telfon tube in a coil. The tubing uncoiled and the end struck EE in left eye.
## 48402                                                                                                                                          EE was attempting to remove the inside dome light cover from patrol veh with pocket knife, knife slipped and cut rt thumb
## 48403                                                                                                                                                                                                        EE was attempting to remove valve cover... Injured his back
## 48404                                                                                                                                     EE was attempting to repair a clogged dispenser tube when the screwdriver slipped and jabbed him in the palm of his left hand.
## 48405                                                                                                                                                          EE was attempting to repair an antenna when he felt heat from it and experienced a slight burn on his arm
## 48406                                                                                                              EE was attempting to repair compactor trailer doorthat was jammed shut. EE removing pins from door when door sprung open and hit EE in left side pain
## 48407                                                                                                                                                                                 EE was attempting to replace a catherter. The cat became distressed and acted out.
## 48408                                                                                                                                                                                               EE was attempting to reposition patient and hit her rt knee on chair
## 48409                                                                                                                EE was attempting to resecure a roof hatch in the control room when the piston that holds the hatch up failed and the hatch came down and struck EE
## 48410                                                                                                                                                                       EE was attempting to reset cage door after it came off hinges and finger got caught in hinge
## 48411                                                                                                                                                            EE was attempting to restrain a agitated patient and EE fell to the floor striking rt knee on the floor
## 48412                                                                                                                 EE was attempting to restrain a juvenile who was out of control. EE fell to the ground while trying to gain control injuring rt shld and forehead.
## 48413                                                                                                                                                                                 EE was attempting to restrain a patient when he and the patient fell over a table.
## 48414                                                                                                                                                                                                   EE was attempting to restrain a patient when he injured his back
## 48415                                                                                                                                                                                 EE was attempting to restrain a pt and in the process fell hitting l knee on floor
## 48416                                                                                                                                                                                                    EE was attempting to restrain a student and strained left wrist
## 48417                                                                                                                                                               EE was attempting to restrain a student and the student bit EE on the left upper arm and rt shoulder
## 48418                                                                                                                                 EE was attempting to restrain a student from running out during a riot in the library. Got intoa shoving match, strain right wrist
## 48419                                                                                                                                                                EE was attempting to restrain a student when he used a bent wrist hold and noticed pain in lt thumb
## 48420                                                                                                                                   EE was attempting to restrain a student who was throwing blows with his fist. Strain left shoulderand lower left arm, right eye.
## 48421                                                                                                                                                                                         EE was attempting to restrain a studnet trying to assault antoher student.
## 48422                                                                                                                                               EE was attempting to restrain a suspect when he injured his rt foot and leg; also sustained a cut to his right thumb
## 48423                                                                                                                                            EE was attempting to restrain aggressive inmate and place him on floor. EE came down on right elbow which hit the floor
## 48424                                                                                                                                                                                    EE was attempting to restrain an agressive pt when she hit her l leg on the bed
## 48425                                                                                                                                                                    EE was attempting to restrain an inmate during a fight, EE was struck in the arm by the cooler.
## 48426                                                                                                                                                       EE was attempting to restrain an inmate during use of force, he slipped, fell hitting his head on the floor.
## 48427                                                                                                                                                                     EE was attempting to restrain an unruly inmate & injured his right thumb & also left shoulder.
## 48428                                                                                                                                                                                         EE was attempting to restrain cat for exam and the cat bit through blanket
## 48429                                                                                                                                                                                               EE was attempting to restrain cat when it bit her on the right hand.
## 48430                                                                                                                                  EE was attempting to restrain cleint from hurting self-while holding client foot got loose and client kicked EE on left shoulder.
## 48431                                                                                                                               EE was attempting to restrain client with a trheapeutic hold, in the struggle EE hit lt knee on floor and received contusion to face
## 48432                                                                                                                                       EE was attempting to restrain hostile patient and received scratches on right cheek and right wrist. Sprain to back and neck
## 48433                                                                                                                                                                         EE was attempting to restrain inmate and she scratched left side of face and spit in face.
## 48434                                                                                                                                          EE was attempting to restrain inmate in single cell inmate scratched EE on top of left hand abrasion to back of left hand
## 48435                                                                                                                                         EE was attempting to restrain inmate when both fell to the floor and injurying EE left hand when attempting to break fall.
## 48436                                                                                                                                                           EE was attempting to restrain inmate when he struck right hand with baton. Injury to right little finger
## 48437                                                                                                                                                                                 EE was attempting to restrain inmate, he was scratched on underside of right wrist
## 48438                                                                                                            EE was attempting to restrain inmate, place him in handcuffs when other inmates kicked EE about the head and back. Cut on head/bruised, blood left eye.
## 48439                                                                                                              EE was attempting to restrain inmate, the inmate jerked his hand into trap door, jamming EE finger cutting top of hand, & bruising top & side of hand
## 48440                                                                                                                                                                                             EE was attempting to restrain juvenile and strained chest and low back
## 48441                                                                                                                                      EE was attempting to restrain juvenile who was resisting by kicking and fighting-EE's glasses were broken -no physical injury
## 48442                                                                                                                                                                                                                            EE was attempting to restrain juvenile.
## 48443                                                                                                                                                            EE was attempting to restrain patient and fell over patient hitting rt knee on floor and injuring ankle
## 48444                                                                                                                                                                                          EE was attempting to restrain patient and patient bit and scratched staff
## 48445                                                                                                                                                                                         EE was attempting to restrain patient out of control, fell & injured knee.
## 48446                                                                                                                                              EE was attempting to restrain patient, & accidentally stepped on another patient's foot. EE twisted left foot & ankle
## 48447                                                                                                                                                                         EE was attempting to restrain pt when the pt twisted her right arm and kicked her left leg
## 48448                                                                                                                                                                                                       EE was attempting to restrain resident and injuredshoulder .
## 48449                                                                                                                                                                                                                    EE was attempting to restrain several juveniles
## 48450                                                                                                                                                                                         EE was attempting to restrain student and injured rt arm, rt eye, and body
## 48451                                                                                                                                                                      EE was attempting to restrain student and struck rt hand against bleachers causing laceration
## 48452                                                                                                                                                                   EE was attempting to restrain student and student bit EE in the back of the head, back, and neck
## 48453                                                                                                                                                                             EE was attempting to restrain student when student attacked EE reinjuring left forearm
## 48454                                                                                                                                                                                           EE was attempting to restrain student who was fighting and strained back
## 48455                                                                                                                                                                                                                              EE was attempting to restrain subject
## 48456                                                                                                                      EE was attempting to restrain subject who had beenarrested for dwi. Subject attempted to jump from moving patrol vehicle & a struggle ensued.
## 48457                                                                                                                                             EE was attempting to restrain two students engaged in a physical altercation. EE was hit in the mouth by a student. ()
## 48458                                                                                                                                                                                                             EE was attempting to restrain when he injured his back
## 48459                                                                                                                                                                                             EE was attempting to restrained a inmate who had assaulted a co-worker
## 48460                                                                                                               EE was attempting to restraint a violent I/m for transport to another facility. The I/m scratched the left wrist of the EE w/ his fingernail..... ..
## 48461                                                                                                                                                                                                   EE was attempting to restrian an inmate and was exposed to blood
## 48462                                                                                                                                                                           EE was attempting to retreive contraband from inmate and had to use force against inmate
## 48463                                                                                                                                         EE was attempting to retreive keys out of the passage box, Dr. Ward pushed the box, caught EE middle finger on his r hand.
## 48464                                                                                                                                      EE was attempting to retrieve bed pillow from top bunk in dorm room as EE went to step down his rt ankle turned causing pain.
## 48465                                                                                                                                                                EE was attempting to roll tv stand, tv stand collapsed and tv fell on the EE. Left arm was injured.
## 48466                                                                                                                                EE was attempting to sat in a chair when the chairbroke from under her causing her to injured her rt knee, neck and lower left back
## 48467                                                                                                                    EE was attempting to scale a concrete barrier in foot pursuit of fleeing suspect, his left knee caught by the reflector monitor on the barrier.
## 48468                                                                                                                                                                            EE was attempting to seat self when chair moved and EE fell injuring lower and mid back
## 48469                                                                                                                        EE was attempting to secure an uncooperative inmate in his cell when he was struck across the back of the rt hand with a pair of hand cuffs
## 48470                                                                                                                                                                       EE was attempting to secure his portable scales that had shifted; hurt left arm and shoulder
## 48471                                                                                                                                                              EE was attempting to secure inmate in his room when inmated assaulted him. Right eyebrow, right hand.
## 48472                                                                                                                                                           EE was attempting to secure students and strained muscle during a restraint. The student was aggressive.
## 48473                                                                                                                    EE was attempting to secure the door in the gatehouse when another officer existing the door pushed door and caught the middle and ring finger.
## 48474                                                                                                                                    EE was attempting to secure the door leading dormitories when he left inner ring was caught in door, contusion lt index finger.
## 48475                                                                                                                              EE was attempting to secure work equipment into his worksite, the garage, and slipped on ice and fell backwards onto his tailbone. ()
## 48476                                                                                                                                                                                   EE was attempting to sedate cat and was bitten on left thumb palm and back side.
## 48477                                                                                                                                                                 EE was attempting to separate 2 patients fighting & felt sharp pain in rt. Hand, wrist & shoulder.
## 48478                                                                                                                                                                                    EE was attempting to separate two fighting patients, injuring left side of neck
## 48479                                                                                                                                                          EE was attempting to separate two students who were fighting in the process he injured his groin area. ()
## 48480                                                                                                                                                 EE was attempting to separate two students who were fighting..... Injured lower back and right side in the process
## 48481                                                                                                                                                                    EE was attempting to seperate inmates who were fighting. Radiating pain in left shoulder & ear.
## 48482                                                                                                                    EE was attempting to seperate two inmates fightingwhen he was kicked in back by an unidentified inmate. Edema rt scapula-bruised below scapula.
## 48483                                                                                                                                           EE was attempting to seperate two students when eefelt a pop between the center of his back between the shoulder blades.
## 48484                                                                                                                   EE was attempting to serve a parole warrant & defendant attempted to flee, EE had to restrain him, in the process EE fell to floor scraped hands
## 48485                                                                                                                     EE was attempting to serve a parole warrant & the offender snatched away from officer injurying his right hand. Cut & strain on hand (fingers)
## 48486                                                                                                                                EE was attempting to serve a warrant on a probationer.. The probationer resisted & scuffle occurred.. EE's lt wrist was injured. ..
## 48487                                                                                                                                                         EE was attempting to serve a warrant-a confrontation broke out and neighbor's dog bit EE on left lower leg
## 48488                                                                                                                EE was attempting to serve order for arrest, defen-dant resisted and engaged in physical confrontatioinvolving a struggle, EE knocked to the floor.
## 48489                                                                                                                              EE was attempting to serve order on suspect. Suspect stuck EE in nose. Injury to right ring finger. Injury to nose and fractured nose
## 48490                                                                                                                                                     EE was attempting to set up ping pong table, and table folded up onto l thumb smashing it between metal strips
## 48491                                                                                                                                                    EE was attempting to shut a window when her fingerwas caught between the window and the window frame(lt finger)
## 48492                                                                                                                                                                                    EE was attempting to shut the door and her middle finger on rt hand got caught.
## 48493                                                                                                                                                                         EE was attempting to shut the fire door and EE rt finger got caught in the bar of the door
## 48494                                                                                                                      EE was attempting to sit down & there were no rubber stoppers on the legs of the chair which slid from underneath the EE causing him to fall.
## 48495                                                                                                                                                        EE was attempting to sit down in a chair and it rolled out from under him, causing him to fall to the floor
## 48496                                                                                                                            EE was attempting to sit down in a chair when the leg of the chair came off causing EE to fall to the floor --pain in back and shoulder
## 48497                                                                                                                                                          EE was attempting to sit down in a tall rolling chair; chair rolled out from under her causing herto fall
## 48498                                                                                                                          EE was attempting to sit down in chair at cafeteria when she partially missed her seat and while breaking the fall she injured her rt arm
## 48499                                                                                                                                         EE was attempting to sit down in her chair, she hurriedly sat down and her chair slid from under her and she hit her head.
## 48500                                                                                                                             EE was attempting to sit in a chair to document a patient chart when the chair slid from under hercausing her to fall injuring lt knee
## 48501                                                                                                                                                                              EE was attempting to sit in a chair when the chair broke injuring rt shoulder and hip
## 48502                                                                                                                       EE was attempting to sit in a chair, one of front and back legs broke, chair collasped, causing her tofall to floor. Right leg/hand/fingers.
## 48503                                                                                                                                 EE was attempting to sit in an office chair, slid out from under her causting her to fall to floor striking right elbow and knees.
## 48504                                                                                                                     EE was attempting to sit in chair when the bottom of the chair flipped and causing her to be thrown onto the floor and EE hit head on the wall
## 48505                                                                                                                               EE was attempting to sit in chair. Left hand was caught between radio and chair. Chair pinched left hand below thumb and above wrist
## 48506                                                                                                                                                                                       EE was attempting to sit in desk chair, the chair moved suddenly and EE fell
## 48507                                                                                                                                                EE was attempting to sit in the chair and the chairrolled away and EE hit her head on the corner of the desk drawer
## 48508                                                                                                                                                     EE was attempting to sit on a stool when it rolledback causing something in right knee to be pulled awkwardly.
## 48509                                                                                                                                                                 EE was attempting to sit on a tool and hit the floor and hit her cocyx bone and scraped her elbow.
## 48510                                                                                                                                EE was attempting to sit on the stool, and the stool moved away from the wall. Officer morrisey fell and hit her head on the floor.
## 48511                                                                                                                                                                                                       EE was attempting to slide a bunk and felt a pop in her back
## 48512                                                                                                                                               EE was attempting to stand up. She tripped and fell to floor, hitting computer desk, causing contusion to lower back
## 48513                                                                           EE was attempting to start drill rig, was standing on bumper. EE poured fuel into engine carburetor, engine backfired. EE rt hand burned. EE fell from bumper to ground injuring ribs ()
## 48514                                                                                                                                                            EE was attempting to start the gasoline engine of a air compressor. EE burned left hand on the exhaust.
## 48515                                                                                                                                 EE was attempting to step on spider and foot slipped on worn carpet and EE fell to the floor. Injureshoulder, back, leg, and neck.
## 48516                                                                                                                                                                      EE was attempting to step on the sidewalk foot slipped off metal drain cover and injured leg.
## 48517                                                                                                                        EE was attempting to stir some vegetables and the steam burned EE on the hand and face, EE jumped and the vegetables flew all over stomach.
## 48518                                                                                                                                                            EE was attempting to stop a fan from falling when it fell and scraped her ring finger on her right hand
## 48519                                                                                                                                EE was attempting to stop a student who tried to run off the unit. While trying to restrain the stu dent student fell to the floor.
## 48520                                                                  EE was attempting to stop a subject who fled the scene during an investigation. The subject ran into office ipock and they flipped over. Office ipock landed on his right knee causing injury. ()
## 48521                                                                                                                 EE was attempting to stop a traffic violator who was refusing to stop. Violator intentionally drove vehicle into patrol car. Inj left arm & chest.
## 48522                                                                                EE was attempting to stop a vehicle for speeding. The EE went through a red light with all emergency equipment activateed and collided with another vehicle in the intersection. ()
## 48523                                                                                                                                EE was attempting to stop an inmate from leaving the wing he placed his left arm across door & inmate struck his arm with his hand.
## 48524                                                                                                                                                                                                            EE was attempting to stop fight when pt hit EE on cheek
## 48525                                                                                                                                        EE was attempting to stop patient from leaving locked area when patient became aggressive resulting in injury to left wrist
## 48526                                                                                                                                                                         EE was attempting to stop pt fm attacking another pt, was bitten in process, right hand ()
## 48527                                                                                                                                                  EE was attempting to stop resident from engaging in hurting theirself & felt pain on both sides of lower stomach.
## 48528                                                                                                                      EE was attempting to stop students from fighting and fell on the ground hitting arms and chest-got to students and was splattered with blood.
## 48529                                                                                                                                                     EE was attempting to stop subject from running & subject jumped over the wall and EE hit his knee on the wall.
## 48530                                                                                                                                   EE was attempting to stop suspect from kicking windshield out. He attemped to grab suspects legs when he was kicked on left arm.
## 48531                                                                                                               EE was attempting to stop traffic violator when violator intentionally struck EE vehicle twice in right side. EE right knee struck an unknown object
## 48532                                                                                                                                                 EE was attempting to stop two inmates fighting. Inmate grabbed EE's lt upper arm & pushed lt upperchest area also.
## 48533                                                                                                                                                                        EE was attempting to stop two inmates from fightinwhen he struck his rt hand against a door
## 48534                                                                                                               EE was attempting to stop two students from fight-ing and slipped and fell in some water that was thrown. Fell in split position. Injured leg muscle
## 48535                                                                                                              EE was attempting to stop vehicle by using siren &blue light & was struck several times by vehicle he was attempting to stop. Inj left leg-thigh area
## 48536                                                                                                           EE was attempting to straighten a bent traffic sign when his right hand slipped upward on the edge of the sign resulting in a cut to his right thumb. ()
## 48537                                                                                                                                EE was attempting to subdue a disruptive student using handcuffs and during struggle multple scrapebruises, and contusions to hand.
## 48538                                                                                                                                                                                 EE was attempting to subdue a patient and the pt was dragging EE across the floor.
## 48539                                                                                                                                                                                    EE was attempting to subdue a prisoner when his right elbow was hyper extended.
## 48540                                                                                                                     EE was attempting to subdue a suspect to effect anarrest. While trying to position suspect in patrol car to close door, suspect bit EE's hand.
## 48541                                                                                                                                                        EE was attempting to subdue fighting prisoner and prisoner jerked away from EE injuring his right shoulder.
## 48542                                                                                                                                 EE was attempting to subdue patient who was fighting. Patient went limp and fell to floor taking EE with her. Injury to lower back
## 48543                                                                                                                                                          EE was attempting to subdue resisting inmate and place inmate on floor when neck muscles began to strain.
## 48544                                                                                                                                             EE was attempting to subdue someone who was resisting arrest. EE turned with individual in hand nad injured groin area
## 48545                                                                                                                      EE was attempting to subdue suspect, suspect wrap- ped legs around EE's left leg in a scissors mannerapplied great pressure causing bruising.
## 48546                                                                                                                                                                                      EE was attempting to subsdue a subject-in process right shoulder was injured.
## 48547                                                                                                                                                   EE was attempting to suture an injured patient when she was struck by patient in the head/face and fell to floor
## 48548                                                                                                                           EE was attempting to take a black female into custody and another black female assaulted officer. Injured left arm, left leg, and groin.
## 48549                                                                                                                                                EE was attempting to take a chair away from a patient, when patient threw chair at hct, EE hit knee on coffee table
## 48550                                                                                                                                                                  EE was attempting to take a subject into custody when he became combative. Sprained to left knee.
## 48551                                                                                                                                                                                                  EE was attempting to take cigarettes from patient and was hit 2x.
## 48552                                                                                                                                   EE was attempting to take dwi suspect into custodya struggle ensued between EE and suspect causing an injury to EE's right knee.
## 48553                                                                                                                                                    EE was attempting to take patient to class when the patient became resistant.... EE hit knee duringaltercation.
## 48554                                                                                                                                                                                             EE was attempting to take pt's bp, pt swung arm & hit EE in stomach ()
## 48555                                                                                                                                                  EE was attempting to take restraints off of another inmate, inmate hit EE in the shoulder w/ a set of restraints.
## 48556                                                                               EE was attempting to theraputically communicate w/ patient. Patient also attempting self injurious behavior. Patient became agitated & hit EE on the left side of the nose/mouth. ()
## 48557                                                                                                                                                                        EE was attempting to train boars. Boar turned and hit at EE tearing pants and cutting thigh
## 48558                                                                                                                EE was attempting to transfer a blood specimen from specimen tube to a serum separator tube usingsyringe, the needle tip pricked end of 3rd lt fing
## 48559                                                                                                                                                               EE was attempting to transfer resident from bed to lumex chair. Resident hit EE in face with fist ()
## 48560                                                                                                                  EE was attempting to transfer resident from wheel chair and shoe string got tangled on wheel chair. EE almost fell, catching herself she got cut.
## 48561                                                                                                                                                           EE was attempting to turn client while dressing client and EE noted pain in hand and radiating in elbow.
## 48562                                                                                                                                    EE was attempting to turn left when an on-coming car collided with him. No serious injury to EE just body soreness & stiffness.
## 48563                                                                                                                                                                                               EE was attempting to turn on lights and received an electrical shock
## 48564                                                                                                                                            EE was attempting to uload 55 gallon drum when hishand slided against plywood wall causing a splinter in l top of hand.
## 48565                                                                                                                                                                               EE was attempting to unclog a blockage in a leaf- shredder and cut the top of finger
## 48566                                                                                                                  EE was attempting to unclog the sink drains at which time were separating the vent pipe from the drain pipe EE felt a burning sting in lower back
## 48567                                                                                                                  EE was attempting to uncover well head. Concrete tile was placed over well with a concrete cap and while trying to slide lid to side. Strain ribs
## 48568                                                                                                                    EE was attempting to unlock a door & sometimes they are hard to open & when he pulled latch the door did not open & he felt sharp pain in back.
## 48569                                                                                                                                                                            EE was attempting to unlock door while holding a computer monitor. Left leg above knee.
## 48570                                                                                                                                                                        EE was attempting to unlock the building when the key jammed causing EE to cut index finger
## 48571                                                                                                                                                  EE was attempting to use pepper mace on inmate he struck on right hand with what appeared to be a homemade knife.
## 48572                                                                                                                                      EE was attempting to verify address of a probationer; as she approached door, dog came up from behind and bit her right elbow
## 48573                                                                                                                                                  EE was attempting to walk down a flight of stairs in exhibit & lost footing, fell hurting rt hand & lt foot/ankle
## 48574                                                                                                                                                                                      EE was attempting to walk down steps when his feetslipped out from under him.
## 48575                                                                                                                            EE was attempting to walk thru sallyport door when door began closing, catching her between the door and door frame. Injury to shoulder
## 48576                                                                                                                                      EE was attempting to wash her hands when she pushed palms of rt hand against the tip of the soap dispenser causing a puncture
## 48577                                                                                                                                                                              EE was attempting to withdraw blood from cats vein when cat got loose and bit EE hand
## 48578                                                                                                                                                                        EE was attempting to work on inmates teeth and he grabbed her rt wrist and would not let go
## 48579                                                                                                                           EE was attempting toplace client in wheelchair andwheelchair moved and EE stepped to keep client from falling and noted pain in lt knee.
## 48580                                                                                                                                        EE was attempting training procedure involving falling off bike and drawing weapon. EE fell off bikeand hit head on ground.
## 48581                                                                                                                                              EE was attemptinh to prevent assault scratched on lt hand and fell against lt wrist/hand, punched on lt side of face.
## 48582                                                                                                                       EE was attemtping to get charts from filing cabinet, closing drawer and opening another when the file cabinet pinned EE between it and chair
## 48583                                                                                                                               EE was attendin gthe employee luncheon during one of the activities he fell and hit his hand on the ground resulting in busted thumb
## 48584                                                                                                                                                                                           EE was attending a ceu course and scraped top of foot on the pool floor.
## 48585                                                                                                                                                                                                              EE was attending a class and became hot and passedout
## 48586                                                                                                                                   EE was attending a community meeting at happy hills garden public housing complex. EE tripped and fell on sidewalk when leaving.
## 48587                                                                                                                                                             EE was attending a conference and slipped on the wet street from the rain on the way back to the hotel
## 48588                                                                                                                       EE was attending a district meeting at the rollingiver community center. EE passed by fireextinguisher mounted on the wall it fell on rt leg
## 48589                                                                                                                         EE was attending a family conference @ eckerd campfor a juvenile in placement. EE came out of the blvdg & step were icy causing EE to fall
## 48590                                                                                                                                                                                        EE was attending a meeting and tripped over box and hip hit the door frame.
## 48591                                                                                                                                                            EE was attending a meeting and upon leaving the meeting EE tripped and fell over sidewalk. Injuredknee.
## 48592                                                                                                                                         EE was attending a meeting, sitting on floor in front of metal storage bin, bin door came open striking EE on top of head.
## 48593                                                                                                                                                                                    EE was attending a pesticide meeting when he was bitten by a spider on the neck
## 48594                                                                                                              EE was attending a regional training at wake tech EE was walking to her car, slipped on dirt gravel parking lot, fell on her left side injuring ankle
## 48595                                                                                                                EE was attending a self-defense training at djjdp training ctr in butner, nc. While performing a physical move during class, EE injured rt shoulder
## 48596                                                                                                                                                        EE was attending a training session and upon leaving the session EE slipped on steps and twisted her ankle.
## 48597                                                                                                                        EE was attending a training workshop when she was walking from a building stepped on a rock and twisted her lt ankle falling on her rt knee
## 48598                                                            EE was attending an on-duty training course on defensive tactics when the striking bag she was holding was struck by another officer and popped towards her mouth, knocking her dental bridge loose. ()
## 48599                                                                                                             EE was attending an unarmed self-defense session. Was practicing the ikio maneuver when his partner offered more resistance, causing back injury to EE
## 48600                                                                                                                                                                       EE was attending campus function when she tripped on uneven sidewalk and fell on right knee.
## 48601                                                                                                                                                                                               EE was attending cell extraction training and was kicked in the head
## 48602                                                                                                                          EE was attending cell extraction training. He was pinned to the wall during one of the exercises andhis right knee twisted the wrong way.
## 48603                                                                                                                                                                            EE was attending child seat clinic-checking child seat when he felt pain in lower back.
## 48604                                                                                                                                       EE was attending class in cameron hall and when she sat down, a bumble bee was in her chair and itstung her on the buttocks.
## 48605                                                                                                                                                EE was attending conference for department. EE got out of bed and tripped on ???, hitting head on conference table.
## 48606                                                                                                                         EE was attending court in gates county and went to Dr On 9/10/03-worked 9/9/03-9/11/03 called in sick on 9/12/03 stating ankle was hurting
## 48607                                                                                                                                                                                                                   EE was attending cpr classes when she passed out
## 48608                                                                                                                                                EE was attending firearms recertification training when spent shell popped up and struck EE's face and burned it ()
## 48609                                                                                                               EE was attending firearms recertification; when EE got there, someone else was finishing up their rifle qualifying. Resulting fire cause ear injury.
## 48610                                                                                                                                                   EE was attending initial pepper spray training, when she was sprayed with the pepper spray, she hyperventilated.
## 48611                                                                                                                  EE was attending mandatory crdt training--involves self defense moves. EE was injured when he fell during front break fall maneuver. Back injury.
## 48612                                                                                                                                  EE was attending mandatory firearms training and was struck by a bullet that ricocheted off a metaltarget post. Upper left thigh.
## 48613                                                                                                                                                       EE was attending officer training and during the oc spray class. EE was sprayed in face with 2 second burst.
## 48614                                                                                                                            EE was attending original taser certification; injury occured as a result of being exposed to taser. Left side of body nerve damage. ()
## 48615                                                                                                                                           EE was attending pert annual refreasher training EE was performing differnt strikes against bag when he injured his back
## 48616                                                                                                                                           EE was attending pert training, while performing different take down techniques and exercises EE injured right shoulder.
## 48617                                                                                                                                      EE was attending re certification traing EE states that while warming up for unarmed self defense he felt his back tighten up
## 48618                                                                                                                    EE was attending reception for deans at case ath- letic center. Caught heel on raised brick on side-walk and fell causing injury to left elbow.
## 48619                                                                                                                                EE was attending self defense training, while per-forming a training move, his arm got twisted, caus-ing pain in his right shoulder
## 48620                                                                                                                            EE was attending speaking engagement, was in serving line at buffet table. Did not see step down and EE fell and landed on her left leg
## 48621                                                                                                                      EE was attending tactical medic class and participated in a practical exercise. This consisted of carring a 190lb strectcher up a small hill.
## 48622                                                                                                                                                          EE was attending to functions for consumers, EE waskicked in the back by a consumer from another cottage.
## 48623                                                                                                               EE was attending to mule when she was kicked in the face by the animal. She suffered facial contu-sions, loss of consciousness and facial abrasions.
## 48624                                                                                                                                          EE was attending training in charlotte and was parking his vehicle when he was rearended by another vehicle-strained back
## 48625                                                                                                                   EE was attending training of hwy patrol drug dogs in bite work. EE had on a protective sleeve however dog's tooth pierced his hand under sleeve.
## 48626                                                                                                               EE was attending unarmed self defense training, while doing rock/roll exercise EE stated that kneewas hurting and swelling while performing exercise
## 48627                                                                                                                                                 EE was attending unarmed self defense when partnerplaced her in hold that caused her to twist her left hand/wrist.
## 48628                                                                                                                                 EE was attending unarmed self-defense class doing warm-up exercise of jumping jacks. EE went up and something snapped in left knee
## 48629                                                                                                              EE was attenmpting to remove a large rook from thepaved shoulder onto grass; felt a pull in his back; later experienced severe pain btwn shldr blades
## 48630                                                                                                                           EE was attenpting to restrain a student from fighting w/another student when EE stepped backwards and lost balance falling to the floor.
## 48631                                                                                                                                                                               EE was attmepting to move a shower mat by pushing it with his right leg. Right knee.
## 48632                                                                                                             EE was attmepting to pick up a piece of computer equipment in her office and while reaching for it tripped over a computer speaker, landing on her wri
## 48633                                                                                                                           EE was avoiding a veh which pulled into her path which caused EE to swerve and sideswipe another veh causing glass to cut arms and face.
## 48634                                                                                                                                                                                              EE was avoiding combative resident and tripped andfell straining back
## 48635                                                                                                                                                      EE was back horse into stacks and horse spooked lead rope caught EE's finger and horse stepped on her rt foot
## 48636                                                                                                                     EE was back packing in the pisgah forest, slipped hiking down spencer ridge trail, fell forward hitting head on rock. Cut & contusions forhead
## 48637                                                                                                                                                                 EE was backing a residents into theor room and EE hand was caught between the door and wheelcahir.
## 48638                                                                                                                                                                         EE was backing away from a student swinging a piece of glass and EE fell and injured knee.
## 48639                                                                                                                                                EE was backing cart down ramp and ran cart handle and his thumb into delivery van tearing the end of his thumb off.
## 48640                                                                                                                                                                                              EE was backing down stairway in control room and sprain her rt ankle.
## 48641                                                                                                                    EE was backing floor scrubber off back of truck when self propel lever got stuck/pushing EE off back of truck lift/EE jumped to ground/lt ankle
## 48642                                                                                                                                              EE was backing golf cart, she looked backwards and the golf cart hit a pole on the porch causing the cart to shut off
## 48643                                                                                                                                                     EE was backing inmates off the side to load bus, when he stepped into hole up to his rt knee, injured rt knee.
## 48644                                                                                                                                           EE was backing machine out of the stone room then the machine was on run and it jammed him on the door. Injured abdomen.
## 48645                                                                                                                                 EE was backing out of a classroom while removing ac unit with another EE. He smashed his right hand into a door jam causing a gash
## 48646                                                                                                                                       EE was backing out of freezer, failed to realize he was near the end & missed step down to exit freezer. Injured left elbow.
## 48647                                                                                                                      EE was backing out of room mopping-got hung in iv pole-EE got free from that then bumped in to food tray, lost balance and fell into bed rail
## 48648                                                                                                                               EE was backing out of the exterior door when she caught her heel on the threshold and fell back on concrete porch. Multiple injuries
## 48649                                                                                                                                                                           EE was backing out with hand truck and tripped over couch and fell on back and left side
## 48650                                                                                                                                           EE was backing the state vehicle when he struck a bee nest causing bees to sting him on the rt and lt arm, neck and hand
## 48651                                                                                                                                                   EE was backing to room transporting client and caught rt leg on bed and fell backwards-injury to rt leg and ribs
## 48652                                                                                                                                                                     EE was backing up - shoe sole gripped to floor & EE fell hurting right hand when hitting floor
## 48653                                                                                                                                               EE was backing up and tripped over the doorway fell and hit her head on the sidewalk. Injured head, knee, arm, back.
## 48654                                                                                                                                                     EE was backing up golf cart and backed into rail causing left ankle and leg to jam between golf cart and rail.
## 48655                                                                                                                                      EE was backing up on trailer when hand rail caught leg and EE flippped over backwards hitting pavemton rt buttocks nad wrist.
## 48656                                                                                                                                                                              EE was backing up rolling a book truck, book truck rolled over her toe and bruised it
## 48657                                                                                                                                                           EE was backing up the pu and hit a telephone pole and knocked off the street light - strained lower back
## 48658                                                                                                                                                               EE was backing up to avoid student who was throwing a rock and tripped over a rock and fell backward
## 48659                                                                                                                                         EE was backing up while blowing leaves and caught his heel on a retaining wall. He then fell over the wall. Injury to back
## 48660                                                                                                                                                    EE was backing up while guarding inmates assigned to the #1 road squad EE stepped in hole inhuring his rt ankle
## 48661                                                                                                                           EE was backing up, stepped out of a slip on shoe, lost balance & fell, landed on left side. Injured left pelvic & hip pain down to knee.
## 48662                                                                                                                                                                EE was backpacking with the blower, blowing debris & stepped off brick edge wrong. Injured rt foot.
## 48663                                                                                                                                                                                                EE was bagging fries when her right hand touched the hot heat lamp.
## 48664                                                                                                                                                           EE was bagging instruments for sterilization. Surgical gown grazed dental explorer. Scratch on right arm
## 48665                                                                                                                                                                                             EE was bagging sausage sandwiches and thumb got sore started swelling.
## 48666                                                                                                                                                     EE was bagging up inmate's property and she attempted to lift a heavy bag of books, and twisted her lower back
## 48667                                                                                                                   EE was baiting crab pots for research project, wassinking in mud and in trying to extricate himself, brushed against an oyster rock and was cut.
## 48668                                                                                                                                                                                                    EE was bandaging a cats leg and the cat bit her rt index finger
## 48669                                                                                                                                                                                                      EE was bandaging a horse's limbs and horse kicked left wrist.
## 48670                                                                                                                                                                                  EE was bathing a client in the shower in the showerroom and fell into the railing
## 48671                                                                                                                                                                                             EE was bathing a client lt breast bumped against the edge of the door.
## 48672                                                                                                                                                  EE was bathing a client when he started to fall. EE reached to break client's fall and was caught underneath him.
## 48673                                                                                                                                                                                                 EE was bathing a client when she noticed pain in her left shoulder
## 48674                                                                                                                                                                                                EE was bathing a client which became aggressive. Injured lower back
## 48675                                                                                                                                                 EE was bathing a client, she slipped on the bathroom floor causing unspecified injury to hip (left, right unknown)
## 48676                                                                                                                                      EE was bathing a client, she stood up and felt a pain in her hip. EE seen at er diagnosed with arthritis and left hip strain.
## 48677                                                                                                                                                                              EE was bathing a patient that was pulling/tusslingand EE felt something pull in back.
## 48678                                                                                                                                                                                 EE was bathing a resident and EE rooled resident and EE felt a pain in lower back.
## 48679                                                                                                                                      EE was bathing a resident the resident resisted & fell to the floor, while trying to get resident upee pulled muscle in back.
## 48680                                                                                                                                                                        EE was bathing client & slipped on water & fell hitting head on sink then fell on concrete.
## 48681                                                                                                                                                                     EE was bathing client and EE feet started to slippand EE caught her from behind. Injured back.
## 48682                                                                                                                                            EE was bathing client and client became upset and started swinging arms hitting self and accidently hit EE in left eye.
## 48683                                                                                                                                                         EE was bathing client and client slid down in shower and EE finished the bath and felt pain in lower back.
## 48684                                                                                                                                                                                                                 EE was bathing client and felt pull in lower back.
## 48685                                                                                                                                            EE was bathing client and felt what was thought tobe a mosquito biting, hit at it and looked and it was a black spider.
## 48686                                                                                                                                                                             EE was bathing client and rolled from one side to the other felt pull in low back area
## 48687                                                                                                                                                                                           EE was bathing client and trying to keep client in shower. Pain in chest
## 48688                                                                                                                          EE was bathing client hen client began having a behaviior problem and attempted to get out of tub. Client started hitting EE in the back.
## 48689                                                                                                                                                                                       EE was bathing client on bathing table. Client pulled EE's right thumb back.
## 48690                                                                                                                    EE was bathing client trying to wash under arms and body. Patient was on bath stretcher durhing shower. Injury to left shoulder, left arm/elbow
## 48691                                                                                                                                                                     EE was bathing client when client became agressive. EE injuredher lower back while lifting EE.
## 48692                                                                                                                                                                                                      EE was bathing client when he felt a sharp pain inlower back.
## 48693                                                                                                                                                                                                          EE was bathing client when pain was felt in back and legs
## 48694                                                                   EE was bathing client who has severe scoliosis. Client became resistant, started moving and hit EE when she turned the client. EE felt pain in neck, back, chest and shoulder on the right side.
## 48695                                                                                                                                                                         EE was bathing client, turned client to bath her back and felt pull/pain in left shoulder.
## 48696                                                                                                                                                                                          EE was bathing client. Client became agitated and stomped EE's left foot.
## 48697                                                                                                                                                  EE was bathing client. When EE rolled client over so that she could wash her back, EE felt a pain in her back. ()
## 48698                                                                                                                                                      EE was bathing consumer and transferring him to a wheelchair when he slid and EE caught him and strained back
## 48699                                                                                                                                                                                    EE was bathing inmate, inmate became combative hitting EE, then spit in EE face
## 48700                                                                                                                                                       EE was bathing patient when pt began striking EE when EE tried to restrain patient she twisted herlower back
## 48701                                                                                                                        EE was bathing patient. Pt lost her balance grabbed EE's hair. EE fell to her right knee & pt fell on top of her. Red & swollen right knee.
## 48702                                                                                                                                                                                                                  EE was bathing resident and EE felt pain in hand.
## 48703                                                                                                                                                           EE was bathing resident and he became aggressive and agitated, bite on ring finger on 2 different places
## 48704                                                                                                                                                     EE was bathing resident and resident swung her arm and struck EE in the mouth bruising lip nad loosening crown
## 48705                                                                                                                                  EE was bathing resident and was struck in the stomach then was kicked by another resident felt pressure in stomach-EE is pregnant
## 48706                                                                                                                                                        EE was bathing resident in the shower and she felt a sharp pain between her shoulder blades nad upper back.
## 48707                                                                                                                                                EE was bathing resident when he scratched her, skin was not broken. Staff person returned to job, but did see nurse
## 48708                                                                                                                                      EE was bathing resident when he wrapped his arm around EE causing her to fall and hit back in chair - EE is 32 weeks pregnant
## 48709                                                                                                                                                                                              EE was bathing resident who was arching and kicking and strained back
## 48710                                                                                                                               EE was battling an engine fire, either the batteryor tires exploded and EE was 2-3 ftawaay from the car. Produced a very loud noise.
## 48711                                                                                                                                            EE was beat by patient being placed in hold EE was hit w/chair to the back area rehab- paula howard 919-845-2577-closed
## 48712                                                                                                                                        EE was beaten up by 6 students trying to escape- lacerated eye, rt hand pain, multiple contusions **rehab- maureen ortega**
## 48713                                                                                                                                                                      EE was beaten up by four inmates--suffers facial contusion-broken teeth/loss of teeth, fx jaw
## 48714                                                                                                                                                                                 EE was beating drain screen to remove debris, piece of debris flew into EE eye. ()
## 48715                                                                                                                                                                                                     EE was beating out a shaft on a air handler and hurt shoulder.
## 48716                                                                                                                                                                                                 EE was bednign down to pick up patient shoes and injured her back.
## 48717                                                                                                                                                                                                EE was bedning over desk to pick up piece of paperand injured back.
## 48718                                                                                                                                                               EE was bee stung while on post as yard officer- didn't notice the stings until returned inside bldg.
## 48719                                                                                                                                                                           EE was been having discomfort in left lower back. EE was pulling and tugging on patient.
## 48720                                                                                                                EE was beging trained in defensive tectics. Impactwith floor, extension of hand wrist joints. Rt hand was injured causing swelling of back of hand.
## 48721                                                                                                                                  EE was begining to strip the floor, reach down to adjust the buffer, foot slipped, fell to the floor, landed on his left shoulder
## 48722                                                                                                                         EE was beginning curfew checks with officer mcphatter when he came to an intersection & stopped but was too far out in road struck by van.
## 48723                                                                                                                                                                     EE was beginning his routine cleaning assignment in picking up mop bucket he twisted his wrist
## 48724                                                                                                                             EE was beginning regular lunch break, as he sat down in chair to eat, the legs collasped, EE fell tofloor. Back and buttocks are sore.
## 48725                                                                                                                                                                       EE was beginning the tooth brushing process when client grabbed left hand and bit left thumb
## 48726                                                                                                                 EE was beginning to remove the hand cuffs from inmates pulled his handcuffed hands back insude cell while EE lt hand was still holding rt handcuff
## 48727                                                                                                                                                                                                             EE was beginning to walk down stairs and fell 11 steps
## 48728                                                                                                                     EE was behind another veh at stop sign making a left turn when another veh hit veh in the rear causing veh to cross ctr line of traffic hit EE
## 48729                                                                                                                                                                           EE was behind desk and turned to place bedspreads on fllor and hit drawer with right leg
## 48730                                                                                                              EE was behind dorm three with an inmate who was using glass cleaner to clean the windows after 30minshe developed an itch eyes began to burn swelling
## 48731                                                                                                                                                 EE was behind him and he attempted to drop staff went down him to protect him from injury. Wrist popped - lt wrist
## 48732                                                                                                                                         EE was behind vehicle spotting driver. Vehicle continued in reverse and bumper struck EE and leg scraped small brick wall.
## 48733                                                                                                                                        EE was behing client helping client onto golf cartride-client head butted backward- striking EE in the head and near rt eye
## 48734                                                                                                                      EE was behing door getting cane and was bumped by an EE coming in the door causing him to fall and strike his head on the chair leg and floor
## 48735                                                                                                                                                                                       EE was being a patient during a training and hand was twisted underneath EE.
## 48736                                                                                                                                                                         EE was being attacked by a client who was assaulting another client-injury to rt wrist/arm
## 48737                                                                                                                       EE was being attacked by client when the EE grabbed the clients hands so client could not hit client lunged forward & headbutted EE in nose.
## 48738                                                                                                                                                                   EE was being decontaminated after being sprayed with oc pepper spray and EE scratched right eye.
## 48739                                                                                                                                                                            EE was being driven by her daughter to work when they were rear-ended by another driver
## 48740                                                                                                                                                            EE was being dropped off at work, when she opened the van door to get out, she fell onto the ground. ()
## 48741                                                                                                                     EE was being exposed to a deployment of a taser in law enforcement training which casues the muscles to contract and injured left shoulder. ()
## 48742                                                                                                                                                                                                          EE was being exposed to moldy environment in the library.
## 48743                                                                                                                                                                                          EE was being extracted from training vehicle and thumb was caught in seat
## 48744                                                                                                                                                    EE was being forced off the road by suspect who had grabbed the steering wheel and EE had to strike the suspect
## 48745                                                                                                                                                                                                              EE was being fought by patient and kicked in the chin
## 48746                                                                                                                                                        EE was being inoculated with third in series of hepatitis vaccines, needle struck a nerve in upperleft arm.
## 48747                                                                                                                                                                                    EE was being lifted when staff fell backwards causing EE to twist her shoulder.
## 48748                                                                                                                                       EE was being relieved from tower when his lt foot slipped off the stairs & his lt knee hit against the rail. Injured lt knee
## 48749                                                                                                                                                     EE was being seen for scratch by client. EE went to lab to draw blood nurse hit a nerve EE had burning in arm.
## 48750                                                                                                                                                                EE was being showed the proper way to urge unarm defense and he injured his elbow tendon of tricep.
## 48751                                                                                                                  EE was being sprayed with an indirect hit of peppespray. The instuctor sprayed the pepper spray & some of it went into her left ear causing burns
## 48752                                                                                                                                                                   EE was being stood up in a handcuff position and heard a pop in knee during a training practice.
## 48753                                                                                                                           EE was being the subject durhing weekside takedownmove with baton. Right wrist was bent beyond normal flexibility. Strain to right wrist
## 48754                                                                                                                    EE was being trained on how to use a buffer. She was wearing rubber boots and did not touch the chemical. About 2 1/2 hours later lips swelled.
## 48755                                                                                                                                                            EE was being transported by supervisor and car was rearended by another vehicle- strained back and neck
## 48756                                                                                                                           EE was being transported frm one job to another job site when driver of the van in which he was a passenger failed to stop for stop sign
## 48757                                                                                                                  EE was being trasported form one field sight to another felt sharpe pain in lower left side of back. Moving pieces of wood felt pain in same area
## 48758                                                                                                             EE was bending a pipe for a rollbar car and the end of the pipe popped out of the bender. His rt hand was on the other end; slmed agnst what he was on
## 48759                                                                                                                                                                                                          EE was bending and overextended big toe on his right foot
## 48760                                                                                                                                                                                                                  EE was bending back to load food trays in van. ()
## 48761                                                                                                                                                            EE was bending down applying leg irons to an inmate when he stood up he felt something pop in his knee.
## 48762                                                                                                                                                                                                               EE was bending down in linen barrel and strined back
## 48763                                                                                                                                                                           EE was bending down picking up a box when another EE opened door, door hit EE in head ()
## 48764                                                                                                                                                                 EE was bending down picking up some cards when a student kicked her on the left side of her breast
## 48765                                                                                                                                                                 EE was bending down pulling flowers out of flower bed and went to stand up when his back gave out.
## 48766                                                                                                                                                     EE was bending down removing leg iron from inmate when she stood up and back popped. Pain on lower right side.
## 48767                                                                                                                                                                    EE was bending down searching an inmate's locker when she felt a sharp pain in her upper thigh.
## 48768                                                                                                                                                EE was bending down to ask c/o edwards a question and key drawer lid fell and hit EE on the head cutting rt eyebrow
## 48769                                                                                                                                                                                    EE was bending down to assist with patient on stretcher and strained lower back
## 48770                                                                                                                                                   EE was bending down to check heart monitors and upon rising up EE heard a crunch noise and felt pain in lt knee.
## 48771                                                                                                                                              EE was bending down to clean debris under a lavatory when he attempted to stand up he heard a pop in his lt knee area
## 48772                                                                                                                                                                                  EE was bending down to clip resident's alarm, when resident hit EE in the chin ()
## 48773                                                                                                                                                                                     EE was bending down to connect pc to power and network socket, lt knee popped.
## 48774                                                                                                                                                                          EE was bending down to empty water from cooler and as he stood up EE strained lower back.
## 48775                                                                                                                                                                                  EE was bending down to get a chart off the bottom rack and felt a pop in low back
## 48776                                                                                                                                                                         EE was bending down to get a trashbag from janitor's closet, hit head on a protruding bolt
## 48777                                                                                                                                                                                                         EE was bending down to grab tarp when stick punctured eye.
## 48778                                                                                                                                               EE was bending down to inspect under a van as she stood back up she felt a pop in her calf & experienced severe pain
## 48779                                                                                                                                                        EE was bending down to kift acutter head to a johndeer cutter as he was lifting it he heard his rt knee pop
## 48780                                                                                                                                                                                                                 EE was bending down to lift door and strained back
## 48781                                                                                                                                                                                          EE was bending down to open bottom cabinet and hit back on protruding box
## 48782                                                                                                                                                         EE was bending down to pick items from floor and when she raised up her head struck a wooden box container
## 48783                                                                                                                                                                                                               EE was bending down to pick up a box & injured back.
## 48784                                                                                                                                                                                                         EE was bending down to pick up a pan, back went out on EE.
## 48785                                                                                                                                             EE was bending down to pick up a piece of paper under the bed when EE felt pain run through hips and down back of leg.
## 48786                                                                                                                                                                                          EE was bending down to pick up cages. EE's leg gotcaught on side of door.
## 48787                                                                                                                                                                                            EE was bending down to pick up dress off of floor and felt snap in back
## 48788                                                                                                                                                                                EE was bending down to pick up leaves, heard his left knee pop and felt discomfort.
## 48789                                                                                                                                                                                                    EE was bending down to pick up radio on floor and strained back
## 48790                                                                                                                                                                                     EE was bending down to pick up some boxes and felt a pull in his lower stomach
## 48791                                                                                                                                                                             EE was bending down to pick up some towel when she felt a twist or pull in her lt knee
## 48792                                                                                                                         EE was bending down to pick up trash near the display cases when she hit her head on the corner of the display case on the way back up. ()
## 48793                                                                                                                                                                      EE was bending down to pick up tray of dough. Whenshe did she felt a strong pain in her back.
## 48794                                                                                                                                                                            EE was bending down to plug in christmas tree lights and experienced pain in upper back
## 48795                                                                                                                                                                           EE was bending down to put a rack under the sink- stood up and felt a pain in lower back
## 48796                                                                                                                                                                                            EE was bending down to put socks on resident. Feltsomething pop in back
## 48797                                                                                                                             EE was bending down to reach keys that fell under desk, came up from bending down and got a pain, as the morning went on it got worse.
## 48798                                                                                                                                                                                                         EE was bending down to restrain patients leg, pulled back.
## 48799                                                                                                                                                               EE was bending down to retreive a water bottle from a cooler when he struck his head on the car door
## 48800                                                                                                                                                                                EE was bending down to search an inmate and pulledmuscle in his back. Lumbar strain
## 48801                                                                                                                                                                                 EE was bending down to sweep trash into dust pan and felt sharp pain in her lt leg
## 48802                                                                                                                                                            EE was bending down to take chart out of rack and stood up and smashed tailbone on corner of the table.
## 48803                                                                                                                                                                                EE was bending down to tie, stepped on shoe string snd lost balance and struck eye.
## 48804                                                                                                                                  EE was bending down to unplus computer and put hand down to hold himself, he slipped and fell with his body weight on lt shoulder
## 48805                                                                                                                      EE was bending down trying to turn off the faucet in the housekeeping closet in belk hall and stood up and hit her head on a ceiling pipe. ()
## 48806                                                                                                                                                                                                                                        EE was bending down when ,.
## 48807                                                                                                                                                                                                  EE was bending duct w/the break, finger caught between the break.
## 48808                                                                                                                                                                                             EE was bending examining a cooker when his head struck the lift handle
## 48809                                                                                                                        EE was bending forward into the trunk of his state vehicle when his supporting hand slipped causing him to fall forward injuring his rt leg
## 48810                                                                     EE was bending from a seated position in a chair, and the chair slid out from under him and fell. He hit one of the position-adjustment handles on the chair with the leftside of his back. ()
## 48811                                                                                                                                                                                   EE was bending in front of cabinet when he stood up he felt pain in this rt knee
## 48812                                                                                                                                        EE was bending materials and bent down to pick up some papers, the chair rolled back and EE fell. Injured back, hand, ribs.
## 48813                                                                                                                                                                      EE was bending over and placing clothes bundles for inmates on the bars.... Felt pop in back.
## 48814                                                                                                                                                                                                EE was bending over and stood up and something in lower back pulled
## 48815                                                                                                                                                                               EE was bending over and when she went to stand up she felt a pull in her lower back.
## 48816                                                                                                                                                                                     EE was bending over cleaning day room and something pulled in rt side of back.
## 48817                                                                                                                                                                                                   EE was bending over cutting patient's toenails and strained back
## 48818                                                                                                                                                                   EE was bending over cutting with the skill saw andlifted shelves and felt something snap in back
## 48819                                                                                                                                        EE was bending over drying resident after bath. Resident kicked at EE. EE lost balance and fell against wall. Low back pain
## 48820                                                                                                                                                                                              EE was bending over file drawer and pulled a muscle when she stood up
## 48821                                                                                                                                                                          EE was bending over in a twisting motion & a pain started in EE lt hip and lower shoulder
## 48822                                                                                                                                                                              EE was bending over leaning, left eye began to hurt, noticed blood vessel had popped.
## 48823                                                                                                                                                                                         EE was bending over picking up & moving boxes whenher right knee gave way.
## 48824                                                                                                                                                                                EE was bending over picking up a bar of soap and twisted his back when he stood up.
## 48825                                                                                                                                                 EE was bending over putting hand cuffs on inmates under the door on the 13th floor he had to do this several times
## 48826                                                                                                                                                              EE was bending over putting trash in trashbag stood up and felt sharp pain in back could not stand up
## 48827                                                                                                                                                                                                                 EE was bending over replacing plants in container.
## 48828                                                                                                                                                                                                          EE was bending over residents and was bitten by an insect
## 48829                                                                                                                                                                         EE was bending over to adjust attachemnt to exit door and sneezed, experienceing back pain
## 48830                                                                                                                                                           EE was bending over to assist a client and client began to kick EE in the face. Injury to the face/ jaw.
## 48831                                                                                                                                                                                          EE was bending over to cover child during rest time and strained low back
## 48832                                                                                                                                     EE was bending over to get a big box of bulbs, & parcel Dr Was open which EE was unaware. EE came up & hit head on parcel door
## 48833                                                                                                                                                            EE was bending over to get a can of juice and the juice fell off top shelf striking EE's left shoulder.
## 48834                                                                                                                                             EE was bending over to get paperwrk out of bottom of desk, when came back up felt sharp back pain radiating into l leg
## 48835                                                                                                                                                                                                 EE was bending over to help resident dress and strained lower back
## 48836                                                                                                                                                                                          EE was bending over to pick up a box and felt pain shoot through her back
## 48837                                                                                                                                                           EE was bending over to pick up a bucket of feed when he felt pain in his lower back area no 18 filed yet
## 48838                                                                                                                                                                                              EE was bending over to pick up a concrete curring..... Lower mid back
## 48839                                                                                                                                                          EE was bending over to pick up a mop bucket to pour the water out when something popped in his lower back
## 48840                                                                                                                                                                             EE was bending over to pick up a newspaper and noticed a sharp pain in his lower back.
## 48841                                                                                                                           EE was bending over to pick up a parcel, as he was in the process of picking up the parcel he twistedhis wrist the wrist began to swell.
## 48842                                                                                                                                                                       EE was bending over to pick up a trash bag, when hesuddenly felt a pain in his back. Strain.
## 48843                                                                                                               EE was bending over to pick up an eraser that fellon the floor & the dry erase board fell on top of her back & then fell over her head. Hitting head
## 48844                                                                                                                                                                                                                   EE was bending over to pick up box, back popped.
## 48845                                                                                                                                                                                           EE was bending over to pick up dog and dog lunged and bit EE on the chin
## 48846                                                                                                                                                                                                         EE was bending over to pick up empty tin and back went out
## 48847                                                                                                                                                                                 EE was bending over to pick up tool and bumped head on light fixture and cut head.
## 48848                                                                                                                                                                                          EE was bending over to pick up vest when he felt a sharp pain in his back
## 48849                                                                                                                                                                                        EE was bending over to place a heavy book on bottom shelf and injured back.
## 48850                                                                                                                                         EE was bending over to place ankle restraints on on an inmate, when he stood back up he had severe pain in his lower back.
## 48851                                                                                                                                                                               EE was bending over to pull carpet up from the floor and hurt my back and both arms.
## 48852                                                                                                                                                                    EE was bending over to re-stock cups in the holders near the register and strained her back. ()
## 48853                                                                                        EE was bending over to remove a few serological pipettes from drawer to the left of the biosafety hood. When she got them, she stood up and hit head on outside of hood. ()
## 48854                                                                                                                                      EE was bending over to remove an electronic module from a 2010 dodge charger and felt pain in his lower left side of back. ()
## 48855                                                                                                                                   EE was bending over to remove restraints from an inmate's ankles & accidently bumped his forehead on the latch of the cell door.
## 48856                                                                                                                                      EE was bending over to retrieve a pen and his head impacted with the head of a small nail sticking out of a bulletin board ()
## 48857                                                                                                                                           EE was bending over toilet with toilet brush when the EE felt a sharp pain in back. The EE stood up & went to get aleve.
## 48858                                                                                                                                        EE was bending over tub, brused cup of betadine that had blood on edge of cup which spilled onto her left side of clothing.
## 48859                                                                                                                                                                                          EE was bending over when EE stood up the pain took his breath away. Back.
## 48860                                                                                                                                                                                          EE was bending over when he lost his balance and hit his head on the wall
## 48861                                                                                                                                                                                                                    EE was bending over when she felt pain her back
## 48862                                                                                                                                                                                                           EE was bending over when she felt pain in his lower back
## 48863                                                                                                                                                                            EE was bending over with a bag of dog food & he felt a sharp pain in his lower back. ()
## 48864                                                                                                                                                                                                                    EE was bending pipe and had sharp pain in back.
## 48865                                                                                                                                             EE was bending rebar and rebar and shifted releasing the pipe uses for leverage EE fell on lt arm injuring lt shoulder
## 48866                                                                                                                                                   EE was bending to assist patient & felt a burning pain from the center of her lower lumbar region to both sides.
## 48867                                                                                                                                           EE was bending to attach wheelchair straps to the floor of van, employee stood up & felt a sharp pain in his lower back.
## 48868                                                                                                                                                                                   EE was bending to clean the wall around the toilet& felt pain in her lower back.
## 48869                                                                                                                                                                                                  EE was bending to clean toilet when she stood up her back hurt ()
## 48870                                                                                                                                         EE was bending to get out of truck and struck back against overhead bar of truck. Muscle spasm and contusion to upper back
## 48871                                                                                                                                                                                                                               EE was bending to lift box of paper.
## 48872                                                                                                                                                                             EE was bending to open lower drawer and later noticed pain in lower back and neck area
## 48873                                                                                                                                                                                                EE was bending to pick paper up off of floor and felt left knee pop
## 48874                                                                                                                                                                                EE was bending to pick something up and hit head on sharp object as she was bending
## 48875                                                                                                                                          EE was bending to pick up the matador cord out of the stripper floor when she slid and fell down landing on left knee. ()
## 48876                                                                                                                                                                                                                EE was bending to pick up water hose; back gave way
## 48877                                                                                                                                                                                     EE was bending to remove some property from under a bunk and twisted his back.
## 48878                                                                                                                                                                                                       EE was bending to remove student from pool and strained back
## 48879                                                                                                                                                                        EE was bending to retrieve an object from cabinet when he felt pain in his center back area
## 48880                                                                                                                                                            EE was bending to retrieve supplies when she stoodup she struck the lt side of her face with the locker
## 48881                                                                                                                                                                                EE was bending to touch toes during exercise training and ruptured disc in his back
## 48882   EE was bending, squatting and lifting files from cabinets and boxes in preparation for federal audit. While pulling files, EE suddenly began to have pain and weakness in her right hip. EE mentioned that this condition began sometime in 2010 when she..... (
## 48883                                                                                                                                                                                                 EE was bending, unloading groceries when her back started hurting.
## 48884                                                                                                                                                                                   EE was benidng over doing cell search. EE stated pain occurred when he stood up.
## 48885                                                                                                                                                                                          EE was bent at waist turning boiler valve down andpain in lower back area
## 48886                                                                                                                                                       EE was bent down dressing resident & went to standup, pain went through back and EE could not straighten up.
## 48887                                                                         EE was bent down placing rubber mats in the scullery, EE walked up behind him/let out a yell as her pans were falling, this startled EE causing him to turn quickly twisting his r knee ()
## 48888                                                                                                                              EE was bent down pulling files and lost balance falling forward into cabinet-heard snap and felt sharp burning pain in middle of foot
## 48889                                                                                                                                                                    EE was bent down putting papers in file cabinet, raised up hitting head on hanging bookshelf ()
## 48890                                                                                                                                                EE was bent down to empty pan that patient was soaking feet in, when she came up her badge hit her in her right eye
## 48891                                                                                                                                                                  EE was bent down to plug in projector and screen fell off of wall and struck EE in the upper back
## 48892                                                                                                                EE was bent over a resident's water bed and was changing his diaper when he rolled away from her causing water to shift. EE stretched to go with pt
## 48893                                                                                                                                         EE was bent over getting inserts off tray, cartperson came by hitting her, causing her to fall landing on her left knee ()
## 48894                                                                                                                                    EE was bent over helping a student close his computer, when another student came from behind and hit EE in lower with his fist.
## 48895                                                                                                                                                                      EE was bent over in store room reaching for a box when 2 stacks of car seats fell on her back
## 48896                                                                                                                          EE was bent over in the trunk of his vehicle moving a plastic container. EE stated he felt a movement in his lower back with sharp pains.
## 48897                                                                                                                                                                                    EE was bent over looking a file in the cabinet andsomething popped in her back.
## 48898                                                                                                                                                                                       EE was bent over opening packages when EE stood upshe felt pop in lower back
## 48899                                                                                                                                                                  EE was bent over picking up horses leg and horse kicked EE into xray tube causing injury to head.
## 48900                                                                                                                                                                                                           EE was bent over picking up limbs and felt pain in back.
## 48901                                                                                                                                                                         EE was bent over pulling out file cabinet and lostbalance fell forward and twisted rt knee
## 48902                                                                                                                                                                           EE was bent over putting a cord cover over extension cord and strained inside left thigh
## 48903                                                                                                                                   EE was bent over to get dust pan from the storage area, cabinet door came open as she raised up she struck her head on the door.
## 48904                                                                                                                                                                                           EE was bent over to pick up a pan and something pulled in middle of back
## 48905                                                                                                                                                       EE was bent over to pick up some trash when she felt a pulling/twisting/stinging sensation in lower abdomen.
## 48906                                                                                                                                                                      EE was bent over to read lamp label on bed and the canopy came down and struck EE on the neck
## 48907                                                                                                                                                                                    EE was bent over to retrieved a case when he felt something tingle in back area
## 48908                                                                                                                                         EE was bent over tryin to get brief on pt, pt began leaning, pt got behind pt to prevent fall, weight of pt hurt EE's back
## 48909                                                                                                                                           EE was bent over trying to care for the patient and client started to pull back on his side and eeinjured back and side.
## 48910                                                                                                                                                                                    EE was bent over, backing to retreive file and she backed into corner of shelf.
## 48911                                                                                                                             EE was between two students who were fighting and the student/EE fell to the floor and EE struck hisshoulder on the desk as they fell.
## 48912                                                                                                                             EE was between wall & steam pipes feeding welding leads from basement of power plant up to outside, turned & hit head on valve handle.
## 48913                                                                                                                                                                                    EE was biking along trail with four clients and eegot stung by a yellow jacket.
## 48914                                                                                                                                                 EE was biking back to building because of thunderstorm and slipped on wet pavement and fell -rt shoulder contusion
## 48915                                                                                                                         EE was binding cedar siding to top of truck to transport to another work site when the straps came loose striking EE in the mouth/lip area
## 48916                                                                                                                                                                                EE was binding chains trailer with forklift when he twisted/strained his right knee
## 48917                                                                                                             EE was binding down a k-g blade with chain binder he used a piece of pipe to add to help close the binder the pipe slipped off & stuck rt side of head
## 48918                                                                                                                                                                                                                           EE was bit a spider... Right inner thigh
## 48919                                                                                                                                                                                                                       EE was bit an insect on her left leg and arm
## 48920                                                                                                                                                                                                              EE was bit and scratched by a cat while restraning it
## 48921                                                                                                                                                                                                                 EE was bit by a bear... Right middle & ring finger
## 48922                                                                                                                                                                                              EE was bit by a canine patient while removing an endotracheal tube ()
## 48923                                                                                                                                                                                       EE was bit by a cat while trying to restrain the animal for a blood draw. ()
## 48924                                                                                                                                                                                                                            EE was bit by a cat... Righ thumb joint
## 48925                                                                                                                                                                                                                          EE was bit by a cat... Right index finger
## 48926                                                                                                                                        EE was bit by a caterpillar & suffered an allergicreaction. Developed a rash/hives & started to feelswelling in her throat.
## 48927                                                                                                                                                                                                   EE was bit by a client as he was assisting him... Upper left arm
## 48928                                                                                                                                                                 EE was bit by a dog when he was empting trash cansat the park. The dog bit him on his right ankle.
## 48929                                                                                                                                                                                                   EE was bit by a full container of silverware thrown by a client.
## 48930                                                                                                                                                                                EE was bit by a patient in the rt forearm while holding patient in therapeutic hold
## 48931                                                                                                                                                                                                             EE was bit by a pit bull while interviewing 2 subjects
## 48932                                                                                                                                                                                                                           EE was bit by a raccoon on her left knee
## 48933                                                                                                                                                                                                                      EE was bit by a spider on the mail room floor
## 48934                                                                                                                                                                                                 EE was bit by a spider or insect while working at the petting farm
## 48935                                                                                                                                                                                                                                               EE was bit by a tick
## 48936                                                                                                                                                                                            EE was bit by a tick and was infected with rocky moutain spotted fever.
## 48937                                                                                                                                                                                                                            EE was bit by a tick on his right thigh
## 48938                                                                                                                                                                                                                               EE was bit by a tick on the left leg
## 48939                                                                                                                                                                                                                   EE was bit by a yellow jacket; injured right leg
## 48940                                                                                                                                                                                                                           EE was bit by an insect on her right arm
## 48941                                                                                                                                                                                                                              EE was bit by an insect on right shin
## 48942                                                                                                                                                                                                           EE was bit by an insect... Blisters on his right forearm
## 48943                                                                                                                                                                                                                EE was bit by an insect; rash on right side of neck
## 48944                                                                                                                                                                                                   EE was bit by an unkown insect while he slept right eyebrow area
## 48945                                                                                                                                                                                                     EE was bit by cat on finger while restraining it for sedation.
## 48946                                                                                                                                                                                                   EE was bit by client on left hand between thumb and index finger
## 48947                                                                                                                                                                            EE was bit by daisey who became aggitated, when EE tried to place her back in her cage.
## 48948                                                                                                                                                                                                                                                  EE was bit by dog
## 48949                                                                                                                                                                   EE was bit by dog on right wrist while trying to restrain for muzzle placement/catheter removal.
## 48950                                                                                                                                                                                      EE was bit by rat while preparing it for sacrificebite to right middle finger
## 48951                                                                                                                                                                                                                                             EE was bit by resident
## 48952                                                                                                                                                                                                                           EE was bit by resident on left upper arm
## 48953                                                                                                                    EE was bit by resident while dressing injury to resident hand resident became agitated and startedto bite hand catching EE left hand accidently
## 48954                                                                                                                                                                EE was bit by several ticks. Two were embeded on his right thigh and four were in his pubic region.
## 48955                                                                                                                                                                                 EE was bit by student on rt upper leg while she was trying to restrain the student
## 48956                                                                                                                                                                  EE was bit by student who had refused to go to her room after being brought back to the facility.
## 48957                                                                                                                                                                                                                                     EE was bit by tick on the back
## 48958                                                                                                                                                                              EE was bit by tick while doing grave excavation ofhomicide victim to left upper thigh
## 48959                                                                                                                                                                                                                                     EE was bit on her left forearm
## 48960                                                                                                                                                                                                                  EE was bit on left hand while restraining student
## 48961                                                                                                                                                                                    EE was bit on left hand while trying to restrain an agitated dog after surgery.
## 48962                                                                                                                                                                                                                                  EE was bit on lower arm by client
## 48963                                                                                                                                                                                                                                  EE was bit on lt wrist by student
## 48964                                                                                                                                                                                    EE was bit on right forearm by dog while attempting to administer oral meds. ()
## 48965                                                                                                                           EE was bit on right forearm by dog while trying to perform radiograph. Dog was muzzled, but muzzled came off as dog was being lifted. ()
## 48966                                                                                                                                                               EE was bit on right inner wrist area by dog while trying to restrain dog after it got muzzle off. ()
## 48967                                                                                                                                                                    EE was bit on rt shoulder by a patient and they both fell to the floor and EE fell on lt elbow.
## 48968                                                                                                                                                                                             EE was bit on the arm by a client while assisting in chnaging clothes.
## 48969                                                                                                                                                                                                                   EE was bit on the back of the chin by a patient.
## 48970                                                                                                                                                                                                                             EE was bit on the forearm by a patient
## 48971                                                                                                                                                                                                                 EE was bit on the hand by an insect.... Right hand
## 48972                                                                                                                                                                                                                        EE was bit on the lower left calf by a tick
## 48973                                                                                                                                                                                                                         EE was bit on the lower right leg by a dog
## 48974                                                                                                                                                                                                 EE was bit on the lt forearm by client who is hepatitis b carrier.
## 48975                                                                                                                                                                                    EE was bit on the rt forearm while being therapeutically carried to quiet room.
## 48976                                                                                                                                                                                                                              EE was bit when trying to pick up cat
## 48977                                                                                                                                                                                                                       EE was bit while intubating a patient (dog).
## 48978                                                                                                                                                                                                              EE was bite by resident while assisting nurse withbs.
## 48979                                                                                                                                                                                                                                EE was biten by a tick; lt shoulder
## 48980                                                                                                                                                                                                                          EE was biten by an insect; left lower arm
## 48981                                                                                                                                                                                                             EE was biten by horse on (l) arm and (r ) side of face
## 48982                                                                                                                                                                                                                                EE was biten on breast by a patient
## 48983                                                                                                                                                                                                        EE was biten on the finger by an otter; right middle finger
## 48984                                                                                                                                                                    EE was bitten bu a patient while he was in the process of placing patient in a therapedic hold.
## 48985                                                                                                                                                                                                            EE was bitten bu patient on middle finger of right hand
## 48986                                                                                                                                                                                                                              EE was bitten by a black widow spider
## 48987                                                                                                                                                                                                                           EE was bitten by a bug on the chest area
## 48988                                                                                                                                                                                                                      EE was bitten by a cat on the lt index finger
## 48989                                                                                                                                                                    EE was bitten by a cat while on way to place cat in radiology holding cage. Cat bite on fingers
## 48990                                                                                                                                                                                                                           EE was bitten by a client on lt forearm.
## 48991                                                                                                                                                                                           EE was bitten by a dog during a curfew check EE was bitten on the rt arm
## 48992                                                                                                                                                                                                         EE was bitten by a dog during a visitation rt index finger
## 48993                                                                                                                                                                                                                         EE was bitten by a dog during home visits.
## 48994                                                                                                                                                    EE was bitten by a dog on his lt hand while tryingto remove the dog from the road--dog had been struck by a car
## 48995                                                                                                                                                                                   EE was bitten by a dog on the lt thigh while checking on probationer at his home
## 48996                                                                                                                                                                                            EE was bitten by a insect while handling grass andplanting fresh grass.
## 48997                                                                                                                                                                                                      EE was bitten by a juvenile who was trying to escape custody.
## 48998                                                                                                                                                                                      EE was bitten by a large rat on the palmar side of her right index finger. ()
## 48999                                                                                                                                                                                                                     EE was bitten by a mandrill on rt index finger
## 49000                                                                                                                                                                                                           EE was bitten by a mouse on the lt thumb while injecting
## 49001                                                                                                                       EE was bitten by a number of ticks while working in field. EE dropped metal pole on foot while building fence and injured toes on left foot.
## 49002                                                                                                                                                                    EE was bitten by a patient and later had an allergic reaction to meds given reguarding the bite
## 49003                                                                                                                                                                                                                              EE was bitten by a rat during feeding
## 49004                                                                                                                                                                                                  EE was bitten by a rat on the left hand while treating the animal
## 49005                                                                                                                                                                                                                                       EE was bitten by a resident.
## 49006                                                                                                                                                                                                                               EE was bitten by a resisting suspect
## 49007                                                                                                                                                            EE was bitten by a snake which caused severe swelling and pain in left hand and arm including shoulder.
## 49008                                                                                                                                                                                                                                          EE was bitten by a spider
## 49009                                                                                                                                                                                                                            EE was bitten by a spider in her office
## 49010                                                                                                                                                                                                                        EE was bitten by a spider in the chest area
## 49011                                                                                                                                                                                                                 EE was bitten by a spider on finger while sleeping
## 49012                                                                                                                                                                                                                         EE was bitten by a spider on the back area
## 49013                                                                                                                                                                                                                            EE was bitten by a spider on the lt leg
## 49014                                                                                                                                                                                                                        EE was bitten by a spider on the rt forearm
## 49015                                                                                                                                                                                                                          EE was bitten by a spider on the rt wrist
## 49016                                                                                                                                                                                                 EE was bitten by a spider or another bug on rt hand while sleeping
## 49017                                                                                                                                                                                  EE was bitten by a spider while working in a crawlspace-swelling on neck and heel
## 49018                                                                                                                    EE was bitten by a student in crisis, teacher was assigned to watch student as he was excluded from grp. EE was bitten while applying pic hold.
## 49019                                                                                                                                                                                                                          EE was bitten by a student on the rt hand
## 49020                                                                                                                                                                            EE was bitten by a student while EE was being placed in therapeutic hold. Strain wrist.
## 49021                                                                                                                                                                                                         EE was bitten by a tic on the right side of his upper leg.
## 49022                                                                                                                                                                                                               EE was bitten by a tick and contracted lyme disease.
## 49023                                                                                                                                                                                             EE was bitten by a tick carrying the rocky mtn. Spotted fever illness.
## 49024                                                                                                                                                                                                                       EE was bitten by a tick causing inflammation
## 49025                                                                                                              EE was bitten by a tick on 5/24. He started to feel ill on 6/4 and received medical treatment and they found and pulled the tick from his groin area.
## 49026                                                                                                                                              EE was bitten by a tick on 5/25, and did not feel ill until 6/4. He found two ticks on his foot and one on his chest.
## 49027                                                                                                                                                                                                                        EE was bitten by a tick on the lower lt leg
## 49028                                                                                                                                                                                                                  EE was bitten by a tick on the lt and rt arm/legs
## 49029                                                                                                                                                                                    EE was bitten by a tick twice on 5/18, she did not start to feel ill until 6/6.
## 49030                                                                                                                                                                               EE was bitten by a tick while checking outside of office for maintenance and repairs
## 49031                                                                                                                                                                                                                      EE was bitten by a tick while field surveying
## 49032                                                                                                                                                                                                                     EE was bitten by a tick while raking campsites
## 49033                                                                                                                                                                                                                                EE was bitten by aggressive patient
## 49034                                                                                                                                                                                                                            EE was bitten by an aggressive patient.
## 49035                                                                                                                                                                                                             EE was bitten by an aggressive patient. Right forearm.
## 49036                                                                                                                                                                                  EE was bitten by an emotionally disturbed child who tried to run into the street.
## 49037                                                                                                                                                                                                                 EE was bitten by an inmate. Laceration right hand.
## 49038                                                                                                                                                                                                                       EE was bitten by an insect on his left hand.
## 49039                                                                                                                                                                                           EE was bitten by an insect on the back of the neck while doing paperwork
## 49040                                                                                                                                                                                                                         EE was bitten by an insect on the left arm
## 49041                                                                                                                                                                                                                      EE was bitten by an insect on the lt hand/arm
## 49042                                                                                                                                                                                                    EE was bitten by an insect on the right forearm in the dishroom
## 49043                                                                                                                                                                                                                       EE was bitten by an insect on the rt forearm
## 49044                                                                                                                                                                                                                  EE was bitten by an unknown insect on the rt hand
## 49045                                                                                                                                                                                   EE was bitten by an unknown insect. Days later EE EE arm was swollen and hurting
## 49046                                                                                                                                                                                                                                  EE was bitten by animal in stall.
## 49047                                                                                                                                                                                EE was bitten by ants & had an allergic reaction, which caused chest & heart pains.
## 49048                                                                                                                                                                                                                    EE was bitten by cat following blood collection
## 49049                                                                                                                         EE was bitten by cat that got into the cafeteria he grabbed the cat by the legs and was trying to toss it out the door when he was bitten.
## 49050                                                                                                                                                                               EE was bitten by cat while placing e-tube in cats mouth. Anethesia not strong enough
## 49051                                                                                                                                                                                                   EE was bitten by chiggers while mowing grass at reedy creek dam.
## 49052                                                                                                                                                                          EE was bitten by dog while performing routine teeth cleaning. Bites on right index finger
## 49053                                                                                                                                                                                                                                      EE was bitten by fire ants ()
## 49054                                                                                                                                                                                                                EE was bitten by fire ants on rt leg while teaching
## 49055                                                                                                                                                                                                                      EE was bitten by fire ants while stacking hay
## 49056                                                                                                                                                                              EE was bitten by insect while making a parimeter security check outside temp offices.
## 49057                                                                                                                                                                                                   EE was bitten by insects while working - swollen and red rash ()
## 49058                                                                                                                                                            EE was bitten by one pt, and then another pt attacked EE hitting EE in right shoulder and chest area ()
## 49059                                                                                                                                                                                                                       EE was bitten by patient during intervention
## 49060                                                                                                                                                                                                                                   EE was bitten by patient on back
## 49061                                                                                                                                                                                                             EE was bitten by patient while trying to restrain her.
## 49062                                                                                                                                                                                                                                            EE was bitten by rat ()
## 49063                                                                                                            EE was bitten by rat on finger-she was preparing to do survey on the rat, the rat had been anest. & was laying on his back when she grabbed the rat. ..
## 49064                                                                                                                                                                                                                    EE was bitten by resident on upper right thigh.
## 49065                                                                                                                                                                                                         EE was bitten by several ticks while performing a necropsy
## 49066                                                                                                                                                                                                                   EE was bitten by something while riding the bus.
## 49067                                                                                                                                                                                                            EE was bitten by spider while doing his regular duties.
## 49068                                                                                                                                                                                        EE was bitten by spider while patrolling quads in assigned area on rt thigh
## 49069                                                                                                                                                          EE was bitten by spider while sleeping in bed in assigned living quarters during leo recruit training. ()
## 49070                                                                                                                                                                     EE was bitten by spider while sleeping in bed in assigned living quarters for leo training. ()
## 49071                                                                                                                                                                                                                    EE was bitten by student on rt forearm by wrist
## 49072                                                                                                                                                                                                                               EE was bitten by student on the face
## 49073                                                                                                                                                                                                                       EE was bitten by suspect during an arrest ()
## 49074                                                                                                                                                                                                     EE was bitten by the immate on his index finger of his rt hand
## 49075                                                                                                                                                                                                           EE was bitten by tick causing nausea, headache and fever
## 49076                                                                                                                                                                                                          EE was bitten by tick on left rib while outside surveying
## 49077                                                                                                                                                                                                                                  EE was bitten by tick on shoulder
## 49078                                                                                                                                                                                         EE was bitten by tick while inspecting hog farm and developed lyme disease
## 49079                                                                                                                                                                                                                              EE was bitten by tick while on patrol
## 49080                                                                                                                                                                                                                 EE was bitten by tick while removing weeds on leg.
## 49081                                                                                                                                                   EE was bitten by tick while weeding and working with plant labels in herb garden. Lower rt side of back of head.
## 49082                                                                                                                                                                                                                    EE was bitten by ticks while working in forest.
## 49083                                                                                                                                                                                                                   EE was bitten on June 19th and June 25th by tick
## 49084                                                                                                                                                                                                                                  EE was bitten on arm by a client.
## 49085                                                                                                                                                                                                                         EE was bitten on arm by aggressive client.
## 49086                                                                                                                         EE was bitten on boot by fox. Fox tested positive for rabies. Animal control suggested everyone get tested for rabies. Did not wound foot.
## 49087                                                                                                                                                                                                                                EE was bitten on buttocks by insect
## 49088                                                                                                                                                              EE was bitten on hand by a psychiatric patient while he attempted to restrain her. Bite to right hand
## 49089                                                                                                                                           EE was bitten on her rt thumb which also caused sprain to rt thumb during struggle with aggressive& threatening patient.
## 49090                                                                                                                                                   EE was bitten on his left forearm when he was in the process of controlling an inmate that was having a seizure.
## 49091                                                                                                                                                                                                                           EE was bitten on left hand druing arrest
## 49092                                                                                                                                                                                                      EE was bitten on lower left arm while sweeping dumpster room.
## 49093                                                                                                                                                                                             EE was bitten on lt wrist by an insect did not seewhat kind of insect.
## 49094                                                                                                                                                                                             EE was bitten on right arm by spider or insect while reviewing inmates
## 49095                                                                                                                                                                                              EE was bitten on right finger by a rat during routine animal handling
## 49096                                                                                                                                                                                                  EE was bitten on right toe by an insect described as a black ant.
## 49097                                                                                                                                                                                            EE was bitten on ring and pinky fingers by subjectthat he had arrested.
## 49098                                                                                                                                                                                                           EE was bitten on rt hand by resident during intervention
## 49099                                                                                                                                                                                                 EE was bitten on rt upper arm by student that was being restrained
## 49100                                                                                                                                                                        EE was bitten on the arm by a patient after EE wasputting patient into seclusion/restraint.
## 49101                                                                                                                                                                                                                EE was bitten on the back of her neck while dusting
## 49102                                                                                                                                                                                                   EE was bitten on the finger by a patient. 5th finger on lt hand.
## 49103                                                                                                                                                                                                                 EE was bitten on the forehead by an unknown insect
## 49104                                                                                                                                                                                   EE was bitten on the left index finger by a mouse while conducting an experiment
## 49105                                                                                                                                                                                                                   EE was bitten on the left shin/foot by an otter,
## 49106                                                                                                                                                                              EE was bitten on the lt finger and also strained back during a therapeutic restraint.
## 49107                                                                                                                                                                                                                  EE was bitten on the lt leg by an unknown object.
## 49108                                                                                                                                                                            EE was bitten on the lt lower leg by a dog while attemping to serve criminal citations.
## 49109                                                                                                                                                                                                                  EE was bitten on the lt shoulder by a probationer
## 49110                                                                                                                                                                                                                             EE was bitten on the neck by an insect
## 49111                                                                                                             EE was bitten on the right index finger while assisting a wake co deputy sheriff who was attempting to handcuff a subject. Laceration to index finger.
## 49112                                                                                                                                                                                                                          EE was bitten on the rt hand by a patient
## 49113                                                                                                                                                                                                                           EE was bitten on the rt hand by a spider
## 49114                                                                                                                                                                     EE was bitten on the rt hand by an insect while removing eha equipment from an offender's home
## 49115                                                                                                                                                                                                                            EE was bitten on the rt leg by a spider
## 49116                                                                                                                                                                    EE was bitten or stung on the left foot while standing outside of the building on her break. ()
## 49117                                                                                                                                                                                  EE was bitten several times in legs by brown recluse spiders. Referred to glenda.
## 49118                                                                                                                                                                                                             EE was bitten severely on the left thumb by a juvenile
## 49119                                                                                                                                   EE was bitten something he was on firing range. Face was swollen and place keeps getting bigger. Insect bite on rt side of face.
## 49120                                                                                                                                                                                                                   EE was bitten while intubating a feline patient.
## 49121                                                                                                                                                                                                                                   EE was bitten/stung by insect ()
## 49122                                                                                                                                                                                                             EE was bitting by a mouse that was infected with virus
## 49123                                                                                                                                           EE was blazing copper on top of enviornmental chamber and had some kind of reaction, hands and body became irritated. ()
## 49124                                                                                                                                                               EE was bldg cabinet using drill to screw, drill slipped and bit went into index finger on left hand.
## 49125                                                                                                                                                                            EE was bleeding mice with needle when she stuck her right index finger with the needle.
## 49126                                                                                                                                          EE was bleeding the fuel system on the tractor when the bleeder bolt sheered off, causing diesel to spray into EE's eyes.
## 49127                                                                                                                                                                                      EE was blocking a hit from a patient to another & patient hit EE in left hand
## 49128                                                                                                                                                                                       EE was blocking arms to place on a retsraint and twisted and strained wrist.
## 49129                                                                                                                                                                                               EE was blocking door from opening and hitting client. Injured wrist.
## 49130                                                                                                              EE was blocking doorway entrance to alpha buildingafter confrontation between officers & inmate whensomeone threw basketball & struck her in head/jaw
## 49131                                                                                                                                                                                                               EE was blocking hits fm pt, pt struck right thumb ()
## 49132                                                                                                                                                                                                 EE was blocking out sheet metal and cut finger while turning metal
## 49133                                                                                                                                                                                                               EE was blocking punches from patient with right arm.
## 49134                                                                                                                                                                                                  EE was blocking residents aggression blocks and twisted low back.
## 49135                                                                                                                                                                                                            EE was blowing and trimming when ??? Right ear infected
## 49136                                                                                                                                                                                  EE was blowing debris with backpack blower and slipped and fell injuring left leg
## 49137                                                                                                                                                                                            EE was blowing dust off water tank when debris flew into EE's left eye.
## 49138                                                                                                                                                                           EE was blowing leaves and disturbed a bees nest. Stung several times on face/head. Head.
## 49139                                                                                                                                                                           EE was blowing leaves and stepped on outside vent, the vent gave way and EE fell through
## 49140                                                                                                                                                                            EE was blowing leaves at the alumni center and disturbed a bee's nest. Injured rt hand.
## 49141                                                                                                                  EE was blowing leaves in a small tight area & the ac units were blowing the leaves all around. EE was working around units and dust got into eye.
## 49142                                                                                                                                                                      EE was blowing leaves off sidewalk below the stepstripped and stumbled, felt pain in lt knee.
## 49143                                                                                                                                                                  EE was blowing leaves out of bushes, bees came outof ground and stung EE above his right eyebrow.
## 49144                                                                                                                                               EE was blowing leaves w/a leaf blower the strap broke, EE tripped and fell and the blower hit the front of EE mouth.
## 49145                                                                                                                                                               EE was blowing leaves w/leaf blower and debris flew under EE's goggles causing irritation to rt eye.
## 49146                                                                                                                                                                                         EE was blowing leaves when he obtained a spider bite to his left thigh. ()
## 49147                                                                                                                                                                                             EE was blowing leaves when wind swirled debris around and into eye. ()
## 49148                                                                                                                                                                               EE was blowing off sidewalk. Tripped on sidewalk and fell onto knee. Sore right knee
## 49149                                                                                                                                   EE was blowing out bottom duct of boiler bopper open, EE was pulling hose through ash and lost hisbalance and fell on left hand.
## 49150                                                                                                                                                                                                             EE was blowing pinestraw when dust got into his eye ()
## 49151                                                                                                                                                                                      EE was blowing pinestraw when winds blew airborne debris into her left eye ()
## 49152                                                                                                                                                                                                     EE was blowing walkway and slipped, fell on the wet leaves. ()
## 49153                                                                                                                       EE was boarding a boat; reached out and grabbed rail around console. When pulling himself with right hand he felt a snap or pop in his thumb
## 49154                                                                                                                                                                                                            EE was boarding a bus when somethine popped in herknee.
## 49155                                                                                                                                                            EE was boarding up a broken window when a piece ofglass fell from the window and stabbed his right knee
## 49156                                                                                                                                                                                 EE was body slammed, while the female patient attacked the male visitor in a fight
## 49157   EE was boiling a solution of agarose in microwave oven and forgot to loosen the lid of the bottle. Upon retrieving the bottle, the heated solution caused the bottle to break. A piece of glass went through the EE's lab coat into her arm & caused a laceratio
## 49158                                                                                                                                             EE was boiling water in microwave-removed from microwave and wtr boiled out into safety device and burned EE's rt hand
## 49159                                                                                                                                                                                                                 EE was bowling on patient outing and felt knee pop
## 49160                                                                                                                                                                               EE was bowling with the kids and rt leg went under EE and fell nad rt ankle swollen.
## 49161                                                                                                                                                EE was boxing during boxing practical exercise and experienced pain in his left shoulder as he struck his opponent.
## 49162                                                                                                                                                          EE was boxing during boxing practical exercise and was struck in the head. EE fell and lost conciousness.
## 49163                                                                                                                                                                    EE was boxing during defensive training and received several blows to head causing pain in neck
## 49164                                                                                                                                                            EE was boxing during defensiveness training and received several hits to the torst-has pain in rib cage
## 49165                                                                                                                                             EE was boxing during the boxing practical exerciseand experienced pain in his left shoulder and he struck his opponent
## 49166                                                                                                                                                                                          EE was boxing during training and threw a punch overextending lt shoulder
## 49167                                                                                                                                        EE was breaking a fight and got hit in the eye and hurt shoulder. Clmt cell ph#828-776-0404 **salary continuance employee**
## 49168                                                                                                                                                 EE was breaking a piece of plastic into small pieces for the trash and a piece flew up and scratched EE in rt eye.
## 49169                                                                                                                                                                             EE was breaking down a movie. Pulley came loose and bumped hand into a spinning table.
## 49170                                                                                                                                                                                                                            EE was breaking down boxes and loading.
## 49171                                                                                                                                                    EE was breaking down boxes for recycling, was struck in eye by corner of box lid while lifting a stack of boxes
## 49172                                                                                                                                                               EE was breaking down boxes. Right hand slipped hitting rubber trash can that was turned upside down.
## 49173                                                                                                                                                                         EE was breaking down dishtray. EE lifted about fifteen trays and pulled muscle in shoulder
## 49174                                                                                                                  EE was breaking down meat grinder for cleaning when lower worm became jammed. EE reached inside to free worm. Grinder came on, caught fingers in.
## 49175                                                                                                                    EE was breaking down pallets with a saw & walking on breaking off a the piece of wood nailed to it, it did hit the floor. Hit the bone in thumb
## 49176                                                                                                                                                                EE was breaking loose a brass plug using a wrench in an awkward position, felt pop in left shoulder
## 49177                                                                                                                                                                                                EE was breaking off bush branches when a piece flew into her eye ()
## 49178                                                                                                                                                                             EE was breaking snd tearing out sheetrock in sloopbedrooms and strained back some way.
## 49179                                                                                                                                                                                                     EE was breaking state soap on side of desk top, hit left hand.
## 49180                                                                                                                                                                        EE was breaking tables down and proceeded to lift table and felt pull on left side of back.
## 49181                                                                                                                                      EE was breaking up a dispute between two clients and was hit in the eye by a grilled chicken sandwich by one of the patients.
## 49182                                                                                                                                                                                     EE was breaking up a fight & EE was kicked by an inmate. Injured lt chest area
## 49183                                                                                                                                                                                                EE was breaking up a fight and a juvenile struck EE in the left rib
## 49184                                                                                                                                                                                                        EE was breaking up a fight and a student fell on his ankle.
## 49185                                                                                                                                                     EE was breaking up a fight and ended up wrestling a student to the floor causing a strained elbow and inj back
## 49186                                                                                                                                       EE was breaking up a fight and pulled a patient away, tripped over a chair and fell backwards striking rt elbow on the floor
## 49187                                                                                                                                                  EE was breaking up a fight and restraining a student when glasses were knocked off his face stepped on and broken
## 49188                                                                                                                                                                                              EE was breaking up a fight and strained back while subduing a student
## 49189                                                                                                                                                                                                EE was breaking up a fight and was hit on the leftside of the head.
## 49190                                                                                                                                                                                             EE was breaking up a fight and was knocked down and fell on both knees
## 49191                                                                                                                                                                                   EE was breaking up a fight and was pushed into a bookcase causing strain to back
## 49192                                                                                                                                                                                 EE was breaking up a fight between 2 inmates and struck rt wrist against hand rail
## 49193                                                                                                                                                            EE was breaking up a fight between 2 inmates, and hit left elbow on wall, scratching and bruising area.
## 49194                                                                                                                                                    EE was breaking up a fight between 2 inmates, grabbed one inmate around the waist and was hit in back by inmate
## 49195                                                                                                                                               EE was breaking up a fight between 2 male studentswhen he was struck in the right back with a filed down toothbrush.
## 49196                                                                                                                                                   EE was breaking up a fight between 2 other patients & injured his arm while trying to put patient in restraints.
## 49197                                                                                                                                                                                                  EE was breaking up a fight between 2 patient and hit knee on wall
## 49198                                                                                                                                             EE was breaking up a fight between 2 students when she fell to the floor hitting her left elbow and twisting her back.
## 49199                                                                                                                                                      EE was breaking up a fight between inmates and onewho was cuffed pushed me out of the way hit another inmate.
## 49200                                                                                                                                                         EE was breaking up a fight between inmates when hefell to the floor with one inmate & landed on his knees.
## 49201                                                                                                                                                                                             EE was breaking up a fight between juveniles and left hand was twisted
## 49202                                                                                                                                                                                 EE was breaking up a fight between student when he was struck in the face/rt cheek
## 49203                                                                                                                                 EE was breaking up a fight between students and fell back with the student falling on top of EE and EE hitting knee on the ground.
## 49204                                                                                                                                                                                         EE was breaking up a fight between two inmates andgot blood on right hand.
## 49205                                                                                                                    EE was breaking up a fight between two inmates andwhile trying to handcuff one of the inmates EE washit in the eye by one of the inmates elbow.
## 49206                                                                                                                       EE was breaking up a fight between two inmates when he was struck in the upper chest area as he turned back around. Bruised right chest area
## 49207                                                                                                                                                                              EE was breaking up a fight between two inmates, when he was scratched by one of them.
## 49208                                                                                          EE was breaking up a fight between two patients when he hit the closet with his (left) elbow & wrist. EE fell & landed on his (left) elbow with patient on top of him. ()
## 49209                                                                                                                                                     EE was breaking up a fight between two residents and on of the residents hit EE in the shoulder w/ their fist.
## 49210                                                                                                                EE was breaking up a fight between two students & one student tripped over xtra beds and fell on top EE and pinned neck between the chair & student
## 49211                                                                                                                                                                                            EE was breaking up a fight between two students and injured lower back.
## 49212                                                                                                                                                                              EE was breaking up a fight between two students and pulled a muscle or strained back.
## 49213                                                                                                                                                                                                 EE was breaking up a fight between two students and strained back.
## 49214                                                                                                                                                         EE was breaking up a fight between two students and struck his elbow against a piece of work equipment. ()
## 49215                                                                                                                                                                                                  EE was breaking up a fight between two students injured low back.
## 49216                                                                                                                                                      EE was breaking up a fight between two students when EE took one student down falling down landingon rt knee.
## 49217                                                                                                                                           EE was breaking up a fight between two students. Glasses were broken. Pain in left side of neck down into shoulder blade
## 49218                                                                                                                                                               EE was breaking up a fight in classroom and one of the jevniles arm jammed into the teacher's finger
## 49219                                                                                                                                                  EE was breaking up a fight in the dining hall. When he helped up an inmate up off the floor, he injured his back.
## 49220                                                                                                                                                                        EE was breaking up a fight on delta unit & he hurthis left ring finger. Injured left finger
## 49221                                                                                                                                                                             EE was breaking up a fight when one of the juveniles struck EE in the face with a ball
## 49222                                                                                                                                                                                              EE was breaking up a fight when she felt a pull in her lt calf muscle
## 49223                                                                                                                                EE was breaking up altercation between 2 inmates, attempt to handcuff inmate jerked away causing EE to lose balance fall backwards.
## 49224                                                                                                                                            EE was breaking up an altercation between two cadets when they fell and hit outside of right knee on concrete floor. ()
## 49225                                                                                                                                                                              EE was breaking up an altercation between two inmates and got blood on uniform shirt.
## 49226                                                                                                                                                                        EE was breaking up an altercation between two patients and fell back on table and hit ribs.
## 49227                                                                                                                                                    EE was breaking up an altercation between two students when they fell to the floor EE injured her left knee. ()
## 49228                                                                                                                           EE was breaking up concrete with sledge hammer after trying backhoe. Noticed a small buldge in groin area that night, was gone next day.
## 49229                                                                                                                                                                                                        EE was breaking up fight and finger twisted in the process.
## 49230                                                                                                                                                                                                      EE was breaking up fight and inmate struck him with his fist.
## 49231                                                                                                                                                                                           EE was breaking up fight and lt pinky finger was twisted lt pinky finger
## 49232                                                                                                                                                                                                                      EE was breaking up fight and strained rt knee
## 49233                                                                                                                                                                                                       EE was breaking up fight and was hit in right arm by inmate.
## 49234                                                                                                                                                                                                EE was breaking up fight between 2 patients, EE glasses was broken.
## 49235                                                                                                                                                                                                                        EE was breaking up fight between 2 students
## 49236                                                                                                                                    EE was breaking up fight between inmates by pulling inmate away from the other. Felt like a pulled muscle in right side of neck
## 49237                                                                                                                                                                          EE was breaking up fight between inmates, small amounts of blood got on both of ees arms.
## 49238                                                                                                                                        EE was breaking up fight between inmates. EE escorting inmate out of bed area inmate tried to get free twisted EE rt wrist.
## 49239                                                                                                                                                                            EE was breaking up fight between kids and they pulled EE left hand. Fracture left hand.
## 49240                                                                                                                                                                                                                      EE was breaking up fight between two patients
## 49241                                                                                                                                                                                           EE was breaking up fight between two patients and twisted foot on chair.
## 49242                                                                                                                                                                                       EE was breaking up fight between two patients and upper left arm was injured
## 49243                                                                                                                                                                    EE was breaking up fight between two patients had patient down on floor and knee hit the floor.
## 49244                                                                                                                                                EE was breaking up fight between two students and EE fell to the floor and hit lt side of her face glass partition.
## 49245                                                                                                                                                                                            EE was breaking up fight between two students and was hit with a chair.
## 49246                                                                                                                                                      EE was breaking up fight between two students whenone stuedent's body accidently hit EE in leg belowthe knee.
## 49247                                                                                                                                                                                                   EE was breaking up fight betwen two juveniles and injured wrist.
## 49248                                                                                                                                                                 EE was breaking up fight in cafeteria and pushed a student seperate them and felt pain in rt elbow
## 49249                                                                                                                                                                                                  EE was breaking up fight when EE fell on floor injuring rt elbow.
## 49250                                                                                                                          EE was breaking up fight when EE hit his head on the side of metal television stand cutting his lt side of head, temple area and eyebrow.
## 49251                                                                                                                                                                                                       EE was breaking up fight when a student fell on EE's lt arm.
## 49252                                                                                                                                                                                             EE was breaking up fight, felt pull in groin while restraining student
## 49253                                                                                                                                                                                                                    EE was breaking up fights and wrist was injured
## 49254                                                                                                                                                                   EE was breaking up two inmates from fighting when he fell on groung stiking lt knee and lt elbow
## 49255                                                                                                             EE was breaking up two students that were fightingduring the altercation EE was requried to restrainthe student and twisted the rt ankle that was oper
## 49256                                                                                                                                                               EE was breaking up two students who were horseplaying and fell on the couch. Student fell on EE arm.
## 49257                                                                                                                                                                          EE was breaking visually impaired client's fall by pulling walking belt and strained back
## 49258                                                                                                                                                                                                            EE was breathing in construction dust on a daily basis.
## 49259                                                                                                                       EE was bring equipment to recovery stall another EE was holding a door slat. When she picked up slat to place in door she hit me on the head
## 49260                                                                                                                                                                                       EE was bring office mail from the po office trip and fell injuring her knee.
## 49261                                                                                                                           EE was bringing a chair down steps, she slipped missing the step falling hitting head on rail elbow on steps and left leg went under her
## 49262                                                                                                                                                                                          EE was bringing chart rack through doorway and injured her mid/lower back
## 49263                                                                                                                                                            EE was bringing clients from the dining area, trying to keep client from falling, EE fell on right knee
## 49264                                                                                                                                                           EE was bringing closed wheelchair down stairs, wheelchair opened and caused EE to fall, brusing lefthip.
## 49265                                                                                                                                                                                              EE was bringing down vertical cross bar and pinched left index finger
## 49266                                                                                                                       EE was bringing in a trailor load of sqash that being pulled by a tractor. He stepped up on the tongue and slipped off hitting his left leg.
## 49267                                                                                                                                                                                  EE was bringing in stock up the hill had a bee stung EE on the neck and the chin.
## 49268                                                                                                                             EE was bringing in supplies into teaching lab for cooking class and slipped and fell onto floor. Right knee injury - referred to ortho
## 49269                                                                                                                                                          EE was bringing mail into office, misjudged the distance to the door and jammed left hand into door frame
## 49270                                                                                                                                         EE was bringing pan of food from the serving line to the kitchen area when she fell on a mop handle that was on the floor.
## 49271                                                                                                                                                   EE was bringing pot over to sink and got rt 4th finger caught between pot handle and side of sink causing bruise
## 49272                                                                                                                                                      EE was bringing pts bk fm tx mall, closed/locked door, pt came up fm behind and picked EE up in a bear hug ()
## 49273                                                                                                                      EE was bringing resident back from dinning room into his bedroom. To keep resident from hurting himself, EE reinjured her left thumb. Swollen
## 49274                                                                                                                                                                               EE was bringing sandwiches from the kitchen and fell bruising rt side of lower back.
## 49275                                                                                                                                                                    EE was bringing snacks into room liquid on floor, slid turned rt ft, lateral foot pain swelling
## 49276                                                                                                                             EE was bringing supplies into building. Open door and stepped into snack bar, drink cartons were left in floor and EE tripped on them.
## 49277                                                                                                                                                                                  EE was bringing the ladder up four flights of steps and sprained his right wrist.
## 49278                                                                                                                                                                              EE was bringing the trash can back in when she tripped, stumbled and hurt her toe. ()
## 49279                                                                                                                                                                                                                      EE was bringing trash to dumpster and fell ()
## 49280                                                                                                                                EE was bringing two dogs back to enclosure from playing outside, dogs pulled her in and her hand hit the metal part of the door. ()
## 49281                                                                                                                                                                              EE was brushing EE's teeth and- client spit in EE's rt eye. Urgent care for lab work.
## 49282                                                                                                                                                                                                    EE was brushing boiler tubes and dust got behind safety glasses
## 49283                                                                                                                                                                                                            EE was brushing clients gums-saliva blew into EE'seyes.
## 49284                                                                                                                                           EE was brushing clients teeth and he bit her lt hand - client has a history of bitting. Lumar bite lt hand - skin broken
## 49285                                                                                                                                                                 EE was brushing off wood and metal shavings from plywood and a piece went through glove into thumb
## 49286                                                                                                                                    EE was brushing teeth when an employee's father broke in the door to EE's house and hit EE in the mouth for fireing his son. ()
## 49287                                                                                                                                                EE was brushing the commode of excess and build on urine had to scrub extra hard to get clean. Injured wrist, hand.
## 49288                                                                                                                                                                                                              EE was brushing the pool lining with 24' pole with 18
## 49289                                                                                                                                                                                                     EE was brushing trash off of cabinet and got trash in left eye
## 49290                                                                                                                                              EE was buddy lifting a 20gal trashcan filled with half full of soil and strained area between thumb and index fingers
## 49291                                                                                                                                                                                                                       EE was buffing floor and injured lower back.
## 49292                                                                                                                                                          EE was buffing floor and the foot of the buffer came off the buffer turned around and hit EE in the groin
## 49293                                                                                                                                                           EE was buffing floor in price music enter; back started hurting, pain got worse, EE could no longerwalk.
## 49294                                                                                                                                                 EE was buffing floor when he bent down to change buffer pad & felt a pain in his lower back... F18 filed by EE. ..
## 49295                                                                                                                                           EE was buffing floor, step on wet spot, slipped & cord got under buffer. Buffer started jerking EE straining lower back.
## 49296                                                                                                                                                                   EE was buffing floor, the buffer jerked several times. She said her foot got tangled up in cord.
## 49297                                                                                                                                                                                               EE was buffing floor, turned buffer and smashed finger against chain
## 49298                                                                                                                                                                                                                 EE was buffing floors and his hand started to hurt
## 49299                                                                                                                                                                                EE was buffing floors with floor buffer, and began experiencing pain in lower back.
## 49300                                                                                                                                                                                                                                           EE was buffing gym floor
## 49301                                                                                                                                                                         EE was buffing hallway floor and walked into a a stairwell metal beam and bumped his head.
## 49302                                                                                                                                                 EE was buffing hallway in building and tripped over cord when he fell he jammed his lt hand when he hit the floor.
## 49303                                                                                                                        EE was buffing hallway when student bumped into EE causing entanlement in electrical cord causing him to loose control of buffer. Back pain
## 49304                                                                                                             EE was buffing main hallway. EE turned around and saw pt--he threw EE into lockers, then punched EE in right eye with fist. Rt eye/lt elbow & forearm.
## 49305                                                                                                                               EE was buffing racquetball floors and tripped overthe cord and the buffer hit him in the forehead between eyes cutting his forehead.
## 49306                                                                                                                                                                              EE was buffing the 1st floor when buffing machine jerked his arm.... Rt shoulder.. ..
## 49307                                                                                                                                                                        EE was buffing the hallway when the machine started popping fire and shocked him - rt hand.
## 49308                                                                                                                                                                   EE was buffing when she tripped over a cord and fell striking her rt arm and knee on a bookshelf
## 49309                                                                                                                                                                                                            EE was buffing with buffer all day and re-injured back.
## 49310                                                                                                                                              EE was building a fireline, with a dozer, when it came upon a stump, EE tried to go over it and the dozer rolled over
## 49311                                                                                                                                                         EE was building a rock wall on the new hiking trail when he caught his finger was mashed betweentwo rocks.
## 49312                                                                                                                                        EE was building boxes to store plumbing items; bentdown to pick up a box, the following morning EE could not walk. Low back
## 49313                                                                                                                                                                                   EE was building in the woodshop and got a piece of wood embedded in his rt thumb
## 49314                                                                                                                                                                                                    EE was building safety platform and was bent over driving nails
## 49315                                                                                                                                                                                                                       EE was bumped into & fell onto the sidewalk.
## 49316                                                                                                                                                                                             EE was bumped into during a struggle between an inmate and an officer.
## 49317                                                                                                                                                                                                                         EE was burn on the rt forearm by hot water
## 49318                                                                                                                                                                                                              EE was burn on the rt forearm while detaching a light
## 49319                                                                                                                                                EE was burned away from work and and hand was covered in dressing and dressing got hung on box and pulled skin off.
## 49320                                                                                                                                                                                                                           EE was burned by hot water( 2nd degree).
## 49321                                                                                                                                                                                                             EE was burned by possible gas leak to hot water heater
## 49322                                                                                                                                                                                           EE was burned from the heat that was generated by a flashover stimulator
## 49323                                                                                                                                                                                  EE was burned on the rt arm while she was taking some sheet pans out of the oven.
## 49324                                                                                                                                     EE was burning trash piles of brush & came in contact with poison sumac. Noticed itch thought hehad been singed from the fire.
## 49325                                                                                                                                                   EE was burnt by acid in the dish washer. 3rd degreburn to right arm, had to have surgery and then 2 skin graphs.
## 49326                                                                                                                                                                                                                              EE was burnt on left thumb by a torch
## 49327                                                                                                                                                                                      EE was bush hogging the field and got too close to tree limb-struck hi rt eye
## 49328                                                                                                                                                            EE was bush hogging the grounds; got off tractor to work and was found on the ground not able to get up
## 49329                                                                                                                                                               EE was bushhogging on tractor when a limb came back and knocked goggles off and hit him in the l eye
## 49330                                                                                                                                                                           EE was cahnging clothes of resident in bed and must have pulled something in lower back.
## 49331                                                                                                                                                                                            EE was cahsing after a patient along with other staff and fell on knee.
## 49332                                                                                                                              EE was called by another EE because he felt EE could fix gas leak. EE walked through receiving and realized he could not do anything.
## 49333                                                                                                                                      EE was called for assistance from another officer while running down sidewalk EE fell bruising & scraping both knees & hands.
## 49334                                                                                                              EE was called in to the campus to settle disruptivstudents & as he entered the dayroom, he was struckwith a wooden handle brush and chair by students
## 49335                                                                                                                         EE was called on service call and walking to truck and fell down steps from deck that was covered in ice. Injured back and both shoulders.
## 49336                                                                                                                                             EE was called out to conduct crime scene examination of a suicide. The subject was positivefor hepatitis c. -exposure-
## 49337                                                                                                                                                        EE was called to a fight between two (2) students, broke the students apart, but twist knee in the process.
## 49338                                                                                                                 EE was called to assist w/student-found student onthe floor-trying to helpt student up and hit feet got tangled with EE's feet causing her to fall
## 49339                                                                                                                                                                    EE was called to fight fire on the full rock long land where he came in contact with posion ivy
## 49340                                                                                                                                  EE was called to inmates cell. Door was opened tothe cell & inmate came towards EE swinging a boot hitting EE in his right thumb.
## 49341                                                                                                                        EE was called to the a & b wings when a fight broke out in the b wing. When EE was putting handcuffs on inmate he got some blood on lt arm.
## 49342                                                                                                                                                  EE was calling a patient to put back into the exam room when she stepped backward and tripped over some boxes. ()
## 49343                                                                                                                      EE was calling a student teacher and just as he was about to hang up he heard someone answer the phone phone hit EE's tooth and broke it off.
## 49344                                                                                                                                                                                                EE was calling in inmated and slammed a door on her rt pinky finger
## 49345                                                                                                                                                   EE was canoeing and hit rock, which caused EE to strike bar in canoe, sprain/bruise hip, strain back& smash hand
## 49346                                                                                                                                                                      EE was capping insulin syring after giving injections, needle pierced cap entering left thumb
## 49347                                                                                                                      EE was caring for female resident and asked her toclean out her locker and EE walked away and threwa lock and hit EE in the back of the head.
## 49348                                                                                                                                                                                                         EE was caring for resident and was hit in the face and eye
## 49349                                                                                                                                                                          EE was caring for resident, when resident swung & hit EE on the hand twice with his fist.
## 49350                                                                                                                                                                                                  EE was caring for resistive patient and felt pain in rt shoulder.
## 49351                                                                                                                                                  EE was carpel tunnel syndrome & was recently re- activated by excessive typing & repetitive motion telephone use.
## 49352                                                                                                                                                                                         EE was carring 6 large boxes of boks up stairs and felt some pain in back.
## 49353                                                                                                                                                               EE was carring a bag of trash down the hill and slipped and fell on the wet grass injuring his back.
## 49354                                                                                                                                                                                                    EE was carring a barell to dumpster and stepped into a pothole.
## 49355                                                                                                                                                                 EE was carring a bottle of vesphene spray the nozzle was struck and the spray went into EE lt eye.
## 49356                                                                                                                                                                      EE was carring a box full indo packs of nachos from 1 building to another. Box weighed 10lbs.
## 49357                                                                                                                                                                                                               EE was carring a box of surplies & tripped and fell.
## 49358                                                                                                                                            EE was carring a bucket of mop water. As EE came down steps from d-block EE felt sharp pain shoot across my lower back.
## 49359                                                                                                                                              EE was carring a buffer upstairs when he hit head on bottom part of stairs causing neck to jam downward on shoulders.
## 49360                                                                                                                                                                                                                   EE was carring a chair down some steps and fell.
## 49361                                                                                                                                                          EE was carring a chemical tank and it fell and EE pulled arm trying to readjust it to a upright position.
## 49362                                                                                                                                                    EE was carring a door stop into an open drill box and fell landing on the floor and the door hit EE on the head
## 49363                                                                                                                EE was carring a mop bucket down the stairs and mopping the stairs as he slipped on the stairs andfell. Small laceration on finger strain low back.
## 49364                                                                                                                   EE was carring a patient to quiet room after the patient became combative and tried to biteee hand during carry and EE pulled shoulder akwardly.
## 49365                                                                                                                                    EE was carring a piece off equipement and tripped over the head of another student shoe and droppped the machine on his finger.
## 49366                                                                                                                                                                                     EE was carring box food and came by table, hit arm-lt elbow on corner of table
## 49367                                                                                                                                                                                   EE was carring boxes and missed steps and dropped approx. 2 1/2 ft jolting body.
## 49368                                                                                                                                     EE was carring cleaning products to laundry room when client pushed door back so hard it hit EE in the abdomen and cut finger.
## 49369                                                                                                                EE was carring computers up stairs, after doing sothere was burning sensation in the knees. The lt knee started retaining fluid and rt knee popping
## 49370                                                                                                                                      EE was carring cpr doll and made a awkward movement and felt twinge and in shoulde and neck pain increased as the day passed.
## 49371                                                                                                                                                                                               EE was carring desk into sloop c-wing. Felt pain in rt side of back.
## 49372                                                                                                                                                                                     EE was carring food back to cook's area when she shipped on kool-aid on floor.
## 49373                                                                                                                                                           EE was carring glass racks from the dish room and slipped on freshly mopped floor and was non responsive
## 49374                                                                                                                                                                             EE was carring her purse and tripped over something and fell landing on her arm/elbow.
## 49375                                                                                                                                                                            EE was carring materials from library to another building when she stung in the lt eye.
## 49376                                                                                                                                        EE was carring metal bucket of case shucks; as the EE turned to take the bucket to her desk her left knee popped/cracked ()
## 49377                                                                                                                                                                EE was carring metal file bin and the files shifted and EE fell up the stairs. Injured rt/lt knees.
## 49378                                                                                                                                                                                                   EE was carring of milk to porch and lower back started hurting .
## 49379                                                                                                                                                                                          EE was carring roll of rubber up on roof by stair-well and hurt low back.
## 49380                                                                                                                                                     EE was carring some doors upa fight of stairs that was goint ot be installed and felt a sharp pain inlow back.
## 49381                                                                                                                                      EE was carring supplies fro a meeting when anothervehicle ran a stop sign and struck head on. Injuring foor, head, and wrist.
## 49382                                                                                                                                                 EE was carring table when he slipped on the wet floor causing him to fall onto the right side, left hand and chin.
## 49383                                                                                                                                                                                      EE was carring vaccum down the steps and knee gave away and causing EE to fal
## 49384                                                                                                                                                                   EE was carroyn a battery pack to a car and tripped over loose pavement falling on knee and elbow
## 49385                                                                                                                                                                    EE was carrying 2 bags of property and when I sat the bags down felt slight pull in rt shoulder
## 49386                                                                                                                      EE was carrying 2 cartons of paper w/dolly. There was not a wet floor sign. Started on 3rd floor steps slipped on wet step. He caught himself
## 49387                                                                                                                                            EE was carrying 2 pieces of peg board from car to office, one piece slipped and fell edge-on onto bigtoe of right foot.
## 49388                                                                                                                                   EE was carrying 24' ladder & the end of the laddercaught in a tree limb & caused EE to wrench his ltknee when throw off balance.
## 49389                                                                                                                                                                                         EE was carrying 30lb back pack sprayer on uneven ground strained lt ankle.
## 49390                                                                                                                                   EE was carrying 38lbs boxes of gloves up a ladder and then hoisting them above his head to go on a top shelf behind other boxes.
## 49391                                                                                                                                                                                  EE was carrying 65 lb bucket of paint when he feltpain in his neck and lower back
## 49392                                                                                                                                                                                                          EE was carrying ??? Down steps when he fell over a chair.
## 49393                                                                                                                                                EE was carrying a 12 ft. Ladder through a door. The ladder was heavy and awkward to carry. EE strained his back. ()
## 49394                                                                                                                            EE was carrying a 50lbs box, someone called to get his attention in the parking lot, he turned and felt a sharp pain in his lower back.
## 49395                                                                                                                                                                                                                          EE was carrying a bag and strained rt arm
## 49396                                                                                                                                                                                                              EE was carrying a bag of bills and felt pain in knee.
## 49397                                                                                                                                             EE was carrying a bag of trash down stair when he slipped causing pain in the back rehab spec- dana sarti 828-508-1463
## 49398                                                                                                                           EE was carrying a ballistic shield which hit the adoor frame causing EE to lose balance. He felt hisknee pop when regaining his balance.
## 49399                                                                                                                                EE was carrying a book under left arm and got out his gloves, noticed he had blood on hand and on thebook and left sleeve of shirt.
## 49400                                                                                                                                       EE was carrying a box down stairs; missed two stairs; fell on the landing hitting her left and knee; twisted her right ankle
## 49401                                                                                                                                                                                          EE was carrying a box down the stairs and missed a step fell down stairs.
## 49402                                                                                                                                                            EE was carrying a box of heavy materials to her car; box slipped; she lost her balance; twisted her arm
## 49403                                                                                                                                                                   EE was carrying a box of plants and box slipped. EE tried to catch it and pulled muscle in back.
## 49404                                                                                                                                         EE was carrying a box of printing paper on shouldron elevator turned to rest box on rail and felt sharp pain in upper back
## 49405                                                                                                                                                                                     EE was carrying a box of supplies down the steps and lost his footing and fell
## 49406                                                                                                                                                                                                        EE was carrying a box up stairs and tripped on metal steps.
## 49407                                                              EE was carrying a briefcase with laptop pc (approx 30-40lbs) from the echi bldg to bsom basement for repairs. Stepped off the curb the briefcase slipped off her shoulder, causing her to misstep. ()
## 49408                                                                                                                                                      EE was carrying a bucket of water, slipped in a puddle of water, fell, landing on left shoulder & hit head ()
## 49409                                                                                                                                                                                EE was carrying a buffing machine up the stairs & pulled lower back again. Reinjury
## 49410                                                                                                                     EE was carrying a case of bathroom tissue & paper towels up & down dorm stairs. Reports feeling gradual left shoulder pain. *otr clm#10072301*
## 49411                                                                                                                                                                                     EE was carrying a chair down steps and fell down stairs and strained left knee
## 49412                                                                                                                                                                                                                EE was carrying a child and felt a pop in shoulder.
## 49413                                                                                                                                                     EE was carrying a compressor when he reached to open a door he felt instant pain in his lower backand rib area
## 49414                                                                                                                                                                                                                   EE was carrying a computer and strained left arm
## 49415                                                                                                                                                                       EE was carrying a computer table to another room and hit another table that was in the hall.
## 49416                                                                                                                                                       EE was carrying a container with 2 gallons of softserve yogurt when the container fell and hit EE onrt knee.
## 49417                                                                                                                            EE was carrying a crate with equipment on the way to a training session and tripped falling down 4-5steps and landing on her right knee
## 49418                                                                                                                               EE was carrying a cylinder with both hands and when she got to the table had to hold it with lt handonly to move stuff. Lt shoulder.
## 49419                                                                                                                                                                                       EE was carrying a dinner tray when she slipped andfell twisting her lt ankle
## 49420                                                                                                                 EE was carrying a full cart of paperwork up the stairs to the 2nd floor. When he reached down to pick up cart, felt back muscle pull. Lt low back.
## 49421                                                                                                                                                                                                    EE was carrying a glass top table, glass broke cutting fingers.
## 49422                                                                                                                                                              EE was carrying a hand truck down the stairs and it got out-of control and it struck EE in the mouth.
## 49423                                                                                                                                                                                             EE was carrying a hatchery through when he stepped into the drain hole
## 49424                                                                                                                                                                      EE was carrying a heavy duffle bag with limbs and logs... Neck, upper back and right shoulder
## 49425                                                                                                                                                                                                     EE was carrying a heavy load of mail in bin and strained back.
## 49426                                                                                                                                                                                                 EE was carrying a heavy metal door down a fight ofstairs and fell.
## 49427                                                                                                                              EE was carrying a injured hiker in a stoke basket down a steep rocky trail. Felt pain in left upper cervical spine/neck as she lifted
## 49428                                                                                                                                                                                         EE was carrying a ladder and later developed soreness in his left shoulder
## 49429                                                                                                                                                                          EE was carrying a ladder down stairwell and slipped and fell causing injury to right knee
## 49430                                                                                                                                       EE was carrying a ladder down the steps and misseda step and fell against the wall and injured right leg and right shoulder.
## 49431                                                                                                                                                                        EE was carrying a ladder through a door and the door closed on the thumb of his right hand.
## 49432                                                                                                                                                                          EE was carrying a ladder-went to open boiler room door-felt a sharp pain in left shoulder
## 49433                                                                                                                     EE was carrying a large box into office. As he pushed the door to the district office open it swung back striking him. The glass broke on arm.
## 49434                                                                                                                                                                 EE was carrying a laundry basket down to basement when she lost her balance and fell down 14 steps
## 49435                                                                                                                                                                                          EE was carrying a mattress out of back of truck when he turned his ankle.
## 49436                                                                                                                                                                                                         EE was carrying a pt on a transport board, rolled ankle ()
## 49437                                                                                                                                                        EE was carrying a resident to bed and the residentstiffened causing EE to slip and strain back, leg and hip
## 49438                                                                                                                                                                              EE was carrying a shotgun when he slipped and fell injurying his rt knee and rt hand.
## 49439                                                                                                                                                   EE was carrying a shoulder bag full of books over lt shoulder from EE office in pitt memorial hospital to EE car
## 49440                                                                                                                  EE was carrying a sign to be placed outside of building for event, bottom of sign hit door jamb and stopped, shin hit other side of sign and cut.
## 49441                                                                                                                         EE was carrying a small bucket of water up the steps to wash table tops, when she tripped on one of the steps and landed on her left knee.
## 49442                                                                                                                                                                     EE was carrying a stack of towels and tripped over wet floor cone and fell on hand anf lt knee
## 49443                                                                                                                                                                           EE was carrying a step ladder and tripped on some rough concrete flooring injuring back.
## 49444                                                                                                                                                                                    EE was carrying a table out of the door when his finger was jammed in the door.
## 49445                                                                                                                                                                                        EE was carrying a table up the stairs when he slipped and sprained his back
## 49446                                                                                                                                                            EE was carrying a table when his left foot got caught under the table cutting the skin on his great toe
## 49447                                                                                                              EE was carrying a trash bag to dumpster when she lost her balance on pavement covered in snow/slushand fell, twisting right knee. Referred to glenda.
## 49448                                                                                                                              EE was carrying a tray around tables & her foot got caught on a chair. She fell, hitting her face and right hip, causing a contusion.
## 49449                                                                                                                                                                                     EE was carrying a tray of food to eat and slipped and fell injuring left ankle
## 49450                                                                                                                                                                                           EE was carrying a trunk and tripped over a bag dropping trunk on rt foot
## 49451                                                                                                                                                                  EE was carrying a vaccum cleaner down the stairs &slipped & fell, and pulled muscle in left ankle
## 49452                                                                                                                                                     EE was carrying a vendor box that was left next to reception desk. As EE placed box immediate pain was felt ()
## 49453                                                                                                                                     EE was carrying ammo and weapons case coming from tower, when he put boxes down to open door he feltsharp pain in top of back.
## 49454                                                                                                                                                                 EE was carrying an extension ladder. He tripped on uneven brick pavers and fell on hands and knees
## 49455                                                                                                                                                                    EE was carrying an icebox and twisted around to put on table. EE felt a pop in her right ankle.
## 49456                                                                                                                          EE was carrying an inmate on a stretcher down several flights of steps when inmate slipped and EE twisted and pulled a muscle in his back
## 49457                                                                                                                                                                                                             EE was carrying an office desk; muscle injury left arm
## 49458                                                                                                                                                                                            EE was carrying an upholstry cleaning machine and felt pain in her back
## 49459                                                                                                                                   EE was carrying and loading tables, when the buyerlost his grip on table, the weight of table shiftedto EE, pulling his muscles.
## 49460                                                                                                                                                                                    EE was carrying and using a string trimmer to cut vegetation on a hiking trail.
## 49461                                                                                                                                                   EE was carrying bag of trash & felt a stick in theback of leg. Notice it was bleeding, needle stick from the bag
## 49462                                                                                                                                                   EE was carrying bag of trash to dumpster when a piece of broken glass punctured through and cut her right ankle.
## 49463                                                                                                                                                                                           EE was carrying battery up stairs & pulled musclesin neck and shoulders.
## 49464                                                                                                                                   EE was carrying books to classroom and mis-steppedwith rt foot and fell forward-att to regain balanceand wgt was put on rt foot.
## 49465                                                                                                               EE was carrying books while entering a building when she began to fall and while catching herself from falling she struck her hand on the metal rail
## 49466                                                                                                                                                                    EE was carrying box of equipment, tripped on rubber rug. Fracture to bone on side of right foot
## 49467                                                                                                                                                                                                             EE was carrying box of utensils and strained her back.
## 49468                                                                                                                                                                            EE was carrying boxes and mail across yard when she felt a dull ache in her lower back.
## 49469                                                                                                                                                                                                     EE was carrying boxes in his hands and tried to open the door.
## 49470                                                                                                                                                   EE was carrying boxes of office supplies & bumped into a flat bed cart sitting in hallway. Hit both lower shins.
## 49471                                                                                                                                                EE was carrying boxes to stock shelves when EE tripped on piece of angle iron in aisle. Bruises to l knee and hand.
## 49472                                                                                                                                                                                                     EE was carrying boxes to the car for transit when back snapped
## 49473                                                                                                                                                                                  EE was carrying boxes up stairs, leg gave out on top step and fell to the bottom.
## 49474                                                                                                                                                      EE was carrying boxes when the swinging doors pushed back and pushed the box against the employee's shoulder.
## 49475                                                                                                                                             EE was carrying breakfast trays and coffee spilt on floor. EE picked up and carried down hallway looking for trashcan.
## 49476                                                                                                                                                                                                      EE was carrying buffer up stairs by himself and strained back
## 49477                                                                                                                                                                                     EE was carrying cabinet doors down steps and foot slipped and EE fell on rear.
## 49478                                                                                                                                                                      EE was carrying can of tomatoes to steamer. EE slipped and fell to floor landing on buttocks.
## 49479                                                                                                               EE was carrying cardboard to dumster & stepped up a concrete step EE missed the step and fell onto her stomack, caught ( r) shin on the edge of step
## 49480                                                                                                                                             EE was carrying cardboard to the dumpster, when she stepped on a behive. She suffered bee stings to the arms and legs.
## 49481                                                                                                                      EE was carrying cargo from track to dock standing in one position twisting with cargo and strained muscle. Thursday am could barely move leg.
## 49482                                                                                                                                      EE was carrying cctv down stair and as she landed on carpet bent rt ankle over and heard pop-fell landing on rt hip and wrist
## 49483                                                                                                                                                          EE was carrying ceiling grid down stairs, wiped his left eye, felt sharp feeling and now eye is sensitive
## 49484                                                                                                                                                                                                EE was carrying cement, slipped in mud and felt sharp pain in back.
## 49485                                                                                                                                                                              EE was carrying clothes to barrells and slipped inwater on floor falling on her knee.
## 49486                                                                                                                                                         EE was carrying computer and it slipped; when EE tried to catch the computer, a metal piece cut his finger
## 49487                                                                                                                                                                                           EE was carrying computer down steps and tripped onstep twisting rt ankle
## 49488                                                                                                                  EE was carrying computer projector with his left hand when he began feeling tingling in fingers of his left hand, numbness in lt foot, lower back
## 49489                                                                           EE was carrying court files to her vehicle to be transported back to main office and stepped into a hole or crack in payment and fell onto her knees - note she is 19 weeks pregnant. ()
## 49490                                                                                                                                                                           EE was carrying court files; as she stepped off curb she twisted her left ankle and fell
## 49491                                                                                                                                                                   EE was carrying crate up strairs when a client grabbed the crate causing EE to fall in left knee
## 49492                                                                                                                                                                                         EE was carrying cylinder and it got too heavy and his wrist fell backward.
## 49493                                                                                                                                                                                 EE was carrying dirty utensils to dishroom when he slipped and fall straining back
## 49494                                                                                                                                                                                 EE was carrying dishes to end of unit and stepped on edge of rug and turned ankle.
## 49495                                                                                                                                                                                 EE was carrying down down some case files from theoffice to his vechicle and fell.
## 49496                                                                                                                                                                                              EE was carrying dry rags, both arms began itching and breaking out ()
## 49497                                                                                                                                                            EE was carrying empty boxes back to office and walked into a shelf that was lying in the hallway floor.
## 49498                                                                                                                                                                                    EE was carrying equipement upstairs. Injured handselbow, carpal tunnel syndrome
## 49499                                                                                                                                                                                    EE was carrying equipment from office to car, trip-ped on step and stubbed toe.
## 49500                                                                           EE was carrying equipment to his vehicle, tripped over a piece of rebar sticking up from the ground, fell on his face and chest, resulting in dental injury, broken & fractured ribs. ()
## 49501                                                                                                                                                                                    EE was carrying file box back to be filed. Trippedon carpet, fell on left knee.
## 49502                                                                                                                                                                          EE was carrying files, missed step and fell on but-tocks, right index finger, right ankle
## 49503                                                                                                                                                                         EE was carrying food tray's up stairwell he got a sudden sharp pain b/t his shoulder blade
## 49504                                                                                                                       EE was carrying food trays up steps when tray began to fall. She grabbed the falling tray. EE felt something pull in lower back and left hip
## 49505                                                                                                                                                                        EE was carrying food when ground was covered with snow. Could not see steps; twisted ankle.
## 49506                                                                                                                                                  EE was carrying forms in hands and her foot hit a small wooden dolly causing EE to lose balance andfall on floor.
## 49507                                                                                                                                                                                  EE was carrying forms to office when he fell in the parking lot injuring his back
## 49508                                                                                                                              EE was carrying furniture and leaning it on his chest up to 3rd floor and felt soreness in left side of chest/later swollen and worse
## 49509                                                                                                                                                                                                      EE was carrying glassware in the lab and one brokein her hand
## 49510                                                                                                                                                                                                    EE was carrying heavy boxes when he felt pain in his lower back
## 49511                                                                                                                                                                                                                    EE was carrying heavy container. Injury to legs
## 49512                                                                                                                                                          EE was carrying heavy fences, building holding pen, noted aching pain in belly area after lunch that day.
## 49513                                                                                                                                                                                                    EE was carrying heavy objects by self causing soreness to back.
## 49514                                                                                                                                                                                      EE was carrying heavy trash out of the bldg and pulled muscle in rt shoulder.
## 49515                                                                                                                                                                                              EE was carrying hot rice and slipped causing hot rice to spill on arm
## 49516                                                                                                                                                                                       EE was carrying items down stairs when he slipped and fell injuring rt elbow
## 49517                                                                                                                     EE was carrying items down stairs, slipped on a step and fell med-way, caught her balance by grasp-ing the stair rail. Ankle and foot injured.
## 49518                                                                                                                                                                                            EE was carrying items down stairway & stumbled down the last two steps.
## 49519                                                                                                                                                         EE was carrying items in my hands and goinging up stairs, my foot slipped and hit the raiser of the stage.
## 49520                                                                                                                                                                                          EE was carrying items inside bldg and caught her finger in the lever.. ..
## 49521                                                                                                                                                                   EE was carrying knife when he reached to open door. EE grabbed knife causing cut to fingernails.
## 49522                                                                                                                                                      EE was carrying laboratory mouse to isolate liver cells, another mouse bit EE twice. Bit lt thumb, rt finger.
## 49523                                                                                                                                                                          EE was carrying ladder up steps and ladder caught bannister and hand to be bent backwards
## 49524                                                                                                                                            EE was carrying ladder, climbing ladder & lifting furniture in the new admissions & felt pain in lower part of stomach.
## 49525                                                                                                                                                                                  EE was carrying large box to recycling bin and corner of the box struck right eye
## 49526                                                                                                                                                                          EE was carrying large briefcase and laptop from school to office and strained rt shoulder
## 49527                                                                                                                                                                                     EE was carrying large suitcase downstairs when it slipped and jerked her wrist
## 49528                                                                                                                     EE was carrying large tote down stairs and rt kneegave out and EE fell-injured rt knee, contusions to hip and foot, strained hamstring and hip
## 49529                                                                                                                                                                                               EE was carrying laundry and trash down stairs, back began hurting ()
## 49530                                                                                                                                                                                  EE was carrying laundry basket and slipped and fell onto floor spraining lt ankle
## 49531                                                                                                                                                                                             EE was carrying light equipment and stepped off curb and injured back.
## 49532                                                                                                                                         EE was carrying livestock to replenish feeders andbegan having back pains-couple wks later began having server back pains.
## 49533                                                                                                           EE was carrying lunch from cafeteria, took 5 steps onto the marble floor, the heel of right shoe slip-ped causing EE to fall forward twisting right foot
## 49534                                                                                                                                                                                   EE was carrying mail and fell down steps. Severe cut and bruise to left shinbone
## 49535                                                                                                                                                     EE was carrying mail down steps and his foot slipped off step and he was jarred in his side, hip and back area
## 49536                                                                                                                                                                              EE was carrying mail fron one building to another and medical records was very heavy.
## 49537                                                                                                                                                                                              EE was carrying mail tote cart to mailroom and tripped on phone cord.
## 49538                                                                                                                                                         EE was carrying mail when going down steps. Her foot missed step and she fell twisting left foot and ankle
## 49539                                                                                                                                                                                     EE was carrying mailbag and backpack when she felt pain in her lower back pain
## 49540                                                                                                                                      EE was carrying materials in a box from park shops to talley student center and lost footing at bottom of stairs and fell. ()
## 49541                                                                                                                                            EE was carrying materials to pioneer class and chopping wood with an axe and developed painful discomfort in lower back
## 49542                                                                                                                                                                                  EE was carrying materials under pipes in a me roomlifted up and pipe busted head.
## 49543                                                                                                                                                        EE was carrying matidor up the stairs when he turned in order to get a better view & twisted his left knee.
## 49544                                                                                                                                    EE was carrying object platform and caught thumb between plateform and door frame header. Contusionand bruise of rt hand thumb.
## 49545                                                                                                                                                        EE was carrying out a behaviour program on client when he was struck in the left eye with client's fingers.
## 49546                                                                                                                                                             EE was carrying out aggressive resident behavior, after which, noticed red marks on l side of rib cage
## 49547                                                                                                                                                                    EE was carrying out trash when he missed a step, causing him to fall and sprain his left ankle.
## 49548                                                                                                                                                                                                     EE was carrying package through doorway and tripped on step ()
## 49549                                                                                                                                                                                    EE was carrying pallets when one slipped out of his hands and hit his left foot
## 49550                                                                                                                                                                     EE was carrying pan of food, slipped on wet concrete floor, landed on bent knee and hit elbow.
## 49551                                                                                                                                           EE was carrying paper products to fill supply closets in residence halls when he felt a pull on left side of groin area.
## 49552                                                                                                                          EE was carrying paperwork and slipped and fell on mopped floor. Fell on left knee twisted and broke fall by extending both hands and arms
## 49553                                                                                                                                                                                             EE was carrying patient to tx mell, and patient knee EE in the stomach
## 49554                                                                                                                                                                EE was carrying photo equipment into studio & slipped on ice behind auditorium of student building.
## 49555                                                                                                                      EE was carrying picnic table to place on trailer and when EE bent down and stood back up he struck his head on the table and noted back pian.
## 49556                                                                                                                                                               EE was carrying plywood from maint. Shop to shed and tripped over a curb falling and cutting rt shin
## 49557                                                                                                                                                                             EE was carrying popcorn machine down stairs to ward, noticed right shoulder hurting ()
## 49558                                                                                                                                                                                               EE was carrying pots and pan to sickroom when she slipped and felled
## 49559                                                                                                                                    EE was carrying prison mail into rear entrance of post office, when stepped ontile floor, slipped and fell onto back and hands.
## 49560                                                                                                                                                                             EE was carrying property out to another unit when her rt finger was caught in the door
## 49561                                                                                                                                                                    EE was carrying public address sytem from school to zoo van and stepped off curb breaking ankle
## 49562                                                                                                                                                                                     EE was carrying report to another office when she slipped on sidewalk and fell
## 49563                                                                                                              EE was carrying resident in therapeutic carry fromrehabilitation serv to newport cottage. Pt began to buck up & down causing sharp pain in EE's back.
## 49564                                                                                                                EE was carrying rifle in her right hand & opening door with her left when the wind blew door shut onher left hand. Fingers lt hand slammed in door.
## 49565                                                                                                                                                                                    EE was carrying roll of paper weighing around 100lbs and dropped it on his foot
## 49566                                                                                                                                                                                              EE was carrying scenery down stairs and strained back mid back strain
## 49567                                                                                                                                                     EE was carrying several viles of chemicals when hefelt a burning sensation. He tried to rinse with cold water.
## 49568                                                                                                                                                       EE was carrying soft drinks & water from a cabinetat the visitors station, & them into a small refrigerator.
## 49569                                                                                                                                                                                         EE was carrying some laundry down some slick stepsand knee went to the rt.
## 49570                                                                                                                         EE was carrying some old carpet samples to the dumpsters outside of eppes 3, stepped in some uneven pavement and twisted his left knee. ()
## 49571                                                                                                                                                                             EE was carrying some plates and slipped and fell on the floor and landed on her elbow.
## 49572                                                                                                                                EE was carrying stack of chairs past officer station door, door was opened for EE & EE smashed her finger between the door & chair.
## 49573                                                                                                                                                           EE was carrying steel reinforcing bars to and froma saw for cutting and strained back while lifting them
## 49574                                                                                                            EE was carrying supplies across grass, stepped on slick surface-court, foot went out from under me, cermic dish broke, cutting my l arm & injuring shou
## 49575                                                                                                                                                               EE was carrying supplies from one area to another and slipped. Injury to back and a cracking in neck
## 49576                                                                                                                                                                                            EE was carrying supplies from warehouse to car and strained rt shoulder
## 49577                                                                                                              EE was carrying supply bags got tangles up in her legs as she stepped up on sidewalk & tripped. Fellface down scrapping mouth & chin & chipped tooth.
## 49578                                                                                                             EE was carrying tables, unstacking chairs, moving tables and re stacking chairs and carrying and unloading an ice chest and developed pain in back. ()
## 49579                                                                                                                                                                                                                 EE was carrying ten charts at once... Injured back
## 49580                                                                                                                                         EE was carrying the ????, EE back was injured when he attempted to align the hoist frame to the ???? Hole. Lower r lumbar.
## 49581                                                                                                                                                         EE was carrying the book cart, passing out books up and down the stairs and hurt lower portion of my back.
## 49582                                                                                                                                                                                                          EE was carrying tires when he felt pain in his lower back
## 49583                                                                                                                                                                    EE was carrying toilet paper down steps and slipped in dog waste on steps and sprained rt ankle
## 49584                                                                                                                                                                                                   EE was carrying tool bag and slipped on wet steps straining back
## 49585                                                                                                                                                                   EE was carrying tools up stairs & felt a sharp pain in lower back. No known cause for the injury
## 49586                                                                                                                                                                              EE was carrying transformer with two other EE's when he stumbled and twisted rt knee.
## 49587                                                                                                                                             EE was carrying trash bags containing commuter mugs for a safety presentation. Swelling and aching left wrist and hand
## 49588                                                                                                                                                          EE was carrying trash from blgd. While holding doorw/lft hand she threw bag of trash injuring her lt leg.
## 49589                                                                                                                                                                                                    EE was carrying trash to dumpster outside and twisted left foot
## 49590                                                                                                                                                                    EE was carrying trash to the dumpster, slipped & fell on black ice & landed on her right elbow.
## 49591                                                                                                                                                                              EE was carrying trash to truck, slipped on icy ground and pulled shoulder. Old injury
## 49592                                                                                                                     EE was carrying tray upstairs to the inmates on h block, his right foot slipped out from under him and fell to his left sticking his l arm out
## 49593                                                                                                                                                                                     EE was carrying trays and slipped on wet floor injuring lt knee, head and back
## 49594                                                                                                                                                                                                    EE was carrying two boxes of quarters when he injured his hand.
## 49595                                                                                                             EE was carrying two boxes/laptop/software missed the first step from the middle landing and fell head first to the next landing/contusion l leg/finger
## 49596                                                                                                                                                                                      EE was carrying two heavy trashbags and strained left shoulder and right arm.
## 49597                                                                                                                                                   EE was carrying two pieces of peg board from car to office. One piece slipped and fell on big toe of right foot.
## 49598                                                                                                                                                                                                               EE was carrying vaccum cleaner and injured her knee.
## 49599                                                                                                                                           EE was carrying vacuum cleaner by the handle-when she put the vacuum down the handle fell to the floor along with the EE
## 49600                                                                                                                                                                                       EE was carrying vent pipe down hallway when he felt pain in his rt shoulder.
## 49601                                                                                                                                                              EE was carrying water bottles into animal room, opened door and hit thumb. Bruise/strain right thumb.
## 49602                                                                                                                                                                                          EE was carrying water fountain to truck and felet sharp pain in low back.
## 49603                                                                                                                                      EE was carrying water to the end of the tobacco fields, when he stepped in a drain at the end of the field and twisted l knee
## 49604                                                                                                                                                                                                              EE was carryinh 2-5 gal of waste from bldg to vehicle
## 49605                                                                                                                                                EE was carryng crates of food & camp gear to campsite. EE rpts rt shoulder sore & tender, lacks full rng of motion.
## 49606                                                                                                                                          EE was carting kickplates inside brocker health center after cleaning them. Kickplates slipped in hand lacerating fingers
## 49607                                                                                                                                        EE was carving compound from impression tray when knife slipped and cut left index finger which was holding impression tray
## 49608                                                                                                                                             EE was cashiering. Customer placed cup of coffee on stand. Coffee tipped over causing coffee to spill on EE's left leg
## 49609                                                                                                                                                                                      EE was catching a basketball and jammed finger with ball being thrown at him.
## 49610                                                                                                                                                                                        EE was catching a falling resident and EE fell also. Injured shoulder/knee.
## 49611                                                                                                                                   EE was catching a pig to deliver to surgery. EE was bending over holding onto pig and pig was struggling, EE twisted lower back.
## 49612                                                                                                                                                          EE was catching behind the batter in a softball game, ball was hit and flew back and hit EE on the l knee
## 49613                                                                                                                                                                EE was catching fish and putting in holding tank. Joint pain, stomach pain, memory loss, dizziness.
## 49614                                                                                                                                  EE was catching lobster in a tank by hand to trans-fer to another tank and a lobster spine puncturedhis hand and became infected.
## 49615                                                                                                                                                                                                         EE was catching patient that was falling and strained back
## 49616                                                                                                                                                                                                             EE was catching red wolf and was bitten on left thumb.
## 49617                                                                                                                                                                               EE was catching student during trust fall and student accidently hit EE in the mouth
## 49618                                                                                                                                                                                                  EE was catherizing maile patient, when blood squirted in her eye.
## 49619                                                                                                                                                                                                                               EE was caught between dolly and desk
## 49620                                                                                                                                      EE was caught between the sliding gate between microwave#2 but was unable to remove lt arm before the gate completely closed.
## 49621                                                                                                                                                                                               EE was caught by closing door, contusion to right arm and left thigh
## 49622                                                                                                                                                                                                  EE was caught in doorway while distributing prescribed medication
## 49623                                                                                                                             EE was caught off balance and fell back to avoid being hit in the face by her brief case handle. EE sprained ankle when stepping back.
## 49624                                                                                                                                                                         EE was cdrt training at the college and complained of soreness of abdomen, legs and chest.
## 49625                                                                                                                EE was center punching tile preparing to drill. Piece of tile came in contact with his left eye. Eyeflushed with solution by object would not move.
## 49626                                                                                                                                 EE was centering a vaccum pumplet tool storage cage-after sitting it down EE turned quickly and hit the sewer machine with rt leg.
## 49627                                                                                                                                                                                                                                                EE was chain sawing
## 49628                                                                                                                                       EE was chaing a violator on foot when EE fell as he ran trhough a section of briars. Strained lateral ligaments to left knee
## 49629                                                                                                                                                                                    EE was chainging paitent's clothes and felt a pop and sharp pain in left wrist.
## 49630                                                                                                                              EE was chaining tractor down on hauling unit and ran finger over a piece of metal that was covered by mud. EE could not see the metal
## 49631                                                                                                                                                            EE was chalking tire of car for logging time limitwhen he raised back up knee popped and hurt a little.
## 49632                                                                                                                                                                                          EE was changin pt & noticed a painfull strain in lower mid bottom of back
## 49633                                                                                                                                                             EE was changing a ballast and opened the box - reached in to pull out box and sheet metal cut rt thumb
## 49634                                                                                                                                         EE was changing a battery when his right hand slipped and he cut his small finger on the hood; injured right little finger
## 49635                                                                                                                                              EE was changing a blade on riding lawnmower with wrench when the wrench and blade slipped cutting palm area of l hand
## 49636                                                                                                                                                                                           EE was changing a client & stepped back & felt a sharp pain in low back.
## 49637                                                                                                                              EE was changing a client in bathroom. EE and another staff was lifting client from wheelchair EE felt slight burning in left shoulder
## 49638                                                                                                                                      EE was changing a client who had urinated, EE slipped on wet spot, right leg twisted, causing fall, then EE struck right knee
## 49639                                                                                                                                                               EE was changing a client's brief-standing client- when client turned and kicked EE in the right knee
## 49640                                                                                                                                            EE was changing a client-bed rail was down-client bucked-EE kept clint from falling out of bed-felt pain in lower back.
## 49641                                                                                                                                                                                                    EE was changing a compressor on the roof and became overheated.
## 49642                                                                                                                                                                            EE was changing a cylinder, went to put down on table and hit left hand in the process.
## 49643                                                                                                                                                  EE was changing a diaper on a client and client became agitated, causing EE to fall and injure back and buttocks.
## 49644                                                                                                                                        EE was changing a flat tire for a stranded female the right shoulder rotator cuff was strained whilejacking up the vehicle.
## 49645                                                                                                                                                          EE was changing a garbage can liner, reached into can and cut her left forearm on the stainless steel can
## 49646                                                                                                                                                                                       EE was changing a glass light fixture when the fixture broke and cut him. ()
## 49647                                                                                                                                                                                                                 EE was changing a light tube when the ballast blew
## 49648                                                                                                                        EE was changing a light when his shoelace caught on a bolt of a chair, & he fell on his rt side on the chairs. Contusion right iliac crest.
## 49649                                                                                                                         EE was changing a neon light bulb when it broke, a small piece got in his eye glasses. Eye was irrit-taed and felt like glass still in it.
## 49650                                                                                                                                                                                                        EE was changing a o2 reg tank and it dropped on EE's thumb.
## 49651                                                                                                                                                                   EE was changing a patient when the patient grabbedher finger and bent it back. Sprain 3rd digit.
## 49652                                                                                                                                                           EE was changing a pt who's bed was low to the ground. When she finished her lower back started cramping.
## 49653                                                                                                                                                                                        EE was changing a pt's diaper, pt went limp, pulling EE's left shoulder. ()
## 49654                                                                                                                                                                                                    EE was changing a rat cage and a rat bit the top of EE's thumb.
## 49655                                                                                                                                                                                                                   EE was changing a resident and felt pain in back
## 49656                                                                                                                              EE was changing a resident in shower room. She fell in urine in floor as she was placing him in shower. Bruised & sore left upper arm
## 49657                                                                                                             EE was changing a resident, they kicke dtheir feetcausing her to loose her balance and fall backwards. Tried to catch herself felt a catch in her back
## 49658                                                                                                                                                                                                                 EE was changing a scalpel blade and cut left thumb
## 49659                                                                                                                                                        EE was changing a tire and as he started to rotatethe jack handle he felt a sharp pain in his left shoulder
## 49660                                                                                                                                                                                            EE was changing a tire and got hand caught betweenfender well and tire.
## 49661                                                                                                                           EE was changing a tire on a boat trailer using a piece of equipment. His hands go numb after repetitve motion and has pain in both hands
## 49662                                                                                                                                                          EE was changing a tire on a vehicle & pulled a muscle while lifting a tire from the truck pullinga muscle
## 49663                                                                                                                                                      EE was changing ac filters in residence hall when ac unit fell & struck him in rt temple. Referred to glenda.
## 49664                                                                                                                                                                                              EE was changing air filters & cut rt ear on cotterpin on air handler.
## 49665                                                                                                                                                                           EE was changing air filters and transom over the door fell and hit Mr Dennis on the head
## 49666                                                                                                                                                                                    EE was changing an inmates burn dressing and strained upper back holding leg up
## 49667                                                                                                                                               EE was changing an uncorporative patient and put knee on bed to gain balance and later knee began to hurt and swell.
## 49668                                                                                                                                                                                                EE was changing animal cages - possible sporklenz - exposure rt eye
## 49669                                                                                                                                                                           EE was changing ballast in kitchen- light cover fell striking EE on the elbow on ladder.
## 49670                                                                                                                                                                                                    EE was changing batteries on lift, bump wrench on battery post.
## 49671                                                                                                                                                                                           EE was changing battery on arjo lift and dropped battery on left big toe
## 49672                                                                                                                       EE was changing bedrail that broke---patient started to fall grabbed client by the shirt and pulled patient back on bed-- felt pain in back.
## 49673                                                                                                                                                            EE was changing belts on machine when EE slipped and rt index finger got caught between belt and pulley
## 49674                                                                                                                                       EE was changing blade on the mower when the tide blade slipped nad pinched his finger between the blade and the blade guard.
## 49675                                                                                                                                                                       EE was changing bleach injector in pool when bleach splased in eyes. Chemical conjunctivitis
## 49676                                                                                                                                     EE was changing bottle of chemical and got new bottel in holder, some of the chemical splashed in eyes. Chemical burn in eyes.
## 49677                                                                                                                                                        EE was changing bulletin board paper & right hand slipped & accidentally stapled her right index finger. ()
## 49678                                                                                                                                                                                               EE was changing cages and felt a sharp burning pain in back of neck.
## 49679                                                                                                                                                                                               EE was changing cages injuring right arm and hand, left arm and hand
## 49680                                                                                                                                                 EE was changing ceiling tile and when he removed his hat and glasses for lunch he got a piece of debris in his eye
## 49681                                                                                                                                                                EE was changing chemical in despenser in potroom when the lid slipped causing it to splash in eyes.
## 49682                                                                                                                                                                               EE was changing clien't wet bed, putting on linen and stumped right toe on bed post.
## 49683                                                                                                                                                                       EE was changing client and client hit EE in the head 2x, EE has a history of recent strokes.
## 49684                                                                                                                                            EE was changing client and client went from standing position to sitting position and EE later in the pm in lower back.
## 49685                                                                                                                                                                                                 EE was changing client and lt hand started to hurt and later swell
## 49686                                                                                                                                                                                 EE was changing client and strained lt shoulder neck and back repositioning client
## 49687                                                                                                                                                                                   EE was changing client and strained neck, shouldersand back while turning client
## 49688                                                                                                                                                 EE was changing client lifted legs up to slide attends under. Felt pain in right shoulder and heard something pop.
## 49689                                                                                                                               EE was changing client on the way to diaper pail she accidently fell over the mat that was placed iin front of bed. EE hit her knee.
## 49690                                                                                                                                                                                                             EE was changing client when client bit EE on lt thumb.
## 49691                                                                                                                                                                         EE was changing client when client reached up and grabbed EE's right wrist and twisted it.
## 49692                                                                                                                                                                      EE was changing client, client kept dropping to floor- in process, pulled EE from lower back.
## 49693                                                                                                                                      EE was changing client, client started to fall- eegrabbed client (to keep from falling) & felt pain in back and rt. Shoulder.
## 49694                                                                                                                                                              EE was changing client, on bed attempted to roll client over and felt pull/pain in back, mid section.
## 49695                                                                                                                                                                                                            EE was changing client- client hit EE on rt arm/ wrist.
## 49696                                                                                                                                                 EE was changing client-client kicked EE under the jaw-jarring teeth together-chipped/loosened crown (frony teeth).
## 49697                                                                                                                                                                             EE was changing client-client started laughing andkicking and kicked EE in rt abdomen.
## 49698                                                                                                                                                   EE was changing client-client turned shifting all of her weight. EE was caught off guard and felt pinch in neck.
## 49699                                                                                                                                                           EE was changing client; turned around to grab depends. EE turned awkwardly causing pain to left knee. ()
## 49700                                                                                                                                    EE was changing clients brief, client became startled-drew leg up and kneed EE in rt neck-also brought arm down and hit lt neck
## 49701                                                                                                                                                                                                   EE was changing clothes in lockar room hit elbow on clothes hook
## 49702                                                                                                                                                EE was changing clothes into required scrubs and she must have stepped in a piece of glass that wasunseen on floor.
## 49703                                                                                                                                                                                       EE was changing cylinders, lifted vac pump and felt sharp pain in lower back
## 49704                                                                                                                                                                         EE was changing empty oxygen tank in room, while positioning tank, felt pull in lower back
## 49705                                                                                                                                             EE was changing filters on the roof of clement and backed off a platform that was approximately 2 feet up and fell. ()
## 49706                                                                                                                                                                                          EE was changing filters when he fell off ladder and struck right shoulder
## 49707                                                                                                                                            EE was changing flat on patrol vehicle. While lifting tire out of trunk EE strained back. Strain to lumbar sacral spine
## 49708                                                                                                                          EE was changing flat tire on a state vehicle while turning the jack handle the swivel caught lt handchanging tire in dark on side of road
## 49709                                                                                                                                                    EE was changing from left to right lane. Vehicle in front came to an abrupt stop and EE struck itomfrom behind.
## 49710                                                                                                                                                                                      EE was changing glass container when he dropped it. Glass hit lower right arm
## 49711                                                                                                                                   EE was changing grease out of deep fat fryer in order to clean it. She knocked over the grease and it splashed on her right leg.
## 49712                                                                                                                              EE was changing hot water pump and water burst out of pipe onto forehead, lt arm and causing EE tojump off of ladder injuring rt heel
## 49713                                                                                                                                                          EE was changing into costume for work when he was bitten on the right underarm by a non-poisonous spider.
## 49714                                                                                                                                                                         EE was changing items on a display case and the platform fell striking face, chest and leg
## 49715                                                                                                                                                                                                     EE was changing knives and blades on a tub grinder, EE cut (r)
## 49716                                                                                                                                                               EE was changing knives on the jointer, wrench slipped of bolt. Elbow hit the knife. Cut to right arm
## 49717                                                                                                                             EE was changing light bulb in ceiling, when latter slipped and EE fell to floor. Right foot, right hand, right back side and shoulder.
## 49718                                                                                                                                                                                                          EE was changing light bulb nad something fell intort eye.
## 49719                                                                                                                                                               EE was changing light bulb which fell out of the socket and cut the EE's thumb requiring stitches ()
## 49720                                                                                                                                                                             EE was changing light bulbs and fixture fell and hit him in top of head leaving a cut.
## 49721                                                                                                                                               EE was changing light bulbs in the kitchen broke a florecent light bulb while attempting to place it back in the box
## 49722                                                                                                                                                                                                     EE was changing light bulbs when an object fell into left eye.
## 49723                                                                                                                                                                    EE was changing light tube and was putting tubes broken causing fragment to enter into left eye
## 49724                                                                                                                                              EE was changing light with metal grate cover, cover fell and tube broke cutting over right eye. Cut over right eyelid
## 49725                                                                                                                                 EE was changing linen on a debilitated patient's bed & as patient was turned, he voided on EE saturating lower portion of uniform.
## 49726                                                                                                                                                                                      EE was changing linen on client bed and moved bed hitting knee while doing so
## 49727                                                                                                                    EE was changing lock on his toolbox and when he removed his hand from under the drawer of the box his hand was cut by the lip of the drawer. ()
## 49728                                                                                                                                                                          EE was changing mice cages from rack, trying to turn cage around and pulled muscle in arm
## 49729                                                                                                                                                                                        EE was changing mouse cages when a mouse jumped up& bit EE on the rt thumb.
## 49730                                                                                                                                                                                          EE was changing mouse cages when some of the sterilant splash in her eyes
## 49731                                                                                                                                                                 EE was changing out 500 lb air conditioning coils when coil slid and pinned left hand against wall
## 49732                                                                                                                      EE was changing out over head ballast while standing on a ladder and fell off the 4 foot ladder and hit his knee on the top of the ladder. ()
## 49733                                                                                                                                                                EE was changing out the iv tubing, a spring in the pump door stuck EE in the right index finger. ()
## 49734                                                                                                                                                                               EE was changing out toilet paper & twisted rt knee *** do not pay on this claim ****
## 49735                                                                                                                                                                         EE was changing pans on line when steam rose from deep well and burned left middle finger.
## 49736                                                                                                                                                                               EE was changing paper in the copy machine and the paper drawer closed on her finger.
## 49737                                                                                                                                                          EE was changing papertowel dispenser when his right middle finger got jammed in the side of the dispenser
## 49738                                                                                                                                                                    EE was changing patient alone in bedroom. He felt something like a cramp in mid section of back
## 49739                                                                                                                                                                 EE was changing patient and accidently struck rt finger against patient's tooth causing laceration
## 49740                                                                                                                                                  EE was changing patient and patient held on to bedrail while EE was trying to turn pt over - EE strained rt wrist
## 49741                                                                                                                                           EE was changing patient and patient started to go down to floor and when helpinh to hold patient EE felt pain in lt hip,
## 49742                                                                                                                                                                                     EE was changing patient and patient struck EE in the left breast with his fist
## 49743                                                                                                                                                           EE was changing patient and pt started going to the floor and that's when EE felt pain in back, and hip.
## 49744                                                                                                                                                          EE was changing patient and stood the patient up and the patient twisted and EE felt a pain in lowerback.
## 49745                                                                                                                                                                 EE was changing patient and turned around to lift patient out of chair and struck rt knee on chair
## 49746                                                                                                                                                                                    EE was changing patient and turned patient over away from her and strained back
## 49747                                                                                                                                       EE was changing patient to give bath, patient thought that he was falling, patient grabbed EE's right hand and pulled thumb.
## 49748                                                                                                                                                                                   EE was changing patient when patient grabbed hand and bent her fingers backwards
## 49749                                                                                                                         EE was changing patient when patient tried to sit on floor-EE was holding on to patient to keep her from hurting herself and strained back
## 49750                                                                                                                                                                      EE was changing patient when the patient turned over on EE hand causing pain in her lt thumb.
## 49751                                                                                                                                                                    EE was changing patient who resistent the entire time and felt pain in lower side the next day.
## 49752                                                                                                                                                                                             EE was changing patient. Patient was resisting and pushing against EE.
## 49753                                                                                                                EE was changing patient; patient did not get into chair right; went to put patient back into chair andback and shoulder started to hurt immediately
## 49754                                                                                                                                              EE was changing patients care and during this time she was placing patients in chair and had back stiffness and pain.
## 49755                                                                                                                                             EE was changing patients soiled clothes when patient pulled away causing feces to spray in EE face, eyes, and clothes.
## 49756                                                                                                                       EE was changing post was going up stairs of front tower when he tripped on the step, as he went down he did catch his body weight on rt hand
## 49757                                                                                                                                                                                                    EE was changing pt diaper and pt was resistive EE strained back
## 49758                                                                                                                                                                                    EE was changing pt shirt, pt pulling on shirt EE twisted wrong way hurt my back
## 49759                                                                                                                                                                                       EE was changing pt's brief, pt began kicking, stricking EE in the scrotum ()
## 49760                                                                                                                                                                                            EE was changing pt, began upset, grabbed EE's hand and twisted pinky ()
## 49761                                                                                                                                                                                             EE was changing pt, pt was aggressive and scratched cna, pt is hiv pos
## 49762                                                                                                                                                                                 EE was changing rat cages when rat bit her on her left and right index fingers. ()
## 49763                                                                                                                                                                                                      EE was changing resident and the resident kick EE in the neck
## 49764                                                                                                                            EE was changing resident and turned to get something out of cabinet-resident pulled EE's hairand pulled EE backwards straining lt thigh
## 49765                                                                                                                                                                                                                     EE was changing resident and twidted his back.
## 49766                                                                                                                                                      EE was changing resident in bathroom and resident became aggressive and slammed EE's hand into bathroom stall
## 49767                                                                                                                                                                  EE was changing resident in bathroom when resident accidently hie her in the eye with a shoe hel.
## 49768                                                                                                                                     EE was changing resident on shower tub and resident started to move and EE had to reach and grab resident to keep from falling
## 49769                                                                                                                                   EE was changing resident shirt. Resident seizured causing him to fall back and hit EE's left lower stomach area with his helmet.
## 49770                                                                                                                                                    EE was changing resident when EE turned resident resident was pushing back against EE and it hurt EE r hand. ()
## 49771                                                                                                                                                                               EE was changing resident when her back started hurting. EE was wearing back support.
## 49772                                                                                                                                          EE was changing resident when turning resident he begin to push against the rail and felt something pop in my shoulder ()
## 49773                                                                                                                                                                                                     EE was changing resident's shirt, pt bit EE lt pointer finger.
## 49774                                                                                                                     EE was changing resident, he became combative & tried to punch her. She backed out of his way. A couple of days later, low back began hurting.
## 49775                                                                                                                                                             EE was changing resident, pull up is pants, residenthit her upside the head, face & ear with his hand.
## 49776                                                                                                                                                                                  EE was changing residents clothes when all of a sudden, he hit her on the lips ()
## 49777                                                                                                                                              EE was changing residents clothes, water in the floor, EE did not see water and foot slid and fell on her right knee.
## 49778                                                                                                                                                                                                EE was changing shower hooks when one punctured right index finger.
## 49779                                                                                                                                      EE was changing snow tires on his vehicle EE was putting his floor jack back in trunk and and felt something pull in low back
## 49780                                                                                                                                            EE was changing the gas tank on the forklift and lifted the full tank up to put it in place and pulled his back muscles
## 49781                                                                                                                                                         EE was changing the rool on the end of the mower cable, the screwdriver slipped and entered his leftthumb.
## 49782                                                                                                             EE was changing the tv's in the south wing of the canada unit and stumbled back down the stairs on the block when EE lt foot slid in the bars on stair
## 49783                                                                                                                     EE was changing thermostat in the emergency oper- ator when the wrench he was using slipped out of the bolt and jammed his hand in the engine.
## 49784                                                                                                                                                            EE was changing tire for disabled motorist when he wrenched his back while attempting to loosen lug nut
## 49785                                                                                                                                                                                                         EE was changing tire on company auto and injured his hand.
## 49786                                                                                                                                                                       EE was changing tire on lawn mower when tire iron slipped from hand striking EE in the mouth
## 49787                                                                                                                                      EE was changing tire on patrol car and when he lifted the tire up to the hub of the car, he felt a sharp pain in his low back
## 49788                                                                                                                                                                                                        EE was changing tire on state vehicle cut thumb ontire rim.
## 49789                                                                                                                                                       EE was changing tire, started to plug & diegrinder hit the end of his (rt) thumb nail, splitting the nail ()
## 49790                                                                                                                                                        EE was changing tire, while removing tire from wheel, removal tool jumped and struck EE rt thumb wrist area
## 49791                                                                                                                                                                                EE was changing toilet paper holders in stalls and put knee down on screw on floor.
## 49792                                                                                                                                                                                             EE was changing toilet tissue and tissue holder cut her left thumb. ()
## 49793                                                                                                                                                                                   EE was changing toilet tissue roll and a sharp edge was on the tissue holder. ()
## 49794                                                                                                                                                                                          EE was changing trash bags when she was stung by a bee. Left index finger
## 49795                                                                                                                                                                                                                     EE was changing turtle tanks and strained back
## 49796                                                                                                                                                                                                           EE was chaning a tire when he injured his lower rt back.
## 49797                                                                                                                                                                             EE was chaning blade on mower-the bolt slipped offand hit the bottom part of the mower
## 49798                                                                                                                                                                                 EE was chaning bulbs in room when a bulb broke on the end and cut rt index finger.
## 49799                                                                                                                                     EE was chaning client-client started to fight and EE had to hold client when client pushed EE into bedrail in mid part of back
## 49800                                                                                                                                                                                                               EE was chaning flat tire on veh and strained stomach
## 49801                                                                                                                                                                                                             EE was chaning oil pain and got hot grease on lefthand
## 49802                                                                                                                                                                          EE was charged at by patient who was in seclusion and received multiple scratches to arms
## 49803                                                                                                                                                                                                                    EE was charged by inmate & lt wrist was injured
## 49804                                                                                                                                                EE was charging a battery in a vehicle & the battery blew up in his face. He has chemical burnsto his face & lungs.
## 49805                                                                                                                                                                                    EE was charging meat on the slicer. Hand touched the blade and cut two fingers.
## 49806                                                                                                    EE was chasing a a suspect on foot, and the EE ran into a stump. While placing the suspect into handcuffs the EE injured his left hand in the ensuing struggle.
## 49807                                                                                                                                                                                                     EE was chasing a basketball in the courtyard, slipped and fell
## 49808                                                                                                                                                                                    EE was chasing a calf trying to get it back in the hutch and stepped in a hole.
## 49809                                                                                                                EE was chasing a dwi suspect on foot, he slipped & fell on the concrete sidewalk injuring his rt hand & both knees. Bruises to rt hand & both knees
## 49810                                                                                                                               EE was chasing a fleeing suspect and fell on some branches that were in the yard. *do not pay any further charges from apollo enter*
## 49811                                                                                                                             EE was chasing a fleeing suspect on foot-caught suspect and fell to ground-suspect broke loose andjumped a fence EE injured left knee.
## 49812                                                                                                                                                                     EE was chasing a fleeing suspect, both he and the suspect became tangle with each other's legs
## 49813                                                                                                                                                      EE was chasing a inmate and cornered him on the yard and the inmate attached EE by knocking him to the ground
## 49814                                                                                                                                                                              EE was chasing a juvenile off state property and into wooded area and sprained ankle.
## 49815                                                                                                                                                                    EE was chasing a juvenile that ran out of the hospital and fell striking her head and shoulder,
## 49816                                                                                                                                                                                         EE was chasing a juvenile that was trying to escape and strained left knee
## 49817                                                                                                                                                               EE was chasing a larceny suspect, stepped off the curb and hyper-extended big toe on l foot. Strain.
## 49818                                                                                                                                                                             EE was chasing a patient - fell to ground landing on left knee and then right shoulder
## 49819                                                                                                                                                                                     EE was chasing a patient and the patient scratchedhim and his left leg cramped
## 49820                                                                                                                                                                         EE was chasing a patient who was trying to leave when she fell injuring her lt and rt knee
## 49821                                                                                                                     EE was chasing a prisoner who was attempting to escape on foot across paved parking lot during a rain show. EE slipped on wet pavement & fell.
## 49822                                                                                                                   EE was chasing a prisoner who was trying escape from custody when he and the prisoner fell to the ground causing EE to jam his rt shoulder/wrist
## 49823                                                                                                                                               EE was chasing a probationer in the parking lot and fell onto the street, causing abrasions to both hands and knees.
## 49824                                                                                                                                                            EE was chasing a resident down to place them in time out he became overheated. Dr Mulcalry 252-431-1336
## 49825                                                                                                                                                              EE was chasing a resident, and fell into doorframecausing fracture to distal humerus of her right arm
## 49826                                                                                                                                                                         EE was chasing a run-away student and stepped in a ditch and pulled muscle in upper lt leg
## 49827                                                                                                                                                                   EE was chasing a runaway patient, jumped down stairs and injured his lt and rt hamstring muscles
## 49828                                                                                                                                         EE was chasing a runaway student across a field when stepped off into a ditch twisting lt knee when he fell to the ground.
## 49829                                                                                                                                                                 EE was chasing a runaway student and fell while running, EE incured a number of cuts and abrasions
## 49830                                                                                                                          EE was chasing a student and during the restraint which lasted a while e injured back. Chiro bills**ic approved Dr Stewart as treating Dr
## 49831                                                                                                                                                                                                                  EE was chasing a student and he fell into a hole.
## 49832                                                                                                                                                                   EE was chasing a student that had ran from facility. He fell and hit his knee on part of a tree.
## 49833                                                                                                                                                                              EE was chasing a student who was running, and stepped in a hole and twisted his ankle
## 49834                                                                                                                        EE was chasing a subject trying to flee from arrest and tripped on refuse in a mobile home yard cutting his knee. Laceration to right knee.
## 49835                                                                                                                                                         EE was chasing a sunject on foot and struck an unknown object with his lower left leg causing an abrasion.
## 49836                                                                                                                                                                                                         EE was chasing a supect & felt pain in his left lower leg.
## 49837                                                                                                                                                                                            EE was chasing a suspect and fell in a ditch cutting rt hand on a stick
## 49838                                                                                                                                                                                                       EE was chasing a suspect and was struck by a small truck. ()
## 49839                                                                                                                                                 EE was chasing a suspect on foot & he tripped overseveral pieces of wood submerged in the ground. Injured rt knee.
## 49840                                                                                        EE was chasing a suspect on foot and performed a balance displacement technique on the suspect. Both fell onto concrete surface and the EE hit his right hand and chest. ()
## 49841                                                                                                                                                                               EE was chasing a suspect on foot and steeped into a hole and created damage to knee.
## 49842                                                                                                                                                                                                         EE was chasing a suspect on foot and strained his left leg
## 49843                                                                                                               EE was chasing a suspect on foot that had climbed a fence. EE attempted to jump the fence and cut and scraped his hands on the rough sides of fence.
## 49844                                                                                                                                                               EE was chasing a suspect on foot that was resisting arrest for dwi and fell down a steep embankment.
## 49845                                                                                                                                                                         EE was chasing a suspect on foot when he heard a loud pop and felt pain in his left ankle.
## 49846                                                                                                                              EE was chasing a suspect on foot when he tripped &fell going down a flight of stairs in warren co. Courthouse. Sprain to right ankle.
## 49847                                                                                                                                                         EE was chasing a suspect on foot. EE went from pavement to dirt area of unlevel drop off strainedleft knee
## 49848                                                                                                                                                                  EE was chasing a suspect through the woods and passed out afterwards due to heat and dehydration.
## 49849                                                                                                                                                                             EE was chasing a suspect through the woods when he was struck in rt eye by a tree limb
## 49850                                                                                                                                                                                     EE was chasing a suspect when he tripped over a tree root injuring his rt knee
## 49851                                                                                                                              EE was chasing a swi suspect and stepped on a concrete step and twised his ankle. Than got up and preceeded to apprehend the suspect.
## 49852                                                                                                                                        EE was chasing a vehicle when the driver slammed on his brakes in front of EE. EE struck the rear of hte suspect's vehicle.
## 49853                                                                                                                                               EE was chasing a young man who atempted to take a football; EE slipped, falling and could not get upinjured rt knee.
## 49854                                                                                                                                     EE was chasing after a fleeing suspect on foot, tacked suspect and both fell to the ground, felt a pull in lower back rt side.
## 49855                                                                                                                           EE was chasing after a patient to outside and felland the patient fell on top of EE while EE was trying subdue the patient. Injured knee
## 49856                                                                                                                                                                                          EE was chasing after a student who was out of control. Reinjured big toe.
## 49857                                                                                                                                                                              EE was chasing after a suspect on foot and felt a pain in the back of his right thigh
## 49858                                                                                                                                                                                                         EE was chasing after juvenile and twisted knee off of curb
## 49859                                                                                                                                                                           EE was chasing an escaped patient; tried to detainhim when he injured his right shoulder
## 49860                                                                                                             EE was chasing an impaired driving suspect on foot when he fell to the ground and cut his right hand and also bruised/cut/scraped left knee on asphalt
## 49861                                                                                                                                          EE was chasing an inmate who had grabbed an ac bandage from an officer. EE tripped and injured right knee and right hand.
## 49862                                                                                                                 EE was chasing client with a warrant for arrest. A piece of left over clothes line wire struck his head just above right eye. Required 3 stitches.
## 49863                                                                                                                                                                                               EE was chasing cows in dark and stepped in hole twisting right knee.
## 49864                                                                                                                                 EE was chasing fleeing subject on foot. EE ran down embankment and jumped over wall. Landed on right foot crushing right foot bone
## 49865                                                                                                                                  EE was chasing fugitive on foot. EE ran into hole in ground. Twisted left knee causing him to fall on left shoulder and left knee
## 49866                                                                                                                                      EE was chasing inmate with shank trying to stab another inmate. Both inmates were running down hall. Injury to left first toe
## 49867                                                                                                                                               EE was chasing patient tring to elope from wt & trying to break pt's fall injured left leg causingpain when walking.
## 49868                                                                                                                                                                                                                      EE was chasing resident and fell on sidewalk.
## 49869                                                                                                                                                                    EE was chasing resident into bathroom and slipped and fell on the floor. Injured head and hand.
## 49870                                                                                                                                                                         EE was chasing runaway student and jumped over a creek bank and strained low back muscles.
## 49871                                                                                                                                                               EE was chasing students through woods and twsited his ankle on the uneven ground and jammed his back
## 49872                                                                                                                                                          EE was chasing subject on foot when he accidently ran into metal door. Laceration middle of foreheadknee,
## 49873                                                                                                                    EE was chasing subject who was running to avoid arrest when subject jumped off four foot ledge. EE jumped and landed on right knee twisting it.
## 49874                                                                                                                                                      EE was chasing suspect after suspect decided to flee. EE pursued on foot and apprehended, spraining left foot
## 49875                                                                                                                                                                                                 EE was chasing suspect and fell on pavement hurting knees and side
## 49876                                                                                                                                                                             EE was chasing suspect in car when suspect did a uturn and collided with trooper's car
## 49877                                                                                                                                                                                                      EE was chasing suspect on foot for 3hrs and becameover heated
## 49878                                                                                                                                                                                              EE was chasing suspect on foot when he fell and injured left shoulder
## 49879                                                                                                                  EE was chasing suspect on foot. Grass was growing up in the ditch level w/ rest of ground. EE ran into ditch thinking it was level ground & slid.
## 49880                                                                                                             EE was chasing suspect on tobacco trail (nccu police have full jursdiction in durham nc) when he slid and fell down embankment injuring both hand, rig
## 49881                                                                                                                  EE was chasing suspect who was resisting arrest. Suspect threw pool sticks behind him in effort to make EE trip and EE tripped falling on stairs.
## 49882                                                                                                                                                                                                                     EE was chasing two students when he ran across
## 49883                                                                                                              EE was chasing violator on foot, tripped over a small bush, jammed left wrist as he fell to groundscratches on back of left hand rt wrist, knee ankle
## 49884                                                                                                                                                                          EE was chasing who had ran from admitting office staff fell in road, rt ankle and popped.
## 49885                                                                                                                 EE was chcknr car w/fellow co-worker and her radiator cap exploded and spewed hot water on EE lt armwent to the doctor the next day to be checked.
## 49886                                                                                                                       EE was check ing a hot water valve in mechanical room. He was moving around some pipe when he felt pain and something pop in his lower back.
## 49887                                                                                                                                                             EE was check the cleanliness of a fan and cut left middle finger and razor blade that was hidden there
## 49888                                                                                                                                                                                    EE was checking #2 yard and stepped in hole with right foot causing her to fall
## 49889                                                                                                                                            EE was checking a brasing pan lifted the lid up tocheck on the sauce, sauce popped up and hit her inthe face and chest.
## 49890                                                                                                                                                                                                       EE was checking a car when the vehicle ran over his lt foot.
## 49891                                                                                                                                                                                                 EE was checking a fuse skated a wire flash burn tothe top of hand.
## 49892                                                                                                                    EE was checking a mobile boiler, tried to step on a manhole lid to avoid stepping in mud. Lid moved EE stepped in the manhole. EE #704 680 4281
## 49893                                                                                                                                              EE was checking air flow in attic of bldg. EE reached behind dark air duct & felt a burning sensation.. Spider bite..
## 49894                                                                                                                                          EE was checking air-handles in attic when a accessdoor in ceiling fell down on right hand. Caused contusion to right hand
## 49895                                                                                                                   EE was checking an abandoned vehicle on us-74 during snow and ice conditions. As he was getting in his patrol vehicle, slipped twisting his knee
## 49896                                                                                                                                                       EE was checking an alarm and fell down steps reaching down from the back deck of the building. Injured knee.
## 49897                                                                                                                                                                                    EE was checking an inmate blood sugar and stuck her 4th finger with the needle.
## 49898                                                                                                                                                                           EE was checking battery posts to insure tightness of connection and the battery exploded
## 49899                                                                                                                                                                       EE was checking belts on exhaust fans when hand hit a sharp edge on the exhaust fan cover ()
## 49900                                                                                                                                         EE was checking boats and while holding to the boat he felt a pull in his rt shoulder dob.. 6-17-63.. Law enforcement ofcr
## 49901                                                                                                                                                                                                              EE was checking campus grounds and was stung by a bee
## 49902                                                                                                                      EE was checking cattle, saw a baby calf down, proc-eeded to check it out, the mother cow came up behind him, knocking him over, hit his head.
## 49903                                                                                                                  EE was checking ceiling tiles/ decended from ladder/ missed last step/caused force on (l) leg **apply op on ttd to first week**new aww $542. 22**
## 49904                                                                                                             EE was checking ceiling, stairwell & doors for pm. EE was on top step, mis-stepped and fell down rem aining stairs. Hurt arms, legs, shins, back, hand
## 49905                                                                                                                                                                EE was checking client to see if they needed changing, client struck EE on the rt side of the face.
## 49906                                                                                                                                                     EE was checking contraband in tied rubber glove fingers & the contents (semen & urine) splattered on r forearm
## 49907                                                                                                                                                                     EE was checking coolant level in reservoir which was too hot and coolant splashed over rt hand
## 49908                                                                                                                                          EE was checking courier mail box per her duties and a wasp was in the mail box, stung her on the hand, had alergic rxn ()
## 49909                                                                                                                              EE was checking curfews at a probationers house and a dog came around the house and startled him and he tripped and fell on his back.
## 49910                                                                                                                 EE was checking curfews in the eden area she was stopped at a stop light with vehicle in front of her she hit other vehicle causing injury to head
## 49911                                                                                                                  EE was checking curfews on assigned offenders by visiting homes. EE pulled into intersection and was struck by another vehicle. Multiple injuries
## 49912                                                                                                        EE was checking curfews on offenders, stepped down on stepping stone and was thrown approx 1 ft, came down on lt side of face, arm, shldr, hand, knee, stmc
## 49913                                                                                                                                                                                                                        EE was checking doors and stepped in a hole
## 49914                                                                                                                                                                                      EE was checking doors when a piece of metal went thru his rt hand finger nail
## 49915                                                                                                                                                  EE was checking drive thru gate, she fell on the cement slab at the pavement hitting her left knee on the cement.
## 49916                                                                                                                         EE was checking driver license on nc hwy 46, talkinto motorist in the eastbound lane when he was struck by a motorist that falled to stop.
## 49917                                                                                                                                                                              EE was checking driver license the wind blew & a foreign object got into EE's rt eye.
## 49918                                                                                                                                                                               EE was checking duck hunting when he hit a sub- merrged object with his patrol boat.
## 49919                                                                                                                                                      EE was checking electrical box in ceciling, got shocked and fell off ladder. Injuredelbow, hip, leg, forearm.
## 49920                                                                                                                                              EE was checking equipment near stream when he slipped on rocks and steep land, fell and landed hard on his left knee.
## 49921                                                                                                           EE was checking exhaust fans in mechanical rm of jones bldg, EE was climbing up ladder to look over wall, bumped head on sprinkler line, jarring neck ()
## 49922                                                                                                                                                            EE was checking exterior doors on e-dormitory he twisted his left knee while stepping over railroadtie.
## 49923                                                                                                                                                                 EE was checking fence line. Stepped in hole and hurt left ankle. Mild swelling of upper left ankle
## 49924                                                                                                               EE was checking fire door and as she was turning the key she struck her knucle on the door causing a laceration to the second joint 1st finger left.
## 49925                                                                                                                                                                                  EE was checking fire doors when she fell injuring her lt wrist, arm, and lt knee.
## 49926                                                                                                                                                            EE was checking fire edge while leaving scene slipped on steep slope and slipped into barbed wire fence
## 49927                                                                                                                                                                                            EE was checking fire extinguisher and exploded in face irritating eyes.
## 49928                                                                                                                                                              EE was checking fishing at weldon boat access at night hours and bank gave way causing ankle to turn.
## 49929                                                                                                                                                                  EE was checking fishing behind dam, fell on rocks at bottom of path. Injury to left leg and ankle
## 49930                                                                                                                       EE was checking fishing on hwy 11 bridge, he was decending embankment when he lost footing &hurt r shoulder *sal cont* *knee is not covered*
## 49931                                                                                                                          EE was checking for improper size signs-stacking signs on table in orderly fashion. Signs slid off of table hit top of feet. Rt foot top.
## 49932                                                                                                                                                                                                EE was checking for lines and stepped in a hole and turned rt ankle
## 49933                                                                                                                                                                               EE was checking for trash and vent fell and hit EE in the mouth and chipped a tooth.
## 49934                                                                                                                             EE was checking front of vehicle & car moved foward striking both legs. Was not notified until today about outside treatment from cicc
## 49935                                                                                                                                                        EE was checking he hooks on the back of the bus, slipped on loose gravel and caught himself on the tool box
## 49936                                                                                                                                                                                                              EE was checking heat valves and got dust in both eyes
## 49937                                                                                                                                    EE was checking hot food w/ tongs, tongs slipped from hand and EE instinctively tried to grab them and touched hot grill roller
## 49938                                                                                                                                                                      EE was checking hunters tree stand and came in contact with poison ivy. Rash on arms and face
## 49939                                                                                                                                                                                           EE was checking ice in parking lot and slipped and fell on left shoulder
## 49940                                                                                                                                                            EE was checking in at gate house. EE stated he blacked out and fell. Injuring back, rt shoulder rt leg.
## 49941                                                                                                                         EE was checking in at hampton inn for an intervieww/ a medicaid receipient when the strap of the case containing the lap top computer slid
## 49942                                                                                                                                                   EE was checking in new patient; patient became aggressive attempted to place in ito; patient beganfighting staff
## 49943                                                                                                                                                                                                    EE was checking in shipment at store and twisted muscles in hip
## 49944                                                                                                                                   EE was checking inmantes blood, he started to fallon floor, EE attempted to assist him, EE fell to floor as well. Bruise to body
## 49945                                                                                                                                                                EE was checking inmates back into yard, he slippedon ice, causing him to fall back on his left leg.
## 49946                                                                                                                           EE was checking inmates blood glucose with an accucheck. Placed needle on table & EE accidentallyplaced hand on needle; stick to finger.
## 49947                                                                                                                                                                                               EE was checking installation on stem line when he struck his lt hand
## 49948                                                                                                                                                       EE was checking into hotel in washington dc and fell on some ice outside hotel entrance. Strain right thumb.
## 49949                                                                                                                                                          EE was checking inventory in the equipment cabinetwhen he struck his rt index finger on top of door frame
## 49950                                                                                                                                                           EE was checking light fixture, cut 4th finger on right hand on razor blade that was hidden in the light.
## 49951                                                                                                                                                                                                   EE was checking lockers and one opened up and hit EE the rt eye.
## 49952                                                                                                                                                                         EE was checking lot in utility cart when vehicle backed into cart. Injury to right forearm
## 49953                                                                                                                                             EE was checking mailbox and heard telephone line and tripped over an above ground electrical outletinjuring lower back
## 49954                                                                                                                EE was checking meal gards in serving line, steppedon floor that was wet with water and grease, lost balance and fell, struck low back on handrail.
## 49955                                                                                                                                                                          EE was checking meters across from carc building, stepped in pot hol covered with leaves.
## 49956                                                                                                                                                 EE was checking mileage log on transfer bus when he opened the door when the lock has struck him in the right eye.
## 49957                                                                                                                         EE was checking off inventory of items on truck, wind blew door striking EE on left side of head knocking glasses off, and grit his teeth.
## 49958                                                                                                                                                                   EE was checking offender's curfew and fell over boards that were placed just inside a fence gate
## 49959                                                                                                                                                                                             EE was checking on an inmate when the cell door closed on his rt thumb
## 49960                                                                                                                    EE was checking on another inmate when second inmate attacked him. Inmate who attacked officer was fully restrained and used cuffs to injure EE
## 49961                                                                           EE was checking on chapel site to ensure area was secure. EE was leaning on a board across the door when board fell off and EE fell out of the door and onto his left hand and knees. ()
## 49962                                                                                                                           EE was checking on curfew when the probationer's dog ran toward him barking & growling. EE jumped on top of his car hitting his rt knee.
## 49963                                                                                                                                             EE was checking on fishermen. While walking down muddy bank, he slipped and caught himself. He feltpain in lower back.
## 49964                                                                                                                                                                                        EE was checking on food trays and felt a pulling sensation in her shoulder.
## 49965                                                                                                                       EE was checking on inmate in medical crisis, upon opening door inmate fell forward and EE caught himforce of weight twisted EE's left wrist.
## 49966                                                                                                              EE was checking on inmate, inmate jumped off bunk striking EE w/ closed fist to mouth, sustained 2 broken teeth and a laceration to upper & lower lip
## 49967                                                                                                                                                                                                            EE was checking on patient and hit rt arm on linen cart
## 49968                                                                                                                                                                          EE was checking on pt when an agitated pt grabbed EE's arm and hit her in the left wrist.
## 49969                                                                                                                                 EE was checking on student who was upset and in time out. When leaving students room, student assaulted staff on left side of face
## 49970                                                                                                                                 EE was checking on the new address of probationer. EE stepped out of vehicle & stepped on the uneven ground & twisted right ankle.
## 49971                                                                                                                                                                                           EE was checking on tree planting job and some- thing flew into left ear.
## 49972                                                                                                                                                                                           EE was checking out circuit on gas and oven door fell and hit EE on head
## 49973                                                                                                                                                                                 EE was checking out the fried chicken, dropped it and hot grease splashed on chest
## 49974                                                                                                                                   EE was checking patch on pt he was very resistive. EE had to pull & turn pt. EE felt a pulling sensation in r hip & l back area.
## 49975                                                                                                                                                 EE was checking patient's mouth for cheeking meds when patient punched EE in the chest & kicked EE in the legs. ()
## 49976                                                                                                                                                          EE was checking perimeter on med yard when she walked into a spider web and the spider bit her left elbow
## 49977                                                                                                                      EE was checking pine tree seedlings. EE stepped across a shallow gulley and felt some pain in leftknee. As day progressed, pain became worse.
## 49978                                                                                                             EE was checking pistols, when placing weapons intowooden holding box, EE struck her r thumb against the edge of box & splinter was embedded thumb nail
## 49979                                                                                                                                                                                                    EE was checking placement of tube and cut bite EE on left thumb
## 49980                                                                                                                                                                 EE was checking pt clothing when her finger was cut from a razor when she was checking his pockets
## 49981                                                                                          EE was checking pt to get vital signs. EE asked the pt's mother to hold one leg while EE held the other. Pt's mom let go of leg and pt kicked EE in left side of face. ()
## 49982                                                                                                                          EE was checking resident natl care and arm band when resident grabbed EE's wrist. Resident releasdee's wrist casuing EE to loose balance.
## 49983                                                                                                                    EE was checking road side duties for inmates an inmate fell trying to break his fall and hand hit the fire extinguisher and chemicals came out.
## 49984                                                                                                                                                EE was checking room 2a and he touched an aluminumstrip that was connected to a light that shocked him. Right hand.
## 49985                                                                                                               EE was checking sleeping accomindations for adultswhen the ladder slipped from itt's brackets and eefell backwards hitting her head, buttocks, back.
## 49986                                                                                                                           EE was checking smoke in training facility & fell through access hole hitting side & lower back on access hole assembly. EE is part/time
## 49987                                                                                                                                                                                                       EE was checking some equipement and slipped and fell on ice.
## 49988                                                                                                                EE was checking some fisherman in a boat, holding edge of bow, wave pushed boat into rocks, EE cut finger and tore fingernail off and cracked bone.
## 49989                                                                                                                              EE was checking some newspapers & found semen. He then found a hole in lt first finger of glove exposing him to possible body fluids.
## 49990                                                                                                                                            EE was checking state car into sallyport, bent over to chekc up under the car and felt something pull around right knee
## 49991                                                                                                                 EE was checking steam kettle in kitchen. He laid arm on back of unit where there was oven cleaner on back that had not been wiped off. Rash on arm
## 49992                                                                                                                                                                                    EE was checking steam leak, valve broke off of drain line, hit left wrist. Burn
## 49993                                                                                                                                                                                               EE was checking steam line and slipped in water and hit back on line
## 49994                                                                                                                                                                           EE was checking steps fro cleaning purposes and she slipped on a piece of plastic paper.
## 49995                                                                                                                                      EE was checking straps on trailer, EE stepped off of trailer fender, foot slipped causing EE to loose footing and twist back.
## 49996                                                                                                                                                                                                            EE was checking students for head lice and was infested
## 49997                                                                                                                                                        EE was checking table and chairs ater visitation and chairs fell over hitting EE on the foot rt 4th toe. ..
## 49998                                                                                                                                                                              EE was checking temperature of the vat of grits & was splashed & burned by the grits.
## 49999                                                                                                                                                          EE was checking the campground when she slipped on a patch of ice and fell backward injuring his lt wrist
##        n
## 1     55
## 2     27
## 3     24
## 4     22
## 5     17
## 6     16
## 7     15
## 8     14
## 9     13
## 10    12
## 11    12
## 12     9
## 13     8
## 14     8
## 15     8
## 16     7
## 17     7
## 18     7
## 19     6
## 20     6
## 21     6
## 22     6
## 23     6
## 24     6
## 25     6
## 26     5
## 27     5
## 28     5
## 29     5
## 30     5
## 31     5
## 32     5
## 33     5
## 34     5
## 35     4
## 36     4
## 37     4
## 38     4
## 39     4
## 40     4
## 41     4
## 42     4
## 43     4
## 44     4
## 45     4
## 46     4
## 47     4
## 48     4
## 49     4
## 50     4
## 51     4
## 52     4
## 53     4
## 54     3
## 55     3
## 56     3
## 57     3
## 58     3
## 59     3
## 60     3
## 61     3
## 62     3
## 63     3
## 64     3
## 65     3
## 66     3
## 67     3
## 68     3
## 69     3
## 70     3
## 71     3
## 72     3
## 73     3
## 74     3
## 75     3
## 76     3
## 77     3
## 78     3
## 79     3
## 80     3
## 81     3
## 82     3
## 83     3
## 84     3
## 85     3
## 86     3
## 87     3
## 88     3
## 89     3
## 90     3
## 91     3
## 92     3
## 93     3
## 94     3
## 95     3
## 96     3
## 97     3
## 98     3
## 99     3
## 100    3
## 101    3
## 102    3
## 103    2
## 104    2
## 105    2
## 106    2
## 107    2
## 108    2
## 109    2
## 110    2
## 111    2
## 112    2
## 113    2
## 114    2
## 115    2
## 116    2
## 117    2
## 118    2
## 119    2
## 120    2
## 121    2
## 122    2
## 123    2
## 124    2
## 125    2
## 126    2
## 127    2
## 128    2
## 129    2
## 130    2
## 131    2
## 132    2
## 133    2
## 134    2
## 135    2
## 136    2
## 137    2
## 138    2
## 139    2
## 140    2
## 141    2
## 142    2
## 143    2
## 144    2
## 145    2
## 146    2
## 147    2
## 148    2
## 149    2
## 150    2
## 151    2
## 152    2
## 153    2
## 154    2
## 155    2
## 156    2
## 157    2
## 158    2
## 159    2
## 160    2
## 161    2
## 162    2
## 163    2
## 164    2
## 165    2
## 166    2
## 167    2
## 168    2
## 169    2
## 170    2
## 171    2
## 172    2
## 173    2
## 174    2
## 175    2
## 176    2
## 177    2
## 178    2
## 179    2
## 180    2
## 181    2
## 182    2
## 183    2
## 184    2
## 185    2
## 186    2
## 187    2
## 188    2
## 189    2
## 190    2
## 191    2
## 192    2
## 193    2
## 194    2
## 195    2
## 196    2
## 197    2
## 198    2
## 199    2
## 200    2
## 201    2
## 202    2
## 203    2
## 204    2
## 205    2
## 206    2
## 207    2
## 208    2
## 209    2
## 210    2
## 211    2
## 212    2
## 213    2
## 214    2
## 215    2
## 216    2
## 217    2
## 218    2
## 219    2
## 220    2
## 221    2
## 222    2
## 223    2
## 224    2
## 225    2
## 226    2
## 227    2
## 228    2
## 229    2
## 230    2
## 231    2
## 232    2
## 233    2
## 234    2
## 235    2
## 236    2
## 237    2
## 238    2
## 239    2
## 240    2
## 241    2
## 242    2
## 243    2
## 244    2
## 245    2
## 246    2
## 247    2
## 248    2
## 249    2
## 250    2
## 251    2
## 252    2
## 253    2
## 254    2
## 255    2
## 256    2
## 257    2
## 258    2
## 259    2
## 260    2
## 261    2
## 262    2
## 263    2
## 264    2
## 265    2
## 266    2
## 267    2
## 268    2
## 269    2
## 270    2
## 271    2
## 272    2
## 273    2
## 274    2
## 275    2
## 276    2
## 277    2
## 278    2
## 279    2
## 280    2
## 281    2
## 282    2
## 283    2
## 284    2
## 285    2
## 286    2
## 287    2
## 288    2
## 289    2
## 290    2
## 291    2
## 292    2
## 293    2
## 294    2
## 295    2
## 296    2
## 297    2
## 298    2
## 299    2
## 300    2
## 301    2
## 302    2
## 303    2
## 304    2
## 305    2
## 306    2
## 307    2
## 308    2
## 309    2
## 310    2
## 311    2
## 312    2
## 313    2
## 314    2
## 315    2
## 316    2
## 317    2
## 318    2
## 319    2
## 320    2
## 321    2
## 322    2
## 323    2
## 324    2
## 325    2
## 326    2
## 327    2
## 328    2
## 329    2
## 330    2
## 331    2
## 332    2
## 333    2
## 334    2
## 335    2
## 336    2
## 337    2
## 338    2
## 339    2
## 340    2
## 341    2
## 342    2
## 343    2
## 344    2
## 345    2
## 346    2
## 347    2
## 348    2
## 349    2
## 350    2
## 351    2
## 352    2
## 353    2
## 354    2
## 355    2
## 356    2
## 357    2
## 358    2
## 359    2
## 360    2
## 361    2
## 362    2
## 363    2
## 364    2
## 365    2
## 366    2
## 367    2
## 368    2
## 369    2
## 370    2
## 371    2
## 372    2
## 373    2
## 374    2
## 375    1
## 376    1
## 377    1
## 378    1
## 379    1
## 380    1
## 381    1
## 382    1
## 383    1
## 384    1
## 385    1
## 386    1
## 387    1
## 388    1
## 389    1
## 390    1
## 391    1
## 392    1
## 393    1
## 394    1
## 395    1
## 396    1
## 397    1
## 398    1
## 399    1
## 400    1
## 401    1
## 402    1
## 403    1
## 404    1
## 405    1
## 406    1
## 407    1
## 408    1
## 409    1
## 410    1
## 411    1
## 412    1
## 413    1
## 414    1
## 415    1
## 416    1
## 417    1
## 418    1
## 419    1
## 420    1
## 421    1
## 422    1
## 423    1
## 424    1
## 425    1
## 426    1
## 427    1
## 428    1
## 429    1
## 430    1
## 431    1
## 432    1
## 433    1
## 434    1
## 435    1
## 436    1
## 437    1
## 438    1
## 439    1
## 440    1
## 441    1
## 442    1
## 443    1
## 444    1
## 445    1
## 446    1
## 447    1
## 448    1
## 449    1
## 450    1
## 451    1
## 452    1
## 453    1
## 454    1
## 455    1
## 456    1
## 457    1
## 458    1
## 459    1
## 460    1
## 461    1
## 462    1
## 463    1
## 464    1
## 465    1
## 466    1
## 467    1
## 468    1
## 469    1
## 470    1
## 471    1
## 472    1
## 473    1
## 474    1
## 475    1
## 476    1
## 477    1
## 478    1
## 479    1
## 480    1
## 481    1
## 482    1
## 483    1
## 484    1
## 485    1
## 486    1
## 487    1
## 488    1
## 489    1
## 490    1
## 491    1
## 492    1
## 493    1
## 494    1
## 495    1
## 496    1
## 497    1
## 498    1
## 499    1
## 500    1
## 501    1
## 502    1
## 503    1
## 504    1
## 505    1
## 506    1
## 507    1
## 508    1
## 509    1
## 510    1
## 511    1
## 512    1
## 513    1
## 514    1
## 515    1
## 516    1
## 517    1
## 518    1
## 519    1
## 520    1
## 521    1
## 522    1
## 523    1
## 524    1
## 525    1
## 526    1
## 527    1
## 528    1
## 529    1
## 530    1
## 531    1
## 532    1
## 533    1
## 534    1
## 535    1
## 536    1
## 537    1
## 538    1
## 539    1
## 540    1
## 541    1
## 542    1
## 543    1
## 544    1
## 545    1
## 546    1
## 547    1
## 548    1
## 549    1
## 550    1
## 551    1
## 552    1
## 553    1
## 554    1
## 555    1
## 556    1
## 557    1
## 558    1
## 559    1
## 560    1
## 561    1
## 562    1
## 563    1
## 564    1
## 565    1
## 566    1
## 567    1
## 568    1
## 569    1
## 570    1
## 571    1
## 572    1
## 573    1
## 574    1
## 575    1
## 576    1
## 577    1
## 578    1
## 579    1
## 580    1
## 581    1
## 582    1
## 583    1
## 584    1
## 585    1
## 586    1
## 587    1
## 588    1
## 589    1
## 590    1
## 591    1
## 592    1
## 593    1
## 594    1
## 595    1
## 596    1
## 597    1
## 598    1
## 599    1
## 600    1
## 601    1
## 602    1
## 603    1
## 604    1
## 605    1
## 606    1
## 607    1
## 608    1
## 609    1
## 610    1
## 611    1
## 612    1
## 613    1
## 614    1
## 615    1
## 616    1
## 617    1
## 618    1
## 619    1
## 620    1
## 621    1
## 622    1
## 623    1
## 624    1
## 625    1
## 626    1
## 627    1
## 628    1
## 629    1
## 630    1
## 631    1
## 632    1
## 633    1
## 634    1
## 635    1
## 636    1
## 637    1
## 638    1
## 639    1
## 640    1
## 641    1
## 642    1
## 643    1
## 644    1
## 645    1
## 646    1
## 647    1
## 648    1
## 649    1
## 650    1
## 651    1
## 652    1
## 653    1
## 654    1
## 655    1
## 656    1
## 657    1
## 658    1
## 659    1
## 660    1
## 661    1
## 662    1
## 663    1
## 664    1
## 665    1
## 666    1
## 667    1
## 668    1
## 669    1
## 670    1
## 671    1
## 672    1
## 673    1
## 674    1
## 675    1
## 676    1
## 677    1
## 678    1
## 679    1
## 680    1
## 681    1
## 682    1
## 683    1
## 684    1
## 685    1
## 686    1
## 687    1
## 688    1
## 689    1
## 690    1
## 691    1
## 692    1
## 693    1
## 694    1
## 695    1
## 696    1
## 697    1
## 698    1
## 699    1
## 700    1
## 701    1
## 702    1
## 703    1
## 704    1
## 705    1
## 706    1
## 707    1
## 708    1
## 709    1
## 710    1
## 711    1
## 712    1
## 713    1
## 714    1
## 715    1
## 716    1
## 717    1
## 718    1
## 719    1
## 720    1
## 721    1
## 722    1
## 723    1
## 724    1
## 725    1
## 726    1
## 727    1
## 728    1
## 729    1
## 730    1
## 731    1
## 732    1
## 733    1
## 734    1
## 735    1
## 736    1
## 737    1
## 738    1
## 739    1
## 740    1
## 741    1
## 742    1
## 743    1
## 744    1
## 745    1
## 746    1
## 747    1
## 748    1
## 749    1
## 750    1
## 751    1
## 752    1
## 753    1
## 754    1
## 755    1
## 756    1
## 757    1
## 758    1
## 759    1
## 760    1
## 761    1
## 762    1
## 763    1
## 764    1
## 765    1
## 766    1
## 767    1
## 768    1
## 769    1
## 770    1
## 771    1
## 772    1
## 773    1
## 774    1
## 775    1
## 776    1
## 777    1
## 778    1
## 779    1
## 780    1
## 781    1
## 782    1
## 783    1
## 784    1
## 785    1
## 786    1
## 787    1
## 788    1
## 789    1
## 790    1
## 791    1
## 792    1
## 793    1
## 794    1
## 795    1
## 796    1
## 797    1
## 798    1
## 799    1
## 800    1
## 801    1
## 802    1
## 803    1
## 804    1
## 805    1
## 806    1
## 807    1
## 808    1
## 809    1
## 810    1
## 811    1
## 812    1
## 813    1
## 814    1
## 815    1
## 816    1
## 817    1
## 818    1
## 819    1
## 820    1
## 821    1
## 822    1
## 823    1
## 824    1
## 825    1
## 826    1
## 827    1
## 828    1
## 829    1
## 830    1
## 831    1
## 832    1
## 833    1
## 834    1
## 835    1
## 836    1
## 837    1
## 838    1
## 839    1
## 840    1
## 841    1
## 842    1
## 843    1
## 844    1
## 845    1
## 846    1
## 847    1
## 848    1
## 849    1
## 850    1
## 851    1
## 852    1
## 853    1
## 854    1
## 855    1
## 856    1
## 857    1
## 858    1
## 859    1
## 860    1
## 861    1
## 862    1
## 863    1
## 864    1
## 865    1
## 866    1
## 867    1
## 868    1
## 869    1
## 870    1
## 871    1
## 872    1
## 873    1
## 874    1
## 875    1
## 876    1
## 877    1
## 878    1
## 879    1
## 880    1
## 881    1
## 882    1
## 883    1
## 884    1
## 885    1
## 886    1
## 887    1
## 888    1
## 889    1
## 890    1
## 891    1
## 892    1
## 893    1
## 894    1
## 895    1
## 896    1
## 897    1
## 898    1
## 899    1
## 900    1
## 901    1
## 902    1
## 903    1
## 904    1
## 905    1
## 906    1
## 907    1
## 908    1
## 909    1
## 910    1
## 911    1
## 912    1
## 913    1
## 914    1
## 915    1
## 916    1
## 917    1
## 918    1
## 919    1
## 920    1
## 921    1
## 922    1
## 923    1
## 924    1
## 925    1
## 926    1
## 927    1
## 928    1
## 929    1
## 930    1
## 931    1
## 932    1
## 933    1
## 934    1
## 935    1
## 936    1
## 937    1
## 938    1
## 939    1
## 940    1
## 941    1
## 942    1
## 943    1
## 944    1
## 945    1
## 946    1
## 947    1
## 948    1
## 949    1
## 950    1
## 951    1
## 952    1
## 953    1
## 954    1
## 955    1
## 956    1
## 957    1
## 958    1
## 959    1
## 960    1
## 961    1
## 962    1
## 963    1
## 964    1
## 965    1
## 966    1
## 967    1
## 968    1
## 969    1
## 970    1
## 971    1
## 972    1
## 973    1
## 974    1
## 975    1
## 976    1
## 977    1
## 978    1
## 979    1
## 980    1
## 981    1
## 982    1
## 983    1
## 984    1
## 985    1
## 986    1
## 987    1
## 988    1
## 989    1
## 990    1
## 991    1
## 992    1
## 993    1
## 994    1
## 995    1
## 996    1
## 997    1
## 998    1
## 999    1
## 1000   1
## 1001   1
## 1002   1
## 1003   1
## 1004   1
## 1005   1
## 1006   1
## 1007   1
## 1008   1
## 1009   1
## 1010   1
## 1011   1
## 1012   1
## 1013   1
## 1014   1
## 1015   1
## 1016   1
## 1017   1
## 1018   1
## 1019   1
## 1020   1
## 1021   1
## 1022   1
## 1023   1
## 1024   1
## 1025   1
## 1026   1
## 1027   1
## 1028   1
## 1029   1
## 1030   1
## 1031   1
## 1032   1
## 1033   1
## 1034   1
## 1035   1
## 1036   1
## 1037   1
## 1038   1
## 1039   1
## 1040   1
## 1041   1
## 1042   1
## 1043   1
## 1044   1
## 1045   1
## 1046   1
## 1047   1
## 1048   1
## 1049   1
## 1050   1
## 1051   1
## 1052   1
## 1053   1
## 1054   1
## 1055   1
## 1056   1
## 1057   1
## 1058   1
## 1059   1
## 1060   1
## 1061   1
## 1062   1
## 1063   1
## 1064   1
## 1065   1
## 1066   1
## 1067   1
## 1068   1
## 1069   1
## 1070   1
## 1071   1
## 1072   1
## 1073   1
## 1074   1
## 1075   1
## 1076   1
## 1077   1
## 1078   1
## 1079   1
## 1080   1
## 1081   1
## 1082   1
## 1083   1
## 1084   1
## 1085   1
## 1086   1
## 1087   1
## 1088   1
## 1089   1
## 1090   1
## 1091   1
## 1092   1
## 1093   1
## 1094   1
## 1095   1
## 1096   1
## 1097   1
## 1098   1
## 1099   1
## 1100   1
## 1101   1
## 1102   1
## 1103   1
## 1104   1
## 1105   1
## 1106   1
## 1107   1
## 1108   1
## 1109   1
## 1110   1
## 1111   1
## 1112   1
## 1113   1
## 1114   1
## 1115   1
## 1116   1
## 1117   1
## 1118   1
## 1119   1
## 1120   1
## 1121   1
## 1122   1
## 1123   1
## 1124   1
## 1125   1
## 1126   1
## 1127   1
## 1128   1
## 1129   1
## 1130   1
## 1131   1
## 1132   1
## 1133   1
## 1134   1
## 1135   1
## 1136   1
## 1137   1
## 1138   1
## 1139   1
## 1140   1
## 1141   1
## 1142   1
## 1143   1
## 1144   1
## 1145   1
## 1146   1
## 1147   1
## 1148   1
## 1149   1
## 1150   1
## 1151   1
## 1152   1
## 1153   1
## 1154   1
## 1155   1
## 1156   1
## 1157   1
## 1158   1
## 1159   1
## 1160   1
## 1161   1
## 1162   1
## 1163   1
## 1164   1
## 1165   1
## 1166   1
## 1167   1
## 1168   1
## 1169   1
## 1170   1
## 1171   1
## 1172   1
## 1173   1
## 1174   1
## 1175   1
## 1176   1
## 1177   1
## 1178   1
## 1179   1
## 1180   1
## 1181   1
## 1182   1
## 1183   1
## 1184   1
## 1185   1
## 1186   1
## 1187   1
## 1188   1
## 1189   1
## 1190   1
## 1191   1
## 1192   1
## 1193   1
## 1194   1
## 1195   1
## 1196   1
## 1197   1
## 1198   1
## 1199   1
## 1200   1
## 1201   1
## 1202   1
## 1203   1
## 1204   1
## 1205   1
## 1206   1
## 1207   1
## 1208   1
## 1209   1
## 1210   1
## 1211   1
## 1212   1
## 1213   1
## 1214   1
## 1215   1
## 1216   1
## 1217   1
## 1218   1
## 1219   1
## 1220   1
## 1221   1
## 1222   1
## 1223   1
## 1224   1
## 1225   1
## 1226   1
## 1227   1
## 1228   1
## 1229   1
## 1230   1
## 1231   1
## 1232   1
## 1233   1
## 1234   1
## 1235   1
## 1236   1
## 1237   1
## 1238   1
## 1239   1
## 1240   1
## 1241   1
## 1242   1
## 1243   1
## 1244   1
## 1245   1
## 1246   1
## 1247   1
## 1248   1
## 1249   1
## 1250   1
## 1251   1
## 1252   1
## 1253   1
## 1254   1
## 1255   1
## 1256   1
## 1257   1
## 1258   1
## 1259   1
## 1260   1
## 1261   1
## 1262   1
## 1263   1
## 1264   1
## 1265   1
## 1266   1
## 1267   1
## 1268   1
## 1269   1
## 1270   1
## 1271   1
## 1272   1
## 1273   1
## 1274   1
## 1275   1
## 1276   1
## 1277   1
## 1278   1
## 1279   1
## 1280   1
## 1281   1
## 1282   1
## 1283   1
## 1284   1
## 1285   1
## 1286   1
## 1287   1
## 1288   1
## 1289   1
## 1290   1
## 1291   1
## 1292   1
## 1293   1
## 1294   1
## 1295   1
## 1296   1
## 1297   1
## 1298   1
## 1299   1
## 1300   1
## 1301   1
## 1302   1
## 1303   1
## 1304   1
## 1305   1
## 1306   1
## 1307   1
## 1308   1
## 1309   1
## 1310   1
## 1311   1
## 1312   1
## 1313   1
## 1314   1
## 1315   1
## 1316   1
## 1317   1
## 1318   1
## 1319   1
## 1320   1
## 1321   1
## 1322   1
## 1323   1
## 1324   1
## 1325   1
## 1326   1
## 1327   1
## 1328   1
## 1329   1
## 1330   1
## 1331   1
## 1332   1
## 1333   1
## 1334   1
## 1335   1
## 1336   1
## 1337   1
## 1338   1
## 1339   1
## 1340   1
## 1341   1
## 1342   1
## 1343   1
## 1344   1
## 1345   1
## 1346   1
## 1347   1
## 1348   1
## 1349   1
## 1350   1
## 1351   1
## 1352   1
## 1353   1
## 1354   1
## 1355   1
## 1356   1
## 1357   1
## 1358   1
## 1359   1
## 1360   1
## 1361   1
## 1362   1
## 1363   1
## 1364   1
## 1365   1
## 1366   1
## 1367   1
## 1368   1
## 1369   1
## 1370   1
## 1371   1
## 1372   1
## 1373   1
## 1374   1
## 1375   1
## 1376   1
## 1377   1
## 1378   1
## 1379   1
## 1380   1
## 1381   1
## 1382   1
## 1383   1
## 1384   1
## 1385   1
## 1386   1
## 1387   1
## 1388   1
## 1389   1
## 1390   1
## 1391   1
## 1392   1
## 1393   1
## 1394   1
## 1395   1
## 1396   1
## 1397   1
## 1398   1
## 1399   1
## 1400   1
## 1401   1
## 1402   1
## 1403   1
## 1404   1
## 1405   1
## 1406   1
## 1407   1
## 1408   1
## 1409   1
## 1410   1
## 1411   1
## 1412   1
## 1413   1
## 1414   1
## 1415   1
## 1416   1
## 1417   1
## 1418   1
## 1419   1
## 1420   1
## 1421   1
## 1422   1
## 1423   1
## 1424   1
## 1425   1
## 1426   1
## 1427   1
## 1428   1
## 1429   1
## 1430   1
## 1431   1
## 1432   1
## 1433   1
## 1434   1
## 1435   1
## 1436   1
## 1437   1
## 1438   1
## 1439   1
## 1440   1
## 1441   1
## 1442   1
## 1443   1
## 1444   1
## 1445   1
## 1446   1
## 1447   1
## 1448   1
## 1449   1
## 1450   1
## 1451   1
## 1452   1
## 1453   1
## 1454   1
## 1455   1
## 1456   1
## 1457   1
## 1458   1
## 1459   1
## 1460   1
## 1461   1
## 1462   1
## 1463   1
## 1464   1
## 1465   1
## 1466   1
## 1467   1
## 1468   1
## 1469   1
## 1470   1
## 1471   1
## 1472   1
## 1473   1
## 1474   1
## 1475   1
## 1476   1
## 1477   1
## 1478   1
## 1479   1
## 1480   1
## 1481   1
## 1482   1
## 1483   1
## 1484   1
## 1485   1
## 1486   1
## 1487   1
## 1488   1
## 1489   1
## 1490   1
## 1491   1
## 1492   1
## 1493   1
## 1494   1
## 1495   1
## 1496   1
## 1497   1
## 1498   1
## 1499   1
## 1500   1
## 1501   1
## 1502   1
## 1503   1
## 1504   1
## 1505   1
## 1506   1
## 1507   1
## 1508   1
## 1509   1
## 1510   1
## 1511   1
## 1512   1
## 1513   1
## 1514   1
## 1515   1
## 1516   1
## 1517   1
## 1518   1
## 1519   1
## 1520   1
## 1521   1
## 1522   1
## 1523   1
## 1524   1
## 1525   1
## 1526   1
## 1527   1
## 1528   1
## 1529   1
## 1530   1
## 1531   1
## 1532   1
## 1533   1
## 1534   1
## 1535   1
## 1536   1
## 1537   1
## 1538   1
## 1539   1
## 1540   1
## 1541   1
## 1542   1
## 1543   1
## 1544   1
## 1545   1
## 1546   1
## 1547   1
## 1548   1
## 1549   1
## 1550   1
## 1551   1
## 1552   1
## 1553   1
## 1554   1
## 1555   1
## 1556   1
## 1557   1
## 1558   1
## 1559   1
## 1560   1
## 1561   1
## 1562   1
## 1563   1
## 1564   1
## 1565   1
## 1566   1
## 1567   1
## 1568   1
## 1569   1
## 1570   1
## 1571   1
## 1572   1
## 1573   1
## 1574   1
## 1575   1
## 1576   1
## 1577   1
## 1578   1
## 1579   1
## 1580   1
## 1581   1
## 1582   1
## 1583   1
## 1584   1
## 1585   1
## 1586   1
## 1587   1
## 1588   1
## 1589   1
## 1590   1
## 1591   1
## 1592   1
## 1593   1
## 1594   1
## 1595   1
## 1596   1
## 1597   1
## 1598   1
## 1599   1
## 1600   1
## 1601   1
## 1602   1
## 1603   1
## 1604   1
## 1605   1
## 1606   1
## 1607   1
## 1608   1
## 1609   1
## 1610   1
## 1611   1
## 1612   1
## 1613   1
## 1614   1
## 1615   1
## 1616   1
## 1617   1
## 1618   1
## 1619   1
## 1620   1
## 1621   1
## 1622   1
## 1623   1
## 1624   1
## 1625   1
## 1626   1
## 1627   1
## 1628   1
## 1629   1
## 1630   1
## 1631   1
## 1632   1
## 1633   1
## 1634   1
## 1635   1
## 1636   1
## 1637   1
## 1638   1
## 1639   1
## 1640   1
## 1641   1
## 1642   1
## 1643   1
## 1644   1
## 1645   1
## 1646   1
## 1647   1
## 1648   1
## 1649   1
## 1650   1
## 1651   1
## 1652   1
## 1653   1
## 1654   1
## 1655   1
## 1656   1
## 1657   1
## 1658   1
## 1659   1
## 1660   1
## 1661   1
## 1662   1
## 1663   1
## 1664   1
## 1665   1
## 1666   1
## 1667   1
## 1668   1
## 1669   1
## 1670   1
## 1671   1
## 1672   1
## 1673   1
## 1674   1
## 1675   1
## 1676   1
## 1677   1
## 1678   1
## 1679   1
## 1680   1
## 1681   1
## 1682   1
## 1683   1
## 1684   1
## 1685   1
## 1686   1
## 1687   1
## 1688   1
## 1689   1
## 1690   1
## 1691   1
## 1692   1
## 1693   1
## 1694   1
## 1695   1
## 1696   1
## 1697   1
## 1698   1
## 1699   1
## 1700   1
## 1701   1
## 1702   1
## 1703   1
## 1704   1
## 1705   1
## 1706   1
## 1707   1
## 1708   1
## 1709   1
## 1710   1
## 1711   1
## 1712   1
## 1713   1
## 1714   1
## 1715   1
## 1716   1
## 1717   1
## 1718   1
## 1719   1
## 1720   1
## 1721   1
## 1722   1
## 1723   1
## 1724   1
## 1725   1
## 1726   1
## 1727   1
## 1728   1
## 1729   1
## 1730   1
## 1731   1
## 1732   1
## 1733   1
## 1734   1
## 1735   1
## 1736   1
## 1737   1
## 1738   1
## 1739   1
## 1740   1
## 1741   1
## 1742   1
## 1743   1
## 1744   1
## 1745   1
## 1746   1
## 1747   1
## 1748   1
## 1749   1
## 1750   1
## 1751   1
## 1752   1
## 1753   1
## 1754   1
## 1755   1
## 1756   1
## 1757   1
## 1758   1
## 1759   1
## 1760   1
## 1761   1
## 1762   1
## 1763   1
## 1764   1
## 1765   1
## 1766   1
## 1767   1
## 1768   1
## 1769   1
## 1770   1
## 1771   1
## 1772   1
## 1773   1
## 1774   1
## 1775   1
## 1776   1
## 1777   1
## 1778   1
## 1779   1
## 1780   1
## 1781   1
## 1782   1
## 1783   1
## 1784   1
## 1785   1
## 1786   1
## 1787   1
## 1788   1
## 1789   1
## 1790   1
## 1791   1
## 1792   1
## 1793   1
## 1794   1
## 1795   1
## 1796   1
## 1797   1
## 1798   1
## 1799   1
## 1800   1
## 1801   1
## 1802   1
## 1803   1
## 1804   1
## 1805   1
## 1806   1
## 1807   1
## 1808   1
## 1809   1
## 1810   1
## 1811   1
## 1812   1
## 1813   1
## 1814   1
## 1815   1
## 1816   1
## 1817   1
## 1818   1
## 1819   1
## 1820   1
## 1821   1
## 1822   1
## 1823   1
## 1824   1
## 1825   1
## 1826   1
## 1827   1
## 1828   1
## 1829   1
## 1830   1
## 1831   1
## 1832   1
## 1833   1
## 1834   1
## 1835   1
## 1836   1
## 1837   1
## 1838   1
## 1839   1
## 1840   1
## 1841   1
## 1842   1
## 1843   1
## 1844   1
## 1845   1
## 1846   1
## 1847   1
## 1848   1
## 1849   1
## 1850   1
## 1851   1
## 1852   1
## 1853   1
## 1854   1
## 1855   1
## 1856   1
## 1857   1
## 1858   1
## 1859   1
## 1860   1
## 1861   1
## 1862   1
## 1863   1
## 1864   1
## 1865   1
## 1866   1
## 1867   1
## 1868   1
## 1869   1
## 1870   1
## 1871   1
## 1872   1
## 1873   1
## 1874   1
## 1875   1
## 1876   1
## 1877   1
## 1878   1
## 1879   1
## 1880   1
## 1881   1
## 1882   1
## 1883   1
## 1884   1
## 1885   1
## 1886   1
## 1887   1
## 1888   1
## 1889   1
## 1890   1
## 1891   1
## 1892   1
## 1893   1
## 1894   1
## 1895   1
## 1896   1
## 1897   1
## 1898   1
## 1899   1
## 1900   1
## 1901   1
## 1902   1
## 1903   1
## 1904   1
## 1905   1
## 1906   1
## 1907   1
## 1908   1
## 1909   1
## 1910   1
## 1911   1
## 1912   1
## 1913   1
## 1914   1
## 1915   1
## 1916   1
## 1917   1
## 1918   1
## 1919   1
## 1920   1
## 1921   1
## 1922   1
## 1923   1
## 1924   1
## 1925   1
## 1926   1
## 1927   1
## 1928   1
## 1929   1
## 1930   1
## 1931   1
## 1932   1
## 1933   1
## 1934   1
## 1935   1
## 1936   1
## 1937   1
## 1938   1
## 1939   1
## 1940   1
## 1941   1
## 1942   1
## 1943   1
## 1944   1
## 1945   1
## 1946   1
## 1947   1
## 1948   1
## 1949   1
## 1950   1
## 1951   1
## 1952   1
## 1953   1
## 1954   1
## 1955   1
## 1956   1
## 1957   1
## 1958   1
## 1959   1
## 1960   1
## 1961   1
## 1962   1
## 1963   1
## 1964   1
## 1965   1
## 1966   1
## 1967   1
## 1968   1
## 1969   1
## 1970   1
## 1971   1
## 1972   1
## 1973   1
## 1974   1
## 1975   1
## 1976   1
## 1977   1
## 1978   1
## 1979   1
## 1980   1
## 1981   1
## 1982   1
## 1983   1
## 1984   1
## 1985   1
## 1986   1
## 1987   1
## 1988   1
## 1989   1
## 1990   1
## 1991   1
## 1992   1
## 1993   1
## 1994   1
## 1995   1
## 1996   1
## 1997   1
## 1998   1
## 1999   1
## 2000   1
## 2001   1
## 2002   1
## 2003   1
## 2004   1
## 2005   1
## 2006   1
## 2007   1
## 2008   1
## 2009   1
## 2010   1
## 2011   1
## 2012   1
## 2013   1
## 2014   1
## 2015   1
## 2016   1
## 2017   1
## 2018   1
## 2019   1
## 2020   1
## 2021   1
## 2022   1
## 2023   1
## 2024   1
## 2025   1
## 2026   1
## 2027   1
## 2028   1
## 2029   1
## 2030   1
## 2031   1
## 2032   1
## 2033   1
## 2034   1
## 2035   1
## 2036   1
## 2037   1
## 2038   1
## 2039   1
## 2040   1
## 2041   1
## 2042   1
## 2043   1
## 2044   1
## 2045   1
## 2046   1
## 2047   1
## 2048   1
## 2049   1
## 2050   1
## 2051   1
## 2052   1
## 2053   1
## 2054   1
## 2055   1
## 2056   1
## 2057   1
## 2058   1
## 2059   1
## 2060   1
## 2061   1
## 2062   1
## 2063   1
## 2064   1
## 2065   1
## 2066   1
## 2067   1
## 2068   1
## 2069   1
## 2070   1
## 2071   1
## 2072   1
## 2073   1
## 2074   1
## 2075   1
## 2076   1
## 2077   1
## 2078   1
## 2079   1
## 2080   1
## 2081   1
## 2082   1
## 2083   1
## 2084   1
## 2085   1
## 2086   1
## 2087   1
## 2088   1
## 2089   1
## 2090   1
## 2091   1
## 2092   1
## 2093   1
## 2094   1
## 2095   1
## 2096   1
## 2097   1
## 2098   1
## 2099   1
## 2100   1
## 2101   1
## 2102   1
## 2103   1
## 2104   1
## 2105   1
## 2106   1
## 2107   1
## 2108   1
## 2109   1
## 2110   1
## 2111   1
## 2112   1
## 2113   1
## 2114   1
## 2115   1
## 2116   1
## 2117   1
## 2118   1
## 2119   1
## 2120   1
## 2121   1
## 2122   1
## 2123   1
## 2124   1
## 2125   1
## 2126   1
## 2127   1
## 2128   1
## 2129   1
## 2130   1
## 2131   1
## 2132   1
## 2133   1
## 2134   1
## 2135   1
## 2136   1
## 2137   1
## 2138   1
## 2139   1
## 2140   1
## 2141   1
## 2142   1
## 2143   1
## 2144   1
## 2145   1
## 2146   1
## 2147   1
## 2148   1
## 2149   1
## 2150   1
## 2151   1
## 2152   1
## 2153   1
## 2154   1
## 2155   1
## 2156   1
## 2157   1
## 2158   1
## 2159   1
## 2160   1
## 2161   1
## 2162   1
## 2163   1
## 2164   1
## 2165   1
## 2166   1
## 2167   1
## 2168   1
## 2169   1
## 2170   1
## 2171   1
## 2172   1
## 2173   1
## 2174   1
## 2175   1
## 2176   1
## 2177   1
## 2178   1
## 2179   1
## 2180   1
## 2181   1
## 2182   1
## 2183   1
## 2184   1
## 2185   1
## 2186   1
## 2187   1
## 2188   1
## 2189   1
## 2190   1
## 2191   1
## 2192   1
## 2193   1
## 2194   1
## 2195   1
## 2196   1
## 2197   1
## 2198   1
## 2199   1
## 2200   1
## 2201   1
## 2202   1
## 2203   1
## 2204   1
## 2205   1
## 2206   1
## 2207   1
## 2208   1
## 2209   1
## 2210   1
## 2211   1
## 2212   1
## 2213   1
## 2214   1
## 2215   1
## 2216   1
## 2217   1
## 2218   1
## 2219   1
## 2220   1
## 2221   1
## 2222   1
## 2223   1
## 2224   1
## 2225   1
## 2226   1
## 2227   1
## 2228   1
## 2229   1
## 2230   1
## 2231   1
## 2232   1
## 2233   1
## 2234   1
## 2235   1
## 2236   1
## 2237   1
## 2238   1
## 2239   1
## 2240   1
## 2241   1
## 2242   1
## 2243   1
## 2244   1
## 2245   1
## 2246   1
## 2247   1
## 2248   1
## 2249   1
## 2250   1
## 2251   1
## 2252   1
## 2253   1
## 2254   1
## 2255   1
## 2256   1
## 2257   1
## 2258   1
## 2259   1
## 2260   1
## 2261   1
## 2262   1
## 2263   1
## 2264   1
## 2265   1
## 2266   1
## 2267   1
## 2268   1
## 2269   1
## 2270   1
## 2271   1
## 2272   1
## 2273   1
## 2274   1
## 2275   1
## 2276   1
## 2277   1
## 2278   1
## 2279   1
## 2280   1
## 2281   1
## 2282   1
## 2283   1
## 2284   1
## 2285   1
## 2286   1
## 2287   1
## 2288   1
## 2289   1
## 2290   1
## 2291   1
## 2292   1
## 2293   1
## 2294   1
## 2295   1
## 2296   1
## 2297   1
## 2298   1
## 2299   1
## 2300   1
## 2301   1
## 2302   1
## 2303   1
## 2304   1
## 2305   1
## 2306   1
## 2307   1
## 2308   1
## 2309   1
## 2310   1
## 2311   1
## 2312   1
## 2313   1
## 2314   1
## 2315   1
## 2316   1
## 2317   1
## 2318   1
## 2319   1
## 2320   1
## 2321   1
## 2322   1
## 2323   1
## 2324   1
## 2325   1
## 2326   1
## 2327   1
## 2328   1
## 2329   1
## 2330   1
## 2331   1
## 2332   1
## 2333   1
## 2334   1
## 2335   1
## 2336   1
## 2337   1
## 2338   1
## 2339   1
## 2340   1
## 2341   1
## 2342   1
## 2343   1
## 2344   1
## 2345   1
## 2346   1
## 2347   1
## 2348   1
## 2349   1
## 2350   1
## 2351   1
## 2352   1
## 2353   1
## 2354   1
## 2355   1
## 2356   1
## 2357   1
## 2358   1
## 2359   1
## 2360   1
## 2361   1
## 2362   1
## 2363   1
## 2364   1
## 2365   1
## 2366   1
## 2367   1
## 2368   1
## 2369   1
## 2370   1
## 2371   1
## 2372   1
## 2373   1
## 2374   1
## 2375   1
## 2376   1
## 2377   1
## 2378   1
## 2379   1
## 2380   1
## 2381   1
## 2382   1
## 2383   1
## 2384   1
## 2385   1
## 2386   1
## 2387   1
## 2388   1
## 2389   1
## 2390   1
## 2391   1
## 2392   1
## 2393   1
## 2394   1
## 2395   1
## 2396   1
## 2397   1
## 2398   1
## 2399   1
## 2400   1
## 2401   1
## 2402   1
## 2403   1
## 2404   1
## 2405   1
## 2406   1
## 2407   1
## 2408   1
## 2409   1
## 2410   1
## 2411   1
## 2412   1
## 2413   1
## 2414   1
## 2415   1
## 2416   1
## 2417   1
## 2418   1
## 2419   1
## 2420   1
## 2421   1
## 2422   1
## 2423   1
## 2424   1
## 2425   1
## 2426   1
## 2427   1
## 2428   1
## 2429   1
## 2430   1
## 2431   1
## 2432   1
## 2433   1
## 2434   1
## 2435   1
## 2436   1
## 2437   1
## 2438   1
## 2439   1
## 2440   1
## 2441   1
## 2442   1
## 2443   1
## 2444   1
## 2445   1
## 2446   1
## 2447   1
## 2448   1
## 2449   1
## 2450   1
## 2451   1
## 2452   1
## 2453   1
## 2454   1
## 2455   1
## 2456   1
## 2457   1
## 2458   1
## 2459   1
## 2460   1
## 2461   1
## 2462   1
## 2463   1
## 2464   1
## 2465   1
## 2466   1
## 2467   1
## 2468   1
## 2469   1
## 2470   1
## 2471   1
## 2472   1
## 2473   1
## 2474   1
## 2475   1
## 2476   1
## 2477   1
## 2478   1
## 2479   1
## 2480   1
## 2481   1
## 2482   1
## 2483   1
## 2484   1
## 2485   1
## 2486   1
## 2487   1
## 2488   1
## 2489   1
## 2490   1
## 2491   1
## 2492   1
## 2493   1
## 2494   1
## 2495   1
## 2496   1
## 2497   1
## 2498   1
## 2499   1
## 2500   1
## 2501   1
## 2502   1
## 2503   1
## 2504   1
## 2505   1
## 2506   1
## 2507   1
## 2508   1
## 2509   1
## 2510   1
## 2511   1
## 2512   1
## 2513   1
## 2514   1
## 2515   1
## 2516   1
## 2517   1
## 2518   1
## 2519   1
## 2520   1
## 2521   1
## 2522   1
## 2523   1
## 2524   1
## 2525   1
## 2526   1
## 2527   1
## 2528   1
## 2529   1
## 2530   1
## 2531   1
## 2532   1
## 2533   1
## 2534   1
## 2535   1
## 2536   1
## 2537   1
## 2538   1
## 2539   1
## 2540   1
## 2541   1
## 2542   1
## 2543   1
## 2544   1
## 2545   1
## 2546   1
## 2547   1
## 2548   1
## 2549   1
## 2550   1
## 2551   1
## 2552   1
## 2553   1
## 2554   1
## 2555   1
## 2556   1
## 2557   1
## 2558   1
## 2559   1
## 2560   1
## 2561   1
## 2562   1
## 2563   1
## 2564   1
## 2565   1
## 2566   1
## 2567   1
## 2568   1
## 2569   1
## 2570   1
## 2571   1
## 2572   1
## 2573   1
## 2574   1
## 2575   1
## 2576   1
## 2577   1
## 2578   1
## 2579   1
## 2580   1
## 2581   1
## 2582   1
## 2583   1
## 2584   1
## 2585   1
## 2586   1
## 2587   1
## 2588   1
## 2589   1
## 2590   1
## 2591   1
## 2592   1
## 2593   1
## 2594   1
## 2595   1
## 2596   1
## 2597   1
## 2598   1
## 2599   1
## 2600   1
## 2601   1
## 2602   1
## 2603   1
## 2604   1
## 2605   1
## 2606   1
## 2607   1
## 2608   1
## 2609   1
## 2610   1
## 2611   1
## 2612   1
## 2613   1
## 2614   1
## 2615   1
## 2616   1
## 2617   1
## 2618   1
## 2619   1
## 2620   1
## 2621   1
## 2622   1
## 2623   1
## 2624   1
## 2625   1
## 2626   1
## 2627   1
## 2628   1
## 2629   1
## 2630   1
## 2631   1
## 2632   1
## 2633   1
## 2634   1
## 2635   1
## 2636   1
## 2637   1
## 2638   1
## 2639   1
## 2640   1
## 2641   1
## 2642   1
## 2643   1
## 2644   1
## 2645   1
## 2646   1
## 2647   1
## 2648   1
## 2649   1
## 2650   1
## 2651   1
## 2652   1
## 2653   1
## 2654   1
## 2655   1
## 2656   1
## 2657   1
## 2658   1
## 2659   1
## 2660   1
## 2661   1
## 2662   1
## 2663   1
## 2664   1
## 2665   1
## 2666   1
## 2667   1
## 2668   1
## 2669   1
## 2670   1
## 2671   1
## 2672   1
## 2673   1
## 2674   1
## 2675   1
## 2676   1
## 2677   1
## 2678   1
## 2679   1
## 2680   1
## 2681   1
## 2682   1
## 2683   1
## 2684   1
## 2685   1
## 2686   1
## 2687   1
## 2688   1
## 2689   1
## 2690   1
## 2691   1
## 2692   1
## 2693   1
## 2694   1
## 2695   1
## 2696   1
## 2697   1
## 2698   1
## 2699   1
## 2700   1
## 2701   1
## 2702   1
## 2703   1
## 2704   1
## 2705   1
## 2706   1
## 2707   1
## 2708   1
## 2709   1
## 2710   1
## 2711   1
## 2712   1
## 2713   1
## 2714   1
## 2715   1
## 2716   1
## 2717   1
## 2718   1
## 2719   1
## 2720   1
## 2721   1
## 2722   1
## 2723   1
## 2724   1
## 2725   1
## 2726   1
## 2727   1
## 2728   1
## 2729   1
## 2730   1
## 2731   1
## 2732   1
## 2733   1
## 2734   1
## 2735   1
## 2736   1
## 2737   1
## 2738   1
## 2739   1
## 2740   1
## 2741   1
## 2742   1
## 2743   1
## 2744   1
## 2745   1
## 2746   1
## 2747   1
## 2748   1
## 2749   1
## 2750   1
## 2751   1
## 2752   1
## 2753   1
## 2754   1
## 2755   1
## 2756   1
## 2757   1
## 2758   1
## 2759   1
## 2760   1
## 2761   1
## 2762   1
## 2763   1
## 2764   1
## 2765   1
## 2766   1
## 2767   1
## 2768   1
## 2769   1
## 2770   1
## 2771   1
## 2772   1
## 2773   1
## 2774   1
## 2775   1
## 2776   1
## 2777   1
## 2778   1
## 2779   1
## 2780   1
## 2781   1
## 2782   1
## 2783   1
## 2784   1
## 2785   1
## 2786   1
## 2787   1
## 2788   1
## 2789   1
## 2790   1
## 2791   1
## 2792   1
## 2793   1
## 2794   1
## 2795   1
## 2796   1
## 2797   1
## 2798   1
## 2799   1
## 2800   1
## 2801   1
## 2802   1
## 2803   1
## 2804   1
## 2805   1
## 2806   1
## 2807   1
## 2808   1
## 2809   1
## 2810   1
## 2811   1
## 2812   1
## 2813   1
## 2814   1
## 2815   1
## 2816   1
## 2817   1
## 2818   1
## 2819   1
## 2820   1
## 2821   1
## 2822   1
## 2823   1
## 2824   1
## 2825   1
## 2826   1
## 2827   1
## 2828   1
## 2829   1
## 2830   1
## 2831   1
## 2832   1
## 2833   1
## 2834   1
## 2835   1
## 2836   1
## 2837   1
## 2838   1
## 2839   1
## 2840   1
## 2841   1
## 2842   1
## 2843   1
## 2844   1
## 2845   1
## 2846   1
## 2847   1
## 2848   1
## 2849   1
## 2850   1
## 2851   1
## 2852   1
## 2853   1
## 2854   1
## 2855   1
## 2856   1
## 2857   1
## 2858   1
## 2859   1
## 2860   1
## 2861   1
## 2862   1
## 2863   1
## 2864   1
## 2865   1
## 2866   1
## 2867   1
## 2868   1
## 2869   1
## 2870   1
## 2871   1
## 2872   1
## 2873   1
## 2874   1
## 2875   1
## 2876   1
## 2877   1
## 2878   1
## 2879   1
## 2880   1
## 2881   1
## 2882   1
## 2883   1
## 2884   1
## 2885   1
## 2886   1
## 2887   1
## 2888   1
## 2889   1
## 2890   1
## 2891   1
## 2892   1
## 2893   1
## 2894   1
## 2895   1
## 2896   1
## 2897   1
## 2898   1
## 2899   1
## 2900   1
## 2901   1
## 2902   1
## 2903   1
## 2904   1
## 2905   1
## 2906   1
## 2907   1
## 2908   1
## 2909   1
## 2910   1
## 2911   1
## 2912   1
## 2913   1
## 2914   1
## 2915   1
## 2916   1
## 2917   1
## 2918   1
## 2919   1
## 2920   1
## 2921   1
## 2922   1
## 2923   1
## 2924   1
## 2925   1
## 2926   1
## 2927   1
## 2928   1
## 2929   1
## 2930   1
## 2931   1
## 2932   1
## 2933   1
## 2934   1
## 2935   1
## 2936   1
## 2937   1
## 2938   1
## 2939   1
## 2940   1
## 2941   1
## 2942   1
## 2943   1
## 2944   1
## 2945   1
## 2946   1
## 2947   1
## 2948   1
## 2949   1
## 2950   1
## 2951   1
## 2952   1
## 2953   1
## 2954   1
## 2955   1
## 2956   1
## 2957   1
## 2958   1
## 2959   1
## 2960   1
## 2961   1
## 2962   1
## 2963   1
## 2964   1
## 2965   1
## 2966   1
## 2967   1
## 2968   1
## 2969   1
## 2970   1
## 2971   1
## 2972   1
## 2973   1
## 2974   1
## 2975   1
## 2976   1
## 2977   1
## 2978   1
## 2979   1
## 2980   1
## 2981   1
## 2982   1
## 2983   1
## 2984   1
## 2985   1
## 2986   1
## 2987   1
## 2988   1
## 2989   1
## 2990   1
## 2991   1
## 2992   1
## 2993   1
## 2994   1
## 2995   1
## 2996   1
## 2997   1
## 2998   1
## 2999   1
## 3000   1
## 3001   1
## 3002   1
## 3003   1
## 3004   1
## 3005   1
## 3006   1
## 3007   1
## 3008   1
## 3009   1
## 3010   1
## 3011   1
## 3012   1
## 3013   1
## 3014   1
## 3015   1
## 3016   1
## 3017   1
## 3018   1
## 3019   1
## 3020   1
## 3021   1
## 3022   1
## 3023   1
## 3024   1
## 3025   1
## 3026   1
## 3027   1
## 3028   1
## 3029   1
## 3030   1
## 3031   1
## 3032   1
## 3033   1
## 3034   1
## 3035   1
## 3036   1
## 3037   1
## 3038   1
## 3039   1
## 3040   1
## 3041   1
## 3042   1
## 3043   1
## 3044   1
## 3045   1
## 3046   1
## 3047   1
## 3048   1
## 3049   1
## 3050   1
## 3051   1
## 3052   1
## 3053   1
## 3054   1
## 3055   1
## 3056   1
## 3057   1
## 3058   1
## 3059   1
## 3060   1
## 3061   1
## 3062   1
## 3063   1
## 3064   1
## 3065   1
## 3066   1
## 3067   1
## 3068   1
## 3069   1
## 3070   1
## 3071   1
## 3072   1
## 3073   1
## 3074   1
## 3075   1
## 3076   1
## 3077   1
## 3078   1
## 3079   1
## 3080   1
## 3081   1
## 3082   1
## 3083   1
## 3084   1
## 3085   1
## 3086   1
## 3087   1
## 3088   1
## 3089   1
## 3090   1
## 3091   1
## 3092   1
## 3093   1
## 3094   1
## 3095   1
## 3096   1
## 3097   1
## 3098   1
## 3099   1
## 3100   1
## 3101   1
## 3102   1
## 3103   1
## 3104   1
## 3105   1
## 3106   1
## 3107   1
## 3108   1
## 3109   1
## 3110   1
## 3111   1
## 3112   1
## 3113   1
## 3114   1
## 3115   1
## 3116   1
## 3117   1
## 3118   1
## 3119   1
## 3120   1
## 3121   1
## 3122   1
## 3123   1
## 3124   1
## 3125   1
## 3126   1
## 3127   1
## 3128   1
## 3129   1
## 3130   1
## 3131   1
## 3132   1
## 3133   1
## 3134   1
## 3135   1
## 3136   1
## 3137   1
## 3138   1
## 3139   1
## 3140   1
## 3141   1
## 3142   1
## 3143   1
## 3144   1
## 3145   1
## 3146   1
## 3147   1
## 3148   1
## 3149   1
## 3150   1
## 3151   1
## 3152   1
## 3153   1
## 3154   1
## 3155   1
## 3156   1
## 3157   1
## 3158   1
## 3159   1
## 3160   1
## 3161   1
## 3162   1
## 3163   1
## 3164   1
## 3165   1
## 3166   1
## 3167   1
## 3168   1
## 3169   1
## 3170   1
## 3171   1
## 3172   1
## 3173   1
## 3174   1
## 3175   1
## 3176   1
## 3177   1
## 3178   1
## 3179   1
## 3180   1
## 3181   1
## 3182   1
## 3183   1
## 3184   1
## 3185   1
## 3186   1
## 3187   1
## 3188   1
## 3189   1
## 3190   1
## 3191   1
## 3192   1
## 3193   1
## 3194   1
## 3195   1
## 3196   1
## 3197   1
## 3198   1
## 3199   1
## 3200   1
## 3201   1
## 3202   1
## 3203   1
## 3204   1
## 3205   1
## 3206   1
## 3207   1
## 3208   1
## 3209   1
## 3210   1
## 3211   1
## 3212   1
## 3213   1
## 3214   1
## 3215   1
## 3216   1
## 3217   1
## 3218   1
## 3219   1
## 3220   1
## 3221   1
## 3222   1
## 3223   1
## 3224   1
## 3225   1
## 3226   1
## 3227   1
## 3228   1
## 3229   1
## 3230   1
## 3231   1
## 3232   1
## 3233   1
## 3234   1
## 3235   1
## 3236   1
## 3237   1
## 3238   1
## 3239   1
## 3240   1
## 3241   1
## 3242   1
## 3243   1
## 3244   1
## 3245   1
## 3246   1
## 3247   1
## 3248   1
## 3249   1
## 3250   1
## 3251   1
## 3252   1
## 3253   1
## 3254   1
## 3255   1
## 3256   1
## 3257   1
## 3258   1
## 3259   1
## 3260   1
## 3261   1
## 3262   1
## 3263   1
## 3264   1
## 3265   1
## 3266   1
## 3267   1
## 3268   1
## 3269   1
## 3270   1
## 3271   1
## 3272   1
## 3273   1
## 3274   1
## 3275   1
## 3276   1
## 3277   1
## 3278   1
## 3279   1
## 3280   1
## 3281   1
## 3282   1
## 3283   1
## 3284   1
## 3285   1
## 3286   1
## 3287   1
## 3288   1
## 3289   1
## 3290   1
## 3291   1
## 3292   1
## 3293   1
## 3294   1
## 3295   1
## 3296   1
## 3297   1
## 3298   1
## 3299   1
## 3300   1
## 3301   1
## 3302   1
## 3303   1
## 3304   1
## 3305   1
## 3306   1
## 3307   1
## 3308   1
## 3309   1
## 3310   1
## 3311   1
## 3312   1
## 3313   1
## 3314   1
## 3315   1
## 3316   1
## 3317   1
## 3318   1
## 3319   1
## 3320   1
## 3321   1
## 3322   1
## 3323   1
## 3324   1
## 3325   1
## 3326   1
## 3327   1
## 3328   1
## 3329   1
## 3330   1
## 3331   1
## 3332   1
## 3333   1
## 3334   1
## 3335   1
## 3336   1
## 3337   1
## 3338   1
## 3339   1
## 3340   1
## 3341   1
## 3342   1
## 3343   1
## 3344   1
## 3345   1
## 3346   1
## 3347   1
## 3348   1
## 3349   1
## 3350   1
## 3351   1
## 3352   1
## 3353   1
## 3354   1
## 3355   1
## 3356   1
## 3357   1
## 3358   1
## 3359   1
## 3360   1
## 3361   1
## 3362   1
## 3363   1
## 3364   1
## 3365   1
## 3366   1
## 3367   1
## 3368   1
## 3369   1
## 3370   1
## 3371   1
## 3372   1
## 3373   1
## 3374   1
## 3375   1
## 3376   1
## 3377   1
## 3378   1
## 3379   1
## 3380   1
## 3381   1
## 3382   1
## 3383   1
## 3384   1
## 3385   1
## 3386   1
## 3387   1
## 3388   1
## 3389   1
## 3390   1
## 3391   1
## 3392   1
## 3393   1
## 3394   1
## 3395   1
## 3396   1
## 3397   1
## 3398   1
## 3399   1
## 3400   1
## 3401   1
## 3402   1
## 3403   1
## 3404   1
## 3405   1
## 3406   1
## 3407   1
## 3408   1
## 3409   1
## 3410   1
## 3411   1
## 3412   1
## 3413   1
## 3414   1
## 3415   1
## 3416   1
## 3417   1
## 3418   1
## 3419   1
## 3420   1
## 3421   1
## 3422   1
## 3423   1
## 3424   1
## 3425   1
## 3426   1
## 3427   1
## 3428   1
## 3429   1
## 3430   1
## 3431   1
## 3432   1
## 3433   1
## 3434   1
## 3435   1
## 3436   1
## 3437   1
## 3438   1
## 3439   1
## 3440   1
## 3441   1
## 3442   1
## 3443   1
## 3444   1
## 3445   1
## 3446   1
## 3447   1
## 3448   1
## 3449   1
## 3450   1
## 3451   1
## 3452   1
## 3453   1
## 3454   1
## 3455   1
## 3456   1
## 3457   1
## 3458   1
## 3459   1
## 3460   1
## 3461   1
## 3462   1
## 3463   1
## 3464   1
## 3465   1
## 3466   1
## 3467   1
## 3468   1
## 3469   1
## 3470   1
## 3471   1
## 3472   1
## 3473   1
## 3474   1
## 3475   1
## 3476   1
## 3477   1
## 3478   1
## 3479   1
## 3480   1
## 3481   1
## 3482   1
## 3483   1
## 3484   1
## 3485   1
## 3486   1
## 3487   1
## 3488   1
## 3489   1
## 3490   1
## 3491   1
## 3492   1
## 3493   1
## 3494   1
## 3495   1
## 3496   1
## 3497   1
## 3498   1
## 3499   1
## 3500   1
## 3501   1
## 3502   1
## 3503   1
## 3504   1
## 3505   1
## 3506   1
## 3507   1
## 3508   1
## 3509   1
## 3510   1
## 3511   1
## 3512   1
## 3513   1
## 3514   1
## 3515   1
## 3516   1
## 3517   1
## 3518   1
## 3519   1
## 3520   1
## 3521   1
## 3522   1
## 3523   1
## 3524   1
## 3525   1
## 3526   1
## 3527   1
## 3528   1
## 3529   1
## 3530   1
## 3531   1
## 3532   1
## 3533   1
## 3534   1
## 3535   1
## 3536   1
## 3537   1
## 3538   1
## 3539   1
## 3540   1
## 3541   1
## 3542   1
## 3543   1
## 3544   1
## 3545   1
## 3546   1
## 3547   1
## 3548   1
## 3549   1
## 3550   1
## 3551   1
## 3552   1
## 3553   1
## 3554   1
## 3555   1
## 3556   1
## 3557   1
## 3558   1
## 3559   1
## 3560   1
## 3561   1
## 3562   1
## 3563   1
## 3564   1
## 3565   1
## 3566   1
## 3567   1
## 3568   1
## 3569   1
## 3570   1
## 3571   1
## 3572   1
## 3573   1
## 3574   1
## 3575   1
## 3576   1
## 3577   1
## 3578   1
## 3579   1
## 3580   1
## 3581   1
## 3582   1
## 3583   1
## 3584   1
## 3585   1
## 3586   1
## 3587   1
## 3588   1
## 3589   1
## 3590   1
## 3591   1
## 3592   1
## 3593   1
## 3594   1
## 3595   1
## 3596   1
## 3597   1
## 3598   1
## 3599   1
## 3600   1
## 3601   1
## 3602   1
## 3603   1
## 3604   1
## 3605   1
## 3606   1
## 3607   1
## 3608   1
## 3609   1
## 3610   1
## 3611   1
## 3612   1
## 3613   1
## 3614   1
## 3615   1
## 3616   1
## 3617   1
## 3618   1
## 3619   1
## 3620   1
## 3621   1
## 3622   1
## 3623   1
## 3624   1
## 3625   1
## 3626   1
## 3627   1
## 3628   1
## 3629   1
## 3630   1
## 3631   1
## 3632   1
## 3633   1
## 3634   1
## 3635   1
## 3636   1
## 3637   1
## 3638   1
## 3639   1
## 3640   1
## 3641   1
## 3642   1
## 3643   1
## 3644   1
## 3645   1
## 3646   1
## 3647   1
## 3648   1
## 3649   1
## 3650   1
## 3651   1
## 3652   1
## 3653   1
## 3654   1
## 3655   1
## 3656   1
## 3657   1
## 3658   1
## 3659   1
## 3660   1
## 3661   1
## 3662   1
## 3663   1
## 3664   1
## 3665   1
## 3666   1
## 3667   1
## 3668   1
## 3669   1
## 3670   1
## 3671   1
## 3672   1
## 3673   1
## 3674   1
## 3675   1
## 3676   1
## 3677   1
## 3678   1
## 3679   1
## 3680   1
## 3681   1
## 3682   1
## 3683   1
## 3684   1
## 3685   1
## 3686   1
## 3687   1
## 3688   1
## 3689   1
## 3690   1
## 3691   1
## 3692   1
## 3693   1
## 3694   1
## 3695   1
## 3696   1
## 3697   1
## 3698   1
## 3699   1
## 3700   1
## 3701   1
## 3702   1
## 3703   1
## 3704   1
## 3705   1
## 3706   1
## 3707   1
## 3708   1
## 3709   1
## 3710   1
## 3711   1
## 3712   1
## 3713   1
## 3714   1
## 3715   1
## 3716   1
## 3717   1
## 3718   1
## 3719   1
## 3720   1
## 3721   1
## 3722   1
## 3723   1
## 3724   1
## 3725   1
## 3726   1
## 3727   1
## 3728   1
## 3729   1
## 3730   1
## 3731   1
## 3732   1
## 3733   1
## 3734   1
## 3735   1
## 3736   1
## 3737   1
## 3738   1
## 3739   1
## 3740   1
## 3741   1
## 3742   1
## 3743   1
## 3744   1
## 3745   1
## 3746   1
## 3747   1
## 3748   1
## 3749   1
## 3750   1
## 3751   1
## 3752   1
## 3753   1
## 3754   1
## 3755   1
## 3756   1
## 3757   1
## 3758   1
## 3759   1
## 3760   1
## 3761   1
## 3762   1
## 3763   1
## 3764   1
## 3765   1
## 3766   1
## 3767   1
## 3768   1
## 3769   1
## 3770   1
## 3771   1
## 3772   1
## 3773   1
## 3774   1
## 3775   1
## 3776   1
## 3777   1
## 3778   1
## 3779   1
## 3780   1
## 3781   1
## 3782   1
## 3783   1
## 3784   1
## 3785   1
## 3786   1
## 3787   1
## 3788   1
## 3789   1
## 3790   1
## 3791   1
## 3792   1
## 3793   1
## 3794   1
## 3795   1
## 3796   1
## 3797   1
## 3798   1
## 3799   1
## 3800   1
## 3801   1
## 3802   1
## 3803   1
## 3804   1
## 3805   1
## 3806   1
## 3807   1
## 3808   1
## 3809   1
## 3810   1
## 3811   1
## 3812   1
## 3813   1
## 3814   1
## 3815   1
## 3816   1
## 3817   1
## 3818   1
## 3819   1
## 3820   1
## 3821   1
## 3822   1
## 3823   1
## 3824   1
## 3825   1
## 3826   1
## 3827   1
## 3828   1
## 3829   1
## 3830   1
## 3831   1
## 3832   1
## 3833   1
## 3834   1
## 3835   1
## 3836   1
## 3837   1
## 3838   1
## 3839   1
## 3840   1
## 3841   1
## 3842   1
## 3843   1
## 3844   1
## 3845   1
## 3846   1
## 3847   1
## 3848   1
## 3849   1
## 3850   1
## 3851   1
## 3852   1
## 3853   1
## 3854   1
## 3855   1
## 3856   1
## 3857   1
## 3858   1
## 3859   1
## 3860   1
## 3861   1
## 3862   1
## 3863   1
## 3864   1
## 3865   1
## 3866   1
## 3867   1
## 3868   1
## 3869   1
## 3870   1
## 3871   1
## 3872   1
## 3873   1
## 3874   1
## 3875   1
## 3876   1
## 3877   1
## 3878   1
## 3879   1
## 3880   1
## 3881   1
## 3882   1
## 3883   1
## 3884   1
## 3885   1
## 3886   1
## 3887   1
## 3888   1
## 3889   1
## 3890   1
## 3891   1
## 3892   1
## 3893   1
## 3894   1
## 3895   1
## 3896   1
## 3897   1
## 3898   1
## 3899   1
## 3900   1
## 3901   1
## 3902   1
## 3903   1
## 3904   1
## 3905   1
## 3906   1
## 3907   1
## 3908   1
## 3909   1
## 3910   1
## 3911   1
## 3912   1
## 3913   1
## 3914   1
## 3915   1
## 3916   1
## 3917   1
## 3918   1
## 3919   1
## 3920   1
## 3921   1
## 3922   1
## 3923   1
## 3924   1
## 3925   1
## 3926   1
## 3927   1
## 3928   1
## 3929   1
## 3930   1
## 3931   1
## 3932   1
## 3933   1
## 3934   1
## 3935   1
## 3936   1
## 3937   1
## 3938   1
## 3939   1
## 3940   1
## 3941   1
## 3942   1
## 3943   1
## 3944   1
## 3945   1
## 3946   1
## 3947   1
## 3948   1
## 3949   1
## 3950   1
## 3951   1
## 3952   1
## 3953   1
## 3954   1
## 3955   1
## 3956   1
## 3957   1
## 3958   1
## 3959   1
## 3960   1
## 3961   1
## 3962   1
## 3963   1
## 3964   1
## 3965   1
## 3966   1
## 3967   1
## 3968   1
## 3969   1
## 3970   1
## 3971   1
## 3972   1
## 3973   1
## 3974   1
## 3975   1
## 3976   1
## 3977   1
## 3978   1
## 3979   1
## 3980   1
## 3981   1
## 3982   1
## 3983   1
## 3984   1
## 3985   1
## 3986   1
## 3987   1
## 3988   1
## 3989   1
## 3990   1
## 3991   1
## 3992   1
## 3993   1
## 3994   1
## 3995   1
## 3996   1
## 3997   1
## 3998   1
## 3999   1
## 4000   1
## 4001   1
## 4002   1
## 4003   1
## 4004   1
## 4005   1
## 4006   1
## 4007   1
## 4008   1
## 4009   1
## 4010   1
## 4011   1
## 4012   1
## 4013   1
## 4014   1
## 4015   1
## 4016   1
## 4017   1
## 4018   1
## 4019   1
## 4020   1
## 4021   1
## 4022   1
## 4023   1
## 4024   1
## 4025   1
## 4026   1
## 4027   1
## 4028   1
## 4029   1
## 4030   1
## 4031   1
## 4032   1
## 4033   1
## 4034   1
## 4035   1
## 4036   1
## 4037   1
## 4038   1
## 4039   1
## 4040   1
## 4041   1
## 4042   1
## 4043   1
## 4044   1
## 4045   1
## 4046   1
## 4047   1
## 4048   1
## 4049   1
## 4050   1
## 4051   1
## 4052   1
## 4053   1
## 4054   1
## 4055   1
## 4056   1
## 4057   1
## 4058   1
## 4059   1
## 4060   1
## 4061   1
## 4062   1
## 4063   1
## 4064   1
## 4065   1
## 4066   1
## 4067   1
## 4068   1
## 4069   1
## 4070   1
## 4071   1
## 4072   1
## 4073   1
## 4074   1
## 4075   1
## 4076   1
## 4077   1
## 4078   1
## 4079   1
## 4080   1
## 4081   1
## 4082   1
## 4083   1
## 4084   1
## 4085   1
## 4086   1
## 4087   1
## 4088   1
## 4089   1
## 4090   1
## 4091   1
## 4092   1
## 4093   1
## 4094   1
## 4095   1
## 4096   1
## 4097   1
## 4098   1
## 4099   1
## 4100   1
## 4101   1
## 4102   1
## 4103   1
## 4104   1
## 4105   1
## 4106   1
## 4107   1
## 4108   1
## 4109   1
## 4110   1
## 4111   1
## 4112   1
## 4113   1
## 4114   1
## 4115   1
## 4116   1
## 4117   1
## 4118   1
## 4119   1
## 4120   1
## 4121   1
## 4122   1
## 4123   1
## 4124   1
## 4125   1
## 4126   1
## 4127   1
## 4128   1
## 4129   1
## 4130   1
## 4131   1
## 4132   1
## 4133   1
## 4134   1
## 4135   1
## 4136   1
## 4137   1
## 4138   1
## 4139   1
## 4140   1
## 4141   1
## 4142   1
## 4143   1
## 4144   1
## 4145   1
## 4146   1
## 4147   1
## 4148   1
## 4149   1
## 4150   1
## 4151   1
## 4152   1
## 4153   1
## 4154   1
## 4155   1
## 4156   1
## 4157   1
## 4158   1
## 4159   1
## 4160   1
## 4161   1
## 4162   1
## 4163   1
## 4164   1
## 4165   1
## 4166   1
## 4167   1
## 4168   1
## 4169   1
## 4170   1
## 4171   1
## 4172   1
## 4173   1
## 4174   1
## 4175   1
## 4176   1
## 4177   1
## 4178   1
## 4179   1
## 4180   1
## 4181   1
## 4182   1
## 4183   1
## 4184   1
## 4185   1
## 4186   1
## 4187   1
## 4188   1
## 4189   1
## 4190   1
## 4191   1
## 4192   1
## 4193   1
## 4194   1
## 4195   1
## 4196   1
## 4197   1
## 4198   1
## 4199   1
## 4200   1
## 4201   1
## 4202   1
## 4203   1
## 4204   1
## 4205   1
## 4206   1
## 4207   1
## 4208   1
## 4209   1
## 4210   1
## 4211   1
## 4212   1
## 4213   1
## 4214   1
## 4215   1
## 4216   1
## 4217   1
## 4218   1
## 4219   1
## 4220   1
## 4221   1
## 4222   1
## 4223   1
## 4224   1
## 4225   1
## 4226   1
## 4227   1
## 4228   1
## 4229   1
## 4230   1
## 4231   1
## 4232   1
## 4233   1
## 4234   1
## 4235   1
## 4236   1
## 4237   1
## 4238   1
## 4239   1
## 4240   1
## 4241   1
## 4242   1
## 4243   1
## 4244   1
## 4245   1
## 4246   1
## 4247   1
## 4248   1
## 4249   1
## 4250   1
## 4251   1
## 4252   1
## 4253   1
## 4254   1
## 4255   1
## 4256   1
## 4257   1
## 4258   1
## 4259   1
## 4260   1
## 4261   1
## 4262   1
## 4263   1
## 4264   1
## 4265   1
## 4266   1
## 4267   1
## 4268   1
## 4269   1
## 4270   1
## 4271   1
## 4272   1
## 4273   1
## 4274   1
## 4275   1
## 4276   1
## 4277   1
## 4278   1
## 4279   1
## 4280   1
## 4281   1
## 4282   1
## 4283   1
## 4284   1
## 4285   1
## 4286   1
## 4287   1
## 4288   1
## 4289   1
## 4290   1
## 4291   1
## 4292   1
## 4293   1
## 4294   1
## 4295   1
## 4296   1
## 4297   1
## 4298   1
## 4299   1
## 4300   1
## 4301   1
## 4302   1
## 4303   1
## 4304   1
## 4305   1
## 4306   1
## 4307   1
## 4308   1
## 4309   1
## 4310   1
## 4311   1
## 4312   1
## 4313   1
## 4314   1
## 4315   1
## 4316   1
## 4317   1
## 4318   1
## 4319   1
## 4320   1
## 4321   1
## 4322   1
## 4323   1
## 4324   1
## 4325   1
## 4326   1
## 4327   1
## 4328   1
## 4329   1
## 4330   1
## 4331   1
## 4332   1
## 4333   1
## 4334   1
## 4335   1
## 4336   1
## 4337   1
## 4338   1
## 4339   1
## 4340   1
## 4341   1
## 4342   1
## 4343   1
## 4344   1
## 4345   1
## 4346   1
## 4347   1
## 4348   1
## 4349   1
## 4350   1
## 4351   1
## 4352   1
## 4353   1
## 4354   1
## 4355   1
## 4356   1
## 4357   1
## 4358   1
## 4359   1
## 4360   1
## 4361   1
## 4362   1
## 4363   1
## 4364   1
## 4365   1
## 4366   1
## 4367   1
## 4368   1
## 4369   1
## 4370   1
## 4371   1
## 4372   1
## 4373   1
## 4374   1
## 4375   1
## 4376   1
## 4377   1
## 4378   1
## 4379   1
## 4380   1
## 4381   1
## 4382   1
## 4383   1
## 4384   1
## 4385   1
## 4386   1
## 4387   1
## 4388   1
## 4389   1
## 4390   1
## 4391   1
## 4392   1
## 4393   1
## 4394   1
## 4395   1
## 4396   1
## 4397   1
## 4398   1
## 4399   1
## 4400   1
## 4401   1
## 4402   1
## 4403   1
## 4404   1
## 4405   1
## 4406   1
## 4407   1
## 4408   1
## 4409   1
## 4410   1
## 4411   1
## 4412   1
## 4413   1
## 4414   1
## 4415   1
## 4416   1
## 4417   1
## 4418   1
## 4419   1
## 4420   1
## 4421   1
## 4422   1
## 4423   1
## 4424   1
## 4425   1
## 4426   1
## 4427   1
## 4428   1
## 4429   1
## 4430   1
## 4431   1
## 4432   1
## 4433   1
## 4434   1
## 4435   1
## 4436   1
## 4437   1
## 4438   1
## 4439   1
## 4440   1
## 4441   1
## 4442   1
## 4443   1
## 4444   1
## 4445   1
## 4446   1
## 4447   1
## 4448   1
## 4449   1
## 4450   1
## 4451   1
## 4452   1
## 4453   1
## 4454   1
## 4455   1
## 4456   1
## 4457   1
## 4458   1
## 4459   1
## 4460   1
## 4461   1
## 4462   1
## 4463   1
## 4464   1
## 4465   1
## 4466   1
## 4467   1
## 4468   1
## 4469   1
## 4470   1
## 4471   1
## 4472   1
## 4473   1
## 4474   1
## 4475   1
## 4476   1
## 4477   1
## 4478   1
## 4479   1
## 4480   1
## 4481   1
## 4482   1
## 4483   1
## 4484   1
## 4485   1
## 4486   1
## 4487   1
## 4488   1
## 4489   1
## 4490   1
## 4491   1
## 4492   1
## 4493   1
## 4494   1
## 4495   1
## 4496   1
## 4497   1
## 4498   1
## 4499   1
## 4500   1
## 4501   1
## 4502   1
## 4503   1
## 4504   1
## 4505   1
## 4506   1
## 4507   1
## 4508   1
## 4509   1
## 4510   1
## 4511   1
## 4512   1
## 4513   1
## 4514   1
## 4515   1
## 4516   1
## 4517   1
## 4518   1
## 4519   1
## 4520   1
## 4521   1
## 4522   1
## 4523   1
## 4524   1
## 4525   1
## 4526   1
## 4527   1
## 4528   1
## 4529   1
## 4530   1
## 4531   1
## 4532   1
## 4533   1
## 4534   1
## 4535   1
## 4536   1
## 4537   1
## 4538   1
## 4539   1
## 4540   1
## 4541   1
## 4542   1
## 4543   1
## 4544   1
## 4545   1
## 4546   1
## 4547   1
## 4548   1
## 4549   1
## 4550   1
## 4551   1
## 4552   1
## 4553   1
## 4554   1
## 4555   1
## 4556   1
## 4557   1
## 4558   1
## 4559   1
## 4560   1
## 4561   1
## 4562   1
## 4563   1
## 4564   1
## 4565   1
## 4566   1
## 4567   1
## 4568   1
## 4569   1
## 4570   1
## 4571   1
## 4572   1
## 4573   1
## 4574   1
## 4575   1
## 4576   1
## 4577   1
## 4578   1
## 4579   1
## 4580   1
## 4581   1
## 4582   1
## 4583   1
## 4584   1
## 4585   1
## 4586   1
## 4587   1
## 4588   1
## 4589   1
## 4590   1
## 4591   1
## 4592   1
## 4593   1
## 4594   1
## 4595   1
## 4596   1
## 4597   1
## 4598   1
## 4599   1
## 4600   1
## 4601   1
## 4602   1
## 4603   1
## 4604   1
## 4605   1
## 4606   1
## 4607   1
## 4608   1
## 4609   1
## 4610   1
## 4611   1
## 4612   1
## 4613   1
## 4614   1
## 4615   1
## 4616   1
## 4617   1
## 4618   1
## 4619   1
## 4620   1
## 4621   1
## 4622   1
## 4623   1
## 4624   1
## 4625   1
## 4626   1
## 4627   1
## 4628   1
## 4629   1
## 4630   1
## 4631   1
## 4632   1
## 4633   1
## 4634   1
## 4635   1
## 4636   1
## 4637   1
## 4638   1
## 4639   1
## 4640   1
## 4641   1
## 4642   1
## 4643   1
## 4644   1
## 4645   1
## 4646   1
## 4647   1
## 4648   1
## 4649   1
## 4650   1
## 4651   1
## 4652   1
## 4653   1
## 4654   1
## 4655   1
## 4656   1
## 4657   1
## 4658   1
## 4659   1
## 4660   1
## 4661   1
## 4662   1
## 4663   1
## 4664   1
## 4665   1
## 4666   1
## 4667   1
## 4668   1
## 4669   1
## 4670   1
## 4671   1
## 4672   1
## 4673   1
## 4674   1
## 4675   1
## 4676   1
## 4677   1
## 4678   1
## 4679   1
## 4680   1
## 4681   1
## 4682   1
## 4683   1
## 4684   1
## 4685   1
## 4686   1
## 4687   1
## 4688   1
## 4689   1
## 4690   1
## 4691   1
## 4692   1
## 4693   1
## 4694   1
## 4695   1
## 4696   1
## 4697   1
## 4698   1
## 4699   1
## 4700   1
## 4701   1
## 4702   1
## 4703   1
## 4704   1
## 4705   1
## 4706   1
## 4707   1
## 4708   1
## 4709   1
## 4710   1
## 4711   1
## 4712   1
## 4713   1
## 4714   1
## 4715   1
## 4716   1
## 4717   1
## 4718   1
## 4719   1
## 4720   1
## 4721   1
## 4722   1
## 4723   1
## 4724   1
## 4725   1
## 4726   1
## 4727   1
## 4728   1
## 4729   1
## 4730   1
## 4731   1
## 4732   1
## 4733   1
## 4734   1
## 4735   1
## 4736   1
## 4737   1
## 4738   1
## 4739   1
## 4740   1
## 4741   1
## 4742   1
## 4743   1
## 4744   1
## 4745   1
## 4746   1
## 4747   1
## 4748   1
## 4749   1
## 4750   1
## 4751   1
## 4752   1
## 4753   1
## 4754   1
## 4755   1
## 4756   1
## 4757   1
## 4758   1
## 4759   1
## 4760   1
## 4761   1
## 4762   1
## 4763   1
## 4764   1
## 4765   1
## 4766   1
## 4767   1
## 4768   1
## 4769   1
## 4770   1
## 4771   1
## 4772   1
## 4773   1
## 4774   1
## 4775   1
## 4776   1
## 4777   1
## 4778   1
## 4779   1
## 4780   1
## 4781   1
## 4782   1
## 4783   1
## 4784   1
## 4785   1
## 4786   1
## 4787   1
## 4788   1
## 4789   1
## 4790   1
## 4791   1
## 4792   1
## 4793   1
## 4794   1
## 4795   1
## 4796   1
## 4797   1
## 4798   1
## 4799   1
## 4800   1
## 4801   1
## 4802   1
## 4803   1
## 4804   1
## 4805   1
## 4806   1
## 4807   1
## 4808   1
## 4809   1
## 4810   1
## 4811   1
## 4812   1
## 4813   1
## 4814   1
## 4815   1
## 4816   1
## 4817   1
## 4818   1
## 4819   1
## 4820   1
## 4821   1
## 4822   1
## 4823   1
## 4824   1
## 4825   1
## 4826   1
## 4827   1
## 4828   1
## 4829   1
## 4830   1
## 4831   1
## 4832   1
## 4833   1
## 4834   1
## 4835   1
## 4836   1
## 4837   1
## 4838   1
## 4839   1
## 4840   1
## 4841   1
## 4842   1
## 4843   1
## 4844   1
## 4845   1
## 4846   1
## 4847   1
## 4848   1
## 4849   1
## 4850   1
## 4851   1
## 4852   1
## 4853   1
## 4854   1
## 4855   1
## 4856   1
## 4857   1
## 4858   1
## 4859   1
## 4860   1
## 4861   1
## 4862   1
## 4863   1
## 4864   1
## 4865   1
## 4866   1
## 4867   1
## 4868   1
## 4869   1
## 4870   1
## 4871   1
## 4872   1
## 4873   1
## 4874   1
## 4875   1
## 4876   1
## 4877   1
## 4878   1
## 4879   1
## 4880   1
## 4881   1
## 4882   1
## 4883   1
## 4884   1
## 4885   1
## 4886   1
## 4887   1
## 4888   1
## 4889   1
## 4890   1
## 4891   1
## 4892   1
## 4893   1
## 4894   1
## 4895   1
## 4896   1
## 4897   1
## 4898   1
## 4899   1
## 4900   1
## 4901   1
## 4902   1
## 4903   1
## 4904   1
## 4905   1
## 4906   1
## 4907   1
## 4908   1
## 4909   1
## 4910   1
## 4911   1
## 4912   1
## 4913   1
## 4914   1
## 4915   1
## 4916   1
## 4917   1
## 4918   1
## 4919   1
## 4920   1
## 4921   1
## 4922   1
## 4923   1
## 4924   1
## 4925   1
## 4926   1
## 4927   1
## 4928   1
## 4929   1
## 4930   1
## 4931   1
## 4932   1
## 4933   1
## 4934   1
## 4935   1
## 4936   1
## 4937   1
## 4938   1
## 4939   1
## 4940   1
## 4941   1
## 4942   1
## 4943   1
## 4944   1
## 4945   1
## 4946   1
## 4947   1
## 4948   1
## 4949   1
## 4950   1
## 4951   1
## 4952   1
## 4953   1
## 4954   1
## 4955   1
## 4956   1
## 4957   1
## 4958   1
## 4959   1
## 4960   1
## 4961   1
## 4962   1
## 4963   1
## 4964   1
## 4965   1
## 4966   1
## 4967   1
## 4968   1
## 4969   1
## 4970   1
## 4971   1
## 4972   1
## 4973   1
## 4974   1
## 4975   1
## 4976   1
## 4977   1
## 4978   1
## 4979   1
## 4980   1
## 4981   1
## 4982   1
## 4983   1
## 4984   1
## 4985   1
## 4986   1
## 4987   1
## 4988   1
## 4989   1
## 4990   1
## 4991   1
## 4992   1
## 4993   1
## 4994   1
## 4995   1
## 4996   1
## 4997   1
## 4998   1
## 4999   1
## 5000   1
## 5001   1
## 5002   1
## 5003   1
## 5004   1
## 5005   1
## 5006   1
## 5007   1
## 5008   1
## 5009   1
## 5010   1
## 5011   1
## 5012   1
## 5013   1
## 5014   1
## 5015   1
## 5016   1
## 5017   1
## 5018   1
## 5019   1
## 5020   1
## 5021   1
## 5022   1
## 5023   1
## 5024   1
## 5025   1
## 5026   1
## 5027   1
## 5028   1
## 5029   1
## 5030   1
## 5031   1
## 5032   1
## 5033   1
## 5034   1
## 5035   1
## 5036   1
## 5037   1
## 5038   1
## 5039   1
## 5040   1
## 5041   1
## 5042   1
## 5043   1
## 5044   1
## 5045   1
## 5046   1
## 5047   1
## 5048   1
## 5049   1
## 5050   1
## 5051   1
## 5052   1
## 5053   1
## 5054   1
## 5055   1
## 5056   1
## 5057   1
## 5058   1
## 5059   1
## 5060   1
## 5061   1
## 5062   1
## 5063   1
## 5064   1
## 5065   1
## 5066   1
## 5067   1
## 5068   1
## 5069   1
## 5070   1
## 5071   1
## 5072   1
## 5073   1
## 5074   1
## 5075   1
## 5076   1
## 5077   1
## 5078   1
## 5079   1
## 5080   1
## 5081   1
## 5082   1
## 5083   1
## 5084   1
## 5085   1
## 5086   1
## 5087   1
## 5088   1
## 5089   1
## 5090   1
## 5091   1
## 5092   1
## 5093   1
## 5094   1
## 5095   1
## 5096   1
## 5097   1
## 5098   1
## 5099   1
## 5100   1
## 5101   1
## 5102   1
## 5103   1
## 5104   1
## 5105   1
## 5106   1
## 5107   1
## 5108   1
## 5109   1
## 5110   1
## 5111   1
## 5112   1
## 5113   1
## 5114   1
## 5115   1
## 5116   1
## 5117   1
## 5118   1
## 5119   1
## 5120   1
## 5121   1
## 5122   1
## 5123   1
## 5124   1
## 5125   1
## 5126   1
## 5127   1
## 5128   1
## 5129   1
## 5130   1
## 5131   1
## 5132   1
## 5133   1
## 5134   1
## 5135   1
## 5136   1
## 5137   1
## 5138   1
## 5139   1
## 5140   1
## 5141   1
## 5142   1
## 5143   1
## 5144   1
## 5145   1
## 5146   1
## 5147   1
## 5148   1
## 5149   1
## 5150   1
## 5151   1
## 5152   1
## 5153   1
## 5154   1
## 5155   1
## 5156   1
## 5157   1
## 5158   1
## 5159   1
## 5160   1
## 5161   1
## 5162   1
## 5163   1
## 5164   1
## 5165   1
## 5166   1
## 5167   1
## 5168   1
## 5169   1
## 5170   1
## 5171   1
## 5172   1
## 5173   1
## 5174   1
## 5175   1
## 5176   1
## 5177   1
## 5178   1
## 5179   1
## 5180   1
## 5181   1
## 5182   1
## 5183   1
## 5184   1
## 5185   1
## 5186   1
## 5187   1
## 5188   1
## 5189   1
## 5190   1
## 5191   1
## 5192   1
## 5193   1
## 5194   1
## 5195   1
## 5196   1
## 5197   1
## 5198   1
## 5199   1
## 5200   1
## 5201   1
## 5202   1
## 5203   1
## 5204   1
## 5205   1
## 5206   1
## 5207   1
## 5208   1
## 5209   1
## 5210   1
## 5211   1
## 5212   1
## 5213   1
## 5214   1
## 5215   1
## 5216   1
## 5217   1
## 5218   1
## 5219   1
## 5220   1
## 5221   1
## 5222   1
## 5223   1
## 5224   1
## 5225   1
## 5226   1
## 5227   1
## 5228   1
## 5229   1
## 5230   1
## 5231   1
## 5232   1
## 5233   1
## 5234   1
## 5235   1
## 5236   1
## 5237   1
## 5238   1
## 5239   1
## 5240   1
## 5241   1
## 5242   1
## 5243   1
## 5244   1
## 5245   1
## 5246   1
## 5247   1
## 5248   1
## 5249   1
## 5250   1
## 5251   1
## 5252   1
## 5253   1
## 5254   1
## 5255   1
## 5256   1
## 5257   1
## 5258   1
## 5259   1
## 5260   1
## 5261   1
## 5262   1
## 5263   1
## 5264   1
## 5265   1
## 5266   1
## 5267   1
## 5268   1
## 5269   1
## 5270   1
## 5271   1
## 5272   1
## 5273   1
## 5274   1
## 5275   1
## 5276   1
## 5277   1
## 5278   1
## 5279   1
## 5280   1
## 5281   1
## 5282   1
## 5283   1
## 5284   1
## 5285   1
## 5286   1
## 5287   1
## 5288   1
## 5289   1
## 5290   1
## 5291   1
## 5292   1
## 5293   1
## 5294   1
## 5295   1
## 5296   1
## 5297   1
## 5298   1
## 5299   1
## 5300   1
## 5301   1
## 5302   1
## 5303   1
## 5304   1
## 5305   1
## 5306   1
## 5307   1
## 5308   1
## 5309   1
## 5310   1
## 5311   1
## 5312   1
## 5313   1
## 5314   1
## 5315   1
## 5316   1
## 5317   1
## 5318   1
## 5319   1
## 5320   1
## 5321   1
## 5322   1
## 5323   1
## 5324   1
## 5325   1
## 5326   1
## 5327   1
## 5328   1
## 5329   1
## 5330   1
## 5331   1
## 5332   1
## 5333   1
## 5334   1
## 5335   1
## 5336   1
## 5337   1
## 5338   1
## 5339   1
## 5340   1
## 5341   1
## 5342   1
## 5343   1
## 5344   1
## 5345   1
## 5346   1
## 5347   1
## 5348   1
## 5349   1
## 5350   1
## 5351   1
## 5352   1
## 5353   1
## 5354   1
## 5355   1
## 5356   1
## 5357   1
## 5358   1
## 5359   1
## 5360   1
## 5361   1
## 5362   1
## 5363   1
## 5364   1
## 5365   1
## 5366   1
## 5367   1
## 5368   1
## 5369   1
## 5370   1
## 5371   1
## 5372   1
## 5373   1
## 5374   1
## 5375   1
## 5376   1
## 5377   1
## 5378   1
## 5379   1
## 5380   1
## 5381   1
## 5382   1
## 5383   1
## 5384   1
## 5385   1
## 5386   1
## 5387   1
## 5388   1
## 5389   1
## 5390   1
## 5391   1
## 5392   1
## 5393   1
## 5394   1
## 5395   1
## 5396   1
## 5397   1
## 5398   1
## 5399   1
## 5400   1
## 5401   1
## 5402   1
## 5403   1
## 5404   1
## 5405   1
## 5406   1
## 5407   1
## 5408   1
## 5409   1
## 5410   1
## 5411   1
## 5412   1
## 5413   1
## 5414   1
## 5415   1
## 5416   1
## 5417   1
## 5418   1
## 5419   1
## 5420   1
## 5421   1
## 5422   1
## 5423   1
## 5424   1
## 5425   1
## 5426   1
## 5427   1
## 5428   1
## 5429   1
## 5430   1
## 5431   1
## 5432   1
## 5433   1
## 5434   1
## 5435   1
## 5436   1
## 5437   1
## 5438   1
## 5439   1
## 5440   1
## 5441   1
## 5442   1
## 5443   1
## 5444   1
## 5445   1
## 5446   1
## 5447   1
## 5448   1
## 5449   1
## 5450   1
## 5451   1
## 5452   1
## 5453   1
## 5454   1
## 5455   1
## 5456   1
## 5457   1
## 5458   1
## 5459   1
## 5460   1
## 5461   1
## 5462   1
## 5463   1
## 5464   1
## 5465   1
## 5466   1
## 5467   1
## 5468   1
## 5469   1
## 5470   1
## 5471   1
## 5472   1
## 5473   1
## 5474   1
## 5475   1
## 5476   1
## 5477   1
## 5478   1
## 5479   1
## 5480   1
## 5481   1
## 5482   1
## 5483   1
## 5484   1
## 5485   1
## 5486   1
## 5487   1
## 5488   1
## 5489   1
## 5490   1
## 5491   1
## 5492   1
## 5493   1
## 5494   1
## 5495   1
## 5496   1
## 5497   1
## 5498   1
## 5499   1
## 5500   1
## 5501   1
## 5502   1
## 5503   1
## 5504   1
## 5505   1
## 5506   1
## 5507   1
## 5508   1
## 5509   1
## 5510   1
## 5511   1
## 5512   1
## 5513   1
## 5514   1
## 5515   1
## 5516   1
## 5517   1
## 5518   1
## 5519   1
## 5520   1
## 5521   1
## 5522   1
## 5523   1
## 5524   1
## 5525   1
## 5526   1
## 5527   1
## 5528   1
## 5529   1
## 5530   1
## 5531   1
## 5532   1
## 5533   1
## 5534   1
## 5535   1
## 5536   1
## 5537   1
## 5538   1
## 5539   1
## 5540   1
## 5541   1
## 5542   1
## 5543   1
## 5544   1
## 5545   1
## 5546   1
## 5547   1
## 5548   1
## 5549   1
## 5550   1
## 5551   1
## 5552   1
## 5553   1
## 5554   1
## 5555   1
## 5556   1
## 5557   1
## 5558   1
## 5559   1
## 5560   1
## 5561   1
## 5562   1
## 5563   1
## 5564   1
## 5565   1
## 5566   1
## 5567   1
## 5568   1
## 5569   1
## 5570   1
## 5571   1
## 5572   1
## 5573   1
## 5574   1
## 5575   1
## 5576   1
## 5577   1
## 5578   1
## 5579   1
## 5580   1
## 5581   1
## 5582   1
## 5583   1
## 5584   1
## 5585   1
## 5586   1
## 5587   1
## 5588   1
## 5589   1
## 5590   1
## 5591   1
## 5592   1
## 5593   1
## 5594   1
## 5595   1
## 5596   1
## 5597   1
## 5598   1
## 5599   1
## 5600   1
## 5601   1
## 5602   1
## 5603   1
## 5604   1
## 5605   1
## 5606   1
## 5607   1
## 5608   1
## 5609   1
## 5610   1
## 5611   1
## 5612   1
## 5613   1
## 5614   1
## 5615   1
## 5616   1
## 5617   1
## 5618   1
## 5619   1
## 5620   1
## 5621   1
## 5622   1
## 5623   1
## 5624   1
## 5625   1
## 5626   1
## 5627   1
## 5628   1
## 5629   1
## 5630   1
## 5631   1
## 5632   1
## 5633   1
## 5634   1
## 5635   1
## 5636   1
## 5637   1
## 5638   1
## 5639   1
## 5640   1
## 5641   1
## 5642   1
## 5643   1
## 5644   1
## 5645   1
## 5646   1
## 5647   1
## 5648   1
## 5649   1
## 5650   1
## 5651   1
## 5652   1
## 5653   1
## 5654   1
## 5655   1
## 5656   1
## 5657   1
## 5658   1
## 5659   1
## 5660   1
## 5661   1
## 5662   1
## 5663   1
## 5664   1
## 5665   1
## 5666   1
## 5667   1
## 5668   1
## 5669   1
## 5670   1
## 5671   1
## 5672   1
## 5673   1
## 5674   1
## 5675   1
## 5676   1
## 5677   1
## 5678   1
## 5679   1
## 5680   1
## 5681   1
## 5682   1
## 5683   1
## 5684   1
## 5685   1
## 5686   1
## 5687   1
## 5688   1
## 5689   1
## 5690   1
## 5691   1
## 5692   1
## 5693   1
## 5694   1
## 5695   1
## 5696   1
## 5697   1
## 5698   1
## 5699   1
## 5700   1
## 5701   1
## 5702   1
## 5703   1
## 5704   1
## 5705   1
## 5706   1
## 5707   1
## 5708   1
## 5709   1
## 5710   1
## 5711   1
## 5712   1
## 5713   1
## 5714   1
## 5715   1
## 5716   1
## 5717   1
## 5718   1
## 5719   1
## 5720   1
## 5721   1
## 5722   1
## 5723   1
## 5724   1
## 5725   1
## 5726   1
## 5727   1
## 5728   1
## 5729   1
## 5730   1
## 5731   1
## 5732   1
## 5733   1
## 5734   1
## 5735   1
## 5736   1
## 5737   1
## 5738   1
## 5739   1
## 5740   1
## 5741   1
## 5742   1
## 5743   1
## 5744   1
## 5745   1
## 5746   1
## 5747   1
## 5748   1
## 5749   1
## 5750   1
## 5751   1
## 5752   1
## 5753   1
## 5754   1
## 5755   1
## 5756   1
## 5757   1
## 5758   1
## 5759   1
## 5760   1
## 5761   1
## 5762   1
## 5763   1
## 5764   1
## 5765   1
## 5766   1
## 5767   1
## 5768   1
## 5769   1
## 5770   1
## 5771   1
## 5772   1
## 5773   1
## 5774   1
## 5775   1
## 5776   1
## 5777   1
## 5778   1
## 5779   1
## 5780   1
## 5781   1
## 5782   1
## 5783   1
## 5784   1
## 5785   1
## 5786   1
## 5787   1
## 5788   1
## 5789   1
## 5790   1
## 5791   1
## 5792   1
## 5793   1
## 5794   1
## 5795   1
## 5796   1
## 5797   1
## 5798   1
## 5799   1
## 5800   1
## 5801   1
## 5802   1
## 5803   1
## 5804   1
## 5805   1
## 5806   1
## 5807   1
## 5808   1
## 5809   1
## 5810   1
## 5811   1
## 5812   1
## 5813   1
## 5814   1
## 5815   1
## 5816   1
## 5817   1
## 5818   1
## 5819   1
## 5820   1
## 5821   1
## 5822   1
## 5823   1
## 5824   1
## 5825   1
## 5826   1
## 5827   1
## 5828   1
## 5829   1
## 5830   1
## 5831   1
## 5832   1
## 5833   1
## 5834   1
## 5835   1
## 5836   1
## 5837   1
## 5838   1
## 5839   1
## 5840   1
## 5841   1
## 5842   1
## 5843   1
## 5844   1
## 5845   1
## 5846   1
## 5847   1
## 5848   1
## 5849   1
## 5850   1
## 5851   1
## 5852   1
## 5853   1
## 5854   1
## 5855   1
## 5856   1
## 5857   1
## 5858   1
## 5859   1
## 5860   1
## 5861   1
## 5862   1
## 5863   1
## 5864   1
## 5865   1
## 5866   1
## 5867   1
## 5868   1
## 5869   1
## 5870   1
## 5871   1
## 5872   1
## 5873   1
## 5874   1
## 5875   1
## 5876   1
## 5877   1
## 5878   1
## 5879   1
## 5880   1
## 5881   1
## 5882   1
## 5883   1
## 5884   1
## 5885   1
## 5886   1
## 5887   1
## 5888   1
## 5889   1
## 5890   1
## 5891   1
## 5892   1
## 5893   1
## 5894   1
## 5895   1
## 5896   1
## 5897   1
## 5898   1
## 5899   1
## 5900   1
## 5901   1
## 5902   1
## 5903   1
## 5904   1
## 5905   1
## 5906   1
## 5907   1
## 5908   1
## 5909   1
## 5910   1
## 5911   1
## 5912   1
## 5913   1
## 5914   1
## 5915   1
## 5916   1
## 5917   1
## 5918   1
## 5919   1
## 5920   1
## 5921   1
## 5922   1
## 5923   1
## 5924   1
## 5925   1
## 5926   1
## 5927   1
## 5928   1
## 5929   1
## 5930   1
## 5931   1
## 5932   1
## 5933   1
## 5934   1
## 5935   1
## 5936   1
## 5937   1
## 5938   1
## 5939   1
## 5940   1
## 5941   1
## 5942   1
## 5943   1
## 5944   1
## 5945   1
## 5946   1
## 5947   1
## 5948   1
## 5949   1
## 5950   1
## 5951   1
## 5952   1
## 5953   1
## 5954   1
## 5955   1
## 5956   1
## 5957   1
## 5958   1
## 5959   1
## 5960   1
## 5961   1
## 5962   1
## 5963   1
## 5964   1
## 5965   1
## 5966   1
## 5967   1
## 5968   1
## 5969   1
## 5970   1
## 5971   1
## 5972   1
## 5973   1
## 5974   1
## 5975   1
## 5976   1
## 5977   1
## 5978   1
## 5979   1
## 5980   1
## 5981   1
## 5982   1
## 5983   1
## 5984   1
## 5985   1
## 5986   1
## 5987   1
## 5988   1
## 5989   1
## 5990   1
## 5991   1
## 5992   1
## 5993   1
## 5994   1
## 5995   1
## 5996   1
## 5997   1
## 5998   1
## 5999   1
## 6000   1
## 6001   1
## 6002   1
## 6003   1
## 6004   1
## 6005   1
## 6006   1
## 6007   1
## 6008   1
## 6009   1
## 6010   1
## 6011   1
## 6012   1
## 6013   1
## 6014   1
## 6015   1
## 6016   1
## 6017   1
## 6018   1
## 6019   1
## 6020   1
## 6021   1
## 6022   1
## 6023   1
## 6024   1
## 6025   1
## 6026   1
## 6027   1
## 6028   1
## 6029   1
## 6030   1
## 6031   1
## 6032   1
## 6033   1
## 6034   1
## 6035   1
## 6036   1
## 6037   1
## 6038   1
## 6039   1
## 6040   1
## 6041   1
## 6042   1
## 6043   1
## 6044   1
## 6045   1
## 6046   1
## 6047   1
## 6048   1
## 6049   1
## 6050   1
## 6051   1
## 6052   1
## 6053   1
## 6054   1
## 6055   1
## 6056   1
## 6057   1
## 6058   1
## 6059   1
## 6060   1
## 6061   1
## 6062   1
## 6063   1
## 6064   1
## 6065   1
## 6066   1
## 6067   1
## 6068   1
## 6069   1
## 6070   1
## 6071   1
## 6072   1
## 6073   1
## 6074   1
## 6075   1
## 6076   1
## 6077   1
## 6078   1
## 6079   1
## 6080   1
## 6081   1
## 6082   1
## 6083   1
## 6084   1
## 6085   1
## 6086   1
## 6087   1
## 6088   1
## 6089   1
## 6090   1
## 6091   1
## 6092   1
## 6093   1
## 6094   1
## 6095   1
## 6096   1
## 6097   1
## 6098   1
## 6099   1
## 6100   1
## 6101   1
## 6102   1
## 6103   1
## 6104   1
## 6105   1
## 6106   1
## 6107   1
## 6108   1
## 6109   1
## 6110   1
## 6111   1
## 6112   1
## 6113   1
## 6114   1
## 6115   1
## 6116   1
## 6117   1
## 6118   1
## 6119   1
## 6120   1
## 6121   1
## 6122   1
## 6123   1
## 6124   1
## 6125   1
## 6126   1
## 6127   1
## 6128   1
## 6129   1
## 6130   1
## 6131   1
## 6132   1
## 6133   1
## 6134   1
## 6135   1
## 6136   1
## 6137   1
## 6138   1
## 6139   1
## 6140   1
## 6141   1
## 6142   1
## 6143   1
## 6144   1
## 6145   1
## 6146   1
## 6147   1
## 6148   1
## 6149   1
## 6150   1
## 6151   1
## 6152   1
## 6153   1
## 6154   1
## 6155   1
## 6156   1
## 6157   1
## 6158   1
## 6159   1
## 6160   1
## 6161   1
## 6162   1
## 6163   1
## 6164   1
## 6165   1
## 6166   1
## 6167   1
## 6168   1
## 6169   1
## 6170   1
## 6171   1
## 6172   1
## 6173   1
## 6174   1
## 6175   1
## 6176   1
## 6177   1
## 6178   1
## 6179   1
## 6180   1
## 6181   1
## 6182   1
## 6183   1
## 6184   1
## 6185   1
## 6186   1
## 6187   1
## 6188   1
## 6189   1
## 6190   1
## 6191   1
## 6192   1
## 6193   1
## 6194   1
## 6195   1
## 6196   1
## 6197   1
## 6198   1
## 6199   1
## 6200   1
## 6201   1
## 6202   1
## 6203   1
## 6204   1
## 6205   1
## 6206   1
## 6207   1
## 6208   1
## 6209   1
## 6210   1
## 6211   1
## 6212   1
## 6213   1
## 6214   1
## 6215   1
## 6216   1
## 6217   1
## 6218   1
## 6219   1
## 6220   1
## 6221   1
## 6222   1
## 6223   1
## 6224   1
## 6225   1
## 6226   1
## 6227   1
## 6228   1
## 6229   1
## 6230   1
## 6231   1
## 6232   1
## 6233   1
## 6234   1
## 6235   1
## 6236   1
## 6237   1
## 6238   1
## 6239   1
## 6240   1
## 6241   1
## 6242   1
## 6243   1
## 6244   1
## 6245   1
## 6246   1
## 6247   1
## 6248   1
## 6249   1
## 6250   1
## 6251   1
## 6252   1
## 6253   1
## 6254   1
## 6255   1
## 6256   1
## 6257   1
## 6258   1
## 6259   1
## 6260   1
## 6261   1
## 6262   1
## 6263   1
## 6264   1
## 6265   1
## 6266   1
## 6267   1
## 6268   1
## 6269   1
## 6270   1
## 6271   1
## 6272   1
## 6273   1
## 6274   1
## 6275   1
## 6276   1
## 6277   1
## 6278   1
## 6279   1
## 6280   1
## 6281   1
## 6282   1
## 6283   1
## 6284   1
## 6285   1
## 6286   1
## 6287   1
## 6288   1
## 6289   1
## 6290   1
## 6291   1
## 6292   1
## 6293   1
## 6294   1
## 6295   1
## 6296   1
## 6297   1
## 6298   1
## 6299   1
## 6300   1
## 6301   1
## 6302   1
## 6303   1
## 6304   1
## 6305   1
## 6306   1
## 6307   1
## 6308   1
## 6309   1
## 6310   1
## 6311   1
## 6312   1
## 6313   1
## 6314   1
## 6315   1
## 6316   1
## 6317   1
## 6318   1
## 6319   1
## 6320   1
## 6321   1
## 6322   1
## 6323   1
## 6324   1
## 6325   1
## 6326   1
## 6327   1
## 6328   1
## 6329   1
## 6330   1
## 6331   1
## 6332   1
## 6333   1
## 6334   1
## 6335   1
## 6336   1
## 6337   1
## 6338   1
## 6339   1
## 6340   1
## 6341   1
## 6342   1
## 6343   1
## 6344   1
## 6345   1
## 6346   1
## 6347   1
## 6348   1
## 6349   1
## 6350   1
## 6351   1
## 6352   1
## 6353   1
## 6354   1
## 6355   1
## 6356   1
## 6357   1
## 6358   1
## 6359   1
## 6360   1
## 6361   1
## 6362   1
## 6363   1
## 6364   1
## 6365   1
## 6366   1
## 6367   1
## 6368   1
## 6369   1
## 6370   1
## 6371   1
## 6372   1
## 6373   1
## 6374   1
## 6375   1
## 6376   1
## 6377   1
## 6378   1
## 6379   1
## 6380   1
## 6381   1
## 6382   1
## 6383   1
## 6384   1
## 6385   1
## 6386   1
## 6387   1
## 6388   1
## 6389   1
## 6390   1
## 6391   1
## 6392   1
## 6393   1
## 6394   1
## 6395   1
## 6396   1
## 6397   1
## 6398   1
## 6399   1
## 6400   1
## 6401   1
## 6402   1
## 6403   1
## 6404   1
## 6405   1
## 6406   1
## 6407   1
## 6408   1
## 6409   1
## 6410   1
## 6411   1
## 6412   1
## 6413   1
## 6414   1
## 6415   1
## 6416   1
## 6417   1
## 6418   1
## 6419   1
## 6420   1
## 6421   1
## 6422   1
## 6423   1
## 6424   1
## 6425   1
## 6426   1
## 6427   1
## 6428   1
## 6429   1
## 6430   1
## 6431   1
## 6432   1
## 6433   1
## 6434   1
## 6435   1
## 6436   1
## 6437   1
## 6438   1
## 6439   1
## 6440   1
## 6441   1
## 6442   1
## 6443   1
## 6444   1
## 6445   1
## 6446   1
## 6447   1
## 6448   1
## 6449   1
## 6450   1
## 6451   1
## 6452   1
## 6453   1
## 6454   1
## 6455   1
## 6456   1
## 6457   1
## 6458   1
## 6459   1
## 6460   1
## 6461   1
## 6462   1
## 6463   1
## 6464   1
## 6465   1
## 6466   1
## 6467   1
## 6468   1
## 6469   1
## 6470   1
## 6471   1
## 6472   1
## 6473   1
## 6474   1
## 6475   1
## 6476   1
## 6477   1
## 6478   1
## 6479   1
## 6480   1
## 6481   1
## 6482   1
## 6483   1
## 6484   1
## 6485   1
## 6486   1
## 6487   1
## 6488   1
## 6489   1
## 6490   1
## 6491   1
## 6492   1
## 6493   1
## 6494   1
## 6495   1
## 6496   1
## 6497   1
## 6498   1
## 6499   1
## 6500   1
## 6501   1
## 6502   1
## 6503   1
## 6504   1
## 6505   1
## 6506   1
## 6507   1
## 6508   1
## 6509   1
## 6510   1
## 6511   1
## 6512   1
## 6513   1
## 6514   1
## 6515   1
## 6516   1
## 6517   1
## 6518   1
## 6519   1
## 6520   1
## 6521   1
## 6522   1
## 6523   1
## 6524   1
## 6525   1
## 6526   1
## 6527   1
## 6528   1
## 6529   1
## 6530   1
## 6531   1
## 6532   1
## 6533   1
## 6534   1
## 6535   1
## 6536   1
## 6537   1
## 6538   1
## 6539   1
## 6540   1
## 6541   1
## 6542   1
## 6543   1
## 6544   1
## 6545   1
## 6546   1
## 6547   1
## 6548   1
## 6549   1
## 6550   1
## 6551   1
## 6552   1
## 6553   1
## 6554   1
## 6555   1
## 6556   1
## 6557   1
## 6558   1
## 6559   1
## 6560   1
## 6561   1
## 6562   1
## 6563   1
## 6564   1
## 6565   1
## 6566   1
## 6567   1
## 6568   1
## 6569   1
## 6570   1
## 6571   1
## 6572   1
## 6573   1
## 6574   1
## 6575   1
## 6576   1
## 6577   1
## 6578   1
## 6579   1
## 6580   1
## 6581   1
## 6582   1
## 6583   1
## 6584   1
## 6585   1
## 6586   1
## 6587   1
## 6588   1
## 6589   1
## 6590   1
## 6591   1
## 6592   1
## 6593   1
## 6594   1
## 6595   1
## 6596   1
## 6597   1
## 6598   1
## 6599   1
## 6600   1
## 6601   1
## 6602   1
## 6603   1
## 6604   1
## 6605   1
## 6606   1
## 6607   1
## 6608   1
## 6609   1
## 6610   1
## 6611   1
## 6612   1
## 6613   1
## 6614   1
## 6615   1
## 6616   1
## 6617   1
## 6618   1
## 6619   1
## 6620   1
## 6621   1
## 6622   1
## 6623   1
## 6624   1
## 6625   1
## 6626   1
## 6627   1
## 6628   1
## 6629   1
## 6630   1
## 6631   1
## 6632   1
## 6633   1
## 6634   1
## 6635   1
## 6636   1
## 6637   1
## 6638   1
## 6639   1
## 6640   1
## 6641   1
## 6642   1
## 6643   1
## 6644   1
## 6645   1
## 6646   1
## 6647   1
## 6648   1
## 6649   1
## 6650   1
## 6651   1
## 6652   1
## 6653   1
## 6654   1
## 6655   1
## 6656   1
## 6657   1
## 6658   1
## 6659   1
## 6660   1
## 6661   1
## 6662   1
## 6663   1
## 6664   1
## 6665   1
## 6666   1
## 6667   1
## 6668   1
## 6669   1
## 6670   1
## 6671   1
## 6672   1
## 6673   1
## 6674   1
## 6675   1
## 6676   1
## 6677   1
## 6678   1
## 6679   1
## 6680   1
## 6681   1
## 6682   1
## 6683   1
## 6684   1
## 6685   1
## 6686   1
## 6687   1
## 6688   1
## 6689   1
## 6690   1
## 6691   1
## 6692   1
## 6693   1
## 6694   1
## 6695   1
## 6696   1
## 6697   1
## 6698   1
## 6699   1
## 6700   1
## 6701   1
## 6702   1
## 6703   1
## 6704   1
## 6705   1
## 6706   1
## 6707   1
## 6708   1
## 6709   1
## 6710   1
## 6711   1
## 6712   1
## 6713   1
## 6714   1
## 6715   1
## 6716   1
## 6717   1
## 6718   1
## 6719   1
## 6720   1
## 6721   1
## 6722   1
## 6723   1
## 6724   1
## 6725   1
## 6726   1
## 6727   1
## 6728   1
## 6729   1
## 6730   1
## 6731   1
## 6732   1
## 6733   1
## 6734   1
## 6735   1
## 6736   1
## 6737   1
## 6738   1
## 6739   1
## 6740   1
## 6741   1
## 6742   1
## 6743   1
## 6744   1
## 6745   1
## 6746   1
## 6747   1
## 6748   1
## 6749   1
## 6750   1
## 6751   1
## 6752   1
## 6753   1
## 6754   1
## 6755   1
## 6756   1
## 6757   1
## 6758   1
## 6759   1
## 6760   1
## 6761   1
## 6762   1
## 6763   1
## 6764   1
## 6765   1
## 6766   1
## 6767   1
## 6768   1
## 6769   1
## 6770   1
## 6771   1
## 6772   1
## 6773   1
## 6774   1
## 6775   1
## 6776   1
## 6777   1
## 6778   1
## 6779   1
## 6780   1
## 6781   1
## 6782   1
## 6783   1
## 6784   1
## 6785   1
## 6786   1
## 6787   1
## 6788   1
## 6789   1
## 6790   1
## 6791   1
## 6792   1
## 6793   1
## 6794   1
## 6795   1
## 6796   1
## 6797   1
## 6798   1
## 6799   1
## 6800   1
## 6801   1
## 6802   1
## 6803   1
## 6804   1
## 6805   1
## 6806   1
## 6807   1
## 6808   1
## 6809   1
## 6810   1
## 6811   1
## 6812   1
## 6813   1
## 6814   1
## 6815   1
## 6816   1
## 6817   1
## 6818   1
## 6819   1
## 6820   1
## 6821   1
## 6822   1
## 6823   1
## 6824   1
## 6825   1
## 6826   1
## 6827   1
## 6828   1
## 6829   1
## 6830   1
## 6831   1
## 6832   1
## 6833   1
## 6834   1
## 6835   1
## 6836   1
## 6837   1
## 6838   1
## 6839   1
## 6840   1
## 6841   1
## 6842   1
## 6843   1
## 6844   1
## 6845   1
## 6846   1
## 6847   1
## 6848   1
## 6849   1
## 6850   1
## 6851   1
## 6852   1
## 6853   1
## 6854   1
## 6855   1
## 6856   1
## 6857   1
## 6858   1
## 6859   1
## 6860   1
## 6861   1
## 6862   1
## 6863   1
## 6864   1
## 6865   1
## 6866   1
## 6867   1
## 6868   1
## 6869   1
## 6870   1
## 6871   1
## 6872   1
## 6873   1
## 6874   1
## 6875   1
## 6876   1
## 6877   1
## 6878   1
## 6879   1
## 6880   1
## 6881   1
## 6882   1
## 6883   1
## 6884   1
## 6885   1
## 6886   1
## 6887   1
## 6888   1
## 6889   1
## 6890   1
## 6891   1
## 6892   1
## 6893   1
## 6894   1
## 6895   1
## 6896   1
## 6897   1
## 6898   1
## 6899   1
## 6900   1
## 6901   1
## 6902   1
## 6903   1
## 6904   1
## 6905   1
## 6906   1
## 6907   1
## 6908   1
## 6909   1
## 6910   1
## 6911   1
## 6912   1
## 6913   1
## 6914   1
## 6915   1
## 6916   1
## 6917   1
## 6918   1
## 6919   1
## 6920   1
## 6921   1
## 6922   1
## 6923   1
## 6924   1
## 6925   1
## 6926   1
## 6927   1
## 6928   1
## 6929   1
## 6930   1
## 6931   1
## 6932   1
## 6933   1
## 6934   1
## 6935   1
## 6936   1
## 6937   1
## 6938   1
## 6939   1
## 6940   1
## 6941   1
## 6942   1
## 6943   1
## 6944   1
## 6945   1
## 6946   1
## 6947   1
## 6948   1
## 6949   1
## 6950   1
## 6951   1
## 6952   1
## 6953   1
## 6954   1
## 6955   1
## 6956   1
## 6957   1
## 6958   1
## 6959   1
## 6960   1
## 6961   1
## 6962   1
## 6963   1
## 6964   1
## 6965   1
## 6966   1
## 6967   1
## 6968   1
## 6969   1
## 6970   1
## 6971   1
## 6972   1
## 6973   1
## 6974   1
## 6975   1
## 6976   1
## 6977   1
## 6978   1
## 6979   1
## 6980   1
## 6981   1
## 6982   1
## 6983   1
## 6984   1
## 6985   1
## 6986   1
## 6987   1
## 6988   1
## 6989   1
## 6990   1
## 6991   1
## 6992   1
## 6993   1
## 6994   1
## 6995   1
## 6996   1
## 6997   1
## 6998   1
## 6999   1
## 7000   1
## 7001   1
## 7002   1
## 7003   1
## 7004   1
## 7005   1
## 7006   1
## 7007   1
## 7008   1
## 7009   1
## 7010   1
## 7011   1
## 7012   1
## 7013   1
## 7014   1
## 7015   1
## 7016   1
## 7017   1
## 7018   1
## 7019   1
## 7020   1
## 7021   1
## 7022   1
## 7023   1
## 7024   1
## 7025   1
## 7026   1
## 7027   1
## 7028   1
## 7029   1
## 7030   1
## 7031   1
## 7032   1
## 7033   1
## 7034   1
## 7035   1
## 7036   1
## 7037   1
## 7038   1
## 7039   1
## 7040   1
## 7041   1
## 7042   1
## 7043   1
## 7044   1
## 7045   1
## 7046   1
## 7047   1
## 7048   1
## 7049   1
## 7050   1
## 7051   1
## 7052   1
## 7053   1
## 7054   1
## 7055   1
## 7056   1
## 7057   1
## 7058   1
## 7059   1
## 7060   1
## 7061   1
## 7062   1
## 7063   1
## 7064   1
## 7065   1
## 7066   1
## 7067   1
## 7068   1
## 7069   1
## 7070   1
## 7071   1
## 7072   1
## 7073   1
## 7074   1
## 7075   1
## 7076   1
## 7077   1
## 7078   1
## 7079   1
## 7080   1
## 7081   1
## 7082   1
## 7083   1
## 7084   1
## 7085   1
## 7086   1
## 7087   1
## 7088   1
## 7089   1
## 7090   1
## 7091   1
## 7092   1
## 7093   1
## 7094   1
## 7095   1
## 7096   1
## 7097   1
## 7098   1
## 7099   1
## 7100   1
## 7101   1
## 7102   1
## 7103   1
## 7104   1
## 7105   1
## 7106   1
## 7107   1
## 7108   1
## 7109   1
## 7110   1
## 7111   1
## 7112   1
## 7113   1
## 7114   1
## 7115   1
## 7116   1
## 7117   1
## 7118   1
## 7119   1
## 7120   1
## 7121   1
## 7122   1
## 7123   1
## 7124   1
## 7125   1
## 7126   1
## 7127   1
## 7128   1
## 7129   1
## 7130   1
## 7131   1
## 7132   1
## 7133   1
## 7134   1
## 7135   1
## 7136   1
## 7137   1
## 7138   1
## 7139   1
## 7140   1
## 7141   1
## 7142   1
## 7143   1
## 7144   1
## 7145   1
## 7146   1
## 7147   1
## 7148   1
## 7149   1
## 7150   1
## 7151   1
## 7152   1
## 7153   1
## 7154   1
## 7155   1
## 7156   1
## 7157   1
## 7158   1
## 7159   1
## 7160   1
## 7161   1
## 7162   1
## 7163   1
## 7164   1
## 7165   1
## 7166   1
## 7167   1
## 7168   1
## 7169   1
## 7170   1
## 7171   1
## 7172   1
## 7173   1
## 7174   1
## 7175   1
## 7176   1
## 7177   1
## 7178   1
## 7179   1
## 7180   1
## 7181   1
## 7182   1
## 7183   1
## 7184   1
## 7185   1
## 7186   1
## 7187   1
## 7188   1
## 7189   1
## 7190   1
## 7191   1
## 7192   1
## 7193   1
## 7194   1
## 7195   1
## 7196   1
## 7197   1
## 7198   1
## 7199   1
## 7200   1
## 7201   1
## 7202   1
## 7203   1
## 7204   1
## 7205   1
## 7206   1
## 7207   1
## 7208   1
## 7209   1
## 7210   1
## 7211   1
## 7212   1
## 7213   1
## 7214   1
## 7215   1
## 7216   1
## 7217   1
## 7218   1
## 7219   1
## 7220   1
## 7221   1
## 7222   1
## 7223   1
## 7224   1
## 7225   1
## 7226   1
## 7227   1
## 7228   1
## 7229   1
## 7230   1
## 7231   1
## 7232   1
## 7233   1
## 7234   1
## 7235   1
## 7236   1
## 7237   1
## 7238   1
## 7239   1
## 7240   1
## 7241   1
## 7242   1
## 7243   1
## 7244   1
## 7245   1
## 7246   1
## 7247   1
## 7248   1
## 7249   1
## 7250   1
## 7251   1
## 7252   1
## 7253   1
## 7254   1
## 7255   1
## 7256   1
## 7257   1
## 7258   1
## 7259   1
## 7260   1
## 7261   1
## 7262   1
## 7263   1
## 7264   1
## 7265   1
## 7266   1
## 7267   1
## 7268   1
## 7269   1
## 7270   1
## 7271   1
## 7272   1
## 7273   1
## 7274   1
## 7275   1
## 7276   1
## 7277   1
## 7278   1
## 7279   1
## 7280   1
## 7281   1
## 7282   1
## 7283   1
## 7284   1
## 7285   1
## 7286   1
## 7287   1
## 7288   1
## 7289   1
## 7290   1
## 7291   1
## 7292   1
## 7293   1
## 7294   1
## 7295   1
## 7296   1
## 7297   1
## 7298   1
## 7299   1
## 7300   1
## 7301   1
## 7302   1
## 7303   1
## 7304   1
## 7305   1
## 7306   1
## 7307   1
## 7308   1
## 7309   1
## 7310   1
## 7311   1
## 7312   1
## 7313   1
## 7314   1
## 7315   1
## 7316   1
## 7317   1
## 7318   1
## 7319   1
## 7320   1
## 7321   1
## 7322   1
## 7323   1
## 7324   1
## 7325   1
## 7326   1
## 7327   1
## 7328   1
## 7329   1
## 7330   1
## 7331   1
## 7332   1
## 7333   1
## 7334   1
## 7335   1
## 7336   1
## 7337   1
## 7338   1
## 7339   1
## 7340   1
## 7341   1
## 7342   1
## 7343   1
## 7344   1
## 7345   1
## 7346   1
## 7347   1
## 7348   1
## 7349   1
## 7350   1
## 7351   1
## 7352   1
## 7353   1
## 7354   1
## 7355   1
## 7356   1
## 7357   1
## 7358   1
## 7359   1
## 7360   1
## 7361   1
## 7362   1
## 7363   1
## 7364   1
## 7365   1
## 7366   1
## 7367   1
## 7368   1
## 7369   1
## 7370   1
## 7371   1
## 7372   1
## 7373   1
## 7374   1
## 7375   1
## 7376   1
## 7377   1
## 7378   1
## 7379   1
## 7380   1
## 7381   1
## 7382   1
## 7383   1
## 7384   1
## 7385   1
## 7386   1
## 7387   1
## 7388   1
## 7389   1
## 7390   1
## 7391   1
## 7392   1
## 7393   1
## 7394   1
## 7395   1
## 7396   1
## 7397   1
## 7398   1
## 7399   1
## 7400   1
## 7401   1
## 7402   1
## 7403   1
## 7404   1
## 7405   1
## 7406   1
## 7407   1
## 7408   1
## 7409   1
## 7410   1
## 7411   1
## 7412   1
## 7413   1
## 7414   1
## 7415   1
## 7416   1
## 7417   1
## 7418   1
## 7419   1
## 7420   1
## 7421   1
## 7422   1
## 7423   1
## 7424   1
## 7425   1
## 7426   1
## 7427   1
## 7428   1
## 7429   1
## 7430   1
## 7431   1
## 7432   1
## 7433   1
## 7434   1
## 7435   1
## 7436   1
## 7437   1
## 7438   1
## 7439   1
## 7440   1
## 7441   1
## 7442   1
## 7443   1
## 7444   1
## 7445   1
## 7446   1
## 7447   1
## 7448   1
## 7449   1
## 7450   1
## 7451   1
## 7452   1
## 7453   1
## 7454   1
## 7455   1
## 7456   1
## 7457   1
## 7458   1
## 7459   1
## 7460   1
## 7461   1
## 7462   1
## 7463   1
## 7464   1
## 7465   1
## 7466   1
## 7467   1
## 7468   1
## 7469   1
## 7470   1
## 7471   1
## 7472   1
## 7473   1
## 7474   1
## 7475   1
## 7476   1
## 7477   1
## 7478   1
## 7479   1
## 7480   1
## 7481   1
## 7482   1
## 7483   1
## 7484   1
## 7485   1
## 7486   1
## 7487   1
## 7488   1
## 7489   1
## 7490   1
## 7491   1
## 7492   1
## 7493   1
## 7494   1
## 7495   1
## 7496   1
## 7497   1
## 7498   1
## 7499   1
## 7500   1
## 7501   1
## 7502   1
## 7503   1
## 7504   1
## 7505   1
## 7506   1
## 7507   1
## 7508   1
## 7509   1
## 7510   1
## 7511   1
## 7512   1
## 7513   1
## 7514   1
## 7515   1
## 7516   1
## 7517   1
## 7518   1
## 7519   1
## 7520   1
## 7521   1
## 7522   1
## 7523   1
## 7524   1
## 7525   1
## 7526   1
## 7527   1
## 7528   1
## 7529   1
## 7530   1
## 7531   1
## 7532   1
## 7533   1
## 7534   1
## 7535   1
## 7536   1
## 7537   1
## 7538   1
## 7539   1
## 7540   1
## 7541   1
## 7542   1
## 7543   1
## 7544   1
## 7545   1
## 7546   1
## 7547   1
## 7548   1
## 7549   1
## 7550   1
## 7551   1
## 7552   1
## 7553   1
## 7554   1
## 7555   1
## 7556   1
## 7557   1
## 7558   1
## 7559   1
## 7560   1
## 7561   1
## 7562   1
## 7563   1
## 7564   1
## 7565   1
## 7566   1
## 7567   1
## 7568   1
## 7569   1
## 7570   1
## 7571   1
## 7572   1
## 7573   1
## 7574   1
## 7575   1
## 7576   1
## 7577   1
## 7578   1
## 7579   1
## 7580   1
## 7581   1
## 7582   1
## 7583   1
## 7584   1
## 7585   1
## 7586   1
## 7587   1
## 7588   1
## 7589   1
## 7590   1
## 7591   1
## 7592   1
## 7593   1
## 7594   1
## 7595   1
## 7596   1
## 7597   1
## 7598   1
## 7599   1
## 7600   1
## 7601   1
## 7602   1
## 7603   1
## 7604   1
## 7605   1
## 7606   1
## 7607   1
## 7608   1
## 7609   1
## 7610   1
## 7611   1
## 7612   1
## 7613   1
## 7614   1
## 7615   1
## 7616   1
## 7617   1
## 7618   1
## 7619   1
## 7620   1
## 7621   1
## 7622   1
## 7623   1
## 7624   1
## 7625   1
## 7626   1
## 7627   1
## 7628   1
## 7629   1
## 7630   1
## 7631   1
## 7632   1
## 7633   1
## 7634   1
## 7635   1
## 7636   1
## 7637   1
## 7638   1
## 7639   1
## 7640   1
## 7641   1
## 7642   1
## 7643   1
## 7644   1
## 7645   1
## 7646   1
## 7647   1
## 7648   1
## 7649   1
## 7650   1
## 7651   1
## 7652   1
## 7653   1
## 7654   1
## 7655   1
## 7656   1
## 7657   1
## 7658   1
## 7659   1
## 7660   1
## 7661   1
## 7662   1
## 7663   1
## 7664   1
## 7665   1
## 7666   1
## 7667   1
## 7668   1
## 7669   1
## 7670   1
## 7671   1
## 7672   1
## 7673   1
## 7674   1
## 7675   1
## 7676   1
## 7677   1
## 7678   1
## 7679   1
## 7680   1
## 7681   1
## 7682   1
## 7683   1
## 7684   1
## 7685   1
## 7686   1
## 7687   1
## 7688   1
## 7689   1
## 7690   1
## 7691   1
## 7692   1
## 7693   1
## 7694   1
## 7695   1
## 7696   1
## 7697   1
## 7698   1
## 7699   1
## 7700   1
## 7701   1
## 7702   1
## 7703   1
## 7704   1
## 7705   1
## 7706   1
## 7707   1
## 7708   1
## 7709   1
## 7710   1
## 7711   1
## 7712   1
## 7713   1
## 7714   1
## 7715   1
## 7716   1
## 7717   1
## 7718   1
## 7719   1
## 7720   1
## 7721   1
## 7722   1
## 7723   1
## 7724   1
## 7725   1
## 7726   1
## 7727   1
## 7728   1
## 7729   1
## 7730   1
## 7731   1
## 7732   1
## 7733   1
## 7734   1
## 7735   1
## 7736   1
## 7737   1
## 7738   1
## 7739   1
## 7740   1
## 7741   1
## 7742   1
## 7743   1
## 7744   1
## 7745   1
## 7746   1
## 7747   1
## 7748   1
## 7749   1
## 7750   1
## 7751   1
## 7752   1
## 7753   1
## 7754   1
## 7755   1
## 7756   1
## 7757   1
## 7758   1
## 7759   1
## 7760   1
## 7761   1
## 7762   1
## 7763   1
## 7764   1
## 7765   1
## 7766   1
## 7767   1
## 7768   1
## 7769   1
## 7770   1
## 7771   1
## 7772   1
## 7773   1
## 7774   1
## 7775   1
## 7776   1
## 7777   1
## 7778   1
## 7779   1
## 7780   1
## 7781   1
## 7782   1
## 7783   1
## 7784   1
## 7785   1
## 7786   1
## 7787   1
## 7788   1
## 7789   1
## 7790   1
## 7791   1
## 7792   1
## 7793   1
## 7794   1
## 7795   1
## 7796   1
## 7797   1
## 7798   1
## 7799   1
## 7800   1
## 7801   1
## 7802   1
## 7803   1
## 7804   1
## 7805   1
## 7806   1
## 7807   1
## 7808   1
## 7809   1
## 7810   1
## 7811   1
## 7812   1
## 7813   1
## 7814   1
## 7815   1
## 7816   1
## 7817   1
## 7818   1
## 7819   1
## 7820   1
## 7821   1
## 7822   1
## 7823   1
## 7824   1
## 7825   1
## 7826   1
## 7827   1
## 7828   1
## 7829   1
## 7830   1
## 7831   1
## 7832   1
## 7833   1
## 7834   1
## 7835   1
## 7836   1
## 7837   1
## 7838   1
## 7839   1
## 7840   1
## 7841   1
## 7842   1
## 7843   1
## 7844   1
## 7845   1
## 7846   1
## 7847   1
## 7848   1
## 7849   1
## 7850   1
## 7851   1
## 7852   1
## 7853   1
## 7854   1
## 7855   1
## 7856   1
## 7857   1
## 7858   1
## 7859   1
## 7860   1
## 7861   1
## 7862   1
## 7863   1
## 7864   1
## 7865   1
## 7866   1
## 7867   1
## 7868   1
## 7869   1
## 7870   1
## 7871   1
## 7872   1
## 7873   1
## 7874   1
## 7875   1
## 7876   1
## 7877   1
## 7878   1
## 7879   1
## 7880   1
## 7881   1
## 7882   1
## 7883   1
## 7884   1
## 7885   1
## 7886   1
## 7887   1
## 7888   1
## 7889   1
## 7890   1
## 7891   1
## 7892   1
## 7893   1
## 7894   1
## 7895   1
## 7896   1
## 7897   1
## 7898   1
## 7899   1
## 7900   1
## 7901   1
## 7902   1
## 7903   1
## 7904   1
## 7905   1
## 7906   1
## 7907   1
## 7908   1
## 7909   1
## 7910   1
## 7911   1
## 7912   1
## 7913   1
## 7914   1
## 7915   1
## 7916   1
## 7917   1
## 7918   1
## 7919   1
## 7920   1
## 7921   1
## 7922   1
## 7923   1
## 7924   1
## 7925   1
## 7926   1
## 7927   1
## 7928   1
## 7929   1
## 7930   1
## 7931   1
## 7932   1
## 7933   1
## 7934   1
## 7935   1
## 7936   1
## 7937   1
## 7938   1
## 7939   1
## 7940   1
## 7941   1
## 7942   1
## 7943   1
## 7944   1
## 7945   1
## 7946   1
## 7947   1
## 7948   1
## 7949   1
## 7950   1
## 7951   1
## 7952   1
## 7953   1
## 7954   1
## 7955   1
## 7956   1
## 7957   1
## 7958   1
## 7959   1
## 7960   1
## 7961   1
## 7962   1
## 7963   1
## 7964   1
## 7965   1
## 7966   1
## 7967   1
## 7968   1
## 7969   1
## 7970   1
## 7971   1
## 7972   1
## 7973   1
## 7974   1
## 7975   1
## 7976   1
## 7977   1
## 7978   1
## 7979   1
## 7980   1
## 7981   1
## 7982   1
## 7983   1
## 7984   1
## 7985   1
## 7986   1
## 7987   1
## 7988   1
## 7989   1
## 7990   1
## 7991   1
## 7992   1
## 7993   1
## 7994   1
## 7995   1
## 7996   1
## 7997   1
## 7998   1
## 7999   1
## 8000   1
## 8001   1
## 8002   1
## 8003   1
## 8004   1
## 8005   1
## 8006   1
## 8007   1
## 8008   1
## 8009   1
## 8010   1
## 8011   1
## 8012   1
## 8013   1
## 8014   1
## 8015   1
## 8016   1
## 8017   1
## 8018   1
## 8019   1
## 8020   1
## 8021   1
## 8022   1
## 8023   1
## 8024   1
## 8025   1
## 8026   1
## 8027   1
## 8028   1
## 8029   1
## 8030   1
## 8031   1
## 8032   1
## 8033   1
## 8034   1
## 8035   1
## 8036   1
## 8037   1
## 8038   1
## 8039   1
## 8040   1
## 8041   1
## 8042   1
## 8043   1
## 8044   1
## 8045   1
## 8046   1
## 8047   1
## 8048   1
## 8049   1
## 8050   1
## 8051   1
## 8052   1
## 8053   1
## 8054   1
## 8055   1
## 8056   1
## 8057   1
## 8058   1
## 8059   1
## 8060   1
## 8061   1
## 8062   1
## 8063   1
## 8064   1
## 8065   1
## 8066   1
## 8067   1
## 8068   1
## 8069   1
## 8070   1
## 8071   1
## 8072   1
## 8073   1
## 8074   1
## 8075   1
## 8076   1
## 8077   1
## 8078   1
## 8079   1
## 8080   1
## 8081   1
## 8082   1
## 8083   1
## 8084   1
## 8085   1
## 8086   1
## 8087   1
## 8088   1
## 8089   1
## 8090   1
## 8091   1
## 8092   1
## 8093   1
## 8094   1
## 8095   1
## 8096   1
## 8097   1
## 8098   1
## 8099   1
## 8100   1
## 8101   1
## 8102   1
## 8103   1
## 8104   1
## 8105   1
## 8106   1
## 8107   1
## 8108   1
## 8109   1
## 8110   1
## 8111   1
## 8112   1
## 8113   1
## 8114   1
## 8115   1
## 8116   1
## 8117   1
## 8118   1
## 8119   1
## 8120   1
## 8121   1
## 8122   1
## 8123   1
## 8124   1
## 8125   1
## 8126   1
## 8127   1
## 8128   1
## 8129   1
## 8130   1
## 8131   1
## 8132   1
## 8133   1
## 8134   1
## 8135   1
## 8136   1
## 8137   1
## 8138   1
## 8139   1
## 8140   1
## 8141   1
## 8142   1
## 8143   1
## 8144   1
## 8145   1
## 8146   1
## 8147   1
## 8148   1
## 8149   1
## 8150   1
## 8151   1
## 8152   1
## 8153   1
## 8154   1
## 8155   1
## 8156   1
## 8157   1
## 8158   1
## 8159   1
## 8160   1
## 8161   1
## 8162   1
## 8163   1
## 8164   1
## 8165   1
## 8166   1
## 8167   1
## 8168   1
## 8169   1
## 8170   1
## 8171   1
## 8172   1
## 8173   1
## 8174   1
## 8175   1
## 8176   1
## 8177   1
## 8178   1
## 8179   1
## 8180   1
## 8181   1
## 8182   1
## 8183   1
## 8184   1
## 8185   1
## 8186   1
## 8187   1
## 8188   1
## 8189   1
## 8190   1
## 8191   1
## 8192   1
## 8193   1
## 8194   1
## 8195   1
## 8196   1
## 8197   1
## 8198   1
## 8199   1
## 8200   1
## 8201   1
## 8202   1
## 8203   1
## 8204   1
## 8205   1
## 8206   1
## 8207   1
## 8208   1
## 8209   1
## 8210   1
## 8211   1
## 8212   1
## 8213   1
## 8214   1
## 8215   1
## 8216   1
## 8217   1
## 8218   1
## 8219   1
## 8220   1
## 8221   1
## 8222   1
## 8223   1
## 8224   1
## 8225   1
## 8226   1
## 8227   1
## 8228   1
## 8229   1
## 8230   1
## 8231   1
## 8232   1
## 8233   1
## 8234   1
## 8235   1
## 8236   1
## 8237   1
## 8238   1
## 8239   1
## 8240   1
## 8241   1
## 8242   1
## 8243   1
## 8244   1
## 8245   1
## 8246   1
## 8247   1
## 8248   1
## 8249   1
## 8250   1
## 8251   1
## 8252   1
## 8253   1
## 8254   1
## 8255   1
## 8256   1
## 8257   1
## 8258   1
## 8259   1
## 8260   1
## 8261   1
## 8262   1
## 8263   1
## 8264   1
## 8265   1
## 8266   1
## 8267   1
## 8268   1
## 8269   1
## 8270   1
## 8271   1
## 8272   1
## 8273   1
## 8274   1
## 8275   1
## 8276   1
## 8277   1
## 8278   1
## 8279   1
## 8280   1
## 8281   1
## 8282   1
## 8283   1
## 8284   1
## 8285   1
## 8286   1
## 8287   1
## 8288   1
## 8289   1
## 8290   1
## 8291   1
## 8292   1
## 8293   1
## 8294   1
## 8295   1
## 8296   1
## 8297   1
## 8298   1
## 8299   1
## 8300   1
## 8301   1
## 8302   1
## 8303   1
## 8304   1
## 8305   1
## 8306   1
## 8307   1
## 8308   1
## 8309   1
## 8310   1
## 8311   1
## 8312   1
## 8313   1
## 8314   1
## 8315   1
## 8316   1
## 8317   1
## 8318   1
## 8319   1
## 8320   1
## 8321   1
## 8322   1
## 8323   1
## 8324   1
## 8325   1
## 8326   1
## 8327   1
## 8328   1
## 8329   1
## 8330   1
## 8331   1
## 8332   1
## 8333   1
## 8334   1
## 8335   1
## 8336   1
## 8337   1
## 8338   1
## 8339   1
## 8340   1
## 8341   1
## 8342   1
## 8343   1
## 8344   1
## 8345   1
## 8346   1
## 8347   1
## 8348   1
## 8349   1
## 8350   1
## 8351   1
## 8352   1
## 8353   1
## 8354   1
## 8355   1
## 8356   1
## 8357   1
## 8358   1
## 8359   1
## 8360   1
## 8361   1
## 8362   1
## 8363   1
## 8364   1
## 8365   1
## 8366   1
## 8367   1
## 8368   1
## 8369   1
## 8370   1
## 8371   1
## 8372   1
## 8373   1
## 8374   1
## 8375   1
## 8376   1
## 8377   1
## 8378   1
## 8379   1
## 8380   1
## 8381   1
## 8382   1
## 8383   1
## 8384   1
## 8385   1
## 8386   1
## 8387   1
## 8388   1
## 8389   1
## 8390   1
## 8391   1
## 8392   1
## 8393   1
## 8394   1
## 8395   1
## 8396   1
## 8397   1
## 8398   1
## 8399   1
## 8400   1
## 8401   1
## 8402   1
## 8403   1
## 8404   1
## 8405   1
## 8406   1
## 8407   1
## 8408   1
## 8409   1
## 8410   1
## 8411   1
## 8412   1
## 8413   1
## 8414   1
## 8415   1
## 8416   1
## 8417   1
## 8418   1
## 8419   1
## 8420   1
## 8421   1
## 8422   1
## 8423   1
## 8424   1
## 8425   1
## 8426   1
## 8427   1
## 8428   1
## 8429   1
## 8430   1
## 8431   1
## 8432   1
## 8433   1
## 8434   1
## 8435   1
## 8436   1
## 8437   1
## 8438   1
## 8439   1
## 8440   1
## 8441   1
## 8442   1
## 8443   1
## 8444   1
## 8445   1
## 8446   1
## 8447   1
## 8448   1
## 8449   1
## 8450   1
## 8451   1
## 8452   1
## 8453   1
## 8454   1
## 8455   1
## 8456   1
## 8457   1
## 8458   1
## 8459   1
## 8460   1
## 8461   1
## 8462   1
## 8463   1
## 8464   1
## 8465   1
## 8466   1
## 8467   1
## 8468   1
## 8469   1
## 8470   1
## 8471   1
## 8472   1
## 8473   1
## 8474   1
## 8475   1
## 8476   1
## 8477   1
## 8478   1
## 8479   1
## 8480   1
## 8481   1
## 8482   1
## 8483   1
## 8484   1
## 8485   1
## 8486   1
## 8487   1
## 8488   1
## 8489   1
## 8490   1
## 8491   1
## 8492   1
## 8493   1
## 8494   1
## 8495   1
## 8496   1
## 8497   1
## 8498   1
## 8499   1
## 8500   1
## 8501   1
## 8502   1
## 8503   1
## 8504   1
## 8505   1
## 8506   1
## 8507   1
## 8508   1
## 8509   1
## 8510   1
## 8511   1
## 8512   1
## 8513   1
## 8514   1
## 8515   1
## 8516   1
## 8517   1
## 8518   1
## 8519   1
## 8520   1
## 8521   1
## 8522   1
## 8523   1
## 8524   1
## 8525   1
## 8526   1
## 8527   1
## 8528   1
## 8529   1
## 8530   1
## 8531   1
## 8532   1
## 8533   1
## 8534   1
## 8535   1
## 8536   1
## 8537   1
## 8538   1
## 8539   1
## 8540   1
## 8541   1
## 8542   1
## 8543   1
## 8544   1
## 8545   1
## 8546   1
## 8547   1
## 8548   1
## 8549   1
## 8550   1
## 8551   1
## 8552   1
## 8553   1
## 8554   1
## 8555   1
## 8556   1
## 8557   1
## 8558   1
## 8559   1
## 8560   1
## 8561   1
## 8562   1
## 8563   1
## 8564   1
## 8565   1
## 8566   1
## 8567   1
## 8568   1
## 8569   1
## 8570   1
## 8571   1
## 8572   1
## 8573   1
## 8574   1
## 8575   1
## 8576   1
## 8577   1
## 8578   1
## 8579   1
## 8580   1
## 8581   1
## 8582   1
## 8583   1
## 8584   1
## 8585   1
## 8586   1
## 8587   1
## 8588   1
## 8589   1
## 8590   1
## 8591   1
## 8592   1
## 8593   1
## 8594   1
## 8595   1
## 8596   1
## 8597   1
## 8598   1
## 8599   1
## 8600   1
## 8601   1
## 8602   1
## 8603   1
## 8604   1
## 8605   1
## 8606   1
## 8607   1
## 8608   1
## 8609   1
## 8610   1
## 8611   1
## 8612   1
## 8613   1
## 8614   1
## 8615   1
## 8616   1
## 8617   1
## 8618   1
## 8619   1
## 8620   1
## 8621   1
## 8622   1
## 8623   1
## 8624   1
## 8625   1
## 8626   1
## 8627   1
## 8628   1
## 8629   1
## 8630   1
## 8631   1
## 8632   1
## 8633   1
## 8634   1
## 8635   1
## 8636   1
## 8637   1
## 8638   1
## 8639   1
## 8640   1
## 8641   1
## 8642   1
## 8643   1
## 8644   1
## 8645   1
## 8646   1
## 8647   1
## 8648   1
## 8649   1
## 8650   1
## 8651   1
## 8652   1
## 8653   1
## 8654   1
## 8655   1
## 8656   1
## 8657   1
## 8658   1
## 8659   1
## 8660   1
## 8661   1
## 8662   1
## 8663   1
## 8664   1
## 8665   1
## 8666   1
## 8667   1
## 8668   1
## 8669   1
## 8670   1
## 8671   1
## 8672   1
## 8673   1
## 8674   1
## 8675   1
## 8676   1
## 8677   1
## 8678   1
## 8679   1
## 8680   1
## 8681   1
## 8682   1
## 8683   1
## 8684   1
## 8685   1
## 8686   1
## 8687   1
## 8688   1
## 8689   1
## 8690   1
## 8691   1
## 8692   1
## 8693   1
## 8694   1
## 8695   1
## 8696   1
## 8697   1
## 8698   1
## 8699   1
## 8700   1
## 8701   1
## 8702   1
## 8703   1
## 8704   1
## 8705   1
## 8706   1
## 8707   1
## 8708   1
## 8709   1
## 8710   1
## 8711   1
## 8712   1
## 8713   1
## 8714   1
## 8715   1
## 8716   1
## 8717   1
## 8718   1
## 8719   1
## 8720   1
## 8721   1
## 8722   1
## 8723   1
## 8724   1
## 8725   1
## 8726   1
## 8727   1
## 8728   1
## 8729   1
## 8730   1
## 8731   1
## 8732   1
## 8733   1
## 8734   1
## 8735   1
## 8736   1
## 8737   1
## 8738   1
## 8739   1
## 8740   1
## 8741   1
## 8742   1
## 8743   1
## 8744   1
## 8745   1
## 8746   1
## 8747   1
## 8748   1
## 8749   1
## 8750   1
## 8751   1
## 8752   1
## 8753   1
## 8754   1
## 8755   1
## 8756   1
## 8757   1
## 8758   1
## 8759   1
## 8760   1
## 8761   1
## 8762   1
## 8763   1
## 8764   1
## 8765   1
## 8766   1
## 8767   1
## 8768   1
## 8769   1
## 8770   1
## 8771   1
## 8772   1
## 8773   1
## 8774   1
## 8775   1
## 8776   1
## 8777   1
## 8778   1
## 8779   1
## 8780   1
## 8781   1
## 8782   1
## 8783   1
## 8784   1
## 8785   1
## 8786   1
## 8787   1
## 8788   1
## 8789   1
## 8790   1
## 8791   1
## 8792   1
## 8793   1
## 8794   1
## 8795   1
## 8796   1
## 8797   1
## 8798   1
## 8799   1
## 8800   1
## 8801   1
## 8802   1
## 8803   1
## 8804   1
## 8805   1
## 8806   1
## 8807   1
## 8808   1
## 8809   1
## 8810   1
## 8811   1
## 8812   1
## 8813   1
## 8814   1
## 8815   1
## 8816   1
## 8817   1
## 8818   1
## 8819   1
## 8820   1
## 8821   1
## 8822   1
## 8823   1
## 8824   1
## 8825   1
## 8826   1
## 8827   1
## 8828   1
## 8829   1
## 8830   1
## 8831   1
## 8832   1
## 8833   1
## 8834   1
## 8835   1
## 8836   1
## 8837   1
## 8838   1
## 8839   1
## 8840   1
## 8841   1
## 8842   1
## 8843   1
## 8844   1
## 8845   1
## 8846   1
## 8847   1
## 8848   1
## 8849   1
## 8850   1
## 8851   1
## 8852   1
## 8853   1
## 8854   1
## 8855   1
## 8856   1
## 8857   1
## 8858   1
## 8859   1
## 8860   1
## 8861   1
## 8862   1
## 8863   1
## 8864   1
## 8865   1
## 8866   1
## 8867   1
## 8868   1
## 8869   1
## 8870   1
## 8871   1
## 8872   1
## 8873   1
## 8874   1
## 8875   1
## 8876   1
## 8877   1
## 8878   1
## 8879   1
## 8880   1
## 8881   1
## 8882   1
## 8883   1
## 8884   1
## 8885   1
## 8886   1
## 8887   1
## 8888   1
## 8889   1
## 8890   1
## 8891   1
## 8892   1
## 8893   1
## 8894   1
## 8895   1
## 8896   1
## 8897   1
## 8898   1
## 8899   1
## 8900   1
## 8901   1
## 8902   1
## 8903   1
## 8904   1
## 8905   1
## 8906   1
## 8907   1
## 8908   1
## 8909   1
## 8910   1
## 8911   1
## 8912   1
## 8913   1
## 8914   1
## 8915   1
## 8916   1
## 8917   1
## 8918   1
## 8919   1
## 8920   1
## 8921   1
## 8922   1
## 8923   1
## 8924   1
## 8925   1
## 8926   1
## 8927   1
## 8928   1
## 8929   1
## 8930   1
## 8931   1
## 8932   1
## 8933   1
## 8934   1
## 8935   1
## 8936   1
## 8937   1
## 8938   1
## 8939   1
## 8940   1
## 8941   1
## 8942   1
## 8943   1
## 8944   1
## 8945   1
## 8946   1
## 8947   1
## 8948   1
## 8949   1
## 8950   1
## 8951   1
## 8952   1
## 8953   1
## 8954   1
## 8955   1
## 8956   1
## 8957   1
## 8958   1
## 8959   1
## 8960   1
## 8961   1
## 8962   1
## 8963   1
## 8964   1
## 8965   1
## 8966   1
## 8967   1
## 8968   1
## 8969   1
## 8970   1
## 8971   1
## 8972   1
## 8973   1
## 8974   1
## 8975   1
## 8976   1
## 8977   1
## 8978   1
## 8979   1
## 8980   1
## 8981   1
## 8982   1
## 8983   1
## 8984   1
## 8985   1
## 8986   1
## 8987   1
## 8988   1
## 8989   1
## 8990   1
## 8991   1
## 8992   1
## 8993   1
## 8994   1
## 8995   1
## 8996   1
## 8997   1
## 8998   1
## 8999   1
## 9000   1
## 9001   1
## 9002   1
## 9003   1
## 9004   1
## 9005   1
## 9006   1
## 9007   1
## 9008   1
## 9009   1
## 9010   1
## 9011   1
## 9012   1
## 9013   1
## 9014   1
## 9015   1
## 9016   1
## 9017   1
## 9018   1
## 9019   1
## 9020   1
## 9021   1
## 9022   1
## 9023   1
## 9024   1
## 9025   1
## 9026   1
## 9027   1
## 9028   1
## 9029   1
## 9030   1
## 9031   1
## 9032   1
## 9033   1
## 9034   1
## 9035   1
## 9036   1
## 9037   1
## 9038   1
## 9039   1
## 9040   1
## 9041   1
## 9042   1
## 9043   1
## 9044   1
## 9045   1
## 9046   1
## 9047   1
## 9048   1
## 9049   1
## 9050   1
## 9051   1
## 9052   1
## 9053   1
## 9054   1
## 9055   1
## 9056   1
## 9057   1
## 9058   1
## 9059   1
## 9060   1
## 9061   1
## 9062   1
## 9063   1
## 9064   1
## 9065   1
## 9066   1
## 9067   1
## 9068   1
## 9069   1
## 9070   1
## 9071   1
## 9072   1
## 9073   1
## 9074   1
## 9075   1
## 9076   1
## 9077   1
## 9078   1
## 9079   1
## 9080   1
## 9081   1
## 9082   1
## 9083   1
## 9084   1
## 9085   1
## 9086   1
## 9087   1
## 9088   1
## 9089   1
## 9090   1
## 9091   1
## 9092   1
## 9093   1
## 9094   1
## 9095   1
## 9096   1
## 9097   1
## 9098   1
## 9099   1
## 9100   1
## 9101   1
## 9102   1
## 9103   1
## 9104   1
## 9105   1
## 9106   1
## 9107   1
## 9108   1
## 9109   1
## 9110   1
## 9111   1
## 9112   1
## 9113   1
## 9114   1
## 9115   1
## 9116   1
## 9117   1
## 9118   1
## 9119   1
## 9120   1
## 9121   1
## 9122   1
## 9123   1
## 9124   1
## 9125   1
## 9126   1
## 9127   1
## 9128   1
## 9129   1
## 9130   1
## 9131   1
## 9132   1
## 9133   1
## 9134   1
## 9135   1
## 9136   1
## 9137   1
## 9138   1
## 9139   1
## 9140   1
## 9141   1
## 9142   1
## 9143   1
## 9144   1
## 9145   1
## 9146   1
## 9147   1
## 9148   1
## 9149   1
## 9150   1
## 9151   1
## 9152   1
## 9153   1
## 9154   1
## 9155   1
## 9156   1
## 9157   1
## 9158   1
## 9159   1
## 9160   1
## 9161   1
## 9162   1
## 9163   1
## 9164   1
## 9165   1
## 9166   1
## 9167   1
## 9168   1
## 9169   1
## 9170   1
## 9171   1
## 9172   1
## 9173   1
## 9174   1
## 9175   1
## 9176   1
## 9177   1
## 9178   1
## 9179   1
## 9180   1
## 9181   1
## 9182   1
## 9183   1
## 9184   1
## 9185   1
## 9186   1
## 9187   1
## 9188   1
## 9189   1
## 9190   1
## 9191   1
## 9192   1
## 9193   1
## 9194   1
## 9195   1
## 9196   1
## 9197   1
## 9198   1
## 9199   1
## 9200   1
## 9201   1
## 9202   1
## 9203   1
## 9204   1
## 9205   1
## 9206   1
## 9207   1
## 9208   1
## 9209   1
## 9210   1
## 9211   1
## 9212   1
## 9213   1
## 9214   1
## 9215   1
## 9216   1
## 9217   1
## 9218   1
## 9219   1
## 9220   1
## 9221   1
## 9222   1
## 9223   1
## 9224   1
## 9225   1
## 9226   1
## 9227   1
## 9228   1
## 9229   1
## 9230   1
## 9231   1
## 9232   1
## 9233   1
## 9234   1
## 9235   1
## 9236   1
## 9237   1
## 9238   1
## 9239   1
## 9240   1
## 9241   1
## 9242   1
## 9243   1
## 9244   1
## 9245   1
## 9246   1
## 9247   1
## 9248   1
## 9249   1
## 9250   1
## 9251   1
## 9252   1
## 9253   1
## 9254   1
## 9255   1
## 9256   1
## 9257   1
## 9258   1
## 9259   1
## 9260   1
## 9261   1
## 9262   1
## 9263   1
## 9264   1
## 9265   1
## 9266   1
## 9267   1
## 9268   1
## 9269   1
## 9270   1
## 9271   1
## 9272   1
## 9273   1
## 9274   1
## 9275   1
## 9276   1
## 9277   1
## 9278   1
## 9279   1
## 9280   1
## 9281   1
## 9282   1
## 9283   1
## 9284   1
## 9285   1
## 9286   1
## 9287   1
## 9288   1
## 9289   1
## 9290   1
## 9291   1
## 9292   1
## 9293   1
## 9294   1
## 9295   1
## 9296   1
## 9297   1
## 9298   1
## 9299   1
## 9300   1
## 9301   1
## 9302   1
## 9303   1
## 9304   1
## 9305   1
## 9306   1
## 9307   1
## 9308   1
## 9309   1
## 9310   1
## 9311   1
## 9312   1
## 9313   1
## 9314   1
## 9315   1
## 9316   1
## 9317   1
## 9318   1
## 9319   1
## 9320   1
## 9321   1
## 9322   1
## 9323   1
## 9324   1
## 9325   1
## 9326   1
## 9327   1
## 9328   1
## 9329   1
## 9330   1
## 9331   1
## 9332   1
## 9333   1
## 9334   1
## 9335   1
## 9336   1
## 9337   1
## 9338   1
## 9339   1
## 9340   1
## 9341   1
## 9342   1
## 9343   1
## 9344   1
## 9345   1
## 9346   1
## 9347   1
## 9348   1
## 9349   1
## 9350   1
## 9351   1
## 9352   1
## 9353   1
## 9354   1
## 9355   1
## 9356   1
## 9357   1
## 9358   1
## 9359   1
## 9360   1
## 9361   1
## 9362   1
## 9363   1
## 9364   1
## 9365   1
## 9366   1
## 9367   1
## 9368   1
## 9369   1
## 9370   1
## 9371   1
## 9372   1
## 9373   1
## 9374   1
## 9375   1
## 9376   1
## 9377   1
## 9378   1
## 9379   1
## 9380   1
## 9381   1
## 9382   1
## 9383   1
## 9384   1
## 9385   1
## 9386   1
## 9387   1
## 9388   1
## 9389   1
## 9390   1
## 9391   1
## 9392   1
## 9393   1
## 9394   1
## 9395   1
## 9396   1
## 9397   1
## 9398   1
## 9399   1
## 9400   1
## 9401   1
## 9402   1
## 9403   1
## 9404   1
## 9405   1
## 9406   1
## 9407   1
## 9408   1
## 9409   1
## 9410   1
## 9411   1
## 9412   1
## 9413   1
## 9414   1
## 9415   1
## 9416   1
## 9417   1
## 9418   1
## 9419   1
## 9420   1
## 9421   1
## 9422   1
## 9423   1
## 9424   1
## 9425   1
## 9426   1
## 9427   1
## 9428   1
## 9429   1
## 9430   1
## 9431   1
## 9432   1
## 9433   1
## 9434   1
## 9435   1
## 9436   1
## 9437   1
## 9438   1
## 9439   1
## 9440   1
## 9441   1
## 9442   1
## 9443   1
## 9444   1
## 9445   1
## 9446   1
## 9447   1
## 9448   1
## 9449   1
## 9450   1
## 9451   1
## 9452   1
## 9453   1
## 9454   1
## 9455   1
## 9456   1
## 9457   1
## 9458   1
## 9459   1
## 9460   1
## 9461   1
## 9462   1
## 9463   1
## 9464   1
## 9465   1
## 9466   1
## 9467   1
## 9468   1
## 9469   1
## 9470   1
## 9471   1
## 9472   1
## 9473   1
## 9474   1
## 9475   1
## 9476   1
## 9477   1
## 9478   1
## 9479   1
## 9480   1
## 9481   1
## 9482   1
## 9483   1
## 9484   1
## 9485   1
## 9486   1
## 9487   1
## 9488   1
## 9489   1
## 9490   1
## 9491   1
## 9492   1
## 9493   1
## 9494   1
## 9495   1
## 9496   1
## 9497   1
## 9498   1
## 9499   1
## 9500   1
## 9501   1
## 9502   1
## 9503   1
## 9504   1
## 9505   1
## 9506   1
## 9507   1
## 9508   1
## 9509   1
## 9510   1
## 9511   1
## 9512   1
## 9513   1
## 9514   1
## 9515   1
## 9516   1
## 9517   1
## 9518   1
## 9519   1
## 9520   1
## 9521   1
## 9522   1
## 9523   1
## 9524   1
## 9525   1
## 9526   1
## 9527   1
## 9528   1
## 9529   1
## 9530   1
## 9531   1
## 9532   1
## 9533   1
## 9534   1
## 9535   1
## 9536   1
## 9537   1
## 9538   1
## 9539   1
## 9540   1
## 9541   1
## 9542   1
## 9543   1
## 9544   1
## 9545   1
## 9546   1
## 9547   1
## 9548   1
## 9549   1
## 9550   1
## 9551   1
## 9552   1
## 9553   1
## 9554   1
## 9555   1
## 9556   1
## 9557   1
## 9558   1
## 9559   1
## 9560   1
## 9561   1
## 9562   1
## 9563   1
## 9564   1
## 9565   1
## 9566   1
## 9567   1
## 9568   1
## 9569   1
## 9570   1
## 9571   1
## 9572   1
## 9573   1
## 9574   1
## 9575   1
## 9576   1
## 9577   1
## 9578   1
## 9579   1
## 9580   1
## 9581   1
## 9582   1
## 9583   1
## 9584   1
## 9585   1
## 9586   1
## 9587   1
## 9588   1
## 9589   1
## 9590   1
## 9591   1
## 9592   1
## 9593   1
## 9594   1
## 9595   1
## 9596   1
## 9597   1
## 9598   1
## 9599   1
## 9600   1
## 9601   1
## 9602   1
## 9603   1
## 9604   1
## 9605   1
## 9606   1
## 9607   1
## 9608   1
## 9609   1
## 9610   1
## 9611   1
## 9612   1
## 9613   1
## 9614   1
## 9615   1
## 9616   1
## 9617   1
## 9618   1
## 9619   1
## 9620   1
## 9621   1
## 9622   1
## 9623   1
## 9624   1
## 9625   1
## 9626   1
## 9627   1
## 9628   1
## 9629   1
## 9630   1
## 9631   1
## 9632   1
## 9633   1
## 9634   1
## 9635   1
## 9636   1
## 9637   1
## 9638   1
## 9639   1
## 9640   1
## 9641   1
## 9642   1
## 9643   1
## 9644   1
## 9645   1
## 9646   1
## 9647   1
## 9648   1
## 9649   1
## 9650   1
## 9651   1
## 9652   1
## 9653   1
## 9654   1
## 9655   1
## 9656   1
## 9657   1
## 9658   1
## 9659   1
## 9660   1
## 9661   1
## 9662   1
## 9663   1
## 9664   1
## 9665   1
## 9666   1
## 9667   1
## 9668   1
## 9669   1
## 9670   1
## 9671   1
## 9672   1
## 9673   1
## 9674   1
## 9675   1
## 9676   1
## 9677   1
## 9678   1
## 9679   1
## 9680   1
## 9681   1
## 9682   1
## 9683   1
## 9684   1
## 9685   1
## 9686   1
## 9687   1
## 9688   1
## 9689   1
## 9690   1
## 9691   1
## 9692   1
## 9693   1
## 9694   1
## 9695   1
## 9696   1
## 9697   1
## 9698   1
## 9699   1
## 9700   1
## 9701   1
## 9702   1
## 9703   1
## 9704   1
## 9705   1
## 9706   1
## 9707   1
## 9708   1
## 9709   1
## 9710   1
## 9711   1
## 9712   1
## 9713   1
## 9714   1
## 9715   1
## 9716   1
## 9717   1
## 9718   1
## 9719   1
## 9720   1
## 9721   1
## 9722   1
## 9723   1
## 9724   1
## 9725   1
## 9726   1
## 9727   1
## 9728   1
## 9729   1
## 9730   1
## 9731   1
## 9732   1
## 9733   1
## 9734   1
## 9735   1
## 9736   1
## 9737   1
## 9738   1
## 9739   1
## 9740   1
## 9741   1
## 9742   1
## 9743   1
## 9744   1
## 9745   1
## 9746   1
## 9747   1
## 9748   1
## 9749   1
## 9750   1
## 9751   1
## 9752   1
## 9753   1
## 9754   1
## 9755   1
## 9756   1
## 9757   1
## 9758   1
## 9759   1
## 9760   1
## 9761   1
## 9762   1
## 9763   1
## 9764   1
## 9765   1
## 9766   1
## 9767   1
## 9768   1
## 9769   1
## 9770   1
## 9771   1
## 9772   1
## 9773   1
## 9774   1
## 9775   1
## 9776   1
## 9777   1
## 9778   1
## 9779   1
## 9780   1
## 9781   1
## 9782   1
## 9783   1
## 9784   1
## 9785   1
## 9786   1
## 9787   1
## 9788   1
## 9789   1
## 9790   1
## 9791   1
## 9792   1
## 9793   1
## 9794   1
## 9795   1
## 9796   1
## 9797   1
## 9798   1
## 9799   1
## 9800   1
## 9801   1
## 9802   1
## 9803   1
## 9804   1
## 9805   1
## 9806   1
## 9807   1
## 9808   1
## 9809   1
## 9810   1
## 9811   1
## 9812   1
## 9813   1
## 9814   1
## 9815   1
## 9816   1
## 9817   1
## 9818   1
## 9819   1
## 9820   1
## 9821   1
## 9822   1
## 9823   1
## 9824   1
## 9825   1
## 9826   1
## 9827   1
## 9828   1
## 9829   1
## 9830   1
## 9831   1
## 9832   1
## 9833   1
## 9834   1
## 9835   1
## 9836   1
## 9837   1
## 9838   1
## 9839   1
## 9840   1
## 9841   1
## 9842   1
## 9843   1
## 9844   1
## 9845   1
## 9846   1
## 9847   1
## 9848   1
## 9849   1
## 9850   1
## 9851   1
## 9852   1
## 9853   1
## 9854   1
## 9855   1
## 9856   1
## 9857   1
## 9858   1
## 9859   1
## 9860   1
## 9861   1
## 9862   1
## 9863   1
## 9864   1
## 9865   1
## 9866   1
## 9867   1
## 9868   1
## 9869   1
## 9870   1
## 9871   1
## 9872   1
## 9873   1
## 9874   1
## 9875   1
## 9876   1
## 9877   1
## 9878   1
## 9879   1
## 9880   1
## 9881   1
## 9882   1
## 9883   1
## 9884   1
## 9885   1
## 9886   1
## 9887   1
## 9888   1
## 9889   1
## 9890   1
## 9891   1
## 9892   1
## 9893   1
## 9894   1
## 9895   1
## 9896   1
## 9897   1
## 9898   1
## 9899   1
## 9900   1
## 9901   1
## 9902   1
## 9903   1
## 9904   1
## 9905   1
## 9906   1
## 9907   1
## 9908   1
## 9909   1
## 9910   1
## 9911   1
## 9912   1
## 9913   1
## 9914   1
## 9915   1
## 9916   1
## 9917   1
## 9918   1
## 9919   1
## 9920   1
## 9921   1
## 9922   1
## 9923   1
## 9924   1
## 9925   1
## 9926   1
## 9927   1
## 9928   1
## 9929   1
## 9930   1
## 9931   1
## 9932   1
## 9933   1
## 9934   1
## 9935   1
## 9936   1
## 9937   1
## 9938   1
## 9939   1
## 9940   1
## 9941   1
## 9942   1
## 9943   1
## 9944   1
## 9945   1
## 9946   1
## 9947   1
## 9948   1
## 9949   1
## 9950   1
## 9951   1
## 9952   1
## 9953   1
## 9954   1
## 9955   1
## 9956   1
## 9957   1
## 9958   1
## 9959   1
## 9960   1
## 9961   1
## 9962   1
## 9963   1
## 9964   1
## 9965   1
## 9966   1
## 9967   1
## 9968   1
## 9969   1
## 9970   1
## 9971   1
## 9972   1
## 9973   1
## 9974   1
## 9975   1
## 9976   1
## 9977   1
## 9978   1
## 9979   1
## 9980   1
## 9981   1
## 9982   1
## 9983   1
## 9984   1
## 9985   1
## 9986   1
## 9987   1
## 9988   1
## 9989   1
## 9990   1
## 9991   1
## 9992   1
## 9993   1
## 9994   1
## 9995   1
## 9996   1
## 9997   1
## 9998   1
## 9999   1
## 10000  1
## 10001  1
## 10002  1
## 10003  1
## 10004  1
## 10005  1
## 10006  1
## 10007  1
## 10008  1
## 10009  1
## 10010  1
## 10011  1
## 10012  1
## 10013  1
## 10014  1
## 10015  1
## 10016  1
## 10017  1
## 10018  1
## 10019  1
## 10020  1
## 10021  1
## 10022  1
## 10023  1
## 10024  1
## 10025  1
## 10026  1
## 10027  1
## 10028  1
## 10029  1
## 10030  1
## 10031  1
## 10032  1
## 10033  1
## 10034  1
## 10035  1
## 10036  1
## 10037  1
## 10038  1
## 10039  1
## 10040  1
## 10041  1
## 10042  1
## 10043  1
## 10044  1
## 10045  1
## 10046  1
## 10047  1
## 10048  1
## 10049  1
## 10050  1
## 10051  1
## 10052  1
## 10053  1
## 10054  1
## 10055  1
## 10056  1
## 10057  1
## 10058  1
## 10059  1
## 10060  1
## 10061  1
## 10062  1
## 10063  1
## 10064  1
## 10065  1
## 10066  1
## 10067  1
## 10068  1
## 10069  1
## 10070  1
## 10071  1
## 10072  1
## 10073  1
## 10074  1
## 10075  1
## 10076  1
## 10077  1
## 10078  1
## 10079  1
## 10080  1
## 10081  1
## 10082  1
## 10083  1
## 10084  1
## 10085  1
## 10086  1
## 10087  1
## 10088  1
## 10089  1
## 10090  1
## 10091  1
## 10092  1
## 10093  1
## 10094  1
## 10095  1
## 10096  1
## 10097  1
## 10098  1
## 10099  1
## 10100  1
## 10101  1
## 10102  1
## 10103  1
## 10104  1
## 10105  1
## 10106  1
## 10107  1
## 10108  1
## 10109  1
## 10110  1
## 10111  1
## 10112  1
## 10113  1
## 10114  1
## 10115  1
## 10116  1
## 10117  1
## 10118  1
## 10119  1
## 10120  1
## 10121  1
## 10122  1
## 10123  1
## 10124  1
## 10125  1
## 10126  1
## 10127  1
## 10128  1
## 10129  1
## 10130  1
## 10131  1
## 10132  1
## 10133  1
## 10134  1
## 10135  1
## 10136  1
## 10137  1
## 10138  1
## 10139  1
## 10140  1
## 10141  1
## 10142  1
## 10143  1
## 10144  1
## 10145  1
## 10146  1
## 10147  1
## 10148  1
## 10149  1
## 10150  1
## 10151  1
## 10152  1
## 10153  1
## 10154  1
## 10155  1
## 10156  1
## 10157  1
## 10158  1
## 10159  1
## 10160  1
## 10161  1
## 10162  1
## 10163  1
## 10164  1
## 10165  1
## 10166  1
## 10167  1
## 10168  1
## 10169  1
## 10170  1
## 10171  1
## 10172  1
## 10173  1
## 10174  1
## 10175  1
## 10176  1
## 10177  1
## 10178  1
## 10179  1
## 10180  1
## 10181  1
## 10182  1
## 10183  1
## 10184  1
## 10185  1
## 10186  1
## 10187  1
## 10188  1
## 10189  1
## 10190  1
## 10191  1
## 10192  1
## 10193  1
## 10194  1
## 10195  1
## 10196  1
## 10197  1
## 10198  1
## 10199  1
## 10200  1
## 10201  1
## 10202  1
## 10203  1
## 10204  1
## 10205  1
## 10206  1
## 10207  1
## 10208  1
## 10209  1
## 10210  1
## 10211  1
## 10212  1
## 10213  1
## 10214  1
## 10215  1
## 10216  1
## 10217  1
## 10218  1
## 10219  1
## 10220  1
## 10221  1
## 10222  1
## 10223  1
## 10224  1
## 10225  1
## 10226  1
## 10227  1
## 10228  1
## 10229  1
## 10230  1
## 10231  1
## 10232  1
## 10233  1
## 10234  1
## 10235  1
## 10236  1
## 10237  1
## 10238  1
## 10239  1
## 10240  1
## 10241  1
## 10242  1
## 10243  1
## 10244  1
## 10245  1
## 10246  1
## 10247  1
## 10248  1
## 10249  1
## 10250  1
## 10251  1
## 10252  1
## 10253  1
## 10254  1
## 10255  1
## 10256  1
## 10257  1
## 10258  1
## 10259  1
## 10260  1
## 10261  1
## 10262  1
## 10263  1
## 10264  1
## 10265  1
## 10266  1
## 10267  1
## 10268  1
## 10269  1
## 10270  1
## 10271  1
## 10272  1
## 10273  1
## 10274  1
## 10275  1
## 10276  1
## 10277  1
## 10278  1
## 10279  1
## 10280  1
## 10281  1
## 10282  1
## 10283  1
## 10284  1
## 10285  1
## 10286  1
## 10287  1
## 10288  1
## 10289  1
## 10290  1
## 10291  1
## 10292  1
## 10293  1
## 10294  1
## 10295  1
## 10296  1
## 10297  1
## 10298  1
## 10299  1
## 10300  1
## 10301  1
## 10302  1
## 10303  1
## 10304  1
## 10305  1
## 10306  1
## 10307  1
## 10308  1
## 10309  1
## 10310  1
## 10311  1
## 10312  1
## 10313  1
## 10314  1
## 10315  1
## 10316  1
## 10317  1
## 10318  1
## 10319  1
## 10320  1
## 10321  1
## 10322  1
## 10323  1
## 10324  1
## 10325  1
## 10326  1
## 10327  1
## 10328  1
## 10329  1
## 10330  1
## 10331  1
## 10332  1
## 10333  1
## 10334  1
## 10335  1
## 10336  1
## 10337  1
## 10338  1
## 10339  1
## 10340  1
## 10341  1
## 10342  1
## 10343  1
## 10344  1
## 10345  1
## 10346  1
## 10347  1
## 10348  1
## 10349  1
## 10350  1
## 10351  1
## 10352  1
## 10353  1
## 10354  1
## 10355  1
## 10356  1
## 10357  1
## 10358  1
## 10359  1
## 10360  1
## 10361  1
## 10362  1
## 10363  1
## 10364  1
## 10365  1
## 10366  1
## 10367  1
## 10368  1
## 10369  1
## 10370  1
## 10371  1
## 10372  1
## 10373  1
## 10374  1
## 10375  1
## 10376  1
## 10377  1
## 10378  1
## 10379  1
## 10380  1
## 10381  1
## 10382  1
## 10383  1
## 10384  1
## 10385  1
## 10386  1
## 10387  1
## 10388  1
## 10389  1
## 10390  1
## 10391  1
## 10392  1
## 10393  1
## 10394  1
## 10395  1
## 10396  1
## 10397  1
## 10398  1
## 10399  1
## 10400  1
## 10401  1
## 10402  1
## 10403  1
## 10404  1
## 10405  1
## 10406  1
## 10407  1
## 10408  1
## 10409  1
## 10410  1
## 10411  1
## 10412  1
## 10413  1
## 10414  1
## 10415  1
## 10416  1
## 10417  1
## 10418  1
## 10419  1
## 10420  1
## 10421  1
## 10422  1
## 10423  1
## 10424  1
## 10425  1
## 10426  1
## 10427  1
## 10428  1
## 10429  1
## 10430  1
## 10431  1
## 10432  1
## 10433  1
## 10434  1
## 10435  1
## 10436  1
## 10437  1
## 10438  1
## 10439  1
## 10440  1
## 10441  1
## 10442  1
## 10443  1
## 10444  1
## 10445  1
## 10446  1
## 10447  1
## 10448  1
## 10449  1
## 10450  1
## 10451  1
## 10452  1
## 10453  1
## 10454  1
## 10455  1
## 10456  1
## 10457  1
## 10458  1
## 10459  1
## 10460  1
## 10461  1
## 10462  1
## 10463  1
## 10464  1
## 10465  1
## 10466  1
## 10467  1
## 10468  1
## 10469  1
## 10470  1
## 10471  1
## 10472  1
## 10473  1
## 10474  1
## 10475  1
## 10476  1
## 10477  1
## 10478  1
## 10479  1
## 10480  1
## 10481  1
## 10482  1
## 10483  1
## 10484  1
## 10485  1
## 10486  1
## 10487  1
## 10488  1
## 10489  1
## 10490  1
## 10491  1
## 10492  1
## 10493  1
## 10494  1
## 10495  1
## 10496  1
## 10497  1
## 10498  1
## 10499  1
## 10500  1
## 10501  1
## 10502  1
## 10503  1
## 10504  1
## 10505  1
## 10506  1
## 10507  1
## 10508  1
## 10509  1
## 10510  1
## 10511  1
## 10512  1
## 10513  1
## 10514  1
## 10515  1
## 10516  1
## 10517  1
## 10518  1
## 10519  1
## 10520  1
## 10521  1
## 10522  1
## 10523  1
## 10524  1
## 10525  1
## 10526  1
## 10527  1
## 10528  1
## 10529  1
## 10530  1
## 10531  1
## 10532  1
## 10533  1
## 10534  1
## 10535  1
## 10536  1
## 10537  1
## 10538  1
## 10539  1
## 10540  1
## 10541  1
## 10542  1
## 10543  1
## 10544  1
## 10545  1
## 10546  1
## 10547  1
## 10548  1
## 10549  1
## 10550  1
## 10551  1
## 10552  1
## 10553  1
## 10554  1
## 10555  1
## 10556  1
## 10557  1
## 10558  1
## 10559  1
## 10560  1
## 10561  1
## 10562  1
## 10563  1
## 10564  1
## 10565  1
## 10566  1
## 10567  1
## 10568  1
## 10569  1
## 10570  1
## 10571  1
## 10572  1
## 10573  1
## 10574  1
## 10575  1
## 10576  1
## 10577  1
## 10578  1
## 10579  1
## 10580  1
## 10581  1
## 10582  1
## 10583  1
## 10584  1
## 10585  1
## 10586  1
## 10587  1
## 10588  1
## 10589  1
## 10590  1
## 10591  1
## 10592  1
## 10593  1
## 10594  1
## 10595  1
## 10596  1
## 10597  1
## 10598  1
## 10599  1
## 10600  1
## 10601  1
## 10602  1
## 10603  1
## 10604  1
## 10605  1
## 10606  1
## 10607  1
## 10608  1
## 10609  1
## 10610  1
## 10611  1
## 10612  1
## 10613  1
## 10614  1
## 10615  1
## 10616  1
## 10617  1
## 10618  1
## 10619  1
## 10620  1
## 10621  1
## 10622  1
## 10623  1
## 10624  1
## 10625  1
## 10626  1
## 10627  1
## 10628  1
## 10629  1
## 10630  1
## 10631  1
## 10632  1
## 10633  1
## 10634  1
## 10635  1
## 10636  1
## 10637  1
## 10638  1
## 10639  1
## 10640  1
## 10641  1
## 10642  1
## 10643  1
## 10644  1
## 10645  1
## 10646  1
## 10647  1
## 10648  1
## 10649  1
## 10650  1
## 10651  1
## 10652  1
## 10653  1
## 10654  1
## 10655  1
## 10656  1
## 10657  1
## 10658  1
## 10659  1
## 10660  1
## 10661  1
## 10662  1
## 10663  1
## 10664  1
## 10665  1
## 10666  1
## 10667  1
## 10668  1
## 10669  1
## 10670  1
## 10671  1
## 10672  1
## 10673  1
## 10674  1
## 10675  1
## 10676  1
## 10677  1
## 10678  1
## 10679  1
## 10680  1
## 10681  1
## 10682  1
## 10683  1
## 10684  1
## 10685  1
## 10686  1
## 10687  1
## 10688  1
## 10689  1
## 10690  1
## 10691  1
## 10692  1
## 10693  1
## 10694  1
## 10695  1
## 10696  1
## 10697  1
## 10698  1
## 10699  1
## 10700  1
## 10701  1
## 10702  1
## 10703  1
## 10704  1
## 10705  1
## 10706  1
## 10707  1
## 10708  1
## 10709  1
## 10710  1
## 10711  1
## 10712  1
## 10713  1
## 10714  1
## 10715  1
## 10716  1
## 10717  1
## 10718  1
## 10719  1
## 10720  1
## 10721  1
## 10722  1
## 10723  1
## 10724  1
## 10725  1
## 10726  1
## 10727  1
## 10728  1
## 10729  1
## 10730  1
## 10731  1
## 10732  1
## 10733  1
## 10734  1
## 10735  1
## 10736  1
## 10737  1
## 10738  1
## 10739  1
## 10740  1
## 10741  1
## 10742  1
## 10743  1
## 10744  1
## 10745  1
## 10746  1
## 10747  1
## 10748  1
## 10749  1
## 10750  1
## 10751  1
## 10752  1
## 10753  1
## 10754  1
## 10755  1
## 10756  1
## 10757  1
## 10758  1
## 10759  1
## 10760  1
## 10761  1
## 10762  1
## 10763  1
## 10764  1
## 10765  1
## 10766  1
## 10767  1
## 10768  1
## 10769  1
## 10770  1
## 10771  1
## 10772  1
## 10773  1
## 10774  1
## 10775  1
## 10776  1
## 10777  1
## 10778  1
## 10779  1
## 10780  1
## 10781  1
## 10782  1
## 10783  1
## 10784  1
## 10785  1
## 10786  1
## 10787  1
## 10788  1
## 10789  1
## 10790  1
## 10791  1
## 10792  1
## 10793  1
## 10794  1
## 10795  1
## 10796  1
## 10797  1
## 10798  1
## 10799  1
## 10800  1
## 10801  1
## 10802  1
## 10803  1
## 10804  1
## 10805  1
## 10806  1
## 10807  1
## 10808  1
## 10809  1
## 10810  1
## 10811  1
## 10812  1
## 10813  1
## 10814  1
## 10815  1
## 10816  1
## 10817  1
## 10818  1
## 10819  1
## 10820  1
## 10821  1
## 10822  1
## 10823  1
## 10824  1
## 10825  1
## 10826  1
## 10827  1
## 10828  1
## 10829  1
## 10830  1
## 10831  1
## 10832  1
## 10833  1
## 10834  1
## 10835  1
## 10836  1
## 10837  1
## 10838  1
## 10839  1
## 10840  1
## 10841  1
## 10842  1
## 10843  1
## 10844  1
## 10845  1
## 10846  1
## 10847  1
## 10848  1
## 10849  1
## 10850  1
## 10851  1
## 10852  1
## 10853  1
## 10854  1
## 10855  1
## 10856  1
## 10857  1
## 10858  1
## 10859  1
## 10860  1
## 10861  1
## 10862  1
## 10863  1
## 10864  1
## 10865  1
## 10866  1
## 10867  1
## 10868  1
## 10869  1
## 10870  1
## 10871  1
## 10872  1
## 10873  1
## 10874  1
## 10875  1
## 10876  1
## 10877  1
## 10878  1
## 10879  1
## 10880  1
## 10881  1
## 10882  1
## 10883  1
## 10884  1
## 10885  1
## 10886  1
## 10887  1
## 10888  1
## 10889  1
## 10890  1
## 10891  1
## 10892  1
## 10893  1
## 10894  1
## 10895  1
## 10896  1
## 10897  1
## 10898  1
## 10899  1
## 10900  1
## 10901  1
## 10902  1
## 10903  1
## 10904  1
## 10905  1
## 10906  1
## 10907  1
## 10908  1
## 10909  1
## 10910  1
## 10911  1
## 10912  1
## 10913  1
## 10914  1
## 10915  1
## 10916  1
## 10917  1
## 10918  1
## 10919  1
## 10920  1
## 10921  1
## 10922  1
## 10923  1
## 10924  1
## 10925  1
## 10926  1
## 10927  1
## 10928  1
## 10929  1
## 10930  1
## 10931  1
## 10932  1
## 10933  1
## 10934  1
## 10935  1
## 10936  1
## 10937  1
## 10938  1
## 10939  1
## 10940  1
## 10941  1
## 10942  1
## 10943  1
## 10944  1
## 10945  1
## 10946  1
## 10947  1
## 10948  1
## 10949  1
## 10950  1
## 10951  1
## 10952  1
## 10953  1
## 10954  1
## 10955  1
## 10956  1
## 10957  1
## 10958  1
## 10959  1
## 10960  1
## 10961  1
## 10962  1
## 10963  1
## 10964  1
## 10965  1
## 10966  1
## 10967  1
## 10968  1
## 10969  1
## 10970  1
## 10971  1
## 10972  1
## 10973  1
## 10974  1
## 10975  1
## 10976  1
## 10977  1
## 10978  1
## 10979  1
## 10980  1
## 10981  1
## 10982  1
## 10983  1
## 10984  1
## 10985  1
## 10986  1
## 10987  1
## 10988  1
## 10989  1
## 10990  1
## 10991  1
## 10992  1
## 10993  1
## 10994  1
## 10995  1
## 10996  1
## 10997  1
## 10998  1
## 10999  1
## 11000  1
## 11001  1
## 11002  1
## 11003  1
## 11004  1
## 11005  1
## 11006  1
## 11007  1
## 11008  1
## 11009  1
## 11010  1
## 11011  1
## 11012  1
## 11013  1
## 11014  1
## 11015  1
## 11016  1
## 11017  1
## 11018  1
## 11019  1
## 11020  1
## 11021  1
## 11022  1
## 11023  1
## 11024  1
## 11025  1
## 11026  1
## 11027  1
## 11028  1
## 11029  1
## 11030  1
## 11031  1
## 11032  1
## 11033  1
## 11034  1
## 11035  1
## 11036  1
## 11037  1
## 11038  1
## 11039  1
## 11040  1
## 11041  1
## 11042  1
## 11043  1
## 11044  1
## 11045  1
## 11046  1
## 11047  1
## 11048  1
## 11049  1
## 11050  1
## 11051  1
## 11052  1
## 11053  1
## 11054  1
## 11055  1
## 11056  1
## 11057  1
## 11058  1
## 11059  1
## 11060  1
## 11061  1
## 11062  1
## 11063  1
## 11064  1
## 11065  1
## 11066  1
## 11067  1
## 11068  1
## 11069  1
## 11070  1
## 11071  1
## 11072  1
## 11073  1
## 11074  1
## 11075  1
## 11076  1
## 11077  1
## 11078  1
## 11079  1
## 11080  1
## 11081  1
## 11082  1
## 11083  1
## 11084  1
## 11085  1
## 11086  1
## 11087  1
## 11088  1
## 11089  1
## 11090  1
## 11091  1
## 11092  1
## 11093  1
## 11094  1
## 11095  1
## 11096  1
## 11097  1
## 11098  1
## 11099  1
## 11100  1
## 11101  1
## 11102  1
## 11103  1
## 11104  1
## 11105  1
## 11106  1
## 11107  1
## 11108  1
## 11109  1
## 11110  1
## 11111  1
## 11112  1
## 11113  1
## 11114  1
## 11115  1
## 11116  1
## 11117  1
## 11118  1
## 11119  1
## 11120  1
## 11121  1
## 11122  1
## 11123  1
## 11124  1
## 11125  1
## 11126  1
## 11127  1
## 11128  1
## 11129  1
## 11130  1
## 11131  1
## 11132  1
## 11133  1
## 11134  1
## 11135  1
## 11136  1
## 11137  1
## 11138  1
## 11139  1
## 11140  1
## 11141  1
## 11142  1
## 11143  1
## 11144  1
## 11145  1
## 11146  1
## 11147  1
## 11148  1
## 11149  1
## 11150  1
## 11151  1
## 11152  1
## 11153  1
## 11154  1
## 11155  1
## 11156  1
## 11157  1
## 11158  1
## 11159  1
## 11160  1
## 11161  1
## 11162  1
## 11163  1
## 11164  1
## 11165  1
## 11166  1
## 11167  1
## 11168  1
## 11169  1
## 11170  1
## 11171  1
## 11172  1
## 11173  1
## 11174  1
## 11175  1
## 11176  1
## 11177  1
## 11178  1
## 11179  1
## 11180  1
## 11181  1
## 11182  1
## 11183  1
## 11184  1
## 11185  1
## 11186  1
## 11187  1
## 11188  1
## 11189  1
## 11190  1
## 11191  1
## 11192  1
## 11193  1
## 11194  1
## 11195  1
## 11196  1
## 11197  1
## 11198  1
## 11199  1
## 11200  1
## 11201  1
## 11202  1
## 11203  1
## 11204  1
## 11205  1
## 11206  1
## 11207  1
## 11208  1
## 11209  1
## 11210  1
## 11211  1
## 11212  1
## 11213  1
## 11214  1
## 11215  1
## 11216  1
## 11217  1
## 11218  1
## 11219  1
## 11220  1
## 11221  1
## 11222  1
## 11223  1
## 11224  1
## 11225  1
## 11226  1
## 11227  1
## 11228  1
## 11229  1
## 11230  1
## 11231  1
## 11232  1
## 11233  1
## 11234  1
## 11235  1
## 11236  1
## 11237  1
## 11238  1
## 11239  1
## 11240  1
## 11241  1
## 11242  1
## 11243  1
## 11244  1
## 11245  1
## 11246  1
## 11247  1
## 11248  1
## 11249  1
## 11250  1
## 11251  1
## 11252  1
## 11253  1
## 11254  1
## 11255  1
## 11256  1
## 11257  1
## 11258  1
## 11259  1
## 11260  1
## 11261  1
## 11262  1
## 11263  1
## 11264  1
## 11265  1
## 11266  1
## 11267  1
## 11268  1
## 11269  1
## 11270  1
## 11271  1
## 11272  1
## 11273  1
## 11274  1
## 11275  1
## 11276  1
## 11277  1
## 11278  1
## 11279  1
## 11280  1
## 11281  1
## 11282  1
## 11283  1
## 11284  1
## 11285  1
## 11286  1
## 11287  1
## 11288  1
## 11289  1
## 11290  1
## 11291  1
## 11292  1
## 11293  1
## 11294  1
## 11295  1
## 11296  1
## 11297  1
## 11298  1
## 11299  1
## 11300  1
## 11301  1
## 11302  1
## 11303  1
## 11304  1
## 11305  1
## 11306  1
## 11307  1
## 11308  1
## 11309  1
## 11310  1
## 11311  1
## 11312  1
## 11313  1
## 11314  1
## 11315  1
## 11316  1
## 11317  1
## 11318  1
## 11319  1
## 11320  1
## 11321  1
## 11322  1
## 11323  1
## 11324  1
## 11325  1
## 11326  1
## 11327  1
## 11328  1
## 11329  1
## 11330  1
## 11331  1
## 11332  1
## 11333  1
## 11334  1
## 11335  1
## 11336  1
## 11337  1
## 11338  1
## 11339  1
## 11340  1
## 11341  1
## 11342  1
## 11343  1
## 11344  1
## 11345  1
## 11346  1
## 11347  1
## 11348  1
## 11349  1
## 11350  1
## 11351  1
## 11352  1
## 11353  1
## 11354  1
## 11355  1
## 11356  1
## 11357  1
## 11358  1
## 11359  1
## 11360  1
## 11361  1
## 11362  1
## 11363  1
## 11364  1
## 11365  1
## 11366  1
## 11367  1
## 11368  1
## 11369  1
## 11370  1
## 11371  1
## 11372  1
## 11373  1
## 11374  1
## 11375  1
## 11376  1
## 11377  1
## 11378  1
## 11379  1
## 11380  1
## 11381  1
## 11382  1
## 11383  1
## 11384  1
## 11385  1
## 11386  1
## 11387  1
## 11388  1
## 11389  1
## 11390  1
## 11391  1
## 11392  1
## 11393  1
## 11394  1
## 11395  1
## 11396  1
## 11397  1
## 11398  1
## 11399  1
## 11400  1
## 11401  1
## 11402  1
## 11403  1
## 11404  1
## 11405  1
## 11406  1
## 11407  1
## 11408  1
## 11409  1
## 11410  1
## 11411  1
## 11412  1
## 11413  1
## 11414  1
## 11415  1
## 11416  1
## 11417  1
## 11418  1
## 11419  1
## 11420  1
## 11421  1
## 11422  1
## 11423  1
## 11424  1
## 11425  1
## 11426  1
## 11427  1
## 11428  1
## 11429  1
## 11430  1
## 11431  1
## 11432  1
## 11433  1
## 11434  1
## 11435  1
## 11436  1
## 11437  1
## 11438  1
## 11439  1
## 11440  1
## 11441  1
## 11442  1
## 11443  1
## 11444  1
## 11445  1
## 11446  1
## 11447  1
## 11448  1
## 11449  1
## 11450  1
## 11451  1
## 11452  1
## 11453  1
## 11454  1
## 11455  1
## 11456  1
## 11457  1
## 11458  1
## 11459  1
## 11460  1
## 11461  1
## 11462  1
## 11463  1
## 11464  1
## 11465  1
## 11466  1
## 11467  1
## 11468  1
## 11469  1
## 11470  1
## 11471  1
## 11472  1
## 11473  1
## 11474  1
## 11475  1
## 11476  1
## 11477  1
## 11478  1
## 11479  1
## 11480  1
## 11481  1
## 11482  1
## 11483  1
## 11484  1
## 11485  1
## 11486  1
## 11487  1
## 11488  1
## 11489  1
## 11490  1
## 11491  1
## 11492  1
## 11493  1
## 11494  1
## 11495  1
## 11496  1
## 11497  1
## 11498  1
## 11499  1
## 11500  1
## 11501  1
## 11502  1
## 11503  1
## 11504  1
## 11505  1
## 11506  1
## 11507  1
## 11508  1
## 11509  1
## 11510  1
## 11511  1
## 11512  1
## 11513  1
## 11514  1
## 11515  1
## 11516  1
## 11517  1
## 11518  1
## 11519  1
## 11520  1
## 11521  1
## 11522  1
## 11523  1
## 11524  1
## 11525  1
## 11526  1
## 11527  1
## 11528  1
## 11529  1
## 11530  1
## 11531  1
## 11532  1
## 11533  1
## 11534  1
## 11535  1
## 11536  1
## 11537  1
## 11538  1
## 11539  1
## 11540  1
## 11541  1
## 11542  1
## 11543  1
## 11544  1
## 11545  1
## 11546  1
## 11547  1
## 11548  1
## 11549  1
## 11550  1
## 11551  1
## 11552  1
## 11553  1
## 11554  1
## 11555  1
## 11556  1
## 11557  1
## 11558  1
## 11559  1
## 11560  1
## 11561  1
## 11562  1
## 11563  1
## 11564  1
## 11565  1
## 11566  1
## 11567  1
## 11568  1
## 11569  1
## 11570  1
## 11571  1
## 11572  1
## 11573  1
## 11574  1
## 11575  1
## 11576  1
## 11577  1
## 11578  1
## 11579  1
## 11580  1
## 11581  1
## 11582  1
## 11583  1
## 11584  1
## 11585  1
## 11586  1
## 11587  1
## 11588  1
## 11589  1
## 11590  1
## 11591  1
## 11592  1
## 11593  1
## 11594  1
## 11595  1
## 11596  1
## 11597  1
## 11598  1
## 11599  1
## 11600  1
## 11601  1
## 11602  1
## 11603  1
## 11604  1
## 11605  1
## 11606  1
## 11607  1
## 11608  1
## 11609  1
## 11610  1
## 11611  1
## 11612  1
## 11613  1
## 11614  1
## 11615  1
## 11616  1
## 11617  1
## 11618  1
## 11619  1
## 11620  1
## 11621  1
## 11622  1
## 11623  1
## 11624  1
## 11625  1
## 11626  1
## 11627  1
## 11628  1
## 11629  1
## 11630  1
## 11631  1
## 11632  1
## 11633  1
## 11634  1
## 11635  1
## 11636  1
## 11637  1
## 11638  1
## 11639  1
## 11640  1
## 11641  1
## 11642  1
## 11643  1
## 11644  1
## 11645  1
## 11646  1
## 11647  1
## 11648  1
## 11649  1
## 11650  1
## 11651  1
## 11652  1
## 11653  1
## 11654  1
## 11655  1
## 11656  1
## 11657  1
## 11658  1
## 11659  1
## 11660  1
## 11661  1
## 11662  1
## 11663  1
## 11664  1
## 11665  1
## 11666  1
## 11667  1
## 11668  1
## 11669  1
## 11670  1
## 11671  1
## 11672  1
## 11673  1
## 11674  1
## 11675  1
## 11676  1
## 11677  1
## 11678  1
## 11679  1
## 11680  1
## 11681  1
## 11682  1
## 11683  1
## 11684  1
## 11685  1
## 11686  1
## 11687  1
## 11688  1
## 11689  1
## 11690  1
## 11691  1
## 11692  1
## 11693  1
## 11694  1
## 11695  1
## 11696  1
## 11697  1
## 11698  1
## 11699  1
## 11700  1
## 11701  1
## 11702  1
## 11703  1
## 11704  1
## 11705  1
## 11706  1
## 11707  1
## 11708  1
## 11709  1
## 11710  1
## 11711  1
## 11712  1
## 11713  1
## 11714  1
## 11715  1
## 11716  1
## 11717  1
## 11718  1
## 11719  1
## 11720  1
## 11721  1
## 11722  1
## 11723  1
## 11724  1
## 11725  1
## 11726  1
## 11727  1
## 11728  1
## 11729  1
## 11730  1
## 11731  1
## 11732  1
## 11733  1
## 11734  1
## 11735  1
## 11736  1
## 11737  1
## 11738  1
## 11739  1
## 11740  1
## 11741  1
## 11742  1
## 11743  1
## 11744  1
## 11745  1
## 11746  1
## 11747  1
## 11748  1
## 11749  1
## 11750  1
## 11751  1
## 11752  1
## 11753  1
## 11754  1
## 11755  1
## 11756  1
## 11757  1
## 11758  1
## 11759  1
## 11760  1
## 11761  1
## 11762  1
## 11763  1
## 11764  1
## 11765  1
## 11766  1
## 11767  1
## 11768  1
## 11769  1
## 11770  1
## 11771  1
## 11772  1
## 11773  1
## 11774  1
## 11775  1
## 11776  1
## 11777  1
## 11778  1
## 11779  1
## 11780  1
## 11781  1
## 11782  1
## 11783  1
## 11784  1
## 11785  1
## 11786  1
## 11787  1
## 11788  1
## 11789  1
## 11790  1
## 11791  1
## 11792  1
## 11793  1
## 11794  1
## 11795  1
## 11796  1
## 11797  1
## 11798  1
## 11799  1
## 11800  1
## 11801  1
## 11802  1
## 11803  1
## 11804  1
## 11805  1
## 11806  1
## 11807  1
## 11808  1
## 11809  1
## 11810  1
## 11811  1
## 11812  1
## 11813  1
## 11814  1
## 11815  1
## 11816  1
## 11817  1
## 11818  1
## 11819  1
## 11820  1
## 11821  1
## 11822  1
## 11823  1
## 11824  1
## 11825  1
## 11826  1
## 11827  1
## 11828  1
## 11829  1
## 11830  1
## 11831  1
## 11832  1
## 11833  1
## 11834  1
## 11835  1
## 11836  1
## 11837  1
## 11838  1
## 11839  1
## 11840  1
## 11841  1
## 11842  1
## 11843  1
## 11844  1
## 11845  1
## 11846  1
## 11847  1
## 11848  1
## 11849  1
## 11850  1
## 11851  1
## 11852  1
## 11853  1
## 11854  1
## 11855  1
## 11856  1
## 11857  1
## 11858  1
## 11859  1
## 11860  1
## 11861  1
## 11862  1
## 11863  1
## 11864  1
## 11865  1
## 11866  1
## 11867  1
## 11868  1
## 11869  1
## 11870  1
## 11871  1
## 11872  1
## 11873  1
## 11874  1
## 11875  1
## 11876  1
## 11877  1
## 11878  1
## 11879  1
## 11880  1
## 11881  1
## 11882  1
## 11883  1
## 11884  1
## 11885  1
## 11886  1
## 11887  1
## 11888  1
## 11889  1
## 11890  1
## 11891  1
## 11892  1
## 11893  1
## 11894  1
## 11895  1
## 11896  1
## 11897  1
## 11898  1
## 11899  1
## 11900  1
## 11901  1
## 11902  1
## 11903  1
## 11904  1
## 11905  1
## 11906  1
## 11907  1
## 11908  1
## 11909  1
## 11910  1
## 11911  1
## 11912  1
## 11913  1
## 11914  1
## 11915  1
## 11916  1
## 11917  1
## 11918  1
## 11919  1
## 11920  1
## 11921  1
## 11922  1
## 11923  1
## 11924  1
## 11925  1
## 11926  1
## 11927  1
## 11928  1
## 11929  1
## 11930  1
## 11931  1
## 11932  1
## 11933  1
## 11934  1
## 11935  1
## 11936  1
## 11937  1
## 11938  1
## 11939  1
## 11940  1
## 11941  1
## 11942  1
## 11943  1
## 11944  1
## 11945  1
## 11946  1
## 11947  1
## 11948  1
## 11949  1
## 11950  1
## 11951  1
## 11952  1
## 11953  1
## 11954  1
## 11955  1
## 11956  1
## 11957  1
## 11958  1
## 11959  1
## 11960  1
## 11961  1
## 11962  1
## 11963  1
## 11964  1
## 11965  1
## 11966  1
## 11967  1
## 11968  1
## 11969  1
## 11970  1
## 11971  1
## 11972  1
## 11973  1
## 11974  1
## 11975  1
## 11976  1
## 11977  1
## 11978  1
## 11979  1
## 11980  1
## 11981  1
## 11982  1
## 11983  1
## 11984  1
## 11985  1
## 11986  1
## 11987  1
## 11988  1
## 11989  1
## 11990  1
## 11991  1
## 11992  1
## 11993  1
## 11994  1
## 11995  1
## 11996  1
## 11997  1
## 11998  1
## 11999  1
## 12000  1
## 12001  1
## 12002  1
## 12003  1
## 12004  1
## 12005  1
## 12006  1
## 12007  1
## 12008  1
## 12009  1
## 12010  1
## 12011  1
## 12012  1
## 12013  1
## 12014  1
## 12015  1
## 12016  1
## 12017  1
## 12018  1
## 12019  1
## 12020  1
## 12021  1
## 12022  1
## 12023  1
## 12024  1
## 12025  1
## 12026  1
## 12027  1
## 12028  1
## 12029  1
## 12030  1
## 12031  1
## 12032  1
## 12033  1
## 12034  1
## 12035  1
## 12036  1
## 12037  1
## 12038  1
## 12039  1
## 12040  1
## 12041  1
## 12042  1
## 12043  1
## 12044  1
## 12045  1
## 12046  1
## 12047  1
## 12048  1
## 12049  1
## 12050  1
## 12051  1
## 12052  1
## 12053  1
## 12054  1
## 12055  1
## 12056  1
## 12057  1
## 12058  1
## 12059  1
## 12060  1
## 12061  1
## 12062  1
## 12063  1
## 12064  1
## 12065  1
## 12066  1
## 12067  1
## 12068  1
## 12069  1
## 12070  1
## 12071  1
## 12072  1
## 12073  1
## 12074  1
## 12075  1
## 12076  1
## 12077  1
## 12078  1
## 12079  1
## 12080  1
## 12081  1
## 12082  1
## 12083  1
## 12084  1
## 12085  1
## 12086  1
## 12087  1
## 12088  1
## 12089  1
## 12090  1
## 12091  1
## 12092  1
## 12093  1
## 12094  1
## 12095  1
## 12096  1
## 12097  1
## 12098  1
## 12099  1
## 12100  1
## 12101  1
## 12102  1
## 12103  1
## 12104  1
## 12105  1
## 12106  1
## 12107  1
## 12108  1
## 12109  1
## 12110  1
## 12111  1
## 12112  1
## 12113  1
## 12114  1
## 12115  1
## 12116  1
## 12117  1
## 12118  1
## 12119  1
## 12120  1
## 12121  1
## 12122  1
## 12123  1
## 12124  1
## 12125  1
## 12126  1
## 12127  1
## 12128  1
## 12129  1
## 12130  1
## 12131  1
## 12132  1
## 12133  1
## 12134  1
## 12135  1
## 12136  1
## 12137  1
## 12138  1
## 12139  1
## 12140  1
## 12141  1
## 12142  1
## 12143  1
## 12144  1
## 12145  1
## 12146  1
## 12147  1
## 12148  1
## 12149  1
## 12150  1
## 12151  1
## 12152  1
## 12153  1
## 12154  1
## 12155  1
## 12156  1
## 12157  1
## 12158  1
## 12159  1
## 12160  1
## 12161  1
## 12162  1
## 12163  1
## 12164  1
## 12165  1
## 12166  1
## 12167  1
## 12168  1
## 12169  1
## 12170  1
## 12171  1
## 12172  1
## 12173  1
## 12174  1
## 12175  1
## 12176  1
## 12177  1
## 12178  1
## 12179  1
## 12180  1
## 12181  1
## 12182  1
## 12183  1
## 12184  1
## 12185  1
## 12186  1
## 12187  1
## 12188  1
## 12189  1
## 12190  1
## 12191  1
## 12192  1
## 12193  1
## 12194  1
## 12195  1
## 12196  1
## 12197  1
## 12198  1
## 12199  1
## 12200  1
## 12201  1
## 12202  1
## 12203  1
## 12204  1
## 12205  1
## 12206  1
## 12207  1
## 12208  1
## 12209  1
## 12210  1
## 12211  1
## 12212  1
## 12213  1
## 12214  1
## 12215  1
## 12216  1
## 12217  1
## 12218  1
## 12219  1
## 12220  1
## 12221  1
## 12222  1
## 12223  1
## 12224  1
## 12225  1
## 12226  1
## 12227  1
## 12228  1
## 12229  1
## 12230  1
## 12231  1
## 12232  1
## 12233  1
## 12234  1
## 12235  1
## 12236  1
## 12237  1
## 12238  1
## 12239  1
## 12240  1
## 12241  1
## 12242  1
## 12243  1
## 12244  1
## 12245  1
## 12246  1
## 12247  1
## 12248  1
## 12249  1
## 12250  1
## 12251  1
## 12252  1
## 12253  1
## 12254  1
## 12255  1
## 12256  1
## 12257  1
## 12258  1
## 12259  1
## 12260  1
## 12261  1
## 12262  1
## 12263  1
## 12264  1
## 12265  1
## 12266  1
## 12267  1
## 12268  1
## 12269  1
## 12270  1
## 12271  1
## 12272  1
## 12273  1
## 12274  1
## 12275  1
## 12276  1
## 12277  1
## 12278  1
## 12279  1
## 12280  1
## 12281  1
## 12282  1
## 12283  1
## 12284  1
## 12285  1
## 12286  1
## 12287  1
## 12288  1
## 12289  1
## 12290  1
## 12291  1
## 12292  1
## 12293  1
## 12294  1
## 12295  1
## 12296  1
## 12297  1
## 12298  1
## 12299  1
## 12300  1
## 12301  1
## 12302  1
## 12303  1
## 12304  1
## 12305  1
## 12306  1
## 12307  1
## 12308  1
## 12309  1
## 12310  1
## 12311  1
## 12312  1
## 12313  1
## 12314  1
## 12315  1
## 12316  1
## 12317  1
## 12318  1
## 12319  1
## 12320  1
## 12321  1
## 12322  1
## 12323  1
## 12324  1
## 12325  1
## 12326  1
## 12327  1
## 12328  1
## 12329  1
## 12330  1
## 12331  1
## 12332  1
## 12333  1
## 12334  1
## 12335  1
## 12336  1
## 12337  1
## 12338  1
## 12339  1
## 12340  1
## 12341  1
## 12342  1
## 12343  1
## 12344  1
## 12345  1
## 12346  1
## 12347  1
## 12348  1
## 12349  1
## 12350  1
## 12351  1
## 12352  1
## 12353  1
## 12354  1
## 12355  1
## 12356  1
## 12357  1
## 12358  1
## 12359  1
## 12360  1
## 12361  1
## 12362  1
## 12363  1
## 12364  1
## 12365  1
## 12366  1
## 12367  1
## 12368  1
## 12369  1
## 12370  1
## 12371  1
## 12372  1
## 12373  1
## 12374  1
## 12375  1
## 12376  1
## 12377  1
## 12378  1
## 12379  1
## 12380  1
## 12381  1
## 12382  1
## 12383  1
## 12384  1
## 12385  1
## 12386  1
## 12387  1
## 12388  1
## 12389  1
## 12390  1
## 12391  1
## 12392  1
## 12393  1
## 12394  1
## 12395  1
## 12396  1
## 12397  1
## 12398  1
## 12399  1
## 12400  1
## 12401  1
## 12402  1
## 12403  1
## 12404  1
## 12405  1
## 12406  1
## 12407  1
## 12408  1
## 12409  1
## 12410  1
## 12411  1
## 12412  1
## 12413  1
## 12414  1
## 12415  1
## 12416  1
## 12417  1
## 12418  1
## 12419  1
## 12420  1
## 12421  1
## 12422  1
## 12423  1
## 12424  1
## 12425  1
## 12426  1
## 12427  1
## 12428  1
## 12429  1
## 12430  1
## 12431  1
## 12432  1
## 12433  1
## 12434  1
## 12435  1
## 12436  1
## 12437  1
## 12438  1
## 12439  1
## 12440  1
## 12441  1
## 12442  1
## 12443  1
## 12444  1
## 12445  1
## 12446  1
## 12447  1
## 12448  1
## 12449  1
## 12450  1
## 12451  1
## 12452  1
## 12453  1
## 12454  1
## 12455  1
## 12456  1
## 12457  1
## 12458  1
## 12459  1
## 12460  1
## 12461  1
## 12462  1
## 12463  1
## 12464  1
## 12465  1
## 12466  1
## 12467  1
## 12468  1
## 12469  1
## 12470  1
## 12471  1
## 12472  1
## 12473  1
## 12474  1
## 12475  1
## 12476  1
## 12477  1
## 12478  1
## 12479  1
## 12480  1
## 12481  1
## 12482  1
## 12483  1
## 12484  1
## 12485  1
## 12486  1
## 12487  1
## 12488  1
## 12489  1
## 12490  1
## 12491  1
## 12492  1
## 12493  1
## 12494  1
## 12495  1
## 12496  1
## 12497  1
## 12498  1
## 12499  1
## 12500  1
## 12501  1
## 12502  1
## 12503  1
## 12504  1
## 12505  1
## 12506  1
## 12507  1
## 12508  1
## 12509  1
## 12510  1
## 12511  1
## 12512  1
## 12513  1
## 12514  1
## 12515  1
## 12516  1
## 12517  1
## 12518  1
## 12519  1
## 12520  1
## 12521  1
## 12522  1
## 12523  1
## 12524  1
## 12525  1
## 12526  1
## 12527  1
## 12528  1
## 12529  1
## 12530  1
## 12531  1
## 12532  1
## 12533  1
## 12534  1
## 12535  1
## 12536  1
## 12537  1
## 12538  1
## 12539  1
## 12540  1
## 12541  1
## 12542  1
## 12543  1
## 12544  1
## 12545  1
## 12546  1
## 12547  1
## 12548  1
## 12549  1
## 12550  1
## 12551  1
## 12552  1
## 12553  1
## 12554  1
## 12555  1
## 12556  1
## 12557  1
## 12558  1
## 12559  1
## 12560  1
## 12561  1
## 12562  1
## 12563  1
## 12564  1
## 12565  1
## 12566  1
## 12567  1
## 12568  1
## 12569  1
## 12570  1
## 12571  1
## 12572  1
## 12573  1
## 12574  1
## 12575  1
## 12576  1
## 12577  1
## 12578  1
## 12579  1
## 12580  1
## 12581  1
## 12582  1
## 12583  1
## 12584  1
## 12585  1
## 12586  1
## 12587  1
## 12588  1
## 12589  1
## 12590  1
## 12591  1
## 12592  1
## 12593  1
## 12594  1
## 12595  1
## 12596  1
## 12597  1
## 12598  1
## 12599  1
## 12600  1
## 12601  1
## 12602  1
## 12603  1
## 12604  1
## 12605  1
## 12606  1
## 12607  1
## 12608  1
## 12609  1
## 12610  1
## 12611  1
## 12612  1
## 12613  1
## 12614  1
## 12615  1
## 12616  1
## 12617  1
## 12618  1
## 12619  1
## 12620  1
## 12621  1
## 12622  1
## 12623  1
## 12624  1
## 12625  1
## 12626  1
## 12627  1
## 12628  1
## 12629  1
## 12630  1
## 12631  1
## 12632  1
## 12633  1
## 12634  1
## 12635  1
## 12636  1
## 12637  1
## 12638  1
## 12639  1
## 12640  1
## 12641  1
## 12642  1
## 12643  1
## 12644  1
## 12645  1
## 12646  1
## 12647  1
## 12648  1
## 12649  1
## 12650  1
## 12651  1
## 12652  1
## 12653  1
## 12654  1
## 12655  1
## 12656  1
## 12657  1
## 12658  1
## 12659  1
## 12660  1
## 12661  1
## 12662  1
## 12663  1
## 12664  1
## 12665  1
## 12666  1
## 12667  1
## 12668  1
## 12669  1
## 12670  1
## 12671  1
## 12672  1
## 12673  1
## 12674  1
## 12675  1
## 12676  1
## 12677  1
## 12678  1
## 12679  1
## 12680  1
## 12681  1
## 12682  1
## 12683  1
## 12684  1
## 12685  1
## 12686  1
## 12687  1
## 12688  1
## 12689  1
## 12690  1
## 12691  1
## 12692  1
## 12693  1
## 12694  1
## 12695  1
## 12696  1
## 12697  1
## 12698  1
## 12699  1
## 12700  1
## 12701  1
## 12702  1
## 12703  1
## 12704  1
## 12705  1
## 12706  1
## 12707  1
## 12708  1
## 12709  1
## 12710  1
## 12711  1
## 12712  1
## 12713  1
## 12714  1
## 12715  1
## 12716  1
## 12717  1
## 12718  1
## 12719  1
## 12720  1
## 12721  1
## 12722  1
## 12723  1
## 12724  1
## 12725  1
## 12726  1
## 12727  1
## 12728  1
## 12729  1
## 12730  1
## 12731  1
## 12732  1
## 12733  1
## 12734  1
## 12735  1
## 12736  1
## 12737  1
## 12738  1
## 12739  1
## 12740  1
## 12741  1
## 12742  1
## 12743  1
## 12744  1
## 12745  1
## 12746  1
## 12747  1
## 12748  1
## 12749  1
## 12750  1
## 12751  1
## 12752  1
## 12753  1
## 12754  1
## 12755  1
## 12756  1
## 12757  1
## 12758  1
## 12759  1
## 12760  1
## 12761  1
## 12762  1
## 12763  1
## 12764  1
## 12765  1
## 12766  1
## 12767  1
## 12768  1
## 12769  1
## 12770  1
## 12771  1
## 12772  1
## 12773  1
## 12774  1
## 12775  1
## 12776  1
## 12777  1
## 12778  1
## 12779  1
## 12780  1
## 12781  1
## 12782  1
## 12783  1
## 12784  1
## 12785  1
## 12786  1
## 12787  1
## 12788  1
## 12789  1
## 12790  1
## 12791  1
## 12792  1
## 12793  1
## 12794  1
## 12795  1
## 12796  1
## 12797  1
## 12798  1
## 12799  1
## 12800  1
## 12801  1
## 12802  1
## 12803  1
## 12804  1
## 12805  1
## 12806  1
## 12807  1
## 12808  1
## 12809  1
## 12810  1
## 12811  1
## 12812  1
## 12813  1
## 12814  1
## 12815  1
## 12816  1
## 12817  1
## 12818  1
## 12819  1
## 12820  1
## 12821  1
## 12822  1
## 12823  1
## 12824  1
## 12825  1
## 12826  1
## 12827  1
## 12828  1
## 12829  1
## 12830  1
## 12831  1
## 12832  1
## 12833  1
## 12834  1
## 12835  1
## 12836  1
## 12837  1
## 12838  1
## 12839  1
## 12840  1
## 12841  1
## 12842  1
## 12843  1
## 12844  1
## 12845  1
## 12846  1
## 12847  1
## 12848  1
## 12849  1
## 12850  1
## 12851  1
## 12852  1
## 12853  1
## 12854  1
## 12855  1
## 12856  1
## 12857  1
## 12858  1
## 12859  1
## 12860  1
## 12861  1
## 12862  1
## 12863  1
## 12864  1
## 12865  1
## 12866  1
## 12867  1
## 12868  1
## 12869  1
## 12870  1
## 12871  1
## 12872  1
## 12873  1
## 12874  1
## 12875  1
## 12876  1
## 12877  1
## 12878  1
## 12879  1
## 12880  1
## 12881  1
## 12882  1
## 12883  1
## 12884  1
## 12885  1
## 12886  1
## 12887  1
## 12888  1
## 12889  1
## 12890  1
## 12891  1
## 12892  1
## 12893  1
## 12894  1
## 12895  1
## 12896  1
## 12897  1
## 12898  1
## 12899  1
## 12900  1
## 12901  1
## 12902  1
## 12903  1
## 12904  1
## 12905  1
## 12906  1
## 12907  1
## 12908  1
## 12909  1
## 12910  1
## 12911  1
## 12912  1
## 12913  1
## 12914  1
## 12915  1
## 12916  1
## 12917  1
## 12918  1
## 12919  1
## 12920  1
## 12921  1
## 12922  1
## 12923  1
## 12924  1
## 12925  1
## 12926  1
## 12927  1
## 12928  1
## 12929  1
## 12930  1
## 12931  1
## 12932  1
## 12933  1
## 12934  1
## 12935  1
## 12936  1
## 12937  1
## 12938  1
## 12939  1
## 12940  1
## 12941  1
## 12942  1
## 12943  1
## 12944  1
## 12945  1
## 12946  1
## 12947  1
## 12948  1
## 12949  1
## 12950  1
## 12951  1
## 12952  1
## 12953  1
## 12954  1
## 12955  1
## 12956  1
## 12957  1
## 12958  1
## 12959  1
## 12960  1
## 12961  1
## 12962  1
## 12963  1
## 12964  1
## 12965  1
## 12966  1
## 12967  1
## 12968  1
## 12969  1
## 12970  1
## 12971  1
## 12972  1
## 12973  1
## 12974  1
## 12975  1
## 12976  1
## 12977  1
## 12978  1
## 12979  1
## 12980  1
## 12981  1
## 12982  1
## 12983  1
## 12984  1
## 12985  1
## 12986  1
## 12987  1
## 12988  1
## 12989  1
## 12990  1
## 12991  1
## 12992  1
## 12993  1
## 12994  1
## 12995  1
## 12996  1
## 12997  1
## 12998  1
## 12999  1
## 13000  1
## 13001  1
## 13002  1
## 13003  1
## 13004  1
## 13005  1
## 13006  1
## 13007  1
## 13008  1
## 13009  1
## 13010  1
## 13011  1
## 13012  1
## 13013  1
## 13014  1
## 13015  1
## 13016  1
## 13017  1
## 13018  1
## 13019  1
## 13020  1
## 13021  1
## 13022  1
## 13023  1
## 13024  1
## 13025  1
## 13026  1
## 13027  1
## 13028  1
## 13029  1
## 13030  1
## 13031  1
## 13032  1
## 13033  1
## 13034  1
## 13035  1
## 13036  1
## 13037  1
## 13038  1
## 13039  1
## 13040  1
## 13041  1
## 13042  1
## 13043  1
## 13044  1
## 13045  1
## 13046  1
## 13047  1
## 13048  1
## 13049  1
## 13050  1
## 13051  1
## 13052  1
## 13053  1
## 13054  1
## 13055  1
## 13056  1
## 13057  1
## 13058  1
## 13059  1
## 13060  1
## 13061  1
## 13062  1
## 13063  1
## 13064  1
## 13065  1
## 13066  1
## 13067  1
## 13068  1
## 13069  1
## 13070  1
## 13071  1
## 13072  1
## 13073  1
## 13074  1
## 13075  1
## 13076  1
## 13077  1
## 13078  1
## 13079  1
## 13080  1
## 13081  1
## 13082  1
## 13083  1
## 13084  1
## 13085  1
## 13086  1
## 13087  1
## 13088  1
## 13089  1
## 13090  1
## 13091  1
## 13092  1
## 13093  1
## 13094  1
## 13095  1
## 13096  1
## 13097  1
## 13098  1
## 13099  1
## 13100  1
## 13101  1
## 13102  1
## 13103  1
## 13104  1
## 13105  1
## 13106  1
## 13107  1
## 13108  1
## 13109  1
## 13110  1
## 13111  1
## 13112  1
## 13113  1
## 13114  1
## 13115  1
## 13116  1
## 13117  1
## 13118  1
## 13119  1
## 13120  1
## 13121  1
## 13122  1
## 13123  1
## 13124  1
## 13125  1
## 13126  1
## 13127  1
## 13128  1
## 13129  1
## 13130  1
## 13131  1
## 13132  1
## 13133  1
## 13134  1
## 13135  1
## 13136  1
## 13137  1
## 13138  1
## 13139  1
## 13140  1
## 13141  1
## 13142  1
## 13143  1
## 13144  1
## 13145  1
## 13146  1
## 13147  1
## 13148  1
## 13149  1
## 13150  1
## 13151  1
## 13152  1
## 13153  1
## 13154  1
## 13155  1
## 13156  1
## 13157  1
## 13158  1
## 13159  1
## 13160  1
## 13161  1
## 13162  1
## 13163  1
## 13164  1
## 13165  1
## 13166  1
## 13167  1
## 13168  1
## 13169  1
## 13170  1
## 13171  1
## 13172  1
## 13173  1
## 13174  1
## 13175  1
## 13176  1
## 13177  1
## 13178  1
## 13179  1
## 13180  1
## 13181  1
## 13182  1
## 13183  1
## 13184  1
## 13185  1
## 13186  1
## 13187  1
## 13188  1
## 13189  1
## 13190  1
## 13191  1
## 13192  1
## 13193  1
## 13194  1
## 13195  1
## 13196  1
## 13197  1
## 13198  1
## 13199  1
## 13200  1
## 13201  1
## 13202  1
## 13203  1
## 13204  1
## 13205  1
## 13206  1
## 13207  1
## 13208  1
## 13209  1
## 13210  1
## 13211  1
## 13212  1
## 13213  1
## 13214  1
## 13215  1
## 13216  1
## 13217  1
## 13218  1
## 13219  1
## 13220  1
## 13221  1
## 13222  1
## 13223  1
## 13224  1
## 13225  1
## 13226  1
## 13227  1
## 13228  1
## 13229  1
## 13230  1
## 13231  1
## 13232  1
## 13233  1
## 13234  1
## 13235  1
## 13236  1
## 13237  1
## 13238  1
## 13239  1
## 13240  1
## 13241  1
## 13242  1
## 13243  1
## 13244  1
## 13245  1
## 13246  1
## 13247  1
## 13248  1
## 13249  1
## 13250  1
## 13251  1
## 13252  1
## 13253  1
## 13254  1
## 13255  1
## 13256  1
## 13257  1
## 13258  1
## 13259  1
## 13260  1
## 13261  1
## 13262  1
## 13263  1
## 13264  1
## 13265  1
## 13266  1
## 13267  1
## 13268  1
## 13269  1
## 13270  1
## 13271  1
## 13272  1
## 13273  1
## 13274  1
## 13275  1
## 13276  1
## 13277  1
## 13278  1
## 13279  1
## 13280  1
## 13281  1
## 13282  1
## 13283  1
## 13284  1
## 13285  1
## 13286  1
## 13287  1
## 13288  1
## 13289  1
## 13290  1
## 13291  1
## 13292  1
## 13293  1
## 13294  1
## 13295  1
## 13296  1
## 13297  1
## 13298  1
## 13299  1
## 13300  1
## 13301  1
## 13302  1
## 13303  1
## 13304  1
## 13305  1
## 13306  1
## 13307  1
## 13308  1
## 13309  1
## 13310  1
## 13311  1
## 13312  1
## 13313  1
## 13314  1
## 13315  1
## 13316  1
## 13317  1
## 13318  1
## 13319  1
## 13320  1
## 13321  1
## 13322  1
## 13323  1
## 13324  1
## 13325  1
## 13326  1
## 13327  1
## 13328  1
## 13329  1
## 13330  1
## 13331  1
## 13332  1
## 13333  1
## 13334  1
## 13335  1
## 13336  1
## 13337  1
## 13338  1
## 13339  1
## 13340  1
## 13341  1
## 13342  1
## 13343  1
## 13344  1
## 13345  1
## 13346  1
## 13347  1
## 13348  1
## 13349  1
## 13350  1
## 13351  1
## 13352  1
## 13353  1
## 13354  1
## 13355  1
## 13356  1
## 13357  1
## 13358  1
## 13359  1
## 13360  1
## 13361  1
## 13362  1
## 13363  1
## 13364  1
## 13365  1
## 13366  1
## 13367  1
## 13368  1
## 13369  1
## 13370  1
## 13371  1
## 13372  1
## 13373  1
## 13374  1
## 13375  1
## 13376  1
## 13377  1
## 13378  1
## 13379  1
## 13380  1
## 13381  1
## 13382  1
## 13383  1
## 13384  1
## 13385  1
## 13386  1
## 13387  1
## 13388  1
## 13389  1
## 13390  1
## 13391  1
## 13392  1
## 13393  1
## 13394  1
## 13395  1
## 13396  1
## 13397  1
## 13398  1
## 13399  1
## 13400  1
## 13401  1
## 13402  1
## 13403  1
## 13404  1
## 13405  1
## 13406  1
## 13407  1
## 13408  1
## 13409  1
## 13410  1
## 13411  1
## 13412  1
## 13413  1
## 13414  1
## 13415  1
## 13416  1
## 13417  1
## 13418  1
## 13419  1
## 13420  1
## 13421  1
## 13422  1
## 13423  1
## 13424  1
## 13425  1
## 13426  1
## 13427  1
## 13428  1
## 13429  1
## 13430  1
## 13431  1
## 13432  1
## 13433  1
## 13434  1
## 13435  1
## 13436  1
## 13437  1
## 13438  1
## 13439  1
## 13440  1
## 13441  1
## 13442  1
## 13443  1
## 13444  1
## 13445  1
## 13446  1
## 13447  1
## 13448  1
## 13449  1
## 13450  1
## 13451  1
## 13452  1
## 13453  1
## 13454  1
## 13455  1
## 13456  1
## 13457  1
## 13458  1
## 13459  1
## 13460  1
## 13461  1
## 13462  1
## 13463  1
## 13464  1
## 13465  1
## 13466  1
## 13467  1
## 13468  1
## 13469  1
## 13470  1
## 13471  1
## 13472  1
## 13473  1
## 13474  1
## 13475  1
## 13476  1
## 13477  1
## 13478  1
## 13479  1
## 13480  1
## 13481  1
## 13482  1
## 13483  1
## 13484  1
## 13485  1
## 13486  1
## 13487  1
## 13488  1
## 13489  1
## 13490  1
## 13491  1
## 13492  1
## 13493  1
## 13494  1
## 13495  1
## 13496  1
## 13497  1
## 13498  1
## 13499  1
## 13500  1
## 13501  1
## 13502  1
## 13503  1
## 13504  1
## 13505  1
## 13506  1
## 13507  1
## 13508  1
## 13509  1
## 13510  1
## 13511  1
## 13512  1
## 13513  1
## 13514  1
## 13515  1
## 13516  1
## 13517  1
## 13518  1
## 13519  1
## 13520  1
## 13521  1
## 13522  1
## 13523  1
## 13524  1
## 13525  1
## 13526  1
## 13527  1
## 13528  1
## 13529  1
## 13530  1
## 13531  1
## 13532  1
## 13533  1
## 13534  1
## 13535  1
## 13536  1
## 13537  1
## 13538  1
## 13539  1
## 13540  1
## 13541  1
## 13542  1
## 13543  1
## 13544  1
## 13545  1
## 13546  1
## 13547  1
## 13548  1
## 13549  1
## 13550  1
## 13551  1
## 13552  1
## 13553  1
## 13554  1
## 13555  1
## 13556  1
## 13557  1
## 13558  1
## 13559  1
## 13560  1
## 13561  1
## 13562  1
## 13563  1
## 13564  1
## 13565  1
## 13566  1
## 13567  1
## 13568  1
## 13569  1
## 13570  1
## 13571  1
## 13572  1
## 13573  1
## 13574  1
## 13575  1
## 13576  1
## 13577  1
## 13578  1
## 13579  1
## 13580  1
## 13581  1
## 13582  1
## 13583  1
## 13584  1
## 13585  1
## 13586  1
## 13587  1
## 13588  1
## 13589  1
## 13590  1
## 13591  1
## 13592  1
## 13593  1
## 13594  1
## 13595  1
## 13596  1
## 13597  1
## 13598  1
## 13599  1
## 13600  1
## 13601  1
## 13602  1
## 13603  1
## 13604  1
## 13605  1
## 13606  1
## 13607  1
## 13608  1
## 13609  1
## 13610  1
## 13611  1
## 13612  1
## 13613  1
## 13614  1
## 13615  1
## 13616  1
## 13617  1
## 13618  1
## 13619  1
## 13620  1
## 13621  1
## 13622  1
## 13623  1
## 13624  1
## 13625  1
## 13626  1
## 13627  1
## 13628  1
## 13629  1
## 13630  1
## 13631  1
## 13632  1
## 13633  1
## 13634  1
## 13635  1
## 13636  1
## 13637  1
## 13638  1
## 13639  1
## 13640  1
## 13641  1
## 13642  1
## 13643  1
## 13644  1
## 13645  1
## 13646  1
## 13647  1
## 13648  1
## 13649  1
## 13650  1
## 13651  1
## 13652  1
## 13653  1
## 13654  1
## 13655  1
## 13656  1
## 13657  1
## 13658  1
## 13659  1
## 13660  1
## 13661  1
## 13662  1
## 13663  1
## 13664  1
## 13665  1
## 13666  1
## 13667  1
## 13668  1
## 13669  1
## 13670  1
## 13671  1
## 13672  1
## 13673  1
## 13674  1
## 13675  1
## 13676  1
## 13677  1
## 13678  1
## 13679  1
## 13680  1
## 13681  1
## 13682  1
## 13683  1
## 13684  1
## 13685  1
## 13686  1
## 13687  1
## 13688  1
## 13689  1
## 13690  1
## 13691  1
## 13692  1
## 13693  1
## 13694  1
## 13695  1
## 13696  1
## 13697  1
## 13698  1
## 13699  1
## 13700  1
## 13701  1
## 13702  1
## 13703  1
## 13704  1
## 13705  1
## 13706  1
## 13707  1
## 13708  1
## 13709  1
## 13710  1
## 13711  1
## 13712  1
## 13713  1
## 13714  1
## 13715  1
## 13716  1
## 13717  1
## 13718  1
## 13719  1
## 13720  1
## 13721  1
## 13722  1
## 13723  1
## 13724  1
## 13725  1
## 13726  1
## 13727  1
## 13728  1
## 13729  1
## 13730  1
## 13731  1
## 13732  1
## 13733  1
## 13734  1
## 13735  1
## 13736  1
## 13737  1
## 13738  1
## 13739  1
## 13740  1
## 13741  1
## 13742  1
## 13743  1
## 13744  1
## 13745  1
## 13746  1
## 13747  1
## 13748  1
## 13749  1
## 13750  1
## 13751  1
## 13752  1
## 13753  1
## 13754  1
## 13755  1
## 13756  1
## 13757  1
## 13758  1
## 13759  1
## 13760  1
## 13761  1
## 13762  1
## 13763  1
## 13764  1
## 13765  1
## 13766  1
## 13767  1
## 13768  1
## 13769  1
## 13770  1
## 13771  1
## 13772  1
## 13773  1
## 13774  1
## 13775  1
## 13776  1
## 13777  1
## 13778  1
## 13779  1
## 13780  1
## 13781  1
## 13782  1
## 13783  1
## 13784  1
## 13785  1
## 13786  1
## 13787  1
## 13788  1
## 13789  1
## 13790  1
## 13791  1
## 13792  1
## 13793  1
## 13794  1
## 13795  1
## 13796  1
## 13797  1
## 13798  1
## 13799  1
## 13800  1
## 13801  1
## 13802  1
## 13803  1
## 13804  1
## 13805  1
## 13806  1
## 13807  1
## 13808  1
## 13809  1
## 13810  1
## 13811  1
## 13812  1
## 13813  1
## 13814  1
## 13815  1
## 13816  1
## 13817  1
## 13818  1
## 13819  1
## 13820  1
## 13821  1
## 13822  1
## 13823  1
## 13824  1
## 13825  1
## 13826  1
## 13827  1
## 13828  1
## 13829  1
## 13830  1
## 13831  1
## 13832  1
## 13833  1
## 13834  1
## 13835  1
## 13836  1
## 13837  1
## 13838  1
## 13839  1
## 13840  1
## 13841  1
## 13842  1
## 13843  1
## 13844  1
## 13845  1
## 13846  1
## 13847  1
## 13848  1
## 13849  1
## 13850  1
## 13851  1
## 13852  1
## 13853  1
## 13854  1
## 13855  1
## 13856  1
## 13857  1
## 13858  1
## 13859  1
## 13860  1
## 13861  1
## 13862  1
## 13863  1
## 13864  1
## 13865  1
## 13866  1
## 13867  1
## 13868  1
## 13869  1
## 13870  1
## 13871  1
## 13872  1
## 13873  1
## 13874  1
## 13875  1
## 13876  1
## 13877  1
## 13878  1
## 13879  1
## 13880  1
## 13881  1
## 13882  1
## 13883  1
## 13884  1
## 13885  1
## 13886  1
## 13887  1
## 13888  1
## 13889  1
## 13890  1
## 13891  1
## 13892  1
## 13893  1
## 13894  1
## 13895  1
## 13896  1
## 13897  1
## 13898  1
## 13899  1
## 13900  1
## 13901  1
## 13902  1
## 13903  1
## 13904  1
## 13905  1
## 13906  1
## 13907  1
## 13908  1
## 13909  1
## 13910  1
## 13911  1
## 13912  1
## 13913  1
## 13914  1
## 13915  1
## 13916  1
## 13917  1
## 13918  1
## 13919  1
## 13920  1
## 13921  1
## 13922  1
## 13923  1
## 13924  1
## 13925  1
## 13926  1
## 13927  1
## 13928  1
## 13929  1
## 13930  1
## 13931  1
## 13932  1
## 13933  1
## 13934  1
## 13935  1
## 13936  1
## 13937  1
## 13938  1
## 13939  1
## 13940  1
## 13941  1
## 13942  1
## 13943  1
## 13944  1
## 13945  1
## 13946  1
## 13947  1
## 13948  1
## 13949  1
## 13950  1
## 13951  1
## 13952  1
## 13953  1
## 13954  1
## 13955  1
## 13956  1
## 13957  1
## 13958  1
## 13959  1
## 13960  1
## 13961  1
## 13962  1
## 13963  1
## 13964  1
## 13965  1
## 13966  1
## 13967  1
## 13968  1
## 13969  1
## 13970  1
## 13971  1
## 13972  1
## 13973  1
## 13974  1
## 13975  1
## 13976  1
## 13977  1
## 13978  1
## 13979  1
## 13980  1
## 13981  1
## 13982  1
## 13983  1
## 13984  1
## 13985  1
## 13986  1
## 13987  1
## 13988  1
## 13989  1
## 13990  1
## 13991  1
## 13992  1
## 13993  1
## 13994  1
## 13995  1
## 13996  1
## 13997  1
## 13998  1
## 13999  1
## 14000  1
## 14001  1
## 14002  1
## 14003  1
## 14004  1
## 14005  1
## 14006  1
## 14007  1
## 14008  1
## 14009  1
## 14010  1
## 14011  1
## 14012  1
## 14013  1
## 14014  1
## 14015  1
## 14016  1
## 14017  1
## 14018  1
## 14019  1
## 14020  1
## 14021  1
## 14022  1
## 14023  1
## 14024  1
## 14025  1
## 14026  1
## 14027  1
## 14028  1
## 14029  1
## 14030  1
## 14031  1
## 14032  1
## 14033  1
## 14034  1
## 14035  1
## 14036  1
## 14037  1
## 14038  1
## 14039  1
## 14040  1
## 14041  1
## 14042  1
## 14043  1
## 14044  1
## 14045  1
## 14046  1
## 14047  1
## 14048  1
## 14049  1
## 14050  1
## 14051  1
## 14052  1
## 14053  1
## 14054  1
## 14055  1
## 14056  1
## 14057  1
## 14058  1
## 14059  1
## 14060  1
## 14061  1
## 14062  1
## 14063  1
## 14064  1
## 14065  1
## 14066  1
## 14067  1
## 14068  1
## 14069  1
## 14070  1
## 14071  1
## 14072  1
## 14073  1
## 14074  1
## 14075  1
## 14076  1
## 14077  1
## 14078  1
## 14079  1
## 14080  1
## 14081  1
## 14082  1
## 14083  1
## 14084  1
## 14085  1
## 14086  1
## 14087  1
## 14088  1
## 14089  1
## 14090  1
## 14091  1
## 14092  1
## 14093  1
## 14094  1
## 14095  1
## 14096  1
## 14097  1
## 14098  1
## 14099  1
## 14100  1
## 14101  1
## 14102  1
## 14103  1
## 14104  1
## 14105  1
## 14106  1
## 14107  1
## 14108  1
## 14109  1
## 14110  1
## 14111  1
## 14112  1
## 14113  1
## 14114  1
## 14115  1
## 14116  1
## 14117  1
## 14118  1
## 14119  1
## 14120  1
## 14121  1
## 14122  1
## 14123  1
## 14124  1
## 14125  1
## 14126  1
## 14127  1
## 14128  1
## 14129  1
## 14130  1
## 14131  1
## 14132  1
## 14133  1
## 14134  1
## 14135  1
## 14136  1
## 14137  1
## 14138  1
## 14139  1
## 14140  1
## 14141  1
## 14142  1
## 14143  1
## 14144  1
## 14145  1
## 14146  1
## 14147  1
## 14148  1
## 14149  1
## 14150  1
## 14151  1
## 14152  1
## 14153  1
## 14154  1
## 14155  1
## 14156  1
## 14157  1
## 14158  1
## 14159  1
## 14160  1
## 14161  1
## 14162  1
## 14163  1
## 14164  1
## 14165  1
## 14166  1
## 14167  1
## 14168  1
## 14169  1
## 14170  1
## 14171  1
## 14172  1
## 14173  1
## 14174  1
## 14175  1
## 14176  1
## 14177  1
## 14178  1
## 14179  1
## 14180  1
## 14181  1
## 14182  1
## 14183  1
## 14184  1
## 14185  1
## 14186  1
## 14187  1
## 14188  1
## 14189  1
## 14190  1
## 14191  1
## 14192  1
## 14193  1
## 14194  1
## 14195  1
## 14196  1
## 14197  1
## 14198  1
## 14199  1
## 14200  1
## 14201  1
## 14202  1
## 14203  1
## 14204  1
## 14205  1
## 14206  1
## 14207  1
## 14208  1
## 14209  1
## 14210  1
## 14211  1
## 14212  1
## 14213  1
## 14214  1
## 14215  1
## 14216  1
## 14217  1
## 14218  1
## 14219  1
## 14220  1
## 14221  1
## 14222  1
## 14223  1
## 14224  1
## 14225  1
## 14226  1
## 14227  1
## 14228  1
## 14229  1
## 14230  1
## 14231  1
## 14232  1
## 14233  1
## 14234  1
## 14235  1
## 14236  1
## 14237  1
## 14238  1
## 14239  1
## 14240  1
## 14241  1
## 14242  1
## 14243  1
## 14244  1
## 14245  1
## 14246  1
## 14247  1
## 14248  1
## 14249  1
## 14250  1
## 14251  1
## 14252  1
## 14253  1
## 14254  1
## 14255  1
## 14256  1
## 14257  1
## 14258  1
## 14259  1
## 14260  1
## 14261  1
## 14262  1
## 14263  1
## 14264  1
## 14265  1
## 14266  1
## 14267  1
## 14268  1
## 14269  1
## 14270  1
## 14271  1
## 14272  1
## 14273  1
## 14274  1
## 14275  1
## 14276  1
## 14277  1
## 14278  1
## 14279  1
## 14280  1
## 14281  1
## 14282  1
## 14283  1
## 14284  1
## 14285  1
## 14286  1
## 14287  1
## 14288  1
## 14289  1
## 14290  1
## 14291  1
## 14292  1
## 14293  1
## 14294  1
## 14295  1
## 14296  1
## 14297  1
## 14298  1
## 14299  1
## 14300  1
## 14301  1
## 14302  1
## 14303  1
## 14304  1
## 14305  1
## 14306  1
## 14307  1
## 14308  1
## 14309  1
## 14310  1
## 14311  1
## 14312  1
## 14313  1
## 14314  1
## 14315  1
## 14316  1
## 14317  1
## 14318  1
## 14319  1
## 14320  1
## 14321  1
## 14322  1
## 14323  1
## 14324  1
## 14325  1
## 14326  1
## 14327  1
## 14328  1
## 14329  1
## 14330  1
## 14331  1
## 14332  1
## 14333  1
## 14334  1
## 14335  1
## 14336  1
## 14337  1
## 14338  1
## 14339  1
## 14340  1
## 14341  1
## 14342  1
## 14343  1
## 14344  1
## 14345  1
## 14346  1
## 14347  1
## 14348  1
## 14349  1
## 14350  1
## 14351  1
## 14352  1
## 14353  1
## 14354  1
## 14355  1
## 14356  1
## 14357  1
## 14358  1
## 14359  1
## 14360  1
## 14361  1
## 14362  1
## 14363  1
## 14364  1
## 14365  1
## 14366  1
## 14367  1
## 14368  1
## 14369  1
## 14370  1
## 14371  1
## 14372  1
## 14373  1
## 14374  1
## 14375  1
## 14376  1
## 14377  1
## 14378  1
## 14379  1
## 14380  1
## 14381  1
## 14382  1
## 14383  1
## 14384  1
## 14385  1
## 14386  1
## 14387  1
## 14388  1
## 14389  1
## 14390  1
## 14391  1
## 14392  1
## 14393  1
## 14394  1
## 14395  1
## 14396  1
## 14397  1
## 14398  1
## 14399  1
## 14400  1
## 14401  1
## 14402  1
## 14403  1
## 14404  1
## 14405  1
## 14406  1
## 14407  1
## 14408  1
## 14409  1
## 14410  1
## 14411  1
## 14412  1
## 14413  1
## 14414  1
## 14415  1
## 14416  1
## 14417  1
## 14418  1
## 14419  1
## 14420  1
## 14421  1
## 14422  1
## 14423  1
## 14424  1
## 14425  1
## 14426  1
## 14427  1
## 14428  1
## 14429  1
## 14430  1
## 14431  1
## 14432  1
## 14433  1
## 14434  1
## 14435  1
## 14436  1
## 14437  1
## 14438  1
## 14439  1
## 14440  1
## 14441  1
## 14442  1
## 14443  1
## 14444  1
## 14445  1
## 14446  1
## 14447  1
## 14448  1
## 14449  1
## 14450  1
## 14451  1
## 14452  1
## 14453  1
## 14454  1
## 14455  1
## 14456  1
## 14457  1
## 14458  1
## 14459  1
## 14460  1
## 14461  1
## 14462  1
## 14463  1
## 14464  1
## 14465  1
## 14466  1
## 14467  1
## 14468  1
## 14469  1
## 14470  1
## 14471  1
## 14472  1
## 14473  1
## 14474  1
## 14475  1
## 14476  1
## 14477  1
## 14478  1
## 14479  1
## 14480  1
## 14481  1
## 14482  1
## 14483  1
## 14484  1
## 14485  1
## 14486  1
## 14487  1
## 14488  1
## 14489  1
## 14490  1
## 14491  1
## 14492  1
## 14493  1
## 14494  1
## 14495  1
## 14496  1
## 14497  1
## 14498  1
## 14499  1
## 14500  1
## 14501  1
## 14502  1
## 14503  1
## 14504  1
## 14505  1
## 14506  1
## 14507  1
## 14508  1
## 14509  1
## 14510  1
## 14511  1
## 14512  1
## 14513  1
## 14514  1
## 14515  1
## 14516  1
## 14517  1
## 14518  1
## 14519  1
## 14520  1
## 14521  1
## 14522  1
## 14523  1
## 14524  1
## 14525  1
## 14526  1
## 14527  1
## 14528  1
## 14529  1
## 14530  1
## 14531  1
## 14532  1
## 14533  1
## 14534  1
## 14535  1
## 14536  1
## 14537  1
## 14538  1
## 14539  1
## 14540  1
## 14541  1
## 14542  1
## 14543  1
## 14544  1
## 14545  1
## 14546  1
## 14547  1
## 14548  1
## 14549  1
## 14550  1
## 14551  1
## 14552  1
## 14553  1
## 14554  1
## 14555  1
## 14556  1
## 14557  1
## 14558  1
## 14559  1
## 14560  1
## 14561  1
## 14562  1
## 14563  1
## 14564  1
## 14565  1
## 14566  1
## 14567  1
## 14568  1
## 14569  1
## 14570  1
## 14571  1
## 14572  1
## 14573  1
## 14574  1
## 14575  1
## 14576  1
## 14577  1
## 14578  1
## 14579  1
## 14580  1
## 14581  1
## 14582  1
## 14583  1
## 14584  1
## 14585  1
## 14586  1
## 14587  1
## 14588  1
## 14589  1
## 14590  1
## 14591  1
## 14592  1
## 14593  1
## 14594  1
## 14595  1
## 14596  1
## 14597  1
## 14598  1
## 14599  1
## 14600  1
## 14601  1
## 14602  1
## 14603  1
## 14604  1
## 14605  1
## 14606  1
## 14607  1
## 14608  1
## 14609  1
## 14610  1
## 14611  1
## 14612  1
## 14613  1
## 14614  1
## 14615  1
## 14616  1
## 14617  1
## 14618  1
## 14619  1
## 14620  1
## 14621  1
## 14622  1
## 14623  1
## 14624  1
## 14625  1
## 14626  1
## 14627  1
## 14628  1
## 14629  1
## 14630  1
## 14631  1
## 14632  1
## 14633  1
## 14634  1
## 14635  1
## 14636  1
## 14637  1
## 14638  1
## 14639  1
## 14640  1
## 14641  1
## 14642  1
## 14643  1
## 14644  1
## 14645  1
## 14646  1
## 14647  1
## 14648  1
## 14649  1
## 14650  1
## 14651  1
## 14652  1
## 14653  1
## 14654  1
## 14655  1
## 14656  1
## 14657  1
## 14658  1
## 14659  1
## 14660  1
## 14661  1
## 14662  1
## 14663  1
## 14664  1
## 14665  1
## 14666  1
## 14667  1
## 14668  1
## 14669  1
## 14670  1
## 14671  1
## 14672  1
## 14673  1
## 14674  1
## 14675  1
## 14676  1
## 14677  1
## 14678  1
## 14679  1
## 14680  1
## 14681  1
## 14682  1
## 14683  1
## 14684  1
## 14685  1
## 14686  1
## 14687  1
## 14688  1
## 14689  1
## 14690  1
## 14691  1
## 14692  1
## 14693  1
## 14694  1
## 14695  1
## 14696  1
## 14697  1
## 14698  1
## 14699  1
## 14700  1
## 14701  1
## 14702  1
## 14703  1
## 14704  1
## 14705  1
## 14706  1
## 14707  1
## 14708  1
## 14709  1
## 14710  1
## 14711  1
## 14712  1
## 14713  1
## 14714  1
## 14715  1
## 14716  1
## 14717  1
## 14718  1
## 14719  1
## 14720  1
## 14721  1
## 14722  1
## 14723  1
## 14724  1
## 14725  1
## 14726  1
## 14727  1
## 14728  1
## 14729  1
## 14730  1
## 14731  1
## 14732  1
## 14733  1
## 14734  1
## 14735  1
## 14736  1
## 14737  1
## 14738  1
## 14739  1
## 14740  1
## 14741  1
## 14742  1
## 14743  1
## 14744  1
## 14745  1
## 14746  1
## 14747  1
## 14748  1
## 14749  1
## 14750  1
## 14751  1
## 14752  1
## 14753  1
## 14754  1
## 14755  1
## 14756  1
## 14757  1
## 14758  1
## 14759  1
## 14760  1
## 14761  1
## 14762  1
## 14763  1
## 14764  1
## 14765  1
## 14766  1
## 14767  1
## 14768  1
## 14769  1
## 14770  1
## 14771  1
## 14772  1
## 14773  1
## 14774  1
## 14775  1
## 14776  1
## 14777  1
## 14778  1
## 14779  1
## 14780  1
## 14781  1
## 14782  1
## 14783  1
## 14784  1
## 14785  1
## 14786  1
## 14787  1
## 14788  1
## 14789  1
## 14790  1
## 14791  1
## 14792  1
## 14793  1
## 14794  1
## 14795  1
## 14796  1
## 14797  1
## 14798  1
## 14799  1
## 14800  1
## 14801  1
## 14802  1
## 14803  1
## 14804  1
## 14805  1
## 14806  1
## 14807  1
## 14808  1
## 14809  1
## 14810  1
## 14811  1
## 14812  1
## 14813  1
## 14814  1
## 14815  1
## 14816  1
## 14817  1
## 14818  1
## 14819  1
## 14820  1
## 14821  1
## 14822  1
## 14823  1
## 14824  1
## 14825  1
## 14826  1
## 14827  1
## 14828  1
## 14829  1
## 14830  1
## 14831  1
## 14832  1
## 14833  1
## 14834  1
## 14835  1
## 14836  1
## 14837  1
## 14838  1
## 14839  1
## 14840  1
## 14841  1
## 14842  1
## 14843  1
## 14844  1
## 14845  1
## 14846  1
## 14847  1
## 14848  1
## 14849  1
## 14850  1
## 14851  1
## 14852  1
## 14853  1
## 14854  1
## 14855  1
## 14856  1
## 14857  1
## 14858  1
## 14859  1
## 14860  1
## 14861  1
## 14862  1
## 14863  1
## 14864  1
## 14865  1
## 14866  1
## 14867  1
## 14868  1
## 14869  1
## 14870  1
## 14871  1
## 14872  1
## 14873  1
## 14874  1
## 14875  1
## 14876  1
## 14877  1
## 14878  1
## 14879  1
## 14880  1
## 14881  1
## 14882  1
## 14883  1
## 14884  1
## 14885  1
## 14886  1
## 14887  1
## 14888  1
## 14889  1
## 14890  1
## 14891  1
## 14892  1
## 14893  1
## 14894  1
## 14895  1
## 14896  1
## 14897  1
## 14898  1
## 14899  1
## 14900  1
## 14901  1
## 14902  1
## 14903  1
## 14904  1
## 14905  1
## 14906  1
## 14907  1
## 14908  1
## 14909  1
## 14910  1
## 14911  1
## 14912  1
## 14913  1
## 14914  1
## 14915  1
## 14916  1
## 14917  1
## 14918  1
## 14919  1
## 14920  1
## 14921  1
## 14922  1
## 14923  1
## 14924  1
## 14925  1
## 14926  1
## 14927  1
## 14928  1
## 14929  1
## 14930  1
## 14931  1
## 14932  1
## 14933  1
## 14934  1
## 14935  1
## 14936  1
## 14937  1
## 14938  1
## 14939  1
## 14940  1
## 14941  1
## 14942  1
## 14943  1
## 14944  1
## 14945  1
## 14946  1
## 14947  1
## 14948  1
## 14949  1
## 14950  1
## 14951  1
## 14952  1
## 14953  1
## 14954  1
## 14955  1
## 14956  1
## 14957  1
## 14958  1
## 14959  1
## 14960  1
## 14961  1
## 14962  1
## 14963  1
## 14964  1
## 14965  1
## 14966  1
## 14967  1
## 14968  1
## 14969  1
## 14970  1
## 14971  1
## 14972  1
## 14973  1
## 14974  1
## 14975  1
## 14976  1
## 14977  1
## 14978  1
## 14979  1
## 14980  1
## 14981  1
## 14982  1
## 14983  1
## 14984  1
## 14985  1
## 14986  1
## 14987  1
## 14988  1
## 14989  1
## 14990  1
## 14991  1
## 14992  1
## 14993  1
## 14994  1
## 14995  1
## 14996  1
## 14997  1
## 14998  1
## 14999  1
## 15000  1
## 15001  1
## 15002  1
## 15003  1
## 15004  1
## 15005  1
## 15006  1
## 15007  1
## 15008  1
## 15009  1
## 15010  1
## 15011  1
## 15012  1
## 15013  1
## 15014  1
## 15015  1
## 15016  1
## 15017  1
## 15018  1
## 15019  1
## 15020  1
## 15021  1
## 15022  1
## 15023  1
## 15024  1
## 15025  1
## 15026  1
## 15027  1
## 15028  1
## 15029  1
## 15030  1
## 15031  1
## 15032  1
## 15033  1
## 15034  1
## 15035  1
## 15036  1
## 15037  1
## 15038  1
## 15039  1
## 15040  1
## 15041  1
## 15042  1
## 15043  1
## 15044  1
## 15045  1
## 15046  1
## 15047  1
## 15048  1
## 15049  1
## 15050  1
## 15051  1
## 15052  1
## 15053  1
## 15054  1
## 15055  1
## 15056  1
## 15057  1
## 15058  1
## 15059  1
## 15060  1
## 15061  1
## 15062  1
## 15063  1
## 15064  1
## 15065  1
## 15066  1
## 15067  1
## 15068  1
## 15069  1
## 15070  1
## 15071  1
## 15072  1
## 15073  1
## 15074  1
## 15075  1
## 15076  1
## 15077  1
## 15078  1
## 15079  1
## 15080  1
## 15081  1
## 15082  1
## 15083  1
## 15084  1
## 15085  1
## 15086  1
## 15087  1
## 15088  1
## 15089  1
## 15090  1
## 15091  1
## 15092  1
## 15093  1
## 15094  1
## 15095  1
## 15096  1
## 15097  1
## 15098  1
## 15099  1
## 15100  1
## 15101  1
## 15102  1
## 15103  1
## 15104  1
## 15105  1
## 15106  1
## 15107  1
## 15108  1
## 15109  1
## 15110  1
## 15111  1
## 15112  1
## 15113  1
## 15114  1
## 15115  1
## 15116  1
## 15117  1
## 15118  1
## 15119  1
## 15120  1
## 15121  1
## 15122  1
## 15123  1
## 15124  1
## 15125  1
## 15126  1
## 15127  1
## 15128  1
## 15129  1
## 15130  1
## 15131  1
## 15132  1
## 15133  1
## 15134  1
## 15135  1
## 15136  1
## 15137  1
## 15138  1
## 15139  1
## 15140  1
## 15141  1
## 15142  1
## 15143  1
## 15144  1
## 15145  1
## 15146  1
## 15147  1
## 15148  1
## 15149  1
## 15150  1
## 15151  1
## 15152  1
## 15153  1
## 15154  1
## 15155  1
## 15156  1
## 15157  1
## 15158  1
## 15159  1
## 15160  1
## 15161  1
## 15162  1
## 15163  1
## 15164  1
## 15165  1
## 15166  1
## 15167  1
## 15168  1
## 15169  1
## 15170  1
## 15171  1
## 15172  1
## 15173  1
## 15174  1
## 15175  1
## 15176  1
## 15177  1
## 15178  1
## 15179  1
## 15180  1
## 15181  1
## 15182  1
## 15183  1
## 15184  1
## 15185  1
## 15186  1
## 15187  1
## 15188  1
## 15189  1
## 15190  1
## 15191  1
## 15192  1
## 15193  1
## 15194  1
## 15195  1
## 15196  1
## 15197  1
## 15198  1
## 15199  1
## 15200  1
## 15201  1
## 15202  1
## 15203  1
## 15204  1
## 15205  1
## 15206  1
## 15207  1
## 15208  1
## 15209  1
## 15210  1
## 15211  1
## 15212  1
## 15213  1
## 15214  1
## 15215  1
## 15216  1
## 15217  1
## 15218  1
## 15219  1
## 15220  1
## 15221  1
## 15222  1
## 15223  1
## 15224  1
## 15225  1
## 15226  1
## 15227  1
## 15228  1
## 15229  1
## 15230  1
## 15231  1
## 15232  1
## 15233  1
## 15234  1
## 15235  1
## 15236  1
## 15237  1
## 15238  1
## 15239  1
## 15240  1
## 15241  1
## 15242  1
## 15243  1
## 15244  1
## 15245  1
## 15246  1
## 15247  1
## 15248  1
## 15249  1
## 15250  1
## 15251  1
## 15252  1
## 15253  1
## 15254  1
## 15255  1
## 15256  1
## 15257  1
## 15258  1
## 15259  1
## 15260  1
## 15261  1
## 15262  1
## 15263  1
## 15264  1
## 15265  1
## 15266  1
## 15267  1
## 15268  1
## 15269  1
## 15270  1
## 15271  1
## 15272  1
## 15273  1
## 15274  1
## 15275  1
## 15276  1
## 15277  1
## 15278  1
## 15279  1
## 15280  1
## 15281  1
## 15282  1
## 15283  1
## 15284  1
## 15285  1
## 15286  1
## 15287  1
## 15288  1
## 15289  1
## 15290  1
## 15291  1
## 15292  1
## 15293  1
## 15294  1
## 15295  1
## 15296  1
## 15297  1
## 15298  1
## 15299  1
## 15300  1
## 15301  1
## 15302  1
## 15303  1
## 15304  1
## 15305  1
## 15306  1
## 15307  1
## 15308  1
## 15309  1
## 15310  1
## 15311  1
## 15312  1
## 15313  1
## 15314  1
## 15315  1
## 15316  1
## 15317  1
## 15318  1
## 15319  1
## 15320  1
## 15321  1
## 15322  1
## 15323  1
## 15324  1
## 15325  1
## 15326  1
## 15327  1
## 15328  1
## 15329  1
## 15330  1
## 15331  1
## 15332  1
## 15333  1
## 15334  1
## 15335  1
## 15336  1
## 15337  1
## 15338  1
## 15339  1
## 15340  1
## 15341  1
## 15342  1
## 15343  1
## 15344  1
## 15345  1
## 15346  1
## 15347  1
## 15348  1
## 15349  1
## 15350  1
## 15351  1
## 15352  1
## 15353  1
## 15354  1
## 15355  1
## 15356  1
## 15357  1
## 15358  1
## 15359  1
## 15360  1
## 15361  1
## 15362  1
## 15363  1
## 15364  1
## 15365  1
## 15366  1
## 15367  1
## 15368  1
## 15369  1
## 15370  1
## 15371  1
## 15372  1
## 15373  1
## 15374  1
## 15375  1
## 15376  1
## 15377  1
## 15378  1
## 15379  1
## 15380  1
## 15381  1
## 15382  1
## 15383  1
## 15384  1
## 15385  1
## 15386  1
## 15387  1
## 15388  1
## 15389  1
## 15390  1
## 15391  1
## 15392  1
## 15393  1
## 15394  1
## 15395  1
## 15396  1
## 15397  1
## 15398  1
## 15399  1
## 15400  1
## 15401  1
## 15402  1
## 15403  1
## 15404  1
## 15405  1
## 15406  1
## 15407  1
## 15408  1
## 15409  1
## 15410  1
## 15411  1
## 15412  1
## 15413  1
## 15414  1
## 15415  1
## 15416  1
## 15417  1
## 15418  1
## 15419  1
## 15420  1
## 15421  1
## 15422  1
## 15423  1
## 15424  1
## 15425  1
## 15426  1
## 15427  1
## 15428  1
## 15429  1
## 15430  1
## 15431  1
## 15432  1
## 15433  1
## 15434  1
## 15435  1
## 15436  1
## 15437  1
## 15438  1
## 15439  1
## 15440  1
## 15441  1
## 15442  1
## 15443  1
## 15444  1
## 15445  1
## 15446  1
## 15447  1
## 15448  1
## 15449  1
## 15450  1
## 15451  1
## 15452  1
## 15453  1
## 15454  1
## 15455  1
## 15456  1
## 15457  1
## 15458  1
## 15459  1
## 15460  1
## 15461  1
## 15462  1
## 15463  1
## 15464  1
## 15465  1
## 15466  1
## 15467  1
## 15468  1
## 15469  1
## 15470  1
## 15471  1
## 15472  1
## 15473  1
## 15474  1
## 15475  1
## 15476  1
## 15477  1
## 15478  1
## 15479  1
## 15480  1
## 15481  1
## 15482  1
## 15483  1
## 15484  1
## 15485  1
## 15486  1
## 15487  1
## 15488  1
## 15489  1
## 15490  1
## 15491  1
## 15492  1
## 15493  1
## 15494  1
## 15495  1
## 15496  1
## 15497  1
## 15498  1
## 15499  1
## 15500  1
## 15501  1
## 15502  1
## 15503  1
## 15504  1
## 15505  1
## 15506  1
## 15507  1
## 15508  1
## 15509  1
## 15510  1
## 15511  1
## 15512  1
## 15513  1
## 15514  1
## 15515  1
## 15516  1
## 15517  1
## 15518  1
## 15519  1
## 15520  1
## 15521  1
## 15522  1
## 15523  1
## 15524  1
## 15525  1
## 15526  1
## 15527  1
## 15528  1
## 15529  1
## 15530  1
## 15531  1
## 15532  1
## 15533  1
## 15534  1
## 15535  1
## 15536  1
## 15537  1
## 15538  1
## 15539  1
## 15540  1
## 15541  1
## 15542  1
## 15543  1
## 15544  1
## 15545  1
## 15546  1
## 15547  1
## 15548  1
## 15549  1
## 15550  1
## 15551  1
## 15552  1
## 15553  1
## 15554  1
## 15555  1
## 15556  1
## 15557  1
## 15558  1
## 15559  1
## 15560  1
## 15561  1
## 15562  1
## 15563  1
## 15564  1
## 15565  1
## 15566  1
## 15567  1
## 15568  1
## 15569  1
## 15570  1
## 15571  1
## 15572  1
## 15573  1
## 15574  1
## 15575  1
## 15576  1
## 15577  1
## 15578  1
## 15579  1
## 15580  1
## 15581  1
## 15582  1
## 15583  1
## 15584  1
## 15585  1
## 15586  1
## 15587  1
## 15588  1
## 15589  1
## 15590  1
## 15591  1
## 15592  1
## 15593  1
## 15594  1
## 15595  1
## 15596  1
## 15597  1
## 15598  1
## 15599  1
## 15600  1
## 15601  1
## 15602  1
## 15603  1
## 15604  1
## 15605  1
## 15606  1
## 15607  1
## 15608  1
## 15609  1
## 15610  1
## 15611  1
## 15612  1
## 15613  1
## 15614  1
## 15615  1
## 15616  1
## 15617  1
## 15618  1
## 15619  1
## 15620  1
## 15621  1
## 15622  1
## 15623  1
## 15624  1
## 15625  1
## 15626  1
## 15627  1
## 15628  1
## 15629  1
## 15630  1
## 15631  1
## 15632  1
## 15633  1
## 15634  1
## 15635  1
## 15636  1
## 15637  1
## 15638  1
## 15639  1
## 15640  1
## 15641  1
## 15642  1
## 15643  1
## 15644  1
## 15645  1
## 15646  1
## 15647  1
## 15648  1
## 15649  1
## 15650  1
## 15651  1
## 15652  1
## 15653  1
## 15654  1
## 15655  1
## 15656  1
## 15657  1
## 15658  1
## 15659  1
## 15660  1
## 15661  1
## 15662  1
## 15663  1
## 15664  1
## 15665  1
## 15666  1
## 15667  1
## 15668  1
## 15669  1
## 15670  1
## 15671  1
## 15672  1
## 15673  1
## 15674  1
## 15675  1
## 15676  1
## 15677  1
## 15678  1
## 15679  1
## 15680  1
## 15681  1
## 15682  1
## 15683  1
## 15684  1
## 15685  1
## 15686  1
## 15687  1
## 15688  1
## 15689  1
## 15690  1
## 15691  1
## 15692  1
## 15693  1
## 15694  1
## 15695  1
## 15696  1
## 15697  1
## 15698  1
## 15699  1
## 15700  1
## 15701  1
## 15702  1
## 15703  1
## 15704  1
## 15705  1
## 15706  1
## 15707  1
## 15708  1
## 15709  1
## 15710  1
## 15711  1
## 15712  1
## 15713  1
## 15714  1
## 15715  1
## 15716  1
## 15717  1
## 15718  1
## 15719  1
## 15720  1
## 15721  1
## 15722  1
## 15723  1
## 15724  1
## 15725  1
## 15726  1
## 15727  1
## 15728  1
## 15729  1
## 15730  1
## 15731  1
## 15732  1
## 15733  1
## 15734  1
## 15735  1
## 15736  1
## 15737  1
## 15738  1
## 15739  1
## 15740  1
## 15741  1
## 15742  1
## 15743  1
## 15744  1
## 15745  1
## 15746  1
## 15747  1
## 15748  1
## 15749  1
## 15750  1
## 15751  1
## 15752  1
## 15753  1
## 15754  1
## 15755  1
## 15756  1
## 15757  1
## 15758  1
## 15759  1
## 15760  1
## 15761  1
## 15762  1
## 15763  1
## 15764  1
## 15765  1
## 15766  1
## 15767  1
## 15768  1
## 15769  1
## 15770  1
## 15771  1
## 15772  1
## 15773  1
## 15774  1
## 15775  1
## 15776  1
## 15777  1
## 15778  1
## 15779  1
## 15780  1
## 15781  1
## 15782  1
## 15783  1
## 15784  1
## 15785  1
## 15786  1
## 15787  1
## 15788  1
## 15789  1
## 15790  1
## 15791  1
## 15792  1
## 15793  1
## 15794  1
## 15795  1
## 15796  1
## 15797  1
## 15798  1
## 15799  1
## 15800  1
## 15801  1
## 15802  1
## 15803  1
## 15804  1
## 15805  1
## 15806  1
## 15807  1
## 15808  1
## 15809  1
## 15810  1
## 15811  1
## 15812  1
## 15813  1
## 15814  1
## 15815  1
## 15816  1
## 15817  1
## 15818  1
## 15819  1
## 15820  1
## 15821  1
## 15822  1
## 15823  1
## 15824  1
## 15825  1
## 15826  1
## 15827  1
## 15828  1
## 15829  1
## 15830  1
## 15831  1
## 15832  1
## 15833  1
## 15834  1
## 15835  1
## 15836  1
## 15837  1
## 15838  1
## 15839  1
## 15840  1
## 15841  1
## 15842  1
## 15843  1
## 15844  1
## 15845  1
## 15846  1
## 15847  1
## 15848  1
## 15849  1
## 15850  1
## 15851  1
## 15852  1
## 15853  1
## 15854  1
## 15855  1
## 15856  1
## 15857  1
## 15858  1
## 15859  1
## 15860  1
## 15861  1
## 15862  1
## 15863  1
## 15864  1
## 15865  1
## 15866  1
## 15867  1
## 15868  1
## 15869  1
## 15870  1
## 15871  1
## 15872  1
## 15873  1
## 15874  1
## 15875  1
## 15876  1
## 15877  1
## 15878  1
## 15879  1
## 15880  1
## 15881  1
## 15882  1
## 15883  1
## 15884  1
## 15885  1
## 15886  1
## 15887  1
## 15888  1
## 15889  1
## 15890  1
## 15891  1
## 15892  1
## 15893  1
## 15894  1
## 15895  1
## 15896  1
## 15897  1
## 15898  1
## 15899  1
## 15900  1
## 15901  1
## 15902  1
## 15903  1
## 15904  1
## 15905  1
## 15906  1
## 15907  1
## 15908  1
## 15909  1
## 15910  1
## 15911  1
## 15912  1
## 15913  1
## 15914  1
## 15915  1
## 15916  1
## 15917  1
## 15918  1
## 15919  1
## 15920  1
## 15921  1
## 15922  1
## 15923  1
## 15924  1
## 15925  1
## 15926  1
## 15927  1
## 15928  1
## 15929  1
## 15930  1
## 15931  1
## 15932  1
## 15933  1
## 15934  1
## 15935  1
## 15936  1
## 15937  1
## 15938  1
## 15939  1
## 15940  1
## 15941  1
## 15942  1
## 15943  1
## 15944  1
## 15945  1
## 15946  1
## 15947  1
## 15948  1
## 15949  1
## 15950  1
## 15951  1
## 15952  1
## 15953  1
## 15954  1
## 15955  1
## 15956  1
## 15957  1
## 15958  1
## 15959  1
## 15960  1
## 15961  1
## 15962  1
## 15963  1
## 15964  1
## 15965  1
## 15966  1
## 15967  1
## 15968  1
## 15969  1
## 15970  1
## 15971  1
## 15972  1
## 15973  1
## 15974  1
## 15975  1
## 15976  1
## 15977  1
## 15978  1
## 15979  1
## 15980  1
## 15981  1
## 15982  1
## 15983  1
## 15984  1
## 15985  1
## 15986  1
## 15987  1
## 15988  1
## 15989  1
## 15990  1
## 15991  1
## 15992  1
## 15993  1
## 15994  1
## 15995  1
## 15996  1
## 15997  1
## 15998  1
## 15999  1
## 16000  1
## 16001  1
## 16002  1
## 16003  1
## 16004  1
## 16005  1
## 16006  1
## 16007  1
## 16008  1
## 16009  1
## 16010  1
## 16011  1
## 16012  1
## 16013  1
## 16014  1
## 16015  1
## 16016  1
## 16017  1
## 16018  1
## 16019  1
## 16020  1
## 16021  1
## 16022  1
## 16023  1
## 16024  1
## 16025  1
## 16026  1
## 16027  1
## 16028  1
## 16029  1
## 16030  1
## 16031  1
## 16032  1
## 16033  1
## 16034  1
## 16035  1
## 16036  1
## 16037  1
## 16038  1
## 16039  1
## 16040  1
## 16041  1
## 16042  1
## 16043  1
## 16044  1
## 16045  1
## 16046  1
## 16047  1
## 16048  1
## 16049  1
## 16050  1
## 16051  1
## 16052  1
## 16053  1
## 16054  1
## 16055  1
## 16056  1
## 16057  1
## 16058  1
## 16059  1
## 16060  1
## 16061  1
## 16062  1
## 16063  1
## 16064  1
## 16065  1
## 16066  1
## 16067  1
## 16068  1
## 16069  1
## 16070  1
## 16071  1
## 16072  1
## 16073  1
## 16074  1
## 16075  1
## 16076  1
## 16077  1
## 16078  1
## 16079  1
## 16080  1
## 16081  1
## 16082  1
## 16083  1
## 16084  1
## 16085  1
## 16086  1
## 16087  1
## 16088  1
## 16089  1
## 16090  1
## 16091  1
## 16092  1
## 16093  1
## 16094  1
## 16095  1
## 16096  1
## 16097  1
## 16098  1
## 16099  1
## 16100  1
## 16101  1
## 16102  1
## 16103  1
## 16104  1
## 16105  1
## 16106  1
## 16107  1
## 16108  1
## 16109  1
## 16110  1
## 16111  1
## 16112  1
## 16113  1
## 16114  1
## 16115  1
## 16116  1
## 16117  1
## 16118  1
## 16119  1
## 16120  1
## 16121  1
## 16122  1
## 16123  1
## 16124  1
## 16125  1
## 16126  1
## 16127  1
## 16128  1
## 16129  1
## 16130  1
## 16131  1
## 16132  1
## 16133  1
## 16134  1
## 16135  1
## 16136  1
## 16137  1
## 16138  1
## 16139  1
## 16140  1
## 16141  1
## 16142  1
## 16143  1
## 16144  1
## 16145  1
## 16146  1
## 16147  1
## 16148  1
## 16149  1
## 16150  1
## 16151  1
## 16152  1
## 16153  1
## 16154  1
## 16155  1
## 16156  1
## 16157  1
## 16158  1
## 16159  1
## 16160  1
## 16161  1
## 16162  1
## 16163  1
## 16164  1
## 16165  1
## 16166  1
## 16167  1
## 16168  1
## 16169  1
## 16170  1
## 16171  1
## 16172  1
## 16173  1
## 16174  1
## 16175  1
## 16176  1
## 16177  1
## 16178  1
## 16179  1
## 16180  1
## 16181  1
## 16182  1
## 16183  1
## 16184  1
## 16185  1
## 16186  1
## 16187  1
## 16188  1
## 16189  1
## 16190  1
## 16191  1
## 16192  1
## 16193  1
## 16194  1
## 16195  1
## 16196  1
## 16197  1
## 16198  1
## 16199  1
## 16200  1
## 16201  1
## 16202  1
## 16203  1
## 16204  1
## 16205  1
## 16206  1
## 16207  1
## 16208  1
## 16209  1
## 16210  1
## 16211  1
## 16212  1
## 16213  1
## 16214  1
## 16215  1
## 16216  1
## 16217  1
## 16218  1
## 16219  1
## 16220  1
## 16221  1
## 16222  1
## 16223  1
## 16224  1
## 16225  1
## 16226  1
## 16227  1
## 16228  1
## 16229  1
## 16230  1
## 16231  1
## 16232  1
## 16233  1
## 16234  1
## 16235  1
## 16236  1
## 16237  1
## 16238  1
## 16239  1
## 16240  1
## 16241  1
## 16242  1
## 16243  1
## 16244  1
## 16245  1
## 16246  1
## 16247  1
## 16248  1
## 16249  1
## 16250  1
## 16251  1
## 16252  1
## 16253  1
## 16254  1
## 16255  1
## 16256  1
## 16257  1
## 16258  1
## 16259  1
## 16260  1
## 16261  1
## 16262  1
## 16263  1
## 16264  1
## 16265  1
## 16266  1
## 16267  1
## 16268  1
## 16269  1
## 16270  1
## 16271  1
## 16272  1
## 16273  1
## 16274  1
## 16275  1
## 16276  1
## 16277  1
## 16278  1
## 16279  1
## 16280  1
## 16281  1
## 16282  1
## 16283  1
## 16284  1
## 16285  1
## 16286  1
## 16287  1
## 16288  1
## 16289  1
## 16290  1
## 16291  1
## 16292  1
## 16293  1
## 16294  1
## 16295  1
## 16296  1
## 16297  1
## 16298  1
## 16299  1
## 16300  1
## 16301  1
## 16302  1
## 16303  1
## 16304  1
## 16305  1
## 16306  1
## 16307  1
## 16308  1
## 16309  1
## 16310  1
## 16311  1
## 16312  1
## 16313  1
## 16314  1
## 16315  1
## 16316  1
## 16317  1
## 16318  1
## 16319  1
## 16320  1
## 16321  1
## 16322  1
## 16323  1
## 16324  1
## 16325  1
## 16326  1
## 16327  1
## 16328  1
## 16329  1
## 16330  1
## 16331  1
## 16332  1
## 16333  1
## 16334  1
## 16335  1
## 16336  1
## 16337  1
## 16338  1
## 16339  1
## 16340  1
## 16341  1
## 16342  1
## 16343  1
## 16344  1
## 16345  1
## 16346  1
## 16347  1
## 16348  1
## 16349  1
## 16350  1
## 16351  1
## 16352  1
## 16353  1
## 16354  1
## 16355  1
## 16356  1
## 16357  1
## 16358  1
## 16359  1
## 16360  1
## 16361  1
## 16362  1
## 16363  1
## 16364  1
## 16365  1
## 16366  1
## 16367  1
## 16368  1
## 16369  1
## 16370  1
## 16371  1
## 16372  1
## 16373  1
## 16374  1
## 16375  1
## 16376  1
## 16377  1
## 16378  1
## 16379  1
## 16380  1
## 16381  1
## 16382  1
## 16383  1
## 16384  1
## 16385  1
## 16386  1
## 16387  1
## 16388  1
## 16389  1
## 16390  1
## 16391  1
## 16392  1
## 16393  1
## 16394  1
## 16395  1
## 16396  1
## 16397  1
## 16398  1
## 16399  1
## 16400  1
## 16401  1
## 16402  1
## 16403  1
## 16404  1
## 16405  1
## 16406  1
## 16407  1
## 16408  1
## 16409  1
## 16410  1
## 16411  1
## 16412  1
## 16413  1
## 16414  1
## 16415  1
## 16416  1
## 16417  1
## 16418  1
## 16419  1
## 16420  1
## 16421  1
## 16422  1
## 16423  1
## 16424  1
## 16425  1
## 16426  1
## 16427  1
## 16428  1
## 16429  1
## 16430  1
## 16431  1
## 16432  1
## 16433  1
## 16434  1
## 16435  1
## 16436  1
## 16437  1
## 16438  1
## 16439  1
## 16440  1
## 16441  1
## 16442  1
## 16443  1
## 16444  1
## 16445  1
## 16446  1
## 16447  1
## 16448  1
## 16449  1
## 16450  1
## 16451  1
## 16452  1
## 16453  1
## 16454  1
## 16455  1
## 16456  1
## 16457  1
## 16458  1
## 16459  1
## 16460  1
## 16461  1
## 16462  1
## 16463  1
## 16464  1
## 16465  1
## 16466  1
## 16467  1
## 16468  1
## 16469  1
## 16470  1
## 16471  1
## 16472  1
## 16473  1
## 16474  1
## 16475  1
## 16476  1
## 16477  1
## 16478  1
## 16479  1
## 16480  1
## 16481  1
## 16482  1
## 16483  1
## 16484  1
## 16485  1
## 16486  1
## 16487  1
## 16488  1
## 16489  1
## 16490  1
## 16491  1
## 16492  1
## 16493  1
## 16494  1
## 16495  1
## 16496  1
## 16497  1
## 16498  1
## 16499  1
## 16500  1
## 16501  1
## 16502  1
## 16503  1
## 16504  1
## 16505  1
## 16506  1
## 16507  1
## 16508  1
## 16509  1
## 16510  1
## 16511  1
## 16512  1
## 16513  1
## 16514  1
## 16515  1
## 16516  1
## 16517  1
## 16518  1
## 16519  1
## 16520  1
## 16521  1
## 16522  1
## 16523  1
## 16524  1
## 16525  1
## 16526  1
## 16527  1
## 16528  1
## 16529  1
## 16530  1
## 16531  1
## 16532  1
## 16533  1
## 16534  1
## 16535  1
## 16536  1
## 16537  1
## 16538  1
## 16539  1
## 16540  1
## 16541  1
## 16542  1
## 16543  1
## 16544  1
## 16545  1
## 16546  1
## 16547  1
## 16548  1
## 16549  1
## 16550  1
## 16551  1
## 16552  1
## 16553  1
## 16554  1
## 16555  1
## 16556  1
## 16557  1
## 16558  1
## 16559  1
## 16560  1
## 16561  1
## 16562  1
## 16563  1
## 16564  1
## 16565  1
## 16566  1
## 16567  1
## 16568  1
## 16569  1
## 16570  1
## 16571  1
## 16572  1
## 16573  1
## 16574  1
## 16575  1
## 16576  1
## 16577  1
## 16578  1
## 16579  1
## 16580  1
## 16581  1
## 16582  1
## 16583  1
## 16584  1
## 16585  1
## 16586  1
## 16587  1
## 16588  1
## 16589  1
## 16590  1
## 16591  1
## 16592  1
## 16593  1
## 16594  1
## 16595  1
## 16596  1
## 16597  1
## 16598  1
## 16599  1
## 16600  1
## 16601  1
## 16602  1
## 16603  1
## 16604  1
## 16605  1
## 16606  1
## 16607  1
## 16608  1
## 16609  1
## 16610  1
## 16611  1
## 16612  1
## 16613  1
## 16614  1
## 16615  1
## 16616  1
## 16617  1
## 16618  1
## 16619  1
## 16620  1
## 16621  1
## 16622  1
## 16623  1
## 16624  1
## 16625  1
## 16626  1
## 16627  1
## 16628  1
## 16629  1
## 16630  1
## 16631  1
## 16632  1
## 16633  1
## 16634  1
## 16635  1
## 16636  1
## 16637  1
## 16638  1
## 16639  1
## 16640  1
## 16641  1
## 16642  1
## 16643  1
## 16644  1
## 16645  1
## 16646  1
## 16647  1
## 16648  1
## 16649  1
## 16650  1
## 16651  1
## 16652  1
## 16653  1
## 16654  1
## 16655  1
## 16656  1
## 16657  1
## 16658  1
## 16659  1
## 16660  1
## 16661  1
## 16662  1
## 16663  1
## 16664  1
## 16665  1
## 16666  1
## 16667  1
## 16668  1
## 16669  1
## 16670  1
## 16671  1
## 16672  1
## 16673  1
## 16674  1
## 16675  1
## 16676  1
## 16677  1
## 16678  1
## 16679  1
## 16680  1
## 16681  1
## 16682  1
## 16683  1
## 16684  1
## 16685  1
## 16686  1
## 16687  1
## 16688  1
## 16689  1
## 16690  1
## 16691  1
## 16692  1
## 16693  1
## 16694  1
## 16695  1
## 16696  1
## 16697  1
## 16698  1
## 16699  1
## 16700  1
## 16701  1
## 16702  1
## 16703  1
## 16704  1
## 16705  1
## 16706  1
## 16707  1
## 16708  1
## 16709  1
## 16710  1
## 16711  1
## 16712  1
## 16713  1
## 16714  1
## 16715  1
## 16716  1
## 16717  1
## 16718  1
## 16719  1
## 16720  1
## 16721  1
## 16722  1
## 16723  1
## 16724  1
## 16725  1
## 16726  1
## 16727  1
## 16728  1
## 16729  1
## 16730  1
## 16731  1
## 16732  1
## 16733  1
## 16734  1
## 16735  1
## 16736  1
## 16737  1
## 16738  1
## 16739  1
## 16740  1
## 16741  1
## 16742  1
## 16743  1
## 16744  1
## 16745  1
## 16746  1
## 16747  1
## 16748  1
## 16749  1
## 16750  1
## 16751  1
## 16752  1
## 16753  1
## 16754  1
## 16755  1
## 16756  1
## 16757  1
## 16758  1
## 16759  1
## 16760  1
## 16761  1
## 16762  1
## 16763  1
## 16764  1
## 16765  1
## 16766  1
## 16767  1
## 16768  1
## 16769  1
## 16770  1
## 16771  1
## 16772  1
## 16773  1
## 16774  1
## 16775  1
## 16776  1
## 16777  1
## 16778  1
## 16779  1
## 16780  1
## 16781  1
## 16782  1
## 16783  1
## 16784  1
## 16785  1
## 16786  1
## 16787  1
## 16788  1
## 16789  1
## 16790  1
## 16791  1
## 16792  1
## 16793  1
## 16794  1
## 16795  1
## 16796  1
## 16797  1
## 16798  1
## 16799  1
## 16800  1
## 16801  1
## 16802  1
## 16803  1
## 16804  1
## 16805  1
## 16806  1
## 16807  1
## 16808  1
## 16809  1
## 16810  1
## 16811  1
## 16812  1
## 16813  1
## 16814  1
## 16815  1
## 16816  1
## 16817  1
## 16818  1
## 16819  1
## 16820  1
## 16821  1
## 16822  1
## 16823  1
## 16824  1
## 16825  1
## 16826  1
## 16827  1
## 16828  1
## 16829  1
## 16830  1
## 16831  1
## 16832  1
## 16833  1
## 16834  1
## 16835  1
## 16836  1
## 16837  1
## 16838  1
## 16839  1
## 16840  1
## 16841  1
## 16842  1
## 16843  1
## 16844  1
## 16845  1
## 16846  1
## 16847  1
## 16848  1
## 16849  1
## 16850  1
## 16851  1
## 16852  1
## 16853  1
## 16854  1
## 16855  1
## 16856  1
## 16857  1
## 16858  1
## 16859  1
## 16860  1
## 16861  1
## 16862  1
## 16863  1
## 16864  1
## 16865  1
## 16866  1
## 16867  1
## 16868  1
## 16869  1
## 16870  1
## 16871  1
## 16872  1
## 16873  1
## 16874  1
## 16875  1
## 16876  1
## 16877  1
## 16878  1
## 16879  1
## 16880  1
## 16881  1
## 16882  1
## 16883  1
## 16884  1
## 16885  1
## 16886  1
## 16887  1
## 16888  1
## 16889  1
## 16890  1
## 16891  1
## 16892  1
## 16893  1
## 16894  1
## 16895  1
## 16896  1
## 16897  1
## 16898  1
## 16899  1
## 16900  1
## 16901  1
## 16902  1
## 16903  1
## 16904  1
## 16905  1
## 16906  1
## 16907  1
## 16908  1
## 16909  1
## 16910  1
## 16911  1
## 16912  1
## 16913  1
## 16914  1
## 16915  1
## 16916  1
## 16917  1
## 16918  1
## 16919  1
## 16920  1
## 16921  1
## 16922  1
## 16923  1
## 16924  1
## 16925  1
## 16926  1
## 16927  1
## 16928  1
## 16929  1
## 16930  1
## 16931  1
## 16932  1
## 16933  1
## 16934  1
## 16935  1
## 16936  1
## 16937  1
## 16938  1
## 16939  1
## 16940  1
## 16941  1
## 16942  1
## 16943  1
## 16944  1
## 16945  1
## 16946  1
## 16947  1
## 16948  1
## 16949  1
## 16950  1
## 16951  1
## 16952  1
## 16953  1
## 16954  1
## 16955  1
## 16956  1
## 16957  1
## 16958  1
## 16959  1
## 16960  1
## 16961  1
## 16962  1
## 16963  1
## 16964  1
## 16965  1
## 16966  1
## 16967  1
## 16968  1
## 16969  1
## 16970  1
## 16971  1
## 16972  1
## 16973  1
## 16974  1
## 16975  1
## 16976  1
## 16977  1
## 16978  1
## 16979  1
## 16980  1
## 16981  1
## 16982  1
## 16983  1
## 16984  1
## 16985  1
## 16986  1
## 16987  1
## 16988  1
## 16989  1
## 16990  1
## 16991  1
## 16992  1
## 16993  1
## 16994  1
## 16995  1
## 16996  1
## 16997  1
## 16998  1
## 16999  1
## 17000  1
## 17001  1
## 17002  1
## 17003  1
## 17004  1
## 17005  1
## 17006  1
## 17007  1
## 17008  1
## 17009  1
## 17010  1
## 17011  1
## 17012  1
## 17013  1
## 17014  1
## 17015  1
## 17016  1
## 17017  1
## 17018  1
## 17019  1
## 17020  1
## 17021  1
## 17022  1
## 17023  1
## 17024  1
## 17025  1
## 17026  1
## 17027  1
## 17028  1
## 17029  1
## 17030  1
## 17031  1
## 17032  1
## 17033  1
## 17034  1
## 17035  1
## 17036  1
## 17037  1
## 17038  1
## 17039  1
## 17040  1
## 17041  1
## 17042  1
## 17043  1
## 17044  1
## 17045  1
## 17046  1
## 17047  1
## 17048  1
## 17049  1
## 17050  1
## 17051  1
## 17052  1
## 17053  1
## 17054  1
## 17055  1
## 17056  1
## 17057  1
## 17058  1
## 17059  1
## 17060  1
## 17061  1
## 17062  1
## 17063  1
## 17064  1
## 17065  1
## 17066  1
## 17067  1
## 17068  1
## 17069  1
## 17070  1
## 17071  1
## 17072  1
## 17073  1
## 17074  1
## 17075  1
## 17076  1
## 17077  1
## 17078  1
## 17079  1
## 17080  1
## 17081  1
## 17082  1
## 17083  1
## 17084  1
## 17085  1
## 17086  1
## 17087  1
## 17088  1
## 17089  1
## 17090  1
## 17091  1
## 17092  1
## 17093  1
## 17094  1
## 17095  1
## 17096  1
## 17097  1
## 17098  1
## 17099  1
## 17100  1
## 17101  1
## 17102  1
## 17103  1
## 17104  1
## 17105  1
## 17106  1
## 17107  1
## 17108  1
## 17109  1
## 17110  1
## 17111  1
## 17112  1
## 17113  1
## 17114  1
## 17115  1
## 17116  1
## 17117  1
## 17118  1
## 17119  1
## 17120  1
## 17121  1
## 17122  1
## 17123  1
## 17124  1
## 17125  1
## 17126  1
## 17127  1
## 17128  1
## 17129  1
## 17130  1
## 17131  1
## 17132  1
## 17133  1
## 17134  1
## 17135  1
## 17136  1
## 17137  1
## 17138  1
## 17139  1
## 17140  1
## 17141  1
## 17142  1
## 17143  1
## 17144  1
## 17145  1
## 17146  1
## 17147  1
## 17148  1
## 17149  1
## 17150  1
## 17151  1
## 17152  1
## 17153  1
## 17154  1
## 17155  1
## 17156  1
## 17157  1
## 17158  1
## 17159  1
## 17160  1
## 17161  1
## 17162  1
## 17163  1
## 17164  1
## 17165  1
## 17166  1
## 17167  1
## 17168  1
## 17169  1
## 17170  1
## 17171  1
## 17172  1
## 17173  1
## 17174  1
## 17175  1
## 17176  1
## 17177  1
## 17178  1
## 17179  1
## 17180  1
## 17181  1
## 17182  1
## 17183  1
## 17184  1
## 17185  1
## 17186  1
## 17187  1
## 17188  1
## 17189  1
## 17190  1
## 17191  1
## 17192  1
## 17193  1
## 17194  1
## 17195  1
## 17196  1
## 17197  1
## 17198  1
## 17199  1
## 17200  1
## 17201  1
## 17202  1
## 17203  1
## 17204  1
## 17205  1
## 17206  1
## 17207  1
## 17208  1
## 17209  1
## 17210  1
## 17211  1
## 17212  1
## 17213  1
## 17214  1
## 17215  1
## 17216  1
## 17217  1
## 17218  1
## 17219  1
## 17220  1
## 17221  1
## 17222  1
## 17223  1
## 17224  1
## 17225  1
## 17226  1
## 17227  1
## 17228  1
## 17229  1
## 17230  1
## 17231  1
## 17232  1
## 17233  1
## 17234  1
## 17235  1
## 17236  1
## 17237  1
## 17238  1
## 17239  1
## 17240  1
## 17241  1
## 17242  1
## 17243  1
## 17244  1
## 17245  1
## 17246  1
## 17247  1
## 17248  1
## 17249  1
## 17250  1
## 17251  1
## 17252  1
## 17253  1
## 17254  1
## 17255  1
## 17256  1
## 17257  1
## 17258  1
## 17259  1
## 17260  1
## 17261  1
## 17262  1
## 17263  1
## 17264  1
## 17265  1
## 17266  1
## 17267  1
## 17268  1
## 17269  1
## 17270  1
## 17271  1
## 17272  1
## 17273  1
## 17274  1
## 17275  1
## 17276  1
## 17277  1
## 17278  1
## 17279  1
## 17280  1
## 17281  1
## 17282  1
## 17283  1
## 17284  1
## 17285  1
## 17286  1
## 17287  1
## 17288  1
## 17289  1
## 17290  1
## 17291  1
## 17292  1
## 17293  1
## 17294  1
## 17295  1
## 17296  1
## 17297  1
## 17298  1
## 17299  1
## 17300  1
## 17301  1
## 17302  1
## 17303  1
## 17304  1
## 17305  1
## 17306  1
## 17307  1
## 17308  1
## 17309  1
## 17310  1
## 17311  1
## 17312  1
## 17313  1
## 17314  1
## 17315  1
## 17316  1
## 17317  1
## 17318  1
## 17319  1
## 17320  1
## 17321  1
## 17322  1
## 17323  1
## 17324  1
## 17325  1
## 17326  1
## 17327  1
## 17328  1
## 17329  1
## 17330  1
## 17331  1
## 17332  1
## 17333  1
## 17334  1
## 17335  1
## 17336  1
## 17337  1
## 17338  1
## 17339  1
## 17340  1
## 17341  1
## 17342  1
## 17343  1
## 17344  1
## 17345  1
## 17346  1
## 17347  1
## 17348  1
## 17349  1
## 17350  1
## 17351  1
## 17352  1
## 17353  1
## 17354  1
## 17355  1
## 17356  1
## 17357  1
## 17358  1
## 17359  1
## 17360  1
## 17361  1
## 17362  1
## 17363  1
## 17364  1
## 17365  1
## 17366  1
## 17367  1
## 17368  1
## 17369  1
## 17370  1
## 17371  1
## 17372  1
## 17373  1
## 17374  1
## 17375  1
## 17376  1
## 17377  1
## 17378  1
## 17379  1
## 17380  1
## 17381  1
## 17382  1
## 17383  1
## 17384  1
## 17385  1
## 17386  1
## 17387  1
## 17388  1
## 17389  1
## 17390  1
## 17391  1
## 17392  1
## 17393  1
## 17394  1
## 17395  1
## 17396  1
## 17397  1
## 17398  1
## 17399  1
## 17400  1
## 17401  1
## 17402  1
## 17403  1
## 17404  1
## 17405  1
## 17406  1
## 17407  1
## 17408  1
## 17409  1
## 17410  1
## 17411  1
## 17412  1
## 17413  1
## 17414  1
## 17415  1
## 17416  1
## 17417  1
## 17418  1
## 17419  1
## 17420  1
## 17421  1
## 17422  1
## 17423  1
## 17424  1
## 17425  1
## 17426  1
## 17427  1
## 17428  1
## 17429  1
## 17430  1
## 17431  1
## 17432  1
## 17433  1
## 17434  1
## 17435  1
## 17436  1
## 17437  1
## 17438  1
## 17439  1
## 17440  1
## 17441  1
## 17442  1
## 17443  1
## 17444  1
## 17445  1
## 17446  1
## 17447  1
## 17448  1
## 17449  1
## 17450  1
## 17451  1
## 17452  1
## 17453  1
## 17454  1
## 17455  1
## 17456  1
## 17457  1
## 17458  1
## 17459  1
## 17460  1
## 17461  1
## 17462  1
## 17463  1
## 17464  1
## 17465  1
## 17466  1
## 17467  1
## 17468  1
## 17469  1
## 17470  1
## 17471  1
## 17472  1
## 17473  1
## 17474  1
## 17475  1
## 17476  1
## 17477  1
## 17478  1
## 17479  1
## 17480  1
## 17481  1
## 17482  1
## 17483  1
## 17484  1
## 17485  1
## 17486  1
## 17487  1
## 17488  1
## 17489  1
## 17490  1
## 17491  1
## 17492  1
## 17493  1
## 17494  1
## 17495  1
## 17496  1
## 17497  1
## 17498  1
## 17499  1
## 17500  1
## 17501  1
## 17502  1
## 17503  1
## 17504  1
## 17505  1
## 17506  1
## 17507  1
## 17508  1
## 17509  1
## 17510  1
## 17511  1
## 17512  1
## 17513  1
## 17514  1
## 17515  1
## 17516  1
## 17517  1
## 17518  1
## 17519  1
## 17520  1
## 17521  1
## 17522  1
## 17523  1
## 17524  1
## 17525  1
## 17526  1
## 17527  1
## 17528  1
## 17529  1
## 17530  1
## 17531  1
## 17532  1
## 17533  1
## 17534  1
## 17535  1
## 17536  1
## 17537  1
## 17538  1
## 17539  1
## 17540  1
## 17541  1
## 17542  1
## 17543  1
## 17544  1
## 17545  1
## 17546  1
## 17547  1
## 17548  1
## 17549  1
## 17550  1
## 17551  1
## 17552  1
## 17553  1
## 17554  1
## 17555  1
## 17556  1
## 17557  1
## 17558  1
## 17559  1
## 17560  1
## 17561  1
## 17562  1
## 17563  1
## 17564  1
## 17565  1
## 17566  1
## 17567  1
## 17568  1
## 17569  1
## 17570  1
## 17571  1
## 17572  1
## 17573  1
## 17574  1
## 17575  1
## 17576  1
## 17577  1
## 17578  1
## 17579  1
## 17580  1
## 17581  1
## 17582  1
## 17583  1
## 17584  1
## 17585  1
## 17586  1
## 17587  1
## 17588  1
## 17589  1
## 17590  1
## 17591  1
## 17592  1
## 17593  1
## 17594  1
## 17595  1
## 17596  1
## 17597  1
## 17598  1
## 17599  1
## 17600  1
## 17601  1
## 17602  1
## 17603  1
## 17604  1
## 17605  1
## 17606  1
## 17607  1
## 17608  1
## 17609  1
## 17610  1
## 17611  1
## 17612  1
## 17613  1
## 17614  1
## 17615  1
## 17616  1
## 17617  1
## 17618  1
## 17619  1
## 17620  1
## 17621  1
## 17622  1
## 17623  1
## 17624  1
## 17625  1
## 17626  1
## 17627  1
## 17628  1
## 17629  1
## 17630  1
## 17631  1
## 17632  1
## 17633  1
## 17634  1
## 17635  1
## 17636  1
## 17637  1
## 17638  1
## 17639  1
## 17640  1
## 17641  1
## 17642  1
## 17643  1
## 17644  1
## 17645  1
## 17646  1
## 17647  1
## 17648  1
## 17649  1
## 17650  1
## 17651  1
## 17652  1
## 17653  1
## 17654  1
## 17655  1
## 17656  1
## 17657  1
## 17658  1
## 17659  1
## 17660  1
## 17661  1
## 17662  1
## 17663  1
## 17664  1
## 17665  1
## 17666  1
## 17667  1
## 17668  1
## 17669  1
## 17670  1
## 17671  1
## 17672  1
## 17673  1
## 17674  1
## 17675  1
## 17676  1
## 17677  1
## 17678  1
## 17679  1
## 17680  1
## 17681  1
## 17682  1
## 17683  1
## 17684  1
## 17685  1
## 17686  1
## 17687  1
## 17688  1
## 17689  1
## 17690  1
## 17691  1
## 17692  1
## 17693  1
## 17694  1
## 17695  1
## 17696  1
## 17697  1
## 17698  1
## 17699  1
## 17700  1
## 17701  1
## 17702  1
## 17703  1
## 17704  1
## 17705  1
## 17706  1
## 17707  1
## 17708  1
## 17709  1
## 17710  1
## 17711  1
## 17712  1
## 17713  1
## 17714  1
## 17715  1
## 17716  1
## 17717  1
## 17718  1
## 17719  1
## 17720  1
## 17721  1
## 17722  1
## 17723  1
## 17724  1
## 17725  1
## 17726  1
## 17727  1
## 17728  1
## 17729  1
## 17730  1
## 17731  1
## 17732  1
## 17733  1
## 17734  1
## 17735  1
## 17736  1
## 17737  1
## 17738  1
## 17739  1
## 17740  1
## 17741  1
## 17742  1
## 17743  1
## 17744  1
## 17745  1
## 17746  1
## 17747  1
## 17748  1
## 17749  1
## 17750  1
## 17751  1
## 17752  1
## 17753  1
## 17754  1
## 17755  1
## 17756  1
## 17757  1
## 17758  1
## 17759  1
## 17760  1
## 17761  1
## 17762  1
## 17763  1
## 17764  1
## 17765  1
## 17766  1
## 17767  1
## 17768  1
## 17769  1
## 17770  1
## 17771  1
## 17772  1
## 17773  1
## 17774  1
## 17775  1
## 17776  1
## 17777  1
## 17778  1
## 17779  1
## 17780  1
## 17781  1
## 17782  1
## 17783  1
## 17784  1
## 17785  1
## 17786  1
## 17787  1
## 17788  1
## 17789  1
## 17790  1
## 17791  1
## 17792  1
## 17793  1
## 17794  1
## 17795  1
## 17796  1
## 17797  1
## 17798  1
## 17799  1
## 17800  1
## 17801  1
## 17802  1
## 17803  1
## 17804  1
## 17805  1
## 17806  1
## 17807  1
## 17808  1
## 17809  1
## 17810  1
## 17811  1
## 17812  1
## 17813  1
## 17814  1
## 17815  1
## 17816  1
## 17817  1
## 17818  1
## 17819  1
## 17820  1
## 17821  1
## 17822  1
## 17823  1
## 17824  1
## 17825  1
## 17826  1
## 17827  1
## 17828  1
## 17829  1
## 17830  1
## 17831  1
## 17832  1
## 17833  1
## 17834  1
## 17835  1
## 17836  1
## 17837  1
## 17838  1
## 17839  1
## 17840  1
## 17841  1
## 17842  1
## 17843  1
## 17844  1
## 17845  1
## 17846  1
## 17847  1
## 17848  1
## 17849  1
## 17850  1
## 17851  1
## 17852  1
## 17853  1
## 17854  1
## 17855  1
## 17856  1
## 17857  1
## 17858  1
## 17859  1
## 17860  1
## 17861  1
## 17862  1
## 17863  1
## 17864  1
## 17865  1
## 17866  1
## 17867  1
## 17868  1
## 17869  1
## 17870  1
## 17871  1
## 17872  1
## 17873  1
## 17874  1
## 17875  1
## 17876  1
## 17877  1
## 17878  1
## 17879  1
## 17880  1
## 17881  1
## 17882  1
## 17883  1
## 17884  1
## 17885  1
## 17886  1
## 17887  1
## 17888  1
## 17889  1
## 17890  1
## 17891  1
## 17892  1
## 17893  1
## 17894  1
## 17895  1
## 17896  1
## 17897  1
## 17898  1
## 17899  1
## 17900  1
## 17901  1
## 17902  1
## 17903  1
## 17904  1
## 17905  1
## 17906  1
## 17907  1
## 17908  1
## 17909  1
## 17910  1
## 17911  1
## 17912  1
## 17913  1
## 17914  1
## 17915  1
## 17916  1
## 17917  1
## 17918  1
## 17919  1
## 17920  1
## 17921  1
## 17922  1
## 17923  1
## 17924  1
## 17925  1
## 17926  1
## 17927  1
## 17928  1
## 17929  1
## 17930  1
## 17931  1
## 17932  1
## 17933  1
## 17934  1
## 17935  1
## 17936  1
## 17937  1
## 17938  1
## 17939  1
## 17940  1
## 17941  1
## 17942  1
## 17943  1
## 17944  1
## 17945  1
## 17946  1
## 17947  1
## 17948  1
## 17949  1
## 17950  1
## 17951  1
## 17952  1
## 17953  1
## 17954  1
## 17955  1
## 17956  1
## 17957  1
## 17958  1
## 17959  1
## 17960  1
## 17961  1
## 17962  1
## 17963  1
## 17964  1
## 17965  1
## 17966  1
## 17967  1
## 17968  1
## 17969  1
## 17970  1
## 17971  1
## 17972  1
## 17973  1
## 17974  1
## 17975  1
## 17976  1
## 17977  1
## 17978  1
## 17979  1
## 17980  1
## 17981  1
## 17982  1
## 17983  1
## 17984  1
## 17985  1
## 17986  1
## 17987  1
## 17988  1
## 17989  1
## 17990  1
## 17991  1
## 17992  1
## 17993  1
## 17994  1
## 17995  1
## 17996  1
## 17997  1
## 17998  1
## 17999  1
## 18000  1
## 18001  1
## 18002  1
## 18003  1
## 18004  1
## 18005  1
## 18006  1
## 18007  1
## 18008  1
## 18009  1
## 18010  1
## 18011  1
## 18012  1
## 18013  1
## 18014  1
## 18015  1
## 18016  1
## 18017  1
## 18018  1
## 18019  1
## 18020  1
## 18021  1
## 18022  1
## 18023  1
## 18024  1
## 18025  1
## 18026  1
## 18027  1
## 18028  1
## 18029  1
## 18030  1
## 18031  1
## 18032  1
## 18033  1
## 18034  1
## 18035  1
## 18036  1
## 18037  1
## 18038  1
## 18039  1
## 18040  1
## 18041  1
## 18042  1
## 18043  1
## 18044  1
## 18045  1
## 18046  1
## 18047  1
## 18048  1
## 18049  1
## 18050  1
## 18051  1
## 18052  1
## 18053  1
## 18054  1
## 18055  1
## 18056  1
## 18057  1
## 18058  1
## 18059  1
## 18060  1
## 18061  1
## 18062  1
## 18063  1
## 18064  1
## 18065  1
## 18066  1
## 18067  1
## 18068  1
## 18069  1
## 18070  1
## 18071  1
## 18072  1
## 18073  1
## 18074  1
## 18075  1
## 18076  1
## 18077  1
## 18078  1
## 18079  1
## 18080  1
## 18081  1
## 18082  1
## 18083  1
## 18084  1
## 18085  1
## 18086  1
## 18087  1
## 18088  1
## 18089  1
## 18090  1
## 18091  1
## 18092  1
## 18093  1
## 18094  1
## 18095  1
## 18096  1
## 18097  1
## 18098  1
## 18099  1
## 18100  1
## 18101  1
## 18102  1
## 18103  1
## 18104  1
## 18105  1
## 18106  1
## 18107  1
## 18108  1
## 18109  1
## 18110  1
## 18111  1
## 18112  1
## 18113  1
## 18114  1
## 18115  1
## 18116  1
## 18117  1
## 18118  1
## 18119  1
## 18120  1
## 18121  1
## 18122  1
## 18123  1
## 18124  1
## 18125  1
## 18126  1
## 18127  1
## 18128  1
## 18129  1
## 18130  1
## 18131  1
## 18132  1
## 18133  1
## 18134  1
## 18135  1
## 18136  1
## 18137  1
## 18138  1
## 18139  1
## 18140  1
## 18141  1
## 18142  1
## 18143  1
## 18144  1
## 18145  1
## 18146  1
## 18147  1
## 18148  1
## 18149  1
## 18150  1
## 18151  1
## 18152  1
## 18153  1
## 18154  1
## 18155  1
## 18156  1
## 18157  1
## 18158  1
## 18159  1
## 18160  1
## 18161  1
## 18162  1
## 18163  1
## 18164  1
## 18165  1
## 18166  1
## 18167  1
## 18168  1
## 18169  1
## 18170  1
## 18171  1
## 18172  1
## 18173  1
## 18174  1
## 18175  1
## 18176  1
## 18177  1
## 18178  1
## 18179  1
## 18180  1
## 18181  1
## 18182  1
## 18183  1
## 18184  1
## 18185  1
## 18186  1
## 18187  1
## 18188  1
## 18189  1
## 18190  1
## 18191  1
## 18192  1
## 18193  1
## 18194  1
## 18195  1
## 18196  1
## 18197  1
## 18198  1
## 18199  1
## 18200  1
## 18201  1
## 18202  1
## 18203  1
## 18204  1
## 18205  1
## 18206  1
## 18207  1
## 18208  1
## 18209  1
## 18210  1
## 18211  1
## 18212  1
## 18213  1
## 18214  1
## 18215  1
## 18216  1
## 18217  1
## 18218  1
## 18219  1
## 18220  1
## 18221  1
## 18222  1
## 18223  1
## 18224  1
## 18225  1
## 18226  1
## 18227  1
## 18228  1
## 18229  1
## 18230  1
## 18231  1
## 18232  1
## 18233  1
## 18234  1
## 18235  1
## 18236  1
## 18237  1
## 18238  1
## 18239  1
## 18240  1
## 18241  1
## 18242  1
## 18243  1
## 18244  1
## 18245  1
## 18246  1
## 18247  1
## 18248  1
## 18249  1
## 18250  1
## 18251  1
## 18252  1
## 18253  1
## 18254  1
## 18255  1
## 18256  1
## 18257  1
## 18258  1
## 18259  1
## 18260  1
## 18261  1
## 18262  1
## 18263  1
## 18264  1
## 18265  1
## 18266  1
## 18267  1
## 18268  1
## 18269  1
## 18270  1
## 18271  1
## 18272  1
## 18273  1
## 18274  1
## 18275  1
## 18276  1
## 18277  1
## 18278  1
## 18279  1
## 18280  1
## 18281  1
## 18282  1
## 18283  1
## 18284  1
## 18285  1
## 18286  1
## 18287  1
## 18288  1
## 18289  1
## 18290  1
## 18291  1
## 18292  1
## 18293  1
## 18294  1
## 18295  1
## 18296  1
## 18297  1
## 18298  1
## 18299  1
## 18300  1
## 18301  1
## 18302  1
## 18303  1
## 18304  1
## 18305  1
## 18306  1
## 18307  1
## 18308  1
## 18309  1
## 18310  1
## 18311  1
## 18312  1
## 18313  1
## 18314  1
## 18315  1
## 18316  1
## 18317  1
## 18318  1
## 18319  1
## 18320  1
## 18321  1
## 18322  1
## 18323  1
## 18324  1
## 18325  1
## 18326  1
## 18327  1
## 18328  1
## 18329  1
## 18330  1
## 18331  1
## 18332  1
## 18333  1
## 18334  1
## 18335  1
## 18336  1
## 18337  1
## 18338  1
## 18339  1
## 18340  1
## 18341  1
## 18342  1
## 18343  1
## 18344  1
## 18345  1
## 18346  1
## 18347  1
## 18348  1
## 18349  1
## 18350  1
## 18351  1
## 18352  1
## 18353  1
## 18354  1
## 18355  1
## 18356  1
## 18357  1
## 18358  1
## 18359  1
## 18360  1
## 18361  1
## 18362  1
## 18363  1
## 18364  1
## 18365  1
## 18366  1
## 18367  1
## 18368  1
## 18369  1
## 18370  1
## 18371  1
## 18372  1
## 18373  1
## 18374  1
## 18375  1
## 18376  1
## 18377  1
## 18378  1
## 18379  1
## 18380  1
## 18381  1
## 18382  1
## 18383  1
## 18384  1
## 18385  1
## 18386  1
## 18387  1
## 18388  1
## 18389  1
## 18390  1
## 18391  1
## 18392  1
## 18393  1
## 18394  1
## 18395  1
## 18396  1
## 18397  1
## 18398  1
## 18399  1
## 18400  1
## 18401  1
## 18402  1
## 18403  1
## 18404  1
## 18405  1
## 18406  1
## 18407  1
## 18408  1
## 18409  1
## 18410  1
## 18411  1
## 18412  1
## 18413  1
## 18414  1
## 18415  1
## 18416  1
## 18417  1
## 18418  1
## 18419  1
## 18420  1
## 18421  1
## 18422  1
## 18423  1
## 18424  1
## 18425  1
## 18426  1
## 18427  1
## 18428  1
## 18429  1
## 18430  1
## 18431  1
## 18432  1
## 18433  1
## 18434  1
## 18435  1
## 18436  1
## 18437  1
## 18438  1
## 18439  1
## 18440  1
## 18441  1
## 18442  1
## 18443  1
## 18444  1
## 18445  1
## 18446  1
## 18447  1
## 18448  1
## 18449  1
## 18450  1
## 18451  1
## 18452  1
## 18453  1
## 18454  1
## 18455  1
## 18456  1
## 18457  1
## 18458  1
## 18459  1
## 18460  1
## 18461  1
## 18462  1
## 18463  1
## 18464  1
## 18465  1
## 18466  1
## 18467  1
## 18468  1
## 18469  1
## 18470  1
## 18471  1
## 18472  1
## 18473  1
## 18474  1
## 18475  1
## 18476  1
## 18477  1
## 18478  1
## 18479  1
## 18480  1
## 18481  1
## 18482  1
## 18483  1
## 18484  1
## 18485  1
## 18486  1
## 18487  1
## 18488  1
## 18489  1
## 18490  1
## 18491  1
## 18492  1
## 18493  1
## 18494  1
## 18495  1
## 18496  1
## 18497  1
## 18498  1
## 18499  1
## 18500  1
## 18501  1
## 18502  1
## 18503  1
## 18504  1
## 18505  1
## 18506  1
## 18507  1
## 18508  1
## 18509  1
## 18510  1
## 18511  1
## 18512  1
## 18513  1
## 18514  1
## 18515  1
## 18516  1
## 18517  1
## 18518  1
## 18519  1
## 18520  1
## 18521  1
## 18522  1
## 18523  1
## 18524  1
## 18525  1
## 18526  1
## 18527  1
## 18528  1
## 18529  1
## 18530  1
## 18531  1
## 18532  1
## 18533  1
## 18534  1
## 18535  1
## 18536  1
## 18537  1
## 18538  1
## 18539  1
## 18540  1
## 18541  1
## 18542  1
## 18543  1
## 18544  1
## 18545  1
## 18546  1
## 18547  1
## 18548  1
## 18549  1
## 18550  1
## 18551  1
## 18552  1
## 18553  1
## 18554  1
## 18555  1
## 18556  1
## 18557  1
## 18558  1
## 18559  1
## 18560  1
## 18561  1
## 18562  1
## 18563  1
## 18564  1
## 18565  1
## 18566  1
## 18567  1
## 18568  1
## 18569  1
## 18570  1
## 18571  1
## 18572  1
## 18573  1
## 18574  1
## 18575  1
## 18576  1
## 18577  1
## 18578  1
## 18579  1
## 18580  1
## 18581  1
## 18582  1
## 18583  1
## 18584  1
## 18585  1
## 18586  1
## 18587  1
## 18588  1
## 18589  1
## 18590  1
## 18591  1
## 18592  1
## 18593  1
## 18594  1
## 18595  1
## 18596  1
## 18597  1
## 18598  1
## 18599  1
## 18600  1
## 18601  1
## 18602  1
## 18603  1
## 18604  1
## 18605  1
## 18606  1
## 18607  1
## 18608  1
## 18609  1
## 18610  1
## 18611  1
## 18612  1
## 18613  1
## 18614  1
## 18615  1
## 18616  1
## 18617  1
## 18618  1
## 18619  1
## 18620  1
## 18621  1
## 18622  1
## 18623  1
## 18624  1
## 18625  1
## 18626  1
## 18627  1
## 18628  1
## 18629  1
## 18630  1
## 18631  1
## 18632  1
## 18633  1
## 18634  1
## 18635  1
## 18636  1
## 18637  1
## 18638  1
## 18639  1
## 18640  1
## 18641  1
## 18642  1
## 18643  1
## 18644  1
## 18645  1
## 18646  1
## 18647  1
## 18648  1
## 18649  1
## 18650  1
## 18651  1
## 18652  1
## 18653  1
## 18654  1
## 18655  1
## 18656  1
## 18657  1
## 18658  1
## 18659  1
## 18660  1
## 18661  1
## 18662  1
## 18663  1
## 18664  1
## 18665  1
## 18666  1
## 18667  1
## 18668  1
## 18669  1
## 18670  1
## 18671  1
## 18672  1
## 18673  1
## 18674  1
## 18675  1
## 18676  1
## 18677  1
## 18678  1
## 18679  1
## 18680  1
## 18681  1
## 18682  1
## 18683  1
## 18684  1
## 18685  1
## 18686  1
## 18687  1
## 18688  1
## 18689  1
## 18690  1
## 18691  1
## 18692  1
## 18693  1
## 18694  1
## 18695  1
## 18696  1
## 18697  1
## 18698  1
## 18699  1
## 18700  1
## 18701  1
## 18702  1
## 18703  1
## 18704  1
## 18705  1
## 18706  1
## 18707  1
## 18708  1
## 18709  1
## 18710  1
## 18711  1
## 18712  1
## 18713  1
## 18714  1
## 18715  1
## 18716  1
## 18717  1
## 18718  1
## 18719  1
## 18720  1
## 18721  1
## 18722  1
## 18723  1
## 18724  1
## 18725  1
## 18726  1
## 18727  1
## 18728  1
## 18729  1
## 18730  1
## 18731  1
## 18732  1
## 18733  1
## 18734  1
## 18735  1
## 18736  1
## 18737  1
## 18738  1
## 18739  1
## 18740  1
## 18741  1
## 18742  1
## 18743  1
## 18744  1
## 18745  1
## 18746  1
## 18747  1
## 18748  1
## 18749  1
## 18750  1
## 18751  1
## 18752  1
## 18753  1
## 18754  1
## 18755  1
## 18756  1
## 18757  1
## 18758  1
## 18759  1
## 18760  1
## 18761  1
## 18762  1
## 18763  1
## 18764  1
## 18765  1
## 18766  1
## 18767  1
## 18768  1
## 18769  1
## 18770  1
## 18771  1
## 18772  1
## 18773  1
## 18774  1
## 18775  1
## 18776  1
## 18777  1
## 18778  1
## 18779  1
## 18780  1
## 18781  1
## 18782  1
## 18783  1
## 18784  1
## 18785  1
## 18786  1
## 18787  1
## 18788  1
## 18789  1
## 18790  1
## 18791  1
## 18792  1
## 18793  1
## 18794  1
## 18795  1
## 18796  1
## 18797  1
## 18798  1
## 18799  1
## 18800  1
## 18801  1
## 18802  1
## 18803  1
## 18804  1
## 18805  1
## 18806  1
## 18807  1
## 18808  1
## 18809  1
## 18810  1
## 18811  1
## 18812  1
## 18813  1
## 18814  1
## 18815  1
## 18816  1
## 18817  1
## 18818  1
## 18819  1
## 18820  1
## 18821  1
## 18822  1
## 18823  1
## 18824  1
## 18825  1
## 18826  1
## 18827  1
## 18828  1
## 18829  1
## 18830  1
## 18831  1
## 18832  1
## 18833  1
## 18834  1
## 18835  1
## 18836  1
## 18837  1
## 18838  1
## 18839  1
## 18840  1
## 18841  1
## 18842  1
## 18843  1
## 18844  1
## 18845  1
## 18846  1
## 18847  1
## 18848  1
## 18849  1
## 18850  1
## 18851  1
## 18852  1
## 18853  1
## 18854  1
## 18855  1
## 18856  1
## 18857  1
## 18858  1
## 18859  1
## 18860  1
## 18861  1
## 18862  1
## 18863  1
## 18864  1
## 18865  1
## 18866  1
## 18867  1
## 18868  1
## 18869  1
## 18870  1
## 18871  1
## 18872  1
## 18873  1
## 18874  1
## 18875  1
## 18876  1
## 18877  1
## 18878  1
## 18879  1
## 18880  1
## 18881  1
## 18882  1
## 18883  1
## 18884  1
## 18885  1
## 18886  1
## 18887  1
## 18888  1
## 18889  1
## 18890  1
## 18891  1
## 18892  1
## 18893  1
## 18894  1
## 18895  1
## 18896  1
## 18897  1
## 18898  1
## 18899  1
## 18900  1
## 18901  1
## 18902  1
## 18903  1
## 18904  1
## 18905  1
## 18906  1
## 18907  1
## 18908  1
## 18909  1
## 18910  1
## 18911  1
## 18912  1
## 18913  1
## 18914  1
## 18915  1
## 18916  1
## 18917  1
## 18918  1
## 18919  1
## 18920  1
## 18921  1
## 18922  1
## 18923  1
## 18924  1
## 18925  1
## 18926  1
## 18927  1
## 18928  1
## 18929  1
## 18930  1
## 18931  1
## 18932  1
## 18933  1
## 18934  1
## 18935  1
## 18936  1
## 18937  1
## 18938  1
## 18939  1
## 18940  1
## 18941  1
## 18942  1
## 18943  1
## 18944  1
## 18945  1
## 18946  1
## 18947  1
## 18948  1
## 18949  1
## 18950  1
## 18951  1
## 18952  1
## 18953  1
## 18954  1
## 18955  1
## 18956  1
## 18957  1
## 18958  1
## 18959  1
## 18960  1
## 18961  1
## 18962  1
## 18963  1
## 18964  1
## 18965  1
## 18966  1
## 18967  1
## 18968  1
## 18969  1
## 18970  1
## 18971  1
## 18972  1
## 18973  1
## 18974  1
## 18975  1
## 18976  1
## 18977  1
## 18978  1
## 18979  1
## 18980  1
## 18981  1
## 18982  1
## 18983  1
## 18984  1
## 18985  1
## 18986  1
## 18987  1
## 18988  1
## 18989  1
## 18990  1
## 18991  1
## 18992  1
## 18993  1
## 18994  1
## 18995  1
## 18996  1
## 18997  1
## 18998  1
## 18999  1
## 19000  1
## 19001  1
## 19002  1
## 19003  1
## 19004  1
## 19005  1
## 19006  1
## 19007  1
## 19008  1
## 19009  1
## 19010  1
## 19011  1
## 19012  1
## 19013  1
## 19014  1
## 19015  1
## 19016  1
## 19017  1
## 19018  1
## 19019  1
## 19020  1
## 19021  1
## 19022  1
## 19023  1
## 19024  1
## 19025  1
## 19026  1
## 19027  1
## 19028  1
## 19029  1
## 19030  1
## 19031  1
## 19032  1
## 19033  1
## 19034  1
## 19035  1
## 19036  1
## 19037  1
## 19038  1
## 19039  1
## 19040  1
## 19041  1
## 19042  1
## 19043  1
## 19044  1
## 19045  1
## 19046  1
## 19047  1
## 19048  1
## 19049  1
## 19050  1
## 19051  1
## 19052  1
## 19053  1
## 19054  1
## 19055  1
## 19056  1
## 19057  1
## 19058  1
## 19059  1
## 19060  1
## 19061  1
## 19062  1
## 19063  1
## 19064  1
## 19065  1
## 19066  1
## 19067  1
## 19068  1
## 19069  1
## 19070  1
## 19071  1
## 19072  1
## 19073  1
## 19074  1
## 19075  1
## 19076  1
## 19077  1
## 19078  1
## 19079  1
## 19080  1
## 19081  1
## 19082  1
## 19083  1
## 19084  1
## 19085  1
## 19086  1
## 19087  1
## 19088  1
## 19089  1
## 19090  1
## 19091  1
## 19092  1
## 19093  1
## 19094  1
## 19095  1
## 19096  1
## 19097  1
## 19098  1
## 19099  1
## 19100  1
## 19101  1
## 19102  1
## 19103  1
## 19104  1
## 19105  1
## 19106  1
## 19107  1
## 19108  1
## 19109  1
## 19110  1
## 19111  1
## 19112  1
## 19113  1
## 19114  1
## 19115  1
## 19116  1
## 19117  1
## 19118  1
## 19119  1
## 19120  1
## 19121  1
## 19122  1
## 19123  1
## 19124  1
## 19125  1
## 19126  1
## 19127  1
## 19128  1
## 19129  1
## 19130  1
## 19131  1
## 19132  1
## 19133  1
## 19134  1
## 19135  1
## 19136  1
## 19137  1
## 19138  1
## 19139  1
## 19140  1
## 19141  1
## 19142  1
## 19143  1
## 19144  1
## 19145  1
## 19146  1
## 19147  1
## 19148  1
## 19149  1
## 19150  1
## 19151  1
## 19152  1
## 19153  1
## 19154  1
## 19155  1
## 19156  1
## 19157  1
## 19158  1
## 19159  1
## 19160  1
## 19161  1
## 19162  1
## 19163  1
## 19164  1
## 19165  1
## 19166  1
## 19167  1
## 19168  1
## 19169  1
## 19170  1
## 19171  1
## 19172  1
## 19173  1
## 19174  1
## 19175  1
## 19176  1
## 19177  1
## 19178  1
## 19179  1
## 19180  1
## 19181  1
## 19182  1
## 19183  1
## 19184  1
## 19185  1
## 19186  1
## 19187  1
## 19188  1
## 19189  1
## 19190  1
## 19191  1
## 19192  1
## 19193  1
## 19194  1
## 19195  1
## 19196  1
## 19197  1
## 19198  1
## 19199  1
## 19200  1
## 19201  1
## 19202  1
## 19203  1
## 19204  1
## 19205  1
## 19206  1
## 19207  1
## 19208  1
## 19209  1
## 19210  1
## 19211  1
## 19212  1
## 19213  1
## 19214  1
## 19215  1
## 19216  1
## 19217  1
## 19218  1
## 19219  1
## 19220  1
## 19221  1
## 19222  1
## 19223  1
## 19224  1
## 19225  1
## 19226  1
## 19227  1
## 19228  1
## 19229  1
## 19230  1
## 19231  1
## 19232  1
## 19233  1
## 19234  1
## 19235  1
## 19236  1
## 19237  1
## 19238  1
## 19239  1
## 19240  1
## 19241  1
## 19242  1
## 19243  1
## 19244  1
## 19245  1
## 19246  1
## 19247  1
## 19248  1
## 19249  1
## 19250  1
## 19251  1
## 19252  1
## 19253  1
## 19254  1
## 19255  1
## 19256  1
## 19257  1
## 19258  1
## 19259  1
## 19260  1
## 19261  1
## 19262  1
## 19263  1
## 19264  1
## 19265  1
## 19266  1
## 19267  1
## 19268  1
## 19269  1
## 19270  1
## 19271  1
## 19272  1
## 19273  1
## 19274  1
## 19275  1
## 19276  1
## 19277  1
## 19278  1
## 19279  1
## 19280  1
## 19281  1
## 19282  1
## 19283  1
## 19284  1
## 19285  1
## 19286  1
## 19287  1
## 19288  1
## 19289  1
## 19290  1
## 19291  1
## 19292  1
## 19293  1
## 19294  1
## 19295  1
## 19296  1
## 19297  1
## 19298  1
## 19299  1
## 19300  1
## 19301  1
## 19302  1
## 19303  1
## 19304  1
## 19305  1
## 19306  1
## 19307  1
## 19308  1
## 19309  1
## 19310  1
## 19311  1
## 19312  1
## 19313  1
## 19314  1
## 19315  1
## 19316  1
## 19317  1
## 19318  1
## 19319  1
## 19320  1
## 19321  1
## 19322  1
## 19323  1
## 19324  1
## 19325  1
## 19326  1
## 19327  1
## 19328  1
## 19329  1
## 19330  1
## 19331  1
## 19332  1
## 19333  1
## 19334  1
## 19335  1
## 19336  1
## 19337  1
## 19338  1
## 19339  1
## 19340  1
## 19341  1
## 19342  1
## 19343  1
## 19344  1
## 19345  1
## 19346  1
## 19347  1
## 19348  1
## 19349  1
## 19350  1
## 19351  1
## 19352  1
## 19353  1
## 19354  1
## 19355  1
## 19356  1
## 19357  1
## 19358  1
## 19359  1
## 19360  1
## 19361  1
## 19362  1
## 19363  1
## 19364  1
## 19365  1
## 19366  1
## 19367  1
## 19368  1
## 19369  1
## 19370  1
## 19371  1
## 19372  1
## 19373  1
## 19374  1
## 19375  1
## 19376  1
## 19377  1
## 19378  1
## 19379  1
## 19380  1
## 19381  1
## 19382  1
## 19383  1
## 19384  1
## 19385  1
## 19386  1
## 19387  1
## 19388  1
## 19389  1
## 19390  1
## 19391  1
## 19392  1
## 19393  1
## 19394  1
## 19395  1
## 19396  1
## 19397  1
## 19398  1
## 19399  1
## 19400  1
## 19401  1
## 19402  1
## 19403  1
## 19404  1
## 19405  1
## 19406  1
## 19407  1
## 19408  1
## 19409  1
## 19410  1
## 19411  1
## 19412  1
## 19413  1
## 19414  1
## 19415  1
## 19416  1
## 19417  1
## 19418  1
## 19419  1
## 19420  1
## 19421  1
## 19422  1
## 19423  1
## 19424  1
## 19425  1
## 19426  1
## 19427  1
## 19428  1
## 19429  1
## 19430  1
## 19431  1
## 19432  1
## 19433  1
## 19434  1
## 19435  1
## 19436  1
## 19437  1
## 19438  1
## 19439  1
## 19440  1
## 19441  1
## 19442  1
## 19443  1
## 19444  1
## 19445  1
## 19446  1
## 19447  1
## 19448  1
## 19449  1
## 19450  1
## 19451  1
## 19452  1
## 19453  1
## 19454  1
## 19455  1
## 19456  1
## 19457  1
## 19458  1
## 19459  1
## 19460  1
## 19461  1
## 19462  1
## 19463  1
## 19464  1
## 19465  1
## 19466  1
## 19467  1
## 19468  1
## 19469  1
## 19470  1
## 19471  1
## 19472  1
## 19473  1
## 19474  1
## 19475  1
## 19476  1
## 19477  1
## 19478  1
## 19479  1
## 19480  1
## 19481  1
## 19482  1
## 19483  1
## 19484  1
## 19485  1
## 19486  1
## 19487  1
## 19488  1
## 19489  1
## 19490  1
## 19491  1
## 19492  1
## 19493  1
## 19494  1
## 19495  1
## 19496  1
## 19497  1
## 19498  1
## 19499  1
## 19500  1
## 19501  1
## 19502  1
## 19503  1
## 19504  1
## 19505  1
## 19506  1
## 19507  1
## 19508  1
## 19509  1
## 19510  1
## 19511  1
## 19512  1
## 19513  1
## 19514  1
## 19515  1
## 19516  1
## 19517  1
## 19518  1
## 19519  1
## 19520  1
## 19521  1
## 19522  1
## 19523  1
## 19524  1
## 19525  1
## 19526  1
## 19527  1
## 19528  1
## 19529  1
## 19530  1
## 19531  1
## 19532  1
## 19533  1
## 19534  1
## 19535  1
## 19536  1
## 19537  1
## 19538  1
## 19539  1
## 19540  1
## 19541  1
## 19542  1
## 19543  1
## 19544  1
## 19545  1
## 19546  1
## 19547  1
## 19548  1
## 19549  1
## 19550  1
## 19551  1
## 19552  1
## 19553  1
## 19554  1
## 19555  1
## 19556  1
## 19557  1
## 19558  1
## 19559  1
## 19560  1
## 19561  1
## 19562  1
## 19563  1
## 19564  1
## 19565  1
## 19566  1
## 19567  1
## 19568  1
## 19569  1
## 19570  1
## 19571  1
## 19572  1
## 19573  1
## 19574  1
## 19575  1
## 19576  1
## 19577  1
## 19578  1
## 19579  1
## 19580  1
## 19581  1
## 19582  1
## 19583  1
## 19584  1
## 19585  1
## 19586  1
## 19587  1
## 19588  1
## 19589  1
## 19590  1
## 19591  1
## 19592  1
## 19593  1
## 19594  1
## 19595  1
## 19596  1
## 19597  1
## 19598  1
## 19599  1
## 19600  1
## 19601  1
## 19602  1
## 19603  1
## 19604  1
## 19605  1
## 19606  1
## 19607  1
## 19608  1
## 19609  1
## 19610  1
## 19611  1
## 19612  1
## 19613  1
## 19614  1
## 19615  1
## 19616  1
## 19617  1
## 19618  1
## 19619  1
## 19620  1
## 19621  1
## 19622  1
## 19623  1
## 19624  1
## 19625  1
## 19626  1
## 19627  1
## 19628  1
## 19629  1
## 19630  1
## 19631  1
## 19632  1
## 19633  1
## 19634  1
## 19635  1
## 19636  1
## 19637  1
## 19638  1
## 19639  1
## 19640  1
## 19641  1
## 19642  1
## 19643  1
## 19644  1
## 19645  1
## 19646  1
## 19647  1
## 19648  1
## 19649  1
## 19650  1
## 19651  1
## 19652  1
## 19653  1
## 19654  1
## 19655  1
## 19656  1
## 19657  1
## 19658  1
## 19659  1
## 19660  1
## 19661  1
## 19662  1
## 19663  1
## 19664  1
## 19665  1
## 19666  1
## 19667  1
## 19668  1
## 19669  1
## 19670  1
## 19671  1
## 19672  1
## 19673  1
## 19674  1
## 19675  1
## 19676  1
## 19677  1
## 19678  1
## 19679  1
## 19680  1
## 19681  1
## 19682  1
## 19683  1
## 19684  1
## 19685  1
## 19686  1
## 19687  1
## 19688  1
## 19689  1
## 19690  1
## 19691  1
## 19692  1
## 19693  1
## 19694  1
## 19695  1
## 19696  1
## 19697  1
## 19698  1
## 19699  1
## 19700  1
## 19701  1
## 19702  1
## 19703  1
## 19704  1
## 19705  1
## 19706  1
## 19707  1
## 19708  1
## 19709  1
## 19710  1
## 19711  1
## 19712  1
## 19713  1
## 19714  1
## 19715  1
## 19716  1
## 19717  1
## 19718  1
## 19719  1
## 19720  1
## 19721  1
## 19722  1
## 19723  1
## 19724  1
## 19725  1
## 19726  1
## 19727  1
## 19728  1
## 19729  1
## 19730  1
## 19731  1
## 19732  1
## 19733  1
## 19734  1
## 19735  1
## 19736  1
## 19737  1
## 19738  1
## 19739  1
## 19740  1
## 19741  1
## 19742  1
## 19743  1
## 19744  1
## 19745  1
## 19746  1
## 19747  1
## 19748  1
## 19749  1
## 19750  1
## 19751  1
## 19752  1
## 19753  1
## 19754  1
## 19755  1
## 19756  1
## 19757  1
## 19758  1
## 19759  1
## 19760  1
## 19761  1
## 19762  1
## 19763  1
## 19764  1
## 19765  1
## 19766  1
## 19767  1
## 19768  1
## 19769  1
## 19770  1
## 19771  1
## 19772  1
## 19773  1
## 19774  1
## 19775  1
## 19776  1
## 19777  1
## 19778  1
## 19779  1
## 19780  1
## 19781  1
## 19782  1
## 19783  1
## 19784  1
## 19785  1
## 19786  1
## 19787  1
## 19788  1
## 19789  1
## 19790  1
## 19791  1
## 19792  1
## 19793  1
## 19794  1
## 19795  1
## 19796  1
## 19797  1
## 19798  1
## 19799  1
## 19800  1
## 19801  1
## 19802  1
## 19803  1
## 19804  1
## 19805  1
## 19806  1
## 19807  1
## 19808  1
## 19809  1
## 19810  1
## 19811  1
## 19812  1
## 19813  1
## 19814  1
## 19815  1
## 19816  1
## 19817  1
## 19818  1
## 19819  1
## 19820  1
## 19821  1
## 19822  1
## 19823  1
## 19824  1
## 19825  1
## 19826  1
## 19827  1
## 19828  1
## 19829  1
## 19830  1
## 19831  1
## 19832  1
## 19833  1
## 19834  1
## 19835  1
## 19836  1
## 19837  1
## 19838  1
## 19839  1
## 19840  1
## 19841  1
## 19842  1
## 19843  1
## 19844  1
## 19845  1
## 19846  1
## 19847  1
## 19848  1
## 19849  1
## 19850  1
## 19851  1
## 19852  1
## 19853  1
## 19854  1
## 19855  1
## 19856  1
## 19857  1
## 19858  1
## 19859  1
## 19860  1
## 19861  1
## 19862  1
## 19863  1
## 19864  1
## 19865  1
## 19866  1
## 19867  1
## 19868  1
## 19869  1
## 19870  1
## 19871  1
## 19872  1
## 19873  1
## 19874  1
## 19875  1
## 19876  1
## 19877  1
## 19878  1
## 19879  1
## 19880  1
## 19881  1
## 19882  1
## 19883  1
## 19884  1
## 19885  1
## 19886  1
## 19887  1
## 19888  1
## 19889  1
## 19890  1
## 19891  1
## 19892  1
## 19893  1
## 19894  1
## 19895  1
## 19896  1
## 19897  1
## 19898  1
## 19899  1
## 19900  1
## 19901  1
## 19902  1
## 19903  1
## 19904  1
## 19905  1
## 19906  1
## 19907  1
## 19908  1
## 19909  1
## 19910  1
## 19911  1
## 19912  1
## 19913  1
## 19914  1
## 19915  1
## 19916  1
## 19917  1
## 19918  1
## 19919  1
## 19920  1
## 19921  1
## 19922  1
## 19923  1
## 19924  1
## 19925  1
## 19926  1
## 19927  1
## 19928  1
## 19929  1
## 19930  1
## 19931  1
## 19932  1
## 19933  1
## 19934  1
## 19935  1
## 19936  1
## 19937  1
## 19938  1
## 19939  1
## 19940  1
## 19941  1
## 19942  1
## 19943  1
## 19944  1
## 19945  1
## 19946  1
## 19947  1
## 19948  1
## 19949  1
## 19950  1
## 19951  1
## 19952  1
## 19953  1
## 19954  1
## 19955  1
## 19956  1
## 19957  1
## 19958  1
## 19959  1
## 19960  1
## 19961  1
## 19962  1
## 19963  1
## 19964  1
## 19965  1
## 19966  1
## 19967  1
## 19968  1
## 19969  1
## 19970  1
## 19971  1
## 19972  1
## 19973  1
## 19974  1
## 19975  1
## 19976  1
## 19977  1
## 19978  1
## 19979  1
## 19980  1
## 19981  1
## 19982  1
## 19983  1
## 19984  1
## 19985  1
## 19986  1
## 19987  1
## 19988  1
## 19989  1
## 19990  1
## 19991  1
## 19992  1
## 19993  1
## 19994  1
## 19995  1
## 19996  1
## 19997  1
## 19998  1
## 19999  1
## 20000  1
## 20001  1
## 20002  1
## 20003  1
## 20004  1
## 20005  1
## 20006  1
## 20007  1
## 20008  1
## 20009  1
## 20010  1
## 20011  1
## 20012  1
## 20013  1
## 20014  1
## 20015  1
## 20016  1
## 20017  1
## 20018  1
## 20019  1
## 20020  1
## 20021  1
## 20022  1
## 20023  1
## 20024  1
## 20025  1
## 20026  1
## 20027  1
## 20028  1
## 20029  1
## 20030  1
## 20031  1
## 20032  1
## 20033  1
## 20034  1
## 20035  1
## 20036  1
## 20037  1
## 20038  1
## 20039  1
## 20040  1
## 20041  1
## 20042  1
## 20043  1
## 20044  1
## 20045  1
## 20046  1
## 20047  1
## 20048  1
## 20049  1
## 20050  1
## 20051  1
## 20052  1
## 20053  1
## 20054  1
## 20055  1
## 20056  1
## 20057  1
## 20058  1
## 20059  1
## 20060  1
## 20061  1
## 20062  1
## 20063  1
## 20064  1
## 20065  1
## 20066  1
## 20067  1
## 20068  1
## 20069  1
## 20070  1
## 20071  1
## 20072  1
## 20073  1
## 20074  1
## 20075  1
## 20076  1
## 20077  1
## 20078  1
## 20079  1
## 20080  1
## 20081  1
## 20082  1
## 20083  1
## 20084  1
## 20085  1
## 20086  1
## 20087  1
## 20088  1
## 20089  1
## 20090  1
## 20091  1
## 20092  1
## 20093  1
## 20094  1
## 20095  1
## 20096  1
## 20097  1
## 20098  1
## 20099  1
## 20100  1
## 20101  1
## 20102  1
## 20103  1
## 20104  1
## 20105  1
## 20106  1
## 20107  1
## 20108  1
## 20109  1
## 20110  1
## 20111  1
## 20112  1
## 20113  1
## 20114  1
## 20115  1
## 20116  1
## 20117  1
## 20118  1
## 20119  1
## 20120  1
## 20121  1
## 20122  1
## 20123  1
## 20124  1
## 20125  1
## 20126  1
## 20127  1
## 20128  1
## 20129  1
## 20130  1
## 20131  1
## 20132  1
## 20133  1
## 20134  1
## 20135  1
## 20136  1
## 20137  1
## 20138  1
## 20139  1
## 20140  1
## 20141  1
## 20142  1
## 20143  1
## 20144  1
## 20145  1
## 20146  1
## 20147  1
## 20148  1
## 20149  1
## 20150  1
## 20151  1
## 20152  1
## 20153  1
## 20154  1
## 20155  1
## 20156  1
## 20157  1
## 20158  1
## 20159  1
## 20160  1
## 20161  1
## 20162  1
## 20163  1
## 20164  1
## 20165  1
## 20166  1
## 20167  1
## 20168  1
## 20169  1
## 20170  1
## 20171  1
## 20172  1
## 20173  1
## 20174  1
## 20175  1
## 20176  1
## 20177  1
## 20178  1
## 20179  1
## 20180  1
## 20181  1
## 20182  1
## 20183  1
## 20184  1
## 20185  1
## 20186  1
## 20187  1
## 20188  1
## 20189  1
## 20190  1
## 20191  1
## 20192  1
## 20193  1
## 20194  1
## 20195  1
## 20196  1
## 20197  1
## 20198  1
## 20199  1
## 20200  1
## 20201  1
## 20202  1
## 20203  1
## 20204  1
## 20205  1
## 20206  1
## 20207  1
## 20208  1
## 20209  1
## 20210  1
## 20211  1
## 20212  1
## 20213  1
## 20214  1
## 20215  1
## 20216  1
## 20217  1
## 20218  1
## 20219  1
## 20220  1
## 20221  1
## 20222  1
## 20223  1
## 20224  1
## 20225  1
## 20226  1
## 20227  1
## 20228  1
## 20229  1
## 20230  1
## 20231  1
## 20232  1
## 20233  1
## 20234  1
## 20235  1
## 20236  1
## 20237  1
## 20238  1
## 20239  1
## 20240  1
## 20241  1
## 20242  1
## 20243  1
## 20244  1
## 20245  1
## 20246  1
## 20247  1
## 20248  1
## 20249  1
## 20250  1
## 20251  1
## 20252  1
## 20253  1
## 20254  1
## 20255  1
## 20256  1
## 20257  1
## 20258  1
## 20259  1
## 20260  1
## 20261  1
## 20262  1
## 20263  1
## 20264  1
## 20265  1
## 20266  1
## 20267  1
## 20268  1
## 20269  1
## 20270  1
## 20271  1
## 20272  1
## 20273  1
## 20274  1
## 20275  1
## 20276  1
## 20277  1
## 20278  1
## 20279  1
## 20280  1
## 20281  1
## 20282  1
## 20283  1
## 20284  1
## 20285  1
## 20286  1
## 20287  1
## 20288  1
## 20289  1
## 20290  1
## 20291  1
## 20292  1
## 20293  1
## 20294  1
## 20295  1
## 20296  1
## 20297  1
## 20298  1
## 20299  1
## 20300  1
## 20301  1
## 20302  1
## 20303  1
## 20304  1
## 20305  1
## 20306  1
## 20307  1
## 20308  1
## 20309  1
## 20310  1
## 20311  1
## 20312  1
## 20313  1
## 20314  1
## 20315  1
## 20316  1
## 20317  1
## 20318  1
## 20319  1
## 20320  1
## 20321  1
## 20322  1
## 20323  1
## 20324  1
## 20325  1
## 20326  1
## 20327  1
## 20328  1
## 20329  1
## 20330  1
## 20331  1
## 20332  1
## 20333  1
## 20334  1
## 20335  1
## 20336  1
## 20337  1
## 20338  1
## 20339  1
## 20340  1
## 20341  1
## 20342  1
## 20343  1
## 20344  1
## 20345  1
## 20346  1
## 20347  1
## 20348  1
## 20349  1
## 20350  1
## 20351  1
## 20352  1
## 20353  1
## 20354  1
## 20355  1
## 20356  1
## 20357  1
## 20358  1
## 20359  1
## 20360  1
## 20361  1
## 20362  1
## 20363  1
## 20364  1
## 20365  1
## 20366  1
## 20367  1
## 20368  1
## 20369  1
## 20370  1
## 20371  1
## 20372  1
## 20373  1
## 20374  1
## 20375  1
## 20376  1
## 20377  1
## 20378  1
## 20379  1
## 20380  1
## 20381  1
## 20382  1
## 20383  1
## 20384  1
## 20385  1
## 20386  1
## 20387  1
## 20388  1
## 20389  1
## 20390  1
## 20391  1
## 20392  1
## 20393  1
## 20394  1
## 20395  1
## 20396  1
## 20397  1
## 20398  1
## 20399  1
## 20400  1
## 20401  1
## 20402  1
## 20403  1
## 20404  1
## 20405  1
## 20406  1
## 20407  1
## 20408  1
## 20409  1
## 20410  1
## 20411  1
## 20412  1
## 20413  1
## 20414  1
## 20415  1
## 20416  1
## 20417  1
## 20418  1
## 20419  1
## 20420  1
## 20421  1
## 20422  1
## 20423  1
## 20424  1
## 20425  1
## 20426  1
## 20427  1
## 20428  1
## 20429  1
## 20430  1
## 20431  1
## 20432  1
## 20433  1
## 20434  1
## 20435  1
## 20436  1
## 20437  1
## 20438  1
## 20439  1
## 20440  1
## 20441  1
## 20442  1
## 20443  1
## 20444  1
## 20445  1
## 20446  1
## 20447  1
## 20448  1
## 20449  1
## 20450  1
## 20451  1
## 20452  1
## 20453  1
## 20454  1
## 20455  1
## 20456  1
## 20457  1
## 20458  1
## 20459  1
## 20460  1
## 20461  1
## 20462  1
## 20463  1
## 20464  1
## 20465  1
## 20466  1
## 20467  1
## 20468  1
## 20469  1
## 20470  1
## 20471  1
## 20472  1
## 20473  1
## 20474  1
## 20475  1
## 20476  1
## 20477  1
## 20478  1
## 20479  1
## 20480  1
## 20481  1
## 20482  1
## 20483  1
## 20484  1
## 20485  1
## 20486  1
## 20487  1
## 20488  1
## 20489  1
## 20490  1
## 20491  1
## 20492  1
## 20493  1
## 20494  1
## 20495  1
## 20496  1
## 20497  1
## 20498  1
## 20499  1
## 20500  1
## 20501  1
## 20502  1
## 20503  1
## 20504  1
## 20505  1
## 20506  1
## 20507  1
## 20508  1
## 20509  1
## 20510  1
## 20511  1
## 20512  1
## 20513  1
## 20514  1
## 20515  1
## 20516  1
## 20517  1
## 20518  1
## 20519  1
## 20520  1
## 20521  1
## 20522  1
## 20523  1
## 20524  1
## 20525  1
## 20526  1
## 20527  1
## 20528  1
## 20529  1
## 20530  1
## 20531  1
## 20532  1
## 20533  1
## 20534  1
## 20535  1
## 20536  1
## 20537  1
## 20538  1
## 20539  1
## 20540  1
## 20541  1
## 20542  1
## 20543  1
## 20544  1
## 20545  1
## 20546  1
## 20547  1
## 20548  1
## 20549  1
## 20550  1
## 20551  1
## 20552  1
## 20553  1
## 20554  1
## 20555  1
## 20556  1
## 20557  1
## 20558  1
## 20559  1
## 20560  1
## 20561  1
## 20562  1
## 20563  1
## 20564  1
## 20565  1
## 20566  1
## 20567  1
## 20568  1
## 20569  1
## 20570  1
## 20571  1
## 20572  1
## 20573  1
## 20574  1
## 20575  1
## 20576  1
## 20577  1
## 20578  1
## 20579  1
## 20580  1
## 20581  1
## 20582  1
## 20583  1
## 20584  1
## 20585  1
## 20586  1
## 20587  1
## 20588  1
## 20589  1
## 20590  1
## 20591  1
## 20592  1
## 20593  1
## 20594  1
## 20595  1
## 20596  1
## 20597  1
## 20598  1
## 20599  1
## 20600  1
## 20601  1
## 20602  1
## 20603  1
## 20604  1
## 20605  1
## 20606  1
## 20607  1
## 20608  1
## 20609  1
## 20610  1
## 20611  1
## 20612  1
## 20613  1
## 20614  1
## 20615  1
## 20616  1
## 20617  1
## 20618  1
## 20619  1
## 20620  1
## 20621  1
## 20622  1
## 20623  1
## 20624  1
## 20625  1
## 20626  1
## 20627  1
## 20628  1
## 20629  1
## 20630  1
## 20631  1
## 20632  1
## 20633  1
## 20634  1
## 20635  1
## 20636  1
## 20637  1
## 20638  1
## 20639  1
## 20640  1
## 20641  1
## 20642  1
## 20643  1
## 20644  1
## 20645  1
## 20646  1
## 20647  1
## 20648  1
## 20649  1
## 20650  1
## 20651  1
## 20652  1
## 20653  1
## 20654  1
## 20655  1
## 20656  1
## 20657  1
## 20658  1
## 20659  1
## 20660  1
## 20661  1
## 20662  1
## 20663  1
## 20664  1
## 20665  1
## 20666  1
## 20667  1
## 20668  1
## 20669  1
## 20670  1
## 20671  1
## 20672  1
## 20673  1
## 20674  1
## 20675  1
## 20676  1
## 20677  1
## 20678  1
## 20679  1
## 20680  1
## 20681  1
## 20682  1
## 20683  1
## 20684  1
## 20685  1
## 20686  1
## 20687  1
## 20688  1
## 20689  1
## 20690  1
## 20691  1
## 20692  1
## 20693  1
## 20694  1
## 20695  1
## 20696  1
## 20697  1
## 20698  1
## 20699  1
## 20700  1
## 20701  1
## 20702  1
## 20703  1
## 20704  1
## 20705  1
## 20706  1
## 20707  1
## 20708  1
## 20709  1
## 20710  1
## 20711  1
## 20712  1
## 20713  1
## 20714  1
## 20715  1
## 20716  1
## 20717  1
## 20718  1
## 20719  1
## 20720  1
## 20721  1
## 20722  1
## 20723  1
## 20724  1
## 20725  1
## 20726  1
## 20727  1
## 20728  1
## 20729  1
## 20730  1
## 20731  1
## 20732  1
## 20733  1
## 20734  1
## 20735  1
## 20736  1
## 20737  1
## 20738  1
## 20739  1
## 20740  1
## 20741  1
## 20742  1
## 20743  1
## 20744  1
## 20745  1
## 20746  1
## 20747  1
## 20748  1
## 20749  1
## 20750  1
## 20751  1
## 20752  1
## 20753  1
## 20754  1
## 20755  1
## 20756  1
## 20757  1
## 20758  1
## 20759  1
## 20760  1
## 20761  1
## 20762  1
## 20763  1
## 20764  1
## 20765  1
## 20766  1
## 20767  1
## 20768  1
## 20769  1
## 20770  1
## 20771  1
## 20772  1
## 20773  1
## 20774  1
## 20775  1
## 20776  1
## 20777  1
## 20778  1
## 20779  1
## 20780  1
## 20781  1
## 20782  1
## 20783  1
## 20784  1
## 20785  1
## 20786  1
## 20787  1
## 20788  1
## 20789  1
## 20790  1
## 20791  1
## 20792  1
## 20793  1
## 20794  1
## 20795  1
## 20796  1
## 20797  1
## 20798  1
## 20799  1
## 20800  1
## 20801  1
## 20802  1
## 20803  1
## 20804  1
## 20805  1
## 20806  1
## 20807  1
## 20808  1
## 20809  1
## 20810  1
## 20811  1
## 20812  1
## 20813  1
## 20814  1
## 20815  1
## 20816  1
## 20817  1
## 20818  1
## 20819  1
## 20820  1
## 20821  1
## 20822  1
## 20823  1
## 20824  1
## 20825  1
## 20826  1
## 20827  1
## 20828  1
## 20829  1
## 20830  1
## 20831  1
## 20832  1
## 20833  1
## 20834  1
## 20835  1
## 20836  1
## 20837  1
## 20838  1
## 20839  1
## 20840  1
## 20841  1
## 20842  1
## 20843  1
## 20844  1
## 20845  1
## 20846  1
## 20847  1
## 20848  1
## 20849  1
## 20850  1
## 20851  1
## 20852  1
## 20853  1
## 20854  1
## 20855  1
## 20856  1
## 20857  1
## 20858  1
## 20859  1
## 20860  1
## 20861  1
## 20862  1
## 20863  1
## 20864  1
## 20865  1
## 20866  1
## 20867  1
## 20868  1
## 20869  1
## 20870  1
## 20871  1
## 20872  1
## 20873  1
## 20874  1
## 20875  1
## 20876  1
## 20877  1
## 20878  1
## 20879  1
## 20880  1
## 20881  1
## 20882  1
## 20883  1
## 20884  1
## 20885  1
## 20886  1
## 20887  1
## 20888  1
## 20889  1
## 20890  1
## 20891  1
## 20892  1
## 20893  1
## 20894  1
## 20895  1
## 20896  1
## 20897  1
## 20898  1
## 20899  1
## 20900  1
## 20901  1
## 20902  1
## 20903  1
## 20904  1
## 20905  1
## 20906  1
## 20907  1
## 20908  1
## 20909  1
## 20910  1
## 20911  1
## 20912  1
## 20913  1
## 20914  1
## 20915  1
## 20916  1
## 20917  1
## 20918  1
## 20919  1
## 20920  1
## 20921  1
## 20922  1
## 20923  1
## 20924  1
## 20925  1
## 20926  1
## 20927  1
## 20928  1
## 20929  1
## 20930  1
## 20931  1
## 20932  1
## 20933  1
## 20934  1
## 20935  1
## 20936  1
## 20937  1
## 20938  1
## 20939  1
## 20940  1
## 20941  1
## 20942  1
## 20943  1
## 20944  1
## 20945  1
## 20946  1
## 20947  1
## 20948  1
## 20949  1
## 20950  1
## 20951  1
## 20952  1
## 20953  1
## 20954  1
## 20955  1
## 20956  1
## 20957  1
## 20958  1
## 20959  1
## 20960  1
## 20961  1
## 20962  1
## 20963  1
## 20964  1
## 20965  1
## 20966  1
## 20967  1
## 20968  1
## 20969  1
## 20970  1
## 20971  1
## 20972  1
## 20973  1
## 20974  1
## 20975  1
## 20976  1
## 20977  1
## 20978  1
## 20979  1
## 20980  1
## 20981  1
## 20982  1
## 20983  1
## 20984  1
## 20985  1
## 20986  1
## 20987  1
## 20988  1
## 20989  1
## 20990  1
## 20991  1
## 20992  1
## 20993  1
## 20994  1
## 20995  1
## 20996  1
## 20997  1
## 20998  1
## 20999  1
## 21000  1
## 21001  1
## 21002  1
## 21003  1
## 21004  1
## 21005  1
## 21006  1
## 21007  1
## 21008  1
## 21009  1
## 21010  1
## 21011  1
## 21012  1
## 21013  1
## 21014  1
## 21015  1
## 21016  1
## 21017  1
## 21018  1
## 21019  1
## 21020  1
## 21021  1
## 21022  1
## 21023  1
## 21024  1
## 21025  1
## 21026  1
## 21027  1
## 21028  1
## 21029  1
## 21030  1
## 21031  1
## 21032  1
## 21033  1
## 21034  1
## 21035  1
## 21036  1
## 21037  1
## 21038  1
## 21039  1
## 21040  1
## 21041  1
## 21042  1
## 21043  1
## 21044  1
## 21045  1
## 21046  1
## 21047  1
## 21048  1
## 21049  1
## 21050  1
## 21051  1
## 21052  1
## 21053  1
## 21054  1
## 21055  1
## 21056  1
## 21057  1
## 21058  1
## 21059  1
## 21060  1
## 21061  1
## 21062  1
## 21063  1
## 21064  1
## 21065  1
## 21066  1
## 21067  1
## 21068  1
## 21069  1
## 21070  1
## 21071  1
## 21072  1
## 21073  1
## 21074  1
## 21075  1
## 21076  1
## 21077  1
## 21078  1
## 21079  1
## 21080  1
## 21081  1
## 21082  1
## 21083  1
## 21084  1
## 21085  1
## 21086  1
## 21087  1
## 21088  1
## 21089  1
## 21090  1
## 21091  1
## 21092  1
## 21093  1
## 21094  1
## 21095  1
## 21096  1
## 21097  1
## 21098  1
## 21099  1
## 21100  1
## 21101  1
## 21102  1
## 21103  1
## 21104  1
## 21105  1
## 21106  1
## 21107  1
## 21108  1
## 21109  1
## 21110  1
## 21111  1
## 21112  1
## 21113  1
## 21114  1
## 21115  1
## 21116  1
## 21117  1
## 21118  1
## 21119  1
## 21120  1
## 21121  1
## 21122  1
## 21123  1
## 21124  1
## 21125  1
## 21126  1
## 21127  1
## 21128  1
## 21129  1
## 21130  1
## 21131  1
## 21132  1
## 21133  1
## 21134  1
## 21135  1
## 21136  1
## 21137  1
## 21138  1
## 21139  1
## 21140  1
## 21141  1
## 21142  1
## 21143  1
## 21144  1
## 21145  1
## 21146  1
## 21147  1
## 21148  1
## 21149  1
## 21150  1
## 21151  1
## 21152  1
## 21153  1
## 21154  1
## 21155  1
## 21156  1
## 21157  1
## 21158  1
## 21159  1
## 21160  1
## 21161  1
## 21162  1
## 21163  1
## 21164  1
## 21165  1
## 21166  1
## 21167  1
## 21168  1
## 21169  1
## 21170  1
## 21171  1
## 21172  1
## 21173  1
## 21174  1
## 21175  1
## 21176  1
## 21177  1
## 21178  1
## 21179  1
## 21180  1
## 21181  1
## 21182  1
## 21183  1
## 21184  1
## 21185  1
## 21186  1
## 21187  1
## 21188  1
## 21189  1
## 21190  1
## 21191  1
## 21192  1
## 21193  1
## 21194  1
## 21195  1
## 21196  1
## 21197  1
## 21198  1
## 21199  1
## 21200  1
## 21201  1
## 21202  1
## 21203  1
## 21204  1
## 21205  1
## 21206  1
## 21207  1
## 21208  1
## 21209  1
## 21210  1
## 21211  1
## 21212  1
## 21213  1
## 21214  1
## 21215  1
## 21216  1
## 21217  1
## 21218  1
## 21219  1
## 21220  1
## 21221  1
## 21222  1
## 21223  1
## 21224  1
## 21225  1
## 21226  1
## 21227  1
## 21228  1
## 21229  1
## 21230  1
## 21231  1
## 21232  1
## 21233  1
## 21234  1
## 21235  1
## 21236  1
## 21237  1
## 21238  1
## 21239  1
## 21240  1
## 21241  1
## 21242  1
## 21243  1
## 21244  1
## 21245  1
## 21246  1
## 21247  1
## 21248  1
## 21249  1
## 21250  1
## 21251  1
## 21252  1
## 21253  1
## 21254  1
## 21255  1
## 21256  1
## 21257  1
## 21258  1
## 21259  1
## 21260  1
## 21261  1
## 21262  1
## 21263  1
## 21264  1
## 21265  1
## 21266  1
## 21267  1
## 21268  1
## 21269  1
## 21270  1
## 21271  1
## 21272  1
## 21273  1
## 21274  1
## 21275  1
## 21276  1
## 21277  1
## 21278  1
## 21279  1
## 21280  1
## 21281  1
## 21282  1
## 21283  1
## 21284  1
## 21285  1
## 21286  1
## 21287  1
## 21288  1
## 21289  1
## 21290  1
## 21291  1
## 21292  1
## 21293  1
## 21294  1
## 21295  1
## 21296  1
## 21297  1
## 21298  1
## 21299  1
## 21300  1
## 21301  1
## 21302  1
## 21303  1
## 21304  1
## 21305  1
## 21306  1
## 21307  1
## 21308  1
## 21309  1
## 21310  1
## 21311  1
## 21312  1
## 21313  1
## 21314  1
## 21315  1
## 21316  1
## 21317  1
## 21318  1
## 21319  1
## 21320  1
## 21321  1
## 21322  1
## 21323  1
## 21324  1
## 21325  1
## 21326  1
## 21327  1
## 21328  1
## 21329  1
## 21330  1
## 21331  1
## 21332  1
## 21333  1
## 21334  1
## 21335  1
## 21336  1
## 21337  1
## 21338  1
## 21339  1
## 21340  1
## 21341  1
## 21342  1
## 21343  1
## 21344  1
## 21345  1
## 21346  1
## 21347  1
## 21348  1
## 21349  1
## 21350  1
## 21351  1
## 21352  1
## 21353  1
## 21354  1
## 21355  1
## 21356  1
## 21357  1
## 21358  1
## 21359  1
## 21360  1
## 21361  1
## 21362  1
## 21363  1
## 21364  1
## 21365  1
## 21366  1
## 21367  1
## 21368  1
## 21369  1
## 21370  1
## 21371  1
## 21372  1
## 21373  1
## 21374  1
## 21375  1
## 21376  1
## 21377  1
## 21378  1
## 21379  1
## 21380  1
## 21381  1
## 21382  1
## 21383  1
## 21384  1
## 21385  1
## 21386  1
## 21387  1
## 21388  1
## 21389  1
## 21390  1
## 21391  1
## 21392  1
## 21393  1
## 21394  1
## 21395  1
## 21396  1
## 21397  1
## 21398  1
## 21399  1
## 21400  1
## 21401  1
## 21402  1
## 21403  1
## 21404  1
## 21405  1
## 21406  1
## 21407  1
## 21408  1
## 21409  1
## 21410  1
## 21411  1
## 21412  1
## 21413  1
## 21414  1
## 21415  1
## 21416  1
## 21417  1
## 21418  1
## 21419  1
## 21420  1
## 21421  1
## 21422  1
## 21423  1
## 21424  1
## 21425  1
## 21426  1
## 21427  1
## 21428  1
## 21429  1
## 21430  1
## 21431  1
## 21432  1
## 21433  1
## 21434  1
## 21435  1
## 21436  1
## 21437  1
## 21438  1
## 21439  1
## 21440  1
## 21441  1
## 21442  1
## 21443  1
## 21444  1
## 21445  1
## 21446  1
## 21447  1
## 21448  1
## 21449  1
## 21450  1
## 21451  1
## 21452  1
## 21453  1
## 21454  1
## 21455  1
## 21456  1
## 21457  1
## 21458  1
## 21459  1
## 21460  1
## 21461  1
## 21462  1
## 21463  1
## 21464  1
## 21465  1
## 21466  1
## 21467  1
## 21468  1
## 21469  1
## 21470  1
## 21471  1
## 21472  1
## 21473  1
## 21474  1
## 21475  1
## 21476  1
## 21477  1
## 21478  1
## 21479  1
## 21480  1
## 21481  1
## 21482  1
## 21483  1
## 21484  1
## 21485  1
## 21486  1
## 21487  1
## 21488  1
## 21489  1
## 21490  1
## 21491  1
## 21492  1
## 21493  1
## 21494  1
## 21495  1
## 21496  1
## 21497  1
## 21498  1
## 21499  1
## 21500  1
## 21501  1
## 21502  1
## 21503  1
## 21504  1
## 21505  1
## 21506  1
## 21507  1
## 21508  1
## 21509  1
## 21510  1
## 21511  1
## 21512  1
## 21513  1
## 21514  1
## 21515  1
## 21516  1
## 21517  1
## 21518  1
## 21519  1
## 21520  1
## 21521  1
## 21522  1
## 21523  1
## 21524  1
## 21525  1
## 21526  1
## 21527  1
## 21528  1
## 21529  1
## 21530  1
## 21531  1
## 21532  1
## 21533  1
## 21534  1
## 21535  1
## 21536  1
## 21537  1
## 21538  1
## 21539  1
## 21540  1
## 21541  1
## 21542  1
## 21543  1
## 21544  1
## 21545  1
## 21546  1
## 21547  1
## 21548  1
## 21549  1
## 21550  1
## 21551  1
## 21552  1
## 21553  1
## 21554  1
## 21555  1
## 21556  1
## 21557  1
## 21558  1
## 21559  1
## 21560  1
## 21561  1
## 21562  1
## 21563  1
## 21564  1
## 21565  1
## 21566  1
## 21567  1
## 21568  1
## 21569  1
## 21570  1
## 21571  1
## 21572  1
## 21573  1
## 21574  1
## 21575  1
## 21576  1
## 21577  1
## 21578  1
## 21579  1
## 21580  1
## 21581  1
## 21582  1
## 21583  1
## 21584  1
## 21585  1
## 21586  1
## 21587  1
## 21588  1
## 21589  1
## 21590  1
## 21591  1
## 21592  1
## 21593  1
## 21594  1
## 21595  1
## 21596  1
## 21597  1
## 21598  1
## 21599  1
## 21600  1
## 21601  1
## 21602  1
## 21603  1
## 21604  1
## 21605  1
## 21606  1
## 21607  1
## 21608  1
## 21609  1
## 21610  1
## 21611  1
## 21612  1
## 21613  1
## 21614  1
## 21615  1
## 21616  1
## 21617  1
## 21618  1
## 21619  1
## 21620  1
## 21621  1
## 21622  1
## 21623  1
## 21624  1
## 21625  1
## 21626  1
## 21627  1
## 21628  1
## 21629  1
## 21630  1
## 21631  1
## 21632  1
## 21633  1
## 21634  1
## 21635  1
## 21636  1
## 21637  1
## 21638  1
## 21639  1
## 21640  1
## 21641  1
## 21642  1
## 21643  1
## 21644  1
## 21645  1
## 21646  1
## 21647  1
## 21648  1
## 21649  1
## 21650  1
## 21651  1
## 21652  1
## 21653  1
## 21654  1
## 21655  1
## 21656  1
## 21657  1
## 21658  1
## 21659  1
## 21660  1
## 21661  1
## 21662  1
## 21663  1
## 21664  1
## 21665  1
## 21666  1
## 21667  1
## 21668  1
## 21669  1
## 21670  1
## 21671  1
## 21672  1
## 21673  1
## 21674  1
## 21675  1
## 21676  1
## 21677  1
## 21678  1
## 21679  1
## 21680  1
## 21681  1
## 21682  1
## 21683  1
## 21684  1
## 21685  1
## 21686  1
## 21687  1
## 21688  1
## 21689  1
## 21690  1
## 21691  1
## 21692  1
## 21693  1
## 21694  1
## 21695  1
## 21696  1
## 21697  1
## 21698  1
## 21699  1
## 21700  1
## 21701  1
## 21702  1
## 21703  1
## 21704  1
## 21705  1
## 21706  1
## 21707  1
## 21708  1
## 21709  1
## 21710  1
## 21711  1
## 21712  1
## 21713  1
## 21714  1
## 21715  1
## 21716  1
## 21717  1
## 21718  1
## 21719  1
## 21720  1
## 21721  1
## 21722  1
## 21723  1
## 21724  1
## 21725  1
## 21726  1
## 21727  1
## 21728  1
## 21729  1
## 21730  1
## 21731  1
## 21732  1
## 21733  1
## 21734  1
## 21735  1
## 21736  1
## 21737  1
## 21738  1
## 21739  1
## 21740  1
## 21741  1
## 21742  1
## 21743  1
## 21744  1
## 21745  1
## 21746  1
## 21747  1
## 21748  1
## 21749  1
## 21750  1
## 21751  1
## 21752  1
## 21753  1
## 21754  1
## 21755  1
## 21756  1
## 21757  1
## 21758  1
## 21759  1
## 21760  1
## 21761  1
## 21762  1
## 21763  1
## 21764  1
## 21765  1
## 21766  1
## 21767  1
## 21768  1
## 21769  1
## 21770  1
## 21771  1
## 21772  1
## 21773  1
## 21774  1
## 21775  1
## 21776  1
## 21777  1
## 21778  1
## 21779  1
## 21780  1
## 21781  1
## 21782  1
## 21783  1
## 21784  1
## 21785  1
## 21786  1
## 21787  1
## 21788  1
## 21789  1
## 21790  1
## 21791  1
## 21792  1
## 21793  1
## 21794  1
## 21795  1
## 21796  1
## 21797  1
## 21798  1
## 21799  1
## 21800  1
## 21801  1
## 21802  1
## 21803  1
## 21804  1
## 21805  1
## 21806  1
## 21807  1
## 21808  1
## 21809  1
## 21810  1
## 21811  1
## 21812  1
## 21813  1
## 21814  1
## 21815  1
## 21816  1
## 21817  1
## 21818  1
## 21819  1
## 21820  1
## 21821  1
## 21822  1
## 21823  1
## 21824  1
## 21825  1
## 21826  1
## 21827  1
## 21828  1
## 21829  1
## 21830  1
## 21831  1
## 21832  1
## 21833  1
## 21834  1
## 21835  1
## 21836  1
## 21837  1
## 21838  1
## 21839  1
## 21840  1
## 21841  1
## 21842  1
## 21843  1
## 21844  1
## 21845  1
## 21846  1
## 21847  1
## 21848  1
## 21849  1
## 21850  1
## 21851  1
## 21852  1
## 21853  1
## 21854  1
## 21855  1
## 21856  1
## 21857  1
## 21858  1
## 21859  1
## 21860  1
## 21861  1
## 21862  1
## 21863  1
## 21864  1
## 21865  1
## 21866  1
## 21867  1
## 21868  1
## 21869  1
## 21870  1
## 21871  1
## 21872  1
## 21873  1
## 21874  1
## 21875  1
## 21876  1
## 21877  1
## 21878  1
## 21879  1
## 21880  1
## 21881  1
## 21882  1
## 21883  1
## 21884  1
## 21885  1
## 21886  1
## 21887  1
## 21888  1
## 21889  1
## 21890  1
## 21891  1
## 21892  1
## 21893  1
## 21894  1
## 21895  1
## 21896  1
## 21897  1
## 21898  1
## 21899  1
## 21900  1
## 21901  1
## 21902  1
## 21903  1
## 21904  1
## 21905  1
## 21906  1
## 21907  1
## 21908  1
## 21909  1
## 21910  1
## 21911  1
## 21912  1
## 21913  1
## 21914  1
## 21915  1
## 21916  1
## 21917  1
## 21918  1
## 21919  1
## 21920  1
## 21921  1
## 21922  1
## 21923  1
## 21924  1
## 21925  1
## 21926  1
## 21927  1
## 21928  1
## 21929  1
## 21930  1
## 21931  1
## 21932  1
## 21933  1
## 21934  1
## 21935  1
## 21936  1
## 21937  1
## 21938  1
## 21939  1
## 21940  1
## 21941  1
## 21942  1
## 21943  1
## 21944  1
## 21945  1
## 21946  1
## 21947  1
## 21948  1
## 21949  1
## 21950  1
## 21951  1
## 21952  1
## 21953  1
## 21954  1
## 21955  1
## 21956  1
## 21957  1
## 21958  1
## 21959  1
## 21960  1
## 21961  1
## 21962  1
## 21963  1
## 21964  1
## 21965  1
## 21966  1
## 21967  1
## 21968  1
## 21969  1
## 21970  1
## 21971  1
## 21972  1
## 21973  1
## 21974  1
## 21975  1
## 21976  1
## 21977  1
## 21978  1
## 21979  1
## 21980  1
## 21981  1
## 21982  1
## 21983  1
## 21984  1
## 21985  1
## 21986  1
## 21987  1
## 21988  1
## 21989  1
## 21990  1
## 21991  1
## 21992  1
## 21993  1
## 21994  1
## 21995  1
## 21996  1
## 21997  1
## 21998  1
## 21999  1
## 22000  1
## 22001  1
## 22002  1
## 22003  1
## 22004  1
## 22005  1
## 22006  1
## 22007  1
## 22008  1
## 22009  1
## 22010  1
## 22011  1
## 22012  1
## 22013  1
## 22014  1
## 22015  1
## 22016  1
## 22017  1
## 22018  1
## 22019  1
## 22020  1
## 22021  1
## 22022  1
## 22023  1
## 22024  1
## 22025  1
## 22026  1
## 22027  1
## 22028  1
## 22029  1
## 22030  1
## 22031  1
## 22032  1
## 22033  1
## 22034  1
## 22035  1
## 22036  1
## 22037  1
## 22038  1
## 22039  1
## 22040  1
## 22041  1
## 22042  1
## 22043  1
## 22044  1
## 22045  1
## 22046  1
## 22047  1
## 22048  1
## 22049  1
## 22050  1
## 22051  1
## 22052  1
## 22053  1
## 22054  1
## 22055  1
## 22056  1
## 22057  1
## 22058  1
## 22059  1
## 22060  1
## 22061  1
## 22062  1
## 22063  1
## 22064  1
## 22065  1
## 22066  1
## 22067  1
## 22068  1
## 22069  1
## 22070  1
## 22071  1
## 22072  1
## 22073  1
## 22074  1
## 22075  1
## 22076  1
## 22077  1
## 22078  1
## 22079  1
## 22080  1
## 22081  1
## 22082  1
## 22083  1
## 22084  1
## 22085  1
## 22086  1
## 22087  1
## 22088  1
## 22089  1
## 22090  1
## 22091  1
## 22092  1
## 22093  1
## 22094  1
## 22095  1
## 22096  1
## 22097  1
## 22098  1
## 22099  1
## 22100  1
## 22101  1
## 22102  1
## 22103  1
## 22104  1
## 22105  1
## 22106  1
## 22107  1
## 22108  1
## 22109  1
## 22110  1
## 22111  1
## 22112  1
## 22113  1
## 22114  1
## 22115  1
## 22116  1
## 22117  1
## 22118  1
## 22119  1
## 22120  1
## 22121  1
## 22122  1
## 22123  1
## 22124  1
## 22125  1
## 22126  1
## 22127  1
## 22128  1
## 22129  1
## 22130  1
## 22131  1
## 22132  1
## 22133  1
## 22134  1
## 22135  1
## 22136  1
## 22137  1
## 22138  1
## 22139  1
## 22140  1
## 22141  1
## 22142  1
## 22143  1
## 22144  1
## 22145  1
## 22146  1
## 22147  1
## 22148  1
## 22149  1
## 22150  1
## 22151  1
## 22152  1
## 22153  1
## 22154  1
## 22155  1
## 22156  1
## 22157  1
## 22158  1
## 22159  1
## 22160  1
## 22161  1
## 22162  1
## 22163  1
## 22164  1
## 22165  1
## 22166  1
## 22167  1
## 22168  1
## 22169  1
## 22170  1
## 22171  1
## 22172  1
## 22173  1
## 22174  1
## 22175  1
## 22176  1
## 22177  1
## 22178  1
## 22179  1
## 22180  1
## 22181  1
## 22182  1
## 22183  1
## 22184  1
## 22185  1
## 22186  1
## 22187  1
## 22188  1
## 22189  1
## 22190  1
## 22191  1
## 22192  1
## 22193  1
## 22194  1
## 22195  1
## 22196  1
## 22197  1
## 22198  1
## 22199  1
## 22200  1
## 22201  1
## 22202  1
## 22203  1
## 22204  1
## 22205  1
## 22206  1
## 22207  1
## 22208  1
## 22209  1
## 22210  1
## 22211  1
## 22212  1
## 22213  1
## 22214  1
## 22215  1
## 22216  1
## 22217  1
## 22218  1
## 22219  1
## 22220  1
## 22221  1
## 22222  1
## 22223  1
## 22224  1
## 22225  1
## 22226  1
## 22227  1
## 22228  1
## 22229  1
## 22230  1
## 22231  1
## 22232  1
## 22233  1
## 22234  1
## 22235  1
## 22236  1
## 22237  1
## 22238  1
## 22239  1
## 22240  1
## 22241  1
## 22242  1
## 22243  1
## 22244  1
## 22245  1
## 22246  1
## 22247  1
## 22248  1
## 22249  1
## 22250  1
## 22251  1
## 22252  1
## 22253  1
## 22254  1
## 22255  1
## 22256  1
## 22257  1
## 22258  1
## 22259  1
## 22260  1
## 22261  1
## 22262  1
## 22263  1
## 22264  1
## 22265  1
## 22266  1
## 22267  1
## 22268  1
## 22269  1
## 22270  1
## 22271  1
## 22272  1
## 22273  1
## 22274  1
## 22275  1
## 22276  1
## 22277  1
## 22278  1
## 22279  1
## 22280  1
## 22281  1
## 22282  1
## 22283  1
## 22284  1
## 22285  1
## 22286  1
## 22287  1
## 22288  1
## 22289  1
## 22290  1
## 22291  1
## 22292  1
## 22293  1
## 22294  1
## 22295  1
## 22296  1
## 22297  1
## 22298  1
## 22299  1
## 22300  1
## 22301  1
## 22302  1
## 22303  1
## 22304  1
## 22305  1
## 22306  1
## 22307  1
## 22308  1
## 22309  1
## 22310  1
## 22311  1
## 22312  1
## 22313  1
## 22314  1
## 22315  1
## 22316  1
## 22317  1
## 22318  1
## 22319  1
## 22320  1
## 22321  1
## 22322  1
## 22323  1
## 22324  1
## 22325  1
## 22326  1
## 22327  1
## 22328  1
## 22329  1
## 22330  1
## 22331  1
## 22332  1
## 22333  1
## 22334  1
## 22335  1
## 22336  1
## 22337  1
## 22338  1
## 22339  1
## 22340  1
## 22341  1
## 22342  1
## 22343  1
## 22344  1
## 22345  1
## 22346  1
## 22347  1
## 22348  1
## 22349  1
## 22350  1
## 22351  1
## 22352  1
## 22353  1
## 22354  1
## 22355  1
## 22356  1
## 22357  1
## 22358  1
## 22359  1
## 22360  1
## 22361  1
## 22362  1
## 22363  1
## 22364  1
## 22365  1
## 22366  1
## 22367  1
## 22368  1
## 22369  1
## 22370  1
## 22371  1
## 22372  1
## 22373  1
## 22374  1
## 22375  1
## 22376  1
## 22377  1
## 22378  1
## 22379  1
## 22380  1
## 22381  1
## 22382  1
## 22383  1
## 22384  1
## 22385  1
## 22386  1
## 22387  1
## 22388  1
## 22389  1
## 22390  1
## 22391  1
## 22392  1
## 22393  1
## 22394  1
## 22395  1
## 22396  1
## 22397  1
## 22398  1
## 22399  1
## 22400  1
## 22401  1
## 22402  1
## 22403  1
## 22404  1
## 22405  1
## 22406  1
## 22407  1
## 22408  1
## 22409  1
## 22410  1
## 22411  1
## 22412  1
## 22413  1
## 22414  1
## 22415  1
## 22416  1
## 22417  1
## 22418  1
## 22419  1
## 22420  1
## 22421  1
## 22422  1
## 22423  1
## 22424  1
## 22425  1
## 22426  1
## 22427  1
## 22428  1
## 22429  1
## 22430  1
## 22431  1
## 22432  1
## 22433  1
## 22434  1
## 22435  1
## 22436  1
## 22437  1
## 22438  1
## 22439  1
## 22440  1
## 22441  1
## 22442  1
## 22443  1
## 22444  1
## 22445  1
## 22446  1
## 22447  1
## 22448  1
## 22449  1
## 22450  1
## 22451  1
## 22452  1
## 22453  1
## 22454  1
## 22455  1
## 22456  1
## 22457  1
## 22458  1
## 22459  1
## 22460  1
## 22461  1
## 22462  1
## 22463  1
## 22464  1
## 22465  1
## 22466  1
## 22467  1
## 22468  1
## 22469  1
## 22470  1
## 22471  1
## 22472  1
## 22473  1
## 22474  1
## 22475  1
## 22476  1
## 22477  1
## 22478  1
## 22479  1
## 22480  1
## 22481  1
## 22482  1
## 22483  1
## 22484  1
## 22485  1
## 22486  1
## 22487  1
## 22488  1
## 22489  1
## 22490  1
## 22491  1
## 22492  1
## 22493  1
## 22494  1
## 22495  1
## 22496  1
## 22497  1
## 22498  1
## 22499  1
## 22500  1
## 22501  1
## 22502  1
## 22503  1
## 22504  1
## 22505  1
## 22506  1
## 22507  1
## 22508  1
## 22509  1
## 22510  1
## 22511  1
## 22512  1
## 22513  1
## 22514  1
## 22515  1
## 22516  1
## 22517  1
## 22518  1
## 22519  1
## 22520  1
## 22521  1
## 22522  1
## 22523  1
## 22524  1
## 22525  1
## 22526  1
## 22527  1
## 22528  1
## 22529  1
## 22530  1
## 22531  1
## 22532  1
## 22533  1
## 22534  1
## 22535  1
## 22536  1
## 22537  1
## 22538  1
## 22539  1
## 22540  1
## 22541  1
## 22542  1
## 22543  1
## 22544  1
## 22545  1
## 22546  1
## 22547  1
## 22548  1
## 22549  1
## 22550  1
## 22551  1
## 22552  1
## 22553  1
## 22554  1
## 22555  1
## 22556  1
## 22557  1
## 22558  1
## 22559  1
## 22560  1
## 22561  1
## 22562  1
## 22563  1
## 22564  1
## 22565  1
## 22566  1
## 22567  1
## 22568  1
## 22569  1
## 22570  1
## 22571  1
## 22572  1
## 22573  1
## 22574  1
## 22575  1
## 22576  1
## 22577  1
## 22578  1
## 22579  1
## 22580  1
## 22581  1
## 22582  1
## 22583  1
## 22584  1
## 22585  1
## 22586  1
## 22587  1
## 22588  1
## 22589  1
## 22590  1
## 22591  1
## 22592  1
## 22593  1
## 22594  1
## 22595  1
## 22596  1
## 22597  1
## 22598  1
## 22599  1
## 22600  1
## 22601  1
## 22602  1
## 22603  1
## 22604  1
## 22605  1
## 22606  1
## 22607  1
## 22608  1
## 22609  1
## 22610  1
## 22611  1
## 22612  1
## 22613  1
## 22614  1
## 22615  1
## 22616  1
## 22617  1
## 22618  1
## 22619  1
## 22620  1
## 22621  1
## 22622  1
## 22623  1
## 22624  1
## 22625  1
## 22626  1
## 22627  1
## 22628  1
## 22629  1
## 22630  1
## 22631  1
## 22632  1
## 22633  1
## 22634  1
## 22635  1
## 22636  1
## 22637  1
## 22638  1
## 22639  1
## 22640  1
## 22641  1
## 22642  1
## 22643  1
## 22644  1
## 22645  1
## 22646  1
## 22647  1
## 22648  1
## 22649  1
## 22650  1
## 22651  1
## 22652  1
## 22653  1
## 22654  1
## 22655  1
## 22656  1
## 22657  1
## 22658  1
## 22659  1
## 22660  1
## 22661  1
## 22662  1
## 22663  1
## 22664  1
## 22665  1
## 22666  1
## 22667  1
## 22668  1
## 22669  1
## 22670  1
## 22671  1
## 22672  1
## 22673  1
## 22674  1
## 22675  1
## 22676  1
## 22677  1
## 22678  1
## 22679  1
## 22680  1
## 22681  1
## 22682  1
## 22683  1
## 22684  1
## 22685  1
## 22686  1
## 22687  1
## 22688  1
## 22689  1
## 22690  1
## 22691  1
## 22692  1
## 22693  1
## 22694  1
## 22695  1
## 22696  1
## 22697  1
## 22698  1
## 22699  1
## 22700  1
## 22701  1
## 22702  1
## 22703  1
## 22704  1
## 22705  1
## 22706  1
## 22707  1
## 22708  1
## 22709  1
## 22710  1
## 22711  1
## 22712  1
## 22713  1
## 22714  1
## 22715  1
## 22716  1
## 22717  1
## 22718  1
## 22719  1
## 22720  1
## 22721  1
## 22722  1
## 22723  1
## 22724  1
## 22725  1
## 22726  1
## 22727  1
## 22728  1
## 22729  1
## 22730  1
## 22731  1
## 22732  1
## 22733  1
## 22734  1
## 22735  1
## 22736  1
## 22737  1
## 22738  1
## 22739  1
## 22740  1
## 22741  1
## 22742  1
## 22743  1
## 22744  1
## 22745  1
## 22746  1
## 22747  1
## 22748  1
## 22749  1
## 22750  1
## 22751  1
## 22752  1
## 22753  1
## 22754  1
## 22755  1
## 22756  1
## 22757  1
## 22758  1
## 22759  1
## 22760  1
## 22761  1
## 22762  1
## 22763  1
## 22764  1
## 22765  1
## 22766  1
## 22767  1
## 22768  1
## 22769  1
## 22770  1
## 22771  1
## 22772  1
## 22773  1
## 22774  1
## 22775  1
## 22776  1
## 22777  1
## 22778  1
## 22779  1
## 22780  1
## 22781  1
## 22782  1
## 22783  1
## 22784  1
## 22785  1
## 22786  1
## 22787  1
## 22788  1
## 22789  1
## 22790  1
## 22791  1
## 22792  1
## 22793  1
## 22794  1
## 22795  1
## 22796  1
## 22797  1
## 22798  1
## 22799  1
## 22800  1
## 22801  1
## 22802  1
## 22803  1
## 22804  1
## 22805  1
## 22806  1
## 22807  1
## 22808  1
## 22809  1
## 22810  1
## 22811  1
## 22812  1
## 22813  1
## 22814  1
## 22815  1
## 22816  1
## 22817  1
## 22818  1
## 22819  1
## 22820  1
## 22821  1
## 22822  1
## 22823  1
## 22824  1
## 22825  1
## 22826  1
## 22827  1
## 22828  1
## 22829  1
## 22830  1
## 22831  1
## 22832  1
## 22833  1
## 22834  1
## 22835  1
## 22836  1
## 22837  1
## 22838  1
## 22839  1
## 22840  1
## 22841  1
## 22842  1
## 22843  1
## 22844  1
## 22845  1
## 22846  1
## 22847  1
## 22848  1
## 22849  1
## 22850  1
## 22851  1
## 22852  1
## 22853  1
## 22854  1
## 22855  1
## 22856  1
## 22857  1
## 22858  1
## 22859  1
## 22860  1
## 22861  1
## 22862  1
## 22863  1
## 22864  1
## 22865  1
## 22866  1
## 22867  1
## 22868  1
## 22869  1
## 22870  1
## 22871  1
## 22872  1
## 22873  1
## 22874  1
## 22875  1
## 22876  1
## 22877  1
## 22878  1
## 22879  1
## 22880  1
## 22881  1
## 22882  1
## 22883  1
## 22884  1
## 22885  1
## 22886  1
## 22887  1
## 22888  1
## 22889  1
## 22890  1
## 22891  1
## 22892  1
## 22893  1
## 22894  1
## 22895  1
## 22896  1
## 22897  1
## 22898  1
## 22899  1
## 22900  1
## 22901  1
## 22902  1
## 22903  1
## 22904  1
## 22905  1
## 22906  1
## 22907  1
## 22908  1
## 22909  1
## 22910  1
## 22911  1
## 22912  1
## 22913  1
## 22914  1
## 22915  1
## 22916  1
## 22917  1
## 22918  1
## 22919  1
## 22920  1
## 22921  1
## 22922  1
## 22923  1
## 22924  1
## 22925  1
## 22926  1
## 22927  1
## 22928  1
## 22929  1
## 22930  1
## 22931  1
## 22932  1
## 22933  1
## 22934  1
## 22935  1
## 22936  1
## 22937  1
## 22938  1
## 22939  1
## 22940  1
## 22941  1
## 22942  1
## 22943  1
## 22944  1
## 22945  1
## 22946  1
## 22947  1
## 22948  1
## 22949  1
## 22950  1
## 22951  1
## 22952  1
## 22953  1
## 22954  1
## 22955  1
## 22956  1
## 22957  1
## 22958  1
## 22959  1
## 22960  1
## 22961  1
## 22962  1
## 22963  1
## 22964  1
## 22965  1
## 22966  1
## 22967  1
## 22968  1
## 22969  1
## 22970  1
## 22971  1
## 22972  1
## 22973  1
## 22974  1
## 22975  1
## 22976  1
## 22977  1
## 22978  1
## 22979  1
## 22980  1
## 22981  1
## 22982  1
## 22983  1
## 22984  1
## 22985  1
## 22986  1
## 22987  1
## 22988  1
## 22989  1
## 22990  1
## 22991  1
## 22992  1
## 22993  1
## 22994  1
## 22995  1
## 22996  1
## 22997  1
## 22998  1
## 22999  1
## 23000  1
## 23001  1
## 23002  1
## 23003  1
## 23004  1
## 23005  1
## 23006  1
## 23007  1
## 23008  1
## 23009  1
## 23010  1
## 23011  1
## 23012  1
## 23013  1
## 23014  1
## 23015  1
## 23016  1
## 23017  1
## 23018  1
## 23019  1
## 23020  1
## 23021  1
## 23022  1
## 23023  1
## 23024  1
## 23025  1
## 23026  1
## 23027  1
## 23028  1
## 23029  1
## 23030  1
## 23031  1
## 23032  1
## 23033  1
## 23034  1
## 23035  1
## 23036  1
## 23037  1
## 23038  1
## 23039  1
## 23040  1
## 23041  1
## 23042  1
## 23043  1
## 23044  1
## 23045  1
## 23046  1
## 23047  1
## 23048  1
## 23049  1
## 23050  1
## 23051  1
## 23052  1
## 23053  1
## 23054  1
## 23055  1
## 23056  1
## 23057  1
## 23058  1
## 23059  1
## 23060  1
## 23061  1
## 23062  1
## 23063  1
## 23064  1
## 23065  1
## 23066  1
## 23067  1
## 23068  1
## 23069  1
## 23070  1
## 23071  1
## 23072  1
## 23073  1
## 23074  1
## 23075  1
## 23076  1
## 23077  1
## 23078  1
## 23079  1
## 23080  1
## 23081  1
## 23082  1
## 23083  1
## 23084  1
## 23085  1
## 23086  1
## 23087  1
## 23088  1
## 23089  1
## 23090  1
## 23091  1
## 23092  1
## 23093  1
## 23094  1
## 23095  1
## 23096  1
## 23097  1
## 23098  1
## 23099  1
## 23100  1
## 23101  1
## 23102  1
## 23103  1
## 23104  1
## 23105  1
## 23106  1
## 23107  1
## 23108  1
## 23109  1
## 23110  1
## 23111  1
## 23112  1
## 23113  1
## 23114  1
## 23115  1
## 23116  1
## 23117  1
## 23118  1
## 23119  1
## 23120  1
## 23121  1
## 23122  1
## 23123  1
## 23124  1
## 23125  1
## 23126  1
## 23127  1
## 23128  1
## 23129  1
## 23130  1
## 23131  1
## 23132  1
## 23133  1
## 23134  1
## 23135  1
## 23136  1
## 23137  1
## 23138  1
## 23139  1
## 23140  1
## 23141  1
## 23142  1
## 23143  1
## 23144  1
## 23145  1
## 23146  1
## 23147  1
## 23148  1
## 23149  1
## 23150  1
## 23151  1
## 23152  1
## 23153  1
## 23154  1
## 23155  1
## 23156  1
## 23157  1
## 23158  1
## 23159  1
## 23160  1
## 23161  1
## 23162  1
## 23163  1
## 23164  1
## 23165  1
## 23166  1
## 23167  1
## 23168  1
## 23169  1
## 23170  1
## 23171  1
## 23172  1
## 23173  1
## 23174  1
## 23175  1
## 23176  1
## 23177  1
## 23178  1
## 23179  1
## 23180  1
## 23181  1
## 23182  1
## 23183  1
## 23184  1
## 23185  1
## 23186  1
## 23187  1
## 23188  1
## 23189  1
## 23190  1
## 23191  1
## 23192  1
## 23193  1
## 23194  1
## 23195  1
## 23196  1
## 23197  1
## 23198  1
## 23199  1
## 23200  1
## 23201  1
## 23202  1
## 23203  1
## 23204  1
## 23205  1
## 23206  1
## 23207  1
## 23208  1
## 23209  1
## 23210  1
## 23211  1
## 23212  1
## 23213  1
## 23214  1
## 23215  1
## 23216  1
## 23217  1
## 23218  1
## 23219  1
## 23220  1
## 23221  1
## 23222  1
## 23223  1
## 23224  1
## 23225  1
## 23226  1
## 23227  1
## 23228  1
## 23229  1
## 23230  1
## 23231  1
## 23232  1
## 23233  1
## 23234  1
## 23235  1
## 23236  1
## 23237  1
## 23238  1
## 23239  1
## 23240  1
## 23241  1
## 23242  1
## 23243  1
## 23244  1
## 23245  1
## 23246  1
## 23247  1
## 23248  1
## 23249  1
## 23250  1
## 23251  1
## 23252  1
## 23253  1
## 23254  1
## 23255  1
## 23256  1
## 23257  1
## 23258  1
## 23259  1
## 23260  1
## 23261  1
## 23262  1
## 23263  1
## 23264  1
## 23265  1
## 23266  1
## 23267  1
## 23268  1
## 23269  1
## 23270  1
## 23271  1
## 23272  1
## 23273  1
## 23274  1
## 23275  1
## 23276  1
## 23277  1
## 23278  1
## 23279  1
## 23280  1
## 23281  1
## 23282  1
## 23283  1
## 23284  1
## 23285  1
## 23286  1
## 23287  1
## 23288  1
## 23289  1
## 23290  1
## 23291  1
## 23292  1
## 23293  1
## 23294  1
## 23295  1
## 23296  1
## 23297  1
## 23298  1
## 23299  1
## 23300  1
## 23301  1
## 23302  1
## 23303  1
## 23304  1
## 23305  1
## 23306  1
## 23307  1
## 23308  1
## 23309  1
## 23310  1
## 23311  1
## 23312  1
## 23313  1
## 23314  1
## 23315  1
## 23316  1
## 23317  1
## 23318  1
## 23319  1
## 23320  1
## 23321  1
## 23322  1
## 23323  1
## 23324  1
## 23325  1
## 23326  1
## 23327  1
## 23328  1
## 23329  1
## 23330  1
## 23331  1
## 23332  1
## 23333  1
## 23334  1
## 23335  1
## 23336  1
## 23337  1
## 23338  1
## 23339  1
## 23340  1
## 23341  1
## 23342  1
## 23343  1
## 23344  1
## 23345  1
## 23346  1
## 23347  1
## 23348  1
## 23349  1
## 23350  1
## 23351  1
## 23352  1
## 23353  1
## 23354  1
## 23355  1
## 23356  1
## 23357  1
## 23358  1
## 23359  1
## 23360  1
## 23361  1
## 23362  1
## 23363  1
## 23364  1
## 23365  1
## 23366  1
## 23367  1
## 23368  1
## 23369  1
## 23370  1
## 23371  1
## 23372  1
## 23373  1
## 23374  1
## 23375  1
## 23376  1
## 23377  1
## 23378  1
## 23379  1
## 23380  1
## 23381  1
## 23382  1
## 23383  1
## 23384  1
## 23385  1
## 23386  1
## 23387  1
## 23388  1
## 23389  1
## 23390  1
## 23391  1
## 23392  1
## 23393  1
## 23394  1
## 23395  1
## 23396  1
## 23397  1
## 23398  1
## 23399  1
## 23400  1
## 23401  1
## 23402  1
## 23403  1
## 23404  1
## 23405  1
## 23406  1
## 23407  1
## 23408  1
## 23409  1
## 23410  1
## 23411  1
## 23412  1
## 23413  1
## 23414  1
## 23415  1
## 23416  1
## 23417  1
## 23418  1
## 23419  1
## 23420  1
## 23421  1
## 23422  1
## 23423  1
## 23424  1
## 23425  1
## 23426  1
## 23427  1
## 23428  1
## 23429  1
## 23430  1
## 23431  1
## 23432  1
## 23433  1
## 23434  1
## 23435  1
## 23436  1
## 23437  1
## 23438  1
## 23439  1
## 23440  1
## 23441  1
## 23442  1
## 23443  1
## 23444  1
## 23445  1
## 23446  1
## 23447  1
## 23448  1
## 23449  1
## 23450  1
## 23451  1
## 23452  1
## 23453  1
## 23454  1
## 23455  1
## 23456  1
## 23457  1
## 23458  1
## 23459  1
## 23460  1
## 23461  1
## 23462  1
## 23463  1
## 23464  1
## 23465  1
## 23466  1
## 23467  1
## 23468  1
## 23469  1
## 23470  1
## 23471  1
## 23472  1
## 23473  1
## 23474  1
## 23475  1
## 23476  1
## 23477  1
## 23478  1
## 23479  1
## 23480  1
## 23481  1
## 23482  1
## 23483  1
## 23484  1
## 23485  1
## 23486  1
## 23487  1
## 23488  1
## 23489  1
## 23490  1
## 23491  1
## 23492  1
## 23493  1
## 23494  1
## 23495  1
## 23496  1
## 23497  1
## 23498  1
## 23499  1
## 23500  1
## 23501  1
## 23502  1
## 23503  1
## 23504  1
## 23505  1
## 23506  1
## 23507  1
## 23508  1
## 23509  1
## 23510  1
## 23511  1
## 23512  1
## 23513  1
## 23514  1
## 23515  1
## 23516  1
## 23517  1
## 23518  1
## 23519  1
## 23520  1
## 23521  1
## 23522  1
## 23523  1
## 23524  1
## 23525  1
## 23526  1
## 23527  1
## 23528  1
## 23529  1
## 23530  1
## 23531  1
## 23532  1
## 23533  1
## 23534  1
## 23535  1
## 23536  1
## 23537  1
## 23538  1
## 23539  1
## 23540  1
## 23541  1
## 23542  1
## 23543  1
## 23544  1
## 23545  1
## 23546  1
## 23547  1
## 23548  1
## 23549  1
## 23550  1
## 23551  1
## 23552  1
## 23553  1
## 23554  1
## 23555  1
## 23556  1
## 23557  1
## 23558  1
## 23559  1
## 23560  1
## 23561  1
## 23562  1
## 23563  1
## 23564  1
## 23565  1
## 23566  1
## 23567  1
## 23568  1
## 23569  1
## 23570  1
## 23571  1
## 23572  1
## 23573  1
## 23574  1
## 23575  1
## 23576  1
## 23577  1
## 23578  1
## 23579  1
## 23580  1
## 23581  1
## 23582  1
## 23583  1
## 23584  1
## 23585  1
## 23586  1
## 23587  1
## 23588  1
## 23589  1
## 23590  1
## 23591  1
## 23592  1
## 23593  1
## 23594  1
## 23595  1
## 23596  1
## 23597  1
## 23598  1
## 23599  1
## 23600  1
## 23601  1
## 23602  1
## 23603  1
## 23604  1
## 23605  1
## 23606  1
## 23607  1
## 23608  1
## 23609  1
## 23610  1
## 23611  1
## 23612  1
## 23613  1
## 23614  1
## 23615  1
## 23616  1
## 23617  1
## 23618  1
## 23619  1
## 23620  1
## 23621  1
## 23622  1
## 23623  1
## 23624  1
## 23625  1
## 23626  1
## 23627  1
## 23628  1
## 23629  1
## 23630  1
## 23631  1
## 23632  1
## 23633  1
## 23634  1
## 23635  1
## 23636  1
## 23637  1
## 23638  1
## 23639  1
## 23640  1
## 23641  1
## 23642  1
## 23643  1
## 23644  1
## 23645  1
## 23646  1
## 23647  1
## 23648  1
## 23649  1
## 23650  1
## 23651  1
## 23652  1
## 23653  1
## 23654  1
## 23655  1
## 23656  1
## 23657  1
## 23658  1
## 23659  1
## 23660  1
## 23661  1
## 23662  1
## 23663  1
## 23664  1
## 23665  1
## 23666  1
## 23667  1
## 23668  1
## 23669  1
## 23670  1
## 23671  1
## 23672  1
## 23673  1
## 23674  1
## 23675  1
## 23676  1
## 23677  1
## 23678  1
## 23679  1
## 23680  1
## 23681  1
## 23682  1
## 23683  1
## 23684  1
## 23685  1
## 23686  1
## 23687  1
## 23688  1
## 23689  1
## 23690  1
## 23691  1
## 23692  1
## 23693  1
## 23694  1
## 23695  1
## 23696  1
## 23697  1
## 23698  1
## 23699  1
## 23700  1
## 23701  1
## 23702  1
## 23703  1
## 23704  1
## 23705  1
## 23706  1
## 23707  1
## 23708  1
## 23709  1
## 23710  1
## 23711  1
## 23712  1
## 23713  1
## 23714  1
## 23715  1
## 23716  1
## 23717  1
## 23718  1
## 23719  1
## 23720  1
## 23721  1
## 23722  1
## 23723  1
## 23724  1
## 23725  1
## 23726  1
## 23727  1
## 23728  1
## 23729  1
## 23730  1
## 23731  1
## 23732  1
## 23733  1
## 23734  1
## 23735  1
## 23736  1
## 23737  1
## 23738  1
## 23739  1
## 23740  1
## 23741  1
## 23742  1
## 23743  1
## 23744  1
## 23745  1
## 23746  1
## 23747  1
## 23748  1
## 23749  1
## 23750  1
## 23751  1
## 23752  1
## 23753  1
## 23754  1
## 23755  1
## 23756  1
## 23757  1
## 23758  1
## 23759  1
## 23760  1
## 23761  1
## 23762  1
## 23763  1
## 23764  1
## 23765  1
## 23766  1
## 23767  1
## 23768  1
## 23769  1
## 23770  1
## 23771  1
## 23772  1
## 23773  1
## 23774  1
## 23775  1
## 23776  1
## 23777  1
## 23778  1
## 23779  1
## 23780  1
## 23781  1
## 23782  1
## 23783  1
## 23784  1
## 23785  1
## 23786  1
## 23787  1
## 23788  1
## 23789  1
## 23790  1
## 23791  1
## 23792  1
## 23793  1
## 23794  1
## 23795  1
## 23796  1
## 23797  1
## 23798  1
## 23799  1
## 23800  1
## 23801  1
## 23802  1
## 23803  1
## 23804  1
## 23805  1
## 23806  1
## 23807  1
## 23808  1
## 23809  1
## 23810  1
## 23811  1
## 23812  1
## 23813  1
## 23814  1
## 23815  1
## 23816  1
## 23817  1
## 23818  1
## 23819  1
## 23820  1
## 23821  1
## 23822  1
## 23823  1
## 23824  1
## 23825  1
## 23826  1
## 23827  1
## 23828  1
## 23829  1
## 23830  1
## 23831  1
## 23832  1
## 23833  1
## 23834  1
## 23835  1
## 23836  1
## 23837  1
## 23838  1
## 23839  1
## 23840  1
## 23841  1
## 23842  1
## 23843  1
## 23844  1
## 23845  1
## 23846  1
## 23847  1
## 23848  1
## 23849  1
## 23850  1
## 23851  1
## 23852  1
## 23853  1
## 23854  1
## 23855  1
## 23856  1
## 23857  1
## 23858  1
## 23859  1
## 23860  1
## 23861  1
## 23862  1
## 23863  1
## 23864  1
## 23865  1
## 23866  1
## 23867  1
## 23868  1
## 23869  1
## 23870  1
## 23871  1
## 23872  1
## 23873  1
## 23874  1
## 23875  1
## 23876  1
## 23877  1
## 23878  1
## 23879  1
## 23880  1
## 23881  1
## 23882  1
## 23883  1
## 23884  1
## 23885  1
## 23886  1
## 23887  1
## 23888  1
## 23889  1
## 23890  1
## 23891  1
## 23892  1
## 23893  1
## 23894  1
## 23895  1
## 23896  1
## 23897  1
## 23898  1
## 23899  1
## 23900  1
## 23901  1
## 23902  1
## 23903  1
## 23904  1
## 23905  1
## 23906  1
## 23907  1
## 23908  1
## 23909  1
## 23910  1
## 23911  1
## 23912  1
## 23913  1
## 23914  1
## 23915  1
## 23916  1
## 23917  1
## 23918  1
## 23919  1
## 23920  1
## 23921  1
## 23922  1
## 23923  1
## 23924  1
## 23925  1
## 23926  1
## 23927  1
## 23928  1
## 23929  1
## 23930  1
## 23931  1
## 23932  1
## 23933  1
## 23934  1
## 23935  1
## 23936  1
## 23937  1
## 23938  1
## 23939  1
## 23940  1
## 23941  1
## 23942  1
## 23943  1
## 23944  1
## 23945  1
## 23946  1
## 23947  1
## 23948  1
## 23949  1
## 23950  1
## 23951  1
## 23952  1
## 23953  1
## 23954  1
## 23955  1
## 23956  1
## 23957  1
## 23958  1
## 23959  1
## 23960  1
## 23961  1
## 23962  1
## 23963  1
## 23964  1
## 23965  1
## 23966  1
## 23967  1
## 23968  1
## 23969  1
## 23970  1
## 23971  1
## 23972  1
## 23973  1
## 23974  1
## 23975  1
## 23976  1
## 23977  1
## 23978  1
## 23979  1
## 23980  1
## 23981  1
## 23982  1
## 23983  1
## 23984  1
## 23985  1
## 23986  1
## 23987  1
## 23988  1
## 23989  1
## 23990  1
## 23991  1
## 23992  1
## 23993  1
## 23994  1
## 23995  1
## 23996  1
## 23997  1
## 23998  1
## 23999  1
## 24000  1
## 24001  1
## 24002  1
## 24003  1
## 24004  1
## 24005  1
## 24006  1
## 24007  1
## 24008  1
## 24009  1
## 24010  1
## 24011  1
## 24012  1
## 24013  1
## 24014  1
## 24015  1
## 24016  1
## 24017  1
## 24018  1
## 24019  1
## 24020  1
## 24021  1
## 24022  1
## 24023  1
## 24024  1
## 24025  1
## 24026  1
## 24027  1
## 24028  1
## 24029  1
## 24030  1
## 24031  1
## 24032  1
## 24033  1
## 24034  1
## 24035  1
## 24036  1
## 24037  1
## 24038  1
## 24039  1
## 24040  1
## 24041  1
## 24042  1
## 24043  1
## 24044  1
## 24045  1
## 24046  1
## 24047  1
## 24048  1
## 24049  1
## 24050  1
## 24051  1
## 24052  1
## 24053  1
## 24054  1
## 24055  1
## 24056  1
## 24057  1
## 24058  1
## 24059  1
## 24060  1
## 24061  1
## 24062  1
## 24063  1
## 24064  1
## 24065  1
## 24066  1
## 24067  1
## 24068  1
## 24069  1
## 24070  1
## 24071  1
## 24072  1
## 24073  1
## 24074  1
## 24075  1
## 24076  1
## 24077  1
## 24078  1
## 24079  1
## 24080  1
## 24081  1
## 24082  1
## 24083  1
## 24084  1
## 24085  1
## 24086  1
## 24087  1
## 24088  1
## 24089  1
## 24090  1
## 24091  1
## 24092  1
## 24093  1
## 24094  1
## 24095  1
## 24096  1
## 24097  1
## 24098  1
## 24099  1
## 24100  1
## 24101  1
## 24102  1
## 24103  1
## 24104  1
## 24105  1
## 24106  1
## 24107  1
## 24108  1
## 24109  1
## 24110  1
## 24111  1
## 24112  1
## 24113  1
## 24114  1
## 24115  1
## 24116  1
## 24117  1
## 24118  1
## 24119  1
## 24120  1
## 24121  1
## 24122  1
## 24123  1
## 24124  1
## 24125  1
## 24126  1
## 24127  1
## 24128  1
## 24129  1
## 24130  1
## 24131  1
## 24132  1
## 24133  1
## 24134  1
## 24135  1
## 24136  1
## 24137  1
## 24138  1
## 24139  1
## 24140  1
## 24141  1
## 24142  1
## 24143  1
## 24144  1
## 24145  1
## 24146  1
## 24147  1
## 24148  1
## 24149  1
## 24150  1
## 24151  1
## 24152  1
## 24153  1
## 24154  1
## 24155  1
## 24156  1
## 24157  1
## 24158  1
## 24159  1
## 24160  1
## 24161  1
## 24162  1
## 24163  1
## 24164  1
## 24165  1
## 24166  1
## 24167  1
## 24168  1
## 24169  1
## 24170  1
## 24171  1
## 24172  1
## 24173  1
## 24174  1
## 24175  1
## 24176  1
## 24177  1
## 24178  1
## 24179  1
## 24180  1
## 24181  1
## 24182  1
## 24183  1
## 24184  1
## 24185  1
## 24186  1
## 24187  1
## 24188  1
## 24189  1
## 24190  1
## 24191  1
## 24192  1
## 24193  1
## 24194  1
## 24195  1
## 24196  1
## 24197  1
## 24198  1
## 24199  1
## 24200  1
## 24201  1
## 24202  1
## 24203  1
## 24204  1
## 24205  1
## 24206  1
## 24207  1
## 24208  1
## 24209  1
## 24210  1
## 24211  1
## 24212  1
## 24213  1
## 24214  1
## 24215  1
## 24216  1
## 24217  1
## 24218  1
## 24219  1
## 24220  1
## 24221  1
## 24222  1
## 24223  1
## 24224  1
## 24225  1
## 24226  1
## 24227  1
## 24228  1
## 24229  1
## 24230  1
## 24231  1
## 24232  1
## 24233  1
## 24234  1
## 24235  1
## 24236  1
## 24237  1
## 24238  1
## 24239  1
## 24240  1
## 24241  1
## 24242  1
## 24243  1
## 24244  1
## 24245  1
## 24246  1
## 24247  1
## 24248  1
## 24249  1
## 24250  1
## 24251  1
## 24252  1
## 24253  1
## 24254  1
## 24255  1
## 24256  1
## 24257  1
## 24258  1
## 24259  1
## 24260  1
## 24261  1
## 24262  1
## 24263  1
## 24264  1
## 24265  1
## 24266  1
## 24267  1
## 24268  1
## 24269  1
## 24270  1
## 24271  1
## 24272  1
## 24273  1
## 24274  1
## 24275  1
## 24276  1
## 24277  1
## 24278  1
## 24279  1
## 24280  1
## 24281  1
## 24282  1
## 24283  1
## 24284  1
## 24285  1
## 24286  1
## 24287  1
## 24288  1
## 24289  1
## 24290  1
## 24291  1
## 24292  1
## 24293  1
## 24294  1
## 24295  1
## 24296  1
## 24297  1
## 24298  1
## 24299  1
## 24300  1
## 24301  1
## 24302  1
## 24303  1
## 24304  1
## 24305  1
## 24306  1
## 24307  1
## 24308  1
## 24309  1
## 24310  1
## 24311  1
## 24312  1
## 24313  1
## 24314  1
## 24315  1
## 24316  1
## 24317  1
## 24318  1
## 24319  1
## 24320  1
## 24321  1
## 24322  1
## 24323  1
## 24324  1
## 24325  1
## 24326  1
## 24327  1
## 24328  1
## 24329  1
## 24330  1
## 24331  1
## 24332  1
## 24333  1
## 24334  1
## 24335  1
## 24336  1
## 24337  1
## 24338  1
## 24339  1
## 24340  1
## 24341  1
## 24342  1
## 24343  1
## 24344  1
## 24345  1
## 24346  1
## 24347  1
## 24348  1
## 24349  1
## 24350  1
## 24351  1
## 24352  1
## 24353  1
## 24354  1
## 24355  1
## 24356  1
## 24357  1
## 24358  1
## 24359  1
## 24360  1
## 24361  1
## 24362  1
## 24363  1
## 24364  1
## 24365  1
## 24366  1
## 24367  1
## 24368  1
## 24369  1
## 24370  1
## 24371  1
## 24372  1
## 24373  1
## 24374  1
## 24375  1
## 24376  1
## 24377  1
## 24378  1
## 24379  1
## 24380  1
## 24381  1
## 24382  1
## 24383  1
## 24384  1
## 24385  1
## 24386  1
## 24387  1
## 24388  1
## 24389  1
## 24390  1
## 24391  1
## 24392  1
## 24393  1
## 24394  1
## 24395  1
## 24396  1
## 24397  1
## 24398  1
## 24399  1
## 24400  1
## 24401  1
## 24402  1
## 24403  1
## 24404  1
## 24405  1
## 24406  1
## 24407  1
## 24408  1
## 24409  1
## 24410  1
## 24411  1
## 24412  1
## 24413  1
## 24414  1
## 24415  1
## 24416  1
## 24417  1
## 24418  1
## 24419  1
## 24420  1
## 24421  1
## 24422  1
## 24423  1
## 24424  1
## 24425  1
## 24426  1
## 24427  1
## 24428  1
## 24429  1
## 24430  1
## 24431  1
## 24432  1
## 24433  1
## 24434  1
## 24435  1
## 24436  1
## 24437  1
## 24438  1
## 24439  1
## 24440  1
## 24441  1
## 24442  1
## 24443  1
## 24444  1
## 24445  1
## 24446  1
## 24447  1
## 24448  1
## 24449  1
## 24450  1
## 24451  1
## 24452  1
## 24453  1
## 24454  1
## 24455  1
## 24456  1
## 24457  1
## 24458  1
## 24459  1
## 24460  1
## 24461  1
## 24462  1
## 24463  1
## 24464  1
## 24465  1
## 24466  1
## 24467  1
## 24468  1
## 24469  1
## 24470  1
## 24471  1
## 24472  1
## 24473  1
## 24474  1
## 24475  1
## 24476  1
## 24477  1
## 24478  1
## 24479  1
## 24480  1
## 24481  1
## 24482  1
## 24483  1
## 24484  1
## 24485  1
## 24486  1
## 24487  1
## 24488  1
## 24489  1
## 24490  1
## 24491  1
## 24492  1
## 24493  1
## 24494  1
## 24495  1
## 24496  1
## 24497  1
## 24498  1
## 24499  1
## 24500  1
## 24501  1
## 24502  1
## 24503  1
## 24504  1
## 24505  1
## 24506  1
## 24507  1
## 24508  1
## 24509  1
## 24510  1
## 24511  1
## 24512  1
## 24513  1
## 24514  1
## 24515  1
## 24516  1
## 24517  1
## 24518  1
## 24519  1
## 24520  1
## 24521  1
## 24522  1
## 24523  1
## 24524  1
## 24525  1
## 24526  1
## 24527  1
## 24528  1
## 24529  1
## 24530  1
## 24531  1
## 24532  1
## 24533  1
## 24534  1
## 24535  1
## 24536  1
## 24537  1
## 24538  1
## 24539  1
## 24540  1
## 24541  1
## 24542  1
## 24543  1
## 24544  1
## 24545  1
## 24546  1
## 24547  1
## 24548  1
## 24549  1
## 24550  1
## 24551  1
## 24552  1
## 24553  1
## 24554  1
## 24555  1
## 24556  1
## 24557  1
## 24558  1
## 24559  1
## 24560  1
## 24561  1
## 24562  1
## 24563  1
## 24564  1
## 24565  1
## 24566  1
## 24567  1
## 24568  1
## 24569  1
## 24570  1
## 24571  1
## 24572  1
## 24573  1
## 24574  1
## 24575  1
## 24576  1
## 24577  1
## 24578  1
## 24579  1
## 24580  1
## 24581  1
## 24582  1
## 24583  1
## 24584  1
## 24585  1
## 24586  1
## 24587  1
## 24588  1
## 24589  1
## 24590  1
## 24591  1
## 24592  1
## 24593  1
## 24594  1
## 24595  1
## 24596  1
## 24597  1
## 24598  1
## 24599  1
## 24600  1
## 24601  1
## 24602  1
## 24603  1
## 24604  1
## 24605  1
## 24606  1
## 24607  1
## 24608  1
## 24609  1
## 24610  1
## 24611  1
## 24612  1
## 24613  1
## 24614  1
## 24615  1
## 24616  1
## 24617  1
## 24618  1
## 24619  1
## 24620  1
## 24621  1
## 24622  1
## 24623  1
## 24624  1
## 24625  1
## 24626  1
## 24627  1
## 24628  1
## 24629  1
## 24630  1
## 24631  1
## 24632  1
## 24633  1
## 24634  1
## 24635  1
## 24636  1
## 24637  1
## 24638  1
## 24639  1
## 24640  1
## 24641  1
## 24642  1
## 24643  1
## 24644  1
## 24645  1
## 24646  1
## 24647  1
## 24648  1
## 24649  1
## 24650  1
## 24651  1
## 24652  1
## 24653  1
## 24654  1
## 24655  1
## 24656  1
## 24657  1
## 24658  1
## 24659  1
## 24660  1
## 24661  1
## 24662  1
## 24663  1
## 24664  1
## 24665  1
## 24666  1
## 24667  1
## 24668  1
## 24669  1
## 24670  1
## 24671  1
## 24672  1
## 24673  1
## 24674  1
## 24675  1
## 24676  1
## 24677  1
## 24678  1
## 24679  1
## 24680  1
## 24681  1
## 24682  1
## 24683  1
## 24684  1
## 24685  1
## 24686  1
## 24687  1
## 24688  1
## 24689  1
## 24690  1
## 24691  1
## 24692  1
## 24693  1
## 24694  1
## 24695  1
## 24696  1
## 24697  1
## 24698  1
## 24699  1
## 24700  1
## 24701  1
## 24702  1
## 24703  1
## 24704  1
## 24705  1
## 24706  1
## 24707  1
## 24708  1
## 24709  1
## 24710  1
## 24711  1
## 24712  1
## 24713  1
## 24714  1
## 24715  1
## 24716  1
## 24717  1
## 24718  1
## 24719  1
## 24720  1
## 24721  1
## 24722  1
## 24723  1
## 24724  1
## 24725  1
## 24726  1
## 24727  1
## 24728  1
## 24729  1
## 24730  1
## 24731  1
## 24732  1
## 24733  1
## 24734  1
## 24735  1
## 24736  1
## 24737  1
## 24738  1
## 24739  1
## 24740  1
## 24741  1
## 24742  1
## 24743  1
## 24744  1
## 24745  1
## 24746  1
## 24747  1
## 24748  1
## 24749  1
## 24750  1
## 24751  1
## 24752  1
## 24753  1
## 24754  1
## 24755  1
## 24756  1
## 24757  1
## 24758  1
## 24759  1
## 24760  1
## 24761  1
## 24762  1
## 24763  1
## 24764  1
## 24765  1
## 24766  1
## 24767  1
## 24768  1
## 24769  1
## 24770  1
## 24771  1
## 24772  1
## 24773  1
## 24774  1
## 24775  1
## 24776  1
## 24777  1
## 24778  1
## 24779  1
## 24780  1
## 24781  1
## 24782  1
## 24783  1
## 24784  1
## 24785  1
## 24786  1
## 24787  1
## 24788  1
## 24789  1
## 24790  1
## 24791  1
## 24792  1
## 24793  1
## 24794  1
## 24795  1
## 24796  1
## 24797  1
## 24798  1
## 24799  1
## 24800  1
## 24801  1
## 24802  1
## 24803  1
## 24804  1
## 24805  1
## 24806  1
## 24807  1
## 24808  1
## 24809  1
## 24810  1
## 24811  1
## 24812  1
## 24813  1
## 24814  1
## 24815  1
## 24816  1
## 24817  1
## 24818  1
## 24819  1
## 24820  1
## 24821  1
## 24822  1
## 24823  1
## 24824  1
## 24825  1
## 24826  1
## 24827  1
## 24828  1
## 24829  1
## 24830  1
## 24831  1
## 24832  1
## 24833  1
## 24834  1
## 24835  1
## 24836  1
## 24837  1
## 24838  1
## 24839  1
## 24840  1
## 24841  1
## 24842  1
## 24843  1
## 24844  1
## 24845  1
## 24846  1
## 24847  1
## 24848  1
## 24849  1
## 24850  1
## 24851  1
## 24852  1
## 24853  1
## 24854  1
## 24855  1
## 24856  1
## 24857  1
## 24858  1
## 24859  1
## 24860  1
## 24861  1
## 24862  1
## 24863  1
## 24864  1
## 24865  1
## 24866  1
## 24867  1
## 24868  1
## 24869  1
## 24870  1
## 24871  1
## 24872  1
## 24873  1
## 24874  1
## 24875  1
## 24876  1
## 24877  1
## 24878  1
## 24879  1
## 24880  1
## 24881  1
## 24882  1
## 24883  1
## 24884  1
## 24885  1
## 24886  1
## 24887  1
## 24888  1
## 24889  1
## 24890  1
## 24891  1
## 24892  1
## 24893  1
## 24894  1
## 24895  1
## 24896  1
## 24897  1
## 24898  1
## 24899  1
## 24900  1
## 24901  1
## 24902  1
## 24903  1
## 24904  1
## 24905  1
## 24906  1
## 24907  1
## 24908  1
## 24909  1
## 24910  1
## 24911  1
## 24912  1
## 24913  1
## 24914  1
## 24915  1
## 24916  1
## 24917  1
## 24918  1
## 24919  1
## 24920  1
## 24921  1
## 24922  1
## 24923  1
## 24924  1
## 24925  1
## 24926  1
## 24927  1
## 24928  1
## 24929  1
## 24930  1
## 24931  1
## 24932  1
## 24933  1
## 24934  1
## 24935  1
## 24936  1
## 24937  1
## 24938  1
## 24939  1
## 24940  1
## 24941  1
## 24942  1
## 24943  1
## 24944  1
## 24945  1
## 24946  1
## 24947  1
## 24948  1
## 24949  1
## 24950  1
## 24951  1
## 24952  1
## 24953  1
## 24954  1
## 24955  1
## 24956  1
## 24957  1
## 24958  1
## 24959  1
## 24960  1
## 24961  1
## 24962  1
## 24963  1
## 24964  1
## 24965  1
## 24966  1
## 24967  1
## 24968  1
## 24969  1
## 24970  1
## 24971  1
## 24972  1
## 24973  1
## 24974  1
## 24975  1
## 24976  1
## 24977  1
## 24978  1
## 24979  1
## 24980  1
## 24981  1
## 24982  1
## 24983  1
## 24984  1
## 24985  1
## 24986  1
## 24987  1
## 24988  1
## 24989  1
## 24990  1
## 24991  1
## 24992  1
## 24993  1
## 24994  1
## 24995  1
## 24996  1
## 24997  1
## 24998  1
## 24999  1
## 25000  1
## 25001  1
## 25002  1
## 25003  1
## 25004  1
## 25005  1
## 25006  1
## 25007  1
## 25008  1
## 25009  1
## 25010  1
## 25011  1
## 25012  1
## 25013  1
## 25014  1
## 25015  1
## 25016  1
## 25017  1
## 25018  1
## 25019  1
## 25020  1
## 25021  1
## 25022  1
## 25023  1
## 25024  1
## 25025  1
## 25026  1
## 25027  1
## 25028  1
## 25029  1
## 25030  1
## 25031  1
## 25032  1
## 25033  1
## 25034  1
## 25035  1
## 25036  1
## 25037  1
## 25038  1
## 25039  1
## 25040  1
## 25041  1
## 25042  1
## 25043  1
## 25044  1
## 25045  1
## 25046  1
## 25047  1
## 25048  1
## 25049  1
## 25050  1
## 25051  1
## 25052  1
## 25053  1
## 25054  1
## 25055  1
## 25056  1
## 25057  1
## 25058  1
## 25059  1
## 25060  1
## 25061  1
## 25062  1
## 25063  1
## 25064  1
## 25065  1
## 25066  1
## 25067  1
## 25068  1
## 25069  1
## 25070  1
## 25071  1
## 25072  1
## 25073  1
## 25074  1
## 25075  1
## 25076  1
## 25077  1
## 25078  1
## 25079  1
## 25080  1
## 25081  1
## 25082  1
## 25083  1
## 25084  1
## 25085  1
## 25086  1
## 25087  1
## 25088  1
## 25089  1
## 25090  1
## 25091  1
## 25092  1
## 25093  1
## 25094  1
## 25095  1
## 25096  1
## 25097  1
## 25098  1
## 25099  1
## 25100  1
## 25101  1
## 25102  1
## 25103  1
## 25104  1
## 25105  1
## 25106  1
## 25107  1
## 25108  1
## 25109  1
## 25110  1
## 25111  1
## 25112  1
## 25113  1
## 25114  1
## 25115  1
## 25116  1
## 25117  1
## 25118  1
## 25119  1
## 25120  1
## 25121  1
## 25122  1
## 25123  1
## 25124  1
## 25125  1
## 25126  1
## 25127  1
## 25128  1
## 25129  1
## 25130  1
## 25131  1
## 25132  1
## 25133  1
## 25134  1
## 25135  1
## 25136  1
## 25137  1
## 25138  1
## 25139  1
## 25140  1
## 25141  1
## 25142  1
## 25143  1
## 25144  1
## 25145  1
## 25146  1
## 25147  1
## 25148  1
## 25149  1
## 25150  1
## 25151  1
## 25152  1
## 25153  1
## 25154  1
## 25155  1
## 25156  1
## 25157  1
## 25158  1
## 25159  1
## 25160  1
## 25161  1
## 25162  1
## 25163  1
## 25164  1
## 25165  1
## 25166  1
## 25167  1
## 25168  1
## 25169  1
## 25170  1
## 25171  1
## 25172  1
## 25173  1
## 25174  1
## 25175  1
## 25176  1
## 25177  1
## 25178  1
## 25179  1
## 25180  1
## 25181  1
## 25182  1
## 25183  1
## 25184  1
## 25185  1
## 25186  1
## 25187  1
## 25188  1
## 25189  1
## 25190  1
## 25191  1
## 25192  1
## 25193  1
## 25194  1
## 25195  1
## 25196  1
## 25197  1
## 25198  1
## 25199  1
## 25200  1
## 25201  1
## 25202  1
## 25203  1
## 25204  1
## 25205  1
## 25206  1
## 25207  1
## 25208  1
## 25209  1
## 25210  1
## 25211  1
## 25212  1
## 25213  1
## 25214  1
## 25215  1
## 25216  1
## 25217  1
## 25218  1
## 25219  1
## 25220  1
## 25221  1
## 25222  1
## 25223  1
## 25224  1
## 25225  1
## 25226  1
## 25227  1
## 25228  1
## 25229  1
## 25230  1
## 25231  1
## 25232  1
## 25233  1
## 25234  1
## 25235  1
## 25236  1
## 25237  1
## 25238  1
## 25239  1
## 25240  1
## 25241  1
## 25242  1
## 25243  1
## 25244  1
## 25245  1
## 25246  1
## 25247  1
## 25248  1
## 25249  1
## 25250  1
## 25251  1
## 25252  1
## 25253  1
## 25254  1
## 25255  1
## 25256  1
## 25257  1
## 25258  1
## 25259  1
## 25260  1
## 25261  1
## 25262  1
## 25263  1
## 25264  1
## 25265  1
## 25266  1
## 25267  1
## 25268  1
## 25269  1
## 25270  1
## 25271  1
## 25272  1
## 25273  1
## 25274  1
## 25275  1
## 25276  1
## 25277  1
## 25278  1
## 25279  1
## 25280  1
## 25281  1
## 25282  1
## 25283  1
## 25284  1
## 25285  1
## 25286  1
## 25287  1
## 25288  1
## 25289  1
## 25290  1
## 25291  1
## 25292  1
## 25293  1
## 25294  1
## 25295  1
## 25296  1
## 25297  1
## 25298  1
## 25299  1
## 25300  1
## 25301  1
## 25302  1
## 25303  1
## 25304  1
## 25305  1
## 25306  1
## 25307  1
## 25308  1
## 25309  1
## 25310  1
## 25311  1
## 25312  1
## 25313  1
## 25314  1
## 25315  1
## 25316  1
## 25317  1
## 25318  1
## 25319  1
## 25320  1
## 25321  1
## 25322  1
## 25323  1
## 25324  1
## 25325  1
## 25326  1
## 25327  1
## 25328  1
## 25329  1
## 25330  1
## 25331  1
## 25332  1
## 25333  1
## 25334  1
## 25335  1
## 25336  1
## 25337  1
## 25338  1
## 25339  1
## 25340  1
## 25341  1
## 25342  1
## 25343  1
## 25344  1
## 25345  1
## 25346  1
## 25347  1
## 25348  1
## 25349  1
## 25350  1
## 25351  1
## 25352  1
## 25353  1
## 25354  1
## 25355  1
## 25356  1
## 25357  1
## 25358  1
## 25359  1
## 25360  1
## 25361  1
## 25362  1
## 25363  1
## 25364  1
## 25365  1
## 25366  1
## 25367  1
## 25368  1
## 25369  1
## 25370  1
## 25371  1
## 25372  1
## 25373  1
## 25374  1
## 25375  1
## 25376  1
## 25377  1
## 25378  1
## 25379  1
## 25380  1
## 25381  1
## 25382  1
## 25383  1
## 25384  1
## 25385  1
## 25386  1
## 25387  1
## 25388  1
## 25389  1
## 25390  1
## 25391  1
## 25392  1
## 25393  1
## 25394  1
## 25395  1
## 25396  1
## 25397  1
## 25398  1
## 25399  1
## 25400  1
## 25401  1
## 25402  1
## 25403  1
## 25404  1
## 25405  1
## 25406  1
## 25407  1
## 25408  1
## 25409  1
## 25410  1
## 25411  1
## 25412  1
## 25413  1
## 25414  1
## 25415  1
## 25416  1
## 25417  1
## 25418  1
## 25419  1
## 25420  1
## 25421  1
## 25422  1
## 25423  1
## 25424  1
## 25425  1
## 25426  1
## 25427  1
## 25428  1
## 25429  1
## 25430  1
## 25431  1
## 25432  1
## 25433  1
## 25434  1
## 25435  1
## 25436  1
## 25437  1
## 25438  1
## 25439  1
## 25440  1
## 25441  1
## 25442  1
## 25443  1
## 25444  1
## 25445  1
## 25446  1
## 25447  1
## 25448  1
## 25449  1
## 25450  1
## 25451  1
## 25452  1
## 25453  1
## 25454  1
## 25455  1
## 25456  1
## 25457  1
## 25458  1
## 25459  1
## 25460  1
## 25461  1
## 25462  1
## 25463  1
## 25464  1
## 25465  1
## 25466  1
## 25467  1
## 25468  1
## 25469  1
## 25470  1
## 25471  1
## 25472  1
## 25473  1
## 25474  1
## 25475  1
## 25476  1
## 25477  1
## 25478  1
## 25479  1
## 25480  1
## 25481  1
## 25482  1
## 25483  1
## 25484  1
## 25485  1
## 25486  1
## 25487  1
## 25488  1
## 25489  1
## 25490  1
## 25491  1
## 25492  1
## 25493  1
## 25494  1
## 25495  1
## 25496  1
## 25497  1
## 25498  1
## 25499  1
## 25500  1
## 25501  1
## 25502  1
## 25503  1
## 25504  1
## 25505  1
## 25506  1
## 25507  1
## 25508  1
## 25509  1
## 25510  1
## 25511  1
## 25512  1
## 25513  1
## 25514  1
## 25515  1
## 25516  1
## 25517  1
## 25518  1
## 25519  1
## 25520  1
## 25521  1
## 25522  1
## 25523  1
## 25524  1
## 25525  1
## 25526  1
## 25527  1
## 25528  1
## 25529  1
## 25530  1
## 25531  1
## 25532  1
## 25533  1
## 25534  1
## 25535  1
## 25536  1
## 25537  1
## 25538  1
## 25539  1
## 25540  1
## 25541  1
## 25542  1
## 25543  1
## 25544  1
## 25545  1
## 25546  1
## 25547  1
## 25548  1
## 25549  1
## 25550  1
## 25551  1
## 25552  1
## 25553  1
## 25554  1
## 25555  1
## 25556  1
## 25557  1
## 25558  1
## 25559  1
## 25560  1
## 25561  1
## 25562  1
## 25563  1
## 25564  1
## 25565  1
## 25566  1
## 25567  1
## 25568  1
## 25569  1
## 25570  1
## 25571  1
## 25572  1
## 25573  1
## 25574  1
## 25575  1
## 25576  1
## 25577  1
## 25578  1
## 25579  1
## 25580  1
## 25581  1
## 25582  1
## 25583  1
## 25584  1
## 25585  1
## 25586  1
## 25587  1
## 25588  1
## 25589  1
## 25590  1
## 25591  1
## 25592  1
## 25593  1
## 25594  1
## 25595  1
## 25596  1
## 25597  1
## 25598  1
## 25599  1
## 25600  1
## 25601  1
## 25602  1
## 25603  1
## 25604  1
## 25605  1
## 25606  1
## 25607  1
## 25608  1
## 25609  1
## 25610  1
## 25611  1
## 25612  1
## 25613  1
## 25614  1
## 25615  1
## 25616  1
## 25617  1
## 25618  1
## 25619  1
## 25620  1
## 25621  1
## 25622  1
## 25623  1
## 25624  1
## 25625  1
## 25626  1
## 25627  1
## 25628  1
## 25629  1
## 25630  1
## 25631  1
## 25632  1
## 25633  1
## 25634  1
## 25635  1
## 25636  1
## 25637  1
## 25638  1
## 25639  1
## 25640  1
## 25641  1
## 25642  1
## 25643  1
## 25644  1
## 25645  1
## 25646  1
## 25647  1
## 25648  1
## 25649  1
## 25650  1
## 25651  1
## 25652  1
## 25653  1
## 25654  1
## 25655  1
## 25656  1
## 25657  1
## 25658  1
## 25659  1
## 25660  1
## 25661  1
## 25662  1
## 25663  1
## 25664  1
## 25665  1
## 25666  1
## 25667  1
## 25668  1
## 25669  1
## 25670  1
## 25671  1
## 25672  1
## 25673  1
## 25674  1
## 25675  1
## 25676  1
## 25677  1
## 25678  1
## 25679  1
## 25680  1
## 25681  1
## 25682  1
## 25683  1
## 25684  1
## 25685  1
## 25686  1
## 25687  1
## 25688  1
## 25689  1
## 25690  1
## 25691  1
## 25692  1
## 25693  1
## 25694  1
## 25695  1
## 25696  1
## 25697  1
## 25698  1
## 25699  1
## 25700  1
## 25701  1
## 25702  1
## 25703  1
## 25704  1
## 25705  1
## 25706  1
## 25707  1
## 25708  1
## 25709  1
## 25710  1
## 25711  1
## 25712  1
## 25713  1
## 25714  1
## 25715  1
## 25716  1
## 25717  1
## 25718  1
## 25719  1
## 25720  1
## 25721  1
## 25722  1
## 25723  1
## 25724  1
## 25725  1
## 25726  1
## 25727  1
## 25728  1
## 25729  1
## 25730  1
## 25731  1
## 25732  1
## 25733  1
## 25734  1
## 25735  1
## 25736  1
## 25737  1
## 25738  1
## 25739  1
## 25740  1
## 25741  1
## 25742  1
## 25743  1
## 25744  1
## 25745  1
## 25746  1
## 25747  1
## 25748  1
## 25749  1
## 25750  1
## 25751  1
## 25752  1
## 25753  1
## 25754  1
## 25755  1
## 25756  1
## 25757  1
## 25758  1
## 25759  1
## 25760  1
## 25761  1
## 25762  1
## 25763  1
## 25764  1
## 25765  1
## 25766  1
## 25767  1
## 25768  1
## 25769  1
## 25770  1
## 25771  1
## 25772  1
## 25773  1
## 25774  1
## 25775  1
## 25776  1
## 25777  1
## 25778  1
## 25779  1
## 25780  1
## 25781  1
## 25782  1
## 25783  1
## 25784  1
## 25785  1
## 25786  1
## 25787  1
## 25788  1
## 25789  1
## 25790  1
## 25791  1
## 25792  1
## 25793  1
## 25794  1
## 25795  1
## 25796  1
## 25797  1
## 25798  1
## 25799  1
## 25800  1
## 25801  1
## 25802  1
## 25803  1
## 25804  1
## 25805  1
## 25806  1
## 25807  1
## 25808  1
## 25809  1
## 25810  1
## 25811  1
## 25812  1
## 25813  1
## 25814  1
## 25815  1
## 25816  1
## 25817  1
## 25818  1
## 25819  1
## 25820  1
## 25821  1
## 25822  1
## 25823  1
## 25824  1
## 25825  1
## 25826  1
## 25827  1
## 25828  1
## 25829  1
## 25830  1
## 25831  1
## 25832  1
## 25833  1
## 25834  1
## 25835  1
## 25836  1
## 25837  1
## 25838  1
## 25839  1
## 25840  1
## 25841  1
## 25842  1
## 25843  1
## 25844  1
## 25845  1
## 25846  1
## 25847  1
## 25848  1
## 25849  1
## 25850  1
## 25851  1
## 25852  1
## 25853  1
## 25854  1
## 25855  1
## 25856  1
## 25857  1
## 25858  1
## 25859  1
## 25860  1
## 25861  1
## 25862  1
## 25863  1
## 25864  1
## 25865  1
## 25866  1
## 25867  1
## 25868  1
## 25869  1
## 25870  1
## 25871  1
## 25872  1
## 25873  1
## 25874  1
## 25875  1
## 25876  1
## 25877  1
## 25878  1
## 25879  1
## 25880  1
## 25881  1
## 25882  1
## 25883  1
## 25884  1
## 25885  1
## 25886  1
## 25887  1
## 25888  1
## 25889  1
## 25890  1
## 25891  1
## 25892  1
## 25893  1
## 25894  1
## 25895  1
## 25896  1
## 25897  1
## 25898  1
## 25899  1
## 25900  1
## 25901  1
## 25902  1
## 25903  1
## 25904  1
## 25905  1
## 25906  1
## 25907  1
## 25908  1
## 25909  1
## 25910  1
## 25911  1
## 25912  1
## 25913  1
## 25914  1
## 25915  1
## 25916  1
## 25917  1
## 25918  1
## 25919  1
## 25920  1
## 25921  1
## 25922  1
## 25923  1
## 25924  1
## 25925  1
## 25926  1
## 25927  1
## 25928  1
## 25929  1
## 25930  1
## 25931  1
## 25932  1
## 25933  1
## 25934  1
## 25935  1
## 25936  1
## 25937  1
## 25938  1
## 25939  1
## 25940  1
## 25941  1
## 25942  1
## 25943  1
## 25944  1
## 25945  1
## 25946  1
## 25947  1
## 25948  1
## 25949  1
## 25950  1
## 25951  1
## 25952  1
## 25953  1
## 25954  1
## 25955  1
## 25956  1
## 25957  1
## 25958  1
## 25959  1
## 25960  1
## 25961  1
## 25962  1
## 25963  1
## 25964  1
## 25965  1
## 25966  1
## 25967  1
## 25968  1
## 25969  1
## 25970  1
## 25971  1
## 25972  1
## 25973  1
## 25974  1
## 25975  1
## 25976  1
## 25977  1
## 25978  1
## 25979  1
## 25980  1
## 25981  1
## 25982  1
## 25983  1
## 25984  1
## 25985  1
## 25986  1
## 25987  1
## 25988  1
## 25989  1
## 25990  1
## 25991  1
## 25992  1
## 25993  1
## 25994  1
## 25995  1
## 25996  1
## 25997  1
## 25998  1
## 25999  1
## 26000  1
## 26001  1
## 26002  1
## 26003  1
## 26004  1
## 26005  1
## 26006  1
## 26007  1
## 26008  1
## 26009  1
## 26010  1
## 26011  1
## 26012  1
## 26013  1
## 26014  1
## 26015  1
## 26016  1
## 26017  1
## 26018  1
## 26019  1
## 26020  1
## 26021  1
## 26022  1
## 26023  1
## 26024  1
## 26025  1
## 26026  1
## 26027  1
## 26028  1
## 26029  1
## 26030  1
## 26031  1
## 26032  1
## 26033  1
## 26034  1
## 26035  1
## 26036  1
## 26037  1
## 26038  1
## 26039  1
## 26040  1
## 26041  1
## 26042  1
## 26043  1
## 26044  1
## 26045  1
## 26046  1
## 26047  1
## 26048  1
## 26049  1
## 26050  1
## 26051  1
## 26052  1
## 26053  1
## 26054  1
## 26055  1
## 26056  1
## 26057  1
## 26058  1
## 26059  1
## 26060  1
## 26061  1
## 26062  1
## 26063  1
## 26064  1
## 26065  1
## 26066  1
## 26067  1
## 26068  1
## 26069  1
## 26070  1
## 26071  1
## 26072  1
## 26073  1
## 26074  1
## 26075  1
## 26076  1
## 26077  1
## 26078  1
## 26079  1
## 26080  1
## 26081  1
## 26082  1
## 26083  1
## 26084  1
## 26085  1
## 26086  1
## 26087  1
## 26088  1
## 26089  1
## 26090  1
## 26091  1
## 26092  1
## 26093  1
## 26094  1
## 26095  1
## 26096  1
## 26097  1
## 26098  1
## 26099  1
## 26100  1
## 26101  1
## 26102  1
## 26103  1
## 26104  1
## 26105  1
## 26106  1
## 26107  1
## 26108  1
## 26109  1
## 26110  1
## 26111  1
## 26112  1
## 26113  1
## 26114  1
## 26115  1
## 26116  1
## 26117  1
## 26118  1
## 26119  1
## 26120  1
## 26121  1
## 26122  1
## 26123  1
## 26124  1
## 26125  1
## 26126  1
## 26127  1
## 26128  1
## 26129  1
## 26130  1
## 26131  1
## 26132  1
## 26133  1
## 26134  1
## 26135  1
## 26136  1
## 26137  1
## 26138  1
## 26139  1
## 26140  1
## 26141  1
## 26142  1
## 26143  1
## 26144  1
## 26145  1
## 26146  1
## 26147  1
## 26148  1
## 26149  1
## 26150  1
## 26151  1
## 26152  1
## 26153  1
## 26154  1
## 26155  1
## 26156  1
## 26157  1
## 26158  1
## 26159  1
## 26160  1
## 26161  1
## 26162  1
## 26163  1
## 26164  1
## 26165  1
## 26166  1
## 26167  1
## 26168  1
## 26169  1
## 26170  1
## 26171  1
## 26172  1
## 26173  1
## 26174  1
## 26175  1
## 26176  1
## 26177  1
## 26178  1
## 26179  1
## 26180  1
## 26181  1
## 26182  1
## 26183  1
## 26184  1
## 26185  1
## 26186  1
## 26187  1
## 26188  1
## 26189  1
## 26190  1
## 26191  1
## 26192  1
## 26193  1
## 26194  1
## 26195  1
## 26196  1
## 26197  1
## 26198  1
## 26199  1
## 26200  1
## 26201  1
## 26202  1
## 26203  1
## 26204  1
## 26205  1
## 26206  1
## 26207  1
## 26208  1
## 26209  1
## 26210  1
## 26211  1
## 26212  1
## 26213  1
## 26214  1
## 26215  1
## 26216  1
## 26217  1
## 26218  1
## 26219  1
## 26220  1
## 26221  1
## 26222  1
## 26223  1
## 26224  1
## 26225  1
## 26226  1
## 26227  1
## 26228  1
## 26229  1
## 26230  1
## 26231  1
## 26232  1
## 26233  1
## 26234  1
## 26235  1
## 26236  1
## 26237  1
## 26238  1
## 26239  1
## 26240  1
## 26241  1
## 26242  1
## 26243  1
## 26244  1
## 26245  1
## 26246  1
## 26247  1
## 26248  1
## 26249  1
## 26250  1
## 26251  1
## 26252  1
## 26253  1
## 26254  1
## 26255  1
## 26256  1
## 26257  1
## 26258  1
## 26259  1
## 26260  1
## 26261  1
## 26262  1
## 26263  1
## 26264  1
## 26265  1
## 26266  1
## 26267  1
## 26268  1
## 26269  1
## 26270  1
## 26271  1
## 26272  1
## 26273  1
## 26274  1
## 26275  1
## 26276  1
## 26277  1
## 26278  1
## 26279  1
## 26280  1
## 26281  1
## 26282  1
## 26283  1
## 26284  1
## 26285  1
## 26286  1
## 26287  1
## 26288  1
## 26289  1
## 26290  1
## 26291  1
## 26292  1
## 26293  1
## 26294  1
## 26295  1
## 26296  1
## 26297  1
## 26298  1
## 26299  1
## 26300  1
## 26301  1
## 26302  1
## 26303  1
## 26304  1
## 26305  1
## 26306  1
## 26307  1
## 26308  1
## 26309  1
## 26310  1
## 26311  1
## 26312  1
## 26313  1
## 26314  1
## 26315  1
## 26316  1
## 26317  1
## 26318  1
## 26319  1
## 26320  1
## 26321  1
## 26322  1
## 26323  1
## 26324  1
## 26325  1
## 26326  1
## 26327  1
## 26328  1
## 26329  1
## 26330  1
## 26331  1
## 26332  1
## 26333  1
## 26334  1
## 26335  1
## 26336  1
## 26337  1
## 26338  1
## 26339  1
## 26340  1
## 26341  1
## 26342  1
## 26343  1
## 26344  1
## 26345  1
## 26346  1
## 26347  1
## 26348  1
## 26349  1
## 26350  1
## 26351  1
## 26352  1
## 26353  1
## 26354  1
## 26355  1
## 26356  1
## 26357  1
## 26358  1
## 26359  1
## 26360  1
## 26361  1
## 26362  1
## 26363  1
## 26364  1
## 26365  1
## 26366  1
## 26367  1
## 26368  1
## 26369  1
## 26370  1
## 26371  1
## 26372  1
## 26373  1
## 26374  1
## 26375  1
## 26376  1
## 26377  1
## 26378  1
## 26379  1
## 26380  1
## 26381  1
## 26382  1
## 26383  1
## 26384  1
## 26385  1
## 26386  1
## 26387  1
## 26388  1
## 26389  1
## 26390  1
## 26391  1
## 26392  1
## 26393  1
## 26394  1
## 26395  1
## 26396  1
## 26397  1
## 26398  1
## 26399  1
## 26400  1
## 26401  1
## 26402  1
## 26403  1
## 26404  1
## 26405  1
## 26406  1
## 26407  1
## 26408  1
## 26409  1
## 26410  1
## 26411  1
## 26412  1
## 26413  1
## 26414  1
## 26415  1
## 26416  1
## 26417  1
## 26418  1
## 26419  1
## 26420  1
## 26421  1
## 26422  1
## 26423  1
## 26424  1
## 26425  1
## 26426  1
## 26427  1
## 26428  1
## 26429  1
## 26430  1
## 26431  1
## 26432  1
## 26433  1
## 26434  1
## 26435  1
## 26436  1
## 26437  1
## 26438  1
## 26439  1
## 26440  1
## 26441  1
## 26442  1
## 26443  1
## 26444  1
## 26445  1
## 26446  1
## 26447  1
## 26448  1
## 26449  1
## 26450  1
## 26451  1
## 26452  1
## 26453  1
## 26454  1
## 26455  1
## 26456  1
## 26457  1
## 26458  1
## 26459  1
## 26460  1
## 26461  1
## 26462  1
## 26463  1
## 26464  1
## 26465  1
## 26466  1
## 26467  1
## 26468  1
## 26469  1
## 26470  1
## 26471  1
## 26472  1
## 26473  1
## 26474  1
## 26475  1
## 26476  1
## 26477  1
## 26478  1
## 26479  1
## 26480  1
## 26481  1
## 26482  1
## 26483  1
## 26484  1
## 26485  1
## 26486  1
## 26487  1
## 26488  1
## 26489  1
## 26490  1
## 26491  1
## 26492  1
## 26493  1
## 26494  1
## 26495  1
## 26496  1
## 26497  1
## 26498  1
## 26499  1
## 26500  1
## 26501  1
## 26502  1
## 26503  1
## 26504  1
## 26505  1
## 26506  1
## 26507  1
## 26508  1
## 26509  1
## 26510  1
## 26511  1
## 26512  1
## 26513  1
## 26514  1
## 26515  1
## 26516  1
## 26517  1
## 26518  1
## 26519  1
## 26520  1
## 26521  1
## 26522  1
## 26523  1
## 26524  1
## 26525  1
## 26526  1
## 26527  1
## 26528  1
## 26529  1
## 26530  1
## 26531  1
## 26532  1
## 26533  1
## 26534  1
## 26535  1
## 26536  1
## 26537  1
## 26538  1
## 26539  1
## 26540  1
## 26541  1
## 26542  1
## 26543  1
## 26544  1
## 26545  1
## 26546  1
## 26547  1
## 26548  1
## 26549  1
## 26550  1
## 26551  1
## 26552  1
## 26553  1
## 26554  1
## 26555  1
## 26556  1
## 26557  1
## 26558  1
## 26559  1
## 26560  1
## 26561  1
## 26562  1
## 26563  1
## 26564  1
## 26565  1
## 26566  1
## 26567  1
## 26568  1
## 26569  1
## 26570  1
## 26571  1
## 26572  1
## 26573  1
## 26574  1
## 26575  1
## 26576  1
## 26577  1
## 26578  1
## 26579  1
## 26580  1
## 26581  1
## 26582  1
## 26583  1
## 26584  1
## 26585  1
## 26586  1
## 26587  1
## 26588  1
## 26589  1
## 26590  1
## 26591  1
## 26592  1
## 26593  1
## 26594  1
## 26595  1
## 26596  1
## 26597  1
## 26598  1
## 26599  1
## 26600  1
## 26601  1
## 26602  1
## 26603  1
## 26604  1
## 26605  1
## 26606  1
## 26607  1
## 26608  1
## 26609  1
## 26610  1
## 26611  1
## 26612  1
## 26613  1
## 26614  1
## 26615  1
## 26616  1
## 26617  1
## 26618  1
## 26619  1
## 26620  1
## 26621  1
## 26622  1
## 26623  1
## 26624  1
## 26625  1
## 26626  1
## 26627  1
## 26628  1
## 26629  1
## 26630  1
## 26631  1
## 26632  1
## 26633  1
## 26634  1
## 26635  1
## 26636  1
## 26637  1
## 26638  1
## 26639  1
## 26640  1
## 26641  1
## 26642  1
## 26643  1
## 26644  1
## 26645  1
## 26646  1
## 26647  1
## 26648  1
## 26649  1
## 26650  1
## 26651  1
## 26652  1
## 26653  1
## 26654  1
## 26655  1
## 26656  1
## 26657  1
## 26658  1
## 26659  1
## 26660  1
## 26661  1
## 26662  1
## 26663  1
## 26664  1
## 26665  1
## 26666  1
## 26667  1
## 26668  1
## 26669  1
## 26670  1
## 26671  1
## 26672  1
## 26673  1
## 26674  1
## 26675  1
## 26676  1
## 26677  1
## 26678  1
## 26679  1
## 26680  1
## 26681  1
## 26682  1
## 26683  1
## 26684  1
## 26685  1
## 26686  1
## 26687  1
## 26688  1
## 26689  1
## 26690  1
## 26691  1
## 26692  1
## 26693  1
## 26694  1
## 26695  1
## 26696  1
## 26697  1
## 26698  1
## 26699  1
## 26700  1
## 26701  1
## 26702  1
## 26703  1
## 26704  1
## 26705  1
## 26706  1
## 26707  1
## 26708  1
## 26709  1
## 26710  1
## 26711  1
## 26712  1
## 26713  1
## 26714  1
## 26715  1
## 26716  1
## 26717  1
## 26718  1
## 26719  1
## 26720  1
## 26721  1
## 26722  1
## 26723  1
## 26724  1
## 26725  1
## 26726  1
## 26727  1
## 26728  1
## 26729  1
## 26730  1
## 26731  1
## 26732  1
## 26733  1
## 26734  1
## 26735  1
## 26736  1
## 26737  1
## 26738  1
## 26739  1
## 26740  1
## 26741  1
## 26742  1
## 26743  1
## 26744  1
## 26745  1
## 26746  1
## 26747  1
## 26748  1
## 26749  1
## 26750  1
## 26751  1
## 26752  1
## 26753  1
## 26754  1
## 26755  1
## 26756  1
## 26757  1
## 26758  1
## 26759  1
## 26760  1
## 26761  1
## 26762  1
## 26763  1
## 26764  1
## 26765  1
## 26766  1
## 26767  1
## 26768  1
## 26769  1
## 26770  1
## 26771  1
## 26772  1
## 26773  1
## 26774  1
## 26775  1
## 26776  1
## 26777  1
## 26778  1
## 26779  1
## 26780  1
## 26781  1
## 26782  1
## 26783  1
## 26784  1
## 26785  1
## 26786  1
## 26787  1
## 26788  1
## 26789  1
## 26790  1
## 26791  1
## 26792  1
## 26793  1
## 26794  1
## 26795  1
## 26796  1
## 26797  1
## 26798  1
## 26799  1
## 26800  1
## 26801  1
## 26802  1
## 26803  1
## 26804  1
## 26805  1
## 26806  1
## 26807  1
## 26808  1
## 26809  1
## 26810  1
## 26811  1
## 26812  1
## 26813  1
## 26814  1
## 26815  1
## 26816  1
## 26817  1
## 26818  1
## 26819  1
## 26820  1
## 26821  1
## 26822  1
## 26823  1
## 26824  1
## 26825  1
## 26826  1
## 26827  1
## 26828  1
## 26829  1
## 26830  1
## 26831  1
## 26832  1
## 26833  1
## 26834  1
## 26835  1
## 26836  1
## 26837  1
## 26838  1
## 26839  1
## 26840  1
## 26841  1
## 26842  1
## 26843  1
## 26844  1
## 26845  1
## 26846  1
## 26847  1
## 26848  1
## 26849  1
## 26850  1
## 26851  1
## 26852  1
## 26853  1
## 26854  1
## 26855  1
## 26856  1
## 26857  1
## 26858  1
## 26859  1
## 26860  1
## 26861  1
## 26862  1
## 26863  1
## 26864  1
## 26865  1
## 26866  1
## 26867  1
## 26868  1
## 26869  1
## 26870  1
## 26871  1
## 26872  1
## 26873  1
## 26874  1
## 26875  1
## 26876  1
## 26877  1
## 26878  1
## 26879  1
## 26880  1
## 26881  1
## 26882  1
## 26883  1
## 26884  1
## 26885  1
## 26886  1
## 26887  1
## 26888  1
## 26889  1
## 26890  1
## 26891  1
## 26892  1
## 26893  1
## 26894  1
## 26895  1
## 26896  1
## 26897  1
## 26898  1
## 26899  1
## 26900  1
## 26901  1
## 26902  1
## 26903  1
## 26904  1
## 26905  1
## 26906  1
## 26907  1
## 26908  1
## 26909  1
## 26910  1
## 26911  1
## 26912  1
## 26913  1
## 26914  1
## 26915  1
## 26916  1
## 26917  1
## 26918  1
## 26919  1
## 26920  1
## 26921  1
## 26922  1
## 26923  1
## 26924  1
## 26925  1
## 26926  1
## 26927  1
## 26928  1
## 26929  1
## 26930  1
## 26931  1
## 26932  1
## 26933  1
## 26934  1
## 26935  1
## 26936  1
## 26937  1
## 26938  1
## 26939  1
## 26940  1
## 26941  1
## 26942  1
## 26943  1
## 26944  1
## 26945  1
## 26946  1
## 26947  1
## 26948  1
## 26949  1
## 26950  1
## 26951  1
## 26952  1
## 26953  1
## 26954  1
## 26955  1
## 26956  1
## 26957  1
## 26958  1
## 26959  1
## 26960  1
## 26961  1
## 26962  1
## 26963  1
## 26964  1
## 26965  1
## 26966  1
## 26967  1
## 26968  1
## 26969  1
## 26970  1
## 26971  1
## 26972  1
## 26973  1
## 26974  1
## 26975  1
## 26976  1
## 26977  1
## 26978  1
## 26979  1
## 26980  1
## 26981  1
## 26982  1
## 26983  1
## 26984  1
## 26985  1
## 26986  1
## 26987  1
## 26988  1
## 26989  1
## 26990  1
## 26991  1
## 26992  1
## 26993  1
## 26994  1
## 26995  1
## 26996  1
## 26997  1
## 26998  1
## 26999  1
## 27000  1
## 27001  1
## 27002  1
## 27003  1
## 27004  1
## 27005  1
## 27006  1
## 27007  1
## 27008  1
## 27009  1
## 27010  1
## 27011  1
## 27012  1
## 27013  1
## 27014  1
## 27015  1
## 27016  1
## 27017  1
## 27018  1
## 27019  1
## 27020  1
## 27021  1
## 27022  1
## 27023  1
## 27024  1
## 27025  1
## 27026  1
## 27027  1
## 27028  1
## 27029  1
## 27030  1
## 27031  1
## 27032  1
## 27033  1
## 27034  1
## 27035  1
## 27036  1
## 27037  1
## 27038  1
## 27039  1
## 27040  1
## 27041  1
## 27042  1
## 27043  1
## 27044  1
## 27045  1
## 27046  1
## 27047  1
## 27048  1
## 27049  1
## 27050  1
## 27051  1
## 27052  1
## 27053  1
## 27054  1
## 27055  1
## 27056  1
## 27057  1
## 27058  1
## 27059  1
## 27060  1
## 27061  1
## 27062  1
## 27063  1
## 27064  1
## 27065  1
## 27066  1
## 27067  1
## 27068  1
## 27069  1
## 27070  1
## 27071  1
## 27072  1
## 27073  1
## 27074  1
## 27075  1
## 27076  1
## 27077  1
## 27078  1
## 27079  1
## 27080  1
## 27081  1
## 27082  1
## 27083  1
## 27084  1
## 27085  1
## 27086  1
## 27087  1
## 27088  1
## 27089  1
## 27090  1
## 27091  1
## 27092  1
## 27093  1
## 27094  1
## 27095  1
## 27096  1
## 27097  1
## 27098  1
## 27099  1
## 27100  1
## 27101  1
## 27102  1
## 27103  1
## 27104  1
## 27105  1
## 27106  1
## 27107  1
## 27108  1
## 27109  1
## 27110  1
## 27111  1
## 27112  1
## 27113  1
## 27114  1
## 27115  1
## 27116  1
## 27117  1
## 27118  1
## 27119  1
## 27120  1
## 27121  1
## 27122  1
## 27123  1
## 27124  1
## 27125  1
## 27126  1
## 27127  1
## 27128  1
## 27129  1
## 27130  1
## 27131  1
## 27132  1
## 27133  1
## 27134  1
## 27135  1
## 27136  1
## 27137  1
## 27138  1
## 27139  1
## 27140  1
## 27141  1
## 27142  1
## 27143  1
## 27144  1
## 27145  1
## 27146  1
## 27147  1
## 27148  1
## 27149  1
## 27150  1
## 27151  1
## 27152  1
## 27153  1
## 27154  1
## 27155  1
## 27156  1
## 27157  1
## 27158  1
## 27159  1
## 27160  1
## 27161  1
## 27162  1
## 27163  1
## 27164  1
## 27165  1
## 27166  1
## 27167  1
## 27168  1
## 27169  1
## 27170  1
## 27171  1
## 27172  1
## 27173  1
## 27174  1
## 27175  1
## 27176  1
## 27177  1
## 27178  1
## 27179  1
## 27180  1
## 27181  1
## 27182  1
## 27183  1
## 27184  1
## 27185  1
## 27186  1
## 27187  1
## 27188  1
## 27189  1
## 27190  1
## 27191  1
## 27192  1
## 27193  1
## 27194  1
## 27195  1
## 27196  1
## 27197  1
## 27198  1
## 27199  1
## 27200  1
## 27201  1
## 27202  1
## 27203  1
## 27204  1
## 27205  1
## 27206  1
## 27207  1
## 27208  1
## 27209  1
## 27210  1
## 27211  1
## 27212  1
## 27213  1
## 27214  1
## 27215  1
## 27216  1
## 27217  1
## 27218  1
## 27219  1
## 27220  1
## 27221  1
## 27222  1
## 27223  1
## 27224  1
## 27225  1
## 27226  1
## 27227  1
## 27228  1
## 27229  1
## 27230  1
## 27231  1
## 27232  1
## 27233  1
## 27234  1
## 27235  1
## 27236  1
## 27237  1
## 27238  1
## 27239  1
## 27240  1
## 27241  1
## 27242  1
## 27243  1
## 27244  1
## 27245  1
## 27246  1
## 27247  1
## 27248  1
## 27249  1
## 27250  1
## 27251  1
## 27252  1
## 27253  1
## 27254  1
## 27255  1
## 27256  1
## 27257  1
## 27258  1
## 27259  1
## 27260  1
## 27261  1
## 27262  1
## 27263  1
## 27264  1
## 27265  1
## 27266  1
## 27267  1
## 27268  1
## 27269  1
## 27270  1
## 27271  1
## 27272  1
## 27273  1
## 27274  1
## 27275  1
## 27276  1
## 27277  1
## 27278  1
## 27279  1
## 27280  1
## 27281  1
## 27282  1
## 27283  1
## 27284  1
## 27285  1
## 27286  1
## 27287  1
## 27288  1
## 27289  1
## 27290  1
## 27291  1
## 27292  1
## 27293  1
## 27294  1
## 27295  1
## 27296  1
## 27297  1
## 27298  1
## 27299  1
## 27300  1
## 27301  1
## 27302  1
## 27303  1
## 27304  1
## 27305  1
## 27306  1
## 27307  1
## 27308  1
## 27309  1
## 27310  1
## 27311  1
## 27312  1
## 27313  1
## 27314  1
## 27315  1
## 27316  1
## 27317  1
## 27318  1
## 27319  1
## 27320  1
## 27321  1
## 27322  1
## 27323  1
## 27324  1
## 27325  1
## 27326  1
## 27327  1
## 27328  1
## 27329  1
## 27330  1
## 27331  1
## 27332  1
## 27333  1
## 27334  1
## 27335  1
## 27336  1
## 27337  1
## 27338  1
## 27339  1
## 27340  1
## 27341  1
## 27342  1
## 27343  1
## 27344  1
## 27345  1
## 27346  1
## 27347  1
## 27348  1
## 27349  1
## 27350  1
## 27351  1
## 27352  1
## 27353  1
## 27354  1
## 27355  1
## 27356  1
## 27357  1
## 27358  1
## 27359  1
## 27360  1
## 27361  1
## 27362  1
## 27363  1
## 27364  1
## 27365  1
## 27366  1
## 27367  1
## 27368  1
## 27369  1
## 27370  1
## 27371  1
## 27372  1
## 27373  1
## 27374  1
## 27375  1
## 27376  1
## 27377  1
## 27378  1
## 27379  1
## 27380  1
## 27381  1
## 27382  1
## 27383  1
## 27384  1
## 27385  1
## 27386  1
## 27387  1
## 27388  1
## 27389  1
## 27390  1
## 27391  1
## 27392  1
## 27393  1
## 27394  1
## 27395  1
## 27396  1
## 27397  1
## 27398  1
## 27399  1
## 27400  1
## 27401  1
## 27402  1
## 27403  1
## 27404  1
## 27405  1
## 27406  1
## 27407  1
## 27408  1
## 27409  1
## 27410  1
## 27411  1
## 27412  1
## 27413  1
## 27414  1
## 27415  1
## 27416  1
## 27417  1
## 27418  1
## 27419  1
## 27420  1
## 27421  1
## 27422  1
## 27423  1
## 27424  1
## 27425  1
## 27426  1
## 27427  1
## 27428  1
## 27429  1
## 27430  1
## 27431  1
## 27432  1
## 27433  1
## 27434  1
## 27435  1
## 27436  1
## 27437  1
## 27438  1
## 27439  1
## 27440  1
## 27441  1
## 27442  1
## 27443  1
## 27444  1
## 27445  1
## 27446  1
## 27447  1
## 27448  1
## 27449  1
## 27450  1
## 27451  1
## 27452  1
## 27453  1
## 27454  1
## 27455  1
## 27456  1
## 27457  1
## 27458  1
## 27459  1
## 27460  1
## 27461  1
## 27462  1
## 27463  1
## 27464  1
## 27465  1
## 27466  1
## 27467  1
## 27468  1
## 27469  1
## 27470  1
## 27471  1
## 27472  1
## 27473  1
## 27474  1
## 27475  1
## 27476  1
## 27477  1
## 27478  1
## 27479  1
## 27480  1
## 27481  1
## 27482  1
## 27483  1
## 27484  1
## 27485  1
## 27486  1
## 27487  1
## 27488  1
## 27489  1
## 27490  1
## 27491  1
## 27492  1
## 27493  1
## 27494  1
## 27495  1
## 27496  1
## 27497  1
## 27498  1
## 27499  1
## 27500  1
## 27501  1
## 27502  1
## 27503  1
## 27504  1
## 27505  1
## 27506  1
## 27507  1
## 27508  1
## 27509  1
## 27510  1
## 27511  1
## 27512  1
## 27513  1
## 27514  1
## 27515  1
## 27516  1
## 27517  1
## 27518  1
## 27519  1
## 27520  1
## 27521  1
## 27522  1
## 27523  1
## 27524  1
## 27525  1
## 27526  1
## 27527  1
## 27528  1
## 27529  1
## 27530  1
## 27531  1
## 27532  1
## 27533  1
## 27534  1
## 27535  1
## 27536  1
## 27537  1
## 27538  1
## 27539  1
## 27540  1
## 27541  1
## 27542  1
## 27543  1
## 27544  1
## 27545  1
## 27546  1
## 27547  1
## 27548  1
## 27549  1
## 27550  1
## 27551  1
## 27552  1
## 27553  1
## 27554  1
## 27555  1
## 27556  1
## 27557  1
## 27558  1
## 27559  1
## 27560  1
## 27561  1
## 27562  1
## 27563  1
## 27564  1
## 27565  1
## 27566  1
## 27567  1
## 27568  1
## 27569  1
## 27570  1
## 27571  1
## 27572  1
## 27573  1
## 27574  1
## 27575  1
## 27576  1
## 27577  1
## 27578  1
## 27579  1
## 27580  1
## 27581  1
## 27582  1
## 27583  1
## 27584  1
## 27585  1
## 27586  1
## 27587  1
## 27588  1
## 27589  1
## 27590  1
## 27591  1
## 27592  1
## 27593  1
## 27594  1
## 27595  1
## 27596  1
## 27597  1
## 27598  1
## 27599  1
## 27600  1
## 27601  1
## 27602  1
## 27603  1
## 27604  1
## 27605  1
## 27606  1
## 27607  1
## 27608  1
## 27609  1
## 27610  1
## 27611  1
## 27612  1
## 27613  1
## 27614  1
## 27615  1
## 27616  1
## 27617  1
## 27618  1
## 27619  1
## 27620  1
## 27621  1
## 27622  1
## 27623  1
## 27624  1
## 27625  1
## 27626  1
## 27627  1
## 27628  1
## 27629  1
## 27630  1
## 27631  1
## 27632  1
## 27633  1
## 27634  1
## 27635  1
## 27636  1
## 27637  1
## 27638  1
## 27639  1
## 27640  1
## 27641  1
## 27642  1
## 27643  1
## 27644  1
## 27645  1
## 27646  1
## 27647  1
## 27648  1
## 27649  1
## 27650  1
## 27651  1
## 27652  1
## 27653  1
## 27654  1
## 27655  1
## 27656  1
## 27657  1
## 27658  1
## 27659  1
## 27660  1
## 27661  1
## 27662  1
## 27663  1
## 27664  1
## 27665  1
## 27666  1
## 27667  1
## 27668  1
## 27669  1
## 27670  1
## 27671  1
## 27672  1
## 27673  1
## 27674  1
## 27675  1
## 27676  1
## 27677  1
## 27678  1
## 27679  1
## 27680  1
## 27681  1
## 27682  1
## 27683  1
## 27684  1
## 27685  1
## 27686  1
## 27687  1
## 27688  1
## 27689  1
## 27690  1
## 27691  1
## 27692  1
## 27693  1
## 27694  1
## 27695  1
## 27696  1
## 27697  1
## 27698  1
## 27699  1
## 27700  1
## 27701  1
## 27702  1
## 27703  1
## 27704  1
## 27705  1
## 27706  1
## 27707  1
## 27708  1
## 27709  1
## 27710  1
## 27711  1
## 27712  1
## 27713  1
## 27714  1
## 27715  1
## 27716  1
## 27717  1
## 27718  1
## 27719  1
## 27720  1
## 27721  1
## 27722  1
## 27723  1
## 27724  1
## 27725  1
## 27726  1
## 27727  1
## 27728  1
## 27729  1
## 27730  1
## 27731  1
## 27732  1
## 27733  1
## 27734  1
## 27735  1
## 27736  1
## 27737  1
## 27738  1
## 27739  1
## 27740  1
## 27741  1
## 27742  1
## 27743  1
## 27744  1
## 27745  1
## 27746  1
## 27747  1
## 27748  1
## 27749  1
## 27750  1
## 27751  1
## 27752  1
## 27753  1
## 27754  1
## 27755  1
## 27756  1
## 27757  1
## 27758  1
## 27759  1
## 27760  1
## 27761  1
## 27762  1
## 27763  1
## 27764  1
## 27765  1
## 27766  1
## 27767  1
## 27768  1
## 27769  1
## 27770  1
## 27771  1
## 27772  1
## 27773  1
## 27774  1
## 27775  1
## 27776  1
## 27777  1
## 27778  1
## 27779  1
## 27780  1
## 27781  1
## 27782  1
## 27783  1
## 27784  1
## 27785  1
## 27786  1
## 27787  1
## 27788  1
## 27789  1
## 27790  1
## 27791  1
## 27792  1
## 27793  1
## 27794  1
## 27795  1
## 27796  1
## 27797  1
## 27798  1
## 27799  1
## 27800  1
## 27801  1
## 27802  1
## 27803  1
## 27804  1
## 27805  1
## 27806  1
## 27807  1
## 27808  1
## 27809  1
## 27810  1
## 27811  1
## 27812  1
## 27813  1
## 27814  1
## 27815  1
## 27816  1
## 27817  1
## 27818  1
## 27819  1
## 27820  1
## 27821  1
## 27822  1
## 27823  1
## 27824  1
## 27825  1
## 27826  1
## 27827  1
## 27828  1
## 27829  1
## 27830  1
## 27831  1
## 27832  1
## 27833  1
## 27834  1
## 27835  1
## 27836  1
## 27837  1
## 27838  1
## 27839  1
## 27840  1
## 27841  1
## 27842  1
## 27843  1
## 27844  1
## 27845  1
## 27846  1
## 27847  1
## 27848  1
## 27849  1
## 27850  1
## 27851  1
## 27852  1
## 27853  1
## 27854  1
## 27855  1
## 27856  1
## 27857  1
## 27858  1
## 27859  1
## 27860  1
## 27861  1
## 27862  1
## 27863  1
## 27864  1
## 27865  1
## 27866  1
## 27867  1
## 27868  1
## 27869  1
## 27870  1
## 27871  1
## 27872  1
## 27873  1
## 27874  1
## 27875  1
## 27876  1
## 27877  1
## 27878  1
## 27879  1
## 27880  1
## 27881  1
## 27882  1
## 27883  1
## 27884  1
## 27885  1
## 27886  1
## 27887  1
## 27888  1
## 27889  1
## 27890  1
## 27891  1
## 27892  1
## 27893  1
## 27894  1
## 27895  1
## 27896  1
## 27897  1
## 27898  1
## 27899  1
## 27900  1
## 27901  1
## 27902  1
## 27903  1
## 27904  1
## 27905  1
## 27906  1
## 27907  1
## 27908  1
## 27909  1
## 27910  1
## 27911  1
## 27912  1
## 27913  1
## 27914  1
## 27915  1
## 27916  1
## 27917  1
## 27918  1
## 27919  1
## 27920  1
## 27921  1
## 27922  1
## 27923  1
## 27924  1
## 27925  1
## 27926  1
## 27927  1
## 27928  1
## 27929  1
## 27930  1
## 27931  1
## 27932  1
## 27933  1
## 27934  1
## 27935  1
## 27936  1
## 27937  1
## 27938  1
## 27939  1
## 27940  1
## 27941  1
## 27942  1
## 27943  1
## 27944  1
## 27945  1
## 27946  1
## 27947  1
## 27948  1
## 27949  1
## 27950  1
## 27951  1
## 27952  1
## 27953  1
## 27954  1
## 27955  1
## 27956  1
## 27957  1
## 27958  1
## 27959  1
## 27960  1
## 27961  1
## 27962  1
## 27963  1
## 27964  1
## 27965  1
## 27966  1
## 27967  1
## 27968  1
## 27969  1
## 27970  1
## 27971  1
## 27972  1
## 27973  1
## 27974  1
## 27975  1
## 27976  1
## 27977  1
## 27978  1
## 27979  1
## 27980  1
## 27981  1
## 27982  1
## 27983  1
## 27984  1
## 27985  1
## 27986  1
## 27987  1
## 27988  1
## 27989  1
## 27990  1
## 27991  1
## 27992  1
## 27993  1
## 27994  1
## 27995  1
## 27996  1
## 27997  1
## 27998  1
## 27999  1
## 28000  1
## 28001  1
## 28002  1
## 28003  1
## 28004  1
## 28005  1
## 28006  1
## 28007  1
## 28008  1
## 28009  1
## 28010  1
## 28011  1
## 28012  1
## 28013  1
## 28014  1
## 28015  1
## 28016  1
## 28017  1
## 28018  1
## 28019  1
## 28020  1
## 28021  1
## 28022  1
## 28023  1
## 28024  1
## 28025  1
## 28026  1
## 28027  1
## 28028  1
## 28029  1
## 28030  1
## 28031  1
## 28032  1
## 28033  1
## 28034  1
## 28035  1
## 28036  1
## 28037  1
## 28038  1
## 28039  1
## 28040  1
## 28041  1
## 28042  1
## 28043  1
## 28044  1
## 28045  1
## 28046  1
## 28047  1
## 28048  1
## 28049  1
## 28050  1
## 28051  1
## 28052  1
## 28053  1
## 28054  1
## 28055  1
## 28056  1
## 28057  1
## 28058  1
## 28059  1
## 28060  1
## 28061  1
## 28062  1
## 28063  1
## 28064  1
## 28065  1
## 28066  1
## 28067  1
## 28068  1
## 28069  1
## 28070  1
## 28071  1
## 28072  1
## 28073  1
## 28074  1
## 28075  1
## 28076  1
## 28077  1
## 28078  1
## 28079  1
## 28080  1
## 28081  1
## 28082  1
## 28083  1
## 28084  1
## 28085  1
## 28086  1
## 28087  1
## 28088  1
## 28089  1
## 28090  1
## 28091  1
## 28092  1
## 28093  1
## 28094  1
## 28095  1
## 28096  1
## 28097  1
## 28098  1
## 28099  1
## 28100  1
## 28101  1
## 28102  1
## 28103  1
## 28104  1
## 28105  1
## 28106  1
## 28107  1
## 28108  1
## 28109  1
## 28110  1
## 28111  1
## 28112  1
## 28113  1
## 28114  1
## 28115  1
## 28116  1
## 28117  1
## 28118  1
## 28119  1
## 28120  1
## 28121  1
## 28122  1
## 28123  1
## 28124  1
## 28125  1
## 28126  1
## 28127  1
## 28128  1
## 28129  1
## 28130  1
## 28131  1
## 28132  1
## 28133  1
## 28134  1
## 28135  1
## 28136  1
## 28137  1
## 28138  1
## 28139  1
## 28140  1
## 28141  1
## 28142  1
## 28143  1
## 28144  1
## 28145  1
## 28146  1
## 28147  1
## 28148  1
## 28149  1
## 28150  1
## 28151  1
## 28152  1
## 28153  1
## 28154  1
## 28155  1
## 28156  1
## 28157  1
## 28158  1
## 28159  1
## 28160  1
## 28161  1
## 28162  1
## 28163  1
## 28164  1
## 28165  1
## 28166  1
## 28167  1
## 28168  1
## 28169  1
## 28170  1
## 28171  1
## 28172  1
## 28173  1
## 28174  1
## 28175  1
## 28176  1
## 28177  1
## 28178  1
## 28179  1
## 28180  1
## 28181  1
## 28182  1
## 28183  1
## 28184  1
## 28185  1
## 28186  1
## 28187  1
## 28188  1
## 28189  1
## 28190  1
## 28191  1
## 28192  1
## 28193  1
## 28194  1
## 28195  1
## 28196  1
## 28197  1
## 28198  1
## 28199  1
## 28200  1
## 28201  1
## 28202  1
## 28203  1
## 28204  1
## 28205  1
## 28206  1
## 28207  1
## 28208  1
## 28209  1
## 28210  1
## 28211  1
## 28212  1
## 28213  1
## 28214  1
## 28215  1
## 28216  1
## 28217  1
## 28218  1
## 28219  1
## 28220  1
## 28221  1
## 28222  1
## 28223  1
## 28224  1
## 28225  1
## 28226  1
## 28227  1
## 28228  1
## 28229  1
## 28230  1
## 28231  1
## 28232  1
## 28233  1
## 28234  1
## 28235  1
## 28236  1
## 28237  1
## 28238  1
## 28239  1
## 28240  1
## 28241  1
## 28242  1
## 28243  1
## 28244  1
## 28245  1
## 28246  1
## 28247  1
## 28248  1
## 28249  1
## 28250  1
## 28251  1
## 28252  1
## 28253  1
## 28254  1
## 28255  1
## 28256  1
## 28257  1
## 28258  1
## 28259  1
## 28260  1
## 28261  1
## 28262  1
## 28263  1
## 28264  1
## 28265  1
## 28266  1
## 28267  1
## 28268  1
## 28269  1
## 28270  1
## 28271  1
## 28272  1
## 28273  1
## 28274  1
## 28275  1
## 28276  1
## 28277  1
## 28278  1
## 28279  1
## 28280  1
## 28281  1
## 28282  1
## 28283  1
## 28284  1
## 28285  1
## 28286  1
## 28287  1
## 28288  1
## 28289  1
## 28290  1
## 28291  1
## 28292  1
## 28293  1
## 28294  1
## 28295  1
## 28296  1
## 28297  1
## 28298  1
## 28299  1
## 28300  1
## 28301  1
## 28302  1
## 28303  1
## 28304  1
## 28305  1
## 28306  1
## 28307  1
## 28308  1
## 28309  1
## 28310  1
## 28311  1
## 28312  1
## 28313  1
## 28314  1
## 28315  1
## 28316  1
## 28317  1
## 28318  1
## 28319  1
## 28320  1
## 28321  1
## 28322  1
## 28323  1
## 28324  1
## 28325  1
## 28326  1
## 28327  1
## 28328  1
## 28329  1
## 28330  1
## 28331  1
## 28332  1
## 28333  1
## 28334  1
## 28335  1
## 28336  1
## 28337  1
## 28338  1
## 28339  1
## 28340  1
## 28341  1
## 28342  1
## 28343  1
## 28344  1
## 28345  1
## 28346  1
## 28347  1
## 28348  1
## 28349  1
## 28350  1
## 28351  1
## 28352  1
## 28353  1
## 28354  1
## 28355  1
## 28356  1
## 28357  1
## 28358  1
## 28359  1
## 28360  1
## 28361  1
## 28362  1
## 28363  1
## 28364  1
## 28365  1
## 28366  1
## 28367  1
## 28368  1
## 28369  1
## 28370  1
## 28371  1
## 28372  1
## 28373  1
## 28374  1
## 28375  1
## 28376  1
## 28377  1
## 28378  1
## 28379  1
## 28380  1
## 28381  1
## 28382  1
## 28383  1
## 28384  1
## 28385  1
## 28386  1
## 28387  1
## 28388  1
## 28389  1
## 28390  1
## 28391  1
## 28392  1
## 28393  1
## 28394  1
## 28395  1
## 28396  1
## 28397  1
## 28398  1
## 28399  1
## 28400  1
## 28401  1
## 28402  1
## 28403  1
## 28404  1
## 28405  1
## 28406  1
## 28407  1
## 28408  1
## 28409  1
## 28410  1
## 28411  1
## 28412  1
## 28413  1
## 28414  1
## 28415  1
## 28416  1
## 28417  1
## 28418  1
## 28419  1
## 28420  1
## 28421  1
## 28422  1
## 28423  1
## 28424  1
## 28425  1
## 28426  1
## 28427  1
## 28428  1
## 28429  1
## 28430  1
## 28431  1
## 28432  1
## 28433  1
## 28434  1
## 28435  1
## 28436  1
## 28437  1
## 28438  1
## 28439  1
## 28440  1
## 28441  1
## 28442  1
## 28443  1
## 28444  1
## 28445  1
## 28446  1
## 28447  1
## 28448  1
## 28449  1
## 28450  1
## 28451  1
## 28452  1
## 28453  1
## 28454  1
## 28455  1
## 28456  1
## 28457  1
## 28458  1
## 28459  1
## 28460  1
## 28461  1
## 28462  1
## 28463  1
## 28464  1
## 28465  1
## 28466  1
## 28467  1
## 28468  1
## 28469  1
## 28470  1
## 28471  1
## 28472  1
## 28473  1
## 28474  1
## 28475  1
## 28476  1
## 28477  1
## 28478  1
## 28479  1
## 28480  1
## 28481  1
## 28482  1
## 28483  1
## 28484  1
## 28485  1
## 28486  1
## 28487  1
## 28488  1
## 28489  1
## 28490  1
## 28491  1
## 28492  1
## 28493  1
## 28494  1
## 28495  1
## 28496  1
## 28497  1
## 28498  1
## 28499  1
## 28500  1
## 28501  1
## 28502  1
## 28503  1
## 28504  1
## 28505  1
## 28506  1
## 28507  1
## 28508  1
## 28509  1
## 28510  1
## 28511  1
## 28512  1
## 28513  1
## 28514  1
## 28515  1
## 28516  1
## 28517  1
## 28518  1
## 28519  1
## 28520  1
## 28521  1
## 28522  1
## 28523  1
## 28524  1
## 28525  1
## 28526  1
## 28527  1
## 28528  1
## 28529  1
## 28530  1
## 28531  1
## 28532  1
## 28533  1
## 28534  1
## 28535  1
## 28536  1
## 28537  1
## 28538  1
## 28539  1
## 28540  1
## 28541  1
## 28542  1
## 28543  1
## 28544  1
## 28545  1
## 28546  1
## 28547  1
## 28548  1
## 28549  1
## 28550  1
## 28551  1
## 28552  1
## 28553  1
## 28554  1
## 28555  1
## 28556  1
## 28557  1
## 28558  1
## 28559  1
## 28560  1
## 28561  1
## 28562  1
## 28563  1
## 28564  1
## 28565  1
## 28566  1
## 28567  1
## 28568  1
## 28569  1
## 28570  1
## 28571  1
## 28572  1
## 28573  1
## 28574  1
## 28575  1
## 28576  1
## 28577  1
## 28578  1
## 28579  1
## 28580  1
## 28581  1
## 28582  1
## 28583  1
## 28584  1
## 28585  1
## 28586  1
## 28587  1
## 28588  1
## 28589  1
## 28590  1
## 28591  1
## 28592  1
## 28593  1
## 28594  1
## 28595  1
## 28596  1
## 28597  1
## 28598  1
## 28599  1
## 28600  1
## 28601  1
## 28602  1
## 28603  1
## 28604  1
## 28605  1
## 28606  1
## 28607  1
## 28608  1
## 28609  1
## 28610  1
## 28611  1
## 28612  1
## 28613  1
## 28614  1
## 28615  1
## 28616  1
## 28617  1
## 28618  1
## 28619  1
## 28620  1
## 28621  1
## 28622  1
## 28623  1
## 28624  1
## 28625  1
## 28626  1
## 28627  1
## 28628  1
## 28629  1
## 28630  1
## 28631  1
## 28632  1
## 28633  1
## 28634  1
## 28635  1
## 28636  1
## 28637  1
## 28638  1
## 28639  1
## 28640  1
## 28641  1
## 28642  1
## 28643  1
## 28644  1
## 28645  1
## 28646  1
## 28647  1
## 28648  1
## 28649  1
## 28650  1
## 28651  1
## 28652  1
## 28653  1
## 28654  1
## 28655  1
## 28656  1
## 28657  1
## 28658  1
## 28659  1
## 28660  1
## 28661  1
## 28662  1
## 28663  1
## 28664  1
## 28665  1
## 28666  1
## 28667  1
## 28668  1
## 28669  1
## 28670  1
## 28671  1
## 28672  1
## 28673  1
## 28674  1
## 28675  1
## 28676  1
## 28677  1
## 28678  1
## 28679  1
## 28680  1
## 28681  1
## 28682  1
## 28683  1
## 28684  1
## 28685  1
## 28686  1
## 28687  1
## 28688  1
## 28689  1
## 28690  1
## 28691  1
## 28692  1
## 28693  1
## 28694  1
## 28695  1
## 28696  1
## 28697  1
## 28698  1
## 28699  1
## 28700  1
## 28701  1
## 28702  1
## 28703  1
## 28704  1
## 28705  1
## 28706  1
## 28707  1
## 28708  1
## 28709  1
## 28710  1
## 28711  1
## 28712  1
## 28713  1
## 28714  1
## 28715  1
## 28716  1
## 28717  1
## 28718  1
## 28719  1
## 28720  1
## 28721  1
## 28722  1
## 28723  1
## 28724  1
## 28725  1
## 28726  1
## 28727  1
## 28728  1
## 28729  1
## 28730  1
## 28731  1
## 28732  1
## 28733  1
## 28734  1
## 28735  1
## 28736  1
## 28737  1
## 28738  1
## 28739  1
## 28740  1
## 28741  1
## 28742  1
## 28743  1
## 28744  1
## 28745  1
## 28746  1
## 28747  1
## 28748  1
## 28749  1
## 28750  1
## 28751  1
## 28752  1
## 28753  1
## 28754  1
## 28755  1
## 28756  1
## 28757  1
## 28758  1
## 28759  1
## 28760  1
## 28761  1
## 28762  1
## 28763  1
## 28764  1
## 28765  1
## 28766  1
## 28767  1
## 28768  1
## 28769  1
## 28770  1
## 28771  1
## 28772  1
## 28773  1
## 28774  1
## 28775  1
## 28776  1
## 28777  1
## 28778  1
## 28779  1
## 28780  1
## 28781  1
## 28782  1
## 28783  1
## 28784  1
## 28785  1
## 28786  1
## 28787  1
## 28788  1
## 28789  1
## 28790  1
## 28791  1
## 28792  1
## 28793  1
## 28794  1
## 28795  1
## 28796  1
## 28797  1
## 28798  1
## 28799  1
## 28800  1
## 28801  1
## 28802  1
## 28803  1
## 28804  1
## 28805  1
## 28806  1
## 28807  1
## 28808  1
## 28809  1
## 28810  1
## 28811  1
## 28812  1
## 28813  1
## 28814  1
## 28815  1
## 28816  1
## 28817  1
## 28818  1
## 28819  1
## 28820  1
## 28821  1
## 28822  1
## 28823  1
## 28824  1
## 28825  1
## 28826  1
## 28827  1
## 28828  1
## 28829  1
## 28830  1
## 28831  1
## 28832  1
## 28833  1
## 28834  1
## 28835  1
## 28836  1
## 28837  1
## 28838  1
## 28839  1
## 28840  1
## 28841  1
## 28842  1
## 28843  1
## 28844  1
## 28845  1
## 28846  1
## 28847  1
## 28848  1
## 28849  1
## 28850  1
## 28851  1
## 28852  1
## 28853  1
## 28854  1
## 28855  1
## 28856  1
## 28857  1
## 28858  1
## 28859  1
## 28860  1
## 28861  1
## 28862  1
## 28863  1
## 28864  1
## 28865  1
## 28866  1
## 28867  1
## 28868  1
## 28869  1
## 28870  1
## 28871  1
## 28872  1
## 28873  1
## 28874  1
## 28875  1
## 28876  1
## 28877  1
## 28878  1
## 28879  1
## 28880  1
## 28881  1
## 28882  1
## 28883  1
## 28884  1
## 28885  1
## 28886  1
## 28887  1
## 28888  1
## 28889  1
## 28890  1
## 28891  1
## 28892  1
## 28893  1
## 28894  1
## 28895  1
## 28896  1
## 28897  1
## 28898  1
## 28899  1
## 28900  1
## 28901  1
## 28902  1
## 28903  1
## 28904  1
## 28905  1
## 28906  1
## 28907  1
## 28908  1
## 28909  1
## 28910  1
## 28911  1
## 28912  1
## 28913  1
## 28914  1
## 28915  1
## 28916  1
## 28917  1
## 28918  1
## 28919  1
## 28920  1
## 28921  1
## 28922  1
## 28923  1
## 28924  1
## 28925  1
## 28926  1
## 28927  1
## 28928  1
## 28929  1
## 28930  1
## 28931  1
## 28932  1
## 28933  1
## 28934  1
## 28935  1
## 28936  1
## 28937  1
## 28938  1
## 28939  1
## 28940  1
## 28941  1
## 28942  1
## 28943  1
## 28944  1
## 28945  1
## 28946  1
## 28947  1
## 28948  1
## 28949  1
## 28950  1
## 28951  1
## 28952  1
## 28953  1
## 28954  1
## 28955  1
## 28956  1
## 28957  1
## 28958  1
## 28959  1
## 28960  1
## 28961  1
## 28962  1
## 28963  1
## 28964  1
## 28965  1
## 28966  1
## 28967  1
## 28968  1
## 28969  1
## 28970  1
## 28971  1
## 28972  1
## 28973  1
## 28974  1
## 28975  1
## 28976  1
## 28977  1
## 28978  1
## 28979  1
## 28980  1
## 28981  1
## 28982  1
## 28983  1
## 28984  1
## 28985  1
## 28986  1
## 28987  1
## 28988  1
## 28989  1
## 28990  1
## 28991  1
## 28992  1
## 28993  1
## 28994  1
## 28995  1
## 28996  1
## 28997  1
## 28998  1
## 28999  1
## 29000  1
## 29001  1
## 29002  1
## 29003  1
## 29004  1
## 29005  1
## 29006  1
## 29007  1
## 29008  1
## 29009  1
## 29010  1
## 29011  1
## 29012  1
## 29013  1
## 29014  1
## 29015  1
## 29016  1
## 29017  1
## 29018  1
## 29019  1
## 29020  1
## 29021  1
## 29022  1
## 29023  1
## 29024  1
## 29025  1
## 29026  1
## 29027  1
## 29028  1
## 29029  1
## 29030  1
## 29031  1
## 29032  1
## 29033  1
## 29034  1
## 29035  1
## 29036  1
## 29037  1
## 29038  1
## 29039  1
## 29040  1
## 29041  1
## 29042  1
## 29043  1
## 29044  1
## 29045  1
## 29046  1
## 29047  1
## 29048  1
## 29049  1
## 29050  1
## 29051  1
## 29052  1
## 29053  1
## 29054  1
## 29055  1
## 29056  1
## 29057  1
## 29058  1
## 29059  1
## 29060  1
## 29061  1
## 29062  1
## 29063  1
## 29064  1
## 29065  1
## 29066  1
## 29067  1
## 29068  1
## 29069  1
## 29070  1
## 29071  1
## 29072  1
## 29073  1
## 29074  1
## 29075  1
## 29076  1
## 29077  1
## 29078  1
## 29079  1
## 29080  1
## 29081  1
## 29082  1
## 29083  1
## 29084  1
## 29085  1
## 29086  1
## 29087  1
## 29088  1
## 29089  1
## 29090  1
## 29091  1
## 29092  1
## 29093  1
## 29094  1
## 29095  1
## 29096  1
## 29097  1
## 29098  1
## 29099  1
## 29100  1
## 29101  1
## 29102  1
## 29103  1
## 29104  1
## 29105  1
## 29106  1
## 29107  1
## 29108  1
## 29109  1
## 29110  1
## 29111  1
## 29112  1
## 29113  1
## 29114  1
## 29115  1
## 29116  1
## 29117  1
## 29118  1
## 29119  1
## 29120  1
## 29121  1
## 29122  1
## 29123  1
## 29124  1
## 29125  1
## 29126  1
## 29127  1
## 29128  1
## 29129  1
## 29130  1
## 29131  1
## 29132  1
## 29133  1
## 29134  1
## 29135  1
## 29136  1
## 29137  1
## 29138  1
## 29139  1
## 29140  1
## 29141  1
## 29142  1
## 29143  1
## 29144  1
## 29145  1
## 29146  1
## 29147  1
## 29148  1
## 29149  1
## 29150  1
## 29151  1
## 29152  1
## 29153  1
## 29154  1
## 29155  1
## 29156  1
## 29157  1
## 29158  1
## 29159  1
## 29160  1
## 29161  1
## 29162  1
## 29163  1
## 29164  1
## 29165  1
## 29166  1
## 29167  1
## 29168  1
## 29169  1
## 29170  1
## 29171  1
## 29172  1
## 29173  1
## 29174  1
## 29175  1
## 29176  1
## 29177  1
## 29178  1
## 29179  1
## 29180  1
## 29181  1
## 29182  1
## 29183  1
## 29184  1
## 29185  1
## 29186  1
## 29187  1
## 29188  1
## 29189  1
## 29190  1
## 29191  1
## 29192  1
## 29193  1
## 29194  1
## 29195  1
## 29196  1
## 29197  1
## 29198  1
## 29199  1
## 29200  1
## 29201  1
## 29202  1
## 29203  1
## 29204  1
## 29205  1
## 29206  1
## 29207  1
## 29208  1
## 29209  1
## 29210  1
## 29211  1
## 29212  1
## 29213  1
## 29214  1
## 29215  1
## 29216  1
## 29217  1
## 29218  1
## 29219  1
## 29220  1
## 29221  1
## 29222  1
## 29223  1
## 29224  1
## 29225  1
## 29226  1
## 29227  1
## 29228  1
## 29229  1
## 29230  1
## 29231  1
## 29232  1
## 29233  1
## 29234  1
## 29235  1
## 29236  1
## 29237  1
## 29238  1
## 29239  1
## 29240  1
## 29241  1
## 29242  1
## 29243  1
## 29244  1
## 29245  1
## 29246  1
## 29247  1
## 29248  1
## 29249  1
## 29250  1
## 29251  1
## 29252  1
## 29253  1
## 29254  1
## 29255  1
## 29256  1
## 29257  1
## 29258  1
## 29259  1
## 29260  1
## 29261  1
## 29262  1
## 29263  1
## 29264  1
## 29265  1
## 29266  1
## 29267  1
## 29268  1
## 29269  1
## 29270  1
## 29271  1
## 29272  1
## 29273  1
## 29274  1
## 29275  1
## 29276  1
## 29277  1
## 29278  1
## 29279  1
## 29280  1
## 29281  1
## 29282  1
## 29283  1
## 29284  1
## 29285  1
## 29286  1
## 29287  1
## 29288  1
## 29289  1
## 29290  1
## 29291  1
## 29292  1
## 29293  1
## 29294  1
## 29295  1
## 29296  1
## 29297  1
## 29298  1
## 29299  1
## 29300  1
## 29301  1
## 29302  1
## 29303  1
## 29304  1
## 29305  1
## 29306  1
## 29307  1
## 29308  1
## 29309  1
## 29310  1
## 29311  1
## 29312  1
## 29313  1
## 29314  1
## 29315  1
## 29316  1
## 29317  1
## 29318  1
## 29319  1
## 29320  1
## 29321  1
## 29322  1
## 29323  1
## 29324  1
## 29325  1
## 29326  1
## 29327  1
## 29328  1
## 29329  1
## 29330  1
## 29331  1
## 29332  1
## 29333  1
## 29334  1
## 29335  1
## 29336  1
## 29337  1
## 29338  1
## 29339  1
## 29340  1
## 29341  1
## 29342  1
## 29343  1
## 29344  1
## 29345  1
## 29346  1
## 29347  1
## 29348  1
## 29349  1
## 29350  1
## 29351  1
## 29352  1
## 29353  1
## 29354  1
## 29355  1
## 29356  1
## 29357  1
## 29358  1
## 29359  1
## 29360  1
## 29361  1
## 29362  1
## 29363  1
## 29364  1
## 29365  1
## 29366  1
## 29367  1
## 29368  1
## 29369  1
## 29370  1
## 29371  1
## 29372  1
## 29373  1
## 29374  1
## 29375  1
## 29376  1
## 29377  1
## 29378  1
## 29379  1
## 29380  1
## 29381  1
## 29382  1
## 29383  1
## 29384  1
## 29385  1
## 29386  1
## 29387  1
## 29388  1
## 29389  1
## 29390  1
## 29391  1
## 29392  1
## 29393  1
## 29394  1
## 29395  1
## 29396  1
## 29397  1
## 29398  1
## 29399  1
## 29400  1
## 29401  1
## 29402  1
## 29403  1
## 29404  1
## 29405  1
## 29406  1
## 29407  1
## 29408  1
## 29409  1
## 29410  1
## 29411  1
## 29412  1
## 29413  1
## 29414  1
## 29415  1
## 29416  1
## 29417  1
## 29418  1
## 29419  1
## 29420  1
## 29421  1
## 29422  1
## 29423  1
## 29424  1
## 29425  1
## 29426  1
## 29427  1
## 29428  1
## 29429  1
## 29430  1
## 29431  1
## 29432  1
## 29433  1
## 29434  1
## 29435  1
## 29436  1
## 29437  1
## 29438  1
## 29439  1
## 29440  1
## 29441  1
## 29442  1
## 29443  1
## 29444  1
## 29445  1
## 29446  1
## 29447  1
## 29448  1
## 29449  1
## 29450  1
## 29451  1
## 29452  1
## 29453  1
## 29454  1
## 29455  1
## 29456  1
## 29457  1
## 29458  1
## 29459  1
## 29460  1
## 29461  1
## 29462  1
## 29463  1
## 29464  1
## 29465  1
## 29466  1
## 29467  1
## 29468  1
## 29469  1
## 29470  1
## 29471  1
## 29472  1
## 29473  1
## 29474  1
## 29475  1
## 29476  1
## 29477  1
## 29478  1
## 29479  1
## 29480  1
## 29481  1
## 29482  1
## 29483  1
## 29484  1
## 29485  1
## 29486  1
## 29487  1
## 29488  1
## 29489  1
## 29490  1
## 29491  1
## 29492  1
## 29493  1
## 29494  1
## 29495  1
## 29496  1
## 29497  1
## 29498  1
## 29499  1
## 29500  1
## 29501  1
## 29502  1
## 29503  1
## 29504  1
## 29505  1
## 29506  1
## 29507  1
## 29508  1
## 29509  1
## 29510  1
## 29511  1
## 29512  1
## 29513  1
## 29514  1
## 29515  1
## 29516  1
## 29517  1
## 29518  1
## 29519  1
## 29520  1
## 29521  1
## 29522  1
## 29523  1
## 29524  1
## 29525  1
## 29526  1
## 29527  1
## 29528  1
## 29529  1
## 29530  1
## 29531  1
## 29532  1
## 29533  1
## 29534  1
## 29535  1
## 29536  1
## 29537  1
## 29538  1
## 29539  1
## 29540  1
## 29541  1
## 29542  1
## 29543  1
## 29544  1
## 29545  1
## 29546  1
## 29547  1
## 29548  1
## 29549  1
## 29550  1
## 29551  1
## 29552  1
## 29553  1
## 29554  1
## 29555  1
## 29556  1
## 29557  1
## 29558  1
## 29559  1
## 29560  1
## 29561  1
## 29562  1
## 29563  1
## 29564  1
## 29565  1
## 29566  1
## 29567  1
## 29568  1
## 29569  1
## 29570  1
## 29571  1
## 29572  1
## 29573  1
## 29574  1
## 29575  1
## 29576  1
## 29577  1
## 29578  1
## 29579  1
## 29580  1
## 29581  1
## 29582  1
## 29583  1
## 29584  1
## 29585  1
## 29586  1
## 29587  1
## 29588  1
## 29589  1
## 29590  1
## 29591  1
## 29592  1
## 29593  1
## 29594  1
## 29595  1
## 29596  1
## 29597  1
## 29598  1
## 29599  1
## 29600  1
## 29601  1
## 29602  1
## 29603  1
## 29604  1
## 29605  1
## 29606  1
## 29607  1
## 29608  1
## 29609  1
## 29610  1
## 29611  1
## 29612  1
## 29613  1
## 29614  1
## 29615  1
## 29616  1
## 29617  1
## 29618  1
## 29619  1
## 29620  1
## 29621  1
## 29622  1
## 29623  1
## 29624  1
## 29625  1
## 29626  1
## 29627  1
## 29628  1
## 29629  1
## 29630  1
## 29631  1
## 29632  1
## 29633  1
## 29634  1
## 29635  1
## 29636  1
## 29637  1
## 29638  1
## 29639  1
## 29640  1
## 29641  1
## 29642  1
## 29643  1
## 29644  1
## 29645  1
## 29646  1
## 29647  1
## 29648  1
## 29649  1
## 29650  1
## 29651  1
## 29652  1
## 29653  1
## 29654  1
## 29655  1
## 29656  1
## 29657  1
## 29658  1
## 29659  1
## 29660  1
## 29661  1
## 29662  1
## 29663  1
## 29664  1
## 29665  1
## 29666  1
## 29667  1
## 29668  1
## 29669  1
## 29670  1
## 29671  1
## 29672  1
## 29673  1
## 29674  1
## 29675  1
## 29676  1
## 29677  1
## 29678  1
## 29679  1
## 29680  1
## 29681  1
## 29682  1
## 29683  1
## 29684  1
## 29685  1
## 29686  1
## 29687  1
## 29688  1
## 29689  1
## 29690  1
## 29691  1
## 29692  1
## 29693  1
## 29694  1
## 29695  1
## 29696  1
## 29697  1
## 29698  1
## 29699  1
## 29700  1
## 29701  1
## 29702  1
## 29703  1
## 29704  1
## 29705  1
## 29706  1
## 29707  1
## 29708  1
## 29709  1
## 29710  1
## 29711  1
## 29712  1
## 29713  1
## 29714  1
## 29715  1
## 29716  1
## 29717  1
## 29718  1
## 29719  1
## 29720  1
## 29721  1
## 29722  1
## 29723  1
## 29724  1
## 29725  1
## 29726  1
## 29727  1
## 29728  1
## 29729  1
## 29730  1
## 29731  1
## 29732  1
## 29733  1
## 29734  1
## 29735  1
## 29736  1
## 29737  1
## 29738  1
## 29739  1
## 29740  1
## 29741  1
## 29742  1
## 29743  1
## 29744  1
## 29745  1
## 29746  1
## 29747  1
## 29748  1
## 29749  1
## 29750  1
## 29751  1
## 29752  1
## 29753  1
## 29754  1
## 29755  1
## 29756  1
## 29757  1
## 29758  1
## 29759  1
## 29760  1
## 29761  1
## 29762  1
## 29763  1
## 29764  1
## 29765  1
## 29766  1
## 29767  1
## 29768  1
## 29769  1
## 29770  1
## 29771  1
## 29772  1
## 29773  1
## 29774  1
## 29775  1
## 29776  1
## 29777  1
## 29778  1
## 29779  1
## 29780  1
## 29781  1
## 29782  1
## 29783  1
## 29784  1
## 29785  1
## 29786  1
## 29787  1
## 29788  1
## 29789  1
## 29790  1
## 29791  1
## 29792  1
## 29793  1
## 29794  1
## 29795  1
## 29796  1
## 29797  1
## 29798  1
## 29799  1
## 29800  1
## 29801  1
## 29802  1
## 29803  1
## 29804  1
## 29805  1
## 29806  1
## 29807  1
## 29808  1
## 29809  1
## 29810  1
## 29811  1
## 29812  1
## 29813  1
## 29814  1
## 29815  1
## 29816  1
## 29817  1
## 29818  1
## 29819  1
## 29820  1
## 29821  1
## 29822  1
## 29823  1
## 29824  1
## 29825  1
## 29826  1
## 29827  1
## 29828  1
## 29829  1
## 29830  1
## 29831  1
## 29832  1
## 29833  1
## 29834  1
## 29835  1
## 29836  1
## 29837  1
## 29838  1
## 29839  1
## 29840  1
## 29841  1
## 29842  1
## 29843  1
## 29844  1
## 29845  1
## 29846  1
## 29847  1
## 29848  1
## 29849  1
## 29850  1
## 29851  1
## 29852  1
## 29853  1
## 29854  1
## 29855  1
## 29856  1
## 29857  1
## 29858  1
## 29859  1
## 29860  1
## 29861  1
## 29862  1
## 29863  1
## 29864  1
## 29865  1
## 29866  1
## 29867  1
## 29868  1
## 29869  1
## 29870  1
## 29871  1
## 29872  1
## 29873  1
## 29874  1
## 29875  1
## 29876  1
## 29877  1
## 29878  1
## 29879  1
## 29880  1
## 29881  1
## 29882  1
## 29883  1
## 29884  1
## 29885  1
## 29886  1
## 29887  1
## 29888  1
## 29889  1
## 29890  1
## 29891  1
## 29892  1
## 29893  1
## 29894  1
## 29895  1
## 29896  1
## 29897  1
## 29898  1
## 29899  1
## 29900  1
## 29901  1
## 29902  1
## 29903  1
## 29904  1
## 29905  1
## 29906  1
## 29907  1
## 29908  1
## 29909  1
## 29910  1
## 29911  1
## 29912  1
## 29913  1
## 29914  1
## 29915  1
## 29916  1
## 29917  1
## 29918  1
## 29919  1
## 29920  1
## 29921  1
## 29922  1
## 29923  1
## 29924  1
## 29925  1
## 29926  1
## 29927  1
## 29928  1
## 29929  1
## 29930  1
## 29931  1
## 29932  1
## 29933  1
## 29934  1
## 29935  1
## 29936  1
## 29937  1
## 29938  1
## 29939  1
## 29940  1
## 29941  1
## 29942  1
## 29943  1
## 29944  1
## 29945  1
## 29946  1
## 29947  1
## 29948  1
## 29949  1
## 29950  1
## 29951  1
## 29952  1
## 29953  1
## 29954  1
## 29955  1
## 29956  1
## 29957  1
## 29958  1
## 29959  1
## 29960  1
## 29961  1
## 29962  1
## 29963  1
## 29964  1
## 29965  1
## 29966  1
## 29967  1
## 29968  1
## 29969  1
## 29970  1
## 29971  1
## 29972  1
## 29973  1
## 29974  1
## 29975  1
## 29976  1
## 29977  1
## 29978  1
## 29979  1
## 29980  1
## 29981  1
## 29982  1
## 29983  1
## 29984  1
## 29985  1
## 29986  1
## 29987  1
## 29988  1
## 29989  1
## 29990  1
## 29991  1
## 29992  1
## 29993  1
## 29994  1
## 29995  1
## 29996  1
## 29997  1
## 29998  1
## 29999  1
## 30000  1
## 30001  1
## 30002  1
## 30003  1
## 30004  1
## 30005  1
## 30006  1
## 30007  1
## 30008  1
## 30009  1
## 30010  1
## 30011  1
## 30012  1
## 30013  1
## 30014  1
## 30015  1
## 30016  1
## 30017  1
## 30018  1
## 30019  1
## 30020  1
## 30021  1
## 30022  1
## 30023  1
## 30024  1
## 30025  1
## 30026  1
## 30027  1
## 30028  1
## 30029  1
## 30030  1
## 30031  1
## 30032  1
## 30033  1
## 30034  1
## 30035  1
## 30036  1
## 30037  1
## 30038  1
## 30039  1
## 30040  1
## 30041  1
## 30042  1
## 30043  1
## 30044  1
## 30045  1
## 30046  1
## 30047  1
## 30048  1
## 30049  1
## 30050  1
## 30051  1
## 30052  1
## 30053  1
## 30054  1
## 30055  1
## 30056  1
## 30057  1
## 30058  1
## 30059  1
## 30060  1
## 30061  1
## 30062  1
## 30063  1
## 30064  1
## 30065  1
## 30066  1
## 30067  1
## 30068  1
## 30069  1
## 30070  1
## 30071  1
## 30072  1
## 30073  1
## 30074  1
## 30075  1
## 30076  1
## 30077  1
## 30078  1
## 30079  1
## 30080  1
## 30081  1
## 30082  1
## 30083  1
## 30084  1
## 30085  1
## 30086  1
## 30087  1
## 30088  1
## 30089  1
## 30090  1
## 30091  1
## 30092  1
## 30093  1
## 30094  1
## 30095  1
## 30096  1
## 30097  1
## 30098  1
## 30099  1
## 30100  1
## 30101  1
## 30102  1
## 30103  1
## 30104  1
## 30105  1
## 30106  1
## 30107  1
## 30108  1
## 30109  1
## 30110  1
## 30111  1
## 30112  1
## 30113  1
## 30114  1
## 30115  1
## 30116  1
## 30117  1
## 30118  1
## 30119  1
## 30120  1
## 30121  1
## 30122  1
## 30123  1
## 30124  1
## 30125  1
## 30126  1
## 30127  1
## 30128  1
## 30129  1
## 30130  1
## 30131  1
## 30132  1
## 30133  1
## 30134  1
## 30135  1
## 30136  1
## 30137  1
## 30138  1
## 30139  1
## 30140  1
## 30141  1
## 30142  1
## 30143  1
## 30144  1
## 30145  1
## 30146  1
## 30147  1
## 30148  1
## 30149  1
## 30150  1
## 30151  1
## 30152  1
## 30153  1
## 30154  1
## 30155  1
## 30156  1
## 30157  1
## 30158  1
## 30159  1
## 30160  1
## 30161  1
## 30162  1
## 30163  1
## 30164  1
## 30165  1
## 30166  1
## 30167  1
## 30168  1
## 30169  1
## 30170  1
## 30171  1
## 30172  1
## 30173  1
## 30174  1
## 30175  1
## 30176  1
## 30177  1
## 30178  1
## 30179  1
## 30180  1
## 30181  1
## 30182  1
## 30183  1
## 30184  1
## 30185  1
## 30186  1
## 30187  1
## 30188  1
## 30189  1
## 30190  1
## 30191  1
## 30192  1
## 30193  1
## 30194  1
## 30195  1
## 30196  1
## 30197  1
## 30198  1
## 30199  1
## 30200  1
## 30201  1
## 30202  1
## 30203  1
## 30204  1
## 30205  1
## 30206  1
## 30207  1
## 30208  1
## 30209  1
## 30210  1
## 30211  1
## 30212  1
## 30213  1
## 30214  1
## 30215  1
## 30216  1
## 30217  1
## 30218  1
## 30219  1
## 30220  1
## 30221  1
## 30222  1
## 30223  1
## 30224  1
## 30225  1
## 30226  1
## 30227  1
## 30228  1
## 30229  1
## 30230  1
## 30231  1
## 30232  1
## 30233  1
## 30234  1
## 30235  1
## 30236  1
## 30237  1
## 30238  1
## 30239  1
## 30240  1
## 30241  1
## 30242  1
## 30243  1
## 30244  1
## 30245  1
## 30246  1
## 30247  1
## 30248  1
## 30249  1
## 30250  1
## 30251  1
## 30252  1
## 30253  1
## 30254  1
## 30255  1
## 30256  1
## 30257  1
## 30258  1
## 30259  1
## 30260  1
## 30261  1
## 30262  1
## 30263  1
## 30264  1
## 30265  1
## 30266  1
## 30267  1
## 30268  1
## 30269  1
## 30270  1
## 30271  1
## 30272  1
## 30273  1
## 30274  1
## 30275  1
## 30276  1
## 30277  1
## 30278  1
## 30279  1
## 30280  1
## 30281  1
## 30282  1
## 30283  1
## 30284  1
## 30285  1
## 30286  1
## 30287  1
## 30288  1
## 30289  1
## 30290  1
## 30291  1
## 30292  1
## 30293  1
## 30294  1
## 30295  1
## 30296  1
## 30297  1
## 30298  1
## 30299  1
## 30300  1
## 30301  1
## 30302  1
## 30303  1
## 30304  1
## 30305  1
## 30306  1
## 30307  1
## 30308  1
## 30309  1
## 30310  1
## 30311  1
## 30312  1
## 30313  1
## 30314  1
## 30315  1
## 30316  1
## 30317  1
## 30318  1
## 30319  1
## 30320  1
## 30321  1
## 30322  1
## 30323  1
## 30324  1
## 30325  1
## 30326  1
## 30327  1
## 30328  1
## 30329  1
## 30330  1
## 30331  1
## 30332  1
## 30333  1
## 30334  1
## 30335  1
## 30336  1
## 30337  1
## 30338  1
## 30339  1
## 30340  1
## 30341  1
## 30342  1
## 30343  1
## 30344  1
## 30345  1
## 30346  1
## 30347  1
## 30348  1
## 30349  1
## 30350  1
## 30351  1
## 30352  1
## 30353  1
## 30354  1
## 30355  1
## 30356  1
## 30357  1
## 30358  1
## 30359  1
## 30360  1
## 30361  1
## 30362  1
## 30363  1
## 30364  1
## 30365  1
## 30366  1
## 30367  1
## 30368  1
## 30369  1
## 30370  1
## 30371  1
## 30372  1
## 30373  1
## 30374  1
## 30375  1
## 30376  1
## 30377  1
## 30378  1
## 30379  1
## 30380  1
## 30381  1
## 30382  1
## 30383  1
## 30384  1
## 30385  1
## 30386  1
## 30387  1
## 30388  1
## 30389  1
## 30390  1
## 30391  1
## 30392  1
## 30393  1
## 30394  1
## 30395  1
## 30396  1
## 30397  1
## 30398  1
## 30399  1
## 30400  1
## 30401  1
## 30402  1
## 30403  1
## 30404  1
## 30405  1
## 30406  1
## 30407  1
## 30408  1
## 30409  1
## 30410  1
## 30411  1
## 30412  1
## 30413  1
## 30414  1
## 30415  1
## 30416  1
## 30417  1
## 30418  1
## 30419  1
## 30420  1
## 30421  1
## 30422  1
## 30423  1
## 30424  1
## 30425  1
## 30426  1
## 30427  1
## 30428  1
## 30429  1
## 30430  1
## 30431  1
## 30432  1
## 30433  1
## 30434  1
## 30435  1
## 30436  1
## 30437  1
## 30438  1
## 30439  1
## 30440  1
## 30441  1
## 30442  1
## 30443  1
## 30444  1
## 30445  1
## 30446  1
## 30447  1
## 30448  1
## 30449  1
## 30450  1
## 30451  1
## 30452  1
## 30453  1
## 30454  1
## 30455  1
## 30456  1
## 30457  1
## 30458  1
## 30459  1
## 30460  1
## 30461  1
## 30462  1
## 30463  1
## 30464  1
## 30465  1
## 30466  1
## 30467  1
## 30468  1
## 30469  1
## 30470  1
## 30471  1
## 30472  1
## 30473  1
## 30474  1
## 30475  1
## 30476  1
## 30477  1
## 30478  1
## 30479  1
## 30480  1
## 30481  1
## 30482  1
## 30483  1
## 30484  1
## 30485  1
## 30486  1
## 30487  1
## 30488  1
## 30489  1
## 30490  1
## 30491  1
## 30492  1
## 30493  1
## 30494  1
## 30495  1
## 30496  1
## 30497  1
## 30498  1
## 30499  1
## 30500  1
## 30501  1
## 30502  1
## 30503  1
## 30504  1
## 30505  1
## 30506  1
## 30507  1
## 30508  1
## 30509  1
## 30510  1
## 30511  1
## 30512  1
## 30513  1
## 30514  1
## 30515  1
## 30516  1
## 30517  1
## 30518  1
## 30519  1
## 30520  1
## 30521  1
## 30522  1
## 30523  1
## 30524  1
## 30525  1
## 30526  1
## 30527  1
## 30528  1
## 30529  1
## 30530  1
## 30531  1
## 30532  1
## 30533  1
## 30534  1
## 30535  1
## 30536  1
## 30537  1
## 30538  1
## 30539  1
## 30540  1
## 30541  1
## 30542  1
## 30543  1
## 30544  1
## 30545  1
## 30546  1
## 30547  1
## 30548  1
## 30549  1
## 30550  1
## 30551  1
## 30552  1
## 30553  1
## 30554  1
## 30555  1
## 30556  1
## 30557  1
## 30558  1
## 30559  1
## 30560  1
## 30561  1
## 30562  1
## 30563  1
## 30564  1
## 30565  1
## 30566  1
## 30567  1
## 30568  1
## 30569  1
## 30570  1
## 30571  1
## 30572  1
## 30573  1
## 30574  1
## 30575  1
## 30576  1
## 30577  1
## 30578  1
## 30579  1
## 30580  1
## 30581  1
## 30582  1
## 30583  1
## 30584  1
## 30585  1
## 30586  1
## 30587  1
## 30588  1
## 30589  1
## 30590  1
## 30591  1
## 30592  1
## 30593  1
## 30594  1
## 30595  1
## 30596  1
## 30597  1
## 30598  1
## 30599  1
## 30600  1
## 30601  1
## 30602  1
## 30603  1
## 30604  1
## 30605  1
## 30606  1
## 30607  1
## 30608  1
## 30609  1
## 30610  1
## 30611  1
## 30612  1
## 30613  1
## 30614  1
## 30615  1
## 30616  1
## 30617  1
## 30618  1
## 30619  1
## 30620  1
## 30621  1
## 30622  1
## 30623  1
## 30624  1
## 30625  1
## 30626  1
## 30627  1
## 30628  1
## 30629  1
## 30630  1
## 30631  1
## 30632  1
## 30633  1
## 30634  1
## 30635  1
## 30636  1
## 30637  1
## 30638  1
## 30639  1
## 30640  1
## 30641  1
## 30642  1
## 30643  1
## 30644  1
## 30645  1
## 30646  1
## 30647  1
## 30648  1
## 30649  1
## 30650  1
## 30651  1
## 30652  1
## 30653  1
## 30654  1
## 30655  1
## 30656  1
## 30657  1
## 30658  1
## 30659  1
## 30660  1
## 30661  1
## 30662  1
## 30663  1
## 30664  1
## 30665  1
## 30666  1
## 30667  1
## 30668  1
## 30669  1
## 30670  1
## 30671  1
## 30672  1
## 30673  1
## 30674  1
## 30675  1
## 30676  1
## 30677  1
## 30678  1
## 30679  1
## 30680  1
## 30681  1
## 30682  1
## 30683  1
## 30684  1
## 30685  1
## 30686  1
## 30687  1
## 30688  1
## 30689  1
## 30690  1
## 30691  1
## 30692  1
## 30693  1
## 30694  1
## 30695  1
## 30696  1
## 30697  1
## 30698  1
## 30699  1
## 30700  1
## 30701  1
## 30702  1
## 30703  1
## 30704  1
## 30705  1
## 30706  1
## 30707  1
## 30708  1
## 30709  1
## 30710  1
## 30711  1
## 30712  1
## 30713  1
## 30714  1
## 30715  1
## 30716  1
## 30717  1
## 30718  1
## 30719  1
## 30720  1
## 30721  1
## 30722  1
## 30723  1
## 30724  1
## 30725  1
## 30726  1
## 30727  1
## 30728  1
## 30729  1
## 30730  1
## 30731  1
## 30732  1
## 30733  1
## 30734  1
## 30735  1
## 30736  1
## 30737  1
## 30738  1
## 30739  1
## 30740  1
## 30741  1
## 30742  1
## 30743  1
## 30744  1
## 30745  1
## 30746  1
## 30747  1
## 30748  1
## 30749  1
## 30750  1
## 30751  1
## 30752  1
## 30753  1
## 30754  1
## 30755  1
## 30756  1
## 30757  1
## 30758  1
## 30759  1
## 30760  1
## 30761  1
## 30762  1
## 30763  1
## 30764  1
## 30765  1
## 30766  1
## 30767  1
## 30768  1
## 30769  1
## 30770  1
## 30771  1
## 30772  1
## 30773  1
## 30774  1
## 30775  1
## 30776  1
## 30777  1
## 30778  1
## 30779  1
## 30780  1
## 30781  1
## 30782  1
## 30783  1
## 30784  1
## 30785  1
## 30786  1
## 30787  1
## 30788  1
## 30789  1
## 30790  1
## 30791  1
## 30792  1
## 30793  1
## 30794  1
## 30795  1
## 30796  1
## 30797  1
## 30798  1
## 30799  1
## 30800  1
## 30801  1
## 30802  1
## 30803  1
## 30804  1
## 30805  1
## 30806  1
## 30807  1
## 30808  1
## 30809  1
## 30810  1
## 30811  1
## 30812  1
## 30813  1
## 30814  1
## 30815  1
## 30816  1
## 30817  1
## 30818  1
## 30819  1
## 30820  1
## 30821  1
## 30822  1
## 30823  1
## 30824  1
## 30825  1
## 30826  1
## 30827  1
## 30828  1
## 30829  1
## 30830  1
## 30831  1
## 30832  1
## 30833  1
## 30834  1
## 30835  1
## 30836  1
## 30837  1
## 30838  1
## 30839  1
## 30840  1
## 30841  1
## 30842  1
## 30843  1
## 30844  1
## 30845  1
## 30846  1
## 30847  1
## 30848  1
## 30849  1
## 30850  1
## 30851  1
## 30852  1
## 30853  1
## 30854  1
## 30855  1
## 30856  1
## 30857  1
## 30858  1
## 30859  1
## 30860  1
## 30861  1
## 30862  1
## 30863  1
## 30864  1
## 30865  1
## 30866  1
## 30867  1
## 30868  1
## 30869  1
## 30870  1
## 30871  1
## 30872  1
## 30873  1
## 30874  1
## 30875  1
## 30876  1
## 30877  1
## 30878  1
## 30879  1
## 30880  1
## 30881  1
## 30882  1
## 30883  1
## 30884  1
## 30885  1
## 30886  1
## 30887  1
## 30888  1
## 30889  1
## 30890  1
## 30891  1
## 30892  1
## 30893  1
## 30894  1
## 30895  1
## 30896  1
## 30897  1
## 30898  1
## 30899  1
## 30900  1
## 30901  1
## 30902  1
## 30903  1
## 30904  1
## 30905  1
## 30906  1
## 30907  1
## 30908  1
## 30909  1
## 30910  1
## 30911  1
## 30912  1
## 30913  1
## 30914  1
## 30915  1
## 30916  1
## 30917  1
## 30918  1
## 30919  1
## 30920  1
## 30921  1
## 30922  1
## 30923  1
## 30924  1
## 30925  1
## 30926  1
## 30927  1
## 30928  1
## 30929  1
## 30930  1
## 30931  1
## 30932  1
## 30933  1
## 30934  1
## 30935  1
## 30936  1
## 30937  1
## 30938  1
## 30939  1
## 30940  1
## 30941  1
## 30942  1
## 30943  1
## 30944  1
## 30945  1
## 30946  1
## 30947  1
## 30948  1
## 30949  1
## 30950  1
## 30951  1
## 30952  1
## 30953  1
## 30954  1
## 30955  1
## 30956  1
## 30957  1
## 30958  1
## 30959  1
## 30960  1
## 30961  1
## 30962  1
## 30963  1
## 30964  1
## 30965  1
## 30966  1
## 30967  1
## 30968  1
## 30969  1
## 30970  1
## 30971  1
## 30972  1
## 30973  1
## 30974  1
## 30975  1
## 30976  1
## 30977  1
## 30978  1
## 30979  1
## 30980  1
## 30981  1
## 30982  1
## 30983  1
## 30984  1
## 30985  1
## 30986  1
## 30987  1
## 30988  1
## 30989  1
## 30990  1
## 30991  1
## 30992  1
## 30993  1
## 30994  1
## 30995  1
## 30996  1
## 30997  1
## 30998  1
## 30999  1
## 31000  1
## 31001  1
## 31002  1
## 31003  1
## 31004  1
## 31005  1
## 31006  1
## 31007  1
## 31008  1
## 31009  1
## 31010  1
## 31011  1
## 31012  1
## 31013  1
## 31014  1
## 31015  1
## 31016  1
## 31017  1
## 31018  1
## 31019  1
## 31020  1
## 31021  1
## 31022  1
## 31023  1
## 31024  1
## 31025  1
## 31026  1
## 31027  1
## 31028  1
## 31029  1
## 31030  1
## 31031  1
## 31032  1
## 31033  1
## 31034  1
## 31035  1
## 31036  1
## 31037  1
## 31038  1
## 31039  1
## 31040  1
## 31041  1
## 31042  1
## 31043  1
## 31044  1
## 31045  1
## 31046  1
## 31047  1
## 31048  1
## 31049  1
## 31050  1
## 31051  1
## 31052  1
## 31053  1
## 31054  1
## 31055  1
## 31056  1
## 31057  1
## 31058  1
## 31059  1
## 31060  1
## 31061  1
## 31062  1
## 31063  1
## 31064  1
## 31065  1
## 31066  1
## 31067  1
## 31068  1
## 31069  1
## 31070  1
## 31071  1
## 31072  1
## 31073  1
## 31074  1
## 31075  1
## 31076  1
## 31077  1
## 31078  1
## 31079  1
## 31080  1
## 31081  1
## 31082  1
## 31083  1
## 31084  1
## 31085  1
## 31086  1
## 31087  1
## 31088  1
## 31089  1
## 31090  1
## 31091  1
## 31092  1
## 31093  1
## 31094  1
## 31095  1
## 31096  1
## 31097  1
## 31098  1
## 31099  1
## 31100  1
## 31101  1
## 31102  1
## 31103  1
## 31104  1
## 31105  1
## 31106  1
## 31107  1
## 31108  1
## 31109  1
## 31110  1
## 31111  1
## 31112  1
## 31113  1
## 31114  1
## 31115  1
## 31116  1
## 31117  1
## 31118  1
## 31119  1
## 31120  1
## 31121  1
## 31122  1
## 31123  1
## 31124  1
## 31125  1
## 31126  1
## 31127  1
## 31128  1
## 31129  1
## 31130  1
## 31131  1
## 31132  1
## 31133  1
## 31134  1
## 31135  1
## 31136  1
## 31137  1
## 31138  1
## 31139  1
## 31140  1
## 31141  1
## 31142  1
## 31143  1
## 31144  1
## 31145  1
## 31146  1
## 31147  1
## 31148  1
## 31149  1
## 31150  1
## 31151  1
## 31152  1
## 31153  1
## 31154  1
## 31155  1
## 31156  1
## 31157  1
## 31158  1
## 31159  1
## 31160  1
## 31161  1
## 31162  1
## 31163  1
## 31164  1
## 31165  1
## 31166  1
## 31167  1
## 31168  1
## 31169  1
## 31170  1
## 31171  1
## 31172  1
## 31173  1
## 31174  1
## 31175  1
## 31176  1
## 31177  1
## 31178  1
## 31179  1
## 31180  1
## 31181  1
## 31182  1
## 31183  1
## 31184  1
## 31185  1
## 31186  1
## 31187  1
## 31188  1
## 31189  1
## 31190  1
## 31191  1
## 31192  1
## 31193  1
## 31194  1
## 31195  1
## 31196  1
## 31197  1
## 31198  1
## 31199  1
## 31200  1
## 31201  1
## 31202  1
## 31203  1
## 31204  1
## 31205  1
## 31206  1
## 31207  1
## 31208  1
## 31209  1
## 31210  1
## 31211  1
## 31212  1
## 31213  1
## 31214  1
## 31215  1
## 31216  1
## 31217  1
## 31218  1
## 31219  1
## 31220  1
## 31221  1
## 31222  1
## 31223  1
## 31224  1
## 31225  1
## 31226  1
## 31227  1
## 31228  1
## 31229  1
## 31230  1
## 31231  1
## 31232  1
## 31233  1
## 31234  1
## 31235  1
## 31236  1
## 31237  1
## 31238  1
## 31239  1
## 31240  1
## 31241  1
## 31242  1
## 31243  1
## 31244  1
## 31245  1
## 31246  1
## 31247  1
## 31248  1
## 31249  1
## 31250  1
## 31251  1
## 31252  1
## 31253  1
## 31254  1
## 31255  1
## 31256  1
## 31257  1
## 31258  1
## 31259  1
## 31260  1
## 31261  1
## 31262  1
## 31263  1
## 31264  1
## 31265  1
## 31266  1
## 31267  1
## 31268  1
## 31269  1
## 31270  1
## 31271  1
## 31272  1
## 31273  1
## 31274  1
## 31275  1
## 31276  1
## 31277  1
## 31278  1
## 31279  1
## 31280  1
## 31281  1
## 31282  1
## 31283  1
## 31284  1
## 31285  1
## 31286  1
## 31287  1
## 31288  1
## 31289  1
## 31290  1
## 31291  1
## 31292  1
## 31293  1
## 31294  1
## 31295  1
## 31296  1
## 31297  1
## 31298  1
## 31299  1
## 31300  1
## 31301  1
## 31302  1
## 31303  1
## 31304  1
## 31305  1
## 31306  1
## 31307  1
## 31308  1
## 31309  1
## 31310  1
## 31311  1
## 31312  1
## 31313  1
## 31314  1
## 31315  1
## 31316  1
## 31317  1
## 31318  1
## 31319  1
## 31320  1
## 31321  1
## 31322  1
## 31323  1
## 31324  1
## 31325  1
## 31326  1
## 31327  1
## 31328  1
## 31329  1
## 31330  1
## 31331  1
## 31332  1
## 31333  1
## 31334  1
## 31335  1
## 31336  1
## 31337  1
## 31338  1
## 31339  1
## 31340  1
## 31341  1
## 31342  1
## 31343  1
## 31344  1
## 31345  1
## 31346  1
## 31347  1
## 31348  1
## 31349  1
## 31350  1
## 31351  1
## 31352  1
## 31353  1
## 31354  1
## 31355  1
## 31356  1
## 31357  1
## 31358  1
## 31359  1
## 31360  1
## 31361  1
## 31362  1
## 31363  1
## 31364  1
## 31365  1
## 31366  1
## 31367  1
## 31368  1
## 31369  1
## 31370  1
## 31371  1
## 31372  1
## 31373  1
## 31374  1
## 31375  1
## 31376  1
## 31377  1
## 31378  1
## 31379  1
## 31380  1
## 31381  1
## 31382  1
## 31383  1
## 31384  1
## 31385  1
## 31386  1
## 31387  1
## 31388  1
## 31389  1
## 31390  1
## 31391  1
## 31392  1
## 31393  1
## 31394  1
## 31395  1
## 31396  1
## 31397  1
## 31398  1
## 31399  1
## 31400  1
## 31401  1
## 31402  1
## 31403  1
## 31404  1
## 31405  1
## 31406  1
## 31407  1
## 31408  1
## 31409  1
## 31410  1
## 31411  1
## 31412  1
## 31413  1
## 31414  1
## 31415  1
## 31416  1
## 31417  1
## 31418  1
## 31419  1
## 31420  1
## 31421  1
## 31422  1
## 31423  1
## 31424  1
## 31425  1
## 31426  1
## 31427  1
## 31428  1
## 31429  1
## 31430  1
## 31431  1
## 31432  1
## 31433  1
## 31434  1
## 31435  1
## 31436  1
## 31437  1
## 31438  1
## 31439  1
## 31440  1
## 31441  1
## 31442  1
## 31443  1
## 31444  1
## 31445  1
## 31446  1
## 31447  1
## 31448  1
## 31449  1
## 31450  1
## 31451  1
## 31452  1
## 31453  1
## 31454  1
## 31455  1
## 31456  1
## 31457  1
## 31458  1
## 31459  1
## 31460  1
## 31461  1
## 31462  1
## 31463  1
## 31464  1
## 31465  1
## 31466  1
## 31467  1
## 31468  1
## 31469  1
## 31470  1
## 31471  1
## 31472  1
## 31473  1
## 31474  1
## 31475  1
## 31476  1
## 31477  1
## 31478  1
## 31479  1
## 31480  1
## 31481  1
## 31482  1
## 31483  1
## 31484  1
## 31485  1
## 31486  1
## 31487  1
## 31488  1
## 31489  1
## 31490  1
## 31491  1
## 31492  1
## 31493  1
## 31494  1
## 31495  1
## 31496  1
## 31497  1
## 31498  1
## 31499  1
## 31500  1
## 31501  1
## 31502  1
## 31503  1
## 31504  1
## 31505  1
## 31506  1
## 31507  1
## 31508  1
## 31509  1
## 31510  1
## 31511  1
## 31512  1
## 31513  1
## 31514  1
## 31515  1
## 31516  1
## 31517  1
## 31518  1
## 31519  1
## 31520  1
## 31521  1
## 31522  1
## 31523  1
## 31524  1
## 31525  1
## 31526  1
## 31527  1
## 31528  1
## 31529  1
## 31530  1
## 31531  1
## 31532  1
## 31533  1
## 31534  1
## 31535  1
## 31536  1
## 31537  1
## 31538  1
## 31539  1
## 31540  1
## 31541  1
## 31542  1
## 31543  1
## 31544  1
## 31545  1
## 31546  1
## 31547  1
## 31548  1
## 31549  1
## 31550  1
## 31551  1
## 31552  1
## 31553  1
## 31554  1
## 31555  1
## 31556  1
## 31557  1
## 31558  1
## 31559  1
## 31560  1
## 31561  1
## 31562  1
## 31563  1
## 31564  1
## 31565  1
## 31566  1
## 31567  1
## 31568  1
## 31569  1
## 31570  1
## 31571  1
## 31572  1
## 31573  1
## 31574  1
## 31575  1
## 31576  1
## 31577  1
## 31578  1
## 31579  1
## 31580  1
## 31581  1
## 31582  1
## 31583  1
## 31584  1
## 31585  1
## 31586  1
## 31587  1
## 31588  1
## 31589  1
## 31590  1
## 31591  1
## 31592  1
## 31593  1
## 31594  1
## 31595  1
## 31596  1
## 31597  1
## 31598  1
## 31599  1
## 31600  1
## 31601  1
## 31602  1
## 31603  1
## 31604  1
## 31605  1
## 31606  1
## 31607  1
## 31608  1
## 31609  1
## 31610  1
## 31611  1
## 31612  1
## 31613  1
## 31614  1
## 31615  1
## 31616  1
## 31617  1
## 31618  1
## 31619  1
## 31620  1
## 31621  1
## 31622  1
## 31623  1
## 31624  1
## 31625  1
## 31626  1
## 31627  1
## 31628  1
## 31629  1
## 31630  1
## 31631  1
## 31632  1
## 31633  1
## 31634  1
## 31635  1
## 31636  1
## 31637  1
## 31638  1
## 31639  1
## 31640  1
## 31641  1
## 31642  1
## 31643  1
## 31644  1
## 31645  1
## 31646  1
## 31647  1
## 31648  1
## 31649  1
## 31650  1
## 31651  1
## 31652  1
## 31653  1
## 31654  1
## 31655  1
## 31656  1
## 31657  1
## 31658  1
## 31659  1
## 31660  1
## 31661  1
## 31662  1
## 31663  1
## 31664  1
## 31665  1
## 31666  1
## 31667  1
## 31668  1
## 31669  1
## 31670  1
## 31671  1
## 31672  1
## 31673  1
## 31674  1
## 31675  1
## 31676  1
## 31677  1
## 31678  1
## 31679  1
## 31680  1
## 31681  1
## 31682  1
## 31683  1
## 31684  1
## 31685  1
## 31686  1
## 31687  1
## 31688  1
## 31689  1
## 31690  1
## 31691  1
## 31692  1
## 31693  1
## 31694  1
## 31695  1
## 31696  1
## 31697  1
## 31698  1
## 31699  1
## 31700  1
## 31701  1
## 31702  1
## 31703  1
## 31704  1
## 31705  1
## 31706  1
## 31707  1
## 31708  1
## 31709  1
## 31710  1
## 31711  1
## 31712  1
## 31713  1
## 31714  1
## 31715  1
## 31716  1
## 31717  1
## 31718  1
## 31719  1
## 31720  1
## 31721  1
## 31722  1
## 31723  1
## 31724  1
## 31725  1
## 31726  1
## 31727  1
## 31728  1
## 31729  1
## 31730  1
## 31731  1
## 31732  1
## 31733  1
## 31734  1
## 31735  1
## 31736  1
## 31737  1
## 31738  1
## 31739  1
## 31740  1
## 31741  1
## 31742  1
## 31743  1
## 31744  1
## 31745  1
## 31746  1
## 31747  1
## 31748  1
## 31749  1
## 31750  1
## 31751  1
## 31752  1
## 31753  1
## 31754  1
## 31755  1
## 31756  1
## 31757  1
## 31758  1
## 31759  1
## 31760  1
## 31761  1
## 31762  1
## 31763  1
## 31764  1
## 31765  1
## 31766  1
## 31767  1
## 31768  1
## 31769  1
## 31770  1
## 31771  1
## 31772  1
## 31773  1
## 31774  1
## 31775  1
## 31776  1
## 31777  1
## 31778  1
## 31779  1
## 31780  1
## 31781  1
## 31782  1
## 31783  1
## 31784  1
## 31785  1
## 31786  1
## 31787  1
## 31788  1
## 31789  1
## 31790  1
## 31791  1
## 31792  1
## 31793  1
## 31794  1
## 31795  1
## 31796  1
## 31797  1
## 31798  1
## 31799  1
## 31800  1
## 31801  1
## 31802  1
## 31803  1
## 31804  1
## 31805  1
## 31806  1
## 31807  1
## 31808  1
## 31809  1
## 31810  1
## 31811  1
## 31812  1
## 31813  1
## 31814  1
## 31815  1
## 31816  1
## 31817  1
## 31818  1
## 31819  1
## 31820  1
## 31821  1
## 31822  1
## 31823  1
## 31824  1
## 31825  1
## 31826  1
## 31827  1
## 31828  1
## 31829  1
## 31830  1
## 31831  1
## 31832  1
## 31833  1
## 31834  1
## 31835  1
## 31836  1
## 31837  1
## 31838  1
## 31839  1
## 31840  1
## 31841  1
## 31842  1
## 31843  1
## 31844  1
## 31845  1
## 31846  1
## 31847  1
## 31848  1
## 31849  1
## 31850  1
## 31851  1
## 31852  1
## 31853  1
## 31854  1
## 31855  1
## 31856  1
## 31857  1
## 31858  1
## 31859  1
## 31860  1
## 31861  1
## 31862  1
## 31863  1
## 31864  1
## 31865  1
## 31866  1
## 31867  1
## 31868  1
## 31869  1
## 31870  1
## 31871  1
## 31872  1
## 31873  1
## 31874  1
## 31875  1
## 31876  1
## 31877  1
## 31878  1
## 31879  1
## 31880  1
## 31881  1
## 31882  1
## 31883  1
## 31884  1
## 31885  1
## 31886  1
## 31887  1
## 31888  1
## 31889  1
## 31890  1
## 31891  1
## 31892  1
## 31893  1
## 31894  1
## 31895  1
## 31896  1
## 31897  1
## 31898  1
## 31899  1
## 31900  1
## 31901  1
## 31902  1
## 31903  1
## 31904  1
## 31905  1
## 31906  1
## 31907  1
## 31908  1
## 31909  1
## 31910  1
## 31911  1
## 31912  1
## 31913  1
## 31914  1
## 31915  1
## 31916  1
## 31917  1
## 31918  1
## 31919  1
## 31920  1
## 31921  1
## 31922  1
## 31923  1
## 31924  1
## 31925  1
## 31926  1
## 31927  1
## 31928  1
## 31929  1
## 31930  1
## 31931  1
## 31932  1
## 31933  1
## 31934  1
## 31935  1
## 31936  1
## 31937  1
## 31938  1
## 31939  1
## 31940  1
## 31941  1
## 31942  1
## 31943  1
## 31944  1
## 31945  1
## 31946  1
## 31947  1
## 31948  1
## 31949  1
## 31950  1
## 31951  1
## 31952  1
## 31953  1
## 31954  1
## 31955  1
## 31956  1
## 31957  1
## 31958  1
## 31959  1
## 31960  1
## 31961  1
## 31962  1
## 31963  1
## 31964  1
## 31965  1
## 31966  1
## 31967  1
## 31968  1
## 31969  1
## 31970  1
## 31971  1
## 31972  1
## 31973  1
## 31974  1
## 31975  1
## 31976  1
## 31977  1
## 31978  1
## 31979  1
## 31980  1
## 31981  1
## 31982  1
## 31983  1
## 31984  1
## 31985  1
## 31986  1
## 31987  1
## 31988  1
## 31989  1
## 31990  1
## 31991  1
## 31992  1
## 31993  1
## 31994  1
## 31995  1
## 31996  1
## 31997  1
## 31998  1
## 31999  1
## 32000  1
## 32001  1
## 32002  1
## 32003  1
## 32004  1
## 32005  1
## 32006  1
## 32007  1
## 32008  1
## 32009  1
## 32010  1
## 32011  1
## 32012  1
## 32013  1
## 32014  1
## 32015  1
## 32016  1
## 32017  1
## 32018  1
## 32019  1
## 32020  1
## 32021  1
## 32022  1
## 32023  1
## 32024  1
## 32025  1
## 32026  1
## 32027  1
## 32028  1
## 32029  1
## 32030  1
## 32031  1
## 32032  1
## 32033  1
## 32034  1
## 32035  1
## 32036  1
## 32037  1
## 32038  1
## 32039  1
## 32040  1
## 32041  1
## 32042  1
## 32043  1
## 32044  1
## 32045  1
## 32046  1
## 32047  1
## 32048  1
## 32049  1
## 32050  1
## 32051  1
## 32052  1
## 32053  1
## 32054  1
## 32055  1
## 32056  1
## 32057  1
## 32058  1
## 32059  1
## 32060  1
## 32061  1
## 32062  1
## 32063  1
## 32064  1
## 32065  1
## 32066  1
## 32067  1
## 32068  1
## 32069  1
## 32070  1
## 32071  1
## 32072  1
## 32073  1
## 32074  1
## 32075  1
## 32076  1
## 32077  1
## 32078  1
## 32079  1
## 32080  1
## 32081  1
## 32082  1
## 32083  1
## 32084  1
## 32085  1
## 32086  1
## 32087  1
## 32088  1
## 32089  1
## 32090  1
## 32091  1
## 32092  1
## 32093  1
## 32094  1
## 32095  1
## 32096  1
## 32097  1
## 32098  1
## 32099  1
## 32100  1
## 32101  1
## 32102  1
## 32103  1
## 32104  1
## 32105  1
## 32106  1
## 32107  1
## 32108  1
## 32109  1
## 32110  1
## 32111  1
## 32112  1
## 32113  1
## 32114  1
## 32115  1
## 32116  1
## 32117  1
## 32118  1
## 32119  1
## 32120  1
## 32121  1
## 32122  1
## 32123  1
## 32124  1
## 32125  1
## 32126  1
## 32127  1
## 32128  1
## 32129  1
## 32130  1
## 32131  1
## 32132  1
## 32133  1
## 32134  1
## 32135  1
## 32136  1
## 32137  1
## 32138  1
## 32139  1
## 32140  1
## 32141  1
## 32142  1
## 32143  1
## 32144  1
## 32145  1
## 32146  1
## 32147  1
## 32148  1
## 32149  1
## 32150  1
## 32151  1
## 32152  1
## 32153  1
## 32154  1
## 32155  1
## 32156  1
## 32157  1
## 32158  1
## 32159  1
## 32160  1
## 32161  1
## 32162  1
## 32163  1
## 32164  1
## 32165  1
## 32166  1
## 32167  1
## 32168  1
## 32169  1
## 32170  1
## 32171  1
## 32172  1
## 32173  1
## 32174  1
## 32175  1
## 32176  1
## 32177  1
## 32178  1
## 32179  1
## 32180  1
## 32181  1
## 32182  1
## 32183  1
## 32184  1
## 32185  1
## 32186  1
## 32187  1
## 32188  1
## 32189  1
## 32190  1
## 32191  1
## 32192  1
## 32193  1
## 32194  1
## 32195  1
## 32196  1
## 32197  1
## 32198  1
## 32199  1
## 32200  1
## 32201  1
## 32202  1
## 32203  1
## 32204  1
## 32205  1
## 32206  1
## 32207  1
## 32208  1
## 32209  1
## 32210  1
## 32211  1
## 32212  1
## 32213  1
## 32214  1
## 32215  1
## 32216  1
## 32217  1
## 32218  1
## 32219  1
## 32220  1
## 32221  1
## 32222  1
## 32223  1
## 32224  1
## 32225  1
## 32226  1
## 32227  1
## 32228  1
## 32229  1
## 32230  1
## 32231  1
## 32232  1
## 32233  1
## 32234  1
## 32235  1
## 32236  1
## 32237  1
## 32238  1
## 32239  1
## 32240  1
## 32241  1
## 32242  1
## 32243  1
## 32244  1
## 32245  1
## 32246  1
## 32247  1
## 32248  1
## 32249  1
## 32250  1
## 32251  1
## 32252  1
## 32253  1
## 32254  1
## 32255  1
## 32256  1
## 32257  1
## 32258  1
## 32259  1
## 32260  1
## 32261  1
## 32262  1
## 32263  1
## 32264  1
## 32265  1
## 32266  1
## 32267  1
## 32268  1
## 32269  1
## 32270  1
## 32271  1
## 32272  1
## 32273  1
## 32274  1
## 32275  1
## 32276  1
## 32277  1
## 32278  1
## 32279  1
## 32280  1
## 32281  1
## 32282  1
## 32283  1
## 32284  1
## 32285  1
## 32286  1
## 32287  1
## 32288  1
## 32289  1
## 32290  1
## 32291  1
## 32292  1
## 32293  1
## 32294  1
## 32295  1
## 32296  1
## 32297  1
## 32298  1
## 32299  1
## 32300  1
## 32301  1
## 32302  1
## 32303  1
## 32304  1
## 32305  1
## 32306  1
## 32307  1
## 32308  1
## 32309  1
## 32310  1
## 32311  1
## 32312  1
## 32313  1
## 32314  1
## 32315  1
## 32316  1
## 32317  1
## 32318  1
## 32319  1
## 32320  1
## 32321  1
## 32322  1
## 32323  1
## 32324  1
## 32325  1
## 32326  1
## 32327  1
## 32328  1
## 32329  1
## 32330  1
## 32331  1
## 32332  1
## 32333  1
## 32334  1
## 32335  1
## 32336  1
## 32337  1
## 32338  1
## 32339  1
## 32340  1
## 32341  1
## 32342  1
## 32343  1
## 32344  1
## 32345  1
## 32346  1
## 32347  1
## 32348  1
## 32349  1
## 32350  1
## 32351  1
## 32352  1
## 32353  1
## 32354  1
## 32355  1
## 32356  1
## 32357  1
## 32358  1
## 32359  1
## 32360  1
## 32361  1
## 32362  1
## 32363  1
## 32364  1
## 32365  1
## 32366  1
## 32367  1
## 32368  1
## 32369  1
## 32370  1
## 32371  1
## 32372  1
## 32373  1
## 32374  1
## 32375  1
## 32376  1
## 32377  1
## 32378  1
## 32379  1
## 32380  1
## 32381  1
## 32382  1
## 32383  1
## 32384  1
## 32385  1
## 32386  1
## 32387  1
## 32388  1
## 32389  1
## 32390  1
## 32391  1
## 32392  1
## 32393  1
## 32394  1
## 32395  1
## 32396  1
## 32397  1
## 32398  1
## 32399  1
## 32400  1
## 32401  1
## 32402  1
## 32403  1
## 32404  1
## 32405  1
## 32406  1
## 32407  1
## 32408  1
## 32409  1
## 32410  1
## 32411  1
## 32412  1
## 32413  1
## 32414  1
## 32415  1
## 32416  1
## 32417  1
## 32418  1
## 32419  1
## 32420  1
## 32421  1
## 32422  1
## 32423  1
## 32424  1
## 32425  1
## 32426  1
## 32427  1
## 32428  1
## 32429  1
## 32430  1
## 32431  1
## 32432  1
## 32433  1
## 32434  1
## 32435  1
## 32436  1
## 32437  1
## 32438  1
## 32439  1
## 32440  1
## 32441  1
## 32442  1
## 32443  1
## 32444  1
## 32445  1
## 32446  1
## 32447  1
## 32448  1
## 32449  1
## 32450  1
## 32451  1
## 32452  1
## 32453  1
## 32454  1
## 32455  1
## 32456  1
## 32457  1
## 32458  1
## 32459  1
## 32460  1
## 32461  1
## 32462  1
## 32463  1
## 32464  1
## 32465  1
## 32466  1
## 32467  1
## 32468  1
## 32469  1
## 32470  1
## 32471  1
## 32472  1
## 32473  1
## 32474  1
## 32475  1
## 32476  1
## 32477  1
## 32478  1
## 32479  1
## 32480  1
## 32481  1
## 32482  1
## 32483  1
## 32484  1
## 32485  1
## 32486  1
## 32487  1
## 32488  1
## 32489  1
## 32490  1
## 32491  1
## 32492  1
## 32493  1
## 32494  1
## 32495  1
## 32496  1
## 32497  1
## 32498  1
## 32499  1
## 32500  1
## 32501  1
## 32502  1
## 32503  1
## 32504  1
## 32505  1
## 32506  1
## 32507  1
## 32508  1
## 32509  1
## 32510  1
## 32511  1
## 32512  1
## 32513  1
## 32514  1
## 32515  1
## 32516  1
## 32517  1
## 32518  1
## 32519  1
## 32520  1
## 32521  1
## 32522  1
## 32523  1
## 32524  1
## 32525  1
## 32526  1
## 32527  1
## 32528  1
## 32529  1
## 32530  1
## 32531  1
## 32532  1
## 32533  1
## 32534  1
## 32535  1
## 32536  1
## 32537  1
## 32538  1
## 32539  1
## 32540  1
## 32541  1
## 32542  1
## 32543  1
## 32544  1
## 32545  1
## 32546  1
## 32547  1
## 32548  1
## 32549  1
## 32550  1
## 32551  1
## 32552  1
## 32553  1
## 32554  1
## 32555  1
## 32556  1
## 32557  1
## 32558  1
## 32559  1
## 32560  1
## 32561  1
## 32562  1
## 32563  1
## 32564  1
## 32565  1
## 32566  1
## 32567  1
## 32568  1
## 32569  1
## 32570  1
## 32571  1
## 32572  1
## 32573  1
## 32574  1
## 32575  1
## 32576  1
## 32577  1
## 32578  1
## 32579  1
## 32580  1
## 32581  1
## 32582  1
## 32583  1
## 32584  1
## 32585  1
## 32586  1
## 32587  1
## 32588  1
## 32589  1
## 32590  1
## 32591  1
## 32592  1
## 32593  1
## 32594  1
## 32595  1
## 32596  1
## 32597  1
## 32598  1
## 32599  1
## 32600  1
## 32601  1
## 32602  1
## 32603  1
## 32604  1
## 32605  1
## 32606  1
## 32607  1
## 32608  1
## 32609  1
## 32610  1
## 32611  1
## 32612  1
## 32613  1
## 32614  1
## 32615  1
## 32616  1
## 32617  1
## 32618  1
## 32619  1
## 32620  1
## 32621  1
## 32622  1
## 32623  1
## 32624  1
## 32625  1
## 32626  1
## 32627  1
## 32628  1
## 32629  1
## 32630  1
## 32631  1
## 32632  1
## 32633  1
## 32634  1
## 32635  1
## 32636  1
## 32637  1
## 32638  1
## 32639  1
## 32640  1
## 32641  1
## 32642  1
## 32643  1
## 32644  1
## 32645  1
## 32646  1
## 32647  1
## 32648  1
## 32649  1
## 32650  1
## 32651  1
## 32652  1
## 32653  1
## 32654  1
## 32655  1
## 32656  1
## 32657  1
## 32658  1
## 32659  1
## 32660  1
## 32661  1
## 32662  1
## 32663  1
## 32664  1
## 32665  1
## 32666  1
## 32667  1
## 32668  1
## 32669  1
## 32670  1
## 32671  1
## 32672  1
## 32673  1
## 32674  1
## 32675  1
## 32676  1
## 32677  1
## 32678  1
## 32679  1
## 32680  1
## 32681  1
## 32682  1
## 32683  1
## 32684  1
## 32685  1
## 32686  1
## 32687  1
## 32688  1
## 32689  1
## 32690  1
## 32691  1
## 32692  1
## 32693  1
## 32694  1
## 32695  1
## 32696  1
## 32697  1
## 32698  1
## 32699  1
## 32700  1
## 32701  1
## 32702  1
## 32703  1
## 32704  1
## 32705  1
## 32706  1
## 32707  1
## 32708  1
## 32709  1
## 32710  1
## 32711  1
## 32712  1
## 32713  1
## 32714  1
## 32715  1
## 32716  1
## 32717  1
## 32718  1
## 32719  1
## 32720  1
## 32721  1
## 32722  1
## 32723  1
## 32724  1
## 32725  1
## 32726  1
## 32727  1
## 32728  1
## 32729  1
## 32730  1
## 32731  1
## 32732  1
## 32733  1
## 32734  1
## 32735  1
## 32736  1
## 32737  1
## 32738  1
## 32739  1
## 32740  1
## 32741  1
## 32742  1
## 32743  1
## 32744  1
## 32745  1
## 32746  1
## 32747  1
## 32748  1
## 32749  1
## 32750  1
## 32751  1
## 32752  1
## 32753  1
## 32754  1
## 32755  1
## 32756  1
## 32757  1
## 32758  1
## 32759  1
## 32760  1
## 32761  1
## 32762  1
## 32763  1
## 32764  1
## 32765  1
## 32766  1
## 32767  1
## 32768  1
## 32769  1
## 32770  1
## 32771  1
## 32772  1
## 32773  1
## 32774  1
## 32775  1
## 32776  1
## 32777  1
## 32778  1
## 32779  1
## 32780  1
## 32781  1
## 32782  1
## 32783  1
## 32784  1
## 32785  1
## 32786  1
## 32787  1
## 32788  1
## 32789  1
## 32790  1
## 32791  1
## 32792  1
## 32793  1
## 32794  1
## 32795  1
## 32796  1
## 32797  1
## 32798  1
## 32799  1
## 32800  1
## 32801  1
## 32802  1
## 32803  1
## 32804  1
## 32805  1
## 32806  1
## 32807  1
## 32808  1
## 32809  1
## 32810  1
## 32811  1
## 32812  1
## 32813  1
## 32814  1
## 32815  1
## 32816  1
## 32817  1
## 32818  1
## 32819  1
## 32820  1
## 32821  1
## 32822  1
## 32823  1
## 32824  1
## 32825  1
## 32826  1
## 32827  1
## 32828  1
## 32829  1
## 32830  1
## 32831  1
## 32832  1
## 32833  1
## 32834  1
## 32835  1
## 32836  1
## 32837  1
## 32838  1
## 32839  1
## 32840  1
## 32841  1
## 32842  1
## 32843  1
## 32844  1
## 32845  1
## 32846  1
## 32847  1
## 32848  1
## 32849  1
## 32850  1
## 32851  1
## 32852  1
## 32853  1
## 32854  1
## 32855  1
## 32856  1
## 32857  1
## 32858  1
## 32859  1
## 32860  1
## 32861  1
## 32862  1
## 32863  1
## 32864  1
## 32865  1
## 32866  1
## 32867  1
## 32868  1
## 32869  1
## 32870  1
## 32871  1
## 32872  1
## 32873  1
## 32874  1
## 32875  1
## 32876  1
## 32877  1
## 32878  1
## 32879  1
## 32880  1
## 32881  1
## 32882  1
## 32883  1
## 32884  1
## 32885  1
## 32886  1
## 32887  1
## 32888  1
## 32889  1
## 32890  1
## 32891  1
## 32892  1
## 32893  1
## 32894  1
## 32895  1
## 32896  1
## 32897  1
## 32898  1
## 32899  1
## 32900  1
## 32901  1
## 32902  1
## 32903  1
## 32904  1
## 32905  1
## 32906  1
## 32907  1
## 32908  1
## 32909  1
## 32910  1
## 32911  1
## 32912  1
## 32913  1
## 32914  1
## 32915  1
## 32916  1
## 32917  1
## 32918  1
## 32919  1
## 32920  1
## 32921  1
## 32922  1
## 32923  1
## 32924  1
## 32925  1
## 32926  1
## 32927  1
## 32928  1
## 32929  1
## 32930  1
## 32931  1
## 32932  1
## 32933  1
## 32934  1
## 32935  1
## 32936  1
## 32937  1
## 32938  1
## 32939  1
## 32940  1
## 32941  1
## 32942  1
## 32943  1
## 32944  1
## 32945  1
## 32946  1
## 32947  1
## 32948  1
## 32949  1
## 32950  1
## 32951  1
## 32952  1
## 32953  1
## 32954  1
## 32955  1
## 32956  1
## 32957  1
## 32958  1
## 32959  1
## 32960  1
## 32961  1
## 32962  1
## 32963  1
## 32964  1
## 32965  1
## 32966  1
## 32967  1
## 32968  1
## 32969  1
## 32970  1
## 32971  1
## 32972  1
## 32973  1
## 32974  1
## 32975  1
## 32976  1
## 32977  1
## 32978  1
## 32979  1
## 32980  1
## 32981  1
## 32982  1
## 32983  1
## 32984  1
## 32985  1
## 32986  1
## 32987  1
## 32988  1
## 32989  1
## 32990  1
## 32991  1
## 32992  1
## 32993  1
## 32994  1
## 32995  1
## 32996  1
## 32997  1
## 32998  1
## 32999  1
## 33000  1
## 33001  1
## 33002  1
## 33003  1
## 33004  1
## 33005  1
## 33006  1
## 33007  1
## 33008  1
## 33009  1
## 33010  1
## 33011  1
## 33012  1
## 33013  1
## 33014  1
## 33015  1
## 33016  1
## 33017  1
## 33018  1
## 33019  1
## 33020  1
## 33021  1
## 33022  1
## 33023  1
## 33024  1
## 33025  1
## 33026  1
## 33027  1
## 33028  1
## 33029  1
## 33030  1
## 33031  1
## 33032  1
## 33033  1
## 33034  1
## 33035  1
## 33036  1
## 33037  1
## 33038  1
## 33039  1
## 33040  1
## 33041  1
## 33042  1
## 33043  1
## 33044  1
## 33045  1
## 33046  1
## 33047  1
## 33048  1
## 33049  1
## 33050  1
## 33051  1
## 33052  1
## 33053  1
## 33054  1
## 33055  1
## 33056  1
## 33057  1
## 33058  1
## 33059  1
## 33060  1
## 33061  1
## 33062  1
## 33063  1
## 33064  1
## 33065  1
## 33066  1
## 33067  1
## 33068  1
## 33069  1
## 33070  1
## 33071  1
## 33072  1
## 33073  1
## 33074  1
## 33075  1
## 33076  1
## 33077  1
## 33078  1
## 33079  1
## 33080  1
## 33081  1
## 33082  1
## 33083  1
## 33084  1
## 33085  1
## 33086  1
## 33087  1
## 33088  1
## 33089  1
## 33090  1
## 33091  1
## 33092  1
## 33093  1
## 33094  1
## 33095  1
## 33096  1
## 33097  1
## 33098  1
## 33099  1
## 33100  1
## 33101  1
## 33102  1
## 33103  1
## 33104  1
## 33105  1
## 33106  1
## 33107  1
## 33108  1
## 33109  1
## 33110  1
## 33111  1
## 33112  1
## 33113  1
## 33114  1
## 33115  1
## 33116  1
## 33117  1
## 33118  1
## 33119  1
## 33120  1
## 33121  1
## 33122  1
## 33123  1
## 33124  1
## 33125  1
## 33126  1
## 33127  1
## 33128  1
## 33129  1
## 33130  1
## 33131  1
## 33132  1
## 33133  1
## 33134  1
## 33135  1
## 33136  1
## 33137  1
## 33138  1
## 33139  1
## 33140  1
## 33141  1
## 33142  1
## 33143  1
## 33144  1
## 33145  1
## 33146  1
## 33147  1
## 33148  1
## 33149  1
## 33150  1
## 33151  1
## 33152  1
## 33153  1
## 33154  1
## 33155  1
## 33156  1
## 33157  1
## 33158  1
## 33159  1
## 33160  1
## 33161  1
## 33162  1
## 33163  1
## 33164  1
## 33165  1
## 33166  1
## 33167  1
## 33168  1
## 33169  1
## 33170  1
## 33171  1
## 33172  1
## 33173  1
## 33174  1
## 33175  1
## 33176  1
## 33177  1
## 33178  1
## 33179  1
## 33180  1
## 33181  1
## 33182  1
## 33183  1
## 33184  1
## 33185  1
## 33186  1
## 33187  1
## 33188  1
## 33189  1
## 33190  1
## 33191  1
## 33192  1
## 33193  1
## 33194  1
## 33195  1
## 33196  1
## 33197  1
## 33198  1
## 33199  1
## 33200  1
## 33201  1
## 33202  1
## 33203  1
## 33204  1
## 33205  1
## 33206  1
## 33207  1
## 33208  1
## 33209  1
## 33210  1
## 33211  1
## 33212  1
## 33213  1
## 33214  1
## 33215  1
## 33216  1
## 33217  1
## 33218  1
## 33219  1
## 33220  1
## 33221  1
## 33222  1
## 33223  1
## 33224  1
## 33225  1
## 33226  1
## 33227  1
## 33228  1
## 33229  1
## 33230  1
## 33231  1
## 33232  1
## 33233  1
## 33234  1
## 33235  1
## 33236  1
## 33237  1
## 33238  1
## 33239  1
## 33240  1
## 33241  1
## 33242  1
## 33243  1
## 33244  1
## 33245  1
## 33246  1
## 33247  1
## 33248  1
## 33249  1
## 33250  1
## 33251  1
## 33252  1
## 33253  1
## 33254  1
## 33255  1
## 33256  1
## 33257  1
## 33258  1
## 33259  1
## 33260  1
## 33261  1
## 33262  1
## 33263  1
## 33264  1
## 33265  1
## 33266  1
## 33267  1
## 33268  1
## 33269  1
## 33270  1
## 33271  1
## 33272  1
## 33273  1
## 33274  1
## 33275  1
## 33276  1
## 33277  1
## 33278  1
## 33279  1
## 33280  1
## 33281  1
## 33282  1
## 33283  1
## 33284  1
## 33285  1
## 33286  1
## 33287  1
## 33288  1
## 33289  1
## 33290  1
## 33291  1
## 33292  1
## 33293  1
## 33294  1
## 33295  1
## 33296  1
## 33297  1
## 33298  1
## 33299  1
## 33300  1
## 33301  1
## 33302  1
## 33303  1
## 33304  1
## 33305  1
## 33306  1
## 33307  1
## 33308  1
## 33309  1
## 33310  1
## 33311  1
## 33312  1
## 33313  1
## 33314  1
## 33315  1
## 33316  1
## 33317  1
## 33318  1
## 33319  1
## 33320  1
## 33321  1
## 33322  1
## 33323  1
## 33324  1
## 33325  1
## 33326  1
## 33327  1
## 33328  1
## 33329  1
## 33330  1
## 33331  1
## 33332  1
## 33333  1
## 33334  1
## 33335  1
## 33336  1
## 33337  1
## 33338  1
## 33339  1
## 33340  1
## 33341  1
## 33342  1
## 33343  1
## 33344  1
## 33345  1
## 33346  1
## 33347  1
## 33348  1
## 33349  1
## 33350  1
## 33351  1
## 33352  1
## 33353  1
## 33354  1
## 33355  1
## 33356  1
## 33357  1
## 33358  1
## 33359  1
## 33360  1
## 33361  1
## 33362  1
## 33363  1
## 33364  1
## 33365  1
## 33366  1
## 33367  1
## 33368  1
## 33369  1
## 33370  1
## 33371  1
## 33372  1
## 33373  1
## 33374  1
## 33375  1
## 33376  1
## 33377  1
## 33378  1
## 33379  1
## 33380  1
## 33381  1
## 33382  1
## 33383  1
## 33384  1
## 33385  1
## 33386  1
## 33387  1
## 33388  1
## 33389  1
## 33390  1
## 33391  1
## 33392  1
## 33393  1
## 33394  1
## 33395  1
## 33396  1
## 33397  1
## 33398  1
## 33399  1
## 33400  1
## 33401  1
## 33402  1
## 33403  1
## 33404  1
## 33405  1
## 33406  1
## 33407  1
## 33408  1
## 33409  1
## 33410  1
## 33411  1
## 33412  1
## 33413  1
## 33414  1
## 33415  1
## 33416  1
## 33417  1
## 33418  1
## 33419  1
## 33420  1
## 33421  1
## 33422  1
## 33423  1
## 33424  1
## 33425  1
## 33426  1
## 33427  1
## 33428  1
## 33429  1
## 33430  1
## 33431  1
## 33432  1
## 33433  1
## 33434  1
## 33435  1
## 33436  1
## 33437  1
## 33438  1
## 33439  1
## 33440  1
## 33441  1
## 33442  1
## 33443  1
## 33444  1
## 33445  1
## 33446  1
## 33447  1
## 33448  1
## 33449  1
## 33450  1
## 33451  1
## 33452  1
## 33453  1
## 33454  1
## 33455  1
## 33456  1
## 33457  1
## 33458  1
## 33459  1
## 33460  1
## 33461  1
## 33462  1
## 33463  1
## 33464  1
## 33465  1
## 33466  1
## 33467  1
## 33468  1
## 33469  1
## 33470  1
## 33471  1
## 33472  1
## 33473  1
## 33474  1
## 33475  1
## 33476  1
## 33477  1
## 33478  1
## 33479  1
## 33480  1
## 33481  1
## 33482  1
## 33483  1
## 33484  1
## 33485  1
## 33486  1
## 33487  1
## 33488  1
## 33489  1
## 33490  1
## 33491  1
## 33492  1
## 33493  1
## 33494  1
## 33495  1
## 33496  1
## 33497  1
## 33498  1
## 33499  1
## 33500  1
## 33501  1
## 33502  1
## 33503  1
## 33504  1
## 33505  1
## 33506  1
## 33507  1
## 33508  1
## 33509  1
## 33510  1
## 33511  1
## 33512  1
## 33513  1
## 33514  1
## 33515  1
## 33516  1
## 33517  1
## 33518  1
## 33519  1
## 33520  1
## 33521  1
## 33522  1
## 33523  1
## 33524  1
## 33525  1
## 33526  1
## 33527  1
## 33528  1
## 33529  1
## 33530  1
## 33531  1
## 33532  1
## 33533  1
## 33534  1
## 33535  1
## 33536  1
## 33537  1
## 33538  1
## 33539  1
## 33540  1
## 33541  1
## 33542  1
## 33543  1
## 33544  1
## 33545  1
## 33546  1
## 33547  1
## 33548  1
## 33549  1
## 33550  1
## 33551  1
## 33552  1
## 33553  1
## 33554  1
## 33555  1
## 33556  1
## 33557  1
## 33558  1
## 33559  1
## 33560  1
## 33561  1
## 33562  1
## 33563  1
## 33564  1
## 33565  1
## 33566  1
## 33567  1
## 33568  1
## 33569  1
## 33570  1
## 33571  1
## 33572  1
## 33573  1
## 33574  1
## 33575  1
## 33576  1
## 33577  1
## 33578  1
## 33579  1
## 33580  1
## 33581  1
## 33582  1
## 33583  1
## 33584  1
## 33585  1
## 33586  1
## 33587  1
## 33588  1
## 33589  1
## 33590  1
## 33591  1
## 33592  1
## 33593  1
## 33594  1
## 33595  1
## 33596  1
## 33597  1
## 33598  1
## 33599  1
## 33600  1
## 33601  1
## 33602  1
## 33603  1
## 33604  1
## 33605  1
## 33606  1
## 33607  1
## 33608  1
## 33609  1
## 33610  1
## 33611  1
## 33612  1
## 33613  1
## 33614  1
## 33615  1
## 33616  1
## 33617  1
## 33618  1
## 33619  1
## 33620  1
## 33621  1
## 33622  1
## 33623  1
## 33624  1
## 33625  1
## 33626  1
## 33627  1
## 33628  1
## 33629  1
## 33630  1
## 33631  1
## 33632  1
## 33633  1
## 33634  1
## 33635  1
## 33636  1
## 33637  1
## 33638  1
## 33639  1
## 33640  1
## 33641  1
## 33642  1
## 33643  1
## 33644  1
## 33645  1
## 33646  1
## 33647  1
## 33648  1
## 33649  1
## 33650  1
## 33651  1
## 33652  1
## 33653  1
## 33654  1
## 33655  1
## 33656  1
## 33657  1
## 33658  1
## 33659  1
## 33660  1
## 33661  1
## 33662  1
## 33663  1
## 33664  1
## 33665  1
## 33666  1
## 33667  1
## 33668  1
## 33669  1
## 33670  1
## 33671  1
## 33672  1
## 33673  1
## 33674  1
## 33675  1
## 33676  1
## 33677  1
## 33678  1
## 33679  1
## 33680  1
## 33681  1
## 33682  1
## 33683  1
## 33684  1
## 33685  1
## 33686  1
## 33687  1
## 33688  1
## 33689  1
## 33690  1
## 33691  1
## 33692  1
## 33693  1
## 33694  1
## 33695  1
## 33696  1
## 33697  1
## 33698  1
## 33699  1
## 33700  1
## 33701  1
## 33702  1
## 33703  1
## 33704  1
## 33705  1
## 33706  1
## 33707  1
## 33708  1
## 33709  1
## 33710  1
## 33711  1
## 33712  1
## 33713  1
## 33714  1
## 33715  1
## 33716  1
## 33717  1
## 33718  1
## 33719  1
## 33720  1
## 33721  1
## 33722  1
## 33723  1
## 33724  1
## 33725  1
## 33726  1
## 33727  1
## 33728  1
## 33729  1
## 33730  1
## 33731  1
## 33732  1
## 33733  1
## 33734  1
## 33735  1
## 33736  1
## 33737  1
## 33738  1
## 33739  1
## 33740  1
## 33741  1
## 33742  1
## 33743  1
## 33744  1
## 33745  1
## 33746  1
## 33747  1
## 33748  1
## 33749  1
## 33750  1
## 33751  1
## 33752  1
## 33753  1
## 33754  1
## 33755  1
## 33756  1
## 33757  1
## 33758  1
## 33759  1
## 33760  1
## 33761  1
## 33762  1
## 33763  1
## 33764  1
## 33765  1
## 33766  1
## 33767  1
## 33768  1
## 33769  1
## 33770  1
## 33771  1
## 33772  1
## 33773  1
## 33774  1
## 33775  1
## 33776  1
## 33777  1
## 33778  1
## 33779  1
## 33780  1
## 33781  1
## 33782  1
## 33783  1
## 33784  1
## 33785  1
## 33786  1
## 33787  1
## 33788  1
## 33789  1
## 33790  1
## 33791  1
## 33792  1
## 33793  1
## 33794  1
## 33795  1
## 33796  1
## 33797  1
## 33798  1
## 33799  1
## 33800  1
## 33801  1
## 33802  1
## 33803  1
## 33804  1
## 33805  1
## 33806  1
## 33807  1
## 33808  1
## 33809  1
## 33810  1
## 33811  1
## 33812  1
## 33813  1
## 33814  1
## 33815  1
## 33816  1
## 33817  1
## 33818  1
## 33819  1
## 33820  1
## 33821  1
## 33822  1
## 33823  1
## 33824  1
## 33825  1
## 33826  1
## 33827  1
## 33828  1
## 33829  1
## 33830  1
## 33831  1
## 33832  1
## 33833  1
## 33834  1
## 33835  1
## 33836  1
## 33837  1
## 33838  1
## 33839  1
## 33840  1
## 33841  1
## 33842  1
## 33843  1
## 33844  1
## 33845  1
## 33846  1
## 33847  1
## 33848  1
## 33849  1
## 33850  1
## 33851  1
## 33852  1
## 33853  1
## 33854  1
## 33855  1
## 33856  1
## 33857  1
## 33858  1
## 33859  1
## 33860  1
## 33861  1
## 33862  1
## 33863  1
## 33864  1
## 33865  1
## 33866  1
## 33867  1
## 33868  1
## 33869  1
## 33870  1
## 33871  1
## 33872  1
## 33873  1
## 33874  1
## 33875  1
## 33876  1
## 33877  1
## 33878  1
## 33879  1
## 33880  1
## 33881  1
## 33882  1
## 33883  1
## 33884  1
## 33885  1
## 33886  1
## 33887  1
## 33888  1
## 33889  1
## 33890  1
## 33891  1
## 33892  1
## 33893  1
## 33894  1
## 33895  1
## 33896  1
## 33897  1
## 33898  1
## 33899  1
## 33900  1
## 33901  1
## 33902  1
## 33903  1
## 33904  1
## 33905  1
## 33906  1
## 33907  1
## 33908  1
## 33909  1
## 33910  1
## 33911  1
## 33912  1
## 33913  1
## 33914  1
## 33915  1
## 33916  1
## 33917  1
## 33918  1
## 33919  1
## 33920  1
## 33921  1
## 33922  1
## 33923  1
## 33924  1
## 33925  1
## 33926  1
## 33927  1
## 33928  1
## 33929  1
## 33930  1
## 33931  1
## 33932  1
## 33933  1
## 33934  1
## 33935  1
## 33936  1
## 33937  1
## 33938  1
## 33939  1
## 33940  1
## 33941  1
## 33942  1
## 33943  1
## 33944  1
## 33945  1
## 33946  1
## 33947  1
## 33948  1
## 33949  1
## 33950  1
## 33951  1
## 33952  1
## 33953  1
## 33954  1
## 33955  1
## 33956  1
## 33957  1
## 33958  1
## 33959  1
## 33960  1
## 33961  1
## 33962  1
## 33963  1
## 33964  1
## 33965  1
## 33966  1
## 33967  1
## 33968  1
## 33969  1
## 33970  1
## 33971  1
## 33972  1
## 33973  1
## 33974  1
## 33975  1
## 33976  1
## 33977  1
## 33978  1
## 33979  1
## 33980  1
## 33981  1
## 33982  1
## 33983  1
## 33984  1
## 33985  1
## 33986  1
## 33987  1
## 33988  1
## 33989  1
## 33990  1
## 33991  1
## 33992  1
## 33993  1
## 33994  1
## 33995  1
## 33996  1
## 33997  1
## 33998  1
## 33999  1
## 34000  1
## 34001  1
## 34002  1
## 34003  1
## 34004  1
## 34005  1
## 34006  1
## 34007  1
## 34008  1
## 34009  1
## 34010  1
## 34011  1
## 34012  1
## 34013  1
## 34014  1
## 34015  1
## 34016  1
## 34017  1
## 34018  1
## 34019  1
## 34020  1
## 34021  1
## 34022  1
## 34023  1
## 34024  1
## 34025  1
## 34026  1
## 34027  1
## 34028  1
## 34029  1
## 34030  1
## 34031  1
## 34032  1
## 34033  1
## 34034  1
## 34035  1
## 34036  1
## 34037  1
## 34038  1
## 34039  1
## 34040  1
## 34041  1
## 34042  1
## 34043  1
## 34044  1
## 34045  1
## 34046  1
## 34047  1
## 34048  1
## 34049  1
## 34050  1
## 34051  1
## 34052  1
## 34053  1
## 34054  1
## 34055  1
## 34056  1
## 34057  1
## 34058  1
## 34059  1
## 34060  1
## 34061  1
## 34062  1
## 34063  1
## 34064  1
## 34065  1
## 34066  1
## 34067  1
## 34068  1
## 34069  1
## 34070  1
## 34071  1
## 34072  1
## 34073  1
## 34074  1
## 34075  1
## 34076  1
## 34077  1
## 34078  1
## 34079  1
## 34080  1
## 34081  1
## 34082  1
## 34083  1
## 34084  1
## 34085  1
## 34086  1
## 34087  1
## 34088  1
## 34089  1
## 34090  1
## 34091  1
## 34092  1
## 34093  1
## 34094  1
## 34095  1
## 34096  1
## 34097  1
## 34098  1
## 34099  1
## 34100  1
## 34101  1
## 34102  1
## 34103  1
## 34104  1
## 34105  1
## 34106  1
## 34107  1
## 34108  1
## 34109  1
## 34110  1
## 34111  1
## 34112  1
## 34113  1
## 34114  1
## 34115  1
## 34116  1
## 34117  1
## 34118  1
## 34119  1
## 34120  1
## 34121  1
## 34122  1
## 34123  1
## 34124  1
## 34125  1
## 34126  1
## 34127  1
## 34128  1
## 34129  1
## 34130  1
## 34131  1
## 34132  1
## 34133  1
## 34134  1
## 34135  1
## 34136  1
## 34137  1
## 34138  1
## 34139  1
## 34140  1
## 34141  1
## 34142  1
## 34143  1
## 34144  1
## 34145  1
## 34146  1
## 34147  1
## 34148  1
## 34149  1
## 34150  1
## 34151  1
## 34152  1
## 34153  1
## 34154  1
## 34155  1
## 34156  1
## 34157  1
## 34158  1
## 34159  1
## 34160  1
## 34161  1
## 34162  1
## 34163  1
## 34164  1
## 34165  1
## 34166  1
## 34167  1
## 34168  1
## 34169  1
## 34170  1
## 34171  1
## 34172  1
## 34173  1
## 34174  1
## 34175  1
## 34176  1
## 34177  1
## 34178  1
## 34179  1
## 34180  1
## 34181  1
## 34182  1
## 34183  1
## 34184  1
## 34185  1
## 34186  1
## 34187  1
## 34188  1
## 34189  1
## 34190  1
## 34191  1
## 34192  1
## 34193  1
## 34194  1
## 34195  1
## 34196  1
## 34197  1
## 34198  1
## 34199  1
## 34200  1
## 34201  1
## 34202  1
## 34203  1
## 34204  1
## 34205  1
## 34206  1
## 34207  1
## 34208  1
## 34209  1
## 34210  1
## 34211  1
## 34212  1
## 34213  1
## 34214  1
## 34215  1
## 34216  1
## 34217  1
## 34218  1
## 34219  1
## 34220  1
## 34221  1
## 34222  1
## 34223  1
## 34224  1
## 34225  1
## 34226  1
## 34227  1
## 34228  1
## 34229  1
## 34230  1
## 34231  1
## 34232  1
## 34233  1
## 34234  1
## 34235  1
## 34236  1
## 34237  1
## 34238  1
## 34239  1
## 34240  1
## 34241  1
## 34242  1
## 34243  1
## 34244  1
## 34245  1
## 34246  1
## 34247  1
## 34248  1
## 34249  1
## 34250  1
## 34251  1
## 34252  1
## 34253  1
## 34254  1
## 34255  1
## 34256  1
## 34257  1
## 34258  1
## 34259  1
## 34260  1
## 34261  1
## 34262  1
## 34263  1
## 34264  1
## 34265  1
## 34266  1
## 34267  1
## 34268  1
## 34269  1
## 34270  1
## 34271  1
## 34272  1
## 34273  1
## 34274  1
## 34275  1
## 34276  1
## 34277  1
## 34278  1
## 34279  1
## 34280  1
## 34281  1
## 34282  1
## 34283  1
## 34284  1
## 34285  1
## 34286  1
## 34287  1
## 34288  1
## 34289  1
## 34290  1
## 34291  1
## 34292  1
## 34293  1
## 34294  1
## 34295  1
## 34296  1
## 34297  1
## 34298  1
## 34299  1
## 34300  1
## 34301  1
## 34302  1
## 34303  1
## 34304  1
## 34305  1
## 34306  1
## 34307  1
## 34308  1
## 34309  1
## 34310  1
## 34311  1
## 34312  1
## 34313  1
## 34314  1
## 34315  1
## 34316  1
## 34317  1
## 34318  1
## 34319  1
## 34320  1
## 34321  1
## 34322  1
## 34323  1
## 34324  1
## 34325  1
## 34326  1
## 34327  1
## 34328  1
## 34329  1
## 34330  1
## 34331  1
## 34332  1
## 34333  1
## 34334  1
## 34335  1
## 34336  1
## 34337  1
## 34338  1
## 34339  1
## 34340  1
## 34341  1
## 34342  1
## 34343  1
## 34344  1
## 34345  1
## 34346  1
## 34347  1
## 34348  1
## 34349  1
## 34350  1
## 34351  1
## 34352  1
## 34353  1
## 34354  1
## 34355  1
## 34356  1
## 34357  1
## 34358  1
## 34359  1
## 34360  1
## 34361  1
## 34362  1
## 34363  1
## 34364  1
## 34365  1
## 34366  1
## 34367  1
## 34368  1
## 34369  1
## 34370  1
## 34371  1
## 34372  1
## 34373  1
## 34374  1
## 34375  1
## 34376  1
## 34377  1
## 34378  1
## 34379  1
## 34380  1
## 34381  1
## 34382  1
## 34383  1
## 34384  1
## 34385  1
## 34386  1
## 34387  1
## 34388  1
## 34389  1
## 34390  1
## 34391  1
## 34392  1
## 34393  1
## 34394  1
## 34395  1
## 34396  1
## 34397  1
## 34398  1
## 34399  1
## 34400  1
## 34401  1
## 34402  1
## 34403  1
## 34404  1
## 34405  1
## 34406  1
## 34407  1
## 34408  1
## 34409  1
## 34410  1
## 34411  1
## 34412  1
## 34413  1
## 34414  1
## 34415  1
## 34416  1
## 34417  1
## 34418  1
## 34419  1
## 34420  1
## 34421  1
## 34422  1
## 34423  1
## 34424  1
## 34425  1
## 34426  1
## 34427  1
## 34428  1
## 34429  1
## 34430  1
## 34431  1
## 34432  1
## 34433  1
## 34434  1
## 34435  1
## 34436  1
## 34437  1
## 34438  1
## 34439  1
## 34440  1
## 34441  1
## 34442  1
## 34443  1
## 34444  1
## 34445  1
## 34446  1
## 34447  1
## 34448  1
## 34449  1
## 34450  1
## 34451  1
## 34452  1
## 34453  1
## 34454  1
## 34455  1
## 34456  1
## 34457  1
## 34458  1
## 34459  1
## 34460  1
## 34461  1
## 34462  1
## 34463  1
## 34464  1
## 34465  1
## 34466  1
## 34467  1
## 34468  1
## 34469  1
## 34470  1
## 34471  1
## 34472  1
## 34473  1
## 34474  1
## 34475  1
## 34476  1
## 34477  1
## 34478  1
## 34479  1
## 34480  1
## 34481  1
## 34482  1
## 34483  1
## 34484  1
## 34485  1
## 34486  1
## 34487  1
## 34488  1
## 34489  1
## 34490  1
## 34491  1
## 34492  1
## 34493  1
## 34494  1
## 34495  1
## 34496  1
## 34497  1
## 34498  1
## 34499  1
## 34500  1
## 34501  1
## 34502  1
## 34503  1
## 34504  1
## 34505  1
## 34506  1
## 34507  1
## 34508  1
## 34509  1
## 34510  1
## 34511  1
## 34512  1
## 34513  1
## 34514  1
## 34515  1
## 34516  1
## 34517  1
## 34518  1
## 34519  1
## 34520  1
## 34521  1
## 34522  1
## 34523  1
## 34524  1
## 34525  1
## 34526  1
## 34527  1
## 34528  1
## 34529  1
## 34530  1
## 34531  1
## 34532  1
## 34533  1
## 34534  1
## 34535  1
## 34536  1
## 34537  1
## 34538  1
## 34539  1
## 34540  1
## 34541  1
## 34542  1
## 34543  1
## 34544  1
## 34545  1
## 34546  1
## 34547  1
## 34548  1
## 34549  1
## 34550  1
## 34551  1
## 34552  1
## 34553  1
## 34554  1
## 34555  1
## 34556  1
## 34557  1
## 34558  1
## 34559  1
## 34560  1
## 34561  1
## 34562  1
## 34563  1
## 34564  1
## 34565  1
## 34566  1
## 34567  1
## 34568  1
## 34569  1
## 34570  1
## 34571  1
## 34572  1
## 34573  1
## 34574  1
## 34575  1
## 34576  1
## 34577  1
## 34578  1
## 34579  1
## 34580  1
## 34581  1
## 34582  1
## 34583  1
## 34584  1
## 34585  1
## 34586  1
## 34587  1
## 34588  1
## 34589  1
## 34590  1
## 34591  1
## 34592  1
## 34593  1
## 34594  1
## 34595  1
## 34596  1
## 34597  1
## 34598  1
## 34599  1
## 34600  1
## 34601  1
## 34602  1
## 34603  1
## 34604  1
## 34605  1
## 34606  1
## 34607  1
## 34608  1
## 34609  1
## 34610  1
## 34611  1
## 34612  1
## 34613  1
## 34614  1
## 34615  1
## 34616  1
## 34617  1
## 34618  1
## 34619  1
## 34620  1
## 34621  1
## 34622  1
## 34623  1
## 34624  1
## 34625  1
## 34626  1
## 34627  1
## 34628  1
## 34629  1
## 34630  1
## 34631  1
## 34632  1
## 34633  1
## 34634  1
## 34635  1
## 34636  1
## 34637  1
## 34638  1
## 34639  1
## 34640  1
## 34641  1
## 34642  1
## 34643  1
## 34644  1
## 34645  1
## 34646  1
## 34647  1
## 34648  1
## 34649  1
## 34650  1
## 34651  1
## 34652  1
## 34653  1
## 34654  1
## 34655  1
## 34656  1
## 34657  1
## 34658  1
## 34659  1
## 34660  1
## 34661  1
## 34662  1
## 34663  1
## 34664  1
## 34665  1
## 34666  1
## 34667  1
## 34668  1
## 34669  1
## 34670  1
## 34671  1
## 34672  1
## 34673  1
## 34674  1
## 34675  1
## 34676  1
## 34677  1
## 34678  1
## 34679  1
## 34680  1
## 34681  1
## 34682  1
## 34683  1
## 34684  1
## 34685  1
## 34686  1
## 34687  1
## 34688  1
## 34689  1
## 34690  1
## 34691  1
## 34692  1
## 34693  1
## 34694  1
## 34695  1
## 34696  1
## 34697  1
## 34698  1
## 34699  1
## 34700  1
## 34701  1
## 34702  1
## 34703  1
## 34704  1
## 34705  1
## 34706  1
## 34707  1
## 34708  1
## 34709  1
## 34710  1
## 34711  1
## 34712  1
## 34713  1
## 34714  1
## 34715  1
## 34716  1
## 34717  1
## 34718  1
## 34719  1
## 34720  1
## 34721  1
## 34722  1
## 34723  1
## 34724  1
## 34725  1
## 34726  1
## 34727  1
## 34728  1
## 34729  1
## 34730  1
## 34731  1
## 34732  1
## 34733  1
## 34734  1
## 34735  1
## 34736  1
## 34737  1
## 34738  1
## 34739  1
## 34740  1
## 34741  1
## 34742  1
## 34743  1
## 34744  1
## 34745  1
## 34746  1
## 34747  1
## 34748  1
## 34749  1
## 34750  1
## 34751  1
## 34752  1
## 34753  1
## 34754  1
## 34755  1
## 34756  1
## 34757  1
## 34758  1
## 34759  1
## 34760  1
## 34761  1
## 34762  1
## 34763  1
## 34764  1
## 34765  1
## 34766  1
## 34767  1
## 34768  1
## 34769  1
## 34770  1
## 34771  1
## 34772  1
## 34773  1
## 34774  1
## 34775  1
## 34776  1
## 34777  1
## 34778  1
## 34779  1
## 34780  1
## 34781  1
## 34782  1
## 34783  1
## 34784  1
## 34785  1
## 34786  1
## 34787  1
## 34788  1
## 34789  1
## 34790  1
## 34791  1
## 34792  1
## 34793  1
## 34794  1
## 34795  1
## 34796  1
## 34797  1
## 34798  1
## 34799  1
## 34800  1
## 34801  1
## 34802  1
## 34803  1
## 34804  1
## 34805  1
## 34806  1
## 34807  1
## 34808  1
## 34809  1
## 34810  1
## 34811  1
## 34812  1
## 34813  1
## 34814  1
## 34815  1
## 34816  1
## 34817  1
## 34818  1
## 34819  1
## 34820  1
## 34821  1
## 34822  1
## 34823  1
## 34824  1
## 34825  1
## 34826  1
## 34827  1
## 34828  1
## 34829  1
## 34830  1
## 34831  1
## 34832  1
## 34833  1
## 34834  1
## 34835  1
## 34836  1
## 34837  1
## 34838  1
## 34839  1
## 34840  1
## 34841  1
## 34842  1
## 34843  1
## 34844  1
## 34845  1
## 34846  1
## 34847  1
## 34848  1
## 34849  1
## 34850  1
## 34851  1
## 34852  1
## 34853  1
## 34854  1
## 34855  1
## 34856  1
## 34857  1
## 34858  1
## 34859  1
## 34860  1
## 34861  1
## 34862  1
## 34863  1
## 34864  1
## 34865  1
## 34866  1
## 34867  1
## 34868  1
## 34869  1
## 34870  1
## 34871  1
## 34872  1
## 34873  1
## 34874  1
## 34875  1
## 34876  1
## 34877  1
## 34878  1
## 34879  1
## 34880  1
## 34881  1
## 34882  1
## 34883  1
## 34884  1
## 34885  1
## 34886  1
## 34887  1
## 34888  1
## 34889  1
## 34890  1
## 34891  1
## 34892  1
## 34893  1
## 34894  1
## 34895  1
## 34896  1
## 34897  1
## 34898  1
## 34899  1
## 34900  1
## 34901  1
## 34902  1
## 34903  1
## 34904  1
## 34905  1
## 34906  1
## 34907  1
## 34908  1
## 34909  1
## 34910  1
## 34911  1
## 34912  1
## 34913  1
## 34914  1
## 34915  1
## 34916  1
## 34917  1
## 34918  1
## 34919  1
## 34920  1
## 34921  1
## 34922  1
## 34923  1
## 34924  1
## 34925  1
## 34926  1
## 34927  1
## 34928  1
## 34929  1
## 34930  1
## 34931  1
## 34932  1
## 34933  1
## 34934  1
## 34935  1
## 34936  1
## 34937  1
## 34938  1
## 34939  1
## 34940  1
## 34941  1
## 34942  1
## 34943  1
## 34944  1
## 34945  1
## 34946  1
## 34947  1
## 34948  1
## 34949  1
## 34950  1
## 34951  1
## 34952  1
## 34953  1
## 34954  1
## 34955  1
## 34956  1
## 34957  1
## 34958  1
## 34959  1
## 34960  1
## 34961  1
## 34962  1
## 34963  1
## 34964  1
## 34965  1
## 34966  1
## 34967  1
## 34968  1
## 34969  1
## 34970  1
## 34971  1
## 34972  1
## 34973  1
## 34974  1
## 34975  1
## 34976  1
## 34977  1
## 34978  1
## 34979  1
## 34980  1
## 34981  1
## 34982  1
## 34983  1
## 34984  1
## 34985  1
## 34986  1
## 34987  1
## 34988  1
## 34989  1
## 34990  1
## 34991  1
## 34992  1
## 34993  1
## 34994  1
## 34995  1
## 34996  1
## 34997  1
## 34998  1
## 34999  1
## 35000  1
## 35001  1
## 35002  1
## 35003  1
## 35004  1
## 35005  1
## 35006  1
## 35007  1
## 35008  1
## 35009  1
## 35010  1
## 35011  1
## 35012  1
## 35013  1
## 35014  1
## 35015  1
## 35016  1
## 35017  1
## 35018  1
## 35019  1
## 35020  1
## 35021  1
## 35022  1
## 35023  1
## 35024  1
## 35025  1
## 35026  1
## 35027  1
## 35028  1
## 35029  1
## 35030  1
## 35031  1
## 35032  1
## 35033  1
## 35034  1
## 35035  1
## 35036  1
## 35037  1
## 35038  1
## 35039  1
## 35040  1
## 35041  1
## 35042  1
## 35043  1
## 35044  1
## 35045  1
## 35046  1
## 35047  1
## 35048  1
## 35049  1
## 35050  1
## 35051  1
## 35052  1
## 35053  1
## 35054  1
## 35055  1
## 35056  1
## 35057  1
## 35058  1
## 35059  1
## 35060  1
## 35061  1
## 35062  1
## 35063  1
## 35064  1
## 35065  1
## 35066  1
## 35067  1
## 35068  1
## 35069  1
## 35070  1
## 35071  1
## 35072  1
## 35073  1
## 35074  1
## 35075  1
## 35076  1
## 35077  1
## 35078  1
## 35079  1
## 35080  1
## 35081  1
## 35082  1
## 35083  1
## 35084  1
## 35085  1
## 35086  1
## 35087  1
## 35088  1
## 35089  1
## 35090  1
## 35091  1
## 35092  1
## 35093  1
## 35094  1
## 35095  1
## 35096  1
## 35097  1
## 35098  1
## 35099  1
## 35100  1
## 35101  1
## 35102  1
## 35103  1
## 35104  1
## 35105  1
## 35106  1
## 35107  1
## 35108  1
## 35109  1
## 35110  1
## 35111  1
## 35112  1
## 35113  1
## 35114  1
## 35115  1
## 35116  1
## 35117  1
## 35118  1
## 35119  1
## 35120  1
## 35121  1
## 35122  1
## 35123  1
## 35124  1
## 35125  1
## 35126  1
## 35127  1
## 35128  1
## 35129  1
## 35130  1
## 35131  1
## 35132  1
## 35133  1
## 35134  1
## 35135  1
## 35136  1
## 35137  1
## 35138  1
## 35139  1
## 35140  1
## 35141  1
## 35142  1
## 35143  1
## 35144  1
## 35145  1
## 35146  1
## 35147  1
## 35148  1
## 35149  1
## 35150  1
## 35151  1
## 35152  1
## 35153  1
## 35154  1
## 35155  1
## 35156  1
## 35157  1
## 35158  1
## 35159  1
## 35160  1
## 35161  1
## 35162  1
## 35163  1
## 35164  1
## 35165  1
## 35166  1
## 35167  1
## 35168  1
## 35169  1
## 35170  1
## 35171  1
## 35172  1
## 35173  1
## 35174  1
## 35175  1
## 35176  1
## 35177  1
## 35178  1
## 35179  1
## 35180  1
## 35181  1
## 35182  1
## 35183  1
## 35184  1
## 35185  1
## 35186  1
## 35187  1
## 35188  1
## 35189  1
## 35190  1
## 35191  1
## 35192  1
## 35193  1
## 35194  1
## 35195  1
## 35196  1
## 35197  1
## 35198  1
## 35199  1
## 35200  1
## 35201  1
## 35202  1
## 35203  1
## 35204  1
## 35205  1
## 35206  1
## 35207  1
## 35208  1
## 35209  1
## 35210  1
## 35211  1
## 35212  1
## 35213  1
## 35214  1
## 35215  1
## 35216  1
## 35217  1
## 35218  1
## 35219  1
## 35220  1
## 35221  1
## 35222  1
## 35223  1
## 35224  1
## 35225  1
## 35226  1
## 35227  1
## 35228  1
## 35229  1
## 35230  1
## 35231  1
## 35232  1
## 35233  1
## 35234  1
## 35235  1
## 35236  1
## 35237  1
## 35238  1
## 35239  1
## 35240  1
## 35241  1
## 35242  1
## 35243  1
## 35244  1
## 35245  1
## 35246  1
## 35247  1
## 35248  1
## 35249  1
## 35250  1
## 35251  1
## 35252  1
## 35253  1
## 35254  1
## 35255  1
## 35256  1
## 35257  1
## 35258  1
## 35259  1
## 35260  1
## 35261  1
## 35262  1
## 35263  1
## 35264  1
## 35265  1
## 35266  1
## 35267  1
## 35268  1
## 35269  1
## 35270  1
## 35271  1
## 35272  1
## 35273  1
## 35274  1
## 35275  1
## 35276  1
## 35277  1
## 35278  1
## 35279  1
## 35280  1
## 35281  1
## 35282  1
## 35283  1
## 35284  1
## 35285  1
## 35286  1
## 35287  1
## 35288  1
## 35289  1
## 35290  1
## 35291  1
## 35292  1
## 35293  1
## 35294  1
## 35295  1
## 35296  1
## 35297  1
## 35298  1
## 35299  1
## 35300  1
## 35301  1
## 35302  1
## 35303  1
## 35304  1
## 35305  1
## 35306  1
## 35307  1
## 35308  1
## 35309  1
## 35310  1
## 35311  1
## 35312  1
## 35313  1
## 35314  1
## 35315  1
## 35316  1
## 35317  1
## 35318  1
## 35319  1
## 35320  1
## 35321  1
## 35322  1
## 35323  1
## 35324  1
## 35325  1
## 35326  1
## 35327  1
## 35328  1
## 35329  1
## 35330  1
## 35331  1
## 35332  1
## 35333  1
## 35334  1
## 35335  1
## 35336  1
## 35337  1
## 35338  1
## 35339  1
## 35340  1
## 35341  1
## 35342  1
## 35343  1
## 35344  1
## 35345  1
## 35346  1
## 35347  1
## 35348  1
## 35349  1
## 35350  1
## 35351  1
## 35352  1
## 35353  1
## 35354  1
## 35355  1
## 35356  1
## 35357  1
## 35358  1
## 35359  1
## 35360  1
## 35361  1
## 35362  1
## 35363  1
## 35364  1
## 35365  1
## 35366  1
## 35367  1
## 35368  1
## 35369  1
## 35370  1
## 35371  1
## 35372  1
## 35373  1
## 35374  1
## 35375  1
## 35376  1
## 35377  1
## 35378  1
## 35379  1
## 35380  1
## 35381  1
## 35382  1
## 35383  1
## 35384  1
## 35385  1
## 35386  1
## 35387  1
## 35388  1
## 35389  1
## 35390  1
## 35391  1
## 35392  1
## 35393  1
## 35394  1
## 35395  1
## 35396  1
## 35397  1
## 35398  1
## 35399  1
## 35400  1
## 35401  1
## 35402  1
## 35403  1
## 35404  1
## 35405  1
## 35406  1
## 35407  1
## 35408  1
## 35409  1
## 35410  1
## 35411  1
## 35412  1
## 35413  1
## 35414  1
## 35415  1
## 35416  1
## 35417  1
## 35418  1
## 35419  1
## 35420  1
## 35421  1
## 35422  1
## 35423  1
## 35424  1
## 35425  1
## 35426  1
## 35427  1
## 35428  1
## 35429  1
## 35430  1
## 35431  1
## 35432  1
## 35433  1
## 35434  1
## 35435  1
## 35436  1
## 35437  1
## 35438  1
## 35439  1
## 35440  1
## 35441  1
## 35442  1
## 35443  1
## 35444  1
## 35445  1
## 35446  1
## 35447  1
## 35448  1
## 35449  1
## 35450  1
## 35451  1
## 35452  1
## 35453  1
## 35454  1
## 35455  1
## 35456  1
## 35457  1
## 35458  1
## 35459  1
## 35460  1
## 35461  1
## 35462  1
## 35463  1
## 35464  1
## 35465  1
## 35466  1
## 35467  1
## 35468  1
## 35469  1
## 35470  1
## 35471  1
## 35472  1
## 35473  1
## 35474  1
## 35475  1
## 35476  1
## 35477  1
## 35478  1
## 35479  1
## 35480  1
## 35481  1
## 35482  1
## 35483  1
## 35484  1
## 35485  1
## 35486  1
## 35487  1
## 35488  1
## 35489  1
## 35490  1
## 35491  1
## 35492  1
## 35493  1
## 35494  1
## 35495  1
## 35496  1
## 35497  1
## 35498  1
## 35499  1
## 35500  1
## 35501  1
## 35502  1
## 35503  1
## 35504  1
## 35505  1
## 35506  1
## 35507  1
## 35508  1
## 35509  1
## 35510  1
## 35511  1
## 35512  1
## 35513  1
## 35514  1
## 35515  1
## 35516  1
## 35517  1
## 35518  1
## 35519  1
## 35520  1
## 35521  1
## 35522  1
## 35523  1
## 35524  1
## 35525  1
## 35526  1
## 35527  1
## 35528  1
## 35529  1
## 35530  1
## 35531  1
## 35532  1
## 35533  1
## 35534  1
## 35535  1
## 35536  1
## 35537  1
## 35538  1
## 35539  1
## 35540  1
## 35541  1
## 35542  1
## 35543  1
## 35544  1
## 35545  1
## 35546  1
## 35547  1
## 35548  1
## 35549  1
## 35550  1
## 35551  1
## 35552  1
## 35553  1
## 35554  1
## 35555  1
## 35556  1
## 35557  1
## 35558  1
## 35559  1
## 35560  1
## 35561  1
## 35562  1
## 35563  1
## 35564  1
## 35565  1
## 35566  1
## 35567  1
## 35568  1
## 35569  1
## 35570  1
## 35571  1
## 35572  1
## 35573  1
## 35574  1
## 35575  1
## 35576  1
## 35577  1
## 35578  1
## 35579  1
## 35580  1
## 35581  1
## 35582  1
## 35583  1
## 35584  1
## 35585  1
## 35586  1
## 35587  1
## 35588  1
## 35589  1
## 35590  1
## 35591  1
## 35592  1
## 35593  1
## 35594  1
## 35595  1
## 35596  1
## 35597  1
## 35598  1
## 35599  1
## 35600  1
## 35601  1
## 35602  1
## 35603  1
## 35604  1
## 35605  1
## 35606  1
## 35607  1
## 35608  1
## 35609  1
## 35610  1
## 35611  1
## 35612  1
## 35613  1
## 35614  1
## 35615  1
## 35616  1
## 35617  1
## 35618  1
## 35619  1
## 35620  1
## 35621  1
## 35622  1
## 35623  1
## 35624  1
## 35625  1
## 35626  1
## 35627  1
## 35628  1
## 35629  1
## 35630  1
## 35631  1
## 35632  1
## 35633  1
## 35634  1
## 35635  1
## 35636  1
## 35637  1
## 35638  1
## 35639  1
## 35640  1
## 35641  1
## 35642  1
## 35643  1
## 35644  1
## 35645  1
## 35646  1
## 35647  1
## 35648  1
## 35649  1
## 35650  1
## 35651  1
## 35652  1
## 35653  1
## 35654  1
## 35655  1
## 35656  1
## 35657  1
## 35658  1
## 35659  1
## 35660  1
## 35661  1
## 35662  1
## 35663  1
## 35664  1
## 35665  1
## 35666  1
## 35667  1
## 35668  1
## 35669  1
## 35670  1
## 35671  1
## 35672  1
## 35673  1
## 35674  1
## 35675  1
## 35676  1
## 35677  1
## 35678  1
## 35679  1
## 35680  1
## 35681  1
## 35682  1
## 35683  1
## 35684  1
## 35685  1
## 35686  1
## 35687  1
## 35688  1
## 35689  1
## 35690  1
## 35691  1
## 35692  1
## 35693  1
## 35694  1
## 35695  1
## 35696  1
## 35697  1
## 35698  1
## 35699  1
## 35700  1
## 35701  1
## 35702  1
## 35703  1
## 35704  1
## 35705  1
## 35706  1
## 35707  1
## 35708  1
## 35709  1
## 35710  1
## 35711  1
## 35712  1
## 35713  1
## 35714  1
## 35715  1
## 35716  1
## 35717  1
## 35718  1
## 35719  1
## 35720  1
## 35721  1
## 35722  1
## 35723  1
## 35724  1
## 35725  1
## 35726  1
## 35727  1
## 35728  1
## 35729  1
## 35730  1
## 35731  1
## 35732  1
## 35733  1
## 35734  1
## 35735  1
## 35736  1
## 35737  1
## 35738  1
## 35739  1
## 35740  1
## 35741  1
## 35742  1
## 35743  1
## 35744  1
## 35745  1
## 35746  1
## 35747  1
## 35748  1
## 35749  1
## 35750  1
## 35751  1
## 35752  1
## 35753  1
## 35754  1
## 35755  1
## 35756  1
## 35757  1
## 35758  1
## 35759  1
## 35760  1
## 35761  1
## 35762  1
## 35763  1
## 35764  1
## 35765  1
## 35766  1
## 35767  1
## 35768  1
## 35769  1
## 35770  1
## 35771  1
## 35772  1
## 35773  1
## 35774  1
## 35775  1
## 35776  1
## 35777  1
## 35778  1
## 35779  1
## 35780  1
## 35781  1
## 35782  1
## 35783  1
## 35784  1
## 35785  1
## 35786  1
## 35787  1
## 35788  1
## 35789  1
## 35790  1
## 35791  1
## 35792  1
## 35793  1
## 35794  1
## 35795  1
## 35796  1
## 35797  1
## 35798  1
## 35799  1
## 35800  1
## 35801  1
## 35802  1
## 35803  1
## 35804  1
## 35805  1
## 35806  1
## 35807  1
## 35808  1
## 35809  1
## 35810  1
## 35811  1
## 35812  1
## 35813  1
## 35814  1
## 35815  1
## 35816  1
## 35817  1
## 35818  1
## 35819  1
## 35820  1
## 35821  1
## 35822  1
## 35823  1
## 35824  1
## 35825  1
## 35826  1
## 35827  1
## 35828  1
## 35829  1
## 35830  1
## 35831  1
## 35832  1
## 35833  1
## 35834  1
## 35835  1
## 35836  1
## 35837  1
## 35838  1
## 35839  1
## 35840  1
## 35841  1
## 35842  1
## 35843  1
## 35844  1
## 35845  1
## 35846  1
## 35847  1
## 35848  1
## 35849  1
## 35850  1
## 35851  1
## 35852  1
## 35853  1
## 35854  1
## 35855  1
## 35856  1
## 35857  1
## 35858  1
## 35859  1
## 35860  1
## 35861  1
## 35862  1
## 35863  1
## 35864  1
## 35865  1
## 35866  1
## 35867  1
## 35868  1
## 35869  1
## 35870  1
## 35871  1
## 35872  1
## 35873  1
## 35874  1
## 35875  1
## 35876  1
## 35877  1
## 35878  1
## 35879  1
## 35880  1
## 35881  1
## 35882  1
## 35883  1
## 35884  1
## 35885  1
## 35886  1
## 35887  1
## 35888  1
## 35889  1
## 35890  1
## 35891  1
## 35892  1
## 35893  1
## 35894  1
## 35895  1
## 35896  1
## 35897  1
## 35898  1
## 35899  1
## 35900  1
## 35901  1
## 35902  1
## 35903  1
## 35904  1
## 35905  1
## 35906  1
## 35907  1
## 35908  1
## 35909  1
## 35910  1
## 35911  1
## 35912  1
## 35913  1
## 35914  1
## 35915  1
## 35916  1
## 35917  1
## 35918  1
## 35919  1
## 35920  1
## 35921  1
## 35922  1
## 35923  1
## 35924  1
## 35925  1
## 35926  1
## 35927  1
## 35928  1
## 35929  1
## 35930  1
## 35931  1
## 35932  1
## 35933  1
## 35934  1
## 35935  1
## 35936  1
## 35937  1
## 35938  1
## 35939  1
## 35940  1
## 35941  1
## 35942  1
## 35943  1
## 35944  1
## 35945  1
## 35946  1
## 35947  1
## 35948  1
## 35949  1
## 35950  1
## 35951  1
## 35952  1
## 35953  1
## 35954  1
## 35955  1
## 35956  1
## 35957  1
## 35958  1
## 35959  1
## 35960  1
## 35961  1
## 35962  1
## 35963  1
## 35964  1
## 35965  1
## 35966  1
## 35967  1
## 35968  1
## 35969  1
## 35970  1
## 35971  1
## 35972  1
## 35973  1
## 35974  1
## 35975  1
## 35976  1
## 35977  1
## 35978  1
## 35979  1
## 35980  1
## 35981  1
## 35982  1
## 35983  1
## 35984  1
## 35985  1
## 35986  1
## 35987  1
## 35988  1
## 35989  1
## 35990  1
## 35991  1
## 35992  1
## 35993  1
## 35994  1
## 35995  1
## 35996  1
## 35997  1
## 35998  1
## 35999  1
## 36000  1
## 36001  1
## 36002  1
## 36003  1
## 36004  1
## 36005  1
## 36006  1
## 36007  1
## 36008  1
## 36009  1
## 36010  1
## 36011  1
## 36012  1
## 36013  1
## 36014  1
## 36015  1
## 36016  1
## 36017  1
## 36018  1
## 36019  1
## 36020  1
## 36021  1
## 36022  1
## 36023  1
## 36024  1
## 36025  1
## 36026  1
## 36027  1
## 36028  1
## 36029  1
## 36030  1
## 36031  1
## 36032  1
## 36033  1
## 36034  1
## 36035  1
## 36036  1
## 36037  1
## 36038  1
## 36039  1
## 36040  1
## 36041  1
## 36042  1
## 36043  1
## 36044  1
## 36045  1
## 36046  1
## 36047  1
## 36048  1
## 36049  1
## 36050  1
## 36051  1
## 36052  1
## 36053  1
## 36054  1
## 36055  1
## 36056  1
## 36057  1
## 36058  1
## 36059  1
## 36060  1
## 36061  1
## 36062  1
## 36063  1
## 36064  1
## 36065  1
## 36066  1
## 36067  1
## 36068  1
## 36069  1
## 36070  1
## 36071  1
## 36072  1
## 36073  1
## 36074  1
## 36075  1
## 36076  1
## 36077  1
## 36078  1
## 36079  1
## 36080  1
## 36081  1
## 36082  1
## 36083  1
## 36084  1
## 36085  1
## 36086  1
## 36087  1
## 36088  1
## 36089  1
## 36090  1
## 36091  1
## 36092  1
## 36093  1
## 36094  1
## 36095  1
## 36096  1
## 36097  1
## 36098  1
## 36099  1
## 36100  1
## 36101  1
## 36102  1
## 36103  1
## 36104  1
## 36105  1
## 36106  1
## 36107  1
## 36108  1
## 36109  1
## 36110  1
## 36111  1
## 36112  1
## 36113  1
## 36114  1
## 36115  1
## 36116  1
## 36117  1
## 36118  1
## 36119  1
## 36120  1
## 36121  1
## 36122  1
## 36123  1
## 36124  1
## 36125  1
## 36126  1
## 36127  1
## 36128  1
## 36129  1
## 36130  1
## 36131  1
## 36132  1
## 36133  1
## 36134  1
## 36135  1
## 36136  1
## 36137  1
## 36138  1
## 36139  1
## 36140  1
## 36141  1
## 36142  1
## 36143  1
## 36144  1
## 36145  1
## 36146  1
## 36147  1
## 36148  1
## 36149  1
## 36150  1
## 36151  1
## 36152  1
## 36153  1
## 36154  1
## 36155  1
## 36156  1
## 36157  1
## 36158  1
## 36159  1
## 36160  1
## 36161  1
## 36162  1
## 36163  1
## 36164  1
## 36165  1
## 36166  1
## 36167  1
## 36168  1
## 36169  1
## 36170  1
## 36171  1
## 36172  1
## 36173  1
## 36174  1
## 36175  1
## 36176  1
## 36177  1
## 36178  1
## 36179  1
## 36180  1
## 36181  1
## 36182  1
## 36183  1
## 36184  1
## 36185  1
## 36186  1
## 36187  1
## 36188  1
## 36189  1
## 36190  1
## 36191  1
## 36192  1
## 36193  1
## 36194  1
## 36195  1
## 36196  1
## 36197  1
## 36198  1
## 36199  1
## 36200  1
## 36201  1
## 36202  1
## 36203  1
## 36204  1
## 36205  1
## 36206  1
## 36207  1
## 36208  1
## 36209  1
## 36210  1
## 36211  1
## 36212  1
## 36213  1
## 36214  1
## 36215  1
## 36216  1
## 36217  1
## 36218  1
## 36219  1
## 36220  1
## 36221  1
## 36222  1
## 36223  1
## 36224  1
## 36225  1
## 36226  1
## 36227  1
## 36228  1
## 36229  1
## 36230  1
## 36231  1
## 36232  1
## 36233  1
## 36234  1
## 36235  1
## 36236  1
## 36237  1
## 36238  1
## 36239  1
## 36240  1
## 36241  1
## 36242  1
## 36243  1
## 36244  1
## 36245  1
## 36246  1
## 36247  1
## 36248  1
## 36249  1
## 36250  1
## 36251  1
## 36252  1
## 36253  1
## 36254  1
## 36255  1
## 36256  1
## 36257  1
## 36258  1
## 36259  1
## 36260  1
## 36261  1
## 36262  1
## 36263  1
## 36264  1
## 36265  1
## 36266  1
## 36267  1
## 36268  1
## 36269  1
## 36270  1
## 36271  1
## 36272  1
## 36273  1
## 36274  1
## 36275  1
## 36276  1
## 36277  1
## 36278  1
## 36279  1
## 36280  1
## 36281  1
## 36282  1
## 36283  1
## 36284  1
## 36285  1
## 36286  1
## 36287  1
## 36288  1
## 36289  1
## 36290  1
## 36291  1
## 36292  1
## 36293  1
## 36294  1
## 36295  1
## 36296  1
## 36297  1
## 36298  1
## 36299  1
## 36300  1
## 36301  1
## 36302  1
## 36303  1
## 36304  1
## 36305  1
## 36306  1
## 36307  1
## 36308  1
## 36309  1
## 36310  1
## 36311  1
## 36312  1
## 36313  1
## 36314  1
## 36315  1
## 36316  1
## 36317  1
## 36318  1
## 36319  1
## 36320  1
## 36321  1
## 36322  1
## 36323  1
## 36324  1
## 36325  1
## 36326  1
## 36327  1
## 36328  1
## 36329  1
## 36330  1
## 36331  1
## 36332  1
## 36333  1
## 36334  1
## 36335  1
## 36336  1
## 36337  1
## 36338  1
## 36339  1
## 36340  1
## 36341  1
## 36342  1
## 36343  1
## 36344  1
## 36345  1
## 36346  1
## 36347  1
## 36348  1
## 36349  1
## 36350  1
## 36351  1
## 36352  1
## 36353  1
## 36354  1
## 36355  1
## 36356  1
## 36357  1
## 36358  1
## 36359  1
## 36360  1
## 36361  1
## 36362  1
## 36363  1
## 36364  1
## 36365  1
## 36366  1
## 36367  1
## 36368  1
## 36369  1
## 36370  1
## 36371  1
## 36372  1
## 36373  1
## 36374  1
## 36375  1
## 36376  1
## 36377  1
## 36378  1
## 36379  1
## 36380  1
## 36381  1
## 36382  1
## 36383  1
## 36384  1
## 36385  1
## 36386  1
## 36387  1
## 36388  1
## 36389  1
## 36390  1
## 36391  1
## 36392  1
## 36393  1
## 36394  1
## 36395  1
## 36396  1
## 36397  1
## 36398  1
## 36399  1
## 36400  1
## 36401  1
## 36402  1
## 36403  1
## 36404  1
## 36405  1
## 36406  1
## 36407  1
## 36408  1
## 36409  1
## 36410  1
## 36411  1
## 36412  1
## 36413  1
## 36414  1
## 36415  1
## 36416  1
## 36417  1
## 36418  1
## 36419  1
## 36420  1
## 36421  1
## 36422  1
## 36423  1
## 36424  1
## 36425  1
## 36426  1
## 36427  1
## 36428  1
## 36429  1
## 36430  1
## 36431  1
## 36432  1
## 36433  1
## 36434  1
## 36435  1
## 36436  1
## 36437  1
## 36438  1
## 36439  1
## 36440  1
## 36441  1
## 36442  1
## 36443  1
## 36444  1
## 36445  1
## 36446  1
## 36447  1
## 36448  1
## 36449  1
## 36450  1
## 36451  1
## 36452  1
## 36453  1
## 36454  1
## 36455  1
## 36456  1
## 36457  1
## 36458  1
## 36459  1
## 36460  1
## 36461  1
## 36462  1
## 36463  1
## 36464  1
## 36465  1
## 36466  1
## 36467  1
## 36468  1
## 36469  1
## 36470  1
## 36471  1
## 36472  1
## 36473  1
## 36474  1
## 36475  1
## 36476  1
## 36477  1
## 36478  1
## 36479  1
## 36480  1
## 36481  1
## 36482  1
## 36483  1
## 36484  1
## 36485  1
## 36486  1
## 36487  1
## 36488  1
## 36489  1
## 36490  1
## 36491  1
## 36492  1
## 36493  1
## 36494  1
## 36495  1
## 36496  1
## 36497  1
## 36498  1
## 36499  1
## 36500  1
## 36501  1
## 36502  1
## 36503  1
## 36504  1
## 36505  1
## 36506  1
## 36507  1
## 36508  1
## 36509  1
## 36510  1
## 36511  1
## 36512  1
## 36513  1
## 36514  1
## 36515  1
## 36516  1
## 36517  1
## 36518  1
## 36519  1
## 36520  1
## 36521  1
## 36522  1
## 36523  1
## 36524  1
## 36525  1
## 36526  1
## 36527  1
## 36528  1
## 36529  1
## 36530  1
## 36531  1
## 36532  1
## 36533  1
## 36534  1
## 36535  1
## 36536  1
## 36537  1
## 36538  1
## 36539  1
## 36540  1
## 36541  1
## 36542  1
## 36543  1
## 36544  1
## 36545  1
## 36546  1
## 36547  1
## 36548  1
## 36549  1
## 36550  1
## 36551  1
## 36552  1
## 36553  1
## 36554  1
## 36555  1
## 36556  1
## 36557  1
## 36558  1
## 36559  1
## 36560  1
## 36561  1
## 36562  1
## 36563  1
## 36564  1
## 36565  1
## 36566  1
## 36567  1
## 36568  1
## 36569  1
## 36570  1
## 36571  1
## 36572  1
## 36573  1
## 36574  1
## 36575  1
## 36576  1
## 36577  1
## 36578  1
## 36579  1
## 36580  1
## 36581  1
## 36582  1
## 36583  1
## 36584  1
## 36585  1
## 36586  1
## 36587  1
## 36588  1
## 36589  1
## 36590  1
## 36591  1
## 36592  1
## 36593  1
## 36594  1
## 36595  1
## 36596  1
## 36597  1
## 36598  1
## 36599  1
## 36600  1
## 36601  1
## 36602  1
## 36603  1
## 36604  1
## 36605  1
## 36606  1
## 36607  1
## 36608  1
## 36609  1
## 36610  1
## 36611  1
## 36612  1
## 36613  1
## 36614  1
## 36615  1
## 36616  1
## 36617  1
## 36618  1
## 36619  1
## 36620  1
## 36621  1
## 36622  1
## 36623  1
## 36624  1
## 36625  1
## 36626  1
## 36627  1
## 36628  1
## 36629  1
## 36630  1
## 36631  1
## 36632  1
## 36633  1
## 36634  1
## 36635  1
## 36636  1
## 36637  1
## 36638  1
## 36639  1
## 36640  1
## 36641  1
## 36642  1
## 36643  1
## 36644  1
## 36645  1
## 36646  1
## 36647  1
## 36648  1
## 36649  1
## 36650  1
## 36651  1
## 36652  1
## 36653  1
## 36654  1
## 36655  1
## 36656  1
## 36657  1
## 36658  1
## 36659  1
## 36660  1
## 36661  1
## 36662  1
## 36663  1
## 36664  1
## 36665  1
## 36666  1
## 36667  1
## 36668  1
## 36669  1
## 36670  1
## 36671  1
## 36672  1
## 36673  1
## 36674  1
## 36675  1
## 36676  1
## 36677  1
## 36678  1
## 36679  1
## 36680  1
## 36681  1
## 36682  1
## 36683  1
## 36684  1
## 36685  1
## 36686  1
## 36687  1
## 36688  1
## 36689  1
## 36690  1
## 36691  1
## 36692  1
## 36693  1
## 36694  1
## 36695  1
## 36696  1
## 36697  1
## 36698  1
## 36699  1
## 36700  1
## 36701  1
## 36702  1
## 36703  1
## 36704  1
## 36705  1
## 36706  1
## 36707  1
## 36708  1
## 36709  1
## 36710  1
## 36711  1
## 36712  1
## 36713  1
## 36714  1
## 36715  1
## 36716  1
## 36717  1
## 36718  1
## 36719  1
## 36720  1
## 36721  1
## 36722  1
## 36723  1
## 36724  1
## 36725  1
## 36726  1
## 36727  1
## 36728  1
## 36729  1
## 36730  1
## 36731  1
## 36732  1
## 36733  1
## 36734  1
## 36735  1
## 36736  1
## 36737  1
## 36738  1
## 36739  1
## 36740  1
## 36741  1
## 36742  1
## 36743  1
## 36744  1
## 36745  1
## 36746  1
## 36747  1
## 36748  1
## 36749  1
## 36750  1
## 36751  1
## 36752  1
## 36753  1
## 36754  1
## 36755  1
## 36756  1
## 36757  1
## 36758  1
## 36759  1
## 36760  1
## 36761  1
## 36762  1
## 36763  1
## 36764  1
## 36765  1
## 36766  1
## 36767  1
## 36768  1
## 36769  1
## 36770  1
## 36771  1
## 36772  1
## 36773  1
## 36774  1
## 36775  1
## 36776  1
## 36777  1
## 36778  1
## 36779  1
## 36780  1
## 36781  1
## 36782  1
## 36783  1
## 36784  1
## 36785  1
## 36786  1
## 36787  1
## 36788  1
## 36789  1
## 36790  1
## 36791  1
## 36792  1
## 36793  1
## 36794  1
## 36795  1
## 36796  1
## 36797  1
## 36798  1
## 36799  1
## 36800  1
## 36801  1
## 36802  1
## 36803  1
## 36804  1
## 36805  1
## 36806  1
## 36807  1
## 36808  1
## 36809  1
## 36810  1
## 36811  1
## 36812  1
## 36813  1
## 36814  1
## 36815  1
## 36816  1
## 36817  1
## 36818  1
## 36819  1
## 36820  1
## 36821  1
## 36822  1
## 36823  1
## 36824  1
## 36825  1
## 36826  1
## 36827  1
## 36828  1
## 36829  1
## 36830  1
## 36831  1
## 36832  1
## 36833  1
## 36834  1
## 36835  1
## 36836  1
## 36837  1
## 36838  1
## 36839  1
## 36840  1
## 36841  1
## 36842  1
## 36843  1
## 36844  1
## 36845  1
## 36846  1
## 36847  1
## 36848  1
## 36849  1
## 36850  1
## 36851  1
## 36852  1
## 36853  1
## 36854  1
## 36855  1
## 36856  1
## 36857  1
## 36858  1
## 36859  1
## 36860  1
## 36861  1
## 36862  1
## 36863  1
## 36864  1
## 36865  1
## 36866  1
## 36867  1
## 36868  1
## 36869  1
## 36870  1
## 36871  1
## 36872  1
## 36873  1
## 36874  1
## 36875  1
## 36876  1
## 36877  1
## 36878  1
## 36879  1
## 36880  1
## 36881  1
## 36882  1
## 36883  1
## 36884  1
## 36885  1
## 36886  1
## 36887  1
## 36888  1
## 36889  1
## 36890  1
## 36891  1
## 36892  1
## 36893  1
## 36894  1
## 36895  1
## 36896  1
## 36897  1
## 36898  1
## 36899  1
## 36900  1
## 36901  1
## 36902  1
## 36903  1
## 36904  1
## 36905  1
## 36906  1
## 36907  1
## 36908  1
## 36909  1
## 36910  1
## 36911  1
## 36912  1
## 36913  1
## 36914  1
## 36915  1
## 36916  1
## 36917  1
## 36918  1
## 36919  1
## 36920  1
## 36921  1
## 36922  1
## 36923  1
## 36924  1
## 36925  1
## 36926  1
## 36927  1
## 36928  1
## 36929  1
## 36930  1
## 36931  1
## 36932  1
## 36933  1
## 36934  1
## 36935  1
## 36936  1
## 36937  1
## 36938  1
## 36939  1
## 36940  1
## 36941  1
## 36942  1
## 36943  1
## 36944  1
## 36945  1
## 36946  1
## 36947  1
## 36948  1
## 36949  1
## 36950  1
## 36951  1
## 36952  1
## 36953  1
## 36954  1
## 36955  1
## 36956  1
## 36957  1
## 36958  1
## 36959  1
## 36960  1
## 36961  1
## 36962  1
## 36963  1
## 36964  1
## 36965  1
## 36966  1
## 36967  1
## 36968  1
## 36969  1
## 36970  1
## 36971  1
## 36972  1
## 36973  1
## 36974  1
## 36975  1
## 36976  1
## 36977  1
## 36978  1
## 36979  1
## 36980  1
## 36981  1
## 36982  1
## 36983  1
## 36984  1
## 36985  1
## 36986  1
## 36987  1
## 36988  1
## 36989  1
## 36990  1
## 36991  1
## 36992  1
## 36993  1
## 36994  1
## 36995  1
## 36996  1
## 36997  1
## 36998  1
## 36999  1
## 37000  1
## 37001  1
## 37002  1
## 37003  1
## 37004  1
## 37005  1
## 37006  1
## 37007  1
## 37008  1
## 37009  1
## 37010  1
## 37011  1
## 37012  1
## 37013  1
## 37014  1
## 37015  1
## 37016  1
## 37017  1
## 37018  1
## 37019  1
## 37020  1
## 37021  1
## 37022  1
## 37023  1
## 37024  1
## 37025  1
## 37026  1
## 37027  1
## 37028  1
## 37029  1
## 37030  1
## 37031  1
## 37032  1
## 37033  1
## 37034  1
## 37035  1
## 37036  1
## 37037  1
## 37038  1
## 37039  1
## 37040  1
## 37041  1
## 37042  1
## 37043  1
## 37044  1
## 37045  1
## 37046  1
## 37047  1
## 37048  1
## 37049  1
## 37050  1
## 37051  1
## 37052  1
## 37053  1
## 37054  1
## 37055  1
## 37056  1
## 37057  1
## 37058  1
## 37059  1
## 37060  1
## 37061  1
## 37062  1
## 37063  1
## 37064  1
## 37065  1
## 37066  1
## 37067  1
## 37068  1
## 37069  1
## 37070  1
## 37071  1
## 37072  1
## 37073  1
## 37074  1
## 37075  1
## 37076  1
## 37077  1
## 37078  1
## 37079  1
## 37080  1
## 37081  1
## 37082  1
## 37083  1
## 37084  1
## 37085  1
## 37086  1
## 37087  1
## 37088  1
## 37089  1
## 37090  1
## 37091  1
## 37092  1
## 37093  1
## 37094  1
## 37095  1
## 37096  1
## 37097  1
## 37098  1
## 37099  1
## 37100  1
## 37101  1
## 37102  1
## 37103  1
## 37104  1
## 37105  1
## 37106  1
## 37107  1
## 37108  1
## 37109  1
## 37110  1
## 37111  1
## 37112  1
## 37113  1
## 37114  1
## 37115  1
## 37116  1
## 37117  1
## 37118  1
## 37119  1
## 37120  1
## 37121  1
## 37122  1
## 37123  1
## 37124  1
## 37125  1
## 37126  1
## 37127  1
## 37128  1
## 37129  1
## 37130  1
## 37131  1
## 37132  1
## 37133  1
## 37134  1
## 37135  1
## 37136  1
## 37137  1
## 37138  1
## 37139  1
## 37140  1
## 37141  1
## 37142  1
## 37143  1
## 37144  1
## 37145  1
## 37146  1
## 37147  1
## 37148  1
## 37149  1
## 37150  1
## 37151  1
## 37152  1
## 37153  1
## 37154  1
## 37155  1
## 37156  1
## 37157  1
## 37158  1
## 37159  1
## 37160  1
## 37161  1
## 37162  1
## 37163  1
## 37164  1
## 37165  1
## 37166  1
## 37167  1
## 37168  1
## 37169  1
## 37170  1
## 37171  1
## 37172  1
## 37173  1
## 37174  1
## 37175  1
## 37176  1
## 37177  1
## 37178  1
## 37179  1
## 37180  1
## 37181  1
## 37182  1
## 37183  1
## 37184  1
## 37185  1
## 37186  1
## 37187  1
## 37188  1
## 37189  1
## 37190  1
## 37191  1
## 37192  1
## 37193  1
## 37194  1
## 37195  1
## 37196  1
## 37197  1
## 37198  1
## 37199  1
## 37200  1
## 37201  1
## 37202  1
## 37203  1
## 37204  1
## 37205  1
## 37206  1
## 37207  1
## 37208  1
## 37209  1
## 37210  1
## 37211  1
## 37212  1
## 37213  1
## 37214  1
## 37215  1
## 37216  1
## 37217  1
## 37218  1
## 37219  1
## 37220  1
## 37221  1
## 37222  1
## 37223  1
## 37224  1
## 37225  1
## 37226  1
## 37227  1
## 37228  1
## 37229  1
## 37230  1
## 37231  1
## 37232  1
## 37233  1
## 37234  1
## 37235  1
## 37236  1
## 37237  1
## 37238  1
## 37239  1
## 37240  1
## 37241  1
## 37242  1
## 37243  1
## 37244  1
## 37245  1
## 37246  1
## 37247  1
## 37248  1
## 37249  1
## 37250  1
## 37251  1
## 37252  1
## 37253  1
## 37254  1
## 37255  1
## 37256  1
## 37257  1
## 37258  1
## 37259  1
## 37260  1
## 37261  1
## 37262  1
## 37263  1
## 37264  1
## 37265  1
## 37266  1
## 37267  1
## 37268  1
## 37269  1
## 37270  1
## 37271  1
## 37272  1
## 37273  1
## 37274  1
## 37275  1
## 37276  1
## 37277  1
## 37278  1
## 37279  1
## 37280  1
## 37281  1
## 37282  1
## 37283  1
## 37284  1
## 37285  1
## 37286  1
## 37287  1
## 37288  1
## 37289  1
## 37290  1
## 37291  1
## 37292  1
## 37293  1
## 37294  1
## 37295  1
## 37296  1
## 37297  1
## 37298  1
## 37299  1
## 37300  1
## 37301  1
## 37302  1
## 37303  1
## 37304  1
## 37305  1
## 37306  1
## 37307  1
## 37308  1
## 37309  1
## 37310  1
## 37311  1
## 37312  1
## 37313  1
## 37314  1
## 37315  1
## 37316  1
## 37317  1
## 37318  1
## 37319  1
## 37320  1
## 37321  1
## 37322  1
## 37323  1
## 37324  1
## 37325  1
## 37326  1
## 37327  1
## 37328  1
## 37329  1
## 37330  1
## 37331  1
## 37332  1
## 37333  1
## 37334  1
## 37335  1
## 37336  1
## 37337  1
## 37338  1
## 37339  1
## 37340  1
## 37341  1
## 37342  1
## 37343  1
## 37344  1
## 37345  1
## 37346  1
## 37347  1
## 37348  1
## 37349  1
## 37350  1
## 37351  1
## 37352  1
## 37353  1
## 37354  1
## 37355  1
## 37356  1
## 37357  1
## 37358  1
## 37359  1
## 37360  1
## 37361  1
## 37362  1
## 37363  1
## 37364  1
## 37365  1
## 37366  1
## 37367  1
## 37368  1
## 37369  1
## 37370  1
## 37371  1
## 37372  1
## 37373  1
## 37374  1
## 37375  1
## 37376  1
## 37377  1
## 37378  1
## 37379  1
## 37380  1
## 37381  1
## 37382  1
## 37383  1
## 37384  1
## 37385  1
## 37386  1
## 37387  1
## 37388  1
## 37389  1
## 37390  1
## 37391  1
## 37392  1
## 37393  1
## 37394  1
## 37395  1
## 37396  1
## 37397  1
## 37398  1
## 37399  1
## 37400  1
## 37401  1
## 37402  1
## 37403  1
## 37404  1
## 37405  1
## 37406  1
## 37407  1
## 37408  1
## 37409  1
## 37410  1
## 37411  1
## 37412  1
## 37413  1
## 37414  1
## 37415  1
## 37416  1
## 37417  1
## 37418  1
## 37419  1
## 37420  1
## 37421  1
## 37422  1
## 37423  1
## 37424  1
## 37425  1
## 37426  1
## 37427  1
## 37428  1
## 37429  1
## 37430  1
## 37431  1
## 37432  1
## 37433  1
## 37434  1
## 37435  1
## 37436  1
## 37437  1
## 37438  1
## 37439  1
## 37440  1
## 37441  1
## 37442  1
## 37443  1
## 37444  1
## 37445  1
## 37446  1
## 37447  1
## 37448  1
## 37449  1
## 37450  1
## 37451  1
## 37452  1
## 37453  1
## 37454  1
## 37455  1
## 37456  1
## 37457  1
## 37458  1
## 37459  1
## 37460  1
## 37461  1
## 37462  1
## 37463  1
## 37464  1
## 37465  1
## 37466  1
## 37467  1
## 37468  1
## 37469  1
## 37470  1
## 37471  1
## 37472  1
## 37473  1
## 37474  1
## 37475  1
## 37476  1
## 37477  1
## 37478  1
## 37479  1
## 37480  1
## 37481  1
## 37482  1
## 37483  1
## 37484  1
## 37485  1
## 37486  1
## 37487  1
## 37488  1
## 37489  1
## 37490  1
## 37491  1
## 37492  1
## 37493  1
## 37494  1
## 37495  1
## 37496  1
## 37497  1
## 37498  1
## 37499  1
## 37500  1
## 37501  1
## 37502  1
## 37503  1
## 37504  1
## 37505  1
## 37506  1
## 37507  1
## 37508  1
## 37509  1
## 37510  1
## 37511  1
## 37512  1
## 37513  1
## 37514  1
## 37515  1
## 37516  1
## 37517  1
## 37518  1
## 37519  1
## 37520  1
## 37521  1
## 37522  1
## 37523  1
## 37524  1
## 37525  1
## 37526  1
## 37527  1
## 37528  1
## 37529  1
## 37530  1
## 37531  1
## 37532  1
## 37533  1
## 37534  1
## 37535  1
## 37536  1
## 37537  1
## 37538  1
## 37539  1
## 37540  1
## 37541  1
## 37542  1
## 37543  1
## 37544  1
## 37545  1
## 37546  1
## 37547  1
## 37548  1
## 37549  1
## 37550  1
## 37551  1
## 37552  1
## 37553  1
## 37554  1
## 37555  1
## 37556  1
## 37557  1
## 37558  1
## 37559  1
## 37560  1
## 37561  1
## 37562  1
## 37563  1
## 37564  1
## 37565  1
## 37566  1
## 37567  1
## 37568  1
## 37569  1
## 37570  1
## 37571  1
## 37572  1
## 37573  1
## 37574  1
## 37575  1
## 37576  1
## 37577  1
## 37578  1
## 37579  1
## 37580  1
## 37581  1
## 37582  1
## 37583  1
## 37584  1
## 37585  1
## 37586  1
## 37587  1
## 37588  1
## 37589  1
## 37590  1
## 37591  1
## 37592  1
## 37593  1
## 37594  1
## 37595  1
## 37596  1
## 37597  1
## 37598  1
## 37599  1
## 37600  1
## 37601  1
## 37602  1
## 37603  1
## 37604  1
## 37605  1
## 37606  1
## 37607  1
## 37608  1
## 37609  1
## 37610  1
## 37611  1
## 37612  1
## 37613  1
## 37614  1
## 37615  1
## 37616  1
## 37617  1
## 37618  1
## 37619  1
## 37620  1
## 37621  1
## 37622  1
## 37623  1
## 37624  1
## 37625  1
## 37626  1
## 37627  1
## 37628  1
## 37629  1
## 37630  1
## 37631  1
## 37632  1
## 37633  1
## 37634  1
## 37635  1
## 37636  1
## 37637  1
## 37638  1
## 37639  1
## 37640  1
## 37641  1
## 37642  1
## 37643  1
## 37644  1
## 37645  1
## 37646  1
## 37647  1
## 37648  1
## 37649  1
## 37650  1
## 37651  1
## 37652  1
## 37653  1
## 37654  1
## 37655  1
## 37656  1
## 37657  1
## 37658  1
## 37659  1
## 37660  1
## 37661  1
## 37662  1
## 37663  1
## 37664  1
## 37665  1
## 37666  1
## 37667  1
## 37668  1
## 37669  1
## 37670  1
## 37671  1
## 37672  1
## 37673  1
## 37674  1
## 37675  1
## 37676  1
## 37677  1
## 37678  1
## 37679  1
## 37680  1
## 37681  1
## 37682  1
## 37683  1
## 37684  1
## 37685  1
## 37686  1
## 37687  1
## 37688  1
## 37689  1
## 37690  1
## 37691  1
## 37692  1
## 37693  1
## 37694  1
## 37695  1
## 37696  1
## 37697  1
## 37698  1
## 37699  1
## 37700  1
## 37701  1
## 37702  1
## 37703  1
## 37704  1
## 37705  1
## 37706  1
## 37707  1
## 37708  1
## 37709  1
## 37710  1
## 37711  1
## 37712  1
## 37713  1
## 37714  1
## 37715  1
## 37716  1
## 37717  1
## 37718  1
## 37719  1
## 37720  1
## 37721  1
## 37722  1
## 37723  1
## 37724  1
## 37725  1
## 37726  1
## 37727  1
## 37728  1
## 37729  1
## 37730  1
## 37731  1
## 37732  1
## 37733  1
## 37734  1
## 37735  1
## 37736  1
## 37737  1
## 37738  1
## 37739  1
## 37740  1
## 37741  1
## 37742  1
## 37743  1
## 37744  1
## 37745  1
## 37746  1
## 37747  1
## 37748  1
## 37749  1
## 37750  1
## 37751  1
## 37752  1
## 37753  1
## 37754  1
## 37755  1
## 37756  1
## 37757  1
## 37758  1
## 37759  1
## 37760  1
## 37761  1
## 37762  1
## 37763  1
## 37764  1
## 37765  1
## 37766  1
## 37767  1
## 37768  1
## 37769  1
## 37770  1
## 37771  1
## 37772  1
## 37773  1
## 37774  1
## 37775  1
## 37776  1
## 37777  1
## 37778  1
## 37779  1
## 37780  1
## 37781  1
## 37782  1
## 37783  1
## 37784  1
## 37785  1
## 37786  1
## 37787  1
## 37788  1
## 37789  1
## 37790  1
## 37791  1
## 37792  1
## 37793  1
## 37794  1
## 37795  1
## 37796  1
## 37797  1
## 37798  1
## 37799  1
## 37800  1
## 37801  1
## 37802  1
## 37803  1
## 37804  1
## 37805  1
## 37806  1
## 37807  1
## 37808  1
## 37809  1
## 37810  1
## 37811  1
## 37812  1
## 37813  1
## 37814  1
## 37815  1
## 37816  1
## 37817  1
## 37818  1
## 37819  1
## 37820  1
## 37821  1
## 37822  1
## 37823  1
## 37824  1
## 37825  1
## 37826  1
## 37827  1
## 37828  1
## 37829  1
## 37830  1
## 37831  1
## 37832  1
## 37833  1
## 37834  1
## 37835  1
## 37836  1
## 37837  1
## 37838  1
## 37839  1
## 37840  1
## 37841  1
## 37842  1
## 37843  1
## 37844  1
## 37845  1
## 37846  1
## 37847  1
## 37848  1
## 37849  1
## 37850  1
## 37851  1
## 37852  1
## 37853  1
## 37854  1
## 37855  1
## 37856  1
## 37857  1
## 37858  1
## 37859  1
## 37860  1
## 37861  1
## 37862  1
## 37863  1
## 37864  1
## 37865  1
## 37866  1
## 37867  1
## 37868  1
## 37869  1
## 37870  1
## 37871  1
## 37872  1
## 37873  1
## 37874  1
## 37875  1
## 37876  1
## 37877  1
## 37878  1
## 37879  1
## 37880  1
## 37881  1
## 37882  1
## 37883  1
## 37884  1
## 37885  1
## 37886  1
## 37887  1
## 37888  1
## 37889  1
## 37890  1
## 37891  1
## 37892  1
## 37893  1
## 37894  1
## 37895  1
## 37896  1
## 37897  1
## 37898  1
## 37899  1
## 37900  1
## 37901  1
## 37902  1
## 37903  1
## 37904  1
## 37905  1
## 37906  1
## 37907  1
## 37908  1
## 37909  1
## 37910  1
## 37911  1
## 37912  1
## 37913  1
## 37914  1
## 37915  1
## 37916  1
## 37917  1
## 37918  1
## 37919  1
## 37920  1
## 37921  1
## 37922  1
## 37923  1
## 37924  1
## 37925  1
## 37926  1
## 37927  1
## 37928  1
## 37929  1
## 37930  1
## 37931  1
## 37932  1
## 37933  1
## 37934  1
## 37935  1
## 37936  1
## 37937  1
## 37938  1
## 37939  1
## 37940  1
## 37941  1
## 37942  1
## 37943  1
## 37944  1
## 37945  1
## 37946  1
## 37947  1
## 37948  1
## 37949  1
## 37950  1
## 37951  1
## 37952  1
## 37953  1
## 37954  1
## 37955  1
## 37956  1
## 37957  1
## 37958  1
## 37959  1
## 37960  1
## 37961  1
## 37962  1
## 37963  1
## 37964  1
## 37965  1
## 37966  1
## 37967  1
## 37968  1
## 37969  1
## 37970  1
## 37971  1
## 37972  1
## 37973  1
## 37974  1
## 37975  1
## 37976  1
## 37977  1
## 37978  1
## 37979  1
## 37980  1
## 37981  1
## 37982  1
## 37983  1
## 37984  1
## 37985  1
## 37986  1
## 37987  1
## 37988  1
## 37989  1
## 37990  1
## 37991  1
## 37992  1
## 37993  1
## 37994  1
## 37995  1
## 37996  1
## 37997  1
## 37998  1
## 37999  1
## 38000  1
## 38001  1
## 38002  1
## 38003  1
## 38004  1
## 38005  1
## 38006  1
## 38007  1
## 38008  1
## 38009  1
## 38010  1
## 38011  1
## 38012  1
## 38013  1
## 38014  1
## 38015  1
## 38016  1
## 38017  1
## 38018  1
## 38019  1
## 38020  1
## 38021  1
## 38022  1
## 38023  1
## 38024  1
## 38025  1
## 38026  1
## 38027  1
## 38028  1
## 38029  1
## 38030  1
## 38031  1
## 38032  1
## 38033  1
## 38034  1
## 38035  1
## 38036  1
## 38037  1
## 38038  1
## 38039  1
## 38040  1
## 38041  1
## 38042  1
## 38043  1
## 38044  1
## 38045  1
## 38046  1
## 38047  1
## 38048  1
## 38049  1
## 38050  1
## 38051  1
## 38052  1
## 38053  1
## 38054  1
## 38055  1
## 38056  1
## 38057  1
## 38058  1
## 38059  1
## 38060  1
## 38061  1
## 38062  1
## 38063  1
## 38064  1
## 38065  1
## 38066  1
## 38067  1
## 38068  1
## 38069  1
## 38070  1
## 38071  1
## 38072  1
## 38073  1
## 38074  1
## 38075  1
## 38076  1
## 38077  1
## 38078  1
## 38079  1
## 38080  1
## 38081  1
## 38082  1
## 38083  1
## 38084  1
## 38085  1
## 38086  1
## 38087  1
## 38088  1
## 38089  1
## 38090  1
## 38091  1
## 38092  1
## 38093  1
## 38094  1
## 38095  1
## 38096  1
## 38097  1
## 38098  1
## 38099  1
## 38100  1
## 38101  1
## 38102  1
## 38103  1
## 38104  1
## 38105  1
## 38106  1
## 38107  1
## 38108  1
## 38109  1
## 38110  1
## 38111  1
## 38112  1
## 38113  1
## 38114  1
## 38115  1
## 38116  1
## 38117  1
## 38118  1
## 38119  1
## 38120  1
## 38121  1
## 38122  1
## 38123  1
## 38124  1
## 38125  1
## 38126  1
## 38127  1
## 38128  1
## 38129  1
## 38130  1
## 38131  1
## 38132  1
## 38133  1
## 38134  1
## 38135  1
## 38136  1
## 38137  1
## 38138  1
## 38139  1
## 38140  1
## 38141  1
## 38142  1
## 38143  1
## 38144  1
## 38145  1
## 38146  1
## 38147  1
## 38148  1
## 38149  1
## 38150  1
## 38151  1
## 38152  1
## 38153  1
## 38154  1
## 38155  1
## 38156  1
## 38157  1
## 38158  1
## 38159  1
## 38160  1
## 38161  1
## 38162  1
## 38163  1
## 38164  1
## 38165  1
## 38166  1
## 38167  1
## 38168  1
## 38169  1
## 38170  1
## 38171  1
## 38172  1
## 38173  1
## 38174  1
## 38175  1
## 38176  1
## 38177  1
## 38178  1
## 38179  1
## 38180  1
## 38181  1
## 38182  1
## 38183  1
## 38184  1
## 38185  1
## 38186  1
## 38187  1
## 38188  1
## 38189  1
## 38190  1
## 38191  1
## 38192  1
## 38193  1
## 38194  1
## 38195  1
## 38196  1
## 38197  1
## 38198  1
## 38199  1
## 38200  1
## 38201  1
## 38202  1
## 38203  1
## 38204  1
## 38205  1
## 38206  1
## 38207  1
## 38208  1
## 38209  1
## 38210  1
## 38211  1
## 38212  1
## 38213  1
## 38214  1
## 38215  1
## 38216  1
## 38217  1
## 38218  1
## 38219  1
## 38220  1
## 38221  1
## 38222  1
## 38223  1
## 38224  1
## 38225  1
## 38226  1
## 38227  1
## 38228  1
## 38229  1
## 38230  1
## 38231  1
## 38232  1
## 38233  1
## 38234  1
## 38235  1
## 38236  1
## 38237  1
## 38238  1
## 38239  1
## 38240  1
## 38241  1
## 38242  1
## 38243  1
## 38244  1
## 38245  1
## 38246  1
## 38247  1
## 38248  1
## 38249  1
## 38250  1
## 38251  1
## 38252  1
## 38253  1
## 38254  1
## 38255  1
## 38256  1
## 38257  1
## 38258  1
## 38259  1
## 38260  1
## 38261  1
## 38262  1
## 38263  1
## 38264  1
## 38265  1
## 38266  1
## 38267  1
## 38268  1
## 38269  1
## 38270  1
## 38271  1
## 38272  1
## 38273  1
## 38274  1
## 38275  1
## 38276  1
## 38277  1
## 38278  1
## 38279  1
## 38280  1
## 38281  1
## 38282  1
## 38283  1
## 38284  1
## 38285  1
## 38286  1
## 38287  1
## 38288  1
## 38289  1
## 38290  1
## 38291  1
## 38292  1
## 38293  1
## 38294  1
## 38295  1
## 38296  1
## 38297  1
## 38298  1
## 38299  1
## 38300  1
## 38301  1
## 38302  1
## 38303  1
## 38304  1
## 38305  1
## 38306  1
## 38307  1
## 38308  1
## 38309  1
## 38310  1
## 38311  1
## 38312  1
## 38313  1
## 38314  1
## 38315  1
## 38316  1
## 38317  1
## 38318  1
## 38319  1
## 38320  1
## 38321  1
## 38322  1
## 38323  1
## 38324  1
## 38325  1
## 38326  1
## 38327  1
## 38328  1
## 38329  1
## 38330  1
## 38331  1
## 38332  1
## 38333  1
## 38334  1
## 38335  1
## 38336  1
## 38337  1
## 38338  1
## 38339  1
## 38340  1
## 38341  1
## 38342  1
## 38343  1
## 38344  1
## 38345  1
## 38346  1
## 38347  1
## 38348  1
## 38349  1
## 38350  1
## 38351  1
## 38352  1
## 38353  1
## 38354  1
## 38355  1
## 38356  1
## 38357  1
## 38358  1
## 38359  1
## 38360  1
## 38361  1
## 38362  1
## 38363  1
## 38364  1
## 38365  1
## 38366  1
## 38367  1
## 38368  1
## 38369  1
## 38370  1
## 38371  1
## 38372  1
## 38373  1
## 38374  1
## 38375  1
## 38376  1
## 38377  1
## 38378  1
## 38379  1
## 38380  1
## 38381  1
## 38382  1
## 38383  1
## 38384  1
## 38385  1
## 38386  1
## 38387  1
## 38388  1
## 38389  1
## 38390  1
## 38391  1
## 38392  1
## 38393  1
## 38394  1
## 38395  1
## 38396  1
## 38397  1
## 38398  1
## 38399  1
## 38400  1
## 38401  1
## 38402  1
## 38403  1
## 38404  1
## 38405  1
## 38406  1
## 38407  1
## 38408  1
## 38409  1
## 38410  1
## 38411  1
## 38412  1
## 38413  1
## 38414  1
## 38415  1
## 38416  1
## 38417  1
## 38418  1
## 38419  1
## 38420  1
## 38421  1
## 38422  1
## 38423  1
## 38424  1
## 38425  1
## 38426  1
## 38427  1
## 38428  1
## 38429  1
## 38430  1
## 38431  1
## 38432  1
## 38433  1
## 38434  1
## 38435  1
## 38436  1
## 38437  1
## 38438  1
## 38439  1
## 38440  1
## 38441  1
## 38442  1
## 38443  1
## 38444  1
## 38445  1
## 38446  1
## 38447  1
## 38448  1
## 38449  1
## 38450  1
## 38451  1
## 38452  1
## 38453  1
## 38454  1
## 38455  1
## 38456  1
## 38457  1
## 38458  1
## 38459  1
## 38460  1
## 38461  1
## 38462  1
## 38463  1
## 38464  1
## 38465  1
## 38466  1
## 38467  1
## 38468  1
## 38469  1
## 38470  1
## 38471  1
## 38472  1
## 38473  1
## 38474  1
## 38475  1
## 38476  1
## 38477  1
## 38478  1
## 38479  1
## 38480  1
## 38481  1
## 38482  1
## 38483  1
## 38484  1
## 38485  1
## 38486  1
## 38487  1
## 38488  1
## 38489  1
## 38490  1
## 38491  1
## 38492  1
## 38493  1
## 38494  1
## 38495  1
## 38496  1
## 38497  1
## 38498  1
## 38499  1
## 38500  1
## 38501  1
## 38502  1
## 38503  1
## 38504  1
## 38505  1
## 38506  1
## 38507  1
## 38508  1
## 38509  1
## 38510  1
## 38511  1
## 38512  1
## 38513  1
## 38514  1
## 38515  1
## 38516  1
## 38517  1
## 38518  1
## 38519  1
## 38520  1
## 38521  1
## 38522  1
## 38523  1
## 38524  1
## 38525  1
## 38526  1
## 38527  1
## 38528  1
## 38529  1
## 38530  1
## 38531  1
## 38532  1
## 38533  1
## 38534  1
## 38535  1
## 38536  1
## 38537  1
## 38538  1
## 38539  1
## 38540  1
## 38541  1
## 38542  1
## 38543  1
## 38544  1
## 38545  1
## 38546  1
## 38547  1
## 38548  1
## 38549  1
## 38550  1
## 38551  1
## 38552  1
## 38553  1
## 38554  1
## 38555  1
## 38556  1
## 38557  1
## 38558  1
## 38559  1
## 38560  1
## 38561  1
## 38562  1
## 38563  1
## 38564  1
## 38565  1
## 38566  1
## 38567  1
## 38568  1
## 38569  1
## 38570  1
## 38571  1
## 38572  1
## 38573  1
## 38574  1
## 38575  1
## 38576  1
## 38577  1
## 38578  1
## 38579  1
## 38580  1
## 38581  1
## 38582  1
## 38583  1
## 38584  1
## 38585  1
## 38586  1
## 38587  1
## 38588  1
## 38589  1
## 38590  1
## 38591  1
## 38592  1
## 38593  1
## 38594  1
## 38595  1
## 38596  1
## 38597  1
## 38598  1
## 38599  1
## 38600  1
## 38601  1
## 38602  1
## 38603  1
## 38604  1
## 38605  1
## 38606  1
## 38607  1
## 38608  1
## 38609  1
## 38610  1
## 38611  1
## 38612  1
## 38613  1
## 38614  1
## 38615  1
## 38616  1
## 38617  1
## 38618  1
## 38619  1
## 38620  1
## 38621  1
## 38622  1
## 38623  1
## 38624  1
## 38625  1
## 38626  1
## 38627  1
## 38628  1
## 38629  1
## 38630  1
## 38631  1
## 38632  1
## 38633  1
## 38634  1
## 38635  1
## 38636  1
## 38637  1
## 38638  1
## 38639  1
## 38640  1
## 38641  1
## 38642  1
## 38643  1
## 38644  1
## 38645  1
## 38646  1
## 38647  1
## 38648  1
## 38649  1
## 38650  1
## 38651  1
## 38652  1
## 38653  1
## 38654  1
## 38655  1
## 38656  1
## 38657  1
## 38658  1
## 38659  1
## 38660  1
## 38661  1
## 38662  1
## 38663  1
## 38664  1
## 38665  1
## 38666  1
## 38667  1
## 38668  1
## 38669  1
## 38670  1
## 38671  1
## 38672  1
## 38673  1
## 38674  1
## 38675  1
## 38676  1
## 38677  1
## 38678  1
## 38679  1
## 38680  1
## 38681  1
## 38682  1
## 38683  1
## 38684  1
## 38685  1
## 38686  1
## 38687  1
## 38688  1
## 38689  1
## 38690  1
## 38691  1
## 38692  1
## 38693  1
## 38694  1
## 38695  1
## 38696  1
## 38697  1
## 38698  1
## 38699  1
## 38700  1
## 38701  1
## 38702  1
## 38703  1
## 38704  1
## 38705  1
## 38706  1
## 38707  1
## 38708  1
## 38709  1
## 38710  1
## 38711  1
## 38712  1
## 38713  1
## 38714  1
## 38715  1
## 38716  1
## 38717  1
## 38718  1
## 38719  1
## 38720  1
## 38721  1
## 38722  1
## 38723  1
## 38724  1
## 38725  1
## 38726  1
## 38727  1
## 38728  1
## 38729  1
## 38730  1
## 38731  1
## 38732  1
## 38733  1
## 38734  1
## 38735  1
## 38736  1
## 38737  1
## 38738  1
## 38739  1
## 38740  1
## 38741  1
## 38742  1
## 38743  1
## 38744  1
## 38745  1
## 38746  1
## 38747  1
## 38748  1
## 38749  1
## 38750  1
## 38751  1
## 38752  1
## 38753  1
## 38754  1
## 38755  1
## 38756  1
## 38757  1
## 38758  1
## 38759  1
## 38760  1
## 38761  1
## 38762  1
## 38763  1
## 38764  1
## 38765  1
## 38766  1
## 38767  1
## 38768  1
## 38769  1
## 38770  1
## 38771  1
## 38772  1
## 38773  1
## 38774  1
## 38775  1
## 38776  1
## 38777  1
## 38778  1
## 38779  1
## 38780  1
## 38781  1
## 38782  1
## 38783  1
## 38784  1
## 38785  1
## 38786  1
## 38787  1
## 38788  1
## 38789  1
## 38790  1
## 38791  1
## 38792  1
## 38793  1
## 38794  1
## 38795  1
## 38796  1
## 38797  1
## 38798  1
## 38799  1
## 38800  1
## 38801  1
## 38802  1
## 38803  1
## 38804  1
## 38805  1
## 38806  1
## 38807  1
## 38808  1
## 38809  1
## 38810  1
## 38811  1
## 38812  1
## 38813  1
## 38814  1
## 38815  1
## 38816  1
## 38817  1
## 38818  1
## 38819  1
## 38820  1
## 38821  1
## 38822  1
## 38823  1
## 38824  1
## 38825  1
## 38826  1
## 38827  1
## 38828  1
## 38829  1
## 38830  1
## 38831  1
## 38832  1
## 38833  1
## 38834  1
## 38835  1
## 38836  1
## 38837  1
## 38838  1
## 38839  1
## 38840  1
## 38841  1
## 38842  1
## 38843  1
## 38844  1
## 38845  1
## 38846  1
## 38847  1
## 38848  1
## 38849  1
## 38850  1
## 38851  1
## 38852  1
## 38853  1
## 38854  1
## 38855  1
## 38856  1
## 38857  1
## 38858  1
## 38859  1
## 38860  1
## 38861  1
## 38862  1
## 38863  1
## 38864  1
## 38865  1
## 38866  1
## 38867  1
## 38868  1
## 38869  1
## 38870  1
## 38871  1
## 38872  1
## 38873  1
## 38874  1
## 38875  1
## 38876  1
## 38877  1
## 38878  1
## 38879  1
## 38880  1
## 38881  1
## 38882  1
## 38883  1
## 38884  1
## 38885  1
## 38886  1
## 38887  1
## 38888  1
## 38889  1
## 38890  1
## 38891  1
## 38892  1
## 38893  1
## 38894  1
## 38895  1
## 38896  1
## 38897  1
## 38898  1
## 38899  1
## 38900  1
## 38901  1
## 38902  1
## 38903  1
## 38904  1
## 38905  1
## 38906  1
## 38907  1
## 38908  1
## 38909  1
## 38910  1
## 38911  1
## 38912  1
## 38913  1
## 38914  1
## 38915  1
## 38916  1
## 38917  1
## 38918  1
## 38919  1
## 38920  1
## 38921  1
## 38922  1
## 38923  1
## 38924  1
## 38925  1
## 38926  1
## 38927  1
## 38928  1
## 38929  1
## 38930  1
## 38931  1
## 38932  1
## 38933  1
## 38934  1
## 38935  1
## 38936  1
## 38937  1
## 38938  1
## 38939  1
## 38940  1
## 38941  1
## 38942  1
## 38943  1
## 38944  1
## 38945  1
## 38946  1
## 38947  1
## 38948  1
## 38949  1
## 38950  1
## 38951  1
## 38952  1
## 38953  1
## 38954  1
## 38955  1
## 38956  1
## 38957  1
## 38958  1
## 38959  1
## 38960  1
## 38961  1
## 38962  1
## 38963  1
## 38964  1
## 38965  1
## 38966  1
## 38967  1
## 38968  1
## 38969  1
## 38970  1
## 38971  1
## 38972  1
## 38973  1
## 38974  1
## 38975  1
## 38976  1
## 38977  1
## 38978  1
## 38979  1
## 38980  1
## 38981  1
## 38982  1
## 38983  1
## 38984  1
## 38985  1
## 38986  1
## 38987  1
## 38988  1
## 38989  1
## 38990  1
## 38991  1
## 38992  1
## 38993  1
## 38994  1
## 38995  1
## 38996  1
## 38997  1
## 38998  1
## 38999  1
## 39000  1
## 39001  1
## 39002  1
## 39003  1
## 39004  1
## 39005  1
## 39006  1
## 39007  1
## 39008  1
## 39009  1
## 39010  1
## 39011  1
## 39012  1
## 39013  1
## 39014  1
## 39015  1
## 39016  1
## 39017  1
## 39018  1
## 39019  1
## 39020  1
## 39021  1
## 39022  1
## 39023  1
## 39024  1
## 39025  1
## 39026  1
## 39027  1
## 39028  1
## 39029  1
## 39030  1
## 39031  1
## 39032  1
## 39033  1
## 39034  1
## 39035  1
## 39036  1
## 39037  1
## 39038  1
## 39039  1
## 39040  1
## 39041  1
## 39042  1
## 39043  1
## 39044  1
## 39045  1
## 39046  1
## 39047  1
## 39048  1
## 39049  1
## 39050  1
## 39051  1
## 39052  1
## 39053  1
## 39054  1
## 39055  1
## 39056  1
## 39057  1
## 39058  1
## 39059  1
## 39060  1
## 39061  1
## 39062  1
## 39063  1
## 39064  1
## 39065  1
## 39066  1
## 39067  1
## 39068  1
## 39069  1
## 39070  1
## 39071  1
## 39072  1
## 39073  1
## 39074  1
## 39075  1
## 39076  1
## 39077  1
## 39078  1
## 39079  1
## 39080  1
## 39081  1
## 39082  1
## 39083  1
## 39084  1
## 39085  1
## 39086  1
## 39087  1
## 39088  1
## 39089  1
## 39090  1
## 39091  1
## 39092  1
## 39093  1
## 39094  1
## 39095  1
## 39096  1
## 39097  1
## 39098  1
## 39099  1
## 39100  1
## 39101  1
## 39102  1
## 39103  1
## 39104  1
## 39105  1
## 39106  1
## 39107  1
## 39108  1
## 39109  1
## 39110  1
## 39111  1
## 39112  1
## 39113  1
## 39114  1
## 39115  1
## 39116  1
## 39117  1
## 39118  1
## 39119  1
## 39120  1
## 39121  1
## 39122  1
## 39123  1
## 39124  1
## 39125  1
## 39126  1
## 39127  1
## 39128  1
## 39129  1
## 39130  1
## 39131  1
## 39132  1
## 39133  1
## 39134  1
## 39135  1
## 39136  1
## 39137  1
## 39138  1
## 39139  1
## 39140  1
## 39141  1
## 39142  1
## 39143  1
## 39144  1
## 39145  1
## 39146  1
## 39147  1
## 39148  1
## 39149  1
## 39150  1
## 39151  1
## 39152  1
## 39153  1
## 39154  1
## 39155  1
## 39156  1
## 39157  1
## 39158  1
## 39159  1
## 39160  1
## 39161  1
## 39162  1
## 39163  1
## 39164  1
## 39165  1
## 39166  1
## 39167  1
## 39168  1
## 39169  1
## 39170  1
## 39171  1
## 39172  1
## 39173  1
## 39174  1
## 39175  1
## 39176  1
## 39177  1
## 39178  1
## 39179  1
## 39180  1
## 39181  1
## 39182  1
## 39183  1
## 39184  1
## 39185  1
## 39186  1
## 39187  1
## 39188  1
## 39189  1
## 39190  1
## 39191  1
## 39192  1
## 39193  1
## 39194  1
## 39195  1
## 39196  1
## 39197  1
## 39198  1
## 39199  1
## 39200  1
## 39201  1
## 39202  1
## 39203  1
## 39204  1
## 39205  1
## 39206  1
## 39207  1
## 39208  1
## 39209  1
## 39210  1
## 39211  1
## 39212  1
## 39213  1
## 39214  1
## 39215  1
## 39216  1
## 39217  1
## 39218  1
## 39219  1
## 39220  1
## 39221  1
## 39222  1
## 39223  1
## 39224  1
## 39225  1
## 39226  1
## 39227  1
## 39228  1
## 39229  1
## 39230  1
## 39231  1
## 39232  1
## 39233  1
## 39234  1
## 39235  1
## 39236  1
## 39237  1
## 39238  1
## 39239  1
## 39240  1
## 39241  1
## 39242  1
## 39243  1
## 39244  1
## 39245  1
## 39246  1
## 39247  1
## 39248  1
## 39249  1
## 39250  1
## 39251  1
## 39252  1
## 39253  1
## 39254  1
## 39255  1
## 39256  1
## 39257  1
## 39258  1
## 39259  1
## 39260  1
## 39261  1
## 39262  1
## 39263  1
## 39264  1
## 39265  1
## 39266  1
## 39267  1
## 39268  1
## 39269  1
## 39270  1
## 39271  1
## 39272  1
## 39273  1
## 39274  1
## 39275  1
## 39276  1
## 39277  1
## 39278  1
## 39279  1
## 39280  1
## 39281  1
## 39282  1
## 39283  1
## 39284  1
## 39285  1
## 39286  1
## 39287  1
## 39288  1
## 39289  1
## 39290  1
## 39291  1
## 39292  1
## 39293  1
## 39294  1
## 39295  1
## 39296  1
## 39297  1
## 39298  1
## 39299  1
## 39300  1
## 39301  1
## 39302  1
## 39303  1
## 39304  1
## 39305  1
## 39306  1
## 39307  1
## 39308  1
## 39309  1
## 39310  1
## 39311  1
## 39312  1
## 39313  1
## 39314  1
## 39315  1
## 39316  1
## 39317  1
## 39318  1
## 39319  1
## 39320  1
## 39321  1
## 39322  1
## 39323  1
## 39324  1
## 39325  1
## 39326  1
## 39327  1
## 39328  1
## 39329  1
## 39330  1
## 39331  1
## 39332  1
## 39333  1
## 39334  1
## 39335  1
## 39336  1
## 39337  1
## 39338  1
## 39339  1
## 39340  1
## 39341  1
## 39342  1
## 39343  1
## 39344  1
## 39345  1
## 39346  1
## 39347  1
## 39348  1
## 39349  1
## 39350  1
## 39351  1
## 39352  1
## 39353  1
## 39354  1
## 39355  1
## 39356  1
## 39357  1
## 39358  1
## 39359  1
## 39360  1
## 39361  1
## 39362  1
## 39363  1
## 39364  1
## 39365  1
## 39366  1
## 39367  1
## 39368  1
## 39369  1
## 39370  1
## 39371  1
## 39372  1
## 39373  1
## 39374  1
## 39375  1
## 39376  1
## 39377  1
## 39378  1
## 39379  1
## 39380  1
## 39381  1
## 39382  1
## 39383  1
## 39384  1
## 39385  1
## 39386  1
## 39387  1
## 39388  1
## 39389  1
## 39390  1
## 39391  1
## 39392  1
## 39393  1
## 39394  1
## 39395  1
## 39396  1
## 39397  1
## 39398  1
## 39399  1
## 39400  1
## 39401  1
## 39402  1
## 39403  1
## 39404  1
## 39405  1
## 39406  1
## 39407  1
## 39408  1
## 39409  1
## 39410  1
## 39411  1
## 39412  1
## 39413  1
## 39414  1
## 39415  1
## 39416  1
## 39417  1
## 39418  1
## 39419  1
## 39420  1
## 39421  1
## 39422  1
## 39423  1
## 39424  1
## 39425  1
## 39426  1
## 39427  1
## 39428  1
## 39429  1
## 39430  1
## 39431  1
## 39432  1
## 39433  1
## 39434  1
## 39435  1
## 39436  1
## 39437  1
## 39438  1
## 39439  1
## 39440  1
## 39441  1
## 39442  1
## 39443  1
## 39444  1
## 39445  1
## 39446  1
## 39447  1
## 39448  1
## 39449  1
## 39450  1
## 39451  1
## 39452  1
## 39453  1
## 39454  1
## 39455  1
## 39456  1
## 39457  1
## 39458  1
## 39459  1
## 39460  1
## 39461  1
## 39462  1
## 39463  1
## 39464  1
## 39465  1
## 39466  1
## 39467  1
## 39468  1
## 39469  1
## 39470  1
## 39471  1
## 39472  1
## 39473  1
## 39474  1
## 39475  1
## 39476  1
## 39477  1
## 39478  1
## 39479  1
## 39480  1
## 39481  1
## 39482  1
## 39483  1
## 39484  1
## 39485  1
## 39486  1
## 39487  1
## 39488  1
## 39489  1
## 39490  1
## 39491  1
## 39492  1
## 39493  1
## 39494  1
## 39495  1
## 39496  1
## 39497  1
## 39498  1
## 39499  1
## 39500  1
## 39501  1
## 39502  1
## 39503  1
## 39504  1
## 39505  1
## 39506  1
## 39507  1
## 39508  1
## 39509  1
## 39510  1
## 39511  1
## 39512  1
## 39513  1
## 39514  1
## 39515  1
## 39516  1
## 39517  1
## 39518  1
## 39519  1
## 39520  1
## 39521  1
## 39522  1
## 39523  1
## 39524  1
## 39525  1
## 39526  1
## 39527  1
## 39528  1
## 39529  1
## 39530  1
## 39531  1
## 39532  1
## 39533  1
## 39534  1
## 39535  1
## 39536  1
## 39537  1
## 39538  1
## 39539  1
## 39540  1
## 39541  1
## 39542  1
## 39543  1
## 39544  1
## 39545  1
## 39546  1
## 39547  1
## 39548  1
## 39549  1
## 39550  1
## 39551  1
## 39552  1
## 39553  1
## 39554  1
## 39555  1
## 39556  1
## 39557  1
## 39558  1
## 39559  1
## 39560  1
## 39561  1
## 39562  1
## 39563  1
## 39564  1
## 39565  1
## 39566  1
## 39567  1
## 39568  1
## 39569  1
## 39570  1
## 39571  1
## 39572  1
## 39573  1
## 39574  1
## 39575  1
## 39576  1
## 39577  1
## 39578  1
## 39579  1
## 39580  1
## 39581  1
## 39582  1
## 39583  1
## 39584  1
## 39585  1
## 39586  1
## 39587  1
## 39588  1
## 39589  1
## 39590  1
## 39591  1
## 39592  1
## 39593  1
## 39594  1
## 39595  1
## 39596  1
## 39597  1
## 39598  1
## 39599  1
## 39600  1
## 39601  1
## 39602  1
## 39603  1
## 39604  1
## 39605  1
## 39606  1
## 39607  1
## 39608  1
## 39609  1
## 39610  1
## 39611  1
## 39612  1
## 39613  1
## 39614  1
## 39615  1
## 39616  1
## 39617  1
## 39618  1
## 39619  1
## 39620  1
## 39621  1
## 39622  1
## 39623  1
## 39624  1
## 39625  1
## 39626  1
## 39627  1
## 39628  1
## 39629  1
## 39630  1
## 39631  1
## 39632  1
## 39633  1
## 39634  1
## 39635  1
## 39636  1
## 39637  1
## 39638  1
## 39639  1
## 39640  1
## 39641  1
## 39642  1
## 39643  1
## 39644  1
## 39645  1
## 39646  1
## 39647  1
## 39648  1
## 39649  1
## 39650  1
## 39651  1
## 39652  1
## 39653  1
## 39654  1
## 39655  1
## 39656  1
## 39657  1
## 39658  1
## 39659  1
## 39660  1
## 39661  1
## 39662  1
## 39663  1
## 39664  1
## 39665  1
## 39666  1
## 39667  1
## 39668  1
## 39669  1
## 39670  1
## 39671  1
## 39672  1
## 39673  1
## 39674  1
## 39675  1
## 39676  1
## 39677  1
## 39678  1
## 39679  1
## 39680  1
## 39681  1
## 39682  1
## 39683  1
## 39684  1
## 39685  1
## 39686  1
## 39687  1
## 39688  1
## 39689  1
## 39690  1
## 39691  1
## 39692  1
## 39693  1
## 39694  1
## 39695  1
## 39696  1
## 39697  1
## 39698  1
## 39699  1
## 39700  1
## 39701  1
## 39702  1
## 39703  1
## 39704  1
## 39705  1
## 39706  1
## 39707  1
## 39708  1
## 39709  1
## 39710  1
## 39711  1
## 39712  1
## 39713  1
## 39714  1
## 39715  1
## 39716  1
## 39717  1
## 39718  1
## 39719  1
## 39720  1
## 39721  1
## 39722  1
## 39723  1
## 39724  1
## 39725  1
## 39726  1
## 39727  1
## 39728  1
## 39729  1
## 39730  1
## 39731  1
## 39732  1
## 39733  1
## 39734  1
## 39735  1
## 39736  1
## 39737  1
## 39738  1
## 39739  1
## 39740  1
## 39741  1
## 39742  1
## 39743  1
## 39744  1
## 39745  1
## 39746  1
## 39747  1
## 39748  1
## 39749  1
## 39750  1
## 39751  1
## 39752  1
## 39753  1
## 39754  1
## 39755  1
## 39756  1
## 39757  1
## 39758  1
## 39759  1
## 39760  1
## 39761  1
## 39762  1
## 39763  1
## 39764  1
## 39765  1
## 39766  1
## 39767  1
## 39768  1
## 39769  1
## 39770  1
## 39771  1
## 39772  1
## 39773  1
## 39774  1
## 39775  1
## 39776  1
## 39777  1
## 39778  1
## 39779  1
## 39780  1
## 39781  1
## 39782  1
## 39783  1
## 39784  1
## 39785  1
## 39786  1
## 39787  1
## 39788  1
## 39789  1
## 39790  1
## 39791  1
## 39792  1
## 39793  1
## 39794  1
## 39795  1
## 39796  1
## 39797  1
## 39798  1
## 39799  1
## 39800  1
## 39801  1
## 39802  1
## 39803  1
## 39804  1
## 39805  1
## 39806  1
## 39807  1
## 39808  1
## 39809  1
## 39810  1
## 39811  1
## 39812  1
## 39813  1
## 39814  1
## 39815  1
## 39816  1
## 39817  1
## 39818  1
## 39819  1
## 39820  1
## 39821  1
## 39822  1
## 39823  1
## 39824  1
## 39825  1
## 39826  1
## 39827  1
## 39828  1
## 39829  1
## 39830  1
## 39831  1
## 39832  1
## 39833  1
## 39834  1
## 39835  1
## 39836  1
## 39837  1
## 39838  1
## 39839  1
## 39840  1
## 39841  1
## 39842  1
## 39843  1
## 39844  1
## 39845  1
## 39846  1
## 39847  1
## 39848  1
## 39849  1
## 39850  1
## 39851  1
## 39852  1
## 39853  1
## 39854  1
## 39855  1
## 39856  1
## 39857  1
## 39858  1
## 39859  1
## 39860  1
## 39861  1
## 39862  1
## 39863  1
## 39864  1
## 39865  1
## 39866  1
## 39867  1
## 39868  1
## 39869  1
## 39870  1
## 39871  1
## 39872  1
## 39873  1
## 39874  1
## 39875  1
## 39876  1
## 39877  1
## 39878  1
## 39879  1
## 39880  1
## 39881  1
## 39882  1
## 39883  1
## 39884  1
## 39885  1
## 39886  1
## 39887  1
## 39888  1
## 39889  1
## 39890  1
## 39891  1
## 39892  1
## 39893  1
## 39894  1
## 39895  1
## 39896  1
## 39897  1
## 39898  1
## 39899  1
## 39900  1
## 39901  1
## 39902  1
## 39903  1
## 39904  1
## 39905  1
## 39906  1
## 39907  1
## 39908  1
## 39909  1
## 39910  1
## 39911  1
## 39912  1
## 39913  1
## 39914  1
## 39915  1
## 39916  1
## 39917  1
## 39918  1
## 39919  1
## 39920  1
## 39921  1
## 39922  1
## 39923  1
## 39924  1
## 39925  1
## 39926  1
## 39927  1
## 39928  1
## 39929  1
## 39930  1
## 39931  1
## 39932  1
## 39933  1
## 39934  1
## 39935  1
## 39936  1
## 39937  1
## 39938  1
## 39939  1
## 39940  1
## 39941  1
## 39942  1
## 39943  1
## 39944  1
## 39945  1
## 39946  1
## 39947  1
## 39948  1
## 39949  1
## 39950  1
## 39951  1
## 39952  1
## 39953  1
## 39954  1
## 39955  1
## 39956  1
## 39957  1
## 39958  1
## 39959  1
## 39960  1
## 39961  1
## 39962  1
## 39963  1
## 39964  1
## 39965  1
## 39966  1
## 39967  1
## 39968  1
## 39969  1
## 39970  1
## 39971  1
## 39972  1
## 39973  1
## 39974  1
## 39975  1
## 39976  1
## 39977  1
## 39978  1
## 39979  1
## 39980  1
## 39981  1
## 39982  1
## 39983  1
## 39984  1
## 39985  1
## 39986  1
## 39987  1
## 39988  1
## 39989  1
## 39990  1
## 39991  1
## 39992  1
## 39993  1
## 39994  1
## 39995  1
## 39996  1
## 39997  1
## 39998  1
## 39999  1
## 40000  1
## 40001  1
## 40002  1
## 40003  1
## 40004  1
## 40005  1
## 40006  1
## 40007  1
## 40008  1
## 40009  1
## 40010  1
## 40011  1
## 40012  1
## 40013  1
## 40014  1
## 40015  1
## 40016  1
## 40017  1
## 40018  1
## 40019  1
## 40020  1
## 40021  1
## 40022  1
## 40023  1
## 40024  1
## 40025  1
## 40026  1
## 40027  1
## 40028  1
## 40029  1
## 40030  1
## 40031  1
## 40032  1
## 40033  1
## 40034  1
## 40035  1
## 40036  1
## 40037  1
## 40038  1
## 40039  1
## 40040  1
## 40041  1
## 40042  1
## 40043  1
## 40044  1
## 40045  1
## 40046  1
## 40047  1
## 40048  1
## 40049  1
## 40050  1
## 40051  1
## 40052  1
## 40053  1
## 40054  1
## 40055  1
## 40056  1
## 40057  1
## 40058  1
## 40059  1
## 40060  1
## 40061  1
## 40062  1
## 40063  1
## 40064  1
## 40065  1
## 40066  1
## 40067  1
## 40068  1
## 40069  1
## 40070  1
## 40071  1
## 40072  1
## 40073  1
## 40074  1
## 40075  1
## 40076  1
## 40077  1
## 40078  1
## 40079  1
## 40080  1
## 40081  1
## 40082  1
## 40083  1
## 40084  1
## 40085  1
## 40086  1
## 40087  1
## 40088  1
## 40089  1
## 40090  1
## 40091  1
## 40092  1
## 40093  1
## 40094  1
## 40095  1
## 40096  1
## 40097  1
## 40098  1
## 40099  1
## 40100  1
## 40101  1
## 40102  1
## 40103  1
## 40104  1
## 40105  1
## 40106  1
## 40107  1
## 40108  1
## 40109  1
## 40110  1
## 40111  1
## 40112  1
## 40113  1
## 40114  1
## 40115  1
## 40116  1
## 40117  1
## 40118  1
## 40119  1
## 40120  1
## 40121  1
## 40122  1
## 40123  1
## 40124  1
## 40125  1
## 40126  1
## 40127  1
## 40128  1
## 40129  1
## 40130  1
## 40131  1
## 40132  1
## 40133  1
## 40134  1
## 40135  1
## 40136  1
## 40137  1
## 40138  1
## 40139  1
## 40140  1
## 40141  1
## 40142  1
## 40143  1
## 40144  1
## 40145  1
## 40146  1
## 40147  1
## 40148  1
## 40149  1
## 40150  1
## 40151  1
## 40152  1
## 40153  1
## 40154  1
## 40155  1
## 40156  1
## 40157  1
## 40158  1
## 40159  1
## 40160  1
## 40161  1
## 40162  1
## 40163  1
## 40164  1
## 40165  1
## 40166  1
## 40167  1
## 40168  1
## 40169  1
## 40170  1
## 40171  1
## 40172  1
## 40173  1
## 40174  1
## 40175  1
## 40176  1
## 40177  1
## 40178  1
## 40179  1
## 40180  1
## 40181  1
## 40182  1
## 40183  1
## 40184  1
## 40185  1
## 40186  1
## 40187  1
## 40188  1
## 40189  1
## 40190  1
## 40191  1
## 40192  1
## 40193  1
## 40194  1
## 40195  1
## 40196  1
## 40197  1
## 40198  1
## 40199  1
## 40200  1
## 40201  1
## 40202  1
## 40203  1
## 40204  1
## 40205  1
## 40206  1
## 40207  1
## 40208  1
## 40209  1
## 40210  1
## 40211  1
## 40212  1
## 40213  1
## 40214  1
## 40215  1
## 40216  1
## 40217  1
## 40218  1
## 40219  1
## 40220  1
## 40221  1
## 40222  1
## 40223  1
## 40224  1
## 40225  1
## 40226  1
## 40227  1
## 40228  1
## 40229  1
## 40230  1
## 40231  1
## 40232  1
## 40233  1
## 40234  1
## 40235  1
## 40236  1
## 40237  1
## 40238  1
## 40239  1
## 40240  1
## 40241  1
## 40242  1
## 40243  1
## 40244  1
## 40245  1
## 40246  1
## 40247  1
## 40248  1
## 40249  1
## 40250  1
## 40251  1
## 40252  1
## 40253  1
## 40254  1
## 40255  1
## 40256  1
## 40257  1
## 40258  1
## 40259  1
## 40260  1
## 40261  1
## 40262  1
## 40263  1
## 40264  1
## 40265  1
## 40266  1
## 40267  1
## 40268  1
## 40269  1
## 40270  1
## 40271  1
## 40272  1
## 40273  1
## 40274  1
## 40275  1
## 40276  1
## 40277  1
## 40278  1
## 40279  1
## 40280  1
## 40281  1
## 40282  1
## 40283  1
## 40284  1
## 40285  1
## 40286  1
## 40287  1
## 40288  1
## 40289  1
## 40290  1
## 40291  1
## 40292  1
## 40293  1
## 40294  1
## 40295  1
## 40296  1
## 40297  1
## 40298  1
## 40299  1
## 40300  1
## 40301  1
## 40302  1
## 40303  1
## 40304  1
## 40305  1
## 40306  1
## 40307  1
## 40308  1
## 40309  1
## 40310  1
## 40311  1
## 40312  1
## 40313  1
## 40314  1
## 40315  1
## 40316  1
## 40317  1
## 40318  1
## 40319  1
## 40320  1
## 40321  1
## 40322  1
## 40323  1
## 40324  1
## 40325  1
## 40326  1
## 40327  1
## 40328  1
## 40329  1
## 40330  1
## 40331  1
## 40332  1
## 40333  1
## 40334  1
## 40335  1
## 40336  1
## 40337  1
## 40338  1
## 40339  1
## 40340  1
## 40341  1
## 40342  1
## 40343  1
## 40344  1
## 40345  1
## 40346  1
## 40347  1
## 40348  1
## 40349  1
## 40350  1
## 40351  1
## 40352  1
## 40353  1
## 40354  1
## 40355  1
## 40356  1
## 40357  1
## 40358  1
## 40359  1
## 40360  1
## 40361  1
## 40362  1
## 40363  1
## 40364  1
## 40365  1
## 40366  1
## 40367  1
## 40368  1
## 40369  1
## 40370  1
## 40371  1
## 40372  1
## 40373  1
## 40374  1
## 40375  1
## 40376  1
## 40377  1
## 40378  1
## 40379  1
## 40380  1
## 40381  1
## 40382  1
## 40383  1
## 40384  1
## 40385  1
## 40386  1
## 40387  1
## 40388  1
## 40389  1
## 40390  1
## 40391  1
## 40392  1
## 40393  1
## 40394  1
## 40395  1
## 40396  1
## 40397  1
## 40398  1
## 40399  1
## 40400  1
## 40401  1
## 40402  1
## 40403  1
## 40404  1
## 40405  1
## 40406  1
## 40407  1
## 40408  1
## 40409  1
## 40410  1
## 40411  1
## 40412  1
## 40413  1
## 40414  1
## 40415  1
## 40416  1
## 40417  1
## 40418  1
## 40419  1
## 40420  1
## 40421  1
## 40422  1
## 40423  1
## 40424  1
## 40425  1
## 40426  1
## 40427  1
## 40428  1
## 40429  1
## 40430  1
## 40431  1
## 40432  1
## 40433  1
## 40434  1
## 40435  1
## 40436  1
## 40437  1
## 40438  1
## 40439  1
## 40440  1
## 40441  1
## 40442  1
## 40443  1
## 40444  1
## 40445  1
## 40446  1
## 40447  1
## 40448  1
## 40449  1
## 40450  1
## 40451  1
## 40452  1
## 40453  1
## 40454  1
## 40455  1
## 40456  1
## 40457  1
## 40458  1
## 40459  1
## 40460  1
## 40461  1
## 40462  1
## 40463  1
## 40464  1
## 40465  1
## 40466  1
## 40467  1
## 40468  1
## 40469  1
## 40470  1
## 40471  1
## 40472  1
## 40473  1
## 40474  1
## 40475  1
## 40476  1
## 40477  1
## 40478  1
## 40479  1
## 40480  1
## 40481  1
## 40482  1
## 40483  1
## 40484  1
## 40485  1
## 40486  1
## 40487  1
## 40488  1
## 40489  1
## 40490  1
## 40491  1
## 40492  1
## 40493  1
## 40494  1
## 40495  1
## 40496  1
## 40497  1
## 40498  1
## 40499  1
## 40500  1
## 40501  1
## 40502  1
## 40503  1
## 40504  1
## 40505  1
## 40506  1
## 40507  1
## 40508  1
## 40509  1
## 40510  1
## 40511  1
## 40512  1
## 40513  1
## 40514  1
## 40515  1
## 40516  1
## 40517  1
## 40518  1
## 40519  1
## 40520  1
## 40521  1
## 40522  1
## 40523  1
## 40524  1
## 40525  1
## 40526  1
## 40527  1
## 40528  1
## 40529  1
## 40530  1
## 40531  1
## 40532  1
## 40533  1
## 40534  1
## 40535  1
## 40536  1
## 40537  1
## 40538  1
## 40539  1
## 40540  1
## 40541  1
## 40542  1
## 40543  1
## 40544  1
## 40545  1
## 40546  1
## 40547  1
## 40548  1
## 40549  1
## 40550  1
## 40551  1
## 40552  1
## 40553  1
## 40554  1
## 40555  1
## 40556  1
## 40557  1
## 40558  1
## 40559  1
## 40560  1
## 40561  1
## 40562  1
## 40563  1
## 40564  1
## 40565  1
## 40566  1
## 40567  1
## 40568  1
## 40569  1
## 40570  1
## 40571  1
## 40572  1
## 40573  1
## 40574  1
## 40575  1
## 40576  1
## 40577  1
## 40578  1
## 40579  1
## 40580  1
## 40581  1
## 40582  1
## 40583  1
## 40584  1
## 40585  1
## 40586  1
## 40587  1
## 40588  1
## 40589  1
## 40590  1
## 40591  1
## 40592  1
## 40593  1
## 40594  1
## 40595  1
## 40596  1
## 40597  1
## 40598  1
## 40599  1
## 40600  1
## 40601  1
## 40602  1
## 40603  1
## 40604  1
## 40605  1
## 40606  1
## 40607  1
## 40608  1
## 40609  1
## 40610  1
## 40611  1
## 40612  1
## 40613  1
## 40614  1
## 40615  1
## 40616  1
## 40617  1
## 40618  1
## 40619  1
## 40620  1
## 40621  1
## 40622  1
## 40623  1
## 40624  1
## 40625  1
## 40626  1
## 40627  1
## 40628  1
## 40629  1
## 40630  1
## 40631  1
## 40632  1
## 40633  1
## 40634  1
## 40635  1
## 40636  1
## 40637  1
## 40638  1
## 40639  1
## 40640  1
## 40641  1
## 40642  1
## 40643  1
## 40644  1
## 40645  1
## 40646  1
## 40647  1
## 40648  1
## 40649  1
## 40650  1
## 40651  1
## 40652  1
## 40653  1
## 40654  1
## 40655  1
## 40656  1
## 40657  1
## 40658  1
## 40659  1
## 40660  1
## 40661  1
## 40662  1
## 40663  1
## 40664  1
## 40665  1
## 40666  1
## 40667  1
## 40668  1
## 40669  1
## 40670  1
## 40671  1
## 40672  1
## 40673  1
## 40674  1
## 40675  1
## 40676  1
## 40677  1
## 40678  1
## 40679  1
## 40680  1
## 40681  1
## 40682  1
## 40683  1
## 40684  1
## 40685  1
## 40686  1
## 40687  1
## 40688  1
## 40689  1
## 40690  1
## 40691  1
## 40692  1
## 40693  1
## 40694  1
## 40695  1
## 40696  1
## 40697  1
## 40698  1
## 40699  1
## 40700  1
## 40701  1
## 40702  1
## 40703  1
## 40704  1
## 40705  1
## 40706  1
## 40707  1
## 40708  1
## 40709  1
## 40710  1
## 40711  1
## 40712  1
## 40713  1
## 40714  1
## 40715  1
## 40716  1
## 40717  1
## 40718  1
## 40719  1
## 40720  1
## 40721  1
## 40722  1
## 40723  1
## 40724  1
## 40725  1
## 40726  1
## 40727  1
## 40728  1
## 40729  1
## 40730  1
## 40731  1
## 40732  1
## 40733  1
## 40734  1
## 40735  1
## 40736  1
## 40737  1
## 40738  1
## 40739  1
## 40740  1
## 40741  1
## 40742  1
## 40743  1
## 40744  1
## 40745  1
## 40746  1
## 40747  1
## 40748  1
## 40749  1
## 40750  1
## 40751  1
## 40752  1
## 40753  1
## 40754  1
## 40755  1
## 40756  1
## 40757  1
## 40758  1
## 40759  1
## 40760  1
## 40761  1
## 40762  1
## 40763  1
## 40764  1
## 40765  1
## 40766  1
## 40767  1
## 40768  1
## 40769  1
## 40770  1
## 40771  1
## 40772  1
## 40773  1
## 40774  1
## 40775  1
## 40776  1
## 40777  1
## 40778  1
## 40779  1
## 40780  1
## 40781  1
## 40782  1
## 40783  1
## 40784  1
## 40785  1
## 40786  1
## 40787  1
## 40788  1
## 40789  1
## 40790  1
## 40791  1
## 40792  1
## 40793  1
## 40794  1
## 40795  1
## 40796  1
## 40797  1
## 40798  1
## 40799  1
## 40800  1
## 40801  1
## 40802  1
## 40803  1
## 40804  1
## 40805  1
## 40806  1
## 40807  1
## 40808  1
## 40809  1
## 40810  1
## 40811  1
## 40812  1
## 40813  1
## 40814  1
## 40815  1
## 40816  1
## 40817  1
## 40818  1
## 40819  1
## 40820  1
## 40821  1
## 40822  1
## 40823  1
## 40824  1
## 40825  1
## 40826  1
## 40827  1
## 40828  1
## 40829  1
## 40830  1
## 40831  1
## 40832  1
## 40833  1
## 40834  1
## 40835  1
## 40836  1
## 40837  1
## 40838  1
## 40839  1
## 40840  1
## 40841  1
## 40842  1
## 40843  1
## 40844  1
## 40845  1
## 40846  1
## 40847  1
## 40848  1
## 40849  1
## 40850  1
## 40851  1
## 40852  1
## 40853  1
## 40854  1
## 40855  1
## 40856  1
## 40857  1
## 40858  1
## 40859  1
## 40860  1
## 40861  1
## 40862  1
## 40863  1
## 40864  1
## 40865  1
## 40866  1
## 40867  1
## 40868  1
## 40869  1
## 40870  1
## 40871  1
## 40872  1
## 40873  1
## 40874  1
## 40875  1
## 40876  1
## 40877  1
## 40878  1
## 40879  1
## 40880  1
## 40881  1
## 40882  1
## 40883  1
## 40884  1
## 40885  1
## 40886  1
## 40887  1
## 40888  1
## 40889  1
## 40890  1
## 40891  1
## 40892  1
## 40893  1
## 40894  1
## 40895  1
## 40896  1
## 40897  1
## 40898  1
## 40899  1
## 40900  1
## 40901  1
## 40902  1
## 40903  1
## 40904  1
## 40905  1
## 40906  1
## 40907  1
## 40908  1
## 40909  1
## 40910  1
## 40911  1
## 40912  1
## 40913  1
## 40914  1
## 40915  1
## 40916  1
## 40917  1
## 40918  1
## 40919  1
## 40920  1
## 40921  1
## 40922  1
## 40923  1
## 40924  1
## 40925  1
## 40926  1
## 40927  1
## 40928  1
## 40929  1
## 40930  1
## 40931  1
## 40932  1
## 40933  1
## 40934  1
## 40935  1
## 40936  1
## 40937  1
## 40938  1
## 40939  1
## 40940  1
## 40941  1
## 40942  1
## 40943  1
## 40944  1
## 40945  1
## 40946  1
## 40947  1
## 40948  1
## 40949  1
## 40950  1
## 40951  1
## 40952  1
## 40953  1
## 40954  1
## 40955  1
## 40956  1
## 40957  1
## 40958  1
## 40959  1
## 40960  1
## 40961  1
## 40962  1
## 40963  1
## 40964  1
## 40965  1
## 40966  1
## 40967  1
## 40968  1
## 40969  1
## 40970  1
## 40971  1
## 40972  1
## 40973  1
## 40974  1
## 40975  1
## 40976  1
## 40977  1
## 40978  1
## 40979  1
## 40980  1
## 40981  1
## 40982  1
## 40983  1
## 40984  1
## 40985  1
## 40986  1
## 40987  1
## 40988  1
## 40989  1
## 40990  1
## 40991  1
## 40992  1
## 40993  1
## 40994  1
## 40995  1
## 40996  1
## 40997  1
## 40998  1
## 40999  1
## 41000  1
## 41001  1
## 41002  1
## 41003  1
## 41004  1
## 41005  1
## 41006  1
## 41007  1
## 41008  1
## 41009  1
## 41010  1
## 41011  1
## 41012  1
## 41013  1
## 41014  1
## 41015  1
## 41016  1
## 41017  1
## 41018  1
## 41019  1
## 41020  1
## 41021  1
## 41022  1
## 41023  1
## 41024  1
## 41025  1
## 41026  1
## 41027  1
## 41028  1
## 41029  1
## 41030  1
## 41031  1
## 41032  1
## 41033  1
## 41034  1
## 41035  1
## 41036  1
## 41037  1
## 41038  1
## 41039  1
## 41040  1
## 41041  1
## 41042  1
## 41043  1
## 41044  1
## 41045  1
## 41046  1
## 41047  1
## 41048  1
## 41049  1
## 41050  1
## 41051  1
## 41052  1
## 41053  1
## 41054  1
## 41055  1
## 41056  1
## 41057  1
## 41058  1
## 41059  1
## 41060  1
## 41061  1
## 41062  1
## 41063  1
## 41064  1
## 41065  1
## 41066  1
## 41067  1
## 41068  1
## 41069  1
## 41070  1
## 41071  1
## 41072  1
## 41073  1
## 41074  1
## 41075  1
## 41076  1
## 41077  1
## 41078  1
## 41079  1
## 41080  1
## 41081  1
## 41082  1
## 41083  1
## 41084  1
## 41085  1
## 41086  1
## 41087  1
## 41088  1
## 41089  1
## 41090  1
## 41091  1
## 41092  1
## 41093  1
## 41094  1
## 41095  1
## 41096  1
## 41097  1
## 41098  1
## 41099  1
## 41100  1
## 41101  1
## 41102  1
## 41103  1
## 41104  1
## 41105  1
## 41106  1
## 41107  1
## 41108  1
## 41109  1
## 41110  1
## 41111  1
## 41112  1
## 41113  1
## 41114  1
## 41115  1
## 41116  1
## 41117  1
## 41118  1
## 41119  1
## 41120  1
## 41121  1
## 41122  1
## 41123  1
## 41124  1
## 41125  1
## 41126  1
## 41127  1
## 41128  1
## 41129  1
## 41130  1
## 41131  1
## 41132  1
## 41133  1
## 41134  1
## 41135  1
## 41136  1
## 41137  1
## 41138  1
## 41139  1
## 41140  1
## 41141  1
## 41142  1
## 41143  1
## 41144  1
## 41145  1
## 41146  1
## 41147  1
## 41148  1
## 41149  1
## 41150  1
## 41151  1
## 41152  1
## 41153  1
## 41154  1
## 41155  1
## 41156  1
## 41157  1
## 41158  1
## 41159  1
## 41160  1
## 41161  1
## 41162  1
## 41163  1
## 41164  1
## 41165  1
## 41166  1
## 41167  1
## 41168  1
## 41169  1
## 41170  1
## 41171  1
## 41172  1
## 41173  1
## 41174  1
## 41175  1
## 41176  1
## 41177  1
## 41178  1
## 41179  1
## 41180  1
## 41181  1
## 41182  1
## 41183  1
## 41184  1
## 41185  1
## 41186  1
## 41187  1
## 41188  1
## 41189  1
## 41190  1
## 41191  1
## 41192  1
## 41193  1
## 41194  1
## 41195  1
## 41196  1
## 41197  1
## 41198  1
## 41199  1
## 41200  1
## 41201  1
## 41202  1
## 41203  1
## 41204  1
## 41205  1
## 41206  1
## 41207  1
## 41208  1
## 41209  1
## 41210  1
## 41211  1
## 41212  1
## 41213  1
## 41214  1
## 41215  1
## 41216  1
## 41217  1
## 41218  1
## 41219  1
## 41220  1
## 41221  1
## 41222  1
## 41223  1
## 41224  1
## 41225  1
## 41226  1
## 41227  1
## 41228  1
## 41229  1
## 41230  1
## 41231  1
## 41232  1
## 41233  1
## 41234  1
## 41235  1
## 41236  1
## 41237  1
## 41238  1
## 41239  1
## 41240  1
## 41241  1
## 41242  1
## 41243  1
## 41244  1
## 41245  1
## 41246  1
## 41247  1
## 41248  1
## 41249  1
## 41250  1
## 41251  1
## 41252  1
## 41253  1
## 41254  1
## 41255  1
## 41256  1
## 41257  1
## 41258  1
## 41259  1
## 41260  1
## 41261  1
## 41262  1
## 41263  1
## 41264  1
## 41265  1
## 41266  1
## 41267  1
## 41268  1
## 41269  1
## 41270  1
## 41271  1
## 41272  1
## 41273  1
## 41274  1
## 41275  1
## 41276  1
## 41277  1
## 41278  1
## 41279  1
## 41280  1
## 41281  1
## 41282  1
## 41283  1
## 41284  1
## 41285  1
## 41286  1
## 41287  1
## 41288  1
## 41289  1
## 41290  1
## 41291  1
## 41292  1
## 41293  1
## 41294  1
## 41295  1
## 41296  1
## 41297  1
## 41298  1
## 41299  1
## 41300  1
## 41301  1
## 41302  1
## 41303  1
## 41304  1
## 41305  1
## 41306  1
## 41307  1
## 41308  1
## 41309  1
## 41310  1
## 41311  1
## 41312  1
## 41313  1
## 41314  1
## 41315  1
## 41316  1
## 41317  1
## 41318  1
## 41319  1
## 41320  1
## 41321  1
## 41322  1
## 41323  1
## 41324  1
## 41325  1
## 41326  1
## 41327  1
## 41328  1
## 41329  1
## 41330  1
## 41331  1
## 41332  1
## 41333  1
## 41334  1
## 41335  1
## 41336  1
## 41337  1
## 41338  1
## 41339  1
## 41340  1
## 41341  1
## 41342  1
## 41343  1
## 41344  1
## 41345  1
## 41346  1
## 41347  1
## 41348  1
## 41349  1
## 41350  1
## 41351  1
## 41352  1
## 41353  1
## 41354  1
## 41355  1
## 41356  1
## 41357  1
## 41358  1
## 41359  1
## 41360  1
## 41361  1
## 41362  1
## 41363  1
## 41364  1
## 41365  1
## 41366  1
## 41367  1
## 41368  1
## 41369  1
## 41370  1
## 41371  1
## 41372  1
## 41373  1
## 41374  1
## 41375  1
## 41376  1
## 41377  1
## 41378  1
## 41379  1
## 41380  1
## 41381  1
## 41382  1
## 41383  1
## 41384  1
## 41385  1
## 41386  1
## 41387  1
## 41388  1
## 41389  1
## 41390  1
## 41391  1
## 41392  1
## 41393  1
## 41394  1
## 41395  1
## 41396  1
## 41397  1
## 41398  1
## 41399  1
## 41400  1
## 41401  1
## 41402  1
## 41403  1
## 41404  1
## 41405  1
## 41406  1
## 41407  1
## 41408  1
## 41409  1
## 41410  1
## 41411  1
## 41412  1
## 41413  1
## 41414  1
## 41415  1
## 41416  1
## 41417  1
## 41418  1
## 41419  1
## 41420  1
## 41421  1
## 41422  1
## 41423  1
## 41424  1
## 41425  1
## 41426  1
## 41427  1
## 41428  1
## 41429  1
## 41430  1
## 41431  1
## 41432  1
## 41433  1
## 41434  1
## 41435  1
## 41436  1
## 41437  1
## 41438  1
## 41439  1
## 41440  1
## 41441  1
## 41442  1
## 41443  1
## 41444  1
## 41445  1
## 41446  1
## 41447  1
## 41448  1
## 41449  1
## 41450  1
## 41451  1
## 41452  1
## 41453  1
## 41454  1
## 41455  1
## 41456  1
## 41457  1
## 41458  1
## 41459  1
## 41460  1
## 41461  1
## 41462  1
## 41463  1
## 41464  1
## 41465  1
## 41466  1
## 41467  1
## 41468  1
## 41469  1
## 41470  1
## 41471  1
## 41472  1
## 41473  1
## 41474  1
## 41475  1
## 41476  1
## 41477  1
## 41478  1
## 41479  1
## 41480  1
## 41481  1
## 41482  1
## 41483  1
## 41484  1
## 41485  1
## 41486  1
## 41487  1
## 41488  1
## 41489  1
## 41490  1
## 41491  1
## 41492  1
## 41493  1
## 41494  1
## 41495  1
## 41496  1
## 41497  1
## 41498  1
## 41499  1
## 41500  1
## 41501  1
## 41502  1
## 41503  1
## 41504  1
## 41505  1
## 41506  1
## 41507  1
## 41508  1
## 41509  1
## 41510  1
## 41511  1
## 41512  1
## 41513  1
## 41514  1
## 41515  1
## 41516  1
## 41517  1
## 41518  1
## 41519  1
## 41520  1
## 41521  1
## 41522  1
## 41523  1
## 41524  1
## 41525  1
## 41526  1
## 41527  1
## 41528  1
## 41529  1
## 41530  1
## 41531  1
## 41532  1
## 41533  1
## 41534  1
## 41535  1
## 41536  1
## 41537  1
## 41538  1
## 41539  1
## 41540  1
## 41541  1
## 41542  1
## 41543  1
## 41544  1
## 41545  1
## 41546  1
## 41547  1
## 41548  1
## 41549  1
## 41550  1
## 41551  1
## 41552  1
## 41553  1
## 41554  1
## 41555  1
## 41556  1
## 41557  1
## 41558  1
## 41559  1
## 41560  1
## 41561  1
## 41562  1
## 41563  1
## 41564  1
## 41565  1
## 41566  1
## 41567  1
## 41568  1
## 41569  1
## 41570  1
## 41571  1
## 41572  1
## 41573  1
## 41574  1
## 41575  1
## 41576  1
## 41577  1
## 41578  1
## 41579  1
## 41580  1
## 41581  1
## 41582  1
## 41583  1
## 41584  1
## 41585  1
## 41586  1
## 41587  1
## 41588  1
## 41589  1
## 41590  1
## 41591  1
## 41592  1
## 41593  1
## 41594  1
## 41595  1
## 41596  1
## 41597  1
## 41598  1
## 41599  1
## 41600  1
## 41601  1
## 41602  1
## 41603  1
## 41604  1
## 41605  1
## 41606  1
## 41607  1
## 41608  1
## 41609  1
## 41610  1
## 41611  1
## 41612  1
## 41613  1
## 41614  1
## 41615  1
## 41616  1
## 41617  1
## 41618  1
## 41619  1
## 41620  1
## 41621  1
## 41622  1
## 41623  1
## 41624  1
## 41625  1
## 41626  1
## 41627  1
## 41628  1
## 41629  1
## 41630  1
## 41631  1
## 41632  1
## 41633  1
## 41634  1
## 41635  1
## 41636  1
## 41637  1
## 41638  1
## 41639  1
## 41640  1
## 41641  1
## 41642  1
## 41643  1
## 41644  1
## 41645  1
## 41646  1
## 41647  1
## 41648  1
## 41649  1
## 41650  1
## 41651  1
## 41652  1
## 41653  1
## 41654  1
## 41655  1
## 41656  1
## 41657  1
## 41658  1
## 41659  1
## 41660  1
## 41661  1
## 41662  1
## 41663  1
## 41664  1
## 41665  1
## 41666  1
## 41667  1
## 41668  1
## 41669  1
## 41670  1
## 41671  1
## 41672  1
## 41673  1
## 41674  1
## 41675  1
## 41676  1
## 41677  1
## 41678  1
## 41679  1
## 41680  1
## 41681  1
## 41682  1
## 41683  1
## 41684  1
## 41685  1
## 41686  1
## 41687  1
## 41688  1
## 41689  1
## 41690  1
## 41691  1
## 41692  1
## 41693  1
## 41694  1
## 41695  1
## 41696  1
## 41697  1
## 41698  1
## 41699  1
## 41700  1
## 41701  1
## 41702  1
## 41703  1
## 41704  1
## 41705  1
## 41706  1
## 41707  1
## 41708  1
## 41709  1
## 41710  1
## 41711  1
## 41712  1
## 41713  1
## 41714  1
## 41715  1
## 41716  1
## 41717  1
## 41718  1
## 41719  1
## 41720  1
## 41721  1
## 41722  1
## 41723  1
## 41724  1
## 41725  1
## 41726  1
## 41727  1
## 41728  1
## 41729  1
## 41730  1
## 41731  1
## 41732  1
## 41733  1
## 41734  1
## 41735  1
## 41736  1
## 41737  1
## 41738  1
## 41739  1
## 41740  1
## 41741  1
## 41742  1
## 41743  1
## 41744  1
## 41745  1
## 41746  1
## 41747  1
## 41748  1
## 41749  1
## 41750  1
## 41751  1
## 41752  1
## 41753  1
## 41754  1
## 41755  1
## 41756  1
## 41757  1
## 41758  1
## 41759  1
## 41760  1
## 41761  1
## 41762  1
## 41763  1
## 41764  1
## 41765  1
## 41766  1
## 41767  1
## 41768  1
## 41769  1
## 41770  1
## 41771  1
## 41772  1
## 41773  1
## 41774  1
## 41775  1
## 41776  1
## 41777  1
## 41778  1
## 41779  1
## 41780  1
## 41781  1
## 41782  1
## 41783  1
## 41784  1
## 41785  1
## 41786  1
## 41787  1
## 41788  1
## 41789  1
## 41790  1
## 41791  1
## 41792  1
## 41793  1
## 41794  1
## 41795  1
## 41796  1
## 41797  1
## 41798  1
## 41799  1
## 41800  1
## 41801  1
## 41802  1
## 41803  1
## 41804  1
## 41805  1
## 41806  1
## 41807  1
## 41808  1
## 41809  1
## 41810  1
## 41811  1
## 41812  1
## 41813  1
## 41814  1
## 41815  1
## 41816  1
## 41817  1
## 41818  1
## 41819  1
## 41820  1
## 41821  1
## 41822  1
## 41823  1
## 41824  1
## 41825  1
## 41826  1
## 41827  1
## 41828  1
## 41829  1
## 41830  1
## 41831  1
## 41832  1
## 41833  1
## 41834  1
## 41835  1
## 41836  1
## 41837  1
## 41838  1
## 41839  1
## 41840  1
## 41841  1
## 41842  1
## 41843  1
## 41844  1
## 41845  1
## 41846  1
## 41847  1
## 41848  1
## 41849  1
## 41850  1
## 41851  1
## 41852  1
## 41853  1
## 41854  1
## 41855  1
## 41856  1
## 41857  1
## 41858  1
## 41859  1
## 41860  1
## 41861  1
## 41862  1
## 41863  1
## 41864  1
## 41865  1
## 41866  1
## 41867  1
## 41868  1
## 41869  1
## 41870  1
## 41871  1
## 41872  1
## 41873  1
## 41874  1
## 41875  1
## 41876  1
## 41877  1
## 41878  1
## 41879  1
## 41880  1
## 41881  1
## 41882  1
## 41883  1
## 41884  1
## 41885  1
## 41886  1
## 41887  1
## 41888  1
## 41889  1
## 41890  1
## 41891  1
## 41892  1
## 41893  1
## 41894  1
## 41895  1
## 41896  1
## 41897  1
## 41898  1
## 41899  1
## 41900  1
## 41901  1
## 41902  1
## 41903  1
## 41904  1
## 41905  1
## 41906  1
## 41907  1
## 41908  1
## 41909  1
## 41910  1
## 41911  1
## 41912  1
## 41913  1
## 41914  1
## 41915  1
## 41916  1
## 41917  1
## 41918  1
## 41919  1
## 41920  1
## 41921  1
## 41922  1
## 41923  1
## 41924  1
## 41925  1
## 41926  1
## 41927  1
## 41928  1
## 41929  1
## 41930  1
## 41931  1
## 41932  1
## 41933  1
## 41934  1
## 41935  1
## 41936  1
## 41937  1
## 41938  1
## 41939  1
## 41940  1
## 41941  1
## 41942  1
## 41943  1
## 41944  1
## 41945  1
## 41946  1
## 41947  1
## 41948  1
## 41949  1
## 41950  1
## 41951  1
## 41952  1
## 41953  1
## 41954  1
## 41955  1
## 41956  1
## 41957  1
## 41958  1
## 41959  1
## 41960  1
## 41961  1
## 41962  1
## 41963  1
## 41964  1
## 41965  1
## 41966  1
## 41967  1
## 41968  1
## 41969  1
## 41970  1
## 41971  1
## 41972  1
## 41973  1
## 41974  1
## 41975  1
## 41976  1
## 41977  1
## 41978  1
## 41979  1
## 41980  1
## 41981  1
## 41982  1
## 41983  1
## 41984  1
## 41985  1
## 41986  1
## 41987  1
## 41988  1
## 41989  1
## 41990  1
## 41991  1
## 41992  1
## 41993  1
## 41994  1
## 41995  1
## 41996  1
## 41997  1
## 41998  1
## 41999  1
## 42000  1
## 42001  1
## 42002  1
## 42003  1
## 42004  1
## 42005  1
## 42006  1
## 42007  1
## 42008  1
## 42009  1
## 42010  1
## 42011  1
## 42012  1
## 42013  1
## 42014  1
## 42015  1
## 42016  1
## 42017  1
## 42018  1
## 42019  1
## 42020  1
## 42021  1
## 42022  1
## 42023  1
## 42024  1
## 42025  1
## 42026  1
## 42027  1
## 42028  1
## 42029  1
## 42030  1
## 42031  1
## 42032  1
## 42033  1
## 42034  1
## 42035  1
## 42036  1
## 42037  1
## 42038  1
## 42039  1
## 42040  1
## 42041  1
## 42042  1
## 42043  1
## 42044  1
## 42045  1
## 42046  1
## 42047  1
## 42048  1
## 42049  1
## 42050  1
## 42051  1
## 42052  1
## 42053  1
## 42054  1
## 42055  1
## 42056  1
## 42057  1
## 42058  1
## 42059  1
## 42060  1
## 42061  1
## 42062  1
## 42063  1
## 42064  1
## 42065  1
## 42066  1
## 42067  1
## 42068  1
## 42069  1
## 42070  1
## 42071  1
## 42072  1
## 42073  1
## 42074  1
## 42075  1
## 42076  1
## 42077  1
## 42078  1
## 42079  1
## 42080  1
## 42081  1
## 42082  1
## 42083  1
## 42084  1
## 42085  1
## 42086  1
## 42087  1
## 42088  1
## 42089  1
## 42090  1
## 42091  1
## 42092  1
## 42093  1
## 42094  1
## 42095  1
## 42096  1
## 42097  1
## 42098  1
## 42099  1
## 42100  1
## 42101  1
## 42102  1
## 42103  1
## 42104  1
## 42105  1
## 42106  1
## 42107  1
## 42108  1
## 42109  1
## 42110  1
## 42111  1
## 42112  1
## 42113  1
## 42114  1
## 42115  1
## 42116  1
## 42117  1
## 42118  1
## 42119  1
## 42120  1
## 42121  1
## 42122  1
## 42123  1
## 42124  1
## 42125  1
## 42126  1
## 42127  1
## 42128  1
## 42129  1
## 42130  1
## 42131  1
## 42132  1
## 42133  1
## 42134  1
## 42135  1
## 42136  1
## 42137  1
## 42138  1
## 42139  1
## 42140  1
## 42141  1
## 42142  1
## 42143  1
## 42144  1
## 42145  1
## 42146  1
## 42147  1
## 42148  1
## 42149  1
## 42150  1
## 42151  1
## 42152  1
## 42153  1
## 42154  1
## 42155  1
## 42156  1
## 42157  1
## 42158  1
## 42159  1
## 42160  1
## 42161  1
## 42162  1
## 42163  1
## 42164  1
## 42165  1
## 42166  1
## 42167  1
## 42168  1
## 42169  1
## 42170  1
## 42171  1
## 42172  1
## 42173  1
## 42174  1
## 42175  1
## 42176  1
## 42177  1
## 42178  1
## 42179  1
## 42180  1
## 42181  1
## 42182  1
## 42183  1
## 42184  1
## 42185  1
## 42186  1
## 42187  1
## 42188  1
## 42189  1
## 42190  1
## 42191  1
## 42192  1
## 42193  1
## 42194  1
## 42195  1
## 42196  1
## 42197  1
## 42198  1
## 42199  1
## 42200  1
## 42201  1
## 42202  1
## 42203  1
## 42204  1
## 42205  1
## 42206  1
## 42207  1
## 42208  1
## 42209  1
## 42210  1
## 42211  1
## 42212  1
## 42213  1
## 42214  1
## 42215  1
## 42216  1
## 42217  1
## 42218  1
## 42219  1
## 42220  1
## 42221  1
## 42222  1
## 42223  1
## 42224  1
## 42225  1
## 42226  1
## 42227  1
## 42228  1
## 42229  1
## 42230  1
## 42231  1
## 42232  1
## 42233  1
## 42234  1
## 42235  1
## 42236  1
## 42237  1
## 42238  1
## 42239  1
## 42240  1
## 42241  1
## 42242  1
## 42243  1
## 42244  1
## 42245  1
## 42246  1
## 42247  1
## 42248  1
## 42249  1
## 42250  1
## 42251  1
## 42252  1
## 42253  1
## 42254  1
## 42255  1
## 42256  1
## 42257  1
## 42258  1
## 42259  1
## 42260  1
## 42261  1
## 42262  1
## 42263  1
## 42264  1
## 42265  1
## 42266  1
## 42267  1
## 42268  1
## 42269  1
## 42270  1
## 42271  1
## 42272  1
## 42273  1
## 42274  1
## 42275  1
## 42276  1
## 42277  1
## 42278  1
## 42279  1
## 42280  1
## 42281  1
## 42282  1
## 42283  1
## 42284  1
## 42285  1
## 42286  1
## 42287  1
## 42288  1
## 42289  1
## 42290  1
## 42291  1
## 42292  1
## 42293  1
## 42294  1
## 42295  1
## 42296  1
## 42297  1
## 42298  1
## 42299  1
## 42300  1
## 42301  1
## 42302  1
## 42303  1
## 42304  1
## 42305  1
## 42306  1
## 42307  1
## 42308  1
## 42309  1
## 42310  1
## 42311  1
## 42312  1
## 42313  1
## 42314  1
## 42315  1
## 42316  1
## 42317  1
## 42318  1
## 42319  1
## 42320  1
## 42321  1
## 42322  1
## 42323  1
## 42324  1
## 42325  1
## 42326  1
## 42327  1
## 42328  1
## 42329  1
## 42330  1
## 42331  1
## 42332  1
## 42333  1
## 42334  1
## 42335  1
## 42336  1
## 42337  1
## 42338  1
## 42339  1
## 42340  1
## 42341  1
## 42342  1
## 42343  1
## 42344  1
## 42345  1
## 42346  1
## 42347  1
## 42348  1
## 42349  1
## 42350  1
## 42351  1
## 42352  1
## 42353  1
## 42354  1
## 42355  1
## 42356  1
## 42357  1
## 42358  1
## 42359  1
## 42360  1
## 42361  1
## 42362  1
## 42363  1
## 42364  1
## 42365  1
## 42366  1
## 42367  1
## 42368  1
## 42369  1
## 42370  1
## 42371  1
## 42372  1
## 42373  1
## 42374  1
## 42375  1
## 42376  1
## 42377  1
## 42378  1
## 42379  1
## 42380  1
## 42381  1
## 42382  1
## 42383  1
## 42384  1
## 42385  1
## 42386  1
## 42387  1
## 42388  1
## 42389  1
## 42390  1
## 42391  1
## 42392  1
## 42393  1
## 42394  1
## 42395  1
## 42396  1
## 42397  1
## 42398  1
## 42399  1
## 42400  1
## 42401  1
## 42402  1
## 42403  1
## 42404  1
## 42405  1
## 42406  1
## 42407  1
## 42408  1
## 42409  1
## 42410  1
## 42411  1
## 42412  1
## 42413  1
## 42414  1
## 42415  1
## 42416  1
## 42417  1
## 42418  1
## 42419  1
## 42420  1
## 42421  1
## 42422  1
## 42423  1
## 42424  1
## 42425  1
## 42426  1
## 42427  1
## 42428  1
## 42429  1
## 42430  1
## 42431  1
## 42432  1
## 42433  1
## 42434  1
## 42435  1
## 42436  1
## 42437  1
## 42438  1
## 42439  1
## 42440  1
## 42441  1
## 42442  1
## 42443  1
## 42444  1
## 42445  1
## 42446  1
## 42447  1
## 42448  1
## 42449  1
## 42450  1
## 42451  1
## 42452  1
## 42453  1
## 42454  1
## 42455  1
## 42456  1
## 42457  1
## 42458  1
## 42459  1
## 42460  1
## 42461  1
## 42462  1
## 42463  1
## 42464  1
## 42465  1
## 42466  1
## 42467  1
## 42468  1
## 42469  1
## 42470  1
## 42471  1
## 42472  1
## 42473  1
## 42474  1
## 42475  1
## 42476  1
## 42477  1
## 42478  1
## 42479  1
## 42480  1
## 42481  1
## 42482  1
## 42483  1
## 42484  1
## 42485  1
## 42486  1
## 42487  1
## 42488  1
## 42489  1
## 42490  1
## 42491  1
## 42492  1
## 42493  1
## 42494  1
## 42495  1
## 42496  1
## 42497  1
## 42498  1
## 42499  1
## 42500  1
## 42501  1
## 42502  1
## 42503  1
## 42504  1
## 42505  1
## 42506  1
## 42507  1
## 42508  1
## 42509  1
## 42510  1
## 42511  1
## 42512  1
## 42513  1
## 42514  1
## 42515  1
## 42516  1
## 42517  1
## 42518  1
## 42519  1
## 42520  1
## 42521  1
## 42522  1
## 42523  1
## 42524  1
## 42525  1
## 42526  1
## 42527  1
## 42528  1
## 42529  1
## 42530  1
## 42531  1
## 42532  1
## 42533  1
## 42534  1
## 42535  1
## 42536  1
## 42537  1
## 42538  1
## 42539  1
## 42540  1
## 42541  1
## 42542  1
## 42543  1
## 42544  1
## 42545  1
## 42546  1
## 42547  1
## 42548  1
## 42549  1
## 42550  1
## 42551  1
## 42552  1
## 42553  1
## 42554  1
## 42555  1
## 42556  1
## 42557  1
## 42558  1
## 42559  1
## 42560  1
## 42561  1
## 42562  1
## 42563  1
## 42564  1
## 42565  1
## 42566  1
## 42567  1
## 42568  1
## 42569  1
## 42570  1
## 42571  1
## 42572  1
## 42573  1
## 42574  1
## 42575  1
## 42576  1
## 42577  1
## 42578  1
## 42579  1
## 42580  1
## 42581  1
## 42582  1
## 42583  1
## 42584  1
## 42585  1
## 42586  1
## 42587  1
## 42588  1
## 42589  1
## 42590  1
## 42591  1
## 42592  1
## 42593  1
## 42594  1
## 42595  1
## 42596  1
## 42597  1
## 42598  1
## 42599  1
## 42600  1
## 42601  1
## 42602  1
## 42603  1
## 42604  1
## 42605  1
## 42606  1
## 42607  1
## 42608  1
## 42609  1
## 42610  1
## 42611  1
## 42612  1
## 42613  1
## 42614  1
## 42615  1
## 42616  1
## 42617  1
## 42618  1
## 42619  1
## 42620  1
## 42621  1
## 42622  1
## 42623  1
## 42624  1
## 42625  1
## 42626  1
## 42627  1
## 42628  1
## 42629  1
## 42630  1
## 42631  1
## 42632  1
## 42633  1
## 42634  1
## 42635  1
## 42636  1
## 42637  1
## 42638  1
## 42639  1
## 42640  1
## 42641  1
## 42642  1
## 42643  1
## 42644  1
## 42645  1
## 42646  1
## 42647  1
## 42648  1
## 42649  1
## 42650  1
## 42651  1
## 42652  1
## 42653  1
## 42654  1
## 42655  1
## 42656  1
## 42657  1
## 42658  1
## 42659  1
## 42660  1
## 42661  1
## 42662  1
## 42663  1
## 42664  1
## 42665  1
## 42666  1
## 42667  1
## 42668  1
## 42669  1
## 42670  1
## 42671  1
## 42672  1
## 42673  1
## 42674  1
## 42675  1
## 42676  1
## 42677  1
## 42678  1
## 42679  1
## 42680  1
## 42681  1
## 42682  1
## 42683  1
## 42684  1
## 42685  1
## 42686  1
## 42687  1
## 42688  1
## 42689  1
## 42690  1
## 42691  1
## 42692  1
## 42693  1
## 42694  1
## 42695  1
## 42696  1
## 42697  1
## 42698  1
## 42699  1
## 42700  1
## 42701  1
## 42702  1
## 42703  1
## 42704  1
## 42705  1
## 42706  1
## 42707  1
## 42708  1
## 42709  1
## 42710  1
## 42711  1
## 42712  1
## 42713  1
## 42714  1
## 42715  1
## 42716  1
## 42717  1
## 42718  1
## 42719  1
## 42720  1
## 42721  1
## 42722  1
## 42723  1
## 42724  1
## 42725  1
## 42726  1
## 42727  1
## 42728  1
## 42729  1
## 42730  1
## 42731  1
## 42732  1
## 42733  1
## 42734  1
## 42735  1
## 42736  1
## 42737  1
## 42738  1
## 42739  1
## 42740  1
## 42741  1
## 42742  1
## 42743  1
## 42744  1
## 42745  1
## 42746  1
## 42747  1
## 42748  1
## 42749  1
## 42750  1
## 42751  1
## 42752  1
## 42753  1
## 42754  1
## 42755  1
## 42756  1
## 42757  1
## 42758  1
## 42759  1
## 42760  1
## 42761  1
## 42762  1
## 42763  1
## 42764  1
## 42765  1
## 42766  1
## 42767  1
## 42768  1
## 42769  1
## 42770  1
## 42771  1
## 42772  1
## 42773  1
## 42774  1
## 42775  1
## 42776  1
## 42777  1
## 42778  1
## 42779  1
## 42780  1
## 42781  1
## 42782  1
## 42783  1
## 42784  1
## 42785  1
## 42786  1
## 42787  1
## 42788  1
## 42789  1
## 42790  1
## 42791  1
## 42792  1
## 42793  1
## 42794  1
## 42795  1
## 42796  1
## 42797  1
## 42798  1
## 42799  1
## 42800  1
## 42801  1
## 42802  1
## 42803  1
## 42804  1
## 42805  1
## 42806  1
## 42807  1
## 42808  1
## 42809  1
## 42810  1
## 42811  1
## 42812  1
## 42813  1
## 42814  1
## 42815  1
## 42816  1
## 42817  1
## 42818  1
## 42819  1
## 42820  1
## 42821  1
## 42822  1
## 42823  1
## 42824  1
## 42825  1
## 42826  1
## 42827  1
## 42828  1
## 42829  1
## 42830  1
## 42831  1
## 42832  1
## 42833  1
## 42834  1
## 42835  1
## 42836  1
## 42837  1
## 42838  1
## 42839  1
## 42840  1
## 42841  1
## 42842  1
## 42843  1
## 42844  1
## 42845  1
## 42846  1
## 42847  1
## 42848  1
## 42849  1
## 42850  1
## 42851  1
## 42852  1
## 42853  1
## 42854  1
## 42855  1
## 42856  1
## 42857  1
## 42858  1
## 42859  1
## 42860  1
## 42861  1
## 42862  1
## 42863  1
## 42864  1
## 42865  1
## 42866  1
## 42867  1
## 42868  1
## 42869  1
## 42870  1
## 42871  1
## 42872  1
## 42873  1
## 42874  1
## 42875  1
## 42876  1
## 42877  1
## 42878  1
## 42879  1
## 42880  1
## 42881  1
## 42882  1
## 42883  1
## 42884  1
## 42885  1
## 42886  1
## 42887  1
## 42888  1
## 42889  1
## 42890  1
## 42891  1
## 42892  1
## 42893  1
## 42894  1
## 42895  1
## 42896  1
## 42897  1
## 42898  1
## 42899  1
## 42900  1
## 42901  1
## 42902  1
## 42903  1
## 42904  1
## 42905  1
## 42906  1
## 42907  1
## 42908  1
## 42909  1
## 42910  1
## 42911  1
## 42912  1
## 42913  1
## 42914  1
## 42915  1
## 42916  1
## 42917  1
## 42918  1
## 42919  1
## 42920  1
## 42921  1
## 42922  1
## 42923  1
## 42924  1
## 42925  1
## 42926  1
## 42927  1
## 42928  1
## 42929  1
## 42930  1
## 42931  1
## 42932  1
## 42933  1
## 42934  1
## 42935  1
## 42936  1
## 42937  1
## 42938  1
## 42939  1
## 42940  1
## 42941  1
## 42942  1
## 42943  1
## 42944  1
## 42945  1
## 42946  1
## 42947  1
## 42948  1
## 42949  1
## 42950  1
## 42951  1
## 42952  1
## 42953  1
## 42954  1
## 42955  1
## 42956  1
## 42957  1
## 42958  1
## 42959  1
## 42960  1
## 42961  1
## 42962  1
## 42963  1
## 42964  1
## 42965  1
## 42966  1
## 42967  1
## 42968  1
## 42969  1
## 42970  1
## 42971  1
## 42972  1
## 42973  1
## 42974  1
## 42975  1
## 42976  1
## 42977  1
## 42978  1
## 42979  1
## 42980  1
## 42981  1
## 42982  1
## 42983  1
## 42984  1
## 42985  1
## 42986  1
## 42987  1
## 42988  1
## 42989  1
## 42990  1
## 42991  1
## 42992  1
## 42993  1
## 42994  1
## 42995  1
## 42996  1
## 42997  1
## 42998  1
## 42999  1
## 43000  1
## 43001  1
## 43002  1
## 43003  1
## 43004  1
## 43005  1
## 43006  1
## 43007  1
## 43008  1
## 43009  1
## 43010  1
## 43011  1
## 43012  1
## 43013  1
## 43014  1
## 43015  1
## 43016  1
## 43017  1
## 43018  1
## 43019  1
## 43020  1
## 43021  1
## 43022  1
## 43023  1
## 43024  1
## 43025  1
## 43026  1
## 43027  1
## 43028  1
## 43029  1
## 43030  1
## 43031  1
## 43032  1
## 43033  1
## 43034  1
## 43035  1
## 43036  1
## 43037  1
## 43038  1
## 43039  1
## 43040  1
## 43041  1
## 43042  1
## 43043  1
## 43044  1
## 43045  1
## 43046  1
## 43047  1
## 43048  1
## 43049  1
## 43050  1
## 43051  1
## 43052  1
## 43053  1
## 43054  1
## 43055  1
## 43056  1
## 43057  1
## 43058  1
## 43059  1
## 43060  1
## 43061  1
## 43062  1
## 43063  1
## 43064  1
## 43065  1
## 43066  1
## 43067  1
## 43068  1
## 43069  1
## 43070  1
## 43071  1
## 43072  1
## 43073  1
## 43074  1
## 43075  1
## 43076  1
## 43077  1
## 43078  1
## 43079  1
## 43080  1
## 43081  1
## 43082  1
## 43083  1
## 43084  1
## 43085  1
## 43086  1
## 43087  1
## 43088  1
## 43089  1
## 43090  1
## 43091  1
## 43092  1
## 43093  1
## 43094  1
## 43095  1
## 43096  1
## 43097  1
## 43098  1
## 43099  1
## 43100  1
## 43101  1
## 43102  1
## 43103  1
## 43104  1
## 43105  1
## 43106  1
## 43107  1
## 43108  1
## 43109  1
## 43110  1
## 43111  1
## 43112  1
## 43113  1
## 43114  1
## 43115  1
## 43116  1
## 43117  1
## 43118  1
## 43119  1
## 43120  1
## 43121  1
## 43122  1
## 43123  1
## 43124  1
## 43125  1
## 43126  1
## 43127  1
## 43128  1
## 43129  1
## 43130  1
## 43131  1
## 43132  1
## 43133  1
## 43134  1
## 43135  1
## 43136  1
## 43137  1
## 43138  1
## 43139  1
## 43140  1
## 43141  1
## 43142  1
## 43143  1
## 43144  1
## 43145  1
## 43146  1
## 43147  1
## 43148  1
## 43149  1
## 43150  1
## 43151  1
## 43152  1
## 43153  1
## 43154  1
## 43155  1
## 43156  1
## 43157  1
## 43158  1
## 43159  1
## 43160  1
## 43161  1
## 43162  1
## 43163  1
## 43164  1
## 43165  1
## 43166  1
## 43167  1
## 43168  1
## 43169  1
## 43170  1
## 43171  1
## 43172  1
## 43173  1
## 43174  1
## 43175  1
## 43176  1
## 43177  1
## 43178  1
## 43179  1
## 43180  1
## 43181  1
## 43182  1
## 43183  1
## 43184  1
## 43185  1
## 43186  1
## 43187  1
## 43188  1
## 43189  1
## 43190  1
## 43191  1
## 43192  1
## 43193  1
## 43194  1
## 43195  1
## 43196  1
## 43197  1
## 43198  1
## 43199  1
## 43200  1
## 43201  1
## 43202  1
## 43203  1
## 43204  1
## 43205  1
## 43206  1
## 43207  1
## 43208  1
## 43209  1
## 43210  1
## 43211  1
## 43212  1
## 43213  1
## 43214  1
## 43215  1
## 43216  1
## 43217  1
## 43218  1
## 43219  1
## 43220  1
## 43221  1
## 43222  1
## 43223  1
## 43224  1
## 43225  1
## 43226  1
## 43227  1
## 43228  1
## 43229  1
## 43230  1
## 43231  1
## 43232  1
## 43233  1
## 43234  1
## 43235  1
## 43236  1
## 43237  1
## 43238  1
## 43239  1
## 43240  1
## 43241  1
## 43242  1
## 43243  1
## 43244  1
## 43245  1
## 43246  1
## 43247  1
## 43248  1
## 43249  1
## 43250  1
## 43251  1
## 43252  1
## 43253  1
## 43254  1
## 43255  1
## 43256  1
## 43257  1
## 43258  1
## 43259  1
## 43260  1
## 43261  1
## 43262  1
## 43263  1
## 43264  1
## 43265  1
## 43266  1
## 43267  1
## 43268  1
## 43269  1
## 43270  1
## 43271  1
## 43272  1
## 43273  1
## 43274  1
## 43275  1
## 43276  1
## 43277  1
## 43278  1
## 43279  1
## 43280  1
## 43281  1
## 43282  1
## 43283  1
## 43284  1
## 43285  1
## 43286  1
## 43287  1
## 43288  1
## 43289  1
## 43290  1
## 43291  1
## 43292  1
## 43293  1
## 43294  1
## 43295  1
## 43296  1
## 43297  1
## 43298  1
## 43299  1
## 43300  1
## 43301  1
## 43302  1
## 43303  1
## 43304  1
## 43305  1
## 43306  1
## 43307  1
## 43308  1
## 43309  1
## 43310  1
## 43311  1
## 43312  1
## 43313  1
## 43314  1
## 43315  1
## 43316  1
## 43317  1
## 43318  1
## 43319  1
## 43320  1
## 43321  1
## 43322  1
## 43323  1
## 43324  1
## 43325  1
## 43326  1
## 43327  1
## 43328  1
## 43329  1
## 43330  1
## 43331  1
## 43332  1
## 43333  1
## 43334  1
## 43335  1
## 43336  1
## 43337  1
## 43338  1
## 43339  1
## 43340  1
## 43341  1
## 43342  1
## 43343  1
## 43344  1
## 43345  1
## 43346  1
## 43347  1
## 43348  1
## 43349  1
## 43350  1
## 43351  1
## 43352  1
## 43353  1
## 43354  1
## 43355  1
## 43356  1
## 43357  1
## 43358  1
## 43359  1
## 43360  1
## 43361  1
## 43362  1
## 43363  1
## 43364  1
## 43365  1
## 43366  1
## 43367  1
## 43368  1
## 43369  1
## 43370  1
## 43371  1
## 43372  1
## 43373  1
## 43374  1
## 43375  1
## 43376  1
## 43377  1
## 43378  1
## 43379  1
## 43380  1
## 43381  1
## 43382  1
## 43383  1
## 43384  1
## 43385  1
## 43386  1
## 43387  1
## 43388  1
## 43389  1
## 43390  1
## 43391  1
## 43392  1
## 43393  1
## 43394  1
## 43395  1
## 43396  1
## 43397  1
## 43398  1
## 43399  1
## 43400  1
## 43401  1
## 43402  1
## 43403  1
## 43404  1
## 43405  1
## 43406  1
## 43407  1
## 43408  1
## 43409  1
## 43410  1
## 43411  1
## 43412  1
## 43413  1
## 43414  1
## 43415  1
## 43416  1
## 43417  1
## 43418  1
## 43419  1
## 43420  1
## 43421  1
## 43422  1
## 43423  1
## 43424  1
## 43425  1
## 43426  1
## 43427  1
## 43428  1
## 43429  1
## 43430  1
## 43431  1
## 43432  1
## 43433  1
## 43434  1
## 43435  1
## 43436  1
## 43437  1
## 43438  1
## 43439  1
## 43440  1
## 43441  1
## 43442  1
## 43443  1
## 43444  1
## 43445  1
## 43446  1
## 43447  1
## 43448  1
## 43449  1
## 43450  1
## 43451  1
## 43452  1
## 43453  1
## 43454  1
## 43455  1
## 43456  1
## 43457  1
## 43458  1
## 43459  1
## 43460  1
## 43461  1
## 43462  1
## 43463  1
## 43464  1
## 43465  1
## 43466  1
## 43467  1
## 43468  1
## 43469  1
## 43470  1
## 43471  1
## 43472  1
## 43473  1
## 43474  1
## 43475  1
## 43476  1
## 43477  1
## 43478  1
## 43479  1
## 43480  1
## 43481  1
## 43482  1
## 43483  1
## 43484  1
## 43485  1
## 43486  1
## 43487  1
## 43488  1
## 43489  1
## 43490  1
## 43491  1
## 43492  1
## 43493  1
## 43494  1
## 43495  1
## 43496  1
## 43497  1
## 43498  1
## 43499  1
## 43500  1
## 43501  1
## 43502  1
## 43503  1
## 43504  1
## 43505  1
## 43506  1
## 43507  1
## 43508  1
## 43509  1
## 43510  1
## 43511  1
## 43512  1
## 43513  1
## 43514  1
## 43515  1
## 43516  1
## 43517  1
## 43518  1
## 43519  1
## 43520  1
## 43521  1
## 43522  1
## 43523  1
## 43524  1
## 43525  1
## 43526  1
## 43527  1
## 43528  1
## 43529  1
## 43530  1
## 43531  1
## 43532  1
## 43533  1
## 43534  1
## 43535  1
## 43536  1
## 43537  1
## 43538  1
## 43539  1
## 43540  1
## 43541  1
## 43542  1
## 43543  1
## 43544  1
## 43545  1
## 43546  1
## 43547  1
## 43548  1
## 43549  1
## 43550  1
## 43551  1
## 43552  1
## 43553  1
## 43554  1
## 43555  1
## 43556  1
## 43557  1
## 43558  1
## 43559  1
## 43560  1
## 43561  1
## 43562  1
## 43563  1
## 43564  1
## 43565  1
## 43566  1
## 43567  1
## 43568  1
## 43569  1
## 43570  1
## 43571  1
## 43572  1
## 43573  1
## 43574  1
## 43575  1
## 43576  1
## 43577  1
## 43578  1
## 43579  1
## 43580  1
## 43581  1
## 43582  1
## 43583  1
## 43584  1
## 43585  1
## 43586  1
## 43587  1
## 43588  1
## 43589  1
## 43590  1
## 43591  1
## 43592  1
## 43593  1
## 43594  1
## 43595  1
## 43596  1
## 43597  1
## 43598  1
## 43599  1
## 43600  1
## 43601  1
## 43602  1
## 43603  1
## 43604  1
## 43605  1
## 43606  1
## 43607  1
## 43608  1
## 43609  1
## 43610  1
## 43611  1
## 43612  1
## 43613  1
## 43614  1
## 43615  1
## 43616  1
## 43617  1
## 43618  1
## 43619  1
## 43620  1
## 43621  1
## 43622  1
## 43623  1
## 43624  1
## 43625  1
## 43626  1
## 43627  1
## 43628  1
## 43629  1
## 43630  1
## 43631  1
## 43632  1
## 43633  1
## 43634  1
## 43635  1
## 43636  1
## 43637  1
## 43638  1
## 43639  1
## 43640  1
## 43641  1
## 43642  1
## 43643  1
## 43644  1
## 43645  1
## 43646  1
## 43647  1
## 43648  1
## 43649  1
## 43650  1
## 43651  1
## 43652  1
## 43653  1
## 43654  1
## 43655  1
## 43656  1
## 43657  1
## 43658  1
## 43659  1
## 43660  1
## 43661  1
## 43662  1
## 43663  1
## 43664  1
## 43665  1
## 43666  1
## 43667  1
## 43668  1
## 43669  1
## 43670  1
## 43671  1
## 43672  1
## 43673  1
## 43674  1
## 43675  1
## 43676  1
## 43677  1
## 43678  1
## 43679  1
## 43680  1
## 43681  1
## 43682  1
## 43683  1
## 43684  1
## 43685  1
## 43686  1
## 43687  1
## 43688  1
## 43689  1
## 43690  1
## 43691  1
## 43692  1
## 43693  1
## 43694  1
## 43695  1
## 43696  1
## 43697  1
## 43698  1
## 43699  1
## 43700  1
## 43701  1
## 43702  1
## 43703  1
## 43704  1
## 43705  1
## 43706  1
## 43707  1
## 43708  1
## 43709  1
## 43710  1
## 43711  1
## 43712  1
## 43713  1
## 43714  1
## 43715  1
## 43716  1
## 43717  1
## 43718  1
## 43719  1
## 43720  1
## 43721  1
## 43722  1
## 43723  1
## 43724  1
## 43725  1
## 43726  1
## 43727  1
## 43728  1
## 43729  1
## 43730  1
## 43731  1
## 43732  1
## 43733  1
## 43734  1
## 43735  1
## 43736  1
## 43737  1
## 43738  1
## 43739  1
## 43740  1
## 43741  1
## 43742  1
## 43743  1
## 43744  1
## 43745  1
## 43746  1
## 43747  1
## 43748  1
## 43749  1
## 43750  1
## 43751  1
## 43752  1
## 43753  1
## 43754  1
## 43755  1
## 43756  1
## 43757  1
## 43758  1
## 43759  1
## 43760  1
## 43761  1
## 43762  1
## 43763  1
## 43764  1
## 43765  1
## 43766  1
## 43767  1
## 43768  1
## 43769  1
## 43770  1
## 43771  1
## 43772  1
## 43773  1
## 43774  1
## 43775  1
## 43776  1
## 43777  1
## 43778  1
## 43779  1
## 43780  1
## 43781  1
## 43782  1
## 43783  1
## 43784  1
## 43785  1
## 43786  1
## 43787  1
## 43788  1
## 43789  1
## 43790  1
## 43791  1
## 43792  1
## 43793  1
## 43794  1
## 43795  1
## 43796  1
## 43797  1
## 43798  1
## 43799  1
## 43800  1
## 43801  1
## 43802  1
## 43803  1
## 43804  1
## 43805  1
## 43806  1
## 43807  1
## 43808  1
## 43809  1
## 43810  1
## 43811  1
## 43812  1
## 43813  1
## 43814  1
## 43815  1
## 43816  1
## 43817  1
## 43818  1
## 43819  1
## 43820  1
## 43821  1
## 43822  1
## 43823  1
## 43824  1
## 43825  1
## 43826  1
## 43827  1
## 43828  1
## 43829  1
## 43830  1
## 43831  1
## 43832  1
## 43833  1
## 43834  1
## 43835  1
## 43836  1
## 43837  1
## 43838  1
## 43839  1
## 43840  1
## 43841  1
## 43842  1
## 43843  1
## 43844  1
## 43845  1
## 43846  1
## 43847  1
## 43848  1
## 43849  1
## 43850  1
## 43851  1
## 43852  1
## 43853  1
## 43854  1
## 43855  1
## 43856  1
## 43857  1
## 43858  1
## 43859  1
## 43860  1
## 43861  1
## 43862  1
## 43863  1
## 43864  1
## 43865  1
## 43866  1
## 43867  1
## 43868  1
## 43869  1
## 43870  1
## 43871  1
## 43872  1
## 43873  1
## 43874  1
## 43875  1
## 43876  1
## 43877  1
## 43878  1
## 43879  1
## 43880  1
## 43881  1
## 43882  1
## 43883  1
## 43884  1
## 43885  1
## 43886  1
## 43887  1
## 43888  1
## 43889  1
## 43890  1
## 43891  1
## 43892  1
## 43893  1
## 43894  1
## 43895  1
## 43896  1
## 43897  1
## 43898  1
## 43899  1
## 43900  1
## 43901  1
## 43902  1
## 43903  1
## 43904  1
## 43905  1
## 43906  1
## 43907  1
## 43908  1
## 43909  1
## 43910  1
## 43911  1
## 43912  1
## 43913  1
## 43914  1
## 43915  1
## 43916  1
## 43917  1
## 43918  1
## 43919  1
## 43920  1
## 43921  1
## 43922  1
## 43923  1
## 43924  1
## 43925  1
## 43926  1
## 43927  1
## 43928  1
## 43929  1
## 43930  1
## 43931  1
## 43932  1
## 43933  1
## 43934  1
## 43935  1
## 43936  1
## 43937  1
## 43938  1
## 43939  1
## 43940  1
## 43941  1
## 43942  1
## 43943  1
## 43944  1
## 43945  1
## 43946  1
## 43947  1
## 43948  1
## 43949  1
## 43950  1
## 43951  1
## 43952  1
## 43953  1
## 43954  1
## 43955  1
## 43956  1
## 43957  1
## 43958  1
## 43959  1
## 43960  1
## 43961  1
## 43962  1
## 43963  1
## 43964  1
## 43965  1
## 43966  1
## 43967  1
## 43968  1
## 43969  1
## 43970  1
## 43971  1
## 43972  1
## 43973  1
## 43974  1
## 43975  1
## 43976  1
## 43977  1
## 43978  1
## 43979  1
## 43980  1
## 43981  1
## 43982  1
## 43983  1
## 43984  1
## 43985  1
## 43986  1
## 43987  1
## 43988  1
## 43989  1
## 43990  1
## 43991  1
## 43992  1
## 43993  1
## 43994  1
## 43995  1
## 43996  1
## 43997  1
## 43998  1
## 43999  1
## 44000  1
## 44001  1
## 44002  1
## 44003  1
## 44004  1
## 44005  1
## 44006  1
## 44007  1
## 44008  1
## 44009  1
## 44010  1
## 44011  1
## 44012  1
## 44013  1
## 44014  1
## 44015  1
## 44016  1
## 44017  1
## 44018  1
## 44019  1
## 44020  1
## 44021  1
## 44022  1
## 44023  1
## 44024  1
## 44025  1
## 44026  1
## 44027  1
## 44028  1
## 44029  1
## 44030  1
## 44031  1
## 44032  1
## 44033  1
## 44034  1
## 44035  1
## 44036  1
## 44037  1
## 44038  1
## 44039  1
## 44040  1
## 44041  1
## 44042  1
## 44043  1
## 44044  1
## 44045  1
## 44046  1
## 44047  1
## 44048  1
## 44049  1
## 44050  1
## 44051  1
## 44052  1
## 44053  1
## 44054  1
## 44055  1
## 44056  1
## 44057  1
## 44058  1
## 44059  1
## 44060  1
## 44061  1
## 44062  1
## 44063  1
## 44064  1
## 44065  1
## 44066  1
## 44067  1
## 44068  1
## 44069  1
## 44070  1
## 44071  1
## 44072  1
## 44073  1
## 44074  1
## 44075  1
## 44076  1
## 44077  1
## 44078  1
## 44079  1
## 44080  1
## 44081  1
## 44082  1
## 44083  1
## 44084  1
## 44085  1
## 44086  1
## 44087  1
## 44088  1
## 44089  1
## 44090  1
## 44091  1
## 44092  1
## 44093  1
## 44094  1
## 44095  1
## 44096  1
## 44097  1
## 44098  1
## 44099  1
## 44100  1
## 44101  1
## 44102  1
## 44103  1
## 44104  1
## 44105  1
## 44106  1
## 44107  1
## 44108  1
## 44109  1
## 44110  1
## 44111  1
## 44112  1
## 44113  1
## 44114  1
## 44115  1
## 44116  1
## 44117  1
## 44118  1
## 44119  1
## 44120  1
## 44121  1
## 44122  1
## 44123  1
## 44124  1
## 44125  1
## 44126  1
## 44127  1
## 44128  1
## 44129  1
## 44130  1
## 44131  1
## 44132  1
## 44133  1
## 44134  1
## 44135  1
## 44136  1
## 44137  1
## 44138  1
## 44139  1
## 44140  1
## 44141  1
## 44142  1
## 44143  1
## 44144  1
## 44145  1
## 44146  1
## 44147  1
## 44148  1
## 44149  1
## 44150  1
## 44151  1
## 44152  1
## 44153  1
## 44154  1
## 44155  1
## 44156  1
## 44157  1
## 44158  1
## 44159  1
## 44160  1
## 44161  1
## 44162  1
## 44163  1
## 44164  1
## 44165  1
## 44166  1
## 44167  1
## 44168  1
## 44169  1
## 44170  1
## 44171  1
## 44172  1
## 44173  1
## 44174  1
## 44175  1
## 44176  1
## 44177  1
## 44178  1
## 44179  1
## 44180  1
## 44181  1
## 44182  1
## 44183  1
## 44184  1
## 44185  1
## 44186  1
## 44187  1
## 44188  1
## 44189  1
## 44190  1
## 44191  1
## 44192  1
## 44193  1
## 44194  1
## 44195  1
## 44196  1
## 44197  1
## 44198  1
## 44199  1
## 44200  1
## 44201  1
## 44202  1
## 44203  1
## 44204  1
## 44205  1
## 44206  1
## 44207  1
## 44208  1
## 44209  1
## 44210  1
## 44211  1
## 44212  1
## 44213  1
## 44214  1
## 44215  1
## 44216  1
## 44217  1
## 44218  1
## 44219  1
## 44220  1
## 44221  1
## 44222  1
## 44223  1
## 44224  1
## 44225  1
## 44226  1
## 44227  1
## 44228  1
## 44229  1
## 44230  1
## 44231  1
## 44232  1
## 44233  1
## 44234  1
## 44235  1
## 44236  1
## 44237  1
## 44238  1
## 44239  1
## 44240  1
## 44241  1
## 44242  1
## 44243  1
## 44244  1
## 44245  1
## 44246  1
## 44247  1
## 44248  1
## 44249  1
## 44250  1
## 44251  1
## 44252  1
## 44253  1
## 44254  1
## 44255  1
## 44256  1
## 44257  1
## 44258  1
## 44259  1
## 44260  1
## 44261  1
## 44262  1
## 44263  1
## 44264  1
## 44265  1
## 44266  1
## 44267  1
## 44268  1
## 44269  1
## 44270  1
## 44271  1
## 44272  1
## 44273  1
## 44274  1
## 44275  1
## 44276  1
## 44277  1
## 44278  1
## 44279  1
## 44280  1
## 44281  1
## 44282  1
## 44283  1
## 44284  1
## 44285  1
## 44286  1
## 44287  1
## 44288  1
## 44289  1
## 44290  1
## 44291  1
## 44292  1
## 44293  1
## 44294  1
## 44295  1
## 44296  1
## 44297  1
## 44298  1
## 44299  1
## 44300  1
## 44301  1
## 44302  1
## 44303  1
## 44304  1
## 44305  1
## 44306  1
## 44307  1
## 44308  1
## 44309  1
## 44310  1
## 44311  1
## 44312  1
## 44313  1
## 44314  1
## 44315  1
## 44316  1
## 44317  1
## 44318  1
## 44319  1
## 44320  1
## 44321  1
## 44322  1
## 44323  1
## 44324  1
## 44325  1
## 44326  1
## 44327  1
## 44328  1
## 44329  1
## 44330  1
## 44331  1
## 44332  1
## 44333  1
## 44334  1
## 44335  1
## 44336  1
## 44337  1
## 44338  1
## 44339  1
## 44340  1
## 44341  1
## 44342  1
## 44343  1
## 44344  1
## 44345  1
## 44346  1
## 44347  1
## 44348  1
## 44349  1
## 44350  1
## 44351  1
## 44352  1
## 44353  1
## 44354  1
## 44355  1
## 44356  1
## 44357  1
## 44358  1
## 44359  1
## 44360  1
## 44361  1
## 44362  1
## 44363  1
## 44364  1
## 44365  1
## 44366  1
## 44367  1
## 44368  1
## 44369  1
## 44370  1
## 44371  1
## 44372  1
## 44373  1
## 44374  1
## 44375  1
## 44376  1
## 44377  1
## 44378  1
## 44379  1
## 44380  1
## 44381  1
## 44382  1
## 44383  1
## 44384  1
## 44385  1
## 44386  1
## 44387  1
## 44388  1
## 44389  1
## 44390  1
## 44391  1
## 44392  1
## 44393  1
## 44394  1
## 44395  1
## 44396  1
## 44397  1
## 44398  1
## 44399  1
## 44400  1
## 44401  1
## 44402  1
## 44403  1
## 44404  1
## 44405  1
## 44406  1
## 44407  1
## 44408  1
## 44409  1
## 44410  1
## 44411  1
## 44412  1
## 44413  1
## 44414  1
## 44415  1
## 44416  1
## 44417  1
## 44418  1
## 44419  1
## 44420  1
## 44421  1
## 44422  1
## 44423  1
## 44424  1
## 44425  1
## 44426  1
## 44427  1
## 44428  1
## 44429  1
## 44430  1
## 44431  1
## 44432  1
## 44433  1
## 44434  1
## 44435  1
## 44436  1
## 44437  1
## 44438  1
## 44439  1
## 44440  1
## 44441  1
## 44442  1
## 44443  1
## 44444  1
## 44445  1
## 44446  1
## 44447  1
## 44448  1
## 44449  1
## 44450  1
## 44451  1
## 44452  1
## 44453  1
## 44454  1
## 44455  1
## 44456  1
## 44457  1
## 44458  1
## 44459  1
## 44460  1
## 44461  1
## 44462  1
## 44463  1
## 44464  1
## 44465  1
## 44466  1
## 44467  1
## 44468  1
## 44469  1
## 44470  1
## 44471  1
## 44472  1
## 44473  1
## 44474  1
## 44475  1
## 44476  1
## 44477  1
## 44478  1
## 44479  1
## 44480  1
## 44481  1
## 44482  1
## 44483  1
## 44484  1
## 44485  1
## 44486  1
## 44487  1
## 44488  1
## 44489  1
## 44490  1
## 44491  1
## 44492  1
## 44493  1
## 44494  1
## 44495  1
## 44496  1
## 44497  1
## 44498  1
## 44499  1
## 44500  1
## 44501  1
## 44502  1
## 44503  1
## 44504  1
## 44505  1
## 44506  1
## 44507  1
## 44508  1
## 44509  1
## 44510  1
## 44511  1
## 44512  1
## 44513  1
## 44514  1
## 44515  1
## 44516  1
## 44517  1
## 44518  1
## 44519  1
## 44520  1
## 44521  1
## 44522  1
## 44523  1
## 44524  1
## 44525  1
## 44526  1
## 44527  1
## 44528  1
## 44529  1
## 44530  1
## 44531  1
## 44532  1
## 44533  1
## 44534  1
## 44535  1
## 44536  1
## 44537  1
## 44538  1
## 44539  1
## 44540  1
## 44541  1
## 44542  1
## 44543  1
## 44544  1
## 44545  1
## 44546  1
## 44547  1
## 44548  1
## 44549  1
## 44550  1
## 44551  1
## 44552  1
## 44553  1
## 44554  1
## 44555  1
## 44556  1
## 44557  1
## 44558  1
## 44559  1
## 44560  1
## 44561  1
## 44562  1
## 44563  1
## 44564  1
## 44565  1
## 44566  1
## 44567  1
## 44568  1
## 44569  1
## 44570  1
## 44571  1
## 44572  1
## 44573  1
## 44574  1
## 44575  1
## 44576  1
## 44577  1
## 44578  1
## 44579  1
## 44580  1
## 44581  1
## 44582  1
## 44583  1
## 44584  1
## 44585  1
## 44586  1
## 44587  1
## 44588  1
## 44589  1
## 44590  1
## 44591  1
## 44592  1
## 44593  1
## 44594  1
## 44595  1
## 44596  1
## 44597  1
## 44598  1
## 44599  1
## 44600  1
## 44601  1
## 44602  1
## 44603  1
## 44604  1
## 44605  1
## 44606  1
## 44607  1
## 44608  1
## 44609  1
## 44610  1
## 44611  1
## 44612  1
## 44613  1
## 44614  1
## 44615  1
## 44616  1
## 44617  1
## 44618  1
## 44619  1
## 44620  1
## 44621  1
## 44622  1
## 44623  1
## 44624  1
## 44625  1
## 44626  1
## 44627  1
## 44628  1
## 44629  1
## 44630  1
## 44631  1
## 44632  1
## 44633  1
## 44634  1
## 44635  1
## 44636  1
## 44637  1
## 44638  1
## 44639  1
## 44640  1
## 44641  1
## 44642  1
## 44643  1
## 44644  1
## 44645  1
## 44646  1
## 44647  1
## 44648  1
## 44649  1
## 44650  1
## 44651  1
## 44652  1
## 44653  1
## 44654  1
## 44655  1
## 44656  1
## 44657  1
## 44658  1
## 44659  1
## 44660  1
## 44661  1
## 44662  1
## 44663  1
## 44664  1
## 44665  1
## 44666  1
## 44667  1
## 44668  1
## 44669  1
## 44670  1
## 44671  1
## 44672  1
## 44673  1
## 44674  1
## 44675  1
## 44676  1
## 44677  1
## 44678  1
## 44679  1
## 44680  1
## 44681  1
## 44682  1
## 44683  1
## 44684  1
## 44685  1
## 44686  1
## 44687  1
## 44688  1
## 44689  1
## 44690  1
## 44691  1
## 44692  1
## 44693  1
## 44694  1
## 44695  1
## 44696  1
## 44697  1
## 44698  1
## 44699  1
## 44700  1
## 44701  1
## 44702  1
## 44703  1
## 44704  1
## 44705  1
## 44706  1
## 44707  1
## 44708  1
## 44709  1
## 44710  1
## 44711  1
## 44712  1
## 44713  1
## 44714  1
## 44715  1
## 44716  1
## 44717  1
## 44718  1
## 44719  1
## 44720  1
## 44721  1
## 44722  1
## 44723  1
## 44724  1
## 44725  1
## 44726  1
## 44727  1
## 44728  1
## 44729  1
## 44730  1
## 44731  1
## 44732  1
## 44733  1
## 44734  1
## 44735  1
## 44736  1
## 44737  1
## 44738  1
## 44739  1
## 44740  1
## 44741  1
## 44742  1
## 44743  1
## 44744  1
## 44745  1
## 44746  1
## 44747  1
## 44748  1
## 44749  1
## 44750  1
## 44751  1
## 44752  1
## 44753  1
## 44754  1
## 44755  1
## 44756  1
## 44757  1
## 44758  1
## 44759  1
## 44760  1
## 44761  1
## 44762  1
## 44763  1
## 44764  1
## 44765  1
## 44766  1
## 44767  1
## 44768  1
## 44769  1
## 44770  1
## 44771  1
## 44772  1
## 44773  1
## 44774  1
## 44775  1
## 44776  1
## 44777  1
## 44778  1
## 44779  1
## 44780  1
## 44781  1
## 44782  1
## 44783  1
## 44784  1
## 44785  1
## 44786  1
## 44787  1
## 44788  1
## 44789  1
## 44790  1
## 44791  1
## 44792  1
## 44793  1
## 44794  1
## 44795  1
## 44796  1
## 44797  1
## 44798  1
## 44799  1
## 44800  1
## 44801  1
## 44802  1
## 44803  1
## 44804  1
## 44805  1
## 44806  1
## 44807  1
## 44808  1
## 44809  1
## 44810  1
## 44811  1
## 44812  1
## 44813  1
## 44814  1
## 44815  1
## 44816  1
## 44817  1
## 44818  1
## 44819  1
## 44820  1
## 44821  1
## 44822  1
## 44823  1
## 44824  1
## 44825  1
## 44826  1
## 44827  1
## 44828  1
## 44829  1
## 44830  1
## 44831  1
## 44832  1
## 44833  1
## 44834  1
## 44835  1
## 44836  1
## 44837  1
## 44838  1
## 44839  1
## 44840  1
## 44841  1
## 44842  1
## 44843  1
## 44844  1
## 44845  1
## 44846  1
## 44847  1
## 44848  1
## 44849  1
## 44850  1
## 44851  1
## 44852  1
## 44853  1
## 44854  1
## 44855  1
## 44856  1
## 44857  1
## 44858  1
## 44859  1
## 44860  1
## 44861  1
## 44862  1
## 44863  1
## 44864  1
## 44865  1
## 44866  1
## 44867  1
## 44868  1
## 44869  1
## 44870  1
## 44871  1
## 44872  1
## 44873  1
## 44874  1
## 44875  1
## 44876  1
## 44877  1
## 44878  1
## 44879  1
## 44880  1
## 44881  1
## 44882  1
## 44883  1
## 44884  1
## 44885  1
## 44886  1
## 44887  1
## 44888  1
## 44889  1
## 44890  1
## 44891  1
## 44892  1
## 44893  1
## 44894  1
## 44895  1
## 44896  1
## 44897  1
## 44898  1
## 44899  1
## 44900  1
## 44901  1
## 44902  1
## 44903  1
## 44904  1
## 44905  1
## 44906  1
## 44907  1
## 44908  1
## 44909  1
## 44910  1
## 44911  1
## 44912  1
## 44913  1
## 44914  1
## 44915  1
## 44916  1
## 44917  1
## 44918  1
## 44919  1
## 44920  1
## 44921  1
## 44922  1
## 44923  1
## 44924  1
## 44925  1
## 44926  1
## 44927  1
## 44928  1
## 44929  1
## 44930  1
## 44931  1
## 44932  1
## 44933  1
## 44934  1
## 44935  1
## 44936  1
## 44937  1
## 44938  1
## 44939  1
## 44940  1
## 44941  1
## 44942  1
## 44943  1
## 44944  1
## 44945  1
## 44946  1
## 44947  1
## 44948  1
## 44949  1
## 44950  1
## 44951  1
## 44952  1
## 44953  1
## 44954  1
## 44955  1
## 44956  1
## 44957  1
## 44958  1
## 44959  1
## 44960  1
## 44961  1
## 44962  1
## 44963  1
## 44964  1
## 44965  1
## 44966  1
## 44967  1
## 44968  1
## 44969  1
## 44970  1
## 44971  1
## 44972  1
## 44973  1
## 44974  1
## 44975  1
## 44976  1
## 44977  1
## 44978  1
## 44979  1
## 44980  1
## 44981  1
## 44982  1
## 44983  1
## 44984  1
## 44985  1
## 44986  1
## 44987  1
## 44988  1
## 44989  1
## 44990  1
## 44991  1
## 44992  1
## 44993  1
## 44994  1
## 44995  1
## 44996  1
## 44997  1
## 44998  1
## 44999  1
## 45000  1
## 45001  1
## 45002  1
## 45003  1
## 45004  1
## 45005  1
## 45006  1
## 45007  1
## 45008  1
## 45009  1
## 45010  1
## 45011  1
## 45012  1
## 45013  1
## 45014  1
## 45015  1
## 45016  1
## 45017  1
## 45018  1
## 45019  1
## 45020  1
## 45021  1
## 45022  1
## 45023  1
## 45024  1
## 45025  1
## 45026  1
## 45027  1
## 45028  1
## 45029  1
## 45030  1
## 45031  1
## 45032  1
## 45033  1
## 45034  1
## 45035  1
## 45036  1
## 45037  1
## 45038  1
## 45039  1
## 45040  1
## 45041  1
## 45042  1
## 45043  1
## 45044  1
## 45045  1
## 45046  1
## 45047  1
## 45048  1
## 45049  1
## 45050  1
## 45051  1
## 45052  1
## 45053  1
## 45054  1
## 45055  1
## 45056  1
## 45057  1
## 45058  1
## 45059  1
## 45060  1
## 45061  1
## 45062  1
## 45063  1
## 45064  1
## 45065  1
## 45066  1
## 45067  1
## 45068  1
## 45069  1
## 45070  1
## 45071  1
## 45072  1
## 45073  1
## 45074  1
## 45075  1
## 45076  1
## 45077  1
## 45078  1
## 45079  1
## 45080  1
## 45081  1
## 45082  1
## 45083  1
## 45084  1
## 45085  1
## 45086  1
## 45087  1
## 45088  1
## 45089  1
## 45090  1
## 45091  1
## 45092  1
## 45093  1
## 45094  1
## 45095  1
## 45096  1
## 45097  1
## 45098  1
## 45099  1
## 45100  1
## 45101  1
## 45102  1
## 45103  1
## 45104  1
## 45105  1
## 45106  1
## 45107  1
## 45108  1
## 45109  1
## 45110  1
## 45111  1
## 45112  1
## 45113  1
## 45114  1
## 45115  1
## 45116  1
## 45117  1
## 45118  1
## 45119  1
## 45120  1
## 45121  1
## 45122  1
## 45123  1
## 45124  1
## 45125  1
## 45126  1
## 45127  1
## 45128  1
## 45129  1
## 45130  1
## 45131  1
## 45132  1
## 45133  1
## 45134  1
## 45135  1
## 45136  1
## 45137  1
## 45138  1
## 45139  1
## 45140  1
## 45141  1
## 45142  1
## 45143  1
## 45144  1
## 45145  1
## 45146  1
## 45147  1
## 45148  1
## 45149  1
## 45150  1
## 45151  1
## 45152  1
## 45153  1
## 45154  1
## 45155  1
## 45156  1
## 45157  1
## 45158  1
## 45159  1
## 45160  1
## 45161  1
## 45162  1
## 45163  1
## 45164  1
## 45165  1
## 45166  1
## 45167  1
## 45168  1
## 45169  1
## 45170  1
## 45171  1
## 45172  1
## 45173  1
## 45174  1
## 45175  1
## 45176  1
## 45177  1
## 45178  1
## 45179  1
## 45180  1
## 45181  1
## 45182  1
## 45183  1
## 45184  1
## 45185  1
## 45186  1
## 45187  1
## 45188  1
## 45189  1
## 45190  1
## 45191  1
## 45192  1
## 45193  1
## 45194  1
## 45195  1
## 45196  1
## 45197  1
## 45198  1
## 45199  1
## 45200  1
## 45201  1
## 45202  1
## 45203  1
## 45204  1
## 45205  1
## 45206  1
## 45207  1
## 45208  1
## 45209  1
## 45210  1
## 45211  1
## 45212  1
## 45213  1
## 45214  1
## 45215  1
## 45216  1
## 45217  1
## 45218  1
## 45219  1
## 45220  1
## 45221  1
## 45222  1
## 45223  1
## 45224  1
## 45225  1
## 45226  1
## 45227  1
## 45228  1
## 45229  1
## 45230  1
## 45231  1
## 45232  1
## 45233  1
## 45234  1
## 45235  1
## 45236  1
## 45237  1
## 45238  1
## 45239  1
## 45240  1
## 45241  1
## 45242  1
## 45243  1
## 45244  1
## 45245  1
## 45246  1
## 45247  1
## 45248  1
## 45249  1
## 45250  1
## 45251  1
## 45252  1
## 45253  1
## 45254  1
## 45255  1
## 45256  1
## 45257  1
## 45258  1
## 45259  1
## 45260  1
## 45261  1
## 45262  1
## 45263  1
## 45264  1
## 45265  1
## 45266  1
## 45267  1
## 45268  1
## 45269  1
## 45270  1
## 45271  1
## 45272  1
## 45273  1
## 45274  1
## 45275  1
## 45276  1
## 45277  1
## 45278  1
## 45279  1
## 45280  1
## 45281  1
## 45282  1
## 45283  1
## 45284  1
## 45285  1
## 45286  1
## 45287  1
## 45288  1
## 45289  1
## 45290  1
## 45291  1
## 45292  1
## 45293  1
## 45294  1
## 45295  1
## 45296  1
## 45297  1
## 45298  1
## 45299  1
## 45300  1
## 45301  1
## 45302  1
## 45303  1
## 45304  1
## 45305  1
## 45306  1
## 45307  1
## 45308  1
## 45309  1
## 45310  1
## 45311  1
## 45312  1
## 45313  1
## 45314  1
## 45315  1
## 45316  1
## 45317  1
## 45318  1
## 45319  1
## 45320  1
## 45321  1
## 45322  1
## 45323  1
## 45324  1
## 45325  1
## 45326  1
## 45327  1
## 45328  1
## 45329  1
## 45330  1
## 45331  1
## 45332  1
## 45333  1
## 45334  1
## 45335  1
## 45336  1
## 45337  1
## 45338  1
## 45339  1
## 45340  1
## 45341  1
## 45342  1
## 45343  1
## 45344  1
## 45345  1
## 45346  1
## 45347  1
## 45348  1
## 45349  1
## 45350  1
## 45351  1
## 45352  1
## 45353  1
## 45354  1
## 45355  1
## 45356  1
## 45357  1
## 45358  1
## 45359  1
## 45360  1
## 45361  1
## 45362  1
## 45363  1
## 45364  1
## 45365  1
## 45366  1
## 45367  1
## 45368  1
## 45369  1
## 45370  1
## 45371  1
## 45372  1
## 45373  1
## 45374  1
## 45375  1
## 45376  1
## 45377  1
## 45378  1
## 45379  1
## 45380  1
## 45381  1
## 45382  1
## 45383  1
## 45384  1
## 45385  1
## 45386  1
## 45387  1
## 45388  1
## 45389  1
## 45390  1
## 45391  1
## 45392  1
## 45393  1
## 45394  1
## 45395  1
## 45396  1
## 45397  1
## 45398  1
## 45399  1
## 45400  1
## 45401  1
## 45402  1
## 45403  1
## 45404  1
## 45405  1
## 45406  1
## 45407  1
## 45408  1
## 45409  1
## 45410  1
## 45411  1
## 45412  1
## 45413  1
## 45414  1
## 45415  1
## 45416  1
## 45417  1
## 45418  1
## 45419  1
## 45420  1
## 45421  1
## 45422  1
## 45423  1
## 45424  1
## 45425  1
## 45426  1
## 45427  1
## 45428  1
## 45429  1
## 45430  1
## 45431  1
## 45432  1
## 45433  1
## 45434  1
## 45435  1
## 45436  1
## 45437  1
## 45438  1
## 45439  1
## 45440  1
## 45441  1
## 45442  1
## 45443  1
## 45444  1
## 45445  1
## 45446  1
## 45447  1
## 45448  1
## 45449  1
## 45450  1
## 45451  1
## 45452  1
## 45453  1
## 45454  1
## 45455  1
## 45456  1
## 45457  1
## 45458  1
## 45459  1
## 45460  1
## 45461  1
## 45462  1
## 45463  1
## 45464  1
## 45465  1
## 45466  1
## 45467  1
## 45468  1
## 45469  1
## 45470  1
## 45471  1
## 45472  1
## 45473  1
## 45474  1
## 45475  1
## 45476  1
## 45477  1
## 45478  1
## 45479  1
## 45480  1
## 45481  1
## 45482  1
## 45483  1
## 45484  1
## 45485  1
## 45486  1
## 45487  1
## 45488  1
## 45489  1
## 45490  1
## 45491  1
## 45492  1
## 45493  1
## 45494  1
## 45495  1
## 45496  1
## 45497  1
## 45498  1
## 45499  1
## 45500  1
## 45501  1
## 45502  1
## 45503  1
## 45504  1
## 45505  1
## 45506  1
## 45507  1
## 45508  1
## 45509  1
## 45510  1
## 45511  1
## 45512  1
## 45513  1
## 45514  1
## 45515  1
## 45516  1
## 45517  1
## 45518  1
## 45519  1
## 45520  1
## 45521  1
## 45522  1
## 45523  1
## 45524  1
## 45525  1
## 45526  1
## 45527  1
## 45528  1
## 45529  1
## 45530  1
## 45531  1
## 45532  1
## 45533  1
## 45534  1
## 45535  1
## 45536  1
## 45537  1
## 45538  1
## 45539  1
## 45540  1
## 45541  1
## 45542  1
## 45543  1
## 45544  1
## 45545  1
## 45546  1
## 45547  1
## 45548  1
## 45549  1
## 45550  1
## 45551  1
## 45552  1
## 45553  1
## 45554  1
## 45555  1
## 45556  1
## 45557  1
## 45558  1
## 45559  1
## 45560  1
## 45561  1
## 45562  1
## 45563  1
## 45564  1
## 45565  1
## 45566  1
## 45567  1
## 45568  1
## 45569  1
## 45570  1
## 45571  1
## 45572  1
## 45573  1
## 45574  1
## 45575  1
## 45576  1
## 45577  1
## 45578  1
## 45579  1
## 45580  1
## 45581  1
## 45582  1
## 45583  1
## 45584  1
## 45585  1
## 45586  1
## 45587  1
## 45588  1
## 45589  1
## 45590  1
## 45591  1
## 45592  1
## 45593  1
## 45594  1
## 45595  1
## 45596  1
## 45597  1
## 45598  1
## 45599  1
## 45600  1
## 45601  1
## 45602  1
## 45603  1
## 45604  1
## 45605  1
## 45606  1
## 45607  1
## 45608  1
## 45609  1
## 45610  1
## 45611  1
## 45612  1
## 45613  1
## 45614  1
## 45615  1
## 45616  1
## 45617  1
## 45618  1
## 45619  1
## 45620  1
## 45621  1
## 45622  1
## 45623  1
## 45624  1
## 45625  1
## 45626  1
## 45627  1
## 45628  1
## 45629  1
## 45630  1
## 45631  1
## 45632  1
## 45633  1
## 45634  1
## 45635  1
## 45636  1
## 45637  1
## 45638  1
## 45639  1
## 45640  1
## 45641  1
## 45642  1
## 45643  1
## 45644  1
## 45645  1
## 45646  1
## 45647  1
## 45648  1
## 45649  1
## 45650  1
## 45651  1
## 45652  1
## 45653  1
## 45654  1
## 45655  1
## 45656  1
## 45657  1
## 45658  1
## 45659  1
## 45660  1
## 45661  1
## 45662  1
## 45663  1
## 45664  1
## 45665  1
## 45666  1
## 45667  1
## 45668  1
## 45669  1
## 45670  1
## 45671  1
## 45672  1
## 45673  1
## 45674  1
## 45675  1
## 45676  1
## 45677  1
## 45678  1
## 45679  1
## 45680  1
## 45681  1
## 45682  1
## 45683  1
## 45684  1
## 45685  1
## 45686  1
## 45687  1
## 45688  1
## 45689  1
## 45690  1
## 45691  1
## 45692  1
## 45693  1
## 45694  1
## 45695  1
## 45696  1
## 45697  1
## 45698  1
## 45699  1
## 45700  1
## 45701  1
## 45702  1
## 45703  1
## 45704  1
## 45705  1
## 45706  1
## 45707  1
## 45708  1
## 45709  1
## 45710  1
## 45711  1
## 45712  1
## 45713  1
## 45714  1
## 45715  1
## 45716  1
## 45717  1
## 45718  1
## 45719  1
## 45720  1
## 45721  1
## 45722  1
## 45723  1
## 45724  1
## 45725  1
## 45726  1
## 45727  1
## 45728  1
## 45729  1
## 45730  1
## 45731  1
## 45732  1
## 45733  1
## 45734  1
## 45735  1
## 45736  1
## 45737  1
## 45738  1
## 45739  1
## 45740  1
## 45741  1
## 45742  1
## 45743  1
## 45744  1
## 45745  1
## 45746  1
## 45747  1
## 45748  1
## 45749  1
## 45750  1
## 45751  1
## 45752  1
## 45753  1
## 45754  1
## 45755  1
## 45756  1
## 45757  1
## 45758  1
## 45759  1
## 45760  1
## 45761  1
## 45762  1
## 45763  1
## 45764  1
## 45765  1
## 45766  1
## 45767  1
## 45768  1
## 45769  1
## 45770  1
## 45771  1
## 45772  1
## 45773  1
## 45774  1
## 45775  1
## 45776  1
## 45777  1
## 45778  1
## 45779  1
## 45780  1
## 45781  1
## 45782  1
## 45783  1
## 45784  1
## 45785  1
## 45786  1
## 45787  1
## 45788  1
## 45789  1
## 45790  1
## 45791  1
## 45792  1
## 45793  1
## 45794  1
## 45795  1
## 45796  1
## 45797  1
## 45798  1
## 45799  1
## 45800  1
## 45801  1
## 45802  1
## 45803  1
## 45804  1
## 45805  1
## 45806  1
## 45807  1
## 45808  1
## 45809  1
## 45810  1
## 45811  1
## 45812  1
## 45813  1
## 45814  1
## 45815  1
## 45816  1
## 45817  1
## 45818  1
## 45819  1
## 45820  1
## 45821  1
## 45822  1
## 45823  1
## 45824  1
## 45825  1
## 45826  1
## 45827  1
## 45828  1
## 45829  1
## 45830  1
## 45831  1
## 45832  1
## 45833  1
## 45834  1
## 45835  1
## 45836  1
## 45837  1
## 45838  1
## 45839  1
## 45840  1
## 45841  1
## 45842  1
## 45843  1
## 45844  1
## 45845  1
## 45846  1
## 45847  1
## 45848  1
## 45849  1
## 45850  1
## 45851  1
## 45852  1
## 45853  1
## 45854  1
## 45855  1
## 45856  1
## 45857  1
## 45858  1
## 45859  1
## 45860  1
## 45861  1
## 45862  1
## 45863  1
## 45864  1
## 45865  1
## 45866  1
## 45867  1
## 45868  1
## 45869  1
## 45870  1
## 45871  1
## 45872  1
## 45873  1
## 45874  1
## 45875  1
## 45876  1
## 45877  1
## 45878  1
## 45879  1
## 45880  1
## 45881  1
## 45882  1
## 45883  1
## 45884  1
## 45885  1
## 45886  1
## 45887  1
## 45888  1
## 45889  1
## 45890  1
## 45891  1
## 45892  1
## 45893  1
## 45894  1
## 45895  1
## 45896  1
## 45897  1
## 45898  1
## 45899  1
## 45900  1
## 45901  1
## 45902  1
## 45903  1
## 45904  1
## 45905  1
## 45906  1
## 45907  1
## 45908  1
## 45909  1
## 45910  1
## 45911  1
## 45912  1
## 45913  1
## 45914  1
## 45915  1
## 45916  1
## 45917  1
## 45918  1
## 45919  1
## 45920  1
## 45921  1
## 45922  1
## 45923  1
## 45924  1
## 45925  1
## 45926  1
## 45927  1
## 45928  1
## 45929  1
## 45930  1
## 45931  1
## 45932  1
## 45933  1
## 45934  1
## 45935  1
## 45936  1
## 45937  1
## 45938  1
## 45939  1
## 45940  1
## 45941  1
## 45942  1
## 45943  1
## 45944  1
## 45945  1
## 45946  1
## 45947  1
## 45948  1
## 45949  1
## 45950  1
## 45951  1
## 45952  1
## 45953  1
## 45954  1
## 45955  1
## 45956  1
## 45957  1
## 45958  1
## 45959  1
## 45960  1
## 45961  1
## 45962  1
## 45963  1
## 45964  1
## 45965  1
## 45966  1
## 45967  1
## 45968  1
## 45969  1
## 45970  1
## 45971  1
## 45972  1
## 45973  1
## 45974  1
## 45975  1
## 45976  1
## 45977  1
## 45978  1
## 45979  1
## 45980  1
## 45981  1
## 45982  1
## 45983  1
## 45984  1
## 45985  1
## 45986  1
## 45987  1
## 45988  1
## 45989  1
## 45990  1
## 45991  1
## 45992  1
## 45993  1
## 45994  1
## 45995  1
## 45996  1
## 45997  1
## 45998  1
## 45999  1
## 46000  1
## 46001  1
## 46002  1
## 46003  1
## 46004  1
## 46005  1
## 46006  1
## 46007  1
## 46008  1
## 46009  1
## 46010  1
## 46011  1
## 46012  1
## 46013  1
## 46014  1
## 46015  1
## 46016  1
## 46017  1
## 46018  1
## 46019  1
## 46020  1
## 46021  1
## 46022  1
## 46023  1
## 46024  1
## 46025  1
## 46026  1
## 46027  1
## 46028  1
## 46029  1
## 46030  1
## 46031  1
## 46032  1
## 46033  1
## 46034  1
## 46035  1
## 46036  1
## 46037  1
## 46038  1
## 46039  1
## 46040  1
## 46041  1
## 46042  1
## 46043  1
## 46044  1
## 46045  1
## 46046  1
## 46047  1
## 46048  1
## 46049  1
## 46050  1
## 46051  1
## 46052  1
## 46053  1
## 46054  1
## 46055  1
## 46056  1
## 46057  1
## 46058  1
## 46059  1
## 46060  1
## 46061  1
## 46062  1
## 46063  1
## 46064  1
## 46065  1
## 46066  1
## 46067  1
## 46068  1
## 46069  1
## 46070  1
## 46071  1
## 46072  1
## 46073  1
## 46074  1
## 46075  1
## 46076  1
## 46077  1
## 46078  1
## 46079  1
## 46080  1
## 46081  1
## 46082  1
## 46083  1
## 46084  1
## 46085  1
## 46086  1
## 46087  1
## 46088  1
## 46089  1
## 46090  1
## 46091  1
## 46092  1
## 46093  1
## 46094  1
## 46095  1
## 46096  1
## 46097  1
## 46098  1
## 46099  1
## 46100  1
## 46101  1
## 46102  1
## 46103  1
## 46104  1
## 46105  1
## 46106  1
## 46107  1
## 46108  1
## 46109  1
## 46110  1
## 46111  1
## 46112  1
## 46113  1
## 46114  1
## 46115  1
## 46116  1
## 46117  1
## 46118  1
## 46119  1
## 46120  1
## 46121  1
## 46122  1
## 46123  1
## 46124  1
## 46125  1
## 46126  1
## 46127  1
## 46128  1
## 46129  1
## 46130  1
## 46131  1
## 46132  1
## 46133  1
## 46134  1
## 46135  1
## 46136  1
## 46137  1
## 46138  1
## 46139  1
## 46140  1
## 46141  1
## 46142  1
## 46143  1
## 46144  1
## 46145  1
## 46146  1
## 46147  1
## 46148  1
## 46149  1
## 46150  1
## 46151  1
## 46152  1
## 46153  1
## 46154  1
## 46155  1
## 46156  1
## 46157  1
## 46158  1
## 46159  1
## 46160  1
## 46161  1
## 46162  1
## 46163  1
## 46164  1
## 46165  1
## 46166  1
## 46167  1
## 46168  1
## 46169  1
## 46170  1
## 46171  1
## 46172  1
## 46173  1
## 46174  1
## 46175  1
## 46176  1
## 46177  1
## 46178  1
## 46179  1
## 46180  1
## 46181  1
## 46182  1
## 46183  1
## 46184  1
## 46185  1
## 46186  1
## 46187  1
## 46188  1
## 46189  1
## 46190  1
## 46191  1
## 46192  1
## 46193  1
## 46194  1
## 46195  1
## 46196  1
## 46197  1
## 46198  1
## 46199  1
## 46200  1
## 46201  1
## 46202  1
## 46203  1
## 46204  1
## 46205  1
## 46206  1
## 46207  1
## 46208  1
## 46209  1
## 46210  1
## 46211  1
## 46212  1
## 46213  1
## 46214  1
## 46215  1
## 46216  1
## 46217  1
## 46218  1
## 46219  1
## 46220  1
## 46221  1
## 46222  1
## 46223  1
## 46224  1
## 46225  1
## 46226  1
## 46227  1
## 46228  1
## 46229  1
## 46230  1
## 46231  1
## 46232  1
## 46233  1
## 46234  1
## 46235  1
## 46236  1
## 46237  1
## 46238  1
## 46239  1
## 46240  1
## 46241  1
## 46242  1
## 46243  1
## 46244  1
## 46245  1
## 46246  1
## 46247  1
## 46248  1
## 46249  1
## 46250  1
## 46251  1
## 46252  1
## 46253  1
## 46254  1
## 46255  1
## 46256  1
## 46257  1
## 46258  1
## 46259  1
## 46260  1
## 46261  1
## 46262  1
## 46263  1
## 46264  1
## 46265  1
## 46266  1
## 46267  1
## 46268  1
## 46269  1
## 46270  1
## 46271  1
## 46272  1
## 46273  1
## 46274  1
## 46275  1
## 46276  1
## 46277  1
## 46278  1
## 46279  1
## 46280  1
## 46281  1
## 46282  1
## 46283  1
## 46284  1
## 46285  1
## 46286  1
## 46287  1
## 46288  1
## 46289  1
## 46290  1
## 46291  1
## 46292  1
## 46293  1
## 46294  1
## 46295  1
## 46296  1
## 46297  1
## 46298  1
## 46299  1
## 46300  1
## 46301  1
## 46302  1
## 46303  1
## 46304  1
## 46305  1
## 46306  1
## 46307  1
## 46308  1
## 46309  1
## 46310  1
## 46311  1
## 46312  1
## 46313  1
## 46314  1
## 46315  1
## 46316  1
## 46317  1
## 46318  1
## 46319  1
## 46320  1
## 46321  1
## 46322  1
## 46323  1
## 46324  1
## 46325  1
## 46326  1
## 46327  1
## 46328  1
## 46329  1
## 46330  1
## 46331  1
## 46332  1
## 46333  1
## 46334  1
## 46335  1
## 46336  1
## 46337  1
## 46338  1
## 46339  1
## 46340  1
## 46341  1
## 46342  1
## 46343  1
## 46344  1
## 46345  1
## 46346  1
## 46347  1
## 46348  1
## 46349  1
## 46350  1
## 46351  1
## 46352  1
## 46353  1
## 46354  1
## 46355  1
## 46356  1
## 46357  1
## 46358  1
## 46359  1
## 46360  1
## 46361  1
## 46362  1
## 46363  1
## 46364  1
## 46365  1
## 46366  1
## 46367  1
## 46368  1
## 46369  1
## 46370  1
## 46371  1
## 46372  1
## 46373  1
## 46374  1
## 46375  1
## 46376  1
## 46377  1
## 46378  1
## 46379  1
## 46380  1
## 46381  1
## 46382  1
## 46383  1
## 46384  1
## 46385  1
## 46386  1
## 46387  1
## 46388  1
## 46389  1
## 46390  1
## 46391  1
## 46392  1
## 46393  1
## 46394  1
## 46395  1
## 46396  1
## 46397  1
## 46398  1
## 46399  1
## 46400  1
## 46401  1
## 46402  1
## 46403  1
## 46404  1
## 46405  1
## 46406  1
## 46407  1
## 46408  1
## 46409  1
## 46410  1
## 46411  1
## 46412  1
## 46413  1
## 46414  1
## 46415  1
## 46416  1
## 46417  1
## 46418  1
## 46419  1
## 46420  1
## 46421  1
## 46422  1
## 46423  1
## 46424  1
## 46425  1
## 46426  1
## 46427  1
## 46428  1
## 46429  1
## 46430  1
## 46431  1
## 46432  1
## 46433  1
## 46434  1
## 46435  1
## 46436  1
## 46437  1
## 46438  1
## 46439  1
## 46440  1
## 46441  1
## 46442  1
## 46443  1
## 46444  1
## 46445  1
## 46446  1
## 46447  1
## 46448  1
## 46449  1
## 46450  1
## 46451  1
## 46452  1
## 46453  1
## 46454  1
## 46455  1
## 46456  1
## 46457  1
## 46458  1
## 46459  1
## 46460  1
## 46461  1
## 46462  1
## 46463  1
## 46464  1
## 46465  1
## 46466  1
## 46467  1
## 46468  1
## 46469  1
## 46470  1
## 46471  1
## 46472  1
## 46473  1
## 46474  1
## 46475  1
## 46476  1
## 46477  1
## 46478  1
## 46479  1
## 46480  1
## 46481  1
## 46482  1
## 46483  1
## 46484  1
## 46485  1
## 46486  1
## 46487  1
## 46488  1
## 46489  1
## 46490  1
## 46491  1
## 46492  1
## 46493  1
## 46494  1
## 46495  1
## 46496  1
## 46497  1
## 46498  1
## 46499  1
## 46500  1
## 46501  1
## 46502  1
## 46503  1
## 46504  1
## 46505  1
## 46506  1
## 46507  1
## 46508  1
## 46509  1
## 46510  1
## 46511  1
## 46512  1
## 46513  1
## 46514  1
## 46515  1
## 46516  1
## 46517  1
## 46518  1
## 46519  1
## 46520  1
## 46521  1
## 46522  1
## 46523  1
## 46524  1
## 46525  1
## 46526  1
## 46527  1
## 46528  1
## 46529  1
## 46530  1
## 46531  1
## 46532  1
## 46533  1
## 46534  1
## 46535  1
## 46536  1
## 46537  1
## 46538  1
## 46539  1
## 46540  1
## 46541  1
## 46542  1
## 46543  1
## 46544  1
## 46545  1
## 46546  1
## 46547  1
## 46548  1
## 46549  1
## 46550  1
## 46551  1
## 46552  1
## 46553  1
## 46554  1
## 46555  1
## 46556  1
## 46557  1
## 46558  1
## 46559  1
## 46560  1
## 46561  1
## 46562  1
## 46563  1
## 46564  1
## 46565  1
## 46566  1
## 46567  1
## 46568  1
## 46569  1
## 46570  1
## 46571  1
## 46572  1
## 46573  1
## 46574  1
## 46575  1
## 46576  1
## 46577  1
## 46578  1
## 46579  1
## 46580  1
## 46581  1
## 46582  1
## 46583  1
## 46584  1
## 46585  1
## 46586  1
## 46587  1
## 46588  1
## 46589  1
## 46590  1
## 46591  1
## 46592  1
## 46593  1
## 46594  1
## 46595  1
## 46596  1
## 46597  1
## 46598  1
## 46599  1
## 46600  1
## 46601  1
## 46602  1
## 46603  1
## 46604  1
## 46605  1
## 46606  1
## 46607  1
## 46608  1
## 46609  1
## 46610  1
## 46611  1
## 46612  1
## 46613  1
## 46614  1
## 46615  1
## 46616  1
## 46617  1
## 46618  1
## 46619  1
## 46620  1
## 46621  1
## 46622  1
## 46623  1
## 46624  1
## 46625  1
## 46626  1
## 46627  1
## 46628  1
## 46629  1
## 46630  1
## 46631  1
## 46632  1
## 46633  1
## 46634  1
## 46635  1
## 46636  1
## 46637  1
## 46638  1
## 46639  1
## 46640  1
## 46641  1
## 46642  1
## 46643  1
## 46644  1
## 46645  1
## 46646  1
## 46647  1
## 46648  1
## 46649  1
## 46650  1
## 46651  1
## 46652  1
## 46653  1
## 46654  1
## 46655  1
## 46656  1
## 46657  1
## 46658  1
## 46659  1
## 46660  1
## 46661  1
## 46662  1
## 46663  1
## 46664  1
## 46665  1
## 46666  1
## 46667  1
## 46668  1
## 46669  1
## 46670  1
## 46671  1
## 46672  1
## 46673  1
## 46674  1
## 46675  1
## 46676  1
## 46677  1
## 46678  1
## 46679  1
## 46680  1
## 46681  1
## 46682  1
## 46683  1
## 46684  1
## 46685  1
## 46686  1
## 46687  1
## 46688  1
## 46689  1
## 46690  1
## 46691  1
## 46692  1
## 46693  1
## 46694  1
## 46695  1
## 46696  1
## 46697  1
## 46698  1
## 46699  1
## 46700  1
## 46701  1
## 46702  1
## 46703  1
## 46704  1
## 46705  1
## 46706  1
## 46707  1
## 46708  1
## 46709  1
## 46710  1
## 46711  1
## 46712  1
## 46713  1
## 46714  1
## 46715  1
## 46716  1
## 46717  1
## 46718  1
## 46719  1
## 46720  1
## 46721  1
## 46722  1
## 46723  1
## 46724  1
## 46725  1
## 46726  1
## 46727  1
## 46728  1
## 46729  1
## 46730  1
## 46731  1
## 46732  1
## 46733  1
## 46734  1
## 46735  1
## 46736  1
## 46737  1
## 46738  1
## 46739  1
## 46740  1
## 46741  1
## 46742  1
## 46743  1
## 46744  1
## 46745  1
## 46746  1
## 46747  1
## 46748  1
## 46749  1
## 46750  1
## 46751  1
## 46752  1
## 46753  1
## 46754  1
## 46755  1
## 46756  1
## 46757  1
## 46758  1
## 46759  1
## 46760  1
## 46761  1
## 46762  1
## 46763  1
## 46764  1
## 46765  1
## 46766  1
## 46767  1
## 46768  1
## 46769  1
## 46770  1
## 46771  1
## 46772  1
## 46773  1
## 46774  1
## 46775  1
## 46776  1
## 46777  1
## 46778  1
## 46779  1
## 46780  1
## 46781  1
## 46782  1
## 46783  1
## 46784  1
## 46785  1
## 46786  1
## 46787  1
## 46788  1
## 46789  1
## 46790  1
## 46791  1
## 46792  1
## 46793  1
## 46794  1
## 46795  1
## 46796  1
## 46797  1
## 46798  1
## 46799  1
## 46800  1
## 46801  1
## 46802  1
## 46803  1
## 46804  1
## 46805  1
## 46806  1
## 46807  1
## 46808  1
## 46809  1
## 46810  1
## 46811  1
## 46812  1
## 46813  1
## 46814  1
## 46815  1
## 46816  1
## 46817  1
## 46818  1
## 46819  1
## 46820  1
## 46821  1
## 46822  1
## 46823  1
## 46824  1
## 46825  1
## 46826  1
## 46827  1
## 46828  1
## 46829  1
## 46830  1
## 46831  1
## 46832  1
## 46833  1
## 46834  1
## 46835  1
## 46836  1
## 46837  1
## 46838  1
## 46839  1
## 46840  1
## 46841  1
## 46842  1
## 46843  1
## 46844  1
## 46845  1
## 46846  1
## 46847  1
## 46848  1
## 46849  1
## 46850  1
## 46851  1
## 46852  1
## 46853  1
## 46854  1
## 46855  1
## 46856  1
## 46857  1
## 46858  1
## 46859  1
## 46860  1
## 46861  1
## 46862  1
## 46863  1
## 46864  1
## 46865  1
## 46866  1
## 46867  1
## 46868  1
## 46869  1
## 46870  1
## 46871  1
## 46872  1
## 46873  1
## 46874  1
## 46875  1
## 46876  1
## 46877  1
## 46878  1
## 46879  1
## 46880  1
## 46881  1
## 46882  1
## 46883  1
## 46884  1
## 46885  1
## 46886  1
## 46887  1
## 46888  1
## 46889  1
## 46890  1
## 46891  1
## 46892  1
## 46893  1
## 46894  1
## 46895  1
## 46896  1
## 46897  1
## 46898  1
## 46899  1
## 46900  1
## 46901  1
## 46902  1
## 46903  1
## 46904  1
## 46905  1
## 46906  1
## 46907  1
## 46908  1
## 46909  1
## 46910  1
## 46911  1
## 46912  1
## 46913  1
## 46914  1
## 46915  1
## 46916  1
## 46917  1
## 46918  1
## 46919  1
## 46920  1
## 46921  1
## 46922  1
## 46923  1
## 46924  1
## 46925  1
## 46926  1
## 46927  1
## 46928  1
## 46929  1
## 46930  1
## 46931  1
## 46932  1
## 46933  1
## 46934  1
## 46935  1
## 46936  1
## 46937  1
## 46938  1
## 46939  1
## 46940  1
## 46941  1
## 46942  1
## 46943  1
## 46944  1
## 46945  1
## 46946  1
## 46947  1
## 46948  1
## 46949  1
## 46950  1
## 46951  1
## 46952  1
## 46953  1
## 46954  1
## 46955  1
## 46956  1
## 46957  1
## 46958  1
## 46959  1
## 46960  1
## 46961  1
## 46962  1
## 46963  1
## 46964  1
## 46965  1
## 46966  1
## 46967  1
## 46968  1
## 46969  1
## 46970  1
## 46971  1
## 46972  1
## 46973  1
## 46974  1
## 46975  1
## 46976  1
## 46977  1
## 46978  1
## 46979  1
## 46980  1
## 46981  1
## 46982  1
## 46983  1
## 46984  1
## 46985  1
## 46986  1
## 46987  1
## 46988  1
## 46989  1
## 46990  1
## 46991  1
## 46992  1
## 46993  1
## 46994  1
## 46995  1
## 46996  1
## 46997  1
## 46998  1
## 46999  1
## 47000  1
## 47001  1
## 47002  1
## 47003  1
## 47004  1
## 47005  1
## 47006  1
## 47007  1
## 47008  1
## 47009  1
## 47010  1
## 47011  1
## 47012  1
## 47013  1
## 47014  1
## 47015  1
## 47016  1
## 47017  1
## 47018  1
## 47019  1
## 47020  1
## 47021  1
## 47022  1
## 47023  1
## 47024  1
## 47025  1
## 47026  1
## 47027  1
## 47028  1
## 47029  1
## 47030  1
## 47031  1
## 47032  1
## 47033  1
## 47034  1
## 47035  1
## 47036  1
## 47037  1
## 47038  1
## 47039  1
## 47040  1
## 47041  1
## 47042  1
## 47043  1
## 47044  1
## 47045  1
## 47046  1
## 47047  1
## 47048  1
## 47049  1
## 47050  1
## 47051  1
## 47052  1
## 47053  1
## 47054  1
## 47055  1
## 47056  1
## 47057  1
## 47058  1
## 47059  1
## 47060  1
## 47061  1
## 47062  1
## 47063  1
## 47064  1
## 47065  1
## 47066  1
## 47067  1
## 47068  1
## 47069  1
## 47070  1
## 47071  1
## 47072  1
## 47073  1
## 47074  1
## 47075  1
## 47076  1
## 47077  1
## 47078  1
## 47079  1
## 47080  1
## 47081  1
## 47082  1
## 47083  1
## 47084  1
## 47085  1
## 47086  1
## 47087  1
## 47088  1
## 47089  1
## 47090  1
## 47091  1
## 47092  1
## 47093  1
## 47094  1
## 47095  1
## 47096  1
## 47097  1
## 47098  1
## 47099  1
## 47100  1
## 47101  1
## 47102  1
## 47103  1
## 47104  1
## 47105  1
## 47106  1
## 47107  1
## 47108  1
## 47109  1
## 47110  1
## 47111  1
## 47112  1
## 47113  1
## 47114  1
## 47115  1
## 47116  1
## 47117  1
## 47118  1
## 47119  1
## 47120  1
## 47121  1
## 47122  1
## 47123  1
## 47124  1
## 47125  1
## 47126  1
## 47127  1
## 47128  1
## 47129  1
## 47130  1
## 47131  1
## 47132  1
## 47133  1
## 47134  1
## 47135  1
## 47136  1
## 47137  1
## 47138  1
## 47139  1
## 47140  1
## 47141  1
## 47142  1
## 47143  1
## 47144  1
## 47145  1
## 47146  1
## 47147  1
## 47148  1
## 47149  1
## 47150  1
## 47151  1
## 47152  1
## 47153  1
## 47154  1
## 47155  1
## 47156  1
## 47157  1
## 47158  1
## 47159  1
## 47160  1
## 47161  1
## 47162  1
## 47163  1
## 47164  1
## 47165  1
## 47166  1
## 47167  1
## 47168  1
## 47169  1
## 47170  1
## 47171  1
## 47172  1
## 47173  1
## 47174  1
## 47175  1
## 47176  1
## 47177  1
## 47178  1
## 47179  1
## 47180  1
## 47181  1
## 47182  1
## 47183  1
## 47184  1
## 47185  1
## 47186  1
## 47187  1
## 47188  1
## 47189  1
## 47190  1
## 47191  1
## 47192  1
## 47193  1
## 47194  1
## 47195  1
## 47196  1
## 47197  1
## 47198  1
## 47199  1
## 47200  1
## 47201  1
## 47202  1
## 47203  1
## 47204  1
## 47205  1
## 47206  1
## 47207  1
## 47208  1
## 47209  1
## 47210  1
## 47211  1
## 47212  1
## 47213  1
## 47214  1
## 47215  1
## 47216  1
## 47217  1
## 47218  1
## 47219  1
## 47220  1
## 47221  1
## 47222  1
## 47223  1
## 47224  1
## 47225  1
## 47226  1
## 47227  1
## 47228  1
## 47229  1
## 47230  1
## 47231  1
## 47232  1
## 47233  1
## 47234  1
## 47235  1
## 47236  1
## 47237  1
## 47238  1
## 47239  1
## 47240  1
## 47241  1
## 47242  1
## 47243  1
## 47244  1
## 47245  1
## 47246  1
## 47247  1
## 47248  1
## 47249  1
## 47250  1
## 47251  1
## 47252  1
## 47253  1
## 47254  1
## 47255  1
## 47256  1
## 47257  1
## 47258  1
## 47259  1
## 47260  1
## 47261  1
## 47262  1
## 47263  1
## 47264  1
## 47265  1
## 47266  1
## 47267  1
## 47268  1
## 47269  1
## 47270  1
## 47271  1
## 47272  1
## 47273  1
## 47274  1
## 47275  1
## 47276  1
## 47277  1
## 47278  1
## 47279  1
## 47280  1
## 47281  1
## 47282  1
## 47283  1
## 47284  1
## 47285  1
## 47286  1
## 47287  1
## 47288  1
## 47289  1
## 47290  1
## 47291  1
## 47292  1
## 47293  1
## 47294  1
## 47295  1
## 47296  1
## 47297  1
## 47298  1
## 47299  1
## 47300  1
## 47301  1
## 47302  1
## 47303  1
## 47304  1
## 47305  1
## 47306  1
## 47307  1
## 47308  1
## 47309  1
## 47310  1
## 47311  1
## 47312  1
## 47313  1
## 47314  1
## 47315  1
## 47316  1
## 47317  1
## 47318  1
## 47319  1
## 47320  1
## 47321  1
## 47322  1
## 47323  1
## 47324  1
## 47325  1
## 47326  1
## 47327  1
## 47328  1
## 47329  1
## 47330  1
## 47331  1
## 47332  1
## 47333  1
## 47334  1
## 47335  1
## 47336  1
## 47337  1
## 47338  1
## 47339  1
## 47340  1
## 47341  1
## 47342  1
## 47343  1
## 47344  1
## 47345  1
## 47346  1
## 47347  1
## 47348  1
## 47349  1
## 47350  1
## 47351  1
## 47352  1
## 47353  1
## 47354  1
## 47355  1
## 47356  1
## 47357  1
## 47358  1
## 47359  1
## 47360  1
## 47361  1
## 47362  1
## 47363  1
## 47364  1
## 47365  1
## 47366  1
## 47367  1
## 47368  1
## 47369  1
## 47370  1
## 47371  1
## 47372  1
## 47373  1
## 47374  1
## 47375  1
## 47376  1
## 47377  1
## 47378  1
## 47379  1
## 47380  1
## 47381  1
## 47382  1
## 47383  1
## 47384  1
## 47385  1
## 47386  1
## 47387  1
## 47388  1
## 47389  1
## 47390  1
## 47391  1
## 47392  1
## 47393  1
## 47394  1
## 47395  1
## 47396  1
## 47397  1
## 47398  1
## 47399  1
## 47400  1
## 47401  1
## 47402  1
## 47403  1
## 47404  1
## 47405  1
## 47406  1
## 47407  1
## 47408  1
## 47409  1
## 47410  1
## 47411  1
## 47412  1
## 47413  1
## 47414  1
## 47415  1
## 47416  1
## 47417  1
## 47418  1
## 47419  1
## 47420  1
## 47421  1
## 47422  1
## 47423  1
## 47424  1
## 47425  1
## 47426  1
## 47427  1
## 47428  1
## 47429  1
## 47430  1
## 47431  1
## 47432  1
## 47433  1
## 47434  1
## 47435  1
## 47436  1
## 47437  1
## 47438  1
## 47439  1
## 47440  1
## 47441  1
## 47442  1
## 47443  1
## 47444  1
## 47445  1
## 47446  1
## 47447  1
## 47448  1
## 47449  1
## 47450  1
## 47451  1
## 47452  1
## 47453  1
## 47454  1
## 47455  1
## 47456  1
## 47457  1
## 47458  1
## 47459  1
## 47460  1
## 47461  1
## 47462  1
## 47463  1
## 47464  1
## 47465  1
## 47466  1
## 47467  1
## 47468  1
## 47469  1
## 47470  1
## 47471  1
## 47472  1
## 47473  1
## 47474  1
## 47475  1
## 47476  1
## 47477  1
## 47478  1
## 47479  1
## 47480  1
## 47481  1
## 47482  1
## 47483  1
## 47484  1
## 47485  1
## 47486  1
## 47487  1
## 47488  1
## 47489  1
## 47490  1
## 47491  1
## 47492  1
## 47493  1
## 47494  1
## 47495  1
## 47496  1
## 47497  1
## 47498  1
## 47499  1
## 47500  1
## 47501  1
## 47502  1
## 47503  1
## 47504  1
## 47505  1
## 47506  1
## 47507  1
## 47508  1
## 47509  1
## 47510  1
## 47511  1
## 47512  1
## 47513  1
## 47514  1
## 47515  1
## 47516  1
## 47517  1
## 47518  1
## 47519  1
## 47520  1
## 47521  1
## 47522  1
## 47523  1
## 47524  1
## 47525  1
## 47526  1
## 47527  1
## 47528  1
## 47529  1
## 47530  1
## 47531  1
## 47532  1
## 47533  1
## 47534  1
## 47535  1
## 47536  1
## 47537  1
## 47538  1
## 47539  1
## 47540  1
## 47541  1
## 47542  1
## 47543  1
## 47544  1
## 47545  1
## 47546  1
## 47547  1
## 47548  1
## 47549  1
## 47550  1
## 47551  1
## 47552  1
## 47553  1
## 47554  1
## 47555  1
## 47556  1
## 47557  1
## 47558  1
## 47559  1
## 47560  1
## 47561  1
## 47562  1
## 47563  1
## 47564  1
## 47565  1
## 47566  1
## 47567  1
## 47568  1
## 47569  1
## 47570  1
## 47571  1
## 47572  1
## 47573  1
## 47574  1
## 47575  1
## 47576  1
## 47577  1
## 47578  1
## 47579  1
## 47580  1
## 47581  1
## 47582  1
## 47583  1
## 47584  1
## 47585  1
## 47586  1
## 47587  1
## 47588  1
## 47589  1
## 47590  1
## 47591  1
## 47592  1
## 47593  1
## 47594  1
## 47595  1
## 47596  1
## 47597  1
## 47598  1
## 47599  1
## 47600  1
## 47601  1
## 47602  1
## 47603  1
## 47604  1
## 47605  1
## 47606  1
## 47607  1
## 47608  1
## 47609  1
## 47610  1
## 47611  1
## 47612  1
## 47613  1
## 47614  1
## 47615  1
## 47616  1
## 47617  1
## 47618  1
## 47619  1
## 47620  1
## 47621  1
## 47622  1
## 47623  1
## 47624  1
## 47625  1
## 47626  1
## 47627  1
## 47628  1
## 47629  1
## 47630  1
## 47631  1
## 47632  1
## 47633  1
## 47634  1
## 47635  1
## 47636  1
## 47637  1
## 47638  1
## 47639  1
## 47640  1
## 47641  1
## 47642  1
## 47643  1
## 47644  1
## 47645  1
## 47646  1
## 47647  1
## 47648  1
## 47649  1
## 47650  1
## 47651  1
## 47652  1
## 47653  1
## 47654  1
## 47655  1
## 47656  1
## 47657  1
## 47658  1
## 47659  1
## 47660  1
## 47661  1
## 47662  1
## 47663  1
## 47664  1
## 47665  1
## 47666  1
## 47667  1
## 47668  1
## 47669  1
## 47670  1
## 47671  1
## 47672  1
## 47673  1
## 47674  1
## 47675  1
## 47676  1
## 47677  1
## 47678  1
## 47679  1
## 47680  1
## 47681  1
## 47682  1
## 47683  1
## 47684  1
## 47685  1
## 47686  1
## 47687  1
## 47688  1
## 47689  1
## 47690  1
## 47691  1
## 47692  1
## 47693  1
## 47694  1
## 47695  1
## 47696  1
## 47697  1
## 47698  1
## 47699  1
## 47700  1
## 47701  1
## 47702  1
## 47703  1
## 47704  1
## 47705  1
## 47706  1
## 47707  1
## 47708  1
## 47709  1
## 47710  1
## 47711  1
## 47712  1
## 47713  1
## 47714  1
## 47715  1
## 47716  1
## 47717  1
## 47718  1
## 47719  1
## 47720  1
## 47721  1
## 47722  1
## 47723  1
## 47724  1
## 47725  1
## 47726  1
## 47727  1
## 47728  1
## 47729  1
## 47730  1
## 47731  1
## 47732  1
## 47733  1
## 47734  1
## 47735  1
## 47736  1
## 47737  1
## 47738  1
## 47739  1
## 47740  1
## 47741  1
## 47742  1
## 47743  1
## 47744  1
## 47745  1
## 47746  1
## 47747  1
## 47748  1
## 47749  1
## 47750  1
## 47751  1
## 47752  1
## 47753  1
## 47754  1
## 47755  1
## 47756  1
## 47757  1
## 47758  1
## 47759  1
## 47760  1
## 47761  1
## 47762  1
## 47763  1
## 47764  1
## 47765  1
## 47766  1
## 47767  1
## 47768  1
## 47769  1
## 47770  1
## 47771  1
## 47772  1
## 47773  1
## 47774  1
## 47775  1
## 47776  1
## 47777  1
## 47778  1
## 47779  1
## 47780  1
## 47781  1
## 47782  1
## 47783  1
## 47784  1
## 47785  1
## 47786  1
## 47787  1
## 47788  1
## 47789  1
## 47790  1
## 47791  1
## 47792  1
## 47793  1
## 47794  1
## 47795  1
## 47796  1
## 47797  1
## 47798  1
## 47799  1
## 47800  1
## 47801  1
## 47802  1
## 47803  1
## 47804  1
## 47805  1
## 47806  1
## 47807  1
## 47808  1
## 47809  1
## 47810  1
## 47811  1
## 47812  1
## 47813  1
## 47814  1
## 47815  1
## 47816  1
## 47817  1
## 47818  1
## 47819  1
## 47820  1
## 47821  1
## 47822  1
## 47823  1
## 47824  1
## 47825  1
## 47826  1
## 47827  1
## 47828  1
## 47829  1
## 47830  1
## 47831  1
## 47832  1
## 47833  1
## 47834  1
## 47835  1
## 47836  1
## 47837  1
## 47838  1
## 47839  1
## 47840  1
## 47841  1
## 47842  1
## 47843  1
## 47844  1
## 47845  1
## 47846  1
## 47847  1
## 47848  1
## 47849  1
## 47850  1
## 47851  1
## 47852  1
## 47853  1
## 47854  1
## 47855  1
## 47856  1
## 47857  1
## 47858  1
## 47859  1
## 47860  1
## 47861  1
## 47862  1
## 47863  1
## 47864  1
## 47865  1
## 47866  1
## 47867  1
## 47868  1
## 47869  1
## 47870  1
## 47871  1
## 47872  1
## 47873  1
## 47874  1
## 47875  1
## 47876  1
## 47877  1
## 47878  1
## 47879  1
## 47880  1
## 47881  1
## 47882  1
## 47883  1
## 47884  1
## 47885  1
## 47886  1
## 47887  1
## 47888  1
## 47889  1
## 47890  1
## 47891  1
## 47892  1
## 47893  1
## 47894  1
## 47895  1
## 47896  1
## 47897  1
## 47898  1
## 47899  1
## 47900  1
## 47901  1
## 47902  1
## 47903  1
## 47904  1
## 47905  1
## 47906  1
## 47907  1
## 47908  1
## 47909  1
## 47910  1
## 47911  1
## 47912  1
## 47913  1
## 47914  1
## 47915  1
## 47916  1
## 47917  1
## 47918  1
## 47919  1
## 47920  1
## 47921  1
## 47922  1
## 47923  1
## 47924  1
## 47925  1
## 47926  1
## 47927  1
## 47928  1
## 47929  1
## 47930  1
## 47931  1
## 47932  1
## 47933  1
## 47934  1
## 47935  1
## 47936  1
## 47937  1
## 47938  1
## 47939  1
## 47940  1
## 47941  1
## 47942  1
## 47943  1
## 47944  1
## 47945  1
## 47946  1
## 47947  1
## 47948  1
## 47949  1
## 47950  1
## 47951  1
## 47952  1
## 47953  1
## 47954  1
## 47955  1
## 47956  1
## 47957  1
## 47958  1
## 47959  1
## 47960  1
## 47961  1
## 47962  1
## 47963  1
## 47964  1
## 47965  1
## 47966  1
## 47967  1
## 47968  1
## 47969  1
## 47970  1
## 47971  1
## 47972  1
## 47973  1
## 47974  1
## 47975  1
## 47976  1
## 47977  1
## 47978  1
## 47979  1
## 47980  1
## 47981  1
## 47982  1
## 47983  1
## 47984  1
## 47985  1
## 47986  1
## 47987  1
## 47988  1
## 47989  1
## 47990  1
## 47991  1
## 47992  1
## 47993  1
## 47994  1
## 47995  1
## 47996  1
## 47997  1
## 47998  1
## 47999  1
## 48000  1
## 48001  1
## 48002  1
## 48003  1
## 48004  1
## 48005  1
## 48006  1
## 48007  1
## 48008  1
## 48009  1
## 48010  1
## 48011  1
## 48012  1
## 48013  1
## 48014  1
## 48015  1
## 48016  1
## 48017  1
## 48018  1
## 48019  1
## 48020  1
## 48021  1
## 48022  1
## 48023  1
## 48024  1
## 48025  1
## 48026  1
## 48027  1
## 48028  1
## 48029  1
## 48030  1
## 48031  1
## 48032  1
## 48033  1
## 48034  1
## 48035  1
## 48036  1
## 48037  1
## 48038  1
## 48039  1
## 48040  1
## 48041  1
## 48042  1
## 48043  1
## 48044  1
## 48045  1
## 48046  1
## 48047  1
## 48048  1
## 48049  1
## 48050  1
## 48051  1
## 48052  1
## 48053  1
## 48054  1
## 48055  1
## 48056  1
## 48057  1
## 48058  1
## 48059  1
## 48060  1
## 48061  1
## 48062  1
## 48063  1
## 48064  1
## 48065  1
## 48066  1
## 48067  1
## 48068  1
## 48069  1
## 48070  1
## 48071  1
## 48072  1
## 48073  1
## 48074  1
## 48075  1
## 48076  1
## 48077  1
## 48078  1
## 48079  1
## 48080  1
## 48081  1
## 48082  1
## 48083  1
## 48084  1
## 48085  1
## 48086  1
## 48087  1
## 48088  1
## 48089  1
## 48090  1
## 48091  1
## 48092  1
## 48093  1
## 48094  1
## 48095  1
## 48096  1
## 48097  1
## 48098  1
## 48099  1
## 48100  1
## 48101  1
## 48102  1
## 48103  1
## 48104  1
## 48105  1
## 48106  1
## 48107  1
## 48108  1
## 48109  1
## 48110  1
## 48111  1
## 48112  1
## 48113  1
## 48114  1
## 48115  1
## 48116  1
## 48117  1
## 48118  1
## 48119  1
## 48120  1
## 48121  1
## 48122  1
## 48123  1
## 48124  1
## 48125  1
## 48126  1
## 48127  1
## 48128  1
## 48129  1
## 48130  1
## 48131  1
## 48132  1
## 48133  1
## 48134  1
## 48135  1
## 48136  1
## 48137  1
## 48138  1
## 48139  1
## 48140  1
## 48141  1
## 48142  1
## 48143  1
## 48144  1
## 48145  1
## 48146  1
## 48147  1
## 48148  1
## 48149  1
## 48150  1
## 48151  1
## 48152  1
## 48153  1
## 48154  1
## 48155  1
## 48156  1
## 48157  1
## 48158  1
## 48159  1
## 48160  1
## 48161  1
## 48162  1
## 48163  1
## 48164  1
## 48165  1
## 48166  1
## 48167  1
## 48168  1
## 48169  1
## 48170  1
## 48171  1
## 48172  1
## 48173  1
## 48174  1
## 48175  1
## 48176  1
## 48177  1
## 48178  1
## 48179  1
## 48180  1
## 48181  1
## 48182  1
## 48183  1
## 48184  1
## 48185  1
## 48186  1
## 48187  1
## 48188  1
## 48189  1
## 48190  1
## 48191  1
## 48192  1
## 48193  1
## 48194  1
## 48195  1
## 48196  1
## 48197  1
## 48198  1
## 48199  1
## 48200  1
## 48201  1
## 48202  1
## 48203  1
## 48204  1
## 48205  1
## 48206  1
## 48207  1
## 48208  1
## 48209  1
## 48210  1
## 48211  1
## 48212  1
## 48213  1
## 48214  1
## 48215  1
## 48216  1
## 48217  1
## 48218  1
## 48219  1
## 48220  1
## 48221  1
## 48222  1
## 48223  1
## 48224  1
## 48225  1
## 48226  1
## 48227  1
## 48228  1
## 48229  1
## 48230  1
## 48231  1
## 48232  1
## 48233  1
## 48234  1
## 48235  1
## 48236  1
## 48237  1
## 48238  1
## 48239  1
## 48240  1
## 48241  1
## 48242  1
## 48243  1
## 48244  1
## 48245  1
## 48246  1
## 48247  1
## 48248  1
## 48249  1
## 48250  1
## 48251  1
## 48252  1
## 48253  1
## 48254  1
## 48255  1
## 48256  1
## 48257  1
## 48258  1
## 48259  1
## 48260  1
## 48261  1
## 48262  1
## 48263  1
## 48264  1
## 48265  1
## 48266  1
## 48267  1
## 48268  1
## 48269  1
## 48270  1
## 48271  1
## 48272  1
## 48273  1
## 48274  1
## 48275  1
## 48276  1
## 48277  1
## 48278  1
## 48279  1
## 48280  1
## 48281  1
## 48282  1
## 48283  1
## 48284  1
## 48285  1
## 48286  1
## 48287  1
## 48288  1
## 48289  1
## 48290  1
## 48291  1
## 48292  1
## 48293  1
## 48294  1
## 48295  1
## 48296  1
## 48297  1
## 48298  1
## 48299  1
## 48300  1
## 48301  1
## 48302  1
## 48303  1
## 48304  1
## 48305  1
## 48306  1
## 48307  1
## 48308  1
## 48309  1
## 48310  1
## 48311  1
## 48312  1
## 48313  1
## 48314  1
## 48315  1
## 48316  1
## 48317  1
## 48318  1
## 48319  1
## 48320  1
## 48321  1
## 48322  1
## 48323  1
## 48324  1
## 48325  1
## 48326  1
## 48327  1
## 48328  1
## 48329  1
## 48330  1
## 48331  1
## 48332  1
## 48333  1
## 48334  1
## 48335  1
## 48336  1
## 48337  1
## 48338  1
## 48339  1
## 48340  1
## 48341  1
## 48342  1
## 48343  1
## 48344  1
## 48345  1
## 48346  1
## 48347  1
## 48348  1
## 48349  1
## 48350  1
## 48351  1
## 48352  1
## 48353  1
## 48354  1
## 48355  1
## 48356  1
## 48357  1
## 48358  1
## 48359  1
## 48360  1
## 48361  1
## 48362  1
## 48363  1
## 48364  1
## 48365  1
## 48366  1
## 48367  1
## 48368  1
## 48369  1
## 48370  1
## 48371  1
## 48372  1
## 48373  1
## 48374  1
## 48375  1
## 48376  1
## 48377  1
## 48378  1
## 48379  1
## 48380  1
## 48381  1
## 48382  1
## 48383  1
## 48384  1
## 48385  1
## 48386  1
## 48387  1
## 48388  1
## 48389  1
## 48390  1
## 48391  1
## 48392  1
## 48393  1
## 48394  1
## 48395  1
## 48396  1
## 48397  1
## 48398  1
## 48399  1
## 48400  1
## 48401  1
## 48402  1
## 48403  1
## 48404  1
## 48405  1
## 48406  1
## 48407  1
## 48408  1
## 48409  1
## 48410  1
## 48411  1
## 48412  1
## 48413  1
## 48414  1
## 48415  1
## 48416  1
## 48417  1
## 48418  1
## 48419  1
## 48420  1
## 48421  1
## 48422  1
## 48423  1
## 48424  1
## 48425  1
## 48426  1
## 48427  1
## 48428  1
## 48429  1
## 48430  1
## 48431  1
## 48432  1
## 48433  1
## 48434  1
## 48435  1
## 48436  1
## 48437  1
## 48438  1
## 48439  1
## 48440  1
## 48441  1
## 48442  1
## 48443  1
## 48444  1
## 48445  1
## 48446  1
## 48447  1
## 48448  1
## 48449  1
## 48450  1
## 48451  1
## 48452  1
## 48453  1
## 48454  1
## 48455  1
## 48456  1
## 48457  1
## 48458  1
## 48459  1
## 48460  1
## 48461  1
## 48462  1
## 48463  1
## 48464  1
## 48465  1
## 48466  1
## 48467  1
## 48468  1
## 48469  1
## 48470  1
## 48471  1
## 48472  1
## 48473  1
## 48474  1
## 48475  1
## 48476  1
## 48477  1
## 48478  1
## 48479  1
## 48480  1
## 48481  1
## 48482  1
## 48483  1
## 48484  1
## 48485  1
## 48486  1
## 48487  1
## 48488  1
## 48489  1
## 48490  1
## 48491  1
## 48492  1
## 48493  1
## 48494  1
## 48495  1
## 48496  1
## 48497  1
## 48498  1
## 48499  1
## 48500  1
## 48501  1
## 48502  1
## 48503  1
## 48504  1
## 48505  1
## 48506  1
## 48507  1
## 48508  1
## 48509  1
## 48510  1
## 48511  1
## 48512  1
## 48513  1
## 48514  1
## 48515  1
## 48516  1
## 48517  1
## 48518  1
## 48519  1
## 48520  1
## 48521  1
## 48522  1
## 48523  1
## 48524  1
## 48525  1
## 48526  1
## 48527  1
## 48528  1
## 48529  1
## 48530  1
## 48531  1
## 48532  1
## 48533  1
## 48534  1
## 48535  1
## 48536  1
## 48537  1
## 48538  1
## 48539  1
## 48540  1
## 48541  1
## 48542  1
## 48543  1
## 48544  1
## 48545  1
## 48546  1
## 48547  1
## 48548  1
## 48549  1
## 48550  1
## 48551  1
## 48552  1
## 48553  1
## 48554  1
## 48555  1
## 48556  1
## 48557  1
## 48558  1
## 48559  1
## 48560  1
## 48561  1
## 48562  1
## 48563  1
## 48564  1
## 48565  1
## 48566  1
## 48567  1
## 48568  1
## 48569  1
## 48570  1
## 48571  1
## 48572  1
## 48573  1
## 48574  1
## 48575  1
## 48576  1
## 48577  1
## 48578  1
## 48579  1
## 48580  1
## 48581  1
## 48582  1
## 48583  1
## 48584  1
## 48585  1
## 48586  1
## 48587  1
## 48588  1
## 48589  1
## 48590  1
## 48591  1
## 48592  1
## 48593  1
## 48594  1
## 48595  1
## 48596  1
## 48597  1
## 48598  1
## 48599  1
## 48600  1
## 48601  1
## 48602  1
## 48603  1
## 48604  1
## 48605  1
## 48606  1
## 48607  1
## 48608  1
## 48609  1
## 48610  1
## 48611  1
## 48612  1
## 48613  1
## 48614  1
## 48615  1
## 48616  1
## 48617  1
## 48618  1
## 48619  1
## 48620  1
## 48621  1
## 48622  1
## 48623  1
## 48624  1
## 48625  1
## 48626  1
## 48627  1
## 48628  1
## 48629  1
## 48630  1
## 48631  1
## 48632  1
## 48633  1
## 48634  1
## 48635  1
## 48636  1
## 48637  1
## 48638  1
## 48639  1
## 48640  1
## 48641  1
## 48642  1
## 48643  1
## 48644  1
## 48645  1
## 48646  1
## 48647  1
## 48648  1
## 48649  1
## 48650  1
## 48651  1
## 48652  1
## 48653  1
## 48654  1
## 48655  1
## 48656  1
## 48657  1
## 48658  1
## 48659  1
## 48660  1
## 48661  1
## 48662  1
## 48663  1
## 48664  1
## 48665  1
## 48666  1
## 48667  1
## 48668  1
## 48669  1
## 48670  1
## 48671  1
## 48672  1
## 48673  1
## 48674  1
## 48675  1
## 48676  1
## 48677  1
## 48678  1
## 48679  1
## 48680  1
## 48681  1
## 48682  1
## 48683  1
## 48684  1
## 48685  1
## 48686  1
## 48687  1
## 48688  1
## 48689  1
## 48690  1
## 48691  1
## 48692  1
## 48693  1
## 48694  1
## 48695  1
## 48696  1
## 48697  1
## 48698  1
## 48699  1
## 48700  1
## 48701  1
## 48702  1
## 48703  1
## 48704  1
## 48705  1
## 48706  1
## 48707  1
## 48708  1
## 48709  1
## 48710  1
## 48711  1
## 48712  1
## 48713  1
## 48714  1
## 48715  1
## 48716  1
## 48717  1
## 48718  1
## 48719  1
## 48720  1
## 48721  1
## 48722  1
## 48723  1
## 48724  1
## 48725  1
## 48726  1
## 48727  1
## 48728  1
## 48729  1
## 48730  1
## 48731  1
## 48732  1
## 48733  1
## 48734  1
## 48735  1
## 48736  1
## 48737  1
## 48738  1
## 48739  1
## 48740  1
## 48741  1
## 48742  1
## 48743  1
## 48744  1
## 48745  1
## 48746  1
## 48747  1
## 48748  1
## 48749  1
## 48750  1
## 48751  1
## 48752  1
## 48753  1
## 48754  1
## 48755  1
## 48756  1
## 48757  1
## 48758  1
## 48759  1
## 48760  1
## 48761  1
## 48762  1
## 48763  1
## 48764  1
## 48765  1
## 48766  1
## 48767  1
## 48768  1
## 48769  1
## 48770  1
## 48771  1
## 48772  1
## 48773  1
## 48774  1
## 48775  1
## 48776  1
## 48777  1
## 48778  1
## 48779  1
## 48780  1
## 48781  1
## 48782  1
## 48783  1
## 48784  1
## 48785  1
## 48786  1
## 48787  1
## 48788  1
## 48789  1
## 48790  1
## 48791  1
## 48792  1
## 48793  1
## 48794  1
## 48795  1
## 48796  1
## 48797  1
## 48798  1
## 48799  1
## 48800  1
## 48801  1
## 48802  1
## 48803  1
## 48804  1
## 48805  1
## 48806  1
## 48807  1
## 48808  1
## 48809  1
## 48810  1
## 48811  1
## 48812  1
## 48813  1
## 48814  1
## 48815  1
## 48816  1
## 48817  1
## 48818  1
## 48819  1
## 48820  1
## 48821  1
## 48822  1
## 48823  1
## 48824  1
## 48825  1
## 48826  1
## 48827  1
## 48828  1
## 48829  1
## 48830  1
## 48831  1
## 48832  1
## 48833  1
## 48834  1
## 48835  1
## 48836  1
## 48837  1
## 48838  1
## 48839  1
## 48840  1
## 48841  1
## 48842  1
## 48843  1
## 48844  1
## 48845  1
## 48846  1
## 48847  1
## 48848  1
## 48849  1
## 48850  1
## 48851  1
## 48852  1
## 48853  1
## 48854  1
## 48855  1
## 48856  1
## 48857  1
## 48858  1
## 48859  1
## 48860  1
## 48861  1
## 48862  1
## 48863  1
## 48864  1
## 48865  1
## 48866  1
## 48867  1
## 48868  1
## 48869  1
## 48870  1
## 48871  1
## 48872  1
## 48873  1
## 48874  1
## 48875  1
## 48876  1
## 48877  1
## 48878  1
## 48879  1
## 48880  1
## 48881  1
## 48882  1
## 48883  1
## 48884  1
## 48885  1
## 48886  1
## 48887  1
## 48888  1
## 48889  1
## 48890  1
## 48891  1
## 48892  1
## 48893  1
## 48894  1
## 48895  1
## 48896  1
## 48897  1
## 48898  1
## 48899  1
## 48900  1
## 48901  1
## 48902  1
## 48903  1
## 48904  1
## 48905  1
## 48906  1
## 48907  1
## 48908  1
## 48909  1
## 48910  1
## 48911  1
## 48912  1
## 48913  1
## 48914  1
## 48915  1
## 48916  1
## 48917  1
## 48918  1
## 48919  1
## 48920  1
## 48921  1
## 48922  1
## 48923  1
## 48924  1
## 48925  1
## 48926  1
## 48927  1
## 48928  1
## 48929  1
## 48930  1
## 48931  1
## 48932  1
## 48933  1
## 48934  1
## 48935  1
## 48936  1
## 48937  1
## 48938  1
## 48939  1
## 48940  1
## 48941  1
## 48942  1
## 48943  1
## 48944  1
## 48945  1
## 48946  1
## 48947  1
## 48948  1
## 48949  1
## 48950  1
## 48951  1
## 48952  1
## 48953  1
## 48954  1
## 48955  1
## 48956  1
## 48957  1
## 48958  1
## 48959  1
## 48960  1
## 48961  1
## 48962  1
## 48963  1
## 48964  1
## 48965  1
## 48966  1
## 48967  1
## 48968  1
## 48969  1
## 48970  1
## 48971  1
## 48972  1
## 48973  1
## 48974  1
## 48975  1
## 48976  1
## 48977  1
## 48978  1
## 48979  1
## 48980  1
## 48981  1
## 48982  1
## 48983  1
## 48984  1
## 48985  1
## 48986  1
## 48987  1
## 48988  1
## 48989  1
## 48990  1
## 48991  1
## 48992  1
## 48993  1
## 48994  1
## 48995  1
## 48996  1
## 48997  1
## 48998  1
## 48999  1
## 49000  1
## 49001  1
## 49002  1
## 49003  1
## 49004  1
## 49005  1
## 49006  1
## 49007  1
## 49008  1
## 49009  1
## 49010  1
## 49011  1
## 49012  1
## 49013  1
## 49014  1
## 49015  1
## 49016  1
## 49017  1
## 49018  1
## 49019  1
## 49020  1
## 49021  1
## 49022  1
## 49023  1
## 49024  1
## 49025  1
## 49026  1
## 49027  1
## 49028  1
## 49029  1
## 49030  1
## 49031  1
## 49032  1
## 49033  1
## 49034  1
## 49035  1
## 49036  1
## 49037  1
## 49038  1
## 49039  1
## 49040  1
## 49041  1
## 49042  1
## 49043  1
## 49044  1
## 49045  1
## 49046  1
## 49047  1
## 49048  1
## 49049  1
## 49050  1
## 49051  1
## 49052  1
## 49053  1
## 49054  1
## 49055  1
## 49056  1
## 49057  1
## 49058  1
## 49059  1
## 49060  1
## 49061  1
## 49062  1
## 49063  1
## 49064  1
## 49065  1
## 49066  1
## 49067  1
## 49068  1
## 49069  1
## 49070  1
## 49071  1
## 49072  1
## 49073  1
## 49074  1
## 49075  1
## 49076  1
## 49077  1
## 49078  1
## 49079  1
## 49080  1
## 49081  1
## 49082  1
## 49083  1
## 49084  1
## 49085  1
## 49086  1
## 49087  1
## 49088  1
## 49089  1
## 49090  1
## 49091  1
## 49092  1
## 49093  1
## 49094  1
## 49095  1
## 49096  1
## 49097  1
## 49098  1
## 49099  1
## 49100  1
## 49101  1
## 49102  1
## 49103  1
## 49104  1
## 49105  1
## 49106  1
## 49107  1
## 49108  1
## 49109  1
## 49110  1
## 49111  1
## 49112  1
## 49113  1
## 49114  1
## 49115  1
## 49116  1
## 49117  1
## 49118  1
## 49119  1
## 49120  1
## 49121  1
## 49122  1
## 49123  1
## 49124  1
## 49125  1
## 49126  1
## 49127  1
## 49128  1
## 49129  1
## 49130  1
## 49131  1
## 49132  1
## 49133  1
## 49134  1
## 49135  1
## 49136  1
## 49137  1
## 49138  1
## 49139  1
## 49140  1
## 49141  1
## 49142  1
## 49143  1
## 49144  1
## 49145  1
## 49146  1
## 49147  1
## 49148  1
## 49149  1
## 49150  1
## 49151  1
## 49152  1
## 49153  1
## 49154  1
## 49155  1
## 49156  1
## 49157  1
## 49158  1
## 49159  1
## 49160  1
## 49161  1
## 49162  1
## 49163  1
## 49164  1
## 49165  1
## 49166  1
## 49167  1
## 49168  1
## 49169  1
## 49170  1
## 49171  1
## 49172  1
## 49173  1
## 49174  1
## 49175  1
## 49176  1
## 49177  1
## 49178  1
## 49179  1
## 49180  1
## 49181  1
## 49182  1
## 49183  1
## 49184  1
## 49185  1
## 49186  1
## 49187  1
## 49188  1
## 49189  1
## 49190  1
## 49191  1
## 49192  1
## 49193  1
## 49194  1
## 49195  1
## 49196  1
## 49197  1
## 49198  1
## 49199  1
## 49200  1
## 49201  1
## 49202  1
## 49203  1
## 49204  1
## 49205  1
## 49206  1
## 49207  1
## 49208  1
## 49209  1
## 49210  1
## 49211  1
## 49212  1
## 49213  1
## 49214  1
## 49215  1
## 49216  1
## 49217  1
## 49218  1
## 49219  1
## 49220  1
## 49221  1
## 49222  1
## 49223  1
## 49224  1
## 49225  1
## 49226  1
## 49227  1
## 49228  1
## 49229  1
## 49230  1
## 49231  1
## 49232  1
## 49233  1
## 49234  1
## 49235  1
## 49236  1
## 49237  1
## 49238  1
## 49239  1
## 49240  1
## 49241  1
## 49242  1
## 49243  1
## 49244  1
## 49245  1
## 49246  1
## 49247  1
## 49248  1
## 49249  1
## 49250  1
## 49251  1
## 49252  1
## 49253  1
## 49254  1
## 49255  1
## 49256  1
## 49257  1
## 49258  1
## 49259  1
## 49260  1
## 49261  1
## 49262  1
## 49263  1
## 49264  1
## 49265  1
## 49266  1
## 49267  1
## 49268  1
## 49269  1
## 49270  1
## 49271  1
## 49272  1
## 49273  1
## 49274  1
## 49275  1
## 49276  1
## 49277  1
## 49278  1
## 49279  1
## 49280  1
## 49281  1
## 49282  1
## 49283  1
## 49284  1
## 49285  1
## 49286  1
## 49287  1
## 49288  1
## 49289  1
## 49290  1
## 49291  1
## 49292  1
## 49293  1
## 49294  1
## 49295  1
## 49296  1
## 49297  1
## 49298  1
## 49299  1
## 49300  1
## 49301  1
## 49302  1
## 49303  1
## 49304  1
## 49305  1
## 49306  1
## 49307  1
## 49308  1
## 49309  1
## 49310  1
## 49311  1
## 49312  1
## 49313  1
## 49314  1
## 49315  1
## 49316  1
## 49317  1
## 49318  1
## 49319  1
## 49320  1
## 49321  1
## 49322  1
## 49323  1
## 49324  1
## 49325  1
## 49326  1
## 49327  1
## 49328  1
## 49329  1
## 49330  1
## 49331  1
## 49332  1
## 49333  1
## 49334  1
## 49335  1
## 49336  1
## 49337  1
## 49338  1
## 49339  1
## 49340  1
## 49341  1
## 49342  1
## 49343  1
## 49344  1
## 49345  1
## 49346  1
## 49347  1
## 49348  1
## 49349  1
## 49350  1
## 49351  1
## 49352  1
## 49353  1
## 49354  1
## 49355  1
## 49356  1
## 49357  1
## 49358  1
## 49359  1
## 49360  1
## 49361  1
## 49362  1
## 49363  1
## 49364  1
## 49365  1
## 49366  1
## 49367  1
## 49368  1
## 49369  1
## 49370  1
## 49371  1
## 49372  1
## 49373  1
## 49374  1
## 49375  1
## 49376  1
## 49377  1
## 49378  1
## 49379  1
## 49380  1
## 49381  1
## 49382  1
## 49383  1
## 49384  1
## 49385  1
## 49386  1
## 49387  1
## 49388  1
## 49389  1
## 49390  1
## 49391  1
## 49392  1
## 49393  1
## 49394  1
## 49395  1
## 49396  1
## 49397  1
## 49398  1
## 49399  1
## 49400  1
## 49401  1
## 49402  1
## 49403  1
## 49404  1
## 49405  1
## 49406  1
## 49407  1
## 49408  1
## 49409  1
## 49410  1
## 49411  1
## 49412  1
## 49413  1
## 49414  1
## 49415  1
## 49416  1
## 49417  1
## 49418  1
## 49419  1
## 49420  1
## 49421  1
## 49422  1
## 49423  1
## 49424  1
## 49425  1
## 49426  1
## 49427  1
## 49428  1
## 49429  1
## 49430  1
## 49431  1
## 49432  1
## 49433  1
## 49434  1
## 49435  1
## 49436  1
## 49437  1
## 49438  1
## 49439  1
## 49440  1
## 49441  1
## 49442  1
## 49443  1
## 49444  1
## 49445  1
## 49446  1
## 49447  1
## 49448  1
## 49449  1
## 49450  1
## 49451  1
## 49452  1
## 49453  1
## 49454  1
## 49455  1
## 49456  1
## 49457  1
## 49458  1
## 49459  1
## 49460  1
## 49461  1
## 49462  1
## 49463  1
## 49464  1
## 49465  1
## 49466  1
## 49467  1
## 49468  1
## 49469  1
## 49470  1
## 49471  1
## 49472  1
## 49473  1
## 49474  1
## 49475  1
## 49476  1
## 49477  1
## 49478  1
## 49479  1
## 49480  1
## 49481  1
## 49482  1
## 49483  1
## 49484  1
## 49485  1
## 49486  1
## 49487  1
## 49488  1
## 49489  1
## 49490  1
## 49491  1
## 49492  1
## 49493  1
## 49494  1
## 49495  1
## 49496  1
## 49497  1
## 49498  1
## 49499  1
## 49500  1
## 49501  1
## 49502  1
## 49503  1
## 49504  1
## 49505  1
## 49506  1
## 49507  1
## 49508  1
## 49509  1
## 49510  1
## 49511  1
## 49512  1
## 49513  1
## 49514  1
## 49515  1
## 49516  1
## 49517  1
## 49518  1
## 49519  1
## 49520  1
## 49521  1
## 49522  1
## 49523  1
## 49524  1
## 49525  1
## 49526  1
## 49527  1
## 49528  1
## 49529  1
## 49530  1
## 49531  1
## 49532  1
## 49533  1
## 49534  1
## 49535  1
## 49536  1
## 49537  1
## 49538  1
## 49539  1
## 49540  1
## 49541  1
## 49542  1
## 49543  1
## 49544  1
## 49545  1
## 49546  1
## 49547  1
## 49548  1
## 49549  1
## 49550  1
## 49551  1
## 49552  1
## 49553  1
## 49554  1
## 49555  1
## 49556  1
## 49557  1
## 49558  1
## 49559  1
## 49560  1
## 49561  1
## 49562  1
## 49563  1
## 49564  1
## 49565  1
## 49566  1
## 49567  1
## 49568  1
## 49569  1
## 49570  1
## 49571  1
## 49572  1
## 49573  1
## 49574  1
## 49575  1
## 49576  1
## 49577  1
## 49578  1
## 49579  1
## 49580  1
## 49581  1
## 49582  1
## 49583  1
## 49584  1
## 49585  1
## 49586  1
## 49587  1
## 49588  1
## 49589  1
## 49590  1
## 49591  1
## 49592  1
## 49593  1
## 49594  1
## 49595  1
## 49596  1
## 49597  1
## 49598  1
## 49599  1
## 49600  1
## 49601  1
## 49602  1
## 49603  1
## 49604  1
## 49605  1
## 49606  1
## 49607  1
## 49608  1
## 49609  1
## 49610  1
## 49611  1
## 49612  1
## 49613  1
## 49614  1
## 49615  1
## 49616  1
## 49617  1
## 49618  1
## 49619  1
## 49620  1
## 49621  1
## 49622  1
## 49623  1
## 49624  1
## 49625  1
## 49626  1
## 49627  1
## 49628  1
## 49629  1
## 49630  1
## 49631  1
## 49632  1
## 49633  1
## 49634  1
## 49635  1
## 49636  1
## 49637  1
## 49638  1
## 49639  1
## 49640  1
## 49641  1
## 49642  1
## 49643  1
## 49644  1
## 49645  1
## 49646  1
## 49647  1
## 49648  1
## 49649  1
## 49650  1
## 49651  1
## 49652  1
## 49653  1
## 49654  1
## 49655  1
## 49656  1
## 49657  1
## 49658  1
## 49659  1
## 49660  1
## 49661  1
## 49662  1
## 49663  1
## 49664  1
## 49665  1
## 49666  1
## 49667  1
## 49668  1
## 49669  1
## 49670  1
## 49671  1
## 49672  1
## 49673  1
## 49674  1
## 49675  1
## 49676  1
## 49677  1
## 49678  1
## 49679  1
## 49680  1
## 49681  1
## 49682  1
## 49683  1
## 49684  1
## 49685  1
## 49686  1
## 49687  1
## 49688  1
## 49689  1
## 49690  1
## 49691  1
## 49692  1
## 49693  1
## 49694  1
## 49695  1
## 49696  1
## 49697  1
## 49698  1
## 49699  1
## 49700  1
## 49701  1
## 49702  1
## 49703  1
## 49704  1
## 49705  1
## 49706  1
## 49707  1
## 49708  1
## 49709  1
## 49710  1
## 49711  1
## 49712  1
## 49713  1
## 49714  1
## 49715  1
## 49716  1
## 49717  1
## 49718  1
## 49719  1
## 49720  1
## 49721  1
## 49722  1
## 49723  1
## 49724  1
## 49725  1
## 49726  1
## 49727  1
## 49728  1
## 49729  1
## 49730  1
## 49731  1
## 49732  1
## 49733  1
## 49734  1
## 49735  1
## 49736  1
## 49737  1
## 49738  1
## 49739  1
## 49740  1
## 49741  1
## 49742  1
## 49743  1
## 49744  1
## 49745  1
## 49746  1
## 49747  1
## 49748  1
## 49749  1
## 49750  1
## 49751  1
## 49752  1
## 49753  1
## 49754  1
## 49755  1
## 49756  1
## 49757  1
## 49758  1
## 49759  1
## 49760  1
## 49761  1
## 49762  1
## 49763  1
## 49764  1
## 49765  1
## 49766  1
## 49767  1
## 49768  1
## 49769  1
## 49770  1
## 49771  1
## 49772  1
## 49773  1
## 49774  1
## 49775  1
## 49776  1
## 49777  1
## 49778  1
## 49779  1
## 49780  1
## 49781  1
## 49782  1
## 49783  1
## 49784  1
## 49785  1
## 49786  1
## 49787  1
## 49788  1
## 49789  1
## 49790  1
## 49791  1
## 49792  1
## 49793  1
## 49794  1
## 49795  1
## 49796  1
## 49797  1
## 49798  1
## 49799  1
## 49800  1
## 49801  1
## 49802  1
## 49803  1
## 49804  1
## 49805  1
## 49806  1
## 49807  1
## 49808  1
## 49809  1
## 49810  1
## 49811  1
## 49812  1
## 49813  1
## 49814  1
## 49815  1
## 49816  1
## 49817  1
## 49818  1
## 49819  1
## 49820  1
## 49821  1
## 49822  1
## 49823  1
## 49824  1
## 49825  1
## 49826  1
## 49827  1
## 49828  1
## 49829  1
## 49830  1
## 49831  1
## 49832  1
## 49833  1
## 49834  1
## 49835  1
## 49836  1
## 49837  1
## 49838  1
## 49839  1
## 49840  1
## 49841  1
## 49842  1
## 49843  1
## 49844  1
## 49845  1
## 49846  1
## 49847  1
## 49848  1
## 49849  1
## 49850  1
## 49851  1
## 49852  1
## 49853  1
## 49854  1
## 49855  1
## 49856  1
## 49857  1
## 49858  1
## 49859  1
## 49860  1
## 49861  1
## 49862  1
## 49863  1
## 49864  1
## 49865  1
## 49866  1
## 49867  1
## 49868  1
## 49869  1
## 49870  1
## 49871  1
## 49872  1
## 49873  1
## 49874  1
## 49875  1
## 49876  1
## 49877  1
## 49878  1
## 49879  1
## 49880  1
## 49881  1
## 49882  1
## 49883  1
## 49884  1
## 49885  1
## 49886  1
## 49887  1
## 49888  1
## 49889  1
## 49890  1
## 49891  1
## 49892  1
## 49893  1
## 49894  1
## 49895  1
## 49896  1
## 49897  1
## 49898  1
## 49899  1
## 49900  1
## 49901  1
## 49902  1
## 49903  1
## 49904  1
## 49905  1
## 49906  1
## 49907  1
## 49908  1
## 49909  1
## 49910  1
## 49911  1
## 49912  1
## 49913  1
## 49914  1
## 49915  1
## 49916  1
## 49917  1
## 49918  1
## 49919  1
## 49920  1
## 49921  1
## 49922  1
## 49923  1
## 49924  1
## 49925  1
## 49926  1
## 49927  1
## 49928  1
## 49929  1
## 49930  1
## 49931  1
## 49932  1
## 49933  1
## 49934  1
## 49935  1
## 49936  1
## 49937  1
## 49938  1
## 49939  1
## 49940  1
## 49941  1
## 49942  1
## 49943  1
## 49944  1
## 49945  1
## 49946  1
## 49947  1
## 49948  1
## 49949  1
## 49950  1
## 49951  1
## 49952  1
## 49953  1
## 49954  1
## 49955  1
## 49956  1
## 49957  1
## 49958  1
## 49959  1
## 49960  1
## 49961  1
## 49962  1
## 49963  1
## 49964  1
## 49965  1
## 49966  1
## 49967  1
## 49968  1
## 49969  1
## 49970  1
## 49971  1
## 49972  1
## 49973  1
## 49974  1
## 49975  1
## 49976  1
## 49977  1
## 49978  1
## 49979  1
## 49980  1
## 49981  1
## 49982  1
## 49983  1
## 49984  1
## 49985  1
## 49986  1
## 49987  1
## 49988  1
## 49989  1
## 49990  1
## 49991  1
## 49992  1
## 49993  1
## 49994  1
## 49995  1
## 49996  1
## 49997  1
## 49998  1
## 49999  1
##  [ reached 'max' / getOption("max.print") -- omitted 78558 rows ]
count(db, ReturnToWorkDate, sort=TRUE)
##      ReturnToWorkDate     n
## 1            #¡VALOR! 57389
## 2          01/05/1996    51
## 3          17/10/2011    48
## 4          29/04/1996    44
## 5          29/07/1996    44
## 6          13/10/1997    43
## 7          07/05/1996    42
## 8          08/08/2013    42
## 9          06/05/1996    41
## 10         08/07/1996    41
## 11         10/06/2010    41
## 12         01/02/2010    40
## 13         08/08/2011    39
## 14         12/08/1996    39
## 15         18/06/2012    39
## 16         01/10/2010    38
## 17         15/07/2013    38
## 18         17/04/1996    38
## 19         18/09/1996    38
## 20         27/08/2012    38
## 21         30/04/1996    38
## 22         06/08/1996    37
## 23         20/10/1997    37
## 24         21/07/1997    37
## 25         22/04/2013    37
## 26         02/02/2010    36
## 27         08/06/2009    36
## 28         20/05/1996    36
## 29         01/08/2005    35
## 30         02/05/1996    35
## 31         07/08/2006    35
## 32         08/02/2010    35
## 33         09/09/1996    35
## 34         11/06/2013    35
## 35         11/09/1996    35
## 36         12/03/2012    35
## 37         13/06/1996    35
## 38         16/09/1996    35
## 39         16/12/1996    35
## 40         25/04/1996    35
## 41         25/07/2011    35
## 42         26/04/1996    35
## 43         03/10/2012    34
## 44         12/09/2011    34
## 45         16/08/2010    34
## 46         16/08/2011    34
## 47         17/06/2013    34
## 48         22/06/2009    34
## 49         26/08/1996    34
## 50         28/01/2010    34
## 51         28/09/2009    34
## 52         01/10/1996    33
## 53         02/04/1996    33
## 54         03/02/1997    33
## 55         07/05/1997    33
## 56         10/02/1997    33
## 57         10/10/2011    33
## 58         12/07/2010    33
## 59         13/02/2006    33
## 60         16/09/2013    33
## 61         17/05/2010    33
## 62         26/07/1996    33
## 63         30/06/1997    33
## 64         01/07/2008    32
## 65         01/08/2011    32
## 66         07/10/1997    32
## 67         08/05/1996    32
## 68         10/07/1997    32
## 69         14/01/2013    32
## 70         14/03/1997    32
## 71         19/03/2013    32
## 72         20/06/1996    32
## 73         22/01/2013    32
## 74         23/11/2010    32
## 75         24/06/1996    32
## 76         24/07/2013    32
## 77         30/07/2012    32
## 78         02/08/1996    31
## 79         03/09/1996    31
## 80         03/11/2009    31
## 81         05/07/2005    31
## 82         07/10/1996    31
## 83         08/02/2012    31
## 84         10/08/2009    31
## 85         12/05/1997    31
## 86         14/05/2012    31
## 87         15/03/2006    31
## 88         15/04/1996    31
## 89         15/05/2013    31
## 90         15/10/2012    31
## 91         20/08/1996    31
## 92         21/07/2008    31
## 93         22/04/1996    31
## 94         22/07/1996    31
## 95         22/10/1996    31
## 96         23/04/1996    31
## 97         23/09/1996    31
## 98         24/01/2005    31
## 99         25/01/2010    31
## 100        25/06/1996    31
## 101        25/06/2008    31
## 102        25/06/2012    31
## 103        25/09/2013    31
## 104        29/08/2012    31
## 105        01/06/2004    30
## 106        01/06/2009    30
## 107        01/10/1997    30
## 108        02/07/1996    30
## 109        04/11/1996    30
## 110        06/04/2009    30
## 111        06/06/1996    30
## 112        06/11/1997    30
## 113        08/08/1996    30
## 114        09/07/1997    30
## 115        09/07/2013    30
## 116        10/04/2006    30
## 117        10/07/2013    30
## 118        11/04/2013    30
## 119        11/06/1997    30
## 120        12/08/2013    30
## 121        14/06/2010    30
## 122        17/02/1997    30
## 123        17/06/1996    30
## 124        17/07/2013    30
## 125        18/04/2011    30
## 126        18/07/2012    30
## 127        23/03/2009    30
## 128        24/03/1997    30
## 129        24/08/2009    30
## 130        25/09/1997    30
## 131        28/03/2012    30
## 132        30/07/1996    30
## 133        02/07/2007    29
## 134        02/07/2013    29
## 135        02/08/2010    29
## 136        03/02/2010    29
## 137        03/03/1997    29
## 138        04/02/2013    29
## 139        04/06/2012    29
## 140        05/12/2011    29
## 141        07/08/1996    29
## 142        08/10/2007    29
## 143        09/08/1996    29
## 144        10/12/2012    29
## 145        11/07/2013    29
## 146        13/08/2012    29
## 147        15/08/2011    29
## 148        16/07/1996    29
## 149        17/04/2006    29
## 150        17/10/2005    29
## 151        20/02/2013    29
## 152        20/04/2009    29
## 153        20/06/2006    29
## 154        21/05/1996    29
## 155        21/05/2007    29
## 156        21/09/2011    29
## 157        22/08/1996    29
## 158        23/07/1997    29
## 159        27/04/2005    29
## 160        28/01/2004    29
## 161        29/08/1996    29
## 162        29/09/1997    29
## 163        29/10/2009    29
## 164        29/10/2012    29
## 165        30/08/2004    29
## 166        30/09/1996    29
## 167        31/01/2014    29
## 168        01/05/2006    28
## 169        01/10/2009    28
## 170        01/10/2012    28
## 171        02/09/1997    28
## 172        02/12/1996    28
## 173        03/04/2006    28
## 174        06/02/2012    28
## 175        06/08/2012    28
## 176        08/04/2013    28
## 177        08/10/2012    28
## 178        09/07/1996    28
## 179        11/08/1997    28
## 180        12/09/2012    28
## 181        14/03/2012    28
## 182        14/10/2004    28
## 183        15/03/2010    28
## 184        15/04/2013    28
## 185        15/06/2010    28
## 186        15/08/2012    28
## 187        15/09/2008    28
## 188        18/02/2013    28
## 189        18/06/1997    28
## 190        19/07/2010    28
## 191        19/09/2005    28
## 192        20/10/2010    28
## 193        21/09/2009    28
## 194        23/07/2007    28
## 195        23/10/2006    28
## 196        24/05/1996    28
## 197        25/06/2013    28
## 198        25/07/2005    28
## 199        25/07/2013    28
## 200        25/08/1997    28
## 201        28/07/1997    28
## 202        29/01/2010    28
## 203        29/01/2013    28
## 204        29/07/2010    28
## 205        30/01/2012    28
## 206        30/08/2010    28
## 207        01/04/1996    27
## 208        01/06/2011    27
## 209        01/10/2004    27
## 210        02/04/2012    27
## 211        02/04/2013    27
## 212        03/05/2010    27
## 213        03/06/2013    27
## 214        04/10/2010    27
## 215        05/08/2013    27
## 216        06/09/2011    27
## 217        08/05/2012    27
## 218        08/05/2013    27
## 219        08/11/2004    27
## 220        09/01/2012    27
## 221        12/05/2011    27
## 222        13/08/1997    27
## 223        13/10/2008    27
## 224        14/04/1997    27
## 225        14/05/2007    27
## 226        14/06/2012    27
## 227        14/08/2006    27
## 228        15/01/1997    27
## 229        15/10/2013    27
## 230        16/05/1996    27
## 231        16/11/2011    27
## 232        17/03/1997    27
## 233        17/04/2012    27
## 234        17/06/2011    27
## 235        17/08/2009    27
## 236        18/03/2013    27
## 237        18/10/2012    27
## 238        19/03/1997    27
## 239        19/06/2006    27
## 240        20/02/1997    27
## 241        20/08/2007    27
## 242        20/08/2012    27
## 243        21/02/2013    27
## 244        21/05/1997    27
## 245        21/05/2012    27
## 246        21/08/1996    27
## 247        21/08/1997    27
## 248        21/09/2005    27
## 249        21/10/1996    27
## 250        22/08/2007    27
## 251        22/09/1997    27
## 252        24/04/2006    27
## 253        25/09/1996    27
## 254        25/11/1996    27
## 255        26/04/2012    27
## 256        26/09/1997    27
## 257        30/04/2012    27
## 258        30/09/2009    27
## 259        31/05/1996    27
## 260        01/02/2011    26
## 261        01/03/2010    26
## 262        01/06/2010    26
## 263        01/12/2005    26
## 264        02/02/2012    26
## 265        03/11/2011    26
## 266        04/02/2010    26
## 267        05/03/2012    26
## 268        05/06/2006    26
## 269        05/06/2013    26
## 270        05/09/2006    26
## 271        05/11/2012    26
## 272        06/06/2012    26
## 273        06/12/2013    26
## 274        07/07/1997    26
## 275        09/05/1996    26
## 276        09/06/2009    26
## 277        09/08/2013    26
## 278        10/05/2005    26
## 279        10/06/1996    26
## 280        10/06/2008    26
## 281        10/09/1996    26
## 282        10/09/2007    26
## 283        11/03/1997    26
## 284        11/04/2011    26
## 285        11/05/2006    26
## 286        11/08/2005    26
## 287        12/02/2007    26
## 288        12/02/2013    26
## 289        12/05/2008    26
## 290        12/09/2007    26
## 291        12/11/1996    26
## 292        12/12/2005    26
## 293        13/05/1997    26
## 294        13/07/2010    26
## 295        14/09/2009    26
## 296        14/10/1996    26
## 297        15/02/2010    26
## 298        15/07/1996    26
## 299        15/11/2004    26
## 300        16/05/2007    26
## 301        16/07/1997    26
## 302        16/09/1997    26
## 303        16/10/2006    26
## 304        17/09/1997    26
## 305        17/09/2012    26
## 306        18/03/1997    26
## 307        18/05/2006    26
## 308        18/06/1996    26
## 309        18/07/2005    26
## 310        18/12/2006    26
## 311        19/01/2010    26
## 312        19/04/1996    26
## 313        20/02/2012    26
## 314        21/06/2004    26
## 315        21/06/2010    26
## 316        21/07/2010    26
## 317        21/08/2013    26
## 318        21/12/2009    26
## 319        22/01/1997    26
## 320        22/01/2008    26
## 321        22/08/2011    26
## 322        23/01/2006    26
## 323        23/05/2006    26
## 324        23/08/1996    26
## 325        23/08/2010    26
## 326        24/04/1996    26
## 327        24/05/2012    26
## 328        24/09/1996    26
## 329        25/02/2008    26
## 330        25/07/1996    26
## 331        26/02/1997    26
## 332        26/09/2013    26
## 333        27/09/2010    26
## 334        27/11/2006    26
## 335        28/07/2011    26
## 336        29/01/2007    26
## 337        29/04/1997    26
## 338        29/05/1996    26
## 339        29/08/2011    26
## 340        30/05/2012    26
## 341        30/07/2008    26
## 342        30/10/1996    26
## 343        31/10/1997    26
## 344        01/06/2006    25
## 345        01/07/1996    25
## 346        01/07/2013    25
## 347        02/05/2005    25
## 348        02/10/2012    25
## 349        03/04/1996    25
## 350        03/07/1997    25
## 351        03/09/2013    25
## 352        03/12/2012    25
## 353        04/06/1996    25
## 354        04/08/1997    25
## 355        05/08/2009    25
## 356        05/09/1996    25
## 357        05/12/2005    25
## 358        06/05/2009    25
## 359        07/05/2012    25
## 360        08/08/2005    25
## 361        09/09/2013    25
## 362        10/06/2013    25
## 363        10/09/2013    25
## 364        10/11/1997    25
## 365        11/02/1997    25
## 366        11/03/2013    25
## 367        11/07/2012    25
## 368        11/08/2008    25
## 369        11/10/2006    25
## 370        12/01/2011    25
## 371        12/04/2013    25
## 372        12/09/2005    25
## 373        13/01/1997    25
## 374        13/03/1997    25
## 375        13/05/1996    25
## 376        13/09/2011    25
## 377        13/11/1996    25
## 378        14/01/2011    25
## 379        14/02/2012    25
## 380        14/06/2006    25
## 381        14/07/2010    25
## 382        15/05/2006    25
## 383        15/08/2005    25
## 384        16/06/2011    25
## 385        16/08/2004    25
## 386        16/08/2013    25
## 387        16/09/2004    25
## 388        16/12/2005    25
## 389        18/04/2012    25
## 390        18/10/2010    25
## 391        19/02/1997    25
## 392        19/03/2007    25
## 393        19/04/2004    25
## 394        19/04/2010    25
## 395        19/06/1996    25
## 396        19/08/1996    25
## 397        19/09/2013    25
## 398        20/05/1997    25
## 399        20/08/1997    25
## 400        20/09/1996    25
## 401        20/09/2012    25
## 402        21/06/2006    25
## 403        21/06/2011    25
## 404        21/08/2006    25
## 405        21/09/2012    25
## 406        21/10/1997    25
## 407        21/11/2013    25
## 408        22/01/2007    25
## 409        22/03/2006    25
## 410        22/05/2006    25
## 411        22/07/1997    25
## 412        23/01/2013    25
## 413        23/02/2009    25
## 414        23/04/2012    25
## 415        23/09/2010    25
## 416        24/02/2012    25
## 417        24/05/2010    25
## 418        24/10/2013    25
## 419        26/03/2012    25
## 420        26/08/2013    25
## 421        26/09/1996    25
## 422        26/11/2012    25
## 423        27/06/2011    25
## 424        27/10/1997    25
## 425        28/08/1996    25
## 426        28/10/2004    25
## 427        29/09/2011    25
## 428        30/03/2009    25
## 429        31/07/2013    25
## 430        01/04/2010    24
## 431        01/05/2012    24
## 432        01/05/2013    24
## 433        01/12/2004    24
## 434        02/05/2007    24
## 435        02/06/2008    24
## 436        02/07/1997    24
## 437        02/07/2012    24
## 438        02/11/2011    24
## 439        03/03/2008    24
## 440        03/08/2009    24
## 441        03/09/1997    24
## 442        03/11/2008    24
## 443        04/03/1997    24
## 444        04/04/2012    24
## 445        04/06/2013    24
## 446        04/11/2013    24
## 447        04/12/1997    24
## 448        05/06/1996    24
## 449        05/08/2008    24
## 450        05/11/2008    24
## 451        06/02/2013    24
## 452        06/06/2011    24
## 453        06/07/2009    24
## 454        07/03/2013    24
## 455        07/05/2007    24
## 456        08/03/2005    24
## 457        08/11/2010    24
## 458        08/11/2012    24
## 459        08/12/2004    24
## 460        09/02/2009    24
## 461        09/06/2008    24
## 462        09/10/1997    24
## 463        10/02/2006    24
## 464        10/07/2012    24
## 465        10/08/2011    24
## 466        10/10/2013    24
## 467        11/02/2013    24
## 468        11/09/2008    24
## 469        11/09/2013    24
## 470        12/03/2014    24
## 471        12/06/1996    24
## 472        12/07/1996    24
## 473        12/07/2011    24
## 474        13/01/2011    24
## 475        13/08/1996    24
## 476        13/08/2013    24
## 477        14/06/2005    24
## 478        14/10/1997    24
## 479        14/10/2011    24
## 480        14/11/1997    24
## 481        14/12/2009    24
## 482        15/02/2006    24
## 483        15/04/1997    24
## 484        15/06/2012    24
## 485        15/07/2011    24
## 486        15/08/2006    24
## 487        15/09/1997    24
## 488        16/02/2012    24
## 489        16/04/1996    24
## 490        16/05/2006    24
## 491        16/07/2007    24
## 492        16/10/2007    24
## 493        16/10/2012    24
## 494        17/07/2006    24
## 495        18/06/2008    24
## 496        18/06/2013    24
## 497        18/08/2008    24
## 498        19/05/2010    24
## 499        19/07/2012    24
## 500        19/08/2011    24
## 501        19/11/2007    24
## 502        20/02/2006    24
## 503        20/03/1997    24
## 504        20/06/2011    24
## 505        20/06/2012    24
## 506        20/07/2011    24
## 507        20/09/2010    24
## 508        20/11/2006    24
## 509        21/02/2011    24
## 510        21/04/2008    24
## 511        22/01/2014    24
## 512        22/05/1997    24
## 513        22/05/2012    24
## 514        22/07/2013    24
## 515        22/08/2013    24
## 516        22/10/1997    24
## 517        22/10/2012    24
## 518        23/05/2012    24
## 519        23/05/2013    24
## 520        23/07/1996    24
## 521        23/08/2004    24
## 522        24/05/2006    24
## 523        24/06/2004    24
## 524        24/06/2013    24
## 525        24/07/1997    24
## 526        24/10/1997    24
## 527        25/06/2009    24
## 528        26/01/2011    24
## 529        26/04/2011    24
## 530        26/09/2005    24
## 531        27/01/2011    24
## 532        27/03/2007    24
## 533        27/05/1997    24
## 534        27/08/2007    24
## 535        28/02/2013    24
## 536        28/09/2012    24
## 537        30/03/2012    24
## 538        31/07/2012    24
## 539        01/07/1997    23
## 540        01/12/2009    23
## 541        02/02/2004    23
## 542        02/02/2009    23
## 543        02/04/2007    23
## 544        02/05/2011    23
## 545        02/08/2013    23
## 546        02/09/2004    23
## 547        03/04/2012    23
## 548        03/05/1996    23
## 549        03/06/1996    23
## 550        03/06/1997    23
## 551        03/07/2012    23
## 552        03/08/2006    23
## 553        04/06/2009    23
## 554        04/08/2009    23
## 555        05/06/1997    23
## 556        05/08/1997    23
## 557        05/11/2010    23
## 558        05/12/1996    23
## 559        06/03/2006    23
## 560        06/05/1997    23
## 561        06/10/1997    23
## 562        06/10/2011    23
## 563        06/11/1996    23
## 564        07/06/2010    23
## 565        07/07/2008    23
## 566        07/10/2011    23
## 567        07/10/2013    23
## 568        07/11/1996    23
## 569        08/08/2012    23
## 570        08/09/2004    23
## 571        08/09/2009    23
## 572        09/02/2006    23
## 573        09/06/1997    23
## 574        09/08/2010    23
## 575        09/09/1997    23
## 576        10/05/2004    23
## 577        11/04/2006    23
## 578        11/05/2011    23
## 579        12/05/2005    23
## 580        12/06/2012    23
## 581        12/08/1997    23
## 582        13/02/2012    23
## 583        13/04/2010    23
## 584        13/06/1997    23
## 585        13/06/2012    23
## 586        13/10/2010    23
## 587        14/02/2006    23
## 588        14/02/2011    23
## 589        14/07/2008    23
## 590        14/07/2011    23
## 591        15/08/2013    23
## 592        15/11/2011    23
## 593        16/05/2013    23
## 594        16/08/2005    23
## 595        16/08/2012    23
## 596        16/12/2004    23
## 597        16/12/2010    23
## 598        17/04/2013    23
## 599        17/07/1996    23
## 600        17/10/1997    23
## 601        17/11/2011    23
## 602        17/12/1997    23
## 603        18/01/2011    23
## 604        18/04/1996    23
## 605        18/09/1997    23
## 606        19/03/2009    23
## 607        19/04/2006    23
## 608        19/09/2011    23
## 609        20/06/2013    23
## 610        21/09/2010    23
## 611        22/05/2013    23
## 612        22/09/2008    23
## 613        22/10/2007    23
## 614        23/06/2006    23
## 615        23/07/2012    23
## 616        24/01/1997    23
## 617        24/02/1997    23
## 618        24/09/2007    23
## 619        24/10/2011    23
## 620        25/02/2013    23
## 621        25/06/2004    23
## 622        25/06/2007    23
## 623        25/07/2007    23
## 624        25/09/2006    23
## 625        26/01/2005    23
## 626        26/01/2009    23
## 627        26/04/2004    23
## 628        26/04/2010    23
## 629        26/05/2010    23
## 630        26/05/2011    23
## 631        26/09/2007    23
## 632        27/01/1997    23
## 633        27/01/2014    23
## 634        27/04/2009    23
## 635        27/04/2012    23
## 636        28/06/2004    23
## 637        28/06/2012    23
## 638        30/05/1996    23
## 639        30/06/2008    23
## 640        30/10/2008    23
## 641        30/11/2009    23
## 642        31/07/1996    23
## 643        01/04/2013    22
## 644        01/08/1997    22
## 645        01/11/2006    22
## 646        01/11/2010    22
## 647        01/12/2010    22
## 648        02/01/1997    22
## 649        02/08/2004    22
## 650        02/09/2008    22
## 651        03/05/2005    22
## 652        03/06/2010    22
## 653        03/10/1996    22
## 654        03/10/2005    22
## 655        03/10/2011    22
## 656        04/02/2008    22
## 657        04/11/2011    22
## 658        05/07/2013    22
## 659        05/09/2007    22
## 660        05/10/2009    22
## 661        07/04/2008    22
## 662        07/06/2004    22
## 663        07/06/2006    22
## 664        07/08/2013    22
## 665        07/11/2005    22
## 666        08/01/2010    22
## 667        08/10/1997    22
## 668        09/01/1998    22
## 669        09/01/2006    22
## 670        09/05/2012    22
## 671        09/05/2013    22
## 672        09/07/2012    22
## 673        09/08/2004    22
## 674        09/11/2009    22
## 675        10/01/2012    22
## 676        10/04/1996    22
## 677        10/05/2010    22
## 678        10/08/2012    22
## 679        10/10/2012    22
## 680        10/12/2009    22
## 681        11/04/2005    22
## 682        11/05/2010    22
## 683        11/06/2012    22
## 684        11/07/2011    22
## 685        11/08/2010    22
## 686        12/01/2009    22
## 687        12/06/1997    22
## 688        12/06/2006    22
## 689        12/10/2005    22
## 690        12/10/2006    22
## 691        13/06/2011    22
## 692        13/12/2011    22
## 693        14/06/2013    22
## 694        14/07/1997    22
## 695        14/08/1997    22
## 696        14/10/2009    22
## 697        15/03/2012    22
## 698        15/07/2009    22
## 699        15/08/1996    22
## 700        15/11/2010    22
## 701        16/02/2009    22
## 702        16/03/2009    22
## 703        16/07/2012    22
## 704        16/08/2006    22
## 705        16/11/2005    22
## 706        17/02/2005    22
## 707        17/02/2010    22
## 708        17/05/2006    22
## 709        17/09/1996    22
## 710        18/04/2005    22
## 711        18/05/2009    22
## 712        18/05/2011    22
## 713        18/06/2007    22
## 714        18/08/2005    22
## 715        18/09/2006    22
## 716        18/12/2012    22
## 717        19/02/2008    22
## 718        19/02/2009    22
## 719        19/03/2014    22
## 720        19/05/1997    22
## 721        19/08/2013    22
## 722        19/10/2009    22
## 723        20/03/2013    22
## 724        20/07/2009    22
## 725        20/10/2008    22
## 726        21/01/2010    22
## 727        21/04/1997    22
## 728        21/06/1996    22
## 729        21/07/2005    22
## 730        21/10/2010    22
## 731        22/04/2009    22
## 732        22/06/2007    22
## 733        22/08/2005    22
## 734        22/09/2004    22
## 735        22/10/2013    22
## 736        23/01/2012    22
## 737        23/03/2012    22
## 738        23/04/1997    22
## 739        23/05/2005    22
## 740        23/06/1997    22
## 741        23/06/2004    22
## 742        23/09/1997    22
## 743        24/01/2007    22
## 744        24/07/2007    22
## 745        24/07/2008    22
## 746        24/07/2012    22
## 747        24/08/2011    22
## 748        24/10/2012    22
## 749        25/08/2009    22
## 750        26/03/1997    22
## 751        26/06/2008    22
## 752        26/07/2004    22
## 753        26/07/2012    22
## 754        26/07/2013    22
## 755        26/08/2005    22
## 756        27/02/2012    22
## 757        27/08/1997    22
## 758        27/11/2012    22
## 759        28/04/2008    22
## 760        28/05/1996    22
## 761        29/06/2004    22
## 762        29/07/2009    22
## 763        29/07/2013    22
## 764        29/08/2006    22
## 765        30/08/2006    22
## 766        31/07/1997    22
## 767        31/08/2009    22
## 768        01/03/2012    21
## 769        01/04/1997    21
## 770        01/04/2008    21
## 771        01/05/1997    21
## 772        01/08/1996    21
## 773        01/09/2005    21
## 774        01/09/2010    21
## 775        01/11/2012    21
## 776        02/03/2009    21
## 777        02/05/1997    21
## 778        02/06/1997    21
## 779        02/06/2010    21
## 780        02/08/2012    21
## 781        02/11/2009    21
## 782        03/01/2011    21
## 783        03/04/1997    21
## 784        03/05/2006    21
## 785        03/08/2005    21
## 786        03/09/2010    21
## 787        03/12/2007    21
## 788        04/04/2011    21
## 789        04/05/2009    21
## 790        04/06/1997    21
## 791        04/08/2008    21
## 792        04/09/2012    21
## 793        05/05/1997    21
## 794        05/07/2011    21
## 795        05/11/1997    21
## 796        05/11/2007    21
## 797        06/04/2006    21
## 798        06/08/2007    21
## 799        06/08/2008    21
## 800        06/10/2004    21
## 801        06/10/2009    21
## 802        06/11/2006    21
## 803        06/12/2006    21
## 804        07/01/2010    21
## 805        07/03/2012    21
## 806        07/04/2011    21
## 807        07/05/2013    21
## 808        07/09/2010    21
## 809        08/03/2010    21
## 810        08/03/2012    21
## 811        08/04/2010    21
## 812        08/10/2013    21
## 813        08/11/1996    21
## 814        08/12/1997    21
## 815        09/02/2011    21
## 816        09/02/2012    21
## 817        09/03/2011    21
## 818        09/05/2005    21
## 819        09/05/2007    21
## 820        09/05/2011    21
## 821        09/06/2010    21
## 822        09/06/2011    21
## 823        09/07/2009    21
## 824        09/10/2012    21
## 825        10/02/2010    21
## 826        10/04/2012    21
## 827        10/05/1996    21
## 828        10/09/2008    21
## 829        10/09/2012    21
## 830        10/10/1996    21
## 831        10/11/2009    21
## 832        11/01/2006    21
## 833        11/02/2008    21
## 834        11/07/1996    21
## 835        11/09/1997    21
## 836        11/09/2006    21
## 837        11/09/2009    21
## 838        12/01/2006    21
## 839        12/04/1996    21
## 840        12/04/2006    21
## 841        12/07/2005    21
## 842        12/07/2012    21
## 843        12/10/2009    21
## 844        12/10/2010    21
## 845        12/10/2012    21
## 846        12/12/2008    21
## 847        13/08/2008    21
## 848        13/09/2012    21
## 849        13/11/2013    21
## 850        14/04/2010    21
## 851        14/05/1996    21
## 852        14/06/1996    21
## 853        14/06/2004    21
## 854        14/06/2007    21
## 855        14/07/2005    21
## 856        14/09/2005    21
## 857        14/12/2012    21
## 858        15/01/2013    21
## 859        15/06/2006    21
## 860        15/07/1997    21
## 861        15/07/2008    21
## 862        15/08/1997    21
## 863        15/10/1997    21
## 864        15/10/2007    21
## 865        15/11/2006    21
## 866        15/12/1997    21
## 867        15/12/2011    21
## 868        16/04/2012    21
## 869        16/11/2009    21
## 870        16/12/2009    21
## 871        17/01/2012    21
## 872        17/06/1997    21
## 873        17/08/2005    21
## 874        17/08/2010    21
## 875        18/02/1997    21
## 876        18/03/2005    21
## 877        18/06/2009    21
## 878        18/08/2004    21
## 879        18/08/2010    21
## 880        18/10/2004    21
## 881        18/11/2013    21
## 882        19/02/2014    21
## 883        19/05/2004    21
## 884        19/05/2005    21
## 885        19/07/1996    21
## 886        19/07/2004    21
## 887        19/11/2013    21
## 888        20/01/2011    21
## 889        20/04/2006    21
## 890        20/05/2009    21
## 891        20/05/2013    21
## 892        20/08/2013    21
## 893        21/03/1997    21
## 894        21/03/2012    21
## 895        21/07/2006    21
## 896        21/08/2012    21
## 897        21/11/2011    21
## 898        21/12/2005    21
## 899        22/02/2013    21
## 900        22/03/2012    21
## 901        22/08/2012    21
## 902        22/09/2005    21
## 903        22/11/2010    21
## 904        23/02/2010    21
## 905        23/02/2012    21
## 906        23/03/2006    21
## 907        23/05/1996    21
## 908        23/08/2011    21
## 909        23/09/2004    21
## 910        24/02/2011    21
## 911        24/04/2013    21
## 912        24/07/1996    21
## 913        24/09/2012    21
## 914        25/10/1996    21
## 915        25/10/2010    21
## 916        26/04/2013    21
## 917        26/06/2012    21
## 918        27/01/2010    21
## 919        27/02/2006    21
## 920        27/03/2012    21
## 921        27/03/2013    21
## 922        27/04/2006    21
## 923        27/07/2010    21
## 924        27/09/1996    21
## 925        28/01/2008    21
## 926        28/02/2011    21
## 927        28/03/2007    21
## 928        28/11/2011    21
## 929        29/01/1997    21
## 930        29/09/2009    21
## 931        29/10/2013    21
## 932        30/05/2013    21
## 933        30/07/2007    21
## 934        30/08/2012    21
## 935        30/11/2011    21
## 936        31/10/1996    21
## 937        31/10/2013    21
## 938        01/03/2005    20
## 939        01/07/2009    20
## 940        01/07/2010    20
## 941        01/09/2011    20
## 942        01/10/2008    20
## 943        01/12/2011    20
## 944        02/02/2011    20
## 945        02/08/2005    20
## 946        02/08/2011    20
## 947        02/12/2011    20
## 948        03/05/2004    20
## 949        03/06/2009    20
## 950        03/08/2011    20
## 951        03/10/2006    20
## 952        03/10/2007    20
## 953        03/12/2010    20
## 954        04/05/2005    20
## 955        04/06/2010    20
## 956        04/08/2010    20
## 957        04/09/2007    20
## 958        04/09/2013    20
## 959        04/10/2004    20
## 960        04/10/2013    20
## 961        04/11/2008    20
## 962        05/02/1997    20
## 963        05/03/2014    20
## 964        05/09/2012    20
## 965        06/02/2006    20
## 966        06/02/2014    20
## 967        06/04/2010    20
## 968        06/06/1997    20
## 969        06/06/2005    20
## 970        06/06/2013    20
## 971        06/07/2005    20
## 972        06/08/2013    20
## 973        06/09/2013    20
## 974        07/01/2008    20
## 975        07/01/2014    20
## 976        07/02/2005    20
## 977        07/03/2005    20
## 978        07/06/1996    20
## 979        07/06/2007    20
## 980        07/08/1997    20
## 981        07/09/2012    20
## 982        07/11/1997    20
## 983        08/02/2013    20
## 984        08/03/2006    20
## 985        08/04/2009    20
## 986        08/05/1997    20
## 987        08/05/2006    20
## 988        08/06/2004    20
## 989        08/07/1997    20
## 990        08/12/2009    20
## 991        09/04/2012    20
## 992        09/06/2005    20
## 993        09/12/2013    20
## 994        10/03/2009    20
## 995        10/04/2013    20
## 996        10/08/2010    20
## 997        10/09/2004    20
## 998        11/01/2010    20
## 999        11/03/2005    20
## 1000       11/04/2007    20
## 1001       11/04/2012    20
## 1002       11/05/2009    20
## 1003       11/06/2008    20
## 1004       11/08/2011    20
## 1005       11/10/2011    20
## 1006       12/03/2013    20
## 1007       12/05/2010    20
## 1008       13/01/2006    20
## 1009       13/08/2010    20
## 1010       13/09/1996    20
## 1011       13/09/2004    20
## 1012       14/01/2008    20
## 1013       14/05/2013    20
## 1014       14/07/2004    20
## 1015       14/09/2010    20
## 1016       14/11/2011    20
## 1017       15/01/1998    20
## 1018       15/02/2013    20
## 1019       15/12/2008    20
## 1020       16/03/2007    20
## 1021       16/03/2012    20
## 1022       16/04/2007    20
## 1023       16/07/2013    20
## 1024       16/09/2011    20
## 1025       16/10/2008    20
## 1026       16/10/2013    20
## 1027       17/05/2012    20
## 1028       17/05/2013    20
## 1029       17/08/2012    20
## 1030       17/10/2008    20
## 1031       18/04/2013    20
## 1032       18/05/1996    20
## 1033       18/09/2009    20
## 1034       18/11/2011    20
## 1035       19/02/2013    20
## 1036       19/05/2008    20
## 1037       19/06/1997    20
## 1038       19/06/2012    20
## 1039       19/08/2008    20
## 1040       19/09/1996    20
## 1041       19/12/2011    20
## 1042       20/01/2006    20
## 1043       20/01/2010    20
## 1044       20/03/2007    20
## 1045       20/03/2012    20
## 1046       20/09/2005    20
## 1047       20/09/2006    20
## 1048       20/10/2005    20
## 1049       20/12/2010    20
## 1050       20/12/2011    20
## 1051       21/04/2004    20
## 1052       21/05/2013    20
## 1053       21/07/2004    20
## 1054       21/10/2013    20
## 1055       21/11/1996    20
## 1056       22/03/2010    20
## 1057       22/04/2010    20
## 1058       22/06/2005    20
## 1059       22/09/2010    20
## 1060       23/03/2005    20
## 1061       23/04/2007    20
## 1062       23/05/2007    20
## 1063       23/09/2009    20
## 1064       24/03/1998    20
## 1065       24/06/1997    20
## 1066       24/08/2005    20
## 1067       24/09/2010    20
## 1068       25/04/2012    20
## 1069       25/05/2006    20
## 1070       25/06/2010    20
## 1071       25/08/2005    20
## 1072       25/08/2008    20
## 1073       25/10/2012    20
## 1074       26/06/1997    20
## 1075       26/07/2010    20
## 1076       26/10/2006    20
## 1077       26/10/2011    20
## 1078       27/05/2008    20
## 1079       27/06/1997    20
## 1080       27/09/2011    20
## 1081       28/01/1997    20
## 1082       28/06/2010    20
## 1083       28/08/1997    20
## 1084       28/08/2009    20
## 1085       28/10/2008    20
## 1086       28/11/2012    20
## 1087       29/01/2004    20
## 1088       29/04/2013    20
## 1089       29/06/2009    20
## 1090       29/06/2011    20
## 1091       29/07/1997    20
## 1092       29/08/2005    20
## 1093       29/09/2004    20
## 1094       29/10/2007    20
## 1095       29/11/2004    20
## 1096       30/01/1997    20
## 1097       30/01/2006    20
## 1098       30/01/2013    20
## 1099       30/05/2006    20
## 1100       30/09/1997    20
## 1101       30/09/2008    20
## 1102       30/09/2010    20
## 1103       30/09/2013    20
## 1104       31/01/2005    20
## 1105       31/01/2013    20
## 1106       31/03/1997    20
## 1107       01/02/2012    19
## 1108       01/07/2011    19
## 1109       01/08/2007    19
## 1110       01/09/2009    19
## 1111       02/04/1997    19
## 1112       02/06/2005    19
## 1113       02/06/2011    19
## 1114       02/09/2010    19
## 1115       02/10/2007    19
## 1116       02/11/2004    19
## 1117       02/11/2006    19
## 1118       03/01/2005    19
## 1119       03/03/2009    19
## 1120       03/07/2007    19
## 1121       04/01/2006    19
## 1122       04/01/2007    19
## 1123       04/02/1997    19
## 1124       04/06/2007    19
## 1125       04/09/2008    19
## 1126       05/01/2006    19
## 1127       05/02/2010    19
## 1128       05/03/2010    19
## 1129       05/05/2008    19
## 1130       05/08/2005    19
## 1131       05/10/2004    19
## 1132       05/10/2006    19
## 1133       05/10/2011    19
## 1134       06/01/2006    19
## 1135       06/01/2011    19
## 1136       06/01/2012    19
## 1137       06/08/2010    19
## 1138       06/09/2006    19
## 1139       06/12/1996    19
## 1140       06/12/2004    19
## 1141       06/12/2010    19
## 1142       06/12/2011    19
## 1143       06/12/2012    19
## 1144       07/02/2013    19
## 1145       07/03/2011    19
## 1146       07/09/2007    19
## 1147       07/10/2008    19
## 1148       07/12/2005    19
## 1149       08/01/2009    19
## 1150       08/04/1997    19
## 1151       08/06/2006    19
## 1152       08/07/2013    19
## 1153       08/09/1997    19
## 1154       08/09/2005    19
## 1155       08/09/2010    19
## 1156       08/09/2011    19
## 1157       08/10/1996    19
## 1158       09/01/1997    19
## 1159       09/03/2006    19
## 1160       09/04/1997    19
## 1161       09/07/2007    19
## 1162       09/07/2010    19
## 1163       09/08/2011    19
## 1164       09/10/1996    19
## 1165       09/10/2013    19
## 1166       09/12/2008    19
## 1167       10/01/2007    19
## 1168       10/01/2011    19
## 1169       10/03/2004    19
## 1170       10/03/2008    19
## 1171       10/07/2007    19
## 1172       10/11/2011    19
## 1173       11/01/2008    19
## 1174       11/02/2010    19
## 1175       11/03/2009    19
## 1176       11/05/2012    19
## 1177       11/09/2007    19
## 1178       11/09/2012    19
## 1179       11/10/1996    19
## 1180       11/10/2004    19
## 1181       11/11/1997    19
## 1182       11/12/2012    19
## 1183       12/04/2004    19
## 1184       12/09/2006    19
## 1185       12/12/2012    19
## 1186       13/02/1997    19
## 1187       13/03/2014    19
## 1188       13/10/2011    19
## 1189       13/11/1997    19
## 1190       13/11/2007    19
## 1191       13/11/2012    19
## 1192       13/12/1996    19
## 1193       14/05/2009    19
## 1194       14/08/1996    19
## 1195       14/09/2012    19
## 1196       15/02/2012    19
## 1197       15/03/2013    19
## 1198       15/05/1996    19
## 1199       15/06/2005    19
## 1200       15/08/2008    19
## 1201       15/10/1996    19
## 1202       15/10/2008    19
## 1203       15/10/2010    19
## 1204       15/11/2012    19
## 1205       15/12/2005    19
## 1206       16/01/2013    19
## 1207       16/02/2011    19
## 1208       16/05/2011    19
## 1209       16/06/1997    19
## 1210       16/06/2008    19
## 1211       16/08/1996    19
## 1212       16/09/2005    19
## 1213       16/10/1996    19
## 1214       16/11/2012    19
## 1215       17/03/2009    19
## 1216       17/03/2011    19
## 1217       17/05/2004    19
## 1218       17/05/2007    19
## 1219       17/07/1997    19
## 1220       17/07/2009    19
## 1221       17/12/1996    19
## 1222       17/12/2010    19
## 1223       18/02/2010    19
## 1224       18/04/2008    19
## 1225       18/05/2012    19
## 1226       18/07/2011    19
## 1227       18/09/2012    19
## 1228       18/09/2013    19
## 1229       19/09/2012    19
## 1230       20/01/1998    19
## 1231       20/03/2006    19
## 1232       20/06/2005    19
## 1233       20/08/2010    19
## 1234       20/11/1997    19
## 1235       21/01/1997    19
## 1236       21/02/2005    19
## 1237       21/02/2014    19
## 1238       21/03/2005    19
## 1239       21/04/2011    19
## 1240       21/05/2009    19
## 1241       21/06/2012    19
## 1242       21/10/2008    19
## 1243       21/10/2009    19
## 1244       22/05/2008    19
## 1245       22/07/2004    19
## 1246       23/05/2011    19
## 1247       23/06/2005    19
## 1248       23/08/2007    19
## 1249       23/10/2007    19
## 1250       24/03/2006    19
## 1251       24/04/2007    19
## 1252       24/05/2004    19
## 1253       24/08/2010    19
## 1254       24/10/2005    19
## 1255       24/10/2007    19
## 1256       25/01/2013    19
## 1257       25/02/1997    19
## 1258       25/05/2005    19
## 1259       25/05/2011    19
## 1260       25/06/1997    19
## 1261       25/09/2007    19
## 1262       25/10/2005    19
## 1263       26/02/2007    19
## 1264       26/03/2014    19
## 1265       26/06/1996    19
## 1266       26/07/2007    19
## 1267       26/08/1997    19
## 1268       26/09/2012    19
## 1269       26/10/2009    19
## 1270       27/02/2009    19
## 1271       27/06/1996    19
## 1272       27/06/2012    19
## 1273       27/08/2008    19
## 1274       27/09/2006    19
## 1275       27/09/2012    19
## 1276       27/10/2009    19
## 1277       27/10/2010    19
## 1278       28/02/2007    19
## 1279       28/06/2013    19
## 1280       28/08/2008    19
## 1281       28/08/2012    19
## 1282       28/09/2004    19
## 1283       28/11/2005    19
## 1284       29/03/2010    19
## 1285       29/08/1997    19
## 1286       29/11/2005    19
## 1287       30/01/2014    19
## 1288       30/04/2004    19
## 1289       30/10/2009    19
## 1290       30/10/2013    19
## 1291       30/11/2010    19
## 1292       31/01/1997    19
## 1293       01/02/2006    18
## 1294       01/03/2007    18
## 1295       01/06/2007    18
## 1296       01/11/1996    18
## 1297       01/11/2011    18
## 1298       01/12/1997    18
## 1299       02/01/2008    18
## 1300       02/05/2013    18
## 1301       02/08/2006    18
## 1302       02/09/2009    18
## 1303       02/10/1996    18
## 1304       02/12/2013    18
## 1305       03/01/2013    18
## 1306       03/04/2013    18
## 1307       03/05/2011    18
## 1308       03/05/2013    18
## 1309       03/07/1996    18
## 1310       03/10/2013    18
## 1311       03/11/1997    18
## 1312       04/03/2009    18
## 1313       04/03/2010    18
## 1314       04/03/2014    18
## 1315       04/04/1996    18
## 1316       04/10/2005    18
## 1317       04/10/2011    18
## 1318       04/11/2009    18
## 1319       05/01/1998    18
## 1320       05/02/1996    18
## 1321       05/02/2007    18
## 1322       05/02/2009    18
## 1323       05/02/2013    18
## 1324       05/03/2009    18
## 1325       05/04/2004    18
## 1326       05/04/2005    18
## 1327       05/09/1997    18
## 1328       05/10/2012    18
## 1329       05/11/1996    18
## 1330       05/11/2013    18
## 1331       05/12/2007    18
## 1332       06/05/2010    18
## 1333       06/05/2013    18
## 1334       06/07/2004    18
## 1335       06/11/2008    18
## 1336       06/11/2009    18
## 1337       06/11/2012    18
## 1338       06/11/2013    18
## 1339       07/01/1998    18
## 1340       07/01/2013    18
## 1341       07/04/1997    18
## 1342       07/04/2010    18
## 1343       07/06/2013    18
## 1344       07/10/2010    18
## 1345       08/01/2007    18
## 1346       08/01/2013    18
## 1347       08/03/2007    18
## 1348       08/03/2013    18
## 1349       08/06/2012    18
## 1350       08/07/2011    18
## 1351       08/08/2008    18
## 1352       08/09/2008    18
## 1353       08/12/2005    18
## 1354       09/02/2007    18
## 1355       09/08/2006    18
## 1356       10/03/2010    18
## 1357       10/04/1997    18
## 1358       10/06/1997    18
## 1359       10/07/2006    18
## 1360       10/08/2004    18
## 1361       10/11/2008    18
## 1362       10/12/1996    18
## 1363       11/07/1997    18
## 1364       11/10/2005    18
## 1365       12/06/2008    18
## 1366       12/07/2004    18
## 1367       12/07/2006    18
## 1368       12/08/2008    18
## 1369       12/09/1996    18
## 1370       12/12/2006    18
## 1371       13/01/2010    18
## 1372       13/01/2014    18
## 1373       13/02/2009    18
## 1374       13/03/2007    18
## 1375       13/03/2013    18
## 1376       13/04/2007    18
## 1377       13/05/2013    18
## 1378       13/06/2007    18
## 1379       13/12/2004    18
## 1380       13/12/2010    18
## 1381       14/03/2005    18
## 1382       14/03/2011    18
## 1383       14/04/2008    18
## 1384       14/04/2009    18
## 1385       14/05/1997    18
## 1386       14/08/2012    18
## 1387       14/09/2004    18
## 1388       14/10/2010    18
## 1389       14/10/2013    18
## 1390       14/11/2007    18
## 1391       14/12/2005    18
## 1392       15/03/2007    18
## 1393       15/04/2008    18
## 1394       15/04/2010    18
## 1395       15/07/2005    18
## 1396       15/09/2005    18
## 1397       15/12/2003    18
## 1398       16/01/1997    18
## 1399       16/02/2010    18
## 1400       16/03/2011    18
## 1401       16/04/1997    18
## 1402       16/04/2008    18
## 1403       16/05/1997    18
## 1404       16/05/2005    18
## 1405       16/12/2008    18
## 1406       17/01/2006    18
## 1407       17/03/2004    18
## 1408       17/03/2010    18
## 1409       17/05/1996    18
## 1410       17/06/2009    18
## 1411       17/09/2007    18
## 1412       17/11/2008    18
## 1413       17/11/2009    18
## 1414       18/03/1996    18
## 1415       18/04/2007    18
## 1416       18/07/1996    18
## 1417       18/07/2007    18
## 1418       18/08/1997    18
## 1419       18/08/2009    18
## 1420       18/11/1996    18
## 1421       18/11/1997    18
## 1422       18/11/2005    18
## 1423       18/11/2008    18
## 1424       19/01/2005    18
## 1425       19/01/2011    18
## 1426       19/06/2008    18
## 1427       19/08/2010    18
## 1428       19/10/2005    18
## 1429       20/01/2009    18
## 1430       20/04/2010    18
## 1431       20/04/2012    18
## 1432       20/05/2010    18
## 1433       20/06/1997    18
## 1434       20/08/2009    18
## 1435       20/09/2013    18
## 1436       21/01/2013    18
## 1437       21/02/2012    18
## 1438       21/03/2011    18
## 1439       21/04/2010    18
## 1440       21/08/2008    18
## 1441       22/04/1997    18
## 1442       22/05/1996    18
## 1443       22/06/2011    18
## 1444       22/07/2011    18
## 1445       22/08/2008    18
## 1446       22/09/2009    18
## 1447       22/09/2011    18
## 1448       22/12/2009    18
## 1449       23/04/2009    18
## 1450       23/04/2010    18
## 1451       23/05/1997    18
## 1452       23/07/2010    18
## 1453       23/10/1996    18
## 1454       23/10/2012    18
## 1455       23/10/2013    18
## 1456       23/12/2011    18
## 1457       24/02/2010    18
## 1458       24/03/2009    18
## 1459       24/07/2006    18
## 1460       25/01/2012    18
## 1461       25/04/2005    18
## 1462       25/04/2006    18
## 1463       25/11/2013    18
## 1464       26/01/1998    18
## 1465       26/03/2007    18
## 1466       26/04/2006    18
## 1467       26/05/2009    18
## 1468       26/08/2011    18
## 1469       26/09/2008    18
## 1470       26/09/2011    18
## 1471       27/02/1997    18
## 1472       27/03/1996    18
## 1473       27/07/2004    18
## 1474       27/07/2005    18
## 1475       27/07/2011    18
## 1476       27/08/1996    18
## 1477       27/08/2004    18
## 1478       27/08/2009    18
## 1479       28/01/2013    18
## 1480       28/03/2005    18
## 1481       28/03/2006    18
## 1482       28/05/2013    18
## 1483       28/07/2004    18
## 1484       28/07/2008    18
## 1485       28/07/2009    18
## 1486       28/08/2006    18
## 1487       28/09/2005    18
## 1488       28/10/1997    18
## 1489       28/10/2011    18
## 1490       29/05/2012    18
## 1491       29/05/2013    18
## 1492       29/06/2012    18
## 1493       29/08/2013    18
## 1494       29/10/1997    18
## 1495       29/11/2010    18
## 1496       30/03/2006    18
## 1497       30/04/2007    18
## 1498       30/05/2007    18
## 1499       30/06/2005    18
## 1500       30/07/2013    18
## 1501       30/08/1996    18
## 1502       31/03/2004    18
## 1503       31/03/2005    18
## 1504       31/07/2008    18
## 1505       31/10/2005    18
## 1506       31/10/2011    18
## 1507       31/12/1997    18
## 1508       01/02/2007    17
## 1509       01/03/2011    17
## 1510       01/04/2004    17
## 1511       01/04/2009    17
## 1512       01/06/1998    17
## 1513       01/06/2012    17
## 1514       01/11/2004    17
## 1515       01/11/2005    17
## 1516       01/12/2008    17
## 1517       02/01/2007    17
## 1518       02/05/2012    17
## 1519       02/07/2009    17
## 1520       02/10/2006    17
## 1521       02/12/1997    17
## 1522       02/12/2004    17
## 1523       03/02/2005    17
## 1524       03/02/2014    17
## 1525       03/08/2012    17
## 1526       03/12/1997    17
## 1527       04/03/2008    17
## 1528       04/04/1997    17
## 1529       04/04/2005    17
## 1530       04/08/2004    17
## 1531       04/11/2010    17
## 1532       05/01/2012    17
## 1533       05/03/2007    17
## 1534       05/03/2008    17
## 1535       05/05/2006    17
## 1536       05/08/2011    17
## 1537       05/09/2013    17
## 1538       05/10/2010    17
## 1539       05/11/2009    17
## 1540       05/12/1997    17
## 1541       06/03/2012    17
## 1542       06/07/2007    17
## 1543       06/09/2007    17
## 1544       06/12/2007    17
## 1545       07/01/1997    17
## 1546       07/01/2005    17
## 1547       07/02/2006    17
## 1548       07/02/2012    17
## 1549       07/06/2012    17
## 1550       07/09/1996    17
## 1551       07/09/2004    17
## 1552       07/09/2011    17
## 1553       07/11/2008    17
## 1554       07/12/2011    17
## 1555       07/12/2012    17
## 1556       08/05/2007    17
## 1557       08/05/2009    17
## 1558       08/06/2011    17
## 1559       08/07/2004    17
## 1560       08/08/2006    17
## 1561       08/08/2007    17
## 1562       08/11/2005    17
## 1563       08/12/2006    17
## 1564       09/02/2010    17
## 1565       09/08/2012    17
## 1566       09/11/2011    17
## 1567       09/12/1997    17
## 1568       09/12/2005    17
## 1569       10/01/2014    17
## 1570       10/02/2005    17
## 1571       10/02/2009    17
## 1572       10/02/2012    17
## 1573       10/05/2006    17
## 1574       10/05/2012    17
## 1575       10/07/1996    17
## 1576       10/09/1997    17
## 1577       10/10/2008    17
## 1578       10/12/2013    17
## 1579       11/03/1996    17
## 1580       11/06/1996    17
## 1581       11/08/2009    17
## 1582       11/10/2010    17
## 1583       11/11/2009    17
## 1584       12/01/2004    17
## 1585       12/01/2005    17
## 1586       12/02/2010    17
## 1587       12/03/2007    17
## 1588       12/04/2010    17
## 1589       12/08/2004    17
## 1590       12/09/1997    17
## 1591       12/11/2013    17
## 1592       12/12/2007    17
## 1593       12/12/2011    17
## 1594       13/03/2012    17
## 1595       13/06/2005    17
## 1596       13/06/2008    17
## 1597       13/07/2005    17
## 1598       13/07/2007    17
## 1599       13/07/2011    17
## 1600       13/07/2012    17
## 1601       13/09/2010    17
## 1602       13/10/2006    17
## 1603       13/12/2013    17
## 1604       14/01/2004    17
## 1605       14/03/2006    17
## 1606       14/03/2014    17
## 1607       14/06/2011    17
## 1608       15/01/2010    17
## 1609       15/04/2011    17
## 1610       15/05/2008    17
## 1611       15/06/2007    17
## 1612       15/07/2010    17
## 1613       15/08/2007    17
## 1614       15/09/2011    17
## 1615       15/12/2006    17
## 1616       16/03/1998    17
## 1617       16/04/2009    17
## 1618       16/08/1997    17
## 1619       16/08/2007    17
## 1620       17/01/2013    17
## 1621       17/06/2004    17
## 1622       17/07/2007    17
## 1623       17/08/2004    17
## 1624       17/08/2006    17
## 1625       17/08/2011    17
## 1626       17/10/2012    17
## 1627       18/01/2012    17
## 1628       18/02/2014    17
## 1629       18/03/2009    17
## 1630       18/03/2010    17
## 1631       18/11/2010    17
## 1632       18/12/1997    17
## 1633       18/12/2009    17
## 1634       19/01/2006    17
## 1635       19/03/1996    17
## 1636       19/05/2009    17
## 1637       19/06/2013    17
## 1638       19/07/2013    17
## 1639       19/09/1997    17
## 1640       19/09/2007    17
## 1641       19/10/2010    17
## 1642       19/10/2012    17
## 1643       19/11/2012    17
## 1644       20/02/2014    17
## 1645       20/04/2004    17
## 1646       20/04/2005    17
## 1647       20/10/2004    17
## 1648       20/10/2006    17
## 1649       20/10/2009    17
## 1650       20/10/2011    17
## 1651       20/11/1996    17
## 1652       20/11/2013    17
## 1653       21/01/2009    17
## 1654       21/02/1997    17
## 1655       21/03/2006    17
## 1656       21/09/2006    17
## 1657       21/12/2011    17
## 1658       22/01/2010    17
## 1659       22/02/2011    17
## 1660       22/03/2004    17
## 1661       22/06/1996    17
## 1662       22/11/2004    17
## 1663       22/11/2013    17
## 1664       23/01/1997    17
## 1665       24/02/2009    17
## 1666       24/04/2012    17
## 1667       24/05/2007    17
## 1668       24/06/2008    17
## 1669       24/06/2009    17
## 1670       24/06/2010    17
## 1671       24/08/2004    17
## 1672       24/08/2012    17
## 1673       24/09/2009    17
## 1674       24/11/2009    17
## 1675       25/02/2011    17
## 1676       25/03/2013    17
## 1677       25/05/2012    17
## 1678       25/07/2012    17
## 1679       25/09/2009    17
## 1680       25/10/2004    17
## 1681       25/10/2007    17
## 1682       25/11/2008    17
## 1683       26/06/2013    17
## 1684       26/08/2008    17
## 1685       26/11/1996    17
## 1686       27/01/2009    17
## 1687       27/02/2013    17
## 1688       27/03/2006    17
## 1689       27/04/2010    17
## 1690       27/04/2011    17
## 1691       27/08/2013    17
## 1692       27/11/2013    17
## 1693       28/01/2011    17
## 1694       28/04/1997    17
## 1695       28/04/2006    17
## 1696       28/04/2009    17
## 1697       28/05/1997    17
## 1698       28/06/1996    17
## 1699       28/07/2010    17
## 1700       28/10/2009    17
## 1701       29/03/2004    17
## 1702       29/03/2005    17
## 1703       29/04/2009    17
## 1704       29/07/2005    17
## 1705       29/09/2010    17
## 1706       29/10/1996    17
## 1707       29/10/2004    17
## 1708       30/04/1997    17
## 1709       30/06/2011    17
## 1710       30/07/2009    17
## 1711       30/08/2011    17
## 1712       30/10/2006    17
## 1713       30/10/2007    17
## 1714       31/03/2009    17
## 1715       31/05/2006    17
## 1716       31/10/2006    17
## 1717       01/02/2005    16
## 1718       01/07/2005    16
## 1719       01/08/2013    16
## 1720       01/10/2007    16
## 1721       01/11/2013    16
## 1722       02/02/2006    16
## 1723       02/03/2012    16
## 1724       02/04/2004    16
## 1725       02/06/2006    16
## 1726       02/09/2011    16
## 1727       02/11/2005    16
## 1728       02/12/2009    16
## 1729       03/01/1997    16
## 1730       03/01/2006    16
## 1731       03/02/2009    16
## 1732       03/03/2010    16
## 1733       03/04/2007    16
## 1734       03/04/2009    16
## 1735       03/04/2014    16
## 1736       03/05/2007    16
## 1737       03/06/2005    16
## 1738       03/11/2010    16
## 1739       03/12/2004    16
## 1740       04/01/2011    16
## 1741       04/05/2012    16
## 1742       04/08/2005    16
## 1743       04/11/1997    16
## 1744       05/03/1997    16
## 1745       05/03/2013    16
## 1746       05/06/2012    16
## 1747       05/12/2006    16
## 1748       05/12/2012    16
## 1749       06/01/2014    16
## 1750       06/07/2011    16
## 1751       06/09/1996    16
## 1752       06/09/2012    16
## 1753       06/10/2008    16
## 1754       07/02/1997    16
## 1755       07/05/2010    16
## 1756       07/08/2009    16
## 1757       07/09/2006    16
## 1758       07/10/2004    16
## 1759       07/11/2011    16
## 1760       08/01/1997    16
## 1761       08/01/1998    16
## 1762       08/02/2006    16
## 1763       08/04/2011    16
## 1764       08/06/2010    16
## 1765       08/07/2008    16
## 1766       08/09/2006    16
## 1767       08/10/2004    16
## 1768       09/01/2013    16
## 1769       09/01/2014    16
## 1770       09/03/1998    16
## 1771       09/04/1996    16
## 1772       09/05/2006    16
## 1773       09/08/2005    16
## 1774       09/09/2011    16
## 1775       10/01/2006    16
## 1776       10/01/2008    16
## 1777       10/02/1998    16
## 1778       10/03/1997    16
## 1779       10/06/2009    16
## 1780       10/08/2005    16
## 1781       10/10/2005    16
## 1782       10/10/2007    16
## 1783       10/11/2006    16
## 1784       10/12/2008    16
## 1785       11/03/2010    16
## 1786       11/04/1996    16
## 1787       11/06/2010    16
## 1788       11/07/2008    16
## 1789       11/12/1996    16
## 1790       12/01/2010    16
## 1791       12/01/2012    16
## 1792       12/03/1997    16
## 1793       12/03/2009    16
## 1794       12/05/2006    16
## 1795       12/05/2009    16
## 1796       12/06/2007    16
## 1797       12/08/2009    16
## 1798       12/11/1997    16
## 1799       12/11/2008    16
## 1800       12/11/2009    16
## 1801       13/03/2006    16
## 1802       13/03/2008    16
## 1803       13/04/2005    16
## 1804       13/05/2009    16
## 1805       13/05/2010    16
## 1806       13/06/2006    16
## 1807       13/07/2006    16
## 1808       13/07/2009    16
## 1809       13/08/2009    16
## 1810       13/09/2005    16
## 1811       13/11/2006    16
## 1812       13/11/2008    16
## 1813       14/01/1997    16
## 1814       14/03/2007    16
## 1815       14/04/2011    16
## 1816       14/08/2008    16
## 1817       14/11/2012    16
## 1818       14/11/2013    16
## 1819       15/02/2011    16
## 1820       15/03/2005    16
## 1821       15/03/2011    16
## 1822       15/04/2009    16
## 1823       15/05/2012    16
## 1824       15/06/1998    16
## 1825       15/09/2004    16
## 1826       15/09/2010    16
## 1827       15/10/2009    16
## 1828       15/12/2009    16
## 1829       16/06/2003    16
## 1830       16/06/2010    16
## 1831       16/07/2008    16
## 1832       16/07/2010    16
## 1833       16/09/2010    16
## 1834       16/12/1997    16
## 1835       16/12/2013    16
## 1836       17/01/1997    16
## 1837       17/02/2011    16
## 1838       17/02/2012    16
## 1839       17/02/2014    16
## 1840       17/06/2005    16
## 1841       17/06/2010    16
## 1842       17/08/2007    16
## 1843       17/10/1996    16
## 1844       17/10/2007    16
## 1845       17/11/2005    16
## 1846       17/11/2010    16
## 1847       17/12/2007    16
## 1848       17/12/2009    16
## 1849       17/12/2012    16
## 1850       18/02/2011    16
## 1851       18/04/1997    16
## 1852       18/07/2006    16
## 1853       18/07/2008    16
## 1854       18/08/2006    16
## 1855       18/09/2007    16
## 1856       18/12/1996    16
## 1857       18/12/2008    16
## 1858       18/12/2013    16
## 1859       19/02/2007    16
## 1860       19/10/2011    16
## 1861       19/11/1997    16
## 1862       19/11/2010    16
## 1863       19/12/2007    16
## 1864       19/12/2012    16
## 1865       20/03/2009    16
## 1866       20/07/2006    16
## 1867       20/07/2010    16
## 1868       20/07/2012    16
## 1869       20/08/2004    16
## 1870       20/09/2004    16
## 1871       20/11/2008    16
## 1872       20/11/2012    16
## 1873       21/04/2006    16
## 1874       21/08/2007    16
## 1875       21/09/2004    16
## 1876       22/02/2010    16
## 1877       22/03/2007    16
## 1878       22/10/2008    16
## 1879       23/04/2013    16
## 1880       23/06/2009    16
## 1881       23/09/2013    16
## 1882       24/03/2005    16
## 1883       24/03/2008    16
## 1884       24/08/2006    16
## 1885       24/09/2013    16
## 1886       25/04/1997    16
## 1887       25/07/1997    16
## 1888       25/07/2006    16
## 1889       25/08/2011    16
## 1890       26/02/2013    16
## 1891       26/03/2004    16
## 1892       26/03/2013    16
## 1893       26/04/2007    16
## 1894       26/05/1998    16
## 1895       26/08/2004    16
## 1896       26/08/2010    16
## 1897       26/10/2010    16
## 1898       26/10/2012    16
## 1899       26/11/2007    16
## 1900       27/05/2004    16
## 1901       27/06/2008    16
## 1902       28/01/2009    16
## 1903       28/03/2011    16
## 1904       28/04/2010    16
## 1905       28/04/2014    16
## 1906       28/05/2009    16
## 1907       28/06/2011    16
## 1908       28/10/1996    16
## 1909       28/11/2006    16
## 1910       29/03/2007    16
## 1911       29/03/2011    16
## 1912       29/04/2004    16
## 1913       29/05/1997    16
## 1914       29/05/2006    16
## 1915       29/05/2007    16
## 1916       29/06/2005    16
## 1917       29/06/2006    16
## 1918       29/07/2004    16
## 1919       29/07/2008    16
## 1920       29/08/2008    16
## 1921       30/03/2011    16
## 1922       30/06/2004    16
## 1923       30/06/2010    16
## 1924       30/08/2013    16
## 1925       31/01/2011    16
## 1926       31/01/2012    16
## 1927       31/03/2006    16
## 1928       31/05/2007    16
## 1929       01/03/2006    15
## 1930       01/03/2013    15
## 1931       01/04/2005    15
## 1932       01/06/2005    15
## 1933       01/08/2008    15
## 1934       01/08/2012    15
## 1935       01/10/2013    15
## 1936       01/11/2007    15
## 1937       01/12/2006    15
## 1938       02/01/2009    15
## 1939       02/03/2006    15
## 1940       02/03/2010    15
## 1941       02/05/2006    15
## 1942       02/06/2004    15
## 1943       02/07/2004    15
## 1944       02/08/2007    15
## 1945       02/09/2003    15
## 1946       02/10/1997    15
## 1947       02/10/2000    15
## 1948       02/10/2008    15
## 1949       03/02/2004    15
## 1950       03/03/2011    15
## 1951       03/04/2008    15
## 1952       03/06/2011    15
## 1953       03/10/1997    15
## 1954       03/12/2009    15
## 1955       04/03/2013    15
## 1956       04/04/2007    15
## 1957       04/05/1996    15
## 1958       04/08/2011    15
## 1959       04/09/1996    15
## 1960       04/10/2006    15
## 1961       04/10/2007    15
## 1962       04/12/2006    15
## 1963       04/12/2007    15
## 1964       04/12/2012    15
## 1965       05/05/2004    15
## 1966       05/05/2009    15
## 1967       05/06/2007    15
## 1968       05/08/2010    15
## 1969       05/09/2008    15
## 1970       05/12/2013    15
## 1971       06/01/1997    15
## 1972       06/01/2010    15
## 1973       06/03/2009    15
## 1974       06/04/2011    15
## 1975       06/08/1997    15
## 1976       06/08/2009    15
## 1977       07/04/2006    15
## 1978       08/01/2008    15
## 1979       08/02/1999    15
## 1980       08/02/2008    15
## 1981       08/02/2011    15
## 1982       08/04/2014    15
## 1983       08/06/2005    15
## 1984       08/08/1997    15
## 1985       08/11/2007    15
## 1986       08/11/2013    15
## 1987       08/12/2011    15
## 1988       09/01/2007    15
## 1989       09/02/2005    15
## 1990       09/04/2013    15
## 1991       09/07/2008    15
## 1992       09/08/2007    15
## 1993       09/09/2004    15
## 1994       09/09/2005    15
## 1995       09/09/2010    15
## 1996       09/10/2006    15
## 1997       09/10/2009    15
## 1998       09/11/2005    15
## 1999       09/12/2004    15
## 2000       10/01/2005    15
## 2001       10/05/2013    15
## 2002       10/08/2007    15
## 2003       10/10/1997    15
## 2004       10/10/2006    15
## 2005       10/12/2010    15
## 2006       11/01/2012    15
## 2007       11/03/2002    15
## 2008       11/04/1997    15
## 2009       11/05/2005    15
## 2010       11/05/2007    15
## 2011       11/06/2004    15
## 2012       11/06/2007    15
## 2013       11/07/2005    15
## 2014       11/07/2006    15
## 2015       11/10/2012    15
## 2016       11/11/1996    15
## 2017       12/02/1997    15
## 2018       12/02/2009    15
## 2019       12/03/2010    15
## 2020       12/06/2013    15
## 2021       12/07/2013    15
## 2022       12/08/2010    15
## 2023       12/10/2007    15
## 2024       12/10/2011    15
## 2025       12/11/2012    15
## 2026       12/12/1996    15
## 2027       13/01/2009    15
## 2028       13/02/2013    15
## 2029       13/05/2008    15
## 2030       13/06/2013    15
## 2031       13/07/2004    15
## 2032       13/08/2007    15
## 2033       13/09/2006    15
## 2034       13/09/2013    15
## 2035       13/10/2004    15
## 2036       14/02/1997    15
## 2037       14/04/1998    15
## 2038       14/09/2011    15
## 2039       14/11/1996    15
## 2040       15/06/2009    15
## 2041       15/06/2011    15
## 2042       16/01/2009    15
## 2043       16/03/2005    15
## 2044       16/05/2008    15
## 2045       16/05/2012    15
## 2046       16/10/1997    15
## 2047       17/03/2006    15
## 2048       17/03/2008    15
## 2049       17/04/1997    15
## 2050       17/04/2007    15
## 2051       17/05/2005    15
## 2052       17/06/2008    15
## 2053       17/09/2008    15
## 2054       17/10/2013    15
## 2055       17/11/1997    15
## 2056       17/12/2008    15
## 2057       18/01/2006    15
## 2058       18/07/1997    15
## 2059       18/10/2005    15
## 2060       18/10/2013    15
## 2061       19/02/2004    15
## 2062       19/03/2010    15
## 2063       19/04/2007    15
## 2064       19/08/1997    15
## 2065       19/10/2007    15
## 2066       19/12/1996    15
## 2067       19/12/2008    15
## 2068       20/02/2009    15
## 2069       20/04/1998    15
## 2070       20/05/2011    15
## 2071       20/07/2004    15
## 2072       20/09/2007    15
## 2073       20/11/2007    15
## 2074       20/12/2012    15
## 2075       21/01/1998    15
## 2076       21/01/2011    15
## 2077       21/02/2006    15
## 2078       21/03/2013    15
## 2079       21/04/2005    15
## 2080       21/04/2009    15
## 2081       21/10/2005    15
## 2082       21/12/2012    15
## 2083       22/02/2005    15
## 2084       22/04/2004    15
## 2085       22/06/2006    15
## 2086       22/07/2005    15
## 2087       22/07/2008    15
## 2088       22/07/2010    15
## 2089       22/08/1997    15
## 2090       22/08/2006    15
## 2091       22/11/2011    15
## 2092       23/01/2009    15
## 2093       23/01/2014    15
## 2094       23/02/2005    15
## 2095       23/02/2006    15
## 2096       23/03/2004    15
## 2097       23/03/2011    15
## 2098       23/08/2013    15
## 2099       23/11/2011    15
## 2100       24/02/2014    15
## 2101       24/03/2011    15
## 2102       24/08/2007    15
## 2103       24/10/2008    15
## 2104       24/11/1997    15
## 2105       25/01/2006    15
## 2106       25/01/2007    15
## 2107       25/01/2011    15
## 2108       25/03/1996    15
## 2109       25/03/1997    15
## 2110       25/03/2011    15
## 2111       25/04/2011    15
## 2112       25/04/2013    15
## 2113       25/05/1996    15
## 2114       25/05/2010    15
## 2115       25/10/2011    15
## 2116       25/10/2013    15
## 2117       26/02/2008    15
## 2118       26/03/2008    15
## 2119       26/03/2009    15
## 2120       26/07/2005    15
## 2121       27/02/2008    15
## 2122       27/05/2009    15
## 2123       27/06/2013    15
## 2124       27/07/2012    15
## 2125       27/10/2006    15
## 2126       27/10/2011    15
## 2127       27/11/1996    15
## 2128       27/11/2007    15
## 2129       28/03/1996    15
## 2130       28/08/2013    15
## 2131       28/09/2006    15
## 2132       28/09/2011    15
## 2133       28/10/2013    15
## 2134       28/12/2009    15
## 2135       29/03/2012    15
## 2136       29/04/2010    15
## 2137       29/06/1998    15
## 2138       29/06/2007    15
## 2139       29/10/2008    15
## 2140       29/10/2010    15
## 2141       29/12/2011    15
## 2142       30/04/2010    15
## 2143       30/04/2013    15
## 2144       30/05/2008    15
## 2145       30/08/2007    15
## 2146       30/09/2005    15
## 2147       30/10/2012    15
## 2148       30/12/1997    15
## 2149       31/03/2011    15
## 2150       31/05/2011    15
## 2151       31/05/2013    15
## 2152       31/12/1996    15
## 2153       01/05/2007    14
## 2154       01/09/2006    14
## 2155       02/01/2013    14
## 2156       02/04/2008    14
## 2157       02/04/2009    14
## 2158       02/06/2003    14
## 2159       02/12/2005    14
## 2160       03/01/2012    14
## 2161       03/02/2006    14
## 2162       03/03/1998    14
## 2163       03/05/2012    14
## 2164       03/06/2008    14
## 2165       03/08/2004    14
## 2166       03/09/2009    14
## 2167       03/11/2004    14
## 2168       03/12/1996    14
## 2169       04/01/2012    14
## 2170       04/02/2009    14
## 2171       04/03/2004    14
## 2172       04/05/2011    14
## 2173       04/06/2004    14
## 2174       04/08/2006    14
## 2175       04/09/1997    14
## 2176       04/10/2012    14
## 2177       05/01/2004    14
## 2178       05/01/2005    14
## 2179       05/01/2009    14
## 2180       05/02/2014    14
## 2181       05/04/2011    14
## 2182       05/04/2013    14
## 2183       05/05/2010    14
## 2184       05/05/2011    14
## 2185       05/07/2012    14
## 2186       05/12/2008    14
## 2187       06/01/1998    14
## 2188       06/02/1997    14
## 2189       06/03/2013    14
## 2190       06/04/2005    14
## 2191       06/05/2011    14
## 2192       06/06/2006    14
## 2193       06/07/2010    14
## 2194       06/08/2004    14
## 2195       06/10/2006    14
## 2196       06/11/2007    14
## 2197       06/12/2005    14
## 2198       07/01/2009    14
## 2199       07/02/1996    14
## 2200       07/02/2008    14
## 2201       07/02/2011    14
## 2202       07/03/2006    14
## 2203       07/04/2009    14
## 2204       07/07/2004    14
## 2205       07/07/2011    14
## 2206       07/12/2007    14
## 2207       08/01/2014    14
## 2208       08/02/2007    14
## 2209       08/03/2011    14
## 2210       08/07/2010    14
## 2211       08/10/2008    14
## 2212       08/10/2010    14
## 2213       09/03/2009    14
## 2214       09/03/2012    14
## 2215       09/05/1997    14
## 2216       09/11/2007    14
## 2217       09/11/2010    14
## 2218       09/11/2012    14
## 2219       09/12/1996    14
## 2220       10/05/2011    14
## 2221       10/06/2011    14
## 2222       10/08/2006    14
## 2223       10/09/2009    14
## 2224       10/09/2010    14
## 2225       10/11/2010    14
## 2226       10/12/1997    14
## 2227       10/12/2007    14
## 2228       11/02/2009    14
## 2229       11/03/1998    14
## 2230       11/12/2009    14
## 2231       12/03/1998    14
## 2232       12/04/2005    14
## 2233       12/04/2012    14
## 2234       12/05/2004    14
## 2235       12/09/2013    14
## 2236       13/01/2005    14
## 2237       13/01/2012    14
## 2238       13/02/2007    14
## 2239       13/04/2006    14
## 2240       13/05/2011    14
## 2241       14/02/2008    14
## 2242       14/02/2013    14
## 2243       14/02/2014    14
## 2244       14/03/2013    14
## 2245       14/05/2008    14
## 2246       14/05/2010    14
## 2247       14/08/2013    14
## 2248       14/09/2007    14
## 2249       14/11/2005    14
## 2250       14/12/2010    14
## 2251       15/01/2014    14
## 2252       15/05/1997    14
## 2253       15/09/2006    14
## 2254       15/10/2004    14
## 2255       16/01/1998    14
## 2256       16/01/2014    14
## 2257       16/06/2005    14
## 2258       16/09/2009    14
## 2259       16/11/2010    14
## 2260       16/12/2003    14
## 2261       17/01/2014    14
## 2262       17/02/2004    14
## 2263       17/05/1997    14
## 2264       17/08/1996    14
## 2265       17/09/2004    14
## 2266       17/09/2013    14
## 2267       17/11/2004    14
## 2268       18/05/2007    14
## 2269       18/05/2010    14
## 2270       18/08/2011    14
## 2271       18/09/2008    14
## 2272       18/12/2003    14
## 2273       19/03/2004    14
## 2274       19/05/2003    14
## 2275       19/05/2006    14
## 2276       19/05/2011    14
## 2277       19/08/2005    14
## 2278       19/10/2004    14
## 2279       19/11/2008    14
## 2280       20/01/2005    14
## 2281       20/02/2007    14
## 2282       20/03/2008    14
## 2283       20/03/2014    14
## 2284       20/04/2011    14
## 2285       20/05/2005    14
## 2286       20/05/2008    14
## 2287       20/09/2011    14
## 2288       20/12/2004    14
## 2289       20/12/2007    14
## 2290       21/02/2007    14
## 2291       21/03/2014    14
## 2292       21/05/2004    14
## 2293       21/06/2013    14
## 2294       22/01/1998    14
## 2295       22/06/2004    14
## 2296       22/09/2006    14
## 2297       22/12/2011    14
## 2298       23/01/1998    14
## 2299       23/02/2004    14
## 2300       23/03/2007    14
## 2301       23/04/2008    14
## 2302       23/06/2008    14
## 2303       23/06/2010    14
## 2304       23/07/2008    14
## 2305       23/08/2005    14
## 2306       23/08/2012    14
## 2307       23/09/2008    14
## 2308       23/09/2011    14
## 2309       23/10/2009    14
## 2310       24/01/2008    14
## 2311       24/01/2011    14
## 2312       24/01/2012    14
## 2313       24/01/2013    14
## 2314       24/04/2009    14
## 2315       24/05/2013    14
## 2316       24/08/1996    14
## 2317       24/09/1997    14
## 2318       24/10/1996    14
## 2319       25/01/2005    14
## 2320       25/02/2010    14
## 2321       25/02/2014    14
## 2322       25/08/2010    14
## 2323       25/09/2002    14
## 2324       25/09/2012    14
## 2325       26/01/2006    14
## 2326       26/02/1996    14
## 2327       26/03/1998    14
## 2328       26/03/2010    14
## 2329       26/05/1997    14
## 2330       26/05/2005    14
## 2331       26/05/2012    14
## 2332       26/06/2007    14
## 2333       26/07/2006    14
## 2334       26/10/2004    14
## 2335       27/04/1996    14
## 2336       27/05/2010    14
## 2337       27/06/2006    14
## 2338       27/06/2007    14
## 2339       27/07/2007    14
## 2340       27/07/2009    14
## 2341       27/10/2008    14
## 2342       28/01/2005    14
## 2343       28/03/2013    14
## 2344       28/03/2014    14
## 2345       28/04/1996    14
## 2346       28/04/2004    14
## 2347       28/08/2007    14
## 2348       28/09/2010    14
## 2349       28/10/2005    14
## 2350       29/04/2005    14
## 2351       29/05/2008    14
## 2352       29/09/2005    14
## 2353       29/12/2010    14
## 2354       30/03/1998    14
## 2355       30/03/2007    14
## 2356       30/03/2010    14
## 2357       30/07/2004    14
## 2358       30/09/2011    14
## 2359       30/11/2005    14
## 2360       30/11/2012    14
## 2361       30/12/2011    14
## 2362       31/01/2007    14
## 2363       31/03/2014    14
## 2364       31/05/2005    14
## 2365       31/07/2009    14
## 2366       31/08/2006    14
## 2367       31/08/2011    14
## 2368       31/10/2007    14
## 2369       01/01/1997    13
## 2370       01/02/1997    13
## 2371       01/02/2008    13
## 2372       01/05/2000    13
## 2373       01/06/1996    13
## 2374       01/09/1996    13
## 2375       01/09/2004    13
## 2376       02/02/2007    13
## 2377       02/04/1998    13
## 2378       02/07/2008    13
## 2379       02/09/1996    13
## 2380       03/02/2003    13
## 2381       03/02/2011    13
## 2382       03/02/2012    13
## 2383       03/03/2014    13
## 2384       03/07/2013    13
## 2385       04/03/1998    13
## 2386       04/04/2013    13
## 2387       04/05/2007    13
## 2388       04/06/2008    13
## 2389       04/12/2008    13
## 2390       05/01/2010    13
## 2391       05/01/2011    13
## 2392       05/04/1996    13
## 2393       05/04/2010    13
## 2394       05/05/1996    13
## 2395       05/06/2009    13
## 2396       05/07/1996    13
## 2397       06/02/1996    13
## 2398       06/03/1997    13
## 2399       06/03/2014    13
## 2400       06/05/2004    13
## 2401       06/05/2005    13
## 2402       06/05/2006    13
## 2403       06/05/2008    13
## 2404       06/06/2007    13
## 2405       06/06/2008    13
## 2406       06/10/2010    13
## 2407       07/02/2007    13
## 2408       07/03/1997    13
## 2409       07/04/1998    13
## 2410       07/05/2008    13
## 2411       07/05/2009    13
## 2412       07/08/2012    13
## 2413       07/10/2005    13
## 2414       07/10/2009    13
## 2415       07/12/2010    13
## 2416       08/10/2009    13
## 2417       08/12/2010    13
## 2418       09/02/2004    13
## 2419       09/03/2010    13
## 2420       09/04/2009    13
## 2421       09/10/2008    13
## 2422       09/12/2009    13
## 2423       10/03/2005    13
## 2424       10/04/2008    13
## 2425       10/06/2005    13
## 2426       10/07/2008    13
## 2427       10/08/1996    13
## 2428       10/11/2005    13
## 2429       11/01/2005    13
## 2430       11/01/2011    13
## 2431       11/01/2013    13
## 2432       11/02/2005    13
## 2433       11/02/2011    13
## 2434       11/10/2013    13
## 2435       11/12/2006    13
## 2436       11/12/2013    13
## 2437       12/01/1998    13
## 2438       12/07/2007    13
## 2439       12/09/2008    13
## 2440       12/11/2004    13
## 2441       12/12/1997    13
## 2442       13/02/2004    13
## 2443       13/04/2009    13
## 2444       13/05/1998    13
## 2445       13/05/2005    13
## 2446       13/07/2013    13
## 2447       13/10/2005    13
## 2448       13/10/2009    13
## 2449       13/12/1997    13
## 2450       13/12/2006    13
## 2451       13/12/2007    13
## 2452       13/12/2012    13
## 2453       14/01/2010    13
## 2454       14/04/2003    13
## 2455       14/07/2006    13
## 2456       14/08/2007    13
## 2457       14/11/2006    13
## 2458       14/11/2008    13
## 2459       14/12/2011    13
## 2460       15/02/1996    13
## 2461       15/02/2008    13
## 2462       15/03/2004    13
## 2463       15/05/2003    13
## 2464       15/05/2009    13
## 2465       15/09/1996    13
## 2466       15/11/2007    13
## 2467       15/12/2004    13
## 2468       16/02/2005    13
## 2469       17/02/2009    13
## 2470       17/05/2011    13
## 2471       18/01/2007    13
## 2472       18/06/2010    13
## 2473       18/07/2013    13
## 2474       18/10/2011    13
## 2475       18/11/2009    13
## 2476       19/03/2008    13
## 2477       19/03/2012    13
## 2478       19/04/1998    13
## 2479       19/04/2005    13
## 2480       19/05/2014    13
## 2481       19/07/2007    13
## 2482       19/08/2002    13
## 2483       19/08/2009    13
## 2484       19/09/2006    13
## 2485       19/11/1996    13
## 2486       19/11/2009    13
## 2487       19/12/2005    13
## 2488       19/12/2013    13
## 2489       20/05/2004    13
## 2490       20/06/2007    13
## 2491       20/06/2008    13
## 2492       20/08/2008    13
## 2493       21/03/1996    13
## 2494       21/04/2003    13
## 2495       21/06/2005    13
## 2496       21/07/1996    13
## 2497       21/07/2009    13
## 2498       21/10/2004    13
## 2499       21/10/2011    13
## 2500       21/11/1997    13
## 2501       22/02/2006    13
## 2502       22/02/2007    13
## 2503       22/06/2010    13
## 2504       22/10/2009    13
## 2505       22/11/1996    13
## 2506       22/12/2004    13
## 2507       22/12/2010    13
## 2508       23/01/2007    13
## 2509       23/01/2008    13
## 2510       23/02/1998    13
## 2511       23/07/2009    13
## 2512       23/11/2009    13
## 2513       24/02/1998    13
## 2514       24/09/2008    13
## 2515       24/10/2006    13
## 2516       25/03/1998    13
## 2517       25/03/2009    13
## 2518       25/07/2008    13
## 2519       25/08/2004    13
## 2520       25/09/2008    13
## 2521       25/11/1997    13
## 2522       26/01/2010    13
## 2523       26/02/2010    13
## 2524       26/06/2006    13
## 2525       26/07/2011    13
## 2526       26/11/2008    13
## 2527       27/04/1998    13
## 2528       27/04/2004    13
## 2529       27/05/2011    13
## 2530       27/07/1996    13
## 2531       27/07/1997    13
## 2532       27/09/2004    13
## 2533       27/09/2005    13
## 2534       27/09/2007    13
## 2535       27/12/1996    13
## 2536       27/12/2005    13
## 2537       28/02/2012    13
## 2538       28/03/2008    13
## 2539       28/04/2005    13
## 2540       28/05/2007    13
## 2541       28/05/2010    13
## 2542       28/06/2006    13
## 2543       28/10/2003    13
## 2544       28/12/2004    13
## 2545       28/12/2011    13
## 2546       29/01/2014    13
## 2547       29/02/2012    13
## 2548       29/04/2011    13
## 2549       29/06/2010    13
## 2550       29/09/2006    13
## 2551       29/09/2008    13
## 2552       29/11/2011    13
## 2553       29/12/1999    13
## 2554       30/01/1998    13
## 2555       30/03/2004    13
## 2556       30/03/2005    13
## 2557       30/05/1997    13
## 2558       30/07/1997    13
## 2559       30/08/2005    13
## 2560       30/11/2004    13
## 2561       31/01/2006    13
## 2562       31/08/2005    13
## 2563       31/10/2012    13
## 2564       01/06/1997    12
## 2565       01/06/2013    12
## 2566       01/08/2006    12
## 2567       01/10/2003    12
## 2568       01/12/2003    12
## 2569       02/01/1998    12
## 2570       02/02/1998    12
## 2571       02/06/2009    12
## 2572       02/11/2007    12
## 2573       02/11/2010    12
## 2574       03/01/2008    12
## 2575       03/03/2004    12
## 2576       03/04/1998    12
## 2577       03/06/2004    12
## 2578       03/09/2008    12
## 2579       04/01/2010    12
## 2580       04/05/2006    12
## 2581       04/05/2010    12
## 2582       04/11/2004    12
## 2583       05/02/2008    12
## 2584       05/04/2007    12
## 2585       05/04/2012    12
## 2586       05/05/2003    12
## 2587       05/05/2005    12
## 2588       05/06/2008    12
## 2589       05/08/1996    12
## 2590       05/11/2011    12
## 2591       06/01/2009    12
## 2592       06/02/2007    12
## 2593       06/03/1998    12
## 2594       06/07/2012    12
## 2595       06/10/2005    12
## 2596       07/06/2005    12
## 2597       07/06/2011    12
## 2598       07/08/2007    12
## 2599       07/11/2006    12
## 2600       08/03/2004    12
## 2601       08/04/1996    12
## 2602       08/07/2002    12
## 2603       08/07/2009    12
## 2604       08/09/1996    12
## 2605       08/11/2006    12
## 2606       08/11/2011    12
## 2607       09/02/1998    12
## 2608       09/03/2004    12
## 2609       09/04/2008    12
## 2610       09/04/2010    12
## 2611       09/05/2008    12
## 2612       09/09/2008    12
## 2613       09/10/2007    12
## 2614       09/11/2004    12
## 2615       09/11/2006    12
## 2616       09/12/2003    12
## 2617       10/01/2013    12
## 2618       10/04/2007    12
## 2619       10/05/2007    12
## 2620       10/11/2004    12
## 2621       11/01/1996    12
## 2622       11/03/2008    12
## 2623       11/08/2004    12
## 2624       11/10/2007    12
## 2625       12/02/2014    12
## 2626       12/06/2009    12
## 2627       12/12/2013    12
## 2628       13/04/2004    12
## 2629       13/04/2012    12
## 2630       13/05/2006    12
## 2631       14/01/2014    12
## 2632       14/05/1998    12
## 2633       14/09/1996    12
## 2634       15/04/1998    12
## 2635       15/04/2004    12
## 2636       15/11/1996    12
## 2637       16/01/2007    12
## 2638       16/02/2004    12
## 2639       16/02/2006    12
## 2640       16/03/2004    12
## 2641       16/06/2004    12
## 2642       16/11/2006    12
## 2643       16/11/2007    12
## 2644       17/02/2013    12
## 2645       17/07/2008    12
## 2646       17/09/2009    12
## 2647       17/09/2010    12
## 2648       17/10/2006    12
## 2649       17/11/1996    12
## 2650       17/12/2004    12
## 2651       18/01/2013    12
## 2652       18/02/2009    12
## 2653       18/03/1998    12
## 2654       18/06/2004    12
## 2655       18/10/1996    12
## 2656       18/12/2007    12
## 2657       19/04/2012    12
## 2658       19/04/2013    12
## 2659       19/07/2006    12
## 2660       19/07/2011    12
## 2661       19/10/1998    12
## 2662       20/02/1998    12
## 2663       20/03/1998    12
## 2664       20/07/1996    12
## 2665       20/07/2005    12
## 2666       20/10/2003    12
## 2667       20/11/2003    12
## 2668       20/12/1996    12
## 2669       20/12/2005    12
## 2670       20/12/2013    12
## 2671       21/01/2014    12
## 2672       21/06/2007    12
## 2673       21/11/2006    12
## 2674       21/11/2008    12
## 2675       21/11/2012    12
## 2676       21/12/2007    12
## 2677       22/01/2009    12
## 2678       22/02/1997    12
## 2679       22/02/2012    12
## 2680       22/03/2011    12
## 2681       22/10/2010    12
## 2682       23/03/1998    12
## 2683       23/05/2008    12
## 2684       23/07/2013    12
## 2685       23/10/1997    12
## 2686       23/12/1996    12
## 2687       24/01/2006    12
## 2688       24/02/2004    12
## 2689       24/05/2011    12
## 2690       24/06/2006    12
## 2691       24/06/2011    12
## 2692       24/11/2008    12
## 2693       24/11/2010    12
## 2694       25/02/1998    12
## 2695       25/03/2005    12
## 2696       25/03/2010    12
## 2697       25/03/2014    12
## 2698       25/04/2007    12
## 2699       25/04/2008    12
## 2700       25/08/1996    12
## 2701       26/08/2009    12
## 2702       27/02/2014    12
## 2703       27/03/1997    12
## 2704       27/05/2005    12
## 2705       27/06/2005    12
## 2706       27/08/2010    12
## 2707       27/09/2013    12
## 2708       28/02/2006    12
## 2709       28/05/2008    12
## 2710       28/06/2005    12
## 2711       28/08/2010    12
## 2712       28/09/2007    12
## 2713       28/12/2012    12
## 2714       29/01/2009    12
## 2715       29/03/1996    12
## 2716       29/03/2006    12
## 2717       29/07/2011    12
## 2718       29/08/2007    12
## 2719       30/01/2004    12
## 2720       30/07/2001    12
## 2721       30/08/1997    12
## 2722       30/09/2004    12
## 2723       30/11/2006    12
## 2724       30/12/2010    12
## 2725       31/07/2006    12
## 2726       31/08/2010    12
## 2727       01/02/2013    11
## 2728       01/05/2008    11
## 2729       02/01/2002    11
## 2730       02/02/2013    11
## 2731       02/03/1998    11
## 2732       02/07/2010    11
## 2733       02/10/2013    11
## 2734       02/12/2010    11
## 2735       03/01/2007    11
## 2736       03/02/1998    11
## 2737       03/03/2006    11
## 2738       03/03/2012    11
## 2739       03/05/1997    11
## 2740       03/08/2010    11
## 2741       03/09/2002    11
## 2742       03/09/2004    11
## 2743       03/10/2002    11
## 2744       03/12/2008    11
## 2745       04/01/2005    11
## 2746       04/01/2008    11
## 2747       04/02/2005    11
## 2748       04/02/2011    11
## 2749       04/03/1996    11
## 2750       04/03/2002    11
## 2751       04/04/2006    11
## 2752       04/04/2008    11
## 2753       04/05/1997    11
## 2754       04/08/1996    11
## 2755       04/09/2004    11
## 2756       04/12/2000    11
## 2757       04/12/2013    11
## 2758       05/01/2007    11
## 2759       05/04/2006    11
## 2760       05/07/2006    11
## 2761       05/08/2004    11
## 2762       05/10/1996    11
## 2763       05/10/1997    11
## 2764       05/10/2007    11
## 2765       06/01/2005    11
## 2766       06/03/2008    11
## 2767       06/04/2004    11
## 2768       06/05/2002    11
## 2769       06/05/2003    11
## 2770       06/07/1998    11
## 2771       07/01/2011    11
## 2772       07/03/2007    11
## 2773       07/04/2004    11
## 2774       07/04/2005    11
## 2775       07/06/1997    11
## 2776       07/08/2008    11
## 2777       07/09/2005    11
## 2778       07/12/1998    11
## 2779       08/01/1996    11
## 2780       08/02/2005    11
## 2781       08/03/1997    11
## 2782       08/04/2005    11
## 2783       08/06/1998    11
## 2784       09/01/2004    11
## 2785       09/01/2008    11
## 2786       09/01/2009    11
## 2787       09/05/2003    11
## 2788       09/06/1996    11
## 2789       09/07/2011    11
## 2790       09/09/2002    11
## 2791       09/09/2003    11
## 2792       09/09/2009    11
## 2793       09/12/2010    11
## 2794       10/01/1997    11
## 2795       10/02/2004    11
## 2796       10/02/2014    11
## 2797       10/05/1997    11
## 2798       10/06/2004    11
## 2799       10/08/2013    11
## 2800       10/12/2003    11
## 2801       11/01/1997    11
## 2802       11/04/2003    11
## 2803       11/04/2008    11
## 2804       11/05/1998    11
## 2805       11/07/2007    11
## 2806       11/08/2006    11
## 2807       11/11/2013    11
## 2808       11/12/1997    11
## 2809       12/01/2007    11
## 2810       12/02/2008    11
## 2811       12/03/1996    11
## 2812       12/05/2003    11
## 2813       12/05/2014    11
## 2814       12/11/2010    11
## 2815       13/02/2008    11
## 2816       13/02/2014    11
## 2817       13/03/1996    11
## 2818       13/04/2011    11
## 2819       13/05/2004    11
## 2820       13/11/2009    11
## 2821       13/12/2005    11
## 2822       14/01/2009    11
## 2823       14/04/2005    11
## 2824       14/07/2009    11
## 2825       14/09/1998    11
## 2826       14/10/2005    11
## 2827       14/12/2004    11
## 2828       14/12/2006    11
## 2829       14/12/2007    11
## 2830       15/05/2007    11
## 2831       15/06/2004    11
## 2832       15/11/2013    11
## 2833       16/01/2006    11
## 2834       16/01/2008    11
## 2835       16/01/2012    11
## 2836       16/03/2010    11
## 2837       16/04/1998    11
## 2838       16/04/2002    11
## 2839       16/04/2010    11
## 2840       16/04/2013    11
## 2841       16/06/2006    11
## 2842       16/07/2009    11
## 2843       16/08/1999    11
## 2844       16/11/2004    11
## 2845       17/01/2007    11
## 2846       17/01/2011    11
## 2847       17/02/2006    11
## 2848       17/04/2008    11
## 2849       17/07/2012    11
## 2850       17/11/2003    11
## 2851       18/01/2005    11
## 2852       18/02/1998    11
## 2853       18/02/2004    11
## 2854       18/02/2008    11
## 2855       18/03/2004    11
## 2856       18/08/2003    11
## 2857       18/10/2007    11
## 2858       18/11/2002    11
## 2859       18/11/2003    11
## 2860       18/11/2004    11
## 2861       19/01/1998    11
## 2862       19/01/2012    11
## 2863       19/04/1997    11
## 2864       19/05/1996    11
## 2865       19/06/2007    11
## 2866       19/07/2005    11
## 2867       19/08/2004    11
## 2868       19/09/2008    11
## 2869       20/01/1997    11
## 2870       20/01/2004    11
## 2871       20/03/1996    11
## 2872       20/03/2005    11
## 2873       20/04/2007    11
## 2874       20/05/1998    11
## 2875       20/08/2003    11
## 2876       21/12/1996    11
## 2877       21/12/2006    11
## 2878       22/01/2004    11
## 2879       22/04/2005    11
## 2880       22/05/1998    11
## 2881       22/05/2007    11
## 2882       22/05/2009    11
## 2883       22/06/2012    11
## 2884       22/07/2002    11
## 2885       22/07/2009    11
## 2886       22/09/2003    11
## 2887       22/11/2005    11
## 2888       22/11/2006    11
## 2889       23/02/2007    11
## 2890       23/04/2004    11
## 2891       23/06/2003    11
## 2892       23/06/2011    11
## 2893       23/09/2005    11
## 2894       23/11/2004    11
## 2895       23/12/2009    11
## 2896       23/12/2010    11
## 2897       23/12/2013    11
## 2898       24/01/2014    11
## 2899       24/02/2005    11
## 2900       24/03/2004    11
## 2901       24/03/2010    11
## 2902       24/04/1997    11
## 2903       24/07/2004    11
## 2904       24/07/2009    11
## 2905       24/11/2004    11
## 2906       25/01/2008    11
## 2907       25/02/2004    11
## 2908       25/05/2004    11
## 2909       25/10/2006    11
## 2910       26/01/1997    11
## 2911       26/01/2004    11
## 2912       26/01/2007    11
## 2913       26/02/2009    11
## 2914       26/10/2005    11
## 2915       26/10/2007    11
## 2916       26/11/2013    11
## 2917       27/01/2006    11
## 2918       27/02/2007    11
## 2919       27/05/1996    11
## 2920       27/05/2003    11
## 2921       27/05/2013    11
## 2922       27/12/2006    11
## 2923       27/12/2007    11
## 2924       28/01/1998    11
## 2925       28/02/1997    11
## 2926       28/05/1998    11
## 2927       28/05/2004    11
## 2928       28/08/2000    11
## 2929       28/10/2010    11
## 2930       29/01/1996    11
## 2931       29/05/2009    11
## 2932       29/11/2007    11
## 2933       29/11/2012    11
## 2934       30/01/2003    11
## 2935       30/07/2010    11
## 2936       30/11/1998    11
## 2937       30/12/1996    11
## 2938       31/07/2004    11
## 2939       31/08/1998    11
## 2940       31/08/2007    11
## 2941       31/08/2013    11
## 2942       01/05/1998    10
## 2943       01/08/2009    10
## 2944       01/09/1997    10
## 2945       01/09/1998    10
## 2946       01/11/1997    10
## 2947       02/03/2007    10
## 2948       02/03/2011    10
## 2949       02/05/2008    10
## 2950       02/10/2003    10
## 2951       03/03/2005    10
## 2952       03/04/2000    10
## 2953       03/07/2002    10
## 2954       03/08/1998    10
## 2955       03/08/2007    10
## 2956       03/10/2008    10
## 2957       03/11/2003    10
## 2958       04/01/2013    10
## 2959       04/02/2014    10
## 2960       04/03/2011    10
## 2961       04/05/2004    10
## 2962       04/07/2008    10
## 2963       04/09/2009    10
## 2964       04/12/1996    10
## 2965       05/08/2003    10
## 2966       06/02/2004    10
## 2967       06/02/2008    10
## 2968       06/02/2009    10
## 2969       06/03/1996    10
## 2970       06/04/1997    10
## 2971       06/05/1998    10
## 2972       06/07/2006    10
## 2973       06/09/1997    10
## 2974       06/12/1999    10
## 2975       07/01/2004    10
## 2976       07/03/2014    10
## 2977       07/05/2004    10
## 2978       07/07/2005    10
## 2979       07/07/2006    10
## 2980       07/07/2012    10
## 2981       07/09/2013    10
## 2982       07/11/2012    10
## 2983       07/11/2013    10
## 2984       07/12/2004    10
## 2985       07/12/2009    10
## 2986       08/01/2002    10
## 2987       08/01/2004    10
## 2988       08/03/1996    10
## 2989       08/04/1998    10
## 2990       08/04/2004    10
## 2991       08/06/2007    10
## 2992       08/12/2003    10
## 2993       08/12/2008    10
## 2994       08/12/2012    10
## 2995       09/01/1996    10
## 2996       09/01/2010    10
## 2997       09/06/2006    10
## 2998       10/01/2000    10
## 2999       10/02/2011    10
## 3000       10/03/1998    10
## 3001       10/07/2009    10
## 3002       10/08/1998    10
## 3003       10/12/2001    10
## 3004       11/02/2004    10
## 3005       11/03/2011    10
## 3006       11/05/2013    10
## 3007       11/07/2002    10
## 3008       11/11/2008    10
## 3009       11/12/2007    10
## 3010       12/01/1996    10
## 3011       12/02/1996    10
## 3012       12/02/2005    10
## 3013       12/04/1997    10
## 3014       12/08/2011    10
## 3015       12/10/1998    10
## 3016       12/12/2001    10
## 3017       13/01/2003    10
## 3018       13/04/1996    10
## 3019       13/08/2003    10
## 3020       13/08/2004    10
## 3021       13/08/2005    10
## 3022       13/09/2007    10
## 3023       14/01/1998    10
## 3024       14/01/2002    10
## 3025       14/02/2005    10
## 3026       14/03/2008    10
## 3027       14/10/2008    10
## 3028       15/01/2011    10
## 3029       15/02/2007    10
## 3030       15/02/2014    10
## 3031       15/05/1998    10
## 3032       15/08/2009    10
## 3033       15/11/1997    10
## 3034       15/11/2005    10
## 3035       16/02/1998    10
## 3036       16/03/2006    10
## 3037       16/04/2014    10
## 3038       16/06/2009    10
## 3039       16/07/2004    10
## 3040       17/03/2014    10
## 3041       17/11/2006    10
## 3042       17/12/2003    10
## 3043       17/12/2013    10
## 3044       18/01/2008    10
## 3045       18/01/2010    10
## 3046       18/03/2002    10
## 3047       18/04/2006    10
## 3048       18/05/1998    10
## 3049       18/05/2005    10
## 3050       19/02/2010    10
## 3051       19/10/1996    10
## 3052       19/10/2006    10
## 3053       19/11/2001    10
## 3054       19/11/2004    10
## 3055       20/01/2012    10
## 3056       20/07/2007    10
## 3057       21/01/2005    10
## 3058       21/02/2008    10
## 3059       21/08/2009    10
## 3060       21/09/1998    10
## 3061       22/03/1996    10
## 3062       22/03/2005    10
## 3063       22/03/2013    10
## 3064       22/04/2014    10
## 3065       22/05/2014    10
## 3066       22/10/2011    10
## 3067       23/04/2014    10
## 3068       23/07/2001    10
## 3069       23/09/2003    10
## 3070       23/10/2000    10
## 3071       23/10/2008    10
## 3072       23/12/1997    10
## 3073       23/12/2006    10
## 3074       24/02/2006    10
## 3075       24/03/2003    10
## 3076       24/03/2014    10
## 3077       24/08/1998    10
## 3078       25/01/1996    10
## 3079       25/02/2002    10
## 3080       25/02/2005    10
## 3081       25/03/2004    10
## 3082       25/08/2013    10
## 3083       25/11/2009    10
## 3084       26/02/2014    10
## 3085       26/03/1996    10
## 3086       26/09/2006    10
## 3087       26/11/2001    10
## 3088       27/03/2009    10
## 3089       27/12/2010    10
## 3090       28/02/2005    10
## 3091       28/03/1997    10
## 3092       28/04/1998    10
## 3093       28/04/2011    10
## 3094       28/09/2013    10
## 3095       28/10/2002    10
## 3096       28/12/2010    10
## 3097       29/01/1998    10
## 3098       29/01/2008    10
## 3099       29/04/1998    10
## 3100       29/04/2006    10
## 3101       29/11/2001    10
## 3102       29/11/2006    10
## 3103       29/12/1997    10
## 3104       29/12/2004    10
## 3105       29/12/2005    10
## 3106       30/04/2003    10
## 3107       30/06/2013    10
## 3108       30/10/1997    10
## 3109       31/01/2008    10
## 3110       31/07/2007    10
## 3111       31/10/2008    10
## 3112       31/12/2008    10
## 3113       31/12/2012    10
## 3114       01/01/2005     9
## 3115       01/01/2014     9
## 3116       01/02/1996     9
## 3117       01/02/1999     9
## 3118       01/02/2014     9
## 3119       01/03/1996     9
## 3120       01/04/1998     9
## 3121       01/04/2003     9
## 3122       01/04/2014     9
## 3123       01/05/2009     9
## 3124       01/07/2004     9
## 3125       01/09/1999     9
## 3126       01/11/2008     9
## 3127       01/12/1996     9
## 3128       02/01/1996     9
## 3129       02/01/2006     9
## 3130       02/02/2005     9
## 3131       02/03/2005     9
## 3132       02/12/2002     9
## 3133       02/12/2003     9
## 3134       03/01/2014     9
## 3135       03/02/1999     9
## 3136       03/06/2002     9
## 3137       03/07/2006     9
## 3138       03/11/2005     9
## 3139       03/12/2003     9
## 3140       03/12/2013     9
## 3141       04/07/2012     9
## 3142       04/08/2013     9
## 3143       04/09/2001     9
## 3144       04/10/1996     9
## 3145       04/11/2005     9
## 3146       04/12/2009     9
## 3147       05/04/2009     9
## 3148       05/06/1998     9
## 3149       05/10/2005     9
## 3150       05/12/2003     9
## 3151       06/03/2007     9
## 3152       06/04/1996     9
## 3153       06/08/2001     9
## 3154       06/09/2010     9
## 3155       06/10/2003     9
## 3156       07/04/2012     9
## 3157       07/04/2014     9
## 3158       07/07/1996     9
## 3159       07/07/2009     9
## 3160       07/07/2010     9
## 3161       07/08/2003     9
## 3162       07/10/2002     9
## 3163       07/11/2007     9
## 3164       08/01/2005     9
## 3165       08/05/2008     9
## 3166       08/07/2005     9
## 3167       09/03/2007     9
## 3168       09/04/2007     9
## 3169       09/04/2014     9
## 3170       09/06/2004     9
## 3171       09/07/2004     9
## 3172       10/03/2011     9
## 3173       10/03/2014     9
## 3174       10/04/2009     9
## 3175       10/04/2014     9
## 3176       10/07/2002     9
## 3177       10/10/1995     9
## 3178       11/03/2012     9
## 3179       11/03/2014     9
## 3180       11/05/2004     9
## 3181       11/06/2009     9
## 3182       11/09/2002     9
## 3183       11/09/2003     9
## 3184       11/12/2003     9
## 3185       12/02/2004     9
## 3186       12/03/2008     9
## 3187       12/04/2007     9
## 3188       12/04/2011     9
## 3189       12/06/2002     9
## 3190       12/08/2005     9
## 3191       12/10/1997     9
## 3192       12/10/2004     9
## 3193       12/11/2003     9
## 3194       13/01/1998     9
## 3195       13/02/1998     9
## 3196       13/03/1998     9
## 3197       13/03/2009     9
## 3198       13/05/2014     9
## 3199       13/07/1998     9
## 3200       13/10/2003     9
## 3201       14/01/2005     9
## 3202       14/04/2004     9
## 3203       14/04/2014     9
## 3204       14/07/1996     9
## 3205       14/08/2003     9
## 3206       14/08/2009     9
## 3207       14/08/2010     9
## 3208       14/09/1997     9
## 3209       14/12/2013     9
## 3210       15/01/2004     9
## 3211       15/01/2007     9
## 3212       15/01/2009     9
## 3213       15/02/1999     9
## 3214       15/02/2005     9
## 3215       15/03/1996     9
## 3216       15/03/2014     9
## 3217       15/04/2005     9
## 3218       15/10/2003     9
## 3219       16/06/2012     9
## 3220       16/06/2013     9
## 3221       16/07/2003     9
## 3222       16/09/2008     9
## 3223       16/10/2009     9
## 3224       16/11/1996     9
## 3225       16/12/2011     9
## 3226       17/03/1998     9
## 3227       17/03/2005     9
## 3228       17/03/2012     9
## 3229       17/04/1998     9
## 3230       17/07/2001     9
## 3231       17/08/1997     9
## 3232       17/08/1998     9
## 3233       17/10/2002     9
## 3234       18/01/2014     9
## 3235       18/02/2002     9
## 3236       18/03/2011     9
## 3237       18/05/2004     9
## 3238       18/05/2013     9
## 3239       18/07/2000     9
## 3240       18/07/2002     9
## 3241       18/08/1996     9
## 3242       18/08/2007     9
## 3243       18/08/2012     9
## 3244       18/12/2004     9
## 3245       19/04/1999     9
## 3246       19/12/1997     9
## 3247       19/12/2003     9
## 3248       19/12/2006     9
## 3249       20/11/2009     9
## 3250       21/01/2004     9
## 3251       21/04/1998     9
## 3252       21/07/2011     9
## 3253       21/09/2007     9
## 3254       21/10/2003     9
## 3255       21/11/2005     9
## 3256       21/11/2007     9
## 3257       21/12/2004     9
## 3258       22/01/2002     9
## 3259       22/02/2008     9
## 3260       22/04/2008     9
## 3261       22/04/2011     9
## 3262       22/06/1997     9
## 3263       22/06/2013     9
## 3264       23/03/1997     9
## 3265       23/03/2010     9
## 3266       23/03/2014     9
## 3267       23/09/2002     9
## 3268       23/10/2001     9
## 3269       24/04/2010     9
## 3270       24/04/2014     9
## 3271       24/05/2008     9
## 3272       24/09/2004     9
## 3273       24/11/2003     9
## 3274       25/05/1998     9
## 3275       25/05/2009     9
## 3276       25/08/2003     9
## 3277       25/09/2010     9
## 3278       26/02/2004     9
## 3279       26/04/1999     9
## 3280       27/01/2004     9
## 3281       27/01/2005     9
## 3282       27/01/2012     9
## 3283       27/03/2008     9
## 3284       27/03/2014     9
## 3285       27/07/1998     9
## 3286       27/07/2006     9
## 3287       27/08/2001     9
## 3288       27/09/1997     9
## 3289       27/12/2012     9
## 3290       28/02/2014     9
## 3291       28/06/2007     9
## 3292       28/07/2003     9
## 3293       28/07/2005     9
## 3294       28/11/2013     9
## 3295       28/12/2013     9
## 3296       29/03/1997     9
## 3297       29/04/2002     9
## 3298       29/04/2008     9
## 3299       29/06/1996     9
## 3300       29/10/2011     9
## 3301       29/12/2008     9
## 3302       30/01/2009     9
## 3303       30/04/1998     9
## 3304       30/04/2008     9
## 3305       30/05/2014     9
## 3306       30/06/2003     9
## 3307       30/06/2006     9
## 3308       30/06/2009     9
## 3309       30/12/2004     9
## 3310       30/12/2008     9
## 3311       30/12/2009     9
## 3312       31/05/2012     9
## 3313       31/08/1996     9
## 3314       31/08/2012     9
## 3315       31/12/2009     9
## 3316       31/12/2010     9
## 3317       01/01/2012     8
## 3318       01/03/2004     8
## 3319       01/07/1998     8
## 3320       01/07/2002     8
## 3321       01/07/2003     8
## 3322       01/08/2003     8
## 3323       01/09/2013     8
## 3324       01/10/2001     8
## 3325       01/11/1995     8
## 3326       02/03/1997     8
## 3327       02/06/1996     8
## 3328       02/08/1997     8
## 3329       02/08/1999     8
## 3330       02/09/2005     8
## 3331       02/11/2012     8
## 3332       03/07/2008     8
## 3333       03/08/1996     8
## 3334       03/09/2007     8
## 3335       03/10/2009     8
## 3336       03/11/2006     8
## 3337       04/01/1999     8
## 3338       04/03/2005     8
## 3339       04/05/1998     8
## 3340       04/05/2013     8
## 3341       04/07/1996     8
## 3342       04/12/2003     8
## 3343       04/12/2010     8
## 3344       05/02/2003     8
## 3345       05/02/2004     8
## 3346       05/03/1996     8
## 3347       05/03/2003     8
## 3348       05/04/1999     8
## 3349       05/06/2001     8
## 3350       05/06/2014     8
## 3351       05/07/2004     8
## 3352       05/07/2010     8
## 3353       05/09/2009     8
## 3354       05/11/2003     8
## 3355       06/02/1998     8
## 3356       06/04/2012     8
## 3357       06/06/2002     8
## 3358       06/06/2014     8
## 3359       06/07/1996     8
## 3360       06/07/1999     8
## 3361       06/11/2003     8
## 3362       07/01/2002     8
## 3363       07/01/2007     8
## 3364       07/03/1996     8
## 3365       07/04/1996     8
## 3366       07/06/2014     8
## 3367       08/01/2003     8
## 3368       08/04/2008     8
## 3369       08/06/1996     8
## 3370       08/08/2009     8
## 3371       08/10/2002     8
## 3372       08/10/2005     8
## 3373       09/02/1996     8
## 3374       09/03/1997     8
## 3375       09/04/1998     8
## 3376       09/04/2005     8
## 3377       09/05/2009     8
## 3378       09/05/2014     8
## 3379       09/06/2003     8
## 3380       10/01/1996     8
## 3381       10/03/2003     8
## 3382       10/06/1998     8
## 3383       10/06/2002     8
## 3384       10/11/1998     8
## 3385       10/11/2013     8
## 3386       11/01/1999     8
## 3387       11/02/2002     8
## 3388       11/04/2014     8
## 3389       11/06/1998     8
## 3390       11/06/2011     8
## 3391       11/08/2003     8
## 3392       11/11/2005     8
## 3393       11/11/2011     8
## 3394       11/12/2002     8
## 3395       11/12/2008     8
## 3396       12/01/2008     8
## 3397       12/03/2004     8
## 3398       12/09/2002     8
## 3399       12/09/2009     8
## 3400       12/11/2005     8
## 3401       13/01/2004     8
## 3402       13/04/1997     8
## 3403       13/04/2013     8
## 3404       13/08/2001     8
## 3405       13/10/2013     8
## 3406       14/01/2003     8
## 3407       14/01/2007     8
## 3408       14/02/2007     8
## 3409       14/03/2002     8
## 3410       14/05/2005     8
## 3411       14/05/2014     8
## 3412       14/07/2003     8
## 3413       14/07/2007     8
## 3414       14/07/2012     8
## 3415       14/09/2006     8
## 3416       14/10/1998     8
## 3417       14/10/2006     8
## 3418       15/03/1997     8
## 3419       15/06/2013     8
## 3420       15/07/2002     8
## 3421       15/07/2006     8
## 3422       15/09/1998     8
## 3423       15/09/2009     8
## 3424       15/10/2001     8
## 3425       15/11/1995     8
## 3426       16/01/2003     8
## 3427       16/01/2004     8
## 3428       16/02/2007     8
## 3429       16/02/2013     8
## 3430       16/07/2001     8
## 3431       16/10/2002     8
## 3432       16/11/1997     8
## 3433       16/11/2013     8
## 3434       17/01/2008     8
## 3435       17/02/2003     8
## 3436       17/04/2002     8
## 3437       17/06/2003     8
## 3438       17/07/2011     8
## 3439       17/09/2001     8
## 3440       17/09/2005     8
## 3441       17/12/2006     8
## 3442       18/01/1997     8
## 3443       18/02/2012     8
## 3444       18/03/2014     8
## 3445       18/04/2014     8
## 3446       18/06/2003     8
## 3447       18/08/1998     8
## 3448       18/09/1998     8
## 3449       18/09/2002     8
## 3450       18/12/2002     8
## 3451       19/01/2004     8
## 3452       19/01/2007     8
## 3453       19/03/2001     8
## 3454       19/04/2008     8
## 3455       19/04/2011     8
## 3456       19/05/1998     8
## 3457       19/08/2006     8
## 3458       19/09/2002     8
## 3459       20/02/2001     8
## 3460       20/02/2004     8
## 3461       20/05/2002     8
## 3462       20/09/1997     8
## 3463       20/11/2011     8
## 3464       20/12/2006     8
## 3465       21/01/2008     8
## 3466       21/03/1998     8
## 3467       21/03/2007     8
## 3468       21/03/2008     8
## 3469       21/06/2008     8
## 3470       21/07/2003     8
## 3471       21/08/2002     8
## 3472       21/09/1996     8
## 3473       21/11/2002     8
## 3474       21/12/2010     8
## 3475       22/03/2002     8
## 3476       22/04/2002     8
## 3477       22/05/2004     8
## 3478       22/06/1998     8
## 3479       22/06/1999     8
## 3480       22/08/2001     8
## 3481       22/10/2004     8
## 3482       22/12/1997     8
## 3483       22/12/2003     8
## 3484       22/12/2006     8
## 3485       22/12/2008     8
## 3486       23/02/1997     8
## 3487       23/02/2011     8
## 3488       23/05/2003     8
## 3489       23/07/2002     8
## 3490       23/11/2012     8
## 3491       23/11/2013     8
## 3492       23/12/2004     8
## 3493       24/04/2008     8
## 3494       24/05/2005     8
## 3495       24/06/2014     8
## 3496       24/09/2001     8
## 3497       25/01/1997     8
## 3498       25/02/2009     8
## 3499       25/04/2002     8
## 3500       25/04/2014     8
## 3501       25/08/2012     8
## 3502       25/09/2005     8
## 3503       26/02/1998     8
## 3504       26/02/2012     8
## 3505       26/03/2001     8
## 3506       26/04/2005     8
## 3507       26/05/2006     8
## 3508       26/05/2007     8
## 3509       26/06/2000     8
## 3510       26/08/2003     8
## 3511       26/09/2003     8
## 3512       26/10/1996     8
## 3513       26/10/1997     8
## 3514       26/10/2013     8
## 3515       27/02/1998     8
## 3516       27/03/2002     8
## 3517       27/04/2007     8
## 3518       27/07/2013     8
## 3519       27/10/2012     8
## 3520       27/12/2011     8
## 3521       28/01/2007     8
## 3522       28/02/2008     8
## 3523       28/04/2003     8
## 3524       28/06/1997     8
## 3525       28/06/2008     8
## 3526       28/07/2006     8
## 3527       29/02/1996     8
## 3528       29/02/2008     8
## 3529       29/03/2013     8
## 3530       29/05/2004     8
## 3531       29/07/1998     8
## 3532       29/09/2012     8
## 3533       29/11/2013     8
## 3534       29/12/2006     8
## 3535       30/01/2007     8
## 3536       30/03/2013     8
## 3537       30/04/2005     8
## 3538       30/04/2009     8
## 3539       30/09/2002     8
## 3540       30/10/2001     8
## 3541       31/03/1998     8
## 3542       31/03/2003     8
## 3543       31/03/2008     8
## 3544       31/03/2010     8
## 3545       31/08/2004     8
## 3546       31/12/2007     8
## 3547       31/12/2013     8
## 3548       01/01/1998     7
## 3549       01/01/2004     7
## 3550       01/01/2006     7
## 3551       01/01/2009     7
## 3552       01/02/2000     7
## 3553       01/03/2002     7
## 3554       01/05/2003     7
## 3555       01/05/2010     7
## 3556       01/05/2014     7
## 3557       01/08/2001     7
## 3558       01/10/2002     7
## 3559       01/10/2011     7
## 3560       01/11/2001     7
## 3561       01/12/1995     7
## 3562       02/03/2013     7
## 3563       02/04/2014     7
## 3564       02/05/2014     7
## 3565       02/06/2014     7
## 3566       02/07/1998     7
## 3567       02/07/2001     7
## 3568       02/07/2005     7
## 3569       02/09/2013     7
## 3570       02/10/2009     7
## 3571       02/11/2000     7
## 3572       02/11/2013     7
## 3573       02/12/2008     7
## 3574       03/02/2000     7
## 3575       03/03/2003     7
## 3576       03/05/2002     7
## 3577       03/06/1998     7
## 3578       03/06/2006     7
## 3579       03/09/2003     7
## 3580       03/09/2005     7
## 3581       03/09/2011     7
## 3582       03/10/2004     7
## 3583       03/11/1996     7
## 3584       03/11/2012     7
## 3585       04/02/1998     7
## 3586       04/07/1997     7
## 3587       04/09/2010     7
## 3588       04/10/2002     7
## 3589       05/01/1996     7
## 3590       05/01/1999     7
## 3591       05/01/2008     7
## 3592       05/02/2001     7
## 3593       05/03/2004     7
## 3594       05/04/1997     7
## 3595       05/05/2014     7
## 3596       05/06/2000     7
## 3597       05/09/2000     7
## 3598       05/09/2002     7
## 3599       05/09/2011     7
## 3600       06/04/1998     7
## 3601       06/04/2007     7
## 3602       06/05/2014     7
## 3603       06/07/1997     7
## 3604       06/08/1998     7
## 3605       06/08/2006     7
## 3606       06/09/2005     7
## 3607       06/10/1996     7
## 3608       06/11/2000     7
## 3609       07/02/2014     7
## 3610       07/03/2002     7
## 3611       07/03/2009     7
## 3612       07/04/2003     7
## 3613       07/05/2002     7
## 3614       07/05/2006     7
## 3615       07/05/2011     7
## 3616       07/07/1998     7
## 3617       07/11/1995     7
## 3618       07/12/2001     7
## 3619       07/12/2006     7
## 3620       07/12/2013     7
## 3621       08/01/2001     7
## 3622       08/03/1999     7
## 3623       08/06/1997     7
## 3624       08/08/2004     7
## 3625       08/09/2003     7
## 3626       08/09/2013     7
## 3627       08/10/2001     7
## 3628       08/11/1997     7
## 3629       08/11/2008     7
## 3630       09/02/1997     7
## 3631       09/03/2005     7
## 3632       09/04/2001     7
## 3633       09/04/2006     7
## 3634       09/07/2001     7
## 3635       09/08/1997     7
## 3636       09/08/1999     7
## 3637       09/10/2001     7
## 3638       09/10/2004     7
## 3639       09/11/1998     7
## 3640       09/12/2011     7
## 3641       09/12/2012     7
## 3642       10/01/1998     7
## 3643       10/03/2006     7
## 3644       10/04/2000     7
## 3645       10/04/2003     7
## 3646       10/04/2010     7
## 3647       10/09/2001     7
## 3648       10/11/2003     7
## 3649       10/12/2004     7
## 3650       11/02/1998     7
## 3651       11/06/2001     7
## 3652       11/08/1996     7
## 3653       11/08/1999     7
## 3654       11/08/2012     7
## 3655       11/08/2013     7
## 3656       11/09/2000     7
## 3657       11/11/2006     7
## 3658       11/11/2010     7
## 3659       12/01/1997     7
## 3660       12/01/1999     7
## 3661       12/02/2001     7
## 3662       12/05/2012     7
## 3663       12/06/1998     7
## 3664       12/06/2003     7
## 3665       12/06/2010     7
## 3666       12/07/1997     7
## 3667       12/09/2004     7
## 3668       12/10/1996     7
## 3669       12/10/2013     7
## 3670       12/11/2007     7
## 3671       12/12/2002     7
## 3672       13/06/2000     7
## 3673       13/06/2002     7
## 3674       13/06/2014     7
## 3675       13/08/2006     7
## 3676       13/09/1997     7
## 3677       14/01/1999     7
## 3678       14/04/2012     7
## 3679       14/05/2002     7
## 3680       14/05/2004     7
## 3681       14/06/1997     7
## 3682       14/09/2008     7
## 3683       14/09/2013     7
## 3684       14/10/2012     7
## 3685       14/11/2003     7
## 3686       14/12/1996     7
## 3687       15/01/2006     7
## 3688       15/01/2008     7
## 3689       15/03/2009     7
## 3690       15/05/2000     7
## 3691       15/05/2010     7
## 3692       15/06/1996     7
## 3693       15/06/1997     7
## 3694       15/09/2012     7
## 3695       15/11/1999     7
## 3696       15/12/1996     7
## 3697       15/12/2010     7
## 3698       16/01/1996     7
## 3699       16/01/2010     7
## 3700       16/09/2002     7
## 3701       17/01/1996     7
## 3702       17/01/2005     7
## 3703       17/02/1998     7
## 3704       17/03/2007     7
## 3705       17/04/2005     7
## 3706       17/06/2002     7
## 3707       17/07/2003     7
## 3708       17/11/2013     7
## 3709       17/12/2001     7
## 3710       17/12/2002     7
## 3711       17/12/2005     7
## 3712       18/02/2007     7
## 3713       18/03/2008     7
## 3714       18/04/2009     7
## 3715       18/05/1999     7
## 3716       18/06/2006     7
## 3717       18/06/2014     7
## 3718       18/07/2004     7
## 3719       18/07/2009     7
## 3720       18/09/2000     7
## 3721       18/10/2002     7
## 3722       18/10/2006     7
## 3723       19/01/1996     7
## 3724       19/01/2009     7
## 3725       19/02/1996     7
## 3726       19/02/2005     7
## 3727       19/03/2003     7
## 3728       19/06/2003     7
## 3729       19/06/2009     7
## 3730       19/07/1997     7
## 3731       19/10/2001     7
## 3732       19/11/1999     7
## 3733       19/11/2003     7
## 3734       20/01/2013     7
## 3735       20/01/2014     7
## 3736       20/03/2000     7
## 3737       20/03/2010     7
## 3738       20/04/1997     7
## 3739       20/05/2014     7
## 3740       20/06/2001     7
## 3741       20/07/2013     7
## 3742       20/08/2001     7
## 3743       20/08/2005     7
## 3744       20/08/2006     7
## 3745       20/12/1997     7
## 3746       21/02/1996     7
## 3747       21/04/1996     7
## 3748       21/04/2014     7
## 3749       21/05/1998     7
## 3750       21/05/2006     7
## 3751       21/05/2014     7
## 3752       21/06/2002     7
## 3753       21/08/2000     7
## 3754       21/08/2004     7
## 3755       21/08/2005     7
## 3756       21/08/2010     7
## 3757       21/08/2011     7
## 3758       21/10/2012     7
## 3759       22/02/2014     7
## 3760       22/03/2014     7
## 3761       22/08/2004     7
## 3762       22/09/1998     7
## 3763       22/10/2002     7
## 3764       22/11/1997     7
## 3765       22/11/2008     7
## 3766       22/12/2012     7
## 3767       23/01/1996     7
## 3768       23/01/2004     7
## 3769       23/02/2000     7
## 3770       23/02/2008     7
## 3771       23/04/1998     7
## 3772       23/04/2002     7
## 3773       23/06/1996     7
## 3774       23/07/2004     7
## 3775       23/08/2006     7
## 3776       23/09/2006     7
## 3777       23/11/1996     7
## 3778       23/12/2003     7
## 3779       24/01/1996     7
## 3780       24/01/2000     7
## 3781       24/01/2003     7
## 3782       24/03/1996     7
## 3783       24/04/2003     7
## 3784       24/06/2003     7
## 3785       24/06/2005     7
## 3786       24/11/2012     7
## 3787       24/12/2009     7
## 3788       25/01/1999     7
## 3789       25/02/2012     7
## 3790       25/03/2002     7
## 3791       25/03/2006     7
## 3792       25/03/2008     7
## 3793       25/07/2003     7
## 3794       25/08/2006     7
## 3795       25/10/1997     7
## 3796       26/01/2012     7
## 3797       26/01/2013     7
## 3798       26/02/1999     7
## 3799       26/02/2001     7
## 3800       26/02/2003     7
## 3801       26/06/1998     7
## 3802       26/06/2009     7
## 3803       26/07/1997     7
## 3804       26/07/2001     7
## 3805       26/11/1997     7
## 3806       26/12/1997     7
## 3807       26/12/2013     7
## 3808       27/02/2010     7
## 3809       27/03/2003     7
## 3810       27/08/2003     7
## 3811       27/09/1999     7
## 3812       27/10/1996     7
## 3813       27/10/2003     7
## 3814       27/10/2004     7
## 3815       27/10/2005     7
## 3816       27/10/2007     7
## 3817       27/11/2002     7
## 3818       28/02/2000     7
## 3819       28/05/2011     7
## 3820       28/07/1996     7
## 3821       28/09/2008     7
## 3822       29/04/2014     7
## 3823       29/07/2003     7
## 3824       29/11/2009     7
## 3825       29/12/2009     7
## 3826       30/01/1996     7
## 3827       30/01/2005     7
## 3828       30/01/2008     7
## 3829       30/04/2001     7
## 3830       30/05/2011     7
## 3831       30/09/2007     7
## 3832       30/12/2005     7
## 3833       30/12/2006     7
## 3834       31/05/1997     7
## 3835       31/07/1998     7
## 3836       31/07/2001     7
## 3837       31/10/2003     7
## 3838       01/01/2013     6
## 3839       01/02/2001     6
## 3840       01/02/2009     6
## 3841       01/03/1997     6
## 3842       01/03/2014     6
## 3843       01/04/2002     6
## 3844       01/04/2011     6
## 3845       01/06/2014     6
## 3846       01/07/2006     6
## 3847       01/07/2007     6
## 3848       01/09/2007     6
## 3849       01/10/2005     6
## 3850       01/12/1998     6
## 3851       01/12/2007     6
## 3852       02/01/2001     6
## 3853       02/02/1996     6
## 3854       02/02/1997     6
## 3855       02/02/2008     6
## 3856       02/03/1996     6
## 3857       02/04/2001     6
## 3858       02/04/2010     6
## 3859       02/04/2011     6
## 3860       02/05/2000     6
## 3861       02/05/2003     6
## 3862       02/08/2008     6
## 3863       02/10/2004     6
## 3864       02/11/1997     6
## 3865       02/11/1998     6
## 3866       03/01/2010     6
## 3867       03/02/2013     6
## 3868       03/04/2002     6
## 3869       03/05/1999     6
## 3870       03/05/2009     6
## 3871       03/06/2012     6
## 3872       03/06/2014     6
## 3873       03/08/2000     6
## 3874       03/09/2001     6
## 3875       03/10/2010     6
## 3876       04/01/1996     6
## 3877       04/02/2003     6
## 3878       04/02/2012     6
## 3879       04/04/2000     6
## 3880       04/04/2009     6
## 3881       04/04/2014     6
## 3882       04/06/2003     6
## 3883       04/07/2007     6
## 3884       04/08/2003     6
## 3885       04/08/2012     6
## 3886       04/09/2011     6
## 3887       04/11/2003     6
## 3888       04/12/2001     6
## 3889       05/02/2002     6
## 3890       05/03/1998     6
## 3891       05/03/2005     6
## 3892       05/04/2014     6
## 3893       05/05/1998     6
## 3894       05/07/2007     6
## 3895       05/09/2004     6
## 3896       05/09/2005     6
## 3897       05/10/2013     6
## 3898       05/11/2004     6
## 3899       06/01/2004     6
## 3900       06/03/2001     6
## 3901       06/04/2014     6
## 3902       06/09/2000     6
## 3903       06/09/2004     6
## 3904       06/11/2001     6
## 3905       06/11/2010     6
## 3906       06/11/2011     6
## 3907       06/12/1997     6
## 3908       07/02/2003     6
## 3909       07/02/2009     6
## 3910       07/05/1998     6
## 3911       07/05/1999     6
## 3912       07/05/2001     6
## 3913       07/05/2014     6
## 3914       07/06/1999     6
## 3915       07/06/2000     6
## 3916       07/06/2008     6
## 3917       07/07/1999     6
## 3918       07/08/2002     6
## 3919       07/09/2008     6
## 3920       07/10/2006     6
## 3921       07/10/2012     6
## 3922       08/02/1997     6
## 3923       08/02/2002     6
## 3924       08/04/2003     6
## 3925       08/04/2006     6
## 3926       08/05/1998     6
## 3927       08/06/2014     6
## 3928       08/07/1998     6
## 3929       08/08/1998     6
## 3930       08/09/2007     6
## 3931       08/10/2011     6
## 3932       08/12/1995     6
## 3933       09/04/2003     6
## 3934       09/04/2004     6
## 3935       09/05/2004     6
## 3936       09/06/2014     6
## 3937       09/10/1995     6
## 3938       09/10/2003     6
## 3939       09/11/2000     6
## 3940       09/11/2013     6
## 3941       10/01/2002     6
## 3942       10/04/1998     6
## 3943       10/04/2005     6
## 3944       10/06/2003     6
## 3945       10/06/2006     6
## 3946       10/06/2012     6
## 3947       10/07/2000     6
## 3948       10/07/2010     6
## 3949       10/09/2002     6
## 3950       10/09/2003     6
## 3951       10/10/2002     6
## 3952       10/12/2011     6
## 3953       11/02/1999     6
## 3954       11/02/2007     6
## 3955       11/02/2014     6
## 3956       11/05/1996     6
## 3957       11/07/1998     6
## 3958       11/07/2003     6
## 3959       11/09/2004     6
## 3960       11/09/2010     6
## 3961       11/09/2011     6
## 3962       11/10/1997     6
## 3963       11/12/2000     6
## 3964       11/12/2004     6
## 3965       12/02/2002     6
## 3966       12/03/2005     6
## 3967       12/05/1996     6
## 3968       12/05/1998     6
## 3969       12/06/2004     6
## 3970       12/06/2011     6
## 3971       12/07/2002     6
## 3972       12/08/2002     6
## 3973       12/08/2006     6
## 3974       12/09/2003     6
## 3975       12/09/2010     6
## 3976       12/12/2009     6
## 3977       13/02/1996     6
## 3978       13/03/2000     6
## 3979       13/03/2010     6
## 3980       13/05/2002     6
## 3981       13/06/2003     6
## 3982       13/07/1997     6
## 3983       13/08/1998     6
## 3984       13/08/2011     6
## 3985       13/10/2012     6
## 3986       13/11/1995     6
## 3987       13/11/2003     6
## 3988       13/12/2002     6
## 3989       13/12/2008     6
## 3990       14/02/1996     6
## 3991       14/03/1998     6
## 3992       14/03/2010     6
## 3993       14/04/1996     6
## 3994       14/05/2001     6
## 3995       14/05/2003     6
## 3996       14/05/2011     6
## 3997       14/06/2009     6
## 3998       14/10/2003     6
## 3999       14/12/1998     6
## 4000       15/02/1997     6
## 4001       15/02/2002     6
## 4002       15/03/1999     6
## 4003       15/05/1995     6
## 4004       15/05/2004     6
## 4005       15/06/1999     6
## 4006       15/06/2008     6
## 4007       15/07/2004     6
## 4008       15/08/2000     6
## 4009       15/08/2001     6
## 4010       15/09/2003     6
## 4011       15/09/2007     6
## 4012       15/10/2005     6
## 4013       15/10/2011     6
## 4014       15/12/2012     6
## 4015       16/01/2011     6
## 4016       16/02/1996     6
## 4017       16/02/1997     6
## 4018       16/03/1997     6
## 4019       16/03/2014     6
## 4020       16/04/2003     6
## 4021       16/05/2002     6
## 4022       16/05/2014     6
## 4023       16/06/1999     6
## 4024       16/09/2006     6
## 4025       16/10/1995     6
## 4026       16/12/2007     6
## 4027       16/12/2012     6
## 4028       17/01/2002     6
## 4029       17/01/2003     6
## 4030       17/01/2009     6
## 4031       17/02/1999     6
## 4032       17/03/1996     6
## 4033       17/04/2000     6
## 4034       17/04/2001     6
## 4035       17/04/2003     6
## 4036       17/04/2009     6
## 4037       17/04/2010     6
## 4038       17/04/2014     6
## 4039       17/05/1999     6
## 4040       17/06/1998     6
## 4041       17/07/2000     6
## 4042       17/08/2013     6
## 4043       17/09/2002     6
## 4044       17/10/2003     6
## 4045       17/11/1999     6
## 4046       17/12/2011     6
## 4047       18/02/1999     6
## 4048       18/02/2003     6
## 4049       18/03/1999     6
## 4050       18/04/2004     6
## 4051       18/05/2014     6
## 4052       18/06/1998     6
## 4053       18/06/2002     6
## 4054       18/07/2003     6
## 4055       18/09/2010     6
## 4056       18/11/2012     6
## 4057       18/12/1995     6
## 4058       19/01/1997     6
## 4059       19/02/1998     6
## 4060       19/02/2002     6
## 4061       19/02/2003     6
## 4062       19/02/2011     6
## 4063       19/06/1998     6
## 4064       19/06/2001     6
## 4065       19/06/2004     6
## 4066       19/07/1999     6
## 4067       19/07/2002     6
## 4068       19/08/2003     6
## 4069       19/09/1995     6
## 4070       19/09/2003     6
## 4071       19/09/2004     6
## 4072       19/10/1997     6
## 4073       19/11/1998     6
## 4074       19/11/2002     6
## 4075       19/11/2005     6
## 4076       19/11/2006     6
## 4077       20/02/2008     6
## 4078       20/03/2002     6
## 4079       20/03/2004     6
## 4080       20/04/1996     6
## 4081       20/05/2003     6
## 4082       20/05/2006     6
## 4083       20/06/2004     6
## 4084       20/06/2010     6
## 4085       20/06/2014     6
## 4086       20/08/2002     6
## 4087       20/08/2011     6
## 4088       20/10/2013     6
## 4089       21/01/2003     6
## 4090       21/01/2006     6
## 4091       21/02/1998     6
## 4092       21/02/2003     6
## 4093       21/03/2002     6
## 4094       21/05/2001     6
## 4095       21/05/2003     6
## 4096       21/05/2008     6
## 4097       21/10/2002     6
## 4098       22/01/2001     6
## 4099       22/03/1997     6
## 4100       22/03/1999     6
## 4101       22/04/1998     6
## 4102       22/05/2002     6
## 4103       22/05/2010     6
## 4104       22/07/1998     6
## 4105       22/07/2003     6
## 4106       22/08/2003     6
## 4107       22/08/2010     6
## 4108       22/09/2007     6
## 4109       22/10/2003     6
## 4110       22/11/1999     6
## 4111       22/12/1998     6
## 4112       22/12/2005     6
## 4113       22/12/2013     6
## 4114       23/01/2010     6
## 4115       23/04/2006     6
## 4116       23/06/2007     6
## 4117       23/07/2003     6
## 4118       23/07/2006     6
## 4119       23/07/2011     6
## 4120       23/08/1995     6
## 4121       23/08/1997     6
## 4122       23/08/1999     6
## 4123       23/08/2001     6
## 4124       23/09/2012     6
## 4125       23/10/1995     6
## 4126       23/10/2011     6
## 4127       23/11/1999     6
## 4128       23/11/2005     6
## 4129       23/12/1999     6
## 4130       24/02/2003     6
## 4131       24/03/2012     6
## 4132       24/05/2014     6
## 4133       24/07/1995     6
## 4134       24/07/2005     6
## 4135       24/08/2000     6
## 4136       24/08/2013     6
## 4137       24/09/2002     6
## 4138       24/10/2002     6
## 4139       24/11/1996     6
## 4140       24/11/2011     6
## 4141       24/12/2013     6
## 4142       25/01/2014     6
## 4143       25/05/2001     6
## 4144       25/05/2007     6
## 4145       25/05/2008     6
## 4146       25/06/2001     6
## 4147       25/07/2009     6
## 4148       25/09/2004     6
## 4149       25/11/2002     6
## 4150       25/12/1996     6
## 4151       26/02/2002     6
## 4152       26/03/2003     6
## 4153       26/04/1997     6
## 4154       26/04/2008     6
## 4155       26/05/2004     6
## 4156       26/06/2002     6
## 4157       26/08/2012     6
## 4158       26/11/2002     6
## 4159       26/12/2007     6
## 4160       27/01/1998     6
## 4161       27/01/2013     6
## 4162       27/02/1996     6
## 4163       27/02/2002     6
## 4164       27/03/1998     6
## 4165       27/03/2000     6
## 4166       27/03/2001     6
## 4167       27/06/2009     6
## 4168       27/10/1998     6
## 4169       27/11/1995     6
## 4170       27/11/2009     6
## 4171       28/02/2001     6
## 4172       28/04/2007     6
## 4173       28/05/2014     6
## 4174       28/06/1995     6
## 4175       28/09/1996     6
## 4176       28/11/2000     6
## 4177       28/11/2004     6
## 4178       28/11/2009     6
## 4179       28/12/1998     6
## 4180       28/12/1999     6
## 4181       28/12/2005     6
## 4182       29/01/1999     6
## 4183       29/01/2005     6
## 4184       29/03/2014     6
## 4185       29/04/1999     6
## 4186       29/04/2003     6
## 4187       29/04/2007     6
## 4188       29/05/1998     6
## 4189       29/05/2003     6
## 4190       29/06/2013     6
## 4191       29/07/2006     6
## 4192       29/10/2001     6
## 4193       29/10/2002     6
## 4194       29/10/2003     6
## 4195       29/11/1996     6
## 4196       29/11/1997     6
## 4197       29/11/2008     6
## 4198       29/12/1996     6
## 4199       29/12/2003     6
## 4200       29/12/2012     6
## 4201       30/01/2010     6
## 4202       30/03/1997     6
## 4203       30/03/2014     6
## 4204       30/05/2005     6
## 4205       30/06/1996     6
## 4206       30/07/2005     6
## 4207       30/08/2002     6
## 4208       30/08/2008     6
## 4209       30/09/2003     6
## 4210       30/10/2010     6
## 4211       30/12/2002     6
## 4212       30/12/2003     6
## 4213       30/12/2013     6
## 4214       31/01/2002     6
## 4215       31/05/2002     6
## 4216       31/05/2010     6
## 4217       31/10/2004     6
## 4218       31/12/2003     6
## 4219       01/01/2007     5
## 4220       01/03/1999     5
## 4221       01/03/2000     5
## 4222       01/04/1999     5
## 4223       01/05/2002     5
## 4224       01/05/2004     5
## 4225       01/05/2005     5
## 4226       01/08/2000     5
## 4227       01/08/2002     5
## 4228       01/08/2004     5
## 4229       01/09/2008     5
## 4230       01/09/2012     5
## 4231       01/10/1995     5
## 4232       01/10/2006     5
## 4233       01/11/1999     5
## 4234       01/11/2000     5
## 4235       01/12/2012     5
## 4236       02/01/2000     5
## 4237       02/01/2004     5
## 4238       02/01/2005     5
## 4239       02/01/2011     5
## 4240       02/01/2014     5
## 4241       02/02/1999     5
## 4242       02/02/2002     5
## 4243       02/03/2004     5
## 4244       02/05/2002     5
## 4245       02/05/2009     5
## 4246       02/06/1998     5
## 4247       02/06/2007     5
## 4248       02/06/2012     5
## 4249       02/07/2002     5
## 4250       02/09/2002     5
## 4251       02/09/2007     5
## 4252       02/10/2001     5
## 4253       02/10/2005     5
## 4254       02/10/2011     5
## 4255       02/11/2003     5
## 4256       02/12/2006     5
## 4257       03/01/1996     5
## 4258       03/03/1999     5
## 4259       03/03/2007     5
## 4260       03/03/2013     5
## 4261       03/04/2011     5
## 4262       03/07/2000     5
## 4263       03/08/1995     5
## 4264       03/08/1997     5
## 4265       03/08/1999     5
## 4266       03/11/1998     5
## 4267       03/11/2000     5
## 4268       03/11/2013     5
## 4269       03/12/2002     5
## 4270       03/12/2011     5
## 4271       04/01/1998     5
## 4272       04/01/2002     5
## 4273       04/01/2014     5
## 4274       04/02/2002     5
## 4275       04/02/2004     5
## 4276       04/03/2006     5
## 4277       04/05/1999     5
## 4278       04/06/2006     5
## 4279       04/06/2011     5
## 4280       04/06/2014     5
## 4281       04/07/2004     5
## 4282       04/07/2013     5
## 4283       04/08/1998     5
## 4284       04/09/2002     5
## 4285       04/09/2003     5
## 4286       04/10/2000     5
## 4287       04/10/2008     5
## 4288       04/11/1998     5
## 4289       04/11/2007     5
## 4290       05/01/2013     5
## 4291       05/02/1998     5
## 4292       05/02/1999     5
## 4293       05/06/2002     5
## 4294       05/08/2006     5
## 4295       05/10/2000     5
## 4296       05/11/2001     5
## 4297       06/01/2003     5
## 4298       06/03/2002     5
## 4299       06/03/2004     5
## 4300       06/05/1999     5
## 4301       06/07/2001     5
## 4302       06/09/2002     5
## 4303       06/09/2008     5
## 4304       06/10/1999     5
## 4305       06/10/2007     5
## 4306       06/10/2012     5
## 4307       06/10/2013     5
## 4308       06/11/1998     5
## 4309       06/12/2009     5
## 4310       07/02/2000     5
## 4311       07/03/1998     5
## 4312       07/03/2008     5
## 4313       07/04/2007     5
## 4314       07/05/2003     5
## 4315       07/06/2002     5
## 4316       07/08/1998     5
## 4317       07/08/2001     5
## 4318       07/09/2000     5
## 4319       07/09/2009     5
## 4320       07/12/1995     5
## 4321       07/12/1997     5
## 4322       08/01/2012     5
## 4323       08/05/2003     5
## 4324       08/05/2010     5
## 4325       08/09/1998     5
## 4326       08/10/2006     5
## 4327       08/11/2001     5
## 4328       08/12/1996     5
## 4329       08/12/1998     5
## 4330       08/12/2000     5
## 4331       08/12/2013     5
## 4332       09/01/1995     5
## 4333       09/01/2001     5
## 4334       09/01/2002     5
## 4335       09/01/2003     5
## 4336       09/02/2013     5
## 4337       09/04/2011     5
## 4338       09/05/1998     5
## 4339       09/06/2007     5
## 4340       09/07/2002     5
## 4341       09/08/2001     5
## 4342       09/10/2000     5
## 4343       09/10/2002     5
## 4344       09/10/2005     5
## 4345       09/10/2011     5
## 4346       09/12/1998     5
## 4347       09/12/2002     5
## 4348       09/12/2006     5
## 4349       10/01/2009     5
## 4350       10/02/2013     5
## 4351       10/04/2011     5
## 4352       10/05/1999     5
## 4353       10/05/2000     5
## 4354       10/05/2014     5
## 4355       10/06/1999     5
## 4356       10/07/1998     5
## 4357       10/09/1999     5
## 4358       10/09/2005     5
## 4359       10/09/2011     5
## 4360       10/11/1996     5
## 4361       10/12/1998     5
## 4362       10/12/2002     5
## 4363       11/01/2007     5
## 4364       11/01/2014     5
## 4365       11/02/2006     5
## 4366       11/03/2004     5
## 4367       11/06/2003     5
## 4368       11/07/2004     5
## 4369       11/08/1998     5
## 4370       11/10/1999     5
## 4371       11/10/2009     5
## 4372       11/11/2004     5
## 4373       11/12/2005     5
## 4374       12/01/2003     5
## 4375       12/02/2006     5
## 4376       12/04/1999     5
## 4377       12/04/2009     5
## 4378       12/05/1999     5
## 4379       12/05/2013     5
## 4380       12/06/2014     5
## 4381       12/07/2009     5
## 4382       12/10/1999     5
## 4383       12/11/1999     5
## 4384       12/11/2002     5
## 4385       13/01/2013     5
## 4386       13/02/2002     5
## 4387       13/02/2010     5
## 4388       13/04/1999     5
## 4389       13/05/2012     5
## 4390       13/06/2009     5
## 4391       13/07/1996     5
## 4392       13/09/1999     5
## 4393       13/09/2001     5
## 4394       13/10/1995     5
## 4395       13/10/1996     5
## 4396       14/01/2012     5
## 4397       14/02/1998     5
## 4398       14/02/2000     5
## 4399       14/03/2001     5
## 4400       14/04/1999     5
## 4401       14/04/2006     5
## 4402       14/04/2013     5
## 4403       14/05/2006     5
## 4404       14/06/2002     5
## 4405       14/06/2008     5
## 4406       14/10/2002     5
## 4407       15/01/2005     5
## 4408       15/03/1998     5
## 4409       15/03/2008     5
## 4410       15/04/2002     5
## 4411       15/04/2014     5
## 4412       15/05/2002     5
## 4413       15/05/2005     5
## 4414       15/05/2011     5
## 4415       15/07/2003     5
## 4416       15/10/1998     5
## 4417       15/11/2008     5
## 4418       15/12/2007     5
## 4419       16/03/1996     5
## 4420       16/04/2001     5
## 4421       16/04/2004     5
## 4422       16/05/1998     5
## 4423       16/05/2003     5
## 4424       16/06/2007     5
## 4425       16/06/2014     5
## 4426       16/07/2002     5
## 4427       16/07/2011     5
## 4428       16/08/2002     5
## 4429       16/08/2008     5
## 4430       16/09/2007     5
## 4431       16/09/2012     5
## 4432       16/10/2010     5
## 4433       16/12/1998     5
## 4434       16/12/2000     5
## 4435       16/12/2006     5
## 4436       17/02/2007     5
## 4437       17/03/2013     5
## 4438       17/04/1995     5
## 4439       17/04/2011     5
## 4440       17/05/2009     5
## 4441       17/06/2012     5
## 4442       17/06/2014     5
## 4443       17/07/1995     5
## 4444       17/07/2002     5
## 4445       17/10/2004     5
## 4446       17/11/2012     5
## 4447       18/01/1996     5
## 4448       18/01/2002     5
## 4449       18/02/1996     5
## 4450       18/03/2012     5
## 4451       18/04/2002     5
## 4452       18/05/1997     5
## 4453       18/05/2008     5
## 4454       18/06/2001     5
## 4455       18/06/2011     5
## 4456       18/08/1995     5
## 4457       18/10/1997     5
## 4458       18/10/2008     5
## 4459       18/11/1998     5
## 4460       18/12/1998     5
## 4461       19/01/1999     5
## 4462       19/01/2013     5
## 4463       19/02/2006     5
## 4464       19/06/2010     5
## 4465       19/06/2014     5
## 4466       19/11/2011     5
## 4467       19/12/2009     5
## 4468       20/01/1999     5
## 4469       20/01/2007     5
## 4470       20/02/1995     5
## 4471       20/02/1996     5
## 4472       20/04/2013     5
## 4473       20/06/2002     5
## 4474       20/07/1998     5
## 4475       20/07/2001     5
## 4476       20/07/2008     5
## 4477       20/08/1998     5
## 4478       20/09/2002     5
## 4479       20/10/1996     5
## 4480       20/11/1998     5
## 4481       20/11/2004     5
## 4482       20/11/2010     5
## 4483       20/12/2003     5
## 4484       21/01/2002     5
## 4485       21/01/2012     5
## 4486       21/03/2003     5
## 4487       21/04/2007     5
## 4488       21/05/2010     5
## 4489       21/05/2011     5
## 4490       21/07/2013     5
## 4491       21/08/2003     5
## 4492       21/09/2013     5
## 4493       21/10/2006     5
## 4494       21/11/2004     5
## 4495       21/12/2013     5
## 4496       22/01/1996     5
## 4497       22/01/2012     5
## 4498       22/02/1996     5
## 4499       22/02/1998     5
## 4500       22/02/1999     5
## 4501       22/02/2009     5
## 4502       22/04/2012     5
## 4503       22/05/2001     5
## 4504       22/07/2012     5
## 4505       22/09/1996     5
## 4506       22/12/1996     5
## 4507       23/01/2005     5
## 4508       23/05/2010     5
## 4509       23/06/1998     5
## 4510       23/07/1998     5
## 4511       23/07/2005     5
## 4512       23/08/2009     5
## 4513       23/09/1999     5
## 4514       23/10/2003     5
## 4515       23/11/2006     5
## 4516       23/12/2008     5
## 4517       24/01/2002     5
## 4518       24/03/2007     5
## 4519       24/04/1998     5
## 4520       24/04/2004     5
## 4521       24/05/1995     5
## 4522       24/05/1997     5
## 4523       24/07/2001     5
## 4524       24/07/2002     5
## 4525       24/07/2003     5
## 4526       24/07/2011     5
## 4527       24/09/1998     5
## 4528       24/09/2005     5
## 4529       24/10/2003     5
## 4530       24/10/2004     5
## 4531       24/11/1998     5
## 4532       24/11/2005     5
## 4533       25/03/2003     5
## 4534       25/04/1998     5
## 4535       25/04/2003     5
## 4536       25/04/2010     5
## 4537       25/06/2002     5
## 4538       25/06/2011     5
## 4539       25/06/2014     5
## 4540       25/07/2002     5
## 4541       25/07/2010     5
## 4542       25/09/2003     5
## 4543       26/01/1999     5
## 4544       26/01/2008     5
## 4545       26/03/2002     5
## 4546       26/05/2008     5
## 4547       26/08/2002     5
## 4548       26/10/2008     5
## 4549       26/11/2004     5
## 4550       26/11/2009     5
## 4551       26/11/2010     5
## 4552       26/12/1996     5
## 4553       26/12/2011     5
## 4554       26/12/2012     5
## 4555       27/01/1999     5
## 4556       27/01/2007     5
## 4557       27/02/1999     5
## 4558       27/02/2005     5
## 4559       27/04/2013     5
## 4560       27/04/2014     5
## 4561       27/05/2014     5
## 4562       27/06/2000     5
## 4563       27/08/2011     5
## 4564       27/09/2000     5
## 4565       27/09/2008     5
## 4566       27/11/2001     5
## 4567       27/12/2004     5
## 4568       27/12/2009     5
## 4569       28/01/2002     5
## 4570       28/01/2014     5
## 4571       28/02/1996     5
## 4572       28/03/2002     5
## 4573       28/04/1995     5
## 4574       28/05/2006     5
## 4575       28/06/2001     5
## 4576       28/06/2002     5
## 4577       28/06/2009     5
## 4578       28/07/1998     5
## 4579       28/07/2013     5
## 4580       28/08/1998     5
## 4581       28/08/2002     5
## 4582       28/08/2003     5
## 4583       28/08/2004     5
## 4584       28/08/2005     5
## 4585       28/10/1998     5
## 4586       28/11/1994     5
## 4587       28/11/1996     5
## 4588       28/11/1997     5
## 4589       28/11/2007     5
## 4590       28/12/1996     5
## 4591       29/05/2001     5
## 4592       29/05/2014     5
## 4593       29/07/1999     5
## 4594       29/07/2012     5
## 4595       29/08/1998     5
## 4596       29/08/2000     5
## 4597       29/09/2007     5
## 4598       29/09/2013     5
## 4599       29/12/2013     5
## 4600       30/01/2002     5
## 4601       30/03/1996     5
## 4602       30/04/1999     5
## 4603       30/04/2014     5
## 4604       30/05/2003     5
## 4605       30/05/2004     5
## 4606       30/06/1998     5
## 4607       30/07/1998     5
## 4608       30/10/2004     5
## 4609       30/11/1997     5
## 4610       30/11/2007     5
## 4611       30/12/1999     5
## 4612       31/01/2003     5
## 4613       31/01/2010     5
## 4614       31/03/1996     5
## 4615       31/05/2004     5
## 4616       31/07/2000     5
## 4617       31/12/2005     5
## 4618       01/01/2010     4
## 4619       01/01/2011     4
## 4620       01/04/2006     4
## 4621       01/04/2012     4
## 4622       01/05/1995     4
## 4623       01/05/2001     4
## 4624       01/06/1995     4
## 4625       01/06/1999     4
## 4626       01/06/2001     4
## 4627       01/06/2008     4
## 4628       01/07/2000     4
## 4629       01/08/2010     4
## 4630       01/09/2000     4
## 4631       01/09/2001     4
## 4632       01/09/2003     4
## 4633       01/10/1998     4
## 4634       01/11/1993     4
## 4635       01/11/2002     4
## 4636       02/01/2003     4
## 4637       02/01/2012     4
## 4638       02/03/1999     4
## 4639       02/03/2001     4
## 4640       02/03/2002     4
## 4641       02/04/2002     4
## 4642       02/04/2006     4
## 4643       02/05/1999     4
## 4644       02/08/2000     4
## 4645       02/09/1998     4
## 4646       02/09/1999     4
## 4647       02/09/2000     4
## 4648       02/09/2012     4
## 4649       02/10/1995     4
## 4650       02/10/1998     4
## 4651       02/11/2002     4
## 4652       02/12/1998     4
## 4653       03/01/2000     4
## 4654       03/01/2002     4
## 4655       03/05/2000     4
## 4656       03/07/2005     4
## 4657       03/07/2010     4
## 4658       03/09/1998     4
## 4659       03/09/2012     4
## 4660       03/10/2003     4
## 4661       03/11/1995     4
## 4662       03/12/2005     4
## 4663       04/01/1997     4
## 4664       04/02/1999     4
## 4665       04/02/2007     4
## 4666       04/03/1999     4
## 4667       04/03/2012     4
## 4668       04/04/1998     4
## 4669       04/04/2003     4
## 4670       04/04/2004     4
## 4671       04/05/2000     4
## 4672       04/06/1998     4
## 4673       04/06/2001     4
## 4674       04/06/2005     4
## 4675       04/07/2005     4
## 4676       04/09/2006     4
## 4677       04/10/1997     4
## 4678       04/10/2001     4
## 4679       04/11/2006     4
## 4680       04/12/1995     4
## 4681       04/12/2002     4
## 4682       04/12/2005     4
## 4683       05/01/1997     4
## 4684       05/01/2001     4
## 4685       05/01/2002     4
## 4686       05/02/2005     4
## 4687       05/02/2006     4
## 4688       05/03/2006     4
## 4689       05/03/2011     4
## 4690       05/04/2002     4
## 4691       05/05/2001     4
## 4692       05/05/2013     4
## 4693       05/06/2003     4
## 4694       05/07/2009     4
## 4695       05/08/2007     4
## 4696       05/08/2012     4
## 4697       05/09/2001     4
## 4698       05/09/2010     4
## 4699       05/10/1999     4
## 4700       05/12/2000     4
## 4701       06/01/2002     4
## 4702       06/01/2007     4
## 4703       06/01/2013     4
## 4704       06/02/2003     4
## 4705       06/02/2005     4
## 4706       06/03/1999     4
## 4707       06/03/2003     4
## 4708       06/06/2000     4
## 4709       06/06/2001     4
## 4710       06/06/2004     4
## 4711       06/08/2002     4
## 4712       06/08/2005     4
## 4713       06/08/2011     4
## 4714       06/10/1998     4
## 4715       06/11/1995     4
## 4716       06/12/2000     4
## 4717       07/01/1996     4
## 4718       07/02/2001     4
## 4719       07/03/2000     4
## 4720       07/03/2003     4
## 4721       07/04/2013     4
## 4722       07/07/2002     4
## 4723       07/07/2003     4
## 4724       07/07/2013     4
## 4725       07/08/2005     4
## 4726       07/09/1998     4
## 4727       07/09/1999     4
## 4728       07/11/2002     4
## 4729       07/11/2003     4
## 4730       07/12/1996     4
## 4731       07/12/1999     4
## 4732       08/01/1999     4
## 4733       08/02/2000     4
## 4734       08/02/2014     4
## 4735       08/03/2000     4
## 4736       08/03/2002     4
## 4737       08/03/2014     4
## 4738       08/04/2012     4
## 4739       08/05/2002     4
## 4740       08/05/2014     4
## 4741       08/06/2003     4
## 4742       08/06/2013     4
## 4743       08/07/2003     4
## 4744       08/07/2012     4
## 4745       08/08/2003     4
## 4746       08/10/1998     4
## 4747       08/11/1995     4
## 4748       08/11/2000     4
## 4749       09/03/1996     4
## 4750       09/04/1999     4
## 4751       09/05/2001     4
## 4752       09/05/2010     4
## 4753       09/08/2000     4
## 4754       09/08/2008     4
## 4755       09/08/2009     4
## 4756       09/09/2012     4
## 4757       09/10/1998     4
## 4758       09/10/2010     4
## 4759       09/11/1996     4
## 4760       09/11/1997     4
## 4761       09/11/1999     4
## 4762       09/11/2002     4
## 4763       09/11/2008     4
## 4764       09/12/2007     4
## 4765       10/01/2001     4
## 4766       10/01/2004     4
## 4767       10/02/2003     4
## 4768       10/03/1999     4
## 4769       10/03/2012     4
## 4770       10/04/2001     4
## 4771       10/05/2001     4
## 4772       10/05/2002     4
## 4773       10/05/2008     4
## 4774       10/05/2009     4
## 4775       10/07/2001     4
## 4776       10/07/2004     4
## 4777       10/07/2005     4
## 4778       10/08/1997     4
## 4779       10/08/2008     4
## 4780       10/09/2006     4
## 4781       10/10/1994     4
## 4782       10/10/2000     4
## 4783       10/11/1999     4
## 4784       11/01/1998     4
## 4785       11/01/2002     4
## 4786       11/02/2003     4
## 4787       11/03/2003     4
## 4788       11/03/2006     4
## 4789       11/03/2007     4
## 4790       11/04/2000     4
## 4791       11/04/2002     4
## 4792       11/04/2004     4
## 4793       11/06/2005     4
## 4794       11/07/1995     4
## 4795       11/07/2009     4
## 4796       11/08/2007     4
## 4797       11/09/1995     4
## 4798       11/09/1998     4
## 4799       11/10/1995     4
## 4800       11/10/2000     4
## 4801       11/10/2002     4
## 4802       11/10/2008     4
## 4803       11/11/1999     4
## 4804       11/11/2002     4
## 4805       11/11/2003     4
## 4806       11/12/1999     4
## 4807       11/12/2001     4
## 4808       12/01/2013     4
## 4809       12/03/1999     4
## 4810       12/03/2001     4
## 4811       12/06/2000     4
## 4812       12/06/2005     4
## 4813       12/07/1995     4
## 4814       12/07/2001     4
## 4815       12/07/2003     4
## 4816       12/08/1998     4
## 4817       12/08/2000     4
## 4818       12/08/2003     4
## 4819       12/08/2012     4
## 4820       12/10/1995     4
## 4821       12/10/2001     4
## 4822       12/11/1998     4
## 4823       12/11/2001     4
## 4824       13/01/1999     4
## 4825       13/01/2007     4
## 4826       13/03/2003     4
## 4827       13/04/2014     4
## 4828       13/08/2002     4
## 4829       13/09/2002     4
## 4830       13/10/2000     4
## 4831       13/11/2000     4
## 4832       13/11/2001     4
## 4833       13/11/2004     4
## 4834       13/11/2005     4
## 4835       13/11/2011     4
## 4836       13/12/1995     4
## 4837       13/12/1999     4
## 4838       14/01/1996     4
## 4839       14/02/2010     4
## 4840       14/03/1996     4
## 4841       14/03/2004     4
## 4842       14/06/1999     4
## 4843       14/07/1999     4
## 4844       14/07/2001     4
## 4845       14/08/1995     4
## 4846       14/08/2000     4
## 4847       14/11/1995     4
## 4848       14/11/2001     4
## 4849       14/11/2009     4
## 4850       15/01/1996     4
## 4851       15/01/1999     4
## 4852       15/03/2000     4
## 4853       15/04/2003     4
## 4854       15/04/2006     4
## 4855       15/04/2007     4
## 4856       15/06/1995     4
## 4857       15/06/2000     4
## 4858       15/06/2014     4
## 4859       15/07/1999     4
## 4860       15/07/2012     4
## 4861       15/08/2002     4
## 4862       15/08/2004     4
## 4863       15/09/2000     4
## 4864       15/10/2006     4
## 4865       15/11/2000     4
## 4866       15/12/1995     4
## 4867       15/12/1998     4
## 4868       15/12/2013     4
## 4869       16/01/2001     4
## 4870       16/02/1999     4
## 4871       16/02/2000     4
## 4872       16/02/2014     4
## 4873       16/04/2005     4
## 4874       16/06/1998     4
## 4875       16/07/2006     4
## 4876       16/08/2000     4
## 4877       16/09/1998     4
## 4878       16/09/2003     4
## 4879       16/10/1998     4
## 4880       16/10/2000     4
## 4881       16/10/2003     4
## 4882       16/10/2011     4
## 4883       16/11/1998     4
## 4884       16/11/1999     4
## 4885       17/01/2001     4
## 4886       17/02/2008     4
## 4887       17/03/1999     4
## 4888       17/03/2003     4
## 4889       17/04/2004     4
## 4890       17/05/1998     4
## 4891       17/07/1998     4
## 4892       17/07/2010     4
## 4893       17/09/1998     4
## 4894       17/09/2003     4
## 4895       17/09/2011     4
## 4896       17/10/2000     4
## 4897       17/10/2001     4
## 4898       17/10/2009     4
## 4899       18/01/2000     4
## 4900       18/01/2009     4
## 4901       18/04/1998     4
## 4902       18/04/2000     4
## 4903       18/07/2001     4
## 4904       18/09/1995     4
## 4905       18/09/2003     4
## 4906       18/11/2006     4
## 4907       18/12/2000     4
## 4908       19/02/2000     4
## 4909       19/02/2001     4
## 4910       19/02/2012     4
## 4911       19/03/1998     4
## 4912       19/03/2006     4
## 4913       19/04/2000     4
## 4914       19/04/2009     4
## 4915       19/05/2007     4
## 4916       19/05/2013     4
## 4917       19/06/2011     4
## 4918       19/09/1998     4
## 4919       19/09/2009     4
## 4920       19/09/2010     4
## 4921       19/12/2002     4
## 4922       20/01/2000     4
## 4923       20/01/2003     4
## 4924       20/01/2008     4
## 4925       20/02/2002     4
## 4926       20/02/2005     4
## 4927       20/04/2000     4
## 4928       20/04/2014     4
## 4929       20/05/1999     4
## 4930       20/06/2009     4
## 4931       20/09/1995     4
## 4932       20/09/2000     4
## 4933       20/09/2001     4
## 4934       20/09/2008     4
## 4935       20/10/2007     4
## 4936       20/11/2000     4
## 4937       20/11/2002     4
## 4938       20/12/2002     4
## 4939       21/01/1999     4
## 4940       21/01/2000     4
## 4941       21/01/2007     4
## 4942       21/02/2002     4
## 4943       21/02/2004     4
## 4944       21/05/2002     4
## 4945       21/05/2005     4
## 4946       21/06/1997     4
## 4947       21/06/1999     4
## 4948       21/06/2000     4
## 4949       21/06/2009     4
## 4950       21/08/1998     4
## 4951       21/09/1997     4
## 4952       21/09/2002     4
## 4953       21/09/2008     4
## 4954       21/10/1998     4
## 4955       21/10/2007     4
## 4956       21/11/2000     4
## 4957       21/11/2003     4
## 4958       21/12/1997     4
## 4959       21/12/2008     4
## 4960       22/01/2003     4
## 4961       22/01/2005     4
## 4962       22/02/1993     4
## 4963       22/02/2002     4
## 4964       22/03/2001     4
## 4965       22/04/2006     4
## 4966       22/05/2000     4
## 4967       22/06/2001     4
## 4968       22/08/2002     4
## 4969       22/09/2000     4
## 4970       22/09/2013     4
## 4971       22/10/1998     4
## 4972       22/11/2012     4
## 4973       23/02/1999     4
## 4974       23/03/1996     4
## 4975       23/03/2013     4
## 4976       23/04/2001     4
## 4977       23/04/2003     4
## 4978       23/04/2011     4
## 4979       23/05/1995     4
## 4980       23/05/2002     4
## 4981       23/06/1999     4
## 4982       23/06/2012     4
## 4983       23/06/2014     4
## 4984       23/09/1998     4
## 4985       23/11/2007     4
## 4986       23/12/2012     4
## 4987       24/01/1998     4
## 4988       24/02/1996     4
## 4989       24/03/1999     4
## 4990       24/04/2001     4
## 4991       24/04/2005     4
## 4992       24/05/1999     4
## 4993       24/05/2009     4
## 4994       24/06/1998     4
## 4995       24/06/2002     4
## 4996       24/06/2012     4
## 4997       24/07/2010     4
## 4998       24/08/1995     4
## 4999       24/09/1999     4
## 5000       24/09/2003     4
## 5001       24/12/1996     4
## 5002       24/12/2004     4
## 5003       24/12/2008     4
## 5004       24/12/2012     4
## 5005       25/01/2001     4
## 5006       25/01/2003     4
## 5007       25/02/2000     4
## 5008       25/02/2006     4
## 5009       25/04/2004     4
## 5010       25/04/2009     4
## 5011       25/05/1997     4
## 5012       25/05/2013     4
## 5013       25/07/2001     4
## 5014       25/07/2004     4
## 5015       25/10/1999     4
## 5016       25/11/2003     4
## 5017       25/11/2004     4
## 5018       25/11/2007     4
## 5019       25/11/2010     4
## 5020       25/11/2012     4
## 5021       25/12/1997     4
## 5022       25/12/2007     4
## 5023       25/12/2013     4
## 5024       26/01/1996     4
## 5025       26/01/2002     4
## 5026       26/01/2014     4
## 5027       26/02/2005     4
## 5028       26/02/2011     4
## 5029       26/03/2011     4
## 5030       26/04/2002     4
## 5031       26/04/2009     4
## 5032       26/05/1996     4
## 5033       26/06/2003     4
## 5034       26/06/2005     4
## 5035       26/06/2011     4
## 5036       26/07/2008     4
## 5037       26/08/1995     4
## 5038       26/08/2006     4
## 5039       26/08/2007     4
## 5040       26/09/1995     4
## 5041       26/09/2002     4
## 5042       26/11/2005     4
## 5043       26/11/2006     4
## 5044       26/12/2005     4
## 5045       26/12/2006     4
## 5046       26/12/2009     4
## 5047       27/02/2001     4
## 5048       27/02/2004     4
## 5049       27/04/2002     4
## 5050       27/05/1998     4
## 5051       27/05/2006     4
## 5052       27/05/2007     4
## 5053       27/06/2001     4
## 5054       27/06/2002     4
## 5055       27/06/2010     4
## 5056       27/07/2000     4
## 5057       27/07/2008     4
## 5058       27/08/2005     4
## 5059       27/08/2006     4
## 5060       27/09/1995     4
## 5061       27/10/1995     4
## 5062       27/11/2010     4
## 5063       27/12/1997     4
## 5064       27/12/2008     4
## 5065       28/01/2003     4
## 5066       28/01/2012     4
## 5067       28/02/2002     4
## 5068       28/02/2003     4
## 5069       28/02/2004     4
## 5070       28/02/2009     4
## 5071       28/03/2000     4
## 5072       28/05/2001     4
## 5073       28/06/2000     4
## 5074       28/07/2007     4
## 5075       28/08/2011     4
## 5076       28/09/1998     4
## 5077       28/09/1999     4
## 5078       28/10/2000     4
## 5079       28/10/2007     4
## 5080       28/10/2012     4
## 5081       28/12/2006     4
## 5082       28/12/2008     4
## 5083       29/01/2001     4
## 5084       29/01/2002     4
## 5085       29/01/2003     4
## 5086       29/01/2006     4
## 5087       29/01/2012     4
## 5088       29/03/2009     4
## 5089       29/05/2002     4
## 5090       29/06/1997     4
## 5091       29/07/2002     4
## 5092       29/08/2001     4
## 5093       29/08/2004     4
## 5094       29/09/1996     4
## 5095       29/09/2003     4
## 5096       29/10/2005     4
## 5097       30/04/2002     4
## 5098       30/06/1999     4
## 5099       30/06/2007     4
## 5100       30/07/2011     4
## 5101       30/08/2000     4
## 5102       30/08/2009     4
## 5103       30/09/1998     4
## 5104       30/11/1996     4
## 5105       30/11/2013     4
## 5106       31/01/1998     4
## 5107       31/01/2000     4
## 5108       31/01/2009     4
## 5109       31/03/2013     4
## 5110       31/05/2000     4
## 5111       31/05/2014     4
## 5112       31/10/2001     4
## 5113       31/10/2002     4
## 5114       31/10/2009     4
## 5115       31/12/2001     4
## 5116       01/01/2001     3
## 5117       01/01/2008     3
## 5118       01/03/1998     3
## 5119       01/03/2008     3
## 5120       01/03/2009     3
## 5121       01/04/2007     3
## 5122       01/05/2011     3
## 5123       01/06/2003     3
## 5124       01/09/2002     3
## 5125       01/11/1998     3
## 5126       01/11/2009     3
## 5127       01/12/2002     3
## 5128       01/12/2013     3
## 5129       02/01/2010     3
## 5130       02/02/2000     3
## 5131       02/03/2000     3
## 5132       02/03/2014     3
## 5133       02/04/1999     3
## 5134       02/06/2013     3
## 5135       02/07/2003     3
## 5136       02/09/1995     3
## 5137       02/09/2006     3
## 5138       02/11/1995     3
## 5139       02/11/1996     3
## 5140       02/11/2008     3
## 5141       02/12/2000     3
## 5142       02/12/2012     3
## 5143       03/01/1998     3
## 5144       03/01/2003     3
## 5145       03/01/2009     3
## 5146       03/02/2007     3
## 5147       03/03/1996     3
## 5148       03/04/2001     3
## 5149       03/04/2004     3
## 5150       03/04/2010     3
## 5151       03/05/1995     3
## 5152       03/06/2000     3
## 5153       03/06/2003     3
## 5154       03/06/2007     3
## 5155       03/07/1999     3
## 5156       03/07/2003     3
## 5157       03/07/2009     3
## 5158       03/09/2000     3
## 5159       03/09/2006     3
## 5160       03/11/1999     3
## 5161       03/11/2007     3
## 5162       03/12/2006     3
## 5163       04/01/1994     3
## 5164       04/01/2000     3
## 5165       04/01/2009     3
## 5166       04/02/2006     3
## 5167       04/03/2000     3
## 5168       04/03/2003     3
## 5169       04/04/2001     3
## 5170       04/05/2001     3
## 5171       04/05/2008     3
## 5172       04/05/2014     3
## 5173       04/06/2002     3
## 5174       04/07/2003     3
## 5175       04/07/2006     3
## 5176       04/07/2009     3
## 5177       04/07/2011     3
## 5178       04/08/1999     3
## 5179       04/08/2001     3
## 5180       04/08/2007     3
## 5181       04/09/2000     3
## 5182       04/10/1995     3
## 5183       04/10/1999     3
## 5184       04/11/2002     3
## 5185       04/12/1998     3
## 5186       04/12/2004     3
## 5187       04/12/2011     3
## 5188       05/02/2012     3
## 5189       05/03/1999     3
## 5190       05/03/2001     3
## 5191       05/04/2000     3
## 5192       05/04/2003     3
## 5193       05/05/2007     3
## 5194       05/06/2004     3
## 5195       05/06/2011     3
## 5196       05/07/1997     3
## 5197       05/08/1998     3
## 5198       05/08/1999     3
## 5199       05/08/2000     3
## 5200       05/08/2002     3
## 5201       05/10/1995     3
## 5202       05/10/2008     3
## 5203       05/11/2002     3
## 5204       05/11/2005     3
## 5205       05/11/2006     3
## 5206       05/12/1995     3
## 5207       05/12/2004     3
## 5208       06/02/2001     3
## 5209       06/04/1995     3
## 5210       06/04/2000     3
## 5211       06/04/2013     3
## 5212       06/06/1998     3
## 5213       06/06/2003     3
## 5214       06/06/2010     3
## 5215       06/07/2008     3
## 5216       06/10/2000     3
## 5217       06/10/2001     3
## 5218       06/11/2004     3
## 5219       06/11/2005     3
## 5220       06/12/1995     3
## 5221       06/12/2003     3
## 5222       07/01/1999     3
## 5223       07/01/2003     3
## 5224       07/01/2006     3
## 5225       07/02/1998     3
## 5226       07/02/2010     3
## 5227       07/03/2001     3
## 5228       07/04/1995     3
## 5229       07/04/1999     3
## 5230       07/05/2000     3
## 5231       07/05/2005     3
## 5232       07/06/2009     3
## 5233       07/07/1995     3
## 5234       07/08/1995     3
## 5235       07/08/2011     3
## 5236       07/09/1995     3
## 5237       07/09/2001     3
## 5238       07/10/1995     3
## 5239       07/10/1998     3
## 5240       07/10/1999     3
## 5241       07/10/2003     3
## 5242       07/11/1994     3
## 5243       07/11/2000     3
## 5244       07/11/2001     3
## 5245       07/11/2010     3
## 5246       07/12/2000     3
## 5247       07/12/2003     3
## 5248       08/01/2006     3
## 5249       08/02/1995     3
## 5250       08/02/1996     3
## 5251       08/02/1998     3
## 5252       08/02/2009     3
## 5253       08/03/1998     3
## 5254       08/03/2008     3
## 5255       08/03/2009     3
## 5256       08/04/1999     3
## 5257       08/04/2002     3
## 5258       08/05/1999     3
## 5259       08/05/2000     3
## 5260       08/05/2004     3
## 5261       08/08/2000     3
## 5262       08/08/2002     3
## 5263       08/08/2010     3
## 5264       08/09/2001     3
## 5265       08/10/2003     3
## 5266       08/11/2002     3
## 5267       09/02/2000     3
## 5268       09/02/2001     3
## 5269       09/02/2008     3
## 5270       09/03/1995     3
## 5271       09/03/1999     3
## 5272       09/03/2000     3
## 5273       09/03/2014     3
## 5274       09/04/2002     3
## 5275       09/06/1998     3
## 5276       09/06/1999     3
## 5277       09/07/2005     3
## 5278       09/08/1995     3
## 5279       09/08/2002     3
## 5280       09/09/1999     3
## 5281       09/09/2006     3
## 5282       09/10/1999     3
## 5283       10/01/2010     3
## 5284       10/03/1996     3
## 5285       10/03/2000     3
## 5286       10/03/2001     3
## 5287       10/03/2013     3
## 5288       10/04/2002     3
## 5289       10/06/2014     3
## 5290       10/07/2011     3
## 5291       10/08/2000     3
## 5292       10/10/2003     3
## 5293       10/10/2009     3
## 5294       10/11/2000     3
## 5295       10/11/2012     3
## 5296       10/12/2006     3
## 5297       11/01/2000     3
## 5298       11/02/2000     3
## 5299       11/03/1999     3
## 5300       11/05/1995     3
## 5301       11/05/1997     3
## 5302       11/05/2008     3
## 5303       11/06/2014     3
## 5304       11/07/2010     3
## 5305       11/10/2001     3
## 5306       11/11/2001     3
## 5307       11/12/2011     3
## 5308       12/01/2001     3
## 5309       12/01/2014     3
## 5310       12/02/1999     3
## 5311       12/02/2003     3
## 5312       12/02/2011     3
## 5313       12/03/2002     3
## 5314       12/03/2006     3
## 5315       12/04/1995     3
## 5316       12/04/2002     3
## 5317       12/04/2014     3
## 5318       12/06/1995     3
## 5319       12/06/2001     3
## 5320       12/07/1999     3
## 5321       12/09/2001     3
## 5322       12/10/2000     3
## 5323       12/11/2006     3
## 5324       12/11/2011     3
## 5325       12/12/2003     3
## 5326       12/12/2004     3
## 5327       13/01/1996     3
## 5328       13/02/2003     3
## 5329       13/03/2004     3
## 5330       13/03/2005     3
## 5331       13/04/1998     3
## 5332       13/05/2003     3
## 5333       13/06/2010     3
## 5334       13/07/2000     3
## 5335       13/07/2002     3
## 5336       13/09/2000     3
## 5337       13/09/2008     3
## 5338       13/10/1998     3
## 5339       13/10/2007     3
## 5340       13/11/2002     3
## 5341       13/12/2000     3
## 5342       13/12/2001     3
## 5343       14/01/2006     3
## 5344       14/02/2002     3
## 5345       14/02/2003     3
## 5346       14/03/2000     3
## 5347       14/03/2009     3
## 5348       14/04/2000     3
## 5349       14/06/2001     3
## 5350       14/08/1999     3
## 5351       14/08/2002     3
## 5352       14/08/2004     3
## 5353       14/09/1995     3
## 5354       14/09/2001     3
## 5355       14/10/1999     3
## 5356       14/11/2002     3
## 5357       14/12/1995     3
## 5358       14/12/2001     3
## 5359       14/12/2008     3
## 5360       15/01/2001     3
## 5361       15/01/2002     3
## 5362       15/01/2012     3
## 5363       15/02/1995     3
## 5364       15/02/1998     3
## 5365       15/02/2009     3
## 5366       15/03/1994     3
## 5367       15/04/2012     3
## 5368       15/05/2001     3
## 5369       15/05/2014     3
## 5370       15/08/1998     3
## 5371       15/08/2003     3
## 5372       15/08/2010     3
## 5373       15/09/1999     3
## 5374       15/11/1998     3
## 5375       15/11/2009     3
## 5376       16/01/1999     3
## 5377       16/02/1994     3
## 5378       16/02/2001     3
## 5379       16/02/2008     3
## 5380       16/06/1996     3
## 5381       16/07/1995     3
## 5382       16/07/1998     3
## 5383       16/08/1998     3
## 5384       16/08/2001     3
## 5385       16/08/2003     3
## 5386       16/11/2000     3
## 5387       16/11/2008     3
## 5388       16/12/2002     3
## 5389       17/01/1998     3
## 5390       17/02/1996     3
## 5391       17/05/2002     3
## 5392       17/06/1999     3
## 5393       17/07/2004     3
## 5394       17/10/1994     3
## 5395       17/10/1998     3
## 5396       17/10/2010     3
## 5397       17/11/1998     3
## 5398       17/12/1994     3
## 5399       17/12/1998     3
## 5400       18/01/2001     3
## 5401       18/02/2005     3
## 5402       18/04/2003     3
## 5403       18/04/2010     3
## 5404       18/08/2000     3
## 5405       18/08/2002     3
## 5406       18/08/2013     3
## 5407       18/09/2001     3
## 5408       18/09/2005     3
## 5409       18/09/2011     3
## 5410       18/10/1999     3
## 5411       18/10/2003     3
## 5412       18/11/1999     3
## 5413       18/11/2000     3
## 5414       18/11/2007     3
## 5415       18/12/2001     3
## 5416       19/01/2000     3
## 5417       19/01/2008     3
## 5418       19/01/2014     3
## 5419       19/03/1999     3
## 5420       19/03/2002     3
## 5421       19/04/2001     3
## 5422       19/04/2003     3
## 5423       19/04/2014     3
## 5424       19/05/2000     3
## 5425       19/05/2001     3
## 5426       19/06/2000     3
## 5427       19/06/2002     3
## 5428       19/06/2005     3
## 5429       19/07/1994     3
## 5430       19/07/2001     3
## 5431       19/07/2008     3
## 5432       19/08/1999     3
## 5433       19/08/2007     3
## 5434       19/09/2000     3
## 5435       19/09/2001     3
## 5436       19/10/1999     3
## 5437       19/10/2000     3
## 5438       19/10/2013     3
## 5439       19/12/2010     3
## 5440       20/01/1996     3
## 5441       20/02/2010     3
## 5442       20/02/2011     3
## 5443       20/03/1995     3
## 5444       20/03/1999     3
## 5445       20/03/2003     3
## 5446       20/03/2011     3
## 5447       20/04/1995     3
## 5448       20/04/2003     3
## 5449       20/04/2008     3
## 5450       20/05/1995     3
## 5451       20/06/2000     3
## 5452       20/07/1995     3
## 5453       20/07/1997     3
## 5454       20/07/1999     3
## 5455       20/07/2000     3
## 5456       20/09/2009     3
## 5457       20/10/1999     3
## 5458       20/10/2012     3
## 5459       20/12/1999     3
## 5460       20/12/2001     3
## 5461       21/02/2000     3
## 5462       21/02/2009     3
## 5463       21/02/2010     3
## 5464       21/03/2001     3
## 5465       21/03/2009     3
## 5466       21/03/2010     3
## 5467       21/04/1995     3
## 5468       21/04/2012     3
## 5469       21/04/2013     3
## 5470       21/06/1995     3
## 5471       21/06/2001     3
## 5472       21/07/1998     3
## 5473       21/07/1999     3
## 5474       21/07/2001     3
## 5475       21/07/2007     3
## 5476       21/07/2012     3
## 5477       21/08/1995     3
## 5478       21/08/2001     3
## 5479       21/09/2000     3
## 5480       21/10/1999     3
## 5481       21/11/1995     3
## 5482       21/11/2001     3
## 5483       21/11/2009     3
## 5484       21/12/1998     3
## 5485       22/01/2006     3
## 5486       22/01/2011     3
## 5487       22/02/2001     3
## 5488       22/02/2003     3
## 5489       22/03/2009     3
## 5490       22/04/2003     3
## 5491       22/04/2007     3
## 5492       22/05/2003     3
## 5493       22/05/2005     3
## 5494       22/08/1995     3
## 5495       22/09/1999     3
## 5496       22/09/2012     3
## 5497       22/11/1995     3
## 5498       22/11/2003     3
## 5499       22/11/2009     3
## 5500       22/12/2001     3
## 5501       22/12/2007     3
## 5502       23/01/2003     3
## 5503       23/01/2011     3
## 5504       23/02/1996     3
## 5505       23/02/2001     3
## 5506       23/03/1999     3
## 5507       23/03/2000     3
## 5508       23/05/2000     3
## 5509       23/05/2009     3
## 5510       23/05/2014     3
## 5511       23/06/2001     3
## 5512       23/07/1999     3
## 5513       23/08/2000     3
## 5514       23/08/2003     3
## 5515       23/09/2000     3
## 5516       23/09/2007     3
## 5517       23/10/2002     3
## 5518       23/10/2004     3
## 5519       23/11/2003     3
## 5520       23/12/1998     3
## 5521       23/12/2000     3
## 5522       23/12/2002     3
## 5523       23/12/2005     3
## 5524       24/01/2010     3
## 5525       24/02/1999     3
## 5526       24/02/2000     3
## 5527       24/02/2007     3
## 5528       24/02/2008     3
## 5529       24/02/2013     3
## 5530       24/03/2002     3
## 5531       24/05/1998     3
## 5532       24/07/1998     3
## 5533       24/07/2000     3
## 5534       24/08/1994     3
## 5535       24/08/1997     3
## 5536       24/08/2001     3
## 5537       24/08/2002     3
## 5538       24/08/2003     3
## 5539       24/09/2006     3
## 5540       24/10/2010     3
## 5541       25/02/2003     3
## 5542       25/03/1999     3
## 5543       25/03/2012     3
## 5544       25/04/1995     3
## 5545       25/05/1995     3
## 5546       25/05/1999     3
## 5547       25/05/2002     3
## 5548       25/06/1995     3
## 5549       25/06/2003     3
## 5550       25/06/2006     3
## 5551       25/07/2000     3
## 5552       25/08/1998     3
## 5553       25/08/2002     3
## 5554       25/08/2007     3
## 5555       25/09/1999     3
## 5556       25/09/2000     3
## 5557       25/09/2001     3
## 5558       25/09/2011     3
## 5559       25/10/2009     3
## 5560       25/12/2006     3
## 5561       26/04/2000     3
## 5562       26/05/1994     3
## 5563       26/05/2013     3
## 5564       26/05/2014     3
## 5565       26/06/1995     3
## 5566       26/06/2001     3
## 5567       26/06/2004     3
## 5568       26/06/2010     3
## 5569       26/06/2014     3
## 5570       26/07/1999     3
## 5571       26/07/2000     3
## 5572       26/07/2002     3
## 5573       26/09/2000     3
## 5574       26/09/2004     3
## 5575       26/10/1998     3
## 5576       26/10/1999     3
## 5577       26/11/2003     3
## 5578       26/12/2010     3
## 5579       27/01/2001     3
## 5580       27/01/2003     3
## 5581       27/02/2011     3
## 5582       27/03/1995     3
## 5583       27/03/2004     3
## 5584       27/03/2005     3
## 5585       27/03/2010     3
## 5586       27/05/1999     3
## 5587       27/06/2003     3
## 5588       27/06/2004     3
## 5589       27/07/2002     3
## 5590       27/08/1998     3
## 5591       27/08/2002     3
## 5592       27/09/2009     3
## 5593       27/10/1994     3
## 5594       27/11/2000     3
## 5595       27/12/2001     3
## 5596       27/12/2013     3
## 5597       28/01/1996     3
## 5598       28/01/1999     3
## 5599       28/01/2006     3
## 5600       28/02/1998     3
## 5601       28/02/1999     3
## 5602       28/03/1998     3
## 5603       28/03/2003     3
## 5604       28/03/2009     3
## 5605       28/04/2000     3
## 5606       28/04/2012     3
## 5607       28/05/2002     3
## 5608       28/06/1999     3
## 5609       28/07/1995     3
## 5610       28/07/1999     3
## 5611       28/07/2000     3
## 5612       28/07/2012     3
## 5613       28/09/1995     3
## 5614       28/09/2002     3
## 5615       28/12/1997     3
## 5616       28/12/2000     3
## 5617       28/12/2001     3
## 5618       28/12/2007     3
## 5619       29/01/2000     3
## 5620       29/02/2004     3
## 5621       29/03/1998     3
## 5622       29/03/2008     3
## 5623       29/04/2012     3
## 5624       29/05/2000     3
## 5625       29/05/2005     3
## 5626       29/05/2011     3
## 5627       29/06/1994     3
## 5628       29/06/1995     3
## 5629       29/06/2008     3
## 5630       29/07/2000     3
## 5631       29/08/2009     3
## 5632       29/09/1998     3
## 5633       29/10/1999     3
## 5634       29/11/1995     3
## 5635       29/11/1998     3
## 5636       29/11/1999     3
## 5637       29/11/2000     3
## 5638       30/01/1995     3
## 5639       30/01/2001     3
## 5640       30/01/2011     3
## 5641       30/03/1999     3
## 5642       30/03/2003     3
## 5643       30/04/2006     3
## 5644       30/04/2011     3
## 5645       30/05/1993     3
## 5646       30/05/1995     3
## 5647       30/05/2001     3
## 5648       30/06/1995     3
## 5649       30/06/2000     3
## 5650       30/07/2003     3
## 5651       30/08/1995     3
## 5652       30/08/1998     3
## 5653       30/08/1999     3
## 5654       30/08/2001     3
## 5655       30/10/1995     3
## 5656       30/10/1999     3
## 5657       30/10/2000     3
## 5658       30/10/2003     3
## 5659       30/10/2005     3
## 5660       30/11/2000     3
## 5661       31/01/2004     3
## 5662       31/03/2001     3
## 5663       31/03/2007     3
## 5664       31/05/1998     3
## 5665       31/07/1995     3
## 5666       31/07/2002     3
## 5667       31/07/2005     3
## 5668       31/07/2010     3
## 5669       31/08/2000     3
## 5670       31/08/2001     3
## 5671       31/10/1995     3
## 5672       31/12/2002     3
## 5673       31/12/2004     3
## 5674       31/12/2006     3
## 5675       31/12/2011     3
## 5676       01/01/1999     2
## 5677       01/01/2002     2
## 5678       01/01/2003     2
## 5679       01/02/1998     2
## 5680       01/02/2002     2
## 5681       01/02/2003     2
## 5682       01/02/2004     2
## 5683       01/03/1993     2
## 5684       01/03/1995     2
## 5685       01/03/2001     2
## 5686       01/03/2003     2
## 5687       01/04/2000     2
## 5688       01/05/1999     2
## 5689       01/06/2000     2
## 5690       01/06/2002     2
## 5691       01/07/2012     2
## 5692       01/08/1995     2
## 5693       01/08/1998     2
## 5694       01/09/1995     2
## 5695       01/11/2003     2
## 5696       01/12/2000     2
## 5697       02/02/2014     2
## 5698       02/03/1995     2
## 5699       02/03/2008     2
## 5700       02/04/2000     2
## 5701       02/04/2003     2
## 5702       02/05/1998     2
## 5703       02/05/2001     2
## 5704       02/05/2004     2
## 5705       02/05/2010     2
## 5706       02/06/1995     2
## 5707       02/06/1999     2
## 5708       02/07/2000     2
## 5709       02/07/2006     2
## 5710       02/07/2011     2
## 5711       02/08/1998     2
## 5712       02/08/2002     2
## 5713       02/08/2009     2
## 5714       02/10/2002     2
## 5715       02/10/2010     2
## 5716       02/12/1994     2
## 5717       03/01/2001     2
## 5718       03/01/2004     2
## 5719       03/02/1996     2
## 5720       03/02/2001     2
## 5721       03/02/2008     2
## 5722       03/03/2000     2
## 5723       03/04/1995     2
## 5724       03/04/2003     2
## 5725       03/04/2005     2
## 5726       03/05/2001     2
## 5727       03/05/2003     2
## 5728       03/05/2008     2
## 5729       03/07/1998     2
## 5730       03/08/2001     2
## 5731       03/08/2008     2
## 5732       03/08/2013     2
## 5733       03/09/1999     2
## 5734       03/10/1994     2
## 5735       03/10/1998     2
## 5736       03/11/2002     2
## 5737       03/12/1998     2
## 5738       04/01/2001     2
## 5739       04/01/2003     2
## 5740       04/03/2007     2
## 5741       04/06/1999     2
## 5742       04/09/1995     2
## 5743       04/09/1998     2
## 5744       04/09/2005     2
## 5745       04/10/1994     2
## 5746       04/10/1998     2
## 5747       04/10/2009     2
## 5748       04/11/1999     2
## 5749       04/12/1999     2
## 5750       05/01/2000     2
## 5751       05/01/2014     2
## 5752       05/02/2000     2
## 5753       05/02/2011     2
## 5754       05/05/2000     2
## 5755       05/05/2002     2
## 5756       05/05/2012     2
## 5757       05/06/1995     2
## 5758       05/06/1999     2
## 5759       05/06/2005     2
## 5760       05/06/2010     2
## 5761       05/07/1994     2
## 5762       05/07/1995     2
## 5763       05/07/2001     2
## 5764       05/07/2002     2
## 5765       05/09/1995     2
## 5766       05/09/1998     2
## 5767       05/10/1998     2
## 5768       05/11/1998     2
## 5769       05/11/1999     2
## 5770       05/12/2010     2
## 5771       06/01/1999     2
## 5772       06/01/2008     2
## 5773       06/02/1995     2
## 5774       06/02/2002     2
## 5775       06/02/2010     2
## 5776       06/03/2000     2
## 5777       06/03/2005     2
## 5778       06/03/2010     2
## 5779       06/04/1994     2
## 5780       06/04/2001     2
## 5781       06/06/1995     2
## 5782       06/07/1994     2
## 5783       06/07/2000     2
## 5784       06/07/2002     2
## 5785       06/07/2013     2
## 5786       06/08/1999     2
## 5787       06/08/2000     2
## 5788       06/09/1999     2
## 5789       06/09/2009     2
## 5790       06/11/2002     2
## 5791       06/12/1998     2
## 5792       06/12/2001     2
## 5793       06/12/2008     2
## 5794       07/01/2012     2
## 5795       07/03/2004     2
## 5796       07/03/2010     2
## 5797       07/06/2001     2
## 5798       07/07/2000     2
## 5799       07/07/2007     2
## 5800       07/08/2004     2
## 5801       07/08/2010     2
## 5802       07/09/1997     2
## 5803       07/09/2003     2
## 5804       07/10/2007     2
## 5805       07/11/1998     2
## 5806       07/11/2004     2
## 5807       07/12/1994     2
## 5808       08/02/2001     2
## 5809       08/02/2004     2
## 5810       08/03/2001     2
## 5811       08/03/2003     2
## 5812       08/05/2001     2
## 5813       08/05/2005     2
## 5814       08/06/2000     2
## 5815       08/06/2008     2
## 5816       08/07/1994     2
## 5817       08/07/1999     2
## 5818       08/07/2006     2
## 5819       08/08/1999     2
## 5820       08/09/1999     2
## 5821       08/09/2000     2
## 5822       08/09/2012     2
## 5823       08/10/1995     2
## 5824       08/11/2009     2
## 5825       08/12/1999     2
## 5826       08/12/2007     2
## 5827       09/01/1994     2
## 5828       09/01/2005     2
## 5829       09/01/2011     2
## 5830       09/02/1999     2
## 5831       09/02/2014     2
## 5832       09/03/1992     2
## 5833       09/03/2001     2
## 5834       09/03/2008     2
## 5835       09/03/2013     2
## 5836       09/05/2002     2
## 5837       09/06/2000     2
## 5838       09/06/2013     2
## 5839       09/07/1998     2
## 5840       09/08/1994     2
## 5841       09/08/1998     2
## 5842       09/08/2003     2
## 5843       09/09/1995     2
## 5844       09/09/1998     2
## 5845       09/09/2000     2
## 5846       09/09/2007     2
## 5847       09/11/1995     2
## 5848       09/11/2001     2
## 5849       09/11/2003     2
## 5850       09/12/2000     2
## 5851       10/01/2003     2
## 5852       10/02/1995     2
## 5853       10/02/1996     2
## 5854       10/02/1999     2
## 5855       10/02/2000     2
## 5856       10/02/2001     2
## 5857       10/04/1999     2
## 5858       10/05/1998     2
## 5859       10/06/2007     2
## 5860       10/07/1995     2
## 5861       10/07/1999     2
## 5862       10/07/2003     2
## 5863       10/08/1995     2
## 5864       10/08/1999     2
## 5865       10/08/2001     2
## 5866       10/08/2003     2
## 5867       10/09/2000     2
## 5868       10/10/2010     2
## 5869       10/11/1995     2
## 5870       10/11/2001     2
## 5871       10/11/2007     2
## 5872       11/02/1996     2
## 5873       11/03/2001     2
## 5874       11/04/1998     2
## 5875       11/04/2001     2
## 5876       11/04/2009     2
## 5877       11/04/2010     2
## 5878       11/05/2014     2
## 5879       11/06/2000     2
## 5880       11/06/2002     2
## 5881       11/06/2006     2
## 5882       11/07/1994     2
## 5883       11/07/2000     2
## 5884       11/08/1995     2
## 5885       11/08/2001     2
## 5886       11/08/2002     2
## 5887       11/09/1992     2
## 5888       11/09/2001     2
## 5889       11/11/1998     2
## 5890       11/11/2007     2
## 5891       11/11/2012     2
## 5892       11/12/1995     2
## 5893       12/01/2002     2
## 5894       12/02/1998     2
## 5895       12/02/2000     2
## 5896       12/02/2012     2
## 5897       12/03/2011     2
## 5898       12/04/1998     2
## 5899       12/04/2000     2
## 5900       12/04/2001     2
## 5901       12/04/2008     2
## 5902       12/05/2000     2
## 5903       12/05/2007     2
## 5904       12/06/1999     2
## 5905       12/07/1993     2
## 5906       12/07/1998     2
## 5907       12/07/2000     2
## 5908       12/07/2008     2
## 5909       12/08/2007     2
## 5910       12/10/1994     2
## 5911       12/10/2008     2
## 5912       12/12/1994     2
## 5913       13/01/2001     2
## 5914       13/01/2008     2
## 5915       13/02/1995     2
## 5916       13/02/2011     2
## 5917       13/03/1999     2
## 5918       13/03/2002     2
## 5919       13/03/2011     2
## 5920       13/04/1994     2
## 5921       13/05/2000     2
## 5922       13/05/2001     2
## 5923       13/06/1994     2
## 5924       13/06/1995     2
## 5925       13/06/2004     2
## 5926       13/07/1995     2
## 5927       13/07/1999     2
## 5928       13/07/2001     2
## 5929       13/07/2003     2
## 5930       13/08/1992     2
## 5931       13/09/1995     2
## 5932       13/09/2003     2
## 5933       13/09/2009     2
## 5934       13/10/2001     2
## 5935       13/10/2002     2
## 5936       13/11/1998     2
## 5937       13/11/1999     2
## 5938       13/11/2010     2
## 5939       13/12/2003     2
## 5940       14/01/2000     2
## 5941       14/02/2004     2
## 5942       14/02/2009     2
## 5943       14/03/2003     2
## 5944       14/05/1999     2
## 5945       14/06/1995     2
## 5946       14/06/2014     2
## 5947       14/07/1998     2
## 5948       14/07/2002     2
## 5949       14/09/1999     2
## 5950       14/09/2000     2
## 5951       14/09/2003     2
## 5952       14/11/2004     2
## 5953       14/11/2010     2
## 5954       14/12/1997     2
## 5955       14/12/1999     2
## 5956       15/01/2003     2
## 5957       15/02/2000     2
## 5958       15/02/2001     2
## 5959       15/03/2001     2
## 5960       15/04/1999     2
## 5961       15/04/2000     2
## 5962       15/05/1999     2
## 5963       15/07/1995     2
## 5964       15/08/1994     2
## 5965       15/08/1995     2
## 5966       15/09/1994     2
## 5967       15/10/1999     2
## 5968       15/10/2000     2
## 5969       15/11/2001     2
## 5970       15/11/2002     2
## 5971       15/12/1999     2
## 5972       15/12/2000     2
## 5973       15/12/2001     2
## 5974       15/12/2002     2
## 5975       16/01/2002     2
## 5976       16/01/2005     2
## 5977       16/02/1995     2
## 5978       16/02/2002     2
## 5979       16/03/1999     2
## 5980       16/03/2013     2
## 5981       16/04/2006     2
## 5982       16/04/2011     2
## 5983       16/05/2004     2
## 5984       16/05/2009     2
## 5985       16/06/2000     2
## 5986       16/06/2002     2
## 5987       16/07/1999     2
## 5988       16/08/2009     2
## 5989       16/09/1999     2
## 5990       16/10/2001     2
## 5991       16/10/2004     2
## 5992       16/10/2005     2
## 5993       16/11/1995     2
## 5994       16/11/2001     2
## 5995       16/12/1999     2
## 5996       17/01/2000     2
## 5997       17/01/2004     2
## 5998       17/02/2001     2
## 5999       17/03/2001     2
## 6000       17/03/2002     2
## 6001       17/05/2000     2
## 6002       17/05/2001     2
## 6003       17/05/2003     2
## 6004       17/05/2008     2
## 6005       17/05/2014     2
## 6006       17/06/2001     2
## 6007       17/06/2006     2
## 6008       17/07/2005     2
## 6009       17/08/1995     2
## 6010       17/08/2000     2
## 6011       17/08/2001     2
## 6012       17/08/2002     2
## 6013       17/08/2008     2
## 6014       17/10/1995     2
## 6015       17/12/1995     2
## 6016       17/12/1999     2
## 6017       18/01/1999     2
## 6018       18/01/2004     2
## 6019       18/02/2006     2
## 6020       18/03/2001     2
## 6021       18/03/2003     2
## 6022       18/03/2006     2
## 6023       18/03/2007     2
## 6024       18/04/2001     2
## 6025       18/05/2003     2
## 6026       18/06/1999     2
## 6027       18/08/2001     2
## 6028       18/09/1993     2
## 6029       18/09/2004     2
## 6030       18/10/1995     2
## 6031       18/10/2001     2
## 6032       18/10/2009     2
## 6033       18/12/1999     2
## 6034       18/12/2005     2
## 6035       18/12/2010     2
## 6036       18/12/2011     2
## 6037       19/03/2005     2
## 6038       19/04/1995     2
## 6039       19/05/2002     2
## 6040       19/05/2012     2
## 6041       19/07/1995     2
## 6042       19/07/1998     2
## 6043       19/07/2003     2
## 6044       19/07/2009     2
## 6045       19/08/1998     2
## 6046       19/08/2012     2
## 6047       19/09/1994     2
## 6048       19/10/1995     2
## 6049       19/10/2008     2
## 6050       19/11/1994     2
## 6051       19/12/1994     2
## 6052       19/12/1995     2
## 6053       19/12/2000     2
## 6054       19/12/2001     2
## 6055       19/12/2004     2
## 6056       20/01/2002     2
## 6057       20/02/2003     2
## 6058       20/04/1999     2
## 6059       20/04/2001     2
## 6060       20/04/2002     2
## 6061       20/06/1994     2
## 6062       20/08/1993     2
## 6063       20/08/2000     2
## 6064       20/09/1999     2
## 6065       20/10/1995     2
## 6066       20/10/1998     2
## 6067       20/10/2000     2
## 6068       20/11/1995     2
## 6069       20/11/2001     2
## 6070       20/11/2005     2
## 6071       20/12/1993     2
## 6072       20/12/1995     2
## 6073       20/12/2008     2
## 6074       21/01/1996     2
## 6075       21/02/1999     2
## 6076       21/02/2001     2
## 6077       21/03/2000     2
## 6078       21/04/1993     2
## 6079       21/04/2001     2
## 6080       21/06/1998     2
## 6081       21/07/2000     2
## 6082       21/07/2002     2
## 6083       21/09/2001     2
## 6084       21/12/2001     2
## 6085       21/12/2002     2
## 6086       21/12/2003     2
## 6087       22/01/1993     2
## 6088       22/03/1998     2
## 6089       22/05/1995     2
## 6090       22/05/1999     2
## 6091       22/06/2000     2
## 6092       22/08/1998     2
## 6093       22/08/2000     2
## 6094       22/09/1995     2
## 6095       22/10/1999     2
## 6096       22/10/2001     2
## 6097       22/10/2005     2
## 6098       22/10/2006     2
## 6099       22/11/2000     2
## 6100       22/11/2007     2
## 6101       23/01/1999     2
## 6102       23/01/2001     2
## 6103       23/01/2002     2
## 6104       23/02/1994     2
## 6105       23/02/2013     2
## 6106       23/03/2001     2
## 6107       23/03/2002     2
## 6108       23/03/2008     2
## 6109       23/04/2005     2
## 6110       23/05/1998     2
## 6111       23/06/2000     2
## 6112       23/06/2002     2
## 6113       23/08/2008     2
## 6114       23/09/1995     2
## 6115       23/10/2005     2
## 6116       23/11/1994     2
## 6117       23/11/1997     2
## 6118       23/11/2000     2
## 6119       23/11/2002     2
## 6120       24/01/1994     2
## 6121       24/01/1995     2
## 6122       24/01/2001     2
## 6123       24/01/2004     2
## 6124       24/01/2009     2
## 6125       24/03/2013     2
## 6126       24/04/1995     2
## 6127       24/04/1999     2
## 6128       24/04/2011     2
## 6129       24/05/1994     2
## 6130       24/05/2000     2
## 6131       24/05/2003     2
## 6132       24/06/1999     2
## 6133       24/06/2007     2
## 6134       24/08/2008     2
## 6135       24/09/2011     2
## 6136       24/10/2001     2
## 6137       24/10/2009     2
## 6138       24/11/1999     2
## 6139       24/11/2006     2
## 6140       24/11/2007     2
## 6141       24/12/1995     2
## 6142       24/12/1997     2
## 6143       24/12/2007     2
## 6144       25/01/1998     2
## 6145       25/01/2000     2
## 6146       25/01/2004     2
## 6147       25/02/1999     2
## 6148       25/04/1994     2
## 6149       25/04/2001     2
## 6150       25/05/2003     2
## 6151       25/05/2014     2
## 6152       25/06/1998     2
## 6153       25/06/2005     2
## 6154       25/07/1995     2
## 6155       25/07/1998     2
## 6156       25/08/1999     2
## 6157       25/08/2000     2
## 6158       25/09/1995     2
## 6159       25/10/1995     2
## 6160       25/10/1998     2
## 6161       25/10/2000     2
## 6162       25/10/2002     2
## 6163       25/10/2008     2
## 6164       25/11/1998     2
## 6165       25/12/1995     2
## 6166       25/12/2003     2
## 6167       25/12/2004     2
## 6168       25/12/2005     2
## 6169       25/12/2008     2
## 6170       25/12/2009     2
## 6171       25/12/2010     2
## 6172       25/12/2012     2
## 6173       26/01/1995     2
## 6174       26/02/1993     2
## 6175       26/03/2006     2
## 6176       26/04/1998     2
## 6177       26/04/2014     2
## 6178       26/05/1999     2
## 6179       26/07/1998     2
## 6180       26/07/2003     2
## 6181       26/07/2009     2
## 6182       26/08/1998     2
## 6183       26/09/1998     2
## 6184       26/09/2001     2
## 6185       26/09/2009     2
## 6186       26/09/2010     2
## 6187       26/10/1994     2
## 6188       26/10/2000     2
## 6189       26/10/2002     2
## 6190       26/11/2000     2
## 6191       26/12/2008     2
## 6192       27/01/1994     2
## 6193       27/01/1996     2
## 6194       27/01/2008     2
## 6195       27/04/1997     2
## 6196       27/05/2002     2
## 6197       27/05/2012     2
## 6198       27/07/1994     2
## 6199       27/07/1999     2
## 6200       27/09/2003     2
## 6201       27/10/2013     2
## 6202       27/11/1997     2
## 6203       27/11/1998     2
## 6204       27/11/2008     2
## 6205       28/02/1994     2
## 6206       28/02/2010     2
## 6207       28/03/2010     2
## 6208       28/04/2001     2
## 6209       28/04/2002     2
## 6210       28/05/2003     2
## 6211       28/05/2005     2
## 6212       28/05/2012     2
## 6213       28/06/2003     2
## 6214       28/09/1997     2
## 6215       28/09/2001     2
## 6216       28/10/1995     2
## 6217       28/10/1999     2
## 6218       28/10/2001     2
## 6219       28/10/2006     2
## 6220       28/11/1995     2
## 6221       28/11/2008     2
## 6222       28/11/2010     2
## 6223       28/12/2002     2
## 6224       28/12/2003     2
## 6225       29/01/2011     2
## 6226       29/03/1995     2
## 6227       29/03/1999     2
## 6228       29/03/2000     2
## 6229       29/03/2003     2
## 6230       29/04/1993     2
## 6231       29/04/2000     2
## 6232       29/05/1995     2
## 6233       29/05/2010     2
## 6234       29/06/1999     2
## 6235       29/06/2000     2
## 6236       29/07/2007     2
## 6237       29/08/2002     2
## 6238       29/08/2010     2
## 6239       29/09/1995     2
## 6240       29/09/2000     2
## 6241       29/09/2001     2
## 6242       29/10/1998     2
## 6243       29/10/2006     2
## 6244       29/11/2002     2
## 6245       29/12/1995     2
## 6246       29/12/2007     2
## 6247       30/05/1998     2
## 6248       30/05/2009     2
## 6249       30/06/2012     2
## 6250       30/07/1999     2
## 6251       30/07/2002     2
## 6252       30/07/2006     2
## 6253       30/09/1994     2
## 6254       30/09/1999     2
## 6255       30/09/2012     2
## 6256       30/10/2011     2
## 6257       30/11/1995     2
## 6258       30/11/1999     2
## 6259       30/11/2001     2
## 6260       30/12/1993     2
## 6261       30/12/1998     2
## 6262       31/01/1996     2
## 6263       31/01/2001     2
## 6264       31/03/2012     2
## 6265       31/05/1995     2
## 6266       31/05/1999     2
## 6267       31/05/2001     2
## 6268       31/05/2008     2
## 6269       31/05/2009     2
## 6270       31/07/2003     2
## 6271       31/07/2011     2
## 6272       31/08/1997     2
## 6273       31/10/2000     2
## 6274       31/10/2010     2
## 6275       31/12/1999     2
## 6276       01/01/1984     1
## 6277       01/01/1994     1
## 6278       01/01/1996     1
## 6279       01/02/1992     1
## 6280       01/02/1995     1
## 6281       01/03/1983     1
## 6282       01/04/1992     1
## 6283       01/04/1994     1
## 6284       01/04/1995     1
## 6285       01/04/2001     1
## 6286       01/05/1992     1
## 6287       01/05/1993     1
## 6288       01/06/1992     1
## 6289       01/06/1994     1
## 6290       01/07/1995     1
## 6291       01/07/2001     1
## 6292       01/08/1993     1
## 6293       01/08/1994     1
## 6294       01/09/1989     1
## 6295       01/09/1994     1
## 6296       01/10/1992     1
## 6297       01/10/1993     1
## 6298       01/10/1999     1
## 6299       01/10/2000     1
## 6300       01/12/1994     1
## 6301       01/12/1999     1
## 6302       01/12/2001     1
## 6303       02/01/1991     1
## 6304       02/01/1999     1
## 6305       02/02/1993     1
## 6306       02/02/1995     1
## 6307       02/02/2001     1
## 6308       02/02/2003     1
## 6309       02/03/1990     1
## 6310       02/03/1992     1
## 6311       02/03/1994     1
## 6312       02/04/2005     1
## 6313       02/05/1989     1
## 6314       02/05/1994     1
## 6315       02/05/1995     1
## 6316       02/06/1993     1
## 6317       02/06/2000     1
## 6318       02/07/1999     1
## 6319       02/08/1994     1
## 6320       02/08/2001     1
## 6321       02/08/2003     1
## 6322       02/10/1993     1
## 6323       02/11/1999     1
## 6324       02/11/2001     1
## 6325       02/12/1991     1
## 6326       02/12/1993     1
## 6327       02/12/2001     1
## 6328       02/12/2007     1
## 6329       03/01/1994     1
## 6330       03/01/1995     1
## 6331       03/01/1999     1
## 6332       03/03/2002     1
## 6333       03/04/1999     1
## 6334       03/05/1994     1
## 6335       03/05/1998     1
## 6336       03/05/2014     1
## 6337       03/06/1999     1
## 6338       03/07/2001     1
## 6339       03/07/2004     1
## 6340       03/07/2011     1
## 6341       03/08/1994     1
## 6342       03/08/2002     1
## 6343       03/09/1995     1
## 6344       03/10/1995     1
## 6345       03/10/2000     1
## 6346       03/11/1991     1
## 6347       03/11/2001     1
## 6348       03/12/1991     1
## 6349       03/12/1995     1
## 6350       03/12/1999     1
## 6351       03/12/2000     1
## 6352       03/12/2001     1
## 6353       04/01/1995     1
## 6354       04/02/1988     1
## 6355       04/02/1994     1
## 6356       04/02/1996     1
## 6357       04/02/2000     1
## 6358       04/04/1993     1
## 6359       04/04/1999     1
## 6360       04/04/2002     1
## 6361       04/04/2010     1
## 6362       04/05/1995     1
## 6363       04/05/2002     1
## 6364       04/06/1995     1
## 6365       04/07/1998     1
## 6366       04/07/2000     1
## 6367       04/08/1993     1
## 6368       04/08/1995     1
## 6369       04/08/2000     1
## 6370       04/08/2002     1
## 6371       04/09/1999     1
## 6372       04/10/2003     1
## 6373       04/11/1994     1
## 6374       04/11/1995     1
## 6375       04/11/2000     1
## 6376       04/11/2001     1
## 6377       04/12/1989     1
## 6378       04/12/1992     1
## 6379       05/01/1979     1
## 6380       05/01/1991     1
## 6381       05/03/2002     1
## 6382       05/04/1993     1
## 6383       05/04/1998     1
## 6384       05/04/2001     1
## 6385       05/04/2008     1
## 6386       05/05/1995     1
## 6387       05/05/1999     1
## 6388       05/06/1994     1
## 6389       05/07/1992     1
## 6390       05/07/1998     1
## 6391       05/07/1999     1
## 6392       05/07/2000     1
## 6393       05/07/2008     1
## 6394       05/08/1991     1
## 6395       05/08/1994     1
## 6396       05/09/1994     1
## 6397       05/09/1999     1
## 6398       05/09/2003     1
## 6399       05/10/2001     1
## 6400       05/10/2003     1
## 6401       05/12/2001     1
## 6402       05/12/2002     1
## 6403       06/01/1994     1
## 6404       06/01/1996     1
## 6405       06/01/2000     1
## 6406       06/01/2001     1
## 6407       06/02/2011     1
## 6408       06/03/1995     1
## 6409       06/03/2011     1
## 6410       06/04/1999     1
## 6411       06/04/2002     1
## 6412       06/05/2000     1
## 6413       06/05/2001     1
## 6414       06/05/2007     1
## 6415       06/05/2012     1
## 6416       06/06/1994     1
## 6417       06/06/1999     1
## 6418       06/06/2009     1
## 6419       06/07/2003     1
## 6420       06/08/2003     1
## 6421       06/09/1988     1
## 6422       06/09/1995     1
## 6423       06/09/2001     1
## 6424       06/09/2003     1
## 6425       06/10/1993     1
## 6426       06/10/1995     1
## 6427       06/10/2002     1
## 6428       06/11/1994     1
## 6429       07/01/2000     1
## 6430       07/01/2001     1
## 6431       07/02/1989     1
## 6432       07/02/1999     1
## 6433       07/02/2002     1
## 6434       07/03/1991     1
## 6435       07/03/1994     1
## 6436       07/03/1995     1
## 6437       07/04/1993     1
## 6438       07/04/1994     1
## 6439       07/04/2000     1
## 6440       07/04/2001     1
## 6441       07/06/1995     1
## 6442       07/06/1998     1
## 6443       07/06/2003     1
## 6444       07/07/2001     1
## 6445       07/08/2000     1
## 6446       07/09/2002     1
## 6447       07/10/2001     1
## 6448       07/11/1993     1
## 6449       07/11/2009     1
## 6450       07/12/1992     1
## 6451       07/12/1993     1
## 6452       07/12/2008     1
## 6453       08/02/2003     1
## 6454       08/03/1993     1
## 6455       08/04/1994     1
## 6456       08/04/2007     1
## 6457       08/06/1993     1
## 6458       08/06/1994     1
## 6459       08/06/1999     1
## 6460       08/06/2001     1
## 6461       08/07/1995     1
## 6462       08/07/2000     1
## 6463       08/07/2001     1
## 6464       08/08/1995     1
## 6465       08/08/2001     1
## 6466       08/09/1994     1
## 6467       08/10/1990     1
## 6468       08/10/1999     1
## 6469       08/11/1994     1
## 6470       08/11/1999     1
## 6471       08/11/2003     1
## 6472       08/12/2001     1
## 6473       09/01/1999     1
## 6474       09/01/2000     1
## 6475       09/02/1993     1
## 6476       09/02/2002     1
## 6477       09/03/1994     1
## 6478       09/03/2002     1
## 6479       09/03/2003     1
## 6480       09/04/1991     1
## 6481       09/04/1992     1
## 6482       09/04/1994     1
## 6483       09/04/2000     1
## 6484       09/05/1994     1
## 6485       09/05/1995     1
## 6486       09/05/2000     1
## 6487       09/06/1993     1
## 6488       09/07/2003     1
## 6489       09/07/2006     1
## 6490       09/08/1990     1
## 6491       09/09/2001     1
## 6492       09/11/1993     1
## 6493       09/12/1995     1
## 6494       10/01/1999     1
## 6495       10/02/1994     1
## 6496       10/02/2007     1
## 6497       10/03/1995     1
## 6498       10/03/2002     1
## 6499       10/04/2004     1
## 6500       10/05/1992     1
## 6501       10/05/2003     1
## 6502       10/08/1987     1
## 6503       10/08/1993     1
## 6504       10/09/1994     1
## 6505       10/10/1990     1
## 6506       10/10/1998     1
## 6507       10/10/1999     1
## 6508       10/10/2001     1
## 6509       10/10/2004     1
## 6510       10/11/1993     1
## 6511       10/11/1994     1
## 6512       10/11/2002     1
## 6513       10/12/1995     1
## 6514       10/12/1999     1
## 6515       11/01/2001     1
## 6516       11/01/2003     1
## 6517       11/01/2009     1
## 6518       11/02/1994     1
## 6519       11/02/1995     1
## 6520       11/02/2001     1
## 6521       11/02/2012     1
## 6522       11/03/2000     1
## 6523       11/04/1994     1
## 6524       11/04/1995     1
## 6525       11/04/1999     1
## 6526       11/05/1999     1
## 6527       11/05/2000     1
## 6528       11/05/2001     1
## 6529       11/05/2002     1
## 6530       11/05/2003     1
## 6531       11/07/2001     1
## 6532       11/08/1994     1
## 6533       11/09/1993     1
## 6534       11/09/2005     1
## 6535       11/10/1994     1
## 6536       11/10/1998     1
## 6537       11/10/2003     1
## 6538       11/11/1995     1
## 6539       11/11/2000     1
## 6540       11/12/1998     1
## 6541       11/12/2010     1
## 6542       12/01/1993     1
## 6543       12/01/2000     1
## 6544       12/02/1995     1
## 6545       12/03/2003     1
## 6546       12/04/2003     1
## 6547       12/05/1993     1
## 6548       12/05/1995     1
## 6549       12/05/2001     1
## 6550       12/05/2002     1
## 6551       12/06/1989     1
## 6552       12/08/1994     1
## 6553       12/08/1995     1
## 6554       12/08/1999     1
## 6555       12/09/1994     1
## 6556       12/09/1995     1
## 6557       12/09/2000     1
## 6558       12/10/2002     1
## 6559       12/11/1986     1
## 6560       12/12/1993     1
## 6561       12/12/1998     1
## 6562       12/12/2010     1
## 6563       13/01/1995     1
## 6564       13/01/2002     1
## 6565       13/02/1989     1
## 6566       13/02/2001     1
## 6567       13/02/2005     1
## 6568       13/03/1995     1
## 6569       13/03/2001     1
## 6570       13/04/1993     1
## 6571       13/04/2000     1
## 6572       13/04/2001     1
## 6573       13/04/2002     1
## 6574       13/04/2003     1
## 6575       13/04/2008     1
## 6576       13/05/1999     1
## 6577       13/05/2007     1
## 6578       13/06/1998     1
## 6579       13/06/2001     1
## 6580       13/07/2008     1
## 6581       13/08/1994     1
## 6582       13/08/1995     1
## 6583       13/08/1999     1
## 6584       13/08/2000     1
## 6585       13/09/1992     1
## 6586       13/09/1993     1
## 6587       13/09/1994     1
## 6588       13/09/1998     1
## 6589       13/10/1994     1
## 6590       13/11/1991     1
## 6591       13/12/1993     1
## 6592       13/12/2009     1
## 6593       13/12/2014     1
## 6594       14/01/1994     1
## 6595       14/01/1995     1
## 6596       14/02/1994     1
## 6597       14/02/1995     1
## 6598       14/02/2001     1
## 6599       14/04/1994     1
## 6600       14/04/2007     1
## 6601       14/06/1993     1
## 6602       14/06/1994     1
## 6603       14/06/1998     1
## 6604       14/06/2000     1
## 6605       14/06/2003     1
## 6606       14/07/1994     1
## 6607       14/07/1995     1
## 6608       14/08/1998     1
## 6609       14/08/2001     1
## 6610       14/08/2005     1
## 6611       14/08/2011     1
## 6612       14/09/1993     1
## 6613       14/10/1995     1
## 6614       14/10/2000     1
## 6615       14/10/2007     1
## 6616       14/11/1994     1
## 6617       14/11/2000     1
## 6618       14/12/1992     1
## 6619       14/12/1993     1
## 6620       14/12/2002     1
## 6621       15/01/2000     1
## 6622       15/03/1993     1
## 6623       15/03/1995     1
## 6624       15/03/2002     1
## 6625       15/04/1994     1
## 6626       15/04/2001     1
## 6627       15/06/1991     1
## 6628       15/06/1992     1
## 6629       15/06/1993     1
## 6630       15/06/2003     1
## 6631       15/07/1988     1
## 6632       15/07/1998     1
## 6633       15/07/2000     1
## 6634       15/07/2007     1
## 6635       15/09/1992     1
## 6636       15/09/1993     1
## 6637       15/09/2002     1
## 6638       15/09/2013     1
## 6639       15/10/1990     1
## 6640       15/10/1991     1
## 6641       15/10/1995     1
## 6642       15/10/2002     1
## 6643       15/11/1994     1
## 6644       15/12/1993     1
## 6645       16/01/1991     1
## 6646       16/01/2000     1
## 6647       16/03/2003     1
## 6648       16/03/2008     1
## 6649       16/04/1990     1
## 6650       16/04/1991     1
## 6651       16/04/1994     1
## 6652       16/05/1993     1
## 6653       16/05/1995     1
## 6654       16/05/1999     1
## 6655       16/05/2000     1
## 6656       16/05/2001     1
## 6657       16/06/2001     1
## 6658       16/07/2005     1
## 6659       16/08/1993     1
## 6660       16/09/1992     1
## 6661       16/09/1993     1
## 6662       16/09/2000     1
## 6663       16/11/1994     1
## 6664       16/11/2002     1
## 6665       16/11/2003     1
## 6666       16/12/1995     1
## 6667       17/01/1994     1
## 6668       17/01/1999     1
## 6669       17/01/2010     1
## 6670       17/02/1994     1
## 6671       17/02/2000     1
## 6672       17/02/2002     1
## 6673       17/03/1993     1
## 6674       17/03/1994     1
## 6675       17/03/2000     1
## 6676       17/06/1993     1
## 6677       17/06/2007     1
## 6678       17/07/1999     1
## 6679       17/08/1992     1
## 6680       17/08/1999     1
## 6681       17/09/1995     1
## 6682       17/09/1999     1
## 6683       17/09/2000     1
## 6684       17/09/2006     1
## 6685       17/10/1991     1
## 6686       17/10/2014     1
## 6687       17/11/1994     1
## 6688       17/11/1995     1
## 6689       17/11/2002     1
## 6690       17/11/2007     1
## 6691       17/12/1992     1
## 6692       17/12/2000     1
## 6693       18/01/1995     1
## 6694       18/01/1998     1
## 6695       18/02/2001     1
## 6696       18/04/1992     1
## 6697       18/04/1994     1
## 6698       18/04/1995     1
## 6699       18/05/1994     1
## 6700       18/05/1995     1
## 6701       18/05/2000     1
## 6702       18/05/2001     1
## 6703       18/05/2002     1
## 6704       18/06/1994     1
## 6705       18/06/1995     1
## 6706       18/06/2005     1
## 6707       18/07/1995     1
## 6708       18/07/1999     1
## 6709       18/07/2010     1
## 6710       18/08/1992     1
## 6711       18/08/1994     1
## 6712       18/08/1999     1
## 6713       18/09/1994     1
## 6714       18/10/1993     1
## 6715       18/10/1994     1
## 6716       18/10/2000     1
## 6717       18/11/1993     1
## 6718       18/11/1995     1
## 6719       18/11/2001     1
## 6720       18/12/1991     1
## 6721       19/01/1995     1
## 6722       19/01/2001     1
## 6723       19/01/2002     1
## 6724       19/02/1990     1
## 6725       19/03/1990     1
## 6726       19/03/2011     1
## 6727       19/04/1994     1
## 6728       19/04/2002     1
## 6729       19/05/1988     1
## 6730       19/05/1999     1
## 6731       19/06/1995     1
## 6732       19/06/1999     1
## 6733       19/07/2000     1
## 6734       19/08/2000     1
## 6735       19/08/2001     1
## 6736       19/10/2002     1
## 6737       19/11/1992     1
## 6738       19/12/1998     1
## 6739       19/12/1999     1
## 6740       20/01/1994     1
## 6741       20/01/2001     1
## 6742       20/02/2000     1
## 6743       20/03/1992     1
## 6744       20/03/2001     1
## 6745       20/04/1994     1
## 6746       20/05/1991     1
## 6747       20/05/1993     1
## 6748       20/05/2000     1
## 6749       20/05/2007     1
## 6750       20/05/2012     1
## 6751       20/06/1995     1
## 6752       20/06/1999     1
## 6753       20/07/1991     1
## 6754       20/07/1993     1
## 6755       20/07/1994     1
## 6756       20/07/2002     1
## 6757       20/08/1999     1
## 6758       20/09/2003     1
## 6759       20/10/1993     1
## 6760       20/10/2002     1
## 6761       20/11/1990     1
## 6762       20/11/1999     1
## 6763       20/12/1994     1
## 6764       20/12/2000     1
## 6765       20/12/2009     1
## 6766       21/01/1989     1
## 6767       21/01/1994     1
## 6768       21/02/1995     1
## 6769       21/03/1995     1
## 6770       21/03/1999     1
## 6771       21/03/2004     1
## 6772       21/04/1992     1
## 6773       21/04/1994     1
## 6774       21/05/1999     1
## 6775       21/06/1994     1
## 6776       21/06/2003     1
## 6777       21/07/1994     1
## 6778       21/08/1994     1
## 6779       21/08/1999     1
## 6780       21/09/1992     1
## 6781       21/09/1993     1
## 6782       21/09/1995     1
## 6783       21/09/2003     1
## 6784       21/10/1993     1
## 6785       21/10/1994     1
## 6786       21/10/2000     1
## 6787       21/11/1998     1
## 6788       21/11/2010     1
## 6789       21/12/1992     1
## 6790       21/12/1995     1
## 6791       21/12/1999     1
## 6792       21/12/2000     1
## 6793       22/01/1999     1
## 6794       22/02/1995     1
## 6795       22/02/2000     1
## 6796       22/02/2004     1
## 6797       22/03/1993     1
## 6798       22/03/1995     1
## 6799       22/03/2000     1
## 6800       22/03/2008     1
## 6801       22/04/1995     1
## 6802       22/04/1999     1
## 6803       22/04/2000     1
## 6804       22/04/2001     1
## 6805       22/05/2011     1
## 6806       22/06/1993     1
## 6807       22/06/1994     1
## 6808       22/06/2003     1
## 6809       22/06/2008     1
## 6810       22/06/2014     1
## 6811       22/07/1993     1
## 6812       22/07/1995     1
## 6813       22/07/2006     1
## 6814       22/07/2007     1
## 6815       22/08/1990     1
## 6816       22/08/1994     1
## 6817       22/08/1999     1
## 6818       22/08/2009     1
## 6819       22/09/1989     1
## 6820       22/09/1993     1
## 6821       22/10/1995     1
## 6822       22/11/1993     1
## 6823       22/11/2002     1
## 6824       22/12/1992     1
## 6825       22/12/1994     1
## 6826       22/12/1999     1
## 6827       22/12/2000     1
## 6828       22/12/2002     1
## 6829       23/01/1990     1
## 6830       23/02/1995     1
## 6831       23/02/2002     1
## 6832       23/02/2014     1
## 6833       23/03/1994     1
## 6834       23/03/1995     1
## 6835       23/04/1994     1
## 6836       23/04/1995     1
## 6837       23/04/1999     1
## 6838       23/05/1994     1
## 6839       23/05/1999     1
## 6840       23/05/2001     1
## 6841       23/05/2004     1
## 6842       23/06/1993     1
## 6843       23/06/1994     1
## 6844       23/06/2013     1
## 6845       23/07/1995     1
## 6846       23/08/1998     1
## 6847       23/08/2002     1
## 6848       23/09/1994     1
## 6849       23/10/1991     1
## 6850       23/10/1993     1
## 6851       23/10/1998     1
## 6852       23/11/1995     1
## 6853       23/11/1998     1
## 6854       23/11/2008     1
## 6855       23/12/1994     1
## 6856       23/12/2001     1
## 6857       24/01/1987     1
## 6858       24/01/1990     1
## 6859       24/03/1994     1
## 6860       24/03/2000     1
## 6861       24/04/2000     1
## 6862       24/04/2002     1
## 6863       24/05/2001     1
## 6864       24/05/2002     1
## 6865       24/06/1991     1
## 6866       24/06/2000     1
## 6867       24/06/2001     1
## 6868       24/07/1991     1
## 6869       24/07/1992     1
## 6870       24/07/1993     1
## 6871       24/07/1999     1
## 6872       24/08/1993     1
## 6873       24/09/1994     1
## 6874       24/09/2000     1
## 6875       24/10/1983     1
## 6876       24/10/1995     1
## 6877       24/10/1998     1
## 6878       24/10/1999     1
## 6879       24/10/2000     1
## 6880       24/11/1993     1
## 6881       24/11/2000     1
## 6882       24/12/1993     1
## 6883       24/12/1998     1
## 6884       24/12/1999     1
## 6885       24/12/2001     1
## 6886       24/12/2002     1
## 6887       24/12/2003     1
## 6888       24/12/2005     1
## 6889       24/12/2006     1
## 6890       24/12/2010     1
## 6891       24/12/2011     1
## 6892       25/01/2002     1
## 6893       25/01/2009     1
## 6894       25/02/1994     1
## 6895       25/02/1995     1
## 6896       25/02/1996     1
## 6897       25/02/2001     1
## 6898       25/02/2007     1
## 6899       25/03/2000     1
## 6900       25/03/2007     1
## 6901       25/04/2000     1
## 6902       25/05/1991     1
## 6903       25/05/1992     1
## 6904       25/05/2000     1
## 6905       25/06/1993     1
## 6906       25/07/1994     1
## 6907       25/08/1992     1
## 6908       25/08/1995     1
## 6909       25/08/2001     1
## 6910       25/09/1998     1
## 6911       25/10/1994     1
## 6912       25/11/1999     1
## 6913       25/11/2005     1
## 6914       25/11/2006     1
## 6915       25/11/2011     1
## 6916       25/12/1998     1
## 6917       25/12/1999     1
## 6918       25/12/2001     1
## 6919       25/12/2002     1
## 6920       25/12/2011     1
## 6921       26/01/1994     1
## 6922       26/01/2000     1
## 6923       26/01/2001     1
## 6924       26/02/2000     1
## 6925       26/02/2006     1
## 6926       26/03/2005     1
## 6927       26/04/2001     1
## 6928       26/04/2003     1
## 6929       26/05/2000     1
## 6930       26/05/2001     1
## 6931       26/05/2003     1
## 6932       26/06/1989     1
## 6933       26/06/1990     1
## 6934       26/06/1999     1
## 6935       26/07/1993     1
## 6936       26/07/1995     1
## 6937       26/08/1993     1
## 6938       26/08/1994     1
## 6939       26/08/1999     1
## 6940       26/08/2000     1
## 6941       26/09/1994     1
## 6942       26/09/1999     1
## 6943       26/10/2001     1
## 6944       26/10/2003     1
## 6945       26/11/2011     1
## 6946       26/12/1991     1
## 6947       26/12/1994     1
## 6948       26/12/1995     1
## 6949       26/12/1998     1
## 6950       26/12/2001     1
## 6951       26/12/2002     1
## 6952       26/12/2003     1
## 6953       27/01/2002     1
## 6954       27/02/1994     1
## 6955       27/02/1995     1
## 6956       27/02/2003     1
## 6957       27/03/1994     1
## 6958       27/04/1999     1
## 6959       27/04/2000     1
## 6960       27/06/1991     1
## 6961       27/06/1994     1
## 6962       27/06/1998     1
## 6963       27/06/2014     1
## 6964       27/07/1991     1
## 6965       27/07/2001     1
## 6966       27/08/1984     1
## 6967       27/08/1994     1
## 6968       27/08/1999     1
## 6969       27/08/2000     1
## 6970       27/09/1993     1
## 6971       27/09/1994     1
## 6972       27/09/2001     1
## 6973       27/09/2002     1
## 6974       27/10/1993     1
## 6975       27/10/1999     1
## 6976       27/10/2000     1
## 6977       27/11/1999     1
## 6978       27/11/2003     1
## 6979       27/11/2004     1
## 6980       27/11/2005     1
## 6981       27/11/2011     1
## 6982       27/12/1994     1
## 6983       27/12/1995     1
## 6984       27/12/1998     1
## 6985       27/12/1999     1
## 6986       27/12/2002     1
## 6987       27/12/2003     1
## 6988       28/01/2000     1
## 6989       28/01/2001     1
## 6990       28/02/1995     1
## 6991       28/03/1994     1
## 6992       28/03/1995     1
## 6993       28/03/1999     1
## 6994       28/03/2001     1
## 6995       28/03/2004     1
## 6996       28/05/1999     1
## 6997       28/06/1994     1
## 6998       28/07/1994     1
## 6999       28/07/2001     1
## 7000       28/08/1990     1
## 7001       28/09/1994     1
## 7002       28/09/2003     1
## 7003       28/10/1993     1
## 7004       28/11/1998     1
## 7005       28/11/1999     1
## 7006       28/11/2001     1
## 7007       28/11/2002     1
## 7008       28/12/1993     1
## 7009       28/12/1995     1
## 7010       29/02/2000     1
## 7011       29/03/1981     1
## 7012       29/03/2002     1
## 7013       29/04/1995     1
## 7014       29/05/1999     1
## 7015       29/06/1993     1
## 7016       29/06/2001     1
## 7017       29/07/1994     1
## 7018       29/07/1995     1
## 7019       29/08/1994     1
## 7020       29/08/1995     1
## 7021       29/08/2003     1
## 7022       29/09/1994     1
## 7023       29/09/1999     1
## 7024       29/10/1976     1
## 7025       29/10/1995     1
## 7026       29/12/1994     1
## 7027       29/12/2000     1
## 7028       30/01/1989     1
## 7029       30/01/1999     1
## 7030       30/01/2000     1
## 7031       30/03/2000     1
## 7032       30/03/2002     1
## 7033       30/03/2008     1
## 7034       30/04/1994     1
## 7035       30/05/2000     1
## 7036       30/05/2010     1
## 7037       30/06/1994     1
## 7038       30/06/2001     1
## 7039       30/08/1993     1
## 7040       30/08/2003     1
## 7041       30/09/1995     1
## 7042       30/09/2000     1
## 7043       30/09/2001     1
## 7044       30/09/2006     1
## 7045       30/10/1998     1
## 7046       30/10/2002     1
## 7047       30/11/1994     1
## 7048       30/11/2008     1
## 7049       30/12/1995     1
## 7050       30/12/2000     1
## 7051       30/12/2007     1
## 7052       30/12/2012     1
## 7053       31/01/1994     1
## 7054       31/01/1995     1
## 7055       31/03/1999     1
## 7056       31/03/2000     1
## 7057       31/07/1999     1
## 7058       31/08/1994     1
## 7059       31/08/1999     1
## 7060       31/08/2002     1
## 7061       31/08/2008     1
## 7062       31/12/1998     1
# count(db, AverageWeeklyWage, sort=TRUE)
count(db, ClaimantOpenedDate, sort=TRUE)
##      ClaimantOpenedDate   n
## 1            30/03/1996 442
## 2            09/04/1996 137
## 3            15/05/1996 128
## 4            31/03/1996 126
## 5            13/05/1996 119
## 6            03/04/1996 112
## 7            15/04/1996 110
## 8            29/01/1998 109
## 9            08/04/1996 107
## 10           23/06/2009 106
## 11           10/04/1996  90
## 12           22/04/1996  88
## 13           25/04/1996  88
## 14           08/05/1996  84
## 15           09/01/1998  83
## 16           22/06/2009  82
## 17           23/09/1996  82
## 18           14/05/1996  81
## 19           04/06/1996  80
## 20           09/05/1996  80
## 21           13/08/1996  80
## 22           18/04/1996  80
## 23           18/12/1996  80
## 24           10/07/1997  78
## 25           16/05/1996  78
## 26           28/05/1996  77
## 27           19/06/2009  76
## 28           30/07/2001  76
## 29           17/09/1996  75
## 30           23/04/1996  75
## 31           04/10/1999  74
## 32           16/04/1996  73
## 33           02/05/1996  72
## 34           07/05/1996  72
## 35           12/03/2004  72
## 36           19/04/1996  72
## 37           28/04/1998  72
## 38           31/03/1998  72
## 39           05/05/1999  71
## 40           19/12/2001  71
## 41           23/06/2006  71
## 42           03/12/2001  70
## 43           03/05/1996  69
## 44           21/05/1996  69
## 45           03/03/1997  68
## 46           12/08/1999  68
## 47           15/10/1996  68
## 48           26/04/1996  67
## 49           12/09/1997  66
## 50           20/04/1996  66
## 51           17/05/1996  65
## 52           23/08/1996  65
## 53           26/06/1996  65
## 54           22/06/2000  64
## 55           25/09/1997  64
## 56           04/03/2003  63
## 57           12/04/1996  63
## 58           13/11/1997  63
## 59           27/04/2000  63
## 60           28/05/1998  63
## 61           30/01/1997  63
## 62           01/04/1996  62
## 63           08/02/2000  62
## 64           08/07/1999  62
## 65           19/05/2000  62
## 66           25/03/1998  62
## 67           22/07/1997  61
## 68           23/01/1997  61
## 69           11/04/1996  60
## 70           24/09/2002  60
## 71           26/07/1996  60
## 72           06/04/2000  59
## 73           07/11/1996  59
## 74           08/04/1998  59
## 75           12/06/1996  59
## 76           12/07/2011  59
## 77           18/11/2003  59
## 78           28/01/1998  59
## 79           29/10/1997  59
## 80           03/02/2003  58
## 81           03/12/1997  58
## 82           09/07/2009  58
## 83           16/02/1998  58
## 84           19/05/2003  58
## 85           22/05/1996  58
## 86           29/10/2001  58
## 87           14/06/2006  57
## 88           17/08/2005  57
## 89           20/05/1996  57
## 90           21/05/1998  57
## 91           24/08/2000  57
## 92           28/08/1996  57
## 93           29/04/1996  57
## 94           29/05/1996  57
## 95           04/10/1996  56
## 96           08/10/2003  56
## 97           12/01/1998  56
## 98           16/04/1998  56
## 99           21/02/1997  56
## 100          23/05/1996  56
## 101          25/05/2012  56
## 102          11/03/1997  55
## 103          15/07/1996  55
## 104          21/07/1997  55
## 105          24/06/1999  55
## 106          24/08/1999  55
## 107          25/07/1997  55
## 108          29/10/1998  55
## 109          30/08/2001  55
## 110          04/06/2009  54
## 111          05/01/2005  54
## 112          06/07/1999  54
## 113          11/02/2000  54
## 114          12/07/1999  54
## 115          12/10/2006  54
## 116          13/06/2006  54
## 117          14/04/1996  54
## 118          16/08/1996  54
## 119          16/10/2001  54
## 120          19/11/2003  54
## 121          21/08/1996  54
## 122          27/06/2008  54
## 123          10/03/1998  53
## 124          11/11/1999  53
## 125          13/09/2006  53
## 126          19/04/2001  53
## 127          22/05/1997  53
## 128          22/09/1999  53
## 129          26/05/2006  53
## 130          27/09/2005  53
## 131          28/06/2006  53
## 132          01/05/1996  52
## 133          02/01/2001  52
## 134          02/10/2002  52
## 135          04/08/2004  52
## 136          09/06/2005  52
## 137          09/07/1999  52
## 138          15/05/2012  52
## 139          18/07/1996  52
## 140          19/08/2003  52
## 141          20/06/1996  52
## 142          21/01/1998  52
## 143          21/03/2000  52
## 144          21/07/1999  52
## 145          22/02/2013  52
## 146          24/10/2001  52
## 147          26/07/2000  52
## 148          26/08/1996  52
## 149          26/08/2003  52
## 150          26/09/1996  52
## 151          29/07/2005  52
## 152          30/06/1998  52
## 153          02/08/1996  51
## 154          09/10/1997  51
## 155          10/03/2008  51
## 156          13/09/1996  51
## 157          18/09/2000  51
## 158          19/03/1998  51
## 159          22/05/1998  51
## 160          27/09/1996  51
## 161          30/05/2002  51
## 162          30/05/2008  51
## 163          31/05/1996  51
## 164          01/10/2013  50
## 165          01/12/1997  50
## 166          03/09/1998  50
## 167          09/02/2000  50
## 168          11/05/2000  50
## 169          13/02/2002  50
## 170          16/09/1996  50
## 171          19/07/1996  50
## 172          20/10/2009  50
## 173          21/09/2005  50
## 174          24/02/1997  50
## 175          24/07/1996  50
## 176          30/07/1996  50
## 177          01/03/2006  49
## 178          01/09/1999  49
## 179          04/02/2005  49
## 180          06/04/2001  49
## 181          09/02/2010  49
## 182          09/03/2006  49
## 183          10/07/2000  49
## 184          13/10/1997  49
## 185          17/02/1997  49
## 186          18/03/2004  49
## 187          18/06/1997  49
## 188          20/08/1999  49
## 189          25/10/2002  49
## 190          29/01/1997  49
## 191          30/05/2006  49
## 192          31/05/2000  49
## 193          02/11/2000  48
## 194          03/04/2008  48
## 195          05/03/2013  48
## 196          05/07/1996  48
## 197          08/05/1998  48
## 198          13/07/1999  48
## 199          14/07/1999  48
## 200          15/08/1997  48
## 201          18/07/2013  48
## 202          20/06/1997  48
## 203          21/11/2000  48
## 204          23/04/1997  48
## 205          25/01/2006  48
## 206          27/05/1997  48
## 207          27/06/2006  48
## 208          29/01/2013  48
## 209          01/08/1996  47
## 210          03/06/1996  47
## 211          03/11/2004  47
## 212          05/09/1996  47
## 213          06/06/2000  47
## 214          06/08/2007  47
## 215          07/08/1996  47
## 216          07/12/1999  47
## 217          08/06/1999  47
## 218          09/03/1998  47
## 219          14/08/2012  47
## 220          15/09/2003  47
## 221          16/01/1998  47
## 222          16/01/2002  47
## 223          17/02/2000  47
## 224          19/06/1996  47
## 225          21/06/2011  47
## 226          24/04/2003  47
## 227          25/08/2000  47
## 228          27/02/2001  47
## 229          28/10/1996  47
## 230          29/08/2000  47
## 231          29/08/2005  47
## 232          30/01/2002  47
## 233          01/04/1997  46
## 234          08/10/1996  46
## 235          09/02/1998  46
## 236          10/05/1996  46
## 237          12/02/2004  46
## 238          15/05/2002  46
## 239          18/01/2001  46
## 240          18/02/2003  46
## 241          18/06/2009  46
## 242          18/07/2006  46
## 243          20/08/1996  46
## 244          24/04/2002  46
## 245          25/02/2002  46
## 246          26/04/2006  46
## 247          26/07/1999  46
## 248          27/01/1997  46
## 249          27/05/2004  46
## 250          28/06/2010  46
## 251          28/09/2006  46
## 252          29/07/2004  46
## 253          01/09/2006  45
## 254          03/03/2003  45
## 255          05/01/2006  45
## 256          05/09/1997  45
## 257          06/08/1996  45
## 258          06/12/1999  45
## 259          08/05/2006  45
## 260          09/09/1996  45
## 261          09/09/2004  45
## 262          10/02/1997  45
## 263          10/04/1997  45
## 264          10/09/1996  45
## 265          12/09/2007  45
## 266          13/12/2000  45
## 267          18/02/2002  45
## 268          18/04/2000  45
## 269          19/10/1999  45
## 270          19/10/2004  45
## 271          20/11/1997  45
## 272          24/01/2006  45
## 273          24/03/1997  45
## 274          24/04/2006  45
## 275          25/02/2000  45
## 276          26/01/2001  45
## 277          26/02/1997  45
## 278          27/06/2002  45
## 279          27/11/1996  45
## 280          28/03/2000  45
## 281          28/11/2001  45
## 282          29/06/2000  45
## 283          30/05/1996  45
## 284          30/05/1997  45
## 285          31/07/2001  45
## 286          31/08/2012  45
## 287          01/08/2001  44
## 288          01/08/2006  44
## 289          02/02/2004  44
## 290          05/11/2002  44
## 291          06/02/2006  44
## 292          06/12/2000  44
## 293          07/05/2003  44
## 294          07/10/1996  44
## 295          08/02/2005  44
## 296          08/08/1997  44
## 297          13/12/1999  44
## 298          14/02/2001  44
## 299          18/01/1999  44
## 300          19/07/2000  44
## 301          20/06/2001  44
## 302          20/12/2000  44
## 303          21/11/1996  44
## 304          23/08/2007  44
## 305          23/09/1997  44
## 306          26/09/2007  44
## 307          27/08/1996  44
## 308          29/01/2002  44
## 309          29/07/1997  44
## 310          01/06/2000  43
## 311          02/03/1998  43
## 312          02/08/2007  43
## 313          03/12/1996  43
## 314          04/04/1996  43
## 315          04/11/2003  43
## 316          05/07/2006  43
## 317          06/05/1996  43
## 318          06/05/2003  43
## 319          07/03/2000  43
## 320          07/04/2009  43
## 321          08/02/2010  43
## 322          08/10/1998  43
## 323          08/10/2002  43
## 324          08/10/2004  43
## 325          09/02/2006  43
## 326          09/07/2010  43
## 327          09/12/1996  43
## 328          11/04/2007  43
## 329          11/05/1999  43
## 330          12/04/2004  43
## 331          13/07/1998  43
## 332          16/11/2000  43
## 333          17/09/1998  43
## 334          17/10/2005  43
## 335          18/04/2002  43
## 336          22/03/2000  43
## 337          22/05/2002  43
## 338          24/10/1997  43
## 339          25/07/2000  43
## 340          26/08/1997  43
## 341          28/06/1996  43
## 342          29/10/1996  43
## 343          02/02/1999  42
## 344          02/02/2007  42
## 345          02/04/2004  42
## 346          02/09/2004  42
## 347          03/02/1997  42
## 348          03/04/1997  42
## 349          03/09/2004  42
## 350          03/10/1996  42
## 351          04/08/2003  42
## 352          05/06/1996  42
## 353          05/08/1996  42
## 354          05/10/1999  42
## 355          08/04/2009  42
## 356          09/05/1997  42
## 357          09/09/1997  42
## 358          10/07/2006  42
## 359          11/12/2002  42
## 360          12/09/2000  42
## 361          14/07/2008  42
## 362          14/08/2000  42
## 363          15/07/1997  42
## 364          16/07/1996  42
## 365          17/05/2006  42
## 366          18/07/1997  42
## 367          18/08/1997  42
## 368          18/11/2011  42
## 369          19/07/1999  42
## 370          19/07/2006  42
## 371          19/08/1998  42
## 372          20/04/2004  42
## 373          20/06/2003  42
## 374          20/07/1999  42
## 375          21/10/2003  42
## 376          23/10/1996  42
## 377          25/03/1997  42
## 378          26/09/1997  42
## 379          27/05/1998  42
## 380          27/07/1999  42
## 381          27/07/2010  42
## 382          28/02/2000  42
## 383          28/03/2001  42
## 384          28/09/1999  42
## 385          29/03/2005  42
## 386          29/04/1998  42
## 387          01/07/1998  41
## 388          02/06/2008  41
## 389          02/07/2013  41
## 390          04/02/1999  41
## 391          04/09/1997  41
## 392          07/01/1997  41
## 393          07/02/2000  41
## 394          07/03/2002  41
## 395          07/05/2008  41
## 396          07/07/2000  41
## 397          08/09/2011  41
## 398          08/11/2011  41
## 399          09/12/2003  41
## 400          10/06/2002  41
## 401          10/08/2010  41
## 402          11/01/2006  41
## 403          11/08/1997  41
## 404          12/07/2006  41
## 405          13/06/1996  41
## 406          13/07/2000  41
## 407          13/08/2004  41
## 408          15/06/1999  41
## 409          15/07/2002  41
## 410          17/02/1998  41
## 411          17/07/1998  41
## 412          18/02/2013  41
## 413          20/11/1996  41
## 414          22/02/2000  41
## 415          22/04/2002  41
## 416          22/05/2001  41
## 417          22/08/2002  41
## 418          22/09/2004  41
## 419          27/06/1996  41
## 420          28/04/2004  41
## 421          29/04/2004  41
## 422          29/08/1996  41
## 423          30/12/1999  41
## 424          31/08/2007  41
## 425          01/12/2004  40
## 426          04/02/2008  40
## 427          04/08/1997  40
## 428          05/08/2003  40
## 429          05/10/2010  40
## 430          06/07/2006  40
## 431          06/11/2000  40
## 432          07/01/2000  40
## 433          08/04/1997  40
## 434          09/02/2011  40
## 435          09/05/2005  40
## 436          10/04/2006  40
## 437          10/06/2009  40
## 438          11/05/2007  40
## 439          11/07/2007  40
## 440          11/09/2002  40
## 441          12/05/1998  40
## 442          12/07/2013  40
## 443          12/08/2002  40
## 444          14/06/1996  40
## 445          14/10/2013  40
## 446          15/10/2001  40
## 447          16/06/2008  40
## 448          17/01/2002  40
## 449          17/03/1998  40
## 450          17/10/1996  40
## 451          18/01/2011  40
## 452          18/06/1996  40
## 453          18/10/2010  40
## 454          20/06/2007  40
## 455          21/12/2005  40
## 456          22/05/2013  40
## 457          22/07/2008  40
## 458          23/06/2004  40
## 459          24/02/1998  40
## 460          24/05/2006  40
## 461          24/08/2004  40
## 462          24/11/2004  40
## 463          25/06/1997  40
## 464          25/08/2009  40
## 465          25/09/1996  40
## 466          26/01/2006  40
## 467          27/09/2001  40
## 468          28/08/1997  40
## 469          29/04/1997  40
## 470          29/05/2001  40
## 471          29/11/1999  40
## 472          30/12/2004  40
## 473          02/08/2005  39
## 474          02/12/1996  39
## 475          03/02/2004  39
## 476          04/04/1997  39
## 477          07/02/2006  39
## 478          07/04/1997  39
## 479          08/01/2013  39
## 480          09/08/2013  39
## 481          10/01/1997  39
## 482          10/09/1998  39
## 483          10/10/1996  39
## 484          11/02/1997  39
## 485          11/06/2009  39
## 486          11/11/1998  39
## 487          12/02/2009  39
## 488          12/06/2006  39
## 489          12/10/2011  39
## 490          13/02/1997  39
## 491          13/07/2011  39
## 492          13/08/2001  39
## 493          13/11/1996  39
## 494          14/09/2004  39
## 495          16/06/1997  39
## 496          16/08/2000  39
## 497          16/08/2010  39
## 498          16/09/2003  39
## 499          16/10/2000  39
## 500          17/02/2012  39
## 501          17/06/2009  39
## 502          17/09/2007  39
## 503          18/03/1997  39
## 504          18/08/2011  39
## 505          18/10/2000  39
## 506          18/11/2004  39
## 507          18/12/1997  39
## 508          19/02/1997  39
## 509          20/04/2006  39
## 510          20/05/2009  39
## 511          20/08/2008  39
## 512          21/02/2000  39
## 513          21/05/1997  39
## 514          21/09/1998  39
## 515          21/09/2006  39
## 516          22/04/1997  39
## 517          23/05/2000  39
## 518          23/07/1997  39
## 519          24/03/2003  39
## 520          24/05/2010  39
## 521          24/06/2013  39
## 522          25/02/1999  39
## 523          25/03/2004  39
## 524          25/06/2002  39
## 525          26/05/2004  39
## 526          27/05/2005  39
## 527          28/03/2012  39
## 528          31/10/1996  39
## 529          01/10/1997  38
## 530          02/03/2000  38
## 531          02/06/2005  38
## 532          02/07/1996  38
## 533          02/12/1998  38
## 534          03/05/2000  38
## 535          04/02/1998  38
## 536          04/06/2001  38
## 537          04/12/2009  38
## 538          05/04/2006  38
## 539          05/08/1998  38
## 540          05/08/2010  38
## 541          06/04/1998  38
## 542          06/09/2013  38
## 543          07/08/2009  38
## 544          08/07/1996  38
## 545          10/02/2003  38
## 546          10/08/2009  38
## 547          11/01/2005  38
## 548          11/01/2014  38
## 549          11/07/1996  38
## 550          11/09/2013  38
## 551          12/05/1997  38
## 552          12/05/2010  38
## 553          13/01/1997  38
## 554          13/07/2005  38
## 555          13/10/2005  38
## 556          15/03/1999  38
## 557          15/03/2006  38
## 558          15/04/2010  38
## 559          15/05/1997  38
## 560          16/05/2006  38
## 561          16/05/2013  38
## 562          16/07/2003  38
## 563          16/11/1998  38
## 564          17/08/2006  38
## 565          19/02/1998  38
## 566          19/06/2002  38
## 567          20/03/2000  38
## 568          20/12/2005  38
## 569          21/06/2005  38
## 570          21/10/2013  38
## 571          21/11/2006  38
## 572          22/01/2013  38
## 573          22/07/2005  38
## 574          23/06/1997  38
## 575          24/02/2000  38
## 576          24/03/2011  38
## 577          24/06/1997  38
## 578          24/07/1998  38
## 579          24/07/2006  38
## 580          24/09/1996  38
## 581          24/09/2013  38
## 582          24/10/2000  38
## 583          25/01/2002  38
## 584          25/01/2011  38
## 585          25/06/1996  38
## 586          25/07/1996  38
## 587          25/07/2001  38
## 588          25/08/2010  38
## 589          25/11/1998  38
## 590          26/06/2006  38
## 591          26/06/2007  38
## 592          27/09/2000  38
## 593          27/10/2008  38
## 594          27/11/2006  38
## 595          28/04/2009  38
## 596          28/05/1997  38
## 597          28/07/2005  38
## 598          29/07/1999  38
## 599          30/08/2011  38
## 600          31/05/2001  38
## 601          31/07/2002  38
## 602          01/02/2002  37
## 603          01/06/2005  37
## 604          02/05/2003  37
## 605          04/06/2004  37
## 606          04/08/2000  37
## 607          04/09/1996  37
## 608          04/10/2001  37
## 609          05/03/1997  37
## 610          05/03/2001  37
## 611          05/07/2007  37
## 612          05/08/1997  37
## 613          05/09/2006  37
## 614          05/09/2007  37
## 615          06/01/2005  37
## 616          06/02/2001  37
## 617          06/06/2002  37
## 618          06/10/1998  37
## 619          07/01/2010  37
## 620          07/02/2013  37
## 621          07/05/2007  37
## 622          07/06/2007  37
## 623          07/07/1997  37
## 624          07/11/2000  37
## 625          08/01/2004  37
## 626          09/01/2002  37
## 627          09/06/1997  37
## 628          09/07/1998  37
## 629          09/09/1998  37
## 630          10/02/1998  37
## 631          11/03/2002  37
## 632          11/06/2001  37
## 633          11/06/2003  37
## 634          11/09/2000  37
## 635          11/10/2000  37
## 636          11/10/2012  37
## 637          12/01/2011  37
## 638          12/07/2001  37
## 639          12/08/1996  37
## 640          12/08/2008  37
## 641          14/05/2001  37
## 642          14/08/2006  37
## 643          15/04/2002  37
## 644          15/09/2004  37
## 645          15/12/1997  37
## 646          16/06/2004  37
## 647          17/03/2004  37
## 648          17/10/2013  37
## 649          18/06/2008  37
## 650          18/09/2012  37
## 651          18/11/1996  37
## 652          19/05/2006  37
## 653          21/03/1997  37
## 654          21/05/2001  37
## 655          21/11/2005  37
## 656          22/03/2004  37
## 657          23/01/2007  37
## 658          23/07/2003  37
## 659          23/08/2012  37
## 660          24/07/2012  37
## 661          24/10/1996  37
## 662          26/03/2007  37
## 663          27/01/2011  37
## 664          27/06/2007  37
## 665          28/07/2004  37
## 666          29/04/2002  37
## 667          29/06/2005  37
## 668          30/06/1997  37
## 669          31/08/2004  37
## 670          01/07/1997  36
## 671          03/03/2000  36
## 672          03/05/2010  36
## 673          03/08/2000  36
## 674          03/09/1997  36
## 675          04/06/2007  36
## 676          04/09/2001  36
## 677          06/04/2004  36
## 678          06/04/2005  36
## 679          06/05/2004  36
## 680          06/10/1999  36
## 681          07/03/2006  36
## 682          07/09/2005  36
## 683          07/10/1997  36
## 684          08/07/2009  36
## 685          09/02/2001  36
## 686          09/04/1999  36
## 687          09/04/2003  36
## 688          09/08/2007  36
## 689          09/09/2003  36
## 690          10/01/2001  36
## 691          10/03/2009  36
## 692          10/03/2011  36
## 693          10/06/2008  36
## 694          11/02/2004  36
## 695          11/04/2000  36
## 696          11/07/2000  36
## 697          12/11/1996  36
## 698          12/11/2008  36
## 699          13/01/2004  36
## 700          13/03/2002  36
## 701          13/03/2007  36
## 702          13/04/2005  36
## 703          13/05/1998  36
## 704          13/09/2001  36
## 705          13/12/2001  36
## 706          14/08/1996  36
## 707          15/06/2009  36
## 708          15/11/2012  36
## 709          15/12/2009  36
## 710          17/05/2007  36
## 711          17/10/2008  36
## 712          18/02/2004  36
## 713          18/06/2003  36
## 714          18/12/2012  36
## 715          19/08/2011  36
## 716          19/09/2003  36
## 717          19/09/2005  36
## 718          19/11/2001  36
## 719          19/11/2002  36
## 720          20/03/1997  36
## 721          20/06/2005  36
## 722          20/07/2000  36
## 723          20/07/2006  36
## 724          20/11/2002  36
## 725          21/05/2003  36
## 726          23/02/2001  36
## 727          23/10/2013  36
## 728          23/11/1998  36
## 729          24/04/1996  36
## 730          24/04/2000  36
## 731          25/02/2004  36
## 732          29/08/1997  36
## 733          30/04/2002  36
## 734          30/05/2012  36
## 735          30/06/2000  36
## 736          30/07/1999  36
## 737          31/05/2005  36
## 738          01/02/2000  35
## 739          01/02/2005  35
## 740          01/02/2013  35
## 741          02/01/2002  35
## 742          02/05/2002  35
## 743          02/08/2000  35
## 744          02/08/2006  35
## 745          02/11/2001  35
## 746          02/11/2010  35
## 747          03/03/2011  35
## 748          03/03/2014  35
## 749          03/05/2005  35
## 750          03/11/1997  35
## 751          03/12/1999  35
## 752          04/06/1998  35
## 753          04/09/2013  35
## 754          05/08/1999  35
## 755          05/10/2000  35
## 756          05/11/1997  35
## 757          06/09/2006  35
## 758          06/12/2001  35
## 759          08/02/2002  35
## 760          08/05/2002  35
## 761          08/07/2004  35
## 762          09/10/2000  35
## 763          09/12/1998  35
## 764          10/11/2004  35
## 765          11/02/2005  35
## 766          11/06/2013  35
## 767          11/09/2009  35
## 768          12/06/1998  35
## 769          12/10/1998  35
## 770          12/12/2006  35
## 771          13/02/2008  35
## 772          13/08/2008  35
## 773          13/09/2000  35
## 774          13/10/2010  35
## 775          13/12/2006  35
## 776          14/06/2005  35
## 777          14/07/2006  35
## 778          14/11/1997  35
## 779          14/12/2012  35
## 780          15/02/1999  35
## 781          15/02/2006  35
## 782          15/06/2000  35
## 783          15/06/2005  35
## 784          15/07/2004  35
## 785          15/10/1999  35
## 786          16/02/2005  35
## 787          16/03/2006  35
## 788          16/04/2012  35
## 789          17/01/2001  35
## 790          17/05/2005  35
## 791          17/07/2012  35
## 792          17/08/2010  35
## 793          18/08/2000  35
## 794          18/08/2004  35
## 795          19/12/2000  35
## 796          20/03/2002  35
## 797          20/03/2014  35
## 798          20/08/2004  35
## 799          21/01/2010  35
## 800          22/04/2003  35
## 801          22/06/1998  35
## 802          22/06/2005  35
## 803          22/07/1996  35
## 804          22/12/2010  35
## 805          24/03/2009  35
## 806          24/06/2002  35
## 807          25/05/2001  35
## 808          25/09/2013  35
## 809          25/10/2007  35
## 810          26/02/2001  35
## 811          26/08/2011  35
## 812          26/10/2004  35
## 813          27/01/2005  35
## 814          27/10/2006  35
## 815          29/09/2005  35
## 816          29/11/2001  35
## 817          30/01/1998  35
## 818          30/03/2007  35
## 819          30/05/2003  35
## 820          30/05/2007  35
## 821          30/08/1999  35
## 822          31/03/1999  35
## 823          31/07/1996  35
## 824          01/03/2004  34
## 825          01/07/2003  34
## 826          02/04/1997  34
## 827          02/04/2013  34
## 828          02/05/2000  34
## 829          02/10/1996  34
## 830          03/06/1997  34
## 831          03/06/2004  34
## 832          03/08/2005  34
## 833          03/10/2011  34
## 834          03/11/2011  34
## 835          04/02/2010  34
## 836          04/04/2002  34
## 837          04/10/2006  34
## 838          04/11/2005  34
## 839          04/12/2008  34
## 840          05/05/2000  34
## 841          05/07/2013  34
## 842          05/10/2004  34
## 843          06/03/2007  34
## 844          07/07/1999  34
## 845          07/08/2000  34
## 846          07/12/2007  34
## 847          07/12/2011  34
## 848          08/09/1997  34
## 849          08/12/2003  34
## 850          09/06/1998  34
## 851          09/11/2012  34
## 852          10/01/2008  34
## 853          10/04/2013  34
## 854          10/06/1996  34
## 855          10/07/2001  34
## 856          10/07/2003  34
## 857          10/07/2007  34
## 858          11/02/1998  34
## 859          11/12/2001  34
## 860          12/06/2000  34
## 861          12/10/2005  34
## 862          12/12/1997  34
## 863          13/01/2000  34
## 864          13/02/2004  34
## 865          13/05/1997  34
## 866          13/06/2001  34
## 867          13/08/2013  34
## 868          14/03/2001  34
## 869          14/05/1998  34
## 870          14/08/2013  34
## 871          14/09/2011  34
## 872          14/10/1997  34
## 873          15/02/2010  34
## 874          15/04/2003  34
## 875          15/05/2001  34
## 876          15/06/2012  34
## 877          15/10/2003  34
## 878          16/09/1998  34
## 879          16/12/1996  34
## 880          17/12/2002  34
## 881          19/10/1998  34
## 882          19/11/1996  34
## 883          19/12/2007  34
## 884          19/12/2013  34
## 885          20/04/2007  34
## 886          20/09/2010  34
## 887          20/10/2004  34
## 888          21/01/1999  34
## 889          21/01/2004  34
## 890          21/03/2005  34
## 891          21/08/2006  34
## 892          22/04/1999  34
## 893          22/04/2008  34
## 894          22/05/2012  34
## 895          22/10/1996  34
## 896          22/10/1998  34
## 897          22/10/2012  34
## 898          22/10/2013  34
## 899          23/09/2009  34
## 900          24/02/2003  34
## 901          24/03/2000  34
## 902          24/04/2008  34
## 903          24/05/2004  34
## 904          24/07/2002  34
## 905          24/10/2012  34
## 906          24/11/1999  34
## 907          25/06/2008  34
## 908          25/06/2012  34
## 909          26/03/2008  34
## 910          27/03/2006  34
## 911          27/04/2006  34
## 912          28/02/2011  34
## 913          28/06/1999  34
## 914          28/11/2000  34
## 915          29/07/2010  34
## 916          29/09/2003  34
## 917          30/01/2004  34
## 918          30/03/2004  34
## 919          30/06/2005  34
## 920          30/07/2009  34
## 921          31/01/1997  34
## 922          31/01/2001  34
## 923          31/12/1996  34
## 924          01/03/2005  33
## 925          01/07/1996  33
## 926          01/11/2007  33
## 927          02/08/2001  33
## 928          02/10/2003  33
## 929          02/10/2009  33
## 930          02/12/2002  33
## 931          03/04/1998  33
## 932          03/10/2005  33
## 933          03/12/2002  33
## 934          04/01/1999  33
## 935          04/04/2012  33
## 936          04/06/1997  33
## 937          05/04/1999  33
## 938          05/11/2001  33
## 939          05/11/2003  33
## 940          06/06/1996  33
## 941          06/06/2007  33
## 942          06/09/2007  33
## 943          06/11/1997  33
## 944          06/11/2002  33
## 945          07/04/2005  33
## 946          07/05/2013  33
## 947          07/06/2012  33
## 948          07/07/2008  33
## 949          07/08/2006  33
## 950          07/11/2002  33
## 951          08/01/2002  33
## 952          08/05/2001  33
## 953          08/06/2007  33
## 954          09/03/2007  33
## 955          10/06/2010  33
## 956          10/09/2004  33
## 957          11/02/2003  33
## 958          11/03/2003  33
## 959          11/05/2004  33
## 960          11/08/2006  33
## 961          11/09/2006  33
## 962          11/10/2001  33
## 963          12/04/2013  33
## 964          12/11/2001  33
## 965          13/03/1997  33
## 966          13/03/2008  33
## 967          13/08/2010  33
## 968          14/12/2007  33
## 969          15/01/1999  33
## 970          15/01/2004  33
## 971          15/03/2002  33
## 972          15/04/2004  33
## 973          15/04/2013  33
## 974          16/01/1997  33
## 975          16/03/1998  33
## 976          16/07/2001  33
## 977          16/07/2008  33
## 978          16/08/2001  33
## 979          16/10/1997  33
## 980          16/11/1999  33
## 981          17/04/1997  33
## 982          17/07/2002  33
## 983          17/10/1997  33
## 984          17/12/2010  33
## 985          18/05/2005  33
## 986          18/07/2001  33
## 987          18/08/2003  33
## 988          18/08/2009  33
## 989          18/12/2002  33
## 990          19/09/2012  33
## 991          19/11/2008  33
## 992          20/02/2002  33
## 993          20/02/2006  33
## 994          20/08/2003  33
## 995          20/09/2011  33
## 996          21/01/2002  33
## 997          21/04/1997  33
## 998          21/06/2002  33
## 999          21/06/2012  33
## 1000         21/10/1996  33
## 1001         21/10/2010  33
## 1002         22/01/2001  33
## 1003         22/03/1999  33
## 1004         22/03/2006  33
## 1005         22/06/2007  33
## 1006         23/03/2010  33
## 1007         23/05/1997  33
## 1008         23/11/2010  33
## 1009         24/09/2007  33
## 1010         25/02/1998  33
## 1011         25/04/2013  33
## 1012         25/05/2011  33
## 1013         25/06/2003  33
## 1014         25/06/2004  33
## 1015         25/07/2002  33
## 1016         25/10/2005  33
## 1017         26/06/2013  33
## 1018         27/03/1998  33
## 1019         27/05/2009  33
## 1020         27/08/2004  33
## 1021         27/10/2003  33
## 1022         27/12/2000  33
## 1023         28/08/2013  33
## 1024         28/09/2010  33
## 1025         29/06/2007  33
## 1026         29/09/1997  33
## 1027         31/08/2006  33
## 1028         01/03/1999  32
## 1029         01/08/2003  32
## 1030         01/12/2010  32
## 1031         02/07/2008  32
## 1032         03/01/1997  32
## 1033         03/02/2000  32
## 1034         03/06/2003  32
## 1035         03/09/2002  32
## 1036         04/04/2013  32
## 1037         04/05/1998  32
## 1038         04/06/2002  32
## 1039         04/08/2008  32
## 1040         04/11/2011  32
## 1041         06/10/2005  32
## 1042         06/10/2008  32
## 1043         07/03/2013  32
## 1044         07/06/2010  32
## 1045         07/07/2006  32
## 1046         07/07/2009  32
## 1047         07/08/2002  32
## 1048         07/10/2004  32
## 1049         07/12/2000  32
## 1050         09/01/2007  32
## 1051         09/02/2005  32
## 1052         09/04/2001  32
## 1053         09/05/2006  32
## 1054         09/06/2011  32
## 1055         09/08/2006  32
## 1056         10/05/2004  32
## 1057         10/07/2013  32
## 1058         10/09/2013  32
## 1059         11/03/2009  32
## 1060         11/10/2011  32
## 1061         11/11/1996  32
## 1062         12/03/2001  32
## 1063         12/04/2010  32
## 1064         12/06/2009  32
## 1065         12/09/2001  32
## 1066         12/12/2000  32
## 1067         12/12/2011  32
## 1068         13/04/1996  32
## 1069         13/08/1998  32
## 1070         13/11/2000  32
## 1071         14/01/2003  32
## 1072         14/03/1997  32
## 1073         14/09/2005  32
## 1074         15/09/1997  32
## 1075         15/09/2010  32
## 1076         16/03/2007  32
## 1077         16/08/2005  32
## 1078         16/09/2009  32
## 1079         16/12/1997  32
## 1080         17/04/2006  32
## 1081         17/06/1996  32
## 1082         17/06/2003  32
## 1083         17/07/2007  32
## 1084         17/08/1999  32
## 1085         17/09/2001  32
## 1086         17/10/2012  32
## 1087         17/11/1997  32
## 1088         17/11/2008  32
## 1089         18/02/2010  32
## 1090         18/06/2007  32
## 1091         18/08/2005  32
## 1092         18/09/2008  32
## 1093         18/10/2005  32
## 1094         19/02/2001  32
## 1095         19/02/2014  32
## 1096         19/11/1999  32
## 1097         19/12/1996  32
## 1098         19/12/2005  32
## 1099         20/01/2010  32
## 1100         20/05/2002  32
## 1101         20/12/1996  32
## 1102         21/02/2006  32
## 1103         21/06/2001  32
## 1104         21/08/2002  32
## 1105         21/11/2007  32
## 1106         22/01/2014  32
## 1107         22/04/2009  32
## 1108         22/07/2011  32
## 1109         22/08/2000  32
## 1110         23/04/2004  32
## 1111         23/08/2002  32
## 1112         23/12/2009  32
## 1113         24/05/1996  32
## 1114         24/06/2005  32
## 1115         24/08/2001  32
## 1116         24/08/2006  32
## 1117         24/10/2005  32
## 1118         25/01/2001  32
## 1119         25/03/2002  32
## 1120         25/04/2005  32
## 1121         26/06/2001  32
## 1122         26/10/2011  32
## 1123         27/01/2004  32
## 1124         27/04/1999  32
## 1125         27/05/2003  32
## 1126         27/06/2005  32
## 1127         27/10/1998  32
## 1128         27/10/2000  32
## 1129         28/01/2005  32
## 1130         28/06/2012  32
## 1131         28/09/1998  32
## 1132         29/07/1998  32
## 1133         29/07/2002  32
## 1134         29/09/2004  32
## 1135         29/10/2007  32
## 1136         30/01/2012  32
## 1137         30/10/2008  32
## 1138         01/05/2007  31
## 1139         01/06/1998  31
## 1140         01/06/2011  31
## 1141         02/07/2004  31
## 1142         02/08/2013  31
## 1143         02/10/1997  31
## 1144         03/03/1999  31
## 1145         03/04/2002  31
## 1146         03/07/1996  31
## 1147         04/08/2006  31
## 1148         04/09/2003  31
## 1149         05/01/1999  31
## 1150         05/02/2001  31
## 1151         05/04/2001  31
## 1152         05/06/2008  31
## 1153         05/11/2013  31
## 1154         05/12/2013  31
## 1155         06/02/2009  31
## 1156         06/03/2002  31
## 1157         06/03/2008  31
## 1158         06/04/2009  31
## 1159         06/05/1997  31
## 1160         06/05/2010  31
## 1161         06/06/2001  31
## 1162         06/09/2000  31
## 1163         07/03/1997  31
## 1164         07/03/2001  31
## 1165         07/03/2007  31
## 1166         07/05/2001  31
## 1167         07/06/2004  31
## 1168         07/06/2005  31
## 1169         07/11/2005  31
## 1170         08/01/2003  31
## 1171         08/03/2013  31
## 1172         08/06/2009  31
## 1173         08/10/1999  31
## 1174         08/12/1999  31
## 1175         09/05/2007  31
## 1176         09/06/2006  31
## 1177         09/06/2009  31
## 1178         09/08/2005  31
## 1179         09/12/1997  31
## 1180         10/02/2012  31
## 1181         10/05/2001  31
## 1182         11/01/2008  31
## 1183         11/04/2005  31
## 1184         11/08/1998  31
## 1185         11/08/2003  31
## 1186         11/09/2007  31
## 1187         12/05/2009  31
## 1188         12/07/1996  31
## 1189         12/07/2000  31
## 1190         12/07/2002  31
## 1191         12/07/2005  31
## 1192         12/08/2004  31
## 1193         12/09/2002  31
## 1194         12/10/2004  31
## 1195         13/03/2003  31
## 1196         13/04/2006  31
## 1197         13/07/2001  31
## 1198         13/11/2006  31
## 1199         14/01/2002  31
## 1200         14/01/2005  31
## 1201         14/04/2000  31
## 1202         14/07/2003  31
## 1203         14/09/2000  31
## 1204         14/09/2012  31
## 1205         15/01/2003  31
## 1206         15/02/2007  31
## 1207         15/05/2000  31
## 1208         15/05/2007  31
## 1209         15/05/2008  31
## 1210         15/07/2008  31
## 1211         15/10/1998  31
## 1212         15/10/2009  31
## 1213         15/10/2010  31
## 1214         16/05/2007  31
## 1215         16/06/2011  31
## 1216         16/07/1999  31
## 1217         17/01/2007  31
## 1218         17/02/2009  31
## 1219         17/05/2004  31
## 1220         17/06/1997  31
## 1221         17/09/1997  31
## 1222         17/09/2002  31
## 1223         17/10/2000  31
## 1224         17/11/1999  31
## 1225         17/11/2004  31
## 1226         18/08/2010  31
## 1227         18/11/1997  31
## 1228         19/01/2011  31
## 1229         19/03/2004  31
## 1230         19/06/2000  31
## 1231         19/08/1996  31
## 1232         20/03/2006  31
## 1233         20/06/2002  31
## 1234         20/08/1997  31
## 1235         20/09/2001  31
## 1236         20/09/2004  31
## 1237         20/09/2013  31
## 1238         20/12/2007  31
## 1239         21/03/2013  31
## 1240         21/06/1996  31
## 1241         21/07/2011  31
## 1242         21/08/2001  31
## 1243         22/05/2007  31
## 1244         22/07/1999  31
## 1245         22/08/1996  31
## 1246         22/08/2001  31
## 1247         22/09/2003  31
## 1248         23/03/2005  31
## 1249         23/03/2009  31
## 1250         23/08/2011  31
## 1251         23/08/2013  31
## 1252         23/10/2012  31
## 1253         24/03/1998  31
## 1254         24/07/2001  31
## 1255         24/08/2005  31
## 1256         24/10/2008  31
## 1257         25/07/2005  31
## 1258         25/10/2000  31
## 1259         26/01/2005  31
## 1260         26/02/2008  31
## 1261         26/04/2007  31
## 1262         26/07/2006  31
## 1263         27/02/2012  31
## 1264         27/04/1998  31
## 1265         27/04/2004  31
## 1266         27/07/1998  31
## 1267         27/07/2004  31
## 1268         28/03/2002  31
## 1269         28/04/2008  31
## 1270         28/09/2001  31
## 1271         28/10/2005  31
## 1272         29/01/2004  31
## 1273         29/04/1999  31
## 1274         29/07/2009  31
## 1275         29/08/2008  31
## 1276         30/06/2003  31
## 1277         30/11/1999  31
## 1278         30/11/2004  31
## 1279         30/11/2012  31
## 1280         01/02/2001  30
## 1281         01/02/2012  30
## 1282         01/04/2005  30
## 1283         01/08/2000  30
## 1284         01/09/2004  30
## 1285         02/05/2005  30
## 1286         02/11/2004  30
## 1287         03/05/2006  30
## 1288         03/05/2012  30
## 1289         03/07/2000  30
## 1290         03/11/2006  30
## 1291         04/03/1997  30
## 1292         04/03/2002  30
## 1293         04/10/2005  30
## 1294         05/02/2013  30
## 1295         05/03/1998  30
## 1296         05/04/2007  30
## 1297         05/09/2012  30
## 1298         05/12/1996  30
## 1299         07/02/2012  30
## 1300         07/04/1999  30
## 1301         07/06/2013  30
## 1302         07/11/2007  30
## 1303         07/11/2013  30
## 1304         08/08/2000  30
## 1305         08/11/1996  30
## 1306         09/09/2005  30
## 1307         09/10/1996  30
## 1308         09/11/2006  30
## 1309         10/09/2010  30
## 1310         10/10/2003  30
## 1311         11/04/2011  30
## 1312         12/05/2005  30
## 1313         12/10/2012  30
## 1314         13/01/2006  30
## 1315         13/03/2000  30
## 1316         13/04/2012  30
## 1317         13/05/2005  30
## 1318         13/08/2009  30
## 1319         13/09/2004  30
## 1320         13/12/2005  30
## 1321         14/01/1999  30
## 1322         14/08/2008  30
## 1323         15/02/2000  30
## 1324         15/04/1998  30
## 1325         15/06/2001  30
## 1326         15/10/2007  30
## 1327         16/05/2001  30
## 1328         16/07/2013  30
## 1329         16/09/2010  30
## 1330         16/12/2008  30
## 1331         17/03/2005  30
## 1332         17/05/2000  30
## 1333         18/04/2001  30
## 1334         18/05/2001  30
## 1335         18/09/1996  30
## 1336         19/02/2003  30
## 1337         19/08/2004  30
## 1338         19/11/1997  30
## 1339         19/11/1998  30
## 1340         20/01/1999  30
## 1341         20/04/1999  30
## 1342         20/07/2004  30
## 1343         20/07/2012  30
## 1344         20/09/2000  30
## 1345         20/11/2001  30
## 1346         20/12/2001  30
## 1347         21/03/2007  30
## 1348         21/08/1997  30
## 1349         21/10/2002  30
## 1350         21/12/2009  30
## 1351         22/08/2005  30
## 1352         22/10/1997  30
## 1353         22/11/2011  30
## 1354         23/02/2000  30
## 1355         23/03/1998  30
## 1356         23/03/2006  30
## 1357         23/05/2003  30
## 1358         23/07/2001  30
## 1359         23/07/2002  30
## 1360         23/07/2013  30
## 1361         23/08/2000  30
## 1362         24/01/1997  30
## 1363         24/04/2001  30
## 1364         24/05/2011  30
## 1365         24/07/2007  30
## 1366         24/08/2007  30
## 1367         25/01/2010  30
## 1368         25/03/2009  30
## 1369         25/03/2013  30
## 1370         25/06/2001  30
## 1371         25/08/2004  30
## 1372         26/04/2000  30
## 1373         26/06/1998  30
## 1374         26/09/2006  30
## 1375         26/11/1997  30
## 1376         27/03/1997  30
## 1377         27/07/2000  30
## 1378         28/03/2006  30
## 1379         28/06/2011  30
## 1380         28/07/2003  30
## 1381         28/07/2010  30
## 1382         29/01/2001  30
## 1383         29/02/2012  30
## 1384         29/03/2006  30
## 1385         29/04/2005  30
## 1386         29/05/2002  30
## 1387         29/06/2012  30
## 1388         29/11/2010  30
## 1389         30/04/2013  30
## 1390         30/05/2001  30
## 1391         31/01/2014  30
## 1392         31/08/1999  30
## 1393         01/04/2009  29
## 1394         01/06/2004  29
## 1395         01/07/2013  29
## 1396         01/08/1997  29
## 1397         01/10/2010  29
## 1398         01/11/2010  29
## 1399         01/11/2012  29
## 1400         01/12/2005  29
## 1401         02/09/2010  29
## 1402         03/02/2010  29
## 1403         03/03/2006  29
## 1404         03/06/1999  29
## 1405         03/10/2003  29
## 1406         03/11/2009  29
## 1407         03/12/2004  29
## 1408         04/04/2007  29
## 1409         04/05/2005  29
## 1410         04/11/2013  29
## 1411         04/12/2000  29
## 1412         04/12/2012  29
## 1413         05/11/2008  29
## 1414         06/03/1997  29
## 1415         06/03/1998  29
## 1416         06/03/2012  29
## 1417         06/07/2001  29
## 1418         06/08/1998  29
## 1419         06/08/2008  29
## 1420         06/10/1997  29
## 1421         06/11/2007  29
## 1422         07/04/2006  29
## 1423         07/10/2011  29
## 1424         07/11/2008  29
## 1425         08/01/1997  29
## 1426         08/03/2002  29
## 1427         08/03/2004  29
## 1428         08/03/2006  29
## 1429         08/04/2003  29
## 1430         08/06/2011  29
## 1431         08/08/2006  29
## 1432         08/11/2002  29
## 1433         09/02/1999  29
## 1434         09/02/2007  29
## 1435         09/04/2002  29
## 1436         09/05/2000  29
## 1437         09/08/1996  29
## 1438         09/10/2001  29
## 1439         09/10/2013  29
## 1440         09/11/2011  29
## 1441         10/04/2000  29
## 1442         10/04/2001  29
## 1443         10/06/2013  29
## 1444         10/09/1997  29
## 1445         10/11/2011  29
## 1446         11/03/1998  29
## 1447         11/07/2005  29
## 1448         11/08/2005  29
## 1449         11/11/1997  29
## 1450         11/12/1996  29
## 1451         12/03/2010  29
## 1452         12/04/2011  29
## 1453         12/05/1999  29
## 1454         12/06/2001  29
## 1455         12/06/2007  29
## 1456         12/07/2010  29
## 1457         12/09/2012  29
## 1458         12/10/1999  29
## 1459         13/01/2009  29
## 1460         13/01/2014  29
## 1461         13/04/2011  29
## 1462         13/08/1999  29
## 1463         13/08/2002  29
## 1464         14/06/1999  29
## 1465         14/06/2002  29
## 1466         14/07/2000  29
## 1467         14/08/2001  29
## 1468         15/01/2001  29
## 1469         15/03/2007  29
## 1470         15/06/2011  29
## 1471         15/07/2009  29
## 1472         15/08/2000  29
## 1473         15/10/1997  29
## 1474         15/12/2000  29
## 1475         16/07/2007  29
## 1476         16/08/2004  29
## 1477         16/08/2006  29
## 1478         16/10/1998  29
## 1479         16/10/2002  29
## 1480         16/12/2003  29
## 1481         17/03/2000  29
## 1482         17/05/2001  29
## 1483         17/06/2008  29
## 1484         17/08/2000  29
## 1485         17/10/2003  29
## 1486         17/12/1999  29
## 1487         18/05/2010  29
## 1488         18/06/1998  29
## 1489         18/09/2003  29
## 1490         18/10/1996  29
## 1491         18/10/1999  29
## 1492         18/11/2005  29
## 1493         19/03/2009  29
## 1494         19/05/2008  29
## 1495         19/09/2002  29
## 1496         20/07/1998  29
## 1497         20/07/2007  29
## 1498         20/11/2009  29
## 1499         20/11/2013  29
## 1500         21/06/2010  29
## 1501         21/07/2008  29
## 1502         22/01/2003  29
## 1503         22/01/2004  29
## 1504         22/01/2007  29
## 1505         22/02/2002  29
## 1506         22/02/2005  29
## 1507         22/02/2011  29
## 1508         22/03/2001  29
## 1509         22/04/2004  29
## 1510         22/06/2011  29
## 1511         22/08/2007  29
## 1512         22/09/2006  29
## 1513         22/09/2008  29
## 1514         22/10/2002  29
## 1515         22/10/2003  29
## 1516         22/11/2005  29
## 1517         22/12/2003  29
## 1518         23/01/2013  29
## 1519         23/02/2004  29
## 1520         23/03/2000  29
## 1521         23/04/1999  29
## 1522         23/04/2009  29
## 1523         23/05/2013  29
## 1524         23/06/2011  29
## 1525         23/09/1998  29
## 1526         23/09/1999  29
## 1527         24/01/2014  29
## 1528         24/03/2010  29
## 1529         24/06/1996  29
## 1530         24/06/2010  29
## 1531         24/07/2013  29
## 1532         24/10/2013  29
## 1533         25/04/2002  29
## 1534         25/06/2009  29
## 1535         25/09/2003  29
## 1536         25/09/2008  29
## 1537         25/10/2006  29
## 1538         25/10/2012  29
## 1539         26/01/2010  29
## 1540         26/03/2004  29
## 1541         26/04/2012  29
## 1542         26/06/2012  29
## 1543         26/07/2004  29
## 1544         26/08/2008  29
## 1545         26/09/2003  29
## 1546         26/10/2000  29
## 1547         27/07/2006  29
## 1548         27/07/2007  29
## 1549         27/12/2012  29
## 1550         28/01/2008  29
## 1551         28/04/2005  29
## 1552         28/07/1997  29
## 1553         28/09/2004  29
## 1554         29/01/2003  29
## 1555         29/06/2004  29
## 1556         29/10/2002  29
## 1557         29/10/2013  29
## 1558         30/04/1997  29
## 1559         30/04/1998  29
## 1560         30/06/2011  29
## 1561         30/07/2008  29
## 1562         31/01/2005  29
## 1563         31/03/2003  29
## 1564         31/07/2006  29
## 1565         01/04/2003  28
## 1566         01/05/1997  28
## 1567         01/11/2000  28
## 1568         01/12/2000  28
## 1569         02/02/2006  28
## 1570         02/09/2003  28
## 1571         02/09/2005  28
## 1572         02/09/2009  28
## 1573         02/11/2007  28
## 1574         03/07/2001  28
## 1575         04/01/2011  28
## 1576         04/02/1997  28
## 1577         04/04/2005  28
## 1578         05/02/2003  28
## 1579         05/02/2007  28
## 1580         05/04/2005  28
## 1581         05/10/1998  28
## 1582         06/01/1999  28
## 1583         06/02/2002  28
## 1584         06/03/2001  28
## 1585         06/11/1996  28
## 1586         06/11/2003  28
## 1587         07/03/2005  28
## 1588         07/04/2003  28
## 1589         07/06/1999  28
## 1590         07/06/2001  28
## 1591         07/12/2005  28
## 1592         08/09/2010  28
## 1593         08/10/2008  28
## 1594         09/01/1997  28
## 1595         09/02/2012  28
## 1596         09/03/2011  28
## 1597         09/05/2003  28
## 1598         09/07/1996  28
## 1599         09/08/2000  28
## 1600         09/09/2009  28
## 1601         09/09/2013  28
## 1602         10/03/2003  28
## 1603         10/04/2002  28
## 1604         10/06/1999  28
## 1605         10/07/1996  28
## 1606         10/11/1997  28
## 1607         10/12/2012  28
## 1608         11/04/2002  28
## 1609         11/05/1998  28
## 1610         11/08/2004  28
## 1611         11/09/2012  28
## 1612         11/10/2005  28
## 1613         11/12/2008  28
## 1614         12/02/2007  28
## 1615         12/07/2012  28
## 1616         13/10/2008  28
## 1617         14/02/2000  28
## 1618         14/02/2002  28
## 1619         14/05/2009  28
## 1620         14/08/2002  28
## 1621         15/03/2005  28
## 1622         15/04/2009  28
## 1623         15/05/2006  28
## 1624         15/08/2012  28
## 1625         16/02/2010  28
## 1626         16/04/2009  28
## 1627         16/07/2004  28
## 1628         16/09/2002  28
## 1629         16/12/1999  28
## 1630         17/05/2013  28
## 1631         17/07/2006  28
## 1632         17/10/2007  28
## 1633         17/11/2009  28
## 1634         18/02/2000  28
## 1635         18/03/2002  28
## 1636         19/02/2008  28
## 1637         19/04/2005  28
## 1638         19/05/1997  28
## 1639         19/05/2011  28
## 1640         19/08/2010  28
## 1641         19/12/2008  28
## 1642         20/02/2013  28
## 1643         20/04/2001  28
## 1644         20/08/2013  28
## 1645         20/09/2007  28
## 1646         20/09/2012  28
## 1647         20/10/2006  28
## 1648         21/04/2010  28
## 1649         21/07/2005  28
## 1650         21/08/2007  28
## 1651         22/03/2002  28
## 1652         22/03/2007  28
## 1653         22/05/2000  28
## 1654         22/07/2003  28
## 1655         22/10/2007  28
## 1656         23/01/2008  28
## 1657         23/02/2009  28
## 1658         23/04/2001  28
## 1659         23/05/2008  28
## 1660         23/08/2006  28
## 1661         23/09/2010  28
## 1662         24/05/2005  28
## 1663         24/06/2009  28
## 1664         24/07/1997  28
## 1665         24/09/1997  28
## 1666         24/11/1997  28
## 1667         25/02/1997  28
## 1668         25/02/2005  28
## 1669         25/08/1997  28
## 1670         26/03/1997  28
## 1671         26/10/2005  28
## 1672         26/10/2007  28
## 1673         27/01/2009  28
## 1674         27/02/2008  28
## 1675         27/02/2013  28
## 1676         27/06/2001  28
## 1677         27/06/2013  28
## 1678         27/08/1999  28
## 1679         27/09/2011  28
## 1680         27/09/2012  28
## 1681         28/05/2008  28
## 1682         28/06/2001  28
## 1683         28/06/2007  28
## 1684         28/08/2001  28
## 1685         28/11/2007  28
## 1686         29/01/2010  28
## 1687         29/08/2013  28
## 1688         29/12/2008  28
## 1689         30/01/2008  28
## 1690         30/01/2013  28
## 1691         30/03/2006  28
## 1692         30/06/2004  28
## 1693         30/09/2008  28
## 1694         30/10/2001  28
## 1695         30/10/2012  28
## 1696         01/02/2011  27
## 1697         01/05/2009  27
## 1698         01/06/2006  27
## 1699         01/10/2001  27
## 1700         01/10/2003  27
## 1701         01/10/2008  27
## 1702         01/11/2005  27
## 1703         02/04/2001  27
## 1704         02/04/2002  27
## 1705         02/05/2012  27
## 1706         02/08/1999  27
## 1707         02/09/2008  27
## 1708         02/11/2005  27
## 1709         03/01/2001  27
## 1710         03/04/2012  27
## 1711         03/07/2012  27
## 1712         03/08/2006  27
## 1713         03/10/2008  27
## 1714         03/10/2012  27
## 1715         04/01/2013  27
## 1716         04/02/2002  27
## 1717         04/03/2008  27
## 1718         04/04/2008  27
## 1719         04/05/2000  27
## 1720         04/06/2003  27
## 1721         04/08/1998  27
## 1722         04/09/2007  27
## 1723         04/12/1998  27
## 1724         05/02/2002  27
## 1725         05/03/2002  27
## 1726         05/03/2004  27
## 1727         05/04/2011  27
## 1728         05/05/2009  27
## 1729         05/06/2001  27
## 1730         05/08/2002  27
## 1731         05/08/2009  27
## 1732         05/12/2006  27
## 1733         06/03/2000  27
## 1734         06/09/2001  27
## 1735         06/10/2000  27
## 1736         07/05/2010  27
## 1737         07/06/1996  27
## 1738         07/08/2001  27
## 1739         07/08/2008  27
## 1740         07/09/2001  27
## 1741         07/11/1997  27
## 1742         07/12/2010  27
## 1743         08/04/2004  27
## 1744         08/05/2012  27
## 1745         08/07/2010  27
## 1746         08/08/2013  27
## 1747         08/11/2007  27
## 1748         09/05/2002  27
## 1749         09/06/2004  27
## 1750         09/07/2001  27
## 1751         09/07/2008  27
## 1752         09/08/2004  27
## 1753         09/08/2012  27
## 1754         10/04/2008  27
## 1755         10/04/2012  27
## 1756         10/06/1998  27
## 1757         10/06/2005  27
## 1758         10/08/2004  27
## 1759         10/09/2009  27
## 1760         10/10/2000  27
## 1761         11/02/2010  27
## 1762         11/05/2009  27
## 1763         11/06/2010  27
## 1764         11/07/2001  27
## 1765         11/07/2003  27
## 1766         11/07/2006  27
## 1767         11/08/2000  27
## 1768         11/09/1996  27
## 1769         12/02/1999  27
## 1770         12/03/2012  27
## 1771         12/04/2005  27
## 1772         12/05/2008  27
## 1773         12/06/2002  27
## 1774         12/09/2006  27
## 1775         12/11/2013  27
## 1776         13/03/2001  27
## 1777         13/05/2010  27
## 1778         13/11/2012  27
## 1779         14/02/2008  27
## 1780         14/02/2012  27
## 1781         14/03/2005  27
## 1782         14/03/2013  27
## 1783         14/05/1999  27
## 1784         14/05/2002  27
## 1785         14/06/2001  27
## 1786         14/08/2003  27
## 1787         14/08/2009  27
## 1788         14/09/2009  27
## 1789         15/10/2002  27
## 1790         15/12/2005  27
## 1791         15/12/2010  27
## 1792         16/03/2001  27
## 1793         16/06/2000  27
## 1794         16/10/2007  27
## 1795         16/11/2006  27
## 1796         17/07/2003  27
## 1797         17/07/2008  27
## 1798         17/08/2007  27
## 1799         17/11/2010  27
## 1800         17/12/2008  27
## 1801         18/07/2002  27
## 1802         18/07/2005  27
## 1803         18/07/2012  27
## 1804         18/10/2002  27
## 1805         19/02/1999  27
## 1806         19/05/2005  27
## 1807         19/06/2003  27
## 1808         19/06/2008  27
## 1809         19/07/2007  27
## 1810         19/08/2005  27
## 1811         19/10/2005  27
## 1812         19/10/2012  27
## 1813         20/03/2001  27
## 1814         20/05/2013  27
## 1815         20/08/2001  27
## 1816         20/09/1999  27
## 1817         20/11/2000  27
## 1818         21/02/2001  27
## 1819         21/07/2003  27
## 1820         21/07/2010  27
## 1821         21/10/2005  27
## 1822         21/12/2011  27
## 1823         22/10/2004  27
## 1824         23/01/2001  27
## 1825         23/03/2007  27
## 1826         23/03/2012  27
## 1827         23/07/1998  27
## 1828         23/07/2010  27
## 1829         23/09/2005  27
## 1830         23/09/2008  27
## 1831         23/10/2003  27
## 1832         24/01/2002  27
## 1833         24/03/2005  27
## 1834         24/05/2007  27
## 1835         24/06/2008  27
## 1836         24/07/2003  27
## 1837         24/07/2008  27
## 1838         24/07/2009  27
## 1839         24/09/1999  27
## 1840         25/02/2008  27
## 1841         25/06/2013  27
## 1842         25/07/2003  27
## 1843         25/07/2006  27
## 1844         25/09/2006  27
## 1845         25/09/2007  27
## 1846         25/10/2004  27
## 1847         26/02/2007  27
## 1848         26/03/1998  27
## 1849         26/03/2001  27
## 1850         27/02/1997  27
## 1851         27/03/2002  27
## 1852         27/03/2014  27
## 1853         27/09/2002  27
## 1854         27/11/2002  27
## 1855         28/04/1997  27
## 1856         28/07/1998  27
## 1857         28/09/2000  27
## 1858         28/09/2011  27
## 1859         29/06/2006  27
## 1860         29/06/2010  27
## 1861         30/01/2009  27
## 1862         30/08/2000  27
## 1863         30/09/1996  27
## 1864         30/10/2000  27
## 1865         30/11/2006  27
## 1866         31/03/2008  27
## 1867         31/07/1997  27
## 1868         31/07/2000  27
## 1869         31/07/2012  27
## 1870         31/08/1998  27
## 1871         31/10/2002  27
## 1872         31/12/1997  27
## 1873         01/05/2012  26
## 1874         01/06/1999  26
## 1875         01/06/2010  26
## 1876         01/09/2011  26
## 1877         01/10/1999  26
## 1878         01/10/2002  26
## 1879         01/10/2012  26
## 1880         02/01/2003  26
## 1881         02/02/2011  26
## 1882         02/03/1999  26
## 1883         02/03/2007  26
## 1884         02/06/2009  26
## 1885         02/07/2012  26
## 1886         02/08/2010  26
## 1887         02/11/1999  26
## 1888         02/12/2004  26
## 1889         03/05/2002  26
## 1890         03/05/2007  26
## 1891         03/08/1999  26
## 1892         03/10/1997  26
## 1893         03/10/2000  26
## 1894         03/10/2007  26
## 1895         03/11/2003  26
## 1896         04/02/2000  26
## 1897         04/02/2004  26
## 1898         04/04/2000  26
## 1899         04/11/1997  26
## 1900         04/11/2004  26
## 1901         04/12/2001  26
## 1902         05/01/2004  26
## 1903         05/02/2004  26
## 1904         05/03/2003  26
## 1905         05/06/2000  26
## 1906         05/06/2009  26
## 1907         05/08/2008  26
## 1908         05/09/2002  26
## 1909         05/09/2008  26
## 1910         06/05/2005  26
## 1911         06/05/2008  26
## 1912         06/06/1997  26
## 1913         06/10/2011  26
## 1914         07/01/2005  26
## 1915         07/04/1998  26
## 1916         07/05/1997  26
## 1917         07/05/2009  26
## 1918         07/06/2000  26
## 1919         07/08/2012  26
## 1920         07/11/2003  26
## 1921         08/01/2001  26
## 1922         08/03/2001  26
## 1923         08/03/2005  26
## 1924         08/04/2010  26
## 1925         08/10/1997  26
## 1926         08/10/2013  26
## 1927         08/12/2000  26
## 1928         09/10/2002  26
## 1929         10/01/2012  26
## 1930         10/02/2004  26
## 1931         10/03/2004  26
## 1932         10/05/2011  26
## 1933         10/05/2012  26
## 1934         10/07/2002  26
## 1935         10/07/2009  26
## 1936         10/08/2001  26
## 1937         10/10/2007  26
## 1938         11/02/2013  26
## 1939         11/05/2005  26
## 1940         12/06/2013  26
## 1941         12/07/2004  26
## 1942         13/04/1998  26
## 1943         13/04/2010  26
## 1944         13/06/2011  26
## 1945         13/09/2011  26
## 1946         13/09/2013  26
## 1947         13/12/2011  26
## 1948         13/12/2012  26
## 1949         14/02/2005  26
## 1950         14/06/2007  26
## 1951         14/06/2010  26
## 1952         14/07/2010  26
## 1953         14/09/1999  26
## 1954         14/10/2003  26
## 1955         14/12/2000  26
## 1956         15/03/2012  26
## 1957         15/08/2007  26
## 1958         15/08/2013  26
## 1959         15/09/1999  26
## 1960         15/12/1999  26
## 1961         16/01/2003  26
## 1962         16/01/2008  26
## 1963         16/02/2007  26
## 1964         16/04/2010  26
## 1965         16/05/2011  26
## 1966         16/06/2005  26
## 1967         16/07/2012  26
## 1968         16/12/2005  26
## 1969         17/01/2013  26
## 1970         17/02/2004  26
## 1971         17/02/2010  26
## 1972         17/03/2010  26
## 1973         17/08/1998  26
## 1974         17/08/2004  26
## 1975         17/10/2006  26
## 1976         17/11/2011  26
## 1977         17/12/1996  26
## 1978         18/03/2003  26
## 1979         18/05/2012  26
## 1980         18/10/2007  26
## 1981         19/03/2012  26
## 1982         19/06/2001  26
## 1983         19/06/2007  26
## 1984         19/07/2001  26
## 1985         19/07/2005  26
## 1986         19/07/2013  26
## 1987         20/10/2000  26
## 1988         21/03/2012  26
## 1989         21/05/2002  26
## 1990         21/08/2000  26
## 1991         21/09/2007  26
## 1992         21/09/2011  26
## 1993         21/11/2011  26
## 1994         21/12/2006  26
## 1995         22/06/2006  26
## 1996         22/07/2009  26
## 1997         22/09/1998  26
## 1998         22/10/2010  26
## 1999         23/05/2011  26
## 2000         23/06/1999  26
## 2001         23/09/2003  26
## 2002         23/10/2000  26
## 2003         23/11/2004  26
## 2004         24/01/2001  26
## 2005         24/01/2005  26
## 2006         24/05/1999  26
## 2007         24/05/2002  26
## 2008         25/01/1999  26
## 2009         25/01/2005  26
## 2010         25/04/2012  26
## 2011         25/07/2007  26
## 2012         25/07/2012  26
## 2013         25/08/2006  26
## 2014         25/10/1996  26
## 2015         25/10/2011  26
## 2016         26/03/2003  26
## 2017         26/08/2005  26
## 2018         26/09/2013  26
## 2019         26/11/2003  26
## 2020         27/06/2000  26
## 2021         27/07/2011  26
## 2022         27/08/2003  26
## 2023         28/01/2002  26
## 2024         28/02/2007  26
## 2025         28/05/2003  26
## 2026         28/05/2013  26
## 2027         28/06/2004  26
## 2028         28/08/2003  26
## 2029         28/08/2008  26
## 2030         29/01/1999  26
## 2031         29/05/2003  26
## 2032         29/05/2012  26
## 2033         29/06/1999  26
## 2034         29/08/2001  26
## 2035         29/09/2008  26
## 2036         30/01/2001  26
## 2037         30/04/2008  26
## 2038         30/08/2005  26
## 2039         30/09/1997  26
## 2040         30/09/1999  26
## 2041         30/10/1996  26
## 2042         30/12/2009  26
## 2043         31/03/1997  26
## 2044         31/05/2012  26
## 2045         31/07/1998  26
## 2046         01/02/2008  25
## 2047         01/03/2002  25
## 2048         01/03/2010  25
## 2049         01/04/2002  25
## 2050         01/05/2002  25
## 2051         01/08/2002  25
## 2052         01/10/1996  25
## 2053         01/10/2004  25
## 2054         01/11/1996  25
## 2055         01/11/1999  25
## 2056         02/01/1997  25
## 2057         02/02/1998  25
## 2058         02/03/2001  25
## 2059         02/03/2006  25
## 2060         02/04/2007  25
## 2061         02/06/2000  25
## 2062         02/07/1997  25
## 2063         02/07/2001  25
## 2064         02/09/2011  25
## 2065         02/10/2007  25
## 2066         02/12/2003  25
## 2067         03/02/2006  25
## 2068         03/02/2009  25
## 2069         03/02/2011  25
## 2070         03/06/2002  25
## 2071         03/09/1996  25
## 2072         04/01/2008  25
## 2073         04/02/2014  25
## 2074         04/03/1998  25
## 2075         04/03/2004  25
## 2076         04/03/2014  25
## 2077         04/10/2012  25
## 2078         05/04/2000  25
## 2079         05/04/2002  25
## 2080         05/09/2013  25
## 2081         05/12/2001  25
## 2082         06/01/2009  25
## 2083         06/04/1999  25
## 2084         06/06/2006  25
## 2085         06/08/2013  25
## 2086         06/10/2006  25
## 2087         06/11/2012  25
## 2088         07/07/2003  25
## 2089         07/08/2003  25
## 2090         07/12/1998  25
## 2091         08/04/2014  25
## 2092         08/09/2003  25
## 2093         08/09/2004  25
## 2094         08/09/2006  25
## 2095         08/10/2010  25
## 2096         08/11/2010  25
## 2097         08/12/2008  25
## 2098         09/02/2004  25
## 2099         09/03/2005  25
## 2100         09/04/1997  25
## 2101         09/08/1999  25
## 2102         09/08/2001  25
## 2103         09/11/2005  25
## 2104         09/12/2002  25
## 2105         09/12/2005  25
## 2106         10/01/2007  25
## 2107         10/03/1997  25
## 2108         10/05/2007  25
## 2109         10/06/2004  25
## 2110         10/07/2012  25
## 2111         10/08/2000  25
## 2112         10/08/2005  25
## 2113         10/09/2007  25
## 2114         10/10/2002  25
## 2115         10/10/2013  25
## 2116         11/04/1997  25
## 2117         11/04/2003  25
## 2118         11/05/2006  25
## 2119         11/06/2004  25
## 2120         11/07/2013  25
## 2121         11/10/1996  25
## 2122         12/01/2007  25
## 2123         12/03/1998  25
## 2124         12/08/2005  25
## 2125         13/01/1998  25
## 2126         13/04/2009  25
## 2127         13/05/1999  25
## 2128         13/05/2002  25
## 2129         13/05/2008  25
## 2130         13/08/2012  25
## 2131         13/09/2007  25
## 2132         13/10/1998  25
## 2133         13/10/2003  25
## 2134         13/11/1998  25
## 2135         14/01/1998  25
## 2136         14/01/2010  25
## 2137         14/01/2011  25
## 2138         14/02/2003  25
## 2139         14/04/2004  25
## 2140         14/11/1996  25
## 2141         15/04/1997  25
## 2142         15/10/2012  25
## 2143         15/12/2008  25
## 2144         16/02/1999  25
## 2145         16/02/2009  25
## 2146         16/04/1997  25
## 2147         16/04/2008  25
## 2148         16/07/2010  25
## 2149         16/08/2011  25
## 2150         16/09/2004  25
## 2151         16/09/2005  25
## 2152         17/01/1997  25
## 2153         17/03/2009  25
## 2154         17/04/2001  25
## 2155         17/05/1999  25
## 2156         17/06/2005  25
## 2157         17/06/2010  25
## 2158         17/09/2009  25
## 2159         17/09/2012  25
## 2160         18/05/2009  25
## 2161         18/07/2000  25
## 2162         18/08/1998  25
## 2163         18/10/2011  25
## 2164         18/11/2008  25
## 2165         18/11/2013  25
## 2166         18/12/2007  25
## 2167         18/12/2008  25
## 2168         19/01/2006  25
## 2169         19/04/2007  25
## 2170         19/06/2006  25
## 2171         19/10/2010  25
## 2172         19/12/2011  25
## 2173         20/02/1997  25
## 2174         20/04/2005  25
## 2175         20/05/2003  25
## 2176         20/05/2004  25
## 2177         20/05/2005  25
## 2178         20/08/2007  25
## 2179         20/10/1997  25
## 2180         20/10/2010  25
## 2181         20/12/2002  25
## 2182         21/02/2007  25
## 2183         21/02/2012  25
## 2184         21/04/2005  25
## 2185         21/06/2000  25
## 2186         21/07/2006  25
## 2187         21/09/2000  25
## 2188         21/09/2001  25
## 2189         21/09/2004  25
## 2190         22/02/2012  25
## 2191         22/10/2008  25
## 2192         22/11/2013  25
## 2193         23/04/2014  25
## 2194         23/05/2005  25
## 2195         23/07/2007  25
## 2196         24/01/2007  25
## 2197         24/01/2013  25
## 2198         24/03/2008  25
## 2199         24/04/2013  25
## 2200         24/05/2001  25
## 2201         24/09/2001  25
## 2202         24/09/2008  25
## 2203         24/10/2003  25
## 2204         25/03/2014  25
## 2205         25/06/2007  25
## 2206         25/09/1998  25
## 2207         25/10/1999  25
## 2208         26/01/2007  25
## 2209         26/04/2005  25
## 2210         26/04/2013  25
## 2211         26/05/2005  25
## 2212         26/08/2009  25
## 2213         26/09/2000  25
## 2214         26/10/1999  25
## 2215         27/08/2001  25
## 2216         27/09/1999  25
## 2217         27/12/1996  25
## 2218         28/08/2006  25
## 2219         28/09/2009  25
## 2220         28/10/2008  25
## 2221         28/10/2013  25
## 2222         29/03/2000  25
## 2223         29/03/2001  25
## 2224         29/04/2003  25
## 2225         29/05/2008  25
## 2226         29/05/2013  25
## 2227         29/11/2004  25
## 2228         29/11/2007  25
## 2229         30/04/2004  25
## 2230         30/07/2012  25
## 2231         30/08/2012  25
## 2232         30/08/2013  25
## 2233         01/03/2000  24
## 2234         01/05/1998  24
## 2235         01/05/2008  24
## 2236         01/08/2011  24
## 2237         01/09/2009  24
## 2238         02/01/2007  24
## 2239         02/03/2010  24
## 2240         02/05/2001  24
## 2241         02/07/2002  24
## 2242         02/11/2006  24
## 2243         02/12/1999  24
## 2244         02/12/2009  24
## 2245         02/12/2010  24
## 2246         03/01/2006  24
## 2247         03/02/2012  24
## 2248         03/03/2005  24
## 2249         03/05/2013  24
## 2250         03/06/2011  24
## 2251         03/07/2003  24
## 2252         03/09/2003  24
## 2253         04/03/2010  24
## 2254         04/04/2011  24
## 2255         04/09/1999  24
## 2256         04/09/2012  24
## 2257         04/10/2000  24
## 2258         04/10/2004  24
## 2259         05/02/1998  24
## 2260         05/06/2007  24
## 2261         05/07/2005  24
## 2262         05/12/2008  24
## 2263         06/02/1997  24
## 2264         06/07/1998  24
## 2265         06/08/1997  24
## 2266         06/08/2004  24
## 2267         06/09/2012  24
## 2268         06/10/2003  24
## 2269         07/01/2002  24
## 2270         07/02/2011  24
## 2271         07/06/2002  24
## 2272         08/01/2010  24
## 2273         08/01/2014  24
## 2274         08/02/2006  24
## 2275         08/02/2013  24
## 2276         08/09/2005  24
## 2277         08/10/2009  24
## 2278         08/11/1999  24
## 2279         09/05/2001  24
## 2280         09/05/2011  24
## 2281         09/05/2013  24
## 2282         09/07/2012  24
## 2283         09/09/2002  24
## 2284         09/12/2011  24
## 2285         10/06/1997  24
## 2286         10/08/1999  24
## 2287         10/09/2001  24
## 2288         10/09/2003  24
## 2289         11/03/1999  24
## 2290         11/04/2001  24
## 2291         11/08/2008  24
## 2292         11/10/1999  24
## 2293         11/10/2010  24
## 2294         12/05/2004  24
## 2295         12/06/1997  24
## 2296         12/12/2007  24
## 2297         13/01/2012  24
## 2298         13/03/2009  24
## 2299         13/04/1999  24
## 2300         13/04/2000  24
## 2301         13/05/2004  24
## 2302         13/05/2011  24
## 2303         13/10/2009  24
## 2304         13/12/2007  24
## 2305         14/01/1997  24
## 2306         14/01/2014  24
## 2307         14/03/2003  24
## 2308         14/04/2003  24
## 2309         14/05/2004  24
## 2310         14/12/1998  24
## 2311         14/12/2006  24
## 2312         15/01/1998  24
## 2313         15/01/2009  24
## 2314         15/01/2010  24
## 2315         15/07/2005  24
## 2316         15/08/2005  24
## 2317         15/09/2005  24
## 2318         15/11/1999  24
## 2319         15/11/2007  24
## 2320         15/11/2013  24
## 2321         16/05/2002  24
## 2322         16/05/2005  24
## 2323         16/06/1999  24
## 2324         16/07/2009  24
## 2325         16/08/2012  24
## 2326         16/11/2009  24
## 2327         16/11/2012  24
## 2328         17/03/1999  24
## 2329         17/03/2014  24
## 2330         17/04/2008  24
## 2331         17/08/2011  24
## 2332         17/09/2008  24
## 2333         17/12/1997  24
## 2334         17/12/2007  24
## 2335         18/01/2005  24
## 2336         18/01/2013  24
## 2337         18/02/2005  24
## 2338         18/03/2014  24
## 2339         18/04/2007  24
## 2340         18/06/2013  24
## 2341         19/02/2004  24
## 2342         19/02/2013  24
## 2343         19/04/2006  24
## 2344         19/07/2010  24
## 2345         19/09/2006  24
## 2346         19/09/2011  24
## 2347         19/09/2013  24
## 2348         19/12/2012  24
## 2349         20/03/2007  24
## 2350         20/04/2010  24
## 2351         20/07/2009  24
## 2352         20/08/1998  24
## 2353         20/08/2012  24
## 2354         21/01/2005  24
## 2355         21/01/2009  24
## 2356         21/04/2006  24
## 2357         22/05/2003  24
## 2358         22/07/1998  24
## 2359         22/09/2011  24
## 2360         22/12/2006  24
## 2361         23/01/2002  24
## 2362         23/01/2014  24
## 2363         23/02/2005  24
## 2364         23/02/2006  24
## 2365         23/05/2002  24
## 2366         23/07/1996  24
## 2367         23/08/2010  24
## 2368         23/09/2013  24
## 2369         24/02/2009  24
## 2370         24/08/2009  24
## 2371         24/09/2003  24
## 2372         25/04/2001  24
## 2373         25/04/2011  24
## 2374         25/04/2014  24
## 2375         25/05/2007  24
## 2376         25/10/2013  24
## 2377         25/11/2003  24
## 2378         26/01/2000  24
## 2379         26/01/2011  24
## 2380         26/04/2001  24
## 2381         26/05/2009  24
## 2382         26/05/2010  24
## 2383         26/05/2011  24
## 2384         26/07/2001  24
## 2385         26/09/2001  24
## 2386         26/11/1996  24
## 2387         27/03/2009  24
## 2388         27/04/2007  24
## 2389         27/06/2003  24
## 2390         27/06/2011  24
## 2391         27/06/2012  24
## 2392         27/08/2008  24
## 2393         28/01/2011  24
## 2394         28/02/2012  24
## 2395         28/03/2014  24
## 2396         28/04/1999  24
## 2397         28/05/2010  24
## 2398         28/07/2000  24
## 2399         28/07/2006  24
## 2400         28/08/2007  24
## 2401         28/09/2007  24
## 2402         28/10/1998  24
## 2403         28/10/2004  24
## 2404         28/11/2005  24
## 2405         29/03/2010  24
## 2406         29/10/1999  24
## 2407         29/12/1999  24
## 2408         30/03/1999  24
## 2409         30/03/2001  24
## 2410         30/03/2005  24
## 2411         30/07/2007  24
## 2412         30/08/2010  24
## 2413         30/11/2009  24
## 2414         31/10/2006  24
## 2415         01/04/2004  23
## 2416         01/06/2001  23
## 2417         01/10/2009  23
## 2418         02/02/2010  23
## 2419         02/04/2003  23
## 2420         02/05/2006  23
## 2421         02/11/2011  23
## 2422         03/03/2008  23
## 2423         03/03/2010  23
## 2424         03/04/2006  23
## 2425         03/06/2010  23
## 2426         03/06/2013  23
## 2427         03/08/2004  23
## 2428         03/09/2013  23
## 2429         03/11/1999  23
## 2430         03/11/2005  23
## 2431         04/01/2007  23
## 2432         04/08/2011  23
## 2433         04/09/2008  23
## 2434         04/11/1999  23
## 2435         05/01/2012  23
## 2436         05/02/2010  23
## 2437         05/03/2012  23
## 2438         05/04/2004  23
## 2439         05/05/2010  23
## 2440         05/08/2005  23
## 2441         05/09/2000  23
## 2442         05/09/2001  23
## 2443         05/10/2001  23
## 2444         05/12/2005  23
## 2445         06/01/2003  23
## 2446         06/04/2006  23
## 2447         06/05/2013  23
## 2448         06/08/1999  23
## 2449         06/09/2005  23
## 2450         06/12/2007  23
## 2451         07/01/1999  23
## 2452         07/02/2008  23
## 2453         07/04/2000  23
## 2454         07/04/2010  23
## 2455         07/07/2005  23
## 2456         07/08/1997  23
## 2457         07/09/2004  23
## 2458         07/12/2004  23
## 2459         08/01/2009  23
## 2460         08/05/2013  23
## 2461         08/08/2001  23
## 2462         08/08/2011  23
## 2463         08/11/2005  23
## 2464         08/11/2006  23
## 2465         08/12/2010  23
## 2466         08/12/2011  23
## 2467         09/04/2007  23
## 2468         09/08/2011  23
## 2469         09/09/2008  23
## 2470         09/11/2000  23
## 2471         09/11/2009  23
## 2472         09/12/1999  23
## 2473         10/01/2005  23
## 2474         10/02/2006  23
## 2475         10/09/1999  23
## 2476         10/11/2009  23
## 2477         10/11/2010  23
## 2478         10/12/1998  23
## 2479         11/01/2007  23
## 2480         11/04/2008  23
## 2481         11/04/2012  23
## 2482         11/06/2012  23
## 2483         11/07/1997  23
## 2484         11/07/2002  23
## 2485         11/09/2003  23
## 2486         12/01/2005  23
## 2487         12/05/2003  23
## 2488         12/07/2007  23
## 2489         12/09/2011  23
## 2490         12/10/2000  23
## 2491         13/01/2003  23
## 2492         13/02/2013  23
## 2493         13/04/2004  23
## 2494         13/05/2013  23
## 2495         13/06/2003  23
## 2496         13/07/2006  23
## 2497         13/09/2005  23
## 2498         13/11/2007  23
## 2499         14/05/2008  23
## 2500         14/07/1998  23
## 2501         14/07/2005  23
## 2502         14/09/2001  23
## 2503         14/09/2010  23
## 2504         14/11/2001  23
## 2505         15/03/2001  23
## 2506         15/04/2005  23
## 2507         15/05/2009  23
## 2508         15/06/2010  23
## 2509         15/07/2011  23
## 2510         15/08/1996  23
## 2511         15/10/2013  23
## 2512         16/02/2001  23
## 2513         16/02/2006  23
## 2514         16/05/2008  23
## 2515         16/05/2012  23
## 2516         16/06/2006  23
## 2517         16/06/2010  23
## 2518         16/08/1999  23
## 2519         16/09/2013  23
## 2520         16/10/1996  23
## 2521         17/02/1999  23
## 2522         17/02/2005  23
## 2523         17/07/1997  23
## 2524         17/09/2003  23
## 2525         17/09/2004  23
## 2526         17/11/1998  23
## 2527         17/11/2005  23
## 2528         18/11/2010  23
## 2529         19/02/2009  23
## 2530         19/03/2001  23
## 2531         19/05/1998  23
## 2532         19/06/2012  23
## 2533         19/07/2002  23
## 2534         19/08/2002  23
## 2535         19/09/1997  23
## 2536         19/10/2001  23
## 2537         19/10/2007  23
## 2538         19/11/2012  23
## 2539         20/02/2008  23
## 2540         20/02/2014  23
## 2541         20/05/2011  23
## 2542         20/09/1996  23
## 2543         20/09/2005  23
## 2544         20/09/2006  23
## 2545         20/11/1998  23
## 2546         20/11/2007  23
## 2547         21/02/2008  23
## 2548         21/04/1999  23
## 2549         21/06/2004  23
## 2550         21/08/1998  23
## 2551         21/09/2009  23
## 2552         21/12/2007  23
## 2553         22/03/2012  23
## 2554         22/04/1998  23
## 2555         22/04/2010  23
## 2556         22/06/2001  23
## 2557         22/06/2004  23
## 2558         22/07/2004  23
## 2559         22/08/1997  23
## 2560         22/12/1999  23
## 2561         23/03/1999  23
## 2562         23/03/2004  23
## 2563         23/04/2007  23
## 2564         23/06/1998  23
## 2565         23/06/2005  23
## 2566         23/07/2004  23
## 2567         23/07/2008  23
## 2568         23/08/1999  23
## 2569         24/02/2005  23
## 2570         24/02/2012  23
## 2571         24/03/2006  23
## 2572         24/04/1997  23
## 2573         24/04/2012  23
## 2574         24/05/2013  23
## 2575         24/06/1998  23
## 2576         24/06/2003  23
## 2577         24/08/1998  23
## 2578         24/08/2011  23
## 2579         24/09/2004  23
## 2580         24/11/2009  23
## 2581         24/11/2010  23
## 2582         25/01/2007  23
## 2583         25/04/2000  23
## 2584         25/04/2003  23
## 2585         25/06/2014  23
## 2586         25/07/2011  23
## 2587         25/07/2013  23
## 2588         26/02/2009  23
## 2589         26/10/2006  23
## 2590         26/12/2003  23
## 2591         27/01/2010  23
## 2592         27/04/2010  23
## 2593         27/05/2010  23
## 2594         27/06/1997  23
## 2595         28/01/2003  23
## 2596         28/04/2003  23
## 2597         28/04/2011  23
## 2598         28/05/1999  23
## 2599         28/07/2009  23
## 2600         28/09/2005  23
## 2601         28/10/1999  23
## 2602         29/03/2007  23
## 2603         29/05/2009  23
## 2604         29/08/2006  23
## 2605         29/09/1998  23
## 2606         29/09/1999  23
## 2607         29/09/2000  23
## 2608         29/09/2010  23
## 2609         30/03/2010  23
## 2610         30/06/2008  23
## 2611         30/06/2010  23
## 2612         30/09/1998  23
## 2613         30/10/2002  23
## 2614         30/12/1997  23
## 2615         31/03/2006  23
## 2616         31/07/2013  23
## 2617         31/08/2000  23
## 2618         31/08/2010  23
## 2619         31/12/2004  23
## 2620         01/07/2004  22
## 2621         01/10/2007  22
## 2622         01/12/2011  22
## 2623         02/04/2008  22
## 2624         02/10/2006  22
## 2625         03/04/2013  22
## 2626         03/08/2007  22
## 2627         03/08/2011  22
## 2628         03/10/2006  22
## 2629         04/03/2009  22
## 2630         04/08/2010  22
## 2631         04/10/2002  22
## 2632         04/10/2011  22
## 2633         04/12/2003  22
## 2634         04/12/2006  22
## 2635         05/02/1997  22
## 2636         05/03/2009  22
## 2637         05/05/2011  22
## 2638         05/10/2009  22
## 2639         05/11/1999  22
## 2640         05/11/2010  22
## 2641         05/12/2007  22
## 2642         06/01/2006  22
## 2643         06/02/2012  22
## 2644         06/06/2008  22
## 2645         06/07/2005  22
## 2646         06/08/2001  22
## 2647         06/08/2003  22
## 2648         06/10/2004  22
## 2649         06/11/1998  22
## 2650         06/12/2006  22
## 2651         07/02/2001  22
## 2652         07/08/2013  22
## 2653         07/09/2011  22
## 2654         07/10/2008  22
## 2655         08/01/2008  22
## 2656         08/04/2005  22
## 2657         08/04/2013  22
## 2658         08/07/2003  22
## 2659         08/08/1996  22
## 2660         09/04/2013  22
## 2661         09/05/2012  22
## 2662         09/06/2000  22
## 2663         09/07/2013  22
## 2664         09/11/2004  22
## 2665         10/02/2005  22
## 2666         10/02/2010  22
## 2667         10/04/2007  22
## 2668         10/12/1997  22
## 2669         10/12/2007  22
## 2670         11/02/2002  22
## 2671         11/06/2002  22
## 2672         11/08/2009  22
## 2673         11/09/2008  22
## 2674         11/10/2006  22
## 2675         11/12/2009  22
## 2676         12/02/2008  22
## 2677         12/03/2003  22
## 2678         12/03/2013  22
## 2679         12/04/2012  22
## 2680         12/05/2011  22
## 2681         12/09/1996  22
## 2682         12/11/2010  22
## 2683         13/06/2012  22
## 2684         13/07/2010  22
## 2685         13/09/2010  22
## 2686         13/10/1999  22
## 2687         13/10/2011  22
## 2688         14/04/1999  22
## 2689         14/04/2010  22
## 2690         14/06/2004  22
## 2691         14/08/1997  22
## 2692         14/10/2011  22
## 2693         14/11/2000  22
## 2694         14/11/2012  22
## 2695         14/11/2013  22
## 2696         14/12/1999  22
## 2697         14/12/2005  22
## 2698         15/01/2008  22
## 2699         15/03/2010  22
## 2700         15/05/2013  22
## 2701         15/06/2006  22
## 2702         15/09/2000  22
## 2703         15/10/2004  22
## 2704         16/03/2012  22
## 2705         16/05/2003  22
## 2706         16/07/1997  22
## 2707         16/08/2002  22
## 2708         16/08/2007  22
## 2709         16/09/2008  22
## 2710         16/10/2008  22
## 2711         17/03/1997  22
## 2712         17/03/2008  22
## 2713         17/04/2013  22
## 2714         17/06/2013  22
## 2715         17/10/2001  22
## 2716         17/12/2009  22
## 2717         18/02/2008  22
## 2718         18/02/2009  22
## 2719         18/03/1998  22
## 2720         18/03/2013  22
## 2721         18/05/2000  22
## 2722         18/05/2006  22
## 2723         18/06/2001  22
## 2724         18/06/2012  22
## 2725         18/07/2003  22
## 2726         18/07/2008  22
## 2727         18/08/1999  22
## 2728         18/10/2012  22
## 2729         18/10/2013  22
## 2730         19/01/2001  22
## 2731         19/01/2012  22
## 2732         19/02/2007  22
## 2733         19/04/2013  22
## 2734         19/08/1997  22
## 2735         19/09/2001  22
## 2736         19/11/2004  22
## 2737         19/12/2002  22
## 2738         20/01/2011  22
## 2739         20/02/2001  22
## 2740         20/02/2012  22
## 2741         20/05/2008  22
## 2742         20/07/2005  22
## 2743         20/08/2010  22
## 2744         20/10/2005  22
## 2745         20/12/2004  22
## 2746         21/01/2011  22
## 2747         21/03/2002  22
## 2748         21/05/2007  22
## 2749         21/05/2009  22
## 2750         21/05/2010  22
## 2751         21/08/2008  22
## 2752         21/10/1997  22
## 2753         21/10/1999  22
## 2754         21/11/2002  22
## 2755         21/12/2001  22
## 2756         21/12/2012  22
## 2757         22/01/2002  22
## 2758         22/02/2007  22
## 2759         22/03/2005  22
## 2760         22/06/2010  22
## 2761         22/07/2013  22
## 2762         22/08/2013  22
## 2763         22/09/2000  22
## 2764         22/09/2009  22
## 2765         23/01/2009  22
## 2766         23/02/2010  22
## 2767         23/03/2011  22
## 2768         23/05/2001  22
## 2769         23/10/1997  22
## 2770         23/11/1999  22
## 2771         23/12/2011  22
## 2772         24/04/2007  22
## 2773         24/05/2000  22
## 2774         24/09/2012  22
## 2775         25/01/2008  22
## 2776         25/02/2009  22
## 2777         25/09/2000  22
## 2778         25/09/2012  22
## 2779         25/11/1996  22
## 2780         25/11/2013  22
## 2781         26/01/2009  22
## 2782         26/02/1999  22
## 2783         26/07/2007  22
## 2784         26/07/2010  22
## 2785         26/07/2013  22
## 2786         26/09/2002  22
## 2787         26/09/2011  22
## 2788         26/09/2012  22
## 2789         26/10/2010  22
## 2790         27/02/2006  22
## 2791         27/03/2003  22
## 2792         27/03/2008  22
## 2793         27/07/2005  22
## 2794         27/08/2009  22
## 2795         27/08/2013  22
## 2796         28/01/2013  22
## 2797         28/03/2005  22
## 2798         28/07/2011  22
## 2799         28/08/2000  22
## 2800         28/08/2002  22
## 2801         28/10/2009  22
## 2802         29/03/2011  22
## 2803         29/03/2012  22
## 2804         29/04/2010  22
## 2805         29/05/1997  22
## 2806         29/06/1998  22
## 2807         29/07/2008  22
## 2808         29/08/2012  22
## 2809         29/12/2004  22
## 2810         30/01/2014  22
## 2811         30/07/2010  22
## 2812         30/09/2009  22
## 2813         30/11/2011  22
## 2814         30/12/2003  22
## 2815         31/05/2011  22
## 2816         31/08/2009  22
## 2817         31/10/1997  22
## 2818         31/10/2013  22
## 2819         01/07/2002  21
## 2820         01/08/2012  21
## 2821         01/11/2006  21
## 2822         01/12/1998  21
## 2823         01/12/2003  21
## 2824         02/01/2009  21
## 2825         02/02/2001  21
## 2826         02/03/2004  21
## 2827         02/04/1996  21
## 2828         02/06/1998  21
## 2829         02/06/1999  21
## 2830         02/06/2004  21
## 2831         02/06/2010  21
## 2832         02/06/2011  21
## 2833         02/10/1998  21
## 2834         02/10/2001  21
## 2835         02/12/2008  21
## 2836         03/06/1998  21
## 2837         03/08/2001  21
## 2838         03/11/1998  21
## 2839         04/01/2000  21
## 2840         04/02/2003  21
## 2841         04/04/2003  21
## 2842         04/06/2012  21
## 2843         04/08/2005  21
## 2844         04/10/2010  21
## 2845         04/11/1996  21
## 2846         04/12/1996  21
## 2847         05/06/2013  21
## 2848         05/11/1998  21
## 2849         05/11/2007  21
## 2850         05/11/2009  21
## 2851         06/01/2010  21
## 2852         06/04/2010  21
## 2853         06/11/2008  21
## 2854         06/12/2012  21
## 2855         07/02/2003  21
## 2856         07/02/2007  21
## 2857         07/03/2012  21
## 2858         07/07/2011  21
## 2859         07/09/1999  21
## 2860         07/09/2000  21
## 2861         07/09/2010  21
## 2862         08/03/2007  21
## 2863         08/03/2010  21
## 2864         08/03/2011  21
## 2865         08/05/2003  21
## 2866         08/10/2007  21
## 2867         09/01/2001  21
## 2868         09/03/2012  21
## 2869         09/04/2010  21
## 2870         09/05/2014  21
## 2871         09/06/2003  21
## 2872         09/10/2007  21
## 2873         10/05/2006  21
## 2874         10/10/2005  21
## 2875         10/11/1999  21
## 2876         10/11/2000  21
## 2877         10/11/2003  21
## 2878         10/12/2001  21
## 2879         11/06/2008  21
## 2880         11/09/2001  21
## 2881         11/10/2002  21
## 2882         11/12/2012  21
## 2883         12/02/2002  21
## 2884         12/02/2010  21
## 2885         12/05/2006  21
## 2886         12/08/1997  21
## 2887         12/08/1998  21
## 2888         12/08/2003  21
## 2889         12/10/2010  21
## 2890         13/02/2001  21
## 2891         13/03/2006  21
## 2892         13/07/2004  21
## 2893         13/10/2004  21
## 2894         13/11/2013  21
## 2895         14/02/2013  21
## 2896         14/03/2012  21
## 2897         14/04/2005  21
## 2898         14/04/2008  21
## 2899         14/05/2010  21
## 2900         14/07/2009  21
## 2901         14/07/2011  21
## 2902         14/08/2007  21
## 2903         15/06/2007  21
## 2904         15/08/2011  21
## 2905         15/11/1996  21
## 2906         15/11/2005  21
## 2907         16/02/2011  21
## 2908         16/04/2007  21
## 2909         17/01/2003  21
## 2910         17/01/2014  21
## 2911         17/07/2000  21
## 2912         17/12/2012  21
## 2913         18/02/2011  21
## 2914         18/08/2006  21
## 2915         18/09/2001  21
## 2916         18/09/2006  21
## 2917         19/03/1997  21
## 2918         19/05/1999  21
## 2919         19/09/2007  21
## 2920         19/10/2000  21
## 2921         19/10/2011  21
## 2922         19/11/2007  21
## 2923         19/11/2013  21
## 2924         20/02/2007  21
## 2925         20/03/2008  21
## 2926         20/03/2009  21
## 2927         20/04/2012  21
## 2928         20/06/2006  21
## 2929         20/06/2013  21
## 2930         20/07/2001  21
## 2931         20/07/2010  21
## 2932         20/11/2003  21
## 2933         21/03/2006  21
## 2934         21/04/2009  21
## 2935         21/05/1999  21
## 2936         21/07/2000  21
## 2937         21/08/2012  21
## 2938         21/12/2010  21
## 2939         22/01/2010  21
## 2940         22/02/2010  21
## 2941         22/03/2010  21
## 2942         22/05/2006  21
## 2943         22/08/2006  21
## 2944         22/09/2010  21
## 2945         22/11/2010  21
## 2946         22/12/1997  21
## 2947         22/12/2005  21
## 2948         23/02/2011  21
## 2949         23/04/2003  21
## 2950         23/04/2008  21
## 2951         23/04/2013  21
## 2952         23/05/2012  21
## 2953         23/06/2010  21
## 2954         23/10/2007  21
## 2955         24/02/2006  21
## 2956         24/09/2009  21
## 2957         24/09/2010  21
## 2958         24/10/2002  21
## 2959         25/02/2003  21
## 2960         25/04/2007  21
## 2961         25/05/2010  21
## 2962         25/11/1997  21
## 2963         25/11/2002  21
## 2964         25/11/2008  21
## 2965         26/03/2002  21
## 2966         26/04/2010  21
## 2967         26/06/2000  21
## 2968         26/06/2008  21
## 2969         26/07/2011  21
## 2970         26/09/2005  21
## 2971         26/12/2002  21
## 2972         27/01/2014  21
## 2973         27/05/1999  21
## 2974         27/09/2007  21
## 2975         27/09/2010  21
## 2976         27/10/1997  21
## 2977         27/10/1999  21
## 2978         28/02/2002  21
## 2979         28/04/2006  21
## 2980         28/05/2004  21
## 2981         28/06/2005  21
## 2982         28/12/1998  21
## 2983         29/01/2009  21
## 2984         29/03/2004  21
## 2985         29/08/2002  21
## 2986         30/04/1996  21
## 2987         30/04/1999  21
## 2988         30/04/2007  21
## 2989         30/04/2009  21
## 2990         30/06/2006  21
## 2991         30/07/2013  21
## 2992         30/08/1996  21
## 2993         30/08/2007  21
## 2994         30/09/2005  21
## 2995         30/11/2005  21
## 2996         31/03/2005  21
## 2997         01/02/2006  20
## 2998         01/04/2011  20
## 2999         01/05/2001  20
## 3000         01/07/2008  20
## 3001         01/11/2001  20
## 3002         02/01/2004  20
## 3003         02/02/2005  20
## 3004         02/02/2009  20
## 3005         02/03/2011  20
## 3006         02/07/1998  20
## 3007         02/10/2008  20
## 3008         02/11/2012  20
## 3009         03/04/2000  20
## 3010         03/09/2008  20
## 3011         03/09/2009  20
## 3012         04/01/2002  20
## 3013         04/04/2006  20
## 3014         04/05/2006  20
## 3015         04/06/2010  20
## 3016         04/06/2013  20
## 3017         04/11/1998  20
## 3018         04/11/2008  20
## 3019         04/12/2013  20
## 3020         05/01/2010  20
## 3021         05/02/2014  20
## 3022         05/04/2010  20
## 3023         05/04/2013  20
## 3024         05/05/1997  20
## 3025         05/05/2006  20
## 3026         05/06/2006  20
## 3027         05/08/2011  20
## 3028         05/10/2005  20
## 3029         05/10/2006  20
## 3030         05/10/2012  20
## 3031         05/11/2004  20
## 3032         06/02/1998  20
## 3033         06/02/2003  20
## 3034         06/06/2013  20
## 3035         06/07/2004  20
## 3036         06/08/2012  20
## 3037         06/10/2010  20
## 3038         06/12/2005  20
## 3039         06/12/2013  20
## 3040         07/01/2011  20
## 3041         07/01/2014  20
## 3042         07/03/2008  20
## 3043         07/03/2014  20
## 3044         07/04/2004  20
## 3045         07/05/2004  20
## 3046         07/08/1998  20
## 3047         07/10/2009  20
## 3048         07/11/2006  20
## 3049         07/12/2012  20
## 3050         08/06/2004  20
## 3051         08/07/2005  20
## 3052         08/07/2008  20
## 3053         08/08/2005  20
## 3054         08/09/2000  20
## 3055         08/11/2013  20
## 3056         09/01/2006  20
## 3057         09/03/2000  20
## 3058         09/04/2009  20
## 3059         09/04/2012  20
## 3060         09/06/2008  20
## 3061         09/09/1999  20
## 3062         09/09/2011  20
## 3063         09/10/2008  20
## 3064         10/02/2009  20
## 3065         10/03/2000  20
## 3066         10/03/2005  20
## 3067         10/03/2010  20
## 3068         10/06/2011  20
## 3069         10/07/2008  20
## 3070         10/11/2008  20
## 3071         10/12/1996  20
## 3072         10/12/2002  20
## 3073         11/01/2010  20
## 3074         11/01/2013  20
## 3075         11/03/2004  20
## 3076         11/04/2006  20
## 3077         11/06/1997  20
## 3078         11/12/2007  20
## 3079         12/03/1997  20
## 3080         12/04/2002  20
## 3081         12/04/2006  20
## 3082         12/04/2007  20
## 3083         12/09/2008  20
## 3084         12/09/2013  20
## 3085         13/01/2011  20
## 3086         13/02/1998  20
## 3087         13/03/2012  20
## 3088         13/07/2007  20
## 3089         13/08/2003  20
## 3090         13/11/2009  20
## 3091         13/12/2010  20
## 3092         13/12/2013  20
## 3093         14/01/2000  20
## 3094         14/03/2000  20
## 3095         14/03/2002  20
## 3096         14/04/2011  20
## 3097         14/05/2013  20
## 3098         14/06/2000  20
## 3099         14/10/2005  20
## 3100         14/11/2006  20
## 3101         14/12/2009  20
## 3102         15/08/2006  20
## 3103         15/08/2008  20
## 3104         15/09/2011  20
## 3105         16/04/2001  20
## 3106         16/06/2003  20
## 3107         16/10/2006  20
## 3108         16/10/2012  20
## 3109         16/11/2005  20
## 3110         16/12/2011  20
## 3111         17/02/2011  20
## 3112         17/03/2003  20
## 3113         17/04/2003  20
## 3114         17/04/2009  20
## 3115         17/05/2011  20
## 3116         17/08/2012  20
## 3117         17/10/2002  20
## 3118         18/01/2007  20
## 3119         18/03/1999  20
## 3120         18/04/2012  20
## 3121         18/07/2007  20
## 3122         18/09/1997  20
## 3123         18/11/1998  20
## 3124         18/11/2009  20
## 3125         18/12/2013  20
## 3126         19/01/2005  20
## 3127         19/02/2010  20
## 3128         19/03/2010  20
## 3129         19/03/2013  20
## 3130         19/05/2004  20
## 3131         19/11/2009  20
## 3132         20/01/2000  20
## 3133         20/01/2003  20
## 3134         20/01/2012  20
## 3135         20/02/2009  20
## 3136         20/03/2012  20
## 3137         20/03/2013  20
## 3138         20/04/2011  20
## 3139         20/05/2010  20
## 3140         20/06/2012  20
## 3141         20/07/2011  20
## 3142         20/08/2002  20
## 3143         20/12/2013  20
## 3144         21/02/2002  20
## 3145         21/03/2011  20
## 3146         21/04/2004  20
## 3147         21/05/2004  20
## 3148         21/05/2012  20
## 3149         21/05/2013  20
## 3150         21/09/1999  20
## 3151         21/12/1999  20
## 3152         21/12/2004  20
## 3153         22/02/2008  20
## 3154         22/03/2011  20
## 3155         22/08/2011  20
## 3156         23/01/2004  20
## 3157         23/01/2006  20
## 3158         23/04/2010  20
## 3159         23/05/2007  20
## 3160         23/08/2004  20
## 3161         23/08/2005  20
## 3162         23/09/2004  20
## 3163         23/09/2011  20
## 3164         23/11/2005  20
## 3165         23/12/2003  20
## 3166         24/02/2010  20
## 3167         24/02/2011  20
## 3168         24/03/2004  20
## 3169         24/08/2010  20
## 3170         24/11/2008  20
## 3171         25/04/2006  20
## 3172         25/05/2004  20
## 3173         25/06/1998  20
## 3174         25/08/1999  20
## 3175         25/08/2008  20
## 3176         25/09/2009  20
## 3177         26/01/2012  20
## 3178         26/03/2012  20
## 3179         26/03/2014  20
## 3180         26/04/2002  20
## 3181         26/06/2002  20
## 3182         26/08/1998  20
## 3183         26/08/2004  20
## 3184         26/10/2012  20
## 3185         27/01/2003  20
## 3186         27/01/2012  20
## 3187         27/03/2007  20
## 3188         27/03/2013  20
## 3189         27/11/2007  20
## 3190         28/01/1999  20
## 3191         28/03/2003  20
## 3192         28/03/2007  20
## 3193         28/06/2002  20
## 3194         28/08/2012  20
## 3195         28/10/1997  20
## 3196         28/10/2003  20
## 3197         28/11/2011  20
## 3198         29/01/2007  20
## 3199         29/04/2009  20
## 3200         29/09/2011  20
## 3201         30/01/2003  20
## 3202         30/03/1998  20
## 3203         30/04/2012  20
## 3204         30/05/2013  20
## 3205         30/10/2003  20
## 3206         30/11/2000  20
## 3207         31/05/2007  20
## 3208         31/07/2008  20
## 3209         31/07/2009  20
## 3210         31/12/2008  20
## 3211         01/03/2011  19
## 3212         01/11/2011  19
## 3213         02/06/2014  19
## 3214         02/09/1997  19
## 3215         02/10/2000  19
## 3216         02/12/2005  19
## 3217         02/12/2011  19
## 3218         03/01/2013  19
## 3219         03/05/2001  19
## 3220         03/07/2008  19
## 3221         03/07/2013  19
## 3222         03/08/2009  19
## 3223         03/08/2010  19
## 3224         03/12/1998  19
## 3225         04/06/1999  19
## 3226         04/11/2010  19
## 3227         05/01/1998  19
## 3228         05/02/1999  19
## 3229         05/05/2004  19
## 3230         05/05/2008  19
## 3231         05/07/2012  19
## 3232         05/10/2011  19
## 3233         06/01/2011  19
## 3234         06/03/2006  19
## 3235         06/05/2009  19
## 3236         06/06/2012  19
## 3237         07/02/2002  19
## 3238         07/07/1998  19
## 3239         07/09/2012  19
## 3240         07/10/2002  19
## 3241         07/10/2003  19
## 3242         07/10/2010  19
## 3243         07/12/2006  19
## 3244         08/02/2008  19
## 3245         08/03/1999  19
## 3246         08/05/2009  19
## 3247         08/05/2014  19
## 3248         08/06/1998  19
## 3249         08/07/2002  19
## 3250         08/08/2012  19
## 3251         08/09/2009  19
## 3252         09/07/2004  19
## 3253         09/08/2010  19
## 3254         09/10/2009  19
## 3255         09/12/2004  19
## 3256         10/01/2003  19
## 3257         10/02/2011  19
## 3258         10/03/2006  19
## 3259         10/04/2003  19
## 3260         10/05/2010  19
## 3261         10/12/2009  19
## 3262         11/01/2000  19
## 3263         11/06/1999  19
## 3264         11/07/2008  19
## 3265         12/01/2006  19
## 3266         12/08/2010  19
## 3267         12/10/2001  19
## 3268         12/12/1996  19
## 3269         12/12/2002  19
## 3270         12/12/2008  19
## 3271         13/01/1999  19
## 3272         13/02/2014  19
## 3273         13/04/2007  19
## 3274         13/06/2002  19
## 3275         13/07/2009  19
## 3276         13/07/2012  19
## 3277         13/11/2001  19
## 3278         14/01/2008  19
## 3279         14/02/2007  19
## 3280         14/05/1997  19
## 3281         14/09/1998  19
## 3282         14/11/2007  19
## 3283         15/02/2002  19
## 3284         15/02/2005  19
## 3285         15/02/2011  19
## 3286         15/03/2000  19
## 3287         15/06/2004  19
## 3288         15/08/2002  19
## 3289         15/09/2008  19
## 3290         15/11/2002  19
## 3291         16/01/2004  19
## 3292         16/02/2004  19
## 3293         16/03/2000  19
## 3294         16/06/1998  19
## 3295         16/09/2011  19
## 3296         16/11/2004  19
## 3297         17/01/2008  19
## 3298         17/04/2002  19
## 3299         17/05/2002  19
## 3300         17/05/2010  19
## 3301         17/12/2003  19
## 3302         18/01/2008  19
## 3303         18/03/2009  19
## 3304         18/04/1997  19
## 3305         18/04/2006  19
## 3306         18/05/2007  19
## 3307         18/05/2011  19
## 3308         18/06/2004  19
## 3309         18/09/1998  19
## 3310         18/11/1999  19
## 3311         18/12/1998  19
## 3312         18/12/2000  19
## 3313         18/12/2009  19
## 3314         19/05/2009  19
## 3315         19/06/1997  19
## 3316         19/08/2013  19
## 3317         20/02/2004  19
## 3318         20/03/1998  19
## 3319         20/03/2003  19
## 3320         20/05/1998  19
## 3321         20/06/2008  19
## 3322         20/12/2011  19
## 3323         21/02/2011  19
## 3324         21/04/1998  19
## 3325         21/04/2011  19
## 3326         21/06/2006  19
## 3327         21/10/2009  19
## 3328         21/11/2001  19
## 3329         21/11/2008  19
## 3330         22/01/1998  19
## 3331         22/02/1999  19
## 3332         22/08/2012  19
## 3333         22/11/1996  19
## 3334         23/03/2001  19
## 3335         23/04/2012  19
## 3336         23/06/2000  19
## 3337         23/07/2009  19
## 3338         24/02/2004  19
## 3339         24/03/1999  19
## 3340         24/06/2004  19
## 3341         25/05/1999  19
## 3342         25/05/2006  19
## 3343         25/08/2003  19
## 3344         26/01/1999  19
## 3345         26/02/2002  19
## 3346         26/02/2013  19
## 3347         26/03/2009  19
## 3348         26/03/2010  19
## 3349         26/05/2000  19
## 3350         26/08/2010  19
## 3351         26/11/2002  19
## 3352         26/11/2008  19
## 3353         27/01/1999  19
## 3354         27/02/2002  19
## 3355         27/02/2004  19
## 3356         27/03/2012  19
## 3357         27/10/2009  19
## 3358         27/11/2012  19
## 3359         27/11/2013  19
## 3360         28/01/2010  19
## 3361         28/02/2001  19
## 3362         28/02/2013  19
## 3363         28/02/2014  19
## 3364         28/03/2008  19
## 3365         28/04/2000  19
## 3366         28/05/2002  19
## 3367         28/10/2002  19
## 3368         28/10/2010  19
## 3369         28/11/2012  19
## 3370         29/05/2007  19
## 3371         29/09/2006  19
## 3372         29/11/2011  19
## 3373         29/12/2010  19
## 3374         30/09/2011  19
## 3375         30/10/2013  19
## 3376         31/03/2004  19
## 3377         31/05/2002  19
## 3378         31/05/2006  19
## 3379         31/07/2007  19
## 3380         31/08/2011  19
## 3381         31/12/2001  19
## 3382         01/02/2010  18
## 3383         01/03/2012  18
## 3384         01/05/2003  18
## 3385         01/05/2013  18
## 3386         01/05/2014  18
## 3387         01/07/2011  18
## 3388         01/08/2005  18
## 3389         01/09/1998  18
## 3390         01/09/2010  18
## 3391         01/11/2002  18
## 3392         01/12/2006  18
## 3393         01/12/2009  18
## 3394         02/02/2012  18
## 3395         02/04/2012  18
## 3396         02/05/2007  18
## 3397         03/03/2004  18
## 3398         03/06/2008  18
## 3399         03/07/2007  18
## 3400         03/08/2012  18
## 3401         03/11/2000  18
## 3402         03/12/2010  18
## 3403         04/01/2005  18
## 3404         04/05/2001  18
## 3405         04/05/2007  18
## 3406         04/08/1999  18
## 3407         05/01/2007  18
## 3408         05/01/2011  18
## 3409         05/04/2012  18
## 3410         05/07/2002  18
## 3411         05/10/2007  18
## 3412         05/11/1996  18
## 3413         05/12/1997  18
## 3414         06/02/2013  18
## 3415         06/02/2014  18
## 3416         06/05/2002  18
## 3417         06/06/2011  18
## 3418         06/09/1996  18
## 3419         06/09/2011  18
## 3420         06/10/2009  18
## 3421         07/04/2008  18
## 3422         07/05/2012  18
## 3423         07/06/2006  18
## 3424         07/07/2004  18
## 3425         07/09/2007  18
## 3426         08/05/1997  18
## 3427         08/06/2000  18
## 3428         08/06/2012  18
## 3429         08/08/2007  18
## 3430         08/10/2001  18
## 3431         08/10/2012  18
## 3432         08/11/2004  18
## 3433         08/12/2005  18
## 3434         09/01/2003  18
## 3435         09/01/2008  18
## 3436         09/01/2009  18
## 3437         09/01/2012  18
## 3438         09/03/1999  18
## 3439         09/03/2001  18
## 3440         09/06/1999  18
## 3441         09/07/2002  18
## 3442         09/10/1998  18
## 3443         09/10/2012  18
## 3444         10/01/2006  18
## 3445         10/01/2014  18
## 3446         10/05/2013  18
## 3447         10/06/2003  18
## 3448         10/10/1997  18
## 3449         10/12/2013  18
## 3450         11/02/1999  18
## 3451         11/02/2008  18
## 3452         11/03/2011  18
## 3453         11/10/2007  18
## 3454         11/10/2013  18
## 3455         11/11/2009  18
## 3456         11/12/1997  18
## 3457         11/12/2006  18
## 3458         12/03/2002  18
## 3459         12/10/2007  18
## 3460         12/11/1999  18
## 3461         12/12/2003  18
## 3462         13/06/1997  18
## 3463         13/06/2005  18
## 3464         13/06/2013  18
## 3465         13/08/1997  18
## 3466         13/09/2002  18
## 3467         13/12/2004  18
## 3468         14/04/2009  18
## 3469         14/06/2013  18
## 3470         14/07/1997  18
## 3471         14/10/2004  18
## 3472         15/09/2009  18
## 3473         15/11/2004  18
## 3474         15/11/2011  18
## 3475         15/12/1998  18
## 3476         16/03/2005  18
## 3477         16/03/2009  18
## 3478         16/04/2004  18
## 3479         16/09/1999  18
## 3480         17/02/2006  18
## 3481         17/03/2006  18
## 3482         17/03/2011  18
## 3483         17/04/1996  18
## 3484         17/04/2012  18
## 3485         17/05/2012  18
## 3486         17/06/2011  18
## 3487         17/11/2006  18
## 3488         18/01/2012  18
## 3489         18/06/2010  18
## 3490         18/06/2014  18
## 3491         18/09/2002  18
## 3492         18/09/2007  18
## 3493         18/10/2006  18
## 3494         19/03/2008  18
## 3495         19/04/2010  18
## 3496         19/07/2004  18
## 3497         19/07/2011  18
## 3498         19/08/2008  18
## 3499         19/08/2009  18
## 3500         20/05/1997  18
## 3501         20/08/2009  18
## 3502         20/11/2008  18
## 3503         21/01/1997  18
## 3504         21/02/2013  18
## 3505         21/06/2007  18
## 3506         21/10/2008  18
## 3507         21/12/2000  18
## 3508         22/03/2013  18
## 3509         22/04/2005  18
## 3510         22/04/2013  18
## 3511         22/05/2008  18
## 3512         22/06/2012  18
## 3513         22/10/1999  18
## 3514         22/11/2004  18
## 3515         22/12/1998  18
## 3516         22/12/2008  18
## 3517         23/02/1998  18
## 3518         23/04/2002  18
## 3519         23/06/2008  18
## 3520         23/07/1999  18
## 3521         23/10/2006  18
## 3522         24/01/2012  18
## 3523         24/11/2003  18
## 3524         25/01/2013  18
## 3525         25/03/2008  18
## 3526         25/03/2011  18
## 3527         25/04/2008  18
## 3528         25/06/1999  18
## 3529         25/07/2008  18
## 3530         25/09/2001  18
## 3531         26/01/1998  18
## 3532         26/02/1998  18
## 3533         26/02/2014  18
## 3534         26/06/2003  18
## 3535         26/06/2009  18
## 3536         27/01/1998  18
## 3537         27/08/1997  18
## 3538         27/08/2002  18
## 3539         27/10/2011  18
## 3540         28/02/2006  18
## 3541         28/12/1999  18
## 3542         29/03/1999  18
## 3543         29/10/2003  18
## 3544         30/01/2006  18
## 3545         30/01/2007  18
## 3546         30/03/2000  18
## 3547         30/04/2001  18
## 3548         30/07/2004  18
## 3549         30/08/2004  18
## 3550         30/10/2006  18
## 3551         30/10/2007  18
## 3552         30/11/2010  18
## 3553         31/01/2006  18
## 3554         31/01/2011  18
## 3555         31/03/2000  18
## 3556         31/07/2003  18
## 3557         31/10/2011  18
## 3558         31/10/2012  18
## 3559         01/04/2008  17
## 3560         01/06/2007  17
## 3561         01/09/2005  17
## 3562         02/01/2008  17
## 3563         02/02/2000  17
## 3564         02/04/2009  17
## 3565         02/06/2006  17
## 3566         02/07/2007  17
## 3567         02/08/2012  17
## 3568         02/09/1998  17
## 3569         03/01/2011  17
## 3570         03/09/2010  17
## 3571         03/12/2007  17
## 3572         04/03/1999  17
## 3573         04/09/2002  17
## 3574         04/09/2009  17
## 3575         04/11/2009  17
## 3576         05/02/2009  17
## 3577         05/05/2005  17
## 3578         05/06/2012  17
## 3579         05/07/2011  17
## 3580         05/12/2012  17
## 3581         06/01/1998  17
## 3582         06/06/2005  17
## 3583         06/07/2000  17
## 3584         06/12/2004  17
## 3585         07/02/2005  17
## 3586         07/02/2014  17
## 3587         07/06/2011  17
## 3588         07/09/2006  17
## 3589         07/10/2013  17
## 3590         07/12/2009  17
## 3591         08/02/2007  17
## 3592         08/04/2008  17
## 3593         08/04/2011  17
## 3594         08/05/2000  17
## 3595         08/06/2005  17
## 3596         08/07/1997  17
## 3597         08/12/1998  17
## 3598         09/03/2004  17
## 3599         09/07/1997  17
## 3600         09/09/2010  17
## 3601         09/11/1999  17
## 3602         09/11/2010  17
## 3603         09/12/2010  17
## 3604         10/01/2002  17
## 3605         10/05/2000  17
## 3606         10/08/2012  17
## 3607         10/10/2001  17
## 3608         10/11/2005  17
## 3609         11/01/2001  17
## 3610         11/03/2005  17
## 3611         11/03/2010  17
## 3612         11/03/2013  17
## 3613         11/04/2013  17
## 3614         11/06/1996  17
## 3615         11/06/1998  17
## 3616         12/01/2009  17
## 3617         12/06/2012  17
## 3618         13/06/2007  17
## 3619         14/03/2006  17
## 3620         14/03/2011  17
## 3621         14/07/2004  17
## 3622         14/09/2006  17
## 3623         14/10/1999  17
## 3624         15/01/2013  17
## 3625         15/04/2011  17
## 3626         15/07/2003  17
## 3627         15/07/2010  17
## 3628         15/11/2010  17
## 3629         16/01/2007  17
## 3630         16/04/2003  17
## 3631         16/05/1997  17
## 3632         16/06/2009  17
## 3633         16/10/2009  17
## 3634         17/06/1999  17
## 3635         17/12/2013  17
## 3636         18/04/2005  17
## 3637         18/05/1998  17
## 3638         18/05/1999  17
## 3639         18/05/2004  17
## 3640         18/06/1999  17
## 3641         18/09/2009  17
## 3642         18/11/2002  17
## 3643         18/12/2001  17
## 3644         19/01/1999  17
## 3645         19/02/2002  17
## 3646         19/03/1999  17
## 3647         19/03/2014  17
## 3648         19/04/2011  17
## 3649         19/05/2010  17
## 3650         19/06/2013  17
## 3651         19/11/2010  17
## 3652         20/06/2000  17
## 3653         20/11/2006  17
## 3654         20/12/1999  17
## 3655         21/02/2014  17
## 3656         21/03/2001  17
## 3657         21/04/2003  17
## 3658         21/07/1998  17
## 3659         21/07/2004  17
## 3660         21/07/2009  17
## 3661         21/09/2012  17
## 3662         21/11/2003  17
## 3663         21/12/1998  17
## 3664         22/01/2008  17
## 3665         22/08/2003  17
## 3666         22/10/2009  17
## 3667         22/11/1999  17
## 3668         23/05/2006  17
## 3669         23/10/2008  17
## 3670         23/12/1999  17
## 3671         24/10/2006  17
## 3672         25/02/2010  17
## 3673         25/08/1998  17
## 3674         25/08/2005  17
## 3675         26/03/2013  17
## 3676         26/04/2011  17
## 3677         27/01/2006  17
## 3678         27/02/2014  17
## 3679         27/04/2009  17
## 3680         27/07/1992  17
## 3681         27/07/2009  17
## 3682         27/08/2007  17
## 3683         27/09/2004  17
## 3684         27/10/2004  17
## 3685         27/10/2010  17
## 3686         27/12/2005  17
## 3687         28/07/2008  17
## 3688         28/12/2009  17
## 3689         29/01/2008  17
## 3690         29/02/2000  17
## 3691         29/06/2009  17
## 3692         29/10/2012  17
## 3693         29/11/2006  17
## 3694         29/12/2005  17
## 3695         30/03/2012  17
## 3696         30/07/2003  17
## 3697         30/09/2002  17
## 3698         30/09/2010  17
## 3699         31/05/2013  17
## 3700         31/10/2007  17
## 3701         31/12/2013  17
## 3702         01/03/2007  16
## 3703         01/04/1998  16
## 3704         01/05/2006  16
## 3705         01/06/2009  16
## 3706         01/06/2012  16
## 3707         01/07/2010  16
## 3708         01/08/2013  16
## 3709         01/12/1999  16
## 3710         01/12/2008  16
## 3711         02/04/2014  16
## 3712         02/05/2011  16
## 3713         02/10/2012  16
## 3714         03/02/1998  16
## 3715         03/02/2005  16
## 3716         03/02/2014  16
## 3717         03/03/2009  16
## 3718         03/04/2001  16
## 3719         03/04/2007  16
## 3720         03/09/1999  16
## 3721         03/10/2013  16
## 3722         03/12/2003  16
## 3723         03/12/2009  16
## 3724         03/12/2013  16
## 3725         04/05/2012  16
## 3726         04/06/2008  16
## 3727         04/08/2009  16
## 3728         04/10/2007  16
## 3729         04/11/2002  16
## 3730         04/12/2002  16
## 3731         04/12/2007  16
## 3732         05/03/1999  16
## 3733         05/09/2003  16
## 3734         06/03/2009  16
## 3735         06/12/2011  16
## 3736         07/08/2007  16
## 3737         07/10/1999  16
## 3738         08/02/1999  16
## 3739         08/02/2011  16
## 3740         08/03/2000  16
## 3741         08/06/2010  16
## 3742         08/07/1998  16
## 3743         08/08/2002  16
## 3744         08/09/2008  16
## 3745         08/11/2000  16
## 3746         10/01/2013  16
## 3747         10/06/2014  16
## 3748         10/08/2011  16
## 3749         10/10/2008  16
## 3750         10/11/1998  16
## 3751         10/12/2004  16
## 3752         11/01/2011  16
## 3753         11/03/2008  16
## 3754         11/05/2010  16
## 3755         11/08/2010  16
## 3756         11/10/2004  16
## 3757         11/12/2000  16
## 3758         12/02/2013  16
## 3759         12/03/2009  16
## 3760         12/03/2014  16
## 3761         12/04/1999  16
## 3762         12/04/2001  16
## 3763         12/05/2000  16
## 3764         12/06/2003  16
## 3765         12/08/2009  16
## 3766         12/11/2003  16
## 3767         13/01/2005  16
## 3768         13/02/2007  16
## 3769         13/03/1998  16
## 3770         13/11/2008  16
## 3771         14/06/2012  16
## 3772         14/10/2009  16
## 3773         14/11/2008  16
## 3774         15/03/2011  16
## 3775         15/04/2008  16
## 3776         15/07/2013  16
## 3777         15/08/2003  16
## 3778         15/12/2003  16
## 3779         16/02/2000  16
## 3780         16/04/2002  16
## 3781         16/07/2002  16
## 3782         16/08/2013  16
## 3783         16/11/2011  16
## 3784         17/08/2009  16
## 3785         17/09/2013  16
## 3786         17/11/2000  16
## 3787         17/12/2004  16
## 3788         18/01/2002  16
## 3789         18/07/2011  16
## 3790         18/09/2013  16
## 3791         19/04/1999  16
## 3792         19/04/2000  16
## 3793         19/04/2012  16
## 3794         20/01/2006  16
## 3795         20/02/2003  16
## 3796         20/10/1998  16
## 3797         20/10/1999  16
## 3798         21/01/2003  16
## 3799         21/05/2008  16
## 3800         21/08/2013  16
## 3801         21/10/1998  16
## 3802         21/11/2012  16
## 3803         22/01/1999  16
## 3804         22/02/2006  16
## 3805         22/05/2009  16
## 3806         22/07/2010  16
## 3807         22/08/2008  16
## 3808         23/01/1998  16
## 3809         23/08/2001  16
## 3810         23/12/2004  16
## 3811         24/02/1999  16
## 3812         24/04/2009  16
## 3813         24/10/2011  16
## 3814         25/03/2010  16
## 3815         25/05/2005  16
## 3816         26/02/2010  16
## 3817         26/04/2004  16
## 3818         26/11/2012  16
## 3819         27/01/2000  16
## 3820         27/04/2011  16
## 3821         27/07/1993  16
## 3822         27/07/2012  16
## 3823         27/09/2013  16
## 3824         27/10/2005  16
## 3825         28/01/2014  16
## 3826         28/02/2008  16
## 3827         28/03/2013  16
## 3828         28/12/2005  16
## 3829         29/03/1996  16
## 3830         29/06/2001  16
## 3831         29/07/2011  16
## 3832         29/08/2011  16
## 3833         29/10/2008  16
## 3834         29/11/2005  16
## 3835         29/12/2006  16
## 3836         29/12/2009  16
## 3837         30/03/2009  16
## 3838         30/03/2011  16
## 3839         30/04/2003  16
## 3840         30/05/2000  16
## 3841         30/08/2002  16
## 3842         30/12/1996  16
## 3843         31/01/2007  16
## 3844         31/03/2014  16
## 3845         01/02/1999  15
## 3846         01/07/2005  15
## 3847         01/09/2000  15
## 3848         01/10/1998  15
## 3849         02/04/1998  15
## 3850         02/08/1991  15
## 3851         02/08/2002  15
## 3852         02/08/2011  15
## 3853         02/11/1998  15
## 3854         02/11/2009  15
## 3855         03/01/2008  15
## 3856         03/01/2014  15
## 3857         03/03/1998  15
## 3858         03/04/2014  15
## 3859         03/07/2004  15
## 3860         03/07/2006  15
## 3861         03/10/2002  15
## 3862         03/11/2010  15
## 3863         04/01/2012  15
## 3864         05/01/2001  15
## 3865         05/03/2008  15
## 3866         05/03/2010  15
## 3867         05/05/1998  15
## 3868         05/06/2002  15
## 3869         05/12/2000  15
## 3870         06/01/2000  15
## 3871         06/01/2014  15
## 3872         06/02/2004  15
## 3873         06/02/2008  15
## 3874         06/05/1998  15
## 3875         06/05/1999  15
## 3876         06/05/2011  15
## 3877         06/06/2003  15
## 3878         06/08/2010  15
## 3879         06/11/2013  15
## 3880         07/01/2009  15
## 3881         07/03/2011  15
## 3882         07/07/2010  15
## 3883         07/10/2005  15
## 3884         07/11/2011  15
## 3885         08/01/2007  15
## 3886         08/02/2012  15
## 3887         08/03/2012  15
## 3888         08/05/2008  15
## 3889         08/07/2013  15
## 3890         08/08/2003  15
## 3891         09/01/2013  15
## 3892         09/06/2010  15
## 3893         09/07/2003  15
## 3894         10/01/2000  15
## 3895         10/02/2000  15
## 3896         10/03/2014  15
## 3897         10/05/2002  15
## 3898         10/08/2006  15
## 3899         10/12/2010  15
## 3900         11/01/2012  15
## 3901         11/02/2009  15
## 3902         11/02/2011  15
## 3903         11/03/2014  15
## 3904         11/08/1999  15
## 3905         11/09/1997  15
## 3906         12/01/2000  15
## 3907         12/01/2001  15
## 3908         12/02/2003  15
## 3909         12/06/2008  15
## 3910         12/08/2011  15
## 3911         12/12/2001  15
## 3912         13/06/2000  15
## 3913         13/10/2000  15
## 3914         14/01/2004  15
## 3915         14/01/2013  15
## 3916         14/03/2008  15
## 3917         14/04/2014  15
## 3918         14/10/2010  15
## 3919         14/11/2002  15
## 3920         14/12/2004  15
## 3921         14/12/2011  15
## 3922         15/01/2002  15
## 3923         15/02/2001  15
## 3924         15/02/2013  15
## 3925         16/03/1999  15
## 3926         16/04/2013  15
## 3927         16/04/2014  15
## 3928         16/09/1997  15
## 3929         16/10/2003  15
## 3930         16/10/2013  15
## 3931         16/11/2007  15
## 3932         16/12/2004  15
## 3933         17/06/1998  15
## 3934         17/06/2004  15
## 3935         17/07/1990  15
## 3936         17/07/1996  15
## 3937         17/07/2009  15
## 3938         17/10/2011  15
## 3939         18/02/1998  15
## 3940         18/02/1999  15
## 3941         18/03/2005  15
## 3942         18/04/2008  15
## 3943         18/04/2013  15
## 3944         18/06/2002  15
## 3945         18/07/1991  15
## 3946         18/08/1993  15
## 3947         18/08/2008  15
## 3948         18/10/2004  15
## 3949         18/12/2006  15
## 3950         19/01/2007  15
## 3951         19/07/2012  15
## 3952         19/10/2009  15
## 3953         20/01/2004  15
## 3954         20/10/2011  15
## 3955         20/12/2010  15
## 3956         21/02/2003  15
## 3957         21/02/2005  15
## 3958         21/07/1994  15
## 3959         21/08/2003  15
## 3960         21/10/2004  15
## 3961         21/10/2011  15
## 3962         21/11/1997  15
## 3963         22/01/2009  15
## 3964         22/12/2009  15
## 3965         23/02/1999  15
## 3966         23/04/1998  15
## 3967         23/12/2013  15
## 3968         24/02/1992  15
## 3969         24/04/1998  15
## 3970         24/06/1991  15
## 3971         24/08/2012  15
## 3972         24/10/2007  15
## 3973         25/01/2012  15
## 3974         25/09/1990  15
## 3975         26/05/1998  15
## 3976         26/05/1999  15
## 3977         26/08/2002  15
## 3978         26/10/1998  15
## 3979         26/11/2007  15
## 3980         27/02/2007  15
## 3981         27/04/2005  15
## 3982         27/04/2012  15
## 3983         27/08/1990  15
## 3984         27/11/2001  15
## 3985         28/03/2011  15
## 3986         28/05/2009  15
## 3987         28/07/1999  15
## 3988         28/08/1998  15
## 3989         28/09/2012  15
## 3990         28/11/2006  15
## 3991         28/12/2004  15
## 3992         29/03/2013  15
## 3993         29/07/1996  15
## 3994         29/07/2003  15
## 3995         29/07/2013  15
## 3996         30/08/2006  15
## 3997         30/11/2001  15
## 3998         31/08/2005  15
## 3999         31/10/2008  15
## 4000         01/05/2000  14
## 4001         01/08/2008  14
## 4002         02/01/2013  14
## 4003         02/02/1996  14
## 4004         02/03/2005  14
## 4005         02/03/2009  14
## 4006         02/05/1997  14
## 4007         02/08/2004  14
## 4008         02/10/2004  14
## 4009         02/10/2013  14
## 4010         02/12/1997  14
## 4011         03/06/1991  14
## 4012         03/11/2008  14
## 4013         03/12/2008  14
## 4014         03/12/2012  14
## 4015         04/03/2013  14
## 4016         04/05/2004  14
## 4017         05/01/2009  14
## 4018         05/06/1998  14
## 4019         05/06/2003  14
## 4020         05/08/2004  14
## 4021         05/11/2012  14
## 4022         05/12/2003  14
## 4023         05/12/2011  14
## 4024         06/01/2012  14
## 4025         06/02/2007  14
## 4026         06/03/2014  14
## 4027         06/04/2011  14
## 4028         06/08/2002  14
## 4029         06/12/2010  14
## 4030         07/01/2008  14
## 4031         07/03/2003  14
## 4032         07/04/2011  14
## 4033         08/04/2002  14
## 4034         08/07/2011  14
## 4035         08/12/1997  14
## 4036         08/12/2009  14
## 4037         09/01/2014  14
## 4038         09/02/2009  14
## 4039         09/07/2007  14
## 4040         09/11/2007  14
## 4041         09/12/2008  14
## 4042         10/01/2011  14
## 4043         11/01/1999  14
## 4044         11/05/2001  14
## 4045         11/07/2012  14
## 4046         11/11/2003  14
## 4047         11/12/1998  14
## 4048         12/02/2001  14
## 4049         12/02/2014  14
## 4050         12/11/2004  14
## 4051         12/11/2007  14
## 4052         12/12/2013  14
## 4053         13/03/2013  14
## 4054         13/05/2009  14
## 4055         13/09/1999  14
## 4056         13/09/2012  14
## 4057         13/12/2002  14
## 4058         14/02/2006  14
## 4059         14/06/2011  14
## 4060         14/08/1998  14
## 4061         14/09/2007  14
## 4062         14/11/2003  14
## 4063         14/12/2001  14
## 4064         15/03/2004  14
## 4065         15/04/1999  14
## 4066         15/05/1998  14
## 4067         15/05/2003  14
## 4068         15/06/1998  14
## 4069         15/07/1998  14
## 4070         15/09/1998  14
## 4071         15/10/2008  14
## 4072         15/11/2000  14
## 4073         15/12/2011  14
## 4074         16/01/2009  14
## 4075         16/05/2000  14
## 4076         16/07/1990  14
## 4077         16/12/2002  14
## 4078         18/03/2008  14
## 4079         18/04/2011  14
## 4080         18/06/1990  14
## 4081         19/09/2000  14
## 4082         19/10/2006  14
## 4083         20/05/1999  14
## 4084         20/06/2011  14
## 4085         20/07/1993  14
## 4086         20/09/1991  14
## 4087         20/11/2012  14
## 4088         20/12/2006  14
## 4089         21/01/2000  14
## 4090         21/08/2009  14
## 4091         21/09/2010  14
## 4092         22/06/1999  14
## 4093         22/07/2002  14
## 4094         23/02/2007  14
## 4095         23/02/2012  14
## 4096         23/07/2012  14
## 4097         23/08/1991  14
## 4098         23/09/2002  14
## 4099         24/01/2003  14
## 4100         24/01/2011  14
## 4101         24/08/1993  14
## 4102         25/11/2009  14
## 4103         26/02/2004  14
## 4104         26/03/1999  14
## 4105         26/07/2005  14
## 4106         26/07/2012  14
## 4107         26/08/2013  14
## 4108         26/11/2001  14
## 4109         27/02/2003  14
## 4110         27/03/2000  14
## 4111         27/04/2001  14
## 4112         27/08/2012  14
## 4113         28/02/1997  14
## 4114         28/10/2011  14
## 4115         29/02/2008  14
## 4116         29/04/2013  14
## 4117         29/05/1998  14
## 4118         29/06/2011  14
## 4119         29/10/2004  14
## 4120         29/10/2009  14
## 4121         29/12/2011  14
## 4122         30/05/2014  14
## 4123         30/10/2009  14
## 4124         31/03/2010  14
## 4125         31/03/2011  14
## 4126         01/03/2001  13
## 4127         01/11/2013  13
## 4128         02/03/2012  13
## 4129         02/05/2008  13
## 4130         02/09/1999  13
## 4131         03/01/2007  13
## 4132         03/01/2012  13
## 4133         03/02/1999  13
## 4134         03/04/2009  13
## 4135         03/06/2009  13
## 4136         03/11/1995  13
## 4137         04/01/2010  13
## 4138         04/04/2001  13
## 4139         04/04/2014  13
## 4140         04/05/2011  13
## 4141         04/12/1997  13
## 4142         05/01/2000  13
## 4143         05/06/1995  13
## 4144         05/06/1997  13
## 4145         06/08/2009  13
## 4146         06/09/2002  13
## 4147         07/02/1997  13
## 4148         08/01/1998  13
## 4149         08/06/2001  13
## 4150         08/08/2008  13
## 4151         08/09/1998  13
## 4152         08/12/2004  13
## 4153         09/01/2004  13
## 4154         09/03/2010  13
## 4155         09/04/1998  13
## 4156         09/09/1991  13
## 4157         10/04/2014  13
## 4158         10/08/2007  13
## 4159         11/02/2014  13
## 4160         11/06/2007  13
## 4161         11/11/2004  13
## 4162         11/12/2003  13
## 4163         11/12/2013  13
## 4164         12/01/1999  13
## 4165         12/01/2004  13
## 4166         12/02/1997  13
## 4167         12/11/2009  13
## 4168         12/12/2005  13
## 4169         13/01/2010  13
## 4170         13/03/2014  13
## 4171         13/06/2008  13
## 4172         13/07/1990  13
## 4173         13/08/2007  13
## 4174         13/10/2006  13
## 4175         14/03/2007  13
## 4176         14/05/2007  13
## 4177         14/09/1992  13
## 4178         14/10/1996  13
## 4179         14/10/1998  13
## 4180         14/10/2002  13
## 4181         14/10/2008  13
## 4182         15/01/1997  13
## 4183         15/09/2006  13
## 4184         15/12/2006  13
## 4185         16/01/2014  13
## 4186         16/11/2010  13
## 4187         17/01/2000  13
## 4188         17/01/2005  13
## 4189         17/01/2006  13
## 4190         17/04/1998  13
## 4191         17/04/2007  13
## 4192         17/07/2001  13
## 4193         18/02/2014  13
## 4194         18/03/1993  13
## 4195         19/01/2000  13
## 4196         19/03/2002  13
## 4197         19/03/2003  13
## 4198         19/12/1997  13
## 4199         19/12/2003  13
## 4200         22/05/1999  13
## 4201         22/06/1990  13
## 4202         22/09/1997  13
## 4203         22/11/2002  13
## 4204         23/11/2009  13
## 4205         24/02/2014  13
## 4206         25/02/2011  13
## 4207         25/02/2013  13
## 4208         25/04/1997  13
## 4209         26/06/2004  13
## 4210         26/10/2009  13
## 4211         26/11/2013  13
## 4212         27/05/2011  13
## 4213         27/11/2004  13
## 4214         27/12/2006  13
## 4215         28/01/2004  13
## 4216         28/12/2011  13
## 4217         29/04/2011  13
## 4218         29/05/2014  13
## 4219         29/09/2009  13
## 4220         29/11/2000  13
## 4221         30/07/1998  13
## 4222         30/09/2004  13
## 4223         30/11/2007  13
## 4224         31/01/2000  13
## 4225         31/01/2012  13
## 4226         31/07/1990  13
## 4227         31/08/2001  13
## 4228         31/10/2000  13
## 4229         31/10/2001  13
## 4230         01/02/2007  12
## 4231         01/04/2010  12
## 4232         01/11/2004  12
## 4233         02/04/2010  12
## 4234         02/06/2003  12
## 4235         02/07/2010  12
## 4236         03/01/2000  12
## 4237         03/04/2003  12
## 4238         03/08/1998  12
## 4239         04/01/2001  12
## 4240         04/01/2006  12
## 4241         04/02/2009  12
## 4242         04/02/2011  12
## 4243         04/03/2005  12
## 4244         04/03/2011  12
## 4245         04/06/1991  12
## 4246         05/03/2014  12
## 4247         05/09/1991  12
## 4248         06/03/2013  12
## 4249         06/06/1991  12
## 4250         06/07/2007  12
## 4251         06/07/2011  12
## 4252         07/01/1998  12
## 4253         08/02/2001  12
## 4254         08/04/1999  12
## 4255         08/05/2007  12
## 4256         08/06/2006  12
## 4257         08/09/1999  12
## 4258         09/06/1995  12
## 4259         09/07/1991  12
## 4260         09/10/1990  12
## 4261         10/04/1990  12
## 4262         10/08/1994  12
## 4263         11/08/1994  12
## 4264         11/09/1991  12
## 4265         11/11/2002  12
## 4266         12/03/2008  12
## 4267         12/08/2013  12
## 4268         12/09/2005  12
## 4269         12/11/2012  12
## 4270         13/02/1996  12
## 4271         14/02/2011  12
## 4272         14/05/1990  12
## 4273         14/07/1993  12
## 4274         14/11/2005  12
## 4275         14/12/2010  12
## 4276         15/07/1991  12
## 4277         15/11/2006  12
## 4278         16/02/2012  12
## 4279         16/03/2011  12
## 4280         16/06/1993  12
## 4281         16/06/1994  12
## 4282         16/12/2010  12
## 4283         17/02/2014  12
## 4284         17/11/2003  12
## 4285         18/12/2003  12
## 4286         19/01/2004  12
## 4287         19/12/2006  12
## 4288         20/01/1997  12
## 4289         20/02/1998  12
## 4290         20/04/2000  12
## 4291         20/10/2003  12
## 4292         20/12/2012  12
## 4293         21/06/1994  12
## 4294         21/06/2013  12
## 4295         22/01/1997  12
## 4296         22/04/2014  12
## 4297         22/08/1991  12
## 4298         22/08/1994  12
## 4299         22/11/2000  12
## 4300         23/01/2003  12
## 4301         23/05/1994  12
## 4302         23/06/1994  12
## 4303         23/10/2002  12
## 4304         23/10/2009  12
## 4305         23/11/2011  12
## 4306         23/12/1996  12
## 4307         24/01/2008  12
## 4308         24/04/2014  12
## 4309         24/07/1991  12
## 4310         24/07/2000  12
## 4311         25/03/2003  12
## 4312         25/09/2002  12
## 4313         26/06/1997  12
## 4314         26/10/2001  12
## 4315         27/05/2014  12
## 4316         28/01/1997  12
## 4317         28/02/2005  12
## 4318         28/06/2000  12
## 4319         28/10/2006  12
## 4320         28/12/2007  12
## 4321         29/10/2010  12
## 4322         29/11/2012  12
## 4323         30/07/1997  12
## 4324         30/07/2002  12
## 4325         30/10/1998  12
## 4326         31/01/2013  12
## 4327         31/12/2007  12
## 4328         01/03/2013  11
## 4329         02/01/1998  11
## 4330         02/12/2013  11
## 4331         03/01/2005  11
## 4332         03/02/1993  11
## 4333         03/05/2004  11
## 4334         03/07/2002  11
## 4335         03/10/1991  11
## 4336         03/12/2005  11
## 4337         04/02/2013  11
## 4338         04/05/1993  11
## 4339         04/05/2009  11
## 4340         04/05/2010  11
## 4341         04/09/1998  11
## 4342         05/02/2008  11
## 4343         05/05/2003  11
## 4344         05/07/2001  11
## 4345         06/01/1997  11
## 4346         06/03/2003  11
## 4347         06/07/2009  11
## 4348         06/07/2010  11
## 4349         06/09/1990  11
## 4350         07/08/1991  11
## 4351         08/06/1992  11
## 4352         09/10/2003  11
## 4353         09/11/1998  11
## 4354         09/12/2009  11
## 4355         09/12/2013  11
## 4356         10/05/1991  11
## 4357         10/05/2005  11
## 4358         10/07/1990  11
## 4359         10/08/1993  11
## 4360         10/09/1990  11
## 4361         10/10/2006  11
## 4362         10/10/2012  11
## 4363         11/01/2002  11
## 4364         11/05/2011  11
## 4365         11/08/2011  11
## 4366         11/11/2010  11
## 4367         12/01/2012  11
## 4368         13/05/2003  11
## 4369         13/11/1991  11
## 4370         13/11/2002  11
## 4371         13/11/2003  11
## 4372         14/01/2009  11
## 4373         14/02/2014  11
## 4374         14/04/1998  11
## 4375         15/02/2012  11
## 4376         15/07/1999  11
## 4377         15/08/1991  11
## 4378         16/01/2013  11
## 4379         16/07/1998  11
## 4380         16/12/1998  11
## 4381         16/12/2009  11
## 4382         16/12/2013  11
## 4383         17/01/2012  11
## 4384         17/04/2000  11
## 4385         17/05/1993  11
## 4386         17/06/2002  11
## 4387         17/08/1993  11
## 4388         18/01/2006  11
## 4389         18/02/1997  11
## 4390         19/03/2007  11
## 4391         19/06/1990  11
## 4392         19/06/1992  11
## 4393         19/09/1996  11
## 4394         19/09/2008  11
## 4395         20/01/2005  11
## 4396         20/04/2009  11
## 4397         20/09/2002  11
## 4398         20/10/1993  11
## 4399         20/10/2008  11
## 4400         21/03/1995  11
## 4401         21/04/2008  11
## 4402         21/11/2013  11
## 4403         21/12/1993  11
## 4404         22/07/1993  11
## 4405         22/09/2005  11
## 4406         22/11/2006  11
## 4407         22/12/2004  11
## 4408         22/12/2011  11
## 4409         23/01/2012  11
## 4410         23/03/1994  11
## 4411         23/08/1995  11
## 4412         24/01/2000  11
## 4413         24/02/2001  11
## 4414         24/03/2001  11
## 4415         24/06/2011  11
## 4416         25/03/1999  11
## 4417         25/06/2010  11
## 4418         25/08/2011  11
## 4419         25/10/2010  11
## 4420         26/04/1999  11
## 4421         26/08/1991  11
## 4422         27/03/2001  11
## 4423         27/05/2008  11
## 4424         27/09/1990  11
## 4425         28/01/2009  11
## 4426         28/06/2013  11
## 4427         29/04/2008  11
## 4428         30/06/2014  11
## 4429         30/09/2003  11
## 4430         31/03/2009  11
## 4431         31/10/2003  11
## 4432         01/03/1990  10
## 4433         01/04/2014  10
## 4434         01/08/2007  10
## 4435         02/07/2003  10
## 4436         02/08/1995  10
## 4437         03/06/2005  10
## 4438         03/07/1997  10
## 4439         03/08/1995  10
## 4440         03/10/2001  10
## 4441         04/02/1996  10
## 4442         04/06/2005  10
## 4443         04/09/1991  10
## 4444         05/02/1996  10
## 4445         05/06/1990  10
## 4446         05/07/1994  10
## 4447         05/07/2000  10
## 4448         05/08/2013  10
## 4449         05/09/1990  10
## 4450         06/07/1994  10
## 4451         06/07/2012  10
## 4452         06/08/1991  10
## 4453         07/05/2002  10
## 4454         07/06/1994  10
## 4455         07/09/1993  10
## 4456         08/01/1996  10
## 4457         08/04/1991  10
## 4458         08/06/1993  10
## 4459         08/07/1994  10
## 4460         08/12/2006  10
## 4461         09/01/1991  10
## 4462         09/07/1993  10
## 4463         09/08/1994  10
## 4464         09/10/2006  10
## 4465         10/02/1999  10
## 4466         10/06/2000  10
## 4467         10/07/1998  10
## 4468         10/09/2005  10
## 4469         10/09/2008  10
## 4470         10/11/2006  10
## 4471         10/12/2003  10
## 4472         10/12/2008  10
## 4473         11/03/1991  10
## 4474         11/05/1994  10
## 4475         11/07/1990  10
## 4476         11/11/2008  10
## 4477         12/01/2010  10
## 4478         12/02/1998  10
## 4479         12/07/1990  10
## 4480         12/07/1995  10
## 4481         12/10/2009  10
## 4482         12/11/1997  10
## 4483         12/11/2002  10
## 4484         12/12/2012  10
## 4485         13/02/2012  10
## 4486         14/03/2014  10
## 4487         14/04/1997  10
## 4488         14/05/1991  10
## 4489         14/06/1994  10
## 4490         15/01/2014  10
## 4491         15/02/1991  10
## 4492         15/03/2013  10
## 4493         15/04/1993  10
## 4494         15/08/2001  10
## 4495         16/05/1995  10
## 4496         16/11/2001  10
## 4497         17/05/1991  10
## 4498         17/08/2001  10
## 4499         17/12/2001  10
## 4500         18/07/1994  10
## 4501         19/08/1992  10
## 4502         19/10/1995  10
## 4503         20/01/2009  10
## 4504         20/04/1998  10
## 4505         21/03/2003  10
## 4506         21/06/1999  10
## 4507         21/07/1992  10
## 4508         22/07/1991  10
## 4509         22/10/1992  10
## 4510         23/05/1995  10
## 4511         23/06/2003  10
## 4512         23/06/2014  10
## 4513         23/07/1990  10
## 4514         23/07/1991  10
## 4515         23/12/1998  10
## 4516         24/03/2014  10
## 4517         24/11/1998  10
## 4518         25/02/2014  10
## 4519         26/02/2003  10
## 4520         26/07/1990  10
## 4521         26/07/1991  10
## 4522         26/08/1999  10
## 4523         27/02/2009  10
## 4524         27/03/1990  10
## 4525         27/08/1998  10
## 4526         27/09/2006  10
## 4527         28/03/1996  10
## 4528         28/05/1991  10
## 4529         28/12/2012  10
## 4530         29/03/1993  10
## 4531         29/08/2003  10
## 4532         30/04/1992  10
## 4533         30/04/2010  10
## 4534         30/09/1991  10
## 4535         31/01/1992  10
## 4536         31/08/1992  10
## 4537         31/08/1994  10
## 4538         31/12/2009  10
## 4539         01/06/1992   9
## 4540         01/07/1992   9
## 4541         01/08/1991   9
## 4542         02/05/1990   9
## 4543         02/05/2013   9
## 4544         02/07/2011   9
## 4545         02/11/1994   9
## 4546         03/03/1992   9
## 4547         03/04/1991   9
## 4548         03/05/2011   9
## 4549         03/06/2014   9
## 4550         03/07/1991   9
## 4551         03/09/1991   9
## 4552         03/10/1990   9
## 4553         03/12/1993   9
## 4554         04/02/1993   9
## 4555         04/05/1990   9
## 4556         04/08/1993   9
## 4557         04/11/1993   9
## 4558         05/10/1990   9
## 4559         06/01/2004   9
## 4560         06/06/1990   9
## 4561         06/12/1996   9
## 4562         07/02/1996   9
## 4563         07/05/1990   9
## 4564         07/07/1992   9
## 4565         07/12/1994   9
## 4566         07/12/2001   9
## 4567         09/02/1996   9
## 4568         09/04/1991   9
## 4569         09/04/2008   9
## 4570         09/06/2014   9
## 4571         09/08/2002   9
## 4572         10/03/1999   9
## 4573         10/07/1992   9
## 4574         10/07/2004   9
## 4575         10/10/1990   9
## 4576         10/10/2011   9
## 4577         11/02/1991   9
## 4578         11/04/1994   9
## 4579         11/04/2014   9
## 4580         11/05/1992   9
## 4581         11/06/1991   9
## 4582         11/06/1993   9
## 4583         11/07/1991   9
## 4584         11/11/2005   9
## 4585         12/02/1991   9
## 4586         12/05/2014   9
## 4587         12/06/1991   9
## 4588         12/06/1995   9
## 4589         12/07/1993   9
## 4590         13/02/2006   9
## 4591         13/06/1990   9
## 4592         13/06/2014   9
## 4593         13/07/1992   9
## 4594         14/01/1991   9
## 4595         14/01/1992   9
## 4596         14/05/1992   9
## 4597         14/05/2003   9
## 4598         14/08/1990   9
## 4599         14/11/2011   9
## 4600         15/02/2008   9
## 4601         15/05/2014   9
## 4602         15/06/1992   9
## 4603         15/11/2001   9
## 4604         16/06/2014   9
## 4605         16/12/1992   9
## 4606         17/04/2014   9
## 4607         17/07/2013   9
## 4608         17/09/1990   9
## 4609         17/09/1999   9
## 4610         18/03/2011   9
## 4611         18/09/1995   9
## 4612         19/01/2010   9
## 4613         19/04/2002   9
## 4614         19/05/1992   9
## 4615         19/08/1993   9
## 4616         19/09/1994   9
## 4617         20/03/1990   9
## 4618         20/03/1995   9
## 4619         20/04/1994   9
## 4620         20/11/1991   9
## 4621         20/12/1993   9
## 4622         21/04/1994   9
## 4623         21/06/1990   9
## 4624         21/08/1990   9
## 4625         22/03/1994   9
## 4626         22/08/1990   9
## 4627         22/08/1995   9
## 4628         23/09/1991   9
## 4629         23/12/1997   9
## 4630         24/04/1990   9
## 4631         24/07/2004   9
## 4632         24/09/1990   9
## 4633         24/09/1998   9
## 4634         24/10/1991   9
## 4635         25/06/1992   9
## 4636         25/08/2001   9
## 4637         26/08/1992   9
## 4638         26/09/1990   9
## 4639         26/09/1994   9
## 4640         27/11/2000   9
## 4641         27/12/1994   9
## 4642         28/07/1995   9
## 4643         29/04/2014   9
## 4644         29/06/1992   9
## 4645         29/06/1993   9
## 4646         29/06/1995   9
## 4647         29/12/1998   9
## 4648         30/07/1992   9
## 4649         30/08/1990   9
## 4650         30/08/1994   9
## 4651         30/09/1993   9
## 4652         30/10/1997   9
## 4653         30/11/1998   9
## 4654         30/12/2002   9
## 4655         30/12/2005   9
## 4656         30/12/2011   9
## 4657         31/03/1992   9
## 4658         31/10/1991   9
## 4659         01/04/1993   8
## 4660         01/04/1999   8
## 4661         01/06/1990   8
## 4662         01/06/1993   8
## 4663         01/06/1994   8
## 4664         01/09/1992   8
## 4665         01/10/1991   8
## 4666         01/11/2008   8
## 4667         02/01/2014   8
## 4668         02/04/1990   8
## 4669         02/07/1999   8
## 4670         02/07/2009   8
## 4671         02/09/1993   8
## 4672         02/10/1990   8
## 4673         03/02/2001   8
## 4674         03/05/1990   8
## 4675         03/05/1993   8
## 4676         03/08/1990   8
## 4677         03/08/1993   8
## 4678         03/08/1994   8
## 4679         04/04/1994   8
## 4680         04/07/2006   8
## 4681         04/09/1990   8
## 4682         04/10/2013   8
## 4683         04/11/1992   8
## 4684         04/11/2006   8
## 4685         05/03/1991   8
## 4686         05/03/2007   8
## 4687         06/01/1992   8
## 4688         06/02/1996   8
## 4689         06/08/1990   8
## 4690         06/10/1993   8
## 4691         06/11/2006   8
## 4692         06/11/2009   8
## 4693         07/01/2003   8
## 4694         07/01/2004   8
## 4695         07/01/2013   8
## 4696         07/06/1990   8
## 4697         07/07/1993   8
## 4698         07/10/1993   8
## 4699         07/10/1998   8
## 4700         07/11/1991   8
## 4701         07/11/1994   8
## 4702         07/11/2012   8
## 4703         08/03/1991   8
## 4704         08/06/1995   8
## 4705         08/07/1993   8
## 4706         08/08/1994   8
## 4707         08/09/1992   8
## 4708         08/09/1993   8
## 4709         08/10/1991   8
## 4710         08/11/1991   8
## 4711         08/11/2012   8
## 4712         09/02/1994   8
## 4713         09/03/2009   8
## 4714         09/05/1990   8
## 4715         09/05/1994   8
## 4716         09/10/1991   8
## 4717         09/12/1993   8
## 4718         10/02/2014   8
## 4719         10/06/1991   8
## 4720         10/06/1993   8
## 4721         10/06/1994   8
## 4722         10/07/1991   8
## 4723         10/09/1993   8
## 4724         10/09/2002   8
## 4725         10/09/2012   8
## 4726         11/04/1995   8
## 4727         11/05/1993   8
## 4728         11/05/2012   8
## 4729         11/07/1994   8
## 4730         11/07/1995   8
## 4731         11/09/1998   8
## 4732         11/11/2006   8
## 4733         11/12/1990   8
## 4734         12/05/1995   8
## 4735         12/06/1990   8
## 4736         12/07/1994   8
## 4737         12/10/1993   8
## 4738         13/02/2009   8
## 4739         13/05/2014   8
## 4740         13/06/1994   8
## 4741         13/07/1994   8
## 4742         13/08/1992   8
## 4743         13/08/1993   8
## 4744         14/06/1990   8
## 4745         15/03/1995   8
## 4746         15/04/2014   8
## 4747         15/05/1992   8
## 4748         15/08/1990   8
## 4749         15/09/1992   8
## 4750         15/09/1993   8
## 4751         15/09/1995   8
## 4752         15/11/1991   8
## 4753         16/01/2001   8
## 4754         16/03/1992   8
## 4755         16/03/2010   8
## 4756         16/05/2014   8
## 4757         16/08/1990   8
## 4758         16/09/1993   8
## 4759         17/01/2011   8
## 4760         17/07/1991   8
## 4761         17/10/1991   8
## 4762         18/06/1993   8
## 4763         18/08/1992   8
## 4764         19/04/2004   8
## 4765         19/06/1991   8
## 4766         19/06/1998   8
## 4767         19/07/1991   8
## 4768         19/08/1991   8
## 4769         19/08/1994   8
## 4770         19/08/1999   8
## 4771         19/09/1991   8
## 4772         20/03/1991   8
## 4773         20/06/1991   8
## 4774         20/06/1994   8
## 4775         20/07/1990   8
## 4776         20/09/1990   8
## 4777         20/09/1995   8
## 4778         21/04/1996   8
## 4779         21/05/1990   8
## 4780         21/09/1992   8
## 4781         21/10/1992   8
## 4782         22/01/1991   8
## 4783         22/05/1990   8
## 4784         22/05/2014   8
## 4785         22/10/1993   8
## 4786         23/02/1993   8
## 4787         23/04/1990   8
## 4788         23/10/1995   8
## 4789         24/05/1994   8
## 4790         24/06/1993   8
## 4791         24/07/1995   8
## 4792         24/08/1990   8
## 4793         24/08/1992   8
## 4794         24/10/1995   8
## 4795         25/01/1994   8
## 4796         25/04/1994   8
## 4797         25/05/2000   8
## 4798         25/06/1991   8
## 4799         25/07/1990   8
## 4800         25/07/1995   8
## 4801         25/08/1992   8
## 4802         25/08/1994   8
## 4803         25/10/1991   8
## 4804         26/03/1990   8
## 4805         26/03/1991   8
## 4806         26/04/1994   8
## 4807         26/06/1992   8
## 4808         26/06/2014   8
## 4809         26/08/1993   8
## 4810         27/02/1991   8
## 4811         27/02/1995   8
## 4812         27/02/1996   8
## 4813         27/07/1994   8
## 4814         27/08/1992   8
## 4815         27/08/1993   8
## 4816         27/09/1993   8
## 4817         27/12/2002   8
## 4818         28/01/1993   8
## 4819         28/01/2000   8
## 4820         28/04/1995   8
## 4821         28/05/2014   8
## 4822         28/06/1990   8
## 4823         28/07/1994   8
## 4824         28/08/1992   8
## 4825         28/08/2009   8
## 4826         28/11/1995   8
## 4827         29/01/1992   8
## 4828         29/01/1993   8
## 4829         29/07/1993   8
## 4830         29/07/1994   8
## 4831         29/07/2006   8
## 4832         29/08/2007   8
## 4833         29/12/1997   8
## 4834         30/04/2014   8
## 4835         30/05/1991   8
## 4836         30/06/1992   8
## 4837         30/06/1994   8
## 4838         30/06/2009   8
## 4839         31/01/1996   8
## 4840         31/05/1995   8
## 4841         31/08/1990   8
## 4842         31/10/2005   8
## 4843         01/04/1991   7
## 4844         01/07/1991   7
## 4845         01/09/1993   7
## 4846         01/09/1994   7
## 4847         01/10/1990   7
## 4848         01/10/1993   7
## 4849         01/11/1990   7
## 4850         01/11/1993   7
## 4851         02/03/2002   7
## 4852         02/06/1993   7
## 4853         02/06/1994   7
## 4854         02/06/1997   7
## 4855         02/07/1992   7
## 4856         02/07/1993   7
## 4857         02/09/1992   7
## 4858         02/12/1993   7
## 4859         02/12/2006   7
## 4860         03/01/1994   7
## 4861         03/01/2003   7
## 4862         03/02/1994   7
## 4863         03/05/1999   7
## 4864         03/06/1993   7
## 4865         03/07/1990   7
## 4866         04/03/1996   7
## 4867         04/04/1991   7
## 4868         04/04/1995   7
## 4869         04/10/1991   7
## 4870         05/06/1991   7
## 4871         05/12/1990   7
## 4872         06/02/1992   7
## 4873         06/03/1991   7
## 4874         06/04/1992   7
## 4875         06/04/1993   7
## 4876         06/09/1991   7
## 4877         06/10/1995   7
## 4878         06/12/1990   7
## 4879         07/01/1992   7
## 4880         07/02/1995   7
## 4881         07/03/1995   7
## 4882         07/05/1998   7
## 4883         07/06/1993   7
## 4884         08/01/1992   7
## 4885         08/02/1990   7
## 4886         08/03/1994   7
## 4887         08/05/1995   7
## 4888         08/07/2000   7
## 4889         08/10/1990   7
## 4890         09/03/1992   7
## 4891         09/03/1993   7
## 4892         09/05/1991   7
## 4893         09/06/1993   7
## 4894         09/12/1992   7
## 4895         10/01/1991   7
## 4896         10/02/1993   7
## 4897         10/02/1995   7
## 4898         10/03/1993   7
## 4899         10/06/1992   7
## 4900         10/08/1995   7
## 4901         10/12/1999   7
## 4902         11/03/1992   7
## 4903         11/04/1991   7
## 4904         11/06/1990   7
## 4905         11/08/1993   7
## 4906         11/10/1990   7
## 4907         11/10/1994   7
## 4908         12/01/1995   7
## 4909         12/03/1996   7
## 4910         12/03/1999   7
## 4911         12/04/1993   7
## 4912         12/04/2000   7
## 4913         12/08/1992   7
## 4914         12/08/1994   7
## 4915         12/10/1994   7
## 4916         13/02/2003   7
## 4917         13/05/1993   7
## 4918         13/07/1996   7
## 4919         13/12/1996   7
## 4920         14/02/1994   7
## 4921         14/06/1991   7
## 4922         14/10/1991   7
## 4923         14/12/1990   7
## 4924         15/01/2007   7
## 4925         15/03/1994   7
## 4926         15/05/1990   7
## 4927         15/06/1994   7
## 4928         15/06/1995   7
## 4929         15/07/1993   7
## 4930         15/07/1994   7
## 4931         15/09/1994   7
## 4932         15/10/1990   7
## 4933         15/10/1991   7
## 4934         15/11/1990   7
## 4935         16/04/1991   7
## 4936         16/04/1999   7
## 4937         16/08/1991   7
## 4938         16/11/1992   7
## 4939         17/01/1996   7
## 4940         17/05/1995   7
## 4941         17/06/1991   7
## 4942         17/08/1990   7
## 4943         17/08/1995   7
## 4944         17/09/1991   7
## 4945         17/09/1992   7
## 4946         17/10/1990   7
## 4947         17/12/1998   7
## 4948         18/03/1991   7
## 4949         18/03/1996   7
## 4950         18/04/1995   7
## 4951         18/05/1990   7
## 4952         18/07/1990   7
## 4953         18/09/1992   7
## 4954         18/09/2004   7
## 4955         18/10/2001   7
## 4956         18/12/1990   7
## 4957         19/01/1996   7
## 4958         19/04/1993   7
## 4959         19/05/1993   7
## 4960         19/07/1995   7
## 4961         19/09/1995   7
## 4962         20/04/1995   7
## 4963         20/05/1992   7
## 4964         20/05/1993   7
## 4965         20/05/2014   7
## 4966         20/06/1990   7
## 4967         20/06/1995   7
## 4968         20/07/1992   7
## 4969         20/07/1994   7
## 4970         20/08/1991   7
## 4971         20/08/1992   7
## 4972         20/09/1993   7
## 4973         21/02/1996   7
## 4974         21/03/1990   7
## 4975         21/08/1991   7
## 4976         21/08/1995   7
## 4977         21/09/1990   7
## 4978         21/10/1994   7
## 4979         21/11/1991   7
## 4980         22/02/1994   7
## 4981         22/03/1990   7
## 4982         22/03/1995   7
## 4983         22/04/1991   7
## 4984         22/04/1992   7
## 4985         22/06/1993   7
## 4986         22/10/2005   7
## 4987         22/12/2000   7
## 4988         23/03/1993   7
## 4989         23/06/1993   7
## 4990         23/12/2010   7
## 4991         24/01/1992   7
## 4992         24/02/1994   7
## 4993         24/05/1990   7
## 4994         24/05/1993   7
## 4995         24/05/2009   7
## 4996         24/06/1994   7
## 4997         24/09/1992   7
## 4998         24/09/1993   7
## 4999         24/09/2005   7
## 5000         25/03/1991   7
## 5001         25/05/1994   7
## 5002         25/05/1995   7
## 5003         25/08/1995   7
## 5004         25/09/1995   7
## 5005         25/11/1991   7
## 5006         26/01/2004   7
## 5007         26/07/1993   7
## 5008         26/09/2008   7
## 5009         26/12/2001   7
## 5010         27/01/1992   7
## 5011         27/03/1996   7
## 5012         27/04/1993   7
## 5013         27/06/1991   7
## 5014         27/07/1990   7
## 5015         27/08/2010   7
## 5016         27/09/1991   7
## 5017         27/10/1992   7
## 5018         27/12/2004   7
## 5019         27/12/2007   7
## 5020         28/04/2010   7
## 5021         28/06/1991   7
## 5022         28/06/1993   7
## 5023         28/06/1994   7
## 5024         28/08/1990   7
## 5025         28/08/1991   7
## 5026         28/10/1994   7
## 5027         28/12/2006   7
## 5028         28/12/2010   7
## 5029         29/01/1991   7
## 5030         29/01/2014   7
## 5031         29/06/1990   7
## 5032         29/11/1993   7
## 5033         30/06/1995   7
## 5034         30/07/1990   7
## 5035         30/10/1992   7
## 5036         30/12/2008   7
## 5037         30/12/2010   7
## 5038         31/01/2010   7
## 5039         31/05/1991   7
## 5040         01/02/1993   6
## 5041         01/02/1996   6
## 5042         01/03/1994   6
## 5043         01/05/1995   6
## 5044         01/07/1993   6
## 5045         01/07/1994   6
## 5046         01/08/1990   6
## 5047         01/08/1995   6
## 5048         02/01/1996   6
## 5049         02/05/1991   6
## 5050         02/07/1990   6
## 5051         02/08/1990   6
## 5052         02/08/1993   6
## 5053         02/09/1994   6
## 5054         02/10/1995   6
## 5055         02/12/1991   6
## 5056         03/01/1995   6
## 5057         03/04/1995   6
## 5058         03/05/1991   6
## 5059         03/05/1995   6
## 5060         03/06/1992   6
## 5061         03/08/1992   6
## 5062         03/09/1992   6
## 5063         04/01/1993   6
## 5064         04/02/1994   6
## 5065         04/03/1992   6
## 5066         04/06/1992   6
## 5067         04/06/2014   6
## 5068         04/08/1995   6
## 5069         04/09/2004   6
## 5070         04/10/1990   6
## 5071         04/10/1993   6
## 5072         05/02/1991   6
## 5073         05/06/2014   6
## 5074         05/07/1990   6
## 5075         05/07/1995   6
## 5076         05/08/1991   6
## 5077         05/08/1992   6
## 5078         05/08/1994   6
## 5079         05/10/1993   6
## 5080         05/10/1994   6
## 5081         05/10/1995   6
## 5082         05/11/1993   6
## 5083         06/04/1990   6
## 5084         06/11/2001   6
## 5085         07/01/1991   6
## 5086         07/02/1992   6
## 5087         07/03/1991   6
## 5088         07/04/1993   6
## 5089         07/04/2014   6
## 5090         07/09/1994   6
## 5091         07/09/1995   6
## 5092         07/10/1992   6
## 5093         07/11/2001   6
## 5094         08/01/1999   6
## 5095         08/02/1991   6
## 5096         08/04/1992   6
## 5097         08/04/1994   6
## 5098         08/05/1990   6
## 5099         08/06/1994   6
## 5100         08/07/1991   6
## 5101         08/08/1995   6
## 5102         08/09/1994   6
## 5103         09/01/1995   6
## 5104         09/01/1996   6
## 5105         09/08/1993   6
## 5106         09/08/1995   6
## 5107         10/01/1992   6
## 5108         10/02/1994   6
## 5109         10/04/1992   6
## 5110         10/04/1995   6
## 5111         10/05/1990   6
## 5112         10/07/1995   6
## 5113         10/09/1991   6
## 5114         10/10/1991   6
## 5115         11/01/1995   6
## 5116         11/05/1995   6
## 5117         11/08/1995   6
## 5118         11/10/1991   6
## 5119         11/10/1993   6
## 5120         11/12/1995   6
## 5121         12/02/1996   6
## 5122         12/03/2007   6
## 5123         12/04/1990   6
## 5124         12/04/1991   6
## 5125         12/05/1993   6
## 5126         12/06/2014   6
## 5127         12/09/1995   6
## 5128         12/09/2003   6
## 5129         12/10/1992   6
## 5130         12/11/1991   6
## 5131         12/11/1993   6
## 5132         12/12/1990   6
## 5133         12/12/1994   6
## 5134         13/01/1993   6
## 5135         13/02/1991   6
## 5136         13/02/1992   6
## 5137         13/04/1995   6
## 5138         13/06/1991   6
## 5139         13/07/1993   6
## 5140         13/09/1991   6
## 5141         13/09/1993   6
## 5142         13/10/1993   6
## 5143         13/11/1990   6
## 5144         13/12/1991   6
## 5145         13/12/1995   6
## 5146         14/03/1990   6
## 5147         14/04/1993   6
## 5148         14/05/2014   6
## 5149         14/06/1993   6
## 5150         14/08/1995   6
## 5151         14/09/1996   6
## 5152         14/10/1992   6
## 5153         14/11/1991   6
## 5154         15/03/1993   6
## 5155         15/04/1991   6
## 5156         15/05/1991   6
## 5157         15/05/1995   6
## 5158         15/06/1990   6
## 5159         15/06/1993   6
## 5160         15/07/1992   6
## 5161         15/08/1995   6
## 5162         15/10/1992   6
## 5163         15/11/1989   6
## 5164         15/11/1993   6
## 5165         15/12/1994   6
## 5166         16/03/1994   6
## 5167         16/05/1991   6
## 5168         16/05/1994   6
## 5169         16/08/1994   6
## 5170         16/08/1995   6
## 5171         16/09/1991   6
## 5172         16/10/1990   6
## 5173         16/10/1992   6
## 5174         16/10/2004   6
## 5175         17/01/1992   6
## 5176         17/01/1995   6
## 5177         17/02/1992   6
## 5178         17/03/1992   6
## 5179         17/03/1994   6
## 5180         17/04/1991   6
## 5181         17/06/1992   6
## 5182         17/06/1993   6
## 5183         17/06/1994   6
## 5184         17/07/1992   6
## 5185         17/07/2004   6
## 5186         17/11/1993   6
## 5187         18/01/1996   6
## 5188         18/04/1990   6
## 5189         18/05/1992   6
## 5190         18/05/1995   6
## 5191         18/06/1991   6
## 5192         18/07/1995   6
## 5193         18/10/1991   6
## 5194         18/11/1993   6
## 5195         19/01/1998   6
## 5196         19/01/2009   6
## 5197         19/02/1992   6
## 5198         19/05/2014   6
## 5199         19/07/1994   6
## 5200         19/10/1994   6
## 5201         20/01/1998   6
## 5202         20/02/1991   6
## 5203         20/02/1995   6
## 5204         20/04/1993   6
## 5205         20/04/2008   6
## 5206         20/08/1990   6
## 5207         20/09/1994   6
## 5208         21/01/2014   6
## 5209         21/02/1994   6
## 5210         21/02/1995   6
## 5211         21/03/1996   6
## 5212         21/03/2014   6
## 5213         21/04/2014   6
## 5214         21/05/1992   6
## 5215         21/05/1993   6
## 5216         21/05/2014   6
## 5217         21/06/1991   6
## 5218         21/07/1993   6
## 5219         21/09/1994   6
## 5220         21/10/1993   6
## 5221         21/11/1994   6
## 5222         22/01/1992   6
## 5223         22/01/1996   6
## 5224         22/02/1996   6
## 5225         22/04/1993   6
## 5226         22/06/1992   6
## 5227         22/06/1995   6
## 5228         22/07/1992   6
## 5229         22/09/1992   6
## 5230         22/10/2001   6
## 5231         22/12/1993   6
## 5232         23/01/1996   6
## 5233         23/02/1994   6
## 5234         23/05/2014   6
## 5235         23/06/1992   6
## 5236         23/06/1995   6
## 5237         23/07/1993   6
## 5238         23/08/1990   6
## 5239         23/09/1992   6
## 5240         23/10/1990   6
## 5241         23/11/1992   6
## 5242         23/12/2008   6
## 5243         24/01/1995   6
## 5244         24/03/1994   6
## 5245         24/04/1991   6
## 5246         24/07/1990   6
## 5247         24/09/1991   6
## 5248         25/01/2000   6
## 5249         25/04/1990   6
## 5250         25/06/1990   6
## 5251         25/10/1993   6
## 5252         26/02/1991   6
## 5253         26/02/1992   6
## 5254         26/03/1992   6
## 5255         26/06/1995   6
## 5256         26/08/1994   6
## 5257         26/09/1995   6
## 5258         26/10/1992   6
## 5259         26/12/2006   6
## 5260         26/12/2008   6
## 5261         27/01/1993   6
## 5262         27/03/1991   6
## 5263         27/04/1992   6
## 5264         27/04/1994   6
## 5265         27/06/1995   6
## 5266         27/06/2014   6
## 5267         27/08/1991   6
## 5268         27/09/1995   6
## 5269         27/10/1994   6
## 5270         27/12/2013   6
## 5271         28/01/1994   6
## 5272         28/03/1990   6
## 5273         28/03/1995   6
## 5274         28/04/1994   6
## 5275         28/07/1992   6
## 5276         28/07/1993   6
## 5277         28/11/1990   6
## 5278         29/03/1995   6
## 5279         29/04/1991   6
## 5280         29/04/1992   6
## 5281         29/05/1990   6
## 5282         29/08/1994   6
## 5283         29/10/1991   6
## 5284         30/06/1999   6
## 5285         30/07/1993   6
## 5286         30/08/1993   6
## 5287         30/10/1991   6
## 5288         30/11/1992   6
## 5289         30/12/1998   6
## 5290         30/12/2013   6
## 5291         31/01/2008   6
## 5292         31/03/1995   6
## 5293         31/08/1993   6
## 5294         31/12/1999   6
## 5295         31/12/2002   6
## 5296         01/02/1991   5
## 5297         01/04/1992   5
## 5298         01/05/1991   5
## 5299         01/07/1999   5
## 5300         01/07/2009   5
## 5301         01/08/1994   5
## 5302         01/09/1995   5
## 5303         01/12/1992   5
## 5304         02/01/1990   5
## 5305         02/01/1991   5
## 5306         02/01/1992   5
## 5307         02/03/1994   5
## 5308         02/03/1995   5
## 5309         02/04/1991   5
## 5310         02/05/2014   5
## 5311         02/08/1994   5
## 5312         02/11/1993   5
## 5313         02/12/1992   5
## 5314         03/11/1994   5
## 5315         03/12/1991   5
## 5316         04/01/1994   5
## 5317         04/02/1991   5
## 5318         04/03/1991   5
## 5319         04/04/1990   5
## 5320         04/05/1992   5
## 5321         04/05/1995   5
## 5322         04/06/1990   5
## 5323         04/12/2004   5
## 5324         05/02/1993   5
## 5325         05/02/2005   5
## 5326         05/03/1990   5
## 5327         05/04/1993   5
## 5328         05/05/1992   5
## 5329         05/07/1991   5
## 5330         05/10/1992   5
## 5331         05/12/1991   5
## 5332         05/12/1994   5
## 5333         06/01/1994   5
## 5334         06/01/1996   5
## 5335         06/02/1990   5
## 5336         06/02/1991   5
## 5337         06/04/2012   5
## 5338         06/07/1992   5
## 5339         06/12/2002   5
## 5340         07/01/1993   5
## 5341         07/01/1994   5
## 5342         07/03/1990   5
## 5343         07/03/1994   5
## 5344         07/04/1992   5
## 5345         07/05/1999   5
## 5346         07/05/2014   5
## 5347         07/06/1991   5
## 5348         07/06/1995   5
## 5349         07/08/1992   5
## 5350         07/10/1991   5
## 5351         08/02/1996   5
## 5352         08/03/1993   5
## 5353         08/03/1995   5
## 5354         08/08/1990   5
## 5355         08/11/1990   5
## 5356         08/11/1994   5
## 5357         08/11/2001   5
## 5358         08/12/1989   5
## 5359         08/12/1994   5
## 5360         09/02/1993   5
## 5361         09/04/1990   5
## 5362         09/04/2014   5
## 5363         09/06/1992   5
## 5364         09/07/1990   5
## 5365         09/08/1990   5
## 5366         09/11/1994   5
## 5367         09/11/2001   5
## 5368         09/11/2003   5
## 5369         09/12/1991   5
## 5370         10/01/1994   5
## 5371         10/03/1992   5
## 5372         10/04/1991   5
## 5373         10/05/1995   5
## 5374         10/07/1999   5
## 5375         10/08/1990   5
## 5376         10/08/1998   5
## 5377         10/10/1994   5
## 5378         10/11/1993   5
## 5379         10/12/1990   5
## 5380         10/12/2005   5
## 5381         11/02/1992   5
## 5382         11/05/1989   5
## 5383         11/06/1992   5
## 5384         11/09/1992   5
## 5385         11/11/2013   5
## 5386         12/01/1996   5
## 5387         12/02/1992   5
## 5388         12/03/1991   5
## 5389         12/03/1993   5
## 5390         12/05/1992   5
## 5391         12/05/1994   5
## 5392         12/08/1991   5
## 5393         12/09/1990   5
## 5394         12/09/1994   5
## 5395         13/02/1995   5
## 5396         13/03/1993   5
## 5397         13/03/1996   5
## 5398         13/04/1992   5
## 5399         13/06/1995   5
## 5400         13/09/1990   5
## 5401         13/10/1994   5
## 5402         14/06/1995   5
## 5403         14/07/1992   5
## 5404         14/07/1994   5
## 5405         14/07/1995   5
## 5406         14/08/1991   5
## 5407         14/10/1993   5
## 5408         14/10/1994   5
## 5409         14/12/1992   5
## 5410         15/01/1992   5
## 5411         15/02/1990   5
## 5412         15/03/1991   5
## 5413         15/04/1992   5
## 5414         15/08/1994   5
## 5415         15/11/1994   5
## 5416         15/11/1995   5
## 5417         15/12/2004   5
## 5418         16/02/1993   5
## 5419         16/02/1996   5
## 5420         16/04/1990   5
## 5421         16/04/1993   5
## 5422         16/06/2007   5
## 5423         16/08/1993   5
## 5424         16/09/1992   5
## 5425         16/10/1991   5
## 5426         16/10/1995   5
## 5427         16/11/1993   5
## 5428         16/12/1991   5
## 5429         17/03/1993   5
## 5430         17/04/1990   5
## 5431         17/04/1995   5
## 5432         17/08/1992   5
## 5433         17/08/1994   5
## 5434         17/09/2010   5
## 5435         17/10/1995   5
## 5436         18/01/2000   5
## 5437         18/01/2010   5
## 5438         18/02/1991   5
## 5439         18/02/1992   5
## 5440         18/03/1994   5
## 5441         18/04/1994   5
## 5442         18/05/1993   5
## 5443         18/06/1992   5
## 5444         18/08/1994   5
## 5445         18/10/1990   5
## 5446         18/10/1993   5
## 5447         18/10/1994   5
## 5448         18/11/1991   5
## 5449         18/12/1995   5
## 5450         19/03/1990   5
## 5451         19/03/1993   5
## 5452         19/04/1990   5
## 5453         19/04/1994   5
## 5454         19/06/1995   5
## 5455         19/07/1990   5
## 5456         19/09/1990   5
## 5457         19/10/1990   5
## 5458         19/11/1991   5
## 5459         19/11/1992   5
## 5460         19/11/1993   5
## 5461         20/04/1992   5
## 5462         20/08/1993   5
## 5463         20/11/1992   5
## 5464         20/12/1995   5
## 5465         21/01/1994   5
## 5466         21/01/2012   5
## 5467         21/04/1992   5
## 5468         21/04/1993   5
## 5469         21/06/1993   5
## 5470         21/07/1995   5
## 5471         21/11/1990   5
## 5472         22/02/1991   5
## 5473         22/02/1993   5
## 5474         22/02/1995   5
## 5475         22/03/1991   5
## 5476         22/05/1991   5
## 5477         22/06/1994   5
## 5478         22/09/1994   5
## 5479         22/10/1990   5
## 5480         22/10/1991   5
## 5481         22/12/1994   5
## 5482         23/01/1990   5
## 5483         23/01/1995   5
## 5484         23/02/1996   5
## 5485         23/04/1992   5
## 5486         23/04/1993   5
## 5487         23/07/1992   5
## 5488         23/08/1994   5
## 5489         23/10/1998   5
## 5490         23/10/2001   5
## 5491         23/12/2002   5
## 5492         24/03/1995   5
## 5493         24/07/1992   5
## 5494         24/08/1994   5
## 5495         24/10/1990   5
## 5496         24/10/1994   5
## 5497         24/11/1992   5
## 5498         25/01/1993   5
## 5499         25/02/1991   5
## 5500         25/02/1993   5
## 5501         25/03/1992   5
## 5502         25/06/1993   5
## 5503         25/07/1991   5
## 5504         25/08/1993   5
## 5505         25/09/1991   5
## 5506         25/10/1995   5
## 5507         25/10/2001   5
## 5508         26/04/1995   5
## 5509         26/05/1992   5
## 5510         26/06/1991   5
## 5511         26/07/2002   5
## 5512         26/09/1991   5
## 5513         26/10/1995   5
## 5514         27/02/1990   5
## 5515         27/03/1995   5
## 5516         27/05/1992   5
## 5517         27/05/1993   5
## 5518         27/09/1994   5
## 5519         27/12/2001   5
## 5520         28/01/1991   5
## 5521         28/02/1994   5
## 5522         28/04/1992   5
## 5523         28/06/1995   5
## 5524         28/09/1990   5
## 5525         28/09/2008   5
## 5526         28/10/1992   5
## 5527         28/11/1994   5
## 5528         28/12/2000   5
## 5529         28/12/2001   5
## 5530         29/01/1990   5
## 5531         29/03/1994   5
## 5532         29/05/1991   5
## 5533         29/07/1992   5
## 5534         29/08/1990   5
## 5535         29/08/1995   5
## 5536         29/09/2007   5
## 5537         29/10/1992   5
## 5538         29/12/2000   5
## 5539         30/01/1991   5
## 5540         30/01/1992   5
## 5541         30/01/1996   5
## 5542         30/03/1994   5
## 5543         30/05/1990   5
## 5544         30/08/1991   5
## 5545         30/08/1995   5
## 5546         30/09/1992   5
## 5547         30/10/1995   5
## 5548         30/10/2004   5
## 5549         30/11/1990   5
## 5550         31/01/1991   5
## 5551         31/01/2002   5
## 5552         31/01/2003   5
## 5553         31/03/1993   5
## 5554         31/03/1994   5
## 5555         31/05/1990   5
## 5556         31/08/1989   5
## 5557         31/10/1990   5
## 5558         31/12/1990   5
## 5559         01/02/1994   4
## 5560         01/02/1995   4
## 5561         01/03/1991   4
## 5562         01/03/1996   4
## 5563         01/05/1992   4
## 5564         01/06/1995   4
## 5565         02/02/1995   4
## 5566         02/03/1993   4
## 5567         02/04/1992   4
## 5568         02/04/1993   4
## 5569         02/05/1994   4
## 5570         02/06/1992   4
## 5571         02/06/1995   4
## 5572         02/06/2001   4
## 5573         02/11/1990   4
## 5574         02/11/1995   4
## 5575         03/01/1991   4
## 5576         03/03/1993   4
## 5577         03/03/1994   4
## 5578         03/06/2006   4
## 5579         03/07/1995   4
## 5580         03/11/1992   4
## 5581         03/11/1993   4
## 5582         04/01/1996   4
## 5583         04/03/1993   4
## 5584         04/06/1993   4
## 5585         04/08/1989   4
## 5586         04/08/1992   4
## 5587         04/08/1994   4
## 5588         04/08/1996   4
## 5589         04/10/1995   4
## 5590         04/11/1991   4
## 5591         04/11/1994   4
## 5592         04/12/1995   4
## 5593         05/01/1993   4
## 5594         05/02/1992   4
## 5595         05/03/1992   4
## 5596         05/04/1990   4
## 5597         05/04/1994   4
## 5598         05/06/1992   4
## 5599         05/09/1995   4
## 5600         05/11/1991   4
## 5601         05/12/1995   4
## 5602         05/12/2002   4
## 5603         06/01/1995   4
## 5604         06/03/1990   4
## 5605         06/04/1995   4
## 5606         06/05/1991   4
## 5607         06/05/1994   4
## 5608         06/06/2014   4
## 5609         06/07/1990   4
## 5610         06/07/1995   4
## 5611         06/08/1993   4
## 5612         06/09/1994   4
## 5613         06/09/1995   4
## 5614         06/10/1992   4
## 5615         06/10/2007   4
## 5616         06/11/1995   4
## 5617         06/12/1991   4
## 5618         06/12/1993   4
## 5619         07/01/1996   4
## 5620         07/02/1991   4
## 5621         07/03/2009   4
## 5622         07/04/1995   4
## 5623         07/05/1993   4
## 5624         07/07/1994   4
## 5625         07/08/1990   4
## 5626         07/08/1995   4
## 5627         07/09/1990   4
## 5628         07/10/1994   4
## 5629         07/11/1990   4
## 5630         07/11/1995   4
## 5631         07/12/1992   4
## 5632         07/12/2002   4
## 5633         08/02/1993   4
## 5634         08/05/1991   4
## 5635         08/08/1991   4
## 5636         08/10/1993   4
## 5637         08/11/1993   4
## 5638         08/11/1995   4
## 5639         08/12/1992   4
## 5640         08/12/1993   4
## 5641         09/01/1992   4
## 5642         09/06/1994   4
## 5643         09/07/1992   4
## 5644         09/10/1992   4
## 5645         09/11/1993   4
## 5646         10/01/1995   4
## 5647         10/05/1994   4
## 5648         10/06/2006   4
## 5649         10/08/1992   4
## 5650         10/10/1995   4
## 5651         10/12/1993   4
## 5652         11/01/1996   4
## 5653         11/02/1993   4
## 5654         11/03/1993   4
## 5655         11/03/1994   4
## 5656         11/05/1990   4
## 5657         11/06/2014   4
## 5658         11/09/1989   4
## 5659         11/09/1990   4
## 5660         12/02/1990   4
## 5661         12/04/1994   4
## 5662         12/04/1995   4
## 5663         12/07/1991   4
## 5664         12/08/1993   4
## 5665         12/10/1995   4
## 5666         12/11/1992   4
## 5667         13/01/1996   4
## 5668         13/03/1992   4
## 5669         13/04/1993   4
## 5670         13/07/1995   4
## 5671         13/08/1990   4
## 5672         13/08/1991   4
## 5673         13/10/1992   4
## 5674         13/10/1995   4
## 5675         13/12/1994   4
## 5676         14/02/1990   4
## 5677         14/02/1991   4
## 5678         14/02/1995   4
## 5679         14/02/1996   4
## 5680         14/02/1997   4
## 5681         14/03/1991   4
## 5682         14/03/1994   4
## 5683         14/03/1995   4
## 5684         14/03/1996   4
## 5685         14/04/1992   4
## 5686         14/04/1994   4
## 5687         14/04/2006   4
## 5688         14/09/1990   4
## 5689         14/09/1993   4
## 5690         14/09/1994   4
## 5691         14/11/1994   4
## 5692         14/11/1995   4
## 5693         15/01/1991   4
## 5694         15/05/1989   4
## 5695         15/09/1996   4
## 5696         16/01/1991   4
## 5697         16/01/1992   4
## 5698         16/01/2006   4
## 5699         16/03/1993   4
## 5700         16/03/1995   4
## 5701         16/03/2004   4
## 5702         16/03/2008   4
## 5703         16/05/1990   4
## 5704         16/06/1995   4
## 5705         17/01/1991   4
## 5706         17/01/1994   4
## 5707         17/02/1993   4
## 5708         17/02/1994   4
## 5709         17/02/2003   4
## 5710         17/03/1995   4
## 5711         17/03/2012   4
## 5712         17/05/1990   4
## 5713         17/06/2014   4
## 5714         17/07/1995   4
## 5715         17/10/1994   4
## 5716         17/11/1989   4
## 5717         17/11/1992   4
## 5718         17/12/1990   4
## 5719         18/01/1994   4
## 5720         18/03/2010   4
## 5721         18/04/1991   4
## 5722         18/05/1994   4
## 5723         18/08/1995   4
## 5724         18/08/2001   4
## 5725         18/09/1991   4
## 5726         18/10/1995   4
## 5727         18/12/1991   4
## 5728         19/02/1991   4
## 5729         19/03/1991   4
## 5730         19/04/2008   4
## 5731         19/05/1995   4
## 5732         19/07/1993   4
## 5733         19/11/1990   4
## 5734         19/12/1990   4
## 5735         19/12/1994   4
## 5736         19/12/2009   4
## 5737         20/01/1994   4
## 5738         20/01/1995   4
## 5739         20/02/1996   4
## 5740         20/05/1991   4
## 5741         20/07/1995   4
## 5742         20/09/2003   4
## 5743         20/11/1995   4
## 5744         20/12/1991   4
## 5745         21/01/1992   4
## 5746         21/03/2009   4
## 5747         21/04/1995   4
## 5748         21/04/2001   4
## 5749         21/05/1991   4
## 5750         21/08/1992   4
## 5751         21/09/1993   4
## 5752         21/09/1995   4
## 5753         21/10/1991   4
## 5754         22/01/1993   4
## 5755         22/02/2001   4
## 5756         22/03/1996   4
## 5757         22/05/1995   4
## 5758         22/09/1993   4
## 5759         22/09/1995   4
## 5760         23/01/2000   4
## 5761         23/02/1995   4
## 5762         23/03/1990   4
## 5763         23/03/1992   4
## 5764         23/05/1990   4
## 5765         23/05/1991   4
## 5766         23/08/1993   4
## 5767         23/09/1993   4
## 5768         23/11/1993   4
## 5769         24/01/1994   4
## 5770         24/01/1996   4
## 5771         24/03/1992   4
## 5772         24/04/1995   4
## 5773         24/05/1991   4
## 5774         24/06/1992   4
## 5775         24/06/2014   4
## 5776         25/03/1996   4
## 5777         25/04/1995   4
## 5778         25/05/1990   4
## 5779         25/07/1994   4
## 5780         25/09/1992   4
## 5781         25/09/1999   4
## 5782         25/10/1990   4
## 5783         25/10/1994   4
## 5784         25/11/1992   4
## 5785         26/01/1994   4
## 5786         26/01/1996   4
## 5787         26/03/1993   4
## 5788         26/03/1996   4
## 5789         26/04/1990   4
## 5790         26/04/1993   4
## 5791         26/05/1993   4
## 5792         26/05/1995   4
## 5793         26/10/1994   4
## 5794         26/12/1990   4
## 5795         27/04/1995   4
## 5796         27/04/2008   4
## 5797         27/06/2010   4
## 5798         27/10/1995   4
## 5799         27/11/1989   4
## 5800         27/11/1995   4
## 5801         28/04/1993   4
## 5802         28/08/1995   4
## 5803         28/09/1993   4
## 5804         28/09/1994   4
## 5805         28/09/1996   4
## 5806         29/04/1993   4
## 5807         29/04/1994   4
## 5808         29/06/1994   4
## 5809         29/08/1991   4
## 5810         29/09/1995   4
## 5811         29/10/1990   4
## 5812         30/03/1992   4
## 5813         30/03/1993   4
## 5814         30/03/1995   4
## 5815         30/04/1990   4
## 5816         30/06/1993   4
## 5817         30/09/1994   4
## 5818         30/11/1994   4
## 5819         31/01/1995   4
## 5820         31/05/1994   4
## 5821         31/10/1994   4
## 5822         31/10/1995   4
## 5823         31/12/1992   4
## 5824         31/12/2012   4
## 5825         01/03/1993   3
## 5826         01/07/1990   3
## 5827         01/11/1991   3
## 5828         01/11/1995   3
## 5829         01/12/1994   3
## 5830         02/02/1990   3
## 5831         02/02/1993   3
## 5832         02/02/1994   3
## 5833         02/03/1990   3
## 5834         02/08/1989   3
## 5835         02/10/1992   3
## 5836         03/01/1990   3
## 5837         03/01/1996   3
## 5838         03/01/2002   3
## 5839         03/02/1992   3
## 5840         03/04/1990   3
## 5841         03/05/1994   3
## 5842         03/06/1994   3
## 5843         03/12/1990   3
## 5844         03/12/2000   3
## 5845         04/02/1992   3
## 5846         04/03/1994   3
## 5847         04/05/2002   3
## 5848         04/09/1992   3
## 5849         04/12/1990   3
## 5850         04/12/1991   3
## 5851         04/12/1992   3
## 5852         05/01/1996   3
## 5853         05/01/2002   3
## 5854         05/02/1990   3
## 5855         05/03/1996   3
## 5856         05/03/2005   3
## 5857         05/04/1991   3
## 5858         05/04/1995   3
## 5859         05/05/1995   3
## 5860         05/05/2014   3
## 5861         05/10/1989   3
## 5862         05/11/1990   3
## 5863         06/01/1993   3
## 5864         06/03/1992   3
## 5865         06/03/1995   3
## 5866         06/05/1992   3
## 5867         06/05/1993   3
## 5868         06/07/1993   3
## 5869         06/08/1992   3
## 5870         06/09/2008   3
## 5871         06/10/1994   3
## 5872         06/11/1989   3
## 5873         06/11/1990   3
## 5874         06/11/2004   3
## 5875         06/12/1989   3
## 5876         06/12/1995   3
## 5877         06/12/2008   3
## 5878         07/02/1990   3
## 5879         07/02/1994   3
## 5880         07/05/1991   3
## 5881         07/05/1992   3
## 5882         07/06/2014   3
## 5883         07/07/1995   3
## 5884         07/09/1996   3
## 5885         07/12/1993   3
## 5886         08/01/1990   3
## 5887         08/01/1993   3
## 5888         08/02/1995   3
## 5889         08/05/1992   3
## 5890         08/06/1989   3
## 5891         08/06/1990   3
## 5892         08/07/1992   3
## 5893         08/09/1995   3
## 5894         08/09/1996   3
## 5895         09/01/1990   3
## 5896         09/03/1994   3
## 5897         09/03/1995   3
## 5898         09/04/1992   3
## 5899         09/05/2008   3
## 5900         09/08/1991   3
## 5901         09/09/1992   3
## 5902         09/10/2004   3
## 5903         09/11/1992   3
## 5904         09/11/1995   3
## 5905         10/01/1996   3
## 5906         10/02/1992   3
## 5907         10/04/2009   3
## 5908         10/05/1993   3
## 5909         10/05/1999   3
## 5910         10/09/1992   3
## 5911         10/11/1994   3
## 5912         10/11/1995   3
## 5913         10/12/1992   3
## 5914         11/01/1990   3
## 5915         11/01/1993   3
## 5916         11/02/1994   3
## 5917         11/05/2003   3
## 5918         11/08/1989   3
## 5919         11/08/1992   3
## 5920         11/12/1991   3
## 5921         11/12/1992   3
## 5922         12/01/1994   3
## 5923         12/09/1991   3
## 5924         12/10/1990   3
## 5925         13/03/1990   3
## 5926         13/03/1995   3
## 5927         13/04/1994   3
## 5928         13/05/1991   3
## 5929         13/05/1992   3
## 5930         13/09/1994   3
## 5931         13/09/2008   3
## 5932         13/11/1989   3
## 5933         13/11/1995   3
## 5934         13/12/1990   3
## 5935         13/12/1993   3
## 5936         14/02/1992   3
## 5937         14/03/1993   3
## 5938         14/05/1993   3
## 5939         14/08/1992   3
## 5940         14/09/1995   3
## 5941         14/11/1990   3
## 5942         14/12/1989   3
## 5943         14/12/1993   3
## 5944         15/01/1993   3
## 5945         15/02/1993   3
## 5946         15/02/1995   3
## 5947         15/02/1996   3
## 5948         15/03/1990   3
## 5949         15/04/1994   3
## 5950         15/07/2000   3
## 5951         15/09/1989   3
## 5952         15/11/2003   3
## 5953         15/11/2008   3
## 5954         15/12/1992   3
## 5955         15/12/1995   3
## 5956         16/02/1995   3
## 5957         16/03/1990   3
## 5958         16/04/1992   3
## 5959         16/06/1989   3
## 5960         16/06/1992   3
## 5961         16/07/1992   3
## 5962         16/07/1993   3
## 5963         16/07/2006   3
## 5964         16/09/1994   3
## 5965         16/10/1989   3
## 5966         16/11/1994   3
## 5967         17/02/1995   3
## 5968         17/04/1989   3
## 5969         17/04/1999   3
## 5970         17/11/1994   3
## 5971         17/12/1992   3
## 5972         17/12/1993   3
## 5973         18/01/1991   3
## 5974         18/01/1995   3
## 5975         18/02/1993   3
## 5976         18/03/1992   3
## 5977         18/08/1989   3
## 5978         18/11/1992   3
## 5979         18/11/1994   3
## 5980         19/01/1993   3
## 5981         19/02/1996   3
## 5982         19/03/1992   3
## 5983         19/04/1991   3
## 5984         19/04/1995   3
## 5985         19/05/1994   3
## 5986         19/10/1992   3
## 5987         19/10/1993   3
## 5988         19/11/2000   3
## 5989         19/12/1991   3
## 5990         19/12/1995   3
## 5991         20/01/1993   3
## 5992         20/04/1990   3
## 5993         20/05/1994   3
## 5994         20/10/1989   3
## 5995         20/10/1992   3
## 5996         20/10/1995   3
## 5997         20/11/1989   3
## 5998         20/11/1990   3
## 5999         21/01/2013   3
## 6000         21/02/1991   3
## 6001         21/02/1992   3
## 6002         21/11/1989   3
## 6003         21/11/1995   3
## 6004         21/12/1992   3
## 6005         22/03/1993   3
## 6006         22/04/1994   3
## 6007         22/07/1994   3
## 6008         22/12/1992   3
## 6009         23/02/1990   3
## 6010         23/09/1994   3
## 6011         23/10/1991   3
## 6012         23/12/1992   3
## 6013         24/02/1995   3
## 6014         24/03/1993   3
## 6015         24/04/1992   3
## 6016         24/05/1995   3
## 6017         25/01/1990   3
## 6018         25/01/2004   3
## 6019         25/02/1994   3
## 6020         25/04/1991   3
## 6021         25/10/1989   3
## 6022         25/12/2010   3
## 6023         26/04/1991   3
## 6024         26/06/1990   3
## 6025         26/07/1994   3
## 6026         26/07/1995   3
## 6027         26/09/1999   3
## 6028         26/10/1990   3
## 6029         26/11/1991   3
## 6030         26/12/2000   3
## 6031         26/12/2010   3
## 6032         27/01/1994   3
## 6033         27/01/2008   3
## 6034         27/03/1992   3
## 6035         27/05/1994   3
## 6036         27/06/1990   3
## 6037         27/06/1994   3
## 6038         27/11/1990   3
## 6039         27/11/1991   3
## 6040         27/12/1992   3
## 6041         27/12/1995   3
## 6042         28/01/1992   3
## 6043         28/02/1990   3
## 6044         28/02/2004   3
## 6045         28/03/1994   3
## 6046         28/05/1993   3
## 6047         28/08/1989   3
## 6048         28/09/1992   3
## 6049         28/10/1991   3
## 6050         28/10/1993   3
## 6051         28/11/1989   3
## 6052         28/12/1990   3
## 6053         28/12/1992   3
## 6054         28/12/1993   3
## 6055         29/01/1996   3
## 6056         29/01/2000   3
## 6057         29/03/1990   3
## 6058         29/05/1992   3
## 6059         29/09/1993   3
## 6060         29/09/1994   3
## 6061         29/12/1989   3
## 6062         29/12/2003   3
## 6063         30/01/1990   3
## 6064         30/04/1991   3
## 6065         30/07/1991   3
## 6066         30/11/1995   3
## 6067         30/12/1992   3
## 6068         31/01/1990   3
## 6069         31/01/1994   3
## 6070         31/01/2004   3
## 6071         31/07/1991   3
## 6072         31/07/1995   3
## 6073         31/12/2003   3
## 6074         01/01/1998   2
## 6075         01/01/2014   2
## 6076         01/02/1990   2
## 6077         01/03/1995   2
## 6078         01/03/2009   2
## 6079         01/04/1995   2
## 6080         01/05/1989   2
## 6081         01/05/1993   2
## 6082         01/05/2004   2
## 6083         01/06/1988   2
## 6084         01/06/1991   2
## 6085         01/09/1989   2
## 6086         01/09/1990   2
## 6087         01/11/1989   2
## 6088         01/11/1994   2
## 6089         02/03/1992   2
## 6090         02/05/1995   2
## 6091         02/07/1991   2
## 6092         02/11/1992   2
## 6093         02/12/1994   2
## 6094         03/01/1992   2
## 6095         03/02/1996   2
## 6096         03/04/1993   2
## 6097         03/09/1993   2
## 6098         03/09/2005   2
## 6099         03/10/1995   2
## 6100         04/01/1991   2
## 6101         04/05/1994   2
## 6102         04/05/1997   2
## 6103         04/05/1999   2
## 6104         04/07/1995   2
## 6105         04/10/1994   2
## 6106         04/12/1989   2
## 6107         05/01/1990   2
## 6108         05/03/1993   2
## 6109         05/04/2008   2
## 6110         05/05/1993   2
## 6111         05/05/1994   2
## 6112         05/06/1993   2
## 6113         05/08/1993   2
## 6114         05/08/1995   2
## 6115         05/09/1993   2
## 6116         05/09/2005   2
## 6117         05/10/1988   2
## 6118         05/11/2011   2
## 6119         06/02/1994   2
## 6120         06/04/2007   2
## 6121         06/05/2014   2
## 6122         06/06/1994   2
## 6123         06/06/1995   2
## 6124         06/07/1989   2
## 6125         06/09/1998   2
## 6126         06/11/1991   2
## 6127         06/11/1992   2
## 6128         07/03/1996   2
## 6129         07/03/2004   2
## 6130         07/06/1988   2
## 6131         07/06/1989   2
## 6132         07/10/2000   2
## 6133         07/12/1990   2
## 6134         08/01/1991   2
## 6135         08/02/1994   2
## 6136         08/03/1996   2
## 6137         08/03/2009   2
## 6138         08/04/1993   2
## 6139         08/07/1989   2
## 6140         08/10/1992   2
## 6141         08/10/2005   2
## 6142         08/11/1989   2
## 6143         09/01/2010   2
## 6144         09/02/1995   2
## 6145         09/05/1995   2
## 6146         09/09/1993   2
## 6147         09/09/1994   2
## 6148         09/10/1989   2
## 6149         09/10/1999   2
## 6150         09/11/1990   2
## 6151         09/12/2006   2
## 6152         10/02/2013   2
## 6153         10/03/1995   2
## 6154         10/11/1992   2
## 6155         10/12/2006   2
## 6156         11/01/1991   2
## 6157         11/01/1994   2
## 6158         11/03/1996   2
## 6159         11/03/2000   2
## 6160         11/03/2006   2
## 6161         11/04/1990   2
## 6162         11/09/1995   2
## 6163         11/10/1988   2
## 6164         11/10/1995   2
## 6165         11/11/2011   2
## 6166         11/12/1989   2
## 6167         12/01/1990   2
## 6168         12/01/1993   2
## 6169         12/02/2000   2
## 6170         12/03/1990   2
## 6171         12/03/1992   2
## 6172         12/05/1989   2
## 6173         12/06/1989   2
## 6174         12/06/1992   2
## 6175         12/06/2004   2
## 6176         12/07/1989   2
## 6177         12/10/1989   2
## 6178         12/11/1998   2
## 6179         12/12/1991   2
## 6180         12/12/1995   2
## 6181         13/01/1994   2
## 6182         13/01/1995   2
## 6183         13/04/2014   2
## 6184         13/07/1988   2
## 6185         13/08/1994   2
## 6186         13/08/1995   2
## 6187         13/09/1995   2
## 6188         13/10/1988   2
## 6189         13/10/2001   2
## 6190         13/11/1992   2
## 6191         13/12/1989   2
## 6192         14/08/2004   2
## 6193         14/09/1989   2
## 6194         14/10/2006   2
## 6195         14/12/1995   2
## 6196         15/02/1989   2
## 6197         15/02/1994   2
## 6198         15/02/2014   2
## 6199         15/08/1985   2
## 6200         15/12/1996   2
## 6201         16/01/1990   2
## 6202         16/01/1996   2
## 6203         16/01/2000   2
## 6204         16/01/2012   2
## 6205         16/02/1990   2
## 6206         16/02/1994   2
## 6207         16/07/1991   2
## 6208         16/10/2005   2
## 6209         16/11/1990   2
## 6210         16/12/1993   2
## 6211         16/12/1994   2
## 6212         17/01/1989   2
## 6213         17/01/1990   2
## 6214         17/05/1989   2
## 6215         17/05/1994   2
## 6216         17/08/2002   2
## 6217         17/09/1993   2
## 6218         17/11/1995   2
## 6219         17/12/1991   2
## 6220         17/12/2006   2
## 6221         18/04/2009   2
## 6222         18/06/1995   2
## 6223         18/06/2005   2
## 6224         18/09/1989   2
## 6225         18/09/1990   2
## 6226         18/10/1989   2
## 6227         18/11/2006   2
## 6228         18/12/1989   2
## 6229         18/12/1992   2
## 6230         18/12/2005   2
## 6231         19/01/1990   2
## 6232         19/01/1994   2
## 6233         19/01/1995   2
## 6234         19/02/1989   2
## 6235         19/02/1993   2
## 6236         19/03/1987   2
## 6237         19/04/2014   2
## 6238         19/06/2014   2
## 6239         19/07/1989   2
## 6240         19/08/2007   2
## 6241         19/09/1989   2
## 6242         19/12/1992   2
## 6243         20/01/2014   2
## 6244         20/02/1990   2
## 6245         20/03/1996   2
## 6246         20/03/2004   2
## 6247         20/06/2014   2
## 6248         20/10/1994   2
## 6249         20/12/1994   2
## 6250         21/01/1993   2
## 6251         21/01/2008   2
## 6252         21/02/1990   2
## 6253         21/02/2009   2
## 6254         21/03/1994   2
## 6255         21/06/2009   2
## 6256         21/09/1996   2
## 6257         21/09/2002   2
## 6258         21/10/2000   2
## 6259         21/10/2006   2
## 6260         21/12/1995   2
## 6261         22/01/1990   2
## 6262         22/01/2000   2
## 6263         22/01/2005   2
## 6264         22/02/1990   2
## 6265         22/05/1992   2
## 6266         22/09/1986   2
## 6267         22/09/1996   2
## 6268         22/11/1989   2
## 6269         22/11/1991   2
## 6270         22/11/1993   2
## 6271         22/11/1994   2
## 6272         22/11/1995   2
## 6273         23/01/1991   2
## 6274         23/01/1992   2
## 6275         23/04/1991   2
## 6276         23/08/1989   2
## 6277         23/10/1992   2
## 6278         23/12/1993   2
## 6279         24/01/1990   2
## 6280         24/01/2009   2
## 6281         24/02/1993   2
## 6282         24/02/1996   2
## 6283         24/04/1989   2
## 6284         24/07/1989   2
## 6285         24/08/1995   2
## 6286         24/09/2011   2
## 6287         24/10/1989   2
## 6288         25/01/1995   2
## 6289         25/01/1996   2
## 6290         25/01/2014   2
## 6291         25/02/1992   2
## 6292         25/03/1993   2
## 6293         25/03/1994   2
## 6294         25/03/2005   2
## 6295         25/04/1989   2
## 6296         25/05/1993   2
## 6297         25/05/2008   2
## 6298         25/09/1989   2
## 6299         26/01/1995   2
## 6300         26/02/1996   2
## 6301         26/09/1993   2
## 6302         26/10/1993   2
## 6303         26/12/2007   2
## 6304         27/02/1992   2
## 6305         27/04/1990   2
## 6306         27/06/1989   2
## 6307         27/07/1995   2
## 6308         27/07/2001   2
## 6309         27/09/1997   2
## 6310         27/10/1993   2
## 6311         27/12/1989   2
## 6312         27/12/1991   2
## 6313         27/12/1997   2
## 6314         27/12/2010   2
## 6315         28/02/1992   2
## 6316         28/02/1995   2
## 6317         28/02/1996   2
## 6318         28/04/1989   2
## 6319         28/04/2014   2
## 6320         28/05/2012   2
## 6321         28/06/1989   2
## 6322         28/08/2005   2
## 6323         28/09/1989   2
## 6324         28/12/1994   2
## 6325         28/12/1995   2
## 6326         29/02/1996   2
## 6327         29/08/1998   2
## 6328         29/09/1996   2
## 6329         29/10/1993   2
## 6330         29/11/1990   2
## 6331         29/11/1994   2
## 6332         29/11/1995   2
## 6333         29/12/1995   2
## 6334         30/01/2005   2
## 6335         30/01/2010   2
## 6336         30/05/1989   2
## 6337         30/05/1995   2
## 6338         30/07/2005   2
## 6339         30/10/1990   2
## 6340         30/11/1993   2
## 6341         31/08/1995   2
## 6342         31/08/2008   2
## 6343         31/10/1989   2
## 6344         31/12/1991   2
## 6345         01/01/1985   1
## 6346         01/01/1994   1
## 6347         01/01/1999   1
## 6348         01/01/2000   1
## 6349         01/01/2005   1
## 6350         01/01/2011   1
## 6351         01/01/2013   1
## 6352         01/02/1989   1
## 6353         01/02/1992   1
## 6354         01/02/1997   1
## 6355         01/02/2009   1
## 6356         01/03/1989   1
## 6357         01/03/1997   1
## 6358         01/03/2003   1
## 6359         01/05/1990   1
## 6360         01/05/1994   1
## 6361         01/07/1987   1
## 6362         01/09/1996   1
## 6363         01/09/2002   1
## 6364         01/10/1992   1
## 6365         01/10/1994   1
## 6366         01/10/2005   1
## 6367         01/12/1989   1
## 6368         01/12/1993   1
## 6369         01/12/1996   1
## 6370         02/01/1994   1
## 6371         02/01/1995   1
## 6372         02/02/2002   1
## 6373         02/03/1988   1
## 6374         02/03/1991   1
## 6375         02/03/2008   1
## 6376         02/04/1986   1
## 6377         02/04/2006   1
## 6378         02/05/1989   1
## 6379         02/06/1988   1
## 6380         02/06/1990   1
## 6381         02/06/2007   1
## 6382         02/07/1994   1
## 6383         02/08/1997   1
## 6384         02/08/2008   1
## 6385         02/10/1991   1
## 6386         02/10/1999   1
## 6387         02/11/1983   1
## 6388         02/11/1988   1
## 6389         02/11/1989   1
## 6390         02/11/1996   1
## 6391         02/11/2003   1
## 6392         02/12/2000   1
## 6393         02/12/2012   1
## 6394         03/01/1999   1
## 6395         03/02/1991   1
## 6396         03/02/1995   1
## 6397         03/03/1990   1
## 6398         03/04/1989   1
## 6399         03/04/1992   1
## 6400         03/04/2004   1
## 6401         03/05/1988   1
## 6402         03/06/1988   1
## 6403         03/07/1989   1
## 6404         03/07/1993   1
## 6405         03/07/1998   1
## 6406         03/07/2009   1
## 6407         03/08/1984   1
## 6408         03/08/1989   1
## 6409         03/08/1991   1
## 6410         03/09/1986   1
## 6411         03/09/1994   1
## 6412         03/09/1995   1
## 6413         03/09/2000   1
## 6414         03/10/1999   1
## 6415         03/11/1988   1
## 6416         03/11/1989   1
## 6417         03/11/1996   1
## 6418         03/11/2002   1
## 6419         03/11/2012   1
## 6420         03/12/1992   1
## 6421         04/01/1990   1
## 6422         04/01/1995   1
## 6423         04/01/1997   1
## 6424         04/02/2001   1
## 6425         04/04/1986   1
## 6426         04/04/1987   1
## 6427         04/05/1989   1
## 6428         04/05/1991   1
## 6429         04/06/1980   1
## 6430         04/06/1995   1
## 6431         04/06/2006   1
## 6432         04/07/1998   1
## 6433         04/07/2009   1
## 6434         04/08/1988   1
## 6435         04/09/1993   1
## 6436         04/09/2010   1
## 6437         04/10/1988   1
## 6438         04/11/1985   1
## 6439         04/11/1988   1
## 6440         04/11/1990   1
## 6441         04/12/1993   1
## 6442         04/12/1999   1
## 6443         04/12/2010   1
## 6444         05/01/1994   1
## 6445         05/01/1997   1
## 6446         05/01/2008   1
## 6447         05/02/1988   1
## 6448         05/04/1997   1
## 6449         05/05/1988   1
## 6450         05/05/2002   1
## 6451         05/05/2007   1
## 6452         05/06/1994   1
## 6453         05/06/2011   1
## 6454         05/07/1989   1
## 6455         05/08/1990   1
## 6456         05/08/2006   1
## 6457         05/09/1989   1
## 6458         05/09/1998   1
## 6459         05/09/1999   1
## 6460         05/09/2004   1
## 6461         05/10/1996   1
## 6462         05/11/1984   1
## 6463         05/11/1992   1
## 6464         05/11/2000   1
## 6465         05/12/1999   1
## 6466         06/01/2002   1
## 6467         06/02/1967   1
## 6468         06/02/1989   1
## 6469         06/02/1995   1
## 6470         06/03/1996   1
## 6471         06/04/1994   1
## 6472         06/04/2003   1
## 6473         06/05/1995   1
## 6474         06/05/2007   1
## 6475         06/06/1989   1
## 6476         06/06/1992   1
## 6477         06/06/2009   1
## 6478         06/07/1983   1
## 6479         06/07/1997   1
## 6480         06/09/1988   1
## 6481         06/09/1993   1
## 6482         06/09/1999   1
## 6483         06/09/2004   1
## 6484         06/10/1987   1
## 6485         06/12/1994   1
## 6486         06/12/2003   1
## 6487         07/01/1995   1
## 6488         07/01/2006   1
## 6489         07/02/1984   1
## 6490         07/02/2004   1
## 6491         07/03/1989   1
## 6492         07/04/1994   1
## 6493         07/04/2007   1
## 6494         07/05/2006   1
## 6495         07/07/1989   1
## 6496         07/08/1994   1
## 6497         07/09/1998   1
## 6498         07/09/2009   1
## 6499         07/09/2013   1
## 6500         07/10/2006   1
## 6501         07/12/1987   1
## 6502         07/12/1989   1
## 6503         07/12/1991   1
## 6504         07/12/1995   1
## 6505         08/01/2000   1
## 6506         08/01/2011   1
## 6507         08/02/2003   1
## 6508         08/03/1990   1
## 6509         08/03/2008   1
## 6510         08/04/1995   1
## 6511         08/04/2000   1
## 6512         08/04/2006   1
## 6513         08/05/1986   1
## 6514         08/05/1988   1
## 6515         08/07/1995   1
## 6516         08/08/1977   1
## 6517         08/08/1988   1
## 6518         08/08/1989   1
## 6519         08/08/1992   1
## 6520         08/08/1998   1
## 6521         08/09/1988   1
## 6522         08/09/1991   1
## 6523         08/10/1994   1
## 6524         08/11/1988   1
## 6525         08/11/1997   1
## 6526         08/12/1991   1
## 6527         08/12/1995   1
## 6528         09/01/2011   1
## 6529         09/02/1989   1
## 6530         09/02/1990   1
## 6531         09/02/1991   1
## 6532         09/02/2003   1
## 6533         09/03/1989   1
## 6534         09/03/1991   1
## 6535         09/03/1996   1
## 6536         09/03/2002   1
## 6537         09/03/2008   1
## 6538         09/04/2000   1
## 6539         09/05/1993   1
## 6540         09/05/2009   1
## 6541         09/06/2001   1
## 6542         09/08/1989   1
## 6543         09/08/1992   1
## 6544         09/09/1995   1
## 6545         09/09/2006   1
## 6546         09/09/2007   1
## 6547         09/10/1994   1
## 6548         09/10/1995   1
## 6549         09/11/1987   1
## 6550         09/11/1988   1
## 6551         09/12/1989   1
## 6552         10/01/1985   1
## 6553         10/01/1990   1
## 6554         10/01/2009   1
## 6555         10/02/1996   1
## 6556         10/03/1989   1
## 6557         10/03/1994   1
## 6558         10/04/2011   1
## 6559         10/05/1997   1
## 6560         10/06/1981   1
## 6561         10/06/1987   1
## 6562         10/06/2001   1
## 6563         10/07/1989   1
## 6564         10/08/1989   1
## 6565         10/08/1996   1
## 6566         10/08/1997   1
## 6567         10/08/2003   1
## 6568         10/10/1989   1
## 6569         10/10/1992   1
## 6570         10/10/1999   1
## 6571         10/10/2010   1
## 6572         10/11/1981   1
## 6573         10/11/1988   1
## 6574         10/11/1990   1
## 6575         10/11/1996   1
## 6576         10/11/2002   1
## 6577         10/12/1985   1
## 6578         10/12/1989   1
## 6579         10/12/1991   1
## 6580         11/01/2003   1
## 6581         11/02/1996   1
## 6582         11/02/2012   1
## 6583         11/04/1992   1
## 6584         11/04/1998   1
## 6585         11/05/1982   1
## 6586         11/05/1988   1
## 6587         11/05/2008   1
## 6588         11/06/1987   1
## 6589         11/06/2011   1
## 6590         11/07/1989   1
## 6591         11/07/1992   1
## 6592         11/07/2011   1
## 6593         11/09/2011   1
## 6594         11/10/1989   1
## 6595         11/10/2008   1
## 6596         11/11/1991   1
## 6597         11/11/1994   1
## 6598         11/11/1995   1
## 6599         12/01/1989   1
## 6600         12/01/1997   1
## 6601         12/02/1993   1
## 6602         12/03/2000   1
## 6603         12/04/1989   1
## 6604         12/04/1997   1
## 6605         12/05/1988   1
## 6606         12/05/1990   1
## 6607         12/05/1996   1
## 6608         12/06/2005   1
## 6609         12/07/1988   1
## 6610         12/07/1997   1
## 6611         12/07/2008   1
## 6612         12/08/1987   1
## 6613         12/08/1995   1
## 6614         12/08/2000   1
## 6615         12/09/1989   1
## 6616         12/09/2010   1
## 6617         12/10/1988   1
## 6618         12/10/1991   1
## 6619         12/10/1996   1
## 6620         12/10/2002   1
## 6621         12/11/1989   1
## 6622         12/11/1990   1
## 6623         12/11/1995   1
## 6624         12/12/1988   1
## 6625         12/12/1992   1
## 6626         12/12/1998   1
## 6627         13/01/2008   1
## 6628         13/02/1993   1
## 6629         13/02/2010   1
## 6630         13/03/1989   1
## 6631         13/04/1989   1
## 6632         13/04/2003   1
## 6633         13/05/1986   1
## 6634         13/05/1994   1
## 6635         13/06/1988   1
## 6636         13/07/1987   1
## 6637         13/07/1991   1
## 6638         13/07/2002   1
## 6639         13/09/1988   1
## 6640         13/09/1989   1
## 6641         13/09/1992   1
## 6642         13/10/1990   1
## 6643         13/11/1985   1
## 6644         13/11/1993   1
## 6645         13/12/1988   1
## 6646         13/12/2003   1
## 6647         14/01/1993   1
## 6648         14/01/1995   1
## 6649         14/01/1996   1
## 6650         14/01/2007   1
## 6651         14/02/2010   1
## 6652         14/04/2007   1
## 6653         14/05/1995   1
## 6654         14/05/2000   1
## 6655         14/06/1988   1
## 6656         14/06/1989   1
## 6657         14/07/1988   1
## 6658         14/08/1986   1
## 6659         14/08/1989   1
## 6660         14/08/1999   1
## 6661         14/08/2010   1
## 6662         14/09/1988   1
## 6663         14/09/2003   1
## 6664         14/09/2008   1
## 6665         14/10/2001   1
## 6666         14/10/2007   1
## 6667         14/11/1989   1
## 6668         14/12/1991   1
## 6669         14/12/1994   1
## 6670         14/12/2013   1
## 6671         15/01/1996   1
## 6672         15/01/2000   1
## 6673         15/01/2005   1
## 6674         15/02/1992   1
## 6675         15/02/1997   1
## 6676         15/02/2004   1
## 6677         15/03/1992   1
## 6678         15/03/1996   1
## 6679         15/03/2003   1
## 6680         15/03/2009   1
## 6681         15/04/1988   1
## 6682         15/06/1989   1
## 6683         15/06/2002   1
## 6684         15/07/1988   1
## 6685         15/08/1988   1
## 6686         15/08/1989   1
## 6687         15/09/2001   1
## 6688         15/10/1993   1
## 6689         15/10/1994   1
## 6690         15/10/2000   1
## 6691         15/11/1998   1
## 6692         15/12/1987   1
## 6693         15/12/1989   1
## 6694         15/12/1993   1
## 6695         16/01/2010   1
## 6696         16/02/1987   1
## 6697         16/02/1989   1
## 6698         16/02/2003   1
## 6699         16/05/1985   1
## 6700         16/05/1989   1
## 6701         16/05/2004   1
## 6702         16/05/2009   1
## 6703         16/06/1988   1
## 6704         16/06/1996   1
## 6705         16/06/2001   1
## 6706         16/07/1995   1
## 6707         16/08/2003   1
## 6708         16/09/1982   1
## 6709         16/09/1987   1
## 6710         16/09/1989   1
## 6711         16/11/1995   1
## 6712         16/11/1996   1
## 6713         16/12/2007   1
## 6714         17/01/1986   1
## 6715         17/01/2009   1
## 6716         17/02/1989   1
## 6717         17/02/1996   1
## 6718         17/03/1991   1
## 6719         17/06/2006   1
## 6720         17/07/1989   1
## 6721         17/07/1993   1
## 6722         17/07/1994   1
## 6723         17/08/1991   1
## 6724         17/09/1989   1
## 6725         17/09/2005   1
## 6726         17/10/1988   1
## 6727         17/10/1998   1
## 6728         17/11/1988   1
## 6729         17/11/1996   1
## 6730         17/12/2000   1
## 6731         17/12/2011   1
## 6732         18/01/1989   1
## 6733         18/01/1990   1
## 6734         18/01/1993   1
## 6735         18/01/2003   1
## 6736         18/01/2009   1
## 6737         18/02/1990   1
## 6738         18/02/1994   1
## 6739         18/02/2007   1
## 6740         18/03/1986   1
## 6741         18/04/1989   1
## 6742         18/04/2014   1
## 6743         18/05/2003   1
## 6744         18/05/2008   1
## 6745         18/06/1987   1
## 6746         18/06/1994   1
## 6747         18/07/1988   1
## 6748         18/08/1980   1
## 6749         18/08/1991   1
## 6750         18/08/2002   1
## 6751         18/08/2007   1
## 6752         18/09/2010   1
## 6753         18/12/2004   1
## 6754         18/12/2010   1
## 6755         19/01/2002   1
## 6756         19/02/2000   1
## 6757         19/02/2006   1
## 6758         19/03/1994   1
## 6759         19/03/2006   1
## 6760         19/06/1994   1
## 6761         19/06/2004   1
## 6762         19/07/2008   1
## 6763         19/08/1989   1
## 6764         19/08/2000   1
## 6765         19/08/2001   1
## 6766         19/09/1988   1
## 6767         19/09/2004   1
## 6768         19/10/1984   1
## 6769         19/10/1996   1
## 6770         19/10/1997   1
## 6771         19/10/2002   1
## 6772         19/11/2006   1
## 6773         19/12/1988   1
## 6774         19/12/1989   1
## 6775         19/12/1993   1
## 6776         19/12/2010   1
## 6777         20/01/1989   1
## 6778         20/01/1992   1
## 6779         20/01/1996   1
## 6780         20/01/2001   1
## 6781         20/02/1992   1
## 6782         20/02/2010   1
## 6783         20/03/1989   1
## 6784         20/03/1993   1
## 6785         20/04/1988   1
## 6786         20/04/1997   1
## 6787         20/04/2002   1
## 6788         20/06/2009   1
## 6789         20/07/1989   1
## 6790         20/08/1994   1
## 6791         20/08/2000   1
## 6792         20/08/2006   1
## 6793         20/09/1989   1
## 6794         20/10/1990   1
## 6795         20/10/2001   1
## 6796         20/10/2007   1
## 6797         20/11/1988   1
## 6798         20/11/2010   1
## 6799         20/12/1990   1
## 6800         20/12/2003   1
## 6801         20/12/2009   1
## 6802         21/02/1989   1
## 6803         21/02/1998   1
## 6804         21/03/1991   1
## 6805         21/04/2000   1
## 6806         21/05/1986   1
## 6807         21/05/1994   1
## 6808         21/05/2006   1
## 6809         21/05/2011   1
## 6810         21/06/2008   1
## 6811         21/07/1989   1
## 6812         21/07/1990   1
## 6813         21/07/1991   1
## 6814         21/07/2012   1
## 6815         21/08/1989   1
## 6816         21/09/1988   1
## 6817         21/10/2001   1
## 6818         21/12/1988   1
## 6819         21/12/1989   1
## 6820         21/12/1990   1
## 6821         21/12/1994   1
## 6822         22/01/1994   1
## 6823         22/02/1989   1
## 6824         22/02/2003   1
## 6825         22/02/2009   1
## 6826         22/03/2003   1
## 6827         22/03/2014   1
## 6828         22/05/1993   1
## 6829         22/06/1989   1
## 6830         22/08/1989   1
## 6831         22/08/1992   1
## 6832         22/09/2002   1
## 6833         22/11/1992   1
## 6834         22/11/2001   1
## 6835         22/12/1995   1
## 6836         22/12/2007   1
## 6837         23/03/1988   1
## 6838         23/03/1995   1
## 6839         23/03/2002   1
## 6840         23/03/2013   1
## 6841         23/05/1988   1
## 6842         23/05/1989   1
## 6843         23/05/1993   1
## 6844         23/05/1998   1
## 6845         23/05/1999   1
## 6846         23/06/1989   1
## 6847         23/06/1990   1
## 6848         23/07/2006   1
## 6849         23/08/2003   1
## 6850         23/09/1986   1
## 6851         23/09/1989   1
## 6852         23/09/2000   1
## 6853         23/10/1989   1
## 6854         23/10/2004   1
## 6855         23/10/2005   1
## 6856         23/11/1989   1
## 6857         23/11/1994   1
## 6858         23/12/1991   1
## 6859         23/12/2000   1
## 6860         24/01/1991   1
## 6861         24/01/1993   1
## 6862         24/01/1998   1
## 6863         24/01/1999   1
## 6864         24/01/2004   1
## 6865         24/02/1947   1
## 6866         24/02/1989   1
## 6867         24/02/1990   1
## 6868         24/02/2002   1
## 6869         24/02/2007   1
## 6870         24/05/1989   1
## 6871         24/06/1989   1
## 6872         24/06/2001   1
## 6873         24/08/1989   1
## 6874         24/08/1991   1
## 6875         24/09/1995   1
## 6876         24/09/2006   1
## 6877         24/11/1971   1
## 6878         24/11/1993   1
## 6879         24/11/1996   1
## 6880         24/12/1989   1
## 6881         24/12/1990   1
## 6882         24/12/1998   1
## 6883         24/12/2005   1
## 6884         24/12/2008   1
## 6885         24/12/2009   1
## 6886         25/01/2003   1
## 6887         25/01/2009   1
## 6888         25/02/1989   1
## 6889         25/05/1989   1
## 6890         25/05/2003   1
## 6891         25/06/2000   1
## 6892         25/07/1993   1
## 6893         25/07/1998   1
## 6894         25/10/1992   1
## 6895         25/12/1993   1
## 6896         25/12/1997   1
## 6897         25/12/2005   1
## 6898         26/01/1989   1
## 6899         26/01/1993   1
## 6900         26/01/2003   1
## 6901         26/02/1990   1
## 6902         26/02/1993   1
## 6903         26/04/1992   1
## 6904         26/04/1997   1
## 6905         26/04/1998   1
## 6906         26/05/1994   1
## 6907         26/06/1989   1
## 6908         26/06/1993   1
## 6909         26/07/1998   1
## 6910         26/08/1988   1
## 6911         26/08/1995   1
## 6912         26/09/1989   1
## 6913         26/10/1989   1
## 6914         26/10/2008   1
## 6915         26/11/1990   1
## 6916         26/11/2000   1
## 6917         26/11/2006   1
## 6918         26/11/2010   1
## 6919         26/12/1994   1
## 6920         26/12/2004   1
## 6921         27/01/1995   1
## 6922         27/02/1989   1
## 6923         27/02/1993   1
## 6924         27/02/1994   1
## 6925         27/02/1998   1
## 6926         27/02/2005   1
## 6927         27/05/1990   1
## 6928         27/05/1991   1
## 6929         27/05/1995   1
## 6930         27/05/1996   1
## 6931         27/06/1993   1
## 6932         27/07/2008   1
## 6933         27/09/1968   1
## 6934         27/09/1988   1
## 6935         27/09/1989   1
## 6936         27/09/1998   1
## 6937         27/09/2003   1
## 6938         27/10/1988   1
## 6939         27/10/1989   1
## 6940         27/12/1990   1
## 6941         28/03/1988   1
## 6942         28/03/1989   1
## 6943         28/03/1991   1
## 6944         28/04/1987   1
## 6945         28/04/1988   1
## 6946         28/04/2002   1
## 6947         28/05/2011   1
## 6948         28/06/1988   1
## 6949         28/06/1992   1
## 6950         28/07/1976   1
## 6951         28/07/1989   1
## 6952         28/07/1990   1
## 6953         28/08/1988   1
## 6954         28/08/1994   1
## 6955         28/09/1995   1
## 6956         28/09/2002   1
## 6957         28/10/1986   1
## 6958         28/10/2001   1
## 6959         28/12/1988   1
## 6960         29/01/1987   1
## 6961         29/01/2005   1
## 6962         29/03/1991   1
## 6963         29/03/1992   1
## 6964         29/03/1997   1
## 6965         29/04/1988   1
## 6966         29/04/1995   1
## 6967         29/04/2000   1
## 6968         29/05/1994   1
## 6969         29/05/2006   1
## 6970         29/05/2010   1
## 6971         29/06/2002   1
## 6972         29/07/1988   1
## 6973         29/07/1991   1
## 6974         29/07/1995   1
## 6975         29/07/2001   1
## 6976         29/08/1988   1
## 6977         29/08/1989   1
## 6978         29/09/1989   1
## 6979         29/09/1992   1
## 6980         29/10/2006   1
## 6981         29/11/1996   1
## 6982         29/11/2002   1
## 6983         29/11/2003   1
## 6984         29/12/1986   1
## 6985         29/12/1992   1
## 6986         29/12/1993   1
## 6987         30/01/1989   1
## 6988         30/01/1993   1
## 6989         30/01/1994   1
## 6990         30/01/1999   1
## 6991         30/03/1990   1
## 6992         30/04/1993   1
## 6993         30/05/1998   1
## 6994         30/06/1988   1
## 6995         30/06/1991   1
## 6996         30/07/2000   1
## 6997         30/07/2011   1
## 6998         30/08/1998   1
## 6999         30/08/2009   1
## 7000         30/09/1986   1
## 7001         30/09/1987   1
## 7002         30/09/2006   1
## 7003         30/10/1989   1
## 7004         30/10/2005   1
## 7005         30/10/2010   1
## 7006         30/11/1996   1
## 7007         30/11/1997   1
## 7008         30/12/1993   1
## 7009         30/12/1994   1
## 7010         31/01/1999   1
## 7011         31/03/2002   1
## 7012         31/05/1999   1
## 7013         31/07/1986   1
## 7014         31/07/2004   1
## 7015         31/08/1987   1
## 7016         31/08/2002   1
## 7017         31/12/1998   1
## 7018         31/12/2000   1
## 7019         31/12/2010   1
count(db, ClaimantClosedDate, sort=TRUE)
##      ClaimantClosedDate     n
## 1            31/03/2005 41475
## 2            24/02/2009  5578
## 3            11/12/2008  1300
## 4            25/04/2005  1079
## 5            07/07/2000   865
## 6            25/11/2009   842
## 7            26/04/2005   751
## 8            06/07/2000   749
## 9            05/02/2000   703
## 10           28/05/2004   689
## 11           01/10/2011   551
## 12           14/06/2004   542
## 13           10/07/2000   515
## 14           25/05/2004   514
## 15           13/07/2000   489
## 16           19/02/2003   488
## 17           01/06/2004   469
## 18           23/07/2001   457
## 19           10/02/2009   437
## 20           19/07/2001   429
## 21           20/07/2001   409
## 22           24/05/2004   375
## 23           25/07/2001   374
## 24           28/09/1999   338
## 25           11/07/2000   332
## 26           31/10/2007   326
## 27           07/06/2004   287
## 28           30/08/1999   283
## 29           24/07/2001   280
## 30           27/05/2004   271
## 31           26/05/2004   267
## 32           30/06/2009   256
## 33           31/10/2005   255
## 34           27/08/2001   237
## 35           03/10/2011   228
## 36           27/09/1999   226
## 37           27/08/1999   224
## 38           20/09/2010   222
## 39           29/09/1999   222
## 40           31/01/2008   218
## 41           30/06/2008   217
## 42           31/03/2009   215
## 43           31/10/2008   214
## 44           15/04/2005   210
## 45           29/08/2000   209
## 46           31/12/2008   207
## 47           31/12/2007   206
## 48           09/09/1999   204
## 49           27/04/2005   199
## 50           30/04/2008   199
## 51           31/07/2007   198
## 52           30/09/2008   196
## 53           31/05/2008   194
## 54           31/05/2009   191
## 55           04/10/1999   188
## 56           31/10/2006   188
## 57           31/03/2008   187
## 58           30/04/2009   184
## 59           19/11/2008   181
## 60           31/07/2008   179
## 61           31/01/2006   178
## 62           02/04/2003   177
## 63           05/04/2005   176
## 64           31/01/2007   176
## 65           29/02/2008   175
## 66           31/05/2007   172
## 67           19/04/2005   171
## 68           31/08/2006   170
## 69           31/08/2007   170
## 70           10/09/2008   168
## 71           27/02/2003   168
## 72           30/11/2007   167
## 73           31/08/2005   164
## 74           25/04/2006   158
## 75           30/06/2006   156
## 76           31/07/2005   156
## 77           30/11/2006   155
## 78           31/07/2006   155
## 79           28/02/2009   154
## 80           30/09/2007   154
## 81           31/05/2005   154
## 82           30/06/2007   152
## 83           30/11/2005   151
## 84           31/05/2006   151
## 85           31/08/2008   150
## 86           21/12/2007   149
## 87           04/06/2011   148
## 88           27/06/2011   147
## 89           30/04/2007   146
## 90           26/08/1999   144
## 91           30/06/2005   143
## 92           22/04/2005   141
## 93           31/08/1999   139
## 94           05/10/1999   137
## 95           07/02/2000   137
## 96           31/12/2005   136
## 97           31/03/2007   133
## 98           08/08/2008   131
## 99           31/01/2009   130
## 100          12/07/2000   125
## 101          28/02/2007   122
## 102          28/08/2000   122
## 103          30/04/2005   122
## 104          31/03/2006   122
## 105          30/11/2008   121
## 106          28/06/2011   115
## 107          08/09/2008   114
## 108          28/02/2006   114
## 109          12/03/2011   108
## 110          31/12/2006   107
## 111          23/11/2005   105
## 112          30/04/2006   102
## 113          18/08/2010   101
## 114          01/03/2014   100
## 115          07/05/2011   100
## 116          10/02/2003    99
## 117          21/10/2008    96
## 118          09/11/2007    95
## 119          18/10/2007    95
## 120          30/09/2006    95
## 121          03/07/2011    93
## 122          12/07/1999    92
## 123          13/06/2011    89
## 124          30/09/2005    89
## 125          01/04/2003    87
## 126          17/07/2003    87
## 127          23/06/2011    86
## 128          11/06/2004    84
## 129          14/06/2011    80
## 130          14/02/2011    78
## 131          22/11/2010    78
## 132          31/08/2010    78
## 133          04/06/2004    77
## 134          06/06/2011    77
## 135          06/01/2010    75
## 136          25/05/2011    74
## 137          31/05/2011    74
## 138          10/06/2011    70
## 139          20/06/2011    70
## 140          24/09/2013    69
## 141          09/06/2011    68
## 142          09/09/2008    68
## 143          11/06/2011    68
## 144          12/05/2005    68
## 145          22/06/2005    67
## 146          29/10/2009    67
## 147          30/05/2014    67
## 148          06/06/2012    65
## 149          29/06/2011    65
## 150          14/04/2005    64
## 151          15/06/2011    64
## 152          27/08/2013    64
## 153          25/06/2014    63
## 154          02/02/2011    62
## 155          03/03/2004    61
## 156          04/10/2011    61
## 157          04/04/2005    59
## 158          06/05/2011    59
## 159          17/09/2013    59
## 160          19/06/2010    59
## 161          22/08/2005    59
## 162          27/06/2014    59
## 163          02/11/2009    58
## 164          11/07/2005    58
## 165          02/06/2014    57
## 166          07/06/2006    57
## 167          13/01/2010    57
## 168          14/12/2010    57
## 169          17/06/2010    57
## 170          21/05/2012    56
## 171          27/11/2013    56
## 172          12/03/2013    55
## 173          30/06/2014    54
## 174          22/04/2014    53
## 175          29/09/2008    53
## 176          12/03/2004    52
## 177          25/06/2011    52
## 178          25/10/2011    52
## 179          02/01/2013    51
## 180          03/11/2009    51
## 181          17/10/2011    51
## 182          18/04/2005    51
## 183          22/06/2011    51
## 184          22/08/2012    51
## 185          25/01/2010    51
## 186          11/01/2008    50
## 187          12/12/2007    50
## 188          16/09/2010    50
## 189          19/06/2009    50
## 190          19/08/2010    50
## 191          21/08/2013    50
## 192          24/06/2011    49
## 193          02/07/2011    48
## 194          03/03/2011    48
## 195          04/07/2011    48
## 196          05/08/2011    48
## 197          07/10/2013    48
## 198          09/06/2014    48
## 199          12/07/2010    48
## 200          13/01/2014    48
## 201          14/08/2008    48
## 202          16/12/2008    48
## 203          09/09/2013    47
## 204          11/02/2011    47
## 205          12/08/2008    47
## 206          15/03/2007    47
## 207          16/06/2014    47
## 208          19/05/2010    47
## 209          25/09/2008    47
## 210          29/04/2013    47
## 211          31/08/2011    47
## 212          05/04/2014    46
## 213          07/01/2013    46
## 214          09/12/2008    46
## 215          10/09/2010    46
## 216          12/11/2008    46
## 217          18/04/2014    46
## 218          19/12/2005    46
## 219          20/03/2013    46
## 220          23/05/2014    46
## 221          24/05/2010    46
## 222          29/03/2010    46
## 223          31/07/2012    46
## 224          01/10/2013    45
## 225          16/12/2010    45
## 226          21/10/2013    45
## 227          22/07/2013    45
## 228          23/04/2010    45
## 229          28/05/2011    45
## 230          06/11/2013    44
## 231          11/01/2014    44
## 232          13/03/2013    44
## 233          14/08/2006    44
## 234          18/03/2013    44
## 235          25/09/2013    44
## 236          29/01/2013    44
## 237          31/10/2013    44
## 238          04/08/2006    43
## 239          07/06/2010    43
## 240          07/08/2008    43
## 241          07/09/2010    43
## 242          10/11/2008    43
## 243          11/07/2011    43
## 244          15/10/2013    43
## 245          18/06/2014    43
## 246          18/07/2007    43
## 247          22/02/2013    43
## 248          24/11/2010    43
## 249          28/08/2013    43
## 250          28/12/2009    43
## 251          30/09/2013    43
## 252          01/06/2010    42
## 253          06/06/2014    42
## 254          07/08/2013    42
## 255          13/05/2008    42
## 256          14/09/2011    42
## 257          17/09/2007    42
## 258          18/06/2010    42
## 259          20/06/2012    42
## 260          20/08/2010    42
## 261          26/06/2013    42
## 262          30/10/2009    42
## 263          01/03/2011    41
## 264          07/04/2005    41
## 265          07/08/2012    41
## 266          07/11/2008    41
## 267          10/04/2011    41
## 268          20/08/2013    41
## 269          22/10/2013    41
## 270          23/06/2014    41
## 271          23/09/2013    41
## 272          25/03/2010    41
## 273          25/06/2008    41
## 274          28/06/2013    41
## 275          29/05/2014    41
## 276          31/10/2012    41
## 277          01/08/2005    40
## 278          01/10/2007    40
## 279          02/12/2008    40
## 280          11/03/2011    40
## 281          14/03/2011    40
## 282          14/06/2010    40
## 283          15/10/2008    40
## 284          17/05/2006    40
## 285          17/09/2012    40
## 286          18/11/2008    40
## 287          24/06/2013    40
## 288          24/10/2006    40
## 289          25/04/2014    40
## 290          26/06/2011    40
## 291          27/10/2008    40
## 292          29/10/2008    40
## 293          01/12/2010    39
## 294          07/09/2011    39
## 295          08/04/2005    39
## 296          08/04/2011    39
## 297          10/07/2012    39
## 298          13/02/2008    39
## 299          22/04/2008    39
## 300          23/03/2007    39
## 301          23/04/2008    39
## 302          23/04/2013    39
## 303          24/04/2014    39
## 304          24/11/2008    39
## 305          28/08/2008    39
## 306          30/10/2007    39
## 307          02/06/2010    38
## 308          06/01/2013    38
## 309          06/05/2010    38
## 310          07/01/2010    38
## 311          08/06/2010    38
## 312          10/12/2008    38
## 313          14/10/2008    38
## 314          16/06/2010    38
## 315          18/01/2010    38
## 316          19/02/2013    38
## 317          19/05/2008    38
## 318          21/01/2008    38
## 319          26/01/2010    38
## 320          26/05/2010    38
## 321          28/11/2012    38
## 322          30/03/2006    38
## 323          01/06/2006    37
## 324          03/03/2008    37
## 325          05/06/2009    37
## 326          06/01/2009    37
## 327          09/05/2014    37
## 328          09/08/2012    37
## 329          11/02/2013    37
## 330          13/06/2008    37
## 331          17/01/2012    37
## 332          20/01/2014    37
## 333          20/08/2012    37
## 334          22/01/2014    37
## 335          26/11/2007    37
## 336          26/12/2012    37
## 337          28/01/2014    37
## 338          28/10/2013    37
## 339          30/04/2014    37
## 340          30/10/2012    37
## 341          30/12/2008    37
## 342          02/05/2011    36
## 343          03/06/2004    36
## 344          03/06/2010    36
## 345          04/01/2012    36
## 346          04/04/2012    36
## 347          13/12/2007    36
## 348          14/04/2011    36
## 349          15/05/2014    36
## 350          18/06/2009    36
## 351          19/03/2012    36
## 352          20/10/2008    36
## 353          21/06/2011    36
## 354          21/12/2009    36
## 355          22/05/2013    36
## 356          23/04/2014    36
## 357          24/07/2007    36
## 358          27/05/2005    36
## 359          28/07/2009    36
## 360          28/08/2012    36
## 361          29/11/2011    36
## 362          31/12/2013    36
## 363          02/05/2014    35
## 364          03/10/2008    35
## 365          05/01/2011    35
## 366          05/09/2012    35
## 367          11/03/2008    35
## 368          14/01/2008    35
## 369          14/03/2012    35
## 370          16/10/2008    35
## 371          17/09/2010    35
## 372          17/10/2008    35
## 373          20/02/2013    35
## 374          21/02/2012    35
## 375          21/12/2005    35
## 376          29/05/2008    35
## 377          29/08/2008    35
## 378          29/12/2009    35
## 379          01/02/2011    34
## 380          02/04/2007    34
## 381          08/03/2006    34
## 382          08/10/2013    34
## 383          08/11/2010    34
## 384          10/06/2008    34
## 385          15/02/2012    34
## 386          15/05/2007    34
## 387          15/09/2008    34
## 388          16/09/2008    34
## 389          19/02/2014    34
## 390          21/03/2007    34
## 391          23/01/2010    34
## 392          23/10/2012    34
## 393          24/02/2014    34
## 394          24/06/2008    34
## 395          25/10/2007    34
## 396          30/07/2012    34
## 397          31/08/2012    34
## 398          01/04/2008    33
## 399          01/05/2008    33
## 400          02/02/2007    33
## 401          02/08/2006    33
## 402          03/01/2012    33
## 403          03/06/2013    33
## 404          03/08/2010    33
## 405          05/03/2013    33
## 406          05/07/2013    33
## 407          07/05/2007    33
## 408          08/12/2008    33
## 409          13/11/2008    33
## 410          15/09/2010    33
## 411          17/03/2014    33
## 412          17/11/2008    33
## 413          19/04/2011    33
## 414          24/06/2014    33
## 415          24/07/2013    33
## 416          25/03/2013    33
## 417          26/01/2012    33
## 418          26/09/2006    33
## 419          27/01/2014    33
## 420          27/08/2012    33
## 421          27/12/2011    33
## 422          28/10/2005    33
## 423          29/10/2012    33
## 424          30/04/2010    33
## 425          30/06/2011    33
## 426          30/10/2008    33
## 427          01/03/2006    32
## 428          03/06/2008    32
## 429          03/06/2014    32
## 430          05/11/2012    32
## 431          05/11/2013    32
## 432          08/08/2012    32
## 433          08/08/2013    32
## 434          09/06/2009    32
## 435          09/11/2010    32
## 436          10/06/2014    32
## 437          10/12/2009    32
## 438          11/04/2008    32
## 439          11/07/2007    32
## 440          12/07/2005    32
## 441          14/05/2010    32
## 442          16/07/2010    32
## 443          17/12/2012    32
## 444          19/05/2014    32
## 445          19/08/2013    32
## 446          20/12/2007    32
## 447          23/05/2006    32
## 448          24/03/2009    32
## 449          25/01/2008    32
## 450          28/04/2006    32
## 451          30/07/2013    32
## 452          30/10/2013    32
## 453          02/11/2005    31
## 454          03/07/2012    31
## 455          04/06/2010    31
## 456          04/11/2013    31
## 457          05/03/2014    31
## 458          05/12/2008    31
## 459          06/04/2011    31
## 460          06/06/2008    31
## 461          06/07/2007    31
## 462          06/07/2011    31
## 463          06/08/2012    31
## 464          07/05/2012    31
## 465          08/01/2009    31
## 466          08/01/2013    31
## 467          08/05/2008    31
## 468          09/05/2011    31
## 469          11/06/2012    31
## 470          11/06/2014    31
## 471          12/06/2013    31
## 472          12/09/2012    31
## 473          13/01/2013    31
## 474          13/02/2012    31
## 475          13/04/2005    31
## 476          13/06/2014    31
## 477          15/07/2008    31
## 478          16/01/2007    31
## 479          17/12/2008    31
## 480          18/07/2012    31
## 481          20/05/2013    31
## 482          21/02/2014    31
## 483          21/09/2010    31
## 484          22/07/2010    31
## 485          23/02/2012    31
## 486          23/06/2006    31
## 487          25/05/2010    31
## 488          26/09/2007    31
## 489          27/02/2008    31
## 490          27/04/2011    31
## 491          27/05/2008    31
## 492          28/03/2014    31
## 493          28/04/2008    31
## 494          28/05/2013    31
## 495          29/03/2011    31
## 496          29/10/2007    31
## 497          30/08/2013    31
## 498          30/12/2013    31
## 499          31/07/2013    31
## 500          01/09/2010    30
## 501          02/08/2007    30
## 502          03/12/2007    30
## 503          05/03/2012    30
## 504          07/05/2009    30
## 505          08/09/2006    30
## 506          09/07/2013    30
## 507          10/02/2012    30
## 508          11/08/2006    30
## 509          12/06/2009    30
## 510          13/02/2007    30
## 511          13/10/2008    30
## 512          14/01/2014    30
## 513          14/08/2013    30
## 514          18/11/2005    30
## 515          19/07/2010    30
## 516          20/05/2014    30
## 517          21/05/2004    30
## 518          21/08/2012    30
## 519          21/12/2011    30
## 520          23/01/2014    30
## 521          23/12/2013    30
## 522          24/08/2010    30
## 523          25/05/2005    30
## 524          25/06/2010    30
## 525          26/09/2012    30
## 526          27/01/2010    30
## 527          28/06/2012    30
## 528          01/02/2010    29
## 529          01/03/2010    29
## 530          01/03/2012    29
## 531          01/05/2013    29
## 532          01/08/2007    29
## 533          02/10/2006    29
## 534          03/01/2008    29
## 535          03/01/2014    29
## 536          03/05/2010    29
## 537          04/02/2010    29
## 538          04/02/2014    29
## 539          04/03/2014    29
## 540          04/08/2008    29
## 541          05/07/2006    29
## 542          06/08/2008    29
## 543          06/12/2011    29
## 544          07/03/2012    29
## 545          09/03/2006    29
## 546          09/09/2010    29
## 547          10/03/2008    29
## 548          10/04/2013    29
## 549          11/04/2007    29
## 550          14/09/2007    29
## 551          15/01/2014    29
## 552          15/06/2009    29
## 553          15/06/2010    29
## 554          15/07/2005    29
## 555          16/07/2013    29
## 556          17/12/2009    29
## 557          18/06/2012    29
## 558          19/09/2012    29
## 559          20/02/2012    29
## 560          20/07/2007    29
## 561          21/01/2013    29
## 562          21/03/2012    29
## 563          21/06/2013    29
## 564          22/05/2007    29
## 565          22/11/2011    29
## 566          23/01/2012    29
## 567          24/10/2007    29
## 568          25/01/2012    29
## 569          25/08/2010    29
## 570          25/10/2013    29
## 571          27/05/2014    29
## 572          28/01/2008    29
## 573          30/11/2010    29
## 574          02/02/2010    28
## 575          02/05/2007    28
## 576          03/10/2007    28
## 577          04/01/2008    28
## 578          04/12/2013    28
## 579          05/03/2008    28
## 580          05/11/2007    28
## 581          05/12/2013    28
## 582          07/06/2007    28
## 583          08/07/2010    28
## 584          08/08/2007    28
## 585          09/06/2010    28
## 586          10/04/2008    28
## 587          10/07/2006    28
## 588          10/08/2007    28
## 589          11/06/2008    28
## 590          12/12/2012    28
## 591          12/12/2013    28
## 592          13/03/2007    28
## 593          14/04/2008    28
## 594          14/10/2011    28
## 595          15/02/2008    28
## 596          16/05/2013    28
## 597          16/08/2007    28
## 598          18/09/2007    28
## 599          18/12/2009    28
## 600          19/04/2006    28
## 601          21/02/2013    28
## 602          21/08/2007    28
## 603          22/03/2010    28
## 604          22/08/2011    28
## 605          22/12/2009    28
## 606          23/07/2013    28
## 607          24/01/2006    28
## 608          24/01/2007    28
## 609          24/10/2008    28
## 610          26/03/2013    28
## 611          26/06/2014    28
## 612          26/08/2010    28
## 613          27/02/2009    28
## 614          27/06/2013    28
## 615          28/02/2011    28
## 616          28/09/2010    28
## 617          28/12/2010    28
## 618          29/07/2013    28
## 619          01/10/2009    27
## 620          02/06/2008    27
## 621          02/07/2010    27
## 622          02/10/2008    27
## 623          02/10/2012    27
## 624          03/04/2014    27
## 625          04/06/2008    27
## 626          06/09/2013    27
## 627          06/11/2007    27
## 628          06/11/2009    27
## 629          07/01/2009    27
## 630          07/04/2014    27
## 631          07/09/2007    27
## 632          08/08/2011    27
## 633          08/11/2007    27
## 634          09/04/2010    27
## 635          09/06/2006    27
## 636          10/07/2013    27
## 637          10/10/2013    27
## 638          10/12/2013    27
## 639          11/01/2012    27
## 640          12/04/2005    27
## 641          13/07/2007    27
## 642          14/02/2008    27
## 643          14/09/2006    27
## 644          16/01/2008    27
## 645          16/01/2013    27
## 646          16/03/2011    27
## 647          16/11/2010    27
## 648          17/01/2011    27
## 649          17/04/2007    27
## 650          17/08/2006    27
## 651          18/06/2008    27
## 652          20/05/2010    27
## 653          20/09/2007    27
## 654          20/09/2013    27
## 655          20/12/2011    27
## 656          21/11/2008    27
## 657          23/07/2008    27
## 658          23/08/2005    27
## 659          23/08/2006    27
## 660          24/03/2010    27
## 661          24/09/2008    27
## 662          24/09/2012    27
## 663          25/06/2007    27
## 664          25/09/2006    27
## 665          25/11/2013    27
## 666          26/01/2009    27
## 667          26/04/2012    27
## 668          26/09/2011    27
## 669          27/03/2014    27
## 670          27/08/2008    27
## 671          27/09/2007    27
## 672          29/01/2007    27
## 673          29/04/2014    27
## 674          29/06/2005    27
## 675          29/09/2009    27
## 676          30/07/2008    27
## 677          01/06/2005    26
## 678          01/11/2006    26
## 679          02/05/2012    26
## 680          02/09/2008    26
## 681          03/02/2013    26
## 682          03/04/2008    26
## 683          03/12/2012    26
## 684          04/05/2006    26
## 685          04/08/2005    26
## 686          05/03/2007    26
## 687          05/07/2012    26
## 688          06/08/2013    26
## 689          07/05/2013    26
## 690          07/08/2007    26
## 691          07/11/2011    26
## 692          08/05/2006    26
## 693          08/10/2007    26
## 694          09/08/2007    26
## 695          09/10/2012    26
## 696          10/04/2007    26
## 697          11/01/2006    26
## 698          11/10/2011    26
## 699          11/10/2012    26
## 700          12/05/2008    26
## 701          12/06/2014    26
## 702          12/07/2006    26
## 703          13/03/2009    26
## 704          13/08/2008    26
## 705          14/01/2010    26
## 706          15/01/2008    26
## 707          15/06/2005    26
## 708          15/12/2008    26
## 709          15/12/2011    26
## 710          16/05/2006    26
## 711          16/11/2011    26
## 712          17/07/2013    26
## 713          21/01/2010    26
## 714          21/10/2011    26
## 715          22/03/2006    26
## 716          22/03/2011    26
## 717          23/08/2010    26
## 718          23/12/2011    26
## 719          24/04/2008    26
## 720          24/04/2012    26
## 721          25/01/2007    26
## 722          25/03/2014    26
## 723          25/04/2013    26
## 724          25/09/2012    26
## 725          27/09/2011    26
## 726          27/09/2013    26
## 727          27/10/2011    26
## 728          28/01/2013    26
## 729          28/03/2007    26
## 730          28/10/2009    26
## 731          29/03/2013    26
## 732          29/05/2012    26
## 733          29/10/2013    26
## 734          30/04/2013    26
## 735          30/05/2008    26
## 736          03/03/2014    25
## 737          04/05/2009    25
## 738          06/05/2013    25
## 739          07/04/2008    25
## 740          07/10/2008    25
## 741          08/09/2005    25
## 742          08/11/2013    25
## 743          09/03/2007    25
## 744          10/05/2006    25
## 745          10/06/2010    25
## 746          10/12/2007    25
## 747          11/03/2013    25
## 748          11/04/2014    25
## 749          11/10/2013    25
## 750          11/11/2008    25
## 751          12/03/2007    25
## 752          12/04/2007    25
## 753          12/11/2012    25
## 754          13/04/2007    25
## 755          14/08/2007    25
## 756          14/11/2007    25
## 757          15/10/2009    25
## 758          16/06/2009    25
## 759          17/04/2006    25
## 760          17/06/2013    25
## 761          18/02/2013    25
## 762          18/02/2014    25
## 763          19/06/2012    25
## 764          19/08/2008    25
## 765          19/10/2012    25
## 766          20/09/2012    25
## 767          20/10/2006    25
## 768          21/05/2013    25
## 769          22/05/2012    25
## 770          22/07/2008    25
## 771          22/10/2008    25
## 772          22/12/2006    25
## 773          22/12/2010    25
## 774          23/05/2008    25
## 775          23/08/2013    25
## 776          23/10/2008    25
## 777          25/02/2008    25
## 778          25/08/2008    25
## 779          25/10/2005    25
## 780          26/06/2006    25
## 781          26/08/2008    25
## 782          27/12/2005    25
## 783          27/12/2012    25
## 784          28/01/2011    25
## 785          28/02/2014    25
## 786          28/03/2006    25
## 787          28/04/2010    25
## 788          28/06/2010    25
## 789          29/09/2006    25
## 790          30/03/2012    25
## 791          01/08/2012    24
## 792          02/05/2008    24
## 793          02/07/2007    24
## 794          02/10/2013    24
## 795          02/11/2007    24
## 796          02/12/2009    24
## 797          05/06/2006    24
## 798          06/04/2010    24
## 799          06/12/2007    24
## 800          07/05/2008    24
## 801          08/04/2008    24
## 802          08/04/2010    24
## 803          08/04/2014    24
## 804          08/10/2009    24
## 805          09/01/2009    24
## 806          09/06/2008    24
## 807          11/04/2012    24
## 808          11/09/2012    24
## 809          11/09/2013    24
## 810          11/11/2009    24
## 811          11/12/2012    24
## 812          12/02/2010    24
## 813          12/03/2014    24
## 814          12/06/2006    24
## 815          13/03/2006    24
## 816          13/05/2013    24
## 817          13/10/2011    24
## 818          14/03/2008    24
## 819          14/03/2013    24
## 820          14/04/2014    24
## 821          14/05/2008    24
## 822          15/02/2006    24
## 823          15/02/2010    24
## 824          15/06/2012    24
## 825          15/08/2007    24
## 826          16/05/2007    24
## 827          16/05/2012    24
## 828          16/12/2009    24
## 829          17/05/2005    24
## 830          17/05/2010    24
## 831          17/11/2005    24
## 832          18/04/2007    24
## 833          18/05/2010    24
## 834          19/01/2007    24
## 835          19/03/2013    24
## 836          19/09/2013    24
## 837          20/01/2010    24
## 838          20/11/2008    24
## 839          21/03/2014    24
## 840          21/05/2014    24
## 841          21/06/2012    24
## 842          21/12/2006    24
## 843          22/02/2007    24
## 844          22/07/2003    24
## 845          22/08/2007    24
## 846          23/05/2007    24
## 847          23/06/2010    24
## 848          23/10/2007    24
## 849          23/10/2013    24
## 850          24/06/2010    24
## 851          24/07/2012    24
## 852          25/02/2014    24
## 853          25/04/2008    24
## 854          25/11/2008    24
## 855          25/12/2011    24
## 856          26/10/2005    24
## 857          26/12/2007    24
## 858          27/07/2011    24
## 859          28/04/2009    24
## 860          28/11/2007    24
## 861          29/06/2012    24
## 862          29/11/2010    24
## 863          31/05/2013    24
## 864          01/04/2014    23
## 865          01/08/2008    23
## 866          02/03/2006    23
## 867          02/03/2011    23
## 868          02/07/2013    23
## 869          02/10/2007    23
## 870          03/08/2011    23
## 871          04/04/2013    23
## 872          05/01/2006    23
## 873          05/02/2014    23
## 874          05/09/2007    23
## 875          06/03/2006    23
## 876          06/05/2008    23
## 877          06/09/2007    23
## 878          07/03/2014    23
## 879          07/07/2011    23
## 880          08/01/2010    23
## 881          09/01/2007    23
## 882          09/05/2007    23
## 883          09/07/2010    23
## 884          10/02/2010    23
## 885          10/07/2007    23
## 886          10/07/2008    23
## 887          11/02/2014    23
## 888          11/06/2009    23
## 889          11/06/2010    23
## 890          11/09/2007    23
## 891          11/12/2007    23
## 892          12/06/2008    23
## 893          12/07/2011    23
## 894          12/11/2013    23
## 895          13/03/2008    23
## 896          13/06/2012    23
## 897          13/11/2012    23
## 898          13/12/2010    23
## 899          14/03/2014    23
## 900          14/10/2013    23
## 901          15/04/2009    23
## 902          15/11/2013    23
## 903          17/05/2007    23
## 904          17/06/2008    23
## 905          17/06/2009    23
## 906          18/01/2011    23
## 907          18/04/2008    23
## 908          18/04/2013    23
## 909          18/06/2013    23
## 910          18/08/2006    23
## 911          18/10/2011    23
## 912          18/10/2012    23
## 913          18/11/2013    23
## 914          18/12/2007    23
## 915          18/12/2012    23
## 916          19/05/2013    23
## 917          19/09/2005    23
## 918          20/02/2008    23
## 919          20/03/2007    23
## 920          20/05/2008    23
## 921          20/06/2008    23
## 922          20/06/2013    23
## 923          21/06/2010    23
## 924          21/07/2008    23
## 925          21/09/2012    23
## 926          22/01/2010    23
## 927          22/04/2013    23
## 928          23/06/2009    23
## 929          23/09/2010    23
## 930          23/10/2006    23
## 931          24/03/2008    23
## 932          24/03/2014    23
## 933          25/07/2008    23
## 934          26/03/2009    23
## 935          26/03/2014    23
## 936          26/04/2010    23
## 937          26/07/2012    23
## 938          27/06/2012    23
## 939          27/07/2007    23
## 940          27/08/2007    23
## 941          27/09/2010    23
## 942          28/07/2010    23
## 943          28/08/2006    23
## 944          28/09/2007    23
## 945          30/03/2007    23
## 946          30/09/2009    23
## 947          30/12/2009    23
## 948          31/01/2013    23
## 949          31/03/2014    23
## 950          31/05/2012    23
## 951          01/10/2008    22
## 952          01/12/2008    22
## 953          01/12/2013    22
## 954          02/01/2009    22
## 955          02/03/2007    22
## 956          02/12/2013    22
## 957          04/03/2010    22
## 958          04/09/2008    22
## 959          04/11/2009    22
## 960          05/02/2008    22
## 961          05/04/2007    22
## 962          05/07/2011    22
## 963          05/08/2005    22
## 964          05/10/2010    22
## 965          06/09/2011    22
## 966          06/10/2008    22
## 967          06/11/2006    22
## 968          07/10/2010    22
## 969          07/10/2011    22
## 970          08/04/2013    22
## 971          08/06/2005    22
## 972          08/10/2008    22
## 973          09/02/2010    22
## 974          09/04/2014    22
## 975          09/11/2005    22
## 976          10/06/2013    22
## 977          10/10/2007    22
## 978          10/10/2008    22
## 979          11/04/2013    22
## 980          11/06/2007    22
## 981          13/07/2005    22
## 982          14/02/2012    22
## 983          14/04/2009    22
## 984          15/06/2007    22
## 985          16/04/2008    22
## 986          16/04/2009    22
## 987          16/05/2005    22
## 988          16/07/2008    22
## 989          16/09/2013    22
## 990          16/10/2012    22
## 991          16/12/2013    22
## 992          17/03/2010    22
## 993          17/07/2008    22
## 994          17/12/2010    22
## 995          18/07/2013    22
## 996          18/09/2012    22
## 997          18/10/2013    22
## 998          18/12/2008    22
## 999          19/05/2006    22
## 1000         19/11/2012    22
## 1001         19/11/2013    22
## 1002         20/01/2012    22
## 1003         20/06/2014    22
## 1004         20/09/2011    22
## 1005         21/02/2007    22
## 1006         21/09/2005    22
## 1007         22/03/2007    22
## 1008         22/09/2010    22
## 1009         23/05/2011    22
## 1010         24/01/2014    22
## 1011         24/04/2006    22
## 1012         24/04/2007    22
## 1013         24/04/2013    22
## 1014         25/06/2012    22
## 1015         26/03/2010    22
## 1016         27/03/2008    22
## 1017         27/04/2007    22
## 1018         27/09/2012    22
## 1019         27/10/2005    22
## 1020         27/11/2007    22
## 1021         28/07/2008    22
## 1022         28/08/2007    22
## 1023         29/01/2010    22
## 1024         29/04/2005    22
## 1025         29/08/2007    22
## 1026         30/08/2006    22
## 1027         30/09/2010    22
## 1028         31/01/2011    22
## 1029         31/01/2012    22
## 1030         01/02/2012    21
## 1031         01/03/2007    21
## 1032         01/09/2013    21
## 1033         01/11/2010    21
## 1034         01/11/2011    21
## 1035         02/05/2005    21
## 1036         02/06/2005    21
## 1037         02/09/2010    21
## 1038         03/01/2007    21
## 1039         03/02/2006    21
## 1040         03/03/2010    21
## 1041         03/08/2007    21
## 1042         03/09/2008    21
## 1043         03/09/2010    21
## 1044         03/11/2006    21
## 1045         04/03/2008    21
## 1046         04/04/2008    21
## 1047         04/10/2005    21
## 1048         05/06/2013    21
## 1049         05/10/2012    21
## 1050         05/11/2010    21
## 1051         06/02/2014    21
## 1052         06/03/2008    21
## 1053         07/02/2012    21
## 1054         07/03/2008    21
## 1055         07/12/2010    21
## 1056         07/12/2011    21
## 1057         08/02/2008    21
## 1058         08/05/2014    21
## 1059         08/07/2005    21
## 1060         08/07/2008    21
## 1061         08/10/2012    21
## 1062         08/12/2005    21
## 1063         09/04/2012    21
## 1064         09/04/2013    21
## 1065         09/12/2009    21
## 1066         10/06/2009    21
## 1067         10/10/2005    21
## 1068         11/04/2011    21
## 1069         11/12/2009    21
## 1070         12/02/2013    21
## 1071         12/09/2007    21
## 1072         12/09/2008    21
## 1073         12/09/2011    21
## 1074         12/12/2006    21
## 1075         13/06/2007    21
## 1076         14/03/2006    21
## 1077         14/06/2006    21
## 1078         14/08/2012    21
## 1079         15/02/2007    21
## 1080         15/04/2008    21
## 1081         15/07/2013    21
## 1082         15/09/2006    21
## 1083         15/11/2007    21
## 1084         16/01/2012    21
## 1085         16/06/2008    21
## 1086         16/10/2007    21
## 1087         17/04/2013    21
## 1088         17/05/2013    21
## 1089         18/03/2014    21
## 1090         18/07/2011    21
## 1091         18/09/2013    21
## 1092         18/12/2011    21
## 1093         19/02/2008    21
## 1094         19/02/2009    21
## 1095         19/06/2007    21
## 1096         19/06/2008    21
## 1097         19/06/2013    21
## 1098         19/09/2011    21
## 1099         19/10/2006    21
## 1100         20/03/2014    21
## 1101         20/04/2011    21
## 1102         20/09/2005    21
## 1103         20/11/2012    21
## 1104         21/04/2008    21
## 1105         21/09/2006    21
## 1106         21/11/2012    21
## 1107         21/12/2010    21
## 1108         22/04/2010    21
## 1109         22/06/2010    21
## 1110         22/10/2012    21
## 1111         23/01/2013    21
## 1112         23/03/2006    21
## 1113         23/04/2007    21
## 1114         24/03/2011    21
## 1115         24/12/2013    21
## 1116         25/03/2008    21
## 1117         25/05/2012    21
## 1118         26/02/2008    21
## 1119         26/04/2006    21
## 1120         26/06/2007    21
## 1121         26/07/2006    21
## 1122         26/07/2010    21
## 1123         26/11/2012    21
## 1124         27/02/2013    21
## 1125         27/04/2006    21
## 1126         27/06/2005    21
## 1127         27/09/2005    21
## 1128         28/03/2008    21
## 1129         28/09/2006    21
## 1130         28/09/2009    21
## 1131         28/12/2007    21
## 1132         29/11/2007    21
## 1133         30/01/2008    21
## 1134         30/01/2014    21
## 1135         30/05/2012    21
## 1136         01/02/2006    20
## 1137         01/06/2012    20
## 1138         01/08/2011    20
## 1139         02/02/2006    20
## 1140         02/07/2012    20
## 1141         03/01/2011    20
## 1142         03/04/2006    20
## 1143         03/05/2007    20
## 1144         04/09/2007    20
## 1145         04/09/2013    20
## 1146         04/10/2007    20
## 1147         05/05/2008    20
## 1148         06/11/2008    20
## 1149         06/12/2005    20
## 1150         07/02/2008    20
## 1151         07/04/2010    20
## 1152         07/11/2007    20
## 1153         07/12/2005    20
## 1154         08/09/2010    20
## 1155         09/02/2006    20
## 1156         09/04/2007    20
## 1157         09/04/2008    20
## 1158         09/08/2011    20
## 1159         09/10/2008    20
## 1160         09/10/2013    20
## 1161         09/12/2005    20
## 1162         10/03/2006    20
## 1163         10/03/2014    20
## 1164         11/08/2005    20
## 1165         11/10/2007    20
## 1166         12/05/2014    20
## 1167         13/02/2006    20
## 1168         13/02/2013    20
## 1169         13/05/2014    20
## 1170         13/10/2009    20
## 1171         14/02/2006    20
## 1172         14/12/2005    20
## 1173         15/01/2013    20
## 1174         15/05/2012    20
## 1175         15/08/2008    20
## 1176         15/11/2010    20
## 1177         15/11/2011    20
## 1178         16/02/2013    20
## 1179         16/07/2007    20
## 1180         17/02/2012    20
## 1181         17/04/2009    20
## 1182         17/06/2014    20
## 1183         17/10/2012    20
## 1184         17/11/2010    20
## 1185         18/04/2011    20
## 1186         18/05/2006    20
## 1187         18/10/2010    20
## 1188         19/12/2013    20
## 1189         20/09/2006    20
## 1190         21/05/2007    20
## 1191         21/07/2003    20
## 1192         21/09/2011    20
## 1193         21/12/2012    20
## 1194         22/06/2006    20
## 1195         22/06/2009    20
## 1196         22/12/2005    20
## 1197         23/01/2006    20
## 1198         23/01/2008    20
## 1199         23/05/2013    20
## 1200         23/07/2007    20
## 1201         23/12/2009    20
## 1202         24/05/2007    20
## 1203         24/05/2013    20
## 1204         24/06/2005    20
## 1205         24/09/2007    20
## 1206         26/03/2012    20
## 1207         26/08/2005    20
## 1208         26/09/2008    20
## 1209         26/10/2007    20
## 1210         26/11/2008    20
## 1211         27/03/2012    20
## 1212         27/04/2012    20
## 1213         27/06/2008    20
## 1214         27/08/2010    20
## 1215         27/09/2006    20
## 1216         27/12/2010    20
## 1217         28/02/2008    20
## 1218         28/05/2014    20
## 1219         28/06/2007    20
## 1220         28/10/2008    20
## 1221         28/11/2011    20
## 1222         28/12/2011    20
## 1223         29/12/2008    20
## 1224         31/01/2014    20
## 1225         31/03/2011    20
## 1226         31/07/2011    20
## 1227         01/02/2007    19
## 1228         01/05/2006    19
## 1229         01/05/2009    19
## 1230         02/06/2012    19
## 1231         03/03/2009    19
## 1232         03/05/2012    19
## 1233         03/11/2010    19
## 1234         04/04/2011    19
## 1235         04/06/2007    19
## 1236         05/03/2009    19
## 1237         05/05/2006    19
## 1238         05/10/2011    19
## 1239         05/11/2008    19
## 1240         06/09/2005    19
## 1241         07/07/2005    19
## 1242         07/12/2007    19
## 1243         08/01/2014    19
## 1244         08/03/2007    19
## 1245         08/06/2006    19
## 1246         09/02/2007    19
## 1247         09/03/2010    19
## 1248         10/05/2011    19
## 1249         11/05/2006    19
## 1250         11/10/2005    19
## 1251         12/09/2013    19
## 1252         12/10/2005    19
## 1253         12/10/2009    19
## 1254         13/08/2013    19
## 1255         13/11/2007    19
## 1256         13/12/2012    19
## 1257         14/01/2011    19
## 1258         14/02/2007    19
## 1259         15/04/2014    19
## 1260         15/05/2013    19
## 1261         15/07/2010    19
## 1262         15/08/2011    19
## 1263         15/10/2012    19
## 1264         15/12/2005    19
## 1265         16/05/2011    19
## 1266         16/07/2012    19
## 1267         17/10/2006    19
## 1268         18/05/2005    19
## 1269         18/07/2008    19
## 1270         18/09/2008    19
## 1271         19/03/2014    19
## 1272         19/04/2007    19
## 1273         19/07/2006    19
## 1274         19/10/2005    19
## 1275         19/12/2008    19
## 1276         20/03/2006    19
## 1277         20/04/2005    19
## 1278         20/12/2005    19
## 1279         21/03/2011    19
## 1280         21/05/2010    19
## 1281         21/08/2008    19
## 1282         21/09/2009    19
## 1283         22/01/2009    19
## 1284         22/02/2006    19
## 1285         22/03/2013    19
## 1286         22/05/2014    19
## 1287         22/11/2005    19
## 1288         22/12/2008    19
## 1289         23/02/2007    19
## 1290         23/05/2012    19
## 1291         23/08/2007    19
## 1292         23/09/2008    19
## 1293         23/11/2011    19
## 1294         24/01/2008    19
## 1295         24/10/2011    19
## 1296         24/12/2009    19
## 1297         25/02/2013    19
## 1298         25/06/2013    19
## 1299         26/02/2013    19
## 1300         26/10/2010    19
## 1301         26/12/2013    19
## 1302         27/05/2010    19
## 1303         27/11/2012    19
## 1304         28/03/2012    19
## 1305         29/06/2006    19
## 1306         30/05/2013    19
## 1307         30/11/2011    19
## 1308         30/11/2012    19
## 1309         01/02/2013    18
## 1310         01/04/2013    18
## 1311         01/07/2013    18
## 1312         02/05/2006    18
## 1313         02/05/2013    18
## 1314         02/08/2011    18
## 1315         03/02/2010    18
## 1316         03/05/2013    18
## 1317         03/07/2008    18
## 1318         04/02/2008    18
## 1319         04/03/2011    18
## 1320         05/01/2012    18
## 1321         05/02/2007    18
## 1322         05/03/2010    18
## 1323         05/04/2010    18
## 1324         05/05/2005    18
## 1325         05/05/2014    18
## 1326         05/08/2008    18
## 1327         06/02/2010    18
## 1328         07/02/2014    18
## 1329         07/09/2005    18
## 1330         07/12/2012    18
## 1331         08/05/2012    18
## 1332         08/05/2013    18
## 1333         08/07/2013    18
## 1334         09/01/2003    18
## 1335         09/01/2013    18
## 1336         09/04/2009    18
## 1337         09/07/2007    18
## 1338         10/02/2006    18
## 1339         10/02/2014    18
## 1340         10/04/2012    18
## 1341         10/04/2014    18
## 1342         10/09/2012    18
## 1343         10/09/2013    18
## 1344         10/11/2009    18
## 1345         10/12/2012    18
## 1346         11/09/2008    18
## 1347         11/11/2010    18
## 1348         11/11/2013    18
## 1349         12/05/2011    18
## 1350         12/12/2005    18
## 1351         13/10/2005    18
## 1352         13/11/2006    18
## 1353         14/03/2007    18
## 1354         14/05/2014    18
## 1355         14/11/2005    18
## 1356         15/11/2012    18
## 1357         16/02/2006    18
## 1358         16/02/2014    18
## 1359         16/05/2008    18
## 1360         17/04/2014    18
## 1361         17/06/2005    18
## 1362         17/08/2007    18
## 1363         17/10/2005    18
## 1364         17/12/2007    18
## 1365         17/12/2013    18
## 1366         18/05/2007    18
## 1367         18/12/2013    18
## 1368         19/01/2006    18
## 1369         19/01/2011    18
## 1370         19/03/2008    18
## 1371         19/11/2007    18
## 1372         20/06/2005    18
## 1373         20/11/2006    18
## 1374         20/12/2006    18
## 1375         21/01/2009    18
## 1376         21/03/2006    18
## 1377         21/04/2014    18
## 1378         21/10/2009    18
## 1379         22/02/2011    18
## 1380         22/06/2007    18
## 1381         23/09/2011    18
## 1382         23/12/2008    18
## 1383         24/08/2005    18
## 1384         25/05/2007    18
## 1385         25/10/2010    18
## 1386         26/10/2011    18
## 1387         28/06/2005    18
## 1388         28/07/2011    18
## 1389         28/12/2005    18
## 1390         29/03/2006    18
## 1391         29/04/2009    18
## 1392         29/04/2011    18
## 1393         29/06/2007    18
## 1394         30/03/2010    18
## 1395         31/03/2010    18
## 1396         31/12/2009    18
## 1397         01/04/2011    17
## 1398         03/04/2009    17
## 1399         03/04/2013    17
## 1400         03/06/2009    17
## 1401         04/01/2007    17
## 1402         04/02/2013    17
## 1403         04/05/2014    17
## 1404         04/11/2012    17
## 1405         04/12/2008    17
## 1406         05/02/2010    17
## 1407         05/05/2010    17
## 1408         05/07/2007    17
## 1409         06/02/2013    17
## 1410         06/03/2007    17
## 1411         06/03/2013    17
## 1412         07/01/2008    17
## 1413         07/01/2012    17
## 1414         07/11/2013    17
## 1415         07/12/2009    17
## 1416         08/01/2007    17
## 1417         08/06/2009    17
## 1418         08/07/2011    17
## 1419         09/01/2008    17
## 1420         09/07/2012    17
## 1421         09/11/2012    17
## 1422         10/01/2011    17
## 1423         10/09/2007    17
## 1424         10/10/2011    17
## 1425         11/05/2005    17
## 1426         11/08/2008    17
## 1427         11/10/2006    17
## 1428         12/01/2006    17
## 1429         12/01/2009    17
## 1430         12/04/2013    17
## 1431         12/10/2006    17
## 1432         12/10/2011    17
## 1433         13/05/2010    17
## 1434         13/07/2012    17
## 1435         13/09/2012    17
## 1436         13/12/2013    17
## 1437         14/04/2013    17
## 1438         14/05/2013    17
## 1439         14/07/2005    17
## 1440         15/03/2006    17
## 1441         15/12/2006    17
## 1442         15/12/2012    17
## 1443         16/01/2006    17
## 1444         16/05/2014    17
## 1445         16/11/2006    17
## 1446         16/11/2009    17
## 1447         17/02/2009    17
## 1448         17/05/2012    17
## 1449         17/07/2012    17
## 1450         17/11/2006    17
## 1451         17/11/2013    17
## 1452         18/01/2008    17
## 1453         18/05/2009    17
## 1454         18/10/2006    17
## 1455         18/11/2011    17
## 1456         19/03/2009    17
## 1457         19/04/2010    17
## 1458         19/05/2011    17
## 1459         19/09/2007    17
## 1460         19/12/2007    17
## 1461         20/01/2011    17
## 1462         20/07/2010    17
## 1463         20/10/2010    17
## 1464         21/04/2010    17
## 1465         21/11/2011    17
## 1466         22/05/2006    17
## 1467         22/09/2006    17
## 1468         22/09/2008    17
## 1469         22/10/2011    17
## 1470         22/12/2012    17
## 1471         23/02/2011    17
## 1472         23/03/2009    17
## 1473         23/06/2008    17
## 1474         23/07/2010    17
## 1475         24/02/2011    17
## 1476         25/07/2006    17
## 1477         25/09/2007    17
## 1478         26/11/2013    17
## 1479         27/07/2006    17
## 1480         28/11/2005    17
## 1481         29/04/2010    17
## 1482         29/08/2005    17
## 1483         29/11/2006    17
## 1484         30/08/2007    17
## 1485         30/08/2010    17
## 1486         30/12/2005    17
## 1487         01/04/2010    16
## 1488         02/01/2008    16
## 1489         02/04/2008    16
## 1490         02/04/2014    16
## 1491         02/08/2013    16
## 1492         02/12/2012    16
## 1493         03/06/2012    16
## 1494         03/07/2007    16
## 1495         03/11/2008    16
## 1496         04/02/2009    16
## 1497         04/03/2013    16
## 1498         04/06/2009    16
## 1499         04/06/2012    16
## 1500         04/12/2007    16
## 1501         05/04/2012    16
## 1502         05/09/2008    16
## 1503         06/01/2014    16
## 1504         06/02/2007    16
## 1505         06/02/2012    16
## 1506         06/05/2009    16
## 1507         06/07/2010    16
## 1508         06/08/2010    16
## 1509         06/09/2006    16
## 1510         06/10/2009    16
## 1511         06/12/2012    16
## 1512         07/02/2013    16
## 1513         07/04/2006    16
## 1514         07/04/2011    16
## 1515         07/08/2006    16
## 1516         07/10/2005    16
## 1517         08/03/2010    16
## 1518         08/05/2007    16
## 1519         08/10/2010    16
## 1520         08/11/2005    16
## 1521         08/11/2011    16
## 1522         09/01/2006    16
## 1523         09/02/2011    16
## 1524         09/03/2011    16
## 1525         09/08/2006    16
## 1526         09/10/2011    16
## 1527         10/05/2007    16
## 1528         10/08/2005    16
## 1529         10/11/2010    16
## 1530         11/01/2010    16
## 1531         11/03/2014    16
## 1532         11/05/2012    16
## 1533         12/02/2007    16
## 1534         12/03/2008    16
## 1535         12/05/2009    16
## 1536         12/06/2007    16
## 1537         12/07/2013    16
## 1538         12/11/2007    16
## 1539         13/01/2012    16
## 1540         13/03/2012    16
## 1541         13/08/2007    16
## 1542         13/09/2005    16
## 1543         13/09/2010    16
## 1544         13/12/2011    16
## 1545         14/09/2012    16
## 1546         14/12/2009    16
## 1547         15/02/2013    16
## 1548         15/05/2006    16
## 1549         15/08/2012    16
## 1550         15/11/2006    16
## 1551         16/03/2007    16
## 1552         16/04/2014    16
## 1553         16/10/2006    16
## 1554         16/10/2013    16
## 1555         17/02/2014    16
## 1556         17/03/2006    16
## 1557         17/03/2009    16
## 1558         17/04/2008    16
## 1559         17/09/2008    16
## 1560         18/01/2012    16
## 1561         18/02/2008    16
## 1562         18/03/2010    16
## 1563         19/02/2007    16
## 1564         19/06/2006    16
## 1565         19/08/2011    16
## 1566         19/09/2006    16
## 1567         19/10/2010    16
## 1568         19/10/2011    16
## 1569         19/12/2012    16
## 1570         20/05/2009    16
## 1571         20/05/2011    16
## 1572         20/06/2007    16
## 1573         21/03/2013    16
## 1574         21/06/2007    16
## 1575         21/07/2006    16
## 1576         21/07/2011    16
## 1577         21/08/2006    16
## 1578         22/09/2005    16
## 1579         22/11/2013    16
## 1580         23/02/2006    16
## 1581         23/03/2012    16
## 1582         24/03/2006    16
## 1583         24/05/2005    16
## 1584         24/09/2010    16
## 1585         24/12/2012    16
## 1586         25/07/2013    16
## 1587         25/08/2011    16
## 1588         25/10/2006    16
## 1589         26/04/2011    16
## 1590         26/06/2012    16
## 1591         26/10/2009    16
## 1592         27/06/2007    16
## 1593         27/10/2006    16
## 1594         27/12/2013    16
## 1595         28/01/2009    16
## 1596         28/02/2013    16
## 1597         28/05/2009    16
## 1598         28/09/2011    16
## 1599         28/09/2012    16
## 1600         28/10/2011    16
## 1601         28/11/2006    16
## 1602         29/03/2012    16
## 1603         29/06/2014    16
## 1604         29/09/2011    16
## 1605         29/12/2010    16
## 1606         29/12/2011    16
## 1607         30/05/2007    16
## 1608         30/06/2010    16
## 1609         30/08/2012    16
## 1610         30/11/2009    16
## 1611         30/12/2011    16
## 1612         01/02/2008    15
## 1613         01/04/2009    15
## 1614         01/07/2008    15
## 1615         01/07/2010    15
## 1616         01/11/2007    15
## 1617         01/11/2012    15
## 1618         01/11/2013    15
## 1619         01/12/2006    15
## 1620         01/12/2009    15
## 1621         02/07/2008    15
## 1622         02/12/2010    15
## 1623         03/02/2011    15
## 1624         03/03/2006    15
## 1625         04/03/2009    15
## 1626         04/05/2005    15
## 1627         04/05/2007    15
## 1628         04/06/2014    15
## 1629         04/08/2012    15
## 1630         04/08/2013    15
## 1631         04/09/2012    15
## 1632         04/11/2008    15
## 1633         04/11/2010    15
## 1634         04/12/2006    15
## 1635         05/06/2014    15
## 1636         05/09/2013    15
## 1637         05/12/2006    15
## 1638         06/04/2009    15
## 1639         06/12/2006    15
## 1640         07/06/2013    15
## 1641         07/07/2008    15
## 1642         07/11/2012    15
## 1643         08/01/2008    15
## 1644         08/02/2010    15
## 1645         08/03/2012    15
## 1646         09/05/2006    15
## 1647         09/06/2005    15
## 1648         10/01/2007    15
## 1649         10/01/2012    15
## 1650         10/08/2006    15
## 1651         10/08/2010    15
## 1652         10/10/2012    15
## 1653         10/11/2005    15
## 1654         11/05/2009    15
## 1655         11/05/2011    15
## 1656         11/06/2013    15
## 1657         11/07/2012    15
## 1658         12/04/2006    15
## 1659         12/06/2012    15
## 1660         12/09/2005    15
## 1661         12/09/2006    15
## 1662         12/12/2008    15
## 1663         13/02/2014    15
## 1664         13/05/2005    15
## 1665         13/06/2006    15
## 1666         13/08/2012    15
## 1667         13/09/2006    15
## 1668         13/09/2007    15
## 1669         13/09/2013    15
## 1670         13/11/2013    15
## 1671         14/03/2000    15
## 1672         14/06/2013    15
## 1673         14/07/2006    15
## 1674         14/07/2010    15
## 1675         14/11/2008    15
## 1676         14/12/2007    15
## 1677         14/12/2011    15
## 1678         15/01/2007    15
## 1679         15/01/2009    15
## 1680         15/12/2009    15
## 1681         15/12/2010    15
## 1682         16/01/2009    15
## 1683         16/06/2005    15
## 1684         17/02/2010    15
## 1685         18/02/2009    15
## 1686         18/04/2012    15
## 1687         20/02/2014    15
## 1688         20/08/2007    15
## 1689         20/08/2008    15
## 1690         20/10/2011    15
## 1691         20/10/2013    15
## 1692         20/11/2007    15
## 1693         20/11/2013    15
## 1694         20/12/2013    15
## 1695         21/04/2005    15
## 1696         21/11/2005    15
## 1697         21/11/2006    15
## 1698         22/01/2013    15
## 1699         22/02/2008    15
## 1700         22/08/2013    15
## 1701         22/10/2009    15
## 1702         23/02/2009    15
## 1703         23/04/2012    15
## 1704         24/03/2013    15
## 1705         24/05/2006    15
## 1706         24/08/2011    15
## 1707         24/10/2005    15
## 1708         24/10/2013    15
## 1709         25/02/2010    15
## 1710         25/02/2011    15
## 1711         25/03/2009    15
## 1712         25/04/2012    15
## 1713         26/02/2014    15
## 1714         26/09/2013    15
## 1715         27/10/2009    15
## 1716         28/04/2013    15
## 1717         28/06/2006    15
## 1718         29/01/2008    15
## 1719         29/01/2009    15
## 1720         29/05/2009    15
## 1721         29/07/2005    15
## 1722         29/11/2012    15
## 1723         30/01/2007    15
## 1724         30/03/2011    15
## 1725         30/04/2012    15
## 1726         30/07/2010    15
## 1727         30/09/2011    15
## 1728         01/04/2005    14
## 1729         01/05/2007    14
## 1730         01/05/2014    14
## 1731         01/06/2009    14
## 1732         01/07/2005    14
## 1733         02/03/2005    14
## 1734         02/04/2012    14
## 1735         02/04/2013    14
## 1736         02/06/2013    14
## 1737         03/02/2014    14
## 1738         03/08/2005    14
## 1739         04/01/2010    14
## 1740         04/05/2010    14
## 1741         04/05/2011    14
## 1742         05/02/2009    14
## 1743         05/02/2013    14
## 1744         05/04/2011    14
## 1745         05/06/2012    14
## 1746         06/01/2006    14
## 1747         06/01/2012    14
## 1748         06/06/2006    14
## 1749         06/07/2005    14
## 1750         06/12/2013    14
## 1751         07/01/2014    14
## 1752         07/03/2005    14
## 1753         07/03/2013    14
## 1754         07/07/2010    14
## 1755         07/10/2009    14
## 1756         08/02/2007    14
## 1757         08/11/2006    14
## 1758         08/12/2010    14
## 1759         08/12/2013    14
## 1760         09/01/2012    14
## 1761         09/07/2008    14
## 1762         09/11/2009    14
## 1763         09/11/2011    14
## 1764         10/01/2006    14
## 1765         10/01/2010    14
## 1766         10/01/2014    14
## 1767         10/03/2009    14
## 1768         10/04/2006    14
## 1769         10/08/2011    14
## 1770         11/01/2011    14
## 1771         11/03/2010    14
## 1772         11/04/2006    14
## 1773         11/07/2006    14
## 1774         12/01/2011    14
## 1775         12/07/2007    14
## 1776         13/03/2011    14
## 1777         13/03/2014    14
## 1778         13/04/2006    14
## 1779         13/05/2011    14
## 1780         13/11/2009    14
## 1781         13/12/2005    14
## 1782         14/05/2012    14
## 1783         14/06/2007    14
## 1784         14/10/2005    14
## 1785         14/10/2010    14
## 1786         14/11/2011    14
## 1787         14/11/2013    14
## 1788         14/12/2006    14
## 1789         15/01/2010    14
## 1790         15/05/2009    14
## 1791         16/01/2011    14
## 1792         16/01/2014    14
## 1793         16/06/2011    14
## 1794         16/08/2012    14
## 1795         16/09/2012    14
## 1796         16/11/2007    14
## 1797         17/03/2008    14
## 1798         17/07/2006    14
## 1799         17/10/2013    14
## 1800         18/01/2006    14
## 1801         18/03/2008    14
## 1802         18/03/2009    14
## 1803         18/05/2011    14
## 1804         18/12/2002    14
## 1805         19/03/2011    14
## 1806         19/07/2011    14
## 1807         19/10/2007    14
## 1808         19/10/2013    14
## 1809         19/12/2009    14
## 1810         20/03/2008    14
## 1811         20/03/2009    14
## 1812         20/04/2010    14
## 1813         20/05/2012    14
## 1814         21/01/2011    14
## 1815         21/01/2014    14
## 1816         21/02/2008    14
## 1817         21/04/2006    14
## 1818         21/05/2008    14
## 1819         21/06/2005    14
## 1820         22/05/2009    14
## 1821         23/01/2007    14
## 1822         23/01/2009    14
## 1823         23/06/2005    14
## 1824         23/08/2012    14
## 1825         25/01/2011    14
## 1826         25/07/2007    14
## 1827         25/10/2012    14
## 1828         25/12/2012    14
## 1829         26/01/2006    14
## 1830         26/03/2007    14
## 1831         26/04/2007    14
## 1832         26/05/2009    14
## 1833         26/05/2011    14
## 1834         26/07/2011    14
## 1835         27/03/2009    14
## 1836         27/06/2006    14
## 1837         28/01/2010    14
## 1838         28/04/2005    14
## 1839         28/05/2008    14
## 1840         29/05/2013    14
## 1841         30/01/2012    14
## 1842         30/05/2006    14
## 1843         31/08/2013    14
## 1844         01/01/2014    13
## 1845         02/04/2010    13
## 1846         02/06/2011    13
## 1847         03/01/2013    13
## 1848         03/05/2005    13
## 1849         03/06/2011    13
## 1850         03/10/2005    13
## 1851         04/01/2011    13
## 1852         04/06/2013    13
## 1853         04/10/2006    13
## 1854         04/12/2011    13
## 1855         04/12/2012    13
## 1856         05/01/2009    13
## 1857         05/05/2011    13
## 1858         05/05/2012    13
## 1859         05/08/2013    13
## 1860         05/09/2006    13
## 1861         05/10/2009    13
## 1862         05/12/2011    13
## 1863         05/12/2012    13
## 1864         06/05/2014    13
## 1865         06/06/2005    13
## 1866         06/10/2006    13
## 1867         07/03/2006    13
## 1868         07/06/2011    13
## 1869         07/09/2006    13
## 1870         08/02/2006    13
## 1871         08/06/2007    13
## 1872         09/03/2009    13
## 1873         09/05/2013    13
## 1874         09/12/2011    13
## 1875         10/05/2013    13
## 1876         10/12/2011    13
## 1877         11/02/2009    13
## 1878         11/05/2010    13
## 1879         11/12/2006    13
## 1880         11/12/2013    13
## 1881         12/01/2010    13
## 1882         12/02/2008    13
## 1883         12/04/2010    13
## 1884         12/05/2006    13
## 1885         12/05/2013    13
## 1886         12/08/2013    13
## 1887         12/10/2010    13
## 1888         12/10/2012    13
## 1889         12/10/2013    13
## 1890         12/11/2010    13
## 1891         12/12/2011    13
## 1892         13/08/2010    13
## 1893         13/09/2011    13
## 1894         13/10/2006    13
## 1895         14/01/2013    13
## 1896         14/07/2008    13
## 1897         14/09/2010    13
## 1898         14/12/2013    13
## 1899         15/03/2011    13
## 1900         15/04/2011    13
## 1901         15/10/2010    13
## 1902         16/02/2007    13
## 1903         16/03/2006    13
## 1904         16/04/2013    13
## 1905         16/08/2006    13
## 1906         16/08/2013    13
## 1907         16/11/2005    13
## 1908         17/02/2006    13
## 1909         17/08/2005    13
## 1910         17/11/2011    13
## 1911         17/12/2011    13
## 1912         18/03/2011    13
## 1913         18/08/2005    13
## 1914         19/02/2010    13
## 1915         19/05/2005    13
## 1916         19/07/2012    13
## 1917         19/11/2011    13
## 1918         20/03/2010    13
## 1919         20/07/2012    13
## 1920         21/09/2007    13
## 1921         22/01/2007    13
## 1922         22/02/2012    13
## 1923         22/04/2009    13
## 1924         22/08/2008    13
## 1925         22/10/2007    13
## 1926         23/03/2011    13
## 1927         23/05/2005    13
## 1928         23/09/2009    13
## 1929         24/02/2006    13
## 1930         24/07/2008    13
## 1931         24/11/2009    13
## 1932         25/03/2011    13
## 1933         25/08/2013    13
## 1934         25/09/2011    13
## 1935         26/05/2005    13
## 1936         27/02/2014    13
## 1937         27/03/2013    13
## 1938         27/05/2013    13
## 1939         28/03/2011    13
## 1940         28/04/2011    13
## 1941         28/10/2010    13
## 1942         29/04/2008    13
## 1943         29/06/2010    13
## 1944         29/07/2010    13
## 1945         29/08/2012    13
## 1946         29/09/2005    13
## 1947         30/01/2013    13
## 1948         31/12/2012    13
## 1949         01/01/2012    12
## 1950         01/05/2012    12
## 1951         01/08/2010    12
## 1952         01/10/2010    12
## 1953         02/04/2009    12
## 1954         02/09/2005    12
## 1955         02/09/2009    12
## 1956         02/09/2011    12
## 1957         02/10/2011    12
## 1958         02/11/2012    12
## 1959         02/12/2005    12
## 1960         03/04/2007    12
## 1961         03/05/2006    12
## 1962         03/08/2012    12
## 1963         03/09/2013    12
## 1964         03/10/2006    12
## 1965         03/10/2012    12
## 1966         03/10/2013    12
## 1967         03/12/2013    12
## 1968         04/10/2012    12
## 1969         05/10/2006    12
## 1970         05/12/2007    12
## 1971         06/02/2009    12
## 1972         06/06/2007    12
## 1973         06/07/2006    12
## 1974         06/07/2012    12
## 1975         06/09/2012    12
## 1976         06/11/2012    12
## 1977         07/02/2011    12
## 1978         07/05/2014    12
## 1979         07/11/2006    12
## 1980         08/03/2013    12
## 1981         08/04/2009    12
## 1982         08/08/2006    12
## 1983         09/05/2012    12
## 1984         09/08/2005    12
## 1985         09/08/2010    12
## 1986         09/08/2013    12
## 1987         09/10/2006    12
## 1988         09/10/2007    12
## 1989         09/10/2009    12
## 1990         09/11/2006    12
## 1991         10/11/2006    12
## 1992         11/02/2008    12
## 1993         11/09/2006    12
## 1994         11/11/2011    12
## 1995         12/01/2012    12
## 1996         12/03/2012    12
## 1997         12/04/2011    12
## 1998         12/10/2007    12
## 1999         13/04/2009    12
## 2000         13/04/2010    12
## 2001         13/07/2011    12
## 2002         15/09/2011    12
## 2003         15/11/2005    12
## 2004         16/02/2011    12
## 2005         16/04/2012    12
## 2006         16/08/2010    12
## 2007         16/09/2005    12
## 2008         16/10/2009    12
## 2009         16/11/2012    12
## 2010         16/11/2013    12
## 2011         16/12/2012    12
## 2012         17/01/2007    12
## 2013         17/07/2007    12
## 2014         18/01/2007    12
## 2015         18/06/2007    12
## 2016         19/01/2012    12
## 2017         19/03/2010    12
## 2018         19/07/2013    12
## 2019         20/02/2006    12
## 2020         20/05/2005    12
## 2021         20/07/2006    12
## 2022         21/10/2010    12
## 2023         21/11/2013    12
## 2024         22/05/2008    12
## 2025         22/05/2011    12
## 2026         22/06/2014    12
## 2027         22/08/2006    12
## 2028         23/03/2010    12
## 2029         23/07/2012    12
## 2030         23/11/2010    12
## 2031         23/11/2013    12
## 2032         23/12/2010    12
## 2033         24/01/2013    12
## 2034         24/02/2010    12
## 2035         25/01/2006    12
## 2036         25/04/2007    12
## 2037         25/04/2011    12
## 2038         25/07/2012    12
## 2039         26/01/2014    12
## 2040         26/03/2008    12
## 2041         26/05/2006    12
## 2042         26/07/2005    12
## 2043         26/10/2012    12
## 2044         27/02/2006    12
## 2045         27/02/2007    12
## 2046         27/02/2012    12
## 2047         27/12/2006    12
## 2048         28/01/2012    12
## 2049         28/02/2000    12
## 2050         28/03/2013    12
## 2051         28/04/2014    12
## 2052         28/06/2014    12
## 2053         28/07/2006    12
## 2054         28/09/2005    12
## 2055         29/01/2014    12
## 2056         29/02/2012    12
## 2057         29/10/2011    12
## 2058         30/03/2009    12
## 2059         30/10/2006    12
## 2060         01/06/2007    11
## 2061         01/08/2013    11
## 2062         01/09/2009    11
## 2063         01/11/2005    11
## 2064         01/12/2011    11
## 2065         02/03/2010    11
## 2066         02/03/2012    11
## 2067         02/06/2009    11
## 2068         02/09/2012    11
## 2069         03/01/2006    11
## 2070         03/02/2009    11
## 2071         03/04/2011    11
## 2072         03/04/2012    11
## 2073         03/05/2011    11
## 2074         04/01/2013    11
## 2075         04/04/2014    11
## 2076         04/05/2013    11
## 2077         04/10/2013    11
## 2078         05/04/2006    11
## 2079         05/07/2000    11
## 2080         05/11/2009    11
## 2081         06/01/2011    11
## 2082         06/02/2008    11
## 2083         06/10/2011    11
## 2084         07/05/2010    11
## 2085         07/06/2012    11
## 2086         07/09/2012    11
## 2087         08/02/2000    11
## 2088         08/02/2012    11
## 2089         08/03/2011    11
## 2090         08/05/2009    11
## 2091         08/12/2006    11
## 2092         09/03/2012    11
## 2093         09/07/2011    11
## 2094         09/11/2013    11
## 2095         09/12/2013    11
## 2096         10/01/2008    11
## 2097         10/02/2013    11
## 2098         10/03/2010    11
## 2099         10/06/2005    11
## 2100         11/02/2010    11
## 2101         12/01/2014    11
## 2102         12/02/2014    11
## 2103         12/07/2012    11
## 2104         12/11/2011    11
## 2105         13/01/2006    11
## 2106         13/04/2013    11
## 2107         13/11/2010    11
## 2108         13/11/2011    11
## 2109         14/01/2009    11
## 2110         14/05/2009    11
## 2111         14/06/2005    11
## 2112         14/06/2009    11
## 2113         15/03/2012    11
## 2114         15/03/2014    11
## 2115         15/12/2013    11
## 2116         16/03/2009    11
## 2117         16/03/2013    11
## 2118         16/04/2007    11
## 2119         16/08/2005    11
## 2120         17/02/2011    11
## 2121         17/05/2011    11
## 2122         18/05/2012    11
## 2123         18/11/2009    11
## 2124         19/04/2012    11
## 2125         19/04/2013    11
## 2126         19/05/2009    11
## 2127         19/08/2005    11
## 2128         19/12/2006    11
## 2129         19/12/2011    11
## 2130         20/01/2009    11
## 2131         20/02/2007    11
## 2132         20/02/2009    11
## 2133         20/04/2006    11
## 2134         21/05/2011    11
## 2135         21/06/2006    11
## 2136         22/01/2008    11
## 2137         22/06/2012    11
## 2138         22/07/2012    11
## 2139         22/09/2011    11
## 2140         22/12/2013    11
## 2141         23/02/2000    11
## 2142         23/09/2012    11
## 2143         23/10/2009    11
## 2144         24/03/2012    11
## 2145         24/04/2009    11
## 2146         24/04/2011    11
## 2147         24/05/2011    11
## 2148         24/07/2006    11
## 2149         24/08/2006    11
## 2150         24/10/2012    11
## 2151         24/11/2013    11
## 2152         24/12/2011    11
## 2153         25/01/2014    11
## 2154         25/02/2009    11
## 2155         25/08/2012    11
## 2156         26/01/2007    11
## 2157         26/06/2008    11
## 2158         26/08/2013    11
## 2159         27/01/2009    11
## 2160         27/04/2009    11
## 2161         27/07/2010    11
## 2162         27/10/2013    11
## 2163         28/02/2012    11
## 2164         29/03/2007    11
## 2165         29/04/2012    11
## 2166         29/07/2008    11
## 2167         30/12/2012    11
## 2168         01/06/2014    10
## 2169         02/03/2009    10
## 2170         02/08/2010    10
## 2171         02/11/2011    10
## 2172         03/06/2005    10
## 2173         03/07/2006    10
## 2174         03/11/2005    10
## 2175         03/12/2008    10
## 2176         04/08/2011    10
## 2177         04/11/2011    10
## 2178         05/01/2010    10
## 2179         05/06/2008    10
## 2180         05/08/2010    10
## 2181         06/03/2012    10
## 2182         06/03/2014    10
## 2183         06/04/2005    10
## 2184         06/04/2006    10
## 2185         07/03/2011    10
## 2186         07/07/2012    10
## 2187         07/08/2011    10
## 2188         07/12/2013    10
## 2189         08/02/2013    10
## 2190         08/03/2000    10
## 2191         08/05/2011    10
## 2192         08/06/2011    10
## 2193         08/07/2012    10
## 2194         08/08/2005    10
## 2195         08/12/2011    10
## 2196         09/02/2009    10
## 2197         09/02/2013    10
## 2198         09/05/2005    10
## 2199         10/01/2013    10
## 2200         10/05/2012    10
## 2201         10/10/2006    10
## 2202         10/12/2010    10
## 2203         11/03/2009    10
## 2204         11/05/2007    10
## 2205         11/08/2010    10
## 2206         11/08/2011    10
## 2207         11/11/2005    10
## 2208         12/01/2013    10
## 2209         12/03/2010    10
## 2210         13/02/2009    10
## 2211         13/07/2010    10
## 2212         13/10/2010    10
## 2213         13/12/2006    10
## 2214         14/06/2012    10
## 2215         15/04/2013    10
## 2216         15/06/2006    10
## 2217         15/06/2013    10
## 2218         15/10/2007    10
## 2219         16/02/2010    10
## 2220         16/02/2012    10
## 2221         16/03/2010    10
## 2222         16/06/2006    10
## 2223         16/06/2012    10
## 2224         17/03/2011    10
## 2225         17/06/2012    10
## 2226         17/09/2011    10
## 2227         18/04/2006    10
## 2228         18/05/2014    10
## 2229         18/07/2006    10
## 2230         18/08/2011    10
## 2231         18/10/2005    10
## 2232         19/09/2008    10
## 2233         19/12/2010    10
## 2234         20/01/2006    10
## 2235         20/03/2012    10
## 2236         20/06/2006    10
## 2237         20/12/2010    10
## 2238         21/01/2012    10
## 2239         21/10/2005    10
## 2240         22/02/2010    10
## 2241         22/06/2013    10
## 2242         23/06/2012    10
## 2243         23/12/2012    10
## 2244         24/05/2014    10
## 2245         24/09/2011    10
## 2246         24/10/2010    10
## 2247         25/07/2011    10
## 2248         25/08/2005    10
## 2249         26/02/2009    10
## 2250         26/11/2011    10
## 2251         27/01/2011    10
## 2252         27/03/2011    10
## 2253         27/04/2013    10
## 2254         28/09/2013    10
## 2255         29/08/2006    10
## 2256         30/01/2006    10
## 2257         30/07/2007    10
## 2258         30/08/2011    10
## 2259         30/12/2010    10
## 2260         31/03/2013    10
## 2261         31/10/2011    10
## 2262         01/01/2011     9
## 2263         01/02/2014     9
## 2264         01/06/2011     9
## 2265         01/09/2012     9
## 2266         01/11/2004     9
## 2267         01/12/2005     9
## 2268         02/02/2013     9
## 2269         02/02/2014     9
## 2270         02/08/2012     9
## 2271         02/11/2006     9
## 2272         02/11/2010     9
## 2273         03/07/2013     9
## 2274         03/08/2006     9
## 2275         03/11/2013     9
## 2276         04/04/2006     9
## 2277         04/07/2007     9
## 2278         04/08/2010     9
## 2279         04/09/2011     9
## 2280         04/12/2009     9
## 2281         05/01/2007     9
## 2282         05/02/2012     9
## 2283         05/06/2007     9
## 2284         05/10/2007     9
## 2285         06/03/2009     9
## 2286         06/03/2010     9
## 2287         06/05/2005     9
## 2288         06/08/2007     9
## 2289         06/10/2012     9
## 2290         06/11/2011     9
## 2291         07/06/2005     9
## 2292         07/06/2014     9
## 2293         07/12/2006     9
## 2294         08/02/2011     9
## 2295         08/06/2014     9
## 2296         08/09/2011     9
## 2297         08/12/2009     9
## 2298         09/09/2011     9
## 2299         09/12/2010     9
## 2300         10/02/2011     9
## 2301         10/03/2013     9
## 2302         10/06/2012     9
## 2303         11/01/2007     9
## 2304         11/04/2005     9
## 2305         11/08/2013     9
## 2306         11/09/2011     9
## 2307         12/03/2009     9
## 2308         12/04/2012     9
## 2309         12/05/2012     9
## 2310         12/06/2011     9
## 2311         13/05/2012     9
## 2312         13/06/2013     9
## 2313         14/01/2012     9
## 2314         14/10/2012     9
## 2315         14/11/2012     9
## 2316         15/02/2011     9
## 2317         15/02/2014     9
## 2318         15/07/2011     9
## 2319         15/08/2006     9
## 2320         15/08/2013     9
## 2321         15/09/2005     9
## 2322         16/03/2004     9
## 2323         16/09/2011     9
## 2324         16/10/2011     9
## 2325         17/01/2014     9
## 2326         17/03/2013     9
## 2327         17/10/2007     9
## 2328         17/11/2012     9
## 2329         18/01/2013     9
## 2330         18/08/2008     9
## 2331         18/09/2009     9
## 2332         19/01/2010     9
## 2333         19/03/2007     9
## 2334         19/08/2012     9
## 2335         19/11/2005     9
## 2336         20/04/2007     9
## 2337         20/07/2011     9
## 2338         20/10/2005     9
## 2339         21/04/2011     9
## 2340         21/09/2013     9
## 2341         21/11/2007     9
## 2342         22/02/2000     9
## 2343         22/03/2012     9
## 2344         22/03/2014     9
## 2345         22/07/2011     9
## 2346         22/09/2009     9
## 2347         22/09/2013     9
## 2348         22/12/2011     9
## 2349         23/02/2013     9
## 2350         23/09/2005     9
## 2351         24/01/2010     9
## 2352         24/01/2011     9
## 2353         24/01/2012     9
## 2354         24/02/2012     9
## 2355         24/07/2011     9
## 2356         24/09/2001     9
## 2357         25/03/2012     9
## 2358         25/06/2009     9
## 2359         25/07/2005     9
## 2360         25/08/2006     9
## 2361         26/10/2006     9
## 2362         26/12/2008     9
## 2363         27/03/2006     9
## 2364         27/03/2007     9
## 2365         27/05/2009     9
## 2366         27/07/2012     9
## 2367         27/10/2010     9
## 2368         27/11/2011     9
## 2369         27/12/2007     9
## 2370         28/12/2006     9
## 2371         29/05/2007     9
## 2372         29/09/2010     9
## 2373         29/12/2006     9
## 2374         01/07/2007     8
## 2375         01/08/2006     8
## 2376         01/10/2012     8
## 2377         02/02/2009     8
## 2378         02/06/2006     8
## 2379         02/08/2005     8
## 2380         03/04/2010     8
## 2381         03/12/2009     8
## 2382         03/12/2011     8
## 2383         04/02/2011     8
## 2384         04/02/2012     8
## 2385         04/05/2012     8
## 2386         05/05/2009     8
## 2387         05/08/2012     8
## 2388         05/11/2002     8
## 2389         06/04/2013     8
## 2390         06/04/2014     8
## 2391         06/12/2010     8
## 2392         07/04/2009     8
## 2393         08/01/2012     8
## 2394         08/09/2009     8
## 2395         09/09/2005     8
## 2396         11/01/2013     8
## 2397         11/05/2004     8
## 2398         11/07/2013     8
## 2399         11/12/2011     8
## 2400         12/01/2007     8
## 2401         12/02/2009     8
## 2402         12/02/2011     8
## 2403         12/04/2014     8
## 2404         12/09/2010     8
## 2405         12/12/2010     8
## 2406         13/02/2011     8
## 2407         13/04/2011     8
## 2408         13/04/2012     8
## 2409         13/07/2006     8
## 2410         13/10/2013     8
## 2411         14/09/2009     8
## 2412         14/11/2006     8
## 2413         15/05/2008     8
## 2414         16/02/2008     8
## 2415         16/08/2011     8
## 2416         16/11/2001     8
## 2417         17/01/2008     8
## 2418         17/01/2013     8
## 2419         17/04/2012     8
## 2420         17/05/2014     8
## 2421         17/07/2011     8
## 2422         17/08/2010     8
## 2423         17/08/2012     8
## 2424         18/01/2014     8
## 2425         18/02/2012     8
## 2426         19/07/2005     8
## 2427         19/10/2009     8
## 2428         20/07/2005     8
## 2429         21/02/2006     8
## 2430         21/04/2009     8
## 2431         21/04/2012     8
## 2432         21/05/2009     8
## 2433         21/08/2011     8
## 2434         22/07/2005     8
## 2435         22/10/2010     8
## 2436         22/11/2006     8
## 2437         23/03/2013     8
## 2438         23/08/2011     8
## 2439         24/08/2007     8
## 2440         24/08/2012     8
## 2441         25/05/2006     8
## 2442         25/12/2010     8
## 2443         26/01/2011     8
## 2444         26/02/2010     8
## 2445         26/05/2013     8
## 2446         26/07/2007     8
## 2447         26/12/2010     8
## 2448         27/10/2012     8
## 2449         28/05/2012     8
## 2450         28/11/2010     8
## 2451         28/12/2001     8
## 2452         28/12/2013     8
## 2453         29/02/2000     8
## 2454         29/06/2009     8
## 2455         29/08/2013     8
## 2456         29/10/2010     8
## 2457         29/11/2005     8
## 2458         29/12/2012     8
## 2459         30/01/2009     8
## 2460         30/03/2013     8
## 2461         30/12/2002     8
## 2462         01/03/2005     7
## 2463         01/06/2013     7
## 2464         02/01/2007     7
## 2465         02/01/2014     7
## 2466         02/02/2012     7
## 2467         03/08/2013     7
## 2468         03/12/2005     7
## 2469         04/04/2007     7
## 2470         05/01/2014     7
## 2471         05/12/2005     7
## 2472         06/06/2013     7
## 2473         06/10/2010     7
## 2474         07/01/2011     7
## 2475         07/07/2006     7
## 2476         07/10/2012     7
## 2477         09/02/2012     7
## 2478         10/03/2012     7
## 2479         10/09/2009     7
## 2480         10/11/2013     7
## 2481         11/03/2012     7
## 2482         11/05/2013     7
## 2483         11/07/2008     7
## 2484         12/02/2012     7
## 2485         12/05/2010     7
## 2486         12/06/2002     7
## 2487         12/08/2005     7
## 2488         12/08/2012     7
## 2489         13/01/2009     7
## 2490         13/05/2009     7
## 2491         13/08/2011     7
## 2492         14/02/2014     7
## 2493         14/05/2007     7
## 2494         14/09/2013     7
## 2495         14/12/2012     7
## 2496         15/03/2013     7
## 2497         15/09/2009     7
## 2498         16/04/2010     7
## 2499         16/12/2005     7
## 2500         18/09/2006     7
## 2501         18/09/2010     7
## 2502         18/11/2010     7
## 2503         19/01/2013     7
## 2504         19/06/2014     7
## 2505         20/04/2009     7
## 2506         20/11/2011     7
## 2507         20/12/2012     7
## 2508         21/02/2011     7
## 2509         21/04/2013     7
## 2510         22/04/2011     7
## 2511         22/09/2012     7
## 2512         23/02/2010     7
## 2513         23/04/2009     7
## 2514         23/07/2011     7
## 2515         23/11/2009     7
## 2516         24/06/2009     7
## 2517         24/09/2009     7
## 2518         26/02/2007     7
## 2519         26/04/2013     7
## 2520         26/08/2006     7
## 2521         26/08/2011     7
## 2522         27/01/2012     7
## 2523         27/04/2010     7
## 2524         28/07/2005     7
## 2525         28/07/2013     7
## 2526         28/10/2012     7
## 2527         29/01/2012     7
## 2528         29/07/2012     7
## 2529         30/10/2011     7
## 2530         01/03/2013     6
## 2531         01/05/2011     6
## 2532         02/10/2009     6
## 2533         03/09/2009     6
## 2534         03/11/2011     6
## 2535         03/12/2010     6
## 2536         04/01/2006     6
## 2537         04/07/2012     6
## 2538         05/04/2013     6
## 2539         05/07/2005     6
## 2540         05/10/2005     6
## 2541         06/03/2011     6
## 2542         06/10/2005     6
## 2543         07/01/2002     6
## 2544         07/02/2006     6
## 2545         07/04/2013     6
## 2546         08/09/2013     6
## 2547         08/12/2012     6
## 2548         09/01/2011     6
## 2549         09/03/2013     6
## 2550         09/12/2012     6
## 2551         10/03/2011     6
## 2552         10/11/2011     6
## 2553         11/05/2014     6
## 2554         11/08/2012     6
## 2555         12/08/2011     6
## 2556         12/09/2009     6
## 2557         12/11/2009     6
## 2558         13/01/2004     6
## 2559         13/06/2005     6
## 2560         13/07/2013     6
## 2561         13/08/1999     6
## 2562         14/02/2013     6
## 2563         14/04/2010     6
## 2564         14/06/2014     6
## 2565         14/07/2013     6
## 2566         14/08/2011     6
## 2567         15/03/2010     6
## 2568         15/09/2013     6
## 2569         16/03/2012     6
## 2570         16/12/2011     6
## 2571         17/02/2013     6
## 2572         17/04/2011     6
## 2573         17/11/2007     6
## 2574         18/02/2011     6
## 2575         18/04/2010     6
## 2576         19/02/2011     6
## 2577         19/02/2012     6
## 2578         19/07/2007     6
## 2579         19/11/2009     6
## 2580         19/11/2010     6
## 2581         20/04/2012     6
## 2582         20/07/2013     6
## 2583         20/10/2009     6
## 2584         21/07/2010     6
## 2585         23/01/2011     6
## 2586         24/06/2012     6
## 2587         24/07/2003     6
## 2588         25/09/2009     6
## 2589         25/11/2012     6
## 2590         26/01/2013     6
## 2591         26/04/2014     6
## 2592         26/06/2009     6
## 2593         26/08/2012     6
## 2594         26/09/2005     6
## 2595         27/01/2013     6
## 2596         28/12/2012     6
## 2597         29/01/2011     6
## 2598         29/08/2011     6
## 2599         30/08/2005     6
## 2600         30/11/2013     6
## 2601         31/08/2009     6
## 2602         31/10/2009     6
## 2603         01/01/2013     5
## 2604         01/07/2011     5
## 2605         01/09/2008     5
## 2606         01/12/2012     5
## 2607         02/01/2011     5
## 2608         02/08/2008     5
## 2609         03/02/2012     5
## 2610         03/03/2000     5
## 2611         04/03/2006     5
## 2612         04/10/2010     5
## 2613         04/11/2005     5
## 2614         04/11/2006     5
## 2615         05/05/2013     5
## 2616         05/09/2011     5
## 2617         06/02/2006     5
## 2618         06/05/2012     5
## 2619         07/07/2013     5
## 2620         07/09/2004     5
## 2621         07/09/2013     5
## 2622         08/06/2012     5
## 2623         08/06/2013     5
## 2624         08/10/2003     5
## 2625         08/11/2012     5
## 2626         09/01/2014     5
## 2627         09/06/2013     5
## 2628         10/05/2005     5
## 2629         10/05/2010     5
## 2630         11/02/2000     5
## 2631         11/10/2010     5
## 2632         12/05/2004     5
## 2633         12/08/2010     5
## 2634         13/03/2000     5
## 2635         13/03/2010     5
## 2636         13/04/2014     5
## 2637         13/10/2012     5
## 2638         14/04/2012     5
## 2639         14/11/2010     5
## 2640         15/01/2012     5
## 2641         15/04/2010     5
## 2642         15/05/2011     5
## 2643         15/06/2014     5
## 2644         15/08/2005     5
## 2645         15/11/2001     5
## 2646         16/02/2009     5
## 2647         16/03/2014     5
## 2648         16/06/2013     5
## 2649         16/09/2009     5
## 2650         17/03/2012     5
## 2651         17/08/2011     5
## 2652         17/08/2013     5
## 2653         17/11/2009     5
## 2654         18/02/2010     5
## 2655         18/03/2012     5
## 2656         18/05/2013     5
## 2657         18/08/2013     5
## 2658         18/12/2006     5
## 2659         19/01/2009     5
## 2660         19/01/2014     5
## 2661         19/05/2012     5
## 2662         20/03/2011     5
## 2663         20/11/2009     5
## 2664         21/02/2000     5
## 2665         21/06/2014     5
## 2666         21/07/2005     5
## 2667         21/07/2012     5
## 2668         21/10/2012     5
## 2669         23/04/2011     5
## 2670         23/06/2013     5
## 2671         23/10/2011     5
## 2672         24/05/2012     5
## 2673         24/10/2002     5
## 2674         24/11/2012     5
## 2675         25/08/2009     5
## 2676         26/05/2014     5
## 2677         26/12/2011     5
## 2678         27/01/2006     5
## 2679         27/02/2010     5
## 2680         27/09/2000     5
## 2681         29/03/2014     5
## 2682         29/05/2011     5
## 2683         29/12/2005     5
## 2684         30/05/2011     5
## 2685         30/09/2012     5
## 2686         01/07/2012     4
## 2687         01/09/2011     4
## 2688         02/09/2006     4
## 2689         02/12/2011     4
## 2690         03/04/2003     4
## 2691         03/05/2014     4
## 2692         03/06/2006     4
## 2693         04/03/2012     4
## 2694         04/12/2000     4
## 2695         05/01/2013     4
## 2696         06/04/2012     4
## 2697         06/06/2010     4
## 2698         06/07/2013     4
## 2699         07/02/2007     4
## 2700         08/04/2012     4
## 2701         08/11/2008     4
## 2702         09/02/2014     4
## 2703         09/04/2011     4
## 2704         09/06/2012     4
## 2705         09/09/2009     4
## 2706         09/09/2012     4
## 2707         10/07/2011     4
## 2708         11/02/2012     4
## 2709         11/03/2005     4
## 2710         11/07/2010     4
## 2711         11/11/2012     4
## 2712         11/12/2010     4
## 2713         13/01/2011     4
## 2714         14/07/2011     4
## 2715         14/10/2009     4
## 2716         15/08/2010     4
## 2717         15/09/2012     4
## 2718         15/10/2005     4
## 2719         16/04/2011     4
## 2720         16/07/2011     4
## 2721         17/01/2006     4
## 2722         18/07/2005     4
## 2723         18/07/2010     4
## 2724         18/08/2004     4
## 2725         18/08/2012     4
## 2726         19/04/2009     4
## 2727         19/04/2014     4
## 2728         19/05/2004     4
## 2729         19/06/2011     4
## 2730         19/08/2009     4
## 2731         19/09/2010     4
## 2732         20/02/2011     4
## 2733         20/04/2013     4
## 2734         20/06/2009     4
## 2735         21/02/2005     4
## 2736         21/07/2013     4
## 2737         21/12/2013     4
## 2738         22/09/1999     4
## 2739         23/02/2014     4
## 2740         23/03/2014     4
## 2741         24/09/2005     4
## 2742         25/01/2013     4
## 2743         25/05/2013     4
## 2744         25/05/2014     4
## 2745         25/12/2013     4
## 2746         26/06/2010     4
## 2747         26/07/2013     4
## 2748         26/08/2004     4
## 2749         26/10/2013     4
## 2750         26/12/2006     4
## 2751         27/04/2014     4
## 2752         27/05/2012     4
## 2753         27/11/2006     4
## 2754         27/11/2010     4
## 2755         28/05/2010     4
## 2756         28/10/2006     4
## 2757         29/05/2010     4
## 2758         29/07/2011     4
## 2759         29/09/2013     4
## 2760         29/12/2013     4
## 2761         30/01/2010     4
## 2762         30/06/2012     4
## 2763         31/05/2014     4
## 2764         01/03/2004     3
## 2765         01/04/2012     3
## 2766         01/05/2002     3
## 2767         01/09/2005     3
## 2768         01/09/2006     3
## 2769         02/01/2012     3
## 2770         02/12/2006     3
## 2771         03/05/2001     3
## 2772         04/03/2004     3
## 2773         04/09/2009     3
## 2774         05/03/2011     3
## 2775         05/04/2004     3
## 2776         05/12/2010     3
## 2777         06/06/2009     3
## 2778         06/09/2010     3
## 2779         07/02/2009     3
## 2780         07/03/2007     3
## 2781         07/12/2008     3
## 2782         08/02/2005     3
## 2783         08/02/2014     3
## 2784         08/03/2005     3
## 2785         09/09/2004     3
## 2786         10/04/2003     3
## 2787         10/05/2014     3
## 2788         11/02/2002     3
## 2789         11/08/2009     3
## 2790         11/10/2004     3
## 2791         12/08/2009     3
## 2792         12/10/2008     3
## 2793         13/05/2004     3
## 2794         13/08/2004     3
## 2795         13/09/2001     3
## 2796         13/12/2009     3
## 2797         14/02/2001     3
## 2798         14/05/2011     3
## 2799         14/07/2012     3
## 2800         14/08/2003     3
## 2801         14/09/2005     3
## 2802         15/04/2012     3
## 2803         15/11/2009     3
## 2804         16/01/2010     3
## 2805         16/08/2004     3
## 2806         16/10/2010     3
## 2807         17/05/2002     3
## 2808         17/05/2004     3
## 2809         17/08/1999     3
## 2810         17/10/2010     3
## 2811         17/12/2001     3
## 2812         18/09/2011     3
## 2813         18/11/2012     3
## 2814         19/03/2003     3
## 2815         19/04/2002     3
## 2816         19/07/2002     3
## 2817         20/01/2013     3
## 2818         20/04/2014     3
## 2819         20/06/2010     3
## 2820         20/08/2011     3
## 2821         21/11/2010     3
## 2822         22/01/2012     3
## 2823         22/02/2014     3
## 2824         22/04/2012     3
## 2825         24/02/2008     3
## 2826         24/08/2013     3
## 2827         24/12/2008     3
## 2828         26/02/2011     3
## 2829         26/02/2012     3
## 2830         26/03/2011     3
## 2831         27/01/2007     3
## 2832         27/02/2001     3
## 2833         27/03/2010     3
## 2834         27/08/2009     3
## 2835         28/04/2012     3
## 2836         28/06/2001     3
## 2837         28/06/2008     3
## 2838         28/08/2009     3
## 2839         30/01/2003     3
## 2840         30/06/2013     3
## 2841         30/10/2010     3
## 2842         31/08/2004     3
## 2843         31/12/2011     3
## 2844         01/09/2004     2
## 2845         02/03/2013     2
## 2846         02/04/2011     2
## 2847         02/08/2004     2
## 2848         03/07/2003     2
## 2849         03/07/2010     2
## 2850         03/10/2009     2
## 2851         04/04/2009     2
## 2852         04/06/2005     2
## 2853         04/07/2005     2
## 2854         04/09/2002     2
## 2855         04/10/2000     2
## 2856         04/10/2002     2
## 2857         05/04/2008     2
## 2858         05/06/2010     2
## 2859         05/06/2011     2
## 2860         06/02/2011     2
## 2861         06/04/2004     2
## 2862         06/04/2008     2
## 2863         06/05/2004     2
## 2864         06/08/2009     2
## 2865         06/08/2011     2
## 2866         06/09/2008     2
## 2867         06/12/2004     2
## 2868         07/01/2004     2
## 2869         07/02/2001     2
## 2870         07/04/2003     2
## 2871         07/06/2008     2
## 2872         07/07/2009     2
## 2873         07/08/2009     2
## 2874         07/10/2006     2
## 2875         07/11/2005     2
## 2876         08/01/2004     2
## 2877         08/02/2009     2
## 2878         08/03/2014     2
## 2879         08/04/2003     2
## 2880         08/08/2002     2
## 2881         08/08/2010     2
## 2882         08/10/2011     2
## 2883         08/11/2004     2
## 2884         08/12/2000     2
## 2885         09/02/2000     2
## 2886         09/03/2005     2
## 2887         09/07/2002     2
## 2888         09/09/2007     2
## 2889         09/10/2010     2
## 2890         10/02/2000     2
## 2891         10/02/2008     2
## 2892         10/03/2005     2
## 2893         10/03/2007     2
## 2894         10/05/2004     2
## 2895         10/07/2009     2
## 2896         10/07/2010     2
## 2897         10/08/2012     2
## 2898         10/08/2013     2
## 2899         10/09/2011     2
## 2900         11/03/2003     2
## 2901         11/08/2003     2
## 2902         11/11/2006     2
## 2903         13/02/2002     2
## 2904         13/09/2008     2
## 2905         13/12/2008     2
## 2906         14/04/2006     2
## 2907         14/05/2001     2
## 2908         14/08/2010     2
## 2909         14/11/2002     2
## 2910         15/07/2002     2
## 2911         15/07/2003     2
## 2912         15/07/2012     2
## 2913         15/09/2004     2
## 2914         15/10/2011     2
## 2915         15/11/2004     2
## 2916         16/02/2005     2
## 2917         16/07/2002     2
## 2918         16/08/2008     2
## 2919         17/01/2001     2
## 2920         17/06/2006     2
## 2921         17/06/2011     2
## 2922         17/07/2010     2
## 2923         17/12/2004     2
## 2924         18/02/2002     2
## 2925         18/06/2005     2
## 2926         18/06/2011     2
## 2927         18/08/2000     2
## 2928         18/08/2003     2
## 2929         18/10/2008     2
## 2930         18/12/2010     2
## 2931         19/01/2005     2
## 2932         19/08/2006     2
## 2933         19/10/2004     2
## 2934         19/10/2008     2
## 2935         19/11/2003     2
## 2936         20/05/2004     2
## 2937         20/10/2012     2
## 2938         20/11/2010     2
## 2939         21/02/2009     2
## 2940         21/04/2004     2
## 2941         21/10/2006     2
## 2942         22/11/2008     2
## 2943         23/07/2004     2
## 2944         23/10/2010     2
## 2945         23/11/2004     2
## 2946         24/02/2000     2
## 2947         24/03/2003     2
## 2948         24/04/2010     2
## 2949         24/05/2009     2
## 2950         24/08/2009     2
## 2951         24/09/2002     2
## 2952         24/10/2009     2
## 2953         25/08/2004     2
## 2954         26/05/2012     2
## 2955         27/02/2011     2
## 2956         27/08/2011     2
## 2957         28/05/2007     2
## 2958         28/10/2004     2
## 2959         28/11/2008     2
## 2960         29/03/2008     2
## 2961         29/04/2003     2
## 2962         29/08/2010     2
## 2963         29/09/2004     2
## 2964         29/09/2007     2
## 2965         29/09/2012     2
## 2966         30/01/2011     2
## 2967         30/04/2004     2
## 2968         30/04/2011     2
## 2969         30/05/2009     2
## 2970         30/07/2011     2
## 2971         31/01/2005     2
## 2972         31/07/2003     2
## 2973         31/07/2009     2
## 2974         31/07/2010     2
## 2975         31/10/2010     2
## 2976         01/02/2000     1
## 2977         01/02/2005     1
## 2978         01/04/2004     1
## 2979         01/04/2007     1
## 2980         01/05/2010     1
## 2981         01/06/1999     1
## 2982         01/06/2000     1
## 2983         01/06/2008     1
## 2984         01/08/2000     1
## 2985         01/12/2007     1
## 2986         02/01/2002     1
## 2987         02/01/2006     1
## 2988         02/02/2001     1
## 2989         02/03/2014     1
## 2990         02/04/2002     1
## 2991         02/04/2006     1
## 2992         02/06/2004     1
## 2993         02/06/2007     1
## 2994         02/07/2002     1
## 2995         02/07/2004     1
## 2996         02/09/2013     1
## 2997         02/10/2003     1
## 2998         02/10/2010     1
## 2999         02/12/2003     1
## 3000         02/12/2004     1
## 3001         03/01/2003     1
## 3002         03/01/2009     1
## 3003         03/02/2003     1
## 3004         03/06/2002     1
## 3005         03/06/2003     1
## 3006         03/09/2005     1
## 3007         03/11/2003     1
## 3008         03/11/2007     1
## 3009         04/01/2014     1
## 3010         04/03/2002     1
## 3011         04/03/2003     1
## 3012         04/04/2001     1
## 3013         04/05/2004     1
## 3014         04/06/1999     1
## 3015         04/06/2001     1
## 3016         04/08/2009     1
## 3017         04/11/2004     1
## 3018         04/12/2003     1
## 3019         04/12/2010     1
## 3020         05/01/2004     1
## 3021         05/02/2001     1
## 3022         05/02/2011     1
## 3023         05/05/2004     1
## 3024         05/06/2002     1
## 3025         05/09/2010     1
## 3026         05/11/2003     1
## 3027         05/11/2004     1
## 3028         05/11/2011     1
## 3029         05/12/2000     1
## 3030         05/12/2009     1
## 3031         06/05/2002     1
## 3032         06/07/2004     1
## 3033         06/08/2004     1
## 3034         06/09/2001     1
## 3035         06/10/1999     1
## 3036         06/12/2000     1
## 3037         06/12/2008     1
## 3038         07/01/2003     1
## 3039         07/01/2006     1
## 3040         07/02/2002     1
## 3041         07/03/2009     1
## 3042         07/03/2010     1
## 3043         07/08/2010     1
## 3044         07/09/2008     1
## 3045         07/09/2009     1
## 3046         07/11/2002     1
## 3047         08/01/2006     1
## 3048         08/01/2011     1
## 3049         08/05/2002     1
## 3050         08/10/2004     1
## 3051         08/11/2002     1
## 3052         09/01/2010     1
## 3053         09/03/2004     1
## 3054         09/05/2001     1
## 3055         09/06/2007     1
## 3056         09/08/2008     1
## 3057         10/01/2003     1
## 3058         10/05/2002     1
## 3059         10/09/2003     1
## 3060         10/09/2005     1
## 3061         10/10/2000     1
## 3062         10/11/2012     1
## 3063         10/12/2001     1
## 3064         10/12/2003     1
## 3065         10/12/2005     1
## 3066         11/01/2000     1
## 3067         11/02/2003     1
## 3068         11/03/2004     1
## 3069         11/03/2006     1
## 3070         11/04/2009     1
## 3071         11/09/2002     1
## 3072         11/09/2003     1
## 3073         11/09/2009     1
## 3074         11/09/2010     1
## 3075         11/10/2008     1
## 3076         11/10/2009     1
## 3077         11/12/2001     1
## 3078         11/12/2002     1
## 3079         11/12/2003     1
## 3080         12/02/2004     1
## 3081         12/04/2008     1
## 3082         12/08/2004     1
## 3083         12/09/2002     1
## 3084         12/11/2004     1
## 3085         12/12/2003     1
## 3086         13/05/2002     1
## 3087         13/05/2006     1
## 3088         13/06/2001     1
## 3089         13/06/2002     1
## 3090         13/07/2004     1
## 3091         13/08/2003     1
## 3092         13/09/2000     1
## 3093         13/09/2004     1
## 3094         13/09/2009     1
## 3095         13/10/2004     1
## 3096         13/11/2001     1
## 3097         13/11/2002     1
## 3098         13/12/2000     1
## 3099         14/01/2005     1
## 3100         14/02/2005     1
## 3101         14/03/2005     1
## 3102         14/03/2010     1
## 3103         14/04/2003     1
## 3104         14/05/2004     1
## 3105         14/07/2000     1
## 3106         14/08/2009     1
## 3107         14/12/1999     1
## 3108         15/01/2003     1
## 3109         15/03/2001     1
## 3110         15/03/2005     1
## 3111         15/03/2008     1
## 3112         15/04/2002     1
## 3113         15/05/2001     1
## 3114         15/06/2004     1
## 3115         15/07/2006     1
## 3116         15/08/2000     1
## 3117         15/08/2002     1
## 3118         15/09/2003     1
## 3119         15/11/2002     1
## 3120         16/03/2005     1
## 3121         16/06/2003     1
## 3122         16/08/1999     1
## 3123         16/09/2006     1
## 3124         16/10/2000     1
## 3125         16/10/2003     1
## 3126         16/11/2004     1
## 3127         16/11/2008     1
## 3128         17/01/2002     1
## 3129         17/01/2009     1
## 3130         17/02/2005     1
## 3131         17/03/2003     1
## 3132         17/04/2001     1
## 3133         17/05/2001     1
## 3134         17/05/2008     1
## 3135         17/06/2002     1
## 3136         17/08/2004     1
## 3137         17/09/2009     1
## 3138         17/10/2002     1
## 3139         17/10/2009     1
## 3140         17/12/1999     1
## 3141         18/01/2002     1
## 3142         18/03/2002     1
## 3143         18/04/2001     1
## 3144         18/04/2009     1
## 3145         18/05/2004     1
## 3146         18/08/2007     1
## 3147         18/08/2009     1
## 3148         18/09/2001     1
## 3149         18/11/2007     1
## 3150         18/12/2003     1
## 3151         18/12/2005     1
## 3152         19/02/2001     1
## 3153         19/02/2004     1
## 3154         19/03/2004     1
## 3155         19/06/2002     1
## 3156         19/07/2008     1
## 3157         19/08/2004     1
## 3158         19/09/2002     1
## 3159         19/09/2009     1
## 3160         19/11/2002     1
## 3161         19/12/2000     1
## 3162         20/02/2010     1
## 3163         20/03/2002     1
## 3164         20/07/2009     1
## 3165         20/08/2001     1
## 3166         20/08/2004     1
## 3167         20/08/2005     1
## 3168         20/08/2009     1
## 3169         20/09/2009     1
## 3170         20/10/2004     1
## 3171         20/12/2008     1
## 3172         21/01/2004     1
## 3173         21/01/2005     1
## 3174         21/03/2009     1
## 3175         21/03/2010     1
## 3176         21/05/2001     1
## 3177         21/06/2004     1
## 3178         21/09/1999     1
## 3179         21/09/2004     1
## 3180         21/09/2008     1
## 3181         21/10/2004     1
## 3182         21/11/2000     1
## 3183         21/11/2002     1
## 3184         21/12/2001     1
## 3185         21/12/2008     1
## 3186         22/01/2004     1
## 3187         22/03/2009     1
## 3188         22/04/2004     1
## 3189         22/05/2003     1
## 3190         22/06/2004     1
## 3191         22/07/2002     1
## 3192         22/07/2006     1
## 3193         22/07/2009     1
## 3194         22/10/2005     1
## 3195         22/11/2004     1
## 3196         23/02/2001     1
## 3197         23/03/2001     1
## 3198         23/05/2003     1
## 3199         23/06/2000     1
## 3200         23/07/2003     1
## 3201         23/08/2008     1
## 3202         23/09/2003     1
## 3203         23/11/2007     1
## 3204         24/01/2001     1
## 3205         24/01/2003     1
## 3206         24/01/2009     1
## 3207         24/02/2003     1
## 3208         24/02/2004     1
## 3209         24/02/2005     1
## 3210         24/03/2005     1
## 3211         24/03/2007     1
## 3212         24/05/2001     1
## 3213         24/05/2008     1
## 3214         24/06/2002     1
## 3215         24/06/2004     1
## 3216         24/07/2009     1
## 3217         24/07/2010     1
## 3218         24/08/2004     1
## 3219         24/11/2004     1
## 3220         24/12/2010     1
## 3221         25/01/2002     1
## 3222         25/01/2005     1
## 3223         25/02/2006     1
## 3224         25/03/2004     1
## 3225         25/05/2001     1
## 3226         25/05/2009     1
## 3227         25/07/2010     1
## 3228         25/09/2003     1
## 3229         25/10/1999     1
## 3230         25/10/2004     1
## 3231         25/11/2003     1
## 3232         25/11/2011     1
## 3233         26/02/2001     1
## 3234         26/03/2004     1
## 3235         26/07/2000     1
## 3236         26/07/2002     1
## 3237         26/08/2009     1
## 3238         26/09/2010     1
## 3239         26/11/2006     1
## 3240         27/01/2005     1
## 3241         27/03/2000     1
## 3242         27/05/2003     1
## 3243         27/05/2011     1
## 3244         27/06/2003     1
## 3245         27/06/2009     1
## 3246         27/07/2009     1
## 3247         27/08/2003     1
## 3248         27/09/2004     1
## 3249         27/09/2009     1
## 3250         27/10/2000     1
## 3251         27/10/2004     1
## 3252         28/03/2000     1
## 3253         28/03/2010     1
## 3254         28/04/2004     1
## 3255         28/07/2003     1
## 3256         28/08/2011     1
## 3257         28/10/1999     1
## 3258         29/01/2004     1
## 3259         29/01/2006     1
## 3260         29/07/2006     1
## 3261         29/09/2000     1
## 3262         29/10/2001     1
## 3263         29/11/2001     1
## 3264         29/11/2004     1
## 3265         29/12/2003     1
## 3266         30/06/2000     1
## 3267         30/06/2004     1
## 3268         30/07/2001     1
## 3269         30/07/2004     1
## 3270         30/08/2004     1
## 3271         30/09/1999     1
## 3272         30/09/2003     1
## 3273         31/01/2002     1
## 3274         31/03/2000     1
## 3275         31/03/2003     1
## 3276         31/03/2012     1
## 3277         31/05/2002     1
## 3278         31/07/2000     1
## 3279         31/12/2010     1
count(db, EmployerNotificationDate, sort=TRUE)
##      EmployerNotificationDate     n
## 1                    #¡VALOR! 22074
## 2                  28/07/1999    68
## 3                  28/01/2004    63
## 4                  01/02/2010    59
## 5                  16/04/1996    55
## 6                  17/04/1996    55
## 7                  15/04/1996    53
## 8                  01/05/1996    49
## 9                  18/04/1996    49
## 10                 30/04/1996    49
## 11                 02/04/1996    48
## 12                 22/04/1996    48
## 13                 26/01/2000    48
## 14                 07/05/1996    47
## 15                 11/04/1996    47
## 16                 14/05/1996    47
## 17                 20/05/1996    47
## 18                 06/05/1996    45
## 19                 02/05/1996    44
## 20                 29/07/1996    44
## 21                 04/04/1996    43
## 22                 07/01/2002    43
## 23                 29/01/2004    43
## 24                 31/01/2000    43
## 25                 25/07/2005    42
## 26                 25/09/2002    42
## 27                 26/04/1996    42
## 28                 01/02/2000    41
## 29                 13/10/1997    41
## 30                 15/05/1996    41
## 31                 23/04/1996    41
## 32                 29/04/1996    41
## 33                 21/06/2006    40
## 34                 24/04/1996    40
## 35                 25/04/1996    40
## 36                 01/08/2000    39
## 37                 16/05/1996    39
## 38                 17/06/1996    39
## 39                 19/04/1996    39
## 40                 23/07/1997    39
## 41                 08/05/1996    38
## 42                 13/05/1998    38
## 43                 17/05/1996    38
## 44                 18/08/2008    38
## 45                 22/01/2008    38
## 46                 01/10/1996    37
## 47                 15/01/1998    37
## 48                 16/07/1997    37
## 49                 22/10/1996    37
## 50                 24/01/2000    37
## 51                 24/03/1998    37
## 52                 25/06/2008    37
## 53                 02/04/2001    36
## 54                 03/03/2009    36
## 55                 08/07/1996    36
## 56                 10/02/1997    36
## 57                 10/07/2013    36
## 58                 12/06/2012    36
## 59                 13/05/1996    36
## 60                 14/06/2006    36
## 61                 17/05/2006    36
## 62                 19/04/2006    36
## 63                 20/08/1996    36
## 64                 20/10/1997    36
## 65                 26/02/1997    36
## 66                 01/04/2004    35
## 67                 03/08/2006    35
## 68                 03/09/1996    35
## 69                 07/10/1996    35
## 70                 08/06/2000    35
## 71                 10/03/1998    35
## 72                 11/06/2013    35
## 73                 11/09/1996    35
## 74                 12/08/2013    35
## 75                 16/08/2000    35
## 76                 16/09/2013    35
## 77                 16/12/2005    35
## 78                 17/02/2003    35
## 79                 17/07/2000    35
## 80                 18/07/2006    35
## 81                 18/09/2012    35
## 82                 19/08/1996    35
## 83                 19/09/2005    35
## 84                 20/02/1998    35
## 85                 21/05/1996    35
## 86                 21/08/1996    35
## 87                 21/08/1997    35
## 88                 21/08/2006    35
## 89                 21/10/1996    35
## 90                 22/06/2006    35
## 91                 22/07/2005    35
## 92                 24/07/2000    35
## 93                 25/07/1996    35
## 94                 27/01/2004    35
## 95                 27/08/2008    35
## 96                 01/06/2011    34
## 97                 02/02/2000    34
## 98                 02/02/2012    34
## 99                 03/11/2011    34
## 100                06/06/1996    34
## 101                10/07/1997    34
## 102                11/06/1997    34
## 103                12/08/2003    34
## 104                13/08/2002    34
## 105                15/03/2007    34
## 106                15/08/2006    34
## 107                15/09/2004    34
## 108                16/06/2011    34
## 109                16/09/1996    34
## 110                19/07/2000    34
## 111                21/07/2005    34
## 112                23/02/2004    34
## 113                23/07/2001    34
## 114                24/06/2004    34
## 115                24/06/2008    34
## 116                25/06/2007    34
## 117                27/03/2001    34
## 118                28/05/1997    34
## 119                28/07/1997    34
## 120                30/07/2012    34
## 121                31/07/2000    34
## 122                01/02/2001    33
## 123                01/04/1996    33
## 124                03/10/2012    33
## 125                07/10/1997    33
## 126                10/04/1996    33
## 127                10/08/2004    33
## 128                10/09/2007    33
## 129                12/01/1999    33
## 130                12/01/2011    33
## 131                12/07/2006    33
## 132                12/11/2003    33
## 133                13/03/2000    33
## 134                13/06/1996    33
## 135                13/06/2006    33
## 136                14/04/2009    33
## 137                15/03/2006    33
## 138                16/01/2001    33
## 139                16/06/2010    33
## 140                16/08/2004    33
## 141                16/10/2008    33
## 142                17/07/2006    33
## 143                18/02/2003    33
## 144                18/02/2013    33
## 145                24/04/2006    33
## 146                25/09/1997    33
## 147                27/06/2000    33
## 148                29/08/1996    33
## 149                30/09/1996    33
## 150                02/02/2010    32
## 151                02/06/2003    32
## 152                06/06/2013    32
## 153                06/09/2006    32
## 154                08/04/1996    32
## 155                08/06/2009    32
## 156                09/05/1996    32
## 157                09/09/1996    32
## 158                09/11/1999    32
## 159                10/03/2004    32
## 160                11/01/2011    32
## 161                12/03/2012    32
## 162                12/05/1997    32
## 163                13/03/1997    32
## 164                13/05/2005    32
## 165                13/06/2001    32
## 166                15/01/2013    32
## 167                15/05/2013    32
## 168                15/07/1996    32
## 169                16/05/2000    32
## 170                18/06/2001    32
## 171                20/06/1996    32
## 172                20/09/2005    32
## 173                22/07/1996    32
## 174                22/09/2003    32
## 175                24/08/2009    32
## 176                24/10/2007    32
## 177                25/10/2000    32
## 178                26/08/1996    32
## 179                28/09/2011    32
## 180                28/10/2004    32
## 181                29/07/2009    32
## 182                29/09/1997    32
## 183                29/09/2005    32
## 184                30/04/2012    32
## 185                30/08/2004    32
## 186                01/02/2006    31
## 187                02/08/1996    31
## 188                03/03/2008    31
## 189                03/05/1996    31
## 190                05/06/2006    31
## 191                05/08/2013    31
## 192                06/08/1996    31
## 193                06/10/2004    31
## 194                07/11/1996    31
## 195                08/01/2002    31
## 196                08/05/2007    31
## 197                09/04/1996    31
## 198                09/08/2013    31
## 199                10/09/1996    31
## 200                10/10/1996    31
## 201                11/03/1998    31
## 202                12/07/2001    31
## 203                12/07/2010    31
## 204                13/06/2005    31
## 205                13/07/2006    31
## 206                14/01/2002    31
## 207                14/03/1997    31
## 208                14/04/1997    31
## 209                14/11/2000    31
## 210                16/04/2002    31
## 211                16/05/2013    31
## 212                17/06/1998    31
## 213                18/05/2006    31
## 214                18/06/2012    31
## 215                19/05/2003    31
## 216                21/01/1997    31
## 217                21/06/2001    31
## 218                21/06/2004    31
## 219                21/10/2013    31
## 220                23/09/2010    31
## 221                24/06/2009    31
## 222                24/07/2013    31
## 223                24/09/1998    31
## 224                25/03/1998    31
## 225                27/06/2012    31
## 226                29/04/2002    31
## 227                29/05/1996    31
## 228                29/06/2004    31
## 229                30/05/2013    31
## 230                31/10/2000    31
## 231                01/04/2008    30
## 232                01/05/2006    30
## 233                01/06/2005    30
## 234                01/08/2013    30
## 235                01/10/1997    30
## 236                02/05/2007    30
## 237                02/07/1997    30
## 238                02/11/2011    30
## 239                03/02/2010    30
## 240                03/04/1996    30
## 241                04/03/2004    30
## 242                04/06/2007    30
## 243                05/11/2013    30
## 244                06/10/1997    30
## 245                06/11/2000    30
## 246                07/07/1997    30
## 247                07/09/2004    30
## 248                08/01/1998    30
## 249                08/06/2004    30
## 250                08/08/2005    30
## 251                08/08/2006    30
## 252                09/07/2013    30
## 253                11/04/2006    30
## 254                11/04/2007    30
## 255                11/04/2013    30
## 256                11/07/2013    30
## 257                12/04/1996    30
## 258                12/07/2007    30
## 259                12/08/1996    30
## 260                12/10/2005    30
## 261                12/12/1996    30
## 262                13/06/2003    30
## 263                13/08/1997    30
## 264                14/06/2012    30
## 265                14/08/2001    30
## 266                15/01/2002    30
## 267                15/09/2011    30
## 268                16/07/2013    30
## 269                16/08/2007    30
## 270                16/10/2007    30
## 271                17/04/1997    30
## 272                17/04/2002    30
## 273                17/07/2013    30
## 274                18/03/1997    30
## 275                18/03/1998    30
## 276                18/06/1997    30
## 277                18/11/1999    30
## 278                19/03/1997    30
## 279                19/07/2012    30
## 280                20/01/1998    30
## 281                20/02/1997    30
## 282                20/05/2009    30
## 283                20/09/1999    30
## 284                21/05/2012    30
## 285                22/05/2012    30
## 286                22/08/2001    30
## 287                23/03/2006    30
## 288                24/05/2005    30
## 289                25/06/2012    30
## 290                26/01/1998    30
## 291                26/07/1996    30
## 292                26/07/1999    30
## 293                27/09/1999    30
## 294                28/03/1996    30
## 295                28/03/2012    30
## 296                29/08/2012    30
## 297                30/05/2002    30
## 298                01/03/2001    29
## 299                01/10/2008    29
## 300                01/11/1996    29
## 301                01/12/1997    29
## 302                03/02/2000    29
## 303                03/07/1997    29
## 304                03/09/1997    29
## 305                03/10/1996    29
## 306                03/10/2002    29
## 307                04/03/1997    29
## 308                04/10/1999    29
## 309                04/10/2001    29
## 310                04/10/2006    29
## 311                05/05/2009    29
## 312                05/06/1997    29
## 313                05/09/1996    29
## 314                06/02/1996    29
## 315                06/07/2000    29
## 316                06/08/2012    29
## 317                06/11/1997    29
## 318                07/01/2009    29
## 319                07/08/1996    29
## 320                08/03/2000    29
## 321                08/10/1997    29
## 322                09/01/1998    29
## 323                09/04/2001    29
## 324                09/07/2007    29
## 325                10/02/2004    29
## 326                10/02/2006    29
## 327                10/09/2001    29
## 328                12/05/2003    29
## 329                12/07/2000    29
## 330                13/02/2006    29
## 331                13/08/2003    29
## 332                14/02/2006    29
## 333                14/06/2005    29
## 334                14/07/2004    29
## 335                14/09/2005    29
## 336                14/12/2005    29
## 337                15/01/1997    29
## 338                15/02/2000    29
## 339                16/03/1998    29
## 340                16/09/2004    29
## 341                16/12/1996    29
## 342                17/02/1997    29
## 343                17/03/2004    29
## 344                17/05/2007    29
## 345                17/08/2006    29
## 346                17/09/1997    29
## 347                17/11/2011    29
## 348                17/12/1997    29
## 349                18/02/1998    29
## 350                18/05/2011    29
## 351                18/09/1996    29
## 352                19/01/2010    29
## 353                19/06/2001    29
## 354                19/08/1999    29
## 355                20/08/2004    29
## 356                20/08/2007    29
## 357                21/01/2013    29
## 358                21/05/2013    29
## 359                21/08/2008    29
## 360                21/08/2013    29
## 361                22/03/2006    29
## 362                22/05/2013    29
## 363                22/06/2009    29
## 364                22/07/1997    29
## 365                23/05/2006    29
## 366                23/08/2011    29
## 367                23/09/1997    29
## 368                23/09/2004    29
## 369                24/01/2001    29
## 370                24/08/1998    29
## 371                25/02/2008    29
## 372                26/06/2000    29
## 373                26/07/2004    29
## 374                26/09/2005    29
## 375                26/09/2013    29
## 376                28/01/2013    29
## 377                28/04/1997    29
## 378                28/06/2004    29
## 379                29/03/2007    29
## 380                29/10/1997    29
## 381                29/11/2000    29
## 382                30/04/2003    29
## 383                30/06/1997    29
## 384                30/07/2008    29
## 385                01/05/2003    28
## 386                01/07/2005    28
## 387                01/07/2008    28
## 388                01/11/2004    28
## 389                02/01/1997    28
## 390                02/07/1999    28
## 391                02/08/2006    28
## 392                03/02/1998    28
## 393                03/03/1998    28
## 394                03/04/1997    28
## 395                03/05/2004    28
## 396                04/02/2003    28
## 397                04/02/2013    28
## 398                04/06/1996    28
## 399                05/04/2002    28
## 400                05/05/2010    28
## 401                05/06/1996    28
## 402                05/08/2003    28
## 403                06/10/2011    28
## 404                06/11/1996    28
## 405                07/07/2000    28
## 406                07/08/2006    28
## 407                07/10/2013    28
## 408                08/05/2012    28
## 409                08/06/2010    28
## 410                08/07/1999    28
## 411                08/08/2011    28
## 412                08/09/1999    28
## 413                08/09/2005    28
## 414                08/12/2004    28
## 415                09/02/2005    28
## 416                09/05/2013    28
## 417                09/07/1997    28
## 418                09/08/2005    28
## 419                10/05/1996    28
## 420                10/05/2007    28
## 421                10/08/2000    28
## 422                10/09/2003    28
## 423                11/07/2006    28
## 424                11/10/1999    28
## 425                12/01/2006    28
## 426                12/01/2009    28
## 427                12/03/1997    28
## 428                12/04/2000    28
## 429                12/05/2010    28
## 430                12/06/1996    28
## 431                12/09/2011    28
## 432                13/01/2011    28
## 433                13/02/1998    28
## 434                13/11/1997    28
## 435                14/05/2001    28
## 436                14/05/2009    28
## 437                14/06/2010    28
## 438                14/08/1996    28
## 439                14/11/2012    28
## 440                15/01/2003    28
## 441                16/09/1997    28
## 442                16/11/2011    28
## 443                16/12/1999    28
## 444                16/12/2010    28
## 445                17/06/1997    28
## 446                17/09/2008    28
## 447                18/05/1998    28
## 448                18/07/2000    28
## 449                18/07/2001    28
## 450                19/05/2004    28
## 451                19/10/2009    28
## 452                20/02/2001    28
## 453                20/02/2013    28
## 454                20/03/2013    28
## 455                20/04/2009    28
## 456                20/05/1997    28
## 457                20/06/2006    28
## 458                20/07/2000    28
## 459                20/10/2004    28
## 460                20/10/2005    28
## 461                21/03/2001    28
## 462                21/05/1997    28
## 463                21/09/2011    28
## 464                21/10/2010    28
## 465                22/01/1997    28
## 466                22/04/2013    28
## 467                22/05/2000    28
## 468                22/06/2005    28
## 469                22/08/2005    28
## 470                23/02/2005    28
## 471                23/03/2000    28
## 472                23/04/2007    28
## 473                23/08/1996    28
## 474                23/08/2000    28
## 475                24/01/2002    28
## 476                25/04/2005    28
## 477                25/06/2013    28
## 478                25/08/1997    28
## 479                26/09/1996    28
## 480                26/09/1997    28
## 481                27/02/2003    28
## 482                27/08/2012    28
## 483                27/09/2000    28
## 484                28/03/2007    28
## 485                28/05/2002    28
## 486                28/07/2004    28
## 487                29/06/1999    28
## 488                29/08/2006    28
## 489                30/01/2006    28
## 490                30/04/2004    28
## 491                30/07/1996    28
## 492                30/10/1996    28
## 493                30/10/2013    28
## 494                31/01/2014    28
## 495                31/05/2007    28
## 496                31/07/2006    28
## 497                01/04/2003    27
## 498                01/08/1996    27
## 499                02/10/1996    27
## 500                02/10/2001    27
## 501                03/02/1997    27
## 502                03/08/2000    27
## 503                03/12/1997    27
## 504                04/05/1998    27
## 505                04/05/2004    27
## 506                04/06/2009    27
## 507                04/08/1999    27
## 508                04/10/2002    27
## 509                04/10/2004    27
## 510                05/04/2005    27
## 511                05/08/2008    27
## 512                05/10/2004    27
## 513                05/11/2008    27
## 514                06/05/2013    27
## 515                06/07/2009    27
## 516                06/08/2003    27
## 517                06/09/2000    27
## 518                06/09/2013    27
## 519                06/12/2005    27
## 520                07/08/2000    27
## 521                08/02/2006    27
## 522                08/04/1998    27
## 523                08/06/2006    27
## 524                08/09/2003    27
## 525                09/01/2001    27
## 526                09/02/2009    27
## 527                09/07/1996    27
## 528                09/07/2012    27
## 529                09/08/1996    27
## 530                09/08/2004    27
## 531                10/01/2008    27
## 532                10/07/2003    27
## 533                10/07/2007    27
## 534                11/06/1998    27
## 535                11/06/2008    27
## 536                11/08/2010    27
## 537                11/09/2003    27
## 538                11/09/2008    27
## 539                11/09/2012    27
## 540                12/05/2004    27
## 541                12/06/1997    27
## 542                12/06/2003    27
## 543                13/01/2000    27
## 544                13/04/2005    27
## 545                13/06/1997    27
## 546                13/06/2000    27
## 547                13/07/2005    27
## 548                13/11/1996    27
## 549                13/11/2000    27
## 550                14/07/2005    27
## 551                14/08/2002    27
## 552                14/10/1997    27
## 553                14/10/2003    27
## 554                14/10/2004    27
## 555                15/04/1997    27
## 556                15/05/2006    27
## 557                15/06/1999    27
## 558                15/06/2006    27
## 559                15/11/2011    27
## 560                15/12/2003    27
## 561                15/12/2005    27
## 562                16/01/2007    27
## 563                16/07/2003    27
## 564                16/07/2007    27
## 565                16/08/2001    27
## 566                16/08/2010    27
## 567                16/11/1998    27
## 568                17/02/2004    27
## 569                17/04/1998    27
## 570                17/06/2003    27
## 571                17/07/1996    27
## 572                17/07/2003    27
## 573                17/08/2004    27
## 574                17/10/2003    27
## 575                18/04/2001    27
## 576                18/07/2012    27
## 577                18/08/1999    27
## 578                19/02/2003    27
## 579                19/03/2013    27
## 580                19/04/2004    27
## 581                19/06/1996    27
## 582                20/01/1999    27
## 583                20/04/1999    27
## 584                20/05/2005    27
## 585                20/06/2007    27
## 586                20/07/1999    27
## 587                20/08/2003    27
## 588                20/08/2012    27
## 589                20/08/2013    27
## 590                20/09/1996    27
## 591                20/09/2006    27
## 592                20/09/2010    27
## 593                20/10/2008    27
## 594                20/10/2010    27
## 595                21/02/2002    27
## 596                21/03/2000    27
## 597                21/03/2007    27
## 598                21/03/2012    27
## 599                21/09/2005    27
## 600                21/10/1997    27
## 601                21/12/2009    27
## 602                22/05/1996    27
## 603                22/10/1997    27
## 604                22/10/2001    27
## 605                23/04/2012    27
## 606                23/04/2013    27
## 607                23/05/2001    27
## 608                23/06/1997    27
## 609                24/02/1997    27
## 610                24/02/1998    27
## 611                24/03/1997    27
## 612                24/07/2007    27
## 613                24/08/2000    27
## 614                24/08/2004    27
## 615                24/09/1996    27
## 616                24/09/2010    27
## 617                25/07/2006    27
## 618                25/09/2013    27
## 619                26/01/2011    27
## 620                26/03/2001    27
## 621                26/04/2002    27
## 622                26/04/2005    27
## 623                26/06/1996    27
## 624                26/08/1999    27
## 625                27/01/2000    27
## 626                27/02/2013    27
## 627                27/06/2006    27
## 628                27/06/2007    27
## 629                27/07/1999    27
## 630                27/07/2000    27
## 631                27/08/1997    27
## 632                27/08/2001    27
## 633                27/08/2004    27
## 634                28/06/2000    27
## 635                28/08/2012    27
## 636                28/10/2002    27
## 637                29/01/1998    27
## 638                29/05/2002    27
## 639                29/10/2001    27
## 640                30/01/2013    27
## 641                30/03/2006    27
## 642                30/06/1999    27
## 643                30/07/2001    27
## 644                30/07/2009    27
## 645                30/10/2000    27
## 646                30/11/2011    27
## 647                31/03/2005    27
## 648                31/07/2012    27
## 649                01/06/1999    26
## 650                01/06/2004    26
## 651                01/08/2001    26
## 652                01/11/1999    26
## 653                02/01/2008    26
## 654                02/06/1997    26
## 655                02/08/2012    26
## 656                02/10/2012    26
## 657                02/11/1999    26
## 658                03/03/1997    26
## 659                03/09/2013    26
## 660                04/01/2006    26
## 661                04/01/2012    26
## 662                04/02/2010    26
## 663                04/03/2014    26
## 664                04/09/2008    26
## 665                04/10/2007    26
## 666                04/12/2000    26
## 667                05/06/1998    26
## 668                05/07/2005    26
## 669                05/09/2007    26
## 670                05/12/2000    26
## 671                06/03/2013    26
## 672                06/04/2006    26
## 673                06/05/2009    26
## 674                06/06/2006    26
## 675                06/07/2004    26
## 676                06/08/1999    26
## 677                06/12/2000    26
## 678                07/03/2006    26
## 679                07/05/1998    26
## 680                07/08/2013    26
## 681                08/01/2007    26
## 682                08/08/1996    26
## 683                08/08/2000    26
## 684                08/08/2001    26
## 685                08/10/2007    26
## 686                08/12/1997    26
## 687                09/03/2011    26
## 688                09/05/2000    26
## 689                09/05/2005    26
## 690                09/06/1998    26
## 691                09/08/2010    26
## 692                09/09/2002    26
## 693                10/02/1998    26
## 694                10/05/2010    26
## 695                10/06/1996    26
## 696                10/08/1999    26
## 697                10/09/2004    26
## 698                10/10/2000    26
## 699                10/10/2001    26
## 700                10/10/2002    26
## 701                10/10/2012    26
## 702                10/12/2012    26
## 703                11/01/2006    26
## 704                11/02/2013    26
## 705                11/04/2001    26
## 706                11/07/2001    26
## 707                11/10/2006    26
## 708                12/03/1998    26
## 709                12/04/2013    26
## 710                12/11/2013    26
## 711                13/03/1998    26
## 712                13/05/1997    26
## 713                13/05/1999    26
## 714                13/05/2008    26
## 715                13/10/2003    26
## 716                13/11/2012    26
## 717                13/12/2000    26
## 718                14/01/2011    26
## 719                14/03/2001    26
## 720                14/05/2007    26
## 721                14/06/2001    26
## 722                15/03/2000    26
## 723                15/06/2007    26
## 724                15/08/1997    26
## 725                15/10/2008    26
## 726                15/10/2013    26
## 727                16/02/2012    26
## 728                16/05/2003    26
## 729                16/05/2007    26
## 730                16/07/1996    26
## 731                16/11/2004    26
## 732                16/11/2005    26
## 733                16/12/2008    26
## 734                17/02/1998    26
## 735                17/06/2008    26
## 736                17/08/2005    26
## 737                18/02/2002    26
## 738                18/04/2000    26
## 739                18/06/1996    26
## 740                18/06/2008    26
## 741                18/08/2010    26
## 742                19/03/2007    26
## 743                19/04/2010    26
## 744                19/05/1998    26
## 745                19/07/2001    26
## 746                19/07/2006    26
## 747                19/08/2013    26
## 748                19/09/2007    26
## 749                20/02/2012    26
## 750                20/04/2004    26
## 751                20/07/2004    26
## 752                20/07/2010    26
## 753                20/08/1999    26
## 754                20/11/2001    26
## 755                21/02/2011    26
## 756                21/06/2012    26
## 757                21/06/2013    26
## 758                21/07/1997    26
## 759                21/10/2003    26
## 760                22/07/2003    26
## 761                22/08/2013    26
## 762                22/09/2005    26
## 763                23/02/2006    26
## 764                23/02/2012    26
## 765                23/03/1998    26
## 766                23/03/2004    26
## 767                23/03/2009    26
## 768                23/04/1997    26
## 769                23/07/2012    26
## 770                23/10/2013    26
## 771                24/04/2002    26
## 772                24/04/2013    26
## 773                24/08/2005    26
## 774                24/09/2001    26
## 775                24/09/2007    26
## 776                24/10/2001    26
## 777                24/10/2002    26
## 778                24/10/2013    26
## 779                25/07/2011    26
## 780                26/06/2002    26
## 781                26/07/2010    26
## 782                26/09/2011    26
## 783                27/03/1996    26
## 784                27/03/2007    26
## 785                27/04/1998    26
## 786                27/04/2005    26
## 787                27/04/2012    26
## 788                28/03/2006    26
## 789                28/05/2008    26
## 790                28/06/1999    26
## 791                28/07/2008    26
## 792                28/09/2004    26
## 793                28/09/2005    26
## 794                28/12/2004    26
## 795                29/01/1997    26
## 796                29/03/2006    26
## 797                29/06/2000    26
## 798                29/06/2011    26
## 799                29/07/1997    26
## 800                30/03/2001    26
## 801                30/04/2008    26
## 802                30/08/1996    26
## 803                30/08/2005    26
## 804                30/09/1997    26
## 805                31/03/2009    26
## 806                01/04/2010    25
## 807                01/05/2000    25
## 808                01/06/2001    25
## 809                01/07/1996    25
## 810                01/08/1997    25
## 811                01/08/2007    25
## 812                01/09/2004    25
## 813                01/10/2001    25
## 814                01/11/2001    25
## 815                01/11/2005    25
## 816                01/11/2012    25
## 817                01/12/2004    25
## 818                02/06/2009    25
## 819                02/07/1996    25
## 820                02/07/2007    25
## 821                02/07/2012    25
## 822                02/09/1997    25
## 823                02/09/1999    25
## 824                02/09/2003    25
## 825                02/09/2009    25
## 826                03/04/2002    25
## 827                03/04/2006    25
## 828                03/06/1997    25
## 829                03/06/2013    25
## 830                03/08/2009    25
## 831                04/06/1997    25
## 832                04/08/2003    25
## 833                04/08/2004    25
## 834                04/10/2012    25
## 835                05/04/1996    25
## 836                05/05/2006    25
## 837                05/06/2000    25
## 838                05/08/2005    25
## 839                05/12/1997    25
## 840                06/02/2013    25
## 841                06/03/2001    25
## 842                06/04/2009    25
## 843                06/06/1997    25
## 844                06/08/2007    25
## 845                06/10/2003    25
## 846                06/10/2010    25
## 847                07/01/1998    25
## 848                07/04/2004    25
## 849                07/05/2002    25
## 850                07/05/2012    25
## 851                07/11/2000    25
## 852                07/12/2000    25
## 853                08/01/2001    25
## 854                08/05/1997    25
## 855                08/05/2002    25
## 856                08/07/2009    25
## 857                08/09/2004    25
## 858                08/10/2012    25
## 859                08/10/2013    25
## 860                08/12/2005    25
## 861                09/02/2012    25
## 862                09/05/1997    25
## 863                09/07/2001    25
## 864                09/10/1997    25
## 865                09/12/2008    25
## 866                09/12/2009    25
## 867                10/04/2013    25
## 868                10/05/2000    25
## 869                10/05/2005    25
## 870                10/06/2003    25
## 871                10/11/2004    25
## 872                11/01/1996    25
## 873                11/03/2004    25
## 874                11/06/2001    25
## 875                11/06/2004    25
## 876                11/07/2003    25
## 877                11/09/1997    25
## 878                12/04/1999    25
## 879                12/05/1999    25
## 880                12/06/2006    25
## 881                12/06/2009    25
## 882                12/07/2004    25
## 883                12/07/2005    25
## 884                12/09/1996    25
## 885                13/01/1997    25
## 886                13/07/2000    25
## 887                13/09/1996    25
## 888                13/09/2011    25
## 889                13/10/1998    25
## 890                13/10/2004    25
## 891                13/11/2013    25
## 892                14/01/2004    25
## 893                14/05/1998    25
## 894                14/06/2011    25
## 895                14/09/2009    25
## 896                14/10/2008    25
## 897                14/10/2009    25
## 898                15/02/2006    25
## 899                15/02/2010    25
## 900                15/03/2012    25
## 901                15/05/2000    25
## 902                15/08/2000    25
## 903                15/08/2012    25
## 904                15/09/2010    25
## 905                16/02/2004    25
## 906                16/04/2003    25
## 907                16/05/2005    25
## 908                16/06/2003    25
## 909                16/08/2005    25
## 910                16/09/2002    25
## 911                16/10/2012    25
## 912                16/11/1999    25
## 913                17/02/2010    25
## 914                17/06/1999    25
## 915                17/08/2000    25
## 916                18/01/2006    25
## 917                18/05/2005    25
## 918                18/06/1998    25
## 919                18/06/2010    25
## 920                18/07/2003    25
## 921                18/08/2000    25
## 922                18/08/2005    25
## 923                18/09/1997    25
## 924                18/10/2012    25
## 925                18/11/2010    25
## 926                18/11/2013    25
## 927                18/12/2002    25
## 928                18/12/2008    25
## 929                19/01/2006    25
## 930                19/05/1997    25
## 931                19/07/1999    25
## 932                19/07/2010    25
## 933                19/10/2000    25
## 934                19/10/2012    25
## 935                19/11/2002    25
## 936                19/11/2003    25
## 937                19/12/2006    25
## 938                20/01/2004    25
## 939                20/03/1998    25
## 940                20/03/2000    25
## 941                20/04/2000    25
## 942                20/06/2003    25
## 943                20/07/2005    25
## 944                20/10/1999    25
## 945                20/11/1996    25
## 946                21/01/2009    25
## 947                21/03/2005    25
## 948                21/05/2001    25
## 949                21/05/2008    25
## 950                21/08/2007    25
## 951                21/09/2009    25
## 952                21/10/1999    25
## 953                22/02/2000    25
## 954                22/04/1997    25
## 955                22/07/1998    25
## 956                22/08/2000    25
## 957                22/10/2007    25
## 958                23/01/1998    25
## 959                23/07/2003    25
## 960                23/09/1996    25
## 961                24/01/2008    25
## 962                24/05/1996    25
## 963                24/05/2004    25
## 964                24/08/2006    25
## 965                25/01/2013    25
## 966                25/03/2003    25
## 967                25/04/1997    25
## 968                25/04/2006    25
## 969                25/05/2005    25
## 970                25/05/2006    25
## 971                25/06/1996    25
## 972                25/07/2007    25
## 973                25/08/2004    25
## 974                25/09/2000    25
## 975                26/01/2005    25
## 976                26/01/2006    25
## 977                26/03/1996    25
## 978                26/03/1998    25
## 979                26/04/2004    25
## 980                26/04/2006    25
## 981                26/08/2005    25
## 982                26/11/2012    25
## 983                27/01/1997    25
## 984                27/02/1997    25
## 985                27/06/2008    25
## 986                27/08/1996    25
## 987                27/09/2011    25
## 988                28/01/2000    25
## 989                28/05/2009    25
## 990                28/06/2006    25
## 991                28/08/1997    25
## 992                28/09/1998    25
## 993                28/09/2000    25
## 994                29/01/2007    25
## 995                29/04/2003    25
## 996                29/08/2005    25
## 997                29/08/2013    25
## 998                29/10/1996    25
## 999                30/05/2012    25
## 1000               30/09/2004    25
## 1001               30/10/2008    25
## 1002               31/01/2012    25
## 1003               31/03/2006    25
## 1004               31/05/2002    25
## 1005               31/07/1996    25
## 1006               31/07/1998    25
## 1007               31/08/2011    25
## 1008               31/10/1997    25
## 1009               31/10/2001    25
## 1010               01/05/2001    24
## 1011               01/08/2006    24
## 1012               01/08/2008    24
## 1013               01/10/2007    24
## 1014               01/10/2009    24
## 1015               01/12/2005    24
## 1016               02/02/2005    24
## 1017               02/04/2003    24
## 1018               02/08/1999    24
## 1019               02/08/2001    24
## 1020               02/11/2000    24
## 1021               03/04/1998    24
## 1022               03/05/2000    24
## 1023               03/05/2001    24
## 1024               03/05/2006    24
## 1025               03/06/1996    24
## 1026               03/10/2000    24
## 1027               03/10/2013    24
## 1028               04/02/2008    24
## 1029               04/03/1998    24
## 1030               04/03/2005    24
## 1031               04/03/2010    24
## 1032               04/04/2001    24
## 1033               04/06/2013    24
## 1034               04/08/1997    24
## 1035               04/08/2010    24
## 1036               04/09/1997    24
## 1037               04/10/2005    24
## 1038               04/11/1996    24
## 1039               04/11/2009    24
## 1040               04/11/2011    24
## 1041               05/03/1998    24
## 1042               05/05/1997    24
## 1043               05/05/2003    24
## 1044               05/05/2008    24
## 1045               05/07/2001    24
## 1046               05/08/1997    24
## 1047               05/10/2011    24
## 1048               05/11/2003    24
## 1049               06/01/2000    24
## 1050               06/03/2002    24
## 1051               06/03/2003    24
## 1052               06/03/2008    24
## 1053               06/04/1998    24
## 1054               06/05/1997    24
## 1055               06/06/2000    24
## 1056               06/06/2008    24
## 1057               06/07/1998    24
## 1058               06/07/1999    24
## 1059               06/08/2009    24
## 1060               06/08/2013    24
## 1061               06/09/2011    24
## 1062               07/01/1997    24
## 1063               07/01/1999    24
## 1064               07/02/2005    24
## 1065               07/02/2013    24
## 1066               07/04/2003    24
## 1067               07/05/1997    24
## 1068               07/06/2005    24
## 1069               07/08/2002    24
## 1070               07/09/2000    24
## 1071               07/11/2008    24
## 1072               08/01/2003    24
## 1073               08/02/2000    24
## 1074               08/07/2010    24
## 1075               08/11/2011    24
## 1076               08/12/1999    24
## 1077               09/02/2010    24
## 1078               09/03/2006    24
## 1079               09/04/1999    24
## 1080               09/05/2012    24
## 1081               09/06/1999    24
## 1082               09/06/2010    24
## 1083               09/10/2013    24
## 1084               09/11/2005    24
## 1085               10/01/2003    24
## 1086               10/03/2009    24
## 1087               10/04/2001    24
## 1088               10/04/2002    24
## 1089               10/05/2004    24
## 1090               10/06/2013    24
## 1091               10/08/2005    24
## 1092               10/09/2008    24
## 1093               11/05/2000    24
## 1094               11/09/2007    24
## 1095               11/10/2004    24
## 1096               12/01/2012    24
## 1097               12/05/2005    24
## 1098               12/06/2000    24
## 1099               12/09/2007    24
## 1100               12/11/1997    24
## 1101               13/02/1997    24
## 1102               13/02/2004    24
## 1103               13/02/2013    24
## 1104               13/03/2007    24
## 1105               13/04/2004    24
## 1106               13/06/2011    24
## 1107               13/08/1999    24
## 1108               13/09/2004    24
## 1109               13/09/2007    24
## 1110               13/09/2012    24
## 1111               13/12/2007    24
## 1112               13/12/2012    24
## 1113               14/02/2012    24
## 1114               14/02/2014    24
## 1115               14/07/2000    24
## 1116               14/09/2001    24
## 1117               15/07/1997    24
## 1118               15/07/1998    24
## 1119               15/10/1997    24
## 1120               15/10/2007    24
## 1121               16/02/2006    24
## 1122               16/04/2008    24
## 1123               16/05/2002    24
## 1124               16/06/2004    24
## 1125               16/08/1999    24
## 1126               16/08/2006    24
## 1127               16/10/2000    24
## 1128               17/05/2002    24
## 1129               17/07/2001    24
## 1130               17/09/1999    24
## 1131               17/10/1997    24
## 1132               17/11/2003    24
## 1133               17/11/2004    24
## 1134               18/02/2014    24
## 1135               18/08/2004    24
## 1136               18/10/1999    24
## 1137               19/04/2000    24
## 1138               19/04/2005    24
## 1139               19/06/2008    24
## 1140               19/10/2005    24
## 1141               20/03/2003    24
## 1142               20/03/2007    24
## 1143               20/06/2012    24
## 1144               20/09/2000    24
## 1145               20/09/2007    24
## 1146               20/11/1997    24
## 1147               20/12/1999    24
## 1148               21/01/1998    24
## 1149               21/02/1997    24
## 1150               21/08/1998    24
## 1151               22/01/2007    24
## 1152               22/01/2014    24
## 1153               22/03/2005    24
## 1154               22/04/2004    24
## 1155               22/07/2002    24
## 1156               22/08/2007    24
## 1157               22/11/1999    24
## 1158               23/02/2011    24
## 1159               23/03/2012    24
## 1160               23/05/1996    24
## 1161               23/06/2006    24
## 1162               23/06/2008    24
## 1163               23/07/1998    24
## 1164               23/09/1999    24
## 1165               23/11/2010    24
## 1166               24/01/2003    24
## 1167               24/04/2007    24
## 1168               24/04/2012    24
## 1169               24/05/2011    24
## 1170               24/06/2013    24
## 1171               24/07/2006    24
## 1172               24/08/2011    24
## 1173               24/10/1997    24
## 1174               25/01/2001    24
## 1175               25/01/2006    24
## 1176               25/03/2008    24
## 1177               25/04/2000    24
## 1178               25/04/2001    24
## 1179               25/04/2007    24
## 1180               25/06/2002    24
## 1181               25/06/2003    24
## 1182               25/07/2001    24
## 1183               25/07/2008    24
## 1184               25/07/2012    24
## 1185               25/08/2005    24
## 1186               25/09/1996    24
## 1187               25/10/2005    24
## 1188               26/03/2013    24
## 1189               26/06/1997    24
## 1190               26/06/2006    24
## 1191               26/09/2000    24
## 1192               27/01/2009    24
## 1193               27/01/2011    24
## 1194               27/05/2009    24
## 1195               27/06/1996    24
## 1196               27/09/1996    24
## 1197               27/10/1999    24
## 1198               28/01/1997    24
## 1199               28/02/2007    24
## 1200               28/04/1999    24
## 1201               28/08/2013    24
## 1202               28/10/2011    24
## 1203               29/03/2001    24
## 1204               29/03/2012    24
## 1205               29/07/2003    24
## 1206               30/01/2002    24
## 1207               30/08/2000    24
## 1208               30/08/2001    24
## 1209               30/11/2009    24
## 1210               30/11/2012    24
## 1211               31/03/2004    24
## 1212               31/07/2007    24
## 1213               01/02/2002    23
## 1214               01/03/2002    23
## 1215               01/03/2005    23
## 1216               01/05/2013    23
## 1217               01/07/1997    23
## 1218               01/07/2009    23
## 1219               01/08/2002    23
## 1220               01/09/2006    23
## 1221               01/09/2009    23
## 1222               01/10/2003    23
## 1223               01/10/2004    23
## 1224               01/11/2007    23
## 1225               01/12/1999    23
## 1226               01/12/2009    23
## 1227               01/12/2010    23
## 1228               02/04/1998    23
## 1229               02/05/2006    23
## 1230               02/06/2004    23
## 1231               02/06/2006    23
## 1232               02/07/2008    23
## 1233               02/09/2008    23
## 1234               02/09/2010    23
## 1235               02/10/1998    23
## 1236               02/10/2007    23
## 1237               02/11/2009    23
## 1238               02/11/2010    23
## 1239               02/12/2011    23
## 1240               03/02/2004    23
## 1241               03/05/2005    23
## 1242               03/07/2006    23
## 1243               03/08/2004    23
## 1244               03/08/2005    23
## 1245               03/10/2001    23
## 1246               03/10/2011    23
## 1247               04/01/2002    23
## 1248               04/02/2004    23
## 1249               04/04/2005    23
## 1250               04/05/2005    23
## 1251               04/06/2003    23
## 1252               04/08/2009    23
## 1253               04/12/2006    23
## 1254               04/12/2007    23
## 1255               05/01/2002    23
## 1256               05/01/2006    23
## 1257               05/02/2001    23
## 1258               05/02/2009    23
## 1259               05/03/2002    23
## 1260               05/03/2004    23
## 1261               05/03/2007    23
## 1262               05/05/2000    23
## 1263               05/08/2004    23
## 1264               05/08/2009    23
## 1265               05/09/2002    23
## 1266               05/09/2012    23
## 1267               05/11/2012    23
## 1268               05/12/2005    23
## 1269               06/01/2005    23
## 1270               06/02/1998    23
## 1271               06/05/1998    23
## 1272               06/05/1999    23
## 1273               06/06/2012    23
## 1274               06/07/2010    23
## 1275               06/08/1997    23
## 1276               06/10/1999    23
## 1277               06/10/2005    23
## 1278               07/02/2012    23
## 1279               07/03/2002    23
## 1280               07/03/2005    23
## 1281               07/04/2010    23
## 1282               07/04/2011    23
## 1283               07/05/2001    23
## 1284               07/06/2006    23
## 1285               07/07/2011    23
## 1286               07/11/2001    23
## 1287               08/02/2013    23
## 1288               08/03/2007    23
## 1289               08/06/2012    23
## 1290               08/08/2008    23
## 1291               08/11/2004    23
## 1292               08/12/2011    23
## 1293               09/01/2004    23
## 1294               09/01/2012    23
## 1295               09/04/1997    23
## 1296               09/07/2002    23
## 1297               09/07/2008    23
## 1298               09/08/2012    23
## 1299               09/09/1997    23
## 1300               09/09/2003    23
## 1301               09/09/2009    23
## 1302               09/10/2012    23
## 1303               10/01/2000    23
## 1304               10/04/2006    23
## 1305               10/05/1999    23
## 1306               10/06/1998    23
## 1307               10/06/1999    23
## 1308               10/06/2005    23
## 1309               10/06/2008    23
## 1310               10/07/2012    23
## 1311               10/08/2011    23
## 1312               10/08/2012    23
## 1313               10/09/2013    23
## 1314               10/10/2006    23
## 1315               10/10/2007    23
## 1316               10/11/1999    23
## 1317               11/01/2013    23
## 1318               11/05/2009    23
## 1319               11/06/1996    23
## 1320               11/07/2008    23
## 1321               11/09/2000    23
## 1322               11/09/2006    23
## 1323               11/10/2000    23
## 1324               11/10/2005    23
## 1325               11/12/2007    23
## 1326               12/02/1998    23
## 1327               12/02/2001    23
## 1328               12/03/2002    23
## 1329               12/04/2005    23
## 1330               12/05/2006    23
## 1331               12/06/1998    23
## 1332               12/06/2002    23
## 1333               12/07/2011    23
## 1334               12/07/2013    23
## 1335               12/08/1997    23
## 1336               12/08/1999    23
## 1337               12/09/2012    23
## 1338               12/12/2007    23
## 1339               13/04/2007    23
## 1340               13/04/2010    23
## 1341               13/05/2004    23
## 1342               13/05/2013    23
## 1343               13/09/2005    23
## 1344               13/12/2002    23
## 1345               14/03/2003    23
## 1346               14/04/1998    23
## 1347               14/04/1999    23
## 1348               14/05/2012    23
## 1349               14/07/2008    23
## 1350               14/08/1997    23
## 1351               14/08/2006    23
## 1352               14/09/2012    23
## 1353               15/01/2004    23
## 1354               15/02/2001    23
## 1355               15/04/2009    23
## 1356               15/04/2010    23
## 1357               15/05/2003    23
## 1358               15/07/2013    23
## 1359               15/08/1996    23
## 1360               15/08/2011    23
## 1361               15/09/2000    23
## 1362               15/12/1999    23
## 1363               16/01/1998    23
## 1364               16/02/1999    23
## 1365               16/02/2005    23
## 1366               16/03/2009    23
## 1367               16/04/2001    23
## 1368               16/04/2007    23
## 1369               16/05/1997    23
## 1370               16/05/2006    23
## 1371               16/05/2011    23
## 1372               16/06/2000    23
## 1373               16/06/2006    23
## 1374               16/08/2011    23
## 1375               16/08/2013    23
## 1376               16/10/2006    23
## 1377               16/10/2013    23
## 1378               17/03/2011    23
## 1379               17/04/2008    23
## 1380               17/04/2012    23
## 1381               17/09/2003    23
## 1382               18/01/2005    23
## 1383               18/03/2009    23
## 1384               18/03/2013    23
## 1385               18/06/2002    23
## 1386               18/06/2004    23
## 1387               18/06/2013    23
## 1388               18/08/2011    23
## 1389               18/09/2000    23
## 1390               18/09/2006    23
## 1391               18/12/2013    23
## 1392               19/03/2009    23
## 1393               19/05/2006    23
## 1394               19/05/2009    23
## 1395               19/09/1996    23
## 1396               19/10/2004    23
## 1397               19/10/2007    23
## 1398               19/10/2010    23
## 1399               19/12/2007    23
## 1400               20/01/2005    23
## 1401               20/03/1997    23
## 1402               20/03/2002    23
## 1403               20/04/1998    23
## 1404               20/04/2006    23
## 1405               20/05/2003    23
## 1406               20/06/2000    23
## 1407               20/07/2006    23
## 1408               20/07/2007    23
## 1409               20/07/2011    23
## 1410               21/02/2006    23
## 1411               21/02/2007    23
## 1412               21/06/2011    23
## 1413               21/08/2000    23
## 1414               21/09/1999    23
## 1415               21/09/2001    23
## 1416               21/12/2005    23
## 1417               22/03/2004    23
## 1418               22/04/2002    23
## 1419               22/05/2006    23
## 1420               22/05/2008    23
## 1421               22/07/2004    23
## 1422               22/08/1996    23
## 1423               22/09/1997    23
## 1424               23/01/2006    23
## 1425               23/02/1998    23
## 1426               23/05/2012    23
## 1427               23/11/1999    23
## 1428               24/01/2011    23
## 1429               24/02/2009    23
## 1430               24/05/2006    23
## 1431               24/06/1996    23
## 1432               24/10/2006    23
## 1433               24/10/2012    23
## 1434               25/06/1997    23
## 1435               25/06/2004    23
## 1436               25/07/2013    23
## 1437               25/08/2003    23
## 1438               25/09/2012    23
## 1439               26/02/2002    23
## 1440               26/06/2012    23
## 1441               26/08/2002    23
## 1442               26/08/2004    23
## 1443               26/09/2012    23
## 1444               26/10/2000    23
## 1445               27/01/2003    23
## 1446               27/03/2000    23
## 1447               27/03/2009    23
## 1448               27/05/2003    23
## 1449               27/09/2005    23
## 1450               27/10/1997    23
## 1451               27/11/2006    23
## 1452               28/04/2003    23
## 1453               28/04/2010    23
## 1454               28/06/2002    23
## 1455               28/06/2011    23
## 1456               28/06/2013    23
## 1457               28/07/2000    23
## 1458               28/07/2010    23
## 1459               28/08/1996    23
## 1460               28/10/2003    23
## 1461               29/02/2000    23
## 1462               29/03/1999    23
## 1463               29/06/1998    23
## 1464               29/06/2006    23
## 1465               29/07/1999    23
## 1466               29/08/2001    23
## 1467               29/09/1999    23
## 1468               29/09/2010    23
## 1469               30/01/2004    23
## 1470               30/03/2000    23
## 1471               30/04/2001    23
## 1472               30/09/1998    23
## 1473               31/05/2011    23
## 1474               01/02/2011    22
## 1475               01/02/2012    22
## 1476               01/03/2000    22
## 1477               01/04/1998    22
## 1478               01/05/1997    22
## 1479               01/05/2002    22
## 1480               01/05/2007    22
## 1481               01/06/1998    22
## 1482               01/08/2011    22
## 1483               01/11/2000    22
## 1484               01/11/2006    22
## 1485               01/11/2011    22
## 1486               01/12/2006    22
## 1487               02/03/1998    22
## 1488               02/06/1998    22
## 1489               02/06/2005    22
## 1490               02/08/2010    22
## 1491               02/08/2013    22
## 1492               02/11/2006    22
## 1493               02/12/1996    22
## 1494               03/01/2001    22
## 1495               03/04/2000    22
## 1496               03/06/2010    22
## 1497               03/07/2012    22
## 1498               03/08/1998    22
## 1499               03/08/2011    22
## 1500               03/09/2002    22
## 1501               03/10/2005    22
## 1502               03/11/1997    22
## 1503               03/11/2003    22
## 1504               04/01/2001    22
## 1505               04/02/1998    22
## 1506               04/02/2002    22
## 1507               04/03/2008    22
## 1508               04/04/2000    22
## 1509               04/04/2003    22
## 1510               04/04/2006    22
## 1511               04/04/2012    22
## 1512               04/06/2001    22
## 1513               04/06/2008    22
## 1514               04/08/2006    22
## 1515               04/08/2008    22
## 1516               04/09/2013    22
## 1517               04/11/1997    22
## 1518               04/11/2008    22
## 1519               04/11/2010    22
## 1520               05/01/2012    22
## 1521               05/02/2003    22
## 1522               05/02/2007    22
## 1523               05/06/2007    22
## 1524               05/09/2000    22
## 1525               05/09/2006    22
## 1526               05/10/2012    22
## 1527               05/11/2009    22
## 1528               05/12/2001    22
## 1529               05/12/2007    22
## 1530               05/12/2013    22
## 1531               06/02/2006    22
## 1532               06/02/2008    22
## 1533               06/03/2000    22
## 1534               06/03/2012    22
## 1535               06/06/2005    22
## 1536               06/07/2006    22
## 1537               06/09/2005    22
## 1538               06/09/2007    22
## 1539               07/03/2012    22
## 1540               07/03/2013    22
## 1541               07/05/2008    22
## 1542               07/05/2013    22
## 1543               07/07/1999    22
## 1544               07/08/2012    22
## 1545               07/12/2004    22
## 1546               07/12/2012    22
## 1547               08/01/2004    22
## 1548               08/03/1999    22
## 1549               08/04/2002    22
## 1550               08/05/2000    22
## 1551               08/05/2009    22
## 1552               08/09/2011    22
## 1553               08/11/1996    22
## 1554               08/11/2012    22
## 1555               08/12/2000    22
## 1556               09/02/2000    22
## 1557               09/02/2004    22
## 1558               09/02/2006    22
## 1559               09/03/2004    22
## 1560               09/03/2005    22
## 1561               09/06/2008    22
## 1562               09/09/2013    22
## 1563               09/11/2006    22
## 1564               09/12/1996    22
## 1565               10/02/2005    22
## 1566               10/04/2000    22
## 1567               10/04/2003    22
## 1568               10/06/1997    22
## 1569               10/06/2002    22
## 1570               10/06/2010    22
## 1571               10/07/2002    22
## 1572               10/10/1997    22
## 1573               10/10/2005    22
## 1574               10/10/2013    22
## 1575               10/11/1997    22
## 1576               11/01/2001    22
## 1577               11/02/1997    22
## 1578               11/03/1997    22
## 1579               11/03/2008    22
## 1580               11/03/2014    22
## 1581               11/04/2011    22
## 1582               11/04/2012    22
## 1583               11/05/2007    22
## 1584               11/07/1997    22
## 1585               11/07/2012    22
## 1586               11/08/2000    22
## 1587               11/08/2004    22
## 1588               11/08/2005    22
## 1589               11/08/2011    22
## 1590               11/09/2013    22
## 1591               11/10/2010    22
## 1592               11/12/2000    22
## 1593               12/01/1998    22
## 1594               12/02/1997    22
## 1595               12/02/2003    22
## 1596               12/04/2006    22
## 1597               12/07/1999    22
## 1598               12/07/2012    22
## 1599               12/09/2003    22
## 1600               12/09/2005    22
## 1601               12/09/2006    22
## 1602               12/10/2000    22
## 1603               12/10/2010    22
## 1604               12/10/2011    22
## 1605               13/01/2006    22
## 1606               13/01/2010    22
## 1607               13/06/2013    22
## 1608               13/07/2010    22
## 1609               13/12/1996    22
## 1610               13/12/2006    22
## 1611               14/01/2003    22
## 1612               14/02/2001    22
## 1613               14/02/2011    22
## 1614               14/05/2013    22
## 1615               14/08/2012    22
## 1616               14/08/2013    22
## 1617               14/09/2000    22
## 1618               14/09/2006    22
## 1619               14/09/2011    22
## 1620               14/12/2011    22
## 1621               15/02/2007    22
## 1622               15/03/2013    22
## 1623               15/05/2001    22
## 1624               15/10/1996    22
## 1625               15/10/2003    22
## 1626               15/10/2009    22
## 1627               15/12/1997    22
## 1628               16/02/2000    22
## 1629               16/02/2009    22
## 1630               16/02/2011    22
## 1631               16/06/2005    22
## 1632               16/08/1996    22
## 1633               16/09/2003    22
## 1634               16/09/2005    22
## 1635               16/10/1996    22
## 1636               16/11/2006    22
## 1637               17/02/2009    22
## 1638               17/03/1997    22
## 1639               17/04/2013    22
## 1640               17/05/1999    22
## 1641               17/05/2005    22
## 1642               17/06/2002    22
## 1643               17/06/2004    22
## 1644               17/07/2007    22
## 1645               17/09/2001    22
## 1646               17/09/2012    22
## 1647               17/12/2012    22
## 1648               18/02/2004    22
## 1649               18/02/2010    22
## 1650               18/03/2005    22
## 1651               18/04/2002    22
## 1652               18/04/2012    22
## 1653               18/05/2004    22
## 1654               18/05/2009    22
## 1655               18/06/2007    22
## 1656               18/07/1996    22
## 1657               18/10/1996    22
## 1658               18/10/2001    22
## 1659               18/10/2010    22
## 1660               18/11/1998    22
## 1661               19/01/2005    22
## 1662               19/02/2008    22
## 1663               19/03/2001    22
## 1664               19/03/2002    22
## 1665               19/06/2000    22
## 1666               19/07/2005    22
## 1667               19/08/1998    22
## 1668               19/08/2010    22
## 1669               19/09/1997    22
## 1670               19/09/2002    22
## 1671               19/09/2013    22
## 1672               19/11/1997    22
## 1673               20/02/2004    22
## 1674               20/02/2006    22
## 1675               20/03/2012    22
## 1676               20/04/2007    22
## 1677               20/05/2002    22
## 1678               20/06/2013    22
## 1679               20/09/2002    22
## 1680               20/09/2012    22
## 1681               21/02/2000    22
## 1682               21/02/2008    22
## 1683               21/04/2009    22
## 1684               21/06/1999    22
## 1685               21/08/2001    22
## 1686               21/08/2012    22
## 1687               21/09/1998    22
## 1688               21/10/2004    22
## 1689               22/02/2006    22
## 1690               22/04/2009    22
## 1691               22/06/2001    22
## 1692               22/07/2013    22
## 1693               22/08/2011    22
## 1694               22/09/2006    22
## 1695               22/10/2013    22
## 1696               22/11/2010    22
## 1697               23/01/1997    22
## 1698               23/01/2001    22
## 1699               23/01/2002    22
## 1700               23/03/2005    22
## 1701               23/03/2007    22
## 1702               23/05/2000    22
## 1703               23/06/1998    22
## 1704               23/06/1999    22
## 1705               23/06/2005    22
## 1706               23/06/2010    22
## 1707               23/08/2001    22
## 1708               23/08/2007    22
## 1709               23/09/2003    22
## 1710               23/09/2009    22
## 1711               23/10/2007    22
## 1712               24/01/1997    22
## 1713               24/02/2014    22
## 1714               24/03/2003    22
## 1715               24/04/2003    22
## 1716               24/05/2000    22
## 1717               24/05/2012    22
## 1718               24/07/1996    22
## 1719               24/09/2003    22
## 1720               25/01/2005    22
## 1721               25/01/2012    22
## 1722               25/02/1998    22
## 1723               25/02/2013    22
## 1724               25/06/2001    22
## 1725               25/08/2010    22
## 1726               25/09/2003    22
## 1727               25/10/2001    22
## 1728               25/10/2011    22
## 1729               25/11/1996    22
## 1730               26/01/2009    22
## 1731               26/02/2008    22
## 1732               26/03/2002    22
## 1733               26/05/1998    22
## 1734               26/06/2008    22
## 1735               26/09/2006    22
## 1736               26/09/2008    22
## 1737               26/10/2010    22
## 1738               26/10/2011    22
## 1739               27/01/1998    22
## 1740               27/02/2007    22
## 1741               27/02/2012    22
## 1742               27/05/1999    22
## 1743               27/06/2001    22
## 1744               27/07/2009    22
## 1745               27/08/2003    22
## 1746               27/09/2001    22
## 1747               27/10/2006    22
## 1748               27/10/2008    22
## 1749               27/11/2001    22
## 1750               27/11/2007    22
## 1751               28/02/2005    22
## 1752               28/03/2011    22
## 1753               28/05/1998    22
## 1754               28/07/2011    22
## 1755               28/08/2000    22
## 1756               28/08/2009    22
## 1757               28/09/1999    22
## 1758               29/01/2002    22
## 1759               29/03/2004    22
## 1760               29/05/2001    22
## 1761               29/06/2009    22
## 1762               29/08/2007    22
## 1763               29/09/2008    22
## 1764               29/11/2010    22
## 1765               30/01/1997    22
## 1766               30/01/2009    22
## 1767               30/03/2004    22
## 1768               30/04/1997    22
## 1769               30/06/2006    22
## 1770               30/06/2011    22
## 1771               30/08/2006    22
## 1772               30/08/2007    22
## 1773               30/08/2011    22
## 1774               30/09/2008    22
## 1775               30/09/2010    22
## 1776               30/11/1999    22
## 1777               30/12/1997    22
## 1778               31/01/2006    22
## 1779               31/05/1996    22
## 1780               31/05/2000    22
## 1781               31/07/2003    22
## 1782               31/12/1997    22
## 1783               01/02/2005    21
## 1784               01/03/1999    21
## 1785               01/03/2010    21
## 1786               01/03/2012    21
## 1787               01/04/1997    21
## 1788               01/04/2002    21
## 1789               01/04/2013    21
## 1790               01/07/2002    21
## 1791               01/08/2003    21
## 1792               01/08/2005    21
## 1793               01/09/2005    21
## 1794               01/11/2002    21
## 1795               01/12/2008    21
## 1796               02/01/2002    21
## 1797               02/02/1998    21
## 1798               02/02/1999    21
## 1799               02/02/2004    21
## 1800               02/02/2006    21
## 1801               02/02/2009    21
## 1802               02/04/1997    21
## 1803               02/04/2004    21
## 1804               02/04/2013    21
## 1805               02/05/1997    21
## 1806               02/05/2003    21
## 1807               02/05/2005    21
## 1808               02/06/2008    21
## 1809               02/07/1998    21
## 1810               02/08/2000    21
## 1811               02/12/1999    21
## 1812               03/01/2005    21
## 1813               03/01/2013    21
## 1814               03/02/2003    21
## 1815               03/02/2006    21
## 1816               03/04/2001    21
## 1817               03/04/2009    21
## 1818               03/05/2013    21
## 1819               03/08/1999    21
## 1820               03/08/2010    21
## 1821               03/11/2010    21
## 1822               03/12/2003    21
## 1823               04/01/2007    21
## 1824               04/11/2003    21
## 1825               04/11/2004    21
## 1826               04/12/2012    21
## 1827               05/01/2004    21
## 1828               05/03/2008    21
## 1829               05/03/2009    21
## 1830               05/03/2012    21
## 1831               05/04/2010    21
## 1832               05/05/2005    21
## 1833               05/06/2002    21
## 1834               05/06/2012    21
## 1835               05/07/2013    21
## 1836               05/11/2007    21
## 1837               05/12/2011    21
## 1838               06/02/2012    21
## 1839               06/03/2007    21
## 1840               06/04/1996    21
## 1841               06/04/2005    21
## 1842               06/05/2003    21
## 1843               06/07/2012    21
## 1844               06/08/2004    21
## 1845               06/08/2008    21
## 1846               06/12/1999    21
## 1847               06/12/2012    21
## 1848               07/02/2000    21
## 1849               07/06/1999    21
## 1850               07/06/2002    21
## 1851               07/09/2001    21
## 1852               07/09/2007    21
## 1853               07/10/2010    21
## 1854               07/11/2012    21
## 1855               07/12/1998    21
## 1856               08/01/2008    21
## 1857               08/02/2010    21
## 1858               08/03/2001    21
## 1859               08/03/2005    21
## 1860               08/03/2006    21
## 1861               08/03/2012    21
## 1862               08/04/1997    21
## 1863               08/04/2004    21
## 1864               08/04/2013    21
## 1865               08/05/2001    21
## 1866               08/07/1997    21
## 1867               08/08/2002    21
## 1868               08/09/2000    21
## 1869               08/10/1998    21
## 1870               08/11/1999    21
## 1871               09/04/2013    21
## 1872               09/06/1997    21
## 1873               09/06/2003    21
## 1874               09/07/2009    21
## 1875               09/09/2004    21
## 1876               09/09/2008    21
## 1877               09/11/1998    21
## 1878               09/12/1998    21
## 1879               09/12/2013    21
## 1880               10/01/1997    21
## 1881               10/01/2012    21
## 1882               10/02/1999    21
## 1883               10/02/2009    21
## 1884               10/03/2010    21
## 1885               10/06/2011    21
## 1886               10/08/2006    21
## 1887               10/11/2003    21
## 1888               10/12/1996    21
## 1889               10/12/2001    21
## 1890               10/12/2008    21
## 1891               11/01/1999    21
## 1892               11/01/2008    21
## 1893               11/03/2010    21
## 1894               11/04/2002    21
## 1895               11/05/2006    21
## 1896               11/06/2010    21
## 1897               11/07/2002    21
## 1898               11/08/1997    21
## 1899               11/10/1996    21
## 1900               11/10/2011    21
## 1901               11/12/2008    21
## 1902               11/12/2012    21
## 1903               12/01/2001    21
## 1904               12/02/2002    21
## 1905               12/02/2009    21
## 1906               12/02/2013    21
## 1907               12/04/2004    21
## 1908               12/06/2001    21
## 1909               12/06/2007    21
## 1910               12/08/2005    21
## 1911               12/09/1997    21
## 1912               12/09/2002    21
## 1913               12/10/2006    21
## 1914               12/11/1996    21
## 1915               12/11/1999    21
## 1916               12/12/2002    21
## 1917               13/05/2009    21
## 1918               13/06/2007    21
## 1919               13/06/2008    21
## 1920               13/08/2001    21
## 1921               13/08/2013    21
## 1922               13/10/2008    21
## 1923               13/11/2002    21
## 1924               13/11/2008    21
## 1925               13/12/2004    21
## 1926               14/05/1997    21
## 1927               14/05/2002    21
## 1928               14/05/2008    21
## 1929               14/06/2007    21
## 1930               14/07/2011    21
## 1931               14/08/2003    21
## 1932               14/10/1996    21
## 1933               14/10/2013    21
## 1934               14/11/2007    21
## 1935               14/12/2000    21
## 1936               15/02/2013    21
## 1937               15/04/2003    21
## 1938               15/05/2012    21
## 1939               15/06/2010    21
## 1940               15/08/2002    21
## 1941               15/08/2003    21
## 1942               15/08/2005    21
## 1943               15/10/2001    21
## 1944               15/10/2004    21
## 1945               15/12/2004    21
## 1946               16/06/2008    21
## 1947               16/07/1999    21
## 1948               16/08/2012    21
## 1949               16/12/1997    21
## 1950               16/12/2004    21
## 1951               16/12/2009    21
## 1952               17/01/2001    21
## 1953               17/01/2013    21
## 1954               17/03/2006    21
## 1955               17/03/2008    21
## 1956               17/04/2006    21
## 1957               17/04/2007    21
## 1958               17/05/2010    21
## 1959               17/06/2009    21
## 1960               17/06/2011    21
## 1961               17/06/2013    21
## 1962               17/07/2002    21
## 1963               17/07/2012    21
## 1964               17/08/1998    21
## 1965               17/08/2009    21
## 1966               17/08/2010    21
## 1967               17/09/1998    21
## 1968               17/10/2005    21
## 1969               17/12/2004    21
## 1970               18/01/2001    21
## 1971               18/05/1996    21
## 1972               18/05/2010    21
## 1973               18/07/2007    21
## 1974               18/07/2008    21
## 1975               18/07/2011    21
## 1976               18/09/2002    21
## 1977               18/11/2009    21
## 1978               18/12/1997    21
## 1979               18/12/2001    21
## 1980               19/02/1998    21
## 1981               19/03/2010    21
## 1982               19/06/2007    21
## 1983               19/06/2012    21
## 1984               19/08/2008    21
## 1985               19/11/2001    21
## 1986               19/11/2013    21
## 1987               20/03/2014    21
## 1988               20/04/2011    21
## 1989               20/05/2010    21
## 1990               20/06/2001    21
## 1991               20/07/1998    21
## 1992               20/08/2001    21
## 1993               20/11/2013    21
## 1994               20/12/2007    21
## 1995               21/03/2006    21
## 1996               21/04/1998    21
## 1997               21/04/2011    21
## 1998               21/06/1996    21
## 1999               21/07/2004    21
## 2000               21/09/2000    21
## 2001               22/01/2001    21
## 2002               22/02/1999    21
## 2003               22/02/2005    21
## 2004               22/02/2007    21
## 2005               22/03/1999    21
## 2006               22/05/1997    21
## 2007               22/06/2000    21
## 2008               22/06/2004    21
## 2009               22/07/1999    21
## 2010               22/07/2008    21
## 2011               23/03/1999    21
## 2012               23/04/2002    21
## 2013               23/04/2003    21
## 2014               23/05/2011    21
## 2015               23/07/2007    21
## 2016               24/03/2004    21
## 2017               24/05/2010    21
## 2018               24/06/1999    21
## 2019               24/10/2003    21
## 2020               25/01/2002    21
## 2021               25/01/2007    21
## 2022               25/01/2008    21
## 2023               25/03/2002    21
## 2024               25/04/2008    21
## 2025               25/05/2011    21
## 2026               25/07/1997    21
## 2027               25/09/2007    21
## 2028               25/09/2008    21
## 2029               25/10/2002    21
## 2030               26/02/1998    21
## 2031               26/02/2001    21
## 2032               26/03/2003    21
## 2033               26/03/2007    21
## 2034               26/03/2008    21
## 2035               26/04/2010    21
## 2036               26/04/2013    21
## 2037               26/07/2007    21
## 2038               26/07/2011    21
## 2039               26/07/2012    21
## 2040               26/08/2008    21
## 2041               26/08/2013    21
## 2042               27/03/2002    21
## 2043               27/04/2011    21
## 2044               27/05/1998    21
## 2045               27/05/2004    21
## 2046               27/05/2008    21
## 2047               27/08/1998    21
## 2048               27/08/2013    21
## 2049               27/09/2006    21
## 2050               28/01/1998    21
## 2051               28/01/1999    21
## 2052               28/02/2000    21
## 2053               28/02/2002    21
## 2054               28/02/2008    21
## 2055               28/02/2011    21
## 2056               28/02/2012    21
## 2057               28/02/2013    21
## 2058               28/06/2005    21
## 2059               28/09/2006    21
## 2060               28/09/2012    21
## 2061               28/10/2010    21
## 2062               28/11/2001    21
## 2063               29/03/2005    21
## 2064               29/04/2004    21
## 2065               29/08/2000    21
## 2066               29/09/2004    21
## 2067               29/09/2006    21
## 2068               29/09/2009    21
## 2069               29/11/2005    21
## 2070               30/01/2003    21
## 2071               30/01/2008    21
## 2072               30/01/2012    21
## 2073               30/01/2014    21
## 2074               30/03/1998    21
## 2075               30/05/2006    21
## 2076               30/08/1999    21
## 2077               30/08/2013    21
## 2078               31/01/2008    21
## 2079               31/03/1998    21
## 2080               31/05/2006    21
## 2081               31/07/2013    21
## 2082               31/10/2013    21
## 2083               01/05/2008    20
## 2084               01/07/2010    20
## 2085               01/10/1999    20
## 2086               01/10/2000    20
## 2087               01/10/2010    20
## 2088               01/10/2012    20
## 2089               01/12/2011    20
## 2090               02/01/2001    20
## 2091               02/02/2007    20
## 2092               02/02/2011    20
## 2093               02/03/1999    20
## 2094               02/03/2006    20
## 2095               02/05/2002    20
## 2096               02/10/2006    20
## 2097               02/11/2005    20
## 2098               02/12/1997    20
## 2099               02/12/2002    20
## 2100               02/12/2004    20
## 2101               02/12/2009    20
## 2102               03/02/2012    20
## 2103               03/04/2013    20
## 2104               03/05/2007    20
## 2105               03/07/2000    20
## 2106               04/01/2000    20
## 2107               04/01/2005    20
## 2108               04/02/2005    20
## 2109               04/03/2002    20
## 2110               04/04/1997    20
## 2111               04/04/2008    20
## 2112               04/04/2013    20
## 2113               04/11/1999    20
## 2114               04/12/2001    20
## 2115               05/01/1998    20
## 2116               05/02/1998    20
## 2117               05/02/2008    20
## 2118               05/03/2001    20
## 2119               05/04/2001    20
## 2120               05/04/2006    20
## 2121               05/04/2007    20
## 2122               05/05/1998    20
## 2123               05/06/2013    20
## 2124               05/07/1996    20
## 2125               05/07/2011    20
## 2126               05/08/2002    20
## 2127               05/10/1999    20
## 2128               05/10/2000    20
## 2129               05/11/1996    20
## 2130               05/11/2010    20
## 2131               06/02/1997    20
## 2132               06/03/1998    20
## 2133               06/05/2002    20
## 2134               06/05/2010    20
## 2135               06/07/2005    20
## 2136               06/09/1996    20
## 2137               06/10/2000    20
## 2138               06/11/2013    20
## 2139               06/12/2011    20
## 2140               07/01/2004    20
## 2141               07/01/2013    20
## 2142               07/02/2001    20
## 2143               07/02/2006    20
## 2144               07/04/2006    20
## 2145               07/05/2004    20
## 2146               07/06/2012    20
## 2147               07/07/2008    20
## 2148               07/08/1997    20
## 2149               07/09/1996    20
## 2150               07/09/1999    20
## 2151               07/10/1998    20
## 2152               07/10/1999    20
## 2153               08/01/2014    20
## 2154               08/02/2001    20
## 2155               08/02/2012    20
## 2156               08/04/1999    20
## 2157               08/05/2008    20
## 2158               08/06/2011    20
## 2159               08/07/2004    20
## 2160               08/09/2006    20
## 2161               08/09/2010    20
## 2162               08/11/2000    20
## 2163               08/11/2001    20
## 2164               09/01/2014    20
## 2165               09/02/2011    20
## 2166               09/03/1998    20
## 2167               09/04/2003    20
## 2168               09/08/2000    20
## 2169               09/08/2007    20
## 2170               09/10/1996    20
## 2171               09/12/2004    20
## 2172               10/01/2013    20
## 2173               10/02/2000    20
## 2174               10/03/1997    20
## 2175               10/03/2003    20
## 2176               10/03/2008    20
## 2177               10/05/2001    20
## 2178               10/05/2006    20
## 2179               10/07/1996    20
## 2180               10/07/2000    20
## 2181               10/09/2002    20
## 2182               10/10/2011    20
## 2183               10/11/2009    20
## 2184               10/12/2002    20
## 2185               10/12/2009    20
## 2186               11/01/2005    20
## 2187               11/03/1996    20
## 2188               11/03/2013    20
## 2189               11/05/1998    20
## 2190               11/05/2004    20
## 2191               11/05/2011    20
## 2192               11/06/2002    20
## 2193               11/07/1996    20
## 2194               11/07/2000    20
## 2195               11/07/2011    20
## 2196               11/08/2008    20
## 2197               11/10/2012    20
## 2198               12/02/2008    20
## 2199               12/03/1999    20
## 2200               12/03/2013    20
## 2201               12/04/2010    20
## 2202               12/05/1998    20
## 2203               12/05/2008    20
## 2204               12/07/1996    20
## 2205               12/08/2004    20
## 2206               12/08/2010    20
## 2207               12/10/2012    20
## 2208               13/01/1998    20
## 2209               13/01/1999    20
## 2210               13/01/2005    20
## 2211               13/02/2001    20
## 2212               13/03/2006    20
## 2213               13/03/2013    20
## 2214               13/05/2010    20
## 2215               13/06/2002    20
## 2216               13/08/2008    20
## 2217               13/12/1999    20
## 2218               13/12/2001    20
## 2219               14/01/1998    20
## 2220               14/03/2000    20
## 2221               14/03/2006    20
## 2222               14/05/2003    20
## 2223               14/06/1996    20
## 2224               14/06/2000    20
## 2225               14/07/1997    20
## 2226               14/07/2003    20
## 2227               14/08/2008    20
## 2228               14/09/1999    20
## 2229               14/11/2011    20
## 2230               14/12/2012    20
## 2231               15/01/2009    20
## 2232               15/02/2011    20
## 2233               15/03/2005    20
## 2234               15/04/2004    20
## 2235               15/05/2008    20
## 2236               15/06/1998    20
## 2237               15/06/2004    20
## 2238               15/06/2005    20
## 2239               15/07/2008    20
## 2240               15/07/2010    20
## 2241               15/08/2001    20
## 2242               15/08/2007    20
## 2243               15/09/2005    20
## 2244               15/11/2000    20
## 2245               15/11/2001    20
## 2246               15/12/2011    20
## 2247               16/03/2000    20
## 2248               16/03/2004    20
## 2249               16/04/2013    20
## 2250               16/07/2001    20
## 2251               16/09/1998    20
## 2252               16/11/2009    20
## 2253               16/11/2012    20
## 2254               16/12/2003    20
## 2255               17/01/1997    20
## 2256               17/02/1999    20
## 2257               17/02/2005    20
## 2258               17/04/2000    20
## 2259               17/05/2000    20
## 2260               17/05/2001    20
## 2261               17/06/2010    20
## 2262               17/08/2012    20
## 2263               17/09/1996    20
## 2264               17/10/2000    20
## 2265               17/10/2002    20
## 2266               17/10/2012    20
## 2267               17/10/2013    20
## 2268               17/11/2010    20
## 2269               17/12/1996    20
## 2270               18/02/2000    20
## 2271               18/02/2008    20
## 2272               18/02/2009    20
## 2273               18/04/1997    20
## 2274               18/10/2000    20
## 2275               18/11/1996    20
## 2276               18/11/2003    20
## 2277               18/12/1996    20
## 2278               18/12/2007    20
## 2279               18/12/2012    20
## 2280               19/01/2000    20
## 2281               19/01/2011    20
## 2282               19/04/1998    20
## 2283               19/04/2001    20
## 2284               19/05/2000    20
## 2285               19/06/2002    20
## 2286               19/09/2000    20
## 2287               19/09/2012    20
## 2288               19/10/2011    20
## 2289               19/11/1996    20
## 2290               19/11/1999    20
## 2291               19/11/2008    20
## 2292               19/12/2005    20
## 2293               20/01/2010    20
## 2294               20/02/2003    20
## 2295               20/02/2014    20
## 2296               20/03/2008    20
## 2297               20/03/2009    20
## 2298               20/05/1998    20
## 2299               20/07/2012    20
## 2300               20/09/2001    20
## 2301               20/09/2011    20
## 2302               20/11/2002    20
## 2303               21/04/1997    20
## 2304               21/04/2003    20
## 2305               21/05/1998    20
## 2306               21/07/2003    20
## 2307               21/07/2008    20
## 2308               21/10/2002    20
## 2309               21/10/2008    20
## 2310               21/11/2013    20
## 2311               22/01/2010    20
## 2312               22/02/2012    20
## 2313               22/05/2007    20
## 2314               22/09/1999    20
## 2315               22/09/2010    20
## 2316               22/10/2009    20
## 2317               22/10/2012    20
## 2318               22/11/2004    20
## 2319               22/11/2013    20
## 2320               23/01/2004    20
## 2321               23/04/2001    20
## 2322               23/05/1997    20
## 2323               23/05/2007    20
## 2324               23/05/2013    20
## 2325               23/06/2003    20
## 2326               23/06/2004    20
## 2327               23/07/1996    20
## 2328               23/07/1999    20
## 2329               23/08/2004    20
## 2330               23/09/2002    20
## 2331               23/09/2011    20
## 2332               23/10/2001    20
## 2333               24/02/1999    20
## 2334               24/02/2012    20
## 2335               24/03/2006    20
## 2336               24/05/2007    20
## 2337               24/06/1997    20
## 2338               24/06/2002    20
## 2339               24/07/2003    20
## 2340               24/09/1997    20
## 2341               24/09/1999    20
## 2342               24/09/2012    20
## 2343               24/10/2005    20
## 2344               24/10/2011    20
## 2345               25/01/2000    20
## 2346               25/02/1997    20
## 2347               25/03/1997    20
## 2348               25/03/2004    20
## 2349               25/07/2000    20
## 2350               25/08/2009    20
## 2351               25/09/2001    20
## 2352               25/09/2006    20
## 2353               25/11/2008    20
## 2354               26/02/2009    20
## 2355               26/03/1997    20
## 2356               26/04/2001    20
## 2357               26/04/2012    20
## 2358               26/06/2013    20
## 2359               26/07/2001    20
## 2360               26/07/2006    20
## 2361               26/09/2003    20
## 2362               26/10/2001    20
## 2363               26/10/2007    20
## 2364               26/11/2007    20
## 2365               27/01/2014    20
## 2366               27/02/2008    20
## 2367               27/03/2012    20
## 2368               27/04/2009    20
## 2369               27/08/2007    20
## 2370               27/09/2002    20
## 2371               27/09/2004    20
## 2372               27/09/2007    20
## 2373               27/10/2003    20
## 2374               27/11/2013    20
## 2375               28/01/2002    20
## 2376               28/01/2010    20
## 2377               28/02/2001    20
## 2378               28/03/2001    20
## 2379               28/03/2002    20
## 2380               28/04/2005    20
## 2381               28/04/2006    20
## 2382               28/04/2009    20
## 2383               28/05/1996    20
## 2384               28/05/2013    20
## 2385               28/07/2005    20
## 2386               28/08/2001    20
## 2387               28/08/2006    20
## 2388               28/09/2010    20
## 2389               29/04/2009    20
## 2390               29/05/2012    20
## 2391               29/07/2004    20
## 2392               29/07/2010    20
## 2393               29/10/2007    20
## 2394               30/01/1998    20
## 2395               30/03/2009    20
## 2396               30/04/2002    20
## 2397               30/05/2008    20
## 2398               30/06/2004    20
## 2399               30/07/2003    20
## 2400               30/08/2012    20
## 2401               30/09/1999    20
## 2402               30/09/2002    20
## 2403               30/09/2003    20
## 2404               30/09/2005    20
## 2405               30/09/2013    20
## 2406               30/11/2007    20
## 2407               30/11/2010    20
## 2408               31/01/2011    20
## 2409               31/05/2001    20
## 2410               31/05/2005    20
## 2411               31/07/1997    20
## 2412               31/08/1999    20
## 2413               31/08/2006    20
## 2414               31/10/2007    20
## 2415               01/02/1999    19
## 2416               01/04/1999    19
## 2417               01/07/2003    19
## 2418               01/09/2011    19
## 2419               02/03/2009    19
## 2420               02/04/2002    19
## 2421               02/04/2008    19
## 2422               02/05/2000    19
## 2423               02/07/2013    19
## 2424               02/09/2011    19
## 2425               02/10/2000    19
## 2426               02/10/2013    19
## 2427               02/11/2004    19
## 2428               02/12/2013    19
## 2429               03/02/2014    19
## 2430               03/03/2003    19
## 2431               03/04/2008    19
## 2432               03/04/2012    19
## 2433               03/06/2003    19
## 2434               03/09/2004    19
## 2435               03/11/1998    19
## 2436               03/11/2008    19
## 2437               04/01/2013    19
## 2438               04/02/2000    19
## 2439               04/03/2013    19
## 2440               04/05/2001    19
## 2441               04/05/2006    19
## 2442               04/08/1998    19
## 2443               04/09/1998    19
## 2444               04/10/1996    19
## 2445               04/10/2000    19
## 2446               04/11/2002    19
## 2447               04/11/2013    19
## 2448               04/12/2008    19
## 2449               05/01/2005    19
## 2450               05/02/2013    19
## 2451               05/09/2013    19
## 2452               05/10/1998    19
## 2453               05/10/2005    19
## 2454               05/10/2006    19
## 2455               05/11/1999    19
## 2456               05/12/2006    19
## 2457               06/01/1998    19
## 2458               06/05/2011    19
## 2459               06/06/2001    19
## 2460               06/06/2003    19
## 2461               06/06/2007    19
## 2462               06/08/2001    19
## 2463               06/10/2008    19
## 2464               06/11/2008    19
## 2465               06/12/2004    19
## 2466               07/02/2003    19
## 2467               07/03/1997    19
## 2468               07/04/2005    19
## 2469               07/04/2009    19
## 2470               07/05/2003    19
## 2471               07/06/2011    19
## 2472               07/07/1998    19
## 2473               07/10/2005    19
## 2474               07/12/2007    19
## 2475               08/01/1997    19
## 2476               08/03/1996    19
## 2477               08/07/1998    19
## 2478               08/07/2005    19
## 2479               08/07/2013    19
## 2480               08/08/2012    19
## 2481               08/08/2013    19
## 2482               08/10/1996    19
## 2483               08/10/2001    19
## 2484               09/01/2002    19
## 2485               09/05/2006    19
## 2486               09/06/2000    19
## 2487               09/06/2005    19
## 2488               09/07/2003    19
## 2489               09/09/1998    19
## 2490               09/09/2011    19
## 2491               09/10/2000    19
## 2492               10/01/2001    19
## 2493               10/01/2014    19
## 2494               10/02/2010    19
## 2495               10/02/2011    19
## 2496               10/07/2006    19
## 2497               10/08/2007    19
## 2498               10/09/1997    19
## 2499               10/11/2010    19
## 2500               10/11/2011    19
## 2501               10/12/2003    19
## 2502               10/12/2013    19
## 2503               11/01/2000    19
## 2504               11/01/2002    19
## 2505               11/02/2005    19
## 2506               11/03/1999    19
## 2507               11/03/2002    19
## 2508               11/04/2000    19
## 2509               11/04/2005    19
## 2510               11/05/1999    19
## 2511               11/05/2005    19
## 2512               11/06/2012    19
## 2513               11/12/2006    19
## 2514               12/01/2000    19
## 2515               12/03/2007    19
## 2516               12/04/2002    19
## 2517               12/04/2012    19
## 2518               12/05/2011    19
## 2519               12/06/2008    19
## 2520               12/07/2002    19
## 2521               12/08/2009    19
## 2522               12/10/2004    19
## 2523               12/11/2002    19
## 2524               12/12/1997    19
## 2525               12/12/2012    19
## 2526               13/02/2002    19
## 2527               13/02/2012    19
## 2528               13/03/2008    19
## 2529               13/04/2000    19
## 2530               13/04/2006    19
## 2531               13/08/1998    19
## 2532               13/08/2009    19
## 2533               13/09/2002    19
## 2534               13/10/2011    19
## 2535               13/11/2003    19
## 2536               13/11/2006    19
## 2537               14/02/2000    19
## 2538               14/02/2005    19
## 2539               14/03/2005    19
## 2540               14/03/2012    19
## 2541               14/06/1999    19
## 2542               14/07/2006    19
## 2543               14/07/2010    19
## 2544               14/08/2000    19
## 2545               14/09/2007    19
## 2546               14/09/2010    19
## 2547               14/11/1997    19
## 2548               14/11/2006    19
## 2549               14/12/1998    19
## 2550               14/12/2001    19
## 2551               14/12/2009    19
## 2552               15/03/2001    19
## 2553               15/04/1998    19
## 2554               15/04/2008    19
## 2555               15/05/1997    19
## 2556               15/06/2001    19
## 2557               15/06/2011    19
## 2558               15/07/2003    19
## 2559               15/07/2011    19
## 2560               15/08/2013    19
## 2561               15/10/2012    19
## 2562               15/11/2002    19
## 2563               16/01/2009    19
## 2564               16/01/2013    19
## 2565               16/04/2012    19
## 2566               16/06/2009    19
## 2567               16/07/2010    19
## 2568               17/01/2006    19
## 2569               17/03/2010    19
## 2570               17/05/2012    19
## 2571               17/05/2013    19
## 2572               17/08/2011    19
## 2573               17/11/2006    19
## 2574               17/12/1999    19
## 2575               18/03/2004    19
## 2576               18/07/2002    19
## 2577               18/08/2006    19
## 2578               18/09/2007    19
## 2579               18/10/2007    19
## 2580               18/10/2011    19
## 2581               18/11/1997    19
## 2582               19/02/1997    19
## 2583               19/02/2013    19
## 2584               19/03/2012    19
## 2585               19/05/2008    19
## 2586               19/07/1996    19
## 2587               19/07/2011    19
## 2588               19/08/2002    19
## 2589               19/08/2003    19
## 2590               19/08/2004    19
## 2591               19/09/2001    19
## 2592               19/09/2006    19
## 2593               19/09/2011    19
## 2594               20/05/2004    19
## 2595               20/06/2002    19
## 2596               20/07/2009    19
## 2597               20/08/1997    19
## 2598               20/08/2002    19
## 2599               20/08/2009    19
## 2600               20/10/2003    19
## 2601               21/03/1997    19
## 2602               21/03/2013    19
## 2603               21/04/2005    19
## 2604               21/04/2008    19
## 2605               21/04/2010    19
## 2606               21/06/2000    19
## 2607               21/06/2005    19
## 2608               21/07/2006    19
## 2609               21/11/2011    19
## 2610               22/01/1998    19
## 2611               22/01/2013    19
## 2612               22/05/2002    19
## 2613               22/05/2003    19
## 2614               22/06/1996    19
## 2615               22/06/1999    19
## 2616               22/06/2007    19
## 2617               22/08/2003    19
## 2618               22/10/2003    19
## 2619               22/10/2008    19
## 2620               22/12/2003    19
## 2621               23/01/2003    19
## 2622               23/02/2000    19
## 2623               23/04/1999    19
## 2624               23/04/2010    19
## 2625               23/07/2002    19
## 2626               23/07/2004    19
## 2627               23/07/2008    19
## 2628               23/07/2010    19
## 2629               23/08/2012    19
## 2630               23/08/2013    19
## 2631               23/10/1997    19
## 2632               23/11/2005    19
## 2633               24/01/2007    19
## 2634               24/04/2000    19
## 2635               24/04/2001    19
## 2636               24/05/2001    19
## 2637               24/08/2010    19
## 2638               24/10/2000    19
## 2639               25/01/2010    19
## 2640               25/02/2002    19
## 2641               25/03/2014    19
## 2642               25/04/2003    19
## 2643               25/05/2010    19
## 2644               25/05/2012    19
## 2645               25/06/2010    19
## 2646               25/08/2008    19
## 2647               25/08/2011    19
## 2648               25/10/2007    19
## 2649               26/01/2004    19
## 2650               26/04/2000    19
## 2651               26/05/1999    19
## 2652               26/05/2010    19
## 2653               26/05/2011    19
## 2654               26/07/2005    19
## 2655               26/08/2009    19
## 2656               26/09/2002    19
## 2657               26/10/2006    19
## 2658               26/11/2001    19
## 2659               27/01/2010    19
## 2660               27/02/2006    19
## 2661               27/03/1998    19
## 2662               27/03/2003    19
## 2663               27/05/1997    19
## 2664               27/07/2005    19
## 2665               27/07/2011    19
## 2666               27/09/2013    19
## 2667               27/11/2000    19
## 2668               28/01/2008    19
## 2669               28/01/2009    19
## 2670               28/01/2014    19
## 2671               28/02/2006    19
## 2672               28/04/2000    19
## 2673               28/07/2003    19
## 2674               28/07/2009    19
## 2675               28/10/1996    19
## 2676               28/10/1998    19
## 2677               28/11/2000    19
## 2678               28/11/2005    19
## 2679               29/01/1999    19
## 2680               29/03/2000    19
## 2681               29/04/1998    19
## 2682               29/05/2013    19
## 2683               29/06/2007    19
## 2684               29/07/2002    19
## 2685               29/09/2003    19
## 2686               29/09/2011    19
## 2687               29/10/1998    19
## 2688               29/10/2012    19
## 2689               30/01/2001    19
## 2690               30/03/2012    19
## 2691               30/05/1996    19
## 2692               30/06/2005    19
## 2693               31/03/1997    19
## 2694               31/07/2001    19
## 2695               31/08/2001    19
## 2696               31/08/2009    19
## 2697               31/10/1996    19
## 2698               31/10/2011    19
## 2699               01/03/2006    18
## 2700               01/04/2011    18
## 2701               01/05/1998    18
## 2702               01/05/2012    18
## 2703               01/06/2000    18
## 2704               01/06/2006    18
## 2705               01/09/1998    18
## 2706               01/09/1999    18
## 2707               01/12/2000    18
## 2708               02/01/1998    18
## 2709               02/05/2011    18
## 2710               02/07/2000    18
## 2711               02/08/2007    18
## 2712               02/08/2011    18
## 2713               02/09/1998    18
## 2714               03/01/2008    18
## 2715               03/03/2000    18
## 2716               03/06/1999    18
## 2717               03/06/2008    18
## 2718               03/06/2009    18
## 2719               03/09/1998    18
## 2720               03/09/2003    18
## 2721               03/10/2007    18
## 2722               03/12/2012    18
## 2723               04/01/1999    18
## 2724               04/02/1997    18
## 2725               04/02/1999    18
## 2726               04/03/1999    18
## 2727               04/03/2003    18
## 2728               04/04/2007    18
## 2729               04/04/2011    18
## 2730               04/06/2004    18
## 2731               04/06/2012    18
## 2732               04/08/2005    18
## 2733               04/09/2002    18
## 2734               04/09/2007    18
## 2735               04/09/2012    18
## 2736               04/12/1997    18
## 2737               04/12/2003    18
## 2738               05/01/1999    18
## 2739               05/01/2001    18
## 2740               05/01/2011    18
## 2741               05/02/1997    18
## 2742               05/02/2014    18
## 2743               05/03/1997    18
## 2744               05/03/1999    18
## 2745               05/04/2012    18
## 2746               05/05/2011    18
## 2747               05/07/2000    18
## 2748               05/07/2007    18
## 2749               05/08/1996    18
## 2750               05/08/1999    18
## 2751               05/09/2001    18
## 2752               05/11/2002    18
## 2753               05/12/2012    18
## 2754               06/01/1999    18
## 2755               06/02/2001    18
## 2756               06/02/2007    18
## 2757               06/03/1997    18
## 2758               06/03/2006    18
## 2759               06/04/2000    18
## 2760               06/09/2001    18
## 2761               06/11/2006    18
## 2762               06/12/1996    18
## 2763               06/12/2006    18
## 2764               07/02/2008    18
## 2765               07/03/2000    18
## 2766               07/03/2007    18
## 2767               07/04/1997    18
## 2768               07/04/2008    18
## 2769               07/05/2010    18
## 2770               07/06/2004    18
## 2771               07/06/2010    18
## 2772               07/07/2004    18
## 2773               07/08/2003    18
## 2774               07/09/2006    18
## 2775               07/09/2012    18
## 2776               07/11/1997    18
## 2777               07/11/2005    18
## 2778               08/01/1999    18
## 2779               08/02/2011    18
## 2780               08/07/2002    18
## 2781               08/10/2003    18
## 2782               08/10/2004    18
## 2783               08/11/2010    18
## 2784               08/12/2006    18
## 2785               09/02/2001    18
## 2786               09/03/2010    18
## 2787               09/04/2002    18
## 2788               09/04/2008    18
## 2789               09/05/2003    18
## 2790               09/05/2011    18
## 2791               09/07/1999    18
## 2792               09/10/2001    18
## 2793               09/10/2002    18
## 2794               09/10/2003    18
## 2795               09/10/2008    18
## 2796               09/10/2009    18
## 2797               09/12/1999    18
## 2798               09/12/2003    18
## 2799               10/04/2012    18
## 2800               10/05/2011    18
## 2801               10/06/2004    18
## 2802               10/07/1998    18
## 2803               10/07/2009    18
## 2804               10/09/2010    18
## 2805               10/09/2012    18
## 2806               11/02/2002    18
## 2807               11/02/2008    18
## 2808               11/02/2010    18
## 2809               11/03/2009    18
## 2810               11/04/2003    18
## 2811               11/05/1996    18
## 2812               11/07/2005    18
## 2813               11/08/1999    18
## 2814               11/08/2003    18
## 2815               11/08/2009    18
## 2816               11/11/1998    18
## 2817               12/01/2005    18
## 2818               12/02/2004    18
## 2819               12/03/2001    18
## 2820               12/05/2000    18
## 2821               12/08/2002    18
## 2822               12/08/2008    18
## 2823               12/09/2000    18
## 2824               12/10/1999    18
## 2825               12/10/2001    18
## 2826               12/10/2009    18
## 2827               12/11/2009    18
## 2828               12/12/2001    18
## 2829               12/12/2008    18
## 2830               12/12/2013    18
## 2831               13/01/2009    18
## 2832               13/02/2003    18
## 2833               13/02/2008    18
## 2834               13/05/2003    18
## 2835               13/06/2012    18
## 2836               13/07/2007    18
## 2837               13/08/1996    18
## 2838               13/08/2012    18
## 2839               13/09/1999    18
## 2840               13/09/2000    18
## 2841               13/10/2006    18
## 2842               13/12/2011    18
## 2843               14/01/2008    18
## 2844               14/03/2002    18
## 2845               14/03/2008    18
## 2846               14/04/2010    18
## 2847               14/06/2013    18
## 2848               14/07/1998    18
## 2849               14/09/1998    18
## 2850               14/10/2002    18
## 2851               14/12/2004    18
## 2852               15/01/2010    18
## 2853               15/02/2002    18
## 2854               15/06/2000    18
## 2855               15/06/2009    18
## 2856               15/06/2012    18
## 2857               15/07/2009    18
## 2858               15/09/2008    18
## 2859               15/10/1999    18
## 2860               15/11/1996    18
## 2861               15/11/2004    18
## 2862               16/02/2007    18
## 2863               16/02/2010    18
## 2864               16/03/2001    18
## 2865               16/03/2005    18
## 2866               16/03/2011    18
## 2867               16/05/2001    18
## 2868               16/05/2012    18
## 2869               16/06/1998    18
## 2870               16/07/2004    18
## 2871               16/11/2001    18
## 2872               17/02/2006    18
## 2873               17/03/1998    18
## 2874               17/03/2003    18
## 2875               17/03/2005    18
## 2876               17/07/1997    18
## 2877               17/07/1998    18
## 2878               17/08/2001    18
## 2879               17/08/2007    18
## 2880               17/09/2002    18
## 2881               17/09/2007    18
## 2882               17/09/2009    18
## 2883               17/12/2001    18
## 2884               17/12/2008    18
## 2885               18/04/2007    18
## 2886               18/06/2003    18
## 2887               18/06/2009    18
## 2888               18/07/2013    18
## 2889               18/08/2003    18
## 2890               18/11/2004    18
## 2891               18/11/2005    18
## 2892               19/01/2012    18
## 2893               19/04/2012    18
## 2894               19/04/2013    18
## 2895               19/05/2010    18
## 2896               19/06/1997    18
## 2897               19/06/2003    18
## 2898               19/06/2006    18
## 2899               19/06/2013    18
## 2900               19/07/2004    18
## 2901               19/08/1997    18
## 2902               19/08/2009    18
## 2903               19/11/2010    18
## 2904               19/11/2012    18
## 2905               20/01/2006    18
## 2906               20/03/2001    18
## 2907               20/03/2006    18
## 2908               20/04/2005    18
## 2909               20/05/2013    18
## 2910               20/06/2008    18
## 2911               20/11/2003    18
## 2912               20/12/2005    18
## 2913               20/12/2011    18
## 2914               21/01/2005    18
## 2915               21/03/1998    18
## 2916               21/04/1996    18
## 2917               21/05/1999    18
## 2918               21/06/2007    18
## 2919               21/07/1999    18
## 2920               21/07/2010    18
## 2921               21/08/2002    18
## 2922               21/08/2003    18
## 2923               21/09/2010    18
## 2924               21/11/1996    18
## 2925               21/11/2000    18
## 2926               22/01/1999    18
## 2927               22/01/2002    18
## 2928               22/02/2001    18
## 2929               22/03/2001    18
## 2930               22/03/2002    18
## 2931               22/03/2012    18
## 2932               22/04/2003    18
## 2933               22/04/2008    18
## 2934               22/05/1998    18
## 2935               22/08/2002    18
## 2936               22/08/2006    18
## 2937               22/10/2004    18
## 2938               22/12/2004    18
## 2939               22/12/2009    18
## 2940               23/01/2012    18
## 2941               23/05/2003    18
## 2942               23/05/2005    18
## 2943               23/08/2005    18
## 2944               23/09/2013    18
## 2945               23/10/2006    18
## 2946               23/11/1998    18
## 2947               23/11/2004    18
## 2948               24/01/2005    18
## 2949               24/02/2006    18
## 2950               24/02/2011    18
## 2951               24/07/1997    18
## 2952               24/07/2001    18
## 2953               24/07/2002    18
## 2954               24/10/1996    18
## 2955               25/02/2010    18
## 2956               25/03/1996    18
## 2957               25/04/2013    18
## 2958               25/09/2009    18
## 2959               25/10/1996    18
## 2960               26/03/2012    18
## 2961               26/03/2014    18
## 2962               26/04/2007    18
## 2963               26/05/2004    18
## 2964               26/05/2005    18
## 2965               26/05/2009    18
## 2966               26/06/2003    18
## 2967               26/08/2011    18
## 2968               27/02/2001    18
## 2969               27/04/2006    18
## 2970               27/06/2013    18
## 2971               27/07/2004    18
## 2972               27/10/2009    18
## 2973               27/12/2010    18
## 2974               28/03/2013    18
## 2975               28/04/2008    18
## 2976               28/05/2003    18
## 2977               28/07/1998    18
## 2978               28/08/2002    18
## 2979               28/09/2001    18
## 2980               28/10/1997    18
## 2981               28/10/2005    18
## 2982               29/01/2001    18
## 2983               29/04/2010    18
## 2984               29/04/2013    18
## 2985               29/07/2008    18
## 2986               29/07/2013    18
## 2987               29/10/2003    18
## 2988               29/10/2009    18
## 2989               29/11/1999    18
## 2990               29/11/2004    18
## 2991               30/04/2007    18
## 2992               30/07/1997    18
## 2993               30/07/2004    18
## 2994               30/07/2013    18
## 2995               30/10/2006    18
## 2996               30/10/2012    18
## 2997               30/11/2005    18
## 2998               31/01/1997    18
## 2999               31/01/2002    18
## 3000               31/03/2011    18
## 3001               31/08/1998    18
## 3002               31/08/2000    18
## 3003               31/08/2007    18
## 3004               31/10/2005    18
## 3005               01/06/2009    17
## 3006               01/06/2010    17
## 3007               01/06/2012    17
## 3008               01/07/1999    17
## 3009               01/07/2004    17
## 3010               01/10/2002    17
## 3011               02/02/2001    17
## 3012               02/04/2009    17
## 3013               02/04/2012    17
## 3014               02/05/2001    17
## 3015               02/05/2013    17
## 3016               02/06/1996    17
## 3017               02/07/2004    17
## 3018               02/08/2005    17
## 3019               02/10/2009    17
## 3020               02/12/2010    17
## 3021               03/03/2006    17
## 3022               03/03/2010    17
## 3023               03/04/2007    17
## 3024               03/05/1999    17
## 3025               03/07/1996    17
## 3026               03/07/2003    17
## 3027               03/10/1997    17
## 3028               03/10/2008    17
## 3029               03/11/2004    17
## 3030               03/11/2009    17
## 3031               03/12/1996    17
## 3032               03/12/2001    17
## 3033               03/12/2002    17
## 3034               03/12/2007    17
## 3035               04/01/2011    17
## 3036               04/04/2002    17
## 3037               04/05/2009    17
## 3038               04/06/2010    17
## 3039               04/08/2011    17
## 3040               04/12/1996    17
## 3041               05/02/2010    17
## 3042               05/03/2010    17
## 3043               05/04/2000    17
## 3044               05/04/2004    17
## 3045               05/07/2006    17
## 3046               05/08/2010    17
## 3047               05/08/2011    17
## 3048               05/10/2010    17
## 3049               05/11/1997    17
## 3050               05/12/1996    17
## 3051               05/12/2003    17
## 3052               06/01/2006    17
## 3053               06/01/2011    17
## 3054               06/01/2014    17
## 3055               06/02/2003    17
## 3056               06/02/2004    17
## 3057               06/03/2009    17
## 3058               06/04/2010    17
## 3059               06/05/2005    17
## 3060               06/06/2002    17
## 3061               06/11/2012    17
## 3062               06/12/2001    17
## 3063               07/02/1997    17
## 3064               07/03/2008    17
## 3065               07/04/2000    17
## 3066               07/05/2007    17
## 3067               07/06/2000    17
## 3068               07/06/2007    17
## 3069               07/08/2008    17
## 3070               07/09/2005    17
## 3071               07/10/2002    17
## 3072               07/12/2005    17
## 3073               08/02/2002    17
## 3074               08/02/2007    17
## 3075               08/05/2013    17
## 3076               08/06/1999    17
## 3077               08/07/2003    17
## 3078               08/07/2008    17
## 3079               08/07/2011    17
## 3080               08/08/2003    17
## 3081               08/09/1998    17
## 3082               08/10/2008    17
## 3083               08/11/2007    17
## 3084               09/01/2003    17
## 3085               09/02/1999    17
## 3086               09/02/2007    17
## 3087               09/03/2000    17
## 3088               09/03/2001    17
## 3089               09/04/2007    17
## 3090               09/04/2012    17
## 3091               09/05/2001    17
## 3092               09/06/2009    17
## 3093               09/08/2001    17
## 3094               09/08/2011    17
## 3095               09/09/1999    17
## 3096               09/09/2010    17
## 3097               09/12/2010    17
## 3098               10/01/2006    17
## 3099               10/02/2003    17
## 3100               10/02/2014    17
## 3101               10/03/1999    17
## 3102               10/03/2005    17
## 3103               10/04/2007    17
## 3104               10/08/2010    17
## 3105               10/09/1999    17
## 3106               10/12/1997    17
## 3107               11/02/1998    17
## 3108               11/03/2005    17
## 3109               11/04/1997    17
## 3110               11/05/2012    17
## 3111               11/08/2006    17
## 3112               11/09/2001    17
## 3113               11/09/2002    17
## 3114               11/12/1997    17
## 3115               12/02/1999    17
## 3116               12/03/2003    17
## 3117               12/03/2009    17
## 3118               12/04/2001    17
## 3119               12/04/2007    17
## 3120               12/06/2013    17
## 3121               12/08/2011    17
## 3122               12/10/2007    17
## 3123               12/11/1998    17
## 3124               12/12/2011    17
## 3125               13/01/2012    17
## 3126               13/04/1996    17
## 3127               13/04/1998    17
## 3128               13/04/1999    17
## 3129               13/07/1998    17
## 3130               13/08/2004    17
## 3131               13/08/2007    17
## 3132               13/09/2006    17
## 3133               13/10/2000    17
## 3134               13/10/2010    17
## 3135               13/11/2007    17
## 3136               13/12/2013    17
## 3137               14/01/1999    17
## 3138               14/02/2008    17
## 3139               14/02/2013    17
## 3140               14/03/2014    17
## 3141               14/04/2011    17
## 3142               14/05/1999    17
## 3143               14/10/1999    17
## 3144               14/10/2011    17
## 3145               15/01/2014    17
## 3146               15/03/1999    17
## 3147               15/03/2004    17
## 3148               15/04/1999    17
## 3149               15/05/2002    17
## 3150               15/07/1999    17
## 3151               15/07/2005    17
## 3152               15/09/1998    17
## 3153               15/11/1999    17
## 3154               15/11/2006    17
## 3155               15/11/2007    17
## 3156               15/12/2000    17
## 3157               15/12/2009    17
## 3158               16/01/2014    17
## 3159               16/03/2006    17
## 3160               16/03/2007    17
## 3161               16/06/1997    17
## 3162               16/07/2008    17
## 3163               16/08/1997    17
## 3164               16/09/2011    17
## 3165               16/10/2002    17
## 3166               17/02/2000    17
## 3167               17/03/1999    17
## 3168               17/04/2001    17
## 3169               17/07/2008    17
## 3170               17/10/2001    17
## 3171               17/10/2006    17
## 3172               17/10/2011    17
## 3173               17/11/2000    17
## 3174               17/11/2008    17
## 3175               17/12/2003    17
## 3176               17/12/2009    17
## 3177               17/12/2010    17
## 3178               18/01/2002    17
## 3179               18/01/2007    17
## 3180               18/01/2013    17
## 3181               18/03/1996    17
## 3182               18/03/2011    17
## 3183               18/04/2006    17
## 3184               18/04/2008    17
## 3185               18/05/2001    17
## 3186               18/08/2009    17
## 3187               18/09/2001    17
## 3188               18/09/2003    17
## 3189               18/09/2008    17
## 3190               18/09/2009    17
## 3191               18/10/2002    17
## 3192               19/01/2001    17
## 3193               19/02/2009    17
## 3194               19/02/2014    17
## 3195               19/03/2008    17
## 3196               19/04/2007    17
## 3197               19/05/2005    17
## 3198               19/06/2009    17
## 3199               19/07/2007    17
## 3200               19/12/1996    17
## 3201               19/12/2000    17
## 3202               19/12/2013    17
## 3203               20/01/2002    17
## 3204               20/01/2009    17
## 3205               20/02/2008    17
## 3206               20/05/1999    17
## 3207               20/05/2008    17
## 3208               20/05/2011    17
## 3209               20/06/1997    17
## 3210               20/06/2005    17
## 3211               20/08/1998    17
## 3212               20/08/2010    17
## 3213               20/10/2006    17
## 3214               20/11/2000    17
## 3215               21/01/1999    17
## 3216               21/01/2010    17
## 3217               21/04/2004    17
## 3218               21/05/2007    17
## 3219               21/11/2006    17
## 3220               21/12/1998    17
## 3221               21/12/2004    17
## 3222               22/02/2002    17
## 3223               22/02/2010    17
## 3224               22/03/2010    17
## 3225               22/06/2012    17
## 3226               22/08/1997    17
## 3227               22/08/2012    17
## 3228               22/09/2004    17
## 3229               22/09/2008    17
## 3230               22/11/2002    17
## 3231               22/12/2010    17
## 3232               23/01/2007    17
## 3233               23/03/2011    17
## 3234               23/04/2004    17
## 3235               23/08/1999    17
## 3236               23/10/2012    17
## 3237               24/02/2000    17
## 3238               24/04/2008    17
## 3239               24/09/2009    17
## 3240               24/09/2013    17
## 3241               25/01/2011    17
## 3242               25/02/1999    17
## 3243               25/04/2011    17
## 3244               25/04/2012    17
## 3245               25/05/1999    17
## 3246               25/05/2000    17
## 3247               25/06/1998    17
## 3248               25/07/2002    17
## 3249               25/08/2000    17
## 3250               26/01/2001    17
## 3251               26/02/1999    17
## 3252               26/03/2004    17
## 3253               26/04/1999    17
## 3254               26/06/2007    17
## 3255               26/07/2000    17
## 3256               26/08/1997    17
## 3257               26/08/2010    17
## 3258               26/10/1998    17
## 3259               27/02/2002    17
## 3260               27/03/1997    17
## 3261               27/03/2006    17
## 3262               27/03/2013    17
## 3263               27/04/2007    17
## 3264               27/06/1997    17
## 3265               27/06/2002    17
## 3266               27/11/2012    17
## 3267               28/01/2005    17
## 3268               28/06/2001    17
## 3269               28/08/2007    17
## 3270               28/09/2009    17
## 3271               28/12/2010    17
## 3272               29/04/2005    17
## 3273               29/05/1997    17
## 3274               29/06/2001    17
## 3275               29/11/2011    17
## 3276               29/12/1997    17
## 3277               30/04/1998    17
## 3278               30/05/2007    17
## 3279               30/06/2000    17
## 3280               30/06/2003    17
## 3281               30/07/2007    17
## 3282               30/07/2010    17
## 3283               30/09/2009    17
## 3284               30/10/2007    17
## 3285               30/11/2000    17
## 3286               31/01/2013    17
## 3287               31/05/2013    17
## 3288               31/07/2008    17
## 3289               01/03/2004    16
## 3290               01/04/2005    16
## 3291               01/07/2013    16
## 3292               01/08/2012    16
## 3293               01/10/2013    16
## 3294               01/12/2003    16
## 3295               02/03/2000    16
## 3296               02/03/2001    16
## 3297               02/03/2004    16
## 3298               02/04/2007    16
## 3299               02/06/2000    16
## 3300               02/07/2001    16
## 3301               02/07/2003    16
## 3302               02/08/2002    16
## 3303               02/09/2004    16
## 3304               02/10/2003    16
## 3305               02/10/2008    16
## 3306               03/01/2000    16
## 3307               03/01/2006    16
## 3308               03/02/1999    16
## 3309               03/02/2005    16
## 3310               03/02/2009    16
## 3311               03/03/1999    16
## 3312               03/03/2004    16
## 3313               03/05/2010    16
## 3314               03/05/2012    16
## 3315               03/06/2005    16
## 3316               03/08/2001    16
## 3317               03/08/2012    16
## 3318               03/09/2010    16
## 3319               03/10/2006    16
## 3320               03/11/2005    16
## 3321               03/12/1999    16
## 3322               03/12/2004    16
## 3323               03/12/2010    16
## 3324               04/05/2012    16
## 3325               04/06/1998    16
## 3326               04/11/2005    16
## 3327               04/12/1998    16
## 3328               05/01/2007    16
## 3329               05/02/1999    16
## 3330               05/04/2013    16
## 3331               05/06/2001    16
## 3332               05/06/2008    16
## 3333               05/08/1998    16
## 3334               05/09/1997    16
## 3335               05/10/2009    16
## 3336               06/03/2014    16
## 3337               06/05/2006    16
## 3338               06/07/2001    16
## 3339               06/08/1998    16
## 3340               06/10/2006    16
## 3341               06/10/2009    16
## 3342               06/11/2002    16
## 3343               06/11/2009    16
## 3344               06/12/2013    16
## 3345               07/01/2010    16
## 3346               07/02/1996    16
## 3347               07/02/2002    16
## 3348               07/02/2007    16
## 3349               07/05/1999    16
## 3350               07/06/1996    16
## 3351               07/07/2003    16
## 3352               07/07/2005    16
## 3353               07/07/2006    16
## 3354               07/07/2010    16
## 3355               07/08/1998    16
## 3356               07/08/2009    16
## 3357               07/10/2004    16
## 3358               07/11/2002    16
## 3359               07/11/2011    16
## 3360               07/12/1999    16
## 3361               07/12/2010    16
## 3362               08/01/1996    16
## 3363               08/01/2010    16
## 3364               08/02/1999    16
## 3365               08/03/2002    16
## 3366               08/03/2004    16
## 3367               08/05/2006    16
## 3368               08/06/2005    16
## 3369               08/08/2007    16
## 3370               09/01/1997    16
## 3371               09/01/2006    16
## 3372               09/01/2008    16
## 3373               09/06/2006    16
## 3374               09/07/1998    16
## 3375               09/12/1997    16
## 3376               09/12/2011    16
## 3377               10/01/2002    16
## 3378               10/01/2007    16
## 3379               10/03/2000    16
## 3380               10/04/1997    16
## 3381               10/04/2008    16
## 3382               10/07/2008    16
## 3383               10/08/2001    16
## 3384               10/09/2009    16
## 3385               10/12/2007    16
## 3386               11/02/2011    16
## 3387               11/06/2003    16
## 3388               11/09/2009    16
## 3389               11/11/1996    16
## 3390               11/11/1997    16
## 3391               11/12/2002    16
## 3392               12/02/2007    16
## 3393               12/02/2010    16
## 3394               12/05/2009    16
## 3395               12/09/2001    16
## 3396               12/09/2008    16
## 3397               12/12/2005    16
## 3398               13/01/2004    16
## 3399               13/01/2014    16
## 3400               13/02/2007    16
## 3401               13/03/1996    16
## 3402               13/03/2002    16
## 3403               13/04/2011    16
## 3404               13/07/2009    16
## 3405               13/07/2011    16
## 3406               13/08/2010    16
## 3407               13/10/2005    16
## 3408               13/10/2009    16
## 3409               13/12/2005    16
## 3410               13/12/2010    16
## 3411               14/01/1997    16
## 3412               14/01/2010    16
## 3413               14/06/2004    16
## 3414               14/07/1999    16
## 3415               14/08/2007    16
## 3416               14/10/2010    16
## 3417               14/12/1999    16
## 3418               15/01/1999    16
## 3419               15/05/1998    16
## 3420               15/09/1997    16
## 3421               16/01/1997    16
## 3422               16/03/1999    16
## 3423               16/04/1997    16
## 3424               16/04/1999    16
## 3425               16/04/2009    16
## 3426               16/04/2010    16
## 3427               16/07/2002    16
## 3428               16/07/2012    16
## 3429               16/10/1998    16
## 3430               16/12/1998    16
## 3431               16/12/2002    16
## 3432               16/12/2011    16
## 3433               17/02/2011    16
## 3434               17/02/2014    16
## 3435               17/03/2009    16
## 3436               17/09/2013    16
## 3437               17/10/1996    16
## 3438               17/11/1997    16
## 3439               17/11/2005    16
## 3440               18/01/2011    16
## 3441               18/02/1997    16
## 3442               18/02/1999    16
## 3443               18/03/2002    16
## 3444               18/03/2010    16
## 3445               18/05/2000    16
## 3446               18/07/1997    16
## 3447               18/08/1997    16
## 3448               18/09/2013    16
## 3449               18/10/2004    16
## 3450               18/10/2005    16
## 3451               18/11/2002    16
## 3452               18/11/2011    16
## 3453               18/12/2006    16
## 3454               19/01/1998    16
## 3455               19/02/2004    16
## 3456               19/02/2007    16
## 3457               19/03/1996    16
## 3458               19/03/2003    16
## 3459               19/03/2004    16
## 3460               19/03/2014    16
## 3461               19/10/2006    16
## 3462               19/11/1998    16
## 3463               20/01/2011    16
## 3464               20/02/2002    16
## 3465               20/03/1996    16
## 3466               20/09/2004    16
## 3467               20/10/2000    16
## 3468               20/11/2007    16
## 3469               20/11/2008    16
## 3470               20/12/1996    16
## 3471               20/12/2000    16
## 3472               20/12/2012    16
## 3473               21/02/2001    16
## 3474               21/02/2013    16
## 3475               21/04/2006    16
## 3476               21/05/2002    16
## 3477               21/05/2003    16
## 3478               21/07/1998    16
## 3479               21/07/2000    16
## 3480               21/07/2011    16
## 3481               21/09/2007    16
## 3482               21/09/2012    16
## 3483               21/10/2009    16
## 3484               22/01/2004    16
## 3485               22/03/2000    16
## 3486               22/04/2010    16
## 3487               22/06/2011    16
## 3488               22/07/2010    16
## 3489               22/09/1998    16
## 3490               22/09/2011    16
## 3491               22/11/1996    16
## 3492               23/01/2009    16
## 3493               23/01/2014    16
## 3494               23/02/1999    16
## 3495               23/03/2010    16
## 3496               23/07/2013    16
## 3497               23/09/1998    16
## 3498               23/10/2002    16
## 3499               23/11/2009    16
## 3500               24/01/1996    16
## 3501               24/02/2004    16
## 3502               24/02/2005    16
## 3503               24/02/2010    16
## 3504               24/03/1999    16
## 3505               24/03/2005    16
## 3506               24/06/2006    16
## 3507               24/07/2012    16
## 3508               24/08/2007    16
## 3509               24/09/2002    16
## 3510               24/09/2008    16
## 3511               24/11/2003    16
## 3512               25/03/2010    16
## 3513               25/03/2013    16
## 3514               25/06/2009    16
## 3515               25/08/1998    16
## 3516               25/08/1999    16
## 3517               25/08/2006    16
## 3518               25/10/2012    16
## 3519               26/02/2004    16
## 3520               26/02/2007    16
## 3521               26/07/2013    16
## 3522               26/10/1999    16
## 3523               26/10/2009    16
## 3524               26/11/1996    16
## 3525               26/11/2013    16
## 3526               27/04/2001    16
## 3527               27/05/2010    16
## 3528               27/06/2005    16
## 3529               27/06/2011    16
## 3530               27/07/1998    16
## 3531               27/07/2006    16
## 3532               27/07/2007    16
## 3533               27/07/2010    16
## 3534               27/09/2010    16
## 3535               28/01/2003    16
## 3536               28/03/2000    16
## 3537               28/03/2014    16
## 3538               28/04/1998    16
## 3539               28/04/2014    16
## 3540               28/05/2001    16
## 3541               28/06/2012    16
## 3542               28/09/2007    16
## 3543               28/12/2005    16
## 3544               29/01/2014    16
## 3545               29/02/2008    16
## 3546               29/02/2012    16
## 3547               29/03/1996    16
## 3548               29/03/2010    16
## 3549               29/04/1997    16
## 3550               29/05/2003    16
## 3551               29/07/1998    16
## 3552               29/07/2005    16
## 3553               29/08/2003    16
## 3554               29/08/2008    16
## 3555               29/09/1998    16
## 3556               29/09/2000    16
## 3557               29/10/2013    16
## 3558               29/12/2010    16
## 3559               29/12/2011    16
## 3560               30/01/2007    16
## 3561               30/03/1999    16
## 3562               30/03/2005    16
## 3563               30/03/2010    16
## 3564               30/06/2008    16
## 3565               30/07/1998    16
## 3566               30/08/2010    16
## 3567               30/10/1997    16
## 3568               30/10/2002    16
## 3569               30/11/1998    16
## 3570               30/11/2004    16
## 3571               31/01/2005    16
## 3572               31/01/2007    16
## 3573               31/03/2000    16
## 3574               31/03/2003    16
## 3575               31/03/2010    16
## 3576               31/10/2002    16
## 3577               31/12/1996    16
## 3578               01/02/2013    15
## 3579               01/03/2007    15
## 3580               01/03/2011    15
## 3581               01/06/2007    15
## 3582               01/09/2010    15
## 3583               02/01/2009    15
## 3584               02/01/2013    15
## 3585               02/03/2007    15
## 3586               02/03/2012    15
## 3587               02/06/2010    15
## 3588               02/08/2004    15
## 3589               02/10/2002    15
## 3590               02/11/1998    15
## 3591               02/12/2005    15
## 3592               03/05/1998    15
## 3593               03/06/2004    15
## 3594               03/07/2002    15
## 3595               03/07/2007    15
## 3596               03/08/1996    15
## 3597               03/10/2003    15
## 3598               03/11/2006    15
## 3599               03/12/1998    15
## 3600               03/12/2009    15
## 3601               04/01/1996    15
## 3602               04/01/2010    15
## 3603               04/02/2009    15
## 3604               04/05/2010    15
## 3605               04/06/1999    15
## 3606               04/09/2001    15
## 3607               04/11/1998    15
## 3608               05/01/2009    15
## 3609               05/02/2002    15
## 3610               05/05/1999    15
## 3611               05/07/2012    15
## 3612               05/09/2003    15
## 3613               05/10/2007    15
## 3614               05/11/1998    15
## 3615               06/01/2004    15
## 3616               06/02/2009    15
## 3617               06/11/2007    15
## 3618               07/01/2003    15
## 3619               07/03/2011    15
## 3620               07/04/1999    15
## 3621               07/08/2007    15
## 3622               07/09/2011    15
## 3623               07/10/2011    15
## 3624               07/11/2007    15
## 3625               08/04/2008    15
## 3626               08/05/1998    15
## 3627               08/06/2001    15
## 3628               08/07/2006    15
## 3629               08/08/1997    15
## 3630               08/09/1997    15
## 3631               08/09/2009    15
## 3632               08/10/2010    15
## 3633               08/11/2005    15
## 3634               08/12/2009    15
## 3635               09/02/1998    15
## 3636               09/03/2009    15
## 3637               09/07/2004    15
## 3638               09/08/2006    15
## 3639               09/09/2005    15
## 3640               09/10/2006    15
## 3641               09/11/2000    15
## 3642               09/11/2004    15
## 3643               09/11/2011    15
## 3644               09/11/2012    15
## 3645               09/12/2005    15
## 3646               10/01/1996    15
## 3647               10/01/2005    15
## 3648               10/03/2006    15
## 3649               10/05/2012    15
## 3650               10/05/2013    15
## 3651               10/07/2001    15
## 3652               10/08/1996    15
## 3653               10/08/1998    15
## 3654               11/02/2004    15
## 3655               11/03/2011    15
## 3656               11/04/2008    15
## 3657               11/06/2007    15
## 3658               11/06/2009    15
## 3659               11/07/2007    15
## 3660               11/10/2002    15
## 3661               11/11/2008    15
## 3662               11/12/1996    15
## 3663               12/01/2004    15
## 3664               12/01/2007    15
## 3665               12/08/1998    15
## 3666               12/10/1998    15
## 3667               12/12/2000    15
## 3668               13/03/2001    15
## 3669               13/04/2012    15
## 3670               13/07/1999    15
## 3671               13/11/2001    15
## 3672               14/01/2013    15
## 3673               14/02/2003    15
## 3674               14/03/2013    15
## 3675               14/04/1996    15
## 3676               14/04/2000    15
## 3677               14/04/2003    15
## 3678               14/04/2004    15
## 3679               14/04/2005    15
## 3680               14/06/2002    15
## 3681               14/07/1996    15
## 3682               14/07/2009    15
## 3683               14/10/1998    15
## 3684               14/11/2002    15
## 3685               14/11/2003    15
## 3686               14/12/2006    15
## 3687               15/02/2005    15
## 3688               15/03/2010    15
## 3689               15/04/2005    15
## 3690               15/05/2007    15
## 3691               15/07/2006    15
## 3692               15/09/1999    15
## 3693               15/09/2009    15
## 3694               15/10/1998    15
## 3695               15/10/2010    15
## 3696               15/11/2005    15
## 3697               16/01/2002    15
## 3698               16/03/2010    15
## 3699               16/04/1998    15
## 3700               16/11/2010    15
## 3701               16/12/2013    15
## 3702               17/01/2002    15
## 3703               17/01/2012    15
## 3704               17/01/2014    15
## 3705               17/07/2009    15
## 3706               17/08/1999    15
## 3707               17/09/2004    15
## 3708               17/11/1999    15
## 3709               18/03/2003    15
## 3710               18/04/2013    15
## 3711               18/05/2007    15
## 3712               18/07/2005    15
## 3713               18/10/2006    15
## 3714               19/03/1998    15
## 3715               19/04/2011    15
## 3716               19/06/1998    15
## 3717               19/08/2011    15
## 3718               19/12/2012    15
## 3719               20/02/2009    15
## 3720               20/04/2012    15
## 3721               20/06/2011    15
## 3722               20/10/2011    15
## 3723               20/12/2006    15
## 3724               21/02/1998    15
## 3725               21/02/2012    15
## 3726               21/02/2014    15
## 3727               21/03/2011    15
## 3728               21/06/2002    15
## 3729               21/11/2002    15
## 3730               22/01/2003    15
## 3731               22/01/2009    15
## 3732               22/05/2009    15
## 3733               22/06/1998    15
## 3734               22/07/2011    15
## 3735               22/09/2009    15
## 3736               22/10/1998    15
## 3737               23/01/2008    15
## 3738               23/02/2001    15
## 3739               23/06/2000    15
## 3740               23/07/2009    15
## 3741               23/08/2006    15
## 3742               23/08/2010    15
## 3743               23/09/2005    15
## 3744               23/10/2000    15
## 3745               24/01/2006    15
## 3746               24/01/2014    15
## 3747               24/02/2003    15
## 3748               24/03/2000    15
## 3749               24/04/2009    15
## 3750               24/05/1999    15
## 3751               24/07/2009    15
## 3752               24/08/1999    15
## 3753               24/11/1999    15
## 3754               24/11/2004    15
## 3755               25/02/2000    15
## 3756               25/02/2014    15
## 3757               25/03/1999    15
## 3758               25/04/2002    15
## 3759               25/07/2004    15
## 3760               25/10/2013    15
## 3761               26/01/2007    15
## 3762               26/03/1999    15
## 3763               26/03/2009    15
## 3764               26/04/2011    15
## 3765               26/05/2000    15
## 3766               26/05/2006    15
## 3767               26/08/2003    15
## 3768               26/11/2002    15
## 3769               27/02/1998    15
## 3770               27/04/1999    15
## 3771               27/04/2004    15
## 3772               27/04/2010    15
## 3773               27/05/1996    15
## 3774               27/05/2005    15
## 3775               27/07/2001    15
## 3776               27/08/2009    15
## 3777               27/08/2010    15
## 3778               27/10/2000    15
## 3779               27/10/2004    15
## 3780               27/10/2010    15
## 3781               27/11/2002    15
## 3782               28/03/2005    15
## 3783               28/03/2008    15
## 3784               28/05/2004    15
## 3785               28/06/2007    15
## 3786               28/08/1998    15
## 3787               28/08/2003    15
## 3788               28/08/2008    15
## 3789               28/10/1999    15
## 3790               28/10/2008    15
## 3791               28/11/2011    15
## 3792               28/11/2012    15
## 3793               29/04/1999    15
## 3794               29/04/2008    15
## 3795               29/05/1998    15
## 3796               29/05/2009    15
## 3797               29/06/2010    15
## 3798               29/08/1997    15
## 3799               29/10/2008    15
## 3800               29/11/2007    15
## 3801               30/04/2013    15
## 3802               30/05/2000    15
## 3803               30/05/2001    15
## 3804               30/05/2003    15
## 3805               30/08/2002    15
## 3806               30/12/1996    15
## 3807               31/03/1999    15
## 3808               31/03/2008    15
## 3809               31/07/2002    15
## 3810               31/10/2003    15
## 3811               31/10/2008    15
## 3812               01/02/2008    14
## 3813               01/03/1996    14
## 3814               01/03/2013    14
## 3815               01/09/2000    14
## 3816               01/10/1998    14
## 3817               02/03/2005    14
## 3818               02/03/2011    14
## 3819               02/05/2012    14
## 3820               02/07/2002    14
## 3821               02/11/2001    14
## 3822               02/11/2012    14
## 3823               02/12/1998    14
## 3824               03/01/1997    14
## 3825               03/04/2003    14
## 3826               03/05/2011    14
## 3827               03/06/2002    14
## 3828               03/06/2011    14
## 3829               03/07/2001    14
## 3830               03/07/2013    14
## 3831               04/05/2011    14
## 3832               04/09/1996    14
## 3833               04/09/2003    14
## 3834               04/12/2002    14
## 3835               04/12/2013    14
## 3836               05/03/2013    14
## 3837               05/05/1996    14
## 3838               05/05/2004    14
## 3839               05/06/2009    14
## 3840               05/09/2008    14
## 3841               05/11/2001    14
## 3842               05/11/2004    14
## 3843               05/12/2002    14
## 3844               06/01/2010    14
## 3845               06/04/1997    14
## 3846               06/04/2004    14
## 3847               06/09/2012    14
## 3848               06/10/1998    14
## 3849               07/01/2000    14
## 3850               07/01/2008    14
## 3851               07/04/1998    14
## 3852               07/07/2002    14
## 3853               07/08/2001    14
## 3854               07/09/2010    14
## 3855               07/10/2008    14
## 3856               07/11/2006    14
## 3857               07/11/2013    14
## 3858               08/03/2013    14
## 3859               08/04/2009    14
## 3860               08/05/2003    14
## 3861               08/06/2007    14
## 3862               08/08/1998    14
## 3863               08/09/2008    14
## 3864               08/11/2006    14
## 3865               09/03/1999    14
## 3866               09/04/2009    14
## 3867               09/05/2007    14
## 3868               09/05/2008    14
## 3869               10/02/2008    14
## 3870               10/02/2012    14
## 3871               10/05/2002    14
## 3872               10/08/2009    14
## 3873               10/09/1998    14
## 3874               10/10/2003    14
## 3875               10/10/2008    14
## 3876               10/11/2005    14
## 3877               10/11/2008    14
## 3878               11/01/2007    14
## 3879               11/03/2003    14
## 3880               11/05/2001    14
## 3881               11/05/2010    14
## 3882               11/06/1999    14
## 3883               11/07/1998    14
## 3884               11/10/2001    14
## 3885               11/12/2001    14
## 3886               12/03/2008    14
## 3887               12/03/2014    14
## 3888               13/03/2003    14
## 3889               13/05/2011    14
## 3890               13/07/2012    14
## 3891               13/09/2013    14
## 3892               14/01/2005    14
## 3893               14/02/2007    14
## 3894               14/05/2004    14
## 3895               14/11/2005    14
## 3896               14/11/2013    14
## 3897               14/12/2007    14
## 3898               14/12/2010    14
## 3899               15/02/2012    14
## 3900               15/03/2002    14
## 3901               15/03/2011    14
## 3902               15/04/2002    14
## 3903               15/07/2002    14
## 3904               15/09/1996    14
## 3905               15/10/2002    14
## 3906               15/12/2006    14
## 3907               15/12/2008    14
## 3908               16/01/2003    14
## 3909               16/05/2008    14
## 3910               16/06/1999    14
## 3911               16/07/1998    14
## 3912               16/08/2002    14
## 3913               16/09/2008    14
## 3914               16/10/2001    14
## 3915               16/10/2003    14
## 3916               16/11/2000    14
## 3917               17/01/2003    14
## 3918               17/02/2012    14
## 3919               17/03/2000    14
## 3920               17/05/2011    14
## 3921               17/06/2005    14
## 3922               17/10/2007    14
## 3923               17/12/2002    14
## 3924               18/01/2000    14
## 3925               18/03/1999    14
## 3926               18/04/2004    14
## 3927               18/05/1999    14
## 3928               18/07/1999    14
## 3929               18/08/1998    14
## 3930               18/11/2008    14
## 3931               18/12/2000    14
## 3932               18/12/2003    14
## 3933               19/03/1999    14
## 3934               19/10/2001    14
## 3935               19/11/2004    14
## 3936               19/11/2009    14
## 3937               19/12/1997    14
## 3938               19/12/2002    14
## 3939               19/12/2011    14
## 3940               20/04/2010    14
## 3941               20/07/2001    14
## 3942               20/11/1998    14
## 3943               21/01/2014    14
## 3944               21/03/2003    14
## 3945               21/05/2004    14
## 3946               21/05/2009    14
## 3947               21/07/1996    14
## 3948               21/09/2004    14
## 3949               21/10/1998    14
## 3950               21/10/2005    14
## 3951               21/10/2011    14
## 3952               21/11/1997    14
## 3953               21/11/2003    14
## 3954               21/11/2007    14
## 3955               21/11/2008    14
## 3956               21/12/1996    14
## 3957               21/12/2010    14
## 3958               22/01/1996    14
## 3959               22/04/1998    14
## 3960               22/04/2005    14
## 3961               22/04/2014    14
## 3962               22/06/2010    14
## 3963               22/07/2009    14
## 3964               22/08/2008    14
## 3965               22/10/2002    14
## 3966               23/02/2009    14
## 3967               23/03/2001    14
## 3968               23/09/2008    14
## 3969               23/10/2003    14
## 3970               23/12/1997    14
## 3971               23/12/2004    14
## 3972               24/01/1998    14
## 3973               24/01/2012    14
## 3974               24/01/2013    14
## 3975               24/03/2009    14
## 3976               24/03/2010    14
## 3977               24/05/2002    14
## 3978               24/06/2003    14
## 3979               24/06/2005    14
## 3980               24/07/2008    14
## 3981               24/10/2008    14
## 3982               24/11/1997    14
## 3983               25/05/1998    14
## 3984               25/05/2001    14
## 3985               25/05/2007    14
## 3986               25/07/2003    14
## 3987               25/09/1998    14
## 3988               25/10/2006    14
## 3989               26/01/2010    14
## 3990               26/02/2013    14
## 3991               26/02/2014    14
## 3992               26/06/1998    14
## 3993               26/09/2007    14
## 3994               26/10/2004    14
## 3995               27/01/2012    14
## 3996               27/03/2008    14
## 3997               28/04/2011    14
## 3998               28/06/2010    14
## 3999               28/10/2009    14
## 4000               29/01/2009    14
## 4001               29/03/2011    14
## 4002               29/04/2011    14
## 4003               29/05/2007    14
## 4004               29/05/2008    14
## 4005               29/10/2002    14
## 4006               30/03/2007    14
## 4007               30/03/2011    14
## 4008               30/04/1999    14
## 4009               30/06/1998    14
## 4010               30/07/2002    14
## 4011               30/12/2002    14
## 4012               30/12/2010    14
## 4013               31/08/2010    14
## 4014               31/10/2006    14
## 4015               01/02/1997    13
## 4016               01/02/2007    13
## 4017               01/04/2009    13
## 4018               01/07/1998    13
## 4019               01/12/1998    13
## 4020               02/01/1999    13
## 4021               02/01/2003    13
## 4022               02/03/2010    13
## 4023               02/06/1999    13
## 4024               02/06/2013    13
## 4025               02/07/2009    13
## 4026               02/09/1996    13
## 4027               02/10/1997    13
## 4028               03/01/2007    13
## 4029               03/02/2011    13
## 4030               03/03/2005    13
## 4031               03/04/2014    13
## 4032               03/07/2008    13
## 4033               03/09/2009    13
## 4034               03/11/1999    13
## 4035               03/11/2000    13
## 4036               04/05/1999    13
## 4037               04/05/2000    13
## 4038               04/05/2007    13
## 4039               04/07/1996    13
## 4040               04/07/2001    13
## 4041               04/10/2010    13
## 4042               04/10/2011    13
## 4043               04/10/2013    13
## 4044               05/01/2000    13
## 4045               05/01/2010    13
## 4046               05/02/1996    13
## 4047               05/02/2004    13
## 4048               05/03/2003    13
## 4049               05/04/2011    13
## 4050               05/06/2003    13
## 4051               05/10/2001    13
## 4052               05/12/2008    13
## 4053               06/01/2003    13
## 4054               06/01/2009    13
## 4055               06/05/2008    13
## 4056               06/06/2011    13
## 4057               06/08/2002    13
## 4058               06/08/2010    13
## 4059               06/10/1996    13
## 4060               06/11/1998    13
## 4061               06/11/2001    13
## 4062               06/12/2007    13
## 4063               06/12/2010    13
## 4064               07/01/2014    13
## 4065               07/02/2014    13
## 4066               07/03/2001    13
## 4067               07/03/2003    13
## 4068               07/04/2014    13
## 4069               07/10/2009    13
## 4070               07/12/2001    13
## 4071               08/01/2013    13
## 4072               08/02/2005    13
## 4073               08/03/2010    13
## 4074               08/04/2005    13
## 4075               08/04/2010    13
## 4076               08/04/2011    13
## 4077               08/12/1998    13
## 4078               08/12/2008    13
## 4079               09/02/1996    13
## 4080               09/06/1996    13
## 4081               09/06/2004    13
## 4082               09/06/2011    13
## 4083               09/07/2010    13
## 4084               09/08/1999    13
## 4085               09/10/2007    13
## 4086               09/11/2001    13
## 4087               09/11/2007    13
## 4088               09/12/2002    13
## 4089               10/04/2014    13
## 4090               10/06/2009    13
## 4091               10/12/2010    13
## 4092               11/01/2010    13
## 4093               11/01/2012    13
## 4094               11/02/2000    13
## 4095               12/01/1996    13
## 4096               12/03/2010    13
## 4097               12/04/2011    13
## 4098               12/08/2000    13
## 4099               12/11/2001    13
## 4100               13/03/2009    13
## 4101               13/05/2002    13
## 4102               13/09/2001    13
## 4103               13/11/2009    13
## 4104               14/02/2002    13
## 4105               14/04/2008    13
## 4106               14/04/2014    13
## 4107               14/08/2009    13
## 4108               14/09/2004    13
## 4109               14/10/2005    13
## 4110               14/11/2001    13
## 4111               15/03/1996    13
## 4112               15/05/2009    13
## 4113               15/07/2004    13
## 4114               15/09/2006    13
## 4115               15/11/1997    13
## 4116               15/12/1998    13
## 4117               15/12/2010    13
## 4118               16/01/1996    13
## 4119               16/02/2001    13
## 4120               16/07/2009    13
## 4121               16/09/2010    13
## 4122               16/10/1997    13
## 4123               16/11/2007    13
## 4124               17/01/2007    13
## 4125               17/04/2003    13
## 4126               17/09/2010    13
## 4127               17/12/2007    13
## 4128               18/02/2005    13
## 4129               18/04/2005    13
## 4130               18/05/2012    13
## 4131               18/06/1999    13
## 4132               18/09/1998    13
## 4133               18/12/2009    13
## 4134               19/01/1999    13
## 4135               19/02/2002    13
## 4136               19/04/1999    13
## 4137               19/04/2008    13
## 4138               19/07/2003    13
## 4139               19/09/2003    13
## 4140               19/09/2008    13
## 4141               19/10/1998    13
## 4142               20/01/2000    13
## 4143               20/04/1996    13
## 4144               20/07/1996    13
## 4145               20/08/2008    13
## 4146               20/11/2009    13
## 4147               20/12/2004    13
## 4148               21/03/2002    13
## 4149               21/05/2010    13
## 4150               21/06/2010    13
## 4151               21/09/2006    13
## 4152               21/12/2011    13
## 4153               21/12/2012    13
## 4154               22/03/2007    13
## 4155               22/04/1999    13
## 4156               22/05/2001    13
## 4157               22/07/2001    13
## 4158               22/09/2000    13
## 4159               22/11/2006    13
## 4160               23/01/2013    13
## 4161               23/02/2007    13
## 4162               23/04/2008    13
## 4163               23/04/2009    13
## 4164               23/05/2002    13
## 4165               23/05/2008    13
## 4166               23/06/2009    13
## 4167               23/06/2011    13
## 4168               23/10/1996    13
## 4169               23/10/1998    13
## 4170               23/10/2008    13
## 4171               24/03/2014    13
## 4172               24/06/2010    13
## 4173               24/08/1996    13
## 4174               24/09/2004    13
## 4175               25/01/1999    13
## 4176               25/02/2003    13
## 4177               25/02/2004    13
## 4178               25/02/2009    13
## 4179               25/03/2009    13
## 4180               25/03/2011    13
## 4181               25/05/1996    13
## 4182               25/05/2004    13
## 4183               25/06/1999    13
## 4184               25/08/1996    13
## 4185               25/10/2010    13
## 4186               25/11/2002    13
## 4187               26/06/2009    13
## 4188               26/08/1998    13
## 4189               26/10/2012    13
## 4190               26/11/2008    13
## 4191               27/01/1999    13
## 4192               27/01/2005    13
## 4193               27/02/2009    13
## 4194               27/04/1996    13
## 4195               27/09/2012    13
## 4196               27/10/2011    13
## 4197               27/11/1996    13
## 4198               27/12/1996    13
## 4199               28/04/1996    13
## 4200               28/06/1996    13
## 4201               28/07/2006    13
## 4202               28/11/2007    13
## 4203               29/01/2008    13
## 4204               29/04/2006    13
## 4205               29/06/2005    13
## 4206               29/08/2002    13
## 4207               29/10/2004    13
## 4208               29/11/2012    13
## 4209               29/12/2003    13
## 4210               29/12/2004    13
## 4211               30/06/2009    13
## 4212               30/09/2011    13
## 4213               30/11/2006    13
## 4214               30/12/1998    13
## 4215               31/05/2012    13
## 4216               31/08/2005    13
## 4217               31/10/2012    13
## 4218               01/01/1998    12
## 4219               01/02/2003    12
## 4220               01/07/2001    12
## 4221               01/09/1996    12
## 4222               01/11/2013    12
## 4223               02/01/2007    12
## 4224               02/07/2010    12
## 4225               02/09/2005    12
## 4226               02/11/2007    12
## 4227               02/12/2003    12
## 4228               02/12/2008    12
## 4229               03/01/2012    12
## 4230               03/03/2011    12
## 4231               03/05/2003    12
## 4232               03/09/1999    12
## 4233               04/01/2008    12
## 4234               04/03/2009    12
## 4235               04/08/2000    12
## 4236               04/12/2009    12
## 4237               05/03/2014    12
## 4238               05/07/1999    12
## 4239               06/01/1997    12
## 4240               06/01/2012    12
## 4241               06/03/1996    12
## 4242               06/04/2001    12
## 4243               06/07/2007    12
## 4244               07/01/2011    12
## 4245               07/05/2009    12
## 4246               07/06/2001    12
## 4247               07/12/2009    12
## 4248               08/03/1998    12
## 4249               08/03/2011    12
## 4250               08/04/2003    12
## 4251               08/04/2014    12
## 4252               08/10/1999    12
## 4253               08/11/2002    12
## 4254               08/12/2003    12
## 4255               09/01/1996    12
## 4256               09/03/2007    12
## 4257               09/04/1998    12
## 4258               09/05/1998    12
## 4259               09/05/2002    12
## 4260               09/06/2014    12
## 4261               09/11/2010    12
## 4262               10/03/2014    12
## 4263               10/04/2005    12
## 4264               10/04/2010    12
## 4265               10/12/1998    12
## 4266               10/12/2000    12
## 4267               10/12/2004    12
## 4268               11/02/2003    12
## 4269               11/04/1999    12
## 4270               11/09/2004    12
## 4271               11/11/2010    12
## 4272               12/01/2010    12
## 4273               12/03/2004    12
## 4274               12/10/1995    12
## 4275               12/11/2004    12
## 4276               12/11/2008    12
## 4277               13/01/2003    12
## 4278               13/02/2014    12
## 4279               13/03/2012    12
## 4280               13/03/2014    12
## 4281               13/04/2009    12
## 4282               13/10/1999    12
## 4283               13/12/1997    12
## 4284               14/01/2014    12
## 4285               14/02/1997    12
## 4286               14/03/1996    12
## 4287               14/03/2007    12
## 4288               14/03/2011    12
## 4289               14/05/2010    12
## 4290               14/11/2008    12
## 4291               15/01/2008    12
## 4292               15/04/2011    12
## 4293               15/08/2008    12
## 4294               15/09/2003    12
## 4295               16/02/2003    12
## 4296               16/04/2004    12
## 4297               17/05/2004    12
## 4298               17/10/2008    12
## 4299               17/11/1998    12
## 4300               17/11/2009    12
## 4301               18/01/1999    12
## 4302               18/01/2008    12
## 4303               18/02/2011    12
## 4304               18/03/2008    12
## 4305               18/03/2014    12
## 4306               18/12/1998    12
## 4307               18/12/1999    12
## 4308               19/05/2011    12
## 4309               19/05/2014    12
## 4310               19/07/2002    12
## 4311               19/07/2013    12
## 4312               19/10/1999    12
## 4313               19/12/2003    12
## 4314               20/02/2007    12
## 4315               20/04/2001    12
## 4316               20/09/2003    12
## 4317               20/12/2002    12
## 4318               21/01/2000    12
## 4319               21/01/2004    12
## 4320               21/01/2011    12
## 4321               21/02/2005    12
## 4322               21/04/1999    12
## 4323               21/04/2014    12
## 4324               21/07/2009    12
## 4325               21/08/2009    12
## 4326               21/11/2001    12
## 4327               21/12/1999    12
## 4328               21/12/2000    12
## 4329               21/12/2001    12
## 4330               22/02/2013    12
## 4331               22/03/1996    12
## 4332               22/06/1997    12
## 4333               22/10/2010    12
## 4334               22/12/1998    12
## 4335               22/12/2006    12
## 4336               23/04/1998    12
## 4337               23/05/1998    12
## 4338               23/07/2005    12
## 4339               23/07/2006    12
## 4340               23/11/2011    12
## 4341               24/03/2011    12
## 4342               24/04/1999    12
## 4343               24/06/1998    12
## 4344               24/07/2004    12
## 4345               24/08/2012    12
## 4346               24/11/2008    12
## 4347               24/11/2009    12
## 4348               24/11/2010    12
## 4349               25/02/2005    12
## 4350               25/08/2001    12
## 4351               26/01/1999    12
## 4352               26/01/2012    12
## 4353               26/02/2010    12
## 4354               26/06/2001    12
## 4355               26/07/2002    12
## 4356               26/09/2001    12
## 4357               27/02/1999    12
## 4358               27/04/2000    12
## 4359               27/07/1996    12
## 4360               27/08/2002    12
## 4361               27/12/2000    12
## 4362               28/02/2003    12
## 4363               28/03/2004    12
## 4364               28/05/2006    12
## 4365               28/06/2008    12
## 4366               28/08/2005    12
## 4367               28/10/2013    12
## 4368               28/11/2006    12
## 4369               29/01/2013    12
## 4370               29/06/2012    12
## 4371               29/07/2011    12
## 4372               29/10/1999    12
## 4373               29/11/2006    12
## 4374               29/12/2000    12
## 4375               30/05/1997    12
## 4376               30/06/2013    12
## 4377               30/10/2001    12
## 4378               30/11/2001    12
## 4379               30/12/2013    12
## 4380               31/01/2001    12
## 4381               31/07/2009    12
## 4382               31/08/2004    12
## 4383               31/12/2002    12
## 4384               01/01/2000    11
## 4385               01/01/2005    11
## 4386               01/01/2011    11
## 4387               01/11/2010    11
## 4388               02/02/1997    11
## 4389               02/06/2001    11
## 4390               02/11/2003    11
## 4391               03/01/2003    11
## 4392               03/01/2011    11
## 4393               03/02/1996    11
## 4394               03/03/2012    11
## 4395               03/03/2014    11
## 4396               03/05/2002    11
## 4397               03/06/1998    11
## 4398               03/06/2001    11
## 4399               03/09/2011    11
## 4400               03/10/1999    11
## 4401               03/10/2009    11
## 4402               03/12/2008    11
## 4403               03/12/2013    11
## 4404               04/02/1996    11
## 4405               04/03/1996    11
## 4406               04/04/2014    11
## 4407               04/06/2002    11
## 4408               05/03/1996    11
## 4409               05/04/1997    11
## 4410               05/04/1999    11
## 4411               05/05/2001    11
## 4412               05/07/2002    11
## 4413               05/09/2004    11
## 4414               06/01/2002    11
## 4415               06/02/2002    11
## 4416               06/04/1999    11
## 4417               06/04/2011    11
## 4418               06/05/2004    11
## 4419               06/06/2014    11
## 4420               06/07/2011    11
## 4421               07/01/2005    11
## 4422               07/02/2011    11
## 4423               07/03/1996    11
## 4424               07/06/1997    11
## 4425               07/10/2003    11
## 4426               07/12/2006    11
## 4427               08/01/2009    11
## 4428               08/02/2008    11
## 4429               08/03/2003    11
## 4430               08/05/2014    11
## 4431               08/06/1998    11
## 4432               08/06/2002    11
## 4433               08/10/2009    11
## 4434               09/04/2010    11
## 4435               09/04/2014    11
## 4436               09/05/2009    11
## 4437               09/07/2011    11
## 4438               09/08/2002    11
## 4439               09/11/2009    11
## 4440               10/03/2011    11
## 4441               10/05/2003    11
## 4442               10/11/1998    11
## 4443               11/02/2009    11
## 4444               11/06/2000    11
## 4445               11/08/1998    11
## 4446               11/08/2013    11
## 4447               11/11/2009    11
## 4448               11/12/2003    11
## 4449               11/12/2009    11
## 4450               12/01/1997    11
## 4451               12/02/1996    11
## 4452               12/03/1996    11
## 4453               12/05/1996    11
## 4454               12/09/2013    11
## 4455               12/10/1997    11
## 4456               12/11/2007    11
## 4457               12/11/2010    11
## 4458               12/12/2006    11
## 4459               13/07/2001    11
## 4460               13/11/1998    11
## 4461               14/02/1996    11
## 4462               14/04/2006    11
## 4463               14/09/1997    11
## 4464               15/02/1999    11
## 4465               15/03/1998    11
## 4466               15/04/2013    11
## 4467               15/05/2004    11
## 4468               15/06/2002    11
## 4469               15/10/2000    11
## 4470               15/11/2010    11
## 4471               16/03/1996    11
## 4472               16/03/2012    11
## 4473               16/09/1999    11
## 4474               16/09/2009    11
## 4475               17/01/2000    11
## 4476               17/01/2008    11
## 4477               17/03/2014    11
## 4478               17/04/2009    11
## 4479               17/04/2014    11
## 4480               17/11/1996    11
## 4481               18/02/2001    11
## 4482               18/03/2000    11
## 4483               18/05/2013    11
## 4484               18/08/2007    11
## 4485               18/10/2013    11
## 4486               19/02/2001    11
## 4487               19/04/2002    11
## 4488               19/05/2002    11
## 4489               19/08/2005    11
## 4490               19/08/2006    11
## 4491               19/11/2007    11
## 4492               20/08/2005    11
## 4493               20/09/2013    11
## 4494               20/10/1998    11
## 4495               20/11/2006    11
## 4496               20/11/2012    11
## 4497               20/12/2009    11
## 4498               21/01/2003    11
## 4499               21/02/2003    11
## 4500               21/03/2014    11
## 4501               21/06/2009    11
## 4502               21/08/2005    11
## 4503               21/11/2005    11
## 4504               22/02/2008    11
## 4505               22/04/2000    11
## 4506               22/04/2001    11
## 4507               22/05/2014    11
## 4508               22/09/1996    11
## 4509               22/11/2011    11
## 4510               22/12/1999    11
## 4511               22/12/2011    11
## 4512               23/02/2010    11
## 4513               23/06/1996    11
## 4514               23/11/2002    11
## 4515               23/12/1996    11
## 4516               23/12/1999    11
## 4517               24/03/2008    11
## 4518               24/05/2013    11
## 4519               24/07/2011    11
## 4520               25/10/1997    11
## 4521               25/10/1999    11
## 4522               25/11/1997    11
## 4523               25/11/2009    11
## 4524               26/02/2003    11
## 4525               26/05/2007    11
## 4526               26/10/2005    11
## 4527               27/01/2006    11
## 4528               27/02/2000    11
## 4529               27/02/2014    11
## 4530               27/05/2011    11
## 4531               27/07/1997    11
## 4532               27/07/2012    11
## 4533               27/10/1998    11
## 4534               27/10/2007    11
## 4535               27/12/2006    11
## 4536               28/01/2011    11
## 4537               28/03/1998    11
## 4538               28/04/2001    11
## 4539               28/05/2010    11
## 4540               28/06/1998    11
## 4541               28/11/2004    11
## 4542               28/12/1999    11
## 4543               28/12/2001    11
## 4544               28/12/2009    11
## 4545               29/01/1996    11
## 4546               29/01/2000    11
## 4547               29/05/1999    11
## 4548               29/05/2000    11
## 4549               29/10/2010    11
## 4550               29/12/2005    11
## 4551               30/04/2009    11
## 4552               30/04/2010    11
## 4553               30/06/2010    11
## 4554               30/07/1999    11
## 4555               30/08/1997    11
## 4556               30/10/2003    11
## 4557               31/01/2003    11
## 4558               31/03/2014    11
## 4559               31/08/2012    11
## 4560               01/03/2003    10
## 4561               01/05/2005    10
## 4562               01/06/1996    10
## 4563               01/07/2011    10
## 4564               01/08/1999    10
## 4565               02/01/2010    10
## 4566               02/01/2014    10
## 4567               02/02/2013    10
## 4568               02/03/1997    10
## 4569               02/05/2008    10
## 4570               02/06/2002    10
## 4571               02/07/2006    10
## 4572               02/09/2006    10
## 4573               03/02/2013    10
## 4574               03/09/2000    10
## 4575               03/09/2008    10
## 4576               03/10/2010    10
## 4577               04/05/1996    10
## 4578               04/05/1997    10
## 4579               05/04/2003    10
## 4580               05/08/2001    10
## 4581               05/10/1996    10
## 4582               05/10/1997    10
## 4583               05/10/2013    10
## 4584               06/05/2001    10
## 4585               06/05/2014    10
## 4586               06/09/1997    10
## 4587               06/11/2005    10
## 4588               06/12/2002    10
## 4589               07/04/1996    10
## 4590               07/04/2012    10
## 4591               07/06/2013    10
## 4592               07/10/2012    10
## 4593               08/05/2004    10
## 4594               08/06/1996    10
## 4595               08/06/2003    10
## 4596               08/10/2002    10
## 4597               09/01/2007    10
## 4598               09/01/2013    10
## 4599               09/08/1997    10
## 4600               09/10/1995    10
## 4601               10/09/2000    10
## 4602               10/11/2002    10
## 4603               11/02/1999    10
## 4604               11/02/2014    10
## 4605               11/06/2011    10
## 4606               11/09/1998    10
## 4607               11/09/2011    10
## 4608               11/10/2007    10
## 4609               11/10/2013    10
## 4610               11/11/2002    10
## 4611               11/12/2013    10
## 4612               12/02/2014    10
## 4613               12/11/2012    10
## 4614               12/12/2003    10
## 4615               13/05/2000    10
## 4616               14/01/2009    10
## 4617               14/09/1996    10
## 4618               14/10/2006    10
## 4619               14/11/1996    10
## 4620               15/02/1997    10
## 4621               15/02/2008    10
## 4622               15/03/2014    10
## 4623               15/05/2005    10
## 4624               15/06/2013    10
## 4625               15/08/2009    10
## 4626               15/10/2005    10
## 4627               16/01/2008    10
## 4628               16/02/1997    10
## 4629               16/02/1998    10
## 4630               16/03/2002    10
## 4631               16/04/2014    10
## 4632               16/07/2006    10
## 4633               16/08/1998    10
## 4634               16/11/1996    10
## 4635               17/01/1996    10
## 4636               17/02/2001    10
## 4637               17/02/2013    10
## 4638               17/05/1997    10
## 4639               17/08/1997    10
## 4640               17/12/1998    10
## 4641               17/12/2005    10
## 4642               17/12/2013    10
## 4643               18/01/1997    10
## 4644               18/07/2004    10
## 4645               18/08/1996    10
## 4646               19/01/2002    10
## 4647               19/01/2007    10
## 4648               19/02/1999    10
## 4649               19/02/2005    10
## 4650               19/12/2001    10
## 4651               20/01/2001    10
## 4652               20/03/2005    10
## 4653               20/04/2002    10
## 4654               20/09/2008    10
## 4655               20/11/2010    10
## 4656               20/12/2013    10
## 4657               21/03/1996    10
## 4658               21/04/2002    10
## 4659               21/06/2003    10
## 4660               21/06/2008    10
## 4661               21/07/2001    10
## 4662               21/11/2012    10
## 4663               22/03/2013    10
## 4664               23/07/2011    10
## 4665               23/08/2002    10
## 4666               23/12/1998    10
## 4667               23/12/2001    10
## 4668               23/12/2002    10
## 4669               23/12/2009    10
## 4670               24/04/1997    10
## 4671               24/06/2011    10
## 4672               24/07/1995    10
## 4673               24/08/2001    10
## 4674               24/11/1996    10
## 4675               24/11/1998    10
## 4676               25/01/1996    10
## 4677               25/11/2013    10
## 4678               26/01/2013    10
## 4679               26/02/1996    10
## 4680               26/05/1997    10
## 4681               26/09/1999    10
## 4682               26/10/1996    10
## 4683               27/01/2001    10
## 4684               27/02/2004    10
## 4685               27/05/2002    10
## 4686               27/06/2003    10
## 4687               27/08/1999    10
## 4688               27/12/2007    10
## 4689               28/02/1996    10
## 4690               28/02/1997    10
## 4691               28/02/2014    10
## 4692               28/04/2004    10
## 4693               28/09/2013    10
## 4694               28/12/2000    10
## 4695               29/01/2003    10
## 4696               29/01/2005    10
## 4697               29/01/2010    10
## 4698               29/02/1996    10
## 4699               29/05/2014    10
## 4700               29/11/1997    10
## 4701               29/11/2001    10
## 4702               30/01/2000    10
## 4703               30/07/2005    10
## 4704               30/11/1997    10
## 4705               30/12/2004    10
## 4706               31/03/1996    10
## 4707               31/07/2011    10
## 4708               31/08/2002    10
## 4709               31/08/2003    10
## 4710               31/12/2004    10
## 4711               31/12/2008    10
## 4712               01/01/2001     9
## 4713               01/01/2006     9
## 4714               01/02/1996     9
## 4715               01/02/1998     9
## 4716               01/04/2001     9
## 4717               01/04/2014     9
## 4718               01/06/2003     9
## 4719               01/08/1998     9
## 4720               01/09/1997     9
## 4721               01/09/2001     9
## 4722               01/09/2003     9
## 4723               01/09/2013     9
## 4724               01/10/2011     9
## 4725               01/11/1998     9
## 4726               01/11/2003     9
## 4727               01/12/2007     9
## 4728               02/02/1996     9
## 4729               02/03/2013     9
## 4730               02/05/1999     9
## 4731               02/05/2004     9
## 4732               02/06/2011     9
## 4733               02/09/2001     9
## 4734               03/01/2002     9
## 4735               03/05/2008     9
## 4736               03/09/2005     9
## 4737               03/09/2007     9
## 4738               04/02/2011     9
## 4739               04/03/2011     9
## 4740               04/07/2002     9
## 4741               04/08/2007     9
## 4742               04/08/2013     9
## 4743               04/09/2009     9
## 4744               04/09/2010     9
## 4745               04/10/1997     9
## 4746               05/04/2009     9
## 4747               05/07/1998     9
## 4748               06/02/2005     9
## 4749               06/02/2014     9
## 4750               06/03/2004     9
## 4751               06/03/2005     9
## 4752               06/04/2012     9
## 4753               06/07/2002     9
## 4754               06/09/2002     9
## 4755               06/09/2009     9
## 4756               07/03/2004     9
## 4757               07/03/2014     9
## 4758               07/06/2008     9
## 4759               07/07/1996     9
## 4760               07/07/2009     9
## 4761               07/11/2003     9
## 4762               07/12/2011     9
## 4763               08/02/1997     9
## 4764               08/04/2006     9
## 4765               08/10/2006     9
## 4766               08/11/1997     9
## 4767               08/12/2010     9
## 4768               09/04/2006     9
## 4769               09/10/1998     9
## 4770               09/10/2010     9
## 4771               10/03/2002     9
## 4772               10/03/2012     9
## 4773               10/12/1999     9
## 4774               11/05/2002     9
## 4775               11/12/1998     9
## 4776               11/12/2005     9
## 4777               12/04/1997     9
## 4778               12/12/1995     9
## 4779               13/02/2009     9
## 4780               13/02/2010     9
## 4781               13/04/1997     9
## 4782               13/05/2014     9
## 4783               13/07/1997     9
## 4784               13/07/2004     9
## 4785               13/08/2005     9
## 4786               13/08/2006     9
## 4787               14/01/2000     9
## 4788               14/03/1998     9
## 4789               14/06/2003     9
## 4790               14/08/1998     9
## 4791               14/11/2004     9
## 4792               14/12/1997     9
## 4793               15/01/2005     9
## 4794               15/05/1999     9
## 4795               15/05/2010     9
## 4796               15/06/1996     9
## 4797               15/09/2001     9
## 4798               15/11/2012     9
## 4799               15/11/2013     9
## 4800               15/12/2007     9
## 4801               16/01/2006     9
## 4802               16/06/2014     9
## 4803               16/10/2009     9
## 4804               17/02/2002     9
## 4805               17/03/1996     9
## 4806               17/03/2012     9
## 4807               17/04/1999     9
## 4808               17/09/2005     9
## 4809               18/09/2005     9
## 4810               18/09/2010     9
## 4811               18/10/1998     9
## 4812               18/11/2001     9
## 4813               18/11/2006     9
## 4814               19/01/2004     9
## 4815               19/02/1996     9
## 4816               19/02/2010     9
## 4817               19/04/1997     9
## 4818               19/05/2007     9
## 4819               19/06/1999     9
## 4820               19/10/1997     9
## 4821               19/11/2006     9
## 4822               19/12/2008     9
## 4823               20/01/2003     9
## 4824               20/01/2013     9
## 4825               20/07/2002     9
## 4826               20/09/1997     9
## 4827               20/10/2009     9
## 4828               20/11/2004     9
## 4829               20/12/2001     9
## 4830               21/05/2006     9
## 4831               21/05/2014     9
## 4832               21/08/2010     9
## 4833               21/10/2012     9
## 4834               22/02/1996     9
## 4835               22/03/2011     9
## 4836               22/05/2004     9
## 4837               22/08/1995     9
## 4838               22/10/2000     9
## 4839               22/10/2005     9
## 4840               22/11/1997     9
## 4841               22/11/2000     9
## 4842               22/11/2005     9
## 4843               23/01/1996     9
## 4844               23/01/2005     9
## 4845               23/06/2012     9
## 4846               23/09/2000     9
## 4847               23/10/2009     9
## 4848               24/02/2013     9
## 4849               24/03/1996     9
## 4850               24/04/1998     9
## 4851               24/04/2014     9
## 4852               24/05/1998     9
## 4853               24/07/1998     9
## 4854               24/10/1998     9
## 4855               25/01/1997     9
## 4856               25/02/2011     9
## 4857               25/06/2006     9
## 4858               25/09/1999     9
## 4859               25/10/2004     9
## 4860               25/11/2003     9
## 4861               25/11/2012     9
## 4862               26/02/2012     9
## 4863               26/03/2010     9
## 4864               26/05/2008     9
## 4865               26/08/2000     9
## 4866               26/10/1997     9
## 4867               26/10/2003     9
## 4868               26/11/1997     9
## 4869               26/12/1997     9
## 4870               27/03/2014     9
## 4871               27/05/2000     9
## 4872               27/07/2013     9
## 4873               27/12/2002     9
## 4874               27/12/2005     9
## 4875               28/02/2004     9
## 4876               28/05/2012     9
## 4877               28/06/1997     9
## 4878               28/06/2003     9
## 4879               28/09/2003     9
## 4880               28/10/2000     9
## 4881               28/10/2001     9
## 4882               28/12/1998     9
## 4883               28/12/2011     9
## 4884               29/02/2004     9
## 4885               29/03/1997     9
## 4886               29/04/2014     9
## 4887               29/06/2003     9
## 4888               29/07/2000     9
## 4889               29/07/2006     9
## 4890               29/08/2011     9
## 4891               29/12/1996     9
## 4892               29/12/1998     9
## 4893               30/01/2005     9
## 4894               30/01/2010     9
## 4895               30/03/1997     9
## 4896               30/04/2000     9
## 4897               30/04/2005     9
## 4898               30/05/2004     9
## 4899               30/06/2001     9
## 4900               30/07/2011     9
## 4901               30/10/1998     9
## 4902               30/12/1999     9
## 4903               30/12/2003     9
## 4904               30/12/2005     9
## 4905               30/12/2011     9
## 4906               31/01/2010     9
## 4907               31/07/1999     9
## 4908               31/12/2003     9
## 4909               31/12/2012     9
## 4910               01/01/2002     8
## 4911               01/01/2009     8
## 4912               01/03/1997     8
## 4913               01/05/2009     8
## 4914               01/09/1995     8
## 4915               01/11/2008     8
## 4916               01/12/1996     8
## 4917               01/12/2002     8
## 4918               02/01/2004     8
## 4919               02/01/2005     8
## 4920               02/04/1999     8
## 4921               02/04/2011     8
## 4922               02/05/1998     8
## 4923               02/10/2004     8
## 4924               02/10/2005     8
## 4925               02/11/2002     8
## 4926               03/01/2014     8
## 4927               03/03/1996     8
## 4928               03/08/1995     8
## 4929               03/10/2004     8
## 4930               03/11/1996     8
## 4931               04/02/2007     8
## 4932               04/04/1998     8
## 4933               04/04/2009     8
## 4934               04/05/2008     8
## 4935               04/06/2005     8
## 4936               04/06/2006     8
## 4937               04/07/2012     8
## 4938               04/09/2004     8
## 4939               04/11/2001     8
## 4940               05/01/2014     8
## 4941               05/05/2002     8
## 4942               05/05/2014     8
## 4943               05/07/2004     8
## 4944               06/01/2001     8
## 4945               06/03/1999     8
## 4946               06/04/2007     8
## 4947               06/04/2013     8
## 4948               06/07/1996     8
## 4949               06/08/2006     8
## 4950               06/09/2003     8
## 4951               06/12/2003     8
## 4952               07/02/1998     8
## 4953               07/05/2000     8
## 4954               07/05/2006     8
## 4955               07/08/2005     8
## 4956               07/08/2011     8
## 4957               07/11/1995     8
## 4958               08/03/1997     8
## 4959               08/04/2000     8
## 4960               08/06/1997     8
## 4961               08/08/1999     8
## 4962               08/08/2009     8
## 4963               08/09/1996     8
## 4964               08/09/2001     8
## 4965               08/09/2002     8
## 4966               08/10/2005     8
## 4967               08/11/2013     8
## 4968               09/01/2009     8
## 4969               09/04/2005     8
## 4970               09/06/2001     8
## 4971               09/10/1999     8
## 4972               09/10/2011     8
## 4973               10/01/2004     8
## 4974               10/01/2011     8
## 4975               10/06/2000     8
## 4976               10/06/2006     8
## 4977               10/07/2011     8
## 4978               10/08/2013     8
## 4979               10/10/2004     8
## 4980               10/11/2000     8
## 4981               10/11/2012     8
## 4982               10/12/2005     8
## 4983               11/01/2004     8
## 4984               11/02/2006     8
## 4985               11/04/2014     8
## 4986               11/06/2006     8
## 4987               11/08/1996     8
## 4988               11/09/2010     8
## 4989               11/11/1999     8
## 4990               12/01/2002     8
## 4991               12/01/2003     8
## 4992               12/03/2005     8
## 4993               12/05/2001     8
## 4994               12/09/2009     8
## 4995               12/11/2000     8
## 4996               13/01/2002     8
## 4997               13/05/2007     8
## 4998               13/06/2014     8
## 4999               13/07/1996     8
## 5000               13/09/1997     8
## 5001               13/09/2010     8
## 5002               13/10/1996     8
## 5003               13/10/2002     8
## 5004               13/12/1998     8
## 5005               14/01/1996     8
## 5006               14/02/1999     8
## 5007               14/02/2010     8
## 5008               14/03/1999     8
## 5009               14/04/2013     8
## 5010               14/05/2000     8
## 5011               14/06/1997     8
## 5012               14/08/1999     8
## 5013               14/09/2008     8
## 5014               14/11/1998     8
## 5015               14/12/1995     8
## 5016               14/12/1996     8
## 5017               15/01/2000     8
## 5018               15/01/2011     8
## 5019               15/02/1996     8
## 5020               15/09/2012     8
## 5021               16/01/2004     8
## 5022               16/01/2010     8
## 5023               16/02/2013     8
## 5024               16/03/2003     8
## 5025               16/05/1998     8
## 5026               16/07/2011     8
## 5027               16/10/2005     8
## 5028               17/04/2004     8
## 5029               17/04/2005     8
## 5030               17/04/2011     8
## 5031               17/06/2006     8
## 5032               17/08/1996     8
## 5033               17/09/2011     8
## 5034               17/10/1998     8
## 5035               18/01/1996     8
## 5036               18/01/2012     8
## 5037               18/04/1998     8
## 5038               18/04/2010     8
## 5039               18/04/2011     8
## 5040               18/05/2002     8
## 5041               18/08/2002     8
## 5042               18/08/2012     8
## 5043               18/09/1999     8
## 5044               18/12/2004     8
## 5045               19/01/1997     8
## 5046               19/03/2005     8
## 5047               19/07/1998     8
## 5048               19/09/2009     8
## 5049               19/10/2013     8
## 5050               20/01/1997     8
## 5051               20/01/2012     8
## 5052               20/05/2006     8
## 5053               20/09/1995     8
## 5054               20/10/2013     8
## 5055               20/11/2011     8
## 5056               21/02/2010     8
## 5057               21/04/2007     8
## 5058               21/07/2002     8
## 5059               21/08/2004     8
## 5060               21/09/1996     8
## 5061               21/09/2003     8
## 5062               21/10/2000     8
## 5063               21/12/1997     8
## 5064               22/03/1997     8
## 5065               22/07/2000     8
## 5066               22/12/1997     8
## 5067               22/12/2013     8
## 5068               23/01/2000     8
## 5069               23/02/1997     8
## 5070               23/02/2008     8
## 5071               23/03/1997     8
## 5072               23/03/2002     8
## 5073               23/06/2001     8
## 5074               23/06/2002     8
## 5075               23/06/2014     8
## 5076               23/08/1997     8
## 5077               23/08/2009     8
## 5078               23/10/2004     8
## 5079               23/10/2011     8
## 5080               23/12/2003     8
## 5081               23/12/2011     8
## 5082               24/07/2005     8
## 5083               24/08/2003     8
## 5084               24/10/1995     8
## 5085               24/10/1999     8
## 5086               25/01/2004     8
## 5087               25/02/2006     8
## 5088               25/03/2005     8
## 5089               25/03/2006     8
## 5090               25/04/2004     8
## 5091               25/04/2010     8
## 5092               25/06/2000     8
## 5093               25/06/2014     8
## 5094               25/08/1995     8
## 5095               25/08/2002     8
## 5096               25/08/2012     8
## 5097               25/08/2013     8
## 5098               25/12/1996     8
## 5099               26/01/1996     8
## 5100               26/03/2000     8
## 5101               26/03/2006     8
## 5102               26/04/2009     8
## 5103               26/06/2010     8
## 5104               26/07/1998     8
## 5105               26/11/1999     8
## 5106               27/02/1996     8
## 5107               27/05/2013     8
## 5108               27/09/1997     8
## 5109               27/10/2005     8
## 5110               27/11/1998     8
## 5111               27/12/2001     8
## 5112               28/02/1999     8
## 5113               28/03/1997     8
## 5114               28/03/2009     8
## 5115               28/04/2002     8
## 5116               28/06/2009     8
## 5117               28/08/1999     8
## 5118               28/08/2010     8
## 5119               28/08/2011     8
## 5120               28/09/2008     8
## 5121               28/10/2012     8
## 5122               28/12/1997     8
## 5123               29/03/2002     8
## 5124               29/03/2008     8
## 5125               29/03/2013     8
## 5126               29/05/2004     8
## 5127               29/05/2006     8
## 5128               29/06/1996     8
## 5129               29/08/1998     8
## 5130               29/10/2000     8
## 5131               29/11/1995     8
## 5132               29/12/2008     8
## 5133               30/05/1999     8
## 5134               30/10/2004     8
## 5135               30/11/1996     8
## 5136               31/01/1998     8
## 5137               31/05/1999     8
## 5138               01/01/1997     7
## 5139               01/01/2004     7
## 5140               01/01/2007     7
## 5141               01/01/2012     7
## 5142               01/04/2000     7
## 5143               01/05/1999     7
## 5144               01/06/2002     7
## 5145               01/06/2008     7
## 5146               01/07/2000     7
## 5147               01/07/2012     7
## 5148               01/09/2007     7
## 5149               01/11/1995     7
## 5150               02/01/1996     7
## 5151               02/02/2003     7
## 5152               02/02/2008     7
## 5153               02/04/2000     7
## 5154               02/04/2014     7
## 5155               02/05/2009     7
## 5156               02/08/1997     7
## 5157               02/09/2013     7
## 5158               02/11/1997     7
## 5159               03/01/1996     7
## 5160               03/01/1999     7
## 5161               03/01/2010     7
## 5162               03/05/1997     7
## 5163               03/07/1998     7
## 5164               03/08/2007     7
## 5165               03/11/2002     7
## 5166               03/11/2013     7
## 5167               04/01/1998     7
## 5168               04/02/2014     7
## 5169               04/04/1999     7
## 5170               04/04/2010     7
## 5171               04/05/1995     7
## 5172               04/06/2000     7
## 5173               04/06/2014     7
## 5174               04/07/1998     7
## 5175               04/07/2004     7
## 5176               04/10/1995     7
## 5177               04/10/1998     7
## 5178               04/10/2008     7
## 5179               04/11/2000     7
## 5180               04/11/2006     7
## 5181               04/11/2007     7
## 5182               04/12/2005     7
## 5183               05/04/2014     7
## 5184               05/06/2005     7
## 5185               05/06/2011     7
## 5186               05/06/2014     7
## 5187               05/08/2000     7
## 5188               05/10/1995     7
## 5189               05/10/2002     7
## 5190               06/01/2007     7
## 5191               06/01/2013     7
## 5192               06/04/2003     7
## 5193               06/06/2004     7
## 5194               06/07/2013     7
## 5195               06/08/2000     7
## 5196               06/11/2003     7
## 5197               07/01/2007     7
## 5198               07/02/2004     7
## 5199               07/03/1999     7
## 5200               07/03/2009     7
## 5201               07/04/2002     7
## 5202               07/06/2003     7
## 5203               07/07/2001     7
## 5204               07/09/2002     7
## 5205               07/12/1995     7
## 5206               08/01/2005     7
## 5207               08/06/2013     7
## 5208               08/08/2004     7
## 5209               08/09/1995     7
## 5210               08/09/2013     7
## 5211               08/10/2011     7
## 5212               08/12/2013     7
## 5213               09/01/2000     7
## 5214               09/02/1997     7
## 5215               09/03/2012     7
## 5216               09/05/2010     7
## 5217               09/08/2003     7
## 5218               09/11/1996     7
## 5219               09/11/2013     7
## 5220               10/04/1998     7
## 5221               10/05/1997     7
## 5222               10/06/2007     7
## 5223               10/07/2005     7
## 5224               10/10/1995     7
## 5225               10/11/2006     7
## 5226               10/11/2007     7
## 5227               11/04/1998     7
## 5228               11/05/1995     7
## 5229               11/05/1997     7
## 5230               11/07/1999     7
## 5231               11/07/2009     7
## 5232               11/10/1998     7
## 5233               11/10/2009     7
## 5234               11/11/2005     7
## 5235               11/11/2006     7
## 5236               11/11/2013     7
## 5237               12/02/2005     7
## 5238               12/04/2009     7
## 5239               12/05/2012     7
## 5240               12/05/2013     7
## 5241               12/06/2010     7
## 5242               12/07/1997     7
## 5243               12/07/2003     7
## 5244               12/07/2009     7
## 5245               12/08/2006     7
## 5246               12/08/2007     7
## 5247               12/09/2004     7
## 5248               12/10/2013     7
## 5249               13/01/1996     7
## 5250               13/02/1996     7
## 5251               13/04/2001     7
## 5252               13/05/2001     7
## 5253               13/08/2011     7
## 5254               13/10/2007     7
## 5255               13/10/2012     7
## 5256               13/11/1995     7
## 5257               13/11/2005     7
## 5258               14/01/2012     7
## 5259               14/03/2010     7
## 5260               14/04/2007     7
## 5261               14/05/2005     7
## 5262               14/05/2014     7
## 5263               14/07/2012     7
## 5264               14/08/2011     7
## 5265               14/09/2003     7
## 5266               14/10/2007     7
## 5267               14/12/2013     7
## 5268               15/02/1998     7
## 5269               15/03/1997     7
## 5270               15/03/2008     7
## 5271               15/04/2000     7
## 5272               15/06/2003     7
## 5273               15/06/2008     7
## 5274               15/07/2001     7
## 5275               15/08/1999     7
## 5276               15/08/2010     7
## 5277               15/09/2002     7
## 5278               15/11/1995     7
## 5279               15/11/2008     7
## 5280               15/12/1996     7
## 5281               15/12/2001     7
## 5282               16/02/1996     7
## 5283               16/03/1997     7
## 5284               16/06/2002     7
## 5285               16/06/2007     7
## 5286               16/07/2005     7
## 5287               16/08/2003     7
## 5288               16/08/2009     7
## 5289               16/09/2006     7
## 5290               16/11/2013     7
## 5291               16/12/2007     7
## 5292               17/01/1998     7
## 5293               17/01/2004     7
## 5294               17/05/1998     7
## 5295               17/06/2000     7
## 5296               17/06/2001     7
## 5297               17/07/2004     7
## 5298               17/08/1995     7
## 5299               17/11/1995     7
## 5300               18/01/2003     7
## 5301               18/02/2012     7
## 5302               18/05/2014     7
## 5303               18/06/2005     7
## 5304               18/06/2014     7
## 5305               18/09/2004     7
## 5306               18/09/2011     7
## 5307               18/11/2000     7
## 5308               19/01/1996     7
## 5309               19/02/2011     7
## 5310               19/02/2012     7
## 5311               19/05/1996     7
## 5312               19/05/1999     7
## 5313               19/05/2001     7
## 5314               19/05/2013     7
## 5315               19/07/1997     7
## 5316               19/08/2000     7
## 5317               19/08/2001     7
## 5318               19/09/1998     7
## 5319               19/09/1999     7
## 5320               19/10/1996     7
## 5321               19/11/2005     7
## 5322               19/12/1999     7
## 5323               20/02/1999     7
## 5324               20/05/2001     7
## 5325               20/05/2014     7
## 5326               20/07/2013     7
## 5327               20/08/2011     7
## 5328               20/12/2010     7
## 5329               21/02/1996     7
## 5330               21/02/1999     7
## 5331               21/04/2000     7
## 5332               21/05/2005     7
## 5333               21/06/1997     7
## 5334               21/09/2013     7
## 5335               21/11/1999     7
## 5336               21/12/2006     7
## 5337               21/12/2008     7
## 5338               22/02/1998     7
## 5339               22/02/2011     7
## 5340               22/05/1999     7
## 5341               22/05/2010     7
## 5342               22/06/2002     7
## 5343               22/09/1995     7
## 5344               22/09/2012     7
## 5345               22/12/2000     7
## 5346               22/12/2012     7
## 5347               23/02/1996     7
## 5348               23/02/2002     7
## 5349               23/03/2003     7
## 5350               23/04/2014     7
## 5351               23/05/2004     7
## 5352               23/05/2010     7
## 5353               23/07/2000     7
## 5354               23/08/1995     7
## 5355               23/11/2003     7
## 5356               23/11/2007     7
## 5357               23/12/2000     7
## 5358               23/12/2013     7
## 5359               24/04/2004     7
## 5360               24/05/2009     7
## 5361               24/06/2000     7
## 5362               24/06/2007     7
## 5363               24/08/1995     7
## 5364               24/10/2009     7
## 5365               25/01/2003     7
## 5366               25/03/2000     7
## 5367               25/04/1998     7
## 5368               25/04/2014     7
## 5369               25/05/2003     7
## 5370               25/05/2013     7
## 5371               25/07/2010     7
## 5372               25/11/1998     7
## 5373               25/11/2000     7
## 5374               25/12/2013     7
## 5375               26/01/1997     7
## 5376               26/05/1996     7
## 5377               26/06/2004     7
## 5378               26/06/2011     7
## 5379               26/08/2001     7
## 5380               26/09/2004     7
## 5381               26/11/2000     7
## 5382               26/11/2003     7
## 5383               26/11/2011     7
## 5384               26/12/2005     7
## 5385               26/12/2006     7
## 5386               26/12/2007     7
## 5387               27/01/2013     7
## 5388               27/02/2011     7
## 5389               27/04/2003     7
## 5390               27/04/2013     7
## 5391               27/05/2001     7
## 5392               27/08/2006     7
## 5393               27/10/2001     7
## 5394               27/10/2012     7
## 5395               27/11/1995     7
## 5396               27/11/1997     7
## 5397               27/11/1999     7
## 5398               27/11/2009     7
## 5399               27/12/2004     7
## 5400               28/01/2001     7
## 5401               28/01/2006     7
## 5402               28/01/2007     7
## 5403               28/03/1999     7
## 5404               28/03/2003     7
## 5405               28/05/1999     7
## 5406               28/05/2005     7
## 5407               28/05/2007     7
## 5408               28/05/2014     7
## 5409               28/07/1996     7
## 5410               28/07/2001     7
## 5411               28/08/2004     7
## 5412               28/09/1996     7
## 5413               28/11/1998     7
## 5414               28/11/2003     7
## 5415               28/12/2012     7
## 5416               29/03/2003     7
## 5417               29/04/2007     7
## 5418               29/06/2008     7
## 5419               29/10/2005     7
## 5420               29/11/2009     7
## 5421               29/12/2009     7
## 5422               30/04/2014     7
## 5423               30/05/2009     7
## 5424               30/06/1996     7
## 5425               30/08/1998     7
## 5426               30/08/2008     7
## 5427               30/08/2009     7
## 5428               30/10/1995     7
## 5429               30/10/2009     7
## 5430               31/05/1997     7
## 5431               31/05/1998     7
## 5432               31/05/2004     7
## 5433               31/08/2013     7
## 5434               31/10/1998     7
## 5435               31/12/1998     7
## 5436               31/12/2001     7
## 5437               31/12/2007     7
## 5438               31/12/2009     7
## 5439               01/01/1996     6
## 5440               01/01/2003     6
## 5441               01/03/2009     6
## 5442               01/06/1997     6
## 5443               01/08/2009     6
## 5444               01/08/2010     6
## 5445               01/09/2002     6
## 5446               01/10/1995     6
## 5447               01/10/2006     6
## 5448               01/12/2001     6
## 5449               02/09/2000     6
## 5450               02/09/2002     6
## 5451               02/11/2008     6
## 5452               02/12/2006     6
## 5453               02/12/2007     6
## 5454               03/06/2006     6
## 5455               03/06/2012     6
## 5456               03/06/2014     6
## 5457               03/07/2004     6
## 5458               03/07/2009     6
## 5459               03/08/1997     6
## 5460               04/01/2004     6
## 5461               04/03/2001     6
## 5462               04/05/2013     6
## 5463               04/07/1997     6
## 5464               04/07/2009     6
## 5465               04/07/2013     6
## 5466               04/08/1996     6
## 5467               04/08/2001     6
## 5468               04/09/2000     6
## 5469               04/10/2009     6
## 5470               04/12/2010     6
## 5471               05/01/2013     6
## 5472               05/02/2000     6
## 5473               05/02/2012     6
## 5474               05/03/2006     6
## 5475               05/06/1999     6
## 5476               05/07/2009     6
## 5477               05/08/2012     6
## 5478               05/09/2009     6
## 5479               05/12/1998     6
## 5480               05/12/1999     6
## 5481               05/12/2004     6
## 5482               06/10/2001     6
## 5483               06/12/1997     6
## 5484               07/01/2001     6
## 5485               07/04/2007     6
## 5486               07/07/2012     6
## 5487               07/08/1999     6
## 5488               07/09/1997     6
## 5489               07/09/2003     6
## 5490               07/09/2013     6
## 5491               07/10/2001     6
## 5492               07/11/1998     6
## 5493               07/11/2010     6
## 5494               07/12/1996     6
## 5495               07/12/2002     6
## 5496               07/12/2008     6
## 5497               08/01/2000     6
## 5498               08/01/2012     6
## 5499               08/02/1998     6
## 5500               08/02/2003     6
## 5501               08/03/2014     6
## 5502               08/04/2001     6
## 5503               08/05/1999     6
## 5504               08/05/2011     6
## 5505               08/07/2007     6
## 5506               08/12/2001     6
## 5507               08/12/2002     6
## 5508               08/12/2007     6
## 5509               09/01/1999     6
## 5510               09/03/1997     6
## 5511               09/04/2000     6
## 5512               09/04/2011     6
## 5513               09/05/1999     6
## 5514               09/05/2014     6
## 5515               09/08/2009     6
## 5516               09/09/2001     6
## 5517               09/11/2003     6
## 5518               09/12/2000     6
## 5519               09/12/2001     6
## 5520               09/12/2006     6
## 5521               10/01/1999     6
## 5522               10/02/2007     6
## 5523               10/04/1999     6
## 5524               10/04/2009     6
## 5525               10/07/1999     6
## 5526               10/08/2008     6
## 5527               10/10/2009     6
## 5528               10/11/2013     6
## 5529               11/01/1997     6
## 5530               11/08/2001     6
## 5531               11/09/1999     6
## 5532               11/10/1997     6
## 5533               11/10/2003     6
## 5534               11/11/2001     6
## 5535               11/11/2003     6
## 5536               11/12/2004     6
## 5537               12/02/2011     6
## 5538               12/03/2006     6
## 5539               12/05/2007     6
## 5540               12/05/2014     6
## 5541               12/06/1999     6
## 5542               12/06/2005     6
## 5543               12/08/2001     6
## 5544               12/08/2012     6
## 5545               12/10/2002     6
## 5546               12/12/1999     6
## 5547               12/12/2009     6
## 5548               13/01/2007     6
## 5549               13/01/2013     6
## 5550               13/03/2010     6
## 5551               13/04/2013     6
## 5552               13/05/2006     6
## 5553               13/07/2003     6
## 5554               13/07/2013     6
## 5555               13/09/2003     6
## 5556               13/10/2001     6
## 5557               14/02/2004     6
## 5558               14/03/2009     6
## 5559               14/07/2001     6
## 5560               14/07/2002     6
## 5561               14/08/2004     6
## 5562               14/08/2010     6
## 5563               14/09/2002     6
## 5564               14/10/2000     6
## 5565               14/10/2001     6
## 5566               15/01/2007     6
## 5567               15/03/2003     6
## 5568               15/04/2001     6
## 5569               15/04/2014     6
## 5570               15/05/2014     6
## 5571               15/07/2012     6
## 5572               15/08/2004     6
## 5573               15/09/1995     6
## 5574               15/11/1998     6
## 5575               16/01/1999     6
## 5576               16/01/2000     6
## 5577               16/02/2002     6
## 5578               16/02/2014     6
## 5579               16/04/2000     6
## 5580               16/04/2005     6
## 5581               16/05/2014     6
## 5582               16/06/2013     6
## 5583               16/09/2000     6
## 5584               16/09/2007     6
## 5585               16/10/1999     6
## 5586               16/12/2000     6
## 5587               17/01/2011     6
## 5588               17/06/2007     6
## 5589               17/06/2014     6
## 5590               17/07/1999     6
## 5591               17/11/2013     6
## 5592               18/01/2004     6
## 5593               18/02/2007     6
## 5594               18/03/2012     6
## 5595               18/05/2003     6
## 5596               18/06/2006     6
## 5597               18/08/2001     6
## 5598               18/09/1995     6
## 5599               18/10/1997     6
## 5600               18/11/2012     6
## 5601               19/08/2007     6
## 5602               19/08/2012     6
## 5603               19/10/2002     6
## 5604               19/11/2011     6
## 5605               20/01/2014     6
## 5606               20/02/2011     6
## 5607               20/04/1997     6
## 5608               20/06/2004     6
## 5609               20/07/1995     6
## 5610               20/07/1997     6
## 5611               20/07/2008     6
## 5612               20/09/2009     6
## 5613               20/10/2002     6
## 5614               20/10/2007     6
## 5615               20/11/2005     6
## 5616               21/01/2006     6
## 5617               21/01/2008     6
## 5618               21/01/2012     6
## 5619               21/02/2009     6
## 5620               21/03/2008     6
## 5621               21/09/1997     6
## 5622               21/10/2001     6
## 5623               21/10/2006     6
## 5624               21/11/1995     6
## 5625               21/11/2009     6
## 5626               21/12/2013     6
## 5627               22/01/2000     6
## 5628               22/01/2005     6
## 5629               22/01/2011     6
## 5630               22/02/1997     6
## 5631               22/03/1998     6
## 5632               22/03/2009     6
## 5633               22/03/2014     6
## 5634               22/04/1995     6
## 5635               22/06/2013     6
## 5636               22/07/2007     6
## 5637               22/08/1998     6
## 5638               22/08/1999     6
## 5639               23/01/1999     6
## 5640               23/03/2014     6
## 5641               23/09/2001     6
## 5642               23/09/2012     6
## 5643               23/11/2000     6
## 5644               23/11/2006     6
## 5645               23/11/2013     6
## 5646               24/03/2001     6
## 5647               24/03/2002     6
## 5648               24/03/2012     6
## 5649               24/05/2008     6
## 5650               24/08/2002     6
## 5651               24/09/2000     6
## 5652               24/10/2004     6
## 5653               24/11/2000     6
## 5654               24/11/2012     6
## 5655               24/12/2000     6
## 5656               25/03/2001     6
## 5657               25/05/2009     6
## 5658               25/06/2005     6
## 5659               25/07/1995     6
## 5660               25/07/1998     6
## 5661               25/10/1998     6
## 5662               25/11/2001     6
## 5663               25/12/2006     6
## 5664               26/01/2002     6
## 5665               26/02/2000     6
## 5666               26/04/2008     6
## 5667               26/05/2003     6
## 5668               26/06/1995     6
## 5669               26/06/1999     6
## 5670               26/06/2005     6
## 5671               26/07/1997     6
## 5672               26/07/2003     6
## 5673               26/07/2008     6
## 5674               26/08/2012     6
## 5675               26/10/2002     6
## 5676               26/12/2000     6
## 5677               26/12/2008     6
## 5678               27/01/2002     6
## 5679               27/01/2007     6
## 5680               27/02/2005     6
## 5681               27/03/2004     6
## 5682               27/04/2002     6
## 5683               27/05/2014     6
## 5684               27/06/1999     6
## 5685               27/10/1996     6
## 5686               27/12/1998     6
## 5687               27/12/2012     6
## 5688               28/02/1998     6
## 5689               28/02/2010     6
## 5690               28/05/2000     6
## 5691               28/07/2007     6
## 5692               28/07/2012     6
## 5693               28/09/1997     6
## 5694               28/12/2008     6
## 5695               28/12/2013     6
## 5696               29/01/2006     6
## 5697               29/04/2001     6
## 5698               29/08/2009     6
## 5699               29/08/2010     6
## 5700               29/10/2011     6
## 5701               29/11/1998     6
## 5702               30/01/1996     6
## 5703               30/01/1999     6
## 5704               30/03/2008     6
## 5705               30/03/2013     6
## 5706               30/03/2014     6
## 5707               30/05/2005     6
## 5708               30/05/2010     6
## 5709               30/05/2011     6
## 5710               30/05/2014     6
## 5711               30/06/2002     6
## 5712               30/07/2000     6
## 5713               30/09/2000     6
## 5714               30/11/2013     6
## 5715               30/12/2009     6
## 5716               31/01/2009     6
## 5717               31/03/2007     6
## 5718               31/03/2013     6
## 5719               31/05/2010     6
## 5720               31/10/2009     6
## 5721               31/12/2005     6
## 5722               31/12/2013     6
## 5723               01/01/2013     5
## 5724               01/01/2014     5
## 5725               01/02/2004     5
## 5726               01/02/2009     5
## 5727               01/04/2012     5
## 5728               01/07/2007     5
## 5729               01/08/2004     5
## 5730               01/09/2008     5
## 5731               01/10/2005     5
## 5732               01/11/1997     5
## 5733               01/11/2009     5
## 5734               01/12/1995     5
## 5735               02/01/2000     5
## 5736               02/01/2006     5
## 5737               02/03/2002     5
## 5738               02/03/2003     5
## 5739               02/03/2008     5
## 5740               02/04/2005     5
## 5741               02/06/2007     5
## 5742               02/06/2012     5
## 5743               02/07/2005     5
## 5744               02/08/1998     5
## 5745               02/09/2007     5
## 5746               02/09/2012     5
## 5747               02/10/1999     5
## 5748               02/11/1995     5
## 5749               02/11/2013     5
## 5750               02/12/2000     5
## 5751               03/02/2001     5
## 5752               03/02/2008     5
## 5753               03/03/2002     5
## 5754               03/03/2013     5
## 5755               03/04/2011     5
## 5756               03/06/2000     5
## 5757               03/07/2011     5
## 5758               03/08/2002     5
## 5759               03/11/1995     5
## 5760               04/02/2006     5
## 5761               04/02/2012     5
## 5762               04/03/2000     5
## 5763               04/03/2012     5
## 5764               04/05/2002     5
## 5765               04/06/2011     5
## 5766               04/07/2003     5
## 5767               04/07/2007     5
## 5768               04/07/2008     5
## 5769               04/08/1995     5
## 5770               04/08/2002     5
## 5771               04/09/2006     5
## 5772               04/09/2011     5
## 5773               04/12/1999     5
## 5774               04/12/2011     5
## 5775               05/01/1997     5
## 5776               05/01/2003     5
## 5777               05/04/1994     5
## 5778               05/04/1998     5
## 5779               05/05/2012     5
## 5780               05/08/2006     5
## 5781               05/08/2007     5
## 5782               05/09/2005     5
## 5783               05/10/2008     5
## 5784               05/11/2000     5
## 5785               05/12/1995     5
## 5786               06/04/2002     5
## 5787               06/05/2000     5
## 5788               06/05/2007     5
## 5789               06/06/1999     5
## 5790               06/06/2010     5
## 5791               06/09/2004     5
## 5792               06/09/2008     5
## 5793               06/10/2012     5
## 5794               06/12/2009     5
## 5795               07/01/2012     5
## 5796               07/04/2001     5
## 5797               07/07/1995     5
## 5798               07/07/2007     5
## 5799               07/08/2004     5
## 5800               07/08/2010     5
## 5801               07/09/1998     5
## 5802               07/09/2008     5
## 5803               07/12/2003     5
## 5804               07/12/2013     5
## 5805               08/02/1996     5
## 5806               08/02/2009     5
## 5807               08/05/1995     5
## 5808               08/06/2008     5
## 5809               08/07/2001     5
## 5810               08/08/2010     5
## 5811               08/09/2007     5
## 5812               08/10/2000     5
## 5813               08/12/1995     5
## 5814               09/02/2002     5
## 5815               09/06/2002     5
## 5816               09/06/2012     5
## 5817               09/08/1998     5
## 5818               09/09/2012     5
## 5819               09/10/2004     5
## 5820               09/11/1995     5
## 5821               10/01/2009     5
## 5822               10/02/2001     5
## 5823               10/03/1995     5
## 5824               10/03/2013     5
## 5825               10/08/1997     5
## 5826               10/08/2002     5
## 5827               10/08/2003     5
## 5828               10/09/2005     5
## 5829               10/09/2006     5
## 5830               10/10/1999     5
## 5831               10/11/2001     5
## 5832               11/02/2001     5
## 5833               11/02/2007     5
## 5834               11/03/2000     5
## 5835               11/03/2001     5
## 5836               11/04/2004     5
## 5837               11/04/2010     5
## 5838               11/08/2002     5
## 5839               11/08/2012     5
## 5840               11/11/2004     5
## 5841               11/12/1999     5
## 5842               12/01/2013     5
## 5843               12/03/2000     5
## 5844               12/04/1998     5
## 5845               12/07/1998     5
## 5846               12/09/1999     5
## 5847               12/09/2010     5
## 5848               12/10/1996     5
## 5849               12/10/2003     5
## 5850               12/10/2008     5
## 5851               12/11/2005     5
## 5852               13/01/2001     5
## 5853               13/01/2008     5
## 5854               13/03/2005     5
## 5855               13/06/1999     5
## 5856               13/07/1995     5
## 5857               13/07/2002     5
## 5858               13/10/1995     5
## 5859               13/12/1995     5
## 5860               14/01/2001     5
## 5861               14/01/2007     5
## 5862               14/03/2004     5
## 5863               14/04/2001     5
## 5864               14/04/2002     5
## 5865               14/04/2012     5
## 5866               14/06/1998     5
## 5867               14/06/2009     5
## 5868               14/09/1995     5
## 5869               14/09/2013     5
## 5870               14/10/2012     5
## 5871               14/11/2009     5
## 5872               14/12/2008     5
## 5873               15/01/2006     5
## 5874               15/03/2009     5
## 5875               15/04/2012     5
## 5876               15/06/1995     5
## 5877               15/06/1997     5
## 5878               15/07/2000     5
## 5879               15/10/2011     5
## 5880               15/12/1995     5
## 5881               15/12/2012     5
## 5882               16/03/2013     5
## 5883               16/03/2014     5
## 5884               16/04/2006     5
## 5885               16/05/1999     5
## 5886               16/06/1996     5
## 5887               16/07/2000     5
## 5888               16/09/1995     5
## 5889               16/09/2012     5
## 5890               16/11/1997     5
## 5891               16/11/2003     5
## 5892               17/02/2008     5
## 5893               17/03/2002     5
## 5894               17/03/2007     5
## 5895               17/07/1995     5
## 5896               17/07/2010     5
## 5897               17/08/2003     5
## 5898               17/09/2006     5
## 5899               17/10/1999     5
## 5900               17/10/2004     5
## 5901               17/11/2001     5
## 5902               17/11/2007     5
## 5903               17/11/2012     5
## 5904               17/12/2006     5
## 5905               18/04/2003     5
## 5906               18/04/2014     5
## 5907               18/05/1997     5
## 5908               18/05/2008     5
## 5909               18/06/2000     5
## 5910               18/06/2011     5
## 5911               18/07/2009     5
## 5912               18/07/2010     5
## 5913               18/10/2008     5
## 5914               19/01/2013     5
## 5915               19/02/2006     5
## 5916               19/04/1995     5
## 5917               19/04/2009     5
## 5918               19/05/2012     5
## 5919               19/06/2005     5
## 5920               19/06/2010     5
## 5921               19/06/2014     5
## 5922               19/09/2004     5
## 5923               19/11/2000     5
## 5924               19/12/1995     5
## 5925               19/12/1998     5
## 5926               20/01/2007     5
## 5927               20/02/1996     5
## 5928               20/03/2004     5
## 5929               20/04/2003     5
## 5930               20/05/2007     5
## 5931               20/06/2009     5
## 5932               20/06/2010     5
## 5933               20/06/2014     5
## 5934               20/08/2000     5
## 5935               20/10/1996     5
## 5936               21/01/2001     5
## 5937               21/01/2007     5
## 5938               21/03/2009     5
## 5939               21/03/2010     5
## 5940               21/05/2000     5
## 5941               21/07/2007     5
## 5942               21/07/2013     5
## 5943               21/08/1999     5
## 5944               21/12/2007     5
## 5945               22/01/2006     5
## 5946               22/02/2004     5
## 5947               22/02/2014     5
## 5948               22/03/1995     5
## 5949               22/04/2012     5
## 5950               22/09/2001     5
## 5951               22/09/2002     5
## 5952               22/09/2013     5
## 5953               22/10/1999     5
## 5954               22/11/2012     5
## 5955               22/12/1996     5
## 5956               22/12/2002     5
## 5957               22/12/2008     5
## 5958               23/04/2005     5
## 5959               23/04/2006     5
## 5960               23/04/2011     5
## 5961               23/05/2014     5
## 5962               23/08/2003     5
## 5963               23/10/1995     5
## 5964               23/10/2005     5
## 5965               23/11/1997     5
## 5966               23/11/2008     5
## 5967               24/01/1999     5
## 5968               24/01/2010     5
## 5969               24/04/1995     5
## 5970               24/04/2010     5
## 5971               24/06/2014     5
## 5972               24/07/2010     5
## 5973               24/08/1997     5
## 5974               24/09/2005     5
## 5975               24/10/2010     5
## 5976               24/11/2002     5
## 5977               24/12/1996     5
## 5978               24/12/1997     5
## 5979               24/12/2002     5
## 5980               24/12/2008     5
## 5981               24/12/2013     5
## 5982               25/02/2001     5
## 5983               25/03/2012     5
## 5984               25/04/1995     5
## 5985               25/05/2008     5
## 5986               25/07/2009     5
## 5987               25/08/2007     5
## 5988               25/09/1995     5
## 5989               25/09/2005     5
## 5990               25/11/1999     5
## 5991               25/11/2004     5
## 5992               25/12/2000     5
## 5993               25/12/2007     5
## 5994               26/01/2008     5
## 5995               26/04/1997     5
## 5996               26/04/2003     5
## 5997               26/05/2012     5
## 5998               26/08/2007     5
## 5999               26/09/1995     5
## 6000               26/09/1998     5
## 6001               26/10/2008     5
## 6002               26/10/2013     5
## 6003               26/11/2005     5
## 6004               26/11/2006     5
## 6005               26/12/1998     5
## 6006               26/12/2009     5
## 6007               26/12/2011     5
## 6008               26/12/2012     5
## 6009               27/04/1997     5
## 6010               27/04/2008     5
## 6011               27/04/2014     5
## 6012               27/09/2003     5
## 6013               27/12/2013     5
## 6014               28/01/1996     5
## 6015               28/04/2007     5
## 6016               28/04/2013     5
## 6017               28/07/2013     5
## 6018               28/09/1995     5
## 6019               28/11/1996     5
## 6020               28/11/1997     5
## 6021               28/11/2009     5
## 6022               28/12/1996     5
## 6023               28/12/2002     5
## 6024               28/12/2006     5
## 6025               28/12/2007     5
## 6026               29/01/2011     5
## 6027               29/03/2009     5
## 6028               29/04/2000     5
## 6029               29/06/1997     5
## 6030               29/09/2002     5
## 6031               29/09/2007     5
## 6032               29/10/2006     5
## 6033               29/11/1996     5
## 6034               29/11/2013     5
## 6035               29/12/1995     5
## 6036               29/12/2006     5
## 6037               29/12/2013     5
## 6038               30/03/1996     5
## 6039               30/03/2003     5
## 6040               30/06/2007     5
## 6041               30/06/2012     5
## 6042               30/10/1999     5
## 6043               30/10/2005     5
## 6044               30/10/2010     5
## 6045               30/12/2000     5
## 6046               30/12/2006     5
## 6047               30/12/2008     5
## 6048               31/01/1996     5
## 6049               31/03/2012     5
## 6050               31/05/2003     5
## 6051               31/05/2008     5
## 6052               31/07/2004     5
## 6053               31/08/1996     5
## 6054               31/08/1997     5
## 6055               31/10/1999     5
## 6056               31/10/2010     5
## 6057               31/12/2000     5
## 6058               01/01/2010     4
## 6059               01/02/1995     4
## 6060               01/03/1998     4
## 6061               01/05/1995     4
## 6062               01/05/2004     4
## 6063               01/05/2014     4
## 6064               01/06/2013     4
## 6065               01/06/2014     4
## 6066               01/07/2006     4
## 6067               01/08/1995     4
## 6068               02/01/2012     4
## 6069               02/03/1996     4
## 6070               02/04/2006     4
## 6071               02/06/2014     4
## 6072               02/08/2009     4
## 6073               02/10/2010     4
## 6074               02/10/2011     4
## 6075               02/11/1996     4
## 6076               02/12/2012     4
## 6077               03/01/1998     4
## 6078               03/02/2007     4
## 6079               03/04/2004     4
## 6080               03/04/2010     4
## 6081               03/05/2009     4
## 6082               03/06/2007     4
## 6083               03/07/1999     4
## 6084               03/07/2005     4
## 6085               03/09/2006     4
## 6086               03/10/1998     4
## 6087               03/11/2001     4
## 6088               03/11/2012     4
## 6089               03/12/2000     4
## 6090               03/12/2005     4
## 6091               03/12/2006     4
## 6092               04/01/1997     4
## 6093               04/01/2003     4
## 6094               04/01/2009     4
## 6095               04/02/1994     4
## 6096               04/02/2001     4
## 6097               04/04/2004     4
## 6098               04/07/1999     4
## 6099               04/07/2010     4
## 6100               04/08/2012     4
## 6101               04/09/2005     4
## 6102               05/01/1996     4
## 6103               05/02/2005     4
## 6104               05/03/2000     4
## 6105               05/03/2005     4
## 6106               05/03/2011     4
## 6107               05/04/2008     4
## 6108               05/05/2013     4
## 6109               05/06/1995     4
## 6110               05/06/2004     4
## 6111               05/06/2010     4
## 6112               05/07/1997     4
## 6113               05/07/2003     4
## 6114               05/07/2008     4
## 6115               05/07/2010     4
## 6116               05/09/1998     4
## 6117               05/09/2011     4
## 6118               05/11/2005     4
## 6119               06/01/1995     4
## 6120               06/01/1996     4
## 6121               06/01/2008     4
## 6122               06/02/1999     4
## 6123               06/02/2010     4
## 6124               06/03/2011     4
## 6125               06/04/1995     4
## 6126               06/05/2012     4
## 6127               06/06/1998     4
## 6128               06/06/2009     4
## 6129               06/07/1997     4
## 6130               06/07/2003     4
## 6131               06/07/2008     4
## 6132               06/08/2005     4
## 6133               06/09/1999     4
## 6134               06/09/2010     4
## 6135               06/11/2004     4
## 6136               06/12/1998     4
## 6137               07/02/1999     4
## 6138               07/02/2009     4
## 6139               07/02/2010     4
## 6140               07/03/2010     4
## 6141               07/05/2014     4
## 6142               07/06/1995     4
## 6143               07/06/1998     4
## 6144               07/06/2009     4
## 6145               07/07/2013     4
## 6146               07/10/2000     4
## 6147               07/10/2007     4
## 6148               07/11/2004     4
## 6149               07/12/1992     4
## 6150               08/01/2006     4
## 6151               08/02/1995     4
## 6152               08/05/2005     4
## 6153               08/05/2010     4
## 6154               08/07/2000     4
## 6155               08/07/2012     4
## 6156               08/09/2012     4
## 6157               08/11/2003     4
## 6158               08/11/2008     4
## 6159               08/11/2009     4
## 6160               08/12/2012     4
## 6161               09/01/1995     4
## 6162               09/01/2005     4
## 6163               09/02/2013     4
## 6164               09/03/1995     4
## 6165               09/03/2013     4
## 6166               09/04/2004     4
## 6167               09/06/1995     4
## 6168               09/06/2007     4
## 6169               09/06/2013     4
## 6170               09/07/2000     4
## 6171               09/08/2008     4
## 6172               09/11/1997     4
## 6173               09/11/2002     4
## 6174               09/11/2008     4
## 6175               09/12/2007     4
## 6176               09/12/2012     4
## 6177               10/01/1998     4
## 6178               10/02/1995     4
## 6179               10/02/2002     4
## 6180               10/02/2013     4
## 6181               10/03/1996     4
## 6182               10/03/2007     4
## 6183               10/05/1998     4
## 6184               10/05/2009     4
## 6185               10/05/2014     4
## 6186               10/06/2012     4
## 6187               10/06/2014     4
## 6188               10/09/2011     4
## 6189               10/10/2010     4
## 6190               10/11/1995     4
## 6191               10/11/1996     4
## 6192               11/03/2006     4
## 6193               11/03/2012     4
## 6194               11/05/2003     4
## 6195               11/06/2005     4
## 6196               11/06/2014     4
## 6197               11/07/1994     4
## 6198               11/07/2004     4
## 6199               11/08/2007     4
## 6200               11/09/2005     4
## 6201               11/10/1994     4
## 6202               11/11/2012     4
## 6203               11/12/2011     4
## 6204               12/01/2008     4
## 6205               12/02/2000     4
## 6206               12/02/2012     4
## 6207               12/04/1995     4
## 6208               12/06/1995     4
## 6209               12/06/2004     4
## 6210               12/06/2014     4
## 6211               12/07/1995     4
## 6212               12/07/2008     4
## 6213               12/09/1998     4
## 6214               12/10/1994     4
## 6215               12/11/2006     4
## 6216               12/12/1998     4
## 6217               12/12/2010     4
## 6218               13/02/2000     4
## 6219               13/06/1998     4
## 6220               13/06/2009     4
## 6221               13/09/1998     4
## 6222               13/09/2009     4
## 6223               13/10/2013     4
## 6224               13/11/2011     4
## 6225               13/12/2003     4
## 6226               13/12/2008     4
## 6227               14/01/2006     4
## 6228               14/02/2009     4
## 6229               14/11/1995     4
## 6230               14/11/1999     4
## 6231               15/04/2006     4
## 6232               15/04/2007     4
## 6233               15/05/1995     4
## 6234               15/10/2006     4
## 6235               15/11/2009     4
## 6236               15/12/2013     4
## 6237               16/01/2012     4
## 6238               16/02/1995     4
## 6239               16/02/2008     4
## 6240               16/04/2011     4
## 6241               16/05/1995     4
## 6242               16/05/2009     4
## 6243               16/05/2010     4
## 6244               16/08/2008     4
## 6245               16/10/2004     4
## 6246               16/10/2011     4
## 6247               16/11/2002     4
## 6248               17/01/2005     4
## 6249               17/01/2009     4
## 6250               17/03/2013     4
## 6251               17/06/2012     4
## 6252               17/08/2002     4
## 6253               17/10/2010     4
## 6254               17/11/2002     4
## 6255               17/12/2000     4
## 6256               18/01/2009     4
## 6257               18/01/2010     4
## 6258               18/03/2001     4
## 6259               18/03/2006     4
## 6260               18/03/2007     4
## 6261               18/04/2009     4
## 6262               18/05/1995     4
## 6263               18/07/1998     4
## 6264               18/08/1995     4
## 6265               18/08/2013     4
## 6266               18/12/2005     4
## 6267               18/12/2011     4
## 6268               19/01/2014     4
## 6269               19/03/2006     4
## 6270               19/04/2014     4
## 6271               19/06/2011     4
## 6272               19/07/2009     4
## 6273               19/08/1995     4
## 6274               19/10/2008     4
## 6275               19/12/2010     4
## 6276               20/01/2008     4
## 6277               20/03/1999     4
## 6278               20/03/2010     4
## 6279               20/04/1995     4
## 6280               20/05/2012     4
## 6281               20/06/1999     4
## 6282               20/08/2006     4
## 6283               20/10/1995     4
## 6284               21/02/2004     4
## 6285               21/03/2004     4
## 6286               21/04/1995     4
## 6287               21/04/2001     4
## 6288               21/04/2012     4
## 6289               21/05/2011     4
## 6290               21/06/1998     4
## 6291               21/08/2011     4
## 6292               21/09/2002     4
## 6293               21/09/2008     4
## 6294               21/10/2007     4
## 6295               21/11/1994     4
## 6296               21/11/1998     4
## 6297               21/11/2004     4
## 6298               22/02/2009     4
## 6299               22/03/2008     4
## 6300               22/04/2007     4
## 6301               22/06/2003     4
## 6302               22/07/2006     4
## 6303               22/07/2012     4
## 6304               22/08/2004     4
## 6305               22/08/2009     4
## 6306               22/08/2010     4
## 6307               22/09/2007     4
## 6308               22/10/2006     4
## 6309               22/11/1995     4
## 6310               22/11/1998     4
## 6311               22/11/2009     4
## 6312               22/12/2001     4
## 6313               23/01/2010     4
## 6314               23/01/2011     4
## 6315               23/02/2003     4
## 6316               23/02/2014     4
## 6317               23/03/1995     4
## 6318               23/03/2008     4
## 6319               23/04/2000     4
## 6320               23/05/1999     4
## 6321               23/05/2009     4
## 6322               23/08/1998     4
## 6323               23/08/2008     4
## 6324               23/10/1999     4
## 6325               23/11/1996     4
## 6326               23/11/2012     4
## 6327               23/12/2005     4
## 6328               23/12/2010     4
## 6329               23/12/2012     4
## 6330               24/01/2004     4
## 6331               24/02/2001     4
## 6332               24/02/2002     4
## 6333               24/02/2008     4
## 6334               24/03/2007     4
## 6335               24/04/2011     4
## 6336               24/05/1997     4
## 6337               24/07/1999     4
## 6338               24/11/2001     4
## 6339               24/11/2006     4
## 6340               24/12/1998     4
## 6341               24/12/2009     4
## 6342               25/01/2009     4
## 6343               25/01/2014     4
## 6344               25/03/2007     4
## 6345               25/04/1999     4
## 6346               25/05/2002     4
## 6347               25/06/2011     4
## 6348               25/09/2010     4
## 6349               25/09/2011     4
## 6350               25/10/2008     4
## 6351               25/11/2006     4
## 6352               25/11/2011     4
## 6353               25/12/1998     4
## 6354               25/12/2003     4
## 6355               25/12/2008     4
## 6356               25/12/2010     4
## 6357               26/02/2011     4
## 6358               26/03/2005     4
## 6359               26/05/2013     4
## 6360               26/06/2014     4
## 6361               26/08/2006     4
## 6362               26/09/2009     4
## 6363               26/12/2003     4
## 6364               26/12/2013     4
## 6365               27/01/1996     4
## 6366               27/02/1995     4
## 6367               27/05/2006     4
## 6368               27/05/2007     4
## 6369               27/06/1991     4
## 6370               27/06/1998     4
## 6371               27/06/2004     4
## 6372               27/07/2002     4
## 6373               27/07/2008     4
## 6374               27/09/1995     4
## 6375               27/09/2008     4
## 6376               27/10/1995     4
## 6377               27/10/2002     4
## 6378               27/11/2005     4
## 6379               27/11/2008     4
## 6380               27/11/2010     4
## 6381               27/11/2011     4
## 6382               27/12/1997     4
## 6383               27/12/2003     4
## 6384               27/12/2008     4
## 6385               28/02/2009     4
## 6386               28/03/2010     4
## 6387               28/04/2012     4
## 6388               28/07/1994     4
## 6389               28/07/1995     4
## 6390               28/07/2002     4
## 6391               28/08/1995     4
## 6392               28/10/1995     4
## 6393               28/10/2006     4
## 6394               28/10/2007     4
## 6395               28/11/1999     4
## 6396               28/11/2002     4
## 6397               28/11/2008     4
## 6398               28/12/2003     4
## 6399               29/03/1998     4
## 6400               29/04/2012     4
## 6401               29/05/2011     4
## 6402               29/07/2007     4
## 6403               29/07/2012     4
## 6404               29/08/1999     4
## 6405               29/08/2004     4
## 6406               29/09/1995     4
## 6407               29/09/1996     4
## 6408               29/09/2012     4
## 6409               29/12/1999     4
## 6410               29/12/2002     4
## 6411               29/12/2012     4
## 6412               30/01/2011     4
## 6413               30/04/2006     4
## 6414               30/07/2006     4
## 6415               30/09/2001     4
## 6416               30/09/2012     4
## 6417               30/11/2002     4
## 6418               30/12/1995     4
## 6419               30/12/2001     4
## 6420               30/12/2012     4
## 6421               31/01/1999     4
## 6422               31/05/1995     4
## 6423               31/05/2009     4
## 6424               31/07/2010     4
## 6425               31/10/2004     4
## 6426               31/12/2011     4
## 6427               01/01/1993     3
## 6428               01/01/1999     3
## 6429               01/02/1994     3
## 6430               01/02/2014     3
## 6431               01/03/2014     3
## 6432               01/04/2007     3
## 6433               01/05/2011     3
## 6434               01/07/1994     3
## 6435               01/09/2012     3
## 6436               01/12/2013     3
## 6437               02/01/2011     3
## 6438               02/02/1995     3
## 6439               02/02/2002     3
## 6440               02/05/2014     3
## 6441               02/06/1994     3
## 6442               02/06/1995     3
## 6443               02/07/1993     3
## 6444               02/07/2011     3
## 6445               02/10/1995     3
## 6446               02/12/2001     3
## 6447               03/01/2004     3
## 6448               03/01/2009     3
## 6449               03/03/2001     3
## 6450               03/03/2007     3
## 6451               03/04/1999     3
## 6452               03/05/1995     3
## 6453               03/07/2010     3
## 6454               03/08/2003     3
## 6455               03/08/2008     3
## 6456               03/10/1995     3
## 6457               03/11/2007     3
## 6458               04/01/2014     3
## 6459               04/04/1994     3
## 6460               04/05/2003     3
## 6461               04/05/2014     3
## 6462               04/07/2000     3
## 6463               04/07/2005     3
## 6464               04/07/2006     3
## 6465               04/07/2011     3
## 6466               04/09/1995     3
## 6467               04/09/1999     3
## 6468               04/12/2004     3
## 6469               05/01/2008     3
## 6470               05/02/2011     3
## 6471               05/05/2007     3
## 6472               05/07/1995     3
## 6473               05/09/1995     3
## 6474               05/09/2010     3
## 6475               05/10/2003     3
## 6476               05/11/2006     3
## 6477               05/11/2011     3
## 6478               06/02/2011     3
## 6479               06/03/1995     3
## 6480               06/04/2008     3
## 6481               06/06/1995     3
## 6482               06/07/1994     3
## 6483               06/07/1995     3
## 6484               06/08/2011     3
## 6485               06/09/1995     3
## 6486               06/10/1995     3
## 6487               06/10/2007     3
## 6488               06/11/1995     3
## 6489               06/11/1999     3
## 6490               06/11/2011     3
## 6491               07/03/1998     3
## 6492               07/04/1994     3
## 6493               07/04/2013     3
## 6494               07/08/1994     3
## 6495               07/10/1995     3
## 6496               07/10/2006     3
## 6497               07/11/1994     3
## 6498               07/11/2009     3
## 6499               07/12/1993     3
## 6500               07/12/1994     3
## 6501               07/12/1997     3
## 6502               08/01/2011     3
## 6503               08/03/1994     3
## 6504               08/03/1995     3
## 6505               08/06/2014     3
## 6506               08/10/1995     3
## 6507               08/11/1995     3
## 6508               08/11/1998     3
## 6509               08/12/1996     3
## 6510               09/02/1995     3
## 6511               09/02/2008     3
## 6512               09/03/1996     3
## 6513               09/03/2002     3
## 6514               09/03/2008     3
## 6515               09/03/2014     3
## 6516               09/07/2005     3
## 6517               10/01/1994     3
## 6518               10/03/2001     3
## 6519               10/04/2011     3
## 6520               10/05/1995     3
## 6521               10/05/2008     3
## 6522               10/06/2001     3
## 6523               10/07/2004     3
## 6524               10/07/2010     3
## 6525               10/10/1994     3
## 6526               11/01/1998     3
## 6527               11/01/2003     3
## 6528               11/01/2014     3
## 6529               11/02/1996     3
## 6530               11/03/2007     3
## 6531               11/04/2009     3
## 6532               11/05/2008     3
## 6533               11/05/2013     3
## 6534               11/05/2014     3
## 6535               11/07/1995     3
## 6536               11/07/2010     3
## 6537               11/08/1995     3
## 6538               11/09/1992     3
## 6539               11/09/1995     3
## 6540               11/10/2008     3
## 6541               11/11/2011     3
## 6542               11/12/1995     3
## 6543               11/12/2010     3
## 6544               12/02/2006     3
## 6545               12/04/1994     3
## 6546               12/06/2011     3
## 6547               12/09/1995     3
## 6548               13/02/2005     3
## 6549               13/03/2011     3
## 6550               13/04/2003     3
## 6551               13/04/2008     3
## 6552               13/06/1994     3
## 6553               13/06/1995     3
## 6554               13/06/2004     3
## 6555               13/08/1995     3
## 6556               13/09/2008     3
## 6557               13/11/1999     3
## 6558               13/11/2004     3
## 6559               14/02/1998     3
## 6560               14/05/2006     3
## 6561               14/06/1995     3
## 6562               14/06/2008     3
## 6563               14/07/2007     3
## 6564               14/07/2013     3
## 6565               14/08/2005     3
## 6566               14/10/1995     3
## 6567               14/11/2010     3
## 6568               15/01/1993     3
## 6569               15/01/2001     3
## 6570               15/02/1994     3
## 6571               15/02/2003     3
## 6572               15/02/2004     3
## 6573               15/02/2009     3
## 6574               15/02/2014     3
## 6575               15/03/1994     3
## 6576               15/05/2011     3
## 6577               15/08/1998     3
## 6578               15/09/1994     3
## 6579               15/12/2002     3
## 6580               16/05/2004     3
## 6581               16/06/2001     3
## 6582               16/06/2012     3
## 6583               16/09/2001     3
## 6584               16/10/1995     3
## 6585               16/10/2010     3
## 6586               16/11/2008     3
## 6587               16/12/1994     3
## 6588               16/12/2012     3
## 6589               17/01/1999     3
## 6590               17/01/2010     3
## 6591               17/02/2007     3
## 6592               17/04/1995     3
## 6593               17/04/2010     3
## 6594               17/05/1995     3
## 6595               17/05/2008     3
## 6596               17/07/2011     3
## 6597               17/08/2008     3
## 6598               17/08/2013     3
## 6599               17/09/1994     3
## 6600               17/09/1995     3
## 6601               17/09/2000     3
## 6602               17/10/1995     3
## 6603               17/10/2009     3
## 6604               17/12/2011     3
## 6605               18/01/1998     3
## 6606               18/01/2014     3
## 6607               18/02/1996     3
## 6608               18/04/1999     3
## 6609               18/08/1994     3
## 6610               18/10/1995     3
## 6611               18/10/2009     3
## 6612               18/11/2007     3
## 6613               18/12/1995     3
## 6614               18/12/2010     3
## 6615               19/01/2003     3
## 6616               19/01/2008     3
## 6617               19/01/2009     3
## 6618               19/02/2000     3
## 6619               19/03/2000     3
## 6620               19/03/2011     3
## 6621               19/04/2003     3
## 6622               19/06/2004     3
## 6623               19/07/1995     3
## 6624               19/09/1995     3
## 6625               19/09/2010     3
## 6626               19/10/1995     3
## 6627               19/11/1994     3
## 6628               19/12/2004     3
## 6629               20/01/1996     3
## 6630               20/02/1995     3
## 6631               20/02/2000     3
## 6632               20/03/2011     3
## 6633               20/04/2008     3
## 6634               20/05/2000     3
## 6635               20/06/1994     3
## 6636               20/06/1998     3
## 6637               20/09/1998     3
## 6638               20/10/2012     3
## 6639               20/11/1999     3
## 6640               20/12/1995     3
## 6641               20/12/1998     3
## 6642               20/12/2003     3
## 6643               21/01/2002     3
## 6644               21/02/1994     3
## 6645               21/02/1995     3
## 6646               21/05/1995     3
## 6647               21/06/1995     3
## 6648               21/07/2012     3
## 6649               21/09/1994     3
## 6650               21/09/1995     3
## 6651               21/11/2010     3
## 6652               21/12/1995     3
## 6653               22/04/2006     3
## 6654               22/04/2011     3
## 6655               22/05/2005     3
## 6656               22/06/2008     3
## 6657               22/12/1995     3
## 6658               22/12/2005     3
## 6659               23/03/2013     3
## 6660               23/05/1995     3
## 6661               23/06/2007     3
## 6662               23/07/1994     3
## 6663               23/09/2006     3
## 6664               23/09/2007     3
## 6665               23/10/2010     3
## 6666               23/11/1994     3
## 6667               23/11/1995     3
## 6668               23/12/2008     3
## 6669               24/02/1995     3
## 6670               24/03/2013     3
## 6671               24/05/1995     3
## 6672               24/06/1994     3
## 6673               24/11/2005     3
## 6674               24/11/2013     3
## 6675               24/12/2001     3
## 6676               24/12/2003     3
## 6677               24/12/2006     3
## 6678               24/12/2012     3
## 6679               25/02/1994     3
## 6680               25/02/2007     3
## 6681               25/02/2012     3
## 6682               25/05/1995     3
## 6683               25/05/1997     3
## 6684               25/05/2014     3
## 6685               25/07/1999     3
## 6686               25/08/1994     3
## 6687               25/09/2004     3
## 6688               25/10/2003     3
## 6689               25/10/2009     3
## 6690               25/11/2007     3
## 6691               25/11/2010     3
## 6692               25/12/1997     3
## 6693               25/12/2001     3
## 6694               25/12/2005     3
## 6695               25/12/2011     3
## 6696               26/01/2003     3
## 6697               26/01/2014     3
## 6698               26/02/2005     3
## 6699               26/03/2011     3
## 6700               26/04/1998     3
## 6701               26/05/2001     3
## 6702               26/05/2002     3
## 6703               26/08/1993     3
## 6704               26/08/1995     3
## 6705               26/09/2010     3
## 6706               26/11/1995     3
## 6707               26/12/1996     3
## 6708               26/12/2001     3
## 6709               26/12/2002     3
## 6710               27/03/1995     3
## 6711               27/03/1999     3
## 6712               27/05/2012     3
## 6713               27/06/1994     3
## 6714               27/06/1995     3
## 6715               27/06/2009     3
## 6716               27/06/2010     3
## 6717               27/07/2003     3
## 6718               27/08/2000     3
## 6719               27/08/2005     3
## 6720               27/09/1998     3
## 6721               27/09/2009     3
## 6722               27/10/2013     3
## 6723               27/11/2003     3
## 6724               27/11/2004     3
## 6725               28/01/2012     3
## 6726               28/02/1994     3
## 6727               28/02/1995     3
## 6728               28/04/1995     3
## 6729               28/09/2002     3
## 6730               28/10/1993     3
## 6731               28/11/1995     3
## 6732               28/12/1995     3
## 6733               29/01/2012     3
## 6734               29/03/2014     3
## 6735               29/05/1994     3
## 6736               29/08/1995     3
## 6737               29/09/2013     3
## 6738               29/10/1993     3
## 6739               29/11/2003     3
## 6740               29/12/2007     3
## 6741               30/03/1994     3
## 6742               30/03/1995     3
## 6743               30/05/1995     3
## 6744               30/06/1995     3
## 6745               30/08/1995     3
## 6746               30/08/2003     3
## 6747               30/11/2003     3
## 6748               31/01/2004     3
## 6749               31/03/2001     3
## 6750               31/03/2002     3
## 6751               31/05/2014     3
## 6752               31/10/1995     3
## 6753               31/12/2006     3
## 6754               31/12/2010     3
## 6755               01/01/2008     2
## 6756               01/05/1992     2
## 6757               01/05/2010     2
## 6758               01/06/1979     2
## 6759               01/06/1994     2
## 6760               01/06/1995     2
## 6761               01/07/1995     2
## 6762               01/09/1989     2
## 6763               01/12/2012     2
## 6764               02/01/1994     2
## 6765               02/03/1995     2
## 6766               02/05/1995     2
## 6767               02/08/1995     2
## 6768               02/08/2008     2
## 6769               03/02/1995     2
## 6770               03/02/2002     2
## 6771               03/04/1993     2
## 6772               03/04/1995     2
## 6773               03/04/2005     2
## 6774               03/06/1995     2
## 6775               03/08/2013     2
## 6776               03/09/1995     2
## 6777               03/09/2001     2
## 6778               03/09/2012     2
## 6779               03/11/1994     2
## 6780               03/12/1991     2
## 6781               03/12/1995     2
## 6782               04/01/1994     2
## 6783               04/01/1995     2
## 6784               04/03/2006     2
## 6785               04/07/1995     2
## 6786               04/10/2003     2
## 6787               04/11/1994     2
## 6788               05/01/1995     2
## 6789               05/05/1995     2
## 6790               05/08/1994     2
## 6791               05/09/1994     2
## 6792               05/11/1995     2
## 6793               05/12/1994     2
## 6794               06/03/2010     2
## 6795               06/04/1994     2
## 6796               06/09/1998     2
## 6797               06/10/2002     2
## 6798               06/10/2013     2
## 6799               06/11/2010     2
## 6800               06/12/2008     2
## 6801               07/01/1994     2
## 6802               07/01/2006     2
## 6803               07/02/1989     2
## 6804               07/03/1995     2
## 6805               07/04/1993     2
## 6806               07/04/1995     2
## 6807               07/05/2005     2
## 6808               07/06/1993     2
## 6809               07/06/2014     2
## 6810               07/07/1994     2
## 6811               07/08/1995     2
## 6812               07/09/1994     2
## 6813               08/02/2004     2
## 6814               08/02/2014     2
## 6815               08/03/2008     2
## 6816               08/04/2007     2
## 6817               08/04/2012     2
## 6818               08/05/1994     2
## 6819               08/06/1993     2
## 6820               08/07/1992     2
## 6821               08/07/1995     2
## 6822               08/08/1995     2
## 6823               08/11/1994     2
## 6824               09/01/2010     2
## 6825               09/01/2011     2
## 6826               09/02/1993     2
## 6827               09/02/2003     2
## 6828               09/02/2014     2
## 6829               09/05/2004     2
## 6830               09/07/2006     2
## 6831               09/09/1993     2
## 6832               09/09/2000     2
## 6833               09/09/2006     2
## 6834               09/09/2007     2
## 6835               09/11/1992     2
## 6836               09/12/1995     2
## 6837               10/01/2010     2
## 6838               10/02/1994     2
## 6839               10/04/1992     2
## 6840               10/04/2004     2
## 6841               10/08/1992     2
## 6842               10/08/1993     2
## 6843               10/08/1994     2
## 6844               10/08/1995     2
## 6845               10/10/1998     2
## 6846               10/12/1995     2
## 6847               10/12/2006     2
## 6848               11/02/1994     2
## 6849               11/02/1995     2
## 6850               11/03/1994     2
## 6851               11/10/1995     2
## 6852               11/11/1995     2
## 6853               11/11/2007     2
## 6854               11/12/1994     2
## 6855               12/01/2014     2
## 6856               12/04/2003     2
## 6857               12/04/2008     2
## 6858               12/05/1995     2
## 6859               12/05/2002     2
## 6860               12/08/1994     2
## 6861               12/12/2004     2
## 6862               13/02/1995     2
## 6863               13/02/1999     2
## 6864               13/03/1995     2
## 6865               13/03/1999     2
## 6866               13/03/2004     2
## 6867               13/04/2014     2
## 6868               13/05/1995     2
## 6869               13/05/2012     2
## 6870               13/06/2010     2
## 6871               13/07/1993     2
## 6872               13/07/2008     2
## 6873               13/07/2201     2
## 6874               13/08/2000     2
## 6875               13/11/2010     2
## 6876               14/05/2011     2
## 6877               14/06/1993     2
## 6878               14/07/1993     2
## 6879               14/08/1990     2
## 6880               14/10/1994     2
## 6881               14/11/1994     2
## 6882               14/12/2002     2
## 6883               14/12/2003     2
## 6884               15/01/1995     2
## 6885               15/01/1996     2
## 6886               15/01/2012     2
## 6887               15/02/1995     2
## 6888               15/04/1993     2
## 6889               15/04/1994     2
## 6890               15/07/1995     2
## 6891               15/07/2007     2
## 6892               15/08/1994     2
## 6893               15/08/1995     2
## 6894               15/09/2007     2
## 6895               15/09/2013     2
## 6896               15/10/1990     2
## 6897               15/11/1993     2
## 6898               15/11/1994     2
## 6899               15/12/1991     2
## 6900               16/01/2011     2
## 6901               16/02/1994     2
## 6902               16/03/2008     2
## 6903               16/05/1993     2
## 6904               16/11/1994     2
## 6905               16/12/2006     2
## 6906               17/02/1994     2
## 6907               17/02/1996     2
## 6908               17/03/1995     2
## 6909               17/03/2001     2
## 6910               17/05/2003     2
## 6911               17/05/2009     2
## 6912               17/05/2014     2
## 6913               17/06/1994     2
## 6914               17/11/1994     2
## 6915               17/12/1993     2
## 6916               17/12/1994     2
## 6917               18/02/1993     2
## 6918               18/04/1995     2
## 6919               18/10/1994     2
## 6920               18/10/2003     2
## 6921               19/06/1995     2
## 6922               19/07/1994     2
## 6923               19/07/2008     2
## 6924               19/09/1994     2
## 6925               19/10/2003     2
## 6926               19/12/1994     2
## 6927               19/12/2009     2
## 6928               20/01/1994     2
## 6929               20/02/2005     2
## 6930               20/02/2010     2
## 6931               20/03/1995     2
## 6932               20/04/2013     2
## 6933               20/05/1994     2
## 6934               20/07/1994     2
## 6935               20/08/1993     2
## 6936               20/08/1995     2
## 6937               20/09/1993     2
## 6938               20/10/2001     2
## 6939               20/11/1995     2
## 6940               20/12/1997     2
## 6941               20/12/2008     2
## 6942               21/01/1996     2
## 6943               21/03/1999     2
## 6944               21/04/2013     2
## 6945               21/06/1994     2
## 6946               21/07/1993     2
## 6947               21/07/1995     2
## 6948               21/08/1995     2
## 6949               21/10/1994     2
## 6950               21/12/2003     2
## 6951               22/01/1993     2
## 6952               22/01/2012     2
## 6953               22/02/1995     2
## 6954               22/05/1995     2
## 6955               22/06/1994     2
## 6956               22/08/1993     2
## 6957               22/08/1994     2
## 6958               22/10/2011     2
## 6959               22/11/2001     2
## 6960               22/11/2007     2
## 6961               22/11/2008     2
## 6962               23/01/1995     2
## 6963               23/02/1994     2
## 6964               23/02/2013     2
## 6965               23/03/1996     2
## 6966               23/08/1994     2
## 6967               23/09/1994     2
## 6968               23/09/1995     2
## 6969               23/10/1994     2
## 6970               23/11/2001     2
## 6971               23/12/2006     2
## 6972               23/12/2007     2
## 6973               24/01/1994     2
## 6974               24/01/2009     2
## 6975               24/02/1993     2
## 6976               24/02/1996     2
## 6977               24/04/1992     2
## 6978               24/06/2001     2
## 6979               24/08/2013     2
## 6980               24/09/1993     2
## 6981               24/09/2006     2
## 6982               24/11/1992     2
## 6983               24/11/1994     2
## 6984               24/11/1995     2
## 6985               24/11/2011     2
## 6986               24/12/1995     2
## 6987               24/12/2010     2
## 6988               25/02/1996     2
## 6989               25/07/1991     2
## 6990               25/10/1994     2
## 6991               25/10/1995     2
## 6992               25/11/1995     2
## 6993               25/12/1999     2
## 6994               25/12/2004     2
## 6995               25/12/2009     2
## 6996               26/01/1995     2
## 6997               26/02/1993     2
## 6998               26/02/2006     2
## 6999               26/04/1990     2
## 7000               26/04/1992     2
## 7001               26/04/2014     2
## 7002               26/05/1993     2
## 7003               26/05/1994     2
## 7004               26/06/1994     2
## 7005               26/08/1994     2
## 7006               26/09/1994     2
## 7007               26/11/1998     2
## 7008               26/11/2004     2
## 7009               26/11/2009     2
## 7010               26/11/2010     2
## 7011               26/12/1995     2
## 7012               27/01/1994     2
## 7013               27/01/1995     2
## 7014               27/01/2008     2
## 7015               27/02/2010     2
## 7016               27/03/2005     2
## 7017               27/03/2011     2
## 7018               27/04/1995     2
## 7019               27/05/1994     2
## 7020               27/10/1994     2
## 7021               27/12/1999     2
## 7022               27/12/2009     2
## 7023               27/12/2011     2
## 7024               28/03/1994     2
## 7025               28/03/1995     2
## 7026               28/11/2010     2
## 7027               29/03/1995     2
## 7028               29/05/1992     2
## 7029               29/05/2010     2
## 7030               29/06/1995     2
## 7031               29/06/2013     2
## 7032               29/07/1993     2
## 7033               29/07/2001     2
## 7034               29/10/1995     2
## 7035               29/11/1993     2
## 7036               29/11/2002     2
## 7037               29/11/2008     2
## 7038               29/12/2001     2
## 7039               30/01/1995     2
## 7040               30/03/1991     2
## 7041               30/03/2002     2
## 7042               30/04/2011     2
## 7043               30/05/1998     2
## 7044               30/06/1993     2
## 7045               30/07/1995     2
## 7046               30/09/1994     2
## 7047               30/09/2006     2
## 7048               30/09/2007     2
## 7049               30/10/2011     2
## 7050               30/11/1994     2
## 7051               30/11/1995     2
## 7052               30/11/2008     2
## 7053               30/12/2007     2
## 7054               31/01/1994     2
## 7055               31/01/1995     2
## 7056               31/03/1995     2
## 7057               31/05/1994     2
## 7058               31/07/1995     2
## 7059               31/07/2005     2
## 7060               31/08/1995     2
## 7061               31/08/2008     2
## 7062               01/01/1992     1
## 7063               01/01/1995     1
## 7064               01/01/2199     1
## 7065               01/01/8201     1
## 7066               01/02/1990     1
## 7067               01/03/1989     1
## 7068               01/03/1993     1
## 7069               01/03/1994     1
## 7070               01/03/1995     1
## 7071               01/03/2008     1
## 7072               01/04/1995     1
## 7073               01/04/2006     1
## 7074               01/06/1993     1
## 7075               01/07/1979     1
## 7076               01/07/1988     1
## 7077               01/07/1993     1
## 7078               01/07/9988     1
## 7079               01/07/9999     1
## 7080               01/08/1992     1
## 7081               01/08/1994     1
## 7082               01/10/1994     1
## 7083               01/11/1992     1
## 7084               01/11/1993     1
## 7085               01/11/1994     1
## 7086               01/12/1992     1
## 7087               01/12/1994     1
## 7088               02/01/1988     1
## 7089               02/01/1991     1
## 7090               02/01/8201     1
## 7091               02/01/8203     1
## 7092               02/02/1993     1
## 7093               02/02/2014     1
## 7094               02/03/1990     1
## 7095               02/03/2014     1
## 7096               02/04/1991     1
## 7097               02/04/2010     1
## 7098               02/05/1989     1
## 7099               02/05/1990     1
## 7100               02/05/1992     1
## 7101               02/06/1993     1
## 7102               02/06/2200     1
## 7103               02/07/1986     1
## 7104               02/08/1994     1
## 7105               02/08/2200     1
## 7106               02/09/1992     1
## 7107               02/09/1994     1
## 7108               02/09/1995     1
## 7109               02/10/1989     1
## 7110               02/10/1994     1
## 7111               02/11/1991     1
## 7112               02/11/2204     1
## 7113               02/12/1989     1
## 7114               02/12/1993     1
## 7115               02/12/1994     1
## 7116               03/01/1990     1
## 7117               03/01/1994     1
## 7118               03/01/1995     1
## 7119               03/02/1992     1
## 7120               03/02/1994     1
## 7121               03/03/1995     1
## 7122               03/04/1994     1
## 7123               03/05/2014     1
## 7124               03/06/1994     1
## 7125               03/07/1990     1
## 7126               03/08/1991     1
## 7127               03/08/1994     1
## 7128               03/09/1990     1
## 7129               03/09/1993     1
## 7130               03/09/1994     1
## 7131               03/10/1990     1
## 7132               03/10/2201     1
## 7133               03/10/4996     1
## 7134               03/11/1991     1
## 7135               03/12/2011     1
## 7136               04/01/1991     1
## 7137               04/01/3000     1
## 7138               04/02/1988     1
## 7139               04/02/1992     1
## 7140               04/02/1995     1
## 7141               04/03/1992     1
## 7142               04/03/2007     1
## 7143               04/04/1993     1
## 7144               04/04/1995     1
## 7145               04/06/1995     1
## 7146               04/07/1994     1
## 7147               04/09/1987     1
## 7148               04/09/1989     1
## 7149               04/09/1993     1
## 7150               04/10/1993     1
## 7151               04/10/1994     1
## 7152               04/11/1988     1
## 7153               04/11/1993     1
## 7154               04/11/1995     1
## 7155               04/12/1995     1
## 7156               05/01/1979     1
## 7157               05/01/1993     1
## 7158               05/02/2006     1
## 7159               05/03/1988     1
## 7160               05/03/1992     1
## 7161               05/04/2201     1
## 7162               05/05/1993     1
## 7163               05/06/1992     1
## 7164               05/07/1994     1
## 7165               05/08/1993     1
## 7166               05/09/1992     1
## 7167               05/09/1999     1
## 7168               05/10/1993     1
## 7169               05/10/1994     1
## 7170               05/11/1990     1
## 7171               05/11/1994     1
## 7172               05/12/2009     1
## 7173               05/12/2010     1
## 7174               06/02/1995     1
## 7175               06/02/2000     1
## 7176               06/04/1990     1
## 7177               06/04/2014     1
## 7178               06/05/1991     1
## 7179               06/05/1995     1
## 7180               06/06/1993     1
## 7181               06/06/1994     1
## 7182               06/08/1990     1
## 7183               06/08/1993     1
## 7184               06/08/1994     1
## 7185               06/08/1995     1
## 7186               06/10/1988     1
## 7187               06/10/1991     1
## 7188               06/11/1982     1
## 7189               06/11/1990     1
## 7190               06/11/1991     1
## 7191               06/11/1993     1
## 7192               06/12/1991     1
## 7193               06/12/1993     1
## 7194               06/12/1995     1
## 7195               07/01/1996     1
## 7196               07/02/1992     1
## 7197               07/02/1995     1
## 7198               07/04/1978     1
## 7199               07/05/2011     1
## 7200               07/06/1991     1
## 7201               07/07/1991     1
## 7202               07/07/1993     1
## 7203               07/09/1995     1
## 7204               07/09/2009     1
## 7205               07/10/1991     1
## 7206               07/10/1994     1
## 7207               07/11/1999     1
## 7208               08/01/1990     1
## 7209               08/01/1992     1
## 7210               08/01/1994     1
## 7211               08/01/1995     1
## 7212               08/03/1990     1
## 7213               08/03/1991     1
## 7214               08/03/2009     1
## 7215               08/04/1993     1
## 7216               08/04/1995     1
## 7217               08/06/1979     1
## 7218               08/06/1992     1
## 7219               08/06/1994     1
## 7220               08/06/1995     1
## 7221               08/07/1985     1
## 7222               08/07/1994     1
## 7223               08/09/1992     1
## 7224               08/10/1992     1
## 7225               08/10/1994     1
## 7226               08/11/1993     1
## 7227               08/12/1985     1
## 7228               08/12/1994     1
## 7229               09/01/1993     1
## 7230               09/01/1994     1
## 7231               09/02/1994     1
## 7232               09/03/1992     1
## 7233               09/03/1993     1
## 7234               09/03/2003     1
## 7235               09/04/1991     1
## 7236               09/04/1992     1
## 7237               09/04/1995     1
## 7238               09/05/1991     1
## 7239               09/05/1992     1
## 7240               09/05/1995     1
## 7241               09/06/1993     1
## 7242               09/08/1991     1
## 7243               09/08/1992     1
## 7244               09/08/1994     1
## 7245               09/08/1995     1
## 7246               09/09/1994     1
## 7247               09/09/1995     1
## 7248               09/10/1992     1
## 7249               09/10/1994     1
## 7250               09/10/2005     1
## 7251               09/11/1994     1
## 7252               09/12/1994     1
## 7253               10/01/1991     1
## 7254               10/02/1988     1
## 7255               10/02/1991     1
## 7256               10/02/1996     1
## 7257               10/03/1992     1
## 7258               10/05/1993     1
## 7259               10/06/1993     1
## 7260               10/06/1994     1
## 7261               10/07/1987     1
## 7262               10/07/1990     1
## 7263               10/07/1995     1
## 7264               10/09/1989     1
## 7265               10/09/1990     1
## 7266               10/09/1992     1
## 7267               10/09/1993     1
## 7268               10/09/1995     1
## 7269               10/10/1993     1
## 7270               10/11/1986     1
## 7271               10/12/1990     1
## 7272               10/12/2011     1
## 7273               11/01/1992     1
## 7274               11/01/1994     1
## 7275               11/01/1995     1
## 7276               11/02/2012     1
## 7277               11/03/1991     1
## 7278               11/03/1995     1
## 7279               11/04/1995     1
## 7280               11/04/2202     1
## 7281               11/05/1987     1
## 7282               11/05/1990     1
## 7283               11/05/1993     1
## 7284               11/05/1994     1
## 7285               11/06/1990     1
## 7286               11/08/1994     1
## 7287               11/09/1993     1
## 7288               11/09/1994     1
## 7289               11/11/2000     1
## 7290               12/01/1979     1
## 7291               12/01/1988     1
## 7292               12/01/1992     1
## 7293               12/01/1993     1
## 7294               12/02/1990     1
## 7295               12/02/1994     1
## 7296               12/02/1995     1
## 7297               12/03/1994     1
## 7298               12/03/1995     1
## 7299               12/03/2011     1
## 7300               12/04/2014     1
## 7301               12/05/1986     1
## 7302               12/05/1993     1
## 7303               12/05/1994     1
## 7304               12/06/1991     1
## 7305               12/06/1992     1
## 7306               12/07/1993     1
## 7307               12/09/1994     1
## 7308               12/10/1992     1
## 7309               12/11/1995     1
## 7310               12/11/2011     1
## 7311               12/12/1993     1
## 7312               12/12/1994     1
## 7313               13/01/1993     1
## 7314               13/02/1985     1
## 7315               13/02/1990     1
## 7316               13/02/2011     1
## 7317               13/03/1989     1
## 7318               13/03/1992     1
## 7319               13/04/1994     1
## 7320               13/04/2002     1
## 7321               13/07/1990     1
## 7322               13/07/1992     1
## 7323               13/08/1992     1
## 7324               13/09/1991     1
## 7325               13/09/1994     1
## 7326               13/09/1995     1
## 7327               13/10/1990     1
## 7328               13/10/1993     1
## 7329               13/10/1994     1
## 7330               13/11/1991     1
## 7331               13/11/2202     1
## 7332               13/12/1993     1
## 7333               13/12/1994     1
## 7334               13/12/2009     1
## 7335               14/01/1994     1
## 7336               14/02/1992     1
## 7337               14/02/1993     1
## 7338               14/02/1995     1
## 7339               14/03/1993     1
## 7340               14/04/1991     1
## 7341               14/04/1995     1
## 7342               14/06/1989     1
## 7343               14/07/1988     1
## 7344               14/07/1994     1
## 7345               14/07/1995     1
## 7346               14/08/1993     1
## 7347               14/08/1995     1
## 7348               14/09/1992     1
## 7349               14/12/1992     1
## 7350               14/12/1993     1
## 7351               15/01/1990     1
## 7352               15/01/1992     1
## 7353               15/01/1994     1
## 7354               15/02/1991     1
## 7355               15/03/1995     1
## 7356               15/04/1985     1
## 7357               15/07/1991     1
## 7358               15/07/1993     1
## 7359               15/08/1988     1
## 7360               15/08/1993     1
## 7361               15/09/1990     1
## 7362               15/09/1992     1
## 7363               15/10/1991     1
## 7364               15/10/1993     1
## 7365               15/10/1994     1
## 7366               15/11/1989     1
## 7367               15/11/2003     1
## 7368               15/12/1993     1
## 7369               16/01/1992     1
## 7370               16/01/2005     1
## 7371               16/03/1988     1
## 7372               16/03/1993     1
## 7373               16/03/1995     1
## 7374               16/04/1990     1
## 7375               16/04/1995     1
## 7376               16/06/1994     1
## 7377               16/06/1995     1
## 7378               16/07/1992     1
## 7379               16/07/1995     1
## 7380               16/08/1992     1
## 7381               16/08/1995     1
## 7382               16/09/1993     1
## 7383               16/09/1994     1
## 7384               16/10/1987     1
## 7385               16/10/1992     1
## 7386               16/11/1993     1
## 7387               16/12/2001     1
## 7388               17/01/1994     1
## 7389               17/01/1995     1
## 7390               17/02/1995     1
## 7391               17/03/1989     1
## 7392               17/03/1994     1
## 7393               17/04/1992     1
## 7394               17/04/1993     1
## 7395               17/04/1994     1
## 7396               17/05/1988     1
## 7397               17/05/1994     1
## 7398               17/06/1995     1
## 7399               17/07/1991     1
## 7400               17/07/2005     1
## 7401               17/08/1994     1
## 7402               17/10/1990     1
## 7403               17/12/1990     1
## 7404               17/12/1995     1
## 7405               18/01/1993     1
## 7406               18/01/1994     1
## 7407               18/01/1995     1
## 7408               18/02/1987     1
## 7409               18/02/1994     1
## 7410               18/02/2006     1
## 7411               18/03/1994     1
## 7412               18/03/1995     1
## 7413               18/04/1991     1
## 7414               18/04/1992     1
## 7415               18/04/1994     1
## 7416               18/05/1994     1
## 7417               18/07/1994     1
## 7418               18/08/1992     1
## 7419               18/09/1983     1
## 7420               18/09/1991     1
## 7421               18/09/1993     1
## 7422               18/11/1993     1
## 7423               18/11/1995     1
## 7424               18/12/1990     1
## 7425               18/12/1994     1
## 7426               19/01/1986     1
## 7427               19/01/1993     1
## 7428               19/01/1994     1
## 7429               19/01/1995     1
## 7430               19/02/1985     1
## 7431               19/02/1994     1
## 7432               19/03/1992     1
## 7433               19/03/1993     1
## 7434               19/03/1994     1
## 7435               19/04/1991     1
## 7436               19/04/1994     1
## 7437               19/05/1994     1
## 7438               19/05/1995     1
## 7439               19/08/1986     1
## 7440               19/08/1994     1
## 7441               19/09/1990     1
## 7442               19/09/1993     1
## 7443               19/10/1990     1
## 7444               19/11/1986     1
## 7445               19/11/1987     1
## 7446               19/11/1992     1
## 7447               19/11/1995     1
## 7448               19/12/1985     1
## 7449               19/12/1990     1
## 7450               19/12/1991     1
## 7451               19/12/1993     1
## 7452               20/01/1993     1
## 7453               20/02/1990     1
## 7454               20/04/1993     1
## 7455               20/04/1994     1
## 7456               20/04/2014     1
## 7457               20/05/1995     1
## 7458               20/06/1995     1
## 7459               20/07/1993     1
## 7460               20/07/2003     1
## 7461               20/08/1991     1
## 7462               20/08/1994     1
## 7463               20/08/2203     1
## 7464               20/10/1993     1
## 7465               20/11/1990     1
## 7466               20/11/1993     1
## 7467               21/01/1989     1
## 7468               21/01/1994     1
## 7469               21/02/9988     1
## 7470               21/03/1995     1
## 7471               21/04/1994     1
## 7472               21/05/1986     1
## 7473               21/05/1992     1
## 7474               21/06/1993     1
## 7475               21/07/1994     1
## 7476               21/07/9999     1
## 7477               21/08/1990     1
## 7478               21/08/1993     1
## 7479               21/09/1987     1
## 7480               21/09/1993     1
## 7481               21/10/1983     1
## 7482               21/10/1995     1
## 7483               21/12/1993     1
## 7484               21/12/2002     1
## 7485               22/01/1992     1
## 7486               22/01/1994     1
## 7487               22/01/9203     1
## 7488               22/02/1991     1
## 7489               22/02/1994     1
## 7490               22/02/2003     1
## 7491               22/03/1980     1
## 7492               22/03/1993     1
## 7493               22/04/1989     1
## 7494               22/05/1991     1
## 7495               22/06/1992     1
## 7496               22/06/1995     1
## 7497               22/06/8199     1
## 7498               22/07/1992     1
## 7499               22/07/1994     1
## 7500               22/09/1989     1
## 7501               22/09/1990     1
## 7502               22/09/1993     1
## 7503               22/10/1993     1
## 7504               22/11/1991     1
## 7505               22/11/1992     1
## 7506               22/11/2003     1
## 7507               22/12/1993     1
## 7508               22/12/1994     1
## 7509               23/01/1987     1
## 7510               23/01/1990     1
## 7511               23/02/1993     1
## 7512               23/02/1995     1
## 7513               23/04/1983     1
## 7514               23/04/1994     1
## 7515               23/05/1988     1
## 7516               23/05/1990     1
## 7517               23/05/1991     1
## 7518               23/06/1993     1
## 7519               23/06/1994     1
## 7520               23/06/1995     1
## 7521               23/06/2013     1
## 7522               23/07/1993     1
## 7523               23/07/1995     1
## 7524               23/08/1992     1
## 7525               23/10/1993     1
## 7526               23/11/1993     1
## 7527               23/12/1995     1
## 7528               24/01/1990     1
## 7529               24/01/1993     1
## 7530               24/01/1995     1
## 7531               24/02/1986     1
## 7532               24/02/2007     1
## 7533               24/03/1992     1
## 7534               24/03/1995     1
## 7535               24/04/1991     1
## 7536               24/04/1994     1
## 7537               24/05/2003     1
## 7538               24/05/2014     1
## 7539               24/06/1995     1
## 7540               24/06/2012     1
## 7541               24/07/1993     1
## 7542               24/08/1992     1
## 7543               24/08/1994     1
## 7544               24/08/2008     1
## 7545               24/09/1994     1
## 7546               24/09/2011     1
## 7547               24/10/1994     1
## 7548               24/11/1993     1
## 7549               24/11/2007     1
## 7550               24/12/1994     1
## 7551               24/12/1999     1
## 7552               24/12/2004     1
## 7553               24/12/2005     1
## 7554               24/12/2007     1
## 7555               25/01/1990     1
## 7556               25/01/1995     1
## 7557               25/01/1998     1
## 7558               25/02/1993     1
## 7559               25/03/1994     1
## 7560               25/04/1985     1
## 7561               25/04/1994     1
## 7562               25/04/2009     1
## 7563               25/05/1994     1
## 7564               25/06/1990     1
## 7565               25/06/1992     1
## 7566               25/07/1994     1
## 7567               25/09/1992     1
## 7568               25/10/1993     1
## 7569               25/11/1992     1
## 7570               25/11/1993     1
## 7571               25/11/2005     1
## 7572               25/12/1992     1
## 7573               25/12/1993     1
## 7574               25/12/2012     1
## 7575               26/02/1995     1
## 7576               26/03/1986     1
## 7577               26/03/1993     1
## 7578               26/04/1991     1
## 7579               26/04/1993     1
## 7580               26/04/1994     1
## 7581               26/05/1995     1
## 7582               26/05/2014     1
## 7583               26/06/1991     1
## 7584               26/07/1995     1
## 7585               26/07/2009     1
## 7586               26/08/1988     1
## 7587               26/09/1987     1
## 7588               26/09/1993     1
## 7589               26/10/1994     1
## 7590               26/10/1995     1
## 7591               26/11/1988     1
## 7592               26/11/1993     1
## 7593               26/12/1994     1
## 7594               26/12/1999     1
## 7595               26/12/2004     1
## 7596               26/12/2010     1
## 7597               27/01/5003     1
## 7598               27/03/2010     1
## 7599               27/04/1994     1
## 7600               27/05/1993     1
## 7601               27/06/1993     1
## 7602               27/07/1992     1
## 7603               27/07/1995     1
## 7604               27/08/1993     1
## 7605               27/08/1995     1
## 7606               27/08/2011     1
## 7607               27/09/1994     1
## 7608               27/10/1993     1
## 7609               27/12/1990     1
## 7610               28/01/1992     1
## 7611               28/03/1993     1
## 7612               28/04/1994     1
## 7613               28/05/1992     1
## 7614               28/05/1993     1
## 7615               28/05/2011     1
## 7616               28/06/1990     1
## 7617               28/06/1995     1
## 7618               28/07/1989     1
## 7619               28/07/1992     1
## 7620               28/09/1984     1
## 7621               28/09/1993     1
## 7622               28/09/1994     1
## 7623               28/10/1994     1
## 7624               28/11/1993     1
## 7625               28/12/1990     1
## 7626               28/12/1994     1
## 7627               29/03/1981     1
## 7628               29/04/1987     1
## 7629               29/04/4998     1
## 7630               29/05/1993     1
## 7631               29/05/1995     1
## 7632               29/06/1994     1
## 7633               29/07/1991     1
## 7634               29/07/1995     1
## 7635               29/08/1994     1
## 7636               29/09/1993     1
## 7637               29/09/2001     1
## 7638               29/10/1994     1
## 7639               29/12/1992     1
## 7640               29/12/1993     1
## 7641               29/12/1994     1
## 7642               30/01/1984     1
## 7643               30/01/1989     1
## 7644               30/03/1990     1
## 7645               30/03/1993     1
## 7646               30/04/1987     1
## 7647               30/05/1994     1
## 7648               30/07/1989     1
## 7649               30/07/1992     1
## 7650               30/07/1993     1
## 7651               30/08/1988     1
## 7652               30/08/1993     1
## 7653               30/10/1976     1
## 7654               30/10/1990     1
## 7655               30/10/1993     1
## 7656               30/11/1993     1
## 7657               30/12/1989     1
## 7658               30/12/1992     1
## 7659               30/12/1993     1
## 7660               31/01/1993     1
## 7661               31/03/1993     1
## 7662               31/05/1987     1
## 7663               31/07/1994     1
## 7664               31/08/1993     1
## 7665               31/08/1994     1
## 7666               31/12/1991     1
## 7667               31/12/1992     1
## 7668               31/12/1993     1
## 7669               31/12/1994     1
## 7670               31/12/1995     1
## 7671               31/12/1999     1
count(db, IsDenied, sort=TRUE)
##   IsDenied      n
## 1        0 123505
## 2        1   5813
count(db, ClaimantAge_at_DOI, sort=TRUE)
##     ClaimantAge_at_DOI     n
## 1                 NULL 45037
## 2                   48  2490
## 3                   46  2474
## 4                   45  2408
## 5                   41  2402
## 6                   49  2398
## 7                   47  2387
## 8                   50  2372
## 9                   43  2361
## 10                  44  2304
## 11                  42  2303
## 12                  40  2299
## 13                  51  2282
## 14                  38  2241
## 15                  39  2231
## 16                  52  2208
## 17                  36  2150
## 18                  53  2125
## 19                  54  2121
## 20                  35  2079
## 21                  33  2073
## 22                  37  2066
## 23                  32  2026
## 24                  34  2001
## 25                  31  1991
## 26                  55  1895
## 27                  30  1867
## 28                  28  1857
## 29                  56  1782
## 30                  29  1779
## 31                  27  1758
## 32                  26  1722
## 33                  25  1674
## 34                  57  1658
## 35                  58  1566
## 36                  24  1457
## 37                  59  1400
## 38                  23  1351
## 39                  60  1198
## 40                  22  1131
## 41                  61  1053
## 42                  21   871
## 43                  62   676
## 44                  20   649
## 45                  63   546
## 46                  19   408
## 47                  64   375
## 48                  65   265
## 49                  66   194
## 50                  18   172
## 51                  67   155
## 52                   0   115
## 53                  68   109
## 54                  69    83
## 55                  71    70
## 56                  70    68
## 57                  72    44
## 58                  17    42
## 59                  73    42
## 60                  74    35
## 61                  76    30
## 62                  -1    29
## 63                  16    27
## 64                   1    26
## 65                  75    26
## 66                  77    22
## 67                  15    15
## 68                   5    14
## 69                   2    13
## 70                   4    13
## 71                  12    12
## 72                  78    11
## 73                  80    11
## 74                  10    10
## 75                  13    10
## 76                  79    10
## 77                   3     9
## 78                  81     9
## 79                   6     7
## 80                   7     7
## 81                  82     7
## 82                  14     6
## 83                   9     6
## 84                  11     5
## 85                  -7     4
## 86                   8     4
## 87                  84     4
## 88                  87     4
## 89                 -10     3
## 90                  -5     3
## 91                  -6     3
## 92               -7161     3
## 93                  -8     3
## 94                  -9     3
## 95                  83     3
## 96                 -11     2
## 97                -193     2
## 98                  -3     2
## 99               -5973     2
## 100              -5974     2
## 101              -7159     2
## 102              -7162     2
## 103              -7163     2
## 104                 86     2
## 105                 91     2
## 106                -13     1
## 107               -191     1
## 108                 -2     1
## 109              -2943     1
## 110              -2948     1
## 111              -2956     1
## 112              -2962     1
## 113              -2969     1
## 114                 -4     1
## 115                -45     1
## 116              -5166     1
## 117              -5167     1
## 118              -5944     1
## 119              -5949     1
## 120              -5970     1
## 121              -5975     1
## 122              -5978     1
## 123              -7156     1
## 124              -7158     1
## 125              -7165     1
## 126              -7550     1
## 127              -7951     1
## 128                -80     1
## 129              -8000     1
## 130               -949     1
## 131               -954     1
## 132                 85     1
## 133                 89     1
## 134                 93     1
## 135                 94     1
count(db, Gender, sort=TRUE)
##          Gender     n
## 1          Male 62807
## 2        Female 56900
## 3 Not Available  9611
count(db, ClaimantType, sort=TRUE)
##   ClaimantType     n
## 1 Medical Only 86508
## 2    Indemnity 30477
## 3  Report Only 12333
count(db, InjuryNature, sort=TRUE)
##                                                   InjuryNature     n
## 1                                                       Strain 30408
## 2                                                    Contusion 26979
## 3                                            Non-Standard Code 13725
## 4                             All Other Specific Injuries, Noc 12105
## 5                                                       Sprain 10445
## 6                                                   Laceration  9229
## 7                                                     Puncture  4711
## 8                                                 Foreign Body  3188
## 9                                                     Fracture  3083
## 10                             Multiple Physical Injuries Only  2114
## 11                                          No Physical Injury  1833
## 12                                                  Dermatitis  1683
## 13                                                Inflammation  1410
## 14                                                        Burn  1344
## 15                                       Respiratory Disorders   975
## 16                                      Carpal Tunnel Syndrome   820
## 17                                                    Crushing   796
## 18                                                  Concussion   640
## 19                                          Contagious Disease   449
## 20                                                 Dislocation   439
## 21                                                   Infection   383
## 22                                               Not Available   359
## 23                      Poisoning?Chemical (Other Than Metals)   287
## 24                                                      Hernia   232
## 25                                               Mental Stress   225
## 26                                            Heat Prostration   195
## 27                                                     Syncope   158
## 28             Poisoning?General (NOT OD or Cumulative Injury)   144
## 29                                              Electric Shock   138
## 30                                                     Rupture   115
## 31                                                   Severance    91
## 32                                  Hearing Loss Or Impairment    80
## 33                                                  Amputation    67
## 34                                             Loss of Hearing    67
## 35                                                  Asbestosis    64
## 36 Multiple Injuries Including Both Physical and Psychological    53
## 37                                                 Vision Loss    37
## 38                            All Other Cumulative Injury, NOC    36
## 39                                       Myocardial Infarction    32
## 40                                                   Radiation    31
## 41                                           Dust Disease, NOC    20
## 42                                             Angina Pectoris    18
## 43                                             Mental Disorder    17
## 44                  All Other Occupational Disease Injury, NOC    16
## 45                                                Asphyxiation    14
## 46                                                      Cancer    13
## 47                                                    Vascular    13
## 48                                                        AIDS    12
## 49                                                    Freezing     7
## 50                                                   Silicosis     6
## 51                                         VDT-Related Disease     6
## 52                                                  Black Lung     4
## 53                                             Poisoning?Metal     2
count(db, BodyPartRegion, sort=TRUE)
##        BodyPartRegion     n
## 1   Upper Extremities 37711
## 2   Lower Extremities 26346
## 3               Trunk 20293
## 4 Multiple Body Parts 16013
## 5   Non-Standard Code 12618
## 6                Head 12463
## 7                Neck  3867
## 8       Not Available     7
count(db, BodyPart, sort=TRUE)
##                                                       BodyPart     n
## 1  Multiple Body Parts (Including Body Systems and Body Parts) 13565
## 2                                            Non-Standard Code 12618
## 3                                              Lower Back Area 11815
## 4                                                         Knee 10431
## 5                                                    Finger(S)  9128
## 6                                                         Hand  7159
## 7                                                        Ankle  5449
## 8                                                         Eyes  5004
## 9                                                        Wrist  4953
## 10                                                 Shoulder(S)  4781
## 11                                                        Foot  3555
## 12                                                   Lower Arm  2873
## 13                                        Multiple Head Injury  2872
## 14                                                   Lower Leg  2671
## 15                                                       Thumb  2604
## 16                                                   Upper Arm  2378
## 17                                                       Chest  2136
## 18                                                       Elbow  2010
## 19                                            Soft Tissue-Neck  1994
## 20                                  Multiple Upper Extremities  1825
## 21                                        Multiple Neck Injury  1818
## 22                                                         Hip  1380
## 23                                                     Abdomen  1203
## 24                                          No Physical Injury  1155
## 25         Lumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)  1139
## 26                                  Multiple Lower Extremities  1110
## 27                                                Facial Bones  1052
## 28                                                  Disc-Trunk   961
## 29                                             Upper Back Area   954
## 30                                                   Upper Leg   914
## 31                                            Soft Tissue-Head   809
## 32                                                       Skull   713
## 33         Insufficient Info to Properly Identify?Unclassified   695
## 34                                                        Toes   649
## 35                                                       Mouth   614
## 36                                                       Lungs   561
## 37                                                      Ear(S)   539
## 38                                                        Nose   535
## 39                      Body Systems and Multiple Body Systems   501
## 40                                                    Buttocks   375
## 41                                           Spinal Cord-Trunk   325
## 42                                             Internal Organs   307
## 43                                                       Teeth   287
## 44                                              Multiple Trunk   216
## 45                                                   Great Toe   187
## 46                                                      Pelvis   170
## 47                                                  Whole Body    86
## 48                                           Sacrum And Coccyx    85
## 49                                                       Heart    46
## 50                                                       Brain    38
## 51                                                   Vertebrae    25
## 52                                                     Trachea    17
## 53                                                      Larynx    13
## 54                                        Artificial Appliance    11
## 55                                               Not Available     7
# Se realizó la función count para entender la cantidad de elementos por variable
# y la jerarquía que estas tienen dentro de la base de datos, sin embargo, se mantuvo
# algunas variables como comentario, ya que el código es de gran peso y mantenerlas no 
# permitía subir el documento a Rpubs

Observaciones

  1. Las columnas de fecha están establecidas como caracter
  2. Las variables BillReviewALE, Hospital, PhysicianOutpatient y Rx contienen una gran cantidad de NA’s
  3. Variables adicionales (X - X.22) están presentes en la base de datos nueva debido a la función “merge”
  4. La variable Age está establecida como caractér y no como un valor numerico al igual que la variable Average Weekly Wage

A continuación, se procederá a hacer los cambios necesarios para que la base de datos esté en forma para realizar los cálculos necesarios.

3. Limpieza de base de datos

# Eliminar columnas adicionales 
main_db <- subset(db, select = -c(X, X.1, X.2, X.3, X.4, X.5, X.6, X.7, X.8, X.9, X.10, X.11, X.12, X.13, X.14, X.15, X.16, X.17, X.18, X.19, X.20, X.21, X.22))


# Cambiar formato de caractér a fecha

## Claimed Opened Date
main_db$ClaimantOpenedDate <- as.Date(main_db$ClaimantOpenedDate, format = "%d/%m/%Y")

## Claim Closed Date
main_db$ClaimantClosedDate <- as.Date(main_db$ClaimantClosedDate, format = "%d/%m/%Y")


# Cambiar Formato Variable Edad Character - Numeric
main_db$ClaimantAge_at_DOI <- as.numeric(main_db$ClaimantAge_at_DOI)
## Warning: NAs introduced by coercion
# Cambiar Formato Sueldo character - numeris
main_db$AverageWeeklyWage <- as.numeric(main_db$AverageWeeklyWage)
## Warning: NAs introduced by coercion
# Agregar Cálculo "Total Incurred Cost"
main_db$TotalIncurredCost <- main_db$TotalReserves + main_db$IndemnityPaid + main_db$OtherPaid - main_db$TotalRecovery

# Agregar Columna Tiempo de Procesamiento
main_db$ProcessingTime <-difftime(main_db$ClaimantClosedDate, main_db$ClaimantOpenedDate, units = "days" )

# Cambiar Formato de Variable Tiempo de Procesamiento
main_db$ProcessingTime <- as.numeric(main_db$ProcessingTime)

# Eliminar Valores Negativos en columna "Tiempo de Procesamiento"
main_db <- main_db[main_db$ProcessingTime > 0, ]

Análisis de Clústers

Actividad Clusters

1. Crear Base de Datos

Debido a que se tiene una base de datos de gran capacidad, se procederá a realizar una base con una menor cantidad de variables, con el objetivo de lograr identificar outliers dentro de las variables Processing Time y Total Paid, al igual que realizar el proceso de agrupamiento o clusterización.

# Crear base de datos para Clusters 
clusters <- main_db[, c("ProcessingTime", "TotalPaid")]

2. Limpieza de Base de Datos Nueva

# ¿Cuántos NA's tengo en la base de datos?
sum(is.na(clusters))
## [1] 0
# ¿Cuantos NA's tengo x variable?
sapply(clusters, function(x) sum(is.na(x)))
## ProcessingTime      TotalPaid 
##              0              0
clusters
##       ProcessingTime  TotalPaid
## 7                383   11947.55
## 8                146       0.00
## 9                271    9295.89
## 10               270    1026.29
## 11               673   43108.03
## 12               146     331.90
## 13               146       0.00
## 14               235    1989.99
## 14049           2075     340.97
## 14050           2079    3883.12
## 14051           2080    3873.13
## 14052           2093       0.00
## 14053           2089     136.22
## 14054           2088     193.35
## 14055           2088      66.00
## 14056           2089      27.55
## 14057           2089      20.00
## 14058           2087   14507.16
## 14059           2087     506.27
## 14060           2085      66.68
## 14061           2085       0.00
## 14062           1931     256.36
## 14063           1946    1595.65
## 14064           1877     277.21
## 14065           2443       0.00
## 14066           2064     204.60
## 14067           2053       0.00
## 14068           2058      52.89
## 14069           2347   25208.21
## 14070           1693       0.00
## 14071             84       0.00
## 14072           2085      60.01
## 14073           2082       0.00
## 14074           2082     439.71
## 14075           2087      45.99
## 14076           2087    5407.32
## 14077           2087     331.00
## 14078           2087    5919.12
## 14079           2086     337.91
## 14080           2089     363.12
## 14081           2092     531.82
## 14082           2093     380.88
## 14083           2093       0.00
## 14084           2094     113.77
## 14085           2080     531.01
## 14086           3255     287.79
## 14087           2081    1351.82
## 14088           2081      66.00
## 14089           2081      66.00
## 14090           2079       0.00
## 14091           2050     234.89
## 14092           2800    1537.02
## 14093           2195      67.16
## 14094           2088     499.61
## 14095           2081       0.00
## 14096           2082       0.00
## 14097           2087    1480.25
## 14098           2493     390.24
## 14099           2089     241.74
## 14100           2071     208.76
## 14101           2058       0.00
## 14102           2024     682.68
## 14103           2079       0.00
## 14104           2080       0.00
## 14105           2093      58.93
## 14106           2086     589.40
## 14107           3232     343.97
## 14108           2087     419.12
## 14109           2087    6182.45
## 14110           2082     371.57
## 14111           1927     618.58
## 14112           2054     142.95
## 14113           3180      11.99
## 14114           2085     112.34
## 14115           2082     529.24
## 14116           2081      58.41
## 14117           2081     194.00
## 14118           2081     150.02
## 14119           2900   32606.10
## 14120           2087     239.38
## 14121           2088     490.95
## 14122           2089      36.36
## 14123           2590     360.30
## 14124           2089     195.55
## 14125           2080       0.00
## 14126           2079      78.37
## 14127           2075     160.00
## 14128           2075    3203.26
## 14129           2075     590.37
## 14130           1945    8047.85
## 14131           1960       0.00
## 14132           2066      82.77
## 14133           2057     293.67
## 14134           2566     633.23
## 14135           2065    2359.43
## 14136           2065       0.00
## 14137           2058     111.99
## 14138           2039      69.56
## 14139           2016     184.00
## 14140           3069   28862.81
## 14141           2079     241.98
## 14142           2079     356.93
## 14143           2079     762.32
## 14144           2080    1046.87
## 14145           2080       0.00
## 14146           2080   12402.63
## 14147           2080     382.54
## 14148           2080      39.78
## 14149           3426      17.79
## 14150           2088     703.28
## 14151           2089    5847.74
## 14152           2092      66.68
## 14153           2087     190.15
## 14154           2960      24.33
## 14155           2087      25.82
## 14156           2081     247.52
## 14157           2082     178.23
## 14158           2082      84.00
## 14159           2085     332.15
## 14160           1948   18987.45
## 14161           1883      78.43
## 14162           2015       0.00
## 14163           2025     136.38
## 14164           2061     202.24
## 14165           2064     130.78
## 14166           1458     130.54
## 14167           2085    1169.29
## 14168           2082     557.54
## 14169           2086     296.69
## 14170           2628      12.47
## 14171           2087       0.00
## 14172           2087     128.01
## 14173           2087     166.01
## 14174           2779      71.32
## 14175           2087     375.61
## 14176           2814     190.06
## 14177           2089     127.21
## 14178           2080     104.21
## 14179           2080       0.00
## 14180           2422     126.47
## 14181           2080      56.68
## 14182           2079     234.93
## 14183           2079     265.95
## 14184           2079     113.05
## 14185           2079     110.33
## 14186           2074      91.97
## 14187           1955     199.16
## 14188           1757     270.57
## 14189           2010     303.05
## 14190           2011   83926.74
## 14191           1812       0.00
## 14192           2074     162.35
## 14193           5144  114251.39
## 14194           2071    2324.28
## 14195           3073     109.69
## 14196           2075       0.00
## 14197           2075       0.00
## 14198           2080     219.56
## 14199           3057     182.00
## 14200           2085     267.46
## 14201           2085      63.75
## 14202           2086      81.68
## 14203           2085     783.67
## 14204           1988     285.28
## 14205           2107    1654.52
## 14206           2059     261.73
## 14207           3250      90.88
## 14208           2082     202.96
## 14209           2087     124.76
## 14210           2087     188.00
## 14211           2079   37500.00
## 14212           1877       0.00
## 14213           1877       0.00
## 14214           1877       0.00
## 14215           1877       0.00
## 14216           1877       0.00
## 14217           1865       0.00
## 14218           1865       0.00
## 14219           1863       0.00
## 14220           1863       0.00
## 14221           1984      46.04
## 14222           1984       0.00
## 14223           1984       0.00
## 14224           1984       0.00
## 14225           1984       0.00
## 14226           1984       0.00
## 14227           1984       0.00
## 14228           2005       0.00
## 14229           2005       0.00
## 14230           2005       0.00
## 14231           2005       0.00
## 14232           2544       0.00
## 14233           2005       0.00
## 14234           2005      44.33
## 14235           2005       0.00
## 14236           2005       0.00
## 14237           2005       0.00
## 14238           2005       0.00
## 14239           2060     789.67
## 14240           2050     107.38
## 14241           2057       0.00
## 14242           2035       0.00
## 14243           2035       0.00
## 14244           2035       0.00
## 14245           2708       0.00
## 14246           2035       0.00
## 14247           2035       0.00
## 14248           2035       0.00
## 14249           2035       0.00
## 14250           2035       0.00
## 14251           2538       0.00
## 14252           2035       0.00
## 14253           2035       0.00
## 14254           2035       0.00
## 14255           2035       0.00
## 14256           2035       0.00
## 14257           2035       0.00
## 14258           2035       0.00
## 14259           2035       0.00
## 14260           2035       0.00
## 14261           2035       0.00
## 14262           3233      85.63
## 14263           2075   21019.81
## 14264           2087     131.76
## 14265           2087     165.36
## 14266           2087     372.17
## 14267           2281    9777.46
## 14268           2087     279.34
## 14269           2087     311.55
## 14270           1872     167.35
## 14271           2087       0.00
## 14272           2787  160385.68
## 14273           2087     207.15
## 14274           2087     548.60
## 14275           2924       9.95
## 14276           2086     152.65
## 14277           2085     256.00
## 14278           2777     152.65
## 14286           2082     282.18
## 14287           2075     249.17
## 14288           2079    1947.10
## 14289           2434      57.80
## 14290           1917     667.12
## 14291           1980       0.00
## 14292           2031   30972.06
## 14293           2053     621.66
## 14294           2059       0.00
## 14295           2064     199.37
## 14296           2064   21120.76
## 14297           1470     180.15
## 14298           2080   78852.62
## 14299           2080       0.00
## 14300           2500     166.72
## 14301           2075     800.96
## 14302           2071       0.00
## 14303           2074     224.08
## 14304           2082       0.00
## 14305           2085       0.00
## 14306           2082    2400.98
## 14307           2082     719.05
## 14308           2085     213.51
## 14309           2087   53449.90
## 14310           1966       0.00
## 14311           1514     229.90
## 14312           2082     162.06
## 14313           2081     314.10
## 14314           2074    7188.22
## 14315           2072     117.30
## 14316           2072     209.41
## 14317           2345       0.00
## 14318           2075     317.31
## 14319           2075      97.23
## 14320           2079     983.30
## 14321           3009      55.00
## 14322           2080    1501.54
## 14323           2081     177.53
## 14324           2004      19.00
## 14325           2155     191.77
## 14326           2050       0.00
## 14327           2329       0.00
## 14328           3090       0.00
## 14329           2514       0.00
## 14330           2080     130.18
## 14331           2080     218.85
## 14332           2080       0.00
## 14333           2080     115.38
## 14334           2078    1590.46
## 14335           2965    3001.12
## 14336           2966      75.65
## 14337           2072     403.12
## 14338           2074     225.17
## 14339           2071     100.00
## 14340           2082    1450.29
## 14341           2085     135.86
## 14342           2005    1186.66
## 14343           2005       0.00
## 14344           2983     112.50
## 14345           2012    1990.10
## 14346           2015      95.28
## 14347           2058      50.01
## 14348           2065      78.00
## 14349           2061     269.28
## 14350           2061     566.41
## 14351           2066     111.10
## 14352           3297     107.03
## 14353           2748    5452.50
## 14354           2072     520.72
## 14355           2072     203.19
## 14356           2074     134.64
## 14357           2074     284.38
## 14358           2074      73.58
## 14359           2072    2843.49
## 14360           2075     171.91
## 14361           2078       0.00
## 14362           2081     461.67
## 14363           2080      61.63
## 14364           2138     435.91
## 14365           2081     372.16
## 14366           2616    5632.05
## 14367           1959      53.66
## 14368           1941    2307.31
## 14369           2005      78.17
## 14370           2003     477.79
## 14371           1277     457.49
## 14372           2053     277.82
## 14373           2053     300.06
## 14374           3289     156.87
## 14375           2050     175.67
## 14376           2465       0.00
## 14377           2081    6043.30
## 14378           2245     583.39
## 14379           2082    1976.20
## 14380           1967    1574.67
## 14381           2080     226.25
## 14382           2079      65.00
## 14383           2075     273.95
## 14384           2074    1259.33
## 14385           1940     562.77
## 14386           2053   29014.57
## 14387           2052     393.19
## 14388           2050     669.55
## 14389           2058     487.18
## 14390           2058     110.92
## 14391           2065    1341.06
## 14392           2074      33.57
## 14393           2275      50.01
## 14394           2074     149.84
## 14395           2072    1149.70
## 14396           2072      43.84
## 14397           2072     254.85
## 14398           2075     317.15
## 14399           2075    4698.79
## 14400           2075     142.88
## 14401           2075     295.94
## 14402           2075     205.94
## 14403           2079     443.24
## 14404           2079     409.84
## 14405           2770       0.00
## 14406           2080   82973.82
## 14407           2080       0.00
## 14408           2080     361.92
## 14409           1982       0.00
## 14410           2066     210.96
## 14412           2178     192.87
## 14413           2040     132.38
## 14414           2018     105.00
## 14415           2011     161.27
## 14416           2079      29.90
## 14417           2078    1087.44
## 14418           2974     588.08
## 14419           2109       0.00
## 14420           2075       0.00
## 14421           2072      10.18
## 14422           2520       9.26
## 14423           2073     139.95
## 14424           2074    5334.73
## 14425           2074     194.46
## 14426           2071     141.68
## 14427           2071       0.00
## 14428           2038     690.88
## 14429           2037     851.72
## 14430           2039    1295.65
## 14431           2057    1444.10
## 14432           2057     333.33
## 14433           2058      84.89
## 14434           2530     125.66
## 14435           2060       0.00
## 14436           2060    1213.71
## 14437           2067     209.07
## 14438           2067       0.00
## 14439           2068    1034.28
## 14440           1116     146.04
## 14441           2071    1181.51
## 14442           3000       0.00
## 14443           2222     461.36
## 14444           2074     704.26
## 14445           2073      10.44
## 14446           2073     510.27
## 14447           2074   13999.71
## 14448           2072     850.89
## 14449           2072      51.16
## 14450           2075     230.52
## 14451           2079       0.00
## 14452           1931     102.57
## 14453           2005     326.65
## 14454           2060      95.84
## 14455           2060       0.00
## 14456           2227       0.00
## 14457           2066     849.57
## 14458           2058    1583.66
## 14459           2050   22777.53
## 14460           2543     138.52
## 14461           2029      95.98
## 14462           2036     142.86
## 14463           1813    5373.50
## 14464           2078     285.88
## 14465           2072   17558.50
## 14466           2072     220.32
## 14467           2072    3537.34
## 14468           2074     110.88
## 14469           2074     134.67
## 14470           2072      50.01
## 14471           1987     623.52
## 14472           1980       0.00
## 14473           2023     332.64
## 14474           2045    2545.69
## 14475           2051      71.59
## 14476           2065      87.68
## 14477           2065     236.32
## 14478           2065      93.82
## 14479           2058      30.00
## 14480           2058      98.97
## 14481           2068     271.00
## 14482           2071       0.00
## 14483           2072     102.43
## 14484           3359      51.50
## 14485           2071     205.91
## 14486           2071       0.00
## 14487           2074      50.01
## 14488           2074       0.00
## 14489           2073   12191.37
## 14490           2075     332.15
## 14491           1867     696.37
## 14492           2061      96.00
## 14493           2060     186.58
## 14494           2060     446.63
## 14495           2060     962.68
## 14496           2184      90.10
## 14497           2061     124.80
## 14498           2058     121.61
## 14499           2058     111.74
## 14500           2043    1995.00
## 14501           2831     150.39
## 14502           2016     455.34
## 14503           2073     166.02
## 14504           2339   12802.68
## 14505           2071      25.00
## 14506           2072     121.98
## 14507           2532     543.65
## 14508           2074    4957.28
## 14509           2074     365.02
## 14510           2039     185.51
## 14511           2342    2664.30
## 14512           2068    1090.07
## 14513           2073      91.68
## 14514           2074       0.00
## 14515           2073   13640.65
## 14516           2073     964.73
## 14517           2394       0.00
## 14518           2072       0.00
## 14519           2072       9.95
## 14520           2072      76.86
## 14521           2072      20.39
## 14522           2072       8.91
## 14523           2071       0.00
## 14524           2071       0.00
## 14525           1506   19427.21
## 14526           1933    1861.21
## 14527           2067     125.60
## 14528           2068     642.58
## 14529           2068      12.47
## 14530           2060     167.22
## 14531           2065     122.26
## 14532           2058     274.94
## 14533           2058       0.00
## 14534           2057    8924.95
## 14535           2054     158.98
## 14536           2052    1844.26
## 14537           2051      90.83
## 14538           2053      78.00
## 14539           2040       0.00
## 14540           2015      66.68
## 14541           2507     381.61
## 14542           2715     674.64
## 14543           2071     513.54
## 14544           2071    4386.86
## 14545           2071   62317.78
## 14546           2072     121.99
## 14547           2072      60.54
## 14548           2073     374.51
## 14549           2032       0.00
## 14550           2040     145.84
## 14551           2046     406.97
## 14552           2632     389.22
## 14553           2053     192.04
## 14554           2053     363.55
## 14555           2053     239.05
## 14556           2092    4691.44
## 14557           2053      97.49
## 14558           2989   39947.94
## 14559           2058      79.25
## 14560           2058     214.94
## 14561           2065      86.64
## 14562           2065     277.37
## 14563           2210     301.50
## 14564           2061     163.42
## 14565           2067       0.00
## 14566           2067    3532.09
## 14567           2622     106.40
## 14568           2071       0.00
## 14569           2750   10199.78
## 14570           2071       0.00
## 14571           1870     848.10
## 14572           1982     162.76
## 14573           2066     198.66
## 14574           2067     383.71
## 14575           2067      55.00
## 14576           2068     361.62
## 14577           2068     183.16
## 14578           2058    1920.55
## 14579           2059       0.00
## 14580           2058      57.99
## 14581           2058      38.37
## 14582           2058     106.05
## 14583           2058      45.00
## 14584           2561       0.00
## 14585           2050     246.65
## 14586           2045    1054.44
## 14587           2018    1248.44
## 14588           2071      11.45
## 14589           2071     274.15
## 14590           1961     990.07
## 14591           1186     371.52
## 14592           2011    1205.70
## 14593           2152   39878.81
## 14594           2043    7711.20
## 14595           2040     193.03
## 14596           2050    1107.02
## 14597           2046      59.28
## 14598           2046       0.00
## 14599           2058      86.64
## 14600           2058      59.70
## 14601           2880     110.63
## 14602           2065     103.59
## 14603           2065       0.00
## 14604           2068    1690.30
## 14605           2068     126.50
## 14606           2068      12.39
## 14607           2067     124.64
## 14608           2101     153.14
## 14609           2066       0.00
## 14610           2067       0.00
## 14611           2068      11.45
## 14612           2065    4641.05
## 14613           2066     145.74
## 14614           2061     169.49
## 14615           2064   20922.65
## 14616           2058     227.00
## 14617           2058       0.00
## 14618           2061     218.28
## 14619           2058     731.43
## 14620           2057      67.43
## 14621           2053     340.44
## 14622           2052       0.00
## 14623           2046     754.10
## 14624           2039     123.58
## 14625           1974     150.84
## 14626           2052     243.35
## 14627           2057     117.51
## 14628           2057     178.45
## 14629           3409     311.87
## 14630           2068       0.00
## 14631           2067      78.00
## 14632           1955     692.36
## 14633           2004    1241.21
## 14634           2067     238.66
## 14635           2067      72.21
## 14636           2068       0.00
## 14637           2068       0.00
## 14638           2058     583.54
## 14639           2065     118.42
## 14640           2037       0.00
## 14641           1798     272.93
## 14642           1940     250.75
## 14643           1619       0.00
## 14644           2037      88.29
## 14645           2038    2272.16
## 14646           2064     125.16
## 14647           2822       0.00
## 14648           2065     387.07
## 14649           2065     146.95
## 14650           2065     152.27
## 14651           2065       0.00
## 14652           2065     842.66
## 14653           2065     276.71
## 14654           2061     174.39
## 14655           2061      84.25
## 14656           2137       0.00
## 14657           2058      88.38
## 14658           3053      77.17
## 14659           2058     311.92
## 14660           3052     251.53
## 14661           2046     210.55
## 14662           2298     643.57
## 14663           2045      27.00
## 14664           1822       0.00
## 14665           1963       0.00
## 14666           2043     874.28
## 14667           2763       5.76
## 14668           2842     189.61
## 14669           2066     177.41
## 14670           2686     196.02
## 14671           2058    1008.69
## 14672           2052     967.57
## 14673           2053      86.22
## 14674           2053      47.07
## 14675           2060    1500.74
## 14676           2058     143.66
## 14677           2058     113.08
## 14678           2058       0.00
## 14679           2065     250.75
## 14680           2064       0.00
## 14681           2065       0.00
## 14682           2890     764.41
## 14683           2038       0.00
## 14684           2032      85.50
## 14685           1976    2669.42
## 14686           1920  136901.87
## 14687           1925     387.53
## 14688           1780      86.66
## 14689           2005     127.21
## 14690           2005     114.84
## 14691           1988   16181.52
## 14692           1980     141.68
## 14693           2025     308.00
## 14694           2061   18522.30
## 14695           2061      12.47
## 14696           2064      21.45
## 14697           2064       0.00
## 14698           2634       0.00
## 14699           2059      32.72
## 14700           3226      19.59
## 14701           2053     175.66
## 14702           2050       0.00
## 14703           2058     196.43
## 14704           2634     112.00
## 14705           2057     695.82
## 14706           2047    1069.29
## 14707           2040       0.00
## 14708           2040     416.74
## 14709           1667    1052.48
## 14710           1689      96.41
## 14711           1709      80.51
## 14712           2840      83.70
## 14713           2003     143.87
## 14714           2040      40.22
## 14715           2040       0.00
## 14716           2043     665.32
## 14717           2585     821.51
## 14718           2047       0.00
## 14719           2046     232.26
## 14720           2057       0.00
## 14721           3091     165.07
## 14722           2054     579.37
## 14723           2053     314.08
## 14724           2059       0.00
## 14725           2059     198.24
## 14726           2058     428.79
## 14727           2058     914.76
## 14728           2064     519.40
## 14729           2038       0.00
## 14730           1919  127691.65
## 14731           2009   72384.13
## 14732           2038     168.58
## 14733           2025     137.10
## 14734           2023       0.00
## 14735           2029      66.68
## 14736           2019       0.00
## 14737           2061       0.00
## 14738           2061       0.00
## 14739           2058     176.27
## 14740           2058     245.59
## 14741           2058     188.76
## 14742           2060      69.26
## 14743           2060       0.00
## 14744           2053     111.75
## 14745           2050       0.00
## 14746           2054     274.44
## 14747           2057     206.26
## 14748           2058     384.84
## 14749           2046    1399.68
## 14750           2046     145.74
## 14751           2046     601.82
## 14752           2047     904.33
## 14753           2043     201.63
## 14754           2040     238.00
## 14755           2040    3516.22
## 14756           2046     145.99
## 14757           2050     128.18
## 14758           2057     389.83
## 14759           2060      29.13
## 14760           2061     311.50
## 14761           2060     540.10
## 14762           3299     377.86
## 14763           3211     163.51
## 14764           2054    8013.23
## 14765           2884     297.42
## 14766           2057      96.69
## 14767           2101     738.35
## 14768           1875       0.00
## 14769           1998       0.00
## 14770           2046     197.34
## 14771           2046     542.40
## 14772           2046     102.89
## 14773           2047     214.56
## 14774           2047     105.68
## 14775           2047     127.25
## 14776           2057    5466.00
## 14777           2050       0.00
## 14778           2053    1212.40
## 14779           2054       0.00
## 14780           2058       0.00
## 14781           2060    3522.85
## 14782           2038      63.16
## 14783           1812      42.24
## 14784           1599   83615.50
## 14785           1968    2509.51
## 14786           2038     131.38
## 14787           2038       0.00
## 14788           2015    4654.88
## 14789           2015     128.24
## 14790           3306      56.89
## 14791           2024     154.74
## 14792           2059      81.85
## 14793           2060     114.90
## 14794           2058       0.00
## 14795           2054     576.56
## 14796           2057     580.47
## 14797           3601    6904.75
## 14798           2054     879.84
## 14799           2054     214.98
## 14800           2057      86.64
## 14801           2057     249.59
## 14802           2050   37416.18
## 14803           2046     852.13
## 14804           2044   42412.72
## 14805           2043     583.11
## 14806           2040     422.03
## 14807           2040     526.99
## 14808           1646      75.44
## 14809           2611      80.38
## 14810           2039     639.15
## 14811           2040     427.88
## 14812           2043       0.00
## 14813           2044     168.94
## 14814           2046     500.74
## 14815           2050      66.68
## 14816           2047      47.70
## 14817           2046     286.12
## 14818           2057     105.86
## 14819           2057     151.70
## 14820           2057      88.37
## 14821           2053     166.55
## 14822           2058     117.37
## 14823           2025     120.00
## 14824           2032     350.63
## 14825           2032       0.00
## 14826           2036     464.97
## 14827           2016       0.00
## 14828           2038     300.86
## 14829           1702      72.00
## 14830           2362     230.15
## 14831           1771     806.69
## 14832           2038     240.45
## 14833           2038     152.85
## 14834           2773     356.49
## 14835           2281      75.24
## 14836           2022     414.20
## 14837           2870     180.00
## 14838           2235       0.00
## 14839           2011       0.00
## 14840           2053      13.69
## 14841           2053     170.91
## 14842           2052       0.00
## 14843           2057     153.53
## 14844           2047    3203.01
## 14845           3174   20401.74
## 14846           2046     345.57
## 14847           2046     125.32
## 14848           2043       0.00
## 14849           2043       0.00
## 14850           2538     285.94
## 14851           2039     208.73
## 14852           1851     225.86
## 14853           3265      85.53
## 14854           1793     881.88
## 14855           2192    4337.49
## 14856           2653     357.20
## 14857           2046     897.13
## 14858           2730    4932.31
## 14859           2046      91.77
## 14860           2054     206.40
## 14861           3229    2233.25
## 14862           2054       0.00
## 14863           2522     308.30
## 14864           3340      65.00
## 14865           2407      27.08
## 14866           2011     118.54
## 14867           2025      33.38
## 14868           2032     166.80
## 14869           2031    2967.72
## 14870           2030       0.00
## 14871           2022      95.37
## 14872           2038     211.17
## 14873           2038     351.64
## 14874           2038      97.12
## 14875           2051       0.00
## 14876           2053      68.98
## 14877           2052     189.81
## 14878           2054     336.42
## 14879           2043       0.00
## 14880           2043      78.74
## 14881           2043      71.56
## 14882           2053       0.00
## 14883           2053    1169.09
## 14884           2052      50.88
## 14885           2037     701.74
## 14886           2038     111.30
## 14887           2089     215.73
## 14888           1961       0.00
## 14889           1959     103.14
## 14890           2439     788.56
## 14891           1905  108734.82
## 14892           2018    7770.38
## 14893           2017     188.03
## 14894           2029      66.68
## 14895           2024      33.85
## 14896           2024     473.97
## 14897           2038     146.18
## 14898           2240       0.00
## 14899           2052     232.76
## 14900           2050     335.65
## 14901           2050    1042.67
## 14902           2050      46.23
## 14903           2052      76.00
## 14904           2052       0.00
## 14905           2050   39082.80
## 14906           2052    6327.40
## 14907           2053       0.00
## 14908           2045     551.61
## 14909           2040     108.75
## 14910           2050    1637.94
## 14911           2040     414.25
## 14912           2040     263.49
## 14913           1844     260.43
## 14914           1962      72.08
## 14915           2039      19.54
## 14916           2050    2230.50
## 14917           2050       0.00
## 14918           2050    1512.92
## 14919           2046    1213.48
## 14920           2046     114.65
## 14921           2046     217.30
## 14922           2040     218.90
## 14923           2043     193.77
## 14924           2045       0.00
## 14925           1661       0.00
## 14926           2050     256.70
## 14927           2050     259.08
## 14928           2050       0.00
## 14929           2051     269.95
## 14930           2038      51.16
## 14931           2032       0.00
## 14932           2023      68.23
## 14933           1400       0.00
## 14934           2004      95.00
## 14935           2005     128.97
## 14936           2017     601.40
## 14937           2016     232.84
## 14938           2066    1040.52
## 14939           2413   13633.12
## 14940           2038    1357.70
## 14941           2038     210.98
## 14942           2050     836.87
## 14943           2050       0.00
## 14944           2050      47.53
## 14945           2050     216.75
## 14946           2045   39431.10
## 14947           2040      61.35
## 14948           2926     332.67
## 14949           2046     996.32
## 14950           2046    1274.55
## 14951           2046     190.95
## 14952           2046     280.37
## 14953           2050     253.33
## 14954           2050     427.51
## 14955           2050       9.95
## 14956           3106     139.93
## 14957           2050      21.07
## 14958           2050     815.37
## 14959           2047   35969.32
## 14960           2039     207.52
## 14961           1962     184.90
## 14962           2317    4028.37
## 14963           2009     123.15
## 14964           2009      88.20
## 14965           1632     624.08
## 14966           2354     464.69
## 14967           2039     217.65
## 14968           2039    2064.21
## 14969           2047   33618.35
## 14970           2047     791.12
## 14971           2046      11.69
## 14972           2046    8681.59
## 14973           2040      61.35
## 14974           2044     951.55
## 14975           2043       0.00
## 14976           2045       0.00
## 14977           2045     167.67
## 14978           1661     102.36
## 14979           1370      46.04
## 14980           2050     323.46
## 14981           3029     795.86
## 14982           2038     131.62
## 14983           2030       0.00
## 14984           2029     186.68
## 14985           2017       0.00
## 14986           2017       0.00
## 14987           2011      68.76
## 14988           1802       0.00
## 14989           2004       0.00
## 14990           2023      56.68
## 14991           2017    1305.36
## 14992           2030     163.45
## 14993           2029     258.29
## 14994           2029     526.24
## 14995           2037   11166.08
## 14996           2037   39637.14
## 14997           2038     148.06
## 14998           2038     248.74
## 14999           2038      71.27
## 15000           2038       0.00
## 15001           2038       0.00
## 15002           2046     654.51
## 15003           2040     553.56
## 15004           2043       0.00
## 15005           2046       0.00
## 15006           2046      87.41
## 15007           2046     275.48
## 15008           2047      97.46
## 15009           2047     259.00
## 15010           1938    1033.30
## 15011           2823      51.50
## 15012           2045    3698.94
## 15013           2045     434.07
## 15014           2038     261.25
## 15015           2008       0.00
## 15016           2038     121.66
## 15017           2016     149.05
## 15018           2045      79.95
## 15019           2043      30.00
## 15020           2039     627.51
## 15021           2011      37.43
## 15022           2010    2719.04
## 15023           1795      78.17
## 15024           2959     342.21
## 15025           2005     289.40
## 15026           1903     458.00
## 15027           2043      10.00
## 15028           2043       0.00
## 15029           2040    2659.10
## 15030           2821     741.95
## 15031           2045     161.78
## 15032           2045     117.92
## 15033           2035     271.63
## 15034           2038   24476.36
## 15035           1977     162.49
## 15036           2367       0.00
## 15037           1165     402.63
## 15038           2038     268.18
## 15039           2032       0.00
## 15040           2031     115.21
## 15041           2025     286.89
## 15042           2015      51.16
## 15043           2016      62.01
## 15044           2017     141.36
## 15045           2017     112.67
## 15046           2044      12.74
## 15047           2043      20.11
## 15048           3395     374.35
## 15049           1821     216.83
## 15050           2005      25.49
## 15051           2004     134.37
## 15052           2005       0.00
## 15053           1980       0.00
## 15054           2040       0.00
## 15055           2017     107.79
## 15056           2017      61.35
## 15057           2017      62.24
## 15058           2017     142.95
## 15059           2016     139.67
## 15060           2017     202.41
## 15061           2655     175.61
## 15062           2038       0.00
## 15063           2038     149.83
## 15064           1945      94.91
## 15065           2828     177.68
## 15066           2001   38510.62
## 15067           2822     319.69
## 15068           2032       0.00
## 15069           2037      17.47
## 15070           2478     265.63
## 15071           2023     180.44
## 15072           2017     170.81
## 15073           2018     326.49
## 15074           2816     605.92
## 15075           2018       0.00
## 15076           2040     698.22
## 15077           2177     145.20
## 15078           2039       0.00
## 15079           2040     311.35
## 15080           2039       0.00
## 15081           2039     605.83
## 15082           1679       0.00
## 15083           1844       0.00
## 15084           1934     193.03
## 15085           2039      27.83
## 15086           3083     197.00
## 15087           2017     213.75
## 15088           2017     124.99
## 15089           2015      82.77
## 15090           2015      36.21
## 15091           2036     178.79
## 15092           2032     260.87
## 15093           2031       0.00
## 15094           2029     293.49
## 15095           2038       0.00
## 15096           2038     120.99
## 15097           2038       0.00
## 15098           2038   22085.76
## 15099           1834     382.50
## 15100           2017     429.30
## 15101           2017     163.00
## 15102           2023       0.00
## 15103           2631       0.00
## 15104           1837     199.40
## 15105           1078   26081.25
## 15106           2039     154.26
## 15107           2017      56.68
## 15108           2036     187.37
## 15109           2011     174.00
## 15110           2003    2042.36
## 15111           2918    1712.38
## 15112           1997     167.72
## 15113           1984     351.53
## 15114           1910     138.01
## 15115           2037     450.66
## 15116           2070     206.10
## 15117           2038      16.51
## 15118           2017      23.70
## 15119           2017       0.00
## 15120           2015       0.00
## 15121           2019      72.65
## 15122           2019     156.68
## 15123           2017     181.24
## 15124           2032    8070.32
## 15125           2036   28049.61
## 15126           2023     363.87
## 15127           2025     190.87
## 15128           2012      35.98
## 15129           2039       0.00
## 15130           3130       0.00
## 15131           1976     131.50
## 15132           1863       0.00
## 15133           1857     107.97
## 15134           1877     224.37
## 15135           3018     177.89
## 15136           1994     313.74
## 15137           2025     136.49
## 15138           2024     124.24
## 15139           2036     159.20
## 15140           2036     495.09
## 15141           2036   26399.59
## 15142           2029    2058.19
## 15143           2030     481.46
## 15144           2030     149.04
## 15145           2017     106.28
## 15146           2017     131.63
## 15147           2017     286.13
## 15148           2038    1816.94
## 15149             64      56.00
## 15150           1340       0.00
## 15151           1883       0.00
## 15152           1863     337.50
## 15153           1863      67.43
## 15154           1589    1149.52
## 15155           1980  112268.23
## 15156           2017    1114.78
## 15157           2017       0.00
## 15158           2017       0.00
## 15159           2015      61.35
## 15160           2018   11870.58
## 15161           2017     165.06
## 15162           2017     143.50
## 15163           2018      36.21
## 15164           2018     180.37
## 15165           2018   43664.25
## 15166           2030      45.44
## 15167           2030     135.00
## 15168           2036      99.33
## 15169           3405       0.00
## 15170           2032       0.00
## 15171           1932     450.51
## 15172           1571       0.00
## 15173           2011    1247.50
## 15174           1766       0.00
## 15175           2004     239.48
## 15176           2032       0.00
## 15177           2687       0.00
## 15178           2981    3372.09
## 15179           2035       0.00
## 15180           2031     178.31
## 15181           2030     564.55
## 15182           2029      74.75
## 15183           2029     135.44
## 15184           2024      34.76
## 15185           2025     256.18
## 15186           2026      66.92
## 15187           2017   38477.40
## 15188           2713    2239.74
## 15189           2011     801.22
## 15190           2011     258.63
## 15191           3043     262.09
## 15192           2005      81.14
## 15193           1988     382.09
## 15194           1996       0.00
## 15195           2017    1155.44
## 15196           2531       0.00
## 15197           2017    4945.93
## 15198           2017     108.16
## 15199           2017     364.71
## 15200           2019     726.48
## 15201           2019     110.89
## 15202           2023     165.27
## 15203           2112    2458.38
## 15204           2032     224.02
## 15205           2947       0.00
## 15206           2019   19357.88
## 15207           2015     140.00
## 15208           2012     179.92
## 15209           2029      23.88
## 15210           2025     392.94
## 15211           1941     437.32
## 15212           2023     134.87
## 15213           2026    6638.57
## 15214           2026    5238.14
## 15215           2030     364.40
## 15216           2402      91.20
## 15217           2016       0.00
## 15218           2017   25779.63
## 15219           1940      56.68
## 15220           1878     116.58
## 15221           2011     286.03
## 15222           2017     116.55
## 15223           3136      61.35
## 15224           2016     315.66
## 15225           2016      54.14
## 15226           2184   93342.50
## 15227           2030      28.42
## 15228           2030      80.45
## 15229           2030     850.87
## 15230           2306    8417.42
## 15231           2026    1530.49
## 15232           2025      66.50
## 15233           2024     102.73
## 15234           2012       0.00
## 15235           1844    8840.04
## 15236           2137     141.74
## 15237           1931     435.29
## 15238           1576      58.41
## 15239            841       0.00
## 15240           1948     100.00
## 15241           2011     106.28
## 15242           2163     101.21
## 15243           1998      98.79
## 15244           2720       0.00
## 15245           1994     719.30
## 15246           1991      12.00
## 15247           2005     208.58
## 15248           2005     382.25
## 15249           2005     202.49
## 15250           1980     568.43
## 15251           2025      73.83
## 15252           2025     223.77
## 15253           2026   25537.05
## 15254           2029       0.00
## 15255           2029    9917.58
## 15256           2029     103.14
## 15257           2029     179.00
## 15258           2012     294.57
## 15259           2012     122.75
## 15260           2016   13902.70
## 15261           2019     788.35
## 15262           2019     216.95
## 15263           1973     303.23
## 15264           1934    1713.95
## 15265           1925     462.55
## 15266           2005     797.47
## 15267           3028     164.33
## 15268           1997     303.36
## 15269           1995     253.35
## 15270           2019     718.63
## 15271           2014     287.79
## 15272           2015       0.00
## 15273           2029       0.00
## 15274           2026   12094.90
## 15275           2026      50.01
## 15276           2024     166.47
## 15277           2023   47946.19
## 15278           2509       0.00
## 15279           1956      32.74
## 15280           2010      56.40
## 15282           2009     271.84
## 15283           2009    5097.46
## 15284           1793     172.11
## 15285           1906     157.94
## 15286           2023       0.00
## 15287           2024     191.18
## 15288           2026     110.28
## 15289           2029       0.00
## 15290           2026      80.57
## 15291           2026       0.00
## 15292           2025     108.69
## 15293           2025     998.90
## 15294           2017     196.61
## 15295           2018     299.64
## 15296           2011       0.00
## 15297           1998     130.16
## 15298           2025     245.47
## 15299           2024     335.77
## 15300           2024      91.51
## 15301           1813     146.83
## 15302           1977       7.31
## 15303           1878     203.33
## 15304           3156     370.21
## 15305           3215     235.71
## 15306           2023     271.02
## 15307           2016     139.22
## 15308           1878     106.05
## 15309           1974    1558.49
## 15310           1977     791.97
## 15311           1967       0.00
## 15312           1949      43.49
## 15313           2370       0.00
## 15314           1934     653.12
## 15315           2011      36.60
## 15316           2484     150.12
## 15317           1751      39.11
## 15318           2005      12.09
## 15319           2032   18211.87
## 15320           1998       0.00
## 15321           1997     175.53
## 15322           2017     714.41
## 15323           3304     674.50
## 15324           2019     601.88
## 15325           2017   41486.54
## 15326           2024      36.21
## 15327           2024     206.13
## 15328           2024      88.10
## 15329           2022    1435.65
## 15330           1940     184.78
## 15331           1967      51.16
## 15332           2011       0.00
## 15333           1791     168.89
## 15334           2968     829.70
## 15335           2008      47.07
## 15336           2004     284.31
## 15337           2004      60.01
## 15338           2022     115.38
## 15339           2019    1535.55
## 15340           2016     362.20
## 15341           2011     155.75
## 15342           2011    1597.93
## 15343           2012       0.00
## 15344           2011     346.51
## 15345           2011      47.07
## 15346           1812     467.50
## 15347           1828       0.00
## 15348           1967     188.23
## 15349           1931       0.00
## 15350           2009     350.04
## 15351           1745     130.55
## 15352           2005     134.04
## 15353           2005       0.00
## 15354           1997     196.37
## 15355           1997    4476.62
## 15356           2002      91.08
## 15357           1994       0.00
## 15358           2011     160.44
## 15359           2019       0.00
## 15360           2019   11932.87
## 15361           2017   11306.42
## 15362           2018    1295.00
## 15363           2751       0.00
## 15364           1961     158.80
## 15365           1778   21250.00
## 15366           2001       0.00
## 15367           2302    4446.45
## 15368           2019      92.72
## 15369           2019    1032.22
## 15370           2019     412.25
## 15371           2855       0.00
## 15372           2011       0.00
## 15373           2012      79.50
## 15374           1456     570.00
## 15375           1966     297.92
## 15376           1497      67.30
## 15377           2010   66853.86
## 15378           1983     793.11
## 15379           1983     145.50
## 15380           1983     196.50
## 15381           1983     737.01
## 15382           1983    1667.10
## 15383           2001       0.00
## 15384           2002     239.34
## 15385           2001       0.00
## 15386           1990     909.74
## 15387           2005      86.22
## 15388           2005     129.98
## 15389           2004     188.70
## 15390           2012     754.17
## 15391           2019     200.60
## 15392           2019       0.00
## 15393           2018     896.30
## 15394           1849     179.14
## 15395           1855     391.05
## 15396           2008     610.13
## 15397           2003       0.00
## 15398           3276     365.16
## 15399           3281     246.56
## 15400           2016     753.23
## 15401           2016     684.60
## 15402           1323     148.35
## 15403           1465     267.12
## 15404           2003     271.01
## 15405           1988      51.21
## 15406           2005     143.13
## 15407           2003     632.18
## 15408           2004     109.88
## 15409           2157   29803.32
## 15410           2015     391.44
## 15411           2017       0.00
## 15412           1812    1325.00
## 15413           1967     264.69
## 15414           1967     214.98
## 15415           2010     175.00
## 15416           2010     152.74
## 15417           2010       0.00
## 15418           2010      50.74
## 15419           2009    8256.87
## 15420           2003      56.68
## 15421           2503      58.63
## 15422           2005      64.17
## 15423           2761    4353.78
## 15424           2005     495.91
## 15425           1990      82.77
## 15426           1994       0.00
## 15427           2001   76577.03
## 15428           2819     308.30
## 15429           2178      38.37
## 15430           1997       0.00
## 15431           1997     415.48
## 15432           1997     232.43
## 15433           1983       0.00
## 15434           1900     204.16
## 15435           2018     110.08
## 15436           2019     155.44
## 15437           2018     197.98
## 15438           2018      14.98
## 15439           2015     297.04
## 15440           2947     723.18
## 15441           2016     186.91
## 15442           2016    1494.60
## 15443           2017      43.49
## 15444           2012       0.00
## 15445           2011     178.75
## 15446           1975      15.19
## 15447           2291   19671.23
## 15448           1493     130.40
## 15449           2010       0.00
## 15450           1995      91.00
## 15451           2001      47.00
## 15452           2001     140.81
## 15453           2002    3745.49
## 15454           2001      50.01
## 15455           2008     145.66
## 15456           2005     498.08
## 15457           2786    1500.64
## 15458           2005      27.92
## 15459           3322     139.24
## 15460           2005     247.45
## 15461           2004     833.10
## 15462           2011      61.35
## 15463           2012       0.00
## 15464           2012     173.49
## 15465           2015    1846.01
## 15466           2017      83.00
## 15467           1688     293.03
## 15468           1455    1295.45
## 15469           1857       0.00
## 15470           1969     332.28
## 15471           1959     801.93
## 15472           1918    1997.50
## 15473           2635     460.52
## 15476           2009      87.46
## 15477           2004       0.00
## 15478           2003     209.63
## 15479           2008     138.04
## 15480           2001     160.00
## 15481           1995     532.60
## 15482           1994     249.30
## 15483           1983      52.30
## 15484           2012       0.00
## 15485           2011  177880.73
## 15486           2012     166.12
## 15487           2011      61.88
## 15488           1956     423.25
## 15489           1969       0.00
## 15490           1973      18.73
## 15491           1976    1496.57
## 15492           2009     230.76
## 15493           1402     252.47
## 15494           1980       0.00
## 15495           1994     364.20
## 15496           1991    1485.74
## 15497           3069      19.62
## 15498           3376     391.02
## 15499           2005       9.50
## 15500           2005     318.02
## 15501           2005      11.45
## 15502           2004    2909.17
## 15503           2004    1386.06
## 15504           2004     181.34
## 15505           2005      27.92
## 15506           2005       0.00
## 15507           2012       0.00
## 15508           2248     167.01
## 15509           2015     191.44
## 15510           3190      76.68
## 15511           1809     398.16
## 15512           1976     123.25
## 15513           1973       0.00
## 15514           1941    1552.40
## 15515           2010    1402.60
## 15516           2010    6249.84
## 15517           2010       0.00
## 15518           2010     387.30
## 15519           2791     134.18
## 15520           3072     328.49
## 15521           2004    7380.12
## 15522           2005     564.38
## 15523           2005     343.10
## 15524           1991       0.00
## 15525           1994       0.00
## 15527           1997     116.09
## 15528           1998      27.13
## 15529           1997      27.13
## 15530           2001       0.00
## 15531           2001    1214.88
## 15532           1980       0.00
## 15533           1983    2293.78
## 15534           2012    2218.26
## 15535           2607    2917.17
## 15536           1934       0.00
## 15537           2009      13.09
## 15538           2010     132.90
## 15539           1991     322.77
## 15540           1987       0.00
## 15541           2454  163771.62
## 15542           2011     227.04
## 15543           2011     482.44
## 15544           1928     244.77
## 15545           1962       0.00
## 15546           1949     238.39
## 15547           1862      85.94
## 15548           2005    1693.13
## 15549           2003       0.00
## 15550           2003   15357.12
## 15551           2004     606.04
## 15552           2004     111.04
## 15553           2008    4292.46
## 15554           2517      86.22
## 15555           1980    1143.10
## 15556           2011     334.36
## 15557           1813     300.99
## 15558           2336       0.00
## 15559           1974      24.67
## 15560           1977     232.77
## 15561           1918     511.38
## 15562           1918     239.87
## 15563           1991       0.00
## 15564           1990    1358.78
## 15565           2001    1399.45
## 15566           2001     228.98
## 15567           2003    5859.57
## 15568           1997     102.21
## 15569           1997       0.00
## 15570           1996       0.00
## 15571           2009     147.03
## 15572           2389     103.59
## 15573           2003     489.02
## 15575           2005     261.48
## 15576           2008       0.00
## 15577           2008      71.15
## 15578           2008      31.64
## 15579           1281     358.47
## 15580           1812     456.68
## 15581           1841      77.11
## 15582           3201     240.69
## 15583           1941      13.71
## 15584           2453  181759.97
## 15585           1959   82958.34
## 15586           1968    3000.88
## 15587           2009      84.87
## 15588           2009       0.00
## 15589           3158    2345.48
## 15590           2008      80.22
## 15591           2005     388.96
## 15592           2003     821.61
## 15593           2016      75.45
## 15594           2008     164.93
## 15595           2008     141.62
## 15596           2003      60.93
## 15597           2001       0.00
## 15598           2001     191.04
## 15599           1990     404.27
## 15600           1994      73.58
## 15601           1994      38.51
## 15602           1989   12632.53
## 15603           1890      36.21
## 15604           1968    2160.52
## 15605           1918       0.00
## 15606           1988     169.21
## 15607           1990     157.79
## 15608           1994       0.00
## 15609           1991       0.00
## 15610           1994   22050.33
## 15611           2001     225.98
## 15612           2450     127.77
## 15613           2003    2925.45
## 15614           3373     113.02
## 15615           1996     246.92
## 15616           1996     317.60
## 15617           2008     197.46
## 15618           2008   13658.53
## 15619           2977       0.00
## 15620           2004     241.75
## 15621           2005    3442.81
## 15622           2005       0.00
## 15623           2005     208.16
## 15624           1983    6117.07
## 15625           1981     553.94
## 15626           1801   14095.05
## 15627           1703     389.30
## 15628           1968    1131.26
## 15629           1963     408.77
## 15630           1949     460.33
## 15631           2005     177.75
## 15632           2005       0.00
## 15633           2008    8545.00
## 15634           2005     271.64
## 15635           2003       0.00
## 15636           3185      18.00
## 15637           2003     593.75
## 15638           2004    1864.61
## 15639           1997     874.01
## 15640           2001   12137.39
## 15641           2811      66.45
## 15642           2001       0.00
## 15643           2098     187.70
## 15644           1994     145.66
## 15645           1991     669.23
## 15646           1988     896.20
## 15647           1955    6961.89
## 15648           1977     192.89
## 15649           1777     182.97
## 15650           1990       0.00
## 15651           1990     296.85
## 15652           2887       0.00
## 15653           2890     384.17
## 15654           1991     211.55
## 15655           2001      41.00
## 15656           2002     100.01
## 15657           2003      24.97
## 15658           2002     136.36
## 15659           1997     346.86
## 15660           2293   21417.41
## 15661           1995     414.38
## 15662           2004     324.55
## 15663           2003       0.00
## 15664           1980      87.37
## 15665            925      20.00
## 15666           1980     695.85
## 15667           3323     379.56
## 15668           2003   25773.33
## 15669           2934      26.57
## 15670           2002       0.00
## 15671           1991      18.00
## 15672           1954     379.78
## 15673           1959       0.00
## 15674           3064     173.89
## 15675           1970      36.21
## 15676           1967     173.89
## 15677           1967       0.00
## 15678           1946      86.22
## 15679           1945     171.20
## 15680           2350       0.00
## 15681           1990   14094.50
## 15682           2001       0.00
## 15683           2003    2511.37
## 15684           2464     150.71
## 15685           1995     418.65
## 15686           1982     392.55
## 15687           1973      60.00
## 15688           1962  180604.76
## 15689           1977    4926.96
## 15690           1997     133.65
## 15691           2446     156.54
## 15692           1997      98.73
## 15693           1997      87.94
## 15694           1998     100.00
## 15695           2001     252.47
## 15696           2001     651.34
## 15697           2725    2717.69
## 15698           2003     274.55
## 15699           2002     103.56
## 15700           1990      91.97
## 15701           1991     146.78
## 15702           1990       0.00
## 15703           2852    1840.22
## 15704           3087       0.00
## 15705           2003    7769.71
## 15706           2367     283.43
## 15707           1732    8035.11
## 15708           1963     338.93
## 15709           1963     271.53
## 15710           1954       0.00
## 15711           1932  292079.69
## 15712           1878    3521.66
## 15713           1878     236.09
## 15714           2003    1150.13
## 15715           1994      96.51
## 15716           1991      51.16
## 15717           1991       0.00
## 15718           1990       0.00
## 15719           1990       0.00
## 15720           1987       0.00
## 15721           1987     283.26
## 15722           2002     176.32
## 15723           2355     528.81
## 15724           1997   26414.95
## 15725           1995     351.03
## 15726           1995     231.24
## 15727           1995      65.00
## 15728           1983      92.27
## 15729           1245      60.72
## 15730           1919   17235.41
## 15731           1949       0.00
## 15732           1949     730.96
## 15733           2925      84.81
## 15734           3465       0.00
## 15735           2035    5080.00
## 15736           2415    1906.73
## 15737           3338     217.57
## 15738           1981    1636.62
## 15739           1994       0.00
## 15740           1995     332.70
## 15741           1996     147.43
## 15742           1997     165.66
## 15743           1997     251.75
## 15744           2001      33.54
## 15745           2001   14573.95
## 15746           2002     196.71
## 15747           2638     114.84
## 15748           2107     330.48
## 15749           1994     339.72
## 15750           1994       0.00
## 15751           3210     147.84
## 15752           1963     188.69
## 15753           1991     452.34
## 15754           1994       0.00
## 15755           2721  124023.46
## 15756           1990     154.65
## 15757           1990      46.00
## 15758           3209       0.00
## 15759           2002     215.25
## 15760           1998      79.17
## 15761           1998      91.13
## 15762           1998     852.67
## 15763           1997       0.00
## 15764           1996     146.91
## 15765           1996     522.30
## 15766           1994     574.24
## 15767           2992     189.54
## 15768           1854     116.52
## 15769           1967     149.84
## 15770           1967     177.55
## 15771           1976     955.33
## 15772           2905       0.00
## 15773           1764      47.07
## 15774           2926     553.18
## 15775           1998      62.01
## 15776           1998      87.15
## 15777           1998     339.00
## 15778           1998     509.47
## 15779           1998   39174.61
## 15780           1990   15697.60
## 15781           1977    1941.47
## 15782           1878     183.80
## 15783           1990    1806.47
## 15784           1994     108.58
## 15785           1989     365.28
## 15786           1988       0.00
## 15787           1987     703.29
## 15788           2760     244.35
## 15789           1997      20.46
## 15790           1981      41.40
## 15791           1967     290.21
## 15792           1967     225.00
## 15793           1981    5917.17
## 15794           1997     151.87
## 15795           1997      79.55
## 15796           1996     241.55
## 15797           1994     687.61
## 15798           1716      94.79
## 15799           1967    4795.50
## 15800           1967     102.11
## 15801           3176     483.87
## 15802           1966     284.81
## 15803           1967       0.00
## 15804           2928     321.25
## 15805           2422     437.22
## 15806           1994    5170.85
## 15807           1994    2165.81
## 15808           1994    5753.69
## 15809           1991       0.00
## 15810           1990     222.32
## 15811           2565     130.65
## 15812           1990      56.68
## 15813           2200      27.94
## 15814           1991     461.17
## 15815           2982     124.86
## 15816           1990       0.00
## 15817           1990     617.94
## 15818           1996      36.21
## 15819           1996   14553.57
## 15820           1994      36.21
## 15821           1996    2097.94
## 15822           1998     269.34
## 15823           1998     198.00
## 15824           1897       0.00
## 15825           1966     427.50
## 15826           2821       0.00
## 15827           1967     139.52
## 15828           1967     551.98
## 15829           1967    2011.79
## 15830           1974     896.62
## 15831           1954     668.17
## 15832           1954     166.33
## 15833           1976     421.90
## 15834           1765     382.11
## 15835           1990     820.97
## 15836           1987      43.43
## 15837           1990     111.31
## 15838           1990    4252.39
## 15839           1994     915.20
## 15840           1976    2875.67
## 15841           1976      80.38
## 15842           1973     506.69
## 15843           1967       0.00
## 15844           1967      99.88
## 15845           2868   45466.81
## 15846           1991       0.00
## 15847           1991      85.98
## 15848           1990    2333.19
## 15849           1990       0.00
## 15850           1991       0.00
## 15851           1987    1300.92
## 15852           1988       0.00
## 15853           1988     233.73
## 15854           3073    4248.98
## 15855           1995     230.75
## 15856           1982       0.00
## 15857           3230     141.03
## 15858           1823      33.49
## 15859           2864       0.00
## 15860           1970      81.85
## 15861           1975     247.49
## 15862           1977    2128.25
## 15863           1939     174.80
## 15864           1987       0.00
## 15865           1984      50.01
## 15866           1990      77.49
## 15867           1989     170.00
## 15868           1991      38.49
## 15869           1990     770.74
## 15870           1990     586.49
## 15871           1910     305.11
## 15872           1931     193.31
## 15873           1976     706.50
## 15874           1977      79.33
## 15875           1970     193.42
## 15876           2622       0.00
## 15877           1974     193.26
## 15878           2600  240579.66
## 15879           1949     174.66
## 15880           1882     743.33
## 15881           1900       0.00
## 15882           1990     273.09
## 15883           3276       0.00
## 15884           1990     143.69
## 15885           1988      27.94
## 15886           1983       0.00
## 15887           1980   12733.68
## 15888           1980     174.48
## 15889           1980     413.87
## 15890           1959     187.37
## 15891           1967     716.60
## 15892           1974     545.98
## 15893           1941    1004.48
## 15894           1990     350.38
## 15895           2184       0.00
## 15896           1988     337.25
## 15897           3092     288.10
## 15898           1980     499.53
## 15899           1942     194.51
## 15900           2839     286.10
## 15901           1976      33.31
## 15902           1975       8.25
## 15903           1976      71.92
## 15904           1976     105.32
## 15905           1967     727.43
## 15906           2990     486.96
## 15907           1967      93.32
## 15908           1967     431.26
## 15909           1959     358.64
## 15910           1955       0.00
## 15911           1962    1613.30
## 15912           1961     157.21
## 15913           1875     833.90
## 15914           2278     158.84
## 15915           2058      31.60
## 15916           1984       0.00
## 15917           1989     227.93
## 15918           1990   11515.63
## 15919           2368     171.00
## 15920           1987    1058.56
## 15921           1990     109.60
## 15922           1967     461.56
## 15923           1967     206.05
## 15924           1973    2134.01
## 15925           1948       0.00
## 15926           2892     245.36
## 15927           1941   27902.14
## 15928           1988      68.98
## 15929           1987     967.67
## 15930           3246      53.94
## 15931           1984      95.44
## 15932           3147   70349.18
## 15933           1982       0.00
## 15934           1981     371.27
## 15935           1850       0.00
## 15936           1946      48.00
## 15937           1933       0.00
## 15938           1926   16486.89
## 15939           1975     551.02
## 15940           1976     140.38
## 15941           1977     245.42
## 15942           1977    4790.07
## 15943           1954  130853.63
## 15944           1954    3726.47
## 15945           1973     301.62
## 15946           1973     203.43
## 15947           1969   16239.49
## 15948           1969     264.77
## 15949           3096       0.00
## 15950           1967     231.58
## 15951           2799       0.00
## 15952           1967       0.00
## 15953           1966      56.68
## 15954           1966    1848.80
## 15955           1961       0.00
## 15956           1962      56.32
## 15957           1981   51609.70
## 15958           1982      10.00
## 15959           1982     168.84
## 15960           1984      94.75
## 15961           1983       0.00
## 15962           1988      81.85
## 15963           1987      25.69
## 15964           1988       0.00
## 15965           1984     220.42
## 15966           1984    1035.86
## 15967           2349   24920.47
## 15968           1961     629.62
## 15969           1962     131.68
## 15970           1966       0.00
## 15971           1966     268.71
## 15972           3157     344.25
## 15973           1970       0.00
## 15974           1970     221.83
## 15975           1954       0.00
## 15976           1975     144.94
## 15977           1053       0.00
## 15978           1987      30.51
## 15979           1982      20.11
## 15980           1984       0.00
## 15981           1982     116.36
## 15982           3290  228366.29
## 15983           1980     343.28
## 15984           1980      84.61
## 15985           1914      84.52
## 15986           1837    1525.67
## 15987           1976     129.27
## 15988           1954     241.29
## 15989           1954       0.00
## 15990           1959     388.33
## 15991           3096     324.14
## 15992           1822       0.00
## 15993           2573     379.76
## 15994           3300      27.16
## 15995           1976      92.81
## 15996           1917     112.83
## 15997           1981     293.04
## 15998           1942     343.57
## 15999           2759     214.06
## 16000           3243     314.41
## 16001           2759     133.70
## 16002           1977     413.14
## 16003           1967       0.00
## 16004           1967     251.93
## 16005           1982       0.00
## 16006           1903   34161.25
## 16007           2464    5510.92
## 16008           1967     287.41
## 16009           1968     362.08
## 16010           1962     214.81
## 16011           1954     797.47
## 16012           1949     528.26
## 16014           1976       0.00
## 16015           1918       0.00
## 16016           2767       0.00
## 16017           1935       0.00
## 16018           2294   12383.54
## 16019           1982    1585.89
## 16020           1981     181.58
## 16021           3038     393.98
## 16022           1704   23868.01
## 16023           1946       0.00
## 16024           2561       0.00
## 16025           1945   29182.11
## 16026           1977     131.51
## 16027           1973       0.00
## 16028           1973     558.01
## 16029           2617     131.29
## 16030           1981       0.00
## 16031           2211     646.55
## 16032           1981     289.11
## 16033           1981       0.00
## 16034           1980   14753.01
## 16035           1980      38.00
## 16036           1905     160.94
## 16037           1855      78.84
## 16038           1973       0.00
## 16039           1973     500.55
## 16040           1967       0.00
## 16041           1966  181152.47
## 16042           1966       0.00
## 16043           1961    1067.06
## 16044           1949     568.82
## 16045           1949   22343.44
## 16046           1954     197.50
## 16047           1977     653.51
## 16048           1977    4392.11
## 16049           1976      36.21
## 16050           1977       0.00
## 16051           1974     520.60
## 16052           1974     143.69
## 16053           2031     499.00
## 16054           1974     125.50
## 16055           1974    1246.74
## 16056           1975     358.59
## 16057           2968   31148.48
## 16058           1638   13529.09
## 16059           1890       0.00
## 16060           1981       0.00
## 16061           2822       0.00
## 16062           1977     365.21
## 16063           1977     134.96
## 16064           1976    2578.40
## 16065           1975    5405.62
## 16066           1977     928.85
## 16067           1949    4885.13
## 16068           1963    1337.65
## 16069           3128      57.29
## 16070           1970       0.00
## 16071           1945       0.00
## 16072           1947     709.67
## 16073           1877     217.65
## 16074           1879   22900.75
## 16075           1981      95.98
## 16076           1914     933.56
## 16077           1829     391.40
## 16078           1920    8602.49
## 16079           1919     183.14
## 16080           1932     354.23
## 16081           1941       0.00
## 16082           1970       0.00
## 16083           1970      37.26
## 16084           1973     217.34
## 16085           1963     564.23
## 16086           1959     172.97
## 16087           3099       0.00
## 16088           1954      19.54
## 16089           1976    1083.94
## 16090           1974     207.55
## 16091           3018       0.00
## 16092           3283     198.30
## 16093           1977     391.16
## 16094           1967   31296.65
## 16095           1970     507.76
## 16096           1942       0.00
## 16097           1907       0.00
## 16098           1976     173.62
## 16099           1974      90.83
## 16100           1974       0.00
## 16101           3058      51.16
## 16102           1604     148.14
## 16103           1715     130.36
## 16104           1975      94.15
## 16105           1975       0.00
## 16106           1975     243.46
## 16107           2077    8121.09
## 16108           1976     319.00
## 16109           1975     138.02
## 16110           1968    1454.64
## 16111           1970      21.49
## 16112           1970     189.06
## 16113           1969     110.51
## 16114           1970      72.40
## 16115           1967     127.50
## 16116           1962       0.00
## 16117           2443     138.96
## 16118           3462  123984.50
## 16119           1954    1182.34
## 16120           1948     675.72
## 16121           1577    4450.00
## 16122           3998   28787.45
## 16123           1927     309.75
## 16124           1887     205.00
## 16125           1606       0.00
## 16126           1168    2750.00
## 16127           1932       0.00
## 16128           1942       0.00
## 16129           1941       0.00
## 16130           1940     343.33
## 16131           1954       0.00
## 16132           1949    4190.14
## 16133           1961     102.34
## 16134           1961    1046.39
## 16135           1961     647.83
## 16136           2913     356.08
## 16137           1960   27973.89
## 16138           1956      43.49
## 16139           1973     219.98
## 16140           1973     287.01
## 16141           1969      95.25
## 16142           1968     193.56
## 16143           1975      10.00
## 16144           1975       0.00
## 16145           1974    1789.53
## 16146           1974    1219.16
## 16147           1974      12.61
## 16148           1764       0.00
## 16149           1896       0.00
## 16150           1841     100.41
## 16151           1968     141.80
## 16152           1970      17.00
## 16153           1970     222.15
## 16154           1970    1944.94
## 16155           1970     101.65
## 16156           1968     394.10
## 16157           1961     129.95
## 16158           1961   19817.94
## 16159           1962     225.96
## 16160           1942       0.00
## 16161           1932     111.97
## 16162           1772      38.92
## 16163           1830       0.00
## 16164           1947     370.00
## 16165           1941    1282.26
## 16166           1945     143.80
## 16167           1946      40.28
## 16168           1961      70.26
## 16169           1956     413.15
## 16170           1955    1351.20
## 16171           1959   31185.10
## 16172           1967    1480.69
## 16173           1967     172.63
## 16174           1970      71.50
## 16175           1970     493.43
## 16176           1969     162.00
## 16177           1969    1769.11
## 16178           1969       0.00
## 16179           3255   14840.40
## 16180           1969     931.18
## 16181           1949     142.18
## 16182           1948     503.54
## 16183           1984     188.83
## 16184           2177     317.12
## 16185           1968     114.97
## 16186           1969       0.00
## 16187           1969     416.80
## 16188           1970     285.70
## 16189           1970    2106.78
## 16190           1967     734.94
## 16191           1967      20.24
## 16192           1960       0.00
## 16193           1960     174.41
## 16194           1945     498.51
## 16195           2651     220.13
## 16196           1933      50.00
## 16197           1935     637.64
## 16198           1871     106.94
## 16199           1882     137.40
## 16200           3107    1028.07
## 16201           2786       0.00
## 16202           1836       0.00
## 16203           1963    1218.89
## 16204           1967       0.00
## 16205           1969     476.83
## 16206           1961     246.25
## 16207           2783     176.04
## 16208           1962       0.00
## 16209           1962     236.60
## 16210           1962    1034.04
## 16211           1962    2043.40
## 16212           1963    2003.04
## 16213           1959     109.25
## 16214           1954       0.00
## 16215           1948     310.61
## 16216           2383    1335.81
## 16217           1948      46.80
## 16218           1948     825.12
## 16219           1941     212.09
## 16220           2339   14784.88
## 16221           1549   62280.61
## 16222           1322       0.00
## 16223           1703     131.64
## 16224           1877      86.85
## 16225           1884      98.65
## 16226           1942     240.00
## 16227           1945     864.36
## 16228           1946       0.00
## 16229           1948     367.82
## 16230           1948      11.45
## 16231           1954     128.68
## 16232           1960     453.49
## 16233           1959     857.97
## 16234           1955     237.64
## 16235           1956      65.00
## 16236           1963     153.26
## 16237           1962    1197.95
## 16238           2627     827.54
## 16239           1962     396.69
## 16240           1962     465.11
## 16241           1962     507.29
## 16242           1962     114.45
## 16243           1961     156.45
## 16244           1961    1477.16
## 16245           3492  139772.40
## 16246           1968     518.73
## 16247           2879      49.22
## 16248           2297     678.80
## 16249           1966     496.53
## 16250           2065      46.62
## 16251           1967       9.00
## 16252           2105     135.18
## 16253           1534       0.00
## 16254           1967     165.98
## 16255           1967      91.00
## 16256           1963      96.41
## 16257           1961     153.39
## 16258           1961      50.00
## 16259           1962     138.52
## 16260           1956    2399.07
## 16261           1959    7249.08
## 16262           1960       0.00
## 16263           1949     244.40
## 16264           1954    8536.15
## 16265           1954    1271.20
## 16266           1934    4074.80
## 16267           1945      91.16
## 16268           1942       0.00
## 16269           1942       0.00
## 16270           1940       0.00
## 16271           1939     671.13
## 16272           1519     251.85
## 16273           1904     165.65
## 16274           1878       0.00
## 16275           1940    1154.00
## 16276           1946     390.23
## 16277           1935     113.12
## 16278           1954      14.09
## 16279           2954       0.00
## 16280           2525     228.74
## 16281           1959      37.26
## 16282           1962       0.00
## 16283           1961       0.00
## 16284           1746     153.08
## 16285           2548   78173.04
## 16286           3289    1233.23
## 16287           1962     398.99
## 16288           2271       0.00
## 16289           1963     535.89
## 16290           2202      48.22
## 16291           1960      86.90
## 16292           1960     332.56
## 16293           1960       0.00
## 16294           1960     214.17
## 16295           1959     128.77
## 16296           1955     958.74
## 16297           1954       0.00
## 16298           1949     321.23
## 16299           1954      90.92
## 16300           1948     224.75
## 16301           2433    1347.48
## 16302           1946       0.00
## 16303           1933      94.09
## 16304           1878    4715.00
## 16305           1843     125.51
## 16306           1878     155.46
## 16307           1946    1217.38
## 16308           1945     937.33
## 16309           1954     885.01
## 16310           1961       0.00
## 16311           1961     177.45
## 16312           1962    2038.36
## 16313           1942    1371.19
## 16314           2289     457.61
## 16315           1599       0.00
## 16316           1946     393.62
## 16317           1946     204.44
## 16318           1946     325.36
## 16319           1925     108.00
## 16320           2696    1871.24
## 16321           1942       0.00
## 16322           1942     225.12
## 16323           1945      65.18
## 16324           1940      10.00
## 16325           1942       0.00
## 16326           2318      88.38
## 16327           1961       0.00
## 16328           1955     196.06
## 16329           1959     264.01
## 16330           3062    1558.14
## 16331           1875     192.11
## 16332           1959       0.00
## 16333           1959    2165.93
## 16334           1959     225.04
## 16335           2143    2799.56
## 16336           1959       0.00
## 16337           1955     133.72
## 16338           1961      50.01
## 16339           1961     259.22
## 16340           1960     118.32
## 16341           1949    3816.62
## 16342           1949       0.00
## 16343           1948     203.40
## 16344           1945     111.08
## 16345           1945       0.00
## 16346           1942       0.00
## 16347           2869      60.72
## 16348           1932     117.79
## 16349           1931     918.92
## 16350           1935    3966.24
## 16351           3295     119.00
## 16352           1947     405.92
## 16353           1947     328.66
## 16354           1791     108.00
## 16355           1912     451.64
## 16356           1541     175.00
## 16357           1837     364.52
## 16358           1946       0.00
## 16359           3009      55.55
## 16360           1945   17250.66
## 16361           3239       0.00
## 16362           1941    5498.47
## 16363           1941      91.97
## 16364           1949       0.00
## 16365           2834      10.00
## 16366           1956       0.00
## 16367           1956    3147.79
## 16368           1955     255.93
## 16369           1959     153.24
## 16370           1746    5775.00
## 16371           1896    1575.07
## 16372           1451      38.42
## 16373           1959       0.00
## 16374           1959      69.88
## 16375           1955     263.56
## 16376           2197      89.00
## 16377           1959     752.15
## 16378           1956     163.06
## 16379           1954       9.00
## 16380           2069     128.96
## 16381           3301      79.53
## 16382           1948     457.46
## 16383           1948     171.22
## 16384           1940     186.45
## 16385           1941     137.00
## 16386           1942       0.00
## 16387           1941    8483.88
## 16388           1946   11146.27
## 16389           1945    2255.24
## 16390           1945       0.00
## 16391           1942     487.63
## 16392           1946     247.36
## 16393           1926     226.88
## 16394           3133       0.00
## 16395           1931   40108.63
## 16396           2980     923.62
## 16397           1928     189.16
## 16398           1442       0.00
## 16399           1927     286.20
## 16400           2276     551.17
## 16401           1946     741.62
## 16402           1947      96.91
## 16403           1947     964.24
## 16404           1942       0.00
## 16405           1942    3962.98
## 16406           2288      99.32
## 16407           2806     235.35
## 16408           1939     165.36
## 16409           1948     453.78
## 16410           1954     526.07
## 16411           2995   38999.50
## 16412           1956    9314.56
## 16413           1956     307.09
## 16414           1493       0.00
## 16415           1793      67.43
## 16416           1897      72.74
## 16417           1955     608.37
## 16418           1949       0.00
## 16419           1933       0.00
## 16420           1896    1591.40
## 16421           1940      81.85
## 16422           1942    1079.39
## 16423           1949     439.09
## 16424           1956    1173.88
## 16425           1905       0.00
## 16426           1906       0.00
## 16427           1949     431.74
## 16428           1954     269.00
## 16429           1954     167.47
## 16430           1949      12.62
## 16431           1948    1244.08
## 16432           1942     313.78
## 16433           1941     248.98
## 16434           1941      51.16
## 16435           2779     697.22
## 16436           1941       0.00
## 16437           1942     110.40
## 16438           1942       0.00
## 16439           1942     235.79
## 16440           1946       0.00
## 16441           1939       0.00
## 16442           1934    1245.05
## 16443           1927     114.40
## 16444           1947     455.23
## 16445           1871       0.00
## 16446           1890     245.29
## 16447           2921     280.36
## 16448           1850      90.44
## 16449           1858      30.00
## 16450           1861     262.12
## 16451           2716     726.36
## 16452           1919       0.00
## 16453           1928     503.69
## 16454           1939     381.54
## 16455           1939     148.36
## 16456           1945     144.61
## 16457           1940     106.94
## 16458           1935     200.00
## 16459           1949     137.70
## 16460           1949      37.26
## 16461           1949    2476.03
## 16462           1949     120.15
## 16463           1949     294.06
## 16464           1949     345.62
## 16465           1954     305.80
## 16466           1948      89.50
## 16467           1949   26002.30
## 16468           1948     233.06
## 16469           1935       0.00
## 16470           1940     476.52
## 16471           1941     394.25
## 16472           1945      10.00
## 16473           1945     745.08
## 16474           1945       0.00
## 16475           1942      51.16
## 16476           1939     165.63
## 16477           1931     128.32
## 16478           1932     221.03
## 16479           1932    3180.12
## 16480           1932     151.98
## 16481           1947    1327.35
## 16482           1947      97.11
## 16483           1883   46153.13
## 16484           1910      96.56
## 16485           2227      75.00
## 16486           1918      71.62
## 16487           1918      72.83
## 16488           1933     395.46
## 16489           1942     317.73
## 16490           1945      13.09
## 16491           1945       0.00
## 16492           1945       0.00
## 16493           1942     303.95
## 16494           1941       0.00
## 16495           1941      73.61
## 16496           1931     221.80
## 16497           2269     135.05
## 16498           1948     269.11
## 16499           1870       0.00
## 16500           2031     521.33
## 16501           1948      91.97
## 16502           1949     198.94
## 16503           1940     658.66
## 16504           1942     158.31
## 16505           1945     345.96
## 16506           1945      38.30
## 16507           1977   16905.11
## 16508           1942       0.00
## 16509           2626       0.00
## 16510           1934     391.98
## 16512           1935     879.07
## 16513           2383       0.00
## 16514           1935     619.96
## 16515           2319    1177.98
## 16516           1932     160.82
## 16517           1947     442.11
## 16518           1942      91.00
## 16519           1942      88.08
## 16520           1945    3914.17
## 16521           1940       0.00
## 16522           1940    4763.08
## 16523           1941     195.04
## 16524           1941    6038.07
## 16525           1939      61.35
## 16526           1940     105.97
## 16527           1935     234.61
## 16528           1914       0.00
## 16529           1891    1004.64
## 16530           1850     465.21
## 16531           1939     181.08
## 16532           1940      27.86
## 16533           1945     168.41
## 16534           1945    1397.40
## 16535           1945     488.05
## 16536           1945     587.61
## 16537           1945     458.87
## 16538           1942       0.00
## 16539           1942      70.76
## 16540           2332      82.31
## 16541           1947      91.97
## 16542           1946     330.85
## 16543           1918       0.00
## 16544           1918    2540.67
## 16545           1919     105.12
## 16546           2509       0.00
## 16547           3011       0.00
## 16548           2996     117.57
## 16549           1933     205.47
## 16550           1875     306.09
## 16551           1877      60.01
## 16552           1903      75.00
## 16553           1875      51.16
## 16554           1871     270.30
## 16555           1933     226.56
## 16556           1935     108.00
## 16557           1932    1076.64
## 16558           1932     193.00
## 16559           2818    7959.57
## 16560           1931       0.00
## 16561           3159      57.76
## 16562           1925     205.70
## 16563           1926       0.00
## 16564           2258      78.92
## 16565           2201     252.47
## 16566           1940      11.27
## 16567           1940     278.85
## 16568           2292     228.56
## 16570           1941     167.57
## 16571           1939       0.00
## 16572           1935     744.43
## 16573           1777     247.77
## 16574           1753    2353.43
## 16575           2356     217.93
## 16576           1799       0.00
## 16577           1939      41.01
## 16578           1939      94.06
## 16579           1941     474.32
## 16580           1941     155.04
## 16581           1941       0.00
## 16582           1941      13.09
## 16583           3044     118.79
## 16584           1941     176.43
## 16585           1942     332.34
## 16586           1942       0.00
## 16587           1942       0.00
## 16588           1918       0.00
## 16589           1935      11.95
## 16590           1875     268.14
## 16591           1913     397.96
## 16592           1910     432.26
## 16593           1910     155.04
## 16594           1896   22747.80
## 16595           1840     595.30
## 16596           1875    2466.52
## 16597           1882     947.10
## 16598           2782    3680.80
## 16599           1935       0.00
## 16600           1932     439.10
## 16601           1931       0.00
## 16602           1932      86.00
## 16603           1931       0.00
## 16604           2269     133.54
## 16605           1926      58.26
## 16606           1942     213.66
## 16607           1941     490.98
## 16608           1941      59.00
## 16609           1935       0.00
## 16610           1688       0.00
## 16611           1941     216.87
## 16612           1940    1067.67
## 16613           1918     453.04
## 16614           1932   69812.17
## 16615           1932    1709.10
## 16616           1935     250.66
## 16617           3146    1290.05
## 16618           1927       0.00
## 16619           1918     331.42
## 16620           1928    3168.29
## 16621           3172     299.68
## 16622           1940     224.14
## 16623           1939    3403.50
## 16624           1340       0.00
## 16625           1939    7710.09
## 16626           1940       0.00
## 16627           1940       0.00
## 16628           2191      30.78
## 16629           1927     233.42
## 16630           2878   26489.79
## 16631           2557   33094.97
## 16632           1935      78.50
## 16633           1935     736.27
## 16634           1935     100.00
## 16635           1935       0.00
## 16636           1935     486.55
## 16637           1885       0.00
## 16638           1877      51.16
## 16639           1877       0.00
## 16640           1910       0.00
## 16641           1542     262.01
## 16642           1679       0.00
## 16643           2256     796.48
## 16644           1854       0.00
## 16645           1935       0.00
## 16646           1934      16.42
## 16647           1932      61.35
## 16648           1926       0.00
## 16649           1940       0.00
## 16650           1940     649.65
## 16651           1940   14971.75
## 16652           1940       0.00
## 16653           1939    9908.49
## 16654           1939     124.84
## 16655           3125      67.04
## 16656           1795     165.15
## 16657           1911       0.00
## 16658           2615   13642.31
## 16659           2847     590.80
## 16660           2665     180.25
## 16661           1939     308.89
## 16662           1939     356.82
## 16663           2608   17354.95
## 16664           1925     121.54
## 16665           1927   55250.08
## 16666           1934    3708.72
## 16667           1934     124.76
## 16668           1935       0.00
## 16669           1935   44919.52
## 16670           1932      71.73
## 16671           3086      55.00
## 16672           1933      58.09
## 16673           1933       0.00
## 16674           2649       0.00
## 16675           1935     221.15
## 16676           1938     195.92
## 16677           1885     250.12
## 16678           1864     428.07
## 16679           1903     155.65
## 16680           1913    2481.11
## 16681           1843     133.90
## 16682           1868     166.51
## 16683           1938       0.00
## 16684           1933      68.76
## 16685           1932     386.74
## 16686           1935     283.66
## 16687           2165     100.03
## 16688           2163  120882.46
## 16689           1934     268.41
## 16690           1932     173.96
## 16691           2556     339.88
## 16692           1912     270.02
## 16693           1914     157.08
## 16694           1904     205.12
## 16695           1890     431.72
## 16696           1840     480.24
## 16697           1480      51.16
## 16698           1919       0.00
## 16699           1919    2371.56
## 16700           1931     811.75
## 16701           1934   31006.79
## 16702           3041     208.99
## 16703           1932    1240.69
## 16704           1933     375.67
## 16705           1882     350.10
## 16706           1914       0.00
## 16707           1913    1160.51
## 16708           1619     111.49
## 16709           1855     943.20
## 16710           1933     484.86
## 16711           1933      77.59
## 16712           2198     120.82
## 16713           1932     272.62
## 16714           2586       0.00
## 16715           1925     300.87
## 16716           1925     582.04
## 16717           1919     108.00
## 16718           2828    4146.26
## 16719           1931    1153.47
## 16720           3017       0.00
## 16721           1903     375.36
## 16722           1928      94.56
## 16723           1928     212.05
## 16724           1931     214.40
## 16725           1931      69.00
## 16726           1933    8571.07
## 16727           1934     276.30
## 16728           1919       0.00
## 16729           1920    6422.33
## 16730           2471    3738.77
## 16731           1926       0.00
## 16732           1883   14175.00
## 16733           1885      32.59
## 16734           2586      91.97
## 16735           1857      88.29
## 16736           1898      81.29
## 16737           1900    1129.58
## 16738           1893     152.60
## 16739           2512     140.81
## 16740           1856     252.28
## 16741           3084    3144.87
## 16742           1862     568.93
## 16743           1877     249.07
## 16744           1957     230.39
## 16745           1919       0.00
## 16746           2099      73.58
## 16747           1919     241.49
## 16748           1919       0.00
## 16749           1928   17861.22
## 16750           1928      16.46
## 16751           1927    1366.01
## 16752           2889     136.58
## 16753           1893     161.36
## 16754           1898     158.86
## 16755           1903      51.16
## 16756           1913     948.89
## 16757           2607     156.64
## 16758           2285     631.01
## 16759           1928    7655.10
## 16760           1931       0.00
## 16761           1931      35.10
## 16762           1917     283.18
## 16763           1918     196.91
## 16764           2064   22286.70
## 16765           1919     423.82
## 16766           1919     213.46
## 16767           1925     109.61
## 16768           1883       0.00
## 16769           1865     152.43
## 16770           1864     131.68
## 16771           2432   29664.62
## 16772           1773     207.05
## 16773           1907     123.46
## 16774           1906      30.55
## 16775           3021    5214.08
## 16776           1911       0.00
## 16777           2661     183.24
## 16778           1914    1729.80
## 16779           2456       0.00
## 16780           2975   80740.57
## 16781           1870     276.60
## 16782           2582     644.09
## 16783           1925     388.06
## 16784           1926       0.00
## 16785           1926       0.00
## 16786           1919      82.77
## 16787           1918       0.00
## 16788           1918       6.00
## 16789           2023   12659.68
## 16790           1918     933.64
## 16791           1928     318.99
## 16792           2549      29.36
## 16793           1928     107.41
## 16794           1927     181.00
## 16795           1931       0.00
## 16796           1931     108.79
## 16797           2380       0.00
## 16798           2674   24248.58
## 16799           2435  230148.97
## 16800           1910       0.00
## 16801           1907     742.22
## 16802           1891     158.67
## 16803           3103     205.81
## 16804           1844     455.42
## 16805           1484      86.98
## 16806           1927     213.73
## 16807           1928       0.00
## 16808           1920    1766.56
## 16809           2658    1249.13
## 16810           1926       6.00
## 16811           1926      18.50
## 16812           1926       0.00
## 16813           1884       0.00
## 16814           1870   15866.77
## 16815           2852     502.77
## 16816           1861     237.76
## 16817           1906       0.00
## 16818           1910       0.00
## 16819           1912     188.00
## 16820           2822     880.49
## 16821           1910     503.08
## 16822           1911       6.00
## 16823           1533       0.00
## 16824           1681   24591.12
## 16825           3037     412.47
## 16826           1926      29.00
## 16827           1925   21867.89
## 16828           1919     318.53
## 16829           1918    1533.64
## 16830           1918    1080.15
## 16831           1927      78.50
## 16832           1906       0.00
## 16833           1907       0.00
## 16834           1821     145.27
## 16835           1927     260.86
## 16836           1927       0.00
## 16837           2773       0.00
## 16838           1927       0.00
## 16839           1918     240.66
## 16840           1918       0.00
## 16841           1919     731.24
## 16842           1920      38.50
## 16843           1864      60.11
## 16844           2720       0.00
## 16845           1882     125.57
## 16846           1920    1672.53
## 16847           1926       0.00
## 16848           1927     826.02
## 16849           1926     141.84
## 16850           1926      66.00
## 16851           2668    2501.30
## 16852           1918    2511.31
## 16853           1918      69.00
## 16854           1765     133.60
## 16855           1913     438.53
## 16856           2335  121295.19
## 16857           1910     397.61
## 16859           1904     344.00
## 16860           1821     254.58
## 16861           1486       0.00
## 16862           1850     868.93
## 16863           1918     180.61
## 16864           1974     172.00
## 16865           1918      39.67
## 16866           1920      13.09
## 16867           1920      12.49
## 16868           1893     120.40
## 16869           2282      27.58
## 16870           1910     219.41
## 16871           1910     287.25
## 16872           1913     306.53
## 16873           1906     830.92
## 16874           1925      51.21
## 16875           1918    1122.87
## 16876           1918      41.00
## 16877           1918     107.00
## 16878           1870     126.90
## 16879           1871    1374.84
## 16880           1771       0.00
## 16881           2096     640.18
## 16882           1910     118.84
## 16883           1619     111.49
## 16884           1906     211.14
## 16885           1809    1164.31
## 16886           1864     272.58
## 16887           1918      91.97
## 16888           1917    3706.64
## 16889           1917      15.00
## 16890           1920       0.00
## 16891           1920       0.00
## 16892           1906   19415.45
## 16893           1913      81.28
## 16894           1890    8461.71
## 16895           1850     117.03
## 16896           1920       0.00
## 16897           1918     126.05
## 16898           1913       0.00
## 16899           1904     138.80
## 16900           1920    5754.55
## 16901           1878     785.00
## 16902           1864       0.00
## 16903           1918       0.00
## 16904           1905    1491.67
## 16905           1913     160.03
## 16906           1912       0.00
## 16907           2540     154.56
## 16908           1676     266.81
## 16909           1313       0.00
## 16910           1836       0.00
## 16911           1917      86.45
## 16912           1885       0.00
## 16913           2363     179.96
## 16914           2041     116.58
## 16915           1877     119.88
## 16916           1878     145.55
## 16917           1878     322.86
## 16918           1865     164.36
## 16919           1910     366.91
## 16920           1912       0.00
## 16921           1904     571.09
## 16922           1854     246.41
## 16923           1898      83.55
## 16924           1863     280.42
## 16925           1861     545.00
## 16926           2870     196.76
## 16927           2772       0.00
## 16928             15       0.00
## 16929           1913     385.39
## 16930           1920    1328.82
## 16931           1911      56.50
## 16932           1910    5571.37
## 16933           1618     288.08
## 16934           1618     364.58
## 16935           1683     962.23
## 16936           2457       0.00
## 16937           1823      43.38
## 16938           1864   10939.86
## 16939           1869       0.00
## 16940           1869     238.10
## 16941           1910     623.68
## 16942           1910      89.45
## 16943           1864     146.01
## 16944           1883       0.00
## 16945           1764   35108.17
## 16946           3141     475.01
## 16947           1910     102.32
## 16948           1911       0.00
## 16949           1911     124.75
## 16950           2842     515.04
## 16951           1912      98.21
## 16952           2491       0.00
## 16953           1913     234.00
## 16954           1913    1742.59
## 16955           2277     347.00
## 16956           1897      83.98
## 16957           1904     790.97
## 16958           1905       0.00
## 16959           1891    1588.88
## 16960           1891     837.09
## 16961           1844   59344.58
## 16962           1855     115.00
## 16963           2717     319.34
## 16964           2365     439.86
## 16965           1861     325.85
## 16966           1906       0.00
## 16967           1904       0.00
## 16968           1904     624.85
## 16969           1898     895.94
## 16970           1904     128.18
## 16971           1904     955.90
## 16972           2296   21042.69
## 16973           1912     274.42
## 16974           2763      51.16
## 16975           1910      12.49
## 16976           1910    1247.59
## 16977           1910     211.97
## 16978           1910       0.00
## 16979           1598       0.00
## 16980           2293       0.00
## 16981           1836     895.97
## 16982           1858    1508.09
## 16983           1864     199.16
## 16984           1869   20504.78
## 16985           1764      32.59
## 16986           1791       0.00
## 16987           1917    4192.41
## 16988           1627      14.52
## 16989           1904    1057.34
## 16990           2335      82.03
## 16991           1903   15139.79
## 16992           1903     118.23
## 16993           1904     444.86
## 16994           2541    1084.10
## 16995           1835     292.80
## 16996           1854       0.00
## 16997           3118       0.00
## 16998           1865       0.00
## 16999           2852     363.03
## 17000           1865     681.90
## 17001           1870     371.04
## 17002           2781      47.04
## 17003           1858       0.00
## 17004           1890     133.60
## 17005           1878   67908.39
## 17006           1878       0.00
## 17007           3359    1186.81
## 17008           1904    1134.05
## 17009           1904     715.56
## 17010           2332     520.87
## 17011           1903     132.00
## 17012           1904    6949.07
## 17013           1893       0.00
## 17014           1907     382.37
## 17015           1907     227.77
## 17016           1910     226.80
## 17017           1910      42.10
## 17018           1910     177.42
## 17019           1822     111.51
## 17020           1854      50.00
## 17021           1837      46.56
## 17022           1877     134.00
## 17023           1877     167.47
## 17024           1875       0.00
## 17025           1865     174.46
## 17026           1865      61.35
## 17027           1907      91.97
## 17028           1907      81.85
## 17029           1904      51.16
## 17030           2045      68.39
## 17031           1904      77.60
## 17032           1904       0.00
## 17033           1854       0.00
## 17034           1808       0.00
## 17035           1865      97.54
## 17036           1756   18764.75
## 17037           3177     361.08
## 17038           3275     376.10
## 17039           3235      65.67
## 17040           1896    9764.76
## 17041           1833    1245.72
## 17042           1878       0.00
## 17043           1878       0.00
## 17044           2404       0.00
## 17045           2395     138.56
## 17046           1840     526.65
## 17047           2060      59.45
## 17048           1883     256.75
## 17049           1882     220.04
## 17050           1869     290.44
## 17051           1875      96.29
## 17052           2747     127.77
## 17053           1638     128.81
## 17054           1794      45.00
## 17055           1904     232.98
## 17056           1904     163.84
## 17057           1904   20407.74
## 17058           2808    1441.20
## 17059           1905    1496.19
## 17060           1905     191.76
## 17061           1905     139.84
## 17062           1905      60.42
## 17063           1905       0.00
## 17064           1897     121.50
## 17065           1904       0.00
## 17066           1904      68.39
## 17067           1903      51.16
## 17068           1891     115.47
## 17069           2594   23845.14
## 17070           1846     116.62
## 17071           1848     233.84
## 17072           1875     192.32
## 17073           1882     127.29
## 17074           1878       0.00
## 17075           1890       0.00
## 17076           1900     103.37
## 17077           1900   15267.42
## 17078           1898      77.49
## 17079           1904     160.85
## 17080           1904       0.00
## 17081           1898      14.15
## 17082           1898     273.26
## 17083           1898      10.50
## 17084           2780     114.33
## 17085           1904     146.00
## 17086           1836    4844.19
## 17087           1466     494.76
## 17088           1816     381.14
## 17089           2774     688.75
## 17090           1879       0.00
## 17091           1884       0.00
## 17092           1885     183.79
## 17093           1875     351.95
## 17094           1872      49.22
## 17095           2601     268.00
## 17096           1893       0.00
## 17097           1904     186.35
## 17098           1900       0.00
## 17099           2135     145.34
## 17100           1900     746.18
## 17101           1900       0.00
## 17102           1982     872.09
## 17103           1903     235.62
## 17104           2834     367.00
## 17105           1890       0.00
## 17106           1169       0.00
## 17107           1840     291.26
## 17108           1837     392.00
## 17109           1840     349.32
## 17110           1854       0.00
## 17111           1854     126.93
## 17112           1875       0.00
## 17113           1876       0.00
## 17114           1865      61.35
## 17115           2297     300.50
## 17116           1883       0.00
## 17117           1883     338.93
## 17118           1879      49.84
## 17119           2501   10136.78
## 17120           1878     214.77
## 17121           1877     182.74
## 17122           1877    1448.27
## 17123           1877     135.20
## 17124           1417     153.71
## 17125           1764       0.00
## 17126           3189  179981.64
## 17127           1903      41.40
## 17128           1903     744.13
## 17129           1900     204.81
## 17130           1900     154.62
## 17131           2657       0.00
## 17132           1893    1139.98
## 17133           1897      25.86
## 17134           1897     441.67
## 17135           2365     501.89
## 17136           1599       0.00
## 17137           1690     950.69
## 17138           1837      86.64
## 17139           1820     114.00
## 17140           1877    2646.36
## 17141           1878     414.25
## 17142           1879    1078.68
## 17143           1864     303.63
## 17144           1864     737.29
## 17145           1869      79.89
## 17146           1896       0.00
## 17147           1869     100.00
## 17148           1890     307.58
## 17149           1869     174.87
## 17150           1875       0.00
## 17151           2303     153.69
## 17152           1879    3875.00
## 17153           1879     548.86
## 17154           1877     158.81
## 17155           1883     189.65
## 17156           1883       0.00
## 17157           1400     139.46
## 17158           1878     521.58
## 17159           2338     187.14
## 17160           1879     481.45
## 17161           1869     288.59
## 17162           2002     210.04
## 17163           1897    3021.14
## 17164           1898     407.22
## 17165           2268     153.84
## 17166           1878      88.29
## 17167           1878      94.05
## 17168           1882      47.50
## 17169           1897     102.16
## 17170           2228   15063.84
## 17171           2840     382.33
## 17172           1651       0.00
## 17173           1855     293.76
## 17174           1885     328.67
## 17175           1878     175.50
## 17176           1864     233.52
## 17177           1875     687.65
## 17178           1875     186.94
## 17179           1861      82.77
## 17180           1554       0.00
## 17181           1774     184.00
## 17182           1893     468.65
## 17183           1897       0.00
## 17184           1897       0.00
## 17185           1889     175.00
## 17186           1891     244.80
## 17187           1284       0.00
## 17188           1836     276.38
## 17189           1835    8358.86
## 17190           1820     186.45
## 17191           1872     394.03
## 17192           1871     175.60
## 17193           1864       0.00
## 17194           1878     197.17
## 17195           1877       0.00
## 17196           1878   86242.28
## 17197           1879     157.35
## 17198           1879       0.00
## 17199           2085     168.01
## 17200           1884     787.72
## 17201           2772     203.89
## 17202           1749       0.00
## 17203           1889     208.00
## 17204           1897     113.36
## 17205           1896     765.12
## 17206           1896   15818.91
## 17207           1896       0.00
## 17208           1495    1786.51
## 17209           1836       0.00
## 17210           1850   22951.81
## 17211           1471      71.40
## 17212           1884   17578.26
## 17213           1883     253.29
## 17214           1883    1704.56
## 17215           2731       0.00
## 17216           1879       0.00
## 17217           1878     647.01
## 17218           2437     207.08
## 17219           1878     117.60
## 17220           1871      51.16
## 17221           1871    4809.81
## 17222           2645     638.30
## 17223           1893       0.00
## 17224           1893     386.64
## 17225           1890     324.20
## 17226           1891     179.32
## 17227           1854       0.00
## 17228           1878     775.07
## 17229           1879    2532.20
## 17230           1879     100.69
## 17231           1883       0.00
## 17232           2931     175.49
## 17233           1891     249.87
## 17234           1850     346.61
## 17235           1819   19272.41
## 17236           1431       0.00
## 17237           2520     114.17
## 17238           1882    1446.38
## 17239           2908       0.00
## 17240           2852    1259.49
## 17241           1864      61.35
## 17242           1861    1096.31
## 17243           1858    1613.00
## 17244           1891     109.26
## 17245           1891     170.00
## 17246           1849      73.06
## 17247           1851       0.00
## 17248           1956     229.47
## 17249           2702     564.61
## 17250           1882      41.00
## 17251           1885     353.16
## 17252           1885   29584.33
## 17253           1785     116.95
## 17254           1891     165.00
## 17255           1855     298.48
## 17256            652      76.70
## 17257           2051      25.00
## 17258           1885      95.00
## 17259           1885    2149.81
## 17260           1882    6538.91
## 17261           1884     248.29
## 17262           1883     741.84
## 17263           1892     144.23
## 17264           1878     429.50
## 17265           1878     308.51
## 17266           2092   72805.34
## 17267           1877   33446.43
## 17268           1878    6034.42
## 17269           1863     505.80
## 17270           1864     528.10
## 17271           1865       0.00
## 17272           1869       0.00
## 17273           2267     120.85
## 17274           1869     113.62
## 17275           1864      89.38
## 17276           1759       0.00
## 17277           1891      66.68
## 17278           1891     256.00
## 17279           1891     155.44
## 17280           1891     216.21
## 17281           2829     218.88
## 17282           1889   27139.80
## 17283           1886     130.90
## 17284           1539     128.61
## 17285           1862    1170.75
## 17286           1855     690.20
## 17287           1861     418.02
## 17288           1868     464.38
## 17289           1875     394.65
## 17290           1872     293.08
## 17291           1878     796.12
## 17292           1877     372.21
## 17293           1878    1324.68
## 17294           1878    1056.12
## 17295           1878     260.54
## 17296           1879   27528.95
## 17297           1883       0.00
## 17298           1885   11324.73
## 17299           1885       0.00
## 17300           1885     611.21
## 17301           1794     896.17
## 17302           1891       0.00
## 17303           1837       0.00
## 17304           1840     228.95
## 17305           1479    1651.58
## 17306           1801     354.12
## 17307           1710     453.97
## 17308           1885     719.69
## 17309           1885      51.89
## 17310           1885       0.00
## 17311           1883     164.88
## 17312           1883     179.99
## 17313           1884     337.95
## 17314           1883   40674.27
## 17315           2221      65.73
## 17316           1879     421.98
## 17317           1878     174.98
## 17318           1878     440.98
## 17319           1878       0.00
## 17320           1878     130.65
## 17321           1877     464.37
## 17322           1877     198.69
## 17323           1871  119526.28
## 17324           1871     150.25
## 17325           1869       0.00
## 17326           1875     886.31
## 17327           1875     468.75
## 17328           2622    4096.45
## 17329           1877     270.72
## 17330           1875      51.57
## 17331           2890       0.00
## 17332           2014       0.00
## 17333           1875    1569.60
## 17334           1868   21701.78
## 17335           1858     369.83
## 17336           1858       0.00
## 17337           1858   26431.79
## 17338           1857     328.81
## 17339           1862     468.11
## 17340           2308  187355.26
## 17341           1211    7687.44
## 17342           1781     410.32
## 17343           1889     271.36
## 17344           2271     743.76
## 17345           1890     514.37
## 17346           1532       0.00
## 17347           1660       0.00
## 17348           2982     561.10
## 17349           1820     407.90
## 17350           2876      74.75
## 17351           2056     128.58
## 17352           1855   83258.55
## 17353           1851     105.19
## 17354           1848     250.71
## 17355           1848       0.00
## 17356           1847     100.53
## 17357           1858      88.29
## 17358           1868   26267.80
## 17359           1869       0.00
## 17360           1865       0.00
## 17361           1864    2161.93
## 17362           2348     319.92
## 17363           1875      79.00
## 17364           1875     260.07
## 17365           2252     315.89
## 17366           1871     189.74
## 17367           1872       0.00
## 17368           1872     106.49
## 17369           2142     611.00
## 17370           1878     160.98
## 17371           1879   15154.66
## 17372           1879   12154.59
## 17373           1882     664.17
## 17374           1882       0.00
## 17375           1885     220.81
## 17376           2182     136.14
## 17377           1885     111.78
## 17378           2674       0.00
## 17379           1886    1388.63
## 17380           1847      78.84
## 17381           1848     180.30
## 17382           1815       0.00
## 17383           1724    9731.21
## 17384           1885     201.50
## 17385           1883       0.00
## 17386           1885     284.45
## 17387           1882      87.37
## 17388           1883     145.62
## 17389           1877     127.91
## 17390           3254    2432.22
## 17391           1877     143.01
## 17392           1878       0.00
## 17393           1872     165.70
## 17394           1872       0.00
## 17395           1871       0.00
## 17396           1871       0.00
## 17397           2695      53.34
## 17398           1875    2242.92
## 17399           1869      56.68
## 17400           1868     847.00
## 17401           1864     206.38
## 17402           1757    2292.75
## 17403           1618      86.22
## 17404           1850   31863.27
## 17405           1856     290.32
## 17406           1837     193.10
## 17407           1829       0.00
## 17408           2449     181.92
## 17409           1858       0.00
## 17410           1863      72.08
## 17411           1874     304.50
## 17412           1875    1267.48
## 17413           1871   16203.54
## 17414           1872     228.37
## 17415           1886       0.00
## 17416           1844       0.00
## 17417           1843     270.35
## 17418           1851     700.85
## 17419           2316   22560.86
## 17420           1869    4960.52
## 17421           1869     924.20
## 17422           1862     846.32
## 17423           1861   22955.83
## 17424           1883     689.57
## 17425           2515    1288.96
## 17426           1739     371.87
## 17427           1792     860.87
## 17428           1822     138.13
## 17429           1885     172.81
## 17430           1885     354.12
## 17431           1885      91.00
## 17432           1883     217.32
## 17433           2785       0.00
## 17434           1885       0.00
## 17435           1884      92.51
## 17436           2192   15848.09
## 17437           1882    1095.54
## 17438           1877    5367.01
## 17439           1878       8.00
## 17440           1879     154.72
## 17441           1879     159.14
## 17442           1879   27131.49
## 17443           1879     158.68
## 17444           1861     506.51
## 17445           1863     149.79
## 17446           2314   79953.03
## 17447           1857       0.00
## 17448           1869       0.00
## 17449           1869    1278.44
## 17450           1868     124.83
## 17451           1864      94.66
## 17452           1864     162.11
## 17453           1865     443.83
## 17454           1871     281.36
## 17455           1872     121.66
## 17456           1872    1249.02
## 17457           1872     476.58
## 17458           1872     256.79
## 17459           2080     121.66
## 17460           1871     962.85
## 17461           1875       0.00
## 17462           1875    1868.56
## 17463           1875    6597.92
## 17464           1875      59.57
## 17465           1875     142.32
## 17466           2163  199466.73
## 17467           1744      98.89
## 17468           1282     128.77
## 17469           1806    2679.42
## 17470           1850     105.97
## 17471           1856   14619.20
## 17472           1121     146.98
## 17473           1875    6104.38
## 17474           1876     503.89
## 17475           1871    2751.00
## 17476           1870       0.00
## 17477           1870       0.00
## 17478           2023       0.00
## 17479           1872     328.52
## 17480           1872       0.00
## 17481           2284    1006.90
## 17483           1871       0.00
## 17484           2380    5112.68
## 17485           1864     559.58
## 17486           1864     351.67
## 17487           1864   39851.19
## 17488           1868     268.06
## 17489           1869     337.50
## 17490           1869     504.68
## 17491           1869     289.81
## 17492           1857     221.05
## 17493           1857       0.00
## 17494           1964     204.45
## 17495           1862   28248.77
## 17496           1861     984.08
## 17497           1879     105.18
## 17498           1879    1942.69
## 17499           1879       0.00
## 17500           1877      83.35
## 17501           1877     133.88
## 17502           1882     157.36
## 17503           1883   10827.28
## 17504           1882       8.00
## 17505           1882     117.84
## 17506           1884      44.20
## 17507           1883       0.00
## 17508           1883       0.00
## 17509           1883    1901.18
## 17510           1640     212.58
## 17511           1042     599.19
## 17512           1548      17.59
## 17513           1660      66.68
## 17514           1856      36.10
## 17515           1855    1534.10
## 17516           1855     185.61
## 17517           1850     353.53
## 17518           1949      41.00
## 17519           1833      94.06
## 17520           1883       0.00
## 17521           1882      46.29
## 17522           1882     275.12
## 17523           1882    1083.27
## 17524           1877     317.14
## 17525           2038     196.21
## 17526           1878    1380.68
## 17527           1861    1918.60
## 17528           1862       0.00
## 17529           1862       0.00
## 17530           1861     315.36
## 17531           2282     231.73
## 17532           1869     245.71
## 17533           1869       0.00
## 17534           1869    4358.82
## 17535           1869     372.26
## 17536           1864       0.00
## 17537           1864     134.00
## 17538           1864    1396.40
## 17539           1870     582.23
## 17540           1870       0.00
## 17541           1876     182.88
## 17542           1877   13139.30
## 17543           2072     166.65
## 17544           2462    1502.46
## 17545           1788       0.00
## 17546           1428     163.16
## 17547           1834    1722.30
## 17548           1816     212.37
## 17549           1722     183.63
## 17550           1876      15.50
## 17551           1876   16716.88
## 17552           1872     397.45
## 17553           1875     162.13
## 17554           1871     437.76
## 17555           1872     302.48
## 17556           1864       0.00
## 17557           1863     172.99
## 17558           1863   33723.54
## 17559           1869     776.11
## 17560           1869     143.22
## 17561           1869     976.42
## 17562           1865       0.00
## 17563           1857    1357.41
## 17564           1862      83.70
## 17565           1878  104050.54
## 17566           1878     230.50
## 17567           1878     536.97
## 17568           1879     202.95
## 17569           1879     327.08
## 17570           2442       0.00
## 17571           1877       0.00
## 17572           1878     127.95
## 17573           1877       0.00
## 17574           1877     231.18
## 17575           1637      66.68
## 17576           1444       0.00
## 17577           1837     271.79
## 17578           1848     233.07
## 17579            143     135.26
## 17580           1877   31829.60
## 17581           1879     275.08
## 17582           1879     935.07
## 17583           1878   20151.22
## 17584           1861     378.09
## 17585           1858    2607.64
## 17586           1858     690.91
## 17587           1869     158.84
## 17588           1864    5332.59
## 17589           1864       0.00
## 17590           3090      86.22
## 17591           2492    1474.25
## 17592           2949     393.31
## 17593           2687     121.84
## 17594           1876     192.12
## 17595           1760       0.00
## 17596           1613    9102.75
## 17597           2368      82.51
## 17598           1826     151.45
## 17599           1875     299.29
## 17600           1870       0.00
## 17601           1858     162.10
## 17602           1862      63.46
## 17603           2554   31133.44
## 17604           1840       0.00
## 17605           1815   12100.93
## 17606           2388      27.96
## 17607           1876     354.47
## 17608           1869      50.00
## 17609           2176     852.62
## 17610           2158    2326.53
## 17611           1863     188.67
## 17612           1863     126.21
## 17613           1871       0.00
## 17614           1872     100.00
## 17615           1858       0.00
## 17616           1861     318.79
## 17617           1878   25760.12
## 17618           1878     140.11
## 17619           1918     123.20
## 17620           1793       0.00
## 17621           2468    3556.72
## 17622           1843    8681.02
## 17623           1855       0.00
## 17624           1856      64.89
## 17625           1828     150.00
## 17626           2497     142.96
## 17627           1863       0.00
## 17628           2408     272.80
## 17629           1862    1446.75
## 17630           1869    2347.53
## 17631           1871     202.07
## 17632           1876       0.00
## 17633           1876     224.97
## 17634           1967     521.26
## 17635           1876   30704.43
## 17636           3147     474.05
## 17637           1874      84.00
## 17638           1865     235.82
## 17639           2939     151.49
## 17640           2321       0.00
## 17641           2362   42343.23
## 17642           1505      70.02
## 17643           1807    2561.09
## 17644           1827    3128.53
## 17645           1856    2749.43
## 17646           1855      62.01
## 17647           1850       0.00
## 17648           1850      93.80
## 17649           1854       0.00
## 17650           1854     183.73
## 17651           1843    2555.68
## 17652           1842    1785.08
## 17653           1840   14526.33
## 17654           1834     172.88
## 17655            143     134.29
## 17656           1864     532.62
## 17657           2880     114.25
## 17658           1876     276.64
## 17659           1876       0.00
## 17660           2466   54573.74
## 17661           1871     643.35
## 17662           1870     316.49
## 17663           1872     255.83
## 17664           2786     754.03
## 17665           1862  181036.35
## 17666           1861     550.80
## 17667           2700     464.00
## 17668           1770       0.00
## 17669           1894     371.80
## 17670           1842     121.32
## 17671           1854       0.00
## 17672           1854     197.41
## 17673           1850     152.98
## 17674           1850     294.29
## 17675           1800     267.19
## 17676           1821     237.21
## 17677           1820     492.81
## 17678           1858     301.14
## 17679           1862       0.00
## 17680           2274    1249.41
## 17681           1862     185.86
## 17682           1862     710.62
## 17683           1872     149.57
## 17684           1871       0.00
## 17685           1929     235.90
## 17686           3132      60.47
## 17687           1868     176.65
## 17688           1865       0.00
## 17689           1868      81.85
## 17690           1927       0.00
## 17691           1821      80.37
## 17692           2604     168.93
## 17693           2050       0.00
## 17694           1851     175.81
## 17695           1851    1496.69
## 17696           1856     775.53
## 17697           1836     574.40
## 17699           1870    8271.38
## 17700           1869     876.29
## 17701           1869    1179.07
## 17702           1871      17.50
## 17703           1871       0.00
## 17704           1862     356.79
## 17705           1863     255.03
## 17706           1861      73.58
## 17707           1861     382.59
## 17708           1851     208.93
## 17709           1854       0.00
## 17710           2047   32821.93
## 17711           1862     786.47
## 17712           1868   16505.32
## 17713           3081     176.51
## 17714           1841    1940.60
## 17715           3002     345.42
## 17716           1869     137.58
## 17717           1871     732.48
## 17718           1869     741.56
## 17719           1927       0.00
## 17720           1862     407.96
## 17721           1861     173.57
## 17722           1861     104.09
## 17723           2831      88.67
## 17724           1857     214.34
## 17725           1858   12440.62
## 17726           2524    4325.00
## 17727           1756     133.78
## 17728           1694    5614.25
## 17729           1840     197.23
## 17730           1835     341.54
## 17731           1854     438.38
## 17732           1849    1243.85
## 17733           1856     124.93
## 17734           1855      79.38
## 17735           1827     788.29
## 17736           1858     210.71
## 17737           1861      53.34
## 17738           1861    1198.91
## 17739           1862       0.00
## 17740           1862     585.56
## 17741           1865     123.20
## 17742           1865       0.00
## 17743           1865       0.00
## 17744           1865      98.70
## 17745           1865     317.77
## 17746           1864     441.08
## 17747           2765  228380.83
## 17748           2294     631.60
## 17749           1864     181.44
## 17750           1869      82.00
## 17751           1865    1538.62
## 17752           2690       9.00
## 17753           1868     747.36
## 17754           1868      13.00
## 17755           1868     637.87
## 17756           2652     295.57
## 17757           1554     608.93
## 17758           1770     110.18
## 17759           1778       0.00
## 17760           1855     105.55
## 17761           1854     235.82
## 17762           3268   77638.69
## 17763           1855       0.00
## 17764           2422     111.98
## 17765           1851       0.00
## 17766           1847     612.77
## 17767           2616     160.76
## 17768           2595      65.65
## 17769           1815     667.67
## 17770           1455       7.31
## 17771           1728     164.59
## 17772           1868     253.01
## 17773           1868  117646.57
## 17774           1869     362.29
## 17775           1863      66.68
## 17776           1865    1777.59
## 17777           1865       0.00
## 17778           1862       0.00
## 17779           1861    3300.48
## 17780           1861     327.03
## 17781           1861       0.00
## 17782           1858     187.63
## 17783           2383    3284.71
## 17784           1786   15480.27
## 17785           2220      36.12
## 17786           1739     217.35
## 17787           1840   27324.57
## 17788           2886    1256.56
## 17789           2316    9422.95
## 17790           1850     109.64
## 17791           1849     521.51
## 17792           1935     162.65
## 17793           1861       0.00
## 17794           2848   36223.98
## 17795           1861       0.00
## 17796           1862      61.49
## 17797           1865    2012.66
## 17798           1865     387.76
## 17799           2849     176.84
## 17800           1864     145.70
## 17801           1868    2645.95
## 17802           1865      39.21
## 17803           1868     141.79
## 17804           1849     106.05
## 17805           1946     481.11
## 17806           1851     368.47
## 17807           1851      80.38
## 17808           2603     210.34
## 17809           1844     296.64
## 17810           1836     710.70
## 17811           1911     200.80
## 17812           1863     137.94
## 17813           2852    1419.85
## 17814           1865     160.41
## 17815           1865       0.00
## 17816           1953     104.39
## 17817           2356  280455.10
## 17818           1861     150.60
## 17819           1569       0.00
## 17820           1812     469.58
## 17821           1816       0.00
## 17822           2989     869.36
## 17823           1841     112.96
## 17824           1840     381.14
## 17825           1855      99.17
## 17826           1856     541.61
## 17827           3037    3249.04
## 17828           1861     386.96
## 17829           1850       0.00
## 17830           1850     144.73
## 17831           2570     110.76
## 17832           1858     168.78
## 17833           1864     203.98
## 17834           1844   14423.08
## 17835           1855    2937.38
## 17836           1861     151.20
## 17837           1858     162.58
## 17838           1858     465.82
## 17839           2042      19.54
## 17840           1861     516.94
## 17841           1861     120.97
## 17842           1862      36.21
## 17843           1863    3115.26
## 17844           1855   39374.65
## 17845           1855    3159.78
## 17846           1848     127.97
## 17847           1847     135.43
## 17848           1848    1261.60
## 17849           2828     431.24
## 17850           1850     281.58
## 17851           1837     467.82
## 17852           1837     111.22
## 17853           1827      56.79
## 17854           1829     748.88
## 17855           1820     101.65
## 17856           1808       0.00
## 17857           1861   34982.68
## 17858           1861     401.81
## 17859           1861     470.85
## 17860           1862   11219.61
## 17861           1862    4836.45
## 17862           1862      18.00
## 17863           1861     858.09
## 17864           1858     629.14
## 17865           2086      66.38
## 17866           1865     771.45
## 17867           1858     232.43
## 17868           1861     116.39
## 17869           1861       0.00
## 17870           1858     165.08
## 17871           1939    1117.58
## 17872           1774     231.48
## 17873           3422     184.54
## 17874           1837       0.00
## 17875           1841   22812.47
## 17876           2561     279.10
## 17877           1851     584.51
## 17878           2252   14563.37
## 17879           1848     155.00
## 17880           1848     231.54
## 17881           1856    5179.84
## 17882           1856     727.00
## 17883           1857     201.65
## 17884           1858    3553.47
## 17885           1862       9.00
## 17886           1861     770.53
## 17887           1560   15504.46
## 17888           1785     141.05
## 17889           1856      84.39
## 17890           1848    4123.36
## 17891           2956      94.27
## 17892           1849     352.40
## 17893           1851     131.68
## 17894           1854      13.02
## 17895           1854      74.75
## 17896           2345     396.94
## 17897           1843     721.74
## 17898           1815   20869.20
## 17899           1822      64.01
## 17900           1808    1829.21
## 17901           1861      96.09
## 17902           1858    3754.41
## 17903           2669       0.00
## 17904           1861     534.31
## 17905           1501     411.76
## 17906           1688   28128.89
## 17907           1809   62703.41
## 17908           1806     316.48
## 17909           1837    6138.58
## 17910           1840     376.59
## 17911           1836     762.94
## 17912           1836    2643.92
## 17913           1851     105.23
## 17914           1850     136.24
## 17915           1847     219.65
## 17916           1855    1115.31
## 17917           1855     594.11
## 17918           1858       0.00
## 17919           1858       9.00
## 17920           1855    3782.08
## 17921           1856    2930.34
## 17922           1844     369.00
## 17923           1850     470.14
## 17924           1849     501.67
## 17925           1850     170.34
## 17926           2597     151.56
## 17927           1851      90.19
## 17928           1854     711.65
## 17929           1835      41.40
## 17930           1833    1313.71
## 17931           1834      65.65
## 17932           1840    7959.75
## 17933           1841       0.00
## 17934           1828       0.00
## 17935           1823      88.29
## 17936           1858     214.17
## 17937           1857       0.00
## 17938           1857   20420.85
## 17939           1812     134.34
## 17940           1835     125.75
## 17941           2327       0.00
## 17942           1854     201.35
## 17943           1851      92.00
## 17944           2262      52.00
## 17945           1856   16983.33
## 17946           1855     396.52
## 17947           2268    5446.07
## 17948           1857     168.72
## 17949           1786     165.77
## 17950           1736     133.39
## 17951           2363     128.21
## 17952           1855   23627.79
## 17953           1855      71.25
## 17954           1855       0.00
## 17955           1855     113.79
## 17956           2949      17.00
## 17957           1856     242.51
## 17958           1850   10893.58
## 17959           2756     130.99
## 17960           1847     137.98
## 17961           2093     654.40
## 17962           2975     354.02
## 17963           1850     233.31
## 17964           1854     115.42
## 17965           1836       0.00
## 17966           1835      69.00
## 17967           2872     883.73
## 17968           1843     298.24
## 17969           1844     243.32
## 17970           1837     111.49
## 17971           1826     327.30
## 17972            425       0.00
## 17973           1829       0.00
## 17974           1840     255.14
## 17975           1840    7287.73
## 17976           1844     467.62
## 17977           1844     170.29
## 17978           1843     295.21
## 17979           1844       0.00
## 17980           1842    9461.80
## 17981           1835   59688.77
## 17982           1836     122.01
## 17983           1833    2505.22
## 17984           1850      73.34
## 17985           3228    5731.83
## 17986           1850      80.83
## 17987           1848    1470.03
## 17988           1856     206.69
## 17989           1855      50.01
## 17990           1206      41.90
## 17991           1759    3544.33
## 17992           1785     301.13
## 17993           1788      92.60
## 17994           1591       0.00
## 17995           1662       0.00
## 17996           1645     593.04
## 17997           1849   15226.24
## 17998           1851     295.00
## 17999           1854      76.05
## 18000           1854      35.00
## 18001           1854     307.32
## 18002           1854    1811.01
## 18003           1836     210.57
## 18004           1841    8497.51
## 18005           2179     858.10
## 18006           1836       0.00
## 18007           1827    1088.71
## 18008           1490    1672.76
## 18009           1808     179.43
## 18010           1444       0.00
## 18011           1820     122.85
## 18012           1844     206.00
## 18013           1844     227.25
## 18014           1836     363.39
## 18015           1836     222.41
## 18016           1835     496.16
## 18017           1835     166.68
## 18018           1829      18.10
## 18019           1854     335.46
## 18020           1854     340.04
## 18021           1854     673.75
## 18022           1851     241.12
## 18023           1850       0.00
## 18024           1947    4220.42
## 18025           1848     139.61
## 18026           1015      71.47
## 18027           1655       0.00
## 18028           1848     707.04
## 18029           1847     408.56
## 18030           1847     131.58
## 18031           1850       0.00
## 18032           2744       7.25
## 18033           1834     173.96
## 18034           1835     572.38
## 18035           1843      36.21
## 18036           1843     168.21
## 18037           3365       0.00
## 18038           1837      14.09
## 18039           1829      37.68
## 18040           1829    3080.80
## 18041           1821     290.38
## 18042           1815    1589.19
## 18043           2643   49660.85
## 18044           1798     105.75
## 18045           1815       0.00
## 18046           1820      97.48
## 18047           1836    1619.26
## 18048           1836       0.00
## 18049           1836      79.80
## 18050           1854      51.16
## 18051           1849     451.37
## 18052           1836     171.62
## 18053           1835     265.66
## 18054           1779     553.25
## 18055           1779     161.84
## 18056           1755     284.59
## 18057           1884     237.85
## 18058           1836     977.69
## 18059           2187       0.00
## 18060           1836     120.00
## 18061           1836     460.04
## 18062           1835     225.02
## 18063           1834   15193.74
## 18064           1837    5492.27
## 18065           1840     211.88
## 18066           1844      53.31
## 18067           1849       0.00
## 18068           1849     458.06
## 18069           1850     111.76
## 18070           3227     987.50
## 18071           1851       0.00
## 18072           3074     127.84
## 18073           1799     160.81
## 18074           1799     228.60
## 18075           1074       0.00
## 18076           1791     926.06
## 18077           1785     141.21
## 18078           1682     152.80
## 18079           1798     135.08
## 18080           1807       0.00
## 18081           1835     421.85
## 18082           1820     162.43
## 18083           1850     357.49
## 18084           1848     397.77
## 18085           1847    3741.97
## 18086           1847      94.72
## 18087           2567     227.33
## 18088           1847      46.00
## 18089           1847     174.14
## 18090           2046   60065.04
## 18091           1844      59.40
## 18092           1841   34479.53
## 18093           1840       0.00
## 18094           1837    2084.27
## 18095           1836    1490.78
## 18096           1836     281.51
## 18097           1836     116.21
## 18098           1785     197.12
## 18099           1758   43827.90
## 18100           1584     196.10
## 18101           1835       0.00
## 18102           1835      66.45
## 18103           1836       0.00
## 18104           1836       0.00
## 18105           1834      88.17
## 18106           3057     269.63
## 18107           1833     332.25
## 18108           2458    6840.38
## 18109           1836       6.50
## 18110           1842     225.69
## 18111           1842      86.90
## 18112           1844     736.10
## 18113           1844     110.42
## 18114           1848     776.90
## 18115           1826     319.73
## 18116           1487     518.84
## 18117           1750     500.50
## 18118           1487     375.26
## 18119           2309     273.37
## 18120           1820     186.95
## 18121           1808     221.07
## 18122           1799     250.96
## 18123           1807      95.00
## 18124           1815     139.76
## 18125           1819     394.16
## 18126           1826     585.50
## 18127           1829    3461.33
## 18128           1829      61.35
## 18129           1847     530.11
## 18130           2690     188.70
## 18131           1841     287.21
## 18132           1842     165.05
## 18133           1837     222.27
## 18134           1829       0.00
## 18135           3080   16781.67
## 18136           1835     248.30
## 18137           2918     131.32
## 18138           1835     487.48
## 18139           1836       0.00
## 18140           2430     188.27
## 18141           1829     112.56
## 18142           1830     129.97
## 18143           1833     217.67
## 18144           1837      18.10
## 18145           1842    1095.29
## 18146           1842    1778.47
## 18147           2626     565.58
## 18148           1829    1081.88
## 18149           1829       0.00
## 18150           1826     346.62
## 18151           1478      19.00
## 18152           2263     130.30
## 18153           1823       0.00
## 18154           1808      82.77
## 18155           1802     242.02
## 18156           1815       0.00
## 18157           1844       0.00
## 18158           1843       7.00
## 18159           1837   30169.32
## 18160           1833     126.46
## 18161           1836     340.06
## 18162           1836     201.90
## 18163           1836     125.01
## 18164           1841      91.97
## 18165           1841     308.53
## 18166           1799    2433.98
## 18167           1749     240.74
## 18168           1785    1355.77
## 18169           1793     120.00
## 18170           1291      37.26
## 18171           1802       0.00
## 18172           1809   20579.85
## 18173           2674     272.42
## 18174           1819      47.35
## 18175           1820      41.00
## 18176           1820      68.98
## 18177           1841       0.00
## 18178           1842     483.64
## 18179           1842     227.79
## 18180           1842     405.58
## 18181           3008    5200.02
## 18182           2904    1092.58
## 18183           1842     310.54
## 18184           2029     460.09
## 18185           1843     263.37
## 18186           1843     188.16
## 18187           1837       0.00
## 18188           3249   34896.78
## 18189           1836     575.57
## 18190           1835       0.00
## 18191           1835     552.02
## 18192           2059     476.83
## 18193           1835     143.10
## 18194           1835     216.40
## 18195           1833      50.00
## 18196           1827     140.81
## 18197           1828       0.00
## 18198           1828     119.18
## 18199           1829     513.62
## 18200           1826       0.00
## 18201           2313    1959.96
## 18202           1785     134.15
## 18203           1792      30.00
## 18204           1829       0.00
## 18205           1833      61.68
## 18206           1833     344.32
## 18207           1835     475.96
## 18208           3045     333.33
## 18209           1835      61.40
## 18210           1835       0.00
## 18211           2873     135.95
## 18212           1837    3838.47
## 18213           1837       0.00
## 18214           1836       6.25
## 18215           1840     833.27
## 18216           1841     319.94
## 18217           1841     209.77
## 18218           1819       0.00
## 18219           1822       0.00
## 18220           1823    1431.31
## 18221           1763     695.60
## 18222           1821   90965.13
## 18223           1821       0.00
## 18224           1819       0.00
## 18225           1820     165.86
## 18226           1815      59.00
## 18227           1815       0.00
## 18228           1441       0.00
## 18229           1840    5571.15
## 18230           3601     768.38
## 18231           1840    1049.29
## 18232           1836     131.78
## 18233           1837       0.00
## 18234           1836    1273.86
## 18235           1835      68.26
## 18236           1835     265.97
## 18237           1835     183.53
## 18238           1835     378.23
## 18239           1836    1132.45
## 18240           1835   12726.13
## 18241           1835     139.17
## 18242           2284    9349.48
## 18243           1795     265.82
## 18244           1773      83.70
## 18245           1829     217.55
## 18246           1829     131.97
## 18247           1835     221.54
## 18248           1834       0.00
## 18249           1833     164.10
## 18250           1833       0.00
## 18251           1835    1049.44
## 18252           1836     489.43
## 18253           1836    6705.60
## 18254           1836       6.50
## 18255           3137     514.55
## 18256           1837     352.31
## 18257           1815      30.00
## 18258           1820     352.88
## 18259           1822     151.16
## 18260           1812    2983.03
## 18261           1799     151.85
## 18262           1800     230.13
## 18263           1798       0.00
## 18264           1812      81.68
## 18265           1821     532.03
## 18266           1836       0.00
## 18267           1836    2331.75
## 18268           1939   52364.07
## 18269           1835     158.04
## 18270           1833     741.20
## 18271           1833   13597.32
## 18272           1833       0.00
## 18273           1834     324.60
## 18274           1834    1443.60
## 18275           1834     243.50
## 18276           1833       0.00
## 18277           1829     142.48
## 18278           1828     278.26
## 18279           1791     648.32
## 18280           1828     121.90
## 18281           1834     136.29
## 18282           1834     313.89
## 18283           2577    4593.70
## 18284           1836       0.00
## 18285           1836     206.76
## 18286           1815     131.17
## 18287           1822     539.31
## 18288           1834       0.00
## 18289           1833    1656.29
## 18290           2489     439.47
## 18291           1828    2814.66
## 18292           1794     145.00
## 18293           1774     125.00
## 18294           1763     480.26
## 18295           1743      84.95
## 18296           1827     644.46
## 18297           1826     934.45
## 18298           2415      51.16
## 18299           1829     168.49
## 18300           1829     231.47
## 18301           2626     270.99
## 18302           1829    3178.73
## 18303           1829     361.41
## 18304           1829    1474.20
## 18305           2216       0.00
## 18306           1833    1241.42
## 18307           1834     340.59
## 18308           1834     299.80
## 18309           1834     261.36
## 18310           1821     309.91
## 18311           1815     131.80
## 18312           1816     381.74
## 18313           1816     287.42
## 18314           2038     192.19
## 18315           1801     371.06
## 18316           1737      62.68
## 18317           2024    6035.49
## 18318           1792    5200.00
## 18319           1779      16.25
## 18320           1807       0.00
## 18321           1799     353.76
## 18322           1799     469.00
## 18323           1816     304.42
## 18324           1819   17128.49
## 18325           1820     246.34
## 18326           1820       0.00
## 18327           2629     818.92
## 18328           2067      61.60
## 18329           1834     148.27
## 18330           1834     216.26
## 18331           1833     661.97
## 18332           1833   37865.35
## 18333           2301     581.54
## 18334           1833     793.09
## 18335           1935     433.83
## 18336           1833     217.17
## 18337           1833     511.03
## 18338           1830    1063.91
## 18339           1830     200.93
## 18340           1835     169.96
## 18341           3151       0.00
## 18342           1827     446.52
## 18343           1828    8023.35
## 18344           2983     365.63
## 18345           1828     908.05
## 18346           1718     389.00
## 18347           1784     431.57
## 18348           1785     190.32
## 18349           1862     170.87
## 18350           1830     229.10
## 18351           1833     241.77
## 18352           1822       0.00
## 18353           1821   42314.90
## 18354           1821   22312.54
## 18355           1821       0.00
## 18356           1820     322.63
## 18357           2847     199.78
## 18358           1820     422.80
## 18359           1820       0.00
## 18360           1816     315.17
## 18361           1799      96.21
## 18362           1800     348.39
## 18363           2813      66.75
## 18364           1812     449.88
## 18365           1808     157.59
## 18366           1707    4538.62
## 18367           1792     378.48
## 18368           1785     751.89
## 18369           1765       0.00
## 18370           2244     203.47
## 18371           1801     353.48
## 18372           1816     284.33
## 18373           1816     571.26
## 18374           2558     265.64
## 18375           1820    1147.65
## 18376           1820      92.50
## 18377           1820      86.63
## 18378           1812     481.53
## 18379           1822   38894.32
## 18380           1820     217.63
## 18381           1830     214.80
## 18382           2558       0.00
## 18383           2161    3108.48
## 18384           1828       0.00
## 18385           1828      65.18
## 18386           1828    1871.74
## 18387           1829     229.98
## 18388           2691     759.79
## 18389           1829     199.94
## 18390           1829     224.05
## 18391           1826    6437.93
## 18392           1826       0.00
## 18393           1737     254.23
## 18394           2690       0.00
## 18395            119     122.79
## 18396           1829     116.68
## 18397           1829     189.12
## 18398           1829     302.16
## 18399           2529   10096.90
## 18400           1828     715.54
## 18401           1829     818.30
## 18402           1820   24802.99
## 18403           1822       0.00
## 18404           1820      30.78
## 18405           1808       0.00
## 18406           2575     380.41
## 18407           1808     175.00
## 18408           1800     233.76
## 18409           1765     304.91
## 18410           2875       0.00
## 18411           1820       0.00
## 18412           1848    5881.31
## 18413           1829     233.57
## 18414           1829     742.80
## 18415           1672     412.50
## 18416           1829     269.95
## 18417           1829       0.00
## 18418           1828     148.38
## 18419           1819     181.84
## 18420           1820     472.29
## 18421           1808     479.52
## 18422           1795      33.14
## 18423           1791      66.40
## 18424           2887     245.52
## 18425           1802     243.50
## 18426           1820       0.00
## 18427           1820    5296.26
## 18428           1820     219.24
## 18429           1813       0.00
## 18430           1815     412.92
## 18431           1815    1042.40
## 18432           1822      11.25
## 18433           1822       0.00
## 18434           2955     117.44
## 18435           2262       0.00
## 18436           1822       0.00
## 18437           1823     611.74
## 18438           1823      24.16
## 18439           1823       0.00
## 18440           1828     278.86
## 18441           1828     342.32
## 18442           1827     396.73
## 18443           1826     141.79
## 18444           1829       0.00
## 18445           1791     103.08
## 18446           1791     128.51
## 18447           1827    1457.87
## 18448           1827     144.67
## 18449           2876      69.33
## 18450           1822     481.14
## 18451           1822     176.90
## 18452           1823    1423.25
## 18453           1821    5589.91
## 18454           1815     226.97
## 18455           1815    9070.49
## 18456           1814    1827.59
## 18457           1813     186.95
## 18458           1802       0.00
## 18459           2562      20.45
## 18460           1791      60.00
## 18461           1780      84.61
## 18462           1801     174.60
## 18463           1802     470.19
## 18464           1802       0.00
## 18465           1808      96.22
## 18466           1808       0.00
## 18467           1814      37.62
## 18468           1814       0.00
## 18469           1820     332.04
## 18470           1820     183.70
## 18471           1820     855.24
## 18472           1820     160.35
## 18473           1820      55.00
## 18474           1820     408.50
## 18475           1822     297.06
## 18476           1822     184.54
## 18477           1828     187.11
## 18478           1826      12.25
## 18479           1826     149.45
## 18480           1973      51.16
## 18481           1778    1657.19
## 18482           1787     259.03
## 18483           1771     186.18
## 18484           1763       0.00
## 18485           1387      47.00
## 18486           1632       0.00
## 18487           1700    1149.17
## 18488           1826     234.33
## 18489           1827       0.00
## 18490           1823     197.70
## 18491           1823   11577.33
## 18492           1823      12.50
## 18493           1950       0.00
## 18494           2212      36.21
## 18495           1816     225.10
## 18496           1816     331.01
## 18497           1815     125.26
## 18498           1808     220.44
## 18499           2879      51.16
## 18500           1799       0.00
## 18501           3015  189691.93
## 18502           1725      41.40
## 18503           1765     101.54
## 18504           1647     174.00
## 18505           1799     131.00
## 18506           1799     115.67
## 18507           1800    1418.44
## 18508           1815     206.96
## 18509           1816     913.87
## 18510           1836    1322.56
## 18511           1820     584.21
## 18512           1820     166.66
## 18513           2327     288.00
## 18514           1821   10970.44
## 18515           1821     100.00
## 18516           1821       0.00
## 18517           1368       0.00
## 18518           1774      96.29
## 18519           1417     104.33
## 18520           1787       0.00
## 18521           1646      38.09
## 18522           1759    1552.91
## 18523           1821     591.73
## 18524           1822     273.29
## 18525           1813     144.80
## 18526           1820     184.91
## 18527           1819    1746.04
## 18528           1821      37.38
## 18529           1820     189.04
## 18530           1812     278.56
## 18531           1505   29402.20
## 18532           1794     227.28
## 18533           1794       0.00
## 18534           1746     332.44
## 18535           1697      25.00
## 18536           1809     242.00
## 18537           3128     781.70
## 18538           1808      32.59
## 18539           1808    7098.40
## 18540           1799     966.67
## 18541           2507    5040.04
## 18542           3114     167.32
## 18543           2135      66.68
## 18544           1820     120.39
## 18545           1821    1548.73
## 18546           1822      63.32
## 18547           1819       0.00
## 18548           1820     157.98
## 18549           1820      79.46
## 18550           1814     569.47
## 18551           1815    1584.77
## 18552           1720      63.69
## 18553           1472     115.67
## 18554           1723     128.38
## 18555           1787       0.00
## 18556           1787   10770.45
## 18557           1787     162.97
## 18558           1820     289.86
## 18559           1820     929.00
## 18560           1819     410.52
## 18561           2526     228.17
## 18562           1816      78.17
## 18563           1816       0.00
## 18564           1816     137.53
## 18565           1821   10193.08
## 18566           1820   30791.14
## 18567           1820     254.79
## 18568           1812     229.00
## 18569           2718     139.01
## 18570           1787       0.00
## 18571           2085     293.65
## 18572           1781     112.86
## 18573           1794     158.68
## 18574           1795   18235.19
## 18575           1765     371.10
## 18576           1812     521.09
## 18577           1808       0.00
## 18578           1802      61.35
## 18579           1808       0.00
## 18580           1820     489.96
## 18581           1820     305.53
## 18582           1816      78.42
## 18583           1819     459.45
## 18584           2778      50.01
## 18585           1819   30455.05
## 18586           1816    2215.79
## 18587           1819     279.68
## 18588           1819    1537.41
## 18589           1815     653.48
## 18590           1714     449.96
## 18591           1791       8.25
## 18593           1759      72.65
## 18594           1815       0.00
## 18595           1815   62102.45
## 18596           1815     104.66
## 18597           2331    3044.83
## 18598           1813     142.15
## 18599           2976     816.31
## 18600           2813      87.46
## 18601           1819     124.03
## 18602           1816   47649.64
## 18603           1820     273.07
## 18604           1808       0.00
## 18605           1799     149.35
## 18606           1799     213.37
## 18607           1799      78.50
## 18608           1560   10898.78
## 18609           1794    1137.35
## 18610           2696     458.75
## 18611           1799     146.79
## 18612           1812       0.00
## 18613           1801     476.14
## 18614           1801       0.00
## 18615           1801     494.09
## 18616           1802     261.32
## 18617           1802     149.13
## 18618           1806     185.83
## 18619           2031     591.12
## 18620           1812       0.00
## 18621           1812     256.43
## 18622           1812       8.25
## 18623           2170       0.00
## 18624           1813     795.17
## 18625           2948     274.05
## 18626           1815     582.44
## 18627           1793   72394.42
## 18628           2324      97.60
## 18629           2052     458.17
## 18630           2344     232.88
## 18631           1816       0.00
## 18632           1816       0.00
## 18633           1802   20737.54
## 18634           1812     255.94
## 18635           2165     608.65
## 18636           2734     428.88
## 18637           1785     710.65
## 18638           1784     249.72
## 18639           1802       0.00
## 18640           1815     533.98
## 18641           1785     976.92
## 18642           2403   66051.04
## 18643           1402      21.75
## 18644           1749       0.00
## 18645           3783   51551.59
## 18646           2647      79.33
## 18647           1813     143.00
## 18648           2951      89.14
## 18649           1812       0.00
## 18650           1802      20.00
## 18651           1802       0.00
## 18652           1812     447.06
## 18653           2048     335.90
## 18654           1808     834.12
## 18655           1808     460.23
## 18656           1808       0.00
## 18657           1808   74979.97
## 18658           1808      92.60
## 18659           1799     478.53
## 18660           1799       0.00
## 18661           1798      91.64
## 18662           1799     102.89
## 18663           2574     111.49
## 18664           1738   29004.64
## 18665           1785    4090.84
## 18666           1791     101.60
## 18667           1791     108.42
## 18668           1799     199.22
## 18669           2694     189.47
## 18670           1801       0.00
## 18671           3148       6.50
## 18672           1813     450.61
## 18673           1802     243.75
## 18674           1802     415.72
## 18675           1802     728.83
## 18676           1859       0.00
## 18677           1812     224.92
## 18678           2902    3115.52
## 18679           1813     382.74
## 18680           1813       0.00
## 18681           1813   27807.61
## 18682           1725     943.64
## 18683           1792     809.92
## 18684           2069    1724.76
## 18685           1795       0.00
## 18686           1756      82.77
## 18687           1735     313.22
## 18688           1541      87.58
## 18689           1813    6441.33
## 18690           1812       0.00
## 18691           1813     520.22
## 18692           1807       0.00
## 18693           1806       0.00
## 18694           1806       0.00
## 18695           1808     170.00
## 18696           1809     377.94
## 18697           2521      75.00
## 18698           1799     281.26
## 18699           1799      61.35
## 18700           1799    2148.33
## 18701           1799     448.13
## 18702           1799      54.32
## 18703           2139     272.70
## 18704           1794       0.00
## 18705           1793    3315.42
## 18706           1793     200.07
## 18707           1785    4008.52
## 18708           1774     330.23
## 18709           1765     475.10
## 18710           1799     140.37
## 18711           2615      61.35
## 18712           1800       6.50
## 18713           1800      12.50
## 18714           2739    2375.14
## 18715           1808     131.63
## 18716           1809     174.18
## 18717           1809     363.25
## 18718           1808      84.39
## 18719           1808    1179.81
## 18720           1812       0.00
## 18721           1876       0.00
## 18722           1802     122.52
## 18723           2297     111.83
## 18724           1765     555.49
## 18725           1792     256.09
## 18726           1793       6.50
## 18727           1791      85.45
## 18728           1793     373.69
## 18729           1793     128.81
## 18730           1739     345.11
## 18731           1749   19819.43
## 18732           1802       0.00
## 18733           1808     182.35
## 18734           1808      82.77
## 18735           1808     141.21
## 18736           1807     328.95
## 18737           1799     253.80
## 18738           1793     528.85
## 18739           1869     307.61
## 18740           1696     111.83
## 18741           1799     478.93
## 18742           1807    1498.35
## 18743           1808     386.61
## 18744           1808     774.28
## 18745           1808     418.84
## 18746           1794       0.00
## 18747           1808     372.64
## 18748           2543     572.34
## 18749           1800      13.75
## 18750           1799       0.00
## 18751           1715      84.25
## 18752           2397      65.18
## 18753           1793    2096.89
## 18754           1793   20870.66
## 18755           1788       0.00
## 18756           1792      94.91
## 18757           2955     416.31
## 18758           1777    1182.36
## 18759           2504  270660.49
## 18760           1759      51.40
## 18761           1763      50.01
## 18762           1778     230.48
## 18763           1693     105.04
## 18764           2958    2736.50
## 18765           1798       0.00
## 18766           1800     118.25
## 18767           1799     211.51
## 18768           1808    4960.37
## 18769           2799     102.11
## 18770           1807    5863.96
## 18771           1997     180.56
## 18772           1801     357.47
## 18773           2730     160.70
## 18774           1801     267.37
## 18775           1723      32.59
## 18776           1743     213.95
## 18777           1779   23040.04
## 18778           1785       6.25
## 18779           1788       0.00
## 18780           3118    1057.88
## 18781           1785    2222.46
## 18782           1787       0.00
## 18783           1794    1312.95
## 18784           1795     882.48
## 18785           1773      58.60
## 18786           1801       0.00
## 18787           1801     108.63
## 18788           2320      86.33
## 18789           1802     217.93
## 18790           2002      77.91
## 18791           1802     726.97
## 18792           1799    7489.19
## 18793           1799     109.00
## 18794           1799     640.42
## 18795           1800      21.00
## 18796           1800      12.50
## 18797           1799    1177.67
## 18798           1800       0.00
## 18799           1799     338.25
## 18800           1710     457.38
## 18801           1773     313.69
## 18802           1765       0.00
## 18803           2499     771.78
## 18804           1794       0.00
## 18805           1785      38.37
## 18806           1791     756.61
## 18807           1792     106.49
## 18808           1792       0.00
## 18809           1777       0.00
## 18810           2129    1230.30
## 18811           1746     241.20
## 18812           1735     400.67
## 18813           1609    2615.31
## 18814           1803     472.87
## 18815           1798   18886.02
## 18816           1800     237.76
## 18817           2731   34786.35
## 18818           1799    1605.69
## 18819           1802      15.69
## 18820           2223     860.80
## 18821           2259     139.26
## 18822           1710     583.30
## 18823           1723     124.49
## 18824           1725     263.72
## 18825           1575       0.00
## 18826           1641     113.96
## 18827           1638     138.48
## 18828           2614      27.25
## 18829           1779     143.25
## 18830           2699   13152.59
## 18831           1787       0.00
## 18832           1788       0.00
## 18833           1788     145.89
## 18834           2450     114.71
## 18835           1794     339.30
## 18836           1794     327.98
## 18837           1793    4477.53
## 18838           1793      78.50
## 18839           2467   28591.46
## 18840           1675     250.00
## 18841           1801       0.00
## 18842           1799     829.15
## 18843           2532       6.50
## 18844           1800     458.71
## 18845           1785     789.93
## 18846           1800     288.67
## 18847           3064     192.65
## 18848           1798     165.79
## 18849           2445   33568.45
## 18850           1802    8067.85
## 18851           1801     579.14
## 18852           1792     589.30
## 18853           1793    1014.00
## 18854           1793     160.70
## 18855           1794       0.00
## 18856           1757       0.00
## 18857           1746     284.14
## 18858           1743       0.00
## 18859           2577       0.00
## 18860           1919    1058.96
## 18861           1802      78.37
## 18862           1799     303.17
## 18863           1799       6.50
## 18864           3012     736.33
## 18865           1799      77.88
## 18866           1800     351.33
## 18867           1802       0.00
## 18868           1727     292.80
## 18869           1773     128.81
## 18870           1773     141.41
## 18871           1794      97.47
## 18872           1793       0.00
## 18873           2480       0.00
## 18874           1795     243.52
## 18875           1791      66.26
## 18876           1791     235.33
## 18877           1786     415.13
## 18878           1785     160.93
## 18879           1781     111.19
## 18880           1779       5.10
## 18881           1777      74.00
## 18882           1801       0.00
## 18883           1800     320.99
## 18884           1799   31610.21
## 18885           1799   37329.91
## 18886           1799    1307.21
## 18887           1799     300.31
## 18888           1799       6.50
## 18889           1799     878.51
## 18890           1785     178.32
## 18891           1787       0.00
## 18892           1787       0.00
## 18893           1793      94.21
## 18894           1793     186.88
## 18895           1984     684.65
## 18896           1948  101834.86
## 18897           1774     222.63
## 18898           1772     158.96
## 18899           1764    1200.61
## 18900           1599      55.00
## 18901           1646   18159.66
## 18902           1798       0.00
## 18903           1798     433.00
## 18904           1798     890.64
## 18905           1797     891.81
## 18906           1799       0.00
## 18907           1800     172.35
## 18908           1800     199.15
## 18909           1763      43.49
## 18910           1870     891.65
## 18911           1794     150.61
## 18912           2052    2848.43
## 18913           1793     460.49
## 18914           1794       0.00
## 18915           1787     122.55
## 18916           1786     237.81
## 18917           1785       0.00
## 18918           2135       0.00
## 18919           1792     593.36
## 18920           1777       0.00
## 18921           1779     157.25
## 18922           1689       0.00
## 18923           3119    1121.18
## 18924           2525    3873.17
## 18925           1798    1028.58
## 18926           1798     211.40
## 18927           1721     259.40
## 18928           1788     589.08
## 18930           1787      61.35
## 18931           1788  156111.64
## 18932           1785   13477.55
## 18933           1785       0.00
## 18934           2192    2673.77
## 18935           1794       0.00
## 18936           1794       0.00
## 18937           1795      96.84
## 18938           1794     516.40
## 18939           1794    1020.63
## 18940           1772     557.77
## 18941           1763       0.00
## 18942           1798   14992.32
## 18943           1725      40.93
## 18944           2273     359.77
## 18947           1793    1034.23
## 18948           1793    1130.10
## 18949           1785      62.00
## 18950           1785     154.79
## 18951           1785    2582.75
## 18952           1788       0.00
## 18953           1787    8556.26
## 18954           1787    1160.00
## 18955           1791    2957.65
## 18956           1791    5496.53
## 18957           1791    1471.60
## 18958           1792      86.22
## 18959           1779     115.52
## 18960           1784     124.17
## 18961           1546       0.00
## 18962           1652     989.31
## 18963           1725     362.24
## 18964           1792       0.00
## 18965           1793   25509.31
## 18966           1793     383.64
## 18967           2374     577.69
## 18968           1794     229.33
## 18969           1793    1234.69
## 18970           1791       0.00
## 18971           2323     302.83
## 18972           1780       0.00
## 18973           1795    6004.72
## 18974           1779     319.40
## 18975           1773     265.72
## 18976           1742       0.00
## 18977           1723    1057.60
## 18978           1732      79.95
## 18979           1570       0.00
## 18980           1763     398.39
## 18981           1753      19.82
## 18982           1392      85.08
## 18983           1773     311.35
## 18984           1765       0.00
## 18985           1779      66.68
## 18986           1874       0.00
## 18987           1781       0.00
## 18988           1785    2517.98
## 18989           1784   24568.45
## 18990           1784     145.50
## 18991           1792     402.34
## 18992           2889     195.55
## 18993           1786    1089.89
## 18994           1786    5146.49
## 18995           1785     750.15
## 18996           3647   27500.91
## 18997           1785     250.34
## 18998           1793     511.80
## 18999           1793     342.96
## 19000           1793       6.25
## 19001           1623       0.00
## 19002           1591       0.00
## 19003           1701      78.63
## 19004           1931     280.38
## 19005           1338       0.00
## 19006           1785      51.16
## 19007           1786       0.00
## 19008           2757    1073.52
## 19009           1787      91.21
## 19010           1793     188.47
## 19011           1792     259.20
## 19012           1784   21064.95
## 19013           1785     110.85
## 19014           3085   10595.43
## 19015           1879  245404.97
## 19016           1773       0.00
## 19017           1773     501.96
## 19018           1774     508.23
## 19019           1777      47.07
## 19020           1738       0.00
## 19021           1746     269.45
## 19022           1746     370.17
## 19023           1723     126.73
## 19024           1745     158.79
## 19025           2470    1857.03
## 19026           1736    4694.58
## 19027           1759       0.00
## 19028           1774     520.52
## 19029           2998     124.06
## 19030           1770     183.58
## 19031           1785    1697.93
## 19032           1784   34704.28
## 19033           1778     572.56
## 19034           1875      71.56
## 19035           1777      27.34
## 19036           1779     156.80
## 19037           1792     526.73
## 19038           1793    1284.83
## 19039           1792     150.29
## 19040           1791     385.40
## 19041           2545   10275.68
## 19042           1791     329.10
## 19043           1788     113.77
## 19044           1788       0.00
## 19045           1786     162.12
## 19046           1786       0.00
## 19047           1675     239.16
## 19048           1680     200.42
## 19049           1786    1537.60
## 19050           1785       6.25
## 19051           3087    1307.16
## 19052           1905      97.50
## 19053           2246       0.00
## 19054           1777       0.00
## 19055           1777       0.00
## 19056           1780     269.92
## 19057           1766       0.00
## 19058           1773     447.38
## 19059           1774     128.78
## 19060           2867  357878.78
## 19061           1777       0.00
## 19062           1777     416.44
## 19063           1765     292.68
## 19064           1777       0.00
## 19065           1777     302.57
## 19066           3022     338.59
## 19067           1956     562.15
## 19068           1773    1959.69
## 19069           1773       0.00
## 19070           1779     339.15
## 19071           1784     131.68
## 19072           1785     168.81
## 19073           2196     631.46
## 19074           3612   53170.74
## 19075           1785     172.87
## 19076           1786     732.98
## 19077           1787       0.00
## 19078           1787     144.27
## 19079           1791     220.58
## 19080           1791     110.11
## 19081           1764     454.23
## 19082           1764     100.58
## 19083           1757      63.55
## 19084           1750     345.29
## 19085           1116     144.24
## 19086           1709      22.58
## 19087           1787    4358.72
## 19088           3055    5302.89
## 19089           1674       0.00
## 19090           1787     201.80
## 19091           1786    8433.81
## 19092           1785       0.00
## 19093           1785     151.58
## 19094           2357     174.05
## 19095           1777      87.37
## 19096           1774     240.69
## 19097           1774     360.06
## 19098           2130      94.14
## 19099           1777     202.68
## 19100           1777     105.42
## 19101           1777     100.00
## 19102           1777    2196.03
## 19103           1777      68.58
## 19104           1779     376.45
## 19105           1779     939.10
## 19106           1785       0.00
## 19107           1784      68.98
## 19108           2065   27636.87
## 19109           1781       0.00
## 19111           1923       0.00
## 19112           1785     180.20
## 19113           1785     159.81
## 19114           1785     390.57
## 19115           1786   15235.23
## 19116           1787     127.44
## 19117           1738    2359.13
## 19118           1759       0.00
## 19119           1763   23344.14
## 19120           1760     163.17
## 19121           1760     330.85
## 19122           1729      76.00
## 19123           1725    1182.91
## 19124           1563     223.48
## 19125           2072    2649.40
## 19126           1785     541.98
## 19127           1780     140.64
## 19128           1780       0.00
## 19129           1781     261.66
## 19130           1779     446.43
## 19131           1778    6175.60
## 19132           1777  180583.95
## 19133           2583       0.00
## 19134           1777     242.35
## 19135           2001      78.17
## 19136           1985     316.49
## 19137           1774      96.68
## 19138           1777     184.49
## 19139           1774    1058.86
## 19140           1773      61.35
## 19141           1773     119.97
## 19142           1773     282.94
## 19143           1773    1919.67
## 19144           1773     215.22
## 19145           1773      83.90
## 19146           1772       0.00
## 19147           1766     276.55
## 19148           1765    3362.30
## 19149           1765    2602.23
## 19150           1695     222.49
## 19151           1765      78.17
## 19152           1765      12.87
## 19153           1765    1134.94
## 19154           1765       0.00
## 19155           1765    2383.04
## 19156           1772      59.50
## 19157           1772       0.00
## 19158           1778   17466.80
## 19159           1781    7531.20
## 19160           1781     490.73
## 19161           2307      32.59
## 19162           2072     139.44
## 19163           1784       0.00
## 19164           1784     141.27
## 19165           2355     266.45
## 19166           1760       0.00
## 19167           1764     182.07
## 19168           1764     617.47
## 19169           1759       0.00
## 19170           1742       0.00
## 19171           1591      75.00
## 19172           1619       0.00
## 19173           1619       0.00
## 19174           1725       0.00
## 19175           1711     181.81
## 19176           1716     208.57
## 19177           1702     348.96
## 19178           1764     222.39
## 19179           1764       0.00
## 19180           2261     112.99
## 19181           1781       6.50
## 19182           2845     706.46
## 19183           2735     125.79
## 19184           1781     254.49
## 19185           1781     242.19
## 19186           1781     602.72
## 19187           1781     157.84
## 19188           1781       6.50
## 19189           1781     172.36
## 19190           2500     118.20
## 19191           1778    4360.73
## 19192           1778    2674.96
## 19193           1777    2746.35
## 19194           1765   31488.82
## 19195           1770    2562.51
## 19196           1773    4513.28
## 19197           1950     102.89
## 19198           1765     214.17
## 19199           1631       0.00
## 19200           1707     313.15
## 19201           2774     170.71
## 19202           1777     289.19
## 19203           1773     122.15
## 19204           1786   59987.17
## 19205           3070      51.51
## 19206           1770     173.47
## 19207           1772     214.36
## 19208           1777     207.91
## 19209           1777       0.00
## 19210           1777       0.00
## 19211           1779     285.76
## 19212           1780       0.00
## 19213           1759     217.01
## 19214           1764      94.66
## 19215           1736     400.19
## 19216           1749      65.00
## 19217           1688     153.56
## 19218           1694     138.10
## 19219           1730      46.56
## 19220           1764      50.01
## 19221           1759     518.22
## 19222           1756   32199.10
## 19223           1755     526.43
## 19224           1780       0.00
## 19225           1778      96.00
## 19226           2115    8993.08
## 19227           1777     320.02
## 19228           1777     103.67
## 19229           1820     131.92
## 19230           2540       0.00
## 19231           2104     121.66
## 19232           1778      78.17
## 19233           1778     712.96
## 19234           1781     783.25
## 19235           1780     280.90
## 19236           1885       6.50
## 19237           1759     273.16
## 19238           1746    2891.47
## 19239           1744       0.00
## 19240           2402      70.00
## 19241           1570   14470.03
## 19242           1999   19763.93
## 19243           1736       0.00
## 19244           1735     252.47
## 19245           1759     315.58
## 19246           1753       0.00
## 19247           1735      37.62
## 19248           1779       5.70
## 19249           2351     119.98
## 19250           1779     385.30
## 19251           1778    7088.06
## 19252           1778     176.46
## 19253           1778     192.94
## 19254           1777     233.30
## 19255           1777     720.66
## 19256           1777       0.00
## 19257           1777     292.96
## 19258           1777     118.03
## 19259           2445    1394.77
## 19260           1772      98.86
## 19261           1765     135.61
## 19262           1766   18794.50
## 19263           2791   11694.83
## 19264           2478    2400.46
## 19265           1618       0.00
## 19266           1682       0.00
## 19267           1662     103.99
## 19268           1721      78.84
## 19269           1732   20946.07
## 19270           1725      46.56
## 19271           1561     411.46
## 19272           1765    2418.82
## 19273           1770      88.10
## 19274           1772     161.61
## 19275           1772    7366.49
## 19276           1772       7.80
## 19277           1777     940.00
## 19278           1777    1004.39
## 19279           1774     168.26
## 19280           1773     193.86
## 19281           1773     263.42
## 19282           1773      91.21
## 19283           1774    3403.68
## 19284           1777     133.00
## 19285           1779     103.46
## 19286           1968     256.25
## 19287           2984     138.17
## 19288           1779     169.86
## 19289           1753      64.01
## 19290           1759      87.61
## 19291           1760     997.43
## 19292           1759       0.00
## 19293           1760    1374.68
## 19294           1764      61.35
## 19295           1736     252.47
## 19297           1743     123.34
## 19298           1744    1044.71
## 19299           1750     103.98
## 19300           1682     509.68
## 19301           1725     127.90
## 19302           1637       0.00
## 19303           1764      96.29
## 19304           1759     196.37
## 19305           1759     111.32
## 19306           1760     109.62
## 19307           1759    1003.72
## 19308           1757       0.00
## 19309           1758       0.00
## 19310           2335     568.32
## 19311           1753     181.02
## 19312           1778      29.86
## 19313           1777       6.25
## 19314           1773     107.68
## 19315           1772    1353.20
## 19316           1765       0.00
## 19317           2024      66.68
## 19318           1724     549.02
## 19319           1728     207.58
## 19320           1716       0.00
## 19321           1714     100.00
## 19322           1772     687.35
## 19323           1772     185.89
## 19324           2267     263.74
## 19325           1770    1945.71
## 19326           1771     132.85
## 19327           4040  322874.57
## 19328           1774       0.00
## 19329           1760    3740.10
## 19330           1764    1649.23
## 19331           1764     100.00
## 19332           1764     127.97
## 19333           1744    6873.67
## 19334           1682    1330.75
## 19335           1750     164.98
## 19336           1750     114.90
## 19337           1750     182.85
## 19338           1737     545.56
## 19339           1764     285.33
## 19340           1764     284.25
## 19341           2848       0.00
## 19342           1759     163.17
## 19343           1759     674.93
## 19344           1774     573.79
## 19345           1770     299.17
## 19346           1765     171.14
## 19347           1772      20.03
## 19348           1773     618.69
## 19349           1773     273.63
## 19350           2102     292.64
## 19351           1603     315.14
## 19352           1710       0.00
## 19353           1773     163.63
## 19354           1765       6.25
## 19355           1770    4629.00
## 19356           1758    2057.52
## 19357           1750      51.21
## 19358           1661     326.60
## 19359           1739    1032.67
## 19360           1759       0.00
## 19361           1751    7277.98
## 19362           3065     297.70
## 19363           1772    4492.50
## 19364           1721      32.59
## 19365           1732       0.00
## 19366           1732       0.00
## 19367           3137   23542.64
## 19368           1772   23430.56
## 19369           1772     103.09
## 19370           1766     102.07
## 19371           1766    3893.37
## 19372           1770     222.63
## 19373           1770     256.79
## 19374           1770     378.62
## 19375           2308       5.00
## 19376           1765   18872.14
## 19377           1765       0.00
## 19378           1765     446.36
## 19379           1765      57.03
## 19380           1755     259.22
## 19381           2362     219.30
## 19382           1759     432.82
## 19383           1759     193.28
## 19384           1759     213.36
## 19385           1758       0.00
## 19386           1756     394.40
## 19387           1764     664.64
## 19388           1760     263.58
## 19389           1760     210.60
## 19390           2597      65.18
## 19391           1763   23911.01
## 19392           2385    4334.41
## 19393           1739     297.36
## 19394           1739      74.19
## 19395           1242      61.35
## 19396           1710     116.64
## 19397           1791      18.10
## 19398           1736    3644.31
## 19399           1743      81.60
## 19400           1764      19.75
## 19401           1764      98.25
## 19402           1759       0.00
## 19403           1760       0.00
## 19404           2898     309.24
## 19405           1967     146.15
## 19406           1759      68.98
## 19407           1755     361.66
## 19408           1755     203.22
## 19409           1765     939.48
## 19410           1771      68.84
## 19411           1770   15860.45
## 19412           1765     170.31
## 19413           2715     380.29
## 19414           1653       0.00
## 19415           1765       6.50
## 19416           1770     734.58
## 19417           2788    2503.44
## 19418           1765     119.68
## 19419           1765    1397.98
## 19420           1755     226.39
## 19421           1759     275.03
## 19422           1759     290.84
## 19423           1758       0.00
## 19424           1760      55.00
## 19425           1760      85.00
## 19426           1760     162.80
## 19427           1763     128.18
## 19428           1764    7379.12
## 19429           1750      50.69
## 19430           1749    3932.92
## 19431           1735     986.82
## 19432           1739     100.00
## 19433           1700   14350.56
## 19434           1708      66.68
## 19435           2628       0.00
## 19436           1743       0.00
## 19437           1736     128.61
## 19438           1764      20.00
## 19439           1763     170.80
## 19440           2739      40.00
## 19441           2783     264.20
## 19442           1759   13500.80
## 19443           1756       0.00
## 19444           1765     491.50
## 19445           1770     239.86
## 19446           1765     206.21
## 19447           1766     724.40
## 19448           1724      91.21
## 19449           1728     681.00
## 19450           1765     519.17
## 19451           1755     389.62
## 19452           1753     231.20
## 19453           1759     177.95
## 19454           1767     308.49
## 19455           1764       0.00
## 19456           1764     180.49
## 19457           1736       0.00
## 19458           1749       0.00
## 19459           1749       0.00
## 19460           1744      32.59
## 19461           1744     311.50
## 19462           1744      61.35
## 19463           1750      79.06
## 19464           1764     183.80
## 19465           1764     362.00
## 19466           1757   92148.03
## 19467           2961     117.52
## 19468           2771       0.00
## 19469           1765     962.82
## 19470           1758  116004.62
## 19471           2978      85.65
## 19472           1759     134.97
## 19473           1759       0.00
## 19474           1735     202.53
## 19475           1687       0.00
## 19476           2295    1062.18
## 19477           1758     124.93
## 19478           1755     472.34
## 19479           1752       0.00
## 19480           1753     523.29
## 19481           1763     419.28
## 19482           2521    3483.04
## 19483           1666     445.63
## 19484           1709     191.95
## 19485           2321    1232.44
## 19486           1763     181.51
## 19487           1764     318.28
## 19488           1764       0.00
## 19489           1760    1868.39
## 19490           1760     318.64
## 19491           1764    1424.18
## 19492           1750     569.07
## 19493           1755     108.42
## 19494           1753      67.43
## 19495           1759   40535.33
## 19496           1759       0.00
## 19497           1759     156.80
## 19498           2549     247.93
## 19499           1749       0.00
## 19500           1533     232.41
## 19501            804       0.00
## 19502           1688   18963.60
## 19504           1749     195.69
## 19506           1744     842.89
## 19507           2282    8739.64
## 19508           1743     181.49
## 19509           1739     637.92
## 19510           1759    1583.71
## 19511           1758     343.25
## 19512           1758     239.14
## 19513           1753     603.95
## 19514           1753     271.24
## 19515           1764    3927.99
## 19516           1760       0.00
## 19517           1760     114.39
## 19518           1764     771.46
## 19519           1764     241.78
## 19520           1763     138.80
## 19521           2517     312.67
## 19522           1763     183.09
## 19523           2155     527.88
## 19524           1697      85.50
## 19525           1675     195.54
## 19526           1725     477.25
## 19527            997       0.00
## 19528           1709     429.56
## 19529           1717     191.21
## 19530           1760     148.26
## 19531           1760     158.98
## 19532           1755       0.00
## 19533           1752     198.10
## 19534           1758     345.21
## 19535           1757     130.79
## 19536           2215    2826.38
## 19537           1736      87.15
## 19538           2318     200.23
## 19539           3056   73302.06
## 19540           1743       0.00
## 19541           1743       0.00
## 19542           2580  128820.54
## 19543            109       0.00
## 19544           2529     234.44
## 19545           2513     119.45
## 19546           2977     186.49
## 19547           1716     116.30
## 19548           1808     563.48
## 19549           1702     198.30
## 19550           1743       0.00
## 19551           1744      84.61
## 19552           1744     154.33
## 19553           1736    5086.15
## 19554           1742       0.00
## 19555           1742    5375.83
## 19556           1758      92.15
## 19557           1753     140.57
## 19558           1751    1087.90
## 19559           1760     154.46
## 19560           1759       6.25
## 19561           1679     585.48
## 19562           2798     182.42
## 19563           1758     874.00
## 19564           1954      68.25
## 19565           1759     761.08
## 19566           1742     219.75
## 19567           2253     107.59
## 19568           1724     291.67
## 19569           1750       0.00
## 19570           1743    1719.22
## 19571           1743       0.00
## 19572           2178      97.90
## 19573           1757     406.63
## 19574           1757     153.55
## 19575           3110       0.00
## 19576           1756     365.04
## 19577           2199     194.24
## 19578           1729       0.00
## 19579           1756    2334.64
## 19580           1753       0.00
## 19581           1753     608.53
## 19582           1752     570.74
## 19583           1751    1501.48
## 19584           1751       0.00
## 19585           1757    1937.85
## 19586           1758     311.90
## 19587           1758    4563.67
## 19588           1759     306.69
## 19589           1759     991.24
## 19590           1743      92.60
## 19591           1743      98.84
## 19592           1738      50.01
## 19593           1742      61.36
## 19594           1738   80493.29
## 19595           1743    1044.74
## 19596           1744      84.61
## 19597           1745       0.00
## 19598           1745     207.86
## 19599           2294     301.91
## 19600           1972     201.85
## 19601           1750       0.00
## 19602           1746   55623.09
## 19603           1618     169.40
## 19604           1520     137.31
## 19605           1725      43.49
## 19606           1718     157.10
## 19607           1744     137.81
## 19608           1743      80.00
## 19609           1743    1238.63
## 19610           1743     350.45
## 19611           2849     243.91
## 19612           2615      51.49
## 19613           1758     856.85
## 19614           2255    1233.28
## 19615           1758     231.58
## 19616           1757       0.00
## 19617           1757     265.27
## 19618           1751   15996.74
## 19619           1756      50.01
## 19620            145     352.93
## 19621           1710     237.28
## 19622           1709      78.17
## 19623           1290    4575.00
## 19624           1756      53.31
## 19625           1752     153.06
## 19626           2472     785.23
## 19627           1757  229792.76
## 19628           1738       0.00
## 19629           1736      68.38
## 19630           1743      84.89
## 19631           1743     576.57
## 19632           1744     108.04
## 19633           1744     218.78
## 19634           1750    1255.89
## 19635           1749      81.86
## 19636           1735     155.49
## 19637           1540     337.28
## 19638           1679     449.12
## 19639           2732     917.65
## 19640           1700     888.42
## 19641           1721      69.51
## 19642           1716     706.88
## 19643           1716     703.40
## 19644           1716     104.70
## 19645           1749     321.44
## 19646           1750      30.00
## 19647           1746     464.24
## 19648           1746       0.00
## 19649           1746       0.00
## 19650           1746    1076.28
## 19651           1872     297.61
## 19652           1743   22537.84
## 19653           3289     255.20
## 19654           1743      81.64
## 19655           1738       0.00
## 19656           1738       0.00
## 19657           1743       0.00
## 19658           1751     301.13
## 19659           1751    1029.33
## 19660           1751   70676.38
## 19661           1756       0.00
## 19662           2763     579.04
## 19663           1753   67866.44
## 19664           2628     835.54
## 19665           1753      12.50
## 19666           2592       6.50
## 19667           1753    3139.38
## 19668           1694     167.93
## 19669           1686     135.20
## 19670           1661    3471.24
## 19671           1487      56.68
## 19672           1710   11000.61
## 19673           1732      99.02
## 19674           1725      63.53
## 19675           1725       0.00
## 19676           1723    4179.07
## 19677           1753       0.00
## 19678           1756      95.45
## 19679           1753       0.00
## 19680           2684       0.00
## 19681           1743     106.12
## 19682           1742     858.80
## 19683           1743       0.00
## 19684           1407      32.59
## 19685           1540       0.00
## 19686           1620      64.01
## 19687           2059  205500.13
## 19688           1700      83.60
## 19689           1743     115.00
## 19690           1746    1512.07
## 19691           1749      88.69
## 19692           1750       0.00
## 19693           1742     266.72
## 19694           1752      75.51
## 19695           1925     514.24
## 19696           1751    1821.52
## 19697           2158     128.53
## 19698           1652    4812.00
## 19699           1716     239.19
## 19700           1715      86.64
## 19701           1722       0.00
## 19702           1751     343.48
## 19703           1736     103.76
## 19704           2787     110.83
## 19705           1749       0.00
## 19706           1745     124.83
## 19707           1745       0.00
## 19708           1528     121.93
## 19709           1836    1673.55
## 19710           1725     208.97
## 19711           1745     528.52
## 19712           3193    9334.06
## 19713           1744      66.05
## 19714           1743    1330.05
## 19715           1744      76.09
## 19716           2506   26348.26
## 19717           1746       0.00
## 19718           1746     311.26
## 19719           1746     237.47
## 19720           1750     326.46
## 19721           1750     429.34
## 19722           1750       0.00
## 19723           1750   22780.40
## 19724           1750      30.00
## 19725           1737      66.68
## 19726           1743     190.64
## 19727           1743       0.00
## 19728           1738       0.00
## 19729           2941     470.13
## 19730           1752      13.75
## 19731           1751     111.99
## 19732           1751   16365.42
## 19733           1606    2546.25
## 19734           1690     209.83
## 19735           1651       0.00
## 19736           1724    4474.83
## 19737           1724     102.32
## 19738           1725     148.42
## 19739           1714      75.00
## 19740           1560     192.60
## 19741           1750     237.34
## 19742           1739     217.02
## 19743           2993  102022.43
## 19744           1743    1593.67
## 19745           1736       0.00
## 19746           1746       0.00
## 19747           1746   11805.45
## 19748           1746       0.00
## 19749           1749   55182.70
## 19750           1743     228.65
## 19751           1743    6075.25
## 19752           1966     431.45
## 19753           1743      99.32
## 19754           2308    1369.24
## 19755           1744     274.75
## 19756           1745     400.76
## 19757           1616     110.68
## 19758           1644     262.34
## 19759           1302     166.57
## 19760           1680       0.00
## 19761           1679     275.68
## 19762           1714     166.26
## 19763           1710       0.00
## 19764           1710     233.38
## 19765           1723     105.19
## 19766           1724     153.73
## 19767           1725      65.61
## 19768           1732      59.50
## 19769           1729     417.96
## 19770           1743     384.08
## 19771           1749       0.00
## 19772           1749     145.89
## 19773           2273       0.00
## 19774           1749       0.00
## 19775           1736      68.71
## 19776           1743     233.98
## 19777           2597      91.46
## 19778           1542      86.98
## 19779           1606       0.00
## 19780           1652     333.61
## 19781           1655       0.00
## 19782           1732     435.92
## 19783           1724      36.50
## 19784           1717       0.00
## 19785           1378       0.00
## 19786           1703     618.50
## 19787           1743     273.52
## 19788           1736      84.61
## 19789           1736     640.03
## 19790           1736     313.80
## 19791           1736      86.22
## 19792           1749    1201.06
## 19793           1749       0.00
## 19794           2310     207.11
## 19795           1746     307.39
## 19796           1743      18.10
## 19797           1743       0.00
## 19798           1743     165.15
## 19799           1735     186.81
## 19800           2597   18260.59
## 19801           1605  159885.81
## 19802           2721    4903.35
## 19803           1716      11.97
## 19804           1724     151.49
## 19805           1725      38.37
## 19806           1735    1049.04
## 19807           1735       0.00
## 19808           2743     272.42
## 19809           1744    4141.71
## 19810           2008     154.17
## 19811           1744      61.35
## 19812           1745      75.91
## 19813           1749       0.00
## 19814           1736     108.16
## 19815           1736     272.31
## 19816           1736     220.90
## 19817           1735   39009.96
## 19818           1735     298.84
## 19819           1742     350.71
## 19820           1742       0.00
## 19821           2876     657.98
## 19822           2285      96.41
## 19823           1513      50.32
## 19825           1737       0.00
## 19826           1746    2606.47
## 19827           1743     981.84
## 19828           1743       0.00
## 19829           3057      78.50
## 19830           1686     290.23
## 19831           1686       0.00
## 19832           2839      98.35
## 19833           1704       0.00
## 19834           1710     263.48
## 19835           1714     505.42
## 19836           1714     655.59
## 19837           2157    1361.56
## 19838           2035     879.72
## 19839           1746    1214.13
## 19840           1735     284.15
## 19841           1884   13226.76
## 19842           1708     102.79
## 19843           1716     349.41
## 19844           2629       0.00
## 19845           1732     255.15
## 19846           1730     150.38
## 19847           1736     117.28
## 19848           2624    1764.84
## 19849           2559     560.81
## 19850           1736     140.11
## 19851           1742      70.68
## 19852           1742      61.66
## 19853           1743       0.00
## 19854           1739       6.25
## 19855           1745    1052.53
## 19856           1743     450.48
## 19857           1743     216.15
## 19858           1743     105.22
## 19859           1735  157078.78
## 19860           1541      33.92
## 19861           1616      61.40
## 19862           1727   31644.88
## 19863           1732     264.62
## 19864           1725      56.34
## 19865           1725     252.76
## 19866           1725     627.61
## 19867           1955       0.00
## 19868           1723     337.53
## 19869           1716      46.00
## 19870           1717       0.00
## 19871           1708      59.00
## 19872           1389     188.53
## 19873           1744     108.35
## 19874           1744       0.00
## 19875           1739     122.00
## 19876           1739       0.00
## 19877           1738     350.07
## 19878           1738     677.53
## 19879           1742    2801.58
## 19880           2869     518.00
## 19881           1737  121702.26
## 19882           1736     100.92
## 19883           1735    4970.37
## 19884           1668      41.90
## 19885           1725     358.53
## 19886           2206     364.76
## 19887           1724     129.16
## 19888           1732     438.22
## 19889           1702   48544.09
## 19890           1736     333.11
## 19891           1736      59.50
## 19892           1778     443.42
## 19893           1736    9630.06
## 19894           1742     339.83
## 19895           1743     341.80
## 19896           1613     100.00
## 19897           1623    1562.78
## 19898           1689   11848.45
## 19899           1689       0.00
## 19900           1690     198.99
## 19901           1680   32212.49
## 19902           1732     147.63
## 19903           1729       0.00
## 19904           1728   15843.75
## 19905           1725     125.13
## 19906           1725     242.62
## 19907           1709     484.16
## 19908           1710      70.74
## 19909           1714     108.21
## 19910           1716    1004.17
## 19911           1716      23.98
## 19912           1743     897.41
## 19913           1738      84.75
## 19914           2316   32300.67
## 19915           1738     181.00
## 19916           1738    1431.91
## 19917           1739       6.25
## 19918           2710     295.28
## 19919           1739     965.71
## 19920           1735     191.61
## 19921           2272   12174.72
## 19922           1960     634.84
## 19923           1736     523.11
## 19924           1626      76.82
## 19925           1676     899.74
## 19926           1701     106.86
## 19927           1728     615.02
## 19928           1732      13.50
## 19929           1736    4719.23
## 19930           1737       0.00
## 19931           1738     287.32
## 19932           1735     326.38
## 19933           1736     185.05
## 19934           1738   12754.54
## 19935           1735     421.47
## 19936           1395       0.00
## 19937           1682     445.83
## 19938           1652     258.25
## 19939           1487     318.85
## 19940           3044     114.51
## 19941           1724     114.51
## 19942           3077     193.76
## 19943           1738    2895.47
## 19944           2555       0.00
## 19945           1686      89.21
## 19946           1700       0.00
## 19947           2208     515.76
## 19948           1724     210.87
## 19949           1722    4664.99
## 19950           1708     185.18
## 19951           1738       0.00
## 19952           1738     844.43
## 19953           2906    1443.47
## 19954           1618     137.49
## 19955           1714       0.00
## 19956           1985     245.89
## 19957           1717       0.00
## 19958           1723     298.60
## 19959           1723     114.51
## 19960           1722     151.49
## 19961           1722       0.00
## 19962           2948   33422.91
## 19963           1724       0.00
## 19964           1732     118.54
## 19965           1732       0.00
## 19966           1732     180.88
## 19967           1728     298.76
## 19968           1727    1985.32
## 19969           1729   10618.10
## 19970           1730      69.33
## 19971           1514     142.64
## 19972           1137      32.59
## 19973           2183   42227.56
## 19974           1738     416.71
## 19975           1738     122.03
## 19976           1736       0.00
## 19977           1736    5801.77
## 19978           1735       0.00
## 19979           1736    2988.70
## 19980           1736      59.50
## 19981           1735     163.17
## 19982           1735     737.14
## 19983           1618     125.04
## 19984           1549     330.45
## 19985           1598     133.76
## 19986           1700       0.00
## 19987           1701      78.17
## 19988           1697       0.00
## 19989           1730     464.43
## 19990           2836      50.01
## 19991           1728     289.60
## 19992           1761       0.00
## 19993           2881       0.00
## 19994           2309    1085.20
## 19995           1728     110.45
## 19996           1728     321.02
## 19997           1728  134485.22
## 19998           1732     874.64
## 19999           1732     224.09
## 20000           1724      55.51
## 20001           1725    2151.34
## 20002           1723     117.08
## 20003           1723      92.08
## 20004           1721    1054.10
## 20005           1721     449.77
## 20006           2082     228.33
## 20007           1735     149.19
## 20008           1735     318.25
## 20009           1736     830.87
## 20010           1735   32093.52
## 20011           2775       6.75
## 20012           3014     116.95
## 20013           1522       0.00
## 20014           1701     235.73
## 20015           2839     191.26
## 20016           1479       0.00
## 20017           1445     235.00
## 20018           1721       0.00
## 20019           1716       0.00
## 20020           1725     147.31
## 20021           1724       0.00
## 20022           1725     125.67
## 20023           1724       0.00
## 20024           1724       0.00
## 20025           1732    3095.17
## 20026           1732     358.29
## 20027           1732       0.00
## 20028           1740     379.78
## 20029           1728     137.13
## 20030           1728     496.84
## 20031           1727      12.50
## 20032           1730      93.23
## 20033           1730     115.99
## 20034           1728       0.00
## 20035           1728     210.83
## 20036           1633     285.20
## 20037           3083     960.50
## 20038           1735     249.70
## 20039           1548     630.06
## 20040           1623     126.73
## 20041           1744     181.12
## 20042           1728       0.00
## 20043           1728      84.75
## 20044           1729       0.00
## 20045           1730     127.94
## 20046           1727   28282.91
## 20047           1728     176.04
## 20048           1728     354.69
## 20049           1728     648.53
## 20050           2027     200.59
## 20051           1728    1118.58
## 20052           1732       6.50
## 20053           1732     485.55
## 20054           2515     128.30
## 20055           1722     487.80
## 20056           1722     758.28
## 20057           2797    3045.19
## 20058           2137     194.31
## 20059           1722    7634.01
## 20060           1722    1174.74
## 20061           1617    4813.07
## 20062           1693    9015.69
## 20063           2905     241.55
## 20064           1686   12361.37
## 20065           1686    1076.88
## 20066           1659    2316.68
## 20067           2923     955.48
## 20068           1722      58.63
## 20069           1722       0.00
## 20070           2442     344.75
## 20071           1722   58819.91
## 20072           1710     361.46
## 20073           1710    1561.29
## 20074           1710     593.75
## 20075           1710     156.78
## 20076           1728     596.36
## 20077           1730     193.53
## 20078           1729    2092.01
## 20079           1728    1754.53
## 20080           2719       0.00
## 20081           1724     328.85
## 20082           1725     186.28
## 20083           2623     679.53
## 20084           1686     229.45
## 20085           1728       0.00
## 20086           1974     154.30
## 20087           1716      84.55
## 20088           1716     199.25
## 20089           1549       0.00
## 20090           1598      46.04
## 20091           1606       0.00
## 20092           1700       0.00
## 20093           2315       0.00
## 20094           2410    1197.04
## 20095           1714      77.61
## 20096           1709       0.00
## 20097           1722     325.62
## 20098           1729       6.50
## 20099           1729     782.73
## 20100           2895      95.19
## 20101           1732       0.00
## 20102           1727   16193.94
## 20103           1727      13.25
## 20104           1725     133.22
## 20105           1704     300.28
## 20106           1725       0.00
## 20107           1724      80.50
## 20108           1724      80.50
## 20109           1724     185.98
## 20110           1724       0.00
## 20111            957       0.00
## 20112           2300      68.30
## 20113           1728     689.09
## 20114           1728     298.87
## 20115           1728      48.49
## 20116           1730     211.27
## 20117           1728      91.47
## 20118           1728     553.83
## 20119           1722     288.88
## 20120           1722     265.13
## 20121           1714    2227.38
## 20122           2589      33.17
## 20123           1716     925.28
## 20124           1715    2726.19
## 20125           1716     362.80
## 20126           1721     206.40
## 20127           1721     298.81
## 20128           2137       0.00
## 20129           1632     404.13
## 20130           1623     145.99
## 20131           2517  159054.89
## 20132           1687      32.59
## 20133           1687    5533.35
## 20134           1675   16226.45
## 20135           1710     281.00
## 20136           1728      94.27
## 20137           1728       0.00
## 20138           1725      62.65
## 20139           2804     432.21
## 20140           1728     252.47
## 20141           1704    8348.06
## 20142           2369      66.68
## 20143           1724       0.00
## 20144           1724    1622.61
## 20145           1724       8.00
## 20146           1352       0.00
## 20147           1714     156.00
## 20148           1735     166.59
## 20149           1702     307.44
## 20150           1610     111.49
## 20151           1689     206.43
## 20152           1696     121.60
## 20153           2322      64.01
## 20154           1315     263.46
## 20155           2434      19.00
## 20156           1722     877.09
## 20157           1722     319.92
## 20158           1709    5273.67
## 20159           1709       0.00
## 20160           1735     181.27
## 20161           1717      50.01
## 20162           1717     108.15
## 20163           1718       0.00
## 20164           1718    1532.27
## 20165           1722     582.12
## 20166           1724    9870.73
## 20167           1724       0.00
## 20168           1725     480.41
## 20169           1725     145.41
## 20170           1725     307.51
## 20171           2761       0.00
## 20172           1725    1607.49
## 20173           1725       0.00
## 20174           1725     131.90
## 20175           1725     382.66
## 20176           3033     255.23
## 20177           1728     926.66
## 20178           1700       0.00
## 20179           1700     443.48
## 20180           1690       0.00
## 20181           1694     297.70
## 20182           2993       0.00
## 20183           1725     161.97
## 20184           2186       0.00
## 20185           1724   21859.39
## 20186           1724      45.00
## 20187           1722     506.44
## 20188           1721       8.00
## 20189           1716     178.53
## 20190           1716    6202.09
## 20191           1716     165.00
## 20192           1716     402.82
## 20193           2647   27616.97
## 20194           1715       0.00
## 20195           1716   38721.00
## 20196           1709   34268.12
## 20197           1709     520.53
## 20198           1708     254.10
## 20199           1715      51.16
## 20200           1710     282.71
## 20201           1710      56.68
## 20202           1710      55.20
## 20203           1722      85.72
## 20204           1703       0.00
## 20205           1639     233.18
## 20206           1627     133.18
## 20207           1646     133.18
## 20208           1690     131.68
## 20209           1700      91.80
## 20210           1696       0.00
## 20211           1694     103.44
## 20212           1487     105.76
## 20213           1723       0.00
## 20214           1714     179.45
## 20215           3057     399.84
## 20216           1693   16334.26
## 20217           1479     230.86
## 20218           1723       0.00
## 20219           1724     734.53
## 20220           1704       0.00
## 20221           1675      42.93
## 20222           1711       0.00
## 20223           1708     149.38
## 20224           2377     162.13
## 20225           1709      26.50
## 20226           2288     202.29
## 20227           1715      70.00
## 20228           1721     579.06
## 20229           1721      83.37
## 20230           1722     737.54
## 20231           2590     223.78
## 20232           2652      22.02
## 20233           1720   11385.10
## 20234           1717      74.43
## 20235           1722       0.00
## 20236           1723    1415.44
## 20237           1723     710.09
## 20238           1703      56.37
## 20239           1612     326.84
## 20240            981    3245.04
## 20241           1693     121.73
## 20242           1690       0.00
## 20243           1744     120.94
## 20244           1723     199.66
## 20245           1804     154.38
## 20246           1723     575.63
## 20247           1722      61.35
## 20248           1823      71.16
## 20249           1717      36.21
## 20250           1718      58.04
## 20251           1718      76.19
## 20252           1722     404.19
## 20253           2878   40474.63
## 20254           2056     268.62
## 20255           1717     248.67
## 20256           1717      46.99
## 20257           1710     297.71
## 20258           1709     218.94
## 20259           1714     148.46
## 20260           1715     159.18
## 20261           1710      30.00
## 20262           1620     129.11
## 20263           1689    1907.57
## 20264           2410     280.66
## 20265           1686     207.17
## 20266           1710     511.56
## 20267           1714      73.46
## 20268           1716     509.39
## 20269           1716     420.27
## 20270           1715      82.81
## 20271           1721     399.93
## 20272           1721     140.00
## 20273           1721       0.00
## 20274           2043    1968.27
## 20275           1721      87.43
## 20276           1722       0.00
## 20277           1717     287.61
## 20278           1721     135.97
## 20279           1717    1411.15
## 20280           1718       0.00
## 20281           2828     575.16
## 20282           1722   17716.26
## 20283           1722    2137.32
## 20284           1723      66.68
## 20285           1723       0.00
## 20286           1689     111.49
## 20287           1694       0.00
## 20288           1700       0.00
## 20289           1700     353.55
## 20290           1295    9762.76
## 20291           1720     144.21
## 20292           1721    2616.87
## 20293           1718     165.46
## 20294           1718     140.87
## 20295           1721     127.92
## 20296           1721     493.60
## 20297           1721       0.00
## 20298           1716       0.00
## 20299           1716    1316.07
## 20300           1716       0.00
## 20301           1716      13.75
## 20302           1715     279.91
## 20303           2756     142.62
## 20304           1710       0.00
## 20305           1710     184.12
## 20306           1710     186.11
## 20307           1709       0.00
## 20308           1702      12.75
## 20309           1702   15937.93
## 20310           1541      95.92
## 20311           1697       0.00
## 20312           1689   24885.61
## 20313           1683     153.89
## 20314           1680     255.65
## 20315           1673      60.00
## 20316           1702       0.00
## 20317           1708     207.42
## 20318           1709       0.00
## 20319           1710      26.20
## 20320           1710    1750.23
## 20321           1715     379.49
## 20322           1716       7.02
## 20323           1715     125.00
## 20324           1718     987.93
## 20325           1933   15705.32
## 20326           2289     116.13
## 20327           1717       0.00
## 20328           1717    3889.20
## 20329           1704   24188.51
## 20330           2273    8128.30
## 20331           1137      71.40
## 20332           1686    7368.91
## 20333           1682     790.74
## 20334           2898     196.22
## 20335           1700       0.00
## 20336           1655       0.00
## 20337           1716       0.00
## 20338           1710  133636.87
## 20339           1862      86.22
## 20340           2206  137432.55
## 20341           2308     340.67
## 20342           1690      16.99
## 20343           1686      41.40
## 20344           2318      68.98
## 20345           1709    4535.11
## 20346           1716     402.45
## 20348           1715     230.88
## 20349           1718     627.81
## 20350           1715     751.81
## 20351           1715       0.00
## 20352           1715     192.42
## 20353           1715      69.33
## 20354           1715      49.22
## 20355           1715     468.90
## 20356           1715     145.37
## 20357           1715    5532.95
## 20358           1793   22924.38
## 20359           1716     289.89
## 20360           1709       0.00
## 20361           2898       0.00
## 20362           1709    3182.23
## 20363           1709      37.26
## 20364           1709     181.09
## 20365           1709       0.00
## 20366           1709      49.11
## 20367           1709    2536.02
## 20368           1708     521.88
## 20369           1710     728.40
## 20370           1710    1411.07
## 20371           1714      67.50
## 20372           1710       0.00
## 20373           1701   11221.37
## 20374           1702    2350.37
## 20375           1569       0.00
## 20376           1549     279.87
## 20377           1683    1906.77
## 20378           1679      51.16
## 20379           1675       0.00
## 20380           1690     115.19
## 20381           1697     294.14
## 20382           1694     278.62
## 20383           1694      64.78
## 20384           1694    6025.38
## 20385           1668      36.21
## 20386           1703     563.49
## 20387           1930     156.34
## 20388           1715       0.00
## 20389           1709      59.45
## 20390           1709     109.11
## 20391           1716       0.00
## 20392           2192       0.00
## 20393           1715     282.46
## 20394           1715     266.46
## 20395           1715       0.00
## 20396           2629       0.00
## 20397           2058     215.87
## 20398           1707      32.53
## 20399           1707     133.72
## 20400           1590      -0.06
## 20401           1697       0.00
## 20402           1726     322.95
## 20403           1700       0.00
## 20404           1700     342.80
## 20405           1690     644.47
## 20406           2875     101.97
## 20407           1444      50.45
## 20408           1704       0.00
## 20409           1707     750.89
## 20410           2173     363.76
## 20411           1707       0.00
## 20412           2231  216650.79
## 20413           1707    2704.78
## 20414           1368      50.01
## 20415           1715      27.01
## 20416           2143    4889.64
## 20417           1709     274.84
## 20418           1709     184.48
## 20419           1709     157.61
## 20420           1708      51.16
## 20421           2468    1173.57
## 20422           1711     927.20
## 20423           1711     132.39
## 20424           1989     891.83
## 20425           1710      20.00
## 20427           1710   12078.82
## 20428           1702   33763.13
## 20429           1576     131.18
## 20430           1564     276.24
## 20431           1511     192.85
## 20432           1637     257.53
## 20433           2340     356.22
## 20434           1533     513.66
## 20435           1533     253.98
## 20436           2221   46905.38
## 20437           1689       0.00
## 20438           1690     353.57
## 20439           1690     255.22
## 20440           1690      17.75
## 20441           1687     217.51
## 20442           1701      71.40
## 20443           1701       0.00
## 20444           1697      51.16
## 20445           1700     194.96
## 20446           1694       0.00
## 20447           1679     616.78
## 20448           1683     367.58
## 20449           1666    1563.00
## 20450           1702     144.82
## 20451           1702     843.07
## 20452           1735    9160.86
## 20453           1710       6.25
## 20454           1711     242.99
## 20455           1714       0.00
## 20456           1709     138.46
## 20457           1708      76.98
## 20458           1708       0.00
## 20459           3032    6777.01
## 20460           1708     499.38
## 20461           1709     292.11
## 20462           1707     429.48
## 20463           1339      46.04
## 20464           1492      52.84
## 20465           1577     238.42
## 20466           1317    7842.79
## 20467           2601      82.35
## 20468           3023     133.36
## 20469           1694     162.21
## 20470           1697   40100.50
## 20471           1697     173.81
## 20472           1701     102.89
## 20473           1700     255.74
## 20474           2165    2011.08
## 20475           1813       0.00
## 20476           1704    1278.85
## 20477           1704     187.27
## 20478           1704      41.71
## 20479           1708     233.13
## 20480           1708       0.00
## 20481           1708     588.02
## 20482           2652   49887.29
## 20483           1694   14192.95
## 20484           2444      50.01
## 20485           1695   17359.60
## 20486           2574     535.39
## 20487           1680       0.00
## 20488           1675      97.77
## 20489           1667   17552.36
## 20490           1702     229.02
## 20491           1709     147.62
## 20492           1709     161.74
## 20493           1709     628.86
## 20494           1709     255.63
## 20495           1709     291.28
## 20496           1710    1727.49
## 20497           1710       0.00
## 20498           1680     277.34
## 20499           1697       0.00
## 20500           1694     458.95
## 20501           1709     223.97
## 20502           1708     362.30
## 20503           1708     219.17
## 20504           1764       0.00
## 20505           1549     424.21
## 20506           1697   10765.08
## 20507           1701       0.00
## 20508           1651     108.42
## 20509           1702       0.00
## 20510           1702    1169.54
## 20511           1703    2912.35
## 20512           1708       0.00
## 20513           1707    6837.11
## 20514           2268      61.75
## 20515           1704     255.12
## 20516           1704       0.00
## 20517           1709     371.34
## 20518           1708      12.50
## 20519           1708     576.06
## 20520           1708      10.00
## 20521           3053     671.14
## 20522           2051   16546.51
## 20523           1709   23346.10
## 20524           1709     484.81
## 20525           1709      81.16
## 20526           1575     419.05
## 20527           1416     219.68
## 20528           1627       0.00
## 20529           1610     214.27
## 20530           1665   74401.87
## 20531           1701       0.00
## 20532           1700      46.04
## 20533           1690     420.55
## 20534           1690     134.70
## 20535           1690       0.00
## 20536           1689     266.00
## 20537           1680     828.13
## 20538           1468     163.80
## 20539           3043    1183.05
## 20540           2135     181.91
## 20541           1708   22783.91
## 20542           1708     116.95
## 20543           1707       0.00
## 20544           1704      33.62
## 20545           1703     276.05
## 20546           2142     124.06
## 20547           1702     393.84
## 20548           1702      98.86
## 20549           1576   26458.50
## 20550           2989     492.32
## 20551           1427     198.27
## 20552           1541     321.68
## 20553           1683     364.47
## 20554           1680    1926.41
## 20555           1693     207.30
## 20556           2063    2061.59
## 20557           1667     132.26
## 20558           1702     188.31
## 20559           1703      14.62
## 20560           1707      20.00
## 20561           1707    3535.44
## 20562           1707      79.31
## 20563           1707      38.00
## 20564           1704       0.00
## 20565           1708     165.00
## 20566           1560       0.00
## 20567           1561     150.00
## 20568           1597       0.00
## 20569           1690      61.35
## 20570           1689       0.00
## 20571           1701    3719.00
## 20572           2202       0.00
## 20573           1694       0.00
## 20574           1675     198.03
## 20575           2043     328.50
## 20576           1704       0.00
## 20577           1704    3959.44
## 20578           1704       0.00
## 20579           1704       8.25
## 20580           1704    4600.40
## 20581           2008     101.67
## 20582           1704     121.00
## 20583           1703     525.32
## 20584           2263     108.39
## 20585           1702     237.24
## 20586           1702       0.00
## 20587           1213       0.00
## 20588           1638     542.93
## 20589           1598     982.06
## 20590           1631     255.00
## 20591           1682   15456.99
## 20592           1682      66.68
## 20593           1680     346.62
## 20594           1680     738.84
## 20595           1679     534.53
## 20596           1694     247.72
## 20597           1695     105.92
## 20598           1696       0.00
## 20599           2757      19.20
## 20600           1687     949.87
## 20601           2809     329.67
## 20602           1689       0.00
## 20603           1336       0.00
## 20604           1666    3913.06
## 20605           1713     632.33
## 20606           1702     546.94
## 20607           1703     889.80
## 20608           1703    1244.82
## 20609           1790     154.23
## 20610           1703     729.44
## 20611           1704     373.15
## 20612           1368     381.01
## 20613           1638       0.00
## 20614           1654      38.47
## 20615           2706     632.97
## 20616           1689      29.00
## 20617           1700       0.00
## 20618           1700     142.53
## 20619           1700     984.11
## 20620           1964     514.31
## 20621           1700       0.00
## 20622           1697      48.84
## 20623           1697       0.00
## 20624           1696   30975.09
## 20625           1674     439.48
## 20626           1675     292.99
## 20627           1807     370.69
## 20628           1681      84.61
## 20629           1750     878.47
## 20630           1703     106.85
## 20631           1680     202.89
## 20632           2188    2609.63
## 20633           2784     539.52
## 20634           1689       0.00
## 20635           1690      61.35
## 20636           1702     695.62
## 20637           1702      93.80
## 20638           1533      50.01
## 20639           1694       0.00
## 20640           2701       0.00
## 20641           1703    1560.84
## 20642           1703     161.51
## 20643           1703     296.01
## 20644           1703       0.00
## 20645           1702     202.93
## 20646           1702    1177.90
## 20647           2569     407.56
## 20648           1186       0.00
## 20649           1634     242.10
## 20650           1548     201.86
## 20651           1626      49.11
## 20652           1627     241.19
## 20653           1591       0.00
## 20654           1668     103.49
## 20655           1672       0.00
## 20656           1654       0.00
## 20657           1660     132.81
## 20658           1695    7867.24
## 20659           1695     403.76
## 20660           3533  206067.51
## 20661           1697     109.34
## 20662           1701    1236.81
## 20663           1701       0.00
## 20664           1700     148.29
## 20665           1697     219.83
## 20666           1697       0.00
## 20667           1697     241.27
## 20668           1700     215.09
## 20669           1675     212.75
## 20670           2176     226.15
## 20671           2421     234.60
## 20672           1701     500.07
## 20673           1702     300.05
## 20674           1701     116.95
## 20675            792    2261.37
## 20676           1638     111.22
## 20677           1417      71.40
## 20678           1605      31.08
## 20679           1277       0.00
## 20680           1533      91.35
## 20681           1675     925.97
## 20682           1674       0.00
## 20683           1679     403.43
## 20684           2394   20299.58
## 20685           1680     443.28
## 20686           1683    1040.11
## 20687           1969   36258.13
## 20688           2447     170.10
## 20689           1697     480.86
## 20690           1700     128.58
## 20691           1697     172.50
## 20692           1695      81.67
## 20693           1695    2270.74
## 20694           1695       0.00
## 20695           1694    2242.60
## 20696           1694    1185.79
## 20697           2642   32396.14
## 20698           1690    1063.77
## 20699           2255       0.00
## 20700           1329     588.76
## 20701           1661     223.80
## 20702           1659       0.00
## 20703           1667      46.04
## 20704           1645       0.00
## 20705           1644    2087.48
## 20706           2121       0.00
## 20707           1660     196.15
## 20708           1660     466.99
## 20709           1992     483.43
## 20710           1689     649.86
## 20711           1687     170.97
## 20712           2744     171.79
## 20713           1693     982.56
## 20714           1690      81.46
## 20715           1690     119.80
## 20716           1694      99.47
## 20718           1696    1000.75
## 20719           1696      26.75
## 20720           1700    9023.94
## 20721           2995   11038.74
## 20722           2423     104.66
## 20723           1701       7.25
## 20724           1686     184.46
## 20725           1506     144.41
## 20726           1638      78.84
## 20727           1686     146.18
## 20728           1683       0.00
## 20729           1681      60.00
## 20730           1680     324.71
## 20731           1697    3898.53
## 20732           1697     195.75
## 20733           1697     126.78
## 20734           1697      51.16
## 20735           1700       0.00
## 20736           1700     123.53
## 20737           1696      49.00
## 20738           1696     331.52
## 20739           1696       0.00
## 20740           3019    1773.15
## 20741           1697     149.41
## 20742           1696      36.21
## 20743           1696      28.00
## 20744           1695     617.02
## 20745           1690     435.15
## 20746           1690     103.57
## 20747           1688     102.92
## 20748           2952     150.52
## 20749           1947   16771.19
## 20750           1662     549.49
## 20751           1480     206.96
## 20752           1533      99.46
## 20753           1660     217.80
## 20754           1695     814.19
## 20755           1694     638.22
## 20756           1697     419.31
## 20757           3086   14854.76
## 20758           1696      69.33
## 20759           1696      23.70
## 20760           1696    1012.71
## 20761           1683       0.00
## 20762           1686     407.85
## 20763           1682      66.68
## 20764           1724     116.68
## 20765           2927    1095.79
## 20766           1696   12315.93
## 20767           1688       0.00
## 20768           1689     479.02
## 20769           1690       0.00
## 20770           1651       0.00
## 20771           1533      82.79
## 20772           1631     111.26
## 20773           1690   17883.10
## 20775           1696      96.27
## 20776           1695       0.00
## 20777           1681     632.31
## 20778           2461     548.84
## 20779           1618     555.18
## 20780           1549     798.46
## 20781           1610     664.17
## 20782           1681     305.79
## 20783           1681       0.00
## 20784           1680      12.00
## 20785           2701    1945.88
## 20786           1695      68.98
## 20787           1695     138.93
## 20788           1695      62.77
## 20789           1983     216.34
## 20790           1695     262.45
## 20791           1696     879.77
## 20792           1695     377.78
## 20793           2425       0.00
## 20794           1696      92.90
## 20795           1690     465.60
## 20796           1688       0.00
## 20797           1688       0.00
## 20798           1688      77.17
## 20799           1688       0.00
## 20800           1647     183.42
## 20801           2369     703.28
## 20802           1662     712.27
## 20803           1659      47.07
## 20804           1667       0.00
## 20805           1668       0.00
## 20806           1506     369.86
## 20807           1661       0.00
## 20808           1581     102.50
## 20809           1581     100.00
## 20810           2121       0.00
## 20811           2672     152.05
## 20812           1672     251.29
## 20814           1688     581.14
## 20815           1688     346.21
## 20816           2313    1756.98
## 20817           1689    1423.34
## 20818           1693       0.00
## 20819           1693     116.33
## 20820           1693     248.67
## 20821           1690    2757.40
## 20822           1693     693.57
## 20823           1695     247.50
## 20824           1694     223.45
## 20825           1679    1708.32
## 20826           1676      21.28
## 20827           1735       0.00
## 20828           1686     968.02
## 20829           1682       0.00
## 20830           1682     172.00
## 20831           1358       0.00
## 20832           1596     191.67
## 20833           2362     125.61
## 20834           1674       0.00
## 20835           1679     100.00
## 20836           2511    1076.36
## 20837           1680      82.92
## 20838           1694     547.95
## 20839           1693      96.90
## 20840           2240    9814.46
## 20841           1693      43.49
## 20842           1693   37145.67
## 20843           1690     361.41
## 20844           1690      90.37
## 20845           1689    1565.91
## 20846           1688    4206.64
## 20847           1688     198.84
## 20848           1688     999.06
## 20849           1295       0.00
## 20850           1672       0.00
## 20851           1672       0.00
## 20852           1668     204.68
## 20853           1456    2746.92
## 20854           3740   15561.21
## 20855           1638      71.13
## 20856           2382     789.35
## 20857           1667       0.00
## 20858           1654     125.94
## 20859           1688       0.00
## 20860           1687  101753.66
## 20861           1687     287.58
## 20862           1688    1680.10
## 20863           1689   21702.44
## 20864           1690     256.65
## 20865           1690    2358.00
## 20866           1689       0.00
## 20867           1689     674.51
## 20868           1693    1610.38
## 20869           1693      16.00
## 20870           2488     694.34
## 20871           1693     194.78
## 20872           1679      76.46
## 20873           1676       9.00
## 20874           1676     161.39
## 20875           1675       0.00
## 20876           1687      60.01
## 20877           1686     107.89
## 20878           4320  665195.64
## 20879           2952      80.33
## 20880           1681       0.00
## 20881           1681     128.42
## 20882           1680      49.11
## 20883           1604      88.29
## 20884           1548      41.90
## 20885           1625       0.00
## 20886           1681     279.21
## 20887           1682       0.00
## 20888           1682      55.83
## 20889           1681       0.00
## 20890           1675     113.12
## 20891           1679     138.89
## 20892           2865      71.40
## 20893           1690       0.00
## 20894           1690    2607.83
## 20895           1689      19.75
## 20896           1688     453.18
## 20897           1688       0.00
## 20898           1987   17542.17
## 20899           1688       0.00
## 20900           1688       0.00
## 20901           1862     385.89
## 20902           1668       0.00
## 20903           1667       0.00
## 20904           1877     526.36
## 20905           1660     153.17
## 20906           1655       0.00
## 20907           2619    4978.30
## 20908           1687     429.34
## 20909           1688    9259.08
## 20910           1688     292.13
## 20911           1679    1744.11
## 20912           1681     145.04
## 20913           2464    4671.49
## 20914           2749    6029.33
## 20915           1680    4223.86
## 20916           1682       0.00
## 20917           1526      10.00
## 20918           1686      83.02
## 20919           1675     263.96
## 20920           2254      10.00
## 20921           1532       0.00
## 20922           1616     897.22
## 20923           1688     665.55
## 20924           1688       0.00
## 20925           1688     242.78
## 20926           1676      12.50
## 20927           1675     185.61
## 20928           1679   52982.49
## 20929           1679     247.65
## 20930           1680     172.02
## 20931           1686     173.69
## 20932           1686       0.00
## 20933           1686     610.04
## 20934           1683     190.48
## 20935           1681     326.29
## 20936           1680      35.44
## 20937           2485    1280.98
## 20938           1681      43.49
## 20939           1682      73.58
## 20941           1661     419.28
## 20942           2346    4864.12
## 20943           1665     215.44
## 20944           1672     204.94
## 20945           1646    8624.60
## 20946           1514   51445.48
## 20947           1627     829.31
## 20948           1527       0.00
## 20949           1157     191.50
## 20950           1666       0.00
## 20951           2408       0.00
## 20952           1655     416.33
## 20953           1680       0.00
## 20954           2667    1325.98
## 20955           1683     148.97
## 20956           1683     165.21
## 20957           1683    1329.37
## 20958           1686      67.00
## 20959           1686       0.00
## 20960           1687      86.15
## 20961           1680      72.99
## 20962           1679     318.65
## 20963           1679       0.00
## 20964           1675      47.07
## 20965           1688     303.74
## 20966           1688       0.00
## 20967           1688   18388.28
## 20968           1929    1941.60
## 20969           1687     244.10
## 20970           1687     296.81
## 20971           1687     113.64
## 20972           1581      80.33
## 20973           1638      82.57
## 20974           1623     293.03
## 20975           1687     684.51
## 20976           1676     133.84
## 20977           1675     410.53
## 20978           2420     422.11
## 20979           1679    4259.01
## 20980           1687    1372.60
## 20981           1687     195.87
## 20982           1686  106841.99
## 20983           1803   17030.32
## 20984           1686     497.55
## 20985           1686      66.52
## 20986           1686       0.00
## 20987           1682      97.02
## 20988           1682    1076.21
## 20989           1683    1017.18
## 20990           1682    2103.83
## 20991           1681     239.48
## 20992           1673      40.00
## 20993           1673    8305.15
## 20994           1655     119.81
## 20995           1655     175.44
## 20996           1653     464.43
## 20997           1653       0.00
## 20998           1662    2585.48
## 20999           1937      85.00
## 21000           1666     291.32
## 21001           1662     202.55
## 21002           1662   14553.42
## 21003           2331      47.07
## 21004           1466      68.39
## 21005           1687    5103.09
## 21006           1668      91.97
## 21007           1662     142.85
## 21008           1658      42.85
## 21009           2107     369.08
## 21010           1673     316.92
## 21011           1673     850.70
## 21012           2952     198.77
## 21013           1681     182.23
## 21014           1681       9.00
## 21015           2268     115.40
## 21016           1759      30.00
## 21017           1680     191.91
## 21018           1680     819.20
## 21019           1680     257.01
## 21020           2002     204.89
## 21021           2611      86.34
## 21022           2343     354.64
## 21023           1683    1928.76
## 21024           1682     148.04
## 21025           2514     229.59
## 21026           1679      89.14
## 21027           1679       0.00
## 21028           2951       0.00
## 21029           1675       0.00
## 21030           1675      32.59
## 21031           1570     365.30
## 21032           2509     382.33
## 21033           2843     291.84
## 21034           1674    1020.91
## 21035           2030      81.68
## 21036           2505     292.01
## 21037           1680     195.53
## 21038           1680    1180.49
## 21039           1679      99.11
## 21040           1679    1309.49
## 21041           1679     425.50
## 21042           1781     348.86
## 21043           1682     257.76
## 21044           1682     963.07
## 21045           2899    2820.01
## 21046           1680     214.14
## 21047           1836       0.00
## 21048           1682       0.00
## 21049           1682     116.44
## 21050           1681       9.00
## 21051           1662     276.22
## 21052           1668    1047.80
## 21053           1672     469.15
## 21054           1567     279.07
## 21055           1610       0.00
## 21056           1681       0.00
## 21057           1680     224.13
## 21058           1680    2212.07
## 21059           1683       0.00
## 21060           1682     275.35
## 21061           1684     108.94
## 21062           2978    2972.29
## 21063           1673     312.72
## 21064           1214       0.00
## 21065           1676     244.95
## 21066           1676      90.00
## 21067           2065       0.00
## 21068           1680       0.00
## 21069           1680     225.13
## 21070           2744    1086.14
## 21071           2420    1208.71
## 21072           1680     619.82
## 21073           1680     381.07
## 21074           1682      50.01
## 21075           2506    2401.82
## 21076           1681     108.63
## 21077           1679       0.00
## 21078           1679       0.00
## 21079           1679     126.21
## 21080           1675     376.70
## 21081           1675     184.94
## 21082           1674       0.00
## 21083           1667   11088.18
## 21084           1655     254.64
## 21085           1661     840.52
## 21086           1638     120.48
## 21087           1640      59.77
## 21088           2646      68.85
## 21089           2729     440.57
## 21090           1619    1303.17
## 21091           1535     521.14
## 21092           1541      32.59
## 21093           1582     351.88
## 21094           1659     256.78
## 21095           1655    1247.89
## 21096           1654     340.23
## 21097           1647       0.00
## 21098           1665      43.00
## 21099           1666       0.00
## 21100           1667     227.02
## 21101           1667     146.86
## 21102           1668      93.08
## 21103           1676     241.11
## 21104           1676    5602.49
## 21105           1675     118.68
## 21106           1679     699.92
## 21107           1679     283.29
## 21108           1679       0.00
## 21109           1679     134.00
## 21110           1679   42149.59
## 21111           1679      27.16
## 21112           1680    2487.83
## 21113           2590    2010.77
## 21114           1680       0.00
## 21115           1214      38.09
## 21116           1421       0.00
## 21117           1541       0.00
## 21118           1680    1588.57
## 21119           1542     991.75
## 21120           1679     188.87
## 21121           1680     108.37
## 21122           1676     137.53
## 21123           2044     232.47
## 21124           1679       0.00
## 21125           2400     282.99
## 21126           2938     350.50
## 21127           1679       0.00
## 21128           1679     509.60
## 21129           1675     287.76
## 21130           1674   29047.99
## 21131           1673      89.26
## 21132           1819   53272.24
## 21133           1988       0.00
## 21134           1662      61.35
## 21135           1662     322.49
## 21136           1668      34.04
## 21137           1655       0.00
## 21138           1653     151.30
## 21139           1655      55.00
## 21140           1658     448.28
## 21141           1658     204.89
## 21142           1660     343.85
## 21143           1645       0.00
## 21144           1598     228.87
## 21145           1646       0.00
## 21146           1662     158.55
## 21147           1655      36.21
## 21148           1647     803.97
## 21149           1665      90.00
## 21150           2211     170.15
## 21151           2528      59.19
## 21152           1674     778.52
## 21153           2903     314.47
## 21154           2418   32400.56
## 21155           1675      25.17
## 21156           1675      39.08
## 21157           1675       0.00
## 21158           3053       0.00
## 21159           1675    1466.12
## 21160           2214    1452.92
## 21161           1675     407.99
## 21162           1675     335.46
## 21163           1679       0.00
## 21164           1676     145.90
## 21165           2957     116.90
## 21166           1638      55.00
## 21167           1675       6.25
## 21168           1675    2876.36
## 21169           1674       0.00
## 21170           1674      61.90
## 21172           1673     159.06
## 21173           1673     102.31
## 21174           1667      91.97
## 21175           1667       0.00
## 21176           1662     423.75
## 21177           1652     604.38
## 21178           1660     746.15
## 21179           1646     233.79
## 21180           2136     179.95
## 21181           1816     786.52
## 21182           1655       0.00
## 21183           1666       0.00
## 21184           1673      76.74
## 21185           1674    2816.77
## 21186           1674     657.61
## 21187           1675       0.00
## 21188           3010     393.91
## 21189           1674   15146.27
## 21190           1674    1117.55
## 21191           1673       0.00
## 21192           1661   11380.84
## 21193           1638    2818.82
## 21194           1410    2332.98
## 21195           1632     150.34
## 21196           1660       0.00
## 21197           1816       0.00
## 21198           2447       0.00
## 21199           1655     141.09
## 21200           1659    4627.07
## 21201           1655     518.39
## 21202           1667     429.21
## 21203           1666      50.50
## 21204           1667    1132.27
## 21205           1662       0.00
## 21206           1665     440.51
## 21207           2701     235.83
## 21208           1667       0.00
## 21209           1668     360.38
## 21210           1646    4852.70
## 21211           1645    2579.03
## 21212           1674    1185.68
## 21213           1674       0.00
## 21214           1674     285.68
## 21215           1674     252.72
## 21216           1675     120.74
## 21217           1478    1073.82
## 21218           1632    7957.59
## 21219           1627     191.91
## 21220           1674     448.59
## 21221           1990      68.98
## 21222           1674       6.50
## 21223           1674     381.58
## 21224           2325   30463.94
## 21225           1673     360.00
## 21226           1673     686.10
## 21227           1325     127.43
## 21228           1646       0.00
## 21229           1665      99.01
## 21230           1662     218.89
## 21231           1667      90.00
## 21232           1666     319.66
## 21233           1648     462.14
## 21234           1651    8183.84
## 21235           1655       0.00
## 21236           2254    1294.17
## 21237           1661      65.03
## 21238           2641       0.00
## 21239           1661     717.20
## 21240           1633     151.53
## 21241           1633     151.53
## 21242           1674       0.00
## 21243           1527     160.49
## 21244           1603   39630.60
## 21245           1661    1262.32
## 21246           1662      41.00
## 21247           1655      66.68
## 21248           1655     140.39
## 21249           1655     115.67
## 21250           1655     228.99
## 21251           1655      61.35
## 21252           1647       0.00
## 21253           1666     170.49
## 21254           1839    1191.96
## 21255           1665    2810.49
## 21256           1668     949.90
## 21257           1672       0.00
## 21258           1668     178.29
## 21259           1668     102.89
## 21260           1672     382.63
## 21261           1673      17.00
## 21262           1673     255.00
## 21263           1486     480.68
## 21264           1640      60.66
## 21265           1626    4873.42
## 21266           1620     160.49
## 21267           1616     587.85
## 21268           1672     102.27
## 21269           1668     219.83
## 21270           1667       8.00
## 21271           1665     106.67
## 21272           1662    8156.53
## 21273           1652     317.20
## 21274           1655     172.91
## 21275           1658     503.21
## 21276           1659       0.00
## 21277           1661     291.66
## 21278           1661    1164.28
## 21279           1639       0.00
## 21280           1625       0.00
## 21281           1661     174.93
## 21282           1660   11725.00
## 21283           1660       0.00
## 21284           1653     245.51
## 21285           1652      75.11
## 21286           1630     414.01
## 21287           1667     185.73
## 21288           1668       0.00
## 21289           1668    2240.75
## 21290           1819     719.35
## 21291            918       0.00
## 21292           1633    9082.64
## 21293           1455    2239.27
## 21294           1655   27307.94
## 21295           2785       0.00
## 21296           2457       0.00
## 21297           1661       0.00
## 21298           1661     324.09
## 21299           1658     365.33
## 21300           1576       0.00
## 21301           1623     144.33
## 21302           1548     161.16
## 21303           1658    1040.05
## 21304           1658     219.22
## 21305           1660     437.28
## 21306           2159     598.59
## 21307           1666     385.00
## 21308           1662    1931.83
## 21309           1687   64674.88
## 21310           1637       0.00
## 21311           2046  311300.98
## 21312           1665     568.72
## 21313           1666     252.50
## 21314           1667       0.00
## 21315           1661     195.40
## 21316           1569     257.00
## 21317           1555     128.81
## 21318           1668     131.17
## 21319           1631     358.43
## 21320           1626      78.17
## 21321           1661       0.00
## 21322           1662     189.30
## 21323           1662    1636.99
## 21324           1660    2035.09
## 21325           1658       0.00
## 21326           2653       0.00
## 21327           1655     182.40
## 21328           1655     108.42
## 21329           1658      68.98
## 21330           1659     200.35
## 21331           1653     194.01
## 21332           1648    2016.01
## 21333           1647    3470.38
## 21334           1667    1137.02
## 21335           1667     145.16
## 21336           1665       0.00
## 21337           1644     106.84
## 21338           2144     111.22
## 21339           1632       0.00
## 21340           1631     153.04
## 21341           1620      65.31
## 21342           1619    1880.95
## 21343           1592     107.21
## 21344           1646      61.35
## 21345           1645       0.00
## 21346           2896     144.28
## 21347           1665     115.74
## 21348           1662     182.85
## 21349           1662       0.00
## 21350           1662     358.34
## 21351           1666     298.78
## 21352           1651    8824.17
## 21353           1653       0.00
## 21354           1652     486.13
## 21355           1654     374.52
## 21356           1655       0.00
## 21357           2903    1914.98
## 21358           2720     781.01
## 21359           1659       0.00
## 21360           1658     250.75
## 21361           1658      69.00
## 21362           1660     156.98
## 21363           1661     973.19
## 21364           1898     989.27
## 21365           1661     149.31
## 21366           1632     165.00
## 21367           1610     184.70
## 21368           1603     745.00
## 21369           1610     112.95
## 21370           1521     100.94
## 21371           1661       0.00
## 21372           1661    2039.19
## 21373           1661      58.00
## 21374           1662       0.00
## 21375           3628  227783.12
## 21376           3449  206982.58
## 21377           1658     392.56
## 21378           1659     200.60
## 21379           2129   20655.62
## 21380           1654      73.00
## 21381           1652     518.35
## 21382           1651     135.79
## 21383           1662       0.00
## 21384           1662     204.39
## 21385           1662       0.00
## 21386           2603     513.45
## 21387           1665     347.77
## 21388           1665   34338.03
## 21389           1662       0.00
## 21390           1646    1373.50
## 21391           1326     157.59
## 21392           1637       0.00
## 21393           1640     847.68
## 21394           2711   13314.83
## 21395           1642     432.45
## 21396           1617      94.37
## 21397           1631       0.00
## 21398           1605    7938.73
## 21399           2168     268.65
## 21400           1651     128.53
## 21401           1653      64.01
## 21402           1653      86.40
## 21403           1659      22.50
## 21404           1659     238.85
## 21405           2800     114.54
## 21406           1660     287.10
## 21407           1660     152.98
## 21408           1661       0.00
## 21409           1577    1085.01
## 21410           3283      33.19
## 21411           1658     250.89
## 21412           1641    2417.43
## 21413           1631   11714.66
## 21414           1659     401.96
## 21415           1659     283.46
## 21416           1659     251.18
## 21417           1662     372.40
## 21418           1661     289.22
## 21419           1653     278.87
## 21420           1653     458.45
## 21421           1651     261.68
## 21422           1933     172.19
## 21423           1493     154.68
## 21424           2177      80.29
## 21425           1632      68.74
## 21426           1651    4992.95
## 21427           1654   77624.47
## 21428           1655     401.91
## 21429           1661     546.22
## 21430           2229      76.68
## 21431           1661     375.99
## 21432           1661     224.05
## 21433           1906     604.81
## 21434           2912     388.23
## 21435           1660       0.00
## 21436           1660     131.38
## 21437           1659     185.59
## 21438           1659     132.00
## 21439           1659     204.68
## 21440           1658     197.56
## 21441           1646    1529.07
## 21442           1645       0.00
## 21443           1351     123.36
## 21444           2127     952.00
## 21445           1519     145.88
## 21447           1633     130.36
## 21448           1633    1097.62
## 21449           1898     178.69
## 21450           1632      33.31
## 21451           1627     288.95
## 21452           1630     108.36
## 21453           1526    4179.33
## 21454            874      46.56
## 21455           1659     251.92
## 21456           1659      88.00
## 21457           1659       0.00
## 21458           1655     144.80
## 21459           1659    2704.00
## 21460           2491     667.66
## 21461           1660    1270.66
## 21462           1655     946.54
## 21463           1651       0.00
## 21464           1605      30.00
## 21465           1651       0.00
## 21466           1651     353.62
## 21467           1652     795.74
## 21468           3725   35200.43
## 21469           1647     196.86
## 21470           1648     736.07
## 21471           1655     711.96
## 21472           2095    5531.45
## 21473           1655       0.00
## 21474           2804      66.68
## 21475           1653     399.47
## 21476           2428     142.49
## 21477           1652     263.10
## 21478           1652      86.98
## 21479           1658     504.05
## 21480           1655      80.00
## 21481           1655     874.07
## 21482           1659     135.18
## 21483           1638    2261.19
## 21484           2027     507.58
## 21485           1611     175.47
## 21486           1631     432.03
## 21487           1625     469.50
## 21488           1805      66.68
## 21489           1623     323.46
## 21490           1658     310.47
## 21491           1655     123.69
## 21492           1655     801.51
## 21493           1653      36.21
## 21494           1653      76.09
## 21495           1654       0.00
## 21496           1654   16123.55
## 21497           1647       0.00
## 21498           1644   18141.06
## 21499           2871      39.25
## 21500           1483      96.42
## 21501           1499       0.00
## 21502           1640       0.00
## 21503           1639     362.41
## 21504           1633     100.00
## 21505           1634      68.81
## 21506           1415     246.41
## 21507           1617      32.59
## 21508           1627     298.41
## 21509           1529     335.71
## 21510           1543     213.07
## 21511           1610     100.00
## 21512           1584       0.00
## 21513           2549       0.00
## 21514           1645      97.48
## 21515           1644     191.72
## 21516           1644    3326.28
## 21517           1645    1129.86
## 21518           2501    3050.16
## 21519           1648      15.10
## 21520           1651       0.00
## 21521           1648    6372.17
## 21522           1654     184.08
## 21523           2498     376.78
## 21524           1655     194.36
## 21525           1653       0.00
## 21526           2085      82.77
## 21527           1632       0.00
## 21528           1870     834.37
## 21529           1611      61.35
## 21530           2101    3826.48
## 21531           1653      25.00
## 21532           1653      20.00
## 21533           1648       0.00
## 21534           2402     239.50
## 21535           1644     347.79
## 21536           1569     458.18
## 21537           1598       0.00
## 21538           1598     846.02
## 21539           1645     521.00
## 21540           1653     192.71
## 21541           1652    1550.38
## 21542           2714     535.46
## 21543           2990     932.36
## 21544           1632   36311.82
## 21545           1396     202.45
## 21546           1664    7273.00
## 21547           1627    2397.50
## 21548           1625      70.00
## 21549           1919      77.17
## 21550           1653    1833.54
## 21551           1653     329.24
## 21552           2105     229.73
## 21553           1655     389.55
## 21554           1654    1671.35
## 21555           1648     193.37
## 21556           1648    1413.73
## 21557           2894     201.60
## 21558           1977   47605.30
## 21559           1555     166.53
## 21560           1632     521.97
## 21561           2455      14.50
## 21562           1637     513.19
## 21563           1633     192.94
## 21564           1634     101.00
## 21565           1639       0.00
## 21566           1616     287.37
## 21567           1591     768.63
## 21568           1591       0.00
## 21569           1644      97.65
## 21570           1645       0.00
## 21571           1646     675.75
## 21572           1646       0.00
## 21573           1892     341.54
## 21574           1653     708.45
## 21575           1652       0.00
## 21576           1652     999.56
## 21577           1652     402.72
## 21578           1652     225.78
## 21579           1455     152.76
## 21580           2107     300.70
## 21581           1525    5741.61
## 21582           2864     851.58
## 21583           1417     308.32
## 21584           1616     226.68
## 21585           1786       0.00
## 21586           1626      73.53
## 21587           1539  131759.69
## 21588           1172       0.00
## 21589           1652     274.73
## 21590           2179      61.61
## 21591           1647       0.00
## 21592           1648      86.64
## 21593           1647     129.18
## 21594           1651      46.04
## 21595           2492     450.06
## 21596           1650     317.88
## 21597           1646     176.85
## 21598           1961     324.50
## 21599           1646      13.75
## 21600           1644     152.78
## 21601           1644     128.65
## 21602           1577    1641.99
## 21603           1634      66.68
## 21604           2468    1197.16
## 21605           1640     109.55
## 21606           1639      67.27
## 21607           1627      69.33
## 21608           1631     167.92
## 21609           1598      30.34
## 21610           1611     507.30
## 21611           2366     318.97
## 21612           1646     206.01
## 21613           1646     463.35
## 21614           1648   16646.39
## 21615           2053     557.70
## 21616           1648     192.18
## 21617           1648     411.77
## 21618           1651      56.68
## 21619           1651      83.60
## 21620           1646      50.01
## 21621           1648    8576.06
## 21622           1569     100.00
## 21623           1638    2281.06
## 21624           1634       0.00
## 21625           1648     433.17
## 21626           1647     484.45
## 21627           1647   10056.47
## 21628           1647       0.00
## 21629           1646       0.00
## 21630           1646       0.00
## 21631           1645     282.81
## 21632           1645       0.00
## 21633           1735     198.03
## 21634           1645    1469.64
## 21635           1634     367.95
## 21636           1639      63.46
## 21637           1638   26722.51
## 21638           1640     177.69
## 21639           1852     273.94
## 21640           1851     142.04
## 21641           1638      40.00
## 21642           1624       0.00
## 21643           2842   10740.47
## 21644           1953      92.11
## 21645           2767       0.00
## 21646           1121      93.15
## 21647           1499     146.34
## 21648           1638     152.60
## 21649           1640       0.00
## 21650           1640    1012.57
## 21651           1639      76.35
## 21652           1639    2570.59
## 21653           1640     420.62
## 21654           2873     251.27
## 21655           1836       0.00
## 21656           1634     353.22
## 21657           2547    4351.43
## 21658           1632   20118.97
## 21659           2987      61.35
## 21660           1619      51.16
## 21661           1631       0.00
## 21662           1627     611.75
## 21663           1610      74.74
## 21664           1591       0.00
## 21665           2217   28225.74
## 21666           1645      30.00
## 21667           1645     241.87
## 21668           1646     739.94
## 21669           1646      68.38
## 21670           1644     204.00
## 21671           1646     339.40
## 21672           1646      86.24
## 21673           1203     334.06
## 21674           1632    3935.00
## 21675           1637     156.97
## 21676           1641    1438.18
## 21677           1640      87.17
## 21678           1641     199.98
## 21679           1638     823.73
## 21680           1638     120.00
## 21681           1638      65.00
## 21682           1638       0.00
## 21683           1591       0.00
## 21684           1602       0.00
## 21685           1610    8011.34
## 21686           1611      94.66
## 21687           2101     246.08
## 21688           1627      96.29
## 21689           1618       0.00
## 21690           1646     116.12
## 21691           1644     239.00
## 21692           2681     480.41
## 21693           1645     221.76
## 21694           1644     408.25
## 21695           1777     239.47
## 21696           1646       0.00
## 21697           1568       0.00
## 21698           1500      31.08
## 21699           2124    2009.87
## 21700           2312     939.07
## 21701           1640     370.64
## 21702           1640     229.17
## 21703           1641       6.75
## 21704           1641     404.31
## 21705           1641    1508.07
## 21706           1637     334.86
## 21707           1634       0.00
## 21708           1634     106.00
## 21709           1637       0.00
## 21710           1401   30282.09
## 21711           1623       0.00
## 21712           1620    1107.41
## 21713           1619       0.00
## 21714           1631    8950.10
## 21715           1641     107.35
## 21716           1627      46.04
## 21717           2360    1842.45
## 21718           1625     343.73
## 21719           1536     124.17
## 21720           1592      87.37
## 21721           1644     264.47
## 21722           1644      88.88
## 21723           1698    1294.46
## 21724           1644     102.73
## 21725           1645     778.17
## 21726           1645     370.68
## 21727           1487      47.70
## 21728           1570       0.00
## 21729           1570       0.00
## 21730           1634     324.03
## 21731           1634    6100.07
## 21732           2363  283395.25
## 21733           1641     149.28
## 21734           1640       0.00
## 21735           1640     293.51
## 21736           1639     585.35
## 21737           1639     181.04
## 21738           1417      38.09
## 21739           1591       0.00
## 21740           1584     116.95
## 21741           1625       0.00
## 21742           1625      38.37
## 21743           1641    5480.28
## 21744           1631      90.00
## 21745           1627    1018.32
## 21746           1620     168.94
## 21747           2899     225.82
## 21748           1645      14.02
## 21749           1645     232.50
## 21750           2506    2165.16
## 21751           1477       0.00
## 21752           1639     115.50
## 21753           1640       6.75
## 21754           1638     202.08
## 21755           1641     354.00
## 21756           1641     341.42
## 21757           1634    7436.66
## 21758           1633       0.00
## 21759           1632      81.89
## 21760           1632       0.00
## 21761           1632     768.10
## 21762           1625     130.40
## 21763           1627       0.00
## 21764           1626      60.01
## 21765           1611    3195.48
## 21766           1836       0.00
## 21767           1633      40.93
## 21768           1634     892.25
## 21769           2704       0.00
## 21770           2396     151.00
## 21771           2272     729.07
## 21772           1569     161.51
## 21773           1581     176.54
## 21774           1575       0.00
## 21775           1640    1834.69
## 21776           2375     982.06
## 21777           1639     595.27
## 21778           1639     455.25
## 21779           1639    2007.41
## 21780           1639   30783.82
## 21781           1639   33761.00
## 21782           1640    3874.27
## 21783           1640   39203.84
## 21784           1637    2453.39
## 21785           1637    1036.81
## 21786           2853    3240.31
## 21787           1627    6748.55
## 21788           1630       7.00
## 21789           1617     379.81
## 21790           1274    3165.33
## 21791           1860     967.39
## 21792           1604     547.17
## 21793           1662     284.31
## 21794           2894     682.55
## 21795           1633       0.00
## 21796           1634     227.77
## 21797           1634     198.37
## 21798           1634       0.00
## 21799           1639       0.00
## 21800           1639      19.54
## 21801           1638     135.20
## 21802           1847     194.93
## 21803           2469     311.30
## 21804           1427      33.38
## 21805           1627     101.92
## 21806           1641    5269.08
## 21807           1626     338.08
## 21808           1626      82.77
## 21809           1619    6125.00
## 21810           1619       0.00
## 21811           1638     423.63
## 21812           1638   58775.33
## 21813           2523     203.19
## 21814           1637    1190.40
## 21815           1634     237.05
## 21816           1740      51.16
## 21817           1637     184.34
## 21818           1637     555.30
## 21819           1633     359.62
## 21820           1619   10356.20
## 21821           1623     173.08
## 21822           1624     268.77
## 21823           1659    1357.56
## 21824           1623     300.30
## 21825           1631     492.07
## 21826           2153     147.88
## 21827           1630       0.00
## 21828           1627     207.41
## 21829           1627     384.92
## 21830           1627       0.00
## 21831           1617     171.84
## 21832           1529     273.69
## 21833           1632     468.06
## 21834           1633     437.35
## 21835           1637    2482.20
## 21836           1634     966.76
## 21837           1637     514.76
## 21838           1637     101.94
## 21839           2063     129.18
## 21840           1634     510.23
## 21841           1634    1943.27
## 21842           1638     758.71
## 21843           1630       0.00
## 21844           1631    1060.23
## 21845           1627      80.00
## 21846           1625    7573.51
## 21847           1624       0.00
## 21848           1624     160.01
## 21849           2512     206.37
## 21850           1316     546.16
## 21851            583       0.00
## 21852           1468     156.37
## 21853           1555     434.24
## 21854           1634      91.97
## 21855           3179   24994.35
## 21856           2984      56.68
## 21857           1633    1922.34
## 21858           1633      83.84
## 21859           1637     697.12
## 21860           1738     692.88
## 21861           1634      88.38
## 21862           1633     226.85
## 21863           1633      56.68
## 21864           1632     276.24
## 21865           1618      49.41
## 21866           1626   46870.65
## 21867           1630     370.41
## 21868           1616       0.00
## 21869           1790     264.46
## 21870           1469     303.23
## 21871           1515     114.17
## 21872           1632     375.84
## 21873           1632       0.00
## 21874           1633       0.00
## 21875           1633     305.12
## 21876           1634      88.10
## 21877           1392     521.48
## 21878           1609       0.00
## 21879           1611       0.00
## 21880           1617     250.16
## 21881           1637    1298.16
## 21882           1630     520.61
## 21883           1627     402.06
## 21884           1625       0.00
## 21885           1625      41.49
## 21886           2329     337.17
## 21887           1617      17.59
## 21888           1619     883.01
## 21889           1623     234.61
## 21890           1533       0.00
## 21891           1632      58.63
## 21892           2623     500.84
## 21893           1541       0.00
## 21894           1624     168.75
## 21895           1810     795.16
## 21896           1617     162.40
## 21897           1575       0.00
## 21898           1634       0.00
## 21899           1634       0.00
## 21900           1634     453.93
## 21901           1617   13496.93
## 21902           1807      61.35
## 21903           1568       0.00
## 21904           1518      91.18
## 21905           1633     768.49
## 21906           1632    1915.52
## 21907           1599    1276.56
## 21908           1603    1086.92
## 21909           1915     236.71
## 21910           1617     246.63
## 21911           1619   14158.23
## 21912           1623      41.25
## 21913           2592     771.61
## 21914           1619       0.00
## 21915           1973  206008.51
## 21916           1625      15.25
## 21917           1627       7.25
## 21918           1627     284.51
## 21919           1627      94.81
## 21920           1630     150.43
## 21921           2546    1366.91
## 21922           1632       0.00
## 21923           1632      85.01
## 21924           1631  136087.79
## 21925           1631     152.56
## 21926           1613     219.92
## 21927           1541       0.00
## 21928           1529     179.22
## 21929           1570       0.00
## 21930           1632     193.47
## 21931           1632     163.22
## 21932           1616       0.00
## 21933           1616     216.99
## 21934           1631      86.22
## 21935           1630      91.75
## 21936           1631    1584.98
## 21937           1627       0.00
## 21938           1630     470.60
## 21939           1630    2148.38
## 21940           3038  346130.82
## 21941           1626       0.00
## 21942           1626     409.66
## 21943           1625     242.00
## 21944           1625       6.50
## 21945           1625      99.00
## 21946           1626       0.00
## 21947           1625       0.00
## 21948           1623     455.58
## 21949           1624     854.34
## 21950           1618     171.34
## 21951           2044     178.13
## 21952           1609      36.00
## 21953           1562     848.03
## 21954           1429     118.18
## 21955           1611     239.31
## 21956           1611     120.87
## 21957           1591      61.35
## 21958           1617      78.85
## 21959           1619     174.16
## 21960           2838     286.78
## 21961           1620     591.68
## 21962           1620     250.27
## 21963           2655       0.00
## 21964           2141      94.90
## 21965           1627  341315.46
## 21966           1627       0.00
## 21967           2384    9036.43
## 21968           1630    2525.10
## 21969           1631    3645.69
## 21970           1617   10580.67
## 21971           1333      66.68
## 21972           1441     331.50
## 21973           1581     168.00
## 21974           1577     663.30
## 21975           1627    1167.87
## 21976           1630    2036.67
## 21977           1626     495.58
## 21978           1626       0.00
## 21979           1626      50.01
## 21980           1627       0.00
## 21981           2368     214.53
## 21982           1625       0.00
## 21983           2393     316.88
## 21984           1623    1020.58
## 21985           1619       0.00
## 21986           2969     141.61
## 21987           1617     229.90
## 21988           1602       0.00
## 21989           1606   24971.30
## 21990           1799       0.00
## 21991           1603     477.62
## 21992           1464     596.08
## 21993           1575       0.00
## 21994           1564     233.91
## 21995           1567      71.50
## 21996           1618      89.14
## 21997           1617     184.85
## 21998           2590     269.90
## 21999           1623       0.00
## 22000           1625    7597.56
## 22001           1625     106.79
## 22002           1625    1837.87
## 22003           1625     331.00
## 22004           1626   12892.36
## 22005           1617   18120.95
## 22006           1613     100.00
## 22007           2449       0.00
## 22008           3892  130159.49
## 22009           1546      49.11
## 22010           1386     276.35
## 22011           1626       0.00
## 22012           1626       0.00
## 22013           1625       0.00
## 22014           1624     109.26
## 22015           1618     116.49
## 22016           1591      90.57
## 22017           1031     205.80
## 22018           1562     862.37
## 22019           1571     185.93
## 22020           1500    1293.84
## 22021           1605    1364.85
## 22022           1606     463.75
## 22023           2778       6.50
## 22024           1619       0.00
## 22025           1620    6333.83
## 22026           1625     122.00
## 22027           2357     216.47
## 22028           1626     226.41
## 22029           1626     283.42
## 22030           1490   12470.48
## 22031           1500     178.32
## 22032           1576      65.61
## 22033           1626    1249.63
## 22034           2408    1091.33
## 22035           1626     920.04
## 22036           1625      14.25
## 22037           1625       0.00
## 22038           1625    2196.79
## 22039           2392     553.39
## 22040           2784   48391.99
## 22041           1620      56.76
## 22042           1620      68.98
## 22043           1624    1814.64
## 22044           1624     224.46
## 22045           1618      13.67
## 22046           1619       0.00
## 22047           2373     150.57
## 22048           2498     324.94
## 22049           1606   11093.73
## 22050           1591       0.00
## 22051           1591     714.56
## 22052           1810       0.00
## 22053           1469     223.27
## 22054           1470     542.25
## 22055           1350       0.00
## 22056           1562     216.48
## 22057           1595     227.80
## 22058           1598      94.65
## 22059           1597       0.00
## 22060           1599       0.00
## 22061           2764     658.69
## 22062           2718    6193.84
## 22063           1605     175.22
## 22064           1611     240.04
## 22065           2393  138153.06
## 22066           1613     257.58
## 22067           1616     131.63
## 22068           1619       0.00
## 22069           1618     266.51
## 22070           1908    1072.13
## 22071           1624     428.02
## 22072           1620     140.69
## 22073           1623       0.00
## 22074           1625     400.39
## 22075           1625     502.81
## 22076           1626     199.68
## 22077           1310     112.70
## 22078            711    8268.61
## 22079           1562     883.11
## 22080           1624      42.60
## 22081           1620     158.10
## 22082           1623     403.12
## 22083           1620      99.32
## 22084           1620    2845.55
## 22085           1619       0.00
## 22086           1946     351.19
## 22087           1624     178.50
## 22088           1623       0.00
## 22089           2939  112955.41
## 22090           1619    1862.56
## 22091           1618    1238.83
## 22092           1613     155.66
## 22093           1616      60.00
## 22094           1616      80.00
## 22095           1611     160.20
## 22096           1611       0.00
## 22097           2190     142.45
## 22098           1606     242.09
## 22099           1609     144.31
## 22100           1591    2060.94
## 22101           1591       0.00
## 22102           1597       0.00
## 22103           2576     105.86
## 22104           1576       0.00
## 22105           1606     106.28
## 22106           1905     202.56
## 22107           1616       0.00
## 22108           1619     311.52
## 22109           1617     989.72
## 22110           1623     538.01
## 22111           1623     105.86
## 22112           1623      83.01
## 22113           1620     291.22
## 22114           1620       0.00
## 22115           1620     210.38
## 22116           1534       0.00
## 22117           1491     332.21
## 22118           2361     913.60
## 22119           1514    2767.21
## 22120           1535     156.66
## 22121           1620       6.75
## 22122           1619       0.00
## 22123           2764     449.62
## 22124           1618      53.34
## 22125           1613       0.00
## 22126           1616     164.85
## 22127           1610       0.00
## 22128           1610      68.98
## 22129           2721     408.17
## 22130           1609       0.00
## 22131           2174     841.45
## 22132           1606     325.21
## 22133           1584     546.86
## 22134           2067       0.00
## 22135           2717     222.45
## 22136           1609       0.00
## 22137           1622       0.00
## 22138           1618     532.42
## 22139           1618     331.20
## 22140           1617     918.95
## 22141           1618    2503.58
## 22142           1620     311.27
## 22143           1619       0.00
## 22144           2926   11511.31
## 22145           1907     323.48
## 22146           1617     414.17
## 22147           2887     495.71
## 22148           1613       0.00
## 22150           2107       0.00
## 22152           1373     104.66
## 22153           1508       0.00
## 22154           1562    1299.50
## 22155           1610     164.93
## 22156           1611       0.00
## 22157           1610      99.33
## 22158           1610     175.00
## 22159           1620     825.57
## 22160           1606     585.63
## 22161           1599   26820.49
## 22162           2773     294.66
## 22163           1591    2390.14
## 22164           1616    3129.15
## 22165           1616    7750.76
## 22166           1619     165.26
## 22167           1618     194.77
## 22168           1618       0.00
## 22169           1287       0.00
## 22170           1477     295.65
## 22171           1493     133.88
## 22172           1619     137.60
## 22173           1617     412.76
## 22174           1617     535.28
## 22175           1616     201.75
## 22176           1616     325.41
## 22177           1613      98.84
## 22178           1612   15498.58
## 22179           1612       0.00
## 22180           1528    3351.47
## 22181           1603      19.50
## 22182           1609       0.00
## 22183           1609      16.67
## 22184           2384     179.50
## 22185           1618  194815.90
## 22186           2911     138.63
## 22187           1611     454.23
## 22188           1384   60380.19
## 22189           1574       0.00
## 22190           1611     448.91
## 22191           1611       0.00
## 22192           1610     404.65
## 22193           1610     138.02
## 22194           1610       0.00
## 22195           1604       0.00
## 22196           1605      96.90
## 22197           1605    1323.17
## 22198           1605       0.00
## 22199           1609      19.00
## 22200           1609       6.50
## 22201           1606       0.00
## 22203           2948     144.07
## 22204           1602      30.00
## 22205           1602       0.00
## 22206           1602     270.42
## 22207           1591       0.00
## 22208           1533      51.16
## 22209           1612       0.00
## 22210           2968      49.11
## 22211           1613      17.92
## 22212           1612     746.36
## 22213           1616     299.68
## 22214           1616     324.85
## 22215           1616      86.64
## 22216           1617    1062.36
## 22217           1616     401.57
## 22218           1616     291.00
## 22219           1613     178.67
## 22220           2836     135.10
## 22221           1613     142.49
## 22222           2178       0.00
## 22223           1616      88.17
## 22224           1613    8552.58
## 22225           1592    1467.30
## 22226           2399    1064.93
## 22227           1583      90.24
## 22228           1590     271.01
## 22229           1602       0.00
## 22230           2310      30.26
## 22231           1602      15.00
## 22232           1606     128.10
## 22233           1606     839.42
## 22234           1609       0.00
## 22235           1610     137.78
## 22236           1609      16.50
## 22237           1610     312.50
## 22238           1610     246.90
## 22239           1610       0.00
## 22240           1611      66.68
## 22241           1611     157.04
## 22242           1568       0.00
## 22243           1499     359.56
## 22244           2931   15908.10
## 22245           1940   72596.94
## 22246           1606       0.00
## 22247           1604       0.00
## 22248           1604     493.72
## 22249           1604     262.85
## 22250           1599     836.22
## 22251           1569     277.88
## 22252           1613     226.95
## 22253           1612       0.00
## 22254           1613     230.39
## 22255           1612    1085.68
## 22256           1848     308.35
## 22257           2127     413.09
## 22258           1571    1218.20
## 22259           1603     197.66
## 22260           1603       0.00
## 22261           1596     369.89
## 22262           1604      66.68
## 22263           1610     363.29
## 22264           1605     384.99
## 22265           1610     526.11
## 22266           2360     240.87
## 22267           1602       0.00
## 22268           1602       0.00
## 22269           1599       0.00
## 22270           1612    1000.99
## 22271           1534   12703.63
## 22272           1499    1564.35
## 22273           2189    1048.22
## 22274           1561     361.44
## 22275           1575   22199.35
## 22276           1408     140.63
## 22277           2871   11140.54
## 22278           1526   61090.56
## 22279           2723     124.03
## 22280           2738     503.43
## 22281           1597     137.97
## 22282           1596    3578.72
## 22283           1592     737.02
## 22284           1591      96.20
## 22285           1591     117.59
## 22286           2444     179.64
## 22287           1610       8.27
## 22288           1610      47.75
## 22289           2962     229.28
## 22290           1613     573.59
## 22291           1948       0.00
## 22292           1605     966.35
## 22293           1603       0.00
## 22294           1604     420.53
## 22295           1605       0.00
## 22296           1605     391.00
## 22297           2835      12.95
## 22298           1613     138.53
## 22299           1606      94.72
## 22300           1606     436.33
## 22301           1473       0.00
## 22302           1609     306.83
## 22303           2496     471.84
## 22304           2860     214.95
## 22305           1606     110.00
## 22306           1610    1714.24
## 22307           2855      14.25
## 22308           1610      35.75
## 22309           2524      30.70
## 22310           1610      31.45
## 22311           1610     863.75
## 22312           2847    1368.09
## 22313           2835   27124.43
## 22314           2012      66.68
## 22315           1606     269.07
## 22316           1610    3397.04
## 22317           1667    5661.90
## 22318           3354  243573.07
## 22319           1592       0.00
## 22320           1596     156.21
## 22321           1596       0.00
## 22322           1596       0.00
## 22323           1596     104.84
## 22324           1602     474.77
## 22325           1602     221.47
## 22326           1603    6353.97
## 22327           1603     285.71
## 22328           1598     177.72
## 22329           1599      87.59
## 22330           1522     151.57
## 22331           1478     125.51
## 22332           2621     729.98
## 22333           1357       0.00
## 22334           1357      89.13
## 22335           1497     375.93
## 22336           1723    5068.55
## 22337           1581       0.00
## 22338           1562     130.05
## 22339           1409       0.00
## 22340           1532     432.27
## 22341           1539       0.00
## 22342           1599      78.17
## 22343           1592      93.36
## 22344           1591    5315.59
## 22345           2661    2833.99
## 22346           2261   24524.29
## 22347           1605     502.89
## 22348           1604    1190.27
## 22349           1610     115.36
## 22350           2791    3560.34
## 22351           1606     291.89
## 22352           2909     114.00
## 22353           1606       0.00
## 22354           1598     685.57
## 22355           1606     204.09
## 22356           1751    1469.70
## 22357           2394     683.22
## 22358           1564     368.43
## 22359           1570       0.00
## 22360           1211       0.00
## 22361           1402       0.00
## 22362           1606     364.80
## 22363           1606    1952.47
## 22364           1606     170.66
## 22365           1654     149.84
## 22366           2790    2423.87
## 22367           1609     393.35
## 22368           1605       0.00
## 22369           2643       0.00
## 22370           1604      72.04
## 22371           1605       0.00
## 22372           1605     113.66
## 22373           1605       0.00
## 22374           1605      78.17
## 22375           1591     441.55
## 22376           1591     106.28
## 22377           1592       0.00
## 22378           1592       0.00
## 22379           1599     418.06
## 22380           1968     226.44
## 22381           1526     245.09
## 22382           1527     180.83
## 22384           1575     148.63
## 22385           1535     298.06
## 22386           1954      32.59
## 22388           1597    1419.71
## 22389           1598     146.98
## 22390           1964     100.00
## 22391           2493     130.15
## 22392           1599     182.04
## 22393           1605     260.78
## 22394           1603     970.30
## 22395           1603     294.84
## 22396           1606     300.25
## 22397           1606       0.00
## 22398           1578       0.00
## 22399           1605       0.00
## 22400           1605       0.00
## 22401           1605    1393.67
## 22402           1606     294.15
## 22403           1596     219.97
## 22404           1574     221.58
## 22405           1504     493.75
## 22406           1602   29924.96
## 22407           1603       8.27
## 22408           1600     215.95
## 22409           1920     139.01
## 22410           1605     197.10
## 22411           1504       0.00
## 22412           1696  101096.17
## 22413           1575       0.00
## 22414           1576     547.98
## 22415           1562       0.00
## 22416           1562    1062.06
## 22417           1568     287.62
## 22418           1568       0.00
## 22419           1567   38653.96
## 22420           1605     157.94
## 22421           1605     199.14
## 22422           2278     186.22
## 22423           1605     195.81
## 22424           1603       0.00
## 22425           1606     312.79
## 22426           1584     159.98
## 22427           1591     479.59
## 22428           2397     147.88
## 22429           1602      40.19
## 22430           1602     302.51
## 22431           1599   17376.93
## 22432           1599     406.74
## 22433           1599   17270.50
## 22434           1599     105.61
## 22435           1599   18487.54
## 22436           1599       0.00
## 22437           1665     160.00
## 22438           1568       0.00
## 22439           1568       0.00
## 22440           1568       0.00
## 22441           1568      43.49
## 22442           1504    1111.61
## 22443           1409       0.00
## 22444           1396     195.34
## 22445           1598     547.90
## 22446           1599     208.85
## 22447           1602      13.75
## 22448           1602     138.31
## 22449           1596     313.43
## 22450           1596       0.00
## 22451           2702     601.81
## 22452           1596       0.00
## 22453           1591     536.37
## 22454           1591     368.85
## 22455           1591       0.00
## 22456           1591       0.00
## 22457           1585       0.00
## 22458           1854   13791.36
## 22459           1603       0.00
## 22460           1533      82.25
## 22461           2454       0.00
## 22462           1568       0.00
## 22463           1569     419.19
## 22464           1576     196.88
## 22465           1571     250.35
## 22466           1534      60.00
## 22467           1603   17121.80
## 22468           1603     479.52
## 22469           1584    3573.89
## 22470           1585      64.01
## 22471           1584     104.99
## 22472           1591       0.00
## 22473           1591    8184.93
## 22474           1592     255.47
## 22475           1596   36328.78
## 22476           1596       0.00
## 22477           1597       6.50
## 22478           2970     183.00
## 22479           2205     175.29
## 22480           2468     111.56
## 22481           1569      30.00
## 22482           2288       0.00
## 22483           1497       0.00
## 22484           1598     246.68
## 22485           1596       0.00
## 22486           1602       7.02
## 22487           1602     207.51
## 22488           1602     122.93
## 22489           2666      20.11
## 22490           1599       1.30
## 22491           1592     576.36
## 22492           1584    2129.05
## 22493           1582      64.01
## 22494           1603     542.23
## 22495           1522      32.59
## 22496           1329       0.00
## 22497           1458     135.97
## 22498           1581      66.68
## 22499           1548     361.44
## 22500           1592     213.12
## 22501           1599    1037.72
## 22502           2124      77.98
## 22503           2097     304.98
## 22504           1570     274.42
## 22505           1597       0.00
## 22506           1590     283.48
## 22507           1733       0.00
## 22508           2688     192.18
## 22509           1591       0.00
## 22510           1598    1408.72
## 22511           1596    6238.10
## 22512           1596    5588.61
## 22513           1596    3842.40
## 22514           1541       7.75
## 22515           1568       0.00
## 22516           1581       0.00
## 22517           1576    1891.60
## 22518           1596       0.00
## 22519           1615     258.68
## 22520           1596     433.69
## 22521           1596       0.00
## 22522           1595       0.00
## 22523           2854       6.50
## 22524           2378     104.57
## 22525           1596     309.85
## 22526           2172    4288.58
## 22527           2714     115.65
## 22528           1598     974.27
## 22529           1595       0.00
## 22530           1592     499.88
## 22531           1592     246.56
## 22532           1592     822.52
## 22533           1592      54.51
## 22534           1591    9259.98
## 22535           1591     243.36
## 22536           1590       0.00
## 22537           1590     211.45
## 22538           1584     168.00
## 22539           1599   13049.94
## 22540           2359       0.00
## 22541           1789    2198.74
## 22542           1578     823.64
## 22543           1569    1023.89
## 22544           1569       0.00
## 22545           1562     165.09
## 22546           1504     456.03
## 22547           1598    2037.81
## 22548           1584     633.36
## 22549           1583     372.22
## 22550           2431     272.52
## 22551           2765     121.60
## 22552           1591       0.00
## 22553           1591    4820.65
## 22554           1598       0.00
## 22555           1989     293.51
## 22556           1596     427.55
## 22557           2072     486.37
## 22558           1595       0.00
## 22559           1595     254.08
## 22560           1595    2124.77
## 22561           1596       0.00
## 22562           1596     722.55
## 22563           2769      87.37
## 22564           1596     204.39
## 22565           1596     185.94
## 22566           1596     482.95
## 22567           1596    3533.43
## 22568           1596     249.72
## 22569           1989     154.76
## 22570           1596     310.63
## 22571           2163     414.05
## 22572            980    3612.50
## 22573           1497       0.00
## 22574           1555     876.73
## 22575           2832     410.48
## 22576           2106    1776.83
## 22577           2687      70.62
## 22578           1576       0.00
## 22579           1576       0.00
## 22580           1575       0.00
## 22581           1575    1154.00
## 22582           2243   17056.93
## 22583           1596       0.00
## 22584           1796     195.57
## 22585           1596      66.68
## 22586           1595     292.60
## 22587           2141     179.32
## 22588           1592      40.00
## 22589           1584     493.35
## 22590           1597     523.94
## 22591           1576       0.00
## 22592           1577       0.00
## 22593           1581       0.00
## 22594           1581      16.39
## 22595           1581      16.39
## 22596           1570     178.96
## 22597           1569       0.00
## 22598           1569      72.98
## 22599           1569      38.09
## 22600           2035       0.00
## 22601           1596     154.33
## 22602           2348     414.81
## 22603           1592   26575.99
## 22604           2137   12600.85
## 22605           1570       0.00
## 22606           1570     403.63
## 22607           1570     319.44
## 22608           1581   31138.01
## 22609           1581    3825.83
## 22610           1592      66.68
## 22611           1592     331.33
## 22612           1591      75.00
## 22613           1591    2878.24
## 22614           1592     117.44
## 22615           1591    1630.52
## 22616           1583    2435.70
## 22617           1584       0.00
## 22618           1473     370.83
## 22619           1480     544.26
## 22620           1487    1033.56
## 22621           1438     422.09
## 22622           1008      98.16
## 22623           1576       0.00
## 22624           1585    5068.00
## 22625           1548   10575.00
## 22626           1527     274.07
## 22627           1528       0.00
## 22628           1576     227.04
## 22629           1562   11727.94
## 22630           1556      98.18
## 22631           1511     121.66
## 22632           2613     291.40
## 22633           2925     501.93
## 22634           1345     182.90
## 22635           1494    7198.78
## 22636           1513       0.00
## 22637           1562       0.00
## 22638           1568     568.67
## 22639           1576       0.00
## 22640           1576       0.00
## 22641           1576       0.00
## 22642           1578   33228.76
## 22643           1577    1295.23
## 22644           1569      71.92
## 22645           1591     128.18
## 22646           1591     182.42
## 22647           1583     352.28
## 22648           1582    2484.69
## 22649           1582    2134.66
## 22650           2561     705.09
## 22651           1584     503.54
## 22652           1582     182.04
## 22653           1543     155.00
## 22654           1367     929.71
## 22655           1578    1123.21
## 22656           1578     108.31
## 22657           2191       0.00
## 22658           1581       0.00
## 22659           1581     390.62
## 22660           1568     177.02
## 22661           1508       0.00
## 22662           1414       0.00
## 22663           1417     304.78
## 22664           1548     279.60
## 22665           2541      87.59
## 22666           1590     203.29
## 22667           1583       0.00
## 22668           1584    1019.73
## 22669           1583     276.09
## 22670           1584     206.22
## 22671           1574    4215.58
## 22672           1591      85.00
## 22673           1294     125.72
## 22674           1567     397.49
## 22675           1562     188.77
## 22676           1556     163.32
## 22677           1562     251.93
## 22678           1578      33.01
## 22679           1585    8778.52
## 22680           1436     451.70
## 22681           1462   21139.08
## 22682           1576       0.00
## 22683           1570     261.78
## 22684           1944     287.25
## 22685           1584       0.00
## 22686           1584     477.06
## 22687           1582    1404.87
## 22688           1527       0.00
## 22689           1576       0.00
## 22690           1575     234.05
## 22691           2222     261.64
## 22692           1690     695.56
## 22693           1584       0.00
## 22694           1585    1009.68
## 22695           1825     118.01
## 22696           1562       0.00
## 22697           1562      52.21
## 22698           1562      36.21
## 22699           1575    1214.23
## 22700           2804    1691.06
## 22701           1569       0.00
## 22702           1584     234.59
## 22703           2715     104.54
## 22704           1576      91.97
## 22705           2598       0.00
## 22706           1576     359.41
## 22707           1576     575.04
## 22708           1584       0.00
## 22709           1584     208.47
## 22710           1583       0.00
## 22711           1522   27917.51
## 22712           1549       0.00
## 22713           2850       0.00
## 22714           2924       0.00
## 22715           2649     110.56
## 22716           1578     220.92
## 22717           1578      38.00
## 22718           1578     179.52
## 22719           1581     265.00
## 22720           1581     254.04
## 22721           1515     101.64
## 22722           1548     569.13
## 22723           1953    2186.98
## 22724           1582       0.00
## 22725           1583     551.19
## 22726           1570       0.00
## 22727           2122     162.22
## 22728           1583      89.07
## 22729           1339     261.40
## 22730           1517     371.13
## 22731           1504    1076.52
## 22732           1581     514.20
## 22733           1581       0.00
## 22734           1555      18.25
## 22735           1578     128.49
## 22736           1575       0.00
## 22737           1575       0.00
## 22738           1575       0.00
## 22739           1576       0.00
## 22740           1576       0.00
## 22741           1764  135556.79
## 22742           1555    2997.26
## 22743           1563   18505.66
## 22744           1567     286.61
## 22745           1583     127.06
## 22746           1582     170.93
## 22747           1549     415.61
## 22748           1536      86.22
## 22749           1533   14075.77
## 22750           1464      88.65
## 22751           1564       0.00
## 22752           1562     525.47
## 22753           1562      78.84
## 22754           1562     826.38
## 22755           1562       0.00
## 22756           1570       6.75
## 22757           1570       0.00
## 22758           1574    1838.43
## 22759           2956     579.08
## 22760           1575     290.77
## 22761           1574     182.18
## 22762           1575       0.00
## 22763           1578     523.21
## 22764           1578     125.41
## 22765           1578       0.00
## 22766           1577      98.23
## 22767           1578   14391.76
## 22768           2211    1091.27
## 22769           1581      68.98
## 22770           1581     221.14
## 22771           1581       0.00
## 22772           1527      66.80
## 22773           1527     840.71
## 22774           1549     243.36
## 22775           1549     835.70
## 22776           2081       0.00
## 22777           1567    9215.79
## 22778           1582    3193.08
## 22779           1582     191.97
## 22780            918       0.00
## 22781           1365     417.64
## 22782           1581      99.71
## 22783           1578   10007.87
## 22784           1578      51.16
## 22785           1578     242.01
## 22786           1878     153.29
## 22787           1575       0.00
## 22788           1576       0.00
## 22789           1576       0.00
## 22790           1570      61.35
## 22791           1569    1021.13
## 22792           1569     366.22
## 22793           1562     579.36
## 22794           1998   22978.63
## 22795           2081    2597.10
## 22796           1581       0.00
## 22797           2313   26085.28
## 22798           1562       0.00
## 22799           2402       0.00
## 22800           1562     125.60
## 22801           1571     917.73
## 22802           2486     155.62
## 22803           1575      91.97
## 22804           1575     240.36
## 22805           2989       0.00
## 22806           1576     488.31
## 22807           1501     868.79
## 22808           1519       0.00
## 22809           1394       0.00
## 22810           1549      48.66
## 22811           1542       0.00
## 22812           1631     219.27
## 22813           2057    4567.18
## 22814           1533       0.00
## 22815           1438      71.40
## 22816           1484     318.36
## 22817           1485     341.27
## 22818           2698     193.22
## 22819           1578   14451.94
## 22820           1570    3673.15
## 22821           1533     113.04
## 22822           2144     127.66
## 22823           1315       0.00
## 22824           1466     399.00
## 22825           1571    2728.05
## 22826           2348     119.09
## 22827           1673     200.04
## 22828           1064     478.61
## 22829           1254     225.10
## 22830           1339      71.40
## 22831           1570     167.60
## 22832           1574     134.00
## 22833           1574       0.00
## 22834           1571     401.87
## 22835           2261    1293.74
## 22836           1569    1780.00
## 22837           1569       0.00
## 22838           1577     342.64
## 22839           1574     216.16
## 22840           1575     136.04
## 22841           1575     725.95
## 22842           1575     629.00
## 22843           2375     166.01
## 22844           1560      48.75
## 22845           1555    4430.67
## 22846           1568    1240.24
## 22847           1407     742.20
## 22848           1533       0.00
## 22849           1534       0.00
## 22850           1549   13238.17
## 22851           1570      91.97
## 22852           1576    2031.62
## 22853           1576    1153.85
## 22854           2085    1538.34
## 22855           1567     478.00
## 22856           1560     194.15
## 22857           1561     482.68
## 22858           2793    1352.27
## 22859           1594  233565.46
## 22860           2624     785.92
## 22861           1569       0.00
## 22862           1569     177.98
## 22863           1571       0.00
## 22864           1574     865.68
## 22865           1571       0.00
## 22866           1571      49.11
## 22867           1514    2170.08
## 22868           1500     381.66
## 22869           1574     228.21
## 22870           2128       0.00
## 22871           1541    3546.86
## 22872           1536     140.57
## 22873           1534      56.55
## 22874           1533      37.98
## 22875           1526      88.68
## 22876           1527     106.28
## 22877           1587   61202.77
## 22878           1492     112.66
## 22879           1574      82.77
## 22880           1569       0.00
## 22881           1569       0.00
## 22882           1574       0.00
## 22883           1929     239.46
## 22884           1575     264.43
## 22885           1575     224.73
## 22886           1576     369.03
## 22887           1776  159805.40
## 22888           1563       0.00
## 22889           1563    5638.00
## 22890           1564       0.00
## 22891           1564       0.00
## 22892           1567     773.91
## 22893           1528    2008.29
## 22894           1528      92.21
## 22895           1546     196.68
## 22896           2570    1765.53
## 22897           1574     171.07
## 22898           2607     429.18
## 22899           1238    6280.24
## 22900           1456     331.54
## 22901           2723   46197.53
## 22902           1569       0.00
## 22903           1569    1482.90
## 22904           1564      43.49
## 22905           2719   30916.17
## 22906           1563       0.00
## 22907           1563     100.00
## 22908           1563       9.00
## 22909           1563      85.13
## 22910           1562      41.40
## 22911           1562     589.39
## 22912           1555     338.70
## 22913           1574     225.76
## 22914           1574     406.12
## 22915           1569      86.64
## 22916           1570       8.27
## 22917           1571     521.65
## 22918           2555     290.21
## 22919           1568     225.10
## 22920           1549     499.94
## 22921           1549     118.54
## 22922           1541      86.68
## 22923           1470     467.12
## 22924            976    3178.16
## 22925           1569     356.47
## 22926           1571      19.54
## 22927           2686     219.64
## 22928           1569     104.33
## 22929           1555     122.57
## 22930           2660    1366.73
## 22931           2806    1637.00
## 22932           2306    1282.00
## 22933           1562     394.57
## 22934           1563     100.00
## 22935           1563     455.58
## 22936           1568     248.78
## 22937           1541       0.00
## 22938           1541      68.67
## 22939           1611       0.00
## 22940           2713    3130.60
## 22941           1543     431.10
## 22942           1549     202.02
## 22943           1954  121093.05
## 22944           1526       0.00
## 22945           1525     143.87
## 22946           1533       0.00
## 22947           1570     337.62
## 22948           2889    1684.87
## 22949           1563     153.49
## 22950           1562    1681.20
## 22951           1999   34522.26
## 22952           1570     159.95
## 22953           1569     547.08
## 22954           1527     417.26
## 22955            800       0.00
## 22956           1464     350.00
## 22957           2274     177.44
## 22958           1562     499.62
## 22959           2589     415.07
## 22960           1563    1084.01
## 22961           1563     358.63
## 22962           1564       0.00
## 22963           1567     125.51
## 22964           1567    8526.77
## 22965           1549     332.39
## 22966           1541       0.00
## 22967           1568     459.05
## 22968           1568    1856.44
## 22969           2178   42892.56
## 22970           2689     213.33
## 22971           1555     156.56
## 22972           2855   48256.62
## 22973           2410    1518.86
## 22974           1569     776.55
## 22975           2945       0.00
## 22976           1543      71.40
## 22977           1546    7719.17
## 22978           2393     134.97
## 22979           1549       0.00
## 22980           1536       0.00
## 22981           2396     310.23
## 22982           1347      49.11
## 22983           1569     117.38
## 22984           1569    4369.51
## 22985           1569    1833.39
## 22986           2000     128.67
## 22987           1562   22480.85
## 22988           1568     260.15
## 22989           1569    5424.86
## 22990           1564    1549.16
## 22991           1567       0.00
## 22992           1497     244.77
## 22993           1409     279.48
## 22994           1529   16308.42
## 22995           1527       0.00
## 22996           1527     108.42
## 22997           1546     133.27
## 22998           2509    5089.98
## 22999           1340     363.03
## 23000           1567       0.00
## 23001           1567     972.70
## 23002           1568       0.00
## 23003           1826      95.18
## 23004           1555       0.00
## 23005           1562   25634.51
## 23006           1562     438.55
## 23007           1563     216.64
## 23008           1563    1292.22
## 23009           2656       9.00
## 23010           1567     310.75
## 23011           1563       0.00
## 23012           2234     163.51
## 23013           1548     463.98
## 23014           1549     191.62
## 23015           2092       0.00
## 23016           1529     414.58
## 23017           1536      51.16
## 23018           1534      78.17
## 23019           1157       0.00
## 23020           2224     141.03
## 23021           1743   35037.62
## 23022           1479     867.35
## 23023           1564     111.84
## 23024           2423     108.05
## 23025           2214    3998.84
## 23026           1562     204.59
## 23027           1561     111.61
## 23028           1561    1156.67
## 23029           1567     175.29
## 23030           1567     372.51
## 23031           1567   10463.36
## 23032           1137      32.51
## 23033           1534      51.16
## 23034           1536     658.85
## 23035           2504     105.64
## 23036           1549     214.12
## 23037           1548     137.01
## 23038           1539     313.03
## 23039           1688     200.97
## 23040           1455      87.41
## 23041           1442     761.36
## 23042           1431     237.89
## 23043           1514       0.00
## 23044           1562    1664.58
## 23045           1562     549.04
## 23046           1562     259.85
## 23047           1562    1015.82
## 23048           2039     813.44
## 23049           1562       0.00
## 23050           1563     318.15
## 23051           1563     200.27
## 23052           1563     138.80
## 23053           1563    1766.97
## 23054           1549     128.18
## 23055           1527     554.17
## 23056           1536     167.75
## 23057           1536       0.00
## 23058           1533       0.00
## 23059           1484     290.51
## 23060           1563      39.08
## 23061           3969  148952.13
## 23062           1687     354.92
## 23063           2235     159.25
## 23064           1549     159.06
## 23065           2728      80.00
## 23066           1543     443.04
## 23067           1570     487.29
## 23068           1569     177.25
## 23069           1543      66.68
## 23070           1549     138.93
## 23071           1560     126.99
## 23072           1562       0.00
## 23073           2525      35.19
## 23074           1555   16788.29
## 23075           1563       0.00
## 23076           1562    1334.29
## 23077           1499     102.32
## 23078           2375       0.00
## 23079           1492       0.00
## 23080           1653   59250.00
## 23081           1549       0.00
## 23082           1549      33.31
## 23083           2465       5.00
## 23084           2448     111.49
## 23085           1542      61.35
## 23086           1829    2757.47
## 23087            744       0.00
## 23088           1555       0.00
## 23089           1562     255.87
## 23090           1561       0.00
## 23091           1535     289.11
## 23092           1561     158.38
## 23093           1561       0.00
## 23094           1561    2325.71
## 23095           1561     110.12
## 23096           1421       0.00
## 23097           1543     311.37
## 23098           1547       0.00
## 23099           1529       0.00
## 23100           1785      51.16
## 23101           1471     175.95
## 23102           1477      86.22
## 23103           1555    1268.18
## 23104           1555     256.49
## 23105           1605     418.86
## 23106           1514      66.68
## 23107           1410    1610.07
## 23108           1526    2343.10
## 23109           1526     336.26
## 23110           1525       0.00
## 23111           1522     196.24
## 23112           1546    2718.92
## 23113           1548     182.25
## 23114           1547       0.00
## 23115           1543     212.90
## 23116           1543     207.35
## 23117           1541     100.35
## 23118           1541      40.00
## 23119           2535   52427.37
## 23120           1555       0.00
## 23121           1555       0.00
## 23122           1555       0.00
## 23123           1555    3354.45
## 23124           1417       0.00
## 23125           1543      39.33
## 23126           2060   21575.31
## 23127           1549       0.00
## 23128           2037     101.06
## 23129           1949      65.18
## 23130           1452     189.00
## 23131           1818    2101.02
## 23132           1519    8298.88
## 23133           3200    1997.67
## 23134           1536      85.13
## 23135           1549       0.00
## 23136           2612      43.50
## 23137           1541      48.72
## 23138           1511     240.66
## 23139           1555     356.02
## 23140           1553       0.00
## 23141           1420     231.41
## 23142           2003    1119.72
## 23143           1543    1201.22
## 23144           1542       0.00
## 23145           1549     273.17
## 23146           1528     292.00
## 23147            538       0.00
## 23148           1549       0.00
## 23149           1546     121.79
## 23150           1541     577.70
## 23151           1539      60.01
## 23152           1554     195.30
## 23153           1553       0.00
## 23154           2877     663.29
## 23155           2390       0.00
## 23156           1534       0.00
## 23157           1555    9209.48
## 23158           1547      41.40
## 23159           1548       0.00
## 23160           1549     703.89
## 23161           1549      56.68
## 23162           1520      12.35
## 23163           1555     745.40
## 23164           1549      98.69
## 23165           2346       0.00
## 23166           1549       0.00
## 23167           1549     261.46
## 23168           1785     381.13
## 23169           1543     194.96
## 23170           1543       0.00
## 23171           1542       0.00
## 23172           1548     231.57
## 23173           1548      66.68
## 23174           2512     190.80
## 23175           1525     199.97
## 23176           1478      81.80
## 23177           1553     413.97
## 23178           1527     754.39
## 23179           1546      46.04
## 23180           1548    3023.31
## 23181           1543     265.39
## 23182           1548       6.50
## 23183           1549      51.16
## 23184           1492       0.00
## 23185           1549     542.21
## 23186           1549     285.96
## 23187           1549     209.71
## 23188           1549      83.03
## 23189           1543      66.68
## 23190           1547     226.64
## 23191           2755     183.82
## 23192           1536    9985.57
## 23193           1520     333.87
## 23194           1302     553.65
## 23195           1466     207.54
## 23196           2902     517.53
## 23197           1547     669.20
## 23198           1543     375.32
## 23199           1543      60.01
## 23200            294       0.00
## 23201           1501     311.07
## 23202           1548       0.00
## 23203           1541       0.00
## 23204           1487      46.04
## 23205           1373     940.59
## 23206           1140     247.15
## 23207           1401   19754.97
## 23208            308    1242.92
## 23209           1794    1089.34
## 23210           2362       0.00
## 23211           1525    3725.44
## 23212           1233    9158.26
## 23213           1291       0.00
## 23214           1319      46.04
## 23215           1486     392.34
## 23216           1477       0.00
## 23217           1479    1638.29
## 23218           1471     437.84
## 23219            751       0.00
## 23220           1511     263.80
## 23221           2712     152.14
## 23222           1532    1698.91
## 23223           1528       0.00
## 23224           1533       0.00
## 23225           1534      41.40
## 23226           1529    1312.07
## 23227           1532     581.37
## 23228           1543      66.68
## 23229           1543     365.19
## 23230           1547      39.20
## 23231           1546     251.78
## 23232           1546       0.00
## 23233           1546     859.42
## 23234           2852      55.62
## 23235           1541     813.30
## 23236           1541     531.33
## 23237           1764     153.52
## 23238           1484       0.00
## 23239           1468     184.00
## 23240           1438     742.79
## 23241           1438      71.40
## 23242           1511    1468.17
## 23243           1506     399.92
## 23244           2065     188.75
## 23245           1517       0.00
## 23246           1542       0.00
## 23247           1541     570.62
## 23248           2296     217.87
## 23249           1541     732.66
## 23250           2765      97.07
## 23251           1547     313.27
## 23252           1547   25211.17
## 23253           1543     807.57
## 23254           1532     142.65
## 23255           2202     376.92
## 23256           1533       0.00
## 23257           1534      49.11
## 23258           1536      66.68
## 23259           1501      91.21
## 23260           1525   44240.39
## 23261           1521      37.00
## 23262           1519     743.97
## 23263           1518     751.80
## 23264           1499     313.54
## 23265           1767     301.65
## 23266           1947     572.95
## 23267           1525     442.74
## 23268           1534     280.57
## 23269           1533   10020.31
## 23270           1529       0.00
## 23271           1532    1055.72
## 23272           1532    1473.48
## 23273           2310    3256.51
## 23274           1547      47.07
## 23275           1536     900.44
## 23276           1541    1245.01
## 23277           1542       0.00
## 23278           1542       0.00
## 23279           1542     165.85
## 23280           1486     894.82
## 23281           1568    6115.26
## 23282           1542     321.12
## 23283           1539     325.50
## 23285           1543     168.13
## 23286           1543     835.52
## 23287           1542      60.01
## 23288           1542     316.81
## 23289           1542    9456.01
## 23290           1532      87.37
## 23291           1534     137.32
## 23292           2620       0.00
## 23293           1536      46.04
## 23294           1522    1393.59
## 23295           1528      89.14
## 23296           1526       0.00
## 23297           1486       3.02
## 23298           1450    5934.77
## 23299           1507     188.77
## 23300           1423     345.10
## 23301           1525    1079.90
## 23302           1786     214.20
## 23303           1534       0.00
## 23304           2276     182.36
## 23305           1540     258.79
## 23306           1337     989.59
## 23307           1479     903.90
## 23308           1514      56.68
## 23309           1540      51.16
## 23310           1541       0.00
## 23311           1919       0.00
## 23312           1534     135.05
## 23313           1528       7.02
## 23314           1339     283.53
## 23315           1515      86.64
## 23316           1519    1780.31
## 23317           1506     905.00
## 23318           2720     711.10
## 23319           1493     135.20
## 23320           1528      14.27
## 23321           1522      50.69
## 23322           1525   15230.85
## 23323           1606   15130.43
## 23324           1525      43.49
## 23325           2372       8.27
## 23326           1533     150.14
## 23327           1533     142.78
## 23328           2394    1764.39
## 23329           1533       0.00
## 23330           1533     176.41
## 23331           1529     227.86
## 23332           1532    2022.62
## 23333           1529    1553.44
## 23334           2765     422.20
## 23335           1541   18789.10
## 23336           2814     264.89
## 23337           1539     417.13
## 23338           1539     170.94
## 23339           2579    3289.72
## 23340           1542      99.20
## 23341           1463      94.14
## 23342           1496    2537.74
## 23344           1539     291.94
## 23345           2579     155.00
## 23346           1536     457.90
## 23347           1540     161.93
## 23348           1609     336.15
## 23349           1540      43.49
## 23350           2920     156.47
## 23351           2471     207.80
## 23352           1541    3618.39
## 23353           1532     147.56
## 23354           1533     183.46
## 23355           1533     164.05
## 23356           1534     240.50
## 23357           1533     258.77
## 23358           1534     108.85
## 23359           1536     592.47
## 23360           1536     363.53
## 23361           1844      92.53
## 23362           1522      84.61
## 23363           1528     709.99
## 23364           1522     184.94
## 23365           1273      66.68
## 23366           1486      12.95
## 23367           1491       0.00
## 23368           1444      64.00
## 23369           1435     164.36
## 23370           1511      61.35
## 23371           2024    1093.65
## 23372           1528     194.42
## 23373           1529       0.00
## 23374           1536     201.08
## 23375           1536     329.22
## 23376           1536     312.01
## 23377           1534       0.00
## 23378           1533     158.78
## 23379           1534   32188.16
## 23380           2206       0.00
## 23381           2597    1090.05
## 23382           1529       0.00
## 23383           1908    1809.00
## 23384           1536   49939.14
## 23385           1539     284.52
## 23386           1539     163.48
## 23387           1459     264.95
## 23388           1484       0.00
## 23389           1519     204.95
## 23390           1597       0.00
## 23391           1511     152.60
## 23392           1506      38.00
## 23393           1848     457.38
## 23394           1535     157.69
## 23395           1529    1765.63
## 23396           1532     356.93
## 23397           1533  225032.57
## 23398           1533       6.50
## 23399           1534     141.93
## 23400           1536     471.40
## 23401           1534     292.23
## 23402           1536     211.72
## 23403           1529       0.00
## 23404           1528       0.00
## 23405           1526     461.48
## 23406           1522      32.59
## 23407           1522     186.49
## 23408           1525      49.22
## 23409           1525     266.38
## 23410           1521       0.00
## 23411           1344       0.00
## 23412           1364     180.06
## 23413           1412   29382.69
## 23414           1532   56873.58
## 23415           2114     190.94
## 23416           1511       0.00
## 23417           1549     409.85
## 23418           1525      41.50
## 23419           1525      87.15
## 23420           1522      47.07
## 23421           1529    1521.54
## 23422           1534     239.92
## 23423           2676     649.04
## 23424           1533     477.10
## 23425           1533      78.50
## 23426           1532     207.07
## 23427           1532     362.30
## 23428           1529       0.00
## 23429           1506      51.16
## 23430           1094     216.73
## 23431           1444       0.00
## 23432           1493     147.27
## 23433           1514     463.36
## 23434           1533     178.59
## 23435           2812       0.00
## 23436           1529     380.65
## 23437           1521     500.83
## 23438           1477     137.24
## 23439           1515    1181.54
## 23440           1493       0.00
## 23441           2902   28472.88
## 23442           1631     115.52
## 23443           1593    1830.46
## 23444           1513      51.16
## 23445           1534     288.60
## 23446           1477      61.90
## 23447           1443      73.37
## 23449           1513       0.00
## 23450           1603  149752.79
## 23451           1518      18.10
## 23452           1507       0.00
## 23453           1500     691.56
## 23454           1534     338.89
## 23455           1534     232.65
## 23456           1533     160.94
## 23457           1532     104.96
## 23458           1532    2264.85
## 23459           1532     221.37
## 23460           1529      48.95
## 23461           3361   29627.06
## 23462           1529      62.00
## 23463           1525      60.01
## 23464           1522     205.92
## 23465           1529     215.88
## 23466           1528      42.46
## 23467           1528     178.94
## 23468           1527     472.56
## 23469           1528       0.00
## 23470           1526      88.88
## 23471           2665    4389.87
## 23472           1521       0.00
## 23473           1521      36.21
## 23474           1318       0.00
## 23475           1483      87.41
## 23476           1463     437.55
## 23477           1511     311.05
## 23478           2816   16572.47
## 23479           1511    2213.24
## 23480           1407    2997.11
## 23481           1522     143.44
## 23482           1520       0.00
## 23483           1526      51.16
## 23484           1930    3865.25
## 23485           1528     124.67
## 23486           1528     198.73
## 23487           1828     101.58
## 23488           2366       0.00
## 23489           1527     658.11
## 23490           1724      90.13
## 23491           1528      20.52
## 23492           1525       8.27
## 23493           1529    4302.68
## 23494           1529    1772.37
## 23495           1533     285.64
## 23496           1533     181.95
## 23497           1505      51.16
## 23498           1476       0.00
## 23499           1514       0.00
## 23500           1519     426.78
## 23501           1967    6894.17
## 23502           1499      84.61
## 23503           1493      18.00
## 23504           1042     105.30
## 23505           2136     272.88
## 23506           1525     449.73
## 23507           1525    2920.45
## 23508           1526    1536.05
## 23509           1528     314.24
## 23510           1960     262.90
## 23511           1527     601.79
## 23512           2003       0.00
## 23513           1526     624.75
## 23514           1518     128.18
## 23515           1521     849.42
## 23516           1521       0.00
## 23517           1520      62.00
## 23518           2848      62.00
## 23519           1511    3068.31
## 23520           1513      53.25
## 23521           1526     196.22
## 23522           1520       6.50
## 23523           1521     497.41
## 23524           1529     103.47
## 23525           1528      38.37
## 23526           1528       0.00
## 23527           1526       0.00
## 23528           1525      86.64
## 23529           1525     225.62
## 23530           1525     416.10
## 23531           1525     431.66
## 23532           1522     235.55
## 23533           1522     253.65
## 23534           1445     573.18
## 23535           1514    2078.12
## 23536           1519       0.00
## 23537           2023   22248.77
## 23538           1525     595.15
## 23539           1525     708.56
## 23540           1525     290.47
## 23541           2046    5226.64
## 23542           1527    1495.37
## 23543           1520     429.03
## 23544           1520     163.30
## 23545           1486      46.56
## 23546           1526    3787.50
## 23547           3275   22038.68
## 23548           1526       0.00
## 23549           1525     264.59
## 23550           1515       0.00
## 23551           1506      71.40
## 23552           1506     131.41
## 23553           1506       0.00
## 23554           1493       0.00
## 23555           1496     221.14
## 23556           1499       0.00
## 23557           1734     185.31
## 23558           1526     920.40
## 23559           2581     659.26
## 23560           1525     557.90
## 23561           1522     898.86
## 23562           1525     260.48
## 23563           1525   68908.75
## 23564           2475     269.16
## 23565           1522    2744.64
## 23566           2399     453.01
## 23567           1527     276.42
## 23568           1520     858.66
## 23569           1522     723.05
## 23570           1450     702.43
## 23571           1346   16801.90
## 23572           1496     282.05
## 23573           2019     719.43
## 23574           2007     269.60
## 23575           2502     128.86
## 23576           1515       0.00
## 23577           1515     117.85
## 23578           2804  229946.47
## 23579           1518     367.85
## 23580           1065      73.56
## 23581           1521      68.74
## 23582           1521     597.50
## 23583           1521     224.88
## 23584           1520       0.00
## 23585           1521     258.35
## 23586           1520     244.07
## 23587           1526    1861.33
## 23588           1525      19.95
## 23589           1526     669.04
## 23590           1219     231.39
## 23591           1451     369.04
## 23592           1431    2929.91
## 23593           1486    4417.67
## 23594           1463     421.00
## 23595           2460    1079.89
## 23596           1519     273.27
## 23597           1651     404.69
## 23598           1515     111.49
## 23599           2376     152.55
## 23600           1514     157.04
## 23601           1513   25046.53
## 23602           1506     140.39
## 23603           2366       0.00
## 23604           1506      47.07
## 23605           1506     297.56
## 23606           1402     242.82
## 23607           2668     105.22
## 23608           2649     282.92
## 23609           1525     114.14
## 23610           1719      68.98
## 23611           1983     234.13
## 23612           1522       0.00
## 23613           1520    6179.55
## 23614           1520     128.19
## 23615           1521     238.76
## 23616           1521     332.95
## 23617           2608     615.87
## 23618           1479       0.00
## 23619           1469     364.41
## 23620           1120    2170.52
## 23621           1506    1815.94
## 23622           1505     152.82
## 23623           1505     183.61
## 23624           1511       0.00
## 23625           1511     298.38
## 23626           1512     160.42
## 23627           1711       0.00
## 23628           1518     203.39
## 23629           1522     119.00
## 23630           1522     676.99
## 23631           1521      60.00
## 23632           1520     536.22
## 23633           1520       0.00
## 23634           2972     359.77
## 23635           1525    3756.86
## 23636           1525     145.46
## 23637           1113     195.19
## 23638           1471    5262.04
## 23639           1486     417.68
## 23640           1463   56051.84
## 23641           1450      30.00
## 23642           1450     262.27
## 23643           1518     673.28
## 23644           1519     176.71
## 23645           1518     539.35
## 23646           1969     666.47
## 23647           1515      19.95
## 23648           1519     722.73
## 23649           2327   58905.03
## 23650           1508    2281.32
## 23651           2096    1949.53
## 23652           2707      19.00
## 23653           1522    3156.37
## 23654           1520       0.00
## 23655           1520    2850.02
## 23656           1520     220.57
## 23657           1521   44192.98
## 23658           1521     273.97
## 23660           1245      61.35
## 23661           1506     274.69
## 23662           1493     440.95
## 23663           1517     226.31
## 23664           1515    3455.69
## 23665           1512     365.44
## 23666           1521    6623.57
## 23667           1582    1131.63
## 23668           2131     674.25
## 23669           1520      98.65
## 23670           1486     205.75
## 23671           1677     170.04
## 23672           1911     121.66
## 23673           1519       0.00
## 23674           1519       0.00
## 23675           1499     410.69
## 23676           1520     947.23
## 23677           1450     130.17
## 23678           1506     249.77
## 23679           1506      79.80
## 23680           1506      48.72
## 23681           1508     108.67
## 23682           1506     225.00
## 23683           1492       0.00
## 23684           1519    1285.97
## 23685           1519     669.58
## 23686           1515     668.84
## 23687           1514     931.79
## 23688           1514      80.00
## 23689           1514     115.52
## 23691           1515    1399.90
## 23692           1511    1565.16
## 23693           1402    1553.24
## 23694           1520     116.80
## 23695           1520     353.71
## 23696           1520    1014.99
## 23697           2640     381.48
## 23698           1260       0.00
## 23699           1336    8866.76
## 23700           1495     247.39
## 23701           1511    2657.50
## 23702           1512     108.45
## 23703           1514     304.30
## 23704           1515       0.00
## 23705           1715     712.63
## 23706           1517     113.12
## 23707           1517   42248.83
## 23708           1519    2616.74
## 23709           1519   78623.75
## 23710           1518    1222.45
## 23711           1518     609.45
## 23712           2078     790.00
## 23713           1522    9389.02
## 23714           1499      72.98
## 23715           1249       0.00
## 23716           1249     123.09
## 23717           1520    3871.33
## 23718           1442  114546.88
## 23719           1480      84.61
## 23720           1500       0.00
## 23721           2810    1015.19
## 23722           1518     975.74
## 23723           1518     570.75
## 23724           1518     875.50
## 23725           1518   23725.36
## 23726           1518   32718.48
## 23727           1519     692.28
## 23728           1515     196.60
## 23729           1515      52.00
## 23730           1514     719.25
## 23731           1515    1640.43
## 23732           1513    2060.47
## 23733           1028      84.80
## 23734           1513      47.49
## 23735           1513       0.00
## 23736           1512     116.00
## 23737           1512     140.38
## 23738           1515     232.95
## 23739           2255    1671.00
## 23740           1514    1538.56
## 23741           1514       0.00
## 23742           1515     234.05
## 23743           2593     192.68
## 23744           1515    1622.48
## 23745           1511      88.29
## 23746           2043      88.29
## 23747           1507    1142.72
## 23748           1505     241.55
## 23749           1693     257.60
## 23750           1500       0.00
## 23751           1499     394.56
## 23752           1499   20775.00
## 23753           1492      50.69
## 23754           2506     122.17
## 23755           1477   59079.28
## 23756           1235    7200.99
## 23757           1479     499.19
## 23758           1478     113.89
## 23759           1485     450.00
## 23760           1476      41.95
## 23761           1491     326.79
## 23762           1598    1792.97
## 23763           1449     212.64
## 23764           1499      84.61
## 23765           1501      34.10
## 23766           1507     797.04
## 23767           1515     198.91
## 23768           1515    1251.42
## 23769           2776   12727.08
## 23770           1514     207.17
## 23771           1514   35493.04
## 23772           1513   18143.68
## 23773           1513     292.21
## 23774           1987     237.91
## 23775           1513     612.72
## 23776           1415     134.62
## 23777           1590     940.27
## 23778           1441      84.61
## 23779           1458       0.00
## 23780           2430     196.62
## 23781           1480       0.00
## 23782           1513      72.26
## 23783           1512       0.00
## 23784           1511   20356.11
## 23785           1497     278.66
## 23786           1496     229.41
## 23787            860    7037.86
## 23788           1499     595.05
## 23789           1501     161.24
## 23790           1513    1332.27
## 23791           1514       0.00
## 23792           1561     365.49
## 23793           1514     642.58
## 23794           1373     335.62
## 23795           1339     220.35
## 23796           1514     504.92
## 23797           1514    3655.87
## 23798           1514    3708.91
## 23799           1513      89.79
## 23800           1513     677.52
## 23801           1511       0.00
## 23802           1501       0.00
## 23803           1505     100.00
## 23804           1511     234.95
## 23805           1508     500.96
## 23806           1506      75.00
## 23807           1499      94.14
## 23808           1497     884.40
## 23809           1497    2105.64
## 23810           1478   26806.24
## 23811           1459      62.00
## 23812           1499     105.70
## 23813           2549       0.00
## 23814           1500     108.85
## 23815           1511   14838.60
## 23816           2214       0.00
## 23817           1501   11145.64
## 23818           3031  211294.41
## 23819           1504     218.37
## 23820           1498     110.46
## 23821           1612     299.00
## 23822           1511     483.96
## 23823           1512    1039.80
## 23824           2804     231.63
## 23825           1512     420.42
## 23826           1514     479.62
## 23827           1513   11464.50
## 23828           1389   59507.96
## 23829           1643    1121.51
## 23830           1925     432.17
## 23831           1485     706.20
## 23832           1925    1574.88
## 23833           1154       0.00
## 23834           1504     463.62
## 23835           1501     657.37
## 23836           1506    1516.89
## 23837           1511     621.40
## 23838           1511       0.00
## 23839           1507      84.13
## 23840           1506     228.86
## 23841           1564     347.62
## 23842           1499       0.00
## 23843           1706   37701.66
## 23844           1967     523.92
## 23845           1487     510.37
## 23846           1484     215.52
## 23847           1123      36.21
## 23848           1438    1151.92
## 23849           1450      56.98
## 23850           1452     253.50
## 23851           1494      75.33
## 23852           2761     325.16
## 23853           1500     423.12
## 23854           1500       0.00
## 23855           1501    2353.35
## 23856           2942  109503.89
## 23857           1507     153.64
## 23858           1507       0.00
## 23859           1506     320.01
## 23860           1506      51.16
## 23861           1507     208.03
## 23862           1511     130.45
## 23863           1505       0.00
## 23864           1506      41.40
## 23865           1504       0.00
## 23866           1930     149.13
## 23867           2752       0.00
## 23868           1493       0.00
## 23869           1401       0.00
## 23870           1436      65.31
## 23871           1484     192.61
## 23872           1479     131.82
## 23873           1476      64.01
## 23874           1462    3594.92
## 23875           1379     691.49
## 23876           1493     287.79
## 23877           1505     111.22
## 23878           1501     111.98
## 23879           1501     794.78
## 23880           1501     140.31
## 23881           1848    1495.27
## 23882           1507     106.64
## 23883           1507       0.00
## 23884           1506     113.29
## 23885           1506    1579.29
## 23886           1507    1541.20
## 23887           1508    1175.07
## 23888           1501    7598.46
## 23889           1500     363.44
## 23890           2046      82.77
## 23891           1497     536.53
## 23892           1493      75.52
## 23893           1494     134.06
## 23894           1395     125.11
## 23895           1480     130.44
## 23896           1501      63.16
## 23897           1507     693.75
## 23898           2408    8446.14
## 23899           1508     486.68
## 23900           1478   11486.62
## 23901           1508       0.00
## 23902           1507     148.38
## 23903           1506     143.52
## 23904           1506    2044.70
## 23905           1499       0.00
## 23906           1497     146.29
## 23907           1501    4205.05
## 23908           1493       0.00
## 23909           1494      86.98
## 23910           1771     497.72
## 23911           1506   14480.17
## 23912           1505     250.70
## 23913           1501      80.00
## 23914           1589     109.17
## 23915           1665     109.17
## 23916           1506     198.44
## 23917           1507       0.00
## 23918           1507     412.50
## 23919           1141      32.51
## 23920           1485    2715.62
## 23921           1443       0.00
## 23922           1442     308.64
## 23923           1459     639.00
## 23924           1462   22550.00
## 23925           1504     500.12
## 23926           1504     175.60
## 23927           1506     195.30
## 23928           1506     265.33
## 23929           2263       0.00
## 23930           1493     121.67
## 23931           1497   15431.38
## 23932           1501     123.99
## 23933           1493       0.00
## 23934           1493    1134.99
## 23935           1555       0.00
## 23936           2401     327.29
## 23937           1206       0.00
## 23938           1395     220.52
## 23939           1396     208.00
## 23940           1288    2850.65
## 23941           1456      73.00
## 23942           1441    9856.77
## 23943           1490     660.63
## 23944           1464      60.01
## 23945           1501     156.60
## 23946           1501       0.00
## 23947           1501     146.48
## 23948           1837    7448.21
## 23949           1499       6.75
## 23950           1784   40480.28
## 23951           1497     140.18
## 23952           1497    1074.64
## 23953           1496     481.14
## 23954           1505     327.17
## 23955           1505      60.09
## 23956           1505     102.13
## 23957           1504      99.04
## 23958           1504     760.12
## 23959           2254     163.82
## 23960           1504    3576.91
## 23961           1504     468.35
## 23962           1501     659.45
## 23963           1501     148.78
## 23964           1501      65.00
## 23965           1485     202.77
## 23966           1365     243.00
## 23967           1501     147.79
## 23968           1504     333.34
## 23969           1504     992.72
## 23970           1505     435.71
## 23971           1494       0.00
## 23972           1494       0.00
## 23973           3175   26418.21
## 23974           1499     837.01
## 23975           1497     470.11
## 23976           2471    2691.03
## 23977           1501     116.91
## 23978           1500    3277.08
## 23979           1501     590.40
## 23980           1149       0.00
## 23981            398       0.00
## 23982           2626     246.41
## 23983           2172    1100.42
## 23984           1484     446.90
## 23986           2307     919.37
## 23987           2095    9285.11
## 23988           1487    1698.52
## 23989           1438     116.72
## 23990           1497     116.17
## 23991           1499       7.02
## 23992           1494     706.61
## 23993           1493    2694.88
## 23994           1497       0.00
## 23995           1501     930.95
## 23996           1487       0.00
## 23997           1487       0.00
## 23998           2025     336.35
## 23999           1490     321.40
## 24000           1476      84.61
## 24001           1862     410.34
## 24002           1496     221.53
## 24003           1496     116.90
## 24004           2038    1094.37
## 24005           1494      10.99
## 24006           1494     316.75
## 24007           1499     792.40
## 24008           1497     222.32
## 24009           1501     668.52
## 24010           1500     761.92
## 24011           2008     227.81
## 24012           1712     159.16
## 24013           1494     395.12
## 24014           1494    2312.75
## 24015           1494     168.15
## 24016           1497     105.61
## 24017           1413      17.64
## 24018           1409     138.57
## 24019           1472     579.98
## 24020           1480     156.57
## 24021           1486   20194.61
## 24022           1487     152.30
## 24023           1497       0.00
## 24024           2435     235.10
## 24025           1494     184.53
## 24026           1816    1941.85
## 24027           1492     296.01
## 24028           1500     927.16
## 24029           1491     100.00
## 24030           1490       0.00
## 24031           1479      91.72
## 24032           1455    1719.49
## 24033           1198   90851.25
## 24034           1492      76.76
## 24035           1493     708.37
## 24036           1493     113.00
## 24037           1497     273.78
## 24038           1494    1628.86
## 24039           1494      39.75
## 24040           2174     190.00
## 24041           1493     192.43
## 24042           1690     157.84
## 24043           1497       0.00
## 24044           1497     134.17
## 24045           2160    1416.67
## 24046           1497       0.00
## 24047           1497      56.68
## 24048           2716      56.68
## 24049           2009       0.00
## 24050           1396    1546.42
## 24051           1443      86.64
## 24052           1479    1629.54
## 24053           1480     192.62
## 24054           1478     465.12
## 24055           2851       0.00
## 24056           1480      84.61
## 24057           1483      86.22
## 24058           1476       0.00
## 24059           1484     548.18
## 24060           1487     717.25
## 24061           1490     418.86
## 24062           1490     510.37
## 24063           1487    1679.89
## 24064           1485     661.91
## 24065           1494     171.26
## 24066           1494       0.00
## 24067           1494      21.77
## 24068           2276     131.80
## 24069           1497   23060.38
## 24070           1497     130.20
## 24071           1493     140.40
## 24072           1486       0.00
## 24073           1486    1386.48
## 24074           1487       0.00
## 24075           1480       6.50
## 24076           1478       0.00
## 24077           1480     101.50
## 24078           1477      77.40
## 24079           1442      20.70
## 24080           1372     126.81
## 24081           1716    1397.39
## 24082           1492       8.00
## 24083           1492     217.37
## 24084           1961     238.39
## 24085           2118    4495.25
## 24086           1494     730.32
## 24087           1494     171.73
## 24088           1496     545.65
## 24089           1497     433.27
## 24090           2015      46.04
## 24091           1449     967.03
## 24092           2472       8.00
## 24093           1494   11264.90
## 24094           1493      78.17
## 24095           1493      50.01
## 24096           1493    2168.78
## 24097           1402     386.44
## 24098           1049      86.22
## 24099            498     123.27
## 24100           1486     162.27
## 24101           1486    6036.76
## 24102           1491     154.70
## 24103           1490      12.95
## 24104           1462     491.87
## 24105           1464     169.48
## 24106           1476     418.14
## 24107           1476       0.00
## 24108           1472     129.47
## 24109           1480     144.24
## 24110           1485      97.00
## 24111           1468   61837.08
## 24112           1492     266.59
## 24113           1466     321.03
## 24114           2294     159.64
## 24115           1483     220.13
## 24116           1492     431.83
## 24117           1493     481.50
## 24118           1478     360.88
## 24119           1473     197.67
## 24120           1490      30.69
## 24121           1539     293.09
## 24122           1493      97.05
## 24123           1493       0.00
## 24124           2232       0.00
## 24125           1492       0.00
## 24126           1554      24.69
## 24127           1414     369.44
## 24128           2548     367.05
## 24129           1902    8540.22
## 24130           1490     199.80
## 24131           1490     511.89
## 24132           1462    2128.52
## 24134           1485     175.28
## 24135           1487     132.51
## 24136           1487  150287.48
## 24137           1487     672.61
## 24138           1487     646.20
## 24139           1464     919.99
## 24140           1476       0.00
## 24141           1471     247.75
## 24142           2061     164.65
## 24143           1573  151000.01
## 24144           1484       0.00
## 24145           1484      86.68
## 24146           1656     260.85
## 24147            130      96.29
## 24148           2393     167.26
## 24149           1483       0.00
## 24150           1480      10.00
## 24151           1479     100.00
## 24152           1478     280.69
## 24153           1478     253.87
## 24154           1479     283.01
## 24155           1485     844.98
## 24156           1485     157.85
## 24157           2327       0.00
## 24158           1487      86.79
## 24159           1491      78.95
## 24160           1490       0.00
## 24161           1490       7.00
## 24162           1490       7.00
## 24163           1466     518.77
## 24164           1468    7493.23
## 24165           1123     124.20
## 24166           1487    2315.81
## 24167           1416      94.66
## 24168           1219     266.19
## 24169           1324     148.84
## 24170           1491    4116.22
## 24171           2672       0.00
## 24172           2028     260.67
## 24173           1490      52.63
## 24174           2163    1481.72
## 24175           1974     102.32
## 24176           1487     378.87
## 24177           1487     356.43
## 24178           1480     539.94
## 24179           1485      38.82
## 24180           2135     345.69
## 24181           1472      94.66
## 24182           1473       0.00
## 24183           1235      88.82
## 24184           1455     106.00
## 24185           1826     100.99
## 24186           1417       0.00
## 24187            838       0.00
## 24188           1396       0.00
## 24189           1329     228.77
## 24190           1336     427.50
## 24191           1336     262.50
## 24192           1459     307.93
## 24193           1473       0.00
## 24194           1473      88.77
## 24195           2799     242.68
## 24196           1476     123.07
## 24197           1470     203.91
## 24198           1485       0.00
## 24199           1484    2907.50
## 24200           1483       0.00
## 24201           1480     116.28
## 24202           1478     479.30
## 24203           1487     155.56
## 24204           1487     561.98
## 24205           1487     383.56
## 24206           1487      89.14
## 24207           1487      94.14
## 24208           1486      86.00
## 24209           1486     250.31
## 24210           1490    5188.18
## 24211           1490       0.00
## 24212           1487      35.55
## 24213           1490       9.25
## 24214           1490     517.94
## 24215           1464     471.72
## 24216           1466      61.35
## 24217           1346      14.25
## 24218           2265       0.00
## 24219           1064    6577.23
## 24220           1468     434.36
## 24221           1463   17996.41
## 24222           1463     257.43
## 24223           1486     108.39
## 24224           1828     278.01
## 24225           1485    1305.63
## 24226           2171     131.10
## 24227           1486   20809.42
## 24229           2259     114.63
## 24230           1484       0.00
## 24231           1455   28668.09
## 24232           1413       0.00
## 24233           1385     212.86
## 24234           1479     325.36
## 24235           1471      55.58
## 24236           1338     198.86
## 24237           1480      13.25
## 24238           1480     783.78
## 24239           1485    5470.03
## 24240           1468       0.00
## 24241           1444     214.21
## 24242           1484       0.00
## 24243           1262       0.00
## 24244           1457       0.00
## 24245           1964     447.82
## 24246           1818    4200.05
## 24247           1486     286.89
## 24248           1485       0.00
## 24249           1486     747.77
## 24250           1483     754.73
## 24251           1483       0.00
## 24252           1483     152.06
## 24253           1483     124.00
## 24254           1484     169.74
## 24255           1484    1106.97
## 24256           2715     353.21
## 24257           1485       0.00
## 24258           1484      34.00
## 24259           1484       0.00
## 24260           1479     387.10
## 24261           1479      60.87
## 24262           1480     580.99
## 24263           1478     531.23
## 24264           1471     694.58
## 24265           1469    1120.14
## 24266           1477     516.79
## 24267           1347    1100.00
## 24268           1407     485.54
## 24269           1476      61.35
## 24271           1471   28148.36
## 24272           1478    7804.82
## 24273           1479       0.00
## 24274           1565     457.10
## 24275           2010      53.26
## 24276           1484     811.64
## 24277           1483     258.37
## 24278           1483       0.00
## 24279           1480    2097.63
## 24280           1860     986.47
## 24281           1456     263.71
## 24282           1958   14611.26
## 24283           2562     483.61
## 24284           1434     100.96
## 24285           1456      71.92
## 24286           1485       0.00
## 24287           1420     326.61
## 24288           1442     773.46
## 24289           2266     509.50
## 24290           1480     791.45
## 24291           1485     428.62
## 24292           2311   27258.34
## 24293           1484      86.36
## 24294           1478       0.00
## 24295           1476    3818.74
## 24296           1341     255.22
## 24297           2433     383.43
## 24298           1402      97.49
## 24299           1476      41.25
## 24300           1477      74.41
## 24301           1477     940.07
## 24302           1473       0.00
## 24303           1476      91.97
## 24304           1469    1551.45
## 24305           1478     148.13
## 24306           1479      82.77
## 24307           1479      41.40
## 24308           1478    6918.22
## 24309           1480       0.00
## 24310           1995       0.00
## 24311           1480     223.42
## 24312           1483      62.86
## 24313           2611     232.05
## 24314           1107       0.00
## 24315           1442   12977.31
## 24316           1340      81.10
## 24317           1339       0.00
## 24318           1429     126.16
## 24319           1423       0.00
## 24320           2553       0.00
## 24321           1438   20338.78
## 24322           1464      44.48
## 24323           1464       0.00
## 24324           2506     100.27
## 24325           2696   11253.63
## 24326           1480     427.46
## 24327           1479     190.87
## 24328           1479    3747.29
## 24329           1469   22376.52
## 24330           1471     329.44
## 24331           1472    8003.66
## 24332           1473       0.00
## 24333           2225     796.40
## 24334           1478       0.00
## 24335           1478      82.77
## 24336           1466     609.96
## 24337           1465    1640.18
## 24338           1477       0.00
## 24339           1477     304.17
## 24340           1478     248.02
## 24341           1471     142.22
## 24342           1470       0.00
## 24343           1464    3002.42
## 24344           1409    1770.88
## 24345           1406     203.28
## 24346           1395       0.00
## 24347           1338     818.05
## 24348           1319       0.00
## 24349           1464    1435.74
## 24350           1469     129.54
## 24351           1469    7682.49
## 24352           2629     531.76
## 24353           1472     178.76
## 24354           1477     279.17
## 24355           1478    2168.03
## 24356           1939      39.33
## 24357           1478     906.07
## 24358           1479      66.36
## 24359           1479     461.02
## 24360           1479    3758.27
## 24361           1456     270.83
## 24362           1457    1949.49
## 24363           1455       0.00
## 24364           1455     134.83
## 24365           1449     599.90
## 24366           1242    3828.69
## 24367           1332     123.69
## 24368           1786       0.00
## 24369           1442     135.28
## 24370           2682   18468.02
## 24371           1478     637.15
## 24372           1478     624.80
## 24373           1477     143.66
## 24374           1481     225.12
## 24375           1473    5880.88
## 24376           1476     274.77
## 24377           1473     306.68
## 24378           1471      84.36
## 24379           2023   94185.81
## 24380           1472    1660.38
## 24381           1463     158.54
## 24382           1358     294.15
## 24383           2533       0.00
## 24384           1464     316.64
## 24385           2230       0.00
## 24386           1471     336.00
## 24388           1469     259.29
## 24389           1470     184.34
## 24390           2772    1021.48
## 24391           1470      15.02
## 24392           1470    1427.19
## 24393           1470     419.48
## 24394           1473     314.99
## 24395           3146     220.81
## 24396           1476   36670.28
## 24397           1814       0.00
## 24398           2548     197.25
## 24399           1477       0.00
## 24400           2240     472.36
## 24401           1476     178.92
## 24402           1476       0.00
## 24403           2316   36709.25
## 24404           1476     130.88
## 24405           1477     399.22
## 24406           2334     250.42
## 24407           1456       0.00
## 24408           2006    5350.12
## 24409           1456      47.07
## 24410           1441       8.27
## 24411           1459       0.00
## 24412           1459     153.01
## 24413            805       0.00
## 24414           1666     312.65
## 24415           1417     189.40
## 24416           1387    2033.02
## 24417           1441     329.59
## 24418           1456      47.07
## 24419           1456     115.67
## 24420           1455     246.76
## 24421           1451    6805.14
## 24422           1476       0.00
## 24423           1476       0.00
## 24424           1476      68.94
## 24425           1477    5249.51
## 24426           1473      68.98
## 24427           1472       0.00
## 24428           1470      20.11
## 24429           1573     429.45
## 24430           1472     454.58
## 24431           1472     102.56
## 24432           1472     296.23
## 24433           1464       0.00
## 24434           1465     465.75
## 24435           1466     812.89
## 24436           1468       0.00
## 24437           1465    1189.52
## 24438           2199     451.62
## 24439           1694     191.38
## 24440           2774     240.60
## 24441           1464     971.45
## 24442           1462     100.00
## 24443           2749   20506.43
## 24444           1470       0.00
## 24445           1472     215.90
## 24446           1476   10473.65
## 24447           1473     380.24
## 24448           1437     102.89
## 24449           1459     241.25
## 24450           2806     457.66
## 24451           1470     666.26
## 24452           1472       0.00
## 24453           2880  315630.25
## 24454           1472      93.45
## 24455           1472     755.85
## 24456           1472       7.02
## 24457           1471     492.39
## 24458           1472     235.61
## 24459           1469     233.10
## 24460           1472       0.00
## 24461           1471      51.16
## 24462           1465     119.54
## 24463           1464     460.47
## 24465           1357     207.80
## 24466           1339     332.17
## 24467           1413      99.01
## 24468           1163   26519.20
## 24469           2669     223.00
## 24470           1465       0.00
## 24471           1464     297.93
## 24472           1463    3415.30
## 24473           1462     289.98
## 24474           1472       0.00
## 24475           1470     241.98
## 24476           1470    1032.27
## 24477           1471     958.25
## 24478           1472     124.02
## 24479           1455     258.63
## 24480           2267     140.39
## 24481           1379     219.74
## 24482           1429      66.68
## 24483           1269     215.27
## 24484           1301     295.00
## 24485           1455       0.00
## 24486           2265       0.00
## 24487           1443     532.80
## 24488           1470     373.86
## 24489           1470     566.22
## 24490           1824     710.25
## 24491           1469       0.00
## 24492           1462    2335.75
## 24493           1462     160.15
## 24494           2325     370.28
## 24495           1462     875.49
## 24496           1462      50.14
## 24497           1462   11770.07
## 24498           1468     221.60
## 24499           2257   92957.06
## 24500           1466     261.56
## 24501           1466     648.49
## 24502           2299     318.97
## 24503           1955       0.00
## 24504           1466     246.54
## 24505           1466       0.00
## 24506           1516      60.00
## 24507           1466      66.68
## 24508           3057  272041.96
## 24509           1463    4347.82
## 24510           2672       0.00
## 24511           1464   18644.48
## 24512           1464       0.00
## 24513           2008    4627.36
## 24514           1470    2675.03
## 24515           1470     201.17
## 24516           1469     762.52
## 24517           1502      78.20
## 24518           1470     727.01
## 24519           2672      47.07
## 24520           2036     647.10
## 24521           1455       0.00
## 24522           2799     530.44
## 24523           1455     155.01
## 24524           1436     112.32
## 24525           1435     517.37
## 24526           1438     456.31
## 24527           2262     512.14
## 24528           1459     133.11
## 24529           2292     178.38
## 24530           1381     228.95
## 24531           2162    6388.41
## 24532           1409   11560.39
## 24533           1259     135.97
## 24534           1331     313.69
## 24535           1717       0.00
## 24536           1459   15597.97
## 24538           1452     697.99
## 24539           1469      68.00
## 24540           1466    2189.79
## 24541           2900  126549.84
## 24542           1465     115.17
## 24543           1465       0.00
## 24544           1471     119.39
## 24545           1464      33.92
## 24546           1466     115.56
## 24547           1466     276.00
## 24548           1416   27496.31
## 24549           2242  137616.07
## 24550           1463     168.80
## 24551           1463     471.92
## 24552           1463     551.92
## 24553           1464      51.95
## 24554           1462     198.26
## 24555           1463     638.95
## 24556           1463     111.36
## 24557           1463     322.31
## 24558           1452     264.64
## 24559           1442      61.60
## 24560           1449     201.81
## 24561           2103     407.09
## 24562           1459     560.54
## 24563           2683       0.00
## 24564           1325     145.16
## 24565           1442     106.57
## 24566           1464     102.61
## 24567           1464     479.76
## 24568           1464     238.03
## 24569           1466     294.48
## 24570           1465     231.49
## 24571           1463      36.21
## 24572           1464     182.13
## 24573           1450       0.00
## 24574           1455     280.61
## 24575           2393     159.67
## 24576           1431   24690.50
## 24577           1086     806.45
## 24578           1345    1674.32
## 24579           1818       0.00
## 24580           2292     393.32
## 24581           1438      71.40
## 24582           1455     288.22
## 24583           1456       0.00
## 24584           1456     373.00
## 24585           1452       0.00
## 24586           1499   25854.98
## 24587           2046    2448.26
## 24588           1451       0.00
## 24589           1444     134.05
## 24590           1442     176.61
## 24591           1442     108.42
## 24592           1442     548.57
## 24593           1442    1997.69
## 24594           1459      75.52
## 24595           1464    5263.26
## 24596           2531     185.65
## 24597           2521   19879.11
## 24598           1464     267.08
## 24599           1464    1144.20
## 24600           2416     750.24
## 24601           1463    2277.33
## 24602           1462     287.96
## 24603           1462     500.50
## 24604           1409     100.14
## 24605           1814     104.66
## 24606           2624    8620.41
## 24607           1400     891.37
## 24608           1294       0.00
## 24609           1462      59.00
## 24610           1462   27388.62
## 24611           1462     457.92
## 24612           1464     371.87
## 24613           1463     354.77
## 24614           1463    7488.46
## 24615           1463     115.40
## 24616           1464     451.86
## 24617           1464     372.71
## 24618           1459    1495.49
## 24619           1459     286.30
## 24620           1943     635.03
## 24621           1442     807.27
## 24622           1443     109.85
## 24623           1443     215.63
## 24624           1449    1084.75
## 24625           1452    5275.17
## 24626           1457     147.50
## 24627           1456     115.63
## 24629           1456   46285.04
## 24630           1435       0.00
## 24631           1438      71.40
## 24632           1456    2913.68
## 24633           1457     533.45
## 24634           1456       0.00
## 24635           1455   21129.57
## 24636           1455     100.00
## 24637           1474    9755.74
## 24638           1450   74540.64
## 24639           1445       0.00
## 24640           1442     500.77
## 24641           1871     187.35
## 24642           1459      21.55
## 24643           1459    3915.77
## 24644           1458      58.00
## 24645           1457     205.11
## 24646           1457       0.00
## 24647           1463     213.44
## 24648           1464     245.91
## 24649           1462     218.46
## 24650           1462      64.68
## 24651           2194       0.00
## 24652           1004     119.48
## 24653           1423    2967.00
## 24654           1430    8314.61
## 24655           1254     134.00
## 24656           1462     663.32
## 24657           1462     186.06
## 24658           1105       0.00
## 24659           1457     268.67
## 24660           1459     203.60
## 24661           1459       0.00
## 24662           1459     128.16
## 24663           1442     230.22
## 24664           1450     215.61
## 24665           1455      38.37
## 24666           1889     132.05
## 24667           1456       0.00
## 24668           1438     866.39
## 24669           1441     179.34
## 24670           1464     161.17
## 24671           1429     627.52
## 24672           1424     168.13
## 24673           1966     147.05
## 24674           1314     441.28
## 24675           1441      60.00
## 24676           1441     703.93
## 24677           1438     235.64
## 24678           2045   17966.80
## 24679           1650      86.19
## 24680           1455       0.00
## 24681           1452    7048.13
## 24682           1452    9459.00
## 24683           1452       0.00
## 24684           1450     168.71
## 24685           1442     704.16
## 24686           1443     582.11
## 24687           1444       0.00
## 24688           1458   22288.06
## 24689           1458     566.53
## 24690           1458       0.00
## 24691           1458       0.00
## 24693           1395   15061.98
## 24694           2215       0.00
## 24695           1458     324.42
## 24696           1443    6436.29
## 24697           1451       0.00
## 24698           1860     277.83
## 24699           2374      86.84
## 24700           1666      45.85
## 24701           1380       0.00
## 24702           1808       0.00
## 24703           2603     627.02
## 24704           1455       0.00
## 24705           2126     185.99
## 24706           1455     683.36
## 24707           1555      74.28
## 24708           1452       0.00
## 24709           1452       0.00
## 24710           1381      72.73
## 24711           1345   14438.73
## 24712           1401       0.00
## 24713           1427     274.01
## 24714           1427     417.33
## 24715           1177      43.49
## 24716           1295    2003.67
## 24717           1291     546.23
## 24718           1291     828.39
## 24719           2369     116.20
## 24720           1452      78.17
## 24721           1451     161.64
## 24722           1451     610.19
## 24723           1451    3641.82
## 24724           1451     141.80
## 24725           1452      56.68
## 24726           1451     351.19
## 24727           1455     138.34
## 24728           1457     398.25
## 24729           1458    1064.09
## 24730           1456     246.25
## 24731           1456     284.81
## 24732           1442     396.07
## 24733           1442       0.00
## 24734           1449     108.42
## 24735           1445      30.25
## 24736           1445      53.59
## 24737           1437     100.14
## 24738           2611    1528.82
## 24739           1441     886.80
## 24740           1441       0.00
## 24741           1435   35050.43
## 24742           2682     397.92
## 24743           1458       0.00
## 24744           1339      71.40
## 24745           1352     429.01
## 24746           1417    4459.45
## 24747           1413     177.00
## 24748            605       0.00
## 24749           2079  183208.49
## 24750           1436     160.13
## 24751           2589     186.91
## 24752           1445       7.02
## 24753           1445     113.35
## 24754           2349     200.98
## 24755           1443    2682.08
## 24756           1444    1857.34
## 24757           1456     368.97
## 24758           1456     223.32
## 24759           2198     142.04
## 24760           1455    1246.41
## 24761           1455    1193.20
## 24762           1452       0.00
## 24763           1455   31368.89
## 24764           1455     397.26
## 24765           1455       0.00
## 24766           1455      90.00
## 24767           1429     115.51
## 24768           1399      65.00
## 24769           1389     139.93
## 24770           1220      48.79
## 24771           1455     126.47
## 24772           1452     648.85
## 24773           1452    5560.48
## 24774           1450       0.00
## 24775           2379      13.00
## 24776           2995   32151.66
## 24777           1455     116.77
## 24778           1455   17402.79
## 24779           2314    2548.36
## 24780           1443      91.02
## 24781           1442     172.89
## 24782           1442     383.36
## 24783           1449     625.55
## 24784           1780       0.00
## 24785           1449     229.87
## 24786           1444     438.54
## 24787           1444     303.45
## 24788           1830      51.16
## 24789           2738     155.40
## 24790           1267   19282.58
## 24791           1438       0.00
## 24792           1444    3170.61
## 24793           1445       0.00
## 24794           1449     252.44
## 24795           1450     777.01
## 24796           1442       0.00
## 24797           1442      84.61
## 24798           1443      56.01
## 24799           2516     281.10
## 24800           2867  333223.98
## 24801           1451     124.95
## 24802           2117     277.56
## 24803           1452     321.43
## 24804           1452      88.29
## 24805           1452    4762.85
## 24806           1452     167.22
## 24807           1452     755.62
## 24808           1364     639.19
## 24809           1424     528.36
## 24810           1394      51.16
## 24811           1451    1264.72
## 24812           1451     199.73
## 24813           1442      84.61
## 24814           1450       0.00
## 24815           1445    4469.40
## 24816           2722       0.00
## 24817           1449       6.25
## 24818           1444    1422.95
## 24819           1444       0.00
## 24820           1444     802.56
## 24821           2546   22036.81
## 24822           1436      84.61
## 24823           2794     946.48
## 24824           1442       0.00
## 24825           1614     306.60
## 24826           1449     382.54
## 24827           2529     398.21
## 24828           1452     387.56
## 24829           1928     546.82
## 24830           1415      25.66
## 24831           2183       0.00
## 24832           1410       0.00
## 24833           1452     332.74
## 24834           1452     146.67
## 24835           1451       0.00
## 24836           1451       0.00
## 24837           1441      92.00
## 24838           1528     147.78
## 24839           2688      98.23
## 24840           1031      68.78
## 24841           1214      73.00
## 24842           2445     302.84
## 24843           1388    4263.17
## 24844            960     105.00
## 24845           1437    1211.06
## 24846           1454     216.27
## 24847           2885   13544.27
## 24848           1435    1575.23
## 24849           1451    1163.46
## 24850           2233     585.65
## 24851           1451       0.00
## 24852           1450     267.90
## 24853           1451     378.01
## 24854           1451     103.03
## 24855           1905    5188.12
## 24856           1451       0.00
## 24857           2655      60.93
## 24858           1450    5233.93
## 24859           1450   43665.21
## 24860           1449     191.00
## 24861           1445     578.69
## 24862           1687     223.69
## 24863           1375       0.00
## 24864           1357     190.88
## 24865           2268     711.41
## 24867           1636     134.41
## 24868           2483     304.10
## 24869           2008      99.86
## 24870           1302     365.48
## 24871           2077       0.00
## 24872           1442     826.50
## 24873           1442       0.00
## 24874           1442   20215.73
## 24875           1443     156.71
## 24876           1443    4112.66
## 24877           1445    5404.65
## 24878           1450       0.00
## 24879           1450     482.42
## 24880           1451     197.52
## 24881           1436     220.50
## 24882           1441       6.75
## 24883           1142      41.40
## 24884           1417     307.32
## 24885           1422      86.67
## 24886           1430     314.70
## 24887           2127     148.46
## 24888           1399   32132.54
## 24889           1337     149.38
## 24890           1441     411.99
## 24891           1437    4174.33
## 24892           1437     123.36
## 24893           1438     726.18
## 24894           1434    4315.79
## 24895           1450       0.00
## 24896           1449      17.25
## 24897           1449      59.91
## 24898           1445     242.66
## 24899           1445       0.00
## 24900           1445     547.86
## 24901           2335     286.39
## 24902           2226     872.22
## 24903           1443       0.00
## 24904           1443    3852.64
## 24905           2085     102.73
## 24906           1427     442.13
## 24907           1423     154.17
## 24908           1416     779.71
## 24909           1410     144.00
## 24910           2762   32102.72
## 24911           1445      85.10
## 24912           1453      78.20
## 24913           1444     455.57
## 24914           1444     119.93
## 24915           2275    1307.11
## 24916           1435     132.16
## 24917           1437       0.00
## 24918           1438     650.93
## 24919           1437    1242.18
## 24920           1437     142.45
## 24921           2582   50134.12
## 24922           1422      80.77
## 24923           1406   13275.70
## 24924           1437     109.16
## 24925           2126       0.00
## 24926           1443     258.33
## 24927           2094     173.19
## 24928           1445     834.17
## 24929           1442     560.64
## 24930           1407       0.00
## 24931           1401       0.00
## 24932           1430       0.00
## 24933           1443      44.48
## 24934           1436    2470.41
## 24935           1437     285.77
## 24936           1420     260.39
## 24937           1242     160.01
## 24938           2224     310.14
## 24939           2175     361.95
## 24940           1442     952.32
## 24941           1442       0.00
## 24942           1442    3815.91
## 24943           1406       0.00
## 24944           1443      10.00
## 24945           1443     256.99
## 24946           1493     239.51
## 24947           1443     500.01
## 24948           1443     833.88
## 24949           1444     258.83
## 24950           1443     214.12
## 24951           1441      27.19
## 24952           1797    1474.13
## 24953           1441     119.85
## 24954           1437      51.16
## 24955           1434       0.00
## 24956           1437    2713.31
## 24957           1436     197.90
## 24958           1436     435.78
## 24959           1436       0.00
## 24960           1114       0.00
## 24961           2372     148.32
## 24962           1351     230.37
## 24963           1415    1076.03
## 24964           1409     134.00
## 24965           1430   39026.29
## 24966           1389    1669.21
## 24967           2749     295.35
## 24968           1311      84.61
## 24970           1435       0.00
## 24971           1435    1225.72
## 24972           1437   16290.96
## 24973           1441       0.00
## 24974           1440     231.79
## 24975           2240      74.81
## 24976           1856     232.74
## 24977           1443     533.85
## 24978           1442       0.00
## 24979           2639     443.54
## 24980           1442    2410.56
## 24981           1367     230.72
## 24982           1396     100.49
## 24983           1616      70.75
## 24984           1428     243.42
## 24985           1424     361.18
## 24986           1424    1632.91
## 24987           1409     239.34
## 24988           1873     135.37
## 24989           1402      72.00
## 24990           1337     226.68
## 24991           1442     932.33
## 24992           1442       0.00
## 24993           1636     349.60
## 24994           1440      72.00
## 24995           1573    1568.41
## 24996           1438       0.00
## 24997           1441       0.00
## 24998           1970   32381.27
## 24999           1441      24.49
## 25000           1441      98.90
## 25001           1442     673.00
## 25002           1442     747.73
## 25003           1438     585.34
## 25004           1435    1046.45
## 25005           1435       0.00
## 25006           1436     249.16
## 25007           1436       0.00
## 25008           1436     217.63
## 25009           1358      89.32
## 25010           1380       0.00
## 25011           1407       0.00
## 25012           1494    1772.90
## 25013           1413       0.00
## 25014           1413    7961.24
## 25015           1417       0.00
## 25016           1422     416.84
## 25017           1423     284.80
## 25018           1427     510.82
## 25019           1423     153.60
## 25020           1428     117.14
## 25021           1437      96.74
## 25022           1436       0.00
## 25023           1436      51.16
## 25024           1435      40.00
## 25025           2685     199.86
## 25026           1437     754.17
## 25027           1441     516.40
## 25028           1441   22323.61
## 25029           1440     252.73
## 25030           1428     139.84
## 25031           1427       0.00
## 25032           1424     437.43
## 25033           1421     267.49
## 25034           1555       0.00
## 25035           1382     433.31
## 25036            923       0.00
## 25037           1435     184.04
## 25038           1435      66.92
## 25039           1779     241.50
## 25040           1431     216.97
## 25041           1431      16.73
## 25042           1413     178.24
## 25043           1413    1021.98
## 25044           2769    1127.85
## 25045           1437    1159.26
## 25046           1378    1225.80
## 25047           1429      49.50
## 25048           1430     461.23
## 25049           1323      94.43
## 25050           1438      91.16
## 25051           1438     737.94
## 25052           1437   15646.06
## 25053           1437     355.30
## 25054           1436     246.45
## 25055           1436     326.38
## 25056           1785   49989.00
## 25057           1431     343.28
## 25058           1360     371.79
## 25059           1429     796.73
## 25060           1429    1243.13
## 25061           1424     182.83
## 25062           1428       0.00
## 25063           2675      41.49
## 25064           1409     281.86
## 25065           1410       0.00
## 25066           1422     485.40
## 25067           1417       0.00
## 25068           1396       0.00
## 25069           1376  109951.69
## 25070           1436     817.01
## 25071           1435     377.99
## 25072           1436      66.68
## 25073           1431     486.52
## 25074           2811     792.62
## 25075           1434       0.00
## 25076           2556     725.18
## 25077           1420    1555.78
## 25078           1417      61.35
## 25079           1423     355.95
## 25080           1421     335.69
## 25081           2365    3532.91
## 25082           1415     115.97
## 25083           1429     228.58
## 25084           1427      61.35
## 25085           1423     713.02
## 25086           2640  193015.26
## 25087           1434     592.16
## 25088           1434     650.78
## 25089           1435     420.55
## 25090           1435     630.03
## 25091           1435     236.92
## 25092           1727     210.26
## 25093           1431    9705.46
## 25094           1431     172.43
## 25095           1123     265.86
## 25096           1357     195.95
## 25097           1430      75.56
## 25098           1857      93.84
## 25099           1429     183.00
## 25100           1423       0.00
## 25101           2263       0.00
## 25102           1424       0.00
## 25103           2374   32188.38
## 25104           1424       7.02
## 25105           1427      66.68
## 25106           1428    2913.12
## 25107           1417     178.75
## 25108           1828    1133.06
## 25109           1416    1215.47
## 25110           1402       0.00
## 25111           1400     263.36
## 25112           1400     273.93
## 25113           1396    1521.13
## 25114           1398     158.07
## 25115           1399    4216.74
## 25116           1381     263.39
## 25117           1228      41.40
## 25118           1310     157.24
## 25119           1435     187.79
## 25120           1434     154.63
## 25121           1431     135.52
## 25122           1431     718.00
## 25123           1354       0.00
## 25124           1359   14394.87
## 25125           1381       0.00
## 25126           1381    2987.81
## 25127           1394    2661.06
## 25128           1388     391.70
## 25129           2187      38.09
## 25130           2097    1136.20
## 25131           1407    1676.80
## 25132           1416     742.21
## 25133           3760  262931.87
## 25134           1414     131.01
## 25135           1409      65.18
## 25136           1424       0.00
## 25137           1423   46446.44
## 25138           1429    4009.06
## 25139           1429       0.00
## 25140           1430       0.00
## 25141           1430      91.97
## 25142           1430       0.00
## 25143           1430     270.67
## 25144           2316    1225.75
## 25145           1423    1694.27
## 25146           2265     342.47
## 25147           1429     246.60
## 25148           1427      33.31
## 25149           1413   44570.84
## 25150           1414    6095.10
## 25151           1416       0.00
## 25152           1401      86.22
## 25153           2198    4588.13
## 25154           1416     302.15
## 25155           1420       0.00
## 25156           1778    2477.66
## 25157           1421    1038.60
## 25158           1423     169.64
## 25159           1428    1507.26
## 25160           2399       0.00
## 25161           1430     529.63
## 25162           1399     234.24
## 25163           1262      85.38
## 25164           1429     397.13
## 25165           1427       0.00
## 25166           1424       6.25
## 25167           1422      15.82
## 25168           1416       0.00
## 25169           1347       0.00
## 25170           1379      56.68
## 25171           1380     315.08
## 25172           1423     448.48
## 25173           2703       0.00
## 25174           2311       0.00
## 25175           2513     388.18
## 25176           1413     633.56
## 25177           1409     266.88
## 25178           1424      26.00
## 25179           2477     383.42
## 25180           1428     397.28
## 25181           1428       0.00
## 25182           2121    8569.57
## 25183           1430    1477.75
## 25184           1430      99.24
## 25185           1968   64324.16
## 25186           1407     189.13
## 25187           1406     111.22
## 25188           1396     401.76
## 25189           1226      60.01
## 25190           1326      63.63
## 25191           1530     254.49
## 25192           1399       0.00
## 25193           1389     313.17
## 25194           1429     174.53
## 25195           1429      38.37
## 25196           1429     755.20
## 25197           2157     321.55
## 25198           1429     171.11
## 25199           1429     306.77
## 25200           1428     374.31
## 25201           1424     210.25
## 25202           1424     245.20
## 25203           1415     173.19
## 25204           1415     200.06
## 25205           1421     319.81
## 25206           1423       0.00
## 25207           1423      83.91
## 25208           1422     258.64
## 25209           1417     589.78
## 25210           1248       0.00
## 25211           1656      68.78
## 25212            931       0.00
## 25213           1757     484.01
## 25214           1141      46.04
## 25215           1417     131.68
## 25216           2315  165808.62
## 25217           1422    1329.54
## 25218           2351      18.27
## 25219           1414    5355.96
## 25220           1415     240.16
## 25221           1876       0.00
## 25222           1879    2671.85
## 25223           1424      16.00
## 25224           1424       0.00
## 25225           2709    1823.32
## 25227           1428    2148.69
## 25228           1406       0.00
## 25229           1406      78.84
## 25230           1407     116.82
## 25231           1399       0.00
## 25232           1308   25283.21
## 25233           1322      19.54
## 25234           1361     285.60
## 25235           2713       0.00
## 25236           1805     298.79
## 25237           1402     216.37
## 25238           1402     980.44
## 25239           1428     167.44
## 25240           1427     340.82
## 25241           1424     391.70
## 25242           2600     137.84
## 25243           1890  355162.37
## 25244           1410     107.50
## 25245           1414       0.00
## 25246           1415       0.00
## 25247           1981     325.38
## 25248           1421      71.40
## 25249           1421    2311.77
## 25250           1422     472.64
## 25251           1423     601.19
## 25252           1423     423.03
## 25253           1423      99.71
## 25254           1417       0.00
## 25255           1417      81.29
## 25256           1564      58.26
## 25257           1915     108.95
## 25258           1416      70.61
## 25259           1416      61.35
## 25260           1312     265.92
## 25261           2598     622.46
## 25262           1422      66.68
## 25263           1422     197.33
## 25264           1687     100.00
## 25265           1421     496.81
## 25266           2091   23727.05
## 25267           1420      18.27
## 25268           1413      84.72
## 25269           1413     261.95
## 25270           1410     267.00
## 25271           1410     378.93
## 25272           1409   13572.07
## 25273           1409       0.00
## 25274           1424     673.49
## 25275           1423      19.54
## 25276           1424   12739.38
## 25277           1401     211.91
## 25278           1340     249.80
## 25279           1807     145.16
## 25280           2611     603.79
## 25281           1410     199.46
## 25282           1413      72.00
## 25283           1413   19320.52
## 25284           1413     201.99
## 25285           1414     114.33
## 25286           1422       0.00
## 25287           1421       0.00
## 25288           1422     752.94
## 25289           1423     330.12
## 25290           1421   24215.48
## 25291           1421    1692.66
## 25292           1421    1837.00
## 25293           1421      13.77
## 25294           1421     671.19
## 25295           1417      59.77
## 25296           2565  255175.61
## 25297            937    7681.44
## 25298           1380     295.90
## 25299           1375   15273.24
## 25300           1136     122.57
## 25301           1813     730.25
## 25302           1417      75.00
## 25303           1415    1269.22
## 25304           1416     332.16
## 25305           1416     544.86
## 25306           1416       0.00
## 25307           1416      48.75
## 25308           1421     125.12
## 25309           1675     238.65
## 25310           1423     359.52
## 25311           1491     736.09
## 25312           1422    1342.15
## 25313           1422     320.41
## 25314           1422     117.84
## 25315           1413     222.35
## 25316           1414       0.00
## 25317           1410       0.00
## 25318           1410     708.90
## 25319           1940   30415.13
## 25320           1406     264.71
## 25321           2333      30.00
## 25322           1469       0.00
## 25323           1378      10.00
## 25324           1387       0.00
## 25325           1804       0.00
## 25326           1408      60.00
## 25327           1408       0.00
## 25328           1856      46.04
## 25329           1409      69.45
## 25330           1597      57.43
## 25331           1415    3405.94
## 25332           2722      91.97
## 25333           1422       0.00
## 25334           1422     188.28
## 25335           1420     234.36
## 25336           1421     269.31
## 25337           1621     846.08
## 25338           2064     931.38
## 25339           1421       0.00
## 25340           1415       0.00
## 25341           1416     505.14
## 25342           2361  263818.46
## 25343           1092     382.73
## 25344           1340     312.12
## 25345           2008       0.00
## 25346           2510     133.26
## 25347           1417       0.00
## 25348           1415     229.50
## 25349           2025     745.65
## 25350           1416     142.00
## 25351           1827     261.11
## 25352           1421   13495.83
## 25353           1415   30194.20
## 25354           1414    7983.39
## 25355           1827     402.13
## 25356           1410      51.16
## 25357           1402     177.00
## 25358           1389     173.09
## 25359           1261       0.00
## 25360           1308   57244.24
## 25361           1359      61.35
## 25362           1141      46.04
## 25363           1385    1010.50
## 25364           1396     619.16
## 25365           1407     811.72
## 25366           1406      61.35
## 25367           1410     616.46
## 25368           1410    1542.52
## 25369           1410       0.00
## 25370           1410       0.00
## 25371           1415     400.14
## 25372           1415     125.26
## 25373           1420     181.85
## 25374           1416     225.57
## 25375           1416       0.00
## 25376           1316      86.41
## 25377           1316      87.37
## 25378           1485    3021.34
## 25379           1332      56.04
## 25380           1323     299.28
## 25381           2198     236.35
## 25382           1354     834.05
## 25383           1416       0.00
## 25384           1415    8629.01
## 25385           1417    1532.46
## 25386           1417   17831.01
## 25387           1415       0.00
## 25388           1409      84.34
## 25389           2220   25505.21
## 25390           1402     357.36
## 25391           1406     375.48
## 25392           1389    1303.13
## 25393           2204    1116.81
## 25394           1406      46.04
## 25395           1407     287.21
## 25396           1408     228.53
## 25397           1402     221.70
## 25398           1410    1316.44
## 25399           2558     608.09
## 25400           1415       9.00
## 25401           1416     270.42
## 25402           1416       0.00
## 25403           1416      15.75
## 25404           1410     452.42
## 25405           1413       0.00
## 25406           1414       8.00
## 25407           1413       0.00
## 25408           1402       0.00
## 25409           1401     192.89
## 25410           2194   63873.60
## 25411           1380    2898.15
## 25412           1395      41.40
## 25413           1396     291.89
## 25414           2386     763.00
## 25415           1399      38.68
## 25416           2305     158.36
## 25417           2786  178040.00
## 25418           2716    4441.53
## 25419           2547     265.80
## 25420           2568     136.97
## 25421           1414     210.50
## 25422           1414       0.00
## 25423           1414     993.00
## 25424           1415    3667.42
## 25425           1415     737.85
## 25426           1415    5563.40
## 25427           2214       0.00
## 25428           1415     110.46
## 25429           1410     487.14
## 25430           1707     235.19
## 25431           1417    3672.26
## 25432           1273     267.18
## 25433             98     243.34
## 25434           1282     738.92
## 25435           1373    1481.71
## 25436           1345    1070.46
## 25437           1198       0.00
## 25438           1410     516.71
## 25439           1415       0.00
## 25440           1414     346.09
## 25441           1414     295.40
## 25442           1715   73130.27
## 25443           1414     202.77
## 25444           1414       0.00
## 25445           2231     767.63
## 25446           1406      40.00
## 25447           1406      51.16
## 25448           1402      75.34
## 25449           1402     140.16
## 25450           1402     703.05
## 25451           1950   20316.41
## 25452           1396     841.26
## 25453           1394    2418.53
## 25454           2059  544306.97
## 25455           1388     152.17
## 25456           1387       0.00
## 25457           1765      56.68
## 25458           1316     881.55
## 25459           1031      76.44
## 25460           1387      47.94
## 25461           1387     199.52
## 25462           1388     200.22
## 25463           1402     515.65
## 25464           1406     143.97
## 25465           1402      68.98
## 25466           1409     305.45
## 25467           2483     633.73
## 25468           2149    1479.09
## 25469           1413       0.00
## 25470           1413     189.25
## 25471           1410       0.00
## 25472           1409     110.00
## 25473           1318   16231.96
## 25474           1303     164.75
## 25475           1853   17127.75
## 25476           1409    2469.09
## 25477           1409       0.00
## 25478           1840   23883.15
## 25479           2699     167.61
## 25480           1409     189.48
## 25481           1409    2957.72
## 25482           1409     490.69
## 25483           1410     136.29
## 25484           1410     367.46
## 25485           1413     391.62
## 25486           1410      16.50
## 25487           1410   69208.23
## 25488           1409   49206.01
## 25489           1400     830.90
## 25490           1407     578.27
## 25491           1408    6717.87
## 25492           1402     295.72
## 25493           1400       0.00
## 25494           1389      84.70
## 25495           1399    1046.16
## 25496           1398    4707.09
## 25497           1339     165.15
## 25498           1359     100.00
## 25499           1690       0.00
## 25500           1398    9656.40
## 25501           1396      51.16
## 25502           1387    6422.11
## 25503           2296      32.59
## 25504           1401     170.06
## 25505           1401     221.35
## 25506           1401    1639.40
## 25507           1401   20573.70
## 25508           1406  206803.22
## 25509           1406     210.24
## 25510           2524    1205.95
## 25511           1400    2247.12
## 25512           1400     251.34
## 25513           1410    8107.63
## 25514           2726     911.79
## 25515           1330       0.00
## 25516           1409   21862.52
## 25517           2767     148.92
## 25518           1406      91.87
## 25519           1402     286.21
## 25520           1408     996.02
## 25521           1408      77.65
## 25522           1402    5422.97
## 25523           1408      84.61
## 25524           1408   13887.26
## 25525           1409     889.47
## 25526           1409       0.00
## 25527           1409      99.75
## 25528           1386       0.00
## 25529           1386      22.38
## 25530           1399     258.91
## 25531           1396     179.85
## 25532           1396      53.69
## 25533           1396     609.42
## 25534           1396     163.17
## 25535           1385     558.28
## 25536           1386     157.94
## 25537           1382      30.00
## 25538           1751      30.78
## 25539           1409     162.99
## 25540           1409      97.05
## 25541           1409     240.26
## 25542           1408     128.98
## 25543           1407    3614.89
## 25544           1408     924.91
## 25545           1408    1663.92
## 25546           1407    6066.90
## 25547           1406    3655.16
## 25548           1402     315.04
## 25549           2311    1841.65
## 25550           1401   27470.65
## 25551           1400    1401.28
## 25552           1401      43.49
## 25553           1868    2100.49
## 25554           2092       0.00
## 25555           1315       0.00
## 25556           2263      89.58
## 25557           1402      36.21
## 25558           2748       0.00
## 25559           1406       0.00
## 25560           1406     552.44
## 25561           1407      13.25
## 25562           1407       6.75
## 25563           1408     143.00
## 25564           1388     143.49
## 25565           1399     106.85
## 25566           1396       0.00
## 25567           1246       0.00
## 25568           1354     143.13
## 25569           1340    2021.68
## 25570           1393     552.95
## 25571           1393     122.98
## 25572           1399     215.57
## 25573           1399     277.17
## 25574           1941       0.00
## 25575           1396     159.59
## 25576           1553    6027.61
## 25577           2455     615.01
## 25578           1389     439.63
## 25579           1381     266.00
## 25580           1385    2066.18
## 25581           1408     670.00
## 25582           1406       7.00
## 25583           1406      89.75
## 25584           2288     132.48
## 25585           1406     216.58
## 25586           1402     164.66
## 25587           1530   13723.35
## 25588           1406      41.40
## 25589           1406     184.52
## 25590           1401     631.00
## 25591           1400     287.00
## 25592           1401     254.24
## 25593           1401       0.00
## 25594           1380     182.85
## 25595           1401     684.06
## 25596           1401   11428.20
## 25597           1454      75.56
## 25598           1400    1693.73
## 25599           1402     352.43
## 25600           1402     571.73
## 25601           1402       0.00
## 25602           1406     765.38
## 25603           1406    2124.79
## 25604           1913    1349.16
## 25605           1400     453.88
## 25606           1389       0.00
## 25607           1666     366.77
## 25608           1943     891.80
## 25609           1396     219.26
## 25610           1399    2870.97
## 25611           1394     253.82
## 25612           1393     767.77
## 25613           1395      90.44
## 25614           1338     255.84
## 25615           1374     320.35
## 25616           1396     938.20
## 25617           1396    2896.40
## 25618           1393     191.18
## 25619           1386   45579.78
## 25620           2548    1553.28
## 25621           1392     289.37
## 25622           1400    1438.13
## 25623           1400      18.99
## 25624           1402     267.00
## 25625           1402      68.78
## 25626           2668       8.27
## 25627           1400      50.00
## 25628           1387       0.00
## 25629           1881       0.00
## 25630           1172     247.48
## 25631           1358     362.71
## 25632           1393     111.22
## 25633           1387    3333.89
## 25634           1385     250.30
## 25635           1400    2547.68
## 25636           1400     148.29
## 25637           1400      35.00
## 25638           1400     174.00
## 25639           1401     566.68
## 25640           2292     466.85
## 25641           1387     459.80
## 25642           1385     599.77
## 25643           1392       0.00
## 25644           2025     149.37
## 25645           1393    2686.21
## 25646           1394     184.77
## 25647           2786     287.83
## 25648           1399     218.26
## 25649           1396     119.93
## 25650           2316     110.44
## 25651           1396     399.43
## 25652           1398   71767.05
## 25653           1399     334.16
## 25654           1399    1778.43
## 25655           2198     187.56
## 25656           1394     213.16
## 25657           1782     213.27
## 25658           1392       0.00
## 25659           1389       0.00
## 25660           1385     139.33
## 25661           1387     169.54
## 25662           1387     223.88
## 25663           1387     176.73
## 25664           1401     253.01
## 25665           1401      85.38
## 25666           1400     173.48
## 25667           1973  174474.42
## 25668           1401       0.00
## 25669           1402      95.34
## 25670           1400     109.25
## 25671           1400     497.46
## 25672           1372     105.53
## 25673           1715    1420.52
## 25674           1015     107.63
## 25675           2190     223.36
## 25676           1665  245540.28
## 25677           1400     148.65
## 25678           1930     308.32
## 25679           1395       0.00
## 25680           2773       0.00
## 25681           1394    9070.99
## 25682           1396     783.64
## 25683           1396       9.00
## 25684           1396     975.42
## 25685           1448     221.91
## 25686           1385     109.30
## 25687           1380     209.69
## 25688           1374      66.68
## 25689           1360    1085.64
## 25690           1360      76.58
## 25691           1357     449.81
## 25692           1368     133.05
## 25693           1396      20.46
## 25695           1399    1553.66
## 25696           2415    6587.42
## 25697           1394    1784.44
## 25698           1393       0.00
## 25699           1393     335.45
## 25700           1394       0.00
## 25701           1387       0.00
## 25702           1387     637.81
## 25703           1385      60.01
## 25704           1389       0.00
## 25705           1387     177.72
## 25706           1388      51.16
## 25707           1365       0.00
## 25708           1380   10232.82
## 25709           1380     352.72
## 25710           1374    1772.51
## 25711           1378     451.39
## 25712           1387       0.00
## 25713           1388    9510.58
## 25714           1960     188.53
## 25715           2091    2197.72
## 25716           1386      61.35
## 25717           1395       0.00
## 25718           1395       0.00
## 25719           1395   43523.54
## 25720           1395     451.39
## 25721           1393     997.47
## 25722           1394     175.00
## 25723           1394      33.94
## 25724           1392       0.00
## 25725           1396     336.65
## 25726           1396     131.45
## 25727           1968     760.78
## 25728           1309     324.88
## 25729           1318       0.00
## 25730           1329    4427.56
## 25731           1338     135.09
## 25732           1452   12327.06
## 25733           1373     831.39
## 25734           1368       0.00
## 25735           2529    6147.54
## 25736           1382     135.25
## 25737           1392     566.80
## 25738           1394     888.06
## 25739           1396   44024.50
## 25740           1395     504.90
## 25741           1395       0.00
## 25742           1395       8.99
## 25743           1395    2301.84
## 25744           1386     429.14
## 25745           1929       0.00
## 25746           2305     613.61
## 25747           1359     226.67
## 25748           1380       0.00
## 25749           1386    1925.32
## 25750           1388     580.00
## 25751           1526    1456.30
## 25752           1394   14661.32
## 25753           1395     780.40
## 25754           1396    8825.55
## 25755           1394      82.25
## 25756           1382     557.17
## 25757           1743     241.94
## 25758           1380    1809.03
## 25759           1373    1036.68
## 25760           1382     208.99
## 25761           1382       0.00
## 25762           1385       0.00
## 25763           1394     168.17
## 25764           1625   20951.04
## 25765           1393     212.06
## 25766           1393     334.55
## 25767           1644       0.00
## 25768           1394     223.20
## 25769           1388     110.15
## 25770           2199     110.67
## 25771           2319      88.35
## 25772           1389       0.00
## 25773           1389      47.07
## 25774           1392     960.88
## 25775           1386      40.93
## 25776           1387      68.45
## 25777           1385     166.00
## 25778           1385     300.70
## 25779           1064       0.00
## 25780           2266    2067.84
## 25781           2181     131.79
## 25782           1379     495.60
## 25783           1374     294.38
## 25784           1347     443.21
## 25785           1387     694.23
## 25786           1389      47.07
## 25787           1389      47.07
## 25788           1388      37.00
## 25789           1687     103.18
## 25790           1394     174.31
## 25791           1393      52.50
## 25792           1393      87.68
## 25793           1392     300.79
## 25794           1392     582.49
## 25795           1392       0.00
## 25796           2554    2203.80
## 25797           1312    1633.85
## 25798           1081     515.37
## 25799           1347      60.00
## 25800           1360    1068.32
## 25801           1378      84.61
## 25802           2503     693.67
## 25803           1385      92.04
## 25804           1389     154.81
## 25805           1389      35.19
## 25806           1392      76.50
## 25807           1389     132.48
## 25808           1389     986.06
## 25809           1389     180.53
## 25810           1385       0.00
## 25811           1382       0.00
## 25812           1263  105570.68
## 25813           1310     170.41
## 25814           1318    2950.00
## 25815           1330      35.00
## 25816           1331     297.80
## 25817           1121     100.97
## 25818           1380    1815.77
## 25819           1353    4748.40
## 25820           1367    2825.00
## 25821           1345       0.00
## 25822           1692     226.84
## 25823           1381     153.36
## 25824           1386      35.19
## 25825           1389     217.51
## 25826           1389     200.50
## 25827           1389     266.39
## 25828           1387    2269.17
## 25829           1389      67.20
## 25830           1297       0.00
## 25831           1294       0.00
## 25832           1303     102.90
## 25833           1344       0.00
## 25834           1361     143.66
## 25835           1361     256.36
## 25836           1379     259.88
## 25837           2702       0.00
## 25838           1389    3571.97
## 25839           2078   71016.60
## 25840           1385       0.00
## 25841           1385     659.78
## 25842           1386      55.25
## 25843           1381    1714.70
## 25844           1382     330.69
## 25845           1382       0.00
## 25846           1381      78.17
## 25847           1395     477.02
## 25848           1536     103.08
## 25849           2749     585.07
## 25850           2206     201.18
## 25851           1360     164.35
## 25852           1647   20657.35
## 25853           1391     167.30
## 25854           1387     347.79
## 25855           1338       0.00
## 25856           1388   24833.76
## 25857           1387     186.16
## 25858           1388    1046.23
## 25859           1388    1052.77
## 25860           2653     203.26
## 25861           2541    2376.50
## 25862           1368       0.00
## 25863           1364     176.25
## 25864           1367      84.95
## 25865           1346     160.44
## 25866           1380       0.00
## 25867           1380     183.01
## 25868           2754     100.00
## 25869           1385     532.74
## 25870           1385     716.76
## 25871           2551     112.16
## 25872           1387    2433.36
## 25873           1387       9.00
## 25874           1387     366.38
## 25875           1387     109.60
## 25876           1840  216820.31
## 25877           1388     698.53
## 25878           1388       0.00
## 25879           2123      43.49
## 25880           1388     658.14
## 25881           1388     309.70
## 25882           1388     116.86
## 25883           1603   20220.89
## 25884           1382     228.53
## 25885           1375     871.44
## 25886           1374     267.50
## 25887           1378     361.84
## 25888           1371     973.28
## 25889           1368     894.60
## 25890           1358     120.51
## 25891           1204       0.00
## 25892           1382    7069.57
## 25893           2485     157.07
## 25894           1382     258.65
## 25895           1381      81.68
## 25896           1387     467.59
## 25897           2573     208.65
## 25898           1386     274.29
## 25899           2125     218.12
## 25900           2678    1143.89
## 25901           1338     118.03
## 25902           1281       0.00
## 25903           1368     102.03
## 25904           1368     936.38
## 25905           2246    3489.28
## 25906           1372    1549.47
## 25907           2133     749.49
## 25908           1373       0.00
## 25909           1372      36.00
## 25910           1373    9914.87
## 25911           1374       0.00
## 25912           1374     117.27
## 25913           1462     379.71
## 25914           1375       0.00
## 25915           1374       0.00
## 25916           1375   27748.20
## 25917           1380     111.47
## 25918           2074     125.31
## 25919           1818       0.00
## 25920           1379      36.21
## 25921           1385       0.00
## 25922           1385     431.21
## 25923           1385       0.00
## 25924           1386     165.90
## 25925           1386     719.03
## 25926           1954     138.00
## 25927           2118     110.21
## 25928           1382       0.00
## 25929           1385     118.76
## 25930           1530       0.00
## 25931           1226      61.35
## 25932           1288     980.77
## 25933           1325    3595.15
## 25934           1400     275.84
## 25935           1379    2400.51
## 25936           1379     136.11
## 25937           1380    1282.64
## 25938           1380     404.72
## 25939           1380     109.58
## 25940           2219       8.27
## 25941           1380       0.00
## 25942           1380      39.33
## 25943           1380    1733.95
## 25944           1378      61.35
## 25945           1378      61.35
## 25947           1391      72.51
## 25948           1371     308.16
## 25949           1367     747.97
## 25950           1358     126.09
## 25951           1360       0.00
## 25952           1382     117.84
## 25953           1386       0.00
## 25954           1385     397.27
## 25955           1442     229.00
## 25956           1463    1483.96
## 25957           1367     110.15
## 25958           1371    1331.49
## 25959           1373      47.07
## 25960           1373    2628.52
## 25961           1374      15.19
## 25962           1374   15736.54
## 25963           2605     729.16
## 25964           1375     100.00
## 25965           2209     250.00
## 25966           1735       0.00
## 25967           2254     743.37
## 25968           1381       0.00
## 25969           1381      56.68
## 25970           1381     184.54
## 25971           1381     509.87
## 25972           1295     255.44
## 25973           1379       0.00
## 25974           2150     137.98
## 25975           1123      81.00
## 25976           1378     130.49
## 25977           1375     270.17
## 25978           1381       0.00
## 25979           1380     784.77
## 25980           2112     117.84
## 25981           1841    1044.96
## 25982           1382     117.80
## 25983           1382     254.66
## 25984           1254     115.52
## 25985           1325     112.47
## 25986           1379    2728.80
## 25987           1653     102.68
## 25988           1380       0.00
## 25989           1380       0.00
## 25990           2281     252.43
## 25991           1380     232.78
## 25992           2637   24768.27
## 25993           1380   19145.39
## 25994           1381      38.37
## 25995           1381     614.01
## 25996           1375     362.95
## 25997           1378    1326.99
## 25998           1726    4681.19
## 25999           1375     252.00
## 26000           1375   16569.77
## 26001           1374    6163.61
## 26002           1374     272.03
## 26003           1478     442.22
## 26004           1373    6408.09
## 26005           1373       0.00
## 26006           1373     113.89
## 26007           1358     388.13
## 26008           1358      43.02
## 26009           1367     110.28
## 26010           1368      15.00
## 26011           1381     672.99
## 26012           1381     305.67
## 26013           2500    3342.86
## 26014           1156      91.97
## 26015           1324     190.39
## 26016           1574    1264.43
## 26017           1368    4555.13
## 26018           1367       0.00
## 26019           1368     999.82
## 26020           1368    2095.49
## 26021           1347       0.00
## 26022           1372    1076.19
## 26023           2207     974.00
## 26024           1375    5657.43
## 26025           1375     245.35
## 26026           2325     926.95
## 26027           1378     211.55
## 26028           1380       0.00
## 26029           1499     265.47
## 26030           1380     499.48
## 26031           1379     107.47
## 26032           1379     242.33
## 26033           1379     335.99
## 26034           1379     154.24
## 26035           1379     188.30
## 26036           2519     178.21
## 26037           1315     193.49
## 26039           1379     423.84
## 26040           1379       0.00
## 26041           2518      37.50
## 26042           1379       0.00
## 26043           1380       0.00
## 26044           1725     218.00
## 26045           1379     598.11
## 26046           1375       0.00
## 26047           2089     271.15
## 26048           1515       0.00
## 26049           1374     713.32
## 26050           1373      14.00
## 26051           1372     206.50
## 26052           1372    2990.91
## 26053           1354     171.67
## 26054           1360    1104.04
## 26055           1359     836.75
## 26056           1367     207.82
## 26057           1368       0.00
## 26058           1317    2057.66
## 26059           1317    1648.39
## 26060           1317    1995.12
## 26061           1367      41.40
## 26062           1368     108.42
## 26063           1869       0.00
## 26064           1361     216.78
## 26065           1364      61.35
## 26066           1359      76.95
## 26067           1357     179.98
## 26068           1357     185.35
## 26069           1354      82.77
## 26070           1353       0.00
## 26071           1339     334.84
## 26072           1373       0.00
## 26073           2784    1015.70
## 26074           1371    4478.51
## 26075           1373       6.00
## 26076           1374     258.79
## 26077           1374      10.00
## 26078           1375     270.00
## 26079           1374       0.00
## 26080           1374     630.03
## 26081           1374     256.61
## 26082           1375     284.20
## 26083           1378       0.00
## 26084           1378     126.16
## 26085           1378       0.00
## 26086           1378     248.31
## 26087           1136     118.70
## 26088           1218    1806.96
## 26089           1242     236.28
## 26090           1316     452.77
## 26091           1312     298.37
## 26092           1338       0.00
## 26093           1363   23448.31
## 26094           2257     653.33
## 26095           2319      56.68
## 26096           1565     404.04
## 26097           1375     135.04
## 26098           1375     206.69
## 26099           1375     283.81
## 26100           1374     653.26
## 26101           1374       0.00
## 26102           1374     313.96
## 26103           1374     280.43
## 26104           1372      41.05
## 26105           1352     242.55
## 26106           2216       0.00
## 26107           1357     191.65
## 26108           1357    1057.17
## 26109           1358   11426.70
## 26110           1359     205.05
## 26111           1361     430.27
## 26112           1360     409.78
## 26113           1367     270.10
## 26114           1365     183.82
## 26115            510      61.35
## 26116           1109      78.17
## 26117           1360     102.37
## 26118           1359     953.40
## 26119           1357       0.00
## 26120           1354       0.00
## 26121           1371     517.65
## 26122           1374      35.84
## 26123           1165      75.21
## 26124           1315     935.91
## 26125            749      20.35
## 26126           1375      56.68
## 26127           1375       0.00
## 26128           1375    1156.85
## 26129           1374     179.91
## 26130           1371    6531.29
## 26131           1372     596.93
## 26132           1373     987.52
## 26133           1374     328.82
## 26134           1373     252.61
## 26135           1373    1911.01
## 26136           1373     591.60
## 26137           1373     238.95
## 26138           1350     809.90
## 26139           1358    1082.06
## 26140           1359    1516.01
## 26141           2088     757.49
## 26142           1365     195.96
## 26143           1367     109.30
## 26144           1368       0.00
## 26145           1345     154.21
## 26146           1662      98.69
## 26147           1340       0.00
## 26148           1898    1193.61
## 26149           1367       0.00
## 26150           2716    4980.20
## 26151           1365     167.64
## 26152           2160      86.68
## 26153           1347    8913.71
## 26154           2213     555.14
## 26155           1373     724.12
## 26156           1372     130.01
## 26157           2341   12130.50
## 26158           1372     778.09
## 26159           2343     398.58
## 26160           1582     112.52
## 26161           1372      91.97
## 26162           1372     214.17
## 26163           1372    2447.46
## 26164           1371    2135.68
## 26165           1371      15.02
## 26166           1372       0.00
## 26167           1372      62.00
## 26168           1371     753.92
## 26169           1354     763.91
## 26170           1361     164.42
## 26171           1365      89.14
## 26172           1367     116.54
## 26173           1364     115.60
## 26174           1368       0.00
## 26175           1340     216.10
## 26176           1340       0.00
## 26177           1339     229.26
## 26178            976    6127.65
## 26179           1262      85.81
## 26180           1340       0.00
## 26181           1340    1501.81
## 26182           2696      36.21
## 26183           1368     242.67
## 26184           1364     290.15
## 26185           1364    2828.88
## 26186           1364    6536.26
## 26187           1367     273.54
## 26188           2461  296953.80
## 26189           1361     185.59
## 26190           2653      61.35
## 26191           1352   18517.30
## 26192           1371    1867.29
## 26193           1371       0.00
## 26194           1371     811.90
## 26195           1371     375.20
## 26196           1818   75281.78
## 26197           1254     478.06
## 26198            919      64.11
## 26199           1764     428.96
## 26200           1354     473.10
## 26201           1354     175.00
## 26202           1350     115.52
## 26203           1361      86.22
## 26204           1364     175.34
## 26205           1360     315.78
## 26206           1360     137.48
## 26207           1364    1815.96
## 26208           2657     133.49
## 26209           1817      68.78
## 26210           1367    1044.99
## 26211           1367     189.61
## 26212           1345       0.00
## 26213           1336     611.67
## 26214           1345       0.00
## 26215           1347     515.26
## 26216           1344     137.24
## 26217           2356     138.67
## 26218           2689       0.00
## 26219           1358    1749.46
## 26220           1538     290.99
## 26221           1330    1424.68
## 26222           1287     493.93
## 26223           1126     389.59
## 26224           2451   39694.13
## 26225           1364       0.00
## 26226           1364       0.00
## 26227           1364      43.25
## 26228           1360       0.00
## 26229           1367    6977.38
## 26230           1364       0.00
## 26231           2606   16472.27
## 26232           1367     218.00
## 26233           1214    6020.01
## 26234           1277      79.33
## 26235           2335   21067.53
## 26236           1333   69434.47
## 26237           1367     130.16
## 26238           1365       0.00
## 26239           1367     341.18
## 26240           1367     512.31
## 26241           1364     496.97
## 26242           1364    5602.57
## 26243           1360     147.05
## 26244           1364      41.49
## 26245           1359     241.72
## 26246           1350   10299.84
## 26247           1357     314.14
## 26248           1340     402.46
## 26249           1340       0.00
## 26250           1717       0.00
## 26251           1338     154.47
## 26252           1308   30565.80
## 26253           1282     547.83
## 26254           1071     128.18
## 26255           1340       0.00
## 26256           1344   22187.87
## 26257           1339     117.92
## 26258           1339     335.21
## 26259           1978     222.29
## 26260           1358     281.33
## 26261           1357       0.00
## 26262           1357     193.21
## 26263           1364       6.50
## 26264           1360     168.17
## 26265           1360     234.67
## 26266           1364       0.00
## 26267           2479     635.72
## 26268            534     220.26
## 26269           1099     112.80
## 26270           1364     496.36
## 26271           2677    1571.53
## 26272           1364     332.56
## 26273           1361     514.92
## 26274           1358     479.12
## 26275           1357     756.93
## 26276           1354     126.52
## 26277           1352    1311.92
## 26278           1351     217.00
## 26279           1247     612.10
## 26280           1351      37.50
## 26281           1352     355.82
## 26282           1357    4670.43
## 26283           1359      40.00
## 26284           1364    2056.57
## 26285           1809      85.03
## 26286           3667  168264.96
## 26287           1354    7924.15
## 26288           1361    2640.41
## 26289           1361       0.00
## 26290           1361     244.47
## 26291           1508       0.00
## 26292           1360       0.00
## 26293           1360     141.94
## 26294           1360     120.00
## 26295           1359     758.00
## 26296           1364      67.47
## 26297           1340     227.06
## 26298           1340     489.97
## 26299           1563     293.30
## 26300           1340     241.31
## 26301           1340     100.00
## 26302           1345     343.82
## 26303           1345       0.00
## 26304           1337       0.00
## 26305           1325     483.45
## 26306           1325     182.06
## 26307           1346       0.00
## 26308           1359     166.12
## 26309           1359       0.00
## 26310           1359    3627.24
## 26311           2299     420.70
## 26312           1360    4346.51
## 26313           1361      99.73
## 26314           1361     485.20
## 26315           1361      94.19
## 26316           1361       0.00
## 26317           1358     565.92
## 26318           1357     160.83
## 26319           1357      68.78
## 26320           1354     157.70
## 26321           1352     498.12
## 26322           1351      48.75
## 26323           2503   13324.63
## 26324           1764       0.00
## 26325           1333     401.51
## 26326           1332       0.00
## 26327           1357     419.81
## 26328           2223     263.05
## 26329           1357     702.75
## 26331           1872     294.35
## 26332           1340    1406.27
## 26333           1983     306.83
## 26334           1359       0.00
## 26335           1357    1814.63
## 26336           1357     265.05
## 26337           1358     104.66
## 26338           1358       0.00
## 26339           1358      41.25
## 26340           1358    1088.20
## 26341           2473     305.55
## 26342           1358    9263.19
## 26343           2395    3116.63
## 26344           1360      62.00
## 26345           1360     126.57
## 26346           1444   26000.79
## 26347           2010    1098.12
## 26348           1351    3951.09
## 26349           1352     198.02
## 26350           1353      77.61
## 26351           1354    6443.01
## 26352           1357     233.26
## 26353           1344     249.31
## 26354           1346      22.26
## 26355           1344     158.07
## 26356           1345     122.78
## 26357           2227      66.75
## 26358           1326     100.20
## 26359           1357    3676.25
## 26360           1357       0.00
## 26361           1354     491.54
## 26362           1354     608.73
## 26363           1354     406.47
## 26364           1448   11459.04
## 26365           1352    1115.78
## 26366           1357     219.08
## 26367           1358     180.99
## 26368           2680  229647.87
## 26369           1358   44596.50
## 26370           1359     562.46
## 26371           1359    7886.02
## 26372           1179       0.00
## 26373           1338      25.00
## 26374           1315       0.00
## 26375           1358     131.51
## 26376           1358    1142.78
## 26377           1825     737.04
## 26378           2492    1689.57
## 26379           1378  206536.87
## 26380           1357      98.19
## 26381           1352      39.33
## 26382           1352     814.79
## 26383           1899      87.37
## 26384           1354     100.00
## 26385           1354     414.29
## 26386           1757       0.00
## 26387           1354     462.32
## 26388           1615     165.69
## 26389           1352     207.14
## 26390           1346    3766.73
## 26391           1346       0.00
## 26392           1340     115.58
## 26393           1339      61.13
## 26394           1340     619.39
## 26395           1339     106.81
## 26396            982    4505.87
## 26397           1337     100.00
## 26398           1333     370.75
## 26399           1295     499.29
## 26400           1339       0.00
## 26401           1344      61.35
## 26402           1344     191.97
## 26403           1340       0.00
## 26404           1340     142.21
## 26405           1345    1461.83
## 26406           1547     719.59
## 26407           1345     129.95
## 26408           1351      43.50
## 26409           1351      50.95
## 26410           1350     157.28
## 26411           1350      36.21
## 26412           1347     136.81
## 26413           1354    4347.83
## 26414           1354     405.27
## 26415           1354     215.44
## 26416           1353     861.65
## 26417           1353     241.76
## 26418           1357     782.94
## 26419           1357     209.65
## 26420           1358     639.19
## 26421           1198    1467.75
## 26422           1133     274.31
## 26423           1142    1013.65
## 26424           1297     126.76
## 26425           1812     104.28
## 26426           1337    1376.21
## 26427           1338     309.81
## 26428           1326       0.00
## 26429           1323      41.40
## 26430           2136     112.00
## 26431           1323     276.00
## 26432           1842     328.76
## 26433           1352  107054.30
## 26434           1352     117.65
## 26435           1352      48.76
## 26436           1354       0.00
## 26437           1354     557.40
## 26438           1354     390.24
## 26439           1350    5846.37
## 26440           1638       0.00
## 26441           1352     633.36
## 26442           2499     106.28
## 26443           1339    3655.25
## 26444           1228     358.06
## 26445           1345       0.00
## 26446           1706    1562.92
## 26447           1353     376.22
## 26448           1353     109.44
## 26449           1121      82.02
## 26450           1953       0.00
## 26451           2898      51.69
## 26452           1345       0.00
## 26453           1346      68.78
## 26454           1780    1105.25
## 26455           1339     139.53
## 26456           1407     541.35
## 26457           1311   36190.67
## 26458           1346    1896.68
## 26459           1345     117.92
## 26460           1345     345.79
## 26461           1340       0.00
## 26462           2465       0.00
## 26463           1416      86.98
## 26464           1352     178.48
## 26465           1837     266.04
## 26466           1352     888.69
## 26467           1351     877.75
## 26468           1351      64.01
## 26470           1347     210.62
## 26471           1347       6.33
## 26472           1350       0.00
## 26473           1347     272.38
## 26474           1483      59.98
## 26475           1338    1518.26
## 26476           1337    1582.61
## 26477           1326       0.00
## 26478           1326     137.97
## 26479           1288     147.83
## 26480           1347       7.00
## 26481           1347   53112.05
## 26482           1350   38851.09
## 26483           1347     603.25
## 26484           1347       0.00
## 26485           1350       0.00
## 26486           1351     930.79
## 26487           2316     125.00
## 26488           1957     143.89
## 26489           1340       0.00
## 26490           1345       0.00
## 26491           1346     100.17
## 26492           1346     117.84
## 26493           2092       0.00
## 26494            986      33.34
## 26495           1769     766.61
## 26496           2350     490.78
## 26497           1329    8236.37
## 26498           1331     124.47
## 26499           1337    4231.42
## 26500           1332     205.32
## 26501           1310     261.65
## 26502           1413     232.93
## 26503           1778     190.40
## 26504           1339     245.08
## 26505           1346     135.26
## 26506           1344       0.00
## 26507           1344     287.97
## 26508           1582     294.44
## 26509           1340     261.78
## 26510           1340     127.93
## 26511           1351       0.00
## 26512           1351     532.21
## 26513           1351     220.77
## 26514           1351     301.68
## 26515           1526     158.90
## 26516           1350      38.37
## 26517           1350     530.62
## 26518           1350     467.05
## 26519           1351     834.08
## 26520           1764     620.01
## 26521           1350     731.71
## 26522           1350     244.25
## 26523           1347     184.32
## 26525           1347       0.00
## 26526           1338       0.00
## 26527           2694     169.77
## 26528           1311     914.97
## 26529           1337     140.17
## 26530           1336     103.50
## 26531           1338       0.00
## 26532           1338     152.60
## 26533           1297    4014.42
## 26534           1350     905.86
## 26535           1347     628.22
## 26536           1347     819.38
## 26537           1347     123.58
## 26538           1347       0.00
## 26539           1345      16.82
## 26540           1345     425.97
## 26541           1345     206.69
## 26542           1347     173.16
## 26543           2128    1171.20
## 26544           1339     760.21
## 26545           1015     136.99
## 26546           1827       0.00
## 26547           1441    2469.98
## 26548           1338     375.76
## 26549           1337    8502.34
## 26550           1319       0.00
## 26551            759    1778.76
## 26552           2281     140.39
## 26553           1339     144.99
## 26554           1339       0.00
## 26555           2409       0.00
## 26556           2505    2200.51
## 26557           2215    3908.77
## 26558           1340      93.00
## 26559           1344     365.29
## 26560           1340    3346.09
## 26561           1347       0.00
## 26562           1347       0.00
## 26563           1318       0.00
## 26564           1316      36.21
## 26565           1337     154.97
## 26566           1326     285.54
## 26567           1298     116.86
## 26568           2284      43.49
## 26569           1348    2133.06
## 26570           1345     308.91
## 26571           1346    3798.52
## 26572           1346     461.47
## 26573           1345     156.08
## 26574           1252     283.94
## 26575           1338       0.00
## 26576           1338    1806.20
## 26577           1338       0.00
## 26578           1333      47.00
## 26579           1315     203.54
## 26580           2297     300.14
## 26581           1822     783.28
## 26582           1344     211.43
## 26583           1344     220.97
## 26584           1340      46.00
## 26585           2283   34447.43
## 26586           1340     540.63
## 26587           1340       0.00
## 26588           1780   13940.38
## 26589           1347     247.65
## 26590           1336     144.31
## 26591           1326       0.00
## 26592           1304       0.00
## 26593           2327     706.09
## 26594           1340     224.64
## 26595           1339    3286.64
## 26596           2530      66.68
## 26597           1340     288.09
## 26598           1653     268.00
## 26599           1340     362.46
## 26600           1340     622.61
## 26601           1340     683.73
## 26602           1340       0.00
## 26603           1742    5742.52
## 26604           1345     859.27
## 26605           1345    3339.00
## 26606           1345    7276.05
## 26607           1346      65.00
## 26608           1346    1484.50
## 26609           1886    7888.17
## 26610           1664   34411.02
## 26611           1345     195.30
## 26612           1345     737.56
## 26613           1346     971.56
## 26614           1158     384.60
## 26615           1301     253.05
## 26616           1287    1564.43
## 26617           2339     233.70
## 26618           1336      23.25
## 26619           2436    1207.40
## 26620           1338    1403.13
## 26621           1309       0.00
## 26622           1338     396.81
## 26623           2540     208.32
## 26624           1345     169.20
## 26625           1344     697.81
## 26626           2091     189.76
## 26627           1344     212.72
## 26628           1345     241.35
## 26629           1340    1399.03
## 26630           1450     719.04
## 26631           1344      35.00
## 26632           1345     387.70
## 26633            694       0.00
## 26634           1246     827.51
## 26635           2584     116.29
## 26636           2824  164107.86
## 26637           1318     198.30
## 26638           1338     599.70
## 26639           1283       0.00
## 26640           1301       0.00
## 26641           1659   33824.89
## 26642           1302    3402.48
## 26643            771       0.00
## 26644           1340     240.69
## 26645           1686     333.22
## 26646           1340     523.41
## 26647           1340       0.00
## 26648           1340    1969.98
## 26649           1340       0.00
## 26650           1340     183.00
## 26651           1989     921.57
## 26652           1340     488.44
## 26653           1345     245.80
## 26654           1340     140.26
## 26655           1339       0.00
## 26656            650      59.50
## 26657            940       0.00
## 26658           1322     129.16
## 26659           1497      20.11
## 26660           1338     824.69
## 26661           1338     728.50
## 26662           1338     440.99
## 26663           1336    1034.96
## 26664           1337     313.65
## 26665           2493     211.57
## 26666           1331       0.00
## 26667           1329     106.27
## 26668           1329   17808.65
## 26669           1325     134.35
## 26671           1382    2161.59
## 26672           1339     595.26
## 26673           1340    5127.13
## 26674           2494     493.82
## 26675           1402     333.00
## 26676           1340       0.00
## 26677           2172      56.97
## 26678           1388   21250.80
## 26679           1340     191.97
## 26680           1479     434.55
## 26681           1590     344.52
## 26682           1323     735.77
## 26683           1325     119.68
## 26684           1329     257.95
## 26685           1331     405.33
## 26686           1331       0.00
## 26687           1332     189.56
## 26688           1336   16741.22
## 26689           1337     172.59
## 26690           2474      61.35
## 26691           1296     140.81
## 26692           1340      80.73
## 26693           1339     462.24
## 26694           1693    1131.59
## 26695           1233    1484.27
## 26696           1295       0.00
## 26697           2588      61.35
## 26698           1304    1846.25
## 26699           1308       0.00
## 26700           1310      51.16
## 26701           1337     193.20
## 26702           1337     144.10
## 26703           1332       0.00
## 26704           1330      38.09
## 26705           1325       0.00
## 26706           1339     239.36
## 26707           1339     221.90
## 26708           1339     284.70
## 26709           1331       0.00
## 26710           2100     349.83
## 26711           1281     745.71
## 26712           1339     126.75
## 26713           1331       0.00
## 26714           1338     285.03
## 26715           1339     529.28
## 26716           1339     106.13
## 26717           1756    1802.36
## 26718           1311     171.63
## 26719           1323   21400.93
## 26720           2464     100.87
## 26721           1976     195.16
## 26722           1331     133.57
## 26723           1331       0.00
## 26724           1329      32.59
## 26725           1326     283.37
## 26726           1326     274.69
## 26727           1326    1108.20
## 26728           1337     820.19
## 26729           1337     493.70
## 26730           1337      14.25
## 26731           1336     164.26
## 26732           1332     668.50
## 26733           1332   39841.17
## 26734           1333   34140.06
## 26735           1333      77.50
## 26736           1337     214.00
## 26737           1337     968.55
## 26738           1338     424.74
## 26739           1338    1332.96
## 26740           1287    1573.03
## 26741           1296     245.06
## 26742           1339     228.38
## 26743           1863       0.00
## 26744           1169       0.00
## 26745           1296     338.37
## 26746           1282    3287.35
## 26747           1338     702.13
## 26748           1333      68.49
## 26749           1332       0.00
## 26750           1337       0.00
## 26751           1777    5560.65
## 26752           1325     273.88
## 26753           1324       0.00
## 26754           1326      66.68
## 26755           1326     110.00
## 26756           1329     130.50
## 26757           1330     424.61
## 26758           1330       0.00
## 26759           1310     171.46
## 26760           1338     404.45
## 26761           1327      87.60
## 26762            976       0.00
## 26763           1439   21765.90
## 26764           1211       0.00
## 26765           1177    2033.51
## 26766            911     350.13
## 26767           1791   31912.26
## 26768            945    4112.50
## 26769            325     782.50
## 26770           1318     578.18
## 26771           1315    1536.13
## 26772           1330     154.57
## 26773           1331     194.17
## 26774           1330      29.12
## 26775           1325       0.00
## 26776           1967     229.73
## 26777           1337      51.16
## 26778           1336       0.00
## 26779           1336      56.68
## 26780           1336      61.86
## 26781           1336     290.18
## 26782           1336       0.00
## 26783           1336     306.60
## 26784           1333       0.00
## 26785           1281     123.14
## 26786           1250    1138.45
## 26787           1298       0.00
## 26788           1304   10151.21
## 26789           1333      40.00
## 26790           1970      62.00
## 26791           2205     264.53
## 26792           1332     170.07
## 26793           1332       0.00
## 26794           1332      89.17
## 26795           1705    3371.13
## 26796           1336     958.82
## 26797           1333     107.18
## 26798           1337       0.00
## 26799           1336   17400.54
## 26800           1325       0.00
## 26801           1326     137.61
## 26802           2807   24878.80
## 26803           1332     317.06
## 26804           1330     405.26
## 26805           1666    1018.24
## 26806           2281       0.00
## 26807           1309     743.04
## 26808           1086     180.11
## 26809           1044     104.50
## 26810           1638   10203.09
## 26811           2624    1436.45
## 26812           1816      61.35
## 26813           2205    1100.10
## 26814           1319      51.28
## 26815           2237     839.68
## 26816           1331     680.88
## 26817           1330       0.00
## 26818           1326       0.00
## 26819           1325     329.48
## 26820           1506     659.54
## 26821           3812   64007.59
## 26822           1303      41.40
## 26823           1303     561.27
## 26824           1333    1672.92
## 26826           1332      39.42
## 26827           1329     200.29
## 26828           2462      66.68
## 26829           1311    2384.34
## 26830           1310       0.00
## 26831           1645     452.82
## 26832           1331       0.00
## 26833           1331       0.00
## 26834           2281    1101.04
## 26835           2514     536.77
## 26836           1332     261.08
## 26837           1332       0.00
## 26838           1333     504.33
## 26839           1301      46.21
## 26840           1301    1008.60
## 26841           1302     100.00
## 26842           1333    1514.42
## 26843           1332     204.20
## 26844           1332      92.00
## 26845           1325     194.68
## 26846           1984     220.99
## 26847           1701     615.98
## 26848           1330     385.36
## 26849           1330    6005.00
## 26850           1329     419.58
## 26851           2657     465.35
## 26852           1319    2021.47
## 26853           2731  181695.42
## 26854           1322       0.00
## 26855           1318     107.84
## 26856           2096       0.00
## 26857           1315     117.27
## 26858           1123     407.00
## 26859            857     313.63
## 26860           1322       0.00
## 26861           1319     195.22
## 26862           1309      41.25
## 26863           1312     191.91
## 26864           1329     635.15
## 26865           2194     503.12
## 26866           1326       0.00
## 26867           1330     677.43
## 26868           1330     362.02
## 26869           2633    1327.84
## 26870           1326   30046.57
## 26871           1326       0.00
## 26872           1325    1012.09
## 26873           1287       0.00
## 26874           1422    1137.94
## 26875           1134     191.24
## 26876           1227     184.75
## 26877           1228     255.09
## 26878           1269     482.13
## 26879           1288    2458.13
## 26880           1325      66.68
## 26881           1325      32.34
## 26882           1324     327.06
## 26884           1326     631.73
## 26885           1326       0.00
## 26886           1326       0.00
## 26887           2094     751.94
## 26888           1330      86.22
## 26889           1326     412.41
## 26890           1329     177.80
## 26891           1329       0.00
## 26892           2621     142.86
## 26893           1329      95.97
## 26894           1329     383.53
## 26895           1319      13.67
## 26896           1318     284.53
## 26897           1317       0.00
## 26898           1317       0.00
## 26899           1085       0.00
## 26900           1837     293.64
## 26901           2149     223.70
## 26902           1315       0.00
## 26903           1317     192.34
## 26904           1318      84.61
## 26905           1318       0.00
## 26906           1319   36678.23
## 26907           1311     191.94
## 26908           1309     175.10
## 26909           1329     263.11
## 26910           1329     534.89
## 26911           1329       0.00
## 26912           1326       0.00
## 26913           1326     741.09
## 26914           2258  175490.87
## 26915           1326      10.00
## 26916           1324    1774.04
## 26917           1287     408.16
## 26918           1303     118.77
## 26919           1297       0.00
## 26920           1277     387.16
## 26921           1472    1310.93
## 26922           1325      87.50
## 26923           1325     177.89
## 26924           1325     660.06
## 26925           1326    1246.78
## 26926           1310       0.00
## 26927           1471     399.98
## 26928           2665     321.31
## 26929           1318    1279.14
## 26930           1315     715.42
## 26931           1315    1181.24
## 26932           1323     839.31
## 26933           1325     204.40
## 26934           1325    4915.24
## 26935           1302    2950.62
## 26936           2205     125.69
## 26937           1248     445.40
## 26938           1274      15.19
## 26939           1717   45960.97
## 26940           1325       0.00
## 26941           1326     331.22
## 26942           1315      81.81
## 26943           1368     245.22
## 26944           1248       0.00
## 26945           1438   28773.65
## 26946           1234       0.00
## 26947           1309     372.20
## 26948           1309      91.74
## 26949           1309     877.48
## 26950           1309      92.00
## 26951           1317     821.32
## 26952           1315     184.96
## 26953           2156       0.00
## 26954           1315       0.00
## 26955           1323    1424.22
## 26956           1323     116.92
## 26957           1323     297.64
## 26958           1517       0.00
## 26959           1323     202.46
## 26960           1323     237.00
## 26961           2574    1733.40
## 26962           1323    9648.34
## 26963           1323  232041.45
## 26964           1323       8.00
## 26965           1304     161.32
## 26966           1304       0.00
## 26967           1134      66.68
## 26968           1135      76.95
## 26969           1214     131.68
## 26970           1381      78.31
## 26971           1274       0.00
## 26972           1304     148.18
## 26973           1304     250.38
## 26974           2463    2429.80
## 26975           1298     204.29
## 26976           1295     898.41
## 26977           1291       0.00
## 26978           1291       0.00
## 26979           1289     134.76
## 26980           1323   38121.44
## 26981           1323      24.50
## 26982           1323     173.50
## 26983           1324     383.58
## 26984           1324     189.16
## 26985           1324     164.84
## 26986           1321     639.90
## 26987           1323   30416.15
## 26988           2190      41.40
## 26989           1323      83.72
## 26990           1318       0.00
## 26991           1318     270.55
## 26992           1317    6126.08
## 26993           1317     457.24
## 26994           1309     557.77
## 26995           2636       0.00
## 26996           1310     531.28
## 26997           1151     971.35
## 26998           1228      82.77
## 26999           1312     237.17
## 27000           2022     681.80
## 27001           1309     537.04
## 27002           1812       0.00
## 27003           2330     678.49
## 27004           1316       0.00
## 27005           1315       0.00
## 27006           1312     312.35
## 27007           1319       0.00
## 27008           1319     569.18
## 27009           1319     139.10
## 27010           1323     640.52
## 27011           1323     549.34
## 27012           1321   35644.00
## 27013           1281      61.35
## 27014           1297     417.16
## 27015           2644     324.72
## 27016           1304     128.60
## 27017           1233       0.00
## 27018           1245     678.85
## 27019           1218       0.00
## 27020           1249     183.98
## 27021           1322     562.99
## 27022           1565     289.74
## 27023           1319       0.00
## 27024           2850       0.00
## 27025           1793      66.68
## 27026           1319     264.73
## 27027           1318       0.00
## 27028           1318     224.51
## 27029           1312       0.00
## 27030           1316     160.85
## 27031           1317     275.88
## 27032           1317     594.33
## 27033           1700      77.70
## 27034           1309       0.00
## 27035           1762    1048.13
## 27036           1826   89771.58
## 27037           1312     375.16
## 27038           1312      97.64
## 27039           1312       0.00
## 27040           1309     122.70
## 27041            581       0.00
## 27042           1218     303.95
## 27043           1312       0.00
## 27044           1311     128.18
## 27045           1317     132.16
## 27046           1891     195.30
## 27047           1314       0.00
## 27048           1318      84.61
## 27049           1318    1175.94
## 27050           1317      90.13
## 27051           1319    2800.74
## 27052           1319     256.55
## 27053           2259     120.10
## 27054           1303     238.30
## 27055           1303     211.44
## 27056           1294       0.00
## 27057           1296     115.52
## 27058           1288    1222.26
## 27059           1519     509.65
## 27060           1319    2876.07
## 27061           1315    3258.94
## 27062           1316   13670.44
## 27063           1317    2042.90
## 27064           1317    1619.65
## 27065           1317     273.32
## 27066           1107     707.58
## 27067           1312       0.00
## 27068           1318     754.20
## 27069           1652     837.15
## 27070           1295   47628.98
## 27071           2577     181.65
## 27072           1304    1788.59
## 27073           1150     255.33
## 27074           1254    3700.97
## 27075           1274     265.30
## 27076           1303       0.00
## 27077           2702  103749.73
## 27078           1298       0.00
## 27079           1302       0.00
## 27080           1291       0.00
## 27081           1309      32.59
## 27082           1309       0.00
## 27083           1309       0.00
## 27084           1311       0.00
## 27085           1310     362.56
## 27086           1818     353.33
## 27087           1315      66.68
## 27088           1804       0.00
## 27089           1317     347.08
## 27090           1317      36.21
## 27091           1315       0.00
## 27092            967       0.00
## 27093           1150     -81.81
## 27094           1273       0.00
## 27095           1300    2856.56
## 27096           1227   10557.96
## 27097           1664       0.00
## 27098           1526       0.00
## 27099           1314       0.00
## 27100           1315     217.59
## 27101           1310     101.52
## 27102           1310      36.21
## 27103           1310     152.26
## 27104           1311     441.54
## 27105           1308      65.01
## 27106           1308      77.17
## 27107           1458     597.73
## 27108           1281       0.00
## 27109           1298     256.57
## 27110           2598   10226.11
## 27111           1294     199.77
## 27112           1304     128.18
## 27113           1303    1468.36
## 27114           1151      84.61
## 27115           1879       0.00
## 27116           1242     159.45
## 27117           1242     195.38
## 27118           1254     281.94
## 27119           1262      78.20
## 27120           2591     194.57
## 27121           1303     450.10
## 27122           1749     272.46
## 27123           1295      56.68
## 27124           1297   15370.96
## 27125           1301     859.99
## 27126           1301       0.00
## 27127           1291    4273.70
## 27128           1284   16466.17
## 27129           1309  130773.06
## 27130           1311     457.53
## 27131           1724     386.09
## 27132           1312       0.00
## 27133           2494      24.00
## 27134           1312     237.71
## 27135           1310      90.82
## 27136           1309     177.39
## 27137           1314       0.00
## 27138           1314     712.70
## 27139           1314      88.29
## 27140           1315     244.08
## 27141           1316       0.00
## 27142           2670      33.31
## 27143           1317     122.56
## 27144           1276    3535.35
## 27145           1095      73.58
## 27146           1165    3747.14
## 27147           2035    4246.54
## 27148           1314     338.31
## 27149           1992     654.82
## 27150           1314       0.00
## 27151           1314       0.00
## 27152           1309    1123.25
## 27153           1310     653.23
## 27154           3225   81482.26
## 27155           1312    2706.53
## 27156           1311    1420.30
## 27157           1309       0.00
## 27158           1309     355.70
## 27159           1308     100.00
## 27160           1308    4615.74
## 27161           1281     200.63
## 27162           1297     465.69
## 27163           1295       0.00
## 27164           1295    4242.53
## 27165           1304       0.00
## 27166           1303       0.00
## 27167           2004       0.00
## 27168           1302     119.03
## 27169           1262     346.86
## 27170           1298      96.29
## 27171           1301     303.28
## 27172           1281      61.35
## 27173           2421     447.76
## 27174           1312    2652.08
## 27175           1312      98.14
## 27176           1311     135.60
## 27177           1310      55.56
## 27178           2171    6959.40
## 27179           1211     391.81
## 27180           1745     131.63
## 27181           1249     290.79
## 27182           1310     150.03
## 27183           1311     165.21
## 27184           1311       0.00
## 27185           1311    2960.29
## 27186           1309     445.74
## 27187           1309       0.00
## 27188           1295     408.27
## 27189           1302     121.66
## 27190           2457     333.34
## 27191           1982     165.18
## 27192           1301     237.50
## 27193           1524       0.00
## 27194           1289   13013.04
## 27195           1309     414.01
## 27196           1308    2172.21
## 27197           1311     232.74
## 27198           1551     186.43
## 27199           1261    2367.96
## 27200           1261      97.31
## 27201           1647     219.24
## 27202           1508     214.17
## 27203           1309      43.49
## 27204           1309      38.37
## 27205           1309     160.79
## 27206           1309      70.55
## 27207           1309      97.96
## 27208           1309     311.81
## 27209           1309     152.39
## 27210           1309     221.64
## 27211           1309     432.07
## 27212           1291     258.22
## 27213           1287     265.71
## 27214           1282       0.00
## 27215           1678     194.52
## 27216           1301       0.00
## 27217           1301    1633.19
## 27218           1296       0.00
## 27219           2005       0.00
## 27220           1302     114.00
## 27221           1302     181.68
## 27222            779     155.52
## 27223           1254     601.47
## 27224           1249     160.93
## 27225           1302     209.84
## 27226           1491     142.48
## 27227           1304      38.37
## 27228           1304     335.97
## 27229           1296       0.00
## 27230           2128     339.92
## 27231           1294    1005.55
## 27232           2506      77.85
## 27233           1331     115.52
## 27234           1301     300.39
## 27235           1301     478.45
## 27236           1298     985.64
## 27237           1291     266.10
## 27238           1289     590.86
## 27239           1309    9020.60
## 27240           1309      28.97
## 27241           1309     240.78
## 27242           1030   45631.25
## 27243           1262     949.53
## 27244           1274       0.00
## 27245           1387      46.04
## 27246           1277     269.51
## 27247           1309     309.58
## 27248           1308     761.35
## 27249           2303     195.91
## 27250           1819     104.10
## 27251           1308    3903.23
## 27252           1308   22071.49
## 27253           1291       0.00
## 27254           1288     284.23
## 27255           1287     246.36
## 27256           1282     871.71
## 27257           1298     840.42
## 27258           2305     479.76
## 27259           1295     213.05
## 27260           1296      68.78
## 27261           1296     331.92
## 27262           1304    1600.64
## 27263           1304     216.21
## 27264           1304       0.00
## 27265           1303     133.95
## 27266           1303       0.00
## 27267           1113     128.49
## 27268           1717     111.57
## 27269           1064      84.61
## 27270           1267       0.00
## 27271           1249     138.23
## 27272           1809     878.19
## 27273           1304    1795.06
## 27274           1304     320.48
## 27275           1304     161.00
## 27276           1304      62.65
## 27277           1304       0.00
## 27278           2595       0.00
## 27279           1296       0.00
## 27280           1298    1062.47
## 27281           1564   14999.01
## 27282           2589     121.00
## 27283           1287    1242.81
## 27284           1290     111.08
## 27285           1291     118.25
## 27286           1301     110.99
## 27287           1302      84.37
## 27288           1281    2329.24
## 27289           1287     161.04
## 27290           1288    7209.34
## 27291           1289    1938.25
## 27292           1290      20.11
## 27293           1150   14975.00
## 27294           1274     231.81
## 27295           1233     294.23
## 27296           1291     303.39
## 27297           1287     248.76
## 27298           1281    2121.51
## 27299           1301     211.84
## 27300           1301     498.63
## 27301           1298       0.00
## 27302           1297     654.16
## 27303           1297      83.88
## 27304           1840     343.83
## 27305           1294    1417.22
## 27306           1304     302.81
## 27307           1304      64.00
## 27308           1304     173.33
## 27309           1303    4077.79
## 27310           2533     423.29
## 27311           1149     139.00
## 27312           2058       0.00
## 27313           1303       0.00
## 27314           1295     317.15
## 27315           2364  160211.44
## 27316           1295       0.00
## 27317           1295     432.66
## 27318           1297     110.30
## 27319           1301    4834.77
## 27320           1302   10215.08
## 27321           2178     262.68
## 27322           1492    1151.66
## 27323           1302     127.91
## 27324           1304      78.20
## 27325           1291       0.00
## 27326           1291       0.00
## 27327           1921    2898.97
## 27328           1282       0.00
## 27329           2129    3642.72
## 27330           1142    1250.11
## 27331           1411     197.94
## 27332           1277       0.00
## 27333           1298       0.00
## 27334           1298   11798.21
## 27335           1297      78.20
## 27336           1295      99.47
## 27337           1734    5440.53
## 27338           1302     606.88
## 27339           1303     143.28
## 27340           2474     168.05
## 27341           1289     125.75
## 27342           2407     631.97
## 27343           1204      60.32
## 27344           1262       0.00
## 27345           1164       0.00
## 27346           1288   33278.82
## 27347           1288    1100.83
## 27348           2379     106.00
## 27349           1290     137.60
## 27350           2176     126.03
## 27351           1294     926.83
## 27352           2134       0.00
## 27353           1555       0.00
## 27354           1296     277.65
## 27355           1298    1113.79
## 27356           1298    1813.02
## 27357           1302     356.44
## 27358           2557    1086.60
## 27359           1301   18077.76
## 27360           2143     602.01
## 27361           1134     118.91
## 27362           1178     176.23
## 27363           1261     151.75
## 27364           1317     582.42
## 27365           1267    1842.21
## 27366           1248     138.15
## 27367           1274    1738.97
## 27368           1631     219.74
## 27369           1298     223.51
## 27370           1297     265.79
## 27371           1469     691.00
## 27372           2404       0.00
## 27373           1295    1854.55
## 27374           1295     627.55
## 27375           1289      36.21
## 27376           1936       0.00
## 27377           1613     121.31
## 27378           1287     226.20
## 27379           1282       0.00
## 27380           1282    1266.84
## 27381           2164    3558.07
## 27382           1157   11058.43
## 27383           1122     231.49
## 27384           1526       0.00
## 27385           1284     148.89
## 27386           1284      90.89
## 27387           2141   13942.19
## 27388           1287      66.68
## 27389           1291     571.07
## 27390           2221      68.09
## 27391           1295     605.49
## 27392           1820     137.82
## 27393           2466       0.00
## 27394           1296      44.31
## 27395           1296     598.05
## 27396           1297     157.78
## 27397           1297     252.18
## 27398           1297     108.00
## 27399           2080     654.32
## 27400           1298     238.04
## 27401           1512     646.11
## 27402           1267       0.00
## 27403           1268     106.45
## 27404           1268       0.00
## 27405           1294     427.17
## 27406           2063   31498.69
## 27407           1283       0.00
## 27408           1935       0.00
## 27409           1122     231.49
## 27410           2515       0.00
## 27411           1639   24224.62
## 27412           1281     351.47
## 27413           1288       0.00
## 27414           1296       0.00
## 27415            581      57.85
## 27416           1206       0.00
## 27417           1691       0.00
## 27418           1197       0.00
## 27419           1269     252.97
## 27420           1274    4363.80
## 27421           1269       0.00
## 27422           1812      66.68
## 27423           2513      99.89
## 27424           1246       0.00
## 27425           1296    2493.92
## 27426           1295     378.04
## 27427           1943     209.77
## 27428           1448     390.58
## 27429           1295     697.72
## 27430           1294       0.00
## 27431           2523     460.09
## 27432           1287     244.47
## 27433           1287     209.56
## 27434           1283   10863.07
## 27435           1287       0.00
## 27436           1287       0.00
## 27437           1290    1041.38
## 27438           1337      91.77
## 27439           1487       0.00
## 27440           1282     342.39
## 27441           1281     164.36
## 27442           1281  120530.99
## 27443           1112     356.36
## 27444           1277     673.55
## 27445           1283   22129.84
## 27446           1281     266.98
## 27447           1281   25286.27
## 27448           1281       0.00
## 27449           1281     296.79
## 27450           1291       0.00
## 27451           1291     161.68
## 27452           1291     804.98
## 27453           1289     240.90
## 27454           1288     304.79
## 27455           1294   18063.64
## 27456           1294   17169.81
## 27457           1569  191180.13
## 27458           1296     566.32
## 27459           2224       8.27
## 27460           1214     235.53
## 27461           1269    8643.99
## 27462           1274    1577.91
## 27463           1165      71.40
## 27464           1218       0.00
## 27465           2556      93.18
## 27466           1294     467.15
## 27467           2176      51.16
## 27468           1288     411.86
## 27469           1284     146.40
## 27470           1289     954.25
## 27471           1280     200.21
## 27472           2148      36.21
## 27473           1496    1644.34
## 27474            547   90458.27
## 27475           1274      86.22
## 27476           1269     392.33
## 27477           1276     100.28
## 27478           1280       0.00
## 27479           1290     101.57
## 27480           1289      50.00
## 27481           1290     162.67
## 27482           1291      85.96
## 27483           1291     329.24
## 27484           1291       0.00
## 27485           1291       7.00
## 27486           1291       0.00
## 27487           1287     177.02
## 27488           1294       0.00
## 27489           1044       0.00
## 27490           1276     142.28
## 27491           2570     931.12
## 27492           1262       0.00
## 27493           1263       0.00
## 27494           1259      99.27
## 27495           1234     102.50
## 27496           2345     720.22
## 27497           1287   24759.70
## 27498           1284     418.84
## 27499           2433     168.44
## 27500           1288   24959.81
## 27501           1288     713.11
## 27502           1288    2175.23
## 27503           1316      52.40
## 27504           1290       0.00
## 27505           2331     437.83
## 27506           1289     343.42
## 27507           1287     371.93
## 27508           1281       0.00
## 27509           1281    1275.42
## 27510           1281    2536.55
## 27511           1282  138364.46
## 27512           1282       0.00
## 27513           1282    3585.18
## 27514           1150     348.07
## 27515           1657   21467.28
## 27516           1616       0.00
## 27517           1702     385.16
## 27518           1290     254.86
## 27519           1290     507.84
## 27520           1289       0.00
## 27521           1290     298.86
## 27522           1288    4053.23
## 27523           1211     920.98
## 27524           1263   21939.64
## 27525           1288    1600.67
## 27526           1207     291.04
## 27527           1205     373.60
## 27528           1765     455.03
## 27529           1277      64.33
## 27530           1274     867.32
## 27531           1273   29777.81
## 27532           1288       0.00
## 27533           1288      41.40
## 27534           1284      66.68
## 27535           1287       0.00
## 27536           1289     474.82
## 27537           1289   11211.53
## 27538           1288    1792.64
## 27539           1289     406.68
## 27540           1289    3838.89
## 27541           1289      44.00
## 27542           1281      98.23
## 27543           1281     115.78
## 27544           2493     232.03
## 27545           1280     344.12
## 27546           1025       0.00
## 27547           1149      58.01
## 27548           1274     195.59
## 27549           1263      15.27
## 27550           1263     255.50
## 27551           1261     303.36
## 27552           1262    1273.69
## 27553           1248       0.00
## 27554           1227     266.93
## 27555           1241       0.00
## 27556           1219     169.80
## 27557           1634     399.73
## 27558           1282      49.84
## 27559           1281     640.81
## 27560           1687      39.33
## 27561           2129     598.41
## 27562           1456       0.00
## 27563           1284       0.00
## 27564           1288     924.84
## 27565           1528     599.37
## 27566           1227     154.17
## 27567           1235       0.00
## 27568           1266   38953.02
## 27569           1263       0.00
## 27570           2440     389.41
## 27571           1277       0.00
## 27572           1274    1990.53
## 27573           1288      86.22
## 27574           1287       0.00
## 27575           1287       0.00
## 27576           1489       0.00
## 27577           1536   24830.19
## 27578           1283      53.98
## 27579           1284       0.00
## 27580           1284     139.95
## 27581           1289   15452.36
## 27582           1281    1693.99
## 27583           1282    9614.56
## 27584           1282     156.78
## 27586           1277   10054.53
## 27587           1274     308.62
## 27588           1275     108.16
## 27589           1263       0.00
## 27590           1260      68.76
## 27591           1247     410.28
## 27592           1158     299.12
## 27593           2334       0.00
## 27594           1226     258.19
## 27595           1282     130.65
## 27596           1283      90.44
## 27597           1281       0.00
## 27598           1280       0.00
## 27599           1284       6.75
## 27600           1559   12647.71
## 27601           2298      82.00
## 27602           1284      92.88
## 27603           1284     182.87
## 27604           1284     500.28
## 27605           1284     154.36
## 27606           1284       0.00
## 27607           1972   11795.72
## 27608           1200     853.29
## 27609           1212     251.63
## 27610           1150     377.63
## 27611           1235    1070.93
## 27612           1233       0.00
## 27613           1261     992.76
## 27614           1262   27369.37
## 27615           1268     695.19
## 27616           1268     470.40
## 27617           1276       0.00
## 27618           1276      74.80
## 27619           2686   37157.38
## 27620           1274     127.48
## 27621           1274      92.16
## 27622           1274     124.05
## 27623           1273       0.00
## 27624           2423     235.57
## 27625           1280     107.88
## 27626           1280  114498.94
## 27627           1280       0.00
## 27628           2267       0.00
## 27629           1281       0.00
## 27630           1282     175.95
## 27631           1380       0.00
## 27632           2002   33213.73
## 27633           1262     456.58
## 27634           1254     207.19
## 27635           1233       0.00
## 27636           1277    1470.43
## 27637           1275    5708.10
## 27638           1273     224.99
## 27639           1283     458.10
## 27640           1281       0.00
## 27641           1280      39.33
## 27642           1275       0.00
## 27643           1274     276.63
## 27644           1277   20943.78
## 27645           1254     256.76
## 27646           1262     140.42
## 27647           1262     201.78
## 27648           1262     293.43
## 27649           1261     282.37
## 27650           1268       0.00
## 27651           1249     496.13
## 27652           1254      10.00
## 27653            883       0.00
## 27654           1233       0.00
## 27655           1239   11114.02
## 27656           1330     117.27
## 27657           1334     185.18
## 27658           1280     740.77
## 27659           1281     215.07
## 27660           1679     195.59
## 27661           1282    1022.95
## 27662           1282     661.64
## 27663           1281     546.85
## 27664           1281     151.01
## 27665           1263     112.94
## 27666           1263       0.00
## 27667           1263       0.00
## 27668           1262     256.62
## 27669           2654     688.87
## 27670           1277       0.00
## 27671           1276     128.81
## 27672           1277     299.53
## 27673           1275       0.00
## 27674           1273       0.00
## 27675           1273      37.43
## 27676           1274     381.56
## 27677           1168   48779.25
## 27678           1281     111.79
## 27679           2300     261.27
## 27680           1280     339.11
## 27681           1280     147.81
## 27682           1280     622.28
## 27683           2318     222.73
## 27684           1270       0.00
## 27685           1367    9368.14
## 27686           1274    1907.46
## 27687           1254     249.11
## 27688           1242      31.44
## 27689           1245      53.39
## 27690           1231    9572.67
## 27691           1280    2209.25
## 27692           1777     491.48
## 27693           1281     263.74
## 27694           1280       0.00
## 27695           1095    5520.64
## 27696           1203     203.73
## 27697           1214      79.52
## 27698           1898    1528.07
## 27699           1242     115.83
## 27700            875       0.00
## 27701           1265     288.53
## 27702           1263      61.35
## 27703           1262     305.99
## 27704           1268   21930.65
## 27705           1267     214.91
## 27706           1252     175.00
## 27707           1275     191.97
## 27708           1276       0.00
## 27709           1277       0.00
## 27710           1277      52.50
## 27711           1853    5710.11
## 27712           1277     268.65
## 27713           1269      73.55
## 27714           1273      87.06
## 27715           1274     987.46
## 27716           1273    3302.64
## 27717           1280     314.47
## 27718           1280     213.96
## 27719           2002   21242.63
## 27720           1198     190.26
## 27721           1211      73.17
## 27722           1270      67.43
## 27723           1276     132.43
## 27724           1276   16370.59
## 27725           1454      94.14
## 27726           1268     886.75
## 27727           2320    5765.03
## 27728           2552      87.78
## 27729           1263    3228.81
## 27730           1254     116.00
## 27731           1254       0.00
## 27732           1259    4287.22
## 27733           1280    1093.89
## 27734           1276   14860.90
## 27735           1269     493.16
## 27736           2487    1436.49
## 27737           1273     237.90
## 27738           1263     380.23
## 27739           1021     477.81
## 27740            609       0.00
## 27741           1000       0.00
## 27742           1143     108.60
## 27743           1136     409.28
## 27744           1133       0.00
## 27745           1263      68.78
## 27746           1263     291.31
## 27747           1263      68.78
## 27748           1267   28569.23
## 27749           1262     127.68
## 27750           1273       0.00
## 27751           1270    1831.97
## 27752           1275     583.73
## 27753           1184    2816.65
## 27754           2568       0.00
## 27755           1227     266.79
## 27756           2181   93965.36
## 27757           1228    6129.98
## 27758           1227     240.08
## 27759           1233     582.09
## 27760           1234     184.30
## 27761           1235       0.00
## 27762           1656   35830.97
## 27763           1102     726.05
## 27764            367       0.00
## 27765           2283    6826.83
## 27766           1206     171.13
## 27767           1214      51.16
## 27768           1233      81.00
## 27769           1227     210.08
## 27770           1233       0.00
## 27771           1184      29.35
## 27772           1275     273.86
## 27773           2006   12698.60
## 27774           1274      38.94
## 27775           1269     745.92
## 27776           1269      92.96
## 27777           1273     132.18
## 27778           1273       0.00
## 27779           1273      58.38
## 27780           1274    1254.65
## 27781           2031     203.32
## 27782           1262     277.37
## 27783           1262    3393.31
## 27784           1262     382.30
## 27785           1269   13967.84
## 27786           1259     197.50
## 27787           1254   22262.66
## 27788           1269    1089.14
## 27789           1269     296.50
## 27790           1269       0.00
## 27791           1268     642.62
## 27792           1263     165.21
## 27793           1263     439.87
## 27794           1214    1218.45
## 27795           1213       0.00
## 27796           1263   47634.01
## 27797           1266       0.00
## 27798           1266    1231.45
## 27799           1263     145.83
## 27800           1682  196409.92
## 27801           1427   12745.93
## 27802           1267    8707.08
## 27803           1267    1538.99
## 27804           1267     206.97
## 27805           1267   18466.17
## 27806           2245     890.31
## 27807           1274     340.96
## 27808           1273       0.00
## 27809           1270     325.97
## 27810           1273   13280.82
## 27811           1273     406.83
## 27812           1270      55.93
## 27813           2129     181.11
## 27814           1269     466.72
## 27815           2638  287890.02
## 27817           1242     924.55
## 27818           1246    1789.17
## 27819           1211     231.92
## 27820           1205    5865.25
## 27821           1205     924.84
## 27822           1143     560.49
## 27823           1231      53.76
## 27824           1235     702.99
## 27825           1235     197.65
## 27826           1270      73.00
## 27827           1270     381.07
## 27828           1270    2424.18
## 27829           1260      41.70
## 27830           1262    1088.80
## 27831           2116     597.55
## 27832           1254     768.71
## 27833           1267     306.41
## 27834           1267    3499.48
## 27835           1267      47.50
## 27836           1267     517.38
## 27837           1267     696.96
## 27838           1267    3335.05
## 27839           1267    1631.36
## 27840           1267     694.49
## 27841           1269       0.00
## 27842           1269     453.62
## 27843           1266     700.97
## 27844           1263      86.22
## 27845           1252       0.00
## 27846           1248       0.00
## 27847           2299       0.00
## 27848           1043     106.68
## 27849           1260    7882.34
## 27850           1268    1107.13
## 27851           1262       0.00
## 27852           1472     289.71
## 27853           1700     151.58
## 27854           1270       0.00
## 27855           1270     545.81
## 27856           1269   63092.83
## 27857           1270     676.22
## 27858           2531       0.00
## 27859           1278     159.66
## 27860           1217      51.21
## 27861           1219     178.18
## 27862           1095      20.35
## 27863           1213      29.94
## 27864           1219       0.00
## 27865           1240     204.22
## 27866           1269     577.97
## 27867           1267     553.46
## 27868           1266    1849.70
## 27869           2154     905.97
## 27870           1207       0.00
## 27871           1267      79.26
## 27872           1269     242.62
## 27873           2111     771.62
## 27874           1262     184.73
## 27875           1196       0.00
## 27876           2182     124.00
## 27877           1263   13018.72
## 27878           1263     145.12
## 27879           1263     582.55
## 27880           2224     295.90
## 27881           1263     139.65
## 27882           1268     131.84
## 27883           1268    2016.00
## 27884           1267    1755.86
## 27885           1267     903.99
## 27886           1932     241.51
## 27887           1343     572.84
## 27888           1267    1315.76
## 27889           1262    8211.40
## 27890           1254       0.00
## 27891           2128     452.21
## 27892           1249     790.62
## 27893           1270      20.00
## 27894           1906    4215.33
## 27895           1219     555.77
## 27896           1219     185.76
## 27897           1477     648.57
## 27898           1064      83.98
## 27899           1226     392.88
## 27900           1233      15.74
## 27901           1233    2840.83
## 27902           1235     116.74
## 27903           1242     496.78
## 27904           1249     375.78
## 27905           1254       0.00
## 27906           1254    6821.78
## 27907           2446     111.79
## 27908           1261       0.00
## 27909           1266       0.00
## 27910           1266      75.00
## 27911           1266     166.28
## 27912           1267     601.73
## 27913           1266     332.97
## 27914           1263     946.63
## 27915           1129      96.63
## 27916           1149       0.00
## 27917           1205       0.00
## 27918           1199     950.81
## 27919           1263    1249.66
## 27920           1263    1457.95
## 27921           2197     573.00
## 27922           1262     198.30
## 27923           1267     366.30
## 27924           1266     189.02
## 27925           1266     556.91
## 27926           1266     115.05
## 27927           1266     161.60
## 27928           2272     175.64
## 27929           1260       0.00
## 27930           1260       0.00
## 27931           1259    1905.17
## 27932           1254      76.95
## 27933           1254     139.20
## 27934           2313   22232.10
## 27935           3455   47687.55
## 27936           1249    4289.68
## 27937           2410       0.00
## 27938           1170      41.40
## 27939            980     553.17
## 27940           1245       0.00
## 27941            413    5250.00
## 27942           1196      10.20
## 27943           1234     128.56
## 27944           1254     198.33
## 27945           1261     352.95
## 27946           1984     987.28
## 27947           1263      56.21
## 27948           1651     108.75
## 27949           1262       0.00
## 27950           1262     334.01
## 27951           1262     227.29
## 27952           1262   14876.51
## 27953           1263   23915.72
## 27954           1121      94.24
## 27955           1213   13136.41
## 27956           1266       0.00
## 27957           1262       0.00
## 27958           1262     264.53
## 27959           1262      30.78
## 27960           1261      93.43
## 27961           1261     168.27
## 27962           1262    2759.74
## 27963           2101     220.28
## 27964           1254       0.00
## 27965           1259   12582.41
## 27966           1259     174.23
## 27967            806       0.00
## 27968           1227       0.00
## 27969           1245       0.00
## 27970           2444       0.00
## 27971            932       0.00
## 27972            927     115.52
## 27973           1265     919.75
## 27974           1157       0.00
## 27975           1262     625.60
## 27976           1261       0.00
## 27977           1261     600.63
## 27978           1262     157.70
## 27979           1262      39.33
## 27980           1262     184.22
## 27981           1617     407.19
## 27982           1259   10574.61
## 27983           1249     259.29
## 27984           1572       0.00
## 27985           1346     789.64
## 27986           1052       0.00
## 27987           1249     831.79
## 27988           2439     831.79
## 27989           1249      66.68
## 27990           1249     898.29
## 27991           1688   83839.23
## 27992           1254     122.82
## 27993           1262     391.08
## 27994           1262     232.74
## 27995           1261     327.09
## 27996           1261       0.00
## 27997           1260     199.73
## 27998           2311  257965.94
## 27999           1184    2478.25
## 28000           1263    1757.84
## 28001           1710     203.25
## 28002           1227     188.58
## 28003           1219      96.90
## 28004           1126       0.00
## 28005           1212   26262.75
## 28006           1189    1326.80
## 28007           1219   23931.22
## 28008           1242      86.68
## 28009           1246       0.00
## 28010           1422     165.21
## 28011           1657      43.49
## 28012           1261     582.70
## 28013           1939     125.98
## 28014           1249       0.00
## 28015           1247      30.00
## 28016            650       0.00
## 28017           2238  356383.34
## 28018           1252      51.16
## 28019           1252       0.00
## 28020           1254   20822.51
## 28021           1249    1446.64
## 28022           1259      94.44
## 28023           1330     391.94
## 28024           1259       0.00
## 28025           1522   17512.22
## 28026           1259     266.12
## 28027           1235     611.52
## 28028           1235       0.00
## 28029           1246     305.90
## 28030           1241     757.45
## 28031           1239    3518.27
## 28032           1291     588.19
## 28033           1219     393.98
## 28034           2422  141127.23
## 28035           1219    1939.06
## 28036           1221       0.00
## 28037           2109    1499.81
## 28038           1246     693.69
## 28039           1246    4114.46
## 28040           1218     113.25
## 28041           1235     939.72
## 28042           1234       0.00
## 28043           1234    1887.81
## 28044           1259     208.17
## 28045           1254     232.32
## 28046           1254     315.57
## 28047           1254     653.70
## 28048           1254       7.02
## 28049           1259     185.27
## 28050           1249      66.68
## 28051           2151       0.00
## 28052           1250       0.00
## 28053           1249    2291.20
## 28054           1184      91.79
## 28055           1184     139.59
## 28056           1198     332.97
## 28057           1151      51.16
## 28058           1156     249.07
## 28059           2493     133.59
## 28060           2017     434.09
## 28061           1254     171.96
## 28062           1254    6404.66
## 28063           1692     286.61
## 28064           1254     548.09
## 28065           1232    1126.76
## 28066           1232     235.74
## 28067           1228       0.00
## 28068           1228     260.50
## 28069           2512     244.32
## 28070           1245       0.00
## 28071           1254      41.91
## 28072           1143      75.00
## 28073           1198    4026.10
## 28074           1206       0.00
## 28075           1249       0.00
## 28076           1249     558.05
## 28077           1233     365.03
## 28078           2285     575.07
## 28079           2502     168.71
## 28080            925     910.69
## 28081           1211     572.95
## 28082           1198      78.17
## 28083           1197     186.20
## 28084           1154     150.00
## 28085           1262     258.41
## 28086           1233       0.00
## 28087           1228     566.61
## 28088           1246       0.00
## 28089           1245     200.60
## 28090           1242    1016.76
## 28091           1245     121.89
## 28092           1226    1178.50
## 28093           1249    1118.68
## 28094           1248    1352.33
## 28095           1248       0.00
## 28096           1247      60.00
## 28097           1249     217.29
## 28098           1731      70.48
## 28099           1249    1759.87
## 28100           2087     208.94
## 28101           1254    8080.85
## 28102           1254     271.95
## 28103           1254     362.82
## 28104           1254     249.00
## 28105           1184     447.86
## 28106            394      64.01
## 28107           1359   21043.50
## 28108            478       0.00
## 28109           1255     140.82
## 28110           1254     441.24
## 28111           1253     351.88
## 28112           1248     336.48
## 28113           1248     456.17
## 28114           1220      16.08
## 28115           1245     286.91
## 28116           2180   22084.91
## 28117           1245       6.75
## 28118           1242    2168.29
## 28119           1242     993.03
## 28120           1238   20964.48
## 28121           1246     122.70
## 28122           1246       0.00
## 28123           1227     170.01
## 28124           1232    1582.14
## 28125            973     182.26
## 28126           1109     217.92
## 28127           1280  150935.78
## 28128           1210      51.16
## 28129           1144      50.01
## 28130           1227   27940.26
## 28131           1234    1239.17
## 28132           1218    2611.53
## 28133           2179       0.00
## 28134           1242    1400.61
## 28135           1242      54.43
## 28136           1245     189.64
## 28137           1242      61.35
## 28138           1245     700.98
## 28139           1245     487.96
## 28140           1221       0.00
## 28141           1248     248.40
## 28142           1248     290.79
## 28143           1248     252.44
## 28144           1248    4819.54
## 28146           1247      36.21
## 28147           2560     100.17
## 28148           1731     107.11
## 28149           1599  123542.33
## 28150           1249      91.97
## 28151           1249     148.84
## 28152           1249       0.00
## 28153           1249     500.71
## 28154           1249       7.00
## 28155           1184    1178.71
## 28156           2369       0.00
## 28157            916     286.75
## 28158           1206      35.99
## 28159           1206     884.87
## 28160           1161     212.16
## 28161           1182     107.88
## 28162           1249     244.35
## 28163           1249      87.21
## 28164           2159     173.56
## 28165           1248     171.92
## 28166           1249     264.01
## 28167           1287     225.83
## 28168           1248     254.39
## 28169           1226   25465.73
## 28170           1219       0.00
## 28171           2232   30266.60
## 28172           1242     796.17
## 28173           1242       0.00
## 28174           1296  113024.66
## 28175           1227     266.65
## 28176           1095       0.00
## 28177            633       0.00
## 28178           1199     150.01
## 28179           1204     262.36
## 28180           1214       0.00
## 28181           2406     276.08
## 28182           1228     783.54
## 28183           1228     551.90
## 28184           1246       0.00
## 28185           1218     400.61
## 28186           1242     506.59
## 28187           1245     317.80
## 28188           1245     139.13
## 28189           1245     267.42
## 28190           1219    2345.27
## 28191           1221      35.00
## 28192           1220   51987.28
## 28193           1247   15007.42
## 28194           1362     326.36
## 28195           1249     291.03
## 28197           1249     378.47
## 28198           1122     165.60
## 28199           1702     414.10
## 28200           1247    4257.67
## 28201           1247     864.49
## 28202           1182     114.73
## 28203           1283       0.00
## 28204           1086    5791.70
## 28205           1050      66.02
## 28206           1242     101.13
## 28207           1245   13321.53
## 28208           1245    1635.41
## 28209           1242       0.00
## 28210           1221     425.55
## 28211           1161      96.91
## 28212           1248     161.21
## 28213           1203     440.50
## 28214           1205     220.91
## 28215           1198     121.66
## 28216           1254   26557.99
## 28217           1248     138.64
## 28218           1589       0.00
## 28219           1184    7921.85
## 28220           1468       0.00
## 28221           1219     165.87
## 28222           2366     115.93
## 28223           1245      32.00
## 28224           1245      93.89
## 28225           1245       0.00
## 28226           1218       0.00
## 28227           1245     122.23
## 28228           1608     419.60
## 28229           1246     664.77
## 28230           2072     117.27
## 28231           1235     149.30
## 28232           1235      62.65
## 28233           2032       0.00
## 28234           1231     516.71
## 28235           1228     164.36
## 28236           1081     338.00
## 28237           1205     173.02
## 28238           1614   21901.18
## 28239           1307    1342.50
## 28240           1147     156.97
## 28241           1232       0.00
## 28242           1233      40.00
## 28243           1245      66.68
## 28244           1218     117.09
## 28245           1242     177.08
## 28246           1242    2052.13
## 28247           1157     251.03
## 28248           1164     121.82
## 28249           1143      65.00
## 28250           1130     576.53
## 28251           2503   15247.38
## 28252           2305      61.35
## 28253           1211      51.16
## 28254           1211     360.61
## 28255           1242     788.50
## 28256           1242    1288.48
## 28257           1245       0.00
## 28258           1234    2217.62
## 28259           1234     256.02
## 28260           1235     426.39
## 28261           1235     160.70
## 28262           1235       0.00
## 28263           1470       0.00
## 28264           1235     325.39
## 28265           1232       0.00
## 28266           1231    2807.17
## 28267           1228     345.52
## 28268           1228     221.70
## 28269           1228       0.00
## 28270           1228   12940.65
## 28271           1220     120.02
## 28272           1220       0.00
## 28273           1219      61.24
## 28274           1211     853.90
## 28275           1206       0.00
## 28276           1206      78.83
## 28277           1203     157.80
## 28278           1204     263.63
## 28279           1198     167.55
## 28280           1214     115.52
## 28281           1186    2725.63
## 28282           1140       0.00
## 28283           1219       0.00
## 28284           1235     152.44
## 28285           1234       0.00
## 28286           1198      51.16
## 28287           1235       0.00
## 28288           1233       0.00
## 28289           1245     574.27
## 28290           1242     101.84
## 28291           1164       0.00
## 28292           1668      51.16
## 28293           1701      87.37
## 28294            390     644.60
## 28295            961       0.00
## 28296           1123     507.80
## 28297           1102     162.78
## 28298           1112       0.00
## 28299           1214     478.48
## 28300           1214     580.11
## 28301           1214      61.35
## 28302           1199       0.00
## 28303           1203     898.05
## 28304           1162      61.32
## 28305           1217      72.42
## 28306           1218    1911.44
## 28307           1218    2633.94
## 28308           1218     160.32
## 28309           1234       0.00
## 28310           1234       0.00
## 28311           1569  349578.53
## 28312           1235     303.82
## 28313           1235       0.00
## 28314           1228     540.22
## 28315           1219     302.33
## 28316           1210    1097.28
## 28317           1238    7345.24
## 28318           1184     285.78
## 28319           1094     190.77
## 28320           1200    2086.89
## 28321           1204     139.25
## 28322           1228     290.06
## 28323           1228    1820.05
## 28324           1234     296.94
## 28325           1226       0.00
## 28326           1219       0.00
## 28327           2585     177.30
## 28328           1198    1275.55
## 28329           2064       0.00
## 28330           1214     477.72
## 28331           1226   30254.72
## 28332           1219     255.00
## 28333           2004     201.89
## 28334           1234      10.00
## 28335           1228     379.84
## 28336           1232     270.95
## 28337           1168      65.53
## 28338           1214    1258.18
## 28339           1214    2220.53
## 28340           1206     200.01
## 28341           1198     703.92
## 28342           1186    4156.26
## 28343           1149     266.08
## 28344           1065       0.00
## 28345           1184       0.00
## 28346           1228     135.02
## 28347           1227     182.84
## 28348           1234     506.80
## 28349           1234       0.00
## 28350           2582     465.39
## 28351           1235      67.50
## 28352           1219       0.00
## 28353           1219     156.65
## 28354           2854     638.33
## 28355           1149      66.68
## 28356           1198    6302.48
## 28357           1198     194.18
## 28358           1211     486.72
## 28359           1212     242.27
## 28360           1470     958.04
## 28361           1213     179.69
## 28362           1213     750.00
## 28363           1037     661.00
## 28364           1228       0.00
## 28365           2398    3757.61
## 28366           1228       0.00
## 28367           2158    2892.48
## 28368           1708      85.00
## 28369           1228      12.05
## 28370           1228     370.62
## 28371           1238    1791.41
## 28372           1161       0.00
## 28373           1456     128.48
## 28374           1308      46.56
## 28375           1122     190.95
## 28376           2135      86.25
## 28377           1214     904.73
## 28378           1214       0.00
## 28379           1214     493.10
## 28380           1147     209.09
## 28381           1147     209.09
## 28382           1147      61.35
## 28383           1156     409.31
## 28384           1168    1653.89
## 28385           1182   16685.53
## 28386           1179     153.66
## 28387           1172      94.05
## 28388           1459   37788.04
## 28389           1543     224.43
## 28390           1235    2085.21
## 28391           2121   17598.85
## 28392           1219     548.82
## 28393           1220   66873.35
## 28394           1214     984.17
## 28395           1214     720.91
## 28396           1220    6584.47
## 28397           1219     565.89
## 28398           1659     239.76
## 28399           1735     393.79
## 28400           1220     412.00
## 28401           1219     140.39
## 28402           1227       0.00
## 28403           1227     434.99
## 28404           1227     162.00
## 28405           2002       0.00
## 28406           1214       0.00
## 28407           1318    4044.32
## 28408           1228     381.55
## 28409           1220       0.00
## 28410           1219      57.34
## 28411           1219     358.91
## 28412           1227     181.22
## 28413           1227     131.49
## 28414           2331     559.12
## 28415           1164       0.00
## 28416           2009       0.00
## 28417           1214     530.76
## 28418           1214       0.00
## 28419           1214       0.00
## 28420           1381    1157.44
## 28421           1213     780.14
## 28422           1197     290.26
## 28423           1168    1114.58
## 28424           1227      13.49
## 28425           1228       0.00
## 28426           1338     271.99
## 28427           1218     271.35
## 28428           1227     343.56
## 28429           1225    1430.75
## 28430           1219     220.36
## 28431           1197     899.98
## 28432           1213     293.79
## 28433           1214      76.65
## 28434           1214    1079.78
## 28435           1214       0.00
## 28436           1214     125.00
## 28437           1219    1584.11
## 28438           1221   16668.02
## 28439           1218   48214.17
## 28440           1234       0.00
## 28441           1680     173.98
## 28442           1228    7380.66
## 28443           1227     115.36
## 28444           1116     912.43
## 28445           1214       0.00
## 28446           2626   13933.63
## 28447           1385    5666.24
## 28448           1142     365.65
## 28449           2249     239.23
## 28450           1228       6.75
## 28451           1231       0.00
## 28452           1218     132.05
## 28453           1226     111.34
## 28454           1227     170.21
## 28455           1896     467.88
## 28456           1225     784.00
## 28457           1938    2856.24
## 28458           1178       0.00
## 28459           1171   37946.99
## 28460           1078     944.07
## 28461           1148     289.91
## 28462           1148      20.25
## 28463           2011       0.00
## 28464           1137     212.87
## 28465           1134     914.09
## 28466           1128     176.20
## 28467           1211     180.53
## 28468           1211    1060.93
## 28469           1206     343.30
## 28470           1211       0.00
## 28471           1204     305.20
## 28472           1214     189.63
## 28473           1170      41.67
## 28474           1945  115631.52
## 28475            806     883.73
## 28476           1219    1119.01
## 28477           1221     220.80
## 28478           1218     707.30
## 28479           1230    1279.46
## 28480           1228     174.46
## 28481           1227     351.85
## 28482           1214    1317.07
## 28483           1954      84.61
## 28484           1214    1771.72
## 28485           1214     138.22
## 28486           1214    9391.15
## 28487           1203     317.74
## 28488           2551      73.58
## 28489           1198     217.93
## 28490           1210     663.23
## 28491           1206       0.00
## 28492           1214     117.84
## 28493           1197      61.35
## 28494           1882     153.48
## 28495           1218    2323.77
## 28496           1218       0.00
## 28497           1226     516.97
## 28498           1226     777.59
## 28499           1182       0.00
## 28500           1172     169.88
## 28501           1211       0.00
## 28502           1214    4821.76
## 28503           1172     657.45
## 28504           1227     266.87
## 28505           1226       0.00
## 28506           1226     232.62
## 28507           2513     245.39
## 28509           1227    9169.95
## 28510           1602    1683.09
## 28511           1184     812.28
## 28512           1157       0.00
## 28513           1163      95.00
## 28514            918    2420.00
## 28515           1214     865.07
## 28516           1214   30242.99
## 28517           1214   15487.26
## 28518           1212     237.50
## 28519           1212       0.00
## 28520           1214    2497.50
## 28521           1397    3268.13
## 28522           1213    3319.74
## 28523           1213    4884.40
## 28524           1197    1923.69
## 28525           1134      79.33
## 28526            355     201.93
## 28527           1184     355.33
## 28528           1179    1294.64
## 28529           1179     474.11
## 28530           1170       0.00
## 28531            808      86.22
## 28532           1227     288.32
## 28533           1306     216.60
## 28534           1218       0.00
## 28535           1217       0.00
## 28536           1219     159.84
## 28537            863       0.00
## 28538           1265      69.35
## 28539           3220  139248.01
## 28540           1198     437.80
## 28541           1213     190.27
## 28542           2396     160.76
## 28543           1214     202.71
## 28544           1207      95.68
## 28545           1211     135.24
## 28546           1203    1635.39
## 28547           1200    1798.64
## 28548           1651     800.14
## 28549           1214     442.16
## 28550           1214       0.00
## 28551           1214     338.63
## 28552           1214       0.00
## 28553           1046     223.13
## 28554           2449   10895.64
## 28555           1603    1144.47
## 28556           2108     404.22
## 28557           1219     295.09
## 28558           1219       0.00
## 28559           1226     563.71
## 28560           1219      20.00
## 28561           1218     506.31
## 28562           1177    1694.90
## 28563           1162     382.16
## 28564           1165     435.65
## 28565           1169     150.00
## 28566           1198     487.35
## 28567           2009     174.22
## 28569           1214     158.90
## 28570           1214       0.00
## 28571           1521     381.65
## 28572           1164   64979.68
## 28573           1164       0.00
## 28574           1219      56.68
## 28575           1219      56.68
## 28576           1114     633.12
## 28577           2130      56.68
## 28578           1217     311.61
## 28579           1200     137.25
## 28580           1540    4044.07
## 28581           1213       0.00
## 28582           1212       0.00
## 28583           1154       8.40
## 28584           1904     164.35
## 28585           1196      87.09
## 28586           1217     154.35
## 28587           1218    1597.70
## 28588           1218    2431.06
## 28589           1157     100.07
## 28590           1029     198.30
## 28591           1212      39.33
## 28592           1212       6.18
## 28593           1211     113.50
## 28594           1213      50.01
## 28595           1213     409.69
## 28596           1206    2630.00
## 28597           1207     438.54
## 28598           1206     198.48
## 28599           1210      84.61
## 28600           1207     627.24
## 28601           1199      85.05
## 28602           1204    4581.39
## 28603           1198     747.90
## 28604           1164      87.37
## 28605           1825   47085.85
## 28606           1217       0.00
## 28607           1217    1139.63
## 28608           1198    1573.35
## 28609           1204       0.00
## 28610           1204    1202.48
## 28611           1207     100.00
## 28612           1214     146.07
## 28613           1212       0.00
## 28614           1212       0.00
## 28615           1214      10.00
## 28616           1214   13254.08
## 28617           2509     434.87
## 28618           1154    1487.24
## 28619           1985     979.32
## 28620           1218     110.30
## 28621           1218     227.60
## 28622           1218     294.06
## 28623           1168     980.07
## 28624           1158   61434.00
## 28625           1172     536.23
## 28626           1184     302.31
## 28627           1184     336.78
## 28628           1214     369.13
## 28629           1214    2918.94
## 28630           1214      56.68
## 28631           1211     403.93
## 28632           1211     177.25
## 28633           1213    2248.61
## 28634           1207     252.41
## 28635           1210     320.89
## 28636           1211     504.79
## 28637           2430     137.13
## 28638           1211    1136.16
## 28639           1203     243.12
## 28640           1198   20909.20
## 28641           1179     931.51
## 28642           1171     809.47
## 28643           2451    1441.06
## 28644           2244     159.67
## 28645           1217     247.21
## 28646            498     372.24
## 28647           1230    1174.66
## 28648           1198       0.00
## 28649           1198     515.98
## 28650           1211     220.04
## 28651           1212     172.48
## 28652           1212     153.75
## 28653           1214      78.17
## 28654           1274     510.51
## 28655           1137      15.19
## 28656           1256       0.00
## 28657           1217     208.64
## 28658           1024       0.00
## 28659           1196     108.42
## 28660           1212      99.47
## 28661           1211     313.92
## 28662           1210    1107.90
## 28663           1207    1969.23
## 28664           1204      61.35
## 28665           1204     507.72
## 28666           1419    4265.59
## 28667           1182     934.58
## 28668           1157     765.27
## 28669           1170      61.35
## 28670           1086     183.85
## 28671           1112       0.00
## 28672           1108     238.91
## 28673           1198    1917.78
## 28674           1211       9.92
## 28675           1212       0.00
## 28676           1137       0.00
## 28677           1150       0.00
## 28678           1700       0.00
## 28679           1112     220.85
## 28680           1134     128.42
## 28681           1198      10.00
## 28682           1178   17595.31
## 28683           1114     123.83
## 28684           1002     117.52
## 28685           1198       0.00
## 28686           1198       0.00
## 28687           1198     193.84
## 28688           1198     155.34
## 28689           1204     530.26
## 28690           1213     576.35
## 28691           1211    3984.78
## 28692           1207     108.69
## 28693           1206     390.76
## 28694           1206     337.78
## 28695           1567     102.00
## 28696           1154     980.30
## 28698           1520     399.78
## 28699           1134      51.16
## 28700           1191     169.82
## 28701           1190     134.62
## 28702           1197     295.57
## 28703           1197     646.20
## 28704           2528       0.00
## 28705           1207     358.46
## 28706           1211     807.64
## 28707           1204     496.35
## 28708           1203    4921.11
## 28709           1199      66.68
## 28710           1198     375.62
## 28711           1157      66.68
## 28712           1170      64.00
## 28713           1182     345.41
## 28714           1184     672.91
## 28715           1310     188.43
## 28716           1184    2568.17
## 28717           2108     244.30
## 28718           1198     114.17
## 28719           1198     711.32
## 28720           1204       0.00
## 28721           1771    1239.74
## 28722           1204       0.00
## 28723           1205    1580.38
## 28724           1205      98.22
## 28725           1275     890.03
## 28726           1211       0.00
## 28727           1207     173.88
## 28728           1206    1829.16
## 28729           1212       0.00
## 28730           1211       0.00
## 28731           1197      66.08
## 28732           1196     325.10
## 28733           1197      61.35
## 28734           1197     138.26
## 28735           1191     114.30
## 28736           1044     191.26
## 28737           1161     272.33
## 28738            882       0.00
## 28739           1101     940.38
## 28740           1191     100.00
## 28741           1197    1024.39
## 28742           1206    8928.74
## 28743           3804   27583.61
## 28744           1206     889.54
## 28746           1207     163.28
## 28747           1207     115.52
## 28748           1204     212.10
## 28749           1204     110.45
## 28750           1426     100.00
## 28751           1204   13883.69
## 28752           2398     239.10
## 28753           2034   35732.07
## 28754           1151     703.54
## 28755           1211    2321.87
## 28756           1177       0.00
## 28757           1176       0.00
## 28758           1200    1073.95
## 28759           1203     455.89
## 28760           1204      33.07
## 28761           1204       0.00
## 28762           2337     567.29
## 28763           1456     861.92
## 28764           1207     559.60
## 28765           1264     204.37
## 28766           1206    2656.54
## 28767           1207    3865.85
## 28768           1206       0.00
## 28769           1196     428.67
## 28770           1178    6957.95
## 28771           1179     189.80
## 28772           1206     941.15
## 28773           1199    2763.26
## 28774           1199     666.11
## 28775           1169     170.58
## 28776           1163       0.00
## 28777            961    3620.74
## 28778           1119      99.62
## 28779           1199       0.00
## 28780           1198      41.40
## 28781           1205      97.62
## 28782           1204       0.00
## 28783           1206     146.70
## 28784           1197       0.00
## 28785           1197       0.00
## 28786           1172       0.00
## 28787           1198       0.00
## 28788           1186      93.00
## 28789           1206     665.22
## 28790           1206      81.88
## 28791           1204     430.73
## 28792           1204    1226.71
## 28793           1203   22956.78
## 28794           1203       0.00
## 28795           1204     477.83
## 28796           1204      25.00
## 28797           1198    1087.60
## 28798           1198     100.00
## 28799           2078     308.96
## 28800           2114     277.36
## 28801           1253      88.29
## 28802           1198       0.00
## 28803           1198     650.13
## 28804           2479    4590.52
## 28805           1935   26059.77
## 28806           1122     307.14
## 28807           1198     956.34
## 28808           1199       0.00
## 28809           1198     348.35
## 28810           1198      74.44
## 28811           1198      20.00
## 28812           1198     119.36
## 28813           1198     101.32
## 28814           1203    2043.01
## 28815           1204     934.45
## 28816           1204      35.19
## 28817           1197     128.01
## 28818           2546     724.20
## 28819           2416     664.37
## 28820           2331      66.68
## 28821           1161     775.10
## 28822           1161     610.47
## 28824            980       0.00
## 28825           1150    1124.66
## 28826           1197     106.28
## 28827           2320     362.46
## 28828           1196     415.50
## 28829           1204     253.28
## 28830           1204   35773.40
## 28831           1371       0.00
## 28832           2192      21.72
## 28833           1611   93769.66
## 28834           1198      85.13
## 28835           1171     144.99
## 28836           1872       0.00
## 28837           1270    2503.39
## 28838           1121       0.00
## 28839           1087     205.88
## 28840           1198     118.54
## 28841           1202    1695.61
## 28842           1198       0.00
## 28843           1198       0.00
## 28844           1198    2404.35
## 28845           2056     258.61
## 28846           1204       0.00
## 28847           2088     248.08
## 28848           1196       0.00
## 28849           2489     127.68
## 28850           1189     144.90
## 28851           1198    2310.38
## 28852           1198     328.13
## 28853           1968   10761.50
## 28854           1182       0.00
## 28855           1184     433.37
## 28856           1172     306.95
## 28857           1177     333.90
## 28858           1156       0.00
## 28859           1164     648.05
## 28860           1095    6912.67
## 28861           2045      43.49
## 28862           1197     457.20
## 28863           1197     304.72
## 28864           1197     152.11
## 28865           1186     950.10
## 28866           1196       0.00
## 28867           1198       0.00
## 28868           1199     853.69
## 28869           1601    6399.80
## 28870           1163       0.00
## 28871           1177       0.00
## 28872           1175       0.00
## 28873           2480       0.00
## 28874           1925       0.00
## 28875           1198    2750.57
## 28876           2130     637.88
## 28877           1196      10.00
## 28878           1186      53.74
## 28879           1196       0.00
## 28880           1197       0.00
## 28881           1156     865.44
## 28882           1184     154.58
## 28883           1121     371.87
## 28884           1184    8355.81
## 28885           1128      94.19
## 28886           1845     236.17
## 28887           1137     194.73
## 28888           1196       0.00
## 28889           1352   54323.95
## 28890           1186       0.00
## 28891           1191     176.21
## 28892           1196     430.79
## 28893           1196     158.04
## 28894           1191     360.72
## 28895           1198    3228.58
## 28896           1198       0.00
## 28897           1179     245.82
## 28898           1172     319.68
## 28899            932      75.00
## 28900           1199     186.14
## 28901           1746     346.74
## 28902           1196    1196.67
## 28903           1197   13651.42
## 28904           1186     279.00
## 28905           1197       0.00
## 28906           1197       0.00
## 28907           1186     756.08
## 28908           1136     181.06
## 28909           1127     566.96
## 28910           1959     352.22
## 28911           1147       0.00
## 28912           1171     225.78
## 28913           1177     364.46
## 28914           1179       0.00
## 28915           1184     138.93
## 28916           1163     475.09
## 28917           1112       0.00
## 28918           1121     193.35
## 28919           1186       0.00
## 28920           1197     135.21
## 28921           1196     720.99
## 28922           2182      10.00
## 28923           1196     138.45
## 28924           1184    9299.76
## 28925           1179       0.00
## 28926           1184     477.79
## 28927           1177    1744.76
## 28928           1172     794.38
## 28929           1196     323.81
## 28930           1189       0.00
## 28931           1052     305.14
## 28932           1064     416.43
## 28934           1172     778.36
## 28935           1178     476.43
## 28936           1178       0.00
## 28937           1184     303.66
## 28938           1164       0.00
## 28939           1165       0.00
## 28940           1157   21409.20
## 28941           1161     200.50
## 28942           1156      87.37
## 28943           1570     149.33
## 28944           1186    2429.94
## 28945           1147     142.49
## 28946           1050     359.22
## 28947           1475       0.00
## 28948           1156     486.41
## 28949           1156     340.84
## 28950           1169      39.33
## 28951           1165     283.52
## 28952           1165     242.61
## 28953           1178      56.25
## 28954           1178     534.71
## 28955           1170     573.46
## 28956           1119     315.24
## 28957           1147     403.28
## 28958           1190       0.00
## 28959           1184    1062.52
## 28960           1163     103.60
## 28961           1348       0.00
## 28962           1154     561.00
## 28963           1492     233.39
## 28964           1169       0.00
## 28965           2987   90955.85
## 28966           1184    2876.99
## 28967           1184     357.59
## 28968           1175      96.53
## 28969           1156     729.26
## 28970           2384     494.75
## 28971           1091    1009.08
## 28972           1175       0.00
## 28973           1176     718.90
## 28974           1178       0.00
## 28975           1812     418.12
## 28976           1186     464.32
## 28977           1734     260.99
## 28978           1561      66.68
## 28979           1182       0.00
## 28980           2310     153.31
## 28981           1142    1185.80
## 28982           1122   16592.25
## 28983           1186       0.00
## 28984           1191    2929.35
## 28985           2029    1039.86
## 28986           1157      20.00
## 28987           1169     566.27
## 28988           1165     154.17
## 28989           1151      79.21
## 28990           1142     443.57
## 28991           1163     154.76
## 28992           1165     141.21
## 28993           1815       0.00
## 28994           1178     370.35
## 28995           1179     315.54
## 28996           1184    8382.65
## 28997           2178      10.90
## 28998           1170     444.74
## 28999           1150       0.00
## 29000           2344   23098.79
## 29001           1156     864.87
## 29002           1182       0.00
## 29003           1279       0.00
## 29004           1377    1155.39
## 29005           1184       0.00
## 29006           1182    1807.26
## 29007           1182     861.64
## 29008           1358       0.00
## 29009           1175     282.04
## 29010           1172       0.00
## 29011           1178     181.22
## 29012           1092     135.21
## 29013           1140       0.00
## 29014           1137     780.48
## 29015           1059       0.00
## 29016           1178     269.42
## 29017           1161      36.21
## 29018           1169     344.07
## 29019           1165       0.00
## 29020           1108   14555.02
## 29021           1107     600.00
## 29022           1141     832.98
## 29023           1142    6388.61
## 29024           1149       0.00
## 29025           1733       0.00
## 29026           1163     309.36
## 29027           1169     284.00
## 29028           1577     469.46
## 29029           1169    2670.98
## 29030           1169   13033.69
## 29031           1161       0.00
## 29032           1157       0.00
## 29033           1156     240.83
## 29034           1178     396.35
## 29035           1178      51.16
## 29036           1666      39.33
## 29037           2099    2419.84
## 29038           1184      86.22
## 29039           1175      84.39
## 29040           1177      42.96
## 29041           1176      48.92
## 29042           1176     656.10
## 29044            670     481.40
## 29045           1154    1818.14
## 29046           1156      56.68
## 29047           1176       0.00
## 29048           1171     811.24
## 29049           1182    1997.03
## 29050           1182       0.00
## 29052           1508     336.01
## 29053           1157     448.62
## 29054           1157    2340.28
## 29055           1169     177.42
## 29056           2239    3535.24
## 29057           1162     542.00
## 29058           1966    4322.35
## 29059           1154    1909.50
## 29060           1154     741.84
## 29061           1144      51.16
## 29062           1722     430.31
## 29063           1135     211.52
## 29064           1127     199.91
## 29065           1168    5845.40
## 29066           1157     507.73
## 29067           1157   21062.63
## 29068           1156     374.82
## 29069           1161   16842.03
## 29070           1179    1033.80
## 29072           1178     425.31
## 29073           1171     124.37
## 29074           1170     709.11
## 29075           1176      35.96
## 29076           1177     394.56
## 29077           1677  105820.89
## 29078           1172   28260.63
## 29079           1177   29448.66
## 29080           2395     953.32
## 29081           1177     847.78
## 29082           1120   53323.51
## 29083           1123     307.68
## 29084           1099     199.53
## 29085           1149     236.93
## 29086           1177    1200.99
## 29087           1177     266.58
## 29088           1177     545.80
## 29089           1177     513.04
## 29090           1178       0.00
## 29091           2352     861.59
## 29092           1170   12313.31
## 29093           1171     225.95
## 29094           1172      50.01
## 29095           1646    1456.31
## 29096           2068    1188.84
## 29097           1178     915.11
## 29098           1179     402.56
## 29099           1179    5804.73
## 29100           1179     671.57
## 29101           1162     200.22
## 29102           1165    1176.06
## 29103           1164   61708.84
## 29104            905       0.00
## 29105            951      24.44
## 29106           1119     201.07
## 29107           1895     304.88
## 29108           1156    1394.10
## 29109           1827     232.02
## 29110           1178     179.71
## 29111           1172    1099.22
## 29112           2401   69745.06
## 29113           1178     274.84
## 29114           1709   23094.81
## 29115           1172    2772.99
## 29116           1176      61.35
## 29117           1149       0.00
## 29118           1147     188.61
## 29119           1142      61.35
## 29120           1150     227.14
## 29121           1154       0.00
## 29122           1072     121.25
## 29123            546     142.35
## 29124           1176     124.17
## 29125           1176     247.07
## 29126           2202     320.15
## 29127           1177    1334.78
## 29128           1821     753.28
## 29129           1177       0.00
## 29130           1178    2010.69
## 29131           1170       0.00
## 29132           1533       0.00
## 29133           1170       0.00
## 29134           2444     292.12
## 29135           1170     196.63
## 29136           1170      66.96
## 29137           1172     169.05
## 29138           1178     257.30
## 29139           1178    1553.02
## 29140           1157     198.19
## 29141           1162      61.35
## 29142           1161     712.08
## 29143           1158       0.00
## 29144           1165       0.00
## 29145           1165       0.00
## 29146           2173       0.00
## 29147           1165       0.00
## 29148           2671   13138.85
## 29149           1169     112.23
## 29150           1168     239.64
## 29151           1920    1252.45
## 29152           1169     686.52
## 29153           1169       0.00
## 29154           1156      91.33
## 29155           1179    1394.22
## 29156           2389   36776.02
## 29157           1102     577.84
## 29158           1081       0.00
## 29160           1142     298.15
## 29161           1147      63.75
## 29162           2630   63208.17
## 29163           1148      78.63
## 29164           1137    1294.79
## 29165           1169     232.97
## 29166           1169       0.00
## 29167           1168     186.06
## 29168           1165     119.55
## 29169           1165     879.32
## 29170           1165      84.93
## 29171           1171    1689.07
## 29172           1162    1055.31
## 29173           1161     259.06
## 29174           1156     542.39
## 29175           1171     221.34
## 29176           1170     191.78
## 29177           1170     786.50
## 29178           1170     108.42
## 29179           1177     149.08
## 29180           1177      52.00
## 29181           2403     297.60
## 29182           1177     175.10
## 29183           1176     346.57
## 29184           1176     664.47
## 29185           1681   49695.50
## 29186           1176      23.16
## 29187           1175       0.00
## 29188           1114     442.50
## 29189           1137    9350.85
## 29190           1149    3866.08
## 29191           1142       0.00
## 29192           1154     286.22
## 29193           1176      96.50
## 29194           1177      66.68
## 29195           1177     411.75
## 29196           1393   24238.20
## 29197           1170     246.91
## 29198           1172     129.95
## 29199           1608      65.53
## 29200           1370    2738.06
## 29201           1161   31943.53
## 29202           1162      86.22
## 29203           1261     141.86
## 29204           1165     263.39
## 29205           1169      50.00
## 29206           1094     105.40
## 29207           1093     260.35
## 29208           2316    1129.19
## 29209           1045       0.00
## 29210           1170     284.10
## 29211           2288    1343.58
## 29212           2424      11.72
## 29213           1164       0.00
## 29214           1161     303.10
## 29215           1172     133.86
## 29216           1172       0.00
## 29217           1171      65.07
## 29218           1170     245.64
## 29219           1170     194.54
## 29220           1170     967.46
## 29221           2421    1380.41
## 29222           2328     702.49
## 29223            966     189.69
## 29224           1123    1528.67
## 29225           1121    1233.21
## 29226           1144     256.17
## 29227           1142     885.26
## 29228           1170    5202.08
## 29229           1938  395295.94
## 29230           1170    1150.13
## 29231           1171    1302.98
## 29232           1171     784.39
## 29233           1171     454.85
## 29234           1172     209.06
## 29235           1172       0.00
## 29236           2022      74.44
## 29237           1162       0.00
## 29238           1156     377.76
## 29239           1157     434.91
## 29240           1157       0.00
## 29241           1165     153.53
## 29242           2024     419.01
## 29243           2229       0.00
## 29244           1163     461.61
## 29245           1156    1564.08
## 29246           1155     185.00
## 29247           1157   12914.30
## 29248           1156       0.00
## 29249           1172    3173.66
## 29250           1648     391.26
## 29251           1526    1908.37
## 29252           1170     801.08
## 29253           1170     693.52
## 29254           1170     168.08
## 29255           1170     522.15
## 29256           1123      66.68
## 29257           1170     116.88
## 29258           2134       0.00
## 29259           1170     392.98
## 29260           1171     760.28
## 29261           1700  151096.86
## 29262           1162       0.00
## 29263           1161       0.00
## 29264           1169    1573.85
## 29265            698    1466.98
## 29266           1025     368.78
## 29267            300      51.16
## 29268           2373       0.00
## 29269           1137     104.03
## 29270           1129       0.00
## 29271           1424   17939.08
## 29272            835       0.00
## 29273           1916  236399.54
## 29274           1169       0.00
## 29275           2028  103978.32
## 29276           1169     397.48
## 29277           1937    1097.55
## 29278           1806     158.72
## 29279           1385    4503.11
## 29280           2258  252123.21
## 29281           1169     192.92
## 29282           1449     146.28
## 29283           1169      46.06
## 29284           1169   55229.73
## 29285           1162     108.40
## 29286           1168     207.94
## 29287           2608  344852.77
## 29288           1161       0.00
## 29289           1161     919.37
## 29290           1162     429.10
## 29291           1162     155.58
## 29292           1158     200.00
## 29293           1158     131.63
## 29294           1157       0.00
## 29295           1157      49.11
## 29296           1172     409.60
## 29297           1170    1941.13
## 29298           1170     210.05
## 29299           1282     377.90
## 29300           1133     275.23
## 29301           1141     212.98
## 29302           1147       0.00
## 29303           1148     594.95
## 29304           1170     173.44
## 29305           1170      82.91
## 29306           1156       0.00
## 29307           1158       0.00
## 29308           1161     340.42
## 29309           1161       0.00
## 29310           1231       0.00
## 29311           1162      86.68
## 29312           1251    1294.54
## 29313           1164    1068.12
## 29314           1163     150.00
## 29315           2369    1142.93
## 29316           1165     175.73
## 29317           1169     243.97
## 29318           1649     147.32
## 29319           1169      11.72
## 29320           1892    3317.43
## 29321           1170       0.00
## 29322           1169     130.58
## 29323           1169     198.08
## 29324            920       0.00
## 29325           1086     321.05
## 29326            345       0.00
## 29327           1148    4540.00
## 29328           2441     257.95
## 29329           1140      87.67
## 29330           1130    2336.42
## 29331           1170     327.38
## 29332           2350    3719.62
## 29333           1168     875.63
## 29334           1163    1150.24
## 29335           1161     484.55
## 29336           1161    2417.89
## 29337           1156    4321.31
## 29338           1156    6958.44
## 29339           1156     233.67
## 29340            909     293.23
## 29341           1130     741.75
## 29342           1149      69.85
## 29343           1150      36.21
## 29344           1151     896.68
## 29345           1051     352.87
## 29346           1162    5155.17
## 29347           1163     390.74
## 29348           1787       0.00
## 29349           1164     251.77
## 29350           2303     270.97
## 29351           1165    1604.75
## 29352           1165     323.48
## 29353           2335    5082.55
## 29354           1831     969.87
## 29355           1126    1000.50
## 29356           1211     225.68
## 29357           1150      62.65
## 29358           1143     285.64
## 29359           1133     578.62
## 29360           1141       0.00
## 29361           1135   14185.88
## 29362           1164     187.01
## 29363           1164    1203.08
## 29364           1162       0.00
## 29365           1162       0.00
## 29366           1161    1094.28
## 29367           1158     919.40
## 29368           1157      96.21
## 29369           2293    3369.77
## 29370           1613       0.00
## 29371           1158    1853.31
## 29372           1161     417.91
## 29373           1163     257.40
## 29374           1630   12907.24
## 29375           1163      91.16
## 29376           1164       0.00
## 29377           1164      81.88
## 29378           1156     183.95
## 29379           1078     928.51
## 29380           1135     160.29
## 29381           1137       0.00
## 29382           1631   37917.93
## 29383           1920      70.16
## 29384           2135     635.05
## 29385           1051     159.73
## 29386           1164     438.50
## 29387           1164     545.82
## 29388           1163   34195.90
## 29389           1163     426.55
## 29390           1195    2353.23
## 29391           1592     244.78
## 29392           1161       0.00
## 29393           1805  199693.09
## 29394           1156      57.85
## 29395            918      64.74
## 29396           2223     563.52
## 29397           2050     332.21
## 29398           1135     486.48
## 29399           1890   11634.78
## 29400            674    9193.56
## 29401           1136   15979.50
## 29402           1141       0.00
## 29403           1255    7117.22
## 29404           1149     681.42
## 29405           1149     164.39
## 29406           1142      51.16
## 29407           1143    5782.75
## 29408           1517   68024.39
## 29409           1147      78.68
## 29410           2384       0.00
## 29412           1158     150.78
## 29413           1161       0.00
## 29414           1162       0.00
## 29415           1161     258.38
## 29416           1161     196.27
## 29417           1157     898.65
## 29418           1157    7361.00
## 29419           2303  208768.21
## 29420           1162     158.09
## 29422           1155     203.42
## 29423           1107     193.10
## 29424           1116     120.19
## 29425           1148     860.14
## 29426           2088     498.20
## 29427           1142     197.45
## 29428           1142     131.42
## 29429           1151       7.48
## 29430           2150   20375.54
## 29431           1163     771.24
## 29432           1157     635.17
## 29433           1158       0.00
## 29434           1157     195.87
## 29435           1157     229.97
## 29436           2029     320.47
## 29437           1162     125.46
## 29438           1515     355.09
## 29439           1161    1557.71
## 29440           2282     105.23
## 29441           1158     464.88
## 29442           1158     515.88
## 29443           1115    1112.60
## 29444           1102    1094.78
## 29445           1151      55.26
## 29446           1154     278.66
## 29447           1150       0.00
## 29448           1150       0.00
## 29449           1154   12782.08
## 29450           1154      30.27
## 29451           1142     297.48
## 29452           1147     259.29
## 29453           1140      39.49
## 29454           1141      43.49
## 29455           1140     319.79
## 29456           2085     216.13
## 29457           1135     290.18
## 29458           2160     960.27
## 29459           1130     136.68
## 29460           1052     857.67
## 29461           1675      86.10
## 29462           1158      95.38
## 29463           1161      82.10
## 29464           1161     291.54
## 29465           1157     325.06
## 29466           1156     186.56
## 29467           1156     434.44
## 29468           2674     512.41
## 29469           1122     239.57
## 29470           2016      98.23
## 29471           1141    2110.88
## 29472           1147      82.84
## 29473           1817   26483.18
## 29474           1154     563.80
## 29475           1150    2522.33
## 29476           1051     225.14
## 29477           1157       0.00
## 29478           1157    7864.77
## 29479           1157    1445.45
## 29480           1158       0.00
## 29481           3100   93116.69
## 29482           1156     664.09
## 29483           1156     550.50
## 29484           1156       0.00
## 29485           1158     183.13
## 29486           1081       0.00
## 29487           1123     142.26
## 29488           1116     244.00
## 29489           1547     118.85
## 29490           2288       0.00
## 29491           1119       0.00
## 29492           1154   20769.73
## 29493           1144     237.31
## 29494           2098     124.65
## 29495           1147     446.02
## 29496           1156     855.38
## 29497           1157    8830.39
## 29498           1147      95.01
## 29499           1154       0.00
## 29500           2125     337.15
## 29501           1154       0.00
## 29502           1157     335.59
## 29503           1154     257.61
## 29504           2362    1018.36
## 29505           1150       0.00
## 29506           1154     140.07
## 29507           1154     249.29
## 29508           1600     111.75
## 29509           1149      96.22
## 29510           1142       0.00
## 29511           1143     473.38
## 29512           1141      41.40
## 29513           1140     420.33
## 29514           1820    2291.44
## 29515           2435     118.42
## 29516           1157    1402.43
## 29517           1156   27245.04
## 29518           1158       0.00
## 29519           1158     961.72
## 29520           1156     587.56
## 29521           1156     162.60
## 29522           1433   13148.39
## 29523           1114       0.00
## 29524           1112    3215.80
## 29525           1179       6.69
## 29526           1140      98.23
## 29527           1155   20056.67
## 29528           1142     293.21
## 29529           1147     120.04
## 29530           1144   30423.03
## 29531           2659   18304.27
## 29532           1154     704.57
## 29533           1308       0.00
## 29534           2139     240.22
## 29535           1150       0.00
## 29536           1150    3378.39
## 29537           1359     924.10
## 29538           1156     420.88
## 29539           1155    2717.09
## 29540           1156     725.02
## 29541           1156    1250.99
## 29542            911     404.38
## 29543            948    4951.92
## 29544           1079     260.94
## 29545           1151     645.31
## 29546           2271       0.00
## 29547           1151     241.36
## 29548           1936     358.51
## 29549           1154    1476.60
## 29550           1151     735.17
## 29551           1149      16.87
## 29552           1889   23644.70
## 29553           1154   36832.59
## 29554           1154    1309.17
## 29555           1637      77.60
## 29556           1147     100.00
## 29557           1149    6546.05
## 29558           1147    3079.99
## 29559           1148      66.68
## 29560           1142   21566.24
## 29561           1142     209.97
## 29562           1133     391.29
## 29563           1074       0.00
## 29564           1112       0.00
## 29565           1126     304.33
## 29566           1122      78.12
## 29567           1490      28.50
## 29568            751       0.00
## 29569           1130     327.44
## 29570           1140     327.49
## 29571           1141   26540.25
## 29572           1142       0.00
## 29573           2033    4287.62
## 29574           1148     535.71
## 29575           1147      72.42
## 29576           1149     109.64
## 29577           1540      60.87
## 29578           1154     644.72
## 29579           1151     255.68
## 29580           1151     118.76
## 29581           1125     100.21
## 29582           1120     319.62
## 29583           1067     112.32
## 29584           1314     645.00
## 29585            995   33011.30
## 29586           1151       0.00
## 29587           1151     570.26
## 29589           1149     116.00
## 29590           1149      51.16
## 29591           2180     698.88
## 29592           1150      36.21
## 29593           1149     150.39
## 29594           1148     342.44
## 29595           2079     607.50
## 29596           1142     928.53
## 29597           1142       0.00
## 29598           1136    4614.27
## 29599           1427       0.00
## 29600           1136      72.42
## 29601           1135     285.40
## 29602           1135    2186.98
## 29603           1046      35.00
## 29604           1030       0.00
## 29605           1074     490.28
## 29606           1085     295.79
## 29607           1123       0.00
## 29608           1105     196.30
## 29609            731       0.00
## 29610           1137     688.35
## 29611           1149    1017.30
## 29612           1105      57.85
## 29613           1147     999.56
## 29614           1142     723.05
## 29615           1130       0.00
## 29616           1130     131.50
## 29617           1130       0.00
## 29618           1130     297.88
## 29619           1127     227.09
## 29620           1563       0.00
## 29621           1135     808.59
## 29622           1136     223.04
## 29623           1484    1580.86
## 29624           2486     560.79
## 29625           1144       0.00
## 29626           1147   20173.83
## 29627           1149     312.43
## 29628           1496    1616.02
## 29629           1147     203.40
## 29630           1147     276.84
## 29631           1150     240.19
## 29632           1149    3372.04
## 29633           1149      20.09
## 29634           1151     462.48
## 29635           1049       0.00
## 29636           1123     150.00
## 29637           1122     131.07
## 29638           1901     737.16
## 29639            974    1544.10
## 29640           1147     160.44
## 29641           1148    1533.71
## 29642           1148     104.10
## 29643           1148     327.76
## 29644           1149       0.00
## 29645           1144     101.85
## 29646           1827       0.00
## 29647           1766     517.43
## 29648           2224      88.95
## 29649           1135     288.35
## 29650           1141       0.00
## 29651           1130       0.00
## 29652           1150    1255.10
## 29653            869     566.20
## 29654            967     662.44
## 29655           1081     254.87
## 29656           1121     147.49
## 29657           1134     161.60
## 29658           1130     425.59
## 29659           1374   37724.90
## 29660           1135     284.48
## 29661           1142     130.46
## 29662           1143     531.97
## 29664           1929   18273.67
## 29665           1144       0.00
## 29666           1144    2548.56
## 29667           2003     387.32
## 29668           1126      85.00
## 29670           1144     621.92
## 29671           1144      39.33
## 29672           1144    5761.96
## 29673           1147     190.65
## 29674           1143     149.54
## 29675           1906    9223.68
## 29676           1143       0.00
## 29677           1142    1580.48
## 29678           1452     760.64
## 29679           1137      76.95
## 29680           1137     132.47
## 29681           1130      66.78
## 29682           1070     350.39
## 29683           1116       0.00
## 29684           1112     411.00
## 29685           1133     100.00
## 29686           1141     701.61
## 29687           1141     384.60
## 29688           1141      82.77
## 29689           1135     108.16
## 29690           2241    1534.31
## 29691           1182    2589.87
## 29692           2129     139.77
## 29693           1142   26814.02
## 29694           1384    1473.47
## 29695           1143       6.00
## 29696           1143   17580.13
## 29697           1050     119.14
## 29698           1114     296.02
## 29699           1119      79.26
## 29700           1106      38.37
## 29701           1066       0.00
## 29702           1143     145.28
## 29703           1835     839.59
## 29704           1143     442.85
## 29705           2233     228.00
## 29706           2433    1236.37
## 29707           1134      82.68
## 29708           1130       0.00
## 29709           1116     273.70
## 29710           1107      65.44
## 29711           1130     147.16
## 29712           1133    1157.64
## 29713           1133    1151.01
## 29714           1343     128.42
## 29715           1192    1690.46
## 29716           1137     285.58
## 29717           1142     374.02
## 29718           1141     616.13
## 29719           1137    1210.51
## 29720           1137    1194.79
## 29721           1137     921.12
## 29722           1137       0.00
## 29723           2364     275.00
## 29724           1142     280.03
## 29725           1109     960.18
## 29726           2348       0.00
## 29727           1105       0.00
## 29728           1125     268.26
## 29729           1143     127.44
## 29730           1142    2612.18
## 29731           1142     687.17
## 29732           1655     611.28
## 29733           1137       0.00
## 29734           1137     178.12
## 29735           1137      90.00
## 29736           1140     340.31
## 29737           1137    2629.00
## 29738           1351    1673.14
## 29739           1141     208.14
## 29740           1141     469.97
## 29741           1140    1169.32
## 29742           1140       0.00
## 29743           1137    1841.81
## 29744           1137     949.41
## 29745           2095       0.00
## 29746           1135     324.34
## 29747           1128     152.68
## 29748           1127       0.00
## 29749           1127     799.88
## 29750           1051       0.00
## 29751           1105     404.11
## 29752           1120     306.41
## 29753            995       0.00
## 29754           1971    2695.70
## 29755           1133     344.41
## 29756           1130     946.33
## 29757           1130     505.15
## 29758           1135     579.01
## 29759           1135      61.35
## 29760           2058    3265.02
## 29761            739  154331.01
## 29762           1140     239.51
## 29763           1141     216.84
## 29764           1327     132.35
## 29766           1113       0.00
## 29767           1106    1104.91
## 29768           1536  147421.19
## 29769           1073     145.58
## 29770           1140       0.00
## 29771           1137   37822.18
## 29772           1137     649.92
## 29773           1135     412.07
## 29774           1135       0.00
## 29775           1134      16.50
## 29776           1130       0.00
## 29777           1130     328.85
## 29778           1179    5619.44
## 29779           1126    2400.81
## 29780           1120     102.05
## 29781           1115     526.20
## 29782           1133     146.32
## 29783           1133     238.84
## 29784           2020       0.00
## 29785           1127     378.06
## 29786           1127       0.00
## 29787           1129     117.60
## 29788           2057    1835.27
## 29789           1136     793.19
## 29790           1137      81.77
## 29791           1115     471.36
## 29792           1114     487.93
## 29793           1120       0.00
## 29794           1119    2272.46
## 29795           2148   20298.50
## 29796           1504     844.41
## 29797           1109      95.92
## 29798           1126       0.00
## 29799           1100     361.46
## 29800            758      60.75
## 29801           1087     506.38
## 29802           1135      46.04
## 29803           1137     831.29
## 29804           1135    3852.49
## 29805           1113     520.98
## 29806           1114     111.22
## 29807           1135       0.00
## 29808           1137     353.71
## 29809           1136     204.45
## 29810           1135    3729.31
## 29811           1135     413.71
## 29812           1316   57141.76
## 29813           1137     143.54
## 29814           2011   11534.18
## 29815           1133     433.70
## 29816           1133     862.25
## 29817           2287     191.64
## 29818           1126       0.00
## 29819           1133     184.38
## 29820           1858    6447.69
## 29821           1134   16284.79
## 29822           2158     188.43
## 29823           1130     183.97
## 29824           1130   21139.10
## 29825           1129       0.00
## 29826           1128    1771.15
## 29827           2066      82.00
## 29828           1135      57.83
## 29829           1135     995.03
## 29830           1137     283.63
## 29831           1137       0.00
## 29832           1135     250.09
## 29833           1064     185.37
## 29834           1705  127044.17
## 29835           1892     959.18
## 29836           1126       0.00
## 29837           1126     240.95
## 29838           1121      15.00
## 29839           1121       0.00
## 29840           1836     278.04
## 29841           1858     681.14
## 29842           1066      83.70
## 29843           1070     432.64
## 29844            990     812.44
## 29845           1135   19017.68
## 29846           1134       0.00
## 29847           1134     273.18
## 29848           1210       0.00
## 29849           1130       0.00
## 29850           1130       0.00
## 29851           1855   18782.26
## 29852           1133       0.00
## 29853           2497  323951.27
## 29854           1264     495.92
## 29855           1130     892.31
## 29856           1133      24.28
## 29857           1133      78.17
## 29858           1133     121.66
## 29859           1130     210.60
## 29860           1130    2421.75
## 29861           1128     119.79
## 29862           1127     172.60
## 29863           1134     775.97
## 29864           1135     264.85
## 29865           1042     735.98
## 29866           1109    1514.32
## 29867           1120       0.00
## 29868           1502       0.00
## 29869           1087     190.17
## 29870           1127    1026.67
## 29871           1128     372.77
## 29872           1129     109.17
## 29873           1129   50263.40
## 29874           1129     543.00
## 29875           2208   10630.92
## 29876           1130   21808.71
## 29877           1130     109.63
## 29878           1130     353.24
## 29879           1130       0.00
## 29880           1130     667.41
## 29881           1351       0.00
## 29882           1133     543.89
## 29883            962      61.35
## 29884           1546       0.00
## 29885           1973     212.11
## 29886           1690      93.01
## 29887           1120     902.51
## 29888           1122     444.49
## 29889           1123       0.00
## 29890           1123     119.32
## 29891           1123      56.00
## 29892           1945    1495.87
## 29893           1109    1772.06
## 29894           1233      56.48
## 29895           1119     464.64
## 29896           1115    1080.76
## 29897           1114      74.71
## 29899           2303     209.00
## 29900           1617     149.11
## 29901           1130     441.33
## 29902           1130     562.21
## 29903           1127     183.32
## 29904           1114    3476.86
## 29905           1116     149.87
## 29906           1108      79.33
## 29907           1915       0.00
## 29908           2369     526.36
## 29909           1122     184.13
## 29910           1122       0.00
## 29911           1122     117.67
## 29912           1101     433.93
## 29913           1072    1170.00
## 29914           1128     421.48
## 29915           2427    1121.00
## 29916           1130       0.00
## 29917           1130     724.14
## 29918           1078       0.00
## 29919           2486       0.00
## 29920           1130     847.12
## 29921           1128       0.00
## 29922           1122   31681.16
## 29923           1128     269.51
## 29924           1127    2714.15
## 29925           1129     583.91
## 29926           1050      66.68
## 29927            953     340.86
## 29928           1125     309.05
## 29929           1125     521.89
## 29930           1126     157.74
## 29931           1106       0.00
## 29932           1115    1014.04
## 29933           2045      63.39
## 29934           1119       0.00
## 29935           1120    2120.34
## 29936           2321     196.64
## 29937           1898    2600.95
## 29938           1112     433.93
## 29939           1107     190.22
## 29940           2363     153.39
## 29941           1128     159.14
## 29942           1605    5539.93
## 29943           1128     156.68
## 29944           1128     251.14
## 29945           1127     266.94
## 29946           1127     150.20
## 29947           2427      78.17
## 29948            982     821.29
## 29949           1080    2506.46
## 29950           1070     515.98
## 29951           1067     120.97
## 29952           1095     684.50
## 29953           1881  107666.17
## 29954           1120    1480.35
## 29955           1119       0.00
## 29956           1119      11.72
## 29957           1843     229.70
## 29958           1100    1191.07
## 29959           1126      11.72
## 29960           1126     362.39
## 29961           1126       0.00
## 29962           1126       0.00
## 29963           1840     108.32
## 29964           1782     100.00
## 29965           1122     732.26
## 29966           1123     244.44
## 29967           1774    8961.03
## 29968           1127     911.36
## 29969           1318     227.92
## 29970           1121       0.00
## 29971           1121     332.12
## 29972           1121     421.57
## 29973           2533   30557.56
## 29974           1121     567.27
## 29975           1235      50.01
## 29976           1126     274.84
## 29977           1126       0.00
## 29978           1655     118.91
## 29979           1279     436.58
## 29980           1852     494.84
## 29981           1094      68.78
## 29982           1072     187.04
## 29983           1065     334.69
## 29984            793    2927.57
## 29985           1071     311.98
## 29986           1105     559.17
## 29987           1126     636.77
## 29988           2372      71.25
## 29989           1126    9696.98
## 29990           1125     101.90
## 29991           1245     813.25
## 29992           1123     375.22
## 29993           1123       0.00
## 29994           1106      65.41
## 29995           1099     247.29
## 29996           1121     506.25
## 29997           2443       0.00
## 29998           1120     145.00
## 29999           1830    5627.44
## 30000           1705     160.22
## 30001           1123     123.48
## 30002           1122     387.36
## 30003           1114     176.58
## 30004           1120     143.13
## 30005           2385   24607.14
## 30006           1120    8539.90
## 30007           1120     328.20
## 30008           1520     695.12
## 30009           1107     137.26
## 30010            658       0.00
## 30011           1107     855.10
## 30012           1107    1234.34
## 30013           1251   10185.71
## 30014           1112    1017.34
## 30015           1120      78.17
## 30016           1119      58.50
## 30017           1119       0.00
## 30018           1116       0.00
## 30019           1116       0.00
## 30020           1122     556.77
## 30021           1121       0.00
## 30022           2175       0.00
## 30023           2000   13024.24
## 30024           1121       0.00
## 30025           1834     257.23
## 30026           1116     455.45
## 30027           1119       0.00
## 30028           2328    4768.43
## 30029           1095   12275.68
## 30030           1091       0.00
## 30031           1924     195.55
## 30032           1119       0.00
## 30033           1114       0.00
## 30034           1115     328.74
## 30035           1121     159.65
## 30036           1122     352.39
## 30037           1051    8751.03
## 30038           1301    1338.93
## 30039           1120       0.00
## 30040           1121     677.54
## 30041           1121       0.00
## 30042           1099     923.49
## 30043           2245  165890.82
## 30044           2417       0.00
## 30045           1119     615.46
## 30046           1119      58.63
## 30047           1116       0.00
## 30048           1120       0.00
## 30049           1120     132.84
## 30050           1945     305.77
## 30051           1112     667.91
## 30052           1624      61.39
## 30053           1568     857.27
## 30054           1108       0.00
## 30055           1107     200.31
## 30056           1072       0.00
## 30057           1086      99.01
## 30058           1086      51.16
## 30059           2159     235.61
## 30060           1067    8358.28
## 30061           1091       0.00
## 30062           1108       0.00
## 30063           1182     305.31
## 30064           1112     218.56
## 30065           1120     235.43
## 30066           1120     126.38
## 30067           1120     135.24
## 30068           1400     232.48
## 30069           1116    9701.60
## 30070           1116    1990.00
## 30071           1119     118.42
## 30072           1119      11.72
## 30073           2047       8.57
## 30074           1115    3792.94
## 30075           1115       0.00
## 30076           1115    1223.76
## 30077           1886    1227.71
## 30078           1116     140.00
## 30079           1114    9648.52
## 30080           1099     564.58
## 30081           1121     108.13
## 30082           1053       0.00
## 30083           1057     503.53
## 30084           1044     138.47
## 30085            966    1229.87
## 30086            927       0.00
## 30087           2281   32304.33
## 30088           1106     206.14
## 30089           1114    2365.61
## 30090           1116     304.07
## 30091           1116     377.04
## 30092           1119     263.30
## 30093           1119      98.92
## 30094           1119     472.25
## 30095           1119       0.00
## 30096           1120    2640.98
## 30097           1119     175.13
## 30098           1112      65.18
## 30099           1112       0.00
## 30100           1109     301.04
## 30101           1109     273.80
## 30102           1112     216.62
## 30103           2223      32.59
## 30104           1658    9487.26
## 30105           1094     240.62
## 30106           1051     114.92
## 30107           1095     102.32
## 30108           1087       0.00
## 30109           1908   92874.47
## 30110           1296   24794.51
## 30111           1074     216.86
## 30112           1078     318.54
## 30113           1112    5250.61
## 30114           1107     777.64
## 30115           1116    1140.26
## 30116           1116     267.49
## 30117           1116     455.86
## 30118           1437       0.00
## 30119           1113      58.50
## 30120           2203    1276.90
## 30121           1114     133.99
## 30122           1114     391.59
## 30123           1106       0.00
## 30124           1254      61.26
## 30125           1099     221.21
## 30126           1090  277230.62
## 30127           1100     402.12
## 30128           1106     182.49
## 30129           1105     910.43
## 30130           1157      66.68
## 30131           1114     178.52
## 30132           1114       0.00
## 30133           1114       0.00
## 30134           2004       0.00
## 30135           1116     573.21
## 30136           1116      99.32
## 30137           1116       0.00
## 30138           1114  122922.10
## 30139           1109     425.68
## 30140           1109     122.17
## 30141           1098      85.05
## 30142           1094      23.67
## 30143            916   20964.17
## 30144           1679  178909.12
## 30145           1849       0.00
## 30146           1114    1134.56
## 30147            153       0.00
## 30148           1114       0.00
## 30149           1114    2128.21
## 30150           1114    1411.57
## 30151           1115     384.58
## 30152           1925    4586.85
## 30153           1115      23.70
## 30154           1115     709.47
## 30155           1256   23301.67
## 30156           1109       0.00
## 30157           3358  111829.71
## 30158           1067     786.10
## 30159           2074     381.81
## 30160            538      56.68
## 30161           1071     606.33
## 30162           1094     710.74
## 30163           1088      68.78
## 30164           1722     246.11
## 30165           1112     307.85
## 30166           1112    1023.18
## 30167           1112       0.00
## 30168           1109     530.97
## 30169           1319     125.72
## 30170           1109      71.00
## 30171           1107    1827.29
## 30172           1115   14474.56
## 30173           1115     237.31
## 30174           1114     309.70
## 30175           1114      79.33
## 30176           1114      23.62
## 30177           1114     175.31
## 30178           1106     459.36
## 30179           1106      41.40
## 30180            997    2624.27
## 30181            603     140.76
## 30182           1944   28774.44
## 30183           1105   10881.50
## 30184           2478  107616.95
## 30185           1100       0.00
## 30186           1099     142.65
## 30187           1114     152.60
## 30188           1113     115.52
## 30190           1114    1552.36
## 30191           1107     941.88
## 30192           1107     124.17
## 30193           1109    2191.13
## 30194           1109     393.60
## 30195           1109     195.70
## 30196           1092    2454.82
## 30197           1093       0.00
## 30198           1092   17446.66
## 30199           1094     176.00
## 30200           1086       0.00
## 30201           1086       0.00
## 30202           2590   26061.82
## 30203           1912    1729.55
## 30204           1081       0.00
## 30205           1066       0.00
## 30206           1295    6049.44
## 30207           1815     208.14
## 30208           1109      68.76
## 30209           1109     148.88
## 30210           1112     107.60
## 30211           1614       0.00
## 30212           1112     919.24
## 30213           1112     531.08
## 30214           1112    1165.15
## 30215           1107     162.58
## 30216           1106    7713.96
## 30217           1101    2932.06
## 30218           1102     286.06
## 30219           1101     633.62
## 30220           1101     379.61
## 30221           1100    2278.46
## 30222           1099       0.00
## 30223           1099    1361.42
## 30224           1112       0.00
## 30225           1109     156.59
## 30226           1109     114.17
## 30227           1112     285.05
## 30228           1873    2650.01
## 30229           1108       0.00
## 30230           1107     399.74
## 30231           1107     238.24
## 30232           1108       0.00
## 30233           1107     187.10
## 30234           1107       0.00
## 30235           1107    4233.02
## 30236           1107     104.99
## 30237           1081     204.12
## 30238           1087    1105.21
## 30240            945    1095.47
## 30241           1151   24442.97
## 30242           2226     408.08
## 30243           1107     103.92
## 30244           1108   21204.82
## 30245           1108     273.62
## 30246           1108     180.60
## 30247           1100    1784.03
## 30248           1102    1221.35
## 30250           1750     374.10
## 30251           1106     345.56
## 30252           2456    2330.24
## 30253           1105   12417.22
## 30254           1099     723.62
## 30255           1099      32.59
## 30256           1109     199.25
## 30257           1900     665.53
## 30258           1107     466.73
## 30259           1108     136.67
## 30260           1108     503.29
## 30261           1091     234.00
## 30262           1074       0.00
## 30263           1036     140.11
## 30264           1670    2176.23
## 30265           1723    1094.14
## 30266           1101       0.00
## 30267           1056       0.00
## 30268           1101     258.31
## 30269           1101      68.78
## 30270           2351     462.06
## 30271           1105     200.60
## 30272           1105     147.68
## 30273           1105     265.06
## 30274           1106     126.73
## 30275           2459     266.09
## 30276           1517   22019.81
## 30277           1074    5073.89
## 30278           1765    1917.49
## 30279           1347   98029.82
## 30280           1085       0.00
## 30281           1066    1789.82
## 30282           1449     129.20
## 30283           1081     161.32
## 30284           1092    3750.72
## 30285           1092   18473.56
## 30286           1660     142.44
## 30287           1094      49.11
## 30288           1107     498.56
## 30289           1107     356.02
## 30290           1107      61.35
## 30291           1358       0.00
## 30292           2225     700.95
## 30293           1106     444.33
## 30294           1105     482.46
## 30295           1106     862.40
## 30296           1671     162.46
## 30297           1321    1705.13
## 30298           2481     936.64
## 30299           1101       0.00
## 30300           1836       0.00
## 30301           1366     143.40
## 30302           1101     491.86
## 30303           1100      66.65
## 30304           1102       0.00
## 30305           1102       0.00
## 30306           1102     233.98
## 30307           1102      82.54
## 30308           1102      56.20
## 30309           1172     574.96
## 30310           1102     517.78
## 30311           1295    1002.68
## 30312           1102     237.98
## 30313           1105      15.19
## 30314           1105      67.61
## 30315           1105    2301.33
## 30316           1105     243.43
## 30317           1099   11736.44
## 30318           2057     277.91
## 30319           1094       0.00
## 30320           1091       6.35
## 30321           1564       0.00
## 30322           1080    4235.12
## 30323           1514     260.02
## 30324           1084    3350.62
## 30325           1007       0.00
## 30326           1057      17.59
## 30327           1037     154.70
## 30328           1035     207.77
## 30329           1091     651.15
## 30330           2197    4236.14
## 30331           1094     305.20
## 30332           1094     254.51
## 30333           1533     111.75
## 30334           1433       0.00
## 30335           1101     431.76
## 30336           1101     173.83
## 30337           1167       0.00
## 30338           1100     156.40
## 30339           1100    4361.65
## 30340            482     125.00
## 30341            955       0.00
## 30342           1100     526.12
## 30343           1100     651.04
## 30344           1101       0.00
## 30345           1101    1713.58
## 30346           1520    1025.85
## 30347           1102     480.33
## 30348           1105     407.73
## 30349           1099    1034.08
## 30350           1100     661.94
## 30351           1094      64.01
## 30352           1095       0.00
## 30353           1091      85.05
## 30354           1086     210.14
## 30355           1081     174.00
## 30356           1442     582.91
## 30357           1070       0.00
## 30358           1104    3483.70
## 30359           1074      11.72
## 30360           1483     379.43
## 30361           1939    1158.96
## 30362           1362     500.82
## 30363           1102       0.00
## 30364           1102     599.70
## 30365           1102     610.95
## 30366           1100     300.30
## 30367           1100     112.14
## 30368           1100      10.30
## 30369           1253    1580.65
## 30370           1000     317.27
## 30371           1003     985.52
## 30372           2203     704.53
## 30373           1053     253.57
## 30374           1051     533.19
## 30375           1058    1287.62
## 30376           1102    1012.16
## 30377           1084     744.32
## 30378           2276      76.16
## 30379           2279      79.78
## 30380           1092      98.88
## 30381           1092      98.88
## 30382           1095   18043.94
## 30383           1095     641.94
## 30384           1094      87.37
## 30385           1094     133.88
## 30386           1093      75.54
## 30387           1093      68.01
## 30388           1100     562.82
## 30389           1099    5633.12
## 30390           1099       0.00
## 30391           1099    1768.02
## 30392           1100     279.14
## 30393            738       0.00
## 30394           1064      85.68
## 30395           1100    1658.78
## 30396           1100       0.00
## 30397           1099     262.20
## 30398           1099     259.97
## 30399           1094    1048.52
## 30400           1094     166.51
## 30401           1095     188.44
## 30402           1095     148.50
## 30403           1095     240.61
## 30404           1095     933.11
## 30405           1521     187.94
## 30406           2317    1206.11
## 30407           1091     834.97
## 30408           1091     395.48
## 30409           1091    1700.54
## 30410           1712      75.54
## 30411           1079      41.40
## 30412           1087    9773.56
## 30413           1341      56.68
## 30414           1074     360.93
## 30415           1066       0.00
## 30416            720     126.02
## 30417           1073     276.55
## 30418           1079     187.15
## 30419           1789   13488.83
## 30420           1700     572.17
## 30421           1926     128.18
## 30422            665   25886.68
## 30423           1088     302.96
## 30424           1092     305.24
## 30425           1549   11818.36
## 30426           1093     114.97
## 30427           1093     330.73
## 30428           1092     153.13
## 30429           1095      11.72
## 30430           1095     192.12
## 30431           1094     134.16
## 30432           1094    9676.13
## 30433           1436       0.00
## 30434           1093     100.00
## 30435           1093     852.16
## 30436           1099       0.00
## 30437           1100     134.27
## 30438           1099     564.06
## 30439           1146      86.22
## 30440           1370     157.86
## 30441           1032     134.62
## 30442            807    1177.43
## 30443           1099   68208.71
## 30444           1095       0.00
## 30445           1095    1631.14
## 30446           1092       0.00
## 30447           1092       0.00
## 30448           1477       0.00
## 30449           1091       0.00
## 30450           1087     139.59
## 30451           2355     194.29
## 30452           1066     293.26
## 30453           1067     252.84
## 30454           1063     145.25
## 30455           1572      30.91
## 30456           1081     100.93
## 30457           1084     171.87
## 30458           1092     186.21
## 30459           1092     582.61
## 30460           1093     390.45
## 30461           1093       0.00
## 30462           1976       0.00
## 30463            806    1405.79
## 30464           1093     169.77
## 30465           1092     108.53
## 30466           1025    1362.99
## 30467            787    7633.54
## 30468           1037   15591.45
## 30469           1065     702.45
## 30470           1056    1728.38
## 30471           1042     179.71
## 30472            903      36.21
## 30473           1393     840.00
## 30474           1093   58743.08
## 30475           1092     912.13
## 30476           1093     247.30
## 30477           1092     307.74
## 30478           1088     468.47
## 30479           1093    1795.79
## 30480           2515    7582.79
## 30481           1093     527.78
## 30482           1309   98603.30
## 30483           1093       0.00
## 30485           1095     239.80
## 30486           1084     108.40
## 30487           1084    3491.77
## 30488           2018     318.37
## 30489           1085     154.87
## 30490           1074    1139.43
## 30491           1073     184.97
## 30492           2015       0.00
## 30493            986     158.06
## 30494           1043     436.51
## 30495           1058     154.16
## 30496           2380     431.56
## 30497           1064       0.00
## 30498           1063      19.00
## 30499           2129       0.00
## 30500           1074     121.23
## 30501           2014     431.08
## 30502           1339      33.31
## 30503           2209       0.00
## 30504           1919       0.00
## 30505           1080       0.00
## 30506           1071     426.05
## 30507           1094     374.87
## 30508           1617     167.79
## 30509           1088     305.57
## 30510           1724       0.00
## 30511           1502    1033.40
## 30512           1092      61.35
## 30513           1092     221.12
## 30514           1091      35.19
## 30515           1092     467.82
## 30516           1092     222.45
## 30517           1850     166.02
## 30518           2211   89599.97
## 30519           1232     564.37
## 30520           1090  127170.50
## 30521           1088     126.24
## 30522           1302  184242.39
## 30523           1087      78.68
## 30524           1088     273.92
## 30525           1091       0.00
## 30526           1091      78.17
## 30527           1483      78.17
## 30528           1092     222.62
## 30529           2455     140.35
## 30530           1070     521.30
## 30531           2260    1955.04
## 30532           1067       0.00
## 30533           1472    1804.78
## 30534           1430     169.13
## 30535           1081     169.13
## 30536           1087     254.87
## 30537           1087  156501.35
## 30538           2407     171.58
## 30539           1086     445.95
## 30540           1078      36.21
## 30541           1079     530.00
## 30542           1080       0.00
## 30543           1029      83.70
## 30544           1016     112.39
## 30545           1994     394.51
## 30546           1046       0.00
## 30547            967     135.18
## 30548           1074     229.77
## 30549           1072     522.26
## 30550           1072     722.47
## 30551           1085       0.00
## 30552           1087       0.00
## 30553           1081     178.94
## 30554           1091     141.38
## 30555           1088     304.34
## 30556           1091       0.00
## 30557           1031     620.78
## 30558           1058    7691.83
## 30559           1056    1232.49
## 30560           1052      51.16
## 30561           1058     209.61
## 30562           1064      51.16
## 30563           1065     535.31
## 30564           1065     279.06
## 30565           1088    1860.37
## 30566           1091      81.88
## 30567           1743       0.00
## 30568           1084     628.68
## 30569           1080      91.65
## 30570           1087   32835.08
## 30571           1240  195560.00
## 30572           1086    1677.77
## 30573           1086     587.95
## 30574           1086     279.86
## 30575           1086     295.17
## 30576           1085      60.01
## 30577           1086   60621.53
## 30578           1796    5214.98
## 30579           1073    1195.94
## 30580           1074     249.34
## 30581           1077       0.00
## 30582           1078     425.08
## 30583           1008     496.14
## 30584           1503    2058.68
## 30585           1084      26.50
## 30586           1085    1637.01
## 30587           1527       0.00
## 30588           1086     356.88
## 30589           1084    2157.32
## 30590           1032      86.64
## 30591           1448     162.44
## 30592           1087     118.76
## 30593           1172  158703.28
## 30594           1085       0.00
## 30595           1078       0.00
## 30596           1015     116.82
## 30597           1036    1306.23
## 30598           1078       0.00
## 30599           1079   16419.65
## 30600           1079     613.74
## 30601           1078     166.68
## 30602           1078     286.42
## 30603           1078     281.56
## 30604           1074     433.88
## 30605           2345     689.12
## 30606           2053     383.93
## 30607           1086     501.23
## 30608           1448      77.61
## 30609           1085    2697.44
## 30610           1084      13.42
## 30611           1085      89.09
## 30612           1919     197.18
## 30613           1086      45.90
## 30614           1086       0.00
## 30615           1081    1033.14
## 30616           2174     111.57
## 30617           1081     222.39
## 30618           1079    2721.61
## 30619           1070       0.00
## 30620           2257       0.00
## 30621           1052      83.20
## 30622           1692     126.45
## 30623           1079       0.00
## 30624           1080       0.00
## 30625           1080       0.00
## 30626           1081    3630.72
## 30627           1470       0.00
## 30628           1084     326.77
## 30629           1385  105304.82
## 30630           1779     201.29
## 30631           1085   20441.08
## 30632           1074     531.22
## 30633           1073     493.91
## 30634           1074     205.18
## 30635           1078      93.31
## 30636           1080      44.59
## 30637           1712   28471.06
## 30638           1045     179.49
## 30639           2127       0.00
## 30640           1037     240.08
## 30641           1042     344.76
## 30642            945     790.13
## 30643           1078     125.69
## 30644           1078       0.00
## 30645           1078     316.17
## 30646           2139     113.82
## 30647           1074     422.52
## 30648           1077     216.75
## 30649           1078     693.57
## 30650           1078       0.00
## 30651           1073       0.00
## 30652           1074    1317.06
## 30653           1072    1173.65
## 30654           1085      79.33
## 30655           1084       0.00
## 30656           1084    8044.02
## 30657           1081     165.77
## 30658           1080      91.05
## 30659           1081     109.80
## 30660           1071     150.57
## 30661            392       0.00
## 30662            160     461.30
## 30663           1003     295.15
## 30664           1037       0.00
## 30665           1063      95.40
## 30666           1058    1247.86
## 30667           1063     103.93
## 30668           1057       0.00
## 30669           1057       0.00
## 30671           1072       0.00
## 30672           1081     531.41
## 30673           1081     285.54
## 30675           1079     948.81
## 30676           1690     834.97
## 30677           1084     362.46
## 30678           1084     341.26
## 30679           1072     679.13
## 30680           1074   19355.92
## 30681           1078     856.82
## 30682           1078     537.11
## 30683           1025       0.00
## 30684           1053      45.59
## 30685           1046       0.00
## 30686           1058     351.38
## 30687           1037       0.00
## 30688           1078     309.37
## 30689           1819      94.80
## 30690           1074   17753.53
## 30691           1073       0.00
## 30692           1626     210.22
## 30693           1072     350.64
## 30694           1081      68.01
## 30695           1080     499.21
## 30696           1356    1649.38
## 30697           1081    1392.53
## 30698           1080    2634.73
## 30699           1616    2012.42
## 30700           1067    4342.69
## 30701            947      66.68
## 30702           1078     686.17
## 30703            839       0.00
## 30704           1189     581.39
## 30705           1747   14983.29
## 30706           1078       0.00
## 30707           1074       0.00
## 30708           1081    5233.68
## 30709           2196    2394.88
## 30710           1053     113.12
## 30711           1053     284.84
## 30712           1079       0.00
## 30713           1079       0.00
## 30714           1232     291.87
## 30715           1078     310.58
## 30716           1072     318.92
## 30717           1073      48.96
## 30718           1074    3852.14
## 30719           1066       0.00
## 30720           1066    1367.83
## 30721           1072      20.47
## 30722           2217     696.71
## 30723           1071      32.59
## 30724           1071      63.14
## 30725           1070       0.00
## 30726           1023     188.98
## 30727           1052     112.16
## 30728           1050     458.90
## 30729           1056     227.47
## 30730           1733      91.97
## 30731           1049     337.06
## 30732           2473       0.00
## 30733           2372     209.03
## 30734           1036     159.18
## 30735            923     610.68
## 30736           1072       0.00
## 30737           1462     644.26
## 30738           1071    1461.75
## 30739           1217  126894.14
## 30740           1072    1022.00
## 30741           1072      92.98
## 30742           1078     168.77
## 30743           1078    1885.91
## 30744           1839       0.00
## 30745           1078       0.00
## 30746           1078       0.00
## 30747           1078     130.70
## 30748           2421     226.02
## 30749           1079     103.92
## 30750           1074     859.52
## 30751           1074     126.73
## 30752           1074    9429.30
## 30753           1078       0.00
## 30754           1077       0.00
## 30755           1225       0.00
## 30756           2037     348.84
## 30757           1079     189.00
## 30758           1031     265.00
## 30759           1029     277.44
## 30760           1036       0.00
## 30761           1863       0.00
## 30762           1898       0.00
## 30763           1044     121.66
## 30764           1051   18831.51
## 30765           1074    1113.60
## 30766           1078     454.26
## 30767           1074       0.00
## 30768           1074       0.00
## 30769           1074    2114.48
## 30770           1074     360.40
## 30771           1074    1370.92
## 30772           1377     180.90
## 30773           1072       0.00
## 30774           1072   10206.24
## 30775           1197   56867.55
## 30776           1072       0.00
## 30777           1072       0.00
## 30778           1073       0.00
## 30779           1071       0.00
## 30780           1901     577.27
## 30781           1071      88.29
## 30782           1071     373.00
## 30783           1067     175.19
## 30784           1591     167.66
## 30785           1066      91.97
## 30786           1067     242.21
## 30787            986       0.00
## 30788           1051     145.63
## 30789           1691       0.00
## 30790           1064       0.00
## 30791           1064      71.27
## 30792           1315       0.00
## 30793            804       0.00
## 30794            962     580.14
## 30795           1071      51.16
## 30796           1072    1687.94
## 30797           1071   11720.37
## 30798           1074       0.00
## 30799           1074     162.95
## 30800           1116   28302.58
## 30801           1072     125.19
## 30802           1072     148.33
## 30803           1072   17990.60
## 30804           1072     200.19
## 30805           1072      94.22
## 30806           1072     275.24
## 30807           1078     130.78
## 30808           1077   68904.89
## 30809           1014      70.00
## 30810           1065     878.98
## 30811           1050    1025.13
## 30812           1305   45869.72
## 30813           2190     198.88
## 30814            498     224.70
## 30815            955     232.74
## 30816           1072     838.91
## 30817           1072     314.28
## 30818           1072      51.16
## 30819           1073     440.05
## 30820           1066    1825.21
## 30821           1050     634.96
## 30822           1455     243.52
## 30823           1071      70.77
## 30824           1070     254.64
## 30825           1067     293.75
## 30826           1073     296.33
## 30827           1073       0.00
## 30828           1072     537.10
## 30829           1072     566.62
## 30830           2059    2188.66
## 30831           1060     191.97
## 30832           1063     470.29
## 30833           1072     258.23
## 30834           1072     465.34
## 30835           1070     646.14
## 30836           1223      18.04
## 30837           1882       0.00
## 30838           2100    1485.56
## 30839           1066     606.34
## 30840           1437    5585.06
## 30841           1028       0.00
## 30842           1028      98.99
## 30843            974       0.00
## 30844           1063     294.63
## 30845           1060     227.54
## 30846           1058   41647.20
## 30847           1064       0.00
## 30848           2330     478.65
## 30849           1058     790.22
## 30850           1053     153.28
## 30851           1051    1077.31
## 30852            976       0.00
## 30853           1066     486.47
## 30854           1067     332.99
## 30855           1072     124.90
## 30856           1476    7697.18
## 30857           1071     284.79
## 30858           1067     339.00
## 30859           2345      96.23
## 30860           1072    1945.55
## 30861           1072     528.36
## 30862           1072     115.49
## 30863           2402    1694.46
## 30864           1051     130.65
## 30865           1058      82.77
## 30866           1065     344.21
## 30867           1059    4982.83
## 30868           1063     241.66
## 30869           1063     103.46
## 30870           1060    2715.19
## 30871           2068      66.68
## 30872            109      81.58
## 30873           1072    4289.79
## 30874           1072    1752.87
## 30875           1067     177.50
## 30876           1070     180.42
## 30877           1819   11955.84
## 30878           1071     278.50
## 30879           1071     879.03
## 30880           1071     698.69
## 30881           1694   12793.51
## 30882           1066     380.45
## 30883           1066    8338.66
## 30884           1066       0.00
## 30885           1066     274.42
## 30886            643       0.00
## 30887            974    6405.73
## 30888           1797       0.00
## 30889           1009       0.00
## 30890           1036       0.00
## 30891           1063    3378.51
## 30892           1058     182.88
## 30893           1058       0.00
## 30894           1058       0.00
## 30895           1065     268.59
## 30896           1065       0.00
## 30897           1065      51.44
## 30898           1064      90.35
## 30899           1064     241.08
## 30900           1330     871.94
## 30901           1051    6302.92
## 30902           1046       0.00
## 30903           1046     158.64
## 30904           1045       0.00
## 30905            499      94.24
## 30906            863      36.21
## 30907           1070     126.21
## 30908           1070     180.24
## 30909           2376     106.28
## 30910           1067     115.36
## 30911           1067      63.00
## 30912           1067     214.36
## 30913            780       0.00
## 30914           1043     308.36
## 30915           1050       0.00
## 30916           1049    5756.97
## 30917           1045     130.49
## 30918           1057       0.00
## 30919           1064      86.22
## 30920           1065     391.60
## 30921           1067     829.13
## 30922           1067     389.75
## 30923           1366     236.96
## 30924           1250     119.02
## 30925           1070     121.77
## 30926           2380     303.48
## 30927            987      64.01
## 30928           1004    2610.52
## 30929           1749     191.68
## 30930           1065      86.08
## 30931           1065      88.12
## 30932           1897     694.74
## 30933           1064     100.93
## 30934           1064     314.25
## 30935           1058     107.10
## 30936           1063    6341.68
## 30937           1060     112.71
## 30938           1053     195.91
## 30939           1052     681.43
## 30940           1049     155.76
## 30941           1045    2061.37
## 30942           1066       0.00
## 30943           1066     204.83
## 30944           1066    6876.16
## 30945           2444      91.97
## 30946           1066       0.00
## 30947           1067       0.00
## 30948           1066       0.00
## 30949           2058     261.79
## 30950           1067      68.25
## 30951           2228       0.00
## 30952           1067       0.00
## 30953            987      49.11
## 30954            245     822.88
## 30955           1029     205.58
## 30956           1043     114.00
## 30957           1058     214.26
## 30958           2370   21561.30
## 30959           1064       0.00
## 30960           1064     489.32
## 30961           1065    2217.15
## 30962           1206   12375.74
## 30963           1053     606.18
## 30964           1710       0.00
## 30965            863      54.68
## 30966           1652       0.00
## 30967           2327     177.57
## 30968            619       0.00
## 30969           1113     102.32
## 30970           1051     126.81
## 30971           1050      51.16
## 30972           1057      92.01
## 30973           1057   92225.95
## 30974           1050     228.03
## 30975           1060     228.31
## 30976           1764       0.00
## 30977           1062     136.44
## 30978           1063    1822.53
## 30979           1063      16.25
## 30980           1063     521.20
## 30981           1063      37.67
## 30982           1708     312.79
## 30983           1058     193.20
## 30984           2380      46.04
## 30985           1058      90.98
## 30986           1058     276.51
## 30987           1060    5968.47
## 30988           1064    5913.56
## 30989           1065     240.99
## 30990           1063    1038.79
## 30991           1083    1049.00
## 30992           1065     606.99
## 30993           1065       0.00
## 30994           1066       0.00
## 30995           1066     172.99
## 30996           1110    1319.01
## 30997            385       0.00
## 30998           1031       0.00
## 30999           1029     148.43
## 31000           2275     122.00
## 31001           1064    1930.33
## 31002           1060     198.97
## 31003           1060     115.64
## 31004           1058   43840.45
## 31005           1063     363.66
## 31006           1063   25611.63
## 31007           1852      14.60
## 31008           1060      70.00
## 31009           1060     483.45
## 31010           1057     189.29
## 31011           1051      42.11
## 31012           1120   27397.35
## 31013           1051     134.82
## 31014           1036     361.55
## 31015           1035    1071.25
## 31016           1037     104.66
## 31017           3905   87057.77
## 31018           2248     270.30
## 31019           1057    1008.43
## 31020           1057     217.16
## 31021           1057       0.00
## 31022           1053     847.46
## 31023           1053     272.00
## 31024           1050     715.94
## 31025           1043       0.00
## 31026           1062     827.69
## 31027           1063     139.25
## 31028           1063    1117.86
## 31029           1063      37.34
## 31030           1063       0.00
## 31031           1414     128.82
## 31032           1682    1859.19
## 31033           2044  127921.78
## 31034           1058     326.58
## 31035           2118    1150.36
## 31036           1795     594.55
## 31037            973    1389.07
## 31038            894       0.00
## 31039            931      35.00
## 31040           1029      94.38
## 31041           1064       0.00
## 31042           1058      79.21
## 31043           1820       0.00
## 31044           1058       0.00
## 31045           1063     667.26
## 31046           1062     974.88
## 31047           1324     150.14
## 31048           1060     479.96
## 31049           1190  175978.49
## 31050           1050     109.22
## 31051           1053       0.00
## 31052           1988     250.79
## 31053           1057      77.61
## 31055           1057     116.82
## 31056           1057      50.29
## 31057           1057     132.72
## 31058           1610   76082.60
## 31059           1051       0.00
## 31060            896    1144.37
## 31061            960     472.81
## 31062           1031    1118.25
## 31063           1946      82.77
## 31064           1051     130.00
## 31065           1050      91.89
## 31066           1049     370.53
## 31067           1046       0.00
## 31068           1059     560.37
## 31069            498     145.04
## 31070           2413  246836.13
## 31071           1788       0.00
## 31072           1058     195.35
## 31073           1058      15.16
## 31074           1056    6710.17
## 31075           1036     454.25
## 31076            988      89.09
## 31077           1056    1599.00
## 31078           1042     327.46
## 31079           1046     297.11
## 31080           1059       0.00
## 31081           1059     889.33
## 31082           1058     213.39
## 31083           1061     323.24
## 31084            981     196.55
## 31085           1016      65.53
## 31086            787       0.00
## 31087           1060     229.45
## 31088           1045     369.47
## 31089           1049       0.00
## 31090           1043     221.57
## 31091           1588       0.00
## 31092           1056     175.00
## 31093           1053       0.00
## 31094           1053     108.04
## 31095           1053     786.47
## 31096           1053     226.92
## 31097           1058     859.96
## 31098           1057      28.59
## 31099           1057     915.36
## 31100           1051    1645.41
## 31101           1051       0.00
## 31102           1093    1393.32
## 31103           1051   20918.25
## 31104           1051     327.64
## 31105           1352     235.31
## 31106            436     341.71
## 31107           1025     212.40
## 31108           1258   51934.41
## 31109           1057     596.76
## 31110           1057     225.07
## 31111           1053    1065.16
## 31112           1053       0.00
## 31113           1056     121.26
## 31114           1056    1639.49
## 31115           1056     379.94
## 31116           1056     896.09
## 31117           2373       0.00
## 31118           1050     136.13
## 31119           1987     170.97
## 31120           2030     939.07
## 31121           1046     477.16
## 31122           1046    2145.94
## 31123           1036     525.87
## 31124           1042     106.05
## 31125           1036     135.32
## 31126            429    1679.69
## 31127            793    1599.85
## 31128           1085   22067.14
## 31129           1017      63.31
## 31130           2036     139.62
## 31131            630       0.00
## 31134           1036       0.00
## 31135           2411     432.91
## 31136           1049     172.98
## 31137           2400      87.37
## 31138           1044     325.60
## 31139           1044    1097.91
## 31140           1056    1774.37
## 31141           1717       0.00
## 31142           1053       0.00
## 31143           1053       0.00
## 31144           1051     266.36
## 31145           1084      46.04
## 31146           1050       0.00
## 31147           1050       0.00
## 31148           1052     175.17
## 31149            926      63.35
## 31150            917     115.47
## 31151           1015   16389.75
## 31152           1022    5063.06
## 31153           1052       0.00
## 31154           2090     246.89
## 31155           1786    1621.26
## 31156           1053     911.85
## 31157           2101    3702.22
## 31158           2369       1.74
## 31159           1050       0.00
## 31160           1046    2449.31
## 31161           1333     172.06
## 31162           1784     182.33
## 31163           1011      38.09
## 31164           1021     248.04
## 31165           2291     165.80
## 31166           1046    1353.50
## 31167           2329    3144.04
## 31168           1043      36.21
## 31169           1544     633.87
## 31170           2246     109.49
## 31171           1051     115.59
## 31172           1052       0.00
## 31173           2183       0.00
## 31174           1565     219.75
## 31175           1052      51.16
## 31176           1038    9451.07
## 31177           1037     250.80
## 31178            925      75.00
## 31179           1051     105.08
## 31180           1052       0.00
## 31181           1051      63.46
## 31182           1077     390.00
## 31183           1052    3535.35
## 31184           1247     564.55
## 31185           1482   47051.87
## 31186           1144     636.41
## 31187           1046     468.74
## 31188           1506      11.49
## 31189           1729    1460.56
## 31190           1011     102.32
## 31191           1051     263.36
## 31192           1046     179.47
## 31193           1046      37.26
## 31194           1046    2343.41
## 31195           1046       0.00
## 31196           1043    1670.97
## 31197           1037       0.00
## 31198           1036     450.64
## 31199           1036      28.80
## 31200            877      87.37
## 31201            884     197.20
## 31202           1611     256.50
## 31203           1025     110.00
## 31204           1128    1324.83
## 31205           1024     297.55
## 31206           1041    2325.35
## 31207           1015       0.00
## 31208           1036     302.64
## 31209           1036     186.20
## 31210           1036     298.67
## 31211           1069     295.01
## 31212           1037     152.52
## 31213           1037       0.00
## 31214           1042    3039.38
## 31215           1042      82.77
## 31216           1043    4984.04
## 31217           1045     235.59
## 31218           1045     595.52
## 31219           1049       0.00
## 31221           1046     133.11
## 31222           1046     269.42
## 31223           1635      30.00
## 31224           1051     641.49
## 31225           1051     286.04
## 31226           1050    1016.39
## 31227           2256     139.62
## 31228           1028     861.96
## 31229           2126     382.27
## 31230           1495   31162.50
## 31231           1049     601.04
## 31232           1046       0.00
## 31233           1046     244.22
## 31234           2079     143.36
## 31235           1044   31179.68
## 31236           1044     205.70
## 31237           1080   66836.43
## 31238           1817     874.69
## 31239            672       0.00
## 31240           1191    2393.15
## 31241           1191       0.00
## 31242           1029     210.30
## 31243           1025     102.00
## 31244           1024     101.25
## 31245           1871       0.00
## 31246           1031     284.55
## 31247           1011       0.00
## 31248           2242     421.55
## 31249           1008       0.00
## 31250           1035      35.63
## 31251           1446       0.00
## 31252           1037    1370.02
## 31253           1042     452.99
## 31254           1044      91.97
## 31255           1044       0.00
## 31256           2239    1570.61
## 31257           2276     347.65
## 31258           1044       0.00
## 31259           1046     262.03
## 31260           1046    1629.74
## 31261           1046    2040.53
## 31262           2331     262.42
## 31263           2204     323.20
## 31264            897     389.67
## 31265           1477   13255.27
## 31266           1031     740.38
## 31267           1025     133.54
## 31268            979      86.22
## 31269           1045     536.85
## 31270           1784     543.89
## 31271           1046     178.58
## 31272           1045      56.68
## 31273           1044     209.16
## 31274           1803     239.83
## 31275           1043       0.00
## 31276           1897     467.06
## 31277           1043     102.75
## 31278           1044     180.26
## 31279           1044    4952.49
## 31280           1100       0.00
## 31281           1044    4915.29
## 31282           1038    2521.11
## 31283           1042   11788.27
## 31284           1037     183.94
## 31285           1035     394.05
## 31286           1036       0.00
## 31287            891     597.06
## 31288            934     224.33
## 31289           1029     464.74
## 31290           1032   18604.04
## 31291           1009       0.00
## 31292           1042     432.31
## 31293           1954    9085.65
## 31294           1045     496.00
## 31295           1043     336.06
## 31296            947       0.00
## 31297           1025     380.30
## 31298           1045       0.00
## 31299           1044     572.92
## 31300           1044       0.00
## 31301           1398      59.40
## 31302           1045     942.38
## 31303           1042     357.65
## 31304           1042     777.32
## 31305           1037     112.17
## 31306           1036       0.00
## 31307           1757    5885.26
## 31308            966     322.21
## 31309            973     200.97
## 31310           1015       0.00
## 31311           1029     726.54
## 31312           1909     937.28
## 31313            993     100.00
## 31314           1876   38366.92
## 31315           1037       0.00
## 31316           1266    1662.86
## 31317           1044   16269.95
## 31318           1699  232260.54
## 31319           1044     253.84
## 31320           1044     424.82
## 31321           1045     130.65
## 31322           1045     188.51
## 31323           1044     998.21
## 31324           1937     847.58
## 31325           2189       9.49
## 31326           1044      33.52
## 31327           1780     184.00
## 31328            758     372.10
## 31329           1007     100.00
## 31330           1031       0.00
## 31331           1032    1620.94
## 31332           1024    2008.02
## 31333           1044     417.44
## 31334           1043     104.07
## 31335           1189     196.02
## 31336           1043     102.37
## 31337           1044      58.12
## 31338           1043     274.55
## 31339           1044       0.00
## 31340           1518       0.00
## 31341           1044     114.51
## 31342           1038     100.23
## 31343           1035     722.04
## 31344            969     239.87
## 31345           1023       0.00
## 31346           2089      11.72
## 31347           2328   21493.55
## 31348           1025     130.49
## 31349           1032     345.25
## 31350           1011   19271.61
## 31351           1031    3947.63
## 31352           1011      71.54
## 31353            654    1610.72
## 31354            990     218.69
## 31355           1036      36.21
## 31356           2448   89855.94
## 31357           1036    1293.30
## 31358           1038     114.55
## 31359           1038     259.34
## 31360           1400     142.96
## 31361           1038       0.00
## 31362           1042     716.79
## 31363           1042     147.72
## 31364           1042     521.33
## 31365           1037    2085.08
## 31366           1037     327.79
## 31367           1036      56.68
## 31368           1037     877.06
## 31369           1737    3824.75
## 31370            624       0.00
## 31371           1017       0.00
## 31372           1023     297.70
## 31373           1042    1167.34
## 31374           1317     143.98
## 31375           1038     413.52
## 31376           1038     315.74
## 31377           1036    3248.54
## 31378           1576      86.98
## 31379           1025       0.00
## 31380           1025     192.11
## 31381           1057     602.83
## 31382           1023       0.00
## 31383           1029     104.37
## 31384           1017       0.00
## 31385           1029       0.00
## 31387           1036      57.85
## 31388           1036       0.00
## 31389           1035      57.85
## 31390           1038     145.63
## 31391           1038     354.40
## 31392           1037       0.00
## 31393            972      51.16
## 31394           1032     142.26
## 31395           1031       0.00
## 31396           1036     423.86
## 31397           1038     654.12
## 31398           1036       0.00
## 31399           1008     486.31
## 31400           1036       0.00
## 31401           1546    9062.56
## 31402           1010       7.97
## 31403           1009      58.21
## 31404           1284       0.00
## 31405           1032     217.90
## 31406           2270     719.95
## 31407            990    3682.13
## 31408            986     101.26
## 31409           1426     219.94
## 31410           1036     932.59
## 31411           1045      61.16
## 31412           1023    2994.11
## 31413           1024       0.00
## 31414           1665    3532.57
## 31415           1029     669.57
## 31416           1017    1188.23
## 31417           1016     234.91
## 31418           1032     186.61
## 31419           1031     588.51
## 31420           1031     239.85
## 31421           1030   25514.02
## 31422           1031     133.65
## 31423           1866    1378.88
## 31424           1029   24335.37
## 31425           1029    1223.22
## 31426           1036     224.27
## 31427           2259    3648.46
## 31428           1134      14.60
## 31429           1037     337.96
## 31430           1240     163.96
## 31431           1036     145.41
## 31432           1036     138.99
## 31433           1036       0.00
## 31434           1036       0.00
## 31435           1036    8441.23
## 31436           1036     115.07
## 31437           1029     164.39
## 31439            924       0.00
## 31440           1029       0.00
## 31441           1031     683.64
## 31442           1906     366.64
## 31443           1032    1528.11
## 31444           1032       0.00
## 31445           1032      79.26
## 31446           1025       0.00
## 31447           1025     586.88
## 31448           1025     107.40
## 31450           1427     526.43
## 31451           1022     353.07
## 31452           1799      11.72
## 31453            841     187.93
## 31454           1454    3605.37
## 31455           1971      34.76
## 31456           1035     366.84
## 31457           2155  106319.95
## 31458           1035     334.16
## 31459           1035       0.00
## 31460           1035     191.10
## 31461           1035    3154.03
## 31462           2157       0.00
## 31463            904     265.57
## 31464           1173     512.19
## 31465            967    1774.41
## 31466           1000     380.86
## 31467            995       0.00
## 31468           1022       0.00
## 31469           1024      76.98
## 31470           2094      36.21
## 31471           1024     832.75
## 31472           1025      67.50
## 31473           2549  392024.10
## 31474           1029       0.00
## 31475           2371       0.00
## 31476           1898    1238.41
## 31477           1028     433.37
## 31478           1029   11521.83
## 31479           1021    2299.35
## 31480           1021      59.50
## 31481           2121     419.32
## 31482           1014     140.53
## 31483           1074   22307.26
## 31484           1032     845.90
## 31485           1032      35.00
## 31486           1031     552.64
## 31487           2068   13184.10
## 31488           1031     798.74
## 31489           1011     905.09
## 31490           1466     491.06
## 31491           1149    4476.44
## 31492           2009     121.66
## 31493            869      86.22
## 31494            931     313.46
## 31495           1010     720.97
## 31496           1031       0.00
## 31497           1032    1254.27
## 31498           1031     191.53
## 31499           1030      56.32
## 31500           1029     736.03
## 31501           1029     320.25
## 31502           1030      36.21
## 31503           1030     382.92
## 31504           1011     637.21
## 31505           1021       0.00
## 31506           1530  149076.73
## 31507           1016     278.69
## 31508           1028     420.81
## 31509           1028     313.57
## 31510           1029     830.32
## 31511           1449    1211.21
## 31512           1025    1626.04
## 31513           1025      14.19
## 31514           1729    4661.78
## 31515           1028     166.78
## 31516           2078    1746.59
## 31517            839     156.08
## 31518           1023       0.00
## 31519           2157     377.85
## 31520           1022    1812.43
## 31521           1017      51.16
## 31522           1029     502.51
## 31523           1597      36.21
## 31524           2302       0.00
## 31525            930       0.00
## 31526            947     595.84
## 31527            986     218.75
## 31528           1030     341.85
## 31529           1573     758.12
## 31530           1030     484.33
## 31531           1031     304.80
## 31532           1022      87.37
## 31533           1022       0.00
## 31534           2133       0.00
## 31535           1025     736.37
## 31536            864       0.00
## 31537            958       0.00
## 31538              7       0.00
## 31539           1025     492.39
## 31540           1025       0.00
## 31541           1025     262.05
## 31542           1029     696.39
## 31543           1029       0.00
## 31544           1023     128.22
## 31545           1667    1380.45
## 31546           2047      49.00
## 31547           1015     195.53
## 31548           1029     573.53
## 31549           1011     152.41
## 31550           1009    1144.73
## 31551           1008      51.16
## 31552           1008       0.00
## 31553            974    4102.22
## 31554            799       0.00
## 31555           1219    3342.13
## 31556           1029     266.41
## 31557           2072       0.00
## 31558           1022      91.93
## 31559           1021     786.79
## 31560           1028      39.74
## 31561           1028     187.88
## 31562           1867       0.00
## 31563           1028    1123.28
## 31564           1025     170.22
## 31565            839      97.95
## 31566            506     946.62
## 31567           1508    2818.74
## 31568           1025     198.81
## 31569           1082     429.32
## 31570           1028    5255.41
## 31571           1028     131.85
## 31572           1133    6513.60
## 31573           1023      90.13
## 31574           3312   51992.12
## 31575           1024     113.12
## 31576           1025     622.84
## 31577           1017     106.52
## 31578           1016    3675.00
## 31579           1008     864.36
## 31580           1009       9.77
## 31581           1291   33436.49
## 31582            997       0.00
## 31583           1211     249.60
## 31584            794    1694.13
## 31585           1056    4850.00
## 31586           2097   63514.69
## 31587           1009     157.49
## 31588           1008     316.41
## 31589           1008     130.68
## 31590           1016       0.00
## 31591           1017    1337.27
## 31592           1021     101.25
## 31593           1021       0.00
## 31594           1015   42375.67
## 31595           1015       0.00
## 31596           1015     318.50
## 31597           1016       0.00
## 31598           1956       0.00
## 31599           1024     220.43
## 31600           1023     435.50
## 31601           1225       0.00
## 31602           1781      79.26
## 31603           1025     115.52
## 31604           1025      39.79
## 31605            904    2484.34
## 31606           2437   28002.57
## 31607           1726     601.03
## 31608           1024       0.00
## 31609           1024     670.00
## 31610           1689       0.00
## 31611           1022      44.72
## 31612           1022     436.21
## 31613           1023       0.00
## 31614           1014     204.40
## 31615           1015       0.00
## 31616           1017       0.00
## 31617           1016       0.00
## 31618           1010    1114.23
## 31619           1011     128.81
## 31620            990     121.64
## 31621           1002      66.68
## 31622            912       0.00
## 31623            951     484.80
## 31624            993     221.50
## 31625            997     129.24
## 31626           1016       0.00
## 31627           1017     831.20
## 31628           1018     170.87
## 31629           1015       0.00
## 31630           1477     880.31
## 31631           1022     695.84
## 31632           1023       0.00
## 31633           1023       0.00
## 31634           1023     614.06
## 31635           1023     194.41
## 31636           1021    4436.84
## 31637           1895    1935.56
## 31638            750     306.11
## 31639           1973     362.55
## 31640           1736    1090.13
## 31641           1018    9138.95
## 31642           1017     227.27
## 31643           1021      20.11
## 31644           2336      92.69
## 31645           1021     121.66
## 31646           1483      46.56
## 31647           1022      13.87
## 31648           1023     299.90
## 31649           1023     204.12
## 31650           1023      51.16
## 31651           1427    2731.11
## 31652           1024       0.00
## 31653           1024     139.46
## 31654           1010       0.00
## 31655           1010     186.99
## 31656           1008     951.08
## 31657           1008    2420.53
## 31658           1004    3634.47
## 31659            990       0.00
## 31660            988       0.00
## 31661            951     216.31
## 31662            995       0.00
## 31663           1003       0.00
## 31664           1008      78.63
## 31665           1007     575.41
## 31666           1533     405.67
## 31667           1007     461.15
## 31668           1011       0.00
## 31669           1022     151.33
## 31670           1022     274.00
## 31671           1022       0.00
## 31672           1022   32274.38
## 31674           1022     261.43
## 31675           1014      36.21
## 31676           1015     122.62
## 31677           1083     164.04
## 31678           1021      81.00
## 31679           1021      86.98
## 31680           1017     944.02
## 31681           1018    9606.59
## 31682           1418     156.62
## 31683           1016    2656.27
## 31684           1016  143594.24
## 31685           1016     620.55
## 31686           1097    1450.44
## 31687           1035     833.31
## 31688           1016      20.11
## 31689           1021     271.63
## 31690           1021   28605.65
## 31691           1021     203.14
## 31692           1021     114.15
## 31693           1021       0.00
## 31694           1014     392.67
## 31695           1014   13132.45
## 31696           1883     289.51
## 31697           1014     211.20
## 31698           1021       0.00
## 31699           1021     789.70
## 31700           1021      34.87
## 31701           1021     236.15
## 31702           1011     350.86
## 31703           1010       0.00
## 31704           1008     111.47
## 31705           2001      38.37
## 31706           1008    6685.09
## 31707           1011     753.35
## 31708           1010    1789.64
## 31709           1011     149.95
## 31710           1712   26678.88
## 31711           1014     753.35
## 31712           1014   17257.94
## 31713           1014     370.19
## 31714           1015     360.86
## 31715           1021     201.42
## 31716           1018    1245.75
## 31717           1017     175.25
## 31718           1601     372.17
## 31719           1245     223.19
## 31720           1016     719.05
## 31721           1016       0.00
## 31723            993     260.61
## 31724           1736     128.18
## 31725            945     216.10
## 31726            953       0.00
## 31727            961    1081.94
## 31728            913       0.00
## 31729            940     121.87
## 31730            749      91.97
## 31731            990     388.49
## 31732           1004     118.91
## 31733           2123   13907.45
## 31734           1016     182.58
## 31735           1954     362.67
## 31736           1018     214.29
## 31737           2333    1055.14
## 31738           1015       0.00
## 31739           1015       0.00
## 31740           1445     190.96
## 31741           1009   17717.42
## 31742           1011     274.43
## 31743           2191     100.00
## 31744            933       0.00
## 31745            946      15.19
## 31746           1011   25358.74
## 31747           1015       0.00
## 31748           1383    2802.17
## 31749           1015       0.00
## 31750           1015      25.95
## 31751           1015    1088.45
## 31752           1987    4978.73
## 31753           1016   26987.30
## 31754           1868   21045.39
## 31755           1000     328.95
## 31756            653     112.48
## 31757           2102    3822.88
## 31758           1287     384.27
## 31759            986     157.69
## 31760           1016       0.00
## 31761           1694   12748.84
## 31762           1015   19014.15
## 31763           1014     410.14
## 31764           1014     129.43
## 31765           1793     220.53
## 31766           1014       0.00
## 31767           1014     340.76
## 31768           1016    2461.80
## 31769           1016     186.81
## 31770           1016     762.66
## 31771           1016     764.56
## 31772           1016     342.86
## 31773           1011   17538.27
## 31774           1011    1999.99
## 31775           1011      40.49
## 31776           1008     178.02
## 31777           1010      10.25
## 31778           1010       0.00
## 31779            987     239.46
## 31780           2523     659.20
## 31781           1477    1407.04
## 31782           1401   22222.84
## 31783           1004       0.00
## 31784           2061     531.51
## 31785           1009     169.00
## 31786           1402       0.00
## 31787           1010     164.77
## 31788           1008     170.25
## 31789           1008     466.25
## 31790           2152     113.38
## 31791           1014     379.34
## 31792           1015     232.48
## 31793           1015   14144.17
## 31794           1163   26509.33
## 31795           1015      41.81
## 31796           1886     369.27
## 31797           1011      66.68
## 31798           1725       0.00
## 31799           1014      46.99
## 31800           1014     144.96
## 31801           1014     105.85
## 31802            940     107.10
## 31803            962     128.42
## 31804           1014       0.00
## 31805           1014       0.00
## 31806           1014    6445.85
## 31807           1015     217.42
## 31808           1014       0.00
## 31809           1714     423.10
## 31810           1014     390.22
## 31811           1011      48.60
## 31812           1010     271.69
## 31813           1010      88.29
## 31814           1010      63.06
## 31815           1449   70611.15
## 31816           1000     283.80
## 31817           1000      66.68
## 31818           1331     312.46
## 31819           1092   32936.37
## 31820           2258   23741.27
## 31821            994     211.36
## 31822           1095    7280.21
## 31823            981   27812.71
## 31824            849     229.28
## 31825            786     948.50
## 31826           1417     199.26
## 31827            987     421.69
## 31828            990     527.52
## 31829           3453  125780.49
## 31830           1357     367.55
## 31831           1003     226.29
## 31832           2243    4888.46
## 31833           1010       0.00
## 31834           1009      91.32
## 31835           1008     940.17
## 31836           1011      51.16
## 31837           1010     189.39
## 31838           1008       0.00
## 31839           1953    1007.80
## 31840           1011       0.00
## 31841           1519       0.00
## 31842           1008     122.48
## 31843            870    2937.09
## 31844            917     366.33
## 31845           1014     242.76
## 31846           1014     137.51
## 31847           1008      43.49
## 31848           1010     105.08
## 31849           2675   41586.53
## 31850           1372    1277.75
## 31851           1403   17950.31
## 31852           1010     779.02
## 31853           1004     331.79
## 31854           1004    1219.38
## 31855            996      51.16
## 31856           2294     574.78
## 31857            994       0.00
## 31858            993     350.54
## 31859            485   31457.73
## 31860            883     114.17
## 31861            958     217.07
## 31862            973     335.13
## 31863            993     458.42
## 31864           1003       0.00
## 31865           1009     299.32
## 31866           1954     963.19
## 31867           1008     936.73
## 31868           1010       0.00
## 31869           1007     768.71
## 31870           1007     865.82
## 31871           1007     219.52
## 31872           1007     593.21
## 31873           1007      11.72
## 31874           2350     660.46
## 31875           1010    2166.62
## 31876           1010       0.00
## 31877           1010     515.28
## 31878           1009       0.00
## 31879           1009    2166.62
## 31880           1010       0.00
## 31881            996    2029.81
## 31882           1471     242.35
## 31883           1650     176.94
## 31884            995     128.33
## 31885            995    2408.78
## 31886           1393       0.00
## 31887           1141     175.01
## 31888            993     675.85
## 31889            990       0.00
## 31890            988     980.81
## 31891            997     103.99
## 31892            996     263.45
## 31893           1008     274.35
## 31894           1008     191.51
## 31895           1010      49.90
## 31896           1008     218.97
## 31897           1007    1326.76
## 31898           1007     834.45
## 31899           1833     338.60
## 31900            945       0.00
## 31901           1307     276.99
## 31902           1008      64.00
## 31903           1008     249.88
## 31904           1008     755.45
## 31905           1008       0.00
## 31906           2268     106.58
## 31907            997      51.16
## 31908           1003     169.49
## 31909           1003     439.56
## 31910           1585     282.26
## 31911           1000    8797.11
## 31912           1002     125.54
## 31913           1004    1127.80
## 31914           1004     112.82
## 31915           1147   56222.96
## 31916            990    2604.41
## 31917            990   23243.15
## 31918           1088     488.26
## 31919           1788       0.00
## 31920           1218       0.00
## 31921            955    6332.50
## 31922            925     159.68
## 31923            980      71.79
## 31924           1192       0.00
## 31925            990       0.00
## 31926            990      89.92
## 31927            993       0.00
## 31928            995    1542.88
## 31929            995      47.07
## 31930           1020     261.49
## 31931           1003     421.72
## 31932           1004       0.00
## 31933           2233    2303.04
## 31934           1002     375.69
## 31935           1003     471.78
## 31936           1008   19863.23
## 31937           1008     115.60
## 31938           1008     489.24
## 31939           1008      42.09
## 31940           1007    1544.50
## 31941           1007     197.56
## 31942           1007     151.80
## 31943           1007     766.75
## 31944           1007     271.97
## 31945            919       0.00
## 31946            559      53.34
## 31947           1329     188.88
## 31948           1007    1704.09
## 31949           1002    1054.16
## 31950           1218   27669.84
## 31951            997      85.54
## 31952           1004     831.86
## 31953            994       0.00
## 31954            993     541.76
## 31955           1046   16184.76
## 31956           1128   19293.61
## 31957            988     767.49
## 31958            981    1708.88
## 31959            980      12.58
## 31960           2207   26832.88
## 31961            976      46.04
## 31962            483      36.21
## 31963            960      63.74
## 31964           1548       0.00
## 31965            972     169.85
## 31966           1523      87.37
## 31967           1317   25797.10
## 31968            995     777.28
## 31969           1004     141.82
## 31970           1003     917.99
## 31971           2136    1978.45
## 31972           1004     336.07
## 31973           1004       0.00
## 31974           1403      65.18
## 31975           1000      82.50
## 31976           2281     498.46
## 31977            996     274.39
## 31978           1002       0.00
## 31979           1002     293.95
## 31980           2155    2037.15
## 31981           1003     102.69
## 31982           1003     219.00
## 31983           1003    1156.99
## 31984            973     117.84
## 31985            962       0.00
## 31986            946     864.06
## 31987           2046     881.22
## 31988           1003     370.69
## 31989           1003     625.00
## 31990            994       0.00
## 31991            511      43.40
## 31992            995     698.06
## 31993            995     429.01
## 31994            994     135.00
## 31995           1819     345.98
## 31996            988       0.00
## 31997            989      62.65
## 31998            983     157.32
## 31999           1680    1375.82
## 32000           1000      17.70
## 32001           1000     110.89
## 32002           1000     590.40
## 32003           1000   26879.06
## 32004            997     291.67
## 32005            997   28025.49
## 32006            997       0.00
## 32007            974   78929.72
## 32008            857       0.00
## 32009            857       0.00
## 32010           1327     203.05
## 32011            912    9766.96
## 32012            594    1000.52
## 32013            976    3749.83
## 32014            997       0.00
## 32015           1000       0.00
## 32016            981     134.00
## 32017            989   19596.02
## 32018            990     647.37
## 32019            988    4239.13
## 32020            988     153.75
## 32021            988    2959.57
## 32022            995     199.50
## 32023            995     113.06
## 32024           2316     293.64
## 32026            960     192.97
## 32027            993    1209.82
## 32028            990     151.60
## 32029           2114    2385.89
## 32030           2240      84.61
## 32031            990     469.00
## 32032            990       0.00
## 32033            981     665.06
## 32034            980      47.07
## 32035           3367   24925.83
## 32036            983       0.00
## 32037            987       0.00
## 32038            997    2052.39
## 32039            996     220.71
## 32040            996     337.49
## 32041           1000     538.40
## 32042           1000     386.35
## 32043            840    1663.89
## 32044            961     110.00
## 32045           2210     402.31
## 32046            457       0.00
## 32047            916   24908.19
## 32048            996    9761.81
## 32049            996    2564.46
## 32050            987       0.00
## 32051            981       0.00
## 32052            993     285.57
## 32053            993     283.77
## 32054            993     425.47
## 32055            974      40.98
## 32056            993     189.81
## 32057            990     286.90
## 32058            994       0.00
## 32059            995      62.01
## 32060           1733    2958.63
## 32061            986     954.98
## 32062            996       0.00
## 32063            996     601.25
## 32064           2313   22512.65
## 32065            952       0.00
## 32066            981       0.00
## 32067           1485     899.18
## 32068            980   12680.23
## 32069           2109     593.26
## 32070            995     193.57
## 32071           2335     204.90
## 32072            951     338.61
## 32073            972     260.83
## 32074            990     561.62
## 32075            993     650.25
## 32076            993     280.24
## 32077            993       0.00
## 32078            993     248.85
## 32079            995     927.12
## 32080            994    1837.57
## 32081            994       0.00
## 32082            995      25.00
## 32083           2263      99.03
## 32084            980     120.37
## 32085            987     442.07
## 32086           2186    1208.02
## 32087            972     142.64
## 32088           2294     141.70
## 32089            987     621.61
## 32090           1377     807.63
## 32091            986     856.61
## 32092            982     181.96
## 32093            982     814.44
## 32094            980     537.89
## 32095            981       0.00
## 32096            989   18039.77
## 32097           1835     461.20
## 32098            988     203.76
## 32099           1051     112.50
## 32100            988    1239.14
## 32101           1471    1958.69
## 32102            994      35.19
## 32103           1707     347.04
## 32104            993     131.66
## 32105            975     266.84
## 32106            976       0.00
## 32107            959     378.84
## 32108            955       0.00
## 32109            958   15484.97
## 32110            952     630.84
## 32111            974       0.00
## 32112           1454     130.04
## 32113           1856     107.16
## 32114           1658    1248.26
## 32115            988    1792.04
## 32116            988     146.53
## 32117            988     210.39
## 32118            987       0.00
## 32119            987    2329.53
## 32120           1323      51.16
## 32121            980     238.41
## 32122           2137       0.00
## 32123            987     108.42
## 32124            960      37.36
## 32125            972    6427.54
## 32126            930     171.41
## 32127           1823      87.46
## 32128            986     211.34
## 32129            986    1060.94
## 32130            980    1935.25
## 32131            981     346.83
## 32132            981     204.74
## 32133            987    7896.97
## 32134            988       0.00
## 32135            990       0.00
## 32136           1271     509.89
## 32137           1402     107.35
## 32138            995    1177.24
## 32139           1502       0.00
## 32140            993      51.16
## 32141            990      44.96
## 32142            993    5823.11
## 32143            974    1200.11
## 32144            976   14292.78
## 32145            912     750.97
## 32146            940       0.00
## 32147           1857     119.87
## 32148           2147     122.57
## 32149           1249      10.75
## 32150           1295       9.99
## 32151            944    2793.14
## 32152            993   32315.04
## 32153            993       0.00
## 32154           2290   15068.56
## 32155            990       0.00
## 32156            990    1545.79
## 32157            989     931.77
## 32158           1309     766.40
## 32159            989      41.25
## 32160            980       0.00
## 32161            980      61.35
## 32162           2189       0.00
## 32163            982    3229.28
## 32164            982      48.86
## 32165            982     182.20
## 32166            847       0.00
## 32167            961     253.04
## 32168            972     177.76
## 32169            930      97.96
## 32170            919    4827.32
## 32171            980     138.67
## 32172           1797     305.18
## 32173           2065      64.01
## 32174            981       0.00
## 32175           1252     243.34
## 32176            988      20.11
## 32177            988      84.68
## 32178            989     542.96
## 32179            990      19.04
## 32180           2403     546.39
## 32181           1532    3536.30
## 32182            766     222.84
## 32183            993     337.23
## 32184            932    1086.70
## 32185            961       0.00
## 32186            344       0.00
## 32187            988     212.52
## 32188           1881    6861.00
## 32189            980     429.40
## 32190            983     170.84
## 32191            982       0.00
## 32192            967       0.00
## 32193           1800   52455.85
## 32194            988     808.87
## 32195            988       0.00
## 32196            987       0.00
## 32197           2233     631.00
## 32198            975     391.98
## 32199            976       0.00
## 32200           1297   21153.93
## 32201           1917    1688.22
## 32202            974     165.50
## 32203            988    2317.60
## 32204            981     554.94
## 32205            982     518.12
## 32206            987      83.23
## 32207            987     113.14
## 32208           2058      66.68
## 32209            973     406.65
## 32210            969    9338.74
## 32211            961     175.00
## 32212            946    9607.85
## 32213            986       0.00
## 32214            987     517.35
## 32215            987       0.00
## 32216           2297     102.94
## 32217            981     146.96
## 32218            981       0.00
## 32219            976     517.47
## 32220            980      71.92
## 32221            987   18833.72
## 32222            974     168.84
## 32223            976       0.00
## 32224           2866   63152.85
## 32225            786      45.00
## 32226            889   22557.66
## 32227           1119     326.00
## 32228            891    1467.53
## 32229           2092  351658.41
## 32230            953     626.55
## 32231            973       0.00
## 32232            967       0.00
## 32233            975     832.97
## 32234            974     108.67
## 32235            987      42.51
## 32236           1176      81.09
## 32237            980    1098.40
## 32238            976     191.97
## 32239            981       0.00
## 32240           3199   67454.50
## 32241            983       0.00
## 32242            982       0.00
## 32243           1697     776.55
## 32244           1874      56.68
## 32245            982      56.68
## 32246            982     219.07
## 32247            986      49.52
## 32248            986     245.69
## 32249            986       0.00
## 32250            744       0.00
## 32251            962     337.18
## 32252            973     318.85
## 32253           2194     152.98
## 32254           1663    1337.40
## 32255           1736     628.18
## 32256            982     334.68
## 32257            982     170.96
## 32258           1687     138.29
## 32259            983     492.41
## 32260           1822    1925.73
## 32261            981     117.27
## 32262            981     488.12
## 32263           2005     505.40
## 32264           1811  428263.33
## 32265           2287    6961.47
## 32266            976     413.53
## 32267           1291     168.15
## 32268            976    1207.93
## 32269            951     115.49
## 32270            968    1352.15
## 32271            967       0.00
## 32272            966       0.00
## 32273            961       0.00
## 32274            979       0.00
## 32275            245     604.39
## 32276            980      41.40
## 32277           1028    5217.25
## 32278           1911       0.00
## 32279           2011  172298.19
## 32280            332       0.00
## 32281            881       0.00
## 32282           2226    2510.90
## 32283            951      55.00
## 32284           1506       0.00
## 32285           1802     855.38
## 32286            982       0.00
## 32287            981     118.76
## 32288            980     874.09
## 32289            976     175.51
## 32291            974     324.01
## 32292            905       0.00
## 32293            962   18963.24
## 32294            976   20039.68
## 32295            979     622.54
## 32296            980     230.15
## 32297            981     477.60
## 32298            779      75.43
## 32299            960     176.24
## 32300            795    1089.71
## 32301            973     142.31
## 32302           1443    3988.19
## 32303            981     354.21
## 32304            981    2120.69
## 32305           2059   22598.40
## 32306            976      72.21
## 32307           1489     681.90
## 32308            976       0.00
## 32309            976     517.80
## 32310           1824   12447.17
## 32311            974      64.32
## 32312            836     185.54
## 32313            891      51.16
## 32314            962     320.77
## 32315            969       0.00
## 32316            969     349.36
## 32317            973     625.71
## 32318           2202     214.43
## 32319            934    4891.11
## 32320            925      44.25
## 32321           1995       0.00
## 32322            974     343.86
## 32323           1898     159.63
## 32324           1318    2011.13
## 32325            980     119.24
## 32326           2006      25.95
## 32327           1246      38.06
## 32328            981     153.04
## 32329            980       0.00
## 32330            980     164.74
## 32331           1625       0.00
## 32332           2105   67054.20
## 32333            812     197.87
## 32334            932    1909.86
## 32335           2802   63841.77
## 32336            966      51.16
## 32337            961     111.10
## 32338            953     410.10
## 32339           1785     686.97
## 32340           2100     871.75
## 32341           1405      14.60
## 32342            974      80.38
## 32343           1276   35767.93
## 32344            974     138.63
## 32345            974     206.20
## 32346            974       0.00
## 32347            983   57694.82
## 32348            961     466.60
## 32349           1611     120.24
## 32350            969      43.49
## 32351            968       0.00
## 32352            969       0.00
## 32353            969     585.49
## 32354            952    1320.43
## 32355            973       0.00
## 32356            758     340.30
## 32357            974     181.25
## 32358           1316     706.27
## 32359            976     218.35
## 32360           2303     891.85
## 32361            975      48.60
## 32362            975       0.00
## 32363           1844    1052.35
## 32364            784      74.38
## 32365            973       0.00
## 32366            973     611.54
## 32367            952    3398.75
## 32368            969    2298.83
## 32369           1882      66.68
## 32370            972       0.00
## 32371            967     469.05
## 32372            962     324.04
## 32373            962     340.12
## 32374            962       0.00
## 32375            966      66.68
## 32376            961     602.77
## 32377            954     735.67
## 32378            976    8852.29
## 32379            974     926.91
## 32380           1272   38062.89
## 32381            766     107.40
## 32382            962     613.16
## 32383            967      66.67
## 32384            969     106.32
## 32386            973      66.45
## 32387            974     391.42
## 32388            969     616.36
## 32389            954     118.76
## 32390            953     266.43
## 32391            975       0.00
## 32392           1802       0.00
## 32393           2075     126.93
## 32394            974      93.28
## 32395            974     346.46
## 32396           1174     297.23
## 32397           2251     347.87
## 32398            969      88.29
## 32399            969    2621.55
## 32400            973    1195.89
## 32401            973     524.08
## 32402            969     635.03
## 32403            969       0.00
## 32404           1889     271.60
## 32405            968     153.28
## 32406            953       0.00
## 32407            953    1616.70
## 32408           1550   14316.86
## 32409            959       0.00
## 32410           1470    1593.49
## 32411            723     195.16
## 32412            974       0.00
## 32413            906      45.00
## 32414            674      10.62
## 32415           1078     901.17
## 32416           2214   70298.15
## 32417           1782     225.66
## 32418            958   14204.17
## 32419            968       0.00
## 32420            968     174.03
## 32421            969      50.96
## 32422            973    1059.51
## 32423            972     235.79
## 32424            972     135.48
## 32425           1069     541.31
## 32426            931       0.00
## 32427            738     228.93
## 32428            814     147.09
## 32429            972     191.31
## 32430            972    2370.47
## 32431            972     345.58
## 32432            972     396.04
## 32433            973       0.00
## 32434           1341  244381.55
## 32435            968   28102.98
## 32436            967     304.50
## 32437           2850   11347.22
## 32438            960   14799.90
## 32439            958     183.30
## 32440            955     241.53
## 32441           1229       0.00
## 32442            948     187.28
## 32443            946      41.40
## 32444            638     253.20
## 32445            832     324.78
## 32446            888     140.96
## 32447            987       0.00
## 32448            909    2100.00
## 32449            857       0.00
## 32450            861       0.00
## 32451           2502   24678.91
## 32452           1532     108.32
## 32453            960       0.00
## 32454            968      51.16
## 32455            967    2978.69
## 32456           1276     203.53
## 32457            969     233.91
## 32458            969     140.74
## 32459            969     243.11
## 32460            969      84.61
## 32461            969       0.00
## 32462           2297     340.82
## 32463            923     151.26
## 32464            919     835.16
## 32465            657     135.24
## 32466           1674       0.00
## 32467            967      64.00
## 32468           2268     189.64
## 32469           1352   12964.46
## 32470            968     788.21
## 32471           1974     343.94
## 32472            967       0.00
## 32473            965     160.94
## 32474            962     236.27
## 32475            955       0.00
## 32476           2011     108.61
## 32477            954    1202.89
## 32478            953     243.15
## 32479            891     616.54
## 32480            912    1831.92
## 32481            953       0.00
## 32482            962       9.99
## 32483            967    2041.75
## 32484            967    4246.47
## 32485            952     274.61
## 32486            982   32441.23
## 32487           2038   15098.39
## 32488            962    2874.25
## 32489           1598     176.34
## 32490            961      59.35
## 32491            955     446.99
## 32492            806     249.96
## 32493            954      19.40
## 32494            954       0.00
## 32495            961     173.17
## 32496           2099     278.40
## 32497            960     126.42
## 32498            960     120.54
## 32499            965     356.88
## 32500            962      86.22
## 32501            962     806.57
## 32502           2240      40.93
## 32503            962     233.68
## 32504            967       0.00
## 32505            967     708.64
## 32506            967       0.00
## 32507            967      89.38
## 32508            967     165.70
## 32509            967     248.02
## 32510            967     363.92
## 32511            967     809.18
## 32512           1228  130785.08
## 32513            922     199.97
## 32514            932     581.56
## 32515           1563      91.97
## 32516            964   18737.66
## 32517           2176    6897.38
## 32518           2679   92851.32
## 32519            967      96.79
## 32520            962     340.17
## 32521            962    1529.46
## 32522            960    2382.17
## 32523            960     320.77
## 32524            961     427.75
## 32525            955       0.00
## 32526            786      45.00
## 32527            776      36.21
## 32528           1963       0.00
## 32529            958      57.75
## 32530            961       0.00
## 32531            960       0.00
## 32532            961     302.87
## 32533            961      67.50
## 32534           2290     428.95
## 32535           1611     204.39
## 32536            962     169.47
## 32537            962      68.98
## 32538            965     122.33
## 32539            965    1144.13
## 32540           1026   16908.45
## 32541           1137       0.00
## 32542            966      24.18
## 32543            967    4443.57
## 32544            953     309.82
## 32545            951    1731.17
## 32546            946     117.92
## 32547            945     434.00
## 32548            940       0.00
## 32549            940     100.00
## 32550            849     631.32
## 32551            888     114.17
## 32552            911       0.00
## 32553            940      94.80
## 32554           2460     424.44
## 32555            974   29560.63
## 32556            932       0.00
## 32557            947     116.82
## 32558           1234     395.87
## 32559           1404     196.91
## 32560            962       0.00
## 32561            962       0.00
## 32562            961      10.57
## 32563            960     259.83
## 32564            960       0.00
## 32565            960     218.87
## 32566            958     118.33
## 32567            959     180.82
## 32568            953       0.00
## 32569            953      86.22
## 32570           1353     147.47
## 32571            903    1448.39
## 32572            807   30709.62
## 32573            958       0.00
## 32574            958     761.61
## 32575            954       0.00
## 32576            959       0.00
## 32577            959       0.00
## 32578            961       0.00
## 32579            961     424.02
## 32580           1057     100.76
## 32581            952     122.99
## 32582            931      91.97
## 32583            934      35.00
## 32584            937      87.37
## 32585            939     207.82
## 32586            944     178.20
## 32587           2317     185.52
## 32588            960     210.67
## 32589            960       0.00
## 32590            958   13063.97
## 32591           2244   11102.01
## 32592            960       0.00
## 32593            961    1382.70
## 32594           2245     555.40
## 32595           1730     391.01
## 32596           2229    9707.01
## 32597            952       0.00
## 32598           1518   83336.41
## 32599            951     269.33
## 32600            951     179.85
## 32601            961       0.00
## 32602            961   13922.84
## 32603           1673     366.83
## 32604            959      68.01
## 32605            959    1578.47
## 32606           1589      96.99
## 32607            960     151.06
## 32608            960     135.21
## 32609           1425     352.71
## 32610           1190    7460.01
## 32611            954    2114.14
## 32612            955     136.21
## 32613           1510    1715.15
## 32614            934      84.61
## 32615            923   10040.31
## 32616            923     169.78
## 32617            849    1523.33
## 32618            786     130.40
## 32619            805     228.80
## 32620            888     232.63
## 32621           1581   52065.70
## 32622            924     757.55
## 32623            918     118.20
## 32624           1063     368.40
## 32625            952     220.89
## 32626            954      75.36
## 32627            955     122.43
## 32628           1027     580.85
## 32629            954    1826.27
## 32630            959      15.08
## 32631            959     191.48
## 32632            959      60.00
## 32633            959     156.91
## 32634            958    3749.47
## 32635            958     752.15
## 32636            951      51.16
## 32637            951       0.00
## 32638           1490   19243.93
## 32639            952     125.05
## 32640            952       0.00
## 32641           1841     202.68
## 32642            952      18.10
## 32643            952       0.00
## 32644            947     120.95
## 32645            948     291.00
## 32646            946     785.89
## 32647           1282   11750.20
## 32648            786      60.00
## 32649            764       0.00
## 32650            835     173.13
## 32651            108      89.88
## 32652            945       0.00
## 32653            947     101.15
## 32654            952     210.67
## 32655            952     105.08
## 32656            951     171.16
## 32657            951     217.20
## 32658            944     115.86
## 32659            958       0.00
## 32660            958       0.00
## 32661            955    1293.17
## 32662           1202     450.08
## 32663            955     249.14
## 32664            955     212.81
## 32665            953     926.12
## 32666            938     805.55
## 32667            919     196.18
## 32668            920    4981.57
## 32669            930     512.54
## 32670            931     522.26
## 32671           1234      70.35
## 32672            681     132.49
## 32673            911      29.19
## 32674            862       0.00
## 32675           1834    3590.55
## 32676            953     289.03
## 32677            954     351.40
## 32678           2103    5834.11
## 32679            955     152.13
## 32680            955     274.25
## 32681           1102     450.15
## 32682           3480     173.17
## 32683           1932      70.16
## 32684            951     380.34
## 32685            952     184.40
## 32686           1453   11706.74
## 32687            952       0.00
## 32688            948    1918.21
## 32689           1834   71010.65
## 32690            946     206.94
## 32691            742    1119.61
## 32692           1969    7374.77
## 32693           2171   46995.69
## 32694           1779     933.89
## 32695            947   26313.18
## 32696            948      51.20
## 32697            952      84.61
## 32698           1040   21675.33
## 32699            951      72.42
## 32700           1752     470.50
## 32701            953     106.27
## 32702           1206   24841.93
## 32703           1218    2930.24
## 32704            953       0.00
## 32705            939       0.00
## 32706           2240     191.14
## 32707            840    3149.39
## 32708            932    1908.46
## 32709            951    1053.66
## 32710            956   11889.18
## 32711           1350    1490.47
## 32712            952     205.12
## 32713            952     249.04
## 32714            951     186.97
## 32715            948      43.88
## 32716           1969    1509.17
## 32717            953     114.14
## 32718           1046     507.30
## 32719           1623       0.00
## 32720            882       0.00
## 32721            934    2538.99
## 32722            919       0.00
## 32723            932     146.50
## 32724            953     186.67
## 32725            953     831.76
## 32726            952   25278.98
## 32727           1555    4769.96
## 32728            947       0.00
## 32729           1783       0.00
## 32730           1995     634.29
## 32731            945     501.36
## 32732            952     327.88
## 32733           1512       0.00
## 32734            952      11.72
## 32735            951     202.99
## 32736           2274     792.89
## 32737            952     287.15
## 32738           1217      66.68
## 32739           1167   14074.55
## 32740            860     279.30
## 32741            951     160.24
## 32742            951    6554.00
## 32743            952     162.69
## 32744           1611     445.08
## 32745            952     557.58
## 32746            952     116.47
## 32747            952     147.06
## 32748            946    1414.54
## 32749            948    6233.64
## 32751           1337       0.00
## 32752            931      25.00
## 32753           1066    1210.67
## 32754            939     422.90
## 32755           1914    1411.35
## 32756            940     143.16
## 32757            920    6518.73
## 32758           3219   17420.21
## 32759            938      87.89
## 32760            715     770.81
## 32761           1425    2272.20
## 32762            895      49.11
## 32763            939     588.00
## 32764            937     203.55
## 32765           1199   16598.24
## 32766            945     110.92
## 32767            946     178.20
## 32768            946     402.77
## 32769           1316    7868.68
## 32770            952   13175.08
## 32771            951       0.00
## 32772           1673     157.47
## 32773            948      21.99
## 32774           1207       0.00
## 32775            944       0.00
## 32776           2065    7269.63
## 32777            730     314.47
## 32778            902     556.18
## 32779            915     128.42
## 32780           1540   14881.62
## 32781           2097     248.40
## 32782            948       0.00
## 32783           2091     218.81
## 32784            951     222.06
## 32785            946      41.25
## 32786            945     709.72
## 32787            944     622.41
## 32788            947      44.25
## 32789            947     117.84
## 32790           1890       0.00
## 32791            938     350.88
## 32792            938     168.10
## 32793            919     182.09
## 32794            930      62.16
## 32795           1323       0.00
## 32796            911    5701.62
## 32797            940       0.00
## 32798            940     263.22
## 32799            940      43.56
## 32800            919     116.10
## 32801           2274    1098.55
## 32802            945     149.21
## 32803           1436     550.54
## 32804            946     133.72
## 32805            945      99.59
## 32806            786     823.11
## 32807            895    1093.25
## 32808            945     672.28
## 32809            944      82.71
## 32810           1248     351.52
## 32811           2050    1947.87
## 32812            932       0.00
## 32813            940     677.51
## 32814            939    1157.38
## 32815            940     439.30
## 32816            924    1019.30
## 32817           2163       0.00
## 32818            934    1845.62
## 32819            946     370.55
## 32820            947     262.10
## 32821            944     516.34
## 32822            892    1112.96
## 32823            912     538.73
## 32824            911     190.37
## 32825            911     173.87
## 32826            877     858.27
## 32827           1552       0.00
## 32828           1663      64.00
## 32829            946       0.00
## 32830           1713     393.58
## 32831            937      86.56
## 32832            937     323.28
## 32833            937    1324.41
## 32835            938     556.42
## 32836            930     143.81
## 32837            940     201.88
## 32838            931     228.48
## 32839           1261    1177.80
## 32840            378      41.80
## 32841           1112     501.60
## 32842           2205      48.60
## 32843            904     314.40
## 32844            891       0.00
## 32845            931     168.33
## 32846            930     344.68
## 32847            940     558.68
## 32848           2019     211.43
## 32849            947     133.02
## 32850            927       0.00
## 32851           2011   90892.39
## 32852           1421     150.52
## 32853            944      95.00
## 32854             62       0.00
## 32855            899     232.77
## 32856            881     358.45
## 32857            944     663.93
## 32858            934     198.95
## 32859            934     118.03
## 32860            938     112.46
## 32861           1122     165.79
## 32862            924     175.21
## 32863            940     209.92
## 32864            940     117.92
## 32865           1954      77.17
## 32866            940     681.16
## 32867           1700     137.99
## 32868            919       0.00
## 32869            931      86.54
## 32870            931    1542.38
## 32871            931       0.00
## 32872           2147     173.85
## 32873            932     131.63
## 32874            940   16420.65
## 32875            940     263.46
## 32876            940     240.86
## 32877           1914     156.43
## 32878           2339   16372.15
## 32879           1854   15615.89
## 32880            938     505.75
## 32881            938       0.00
## 32882            939     123.36
## 32883            934     299.00
## 32884            934       0.00
## 32885            944      35.00
## 32886            944     196.93
## 32887            895    4435.71
## 32888            882     705.70
## 32889            934     192.50
## 32890            938     211.16
## 32891           1374    1581.75
## 32892           1602   11748.62
## 32893            963     319.26
## 32894            924     528.11
## 32895            939     265.33
## 32896           1525       0.00
## 32897            919     111.57
## 32898            905     325.71
## 32899            857     430.84
## 32900           1365      80.63
## 32901            926      65.01
## 32902            938     800.53
## 32903            938     177.25
## 32904            938    1211.76
## 32905            932     118.76
## 32906            932     858.18
## 32907            861       0.00
## 32908            904     225.62
## 32909            892     881.96
## 32910           1423     373.60
## 32911            932    3156.59
## 32912            939     168.29
## 32913            888       0.00
## 32914            939      18.46
## 32915            938     286.42
## 32916           2031       0.00
## 32917           1978     484.44
## 32918            926      12.07
## 32919            597       0.00
## 32920            896    1605.78
## 32921            905     522.83
## 32922            909     792.34
## 32923            877     155.03
## 32924           1554       0.00
## 32925            930       0.00
## 32926            926     535.06
## 32927           1439    1222.90
## 32928            919    2381.05
## 32929            919     877.64
## 32930            937     819.81
## 32931            934       0.00
## 32932            934      54.27
## 32933           1822    1129.79
## 32934            938     170.95
## 32935            939     578.17
## 32936            957     828.52
## 32937            938      76.42
## 32938            938     281.65
## 32939           1351     417.25
## 32940            932       0.00
## 32941           1683     283.04
## 32942            931     857.82
## 32943            931      46.00
## 32944            932     238.62
## 32945            758      73.26
## 32946            875     656.02
## 32947            792       0.00
## 32948            931     273.17
## 32949            932   20797.56
## 32950           1766     213.10
## 32951            932     134.27
## 32952            937    1427.36
## 32953           2351   42616.32
## 32954            937       0.00
## 32955            937     603.79
## 32956            920    1773.96
## 32957            924     500.85
## 32958            924       0.00
## 32959            927      27.49
## 32960            927     900.61
## 32961            930     418.38
## 32962            919     100.89
## 32963           1497     171.67
## 32964            919       0.00
## 32965            961     895.93
## 32966            734     516.36
## 32967            888     432.17
## 32968            876     253.32
## 32969            861       0.00
## 32970            919      66.68
## 32971            919     311.95
## 32972            918     301.01
## 32973            927      83.48
## 32974            924     303.79
## 32975            934     331.18
## 32976           1330       0.00
## 32977            934       0.00
## 32978           1995    1720.80
## 32979           1129     658.34
## 32980            932       0.00
## 32981            932     593.45
## 32982            932      88.25
## 32983            931    3667.67
## 32984            931     940.57
## 32985            706     297.19
## 32986            876     206.32
## 32987            875     259.88
## 32988            931     249.64
## 32989            931     442.90
## 32990            931     165.90
## 32991            933     123.65
## 32992            937     227.12
## 32993            932     548.00
## 32994            932     139.46
## 32995            932       0.00
## 32996            930    3581.56
## 32997            927      36.21
## 32998            926     179.47
## 32999            919     458.06
## 33000           1398     326.79
## 33001            911     568.07
## 33002            926     123.48
## 33003            927     465.00
## 33004           1226    1419.34
## 33005           1492       0.00
## 33006            714      66.68
## 33007            905      61.35
## 33008            876     782.09
## 33009            931     197.80
## 33010            930    5118.14
## 33011            926     309.91
## 33012           1052     495.60
## 33013            918     307.91
## 33014            932       0.00
## 33015            905      59.25
## 33016            905     337.82
## 33017            897     691.06
## 33018           2142       0.00
## 33019           1668    1030.64
## 33020            932    1949.46
## 33021            933   25358.35
## 33022            932     449.93
## 33023            919     182.47
## 33024           1903     366.50
## 33025            924      91.97
## 33026            927     448.79
## 33027           1473    1706.14
## 33028            926    1454.89
## 33029            926       0.00
## 33030            926    1346.33
## 33031           1178      45.88
## 33032            927     251.04
## 33033            931    2831.44
## 33034            927     653.57
## 33035            931      27.16
## 33036           2919    9898.40
## 33037            345       0.00
## 33038            281     151.12
## 33039            911       0.00
## 33040            911       0.00
## 33041           1430    1241.60
## 33042            902       0.00
## 33043            888     149.01
## 33044            891     206.73
## 33045           2149     245.11
## 33046           1701  111872.32
## 33047            927     216.59
## 33048            930     104.41
## 33049           1185  119433.98
## 33050            924     486.98
## 33051            923     187.37
## 33052            919       0.00
## 33053            919    1738.84
## 33054           1329     116.82
## 33055            916     184.72
## 33056            932    4831.89
## 33057            617     952.29
## 33058           1092       8.00
## 33059            902    1588.04
## 33060            906     986.89
## 33061            895     208.84
## 33062            911    1229.06
## 33063           2200      97.31
## 33064            919     103.46
## 33065           1088     102.86
## 33066           2275       0.00
## 33067            923     222.12
## 33068            924    1432.60
## 33069            924    1712.01
## 33070            926     225.89
## 33071            927       0.00
## 33072            927    2898.52
## 33073            931       0.00
## 33074             87       0.00
## 33075            910     952.78
## 33076            903       0.00
## 33077            808      75.45
## 33078            968     305.04
## 33079            927       0.00
## 33080            927   24615.00
## 33081            926    1520.19
## 33082            926     754.40
## 33083            924       0.00
## 33084            924    1080.63
## 33085            924       0.00
## 33086           1422    1680.49
## 33087            925       0.00
## 33088            920     235.37
## 33089           1673     485.49
## 33090            920       0.00
## 33091            919      20.11
## 33092           1878      88.32
## 33093           1854     102.89
## 33094            919      45.88
## 33095           1901      75.45
## 33096            905     210.70
## 33097            895    2282.82
## 33098            911       0.00
## 33099            912      41.40
## 33100           1963   27780.39
## 33101           2144      47.70
## 33102           1518     325.94
## 33103            919      99.08
## 33104            919      51.16
## 33105            920   98152.98
## 33106            924     766.07
## 33107            924      97.47
## 33108            924       0.00
## 33109            923     526.10
## 33110            926      88.34
## 33111            925     386.15
## 33112            926     459.57
## 33113            927     541.24
## 33114            584     980.55
## 33115           1203    1365.16
## 33116            926     428.51
## 33117            924       0.00
## 33118            919      70.18
## 33119            916     121.66
## 33120            916     154.62
## 33121            918      79.89
## 33122           1475       0.00
## 33123           2122    5287.45
## 33124            920     285.05
## 33125            926     453.97
## 33126           1667      81.32
## 33127            926     564.11
## 33128           1961      57.04
## 33129           1239  108398.91
## 33130            911     290.09
## 33132           1874     886.74
## 33133           2006      93.67
## 33134            857       0.00
## 33135            925    3653.67
## 33136            926       0.00
## 33137           1328    4238.92
## 33138            925     379.02
## 33139            925     285.45
## 33140            925     165.18
## 33141            924       0.00
## 33142            924       0.00
## 33143            923     110.90
## 33145            923     425.32
## 33146           2101       0.00
## 33147            919     461.75
## 33148            917     490.58
## 33149            919      36.21
## 33150            913     151.52
## 33151            916     130.00
## 33152            835     462.16
## 33153            842       0.00
## 33154            408       0.00
## 33155            874      44.25
## 33156            916      20.11
## 33157            897     347.99
## 33158            895     296.73
## 33159           2227     196.66
## 33160            888      90.13
## 33161            885     700.49
## 33162            931     406.08
## 33163            912     204.00
## 33164            794    1904.08
## 33165            919     129.00
## 33166           1857     388.47
## 33167           1445       0.00
## 33168           1043     589.26
## 33169            919     280.36
## 33170            917     208.06
## 33171            919       0.00
## 33172           2071    8889.55
## 33173            924     682.02
## 33174            925     575.24
## 33175            826     190.67
## 33176           2373     550.66
## 33177            911       0.00
## 33178            888     150.00
## 33179            883     367.46
## 33180            925     769.20
## 33181            905     100.00
## 33182           1210  112305.31
## 33183            905     165.34
## 33184            899   17588.44
## 33185            878     243.08
## 33186           1960    2188.47
## 33187            864       0.00
## 33188            920       0.00
## 33189            920     176.64
## 33190            917    1011.04
## 33191            919     516.61
## 33192            919     114.17
## 33193            916     543.68
## 33194            916       0.00
## 33195            821    1244.44
## 33196           1339      61.35
## 33197            876      66.68
## 33198            899    5871.30
## 33199            899     180.95
## 33200            905     134.15
## 33201           2205    5418.54
## 33202           2184     262.16
## 33203           1269    2928.06
## 33204            898     241.49
## 33205            521     118.32
## 33206            911     190.23
## 33207           1097     603.39
## 33208            912      91.33
## 33209            912       0.00
## 33210            911       0.00
## 33211            916      82.77
## 33212            916     388.94
## 33213            916     260.92
## 33214            913     591.04
## 33215           1404  106936.45
## 33216           1570     176.95
## 33217            919     436.35
## 33218            960     795.81
## 33219           1358       0.00
## 33220           2007     136.64
## 33221            924       0.00
## 33222           1843     556.10
## 33223            912      77.61
## 33224           2259       9.99
## 33225            911       0.00
## 33226            939     570.10
## 33227           1056    5854.37
## 33228            904    1248.60
## 33229           1287   17484.42
## 33230            883     164.91
## 33231            882     189.77
## 33232            908    1112.53
## 33233            813    1062.71
## 33234            877     891.00
## 33235            919       0.00
## 33236            918       0.00
## 33237            917    1124.36
## 33238            917    2119.32
## 33239            917       0.00
## 33240            913     133.54
## 33241            913    1878.12
## 33242            911      93.97
## 33243            985    1243.44
## 33244            917     223.71
## 33245           2185     277.75
## 33246           1308    1604.89
## 33247            912    1337.19
## 33248            912     161.10
## 33249            906     423.87
## 33250            904   28661.29
## 33251            892     881.06
## 33252           1649     190.57
## 33253            916      99.33
## 33254            253     127.68
## 33255            911      67.43
## 33256            911      59.94
## 33257            911    1481.73
## 33258            910   20674.29
## 33259            910       0.00
## 33260            910       0.00
## 33261            916     354.25
## 33262            916       0.00
## 33263           1329     210.53
## 33264           1410     332.27
## 33265            919    1067.91
## 33266            841     750.84
## 33267            674       0.00
## 33268            593     240.00
## 33269            910       0.00
## 33270           1126      57.07
## 33271            911      91.97
## 33272           1973     127.19
## 33273           1084       0.00
## 33274            905      51.16
## 33275            905     185.20
## 33276            902      98.87
## 33277           1302       0.00
## 33278            877     102.89
## 33279            855       0.00
## 33280            917     208.29
## 33281            916    1891.85
## 33282            916      23.29
## 33283            916    1377.99
## 33284            916     325.58
## 33285            917     149.53
## 33286            935     273.59
## 33287            916    2073.96
## 33288            876       0.00
## 33289            877     112.10
## 33290            877     100.97
## 33291            798      66.69
## 33292            904     533.24
## 33293            899     491.63
## 33294            904       0.00
## 33295            906       0.00
## 33296           1070    7920.02
## 33297            891     265.60
## 33298            891     123.35
## 33299            891     439.03
## 33300           1589   24782.44
## 33301            888    1788.94
## 33302            888     254.20
## 33303            882     225.94
## 33304            882     212.81
## 33305            883       0.00
## 33306            883     192.44
## 33307            883     225.94
## 33308            883      46.56
## 33309            882     423.16
## 33310            882     483.56
## 33311            882     330.61
## 33312           1440    1886.21
## 33313           1980     164.39
## 33314            912   16803.48
## 33315           2254     544.63
## 33316            911     295.97
## 33317            911     236.69
## 33318            911    5283.35
## 33319            913      82.42
## 33320            917      41.89
## 33321            916      93.36
## 33322            916     421.28
## 33323           1407    1227.05
## 33324            916       0.00
## 33325            917     295.08
## 33326            724     202.68
## 33327            911       0.00
## 33328            911     837.05
## 33329            911      65.68
## 33330            909     177.90
## 33331           1694    3748.51
## 33332            909       0.00
## 33333            912       0.00
## 33334           2422   89923.77
## 33335            888     358.13
## 33336            891     288.00
## 33337            906     348.76
## 33338            906     210.80
## 33339            904       0.00
## 33340            913      86.68
## 33341           2213    2280.22
## 33342            829    6433.09
## 33343           1450     663.95
## 33344            937    1950.65
## 33345            906     964.01
## 33346            902       0.00
## 33347            903     347.03
## 33348            891       0.00
## 33349           2143     626.05
## 33350            885       0.00
## 33351            912     180.93
## 33352            912     415.99
## 33353            912     793.17
## 33354            909    2174.51
## 33355           2183     397.04
## 33356           1261     367.14
## 33357            881       0.00
## 33358            855    2066.42
## 33359            758      91.63
## 33360            970   35872.75
## 33361            909     327.85
## 33362           1646       0.00
## 33363           1458   43712.87
## 33364            891    7634.34
## 33365            896     262.10
## 33366           1998       0.00
## 33367            885     587.21
## 33368           2141   13070.90
## 33369           1295     131.36
## 33370            911     121.04
## 33371           2245       0.00
## 33372            911     322.92
## 33373           2188       0.00
## 33374            911     172.21
## 33375            898       0.00
## 33376           2062     190.12
## 33377           1200       0.00
## 33378            905      33.34
## 33379            906    2384.00
## 33380            906     392.15
## 33381            905     968.39
## 33382            904     251.01
## 33383            799       0.00
## 33384            917    7980.05
## 33385            751     260.84
## 33386           1114   22945.58
## 33387            833    2225.95
## 33388            875     330.19
## 33389           1761   16771.98
## 33390            862   19731.23
## 33391            904    1285.88
## 33392            905     116.22
## 33393            906     645.14
## 33394            904    2169.46
## 33395            902    1713.48
## 33396            892     310.36
## 33397            898   29483.39
## 33398            896     227.94
## 33399            897     125.46
## 33400            891    2450.81
## 33401            909     303.04
## 33402            909     317.26
## 33403            909     157.25
## 33404            709   23783.85
## 33405            909     139.64
## 33406            999       0.00
## 33407            909     481.64
## 33408            885     109.60
## 33409            898    3479.47
## 33410            897       0.00
## 33411            899       0.00
## 33412            899     289.49
## 33413            903     275.61
## 33414           1008    7971.00
## 33415            905       0.00
## 33416            905    5764.24
## 33418            904     245.09
## 33419            576     335.21
## 33420           1631     239.44
## 33421            723    1250.00
## 33422            787     341.51
## 33423           1206     539.02
## 33424            905    2674.51
## 33425           1577     225.72
## 33426            905     920.77
## 33427           1821       0.00
## 33428            906     340.94
## 33429            906      41.40
## 33430            904    1945.09
## 33431            904    1356.37
## 33432            903    2084.88
## 33433            898       0.00
## 33434            903    2036.09
## 33435            902    1066.95
## 33436            898     158.33
## 33437           1053     304.12
## 33438            897     161.34
## 33439           2143     287.50
## 33440            895       0.00
## 33441            895     580.12
## 33442            884     867.71
## 33443            890       0.00
## 33444            889     364.38
## 33445            855    1985.88
## 33446            875     918.48
## 33447            874       0.00
## 33448            877    7565.63
## 33449           2067     633.29
## 33450            874     365.08
## 33451            890     281.94
## 33452            884      41.40
## 33453           2162   10480.95
## 33454            892     474.27
## 33455           1308     382.17
## 33456           2114    5170.57
## 33457            897       0.00
## 33458            897     180.00
## 33459            897    2615.33
## 33460            897     209.08
## 33461            896     910.76
## 33462            898    1231.47
## 33463            899     224.29
## 33464            903      10.05
## 33465            902     449.45
## 33466            903      78.35
## 33467            903     299.02
## 33468            905     255.99
## 33469            905     518.10
## 33470            905       0.00
## 33471            904     209.05
## 33472            738      73.26
## 33473            904     230.05
## 33474           2663   72475.16
## 33475            904     418.91
## 33476            903     789.13
## 33477           2415  136067.23
## 33478           1572     403.98
## 33479           1126    5540.78
## 33480            898       0.00
## 33481            892      88.29
## 33482            896     592.67
## 33483           1963     211.20
## 33484            903       0.00
## 33485           1341    1353.01
## 33486            888       0.00
## 33487            888     110.90
## 33488            888     142.17
## 33489            891    4450.93
## 33490            882       0.00
## 33491            903       0.00
## 33492            903     136.36
## 33493            902     252.17
## 33494            899       0.00
## 33495            902       0.00
## 33496            904     357.71
## 33497           1833       0.00
## 33498            876      86.94
## 33499           1330     251.51
## 33500           1214     263.39
## 33501            876       0.00
## 33502            875     411.73
## 33503           1263    1596.96
## 33504            898     247.26
## 33505            896    1093.70
## 33506            896     619.35
## 33507            902     104.59
## 33508            902     202.33
## 33509            899      20.89
## 33510            904     131.00
## 33511            903    4078.60
## 33512            891     175.43
## 33513            731     354.26
## 33514            917    1079.30
## 33515            834       0.00
## 33516           1209      75.00
## 33517           1301  197326.20
## 33518           2174       0.00
## 33519            883     469.30
## 33520           1113     127.82
## 33521            903     541.30
## 33522            902     477.21
## 33523            899       0.00
## 33524            899    3334.72
## 33525            902    6224.16
## 33526            902     723.07
## 33527            902      84.11
## 33528            898    1022.38
## 33529           1515   73738.40
## 33530            895      75.04
## 33531           1190     791.00
## 33532            875    1765.82
## 33533            877     464.68
## 33534           1060    3122.26
## 33535             85       0.00
## 33536            849    2106.64
## 33537            874     540.21
## 33538            875       0.00
## 33539            898   11174.50
## 33540           1253      20.75
## 33541            898     102.14
## 33542            897       0.00
## 33543            902     149.81
## 33544            898     186.97
## 33545            898       0.00
## 33546            898     215.77
## 33547            898       0.00
## 33548            885     249.15
## 33549            884     296.77
## 33550            889     334.73
## 33551            889      42.26
## 33552            888     190.52
## 33553            793     158.86
## 33554            819     113.58
## 33555            835       0.00
## 33556            891     103.46
## 33557            891     133.12
## 33558           2516    8945.54
## 33559            888      99.38
## 33560            897       0.00
## 33561            896    2112.67
## 33562            898     796.79
## 33563           1305     122.62
## 33564            895    4249.28
## 33565            895    3454.61
## 33566            875       0.00
## 33567            875       0.00
## 33568            876      51.16
## 33569            569     177.81
## 33570            895       0.00
## 33571            907       0.00
## 33572           1752     220.67
## 33573            897     362.98
## 33574           2178     360.96
## 33575            888    1129.17
## 33576            889     232.43
## 33577           2067    3701.74
## 33578            888     264.45
## 33579            895    1400.23
## 33580            895   56384.92
## 33581           2126      66.68
## 33582            874      61.35
## 33583            384     294.90
## 33584            646       0.00
## 33585            895    1238.80
## 33586            896     249.53
## 33587           1534       0.00
## 33588            897     122.69
## 33589            897     160.54
## 33590           1941     199.08
## 33591            897     241.80
## 33592            896       0.00
## 33593            896       0.00
## 33594            896    2550.68
## 33595           1196     342.18
## 33596            897      72.60
## 33597            897     252.10
## 33598           2070     161.90
## 33599            891     536.10
## 33600            888     122.17
## 33601            883     915.42
## 33602           1263    2658.34
## 33603            834     233.73
## 33604            888    2655.83
## 33605            888     128.18
## 33606           2211   34688.23
## 33607            896     520.74
## 33608            896     232.54
## 33609           1603       8.02
## 33610           2066      98.99
## 33611           2055  272568.59
## 33612            895       0.00
## 33613           1376     649.37
## 33614            877      51.16
## 33615            877     344.50
## 33616            871     241.32
## 33617            876     309.10
## 33618            876       0.00
## 33619           1740     651.13
## 33620            892     542.14
## 33621            892     726.52
## 33622            891     261.13
## 33623           2173     359.78
## 33624            892     223.39
## 33625            897   12408.71
## 33626            889      31.05
## 33627            889    7744.02
## 33628            891     310.35
## 33629            891    9175.72
## 33630           2190    2060.96
## 33631            885       0.00
## 33632            995    1691.72
## 33633            841     552.72
## 33634            884       0.00
## 33635            885     406.72
## 33636            888     254.40
## 33637            888     380.82
## 33638           1048   74584.85
## 33639            892     196.53
## 33640            892      53.26
## 33641            892       0.00
## 33642            892     226.26
## 33643            892     474.32
## 33644            815   16027.11
## 33645           1530     120.70
## 33646            876     116.86
## 33647            869   26552.51
## 33648            877     397.64
## 33649            877     694.21
## 33650            857    1024.25
## 33651            758    1203.99
## 33652            703     257.45
## 33653            703    1040.25
## 33654           2122     176.50
## 33655            874      19.49
## 33656            876       0.00
## 33657            876     474.34
## 33658           1233     398.46
## 33659            888    4656.11
## 33660            888     710.10
## 33661            891     184.30
## 33662            888       0.00
## 33663            884       0.00
## 33664            883     126.35
## 33665           1259    1966.94
## 33666            883       0.00
## 33667            882   13221.75
## 33668            185     531.25
## 33669            707    5844.62
## 33670           1602   18889.08
## 33671            889     124.75
## 33672            875    1863.01
## 33673           1379     331.78
## 33674            855   27971.94
## 33675            870    1005.98
## 33676            867     753.66
## 33677           2120       0.00
## 33678           1343       0.00
## 33679           1875     313.00
## 33680           1343     211.03
## 33681            883     712.46
## 33682            891     207.59
## 33683            884     165.84
## 33684            884       0.00
## 33685           1518     818.91
## 33686            888    7181.89
## 33687            890    1358.32
## 33688           1455       0.00
## 33689            890       0.00
## 33690            889       0.00
## 33691            889    1046.40
## 33692           2120     635.73
## 33693            888     538.15
## 33694           1820     328.30
## 33695            877     888.73
## 33696            878       0.00
## 33697            856    1402.49
## 33698            862     209.72
## 33699            878     213.29
## 33700            867       9.73
## 33701            876       0.00
## 33702            875     207.22
## 33703            882       0.00
## 33704            889     127.96
## 33705            889     750.08
## 33706            889     522.56
## 33707            953     364.35
## 33708            890     503.92
## 33709            888    1150.33
## 33710            888     201.21
## 33711            885       0.00
## 33712           1078       0.00
## 33713            799   32100.32
## 33714           1920      81.50
## 33715            618     115.52
## 33716            884       0.00
## 33717            884       0.00
## 33718           2188    2300.53
## 33719            885     952.46
## 33720            889      20.27
## 33721            888     127.58
## 33722           1385     224.19
## 33724            875     242.82
## 33725            876    3206.09
## 33726            876     220.62
## 33727            876     150.02
## 33728            867     847.91
## 33729            877       0.00
## 33730           2159     307.36
## 33731           1280    1023.49
## 33732           1816   49404.04
## 33733            878     271.16
## 33734            881    1187.14
## 33735           1052     230.83
## 33736            877     581.29
## 33737            877     667.60
## 33738           1438    5167.28
## 33739           1722     207.66
## 33740            874    1864.35
## 33741           2100    1084.55
## 33742            876       0.00
## 33743            863     159.03
## 33744            882     236.68
## 33745            882    1539.36
## 33746            888       0.00
## 33747            885      99.01
## 33748            885     953.97
## 33749            885       8.50
## 33750            888   19026.68
## 33751            884     638.55
## 33752           1087    1338.34
## 33753            884      51.16
## 33754            884      92.21
## 33755            884     134.35
## 33756            884       0.00
## 33757            737       0.00
## 33758            631       0.00
## 33759            780    3245.77
## 33760            784      79.52
## 33761            884   35476.06
## 33762            885     675.17
## 33763           1871      11.72
## 33764            885       0.00
## 33765            884    5698.78
## 33766            885    1576.01
## 33767            882       0.00
## 33768           2511       0.00
## 33769            883     533.78
## 33770           2262     779.79
## 33771           1506   17603.68
## 33772            874   45069.98
## 33773            869       0.00
## 33774            877     476.72
## 33775           1087       0.00
## 33776            878     368.33
## 33777            881       0.00
## 33778            413      87.94
## 33779            478     149.89
## 33780            883    1447.44
## 33781            594    1007.21
## 33782            835    1396.49
## 33783            978       0.00
## 33784           1999     934.56
## 33785            871     286.27
## 33786           1603     156.46
## 33787            841   10723.13
## 33788            842     215.03
## 33789           1684   57919.13
## 33790            671     111.16
## 33791            875      77.61
## 33792            875     204.29
## 33793            876    1573.03
## 33794           1519     706.30
## 33795            878       0.00
## 33796            881     407.91
## 33797            881     353.13
## 33798           2159       0.00
## 33799            877       0.00
## 33800            877       0.00
## 33801            877     663.26
## 33802            863    1710.64
## 33803            862     987.32
## 33804            863       0.00
## 33805            856     383.23
## 33806            882    1820.40
## 33807            882     327.49
## 33808            882     155.90
## 33809            883     212.27
## 33810            884    2201.26
## 33811            884       0.00
## 33812           1523    8799.69
## 33813            806     195.36
## 33814            758      82.82
## 33815            884    3732.73
## 33816            806      48.60
## 33817            860     386.24
## 33818            877     333.69
## 33819            878      11.72
## 33820            877       0.00
## 33821            877       0.00
## 33822            881    4547.17
## 33823           1175    4638.11
## 33824            936    7083.05
## 33825            874   19219.83
## 33826            874     421.32
## 33827            870     470.50
## 33828            553      92.68
## 33829            835    2337.17
## 33830            779   37582.09
## 33831            787      64.13
## 33832           1904       0.00
## 33833            871    4134.72
## 33834            867     146.70
## 33835           2288  300253.55
## 33836           1988     178.86
## 33837            881     944.89
## 33838            935     119.56
## 33839            878     417.33
## 33840            861     100.16
## 33841            863     617.27
## 33842            882      87.37
## 33843            653     339.47
## 33844           1546     543.48
## 33845            787     164.35
## 33846            882     323.25
## 33847            808     174.82
## 33848            862     190.60
## 33849            857     623.95
## 33850            878     764.97
## 33851            881      36.29
## 33852            878     262.26
## 33853            878    8200.46
## 33854            876     228.24
## 33855           1638   45879.33
## 33856            874     445.43
## 33857            870     313.25
## 33858            780    1344.58
## 33859            769    1627.40
## 33860            841     170.55
## 33861            874       0.00
## 33862            874     446.72
## 33863            871      51.75
## 33864            869       0.00
## 33865           2052    2136.51
## 33866            877   12147.99
## 33867           2102    1499.82
## 33868           1283     212.87
## 33869            856    1381.61
## 33870            863     397.03
## 33871            862     223.02
## 33872            863    1452.13
## 33873            863      17.08
## 33874            867    2976.27
## 33875           1346     445.70
## 33876           2506    1745.18
## 33877            803   43652.98
## 33878            533      47.07
## 33879           1501    1870.16
## 33880            806      87.37
## 33881            862       0.00
## 33882           1835     259.17
## 33883            877     449.85
## 33884            887    1290.89
## 33885           1640     485.38
## 33886            868     895.90
## 33887            870     455.22
## 33888           2169    2240.36
## 33889            870     666.35
## 33890            867       0.00
## 33891            867    5424.29
## 33892           1040    1279.84
## 33893           1585     567.88
## 33894           1140     640.09
## 33895            863     118.90
## 33896            849       0.00
## 33897            850       0.00
## 33898           1218     191.72
## 33899            862     129.73
## 33900            862       0.00
## 33901           1810   17868.25
## 33902            877     248.12
## 33903            868     340.09
## 33904            874      25.00
## 33905            874      66.68
## 33906           1391   10838.32
## 33907            876       0.00
## 33908           2106     247.00
## 33909            937       0.00
## 33910            876      27.16
## 33911            874     645.23
## 33912           1490     270.04
## 33913            875    4443.66
## 33914            973     403.42
## 33915            875     218.93
## 33917            875     922.14
## 33918           1460     143.13
## 33919            874      20.35
## 33920            874     193.08
## 33921            874   13711.26
## 33922            875       0.00
## 33923            871    1722.63
## 33924            868    1562.26
## 33925            870     114.17
## 33926            861      50.01
## 33927            857   53839.35
## 33928            862       0.00
## 33929           1561     407.52
## 33930           2220     234.41
## 33931            124      90.21
## 33932           1666     623.55
## 33933           1726       0.00
## 33934            863      98.65
## 33935            961    1398.62
## 33936            863      81.64
## 33937            857    8270.12
## 33938            861    1454.17
## 33939            871      81.88
## 33940            869     253.18
## 33941            870     319.07
## 33942            874     229.61
## 33943            987     301.87
## 33944           1369     545.25
## 33945            797      79.33
## 33946            541     198.96
## 33947            953       0.00
## 33948            759     222.97
## 33949            388     240.63
## 33950            850       0.00
## 33951           2078      51.16
## 33952           1779     281.44
## 33953            874     333.36
## 33954           1010     346.24
## 33955            874    3365.08
## 33956            871     730.85
## 33957            871     179.41
## 33958            868       0.00
## 33959            860      61.35
## 33960           1588       0.00
## 33961            863     376.42
## 33962            862     238.10
## 33963           1343       0.00
## 33964            839     154.97
## 33965            825     232.01
## 33966            842       0.00
## 33967            862       0.00
## 33968            862     206.38
## 33969            863     358.95
## 33970           1345    1821.57
## 33971           1394    5997.35
## 33972            863      32.49
## 33973           1164   16272.48
## 33974            868    1661.11
## 33975            867       0.00
## 33976           1540       0.00
## 33977            871       0.00
## 33978            806     522.38
## 33979           1274       0.00
## 33980            869     528.45
## 33981            868     435.47
## 33982            856       0.00
## 33983           1884       0.00
## 33984            841       0.00
## 33985            842     246.11
## 33986            826      82.77
## 33987            864      78.17
## 33988            863     379.13
## 33989           2960   79643.86
## 33990            869    5280.95
## 33991           1911     907.42
## 33992            867      10.57
## 33993            868       0.00
## 33994            811     255.20
## 33995            813     791.85
## 33996            992     426.24
## 33997            799      36.21
## 33998            868       0.00
## 33999           1779   35609.63
## 34000            862       0.00
## 34001            862     549.59
## 34002            857     160.00
## 34003            855       0.00
## 34004           1807      98.16
## 34006            842     598.02
## 34007            849    1770.71
## 34008            897   26699.27
## 34009            849     218.32
## 34010            876     303.64
## 34011            856       0.00
## 34012            861     254.53
## 34013           2209     235.64
## 34014           1309     197.35
## 34015            862       0.00
## 34016           1715     592.08
## 34017           1783       0.00
## 34018            863     230.43
## 34019            863     216.88
## 34020            925     331.60
## 34021            863     424.01
## 34022           1548    1723.37
## 34023            864     749.84
## 34024            864     382.82
## 34025            868     227.26
## 34026            868     288.08
## 34027           1344       0.00
## 34028            814       0.00
## 34029            849       0.00
## 34030            849    4095.85
## 34031            850     156.74
## 34032            833     192.68
## 34033            840    6182.39
## 34034           1387      36.21
## 34035            779       0.00
## 34036            776    4561.39
## 34037            867     318.73
## 34038            867      36.21
## 34039            867       0.00
## 34040            867      89.82
## 34041            867    4392.92
## 34042            864     430.92
## 34043           1777      11.72
## 34044           1753   12758.70
## 34045            862    3501.74
## 34046           1339   30247.46
## 34047           1898       0.00
## 34048            857     234.63
## 34049           1373   29141.02
## 34050            784     602.73
## 34051            841    1336.87
## 34052            841     792.63
## 34053            841     335.12
## 34054            850     399.61
## 34055           1158     288.60
## 34056            860     139.36
## 34057            860     119.68
## 34058            862     111.53
## 34059            862     374.57
## 34060            863     208.66
## 34061            863    1132.13
## 34062           2023     976.04
## 34063           1199     282.31
## 34064            850      91.97
## 34065           1444     573.34
## 34066            841     110.86
## 34067            994     209.72
## 34068            864      93.05
## 34069           4087  345814.76
## 34070            862     218.75
## 34071            863     998.81
## 34072            857       0.00
## 34073            857      36.21
## 34074            862     568.53
## 34075            861     280.36
## 34076           1995       0.00
## 34077           1981   30701.89
## 34078           1380     328.90
## 34079            758     413.97
## 34080           1920    2084.77
## 34081            861   42913.52
## 34082            856       0.00
## 34083            815      16.49
## 34084           1312    2738.97
## 34085            337     257.84
## 34086            862     716.35
## 34087            960       0.00
## 34088            862     204.64
## 34089            863    1011.61
## 34090            652     412.22
## 34091            842     166.75
## 34092            842      97.96
## 34093           1799     251.35
## 34094            849     173.53
## 34095           1897   28763.85
## 34096            850     242.07
## 34097           1688     102.27
## 34098           1855     182.93
## 34099           1024     687.97
## 34100            841     949.83
## 34101            834     227.42
## 34102            862     549.05
## 34103            863    1200.07
## 34104           1048    1690.95
## 34105            861     195.83
## 34106            909     284.82
## 34107            856     496.41
## 34108            855     341.36
## 34109           1258      84.68
## 34110            806      90.13
## 34111            273     151.09
## 34112            850     161.50
## 34113            850       0.00
## 34114           2110    1795.67
## 34115            848     143.28
## 34116           1573       0.00
## 34117            849    3755.00
## 34118            849     385.20
## 34119            842     113.84
## 34120            786     400.40
## 34121           1816     262.43
## 34122            805     277.74
## 34123            801     782.40
## 34124            801     113.10
## 34125            792     123.05
## 34126            855     386.10
## 34127           1910     568.10
## 34128            861     119.68
## 34129            861     376.02
## 34130            862      37.69
## 34131           2187       0.00
## 34132            857     271.95
## 34133            904   34939.12
## 34134            860   33223.29
## 34135            598       0.00
## 34136            787       0.00
## 34137            843       0.00
## 34138           1689    4129.52
## 34139            841      64.01
## 34140            849     328.88
## 34141            825      18.96
## 34142            826     376.75
## 34143           2383  102888.74
## 34144           1960     285.33
## 34145            841     399.87
## 34146           1316     566.48
## 34147            841     102.89
## 34148           1935      39.08
## 34149            856     137.29
## 34150            856     265.31
## 34151            861      56.68
## 34152           1047     121.61
## 34153            855     140.13
## 34154            794     374.02
## 34155           1126      93.60
## 34156            595     488.72
## 34157            926       0.00
## 34158            822     893.55
## 34160            835       0.00
## 34161            835     731.70
## 34162            835       0.00
## 34163            832      56.68
## 34164           2016     141.97
## 34165            850     236.94
## 34166            849      44.14
## 34167            699      64.26
## 34168            856      61.35
## 34169           1031    3940.15
## 34170            855   25088.12
## 34171            856     161.16
## 34172            850     349.70
## 34173            834    2296.49
## 34174           1793    6492.09
## 34175           1387     406.20
## 34176            923      64.49
## 34177            836     433.78
## 34178           2156    2466.08
## 34179           1094    1841.04
## 34180            855       0.00
## 34181            855     166.68
## 34182            806     179.37
## 34183            807     754.10
## 34184            714    1022.84
## 34185            850       9.71
## 34186            850    1284.23
## 34187            850    3784.83
## 34188           1275     725.11
## 34189            848     326.82
## 34190            849     263.96
## 34191            801       0.00
## 34192            855     225.10
## 34193            855    3890.74
## 34194            855     505.77
## 34195            855      89.21
## 34196            850    1817.63
## 34197            841     653.42
## 34198            835     140.35
## 34199            856       0.00
## 34200            841     621.56
## 34201            840     170.88
## 34202            849     407.24
## 34203            976       0.00
## 34204            843     176.04
## 34205           2164      89.21
## 34206            843       0.00
## 34207           1625    1402.20
## 34208           1869      91.97
## 34209           1140   98024.64
## 34210            909     196.93
## 34211            805       0.00
## 34212            842     147.57
## 34213            842     180.78
## 34214            849     768.20
## 34215           2150    2120.31
## 34216            850     395.90
## 34217            850     212.38
## 34218            850    1926.55
## 34219            833     449.30
## 34220            829      87.94
## 34221            841      82.65
## 34222            841      23.37
## 34223            835     105.83
## 34224            807     115.35
## 34225            811     298.47
## 34226           1725     711.43
## 34227            836       0.00
## 34228            829       0.00
## 34229            834     163.43
## 34230            850     210.96
## 34231            850     183.94
## 34232            849    1670.98
## 34233           1042   18338.65
## 34234            849    1185.33
## 34235            848      11.72
## 34236            848      11.72
## 34237           1874      11.72
## 34238            848       0.00
## 34239            995    7410.19
## 34240            780    1105.90
## 34241            808       0.00
## 34242            813       0.00
## 34243            758      63.89
## 34244            783     494.53
## 34245            843     643.90
## 34246            849       0.00
## 34247            839    4342.12
## 34248            758    1131.01
## 34249            843       0.00
## 34250            807   30885.52
## 34251            843       0.00
## 34252            840   16468.82
## 34253           2111   41463.08
## 34254            801     406.32
## 34255            811      98.13
## 34256           1378     116.82
## 34257            552       0.00
## 34258            804     103.56
## 34259           1603    3002.76
## 34260            841       0.00
## 34261            843     153.53
## 34262            843     750.00
## 34263            849    1619.38
## 34264            843       0.00
## 34265            834      87.37
## 34266            695       0.00
## 34267           1490    8646.18
## 34268            813     174.55
## 34269            834     138.31
## 34270            834     579.68
## 34271            832     436.23
## 34272            843    1506.91
## 34273            848     281.82
## 34274            848      82.63
## 34275            848       0.00
## 34276           1431      11.72
## 34277            849     528.51
## 34278            843    1468.68
## 34279            882   14300.42
## 34280            822   57150.89
## 34281            826     490.25
## 34282           2115    1029.22
## 34283            841     287.67
## 34284            840     202.83
## 34285            835     400.30
## 34286            840     458.98
## 34287            794    1867.33
## 34288            950       0.00
## 34289            532     587.69
## 34290            763       0.00
## 34291            652     198.63
## 34292            842     364.73
## 34293            835      88.96
## 34294            835       0.00
## 34295            822     180.93
## 34296            842     288.61
## 34297           1892       0.00
## 34298            843     126.85
## 34299            843       0.00
## 34300            843     124.46
## 34301            832     268.53
## 34302            832     245.90
## 34303            834     245.09
## 34304            833     479.02
## 34305            842   15991.58
## 34306            842     677.03
## 34307           1933   12476.80
## 34308           1063    4774.30
## 34309           2037     129.20
## 34310            835    1196.44
## 34311            841     136.29
## 34312            848    7140.52
## 34313            779      87.41
## 34314            695      46.56
## 34315            870     410.35
## 34316            811     974.30
## 34317           1183     463.49
## 34318            804    3383.79
## 34319            771     291.35
## 34320           1412     125.40
## 34321           1222     572.35
## 34322            841       0.00
## 34323            842     395.10
## 34324            833    3529.29
## 34325           2066     278.21
## 34326            815      68.85
## 34327            794      51.16
## 34328            548      41.40
## 34329            752    1910.70
## 34330           1712   30734.98
## 34331            832     157.52
## 34332            834    2124.15
## 34333            842     383.89
## 34334           1678     173.80
## 34335            841     274.88
## 34336            841     378.82
## 34337            835       0.00
## 34338            835      66.68
## 34339            835      66.68
## 34340           1535   17799.33
## 34341            785     201.73
## 34342           1015     675.18
## 34343            846    1246.05
## 34344            835    1011.02
## 34345            834    7374.48
## 34346           1409   32795.32
## 34347            836     229.79
## 34348            834    1970.49
## 34349            807       0.00
## 34350            807     812.02
## 34351            710     432.97
## 34352           1921       0.00
## 34353            836     136.61
## 34354            786     932.04
## 34355            787      91.26
## 34356            756     180.00
## 34357            840      41.40
## 34358           1804     110.45
## 34359            958   74107.22
## 34360            835    1635.14
## 34361            832      88.96
## 34362            806     267.01
## 34363            801     330.00
## 34364            805     238.10
## 34365            819       0.00
## 34366            813     315.35
## 34367           1867     232.27
## 34368           2189   12536.93
## 34369            833       0.00
## 34370            822       0.00
## 34371            835      56.68
## 34372            834      43.49
## 34373            834    1093.92
## 34374            840     181.05
## 34375            952   25410.51
## 34376            786     591.34
## 34377            785     256.16
## 34378            798       0.00
## 34379            811     166.49
## 34380           1286  287561.51
## 34381           2185    1293.19
## 34382           2095     771.48
## 34383            806     135.21
## 34384            512     253.68
## 34385            209     314.25
## 34386           2164    2336.80
## 34387            839      39.13
## 34388            836     720.16
## 34389           2114      10.62
## 34390            839       0.00
## 34391            840     175.39
## 34392            839    1265.82
## 34393           3059   56729.10
## 34394            835       0.00
## 34395           2071     488.47
## 34396            832     181.81
## 34397            832     167.65
## 34398            829    2871.44
## 34399            811     109.00
## 34400            813     151.66
## 34401           1227       0.00
## 34402           1392       0.00
## 34403            833      92.38
## 34404            833     270.06
## 34405            834    1776.94
## 34406           1181     153.00
## 34407            888   25920.27
## 34408            821     109.76
## 34409           1379      94.35
## 34410           1772    1505.25
## 34411            834       0.00
## 34412            834       0.00
## 34413           2008       0.00
## 34414            839     471.39
## 34415            835    1288.82
## 34416            770       0.00
## 34417            778    7914.81
## 34419            808     524.59
## 34420            819   41027.80
## 34421            806       0.00
## 34422            806      63.35
## 34423            800       0.00
## 34424            804     167.17
## 34425            805     206.62
## 34426            792       0.00
## 34427            872   37513.40
## 34428            709       0.00
## 34429            835    7986.83
## 34430            835   25113.80
## 34431            834      68.39
## 34432            834       0.00
## 34433            833     560.07
## 34434            833       0.00
## 34435            834     840.33
## 34436            833       0.00
## 34437            833       0.00
## 34438            832      49.57
## 34439            832     243.00
## 34440            832       0.00
## 34441            832       0.00
## 34442           1510     106.00
## 34443            804     305.88
## 34444            569      36.00
## 34445            723     451.01
## 34446            758      50.01
## 34447            758       0.00
## 34448            834     601.92
## 34449            826    8718.11
## 34450           1234     266.88
## 34451            879     171.01
## 34452            787     231.21
## 34453            806       0.00
## 34454            808     231.57
## 34455            776     915.74
## 34456            825    4110.97
## 34457            826       0.00
## 34458           1408     127.58
## 34459            826    1585.95
## 34460           1519    3234.16
## 34461            833     207.63
## 34462           1701     360.26
## 34463           1677     164.86
## 34464            832      66.68
## 34465            833     181.75
## 34466            833     848.18
## 34467            834       0.00
## 34468            820     585.52
## 34469           1975    1831.86
## 34470           1668     477.94
## 34471            804   38977.82
## 34472           1942   19470.22
## 34473            833     674.88
## 34474            833     129.55
## 34475            942     904.56
## 34476           1714    1727.43
## 34477            833     426.54
## 34478            838   25238.48
## 34479            826     628.45
## 34480           2152       0.00
## 34481            874     357.42
## 34482           1246      88.96
## 34483            813     923.00
## 34484           1015       0.00
## 34485            766     273.37
## 34486           1242    1553.47
## 34487            772     377.66
## 34488            780     148.81
## 34489            787     109.30
## 34490            826     836.19
## 34491           2174     160.08
## 34492           1831     735.37
## 34493            826      25.00
## 34494            826      52.22
## 34495            832    3944.03
## 34496            832     226.09
## 34497            832     159.58
## 34498           1300    7263.53
## 34499            868   22947.35
## 34500           1236    1404.93
## 34501            813     221.79
## 34502            811     942.11
## 34503            815       0.00
## 34504            819     393.28
## 34505            819       0.00
## 34506           1069     226.82
## 34507            794       0.00
## 34508            791    8146.76
## 34509            863     225.16
## 34510            826      21.55
## 34511            826     375.12
## 34512            821    1927.72
## 34513            784      88.96
## 34514           1550    2284.65
## 34515            819       0.00
## 34516            815     411.04
## 34517            815     250.62
## 34518            813    1716.97
## 34519            787       0.00
## 34520            826       0.00
## 34521            822     794.10
## 34522           1561    1143.91
## 34523            813       0.00
## 34524            813     471.44
## 34525           1249       0.00
## 34526            815     231.65
## 34527            801      78.25
## 34528            807     285.89
## 34529            794   77833.09
## 34530            812    1608.33
## 34531           1000       0.00
## 34532           1141     239.64
## 34533           1091      51.16
## 34534            822     216.38
## 34535           1735    1882.43
## 34536            819     893.77
## 34537            807       0.00
## 34538            194       0.00
## 34539           1080       0.00
## 34540           1784     696.77
## 34541            863    1120.15
## 34542            799    1433.98
## 34543            559     179.08
## 34544            758   15068.35
## 34545            814       0.00
## 34546            819      37.11
## 34547            815    1020.06
## 34548           1153    1655.38
## 34549           1394     783.04
## 34550            847   19037.51
## 34551            783     266.32
## 34552            681     107.60
## 34553            819    2371.09
## 34554            992       0.00
## 34555            961     240.91
## 34556            883   13646.54
## 34557            926     102.89
## 34558            807     878.46
## 34559            800       0.00
## 34560           1288       0.00
## 34561           1483    1941.59
## 34562            799   20731.17
## 34563           1099     323.55
## 34564            819   11343.95
## 34565            818      26.55
## 34566            880    2060.45
## 34567            807       0.00
## 34568           1915   34669.39
## 34569            730       0.00
## 34570           1246     135.10
## 34571            787       0.00
## 34572            819    1101.50
## 34573            819    2258.56
## 34574            819     136.31
## 34575            819    7910.79
## 34577           1247     261.69
## 34578            813     228.89
## 34579            813      51.16
## 34580            813     199.14
## 34581            813       0.00
## 34582           1910   39527.95
## 34583            812     175.82
## 34584            807     494.93
## 34585            800     108.13
## 34586            797     586.16
## 34587            540       0.00
## 34588            794    1367.10
## 34589            807     992.62
## 34590           1039    1192.54
## 34591           1205     208.20
## 34592            812     307.53
## 34593           1200      83.86
## 34594            815     598.98
## 34595            815     893.38
## 34596            818      67.46
## 34597            819     573.21
## 34598           1468     695.12
## 34599            744    1475.75
## 34600            741     287.26
## 34601            617     468.67
## 34602            322     435.50
## 34603             42       0.00
## 34604            815     556.50
## 34605            815     686.46
## 34606            808     584.42
## 34607           2149     184.94
## 34608            806     500.50
## 34609            800     336.83
## 34610            570   10140.04
## 34611            751       0.00
## 34612            273      92.28
## 34613           1349     688.00
## 34614            808       0.00
## 34615           1708     127.79
## 34616            812    1228.93
## 34617            818     327.46
## 34618            815     113.59
## 34619            794   20850.00
## 34620            552      51.16
## 34621            749     408.54
## 34622            758     369.96
## 34623            752       0.00
## 34624            780       0.00
## 34625            772    4453.91
## 34626            772       0.00
## 34627            799     266.79
## 34628            812     387.39
## 34629            813   10058.70
## 34630            805    1740.31
## 34631            806     117.84
## 34632            808     155.00
## 34633            714     892.54
## 34634            780     476.27
## 34635            787     292.40
## 34636           2037     283.24
## 34637            643     160.36
## 34638            343      72.11
## 34639           1113       0.00
## 34640           1276     712.29
## 34641            807       0.00
## 34642           1461     620.13
## 34643           1189    1749.49
## 34644            793     124.01
## 34645            783     703.36
## 34646           1301       0.00
## 34647            798     658.42
## 34648            791       0.00
## 34649            804    1474.21
## 34650           1360    4483.97
## 34651            814      70.55
## 34652           1709     282.47
## 34653            812     382.19
## 34654            813       0.00
## 34655            812     513.96
## 34656           2146     224.16
## 34657            813     215.01
## 34658            812       0.00
## 34659            811    1077.02
## 34660            784     274.04
## 34661           2086       0.00
## 34662            808       0.00
## 34663           1074     192.03
## 34664            811     226.59
## 34665           2641  224850.48
## 34666            811     643.76
## 34667            804     880.31
## 34668           2114     567.36
## 34669           1664     154.79
## 34670            805      56.68
## 34671            901     840.26
## 34672           3523   23328.32
## 34673           1375    1964.20
## 34674            807     221.24
## 34675            807     213.46
## 34676           1813       0.00
## 34677            807     137.40
## 34678            806      11.72
## 34679           1857     163.17
## 34680            804    1972.47
## 34681            811     162.03
## 34682            812     442.99
## 34683            812     868.07
## 34684            812     138.07
## 34685           2168     652.76
## 34686           1150  130228.56
## 34687            808       0.00
## 34688            808    1286.70
## 34690            811     115.19
## 34691            811       0.00
## 34692            811     365.70
## 34693            811     374.48
## 34694            581     768.71
## 34695            556     751.00
## 34696           1798      78.17
## 34697            785     100.00
## 34698            785     233.47
## 34699            785     283.91
## 34700           1160       0.00
## 34701            785      38.37
## 34702            787     333.60
## 34703            772     647.26
## 34704           1686     399.10
## 34705           1219   17107.65
## 34706            800      66.69
## 34707            800     329.10
## 34708            801    4274.89
## 34709            801       0.00
## 34710            806     204.88
## 34711            807    6712.01
## 34712            791      82.77
## 34713            799      62.12
## 34714           2144      80.05
## 34715            891     238.53
## 34716            797     188.21
## 34717           1102     577.44
## 34718           1345   10092.46
## 34719           1095     825.90
## 34720            766     189.21
## 34721            682     165.02
## 34722            794     406.11
## 34723           1850       0.00
## 34724            806      11.72
## 34725            807    6201.48
## 34726           2282    2673.77
## 34727            800     250.63
## 34728            804     667.45
## 34729            805       0.00
## 34730            805     450.82
## 34731            583     191.89
## 34732            759     256.69
## 34733            759       0.00
## 34734            763      41.40
## 34735            785     210.82
## 34736           1447   52368.60
## 34737           1429       0.00
## 34738            807     972.44
## 34739            807    2806.47
## 34740            799   19063.02
## 34741            784      51.16
## 34742           1022    1082.34
## 34743            797    1518.51
## 34744           1340    1579.66
## 34745            791     749.83
## 34746           1617    2074.77
## 34747            787   19899.86
## 34748            777    2800.06
## 34749           1372  186422.47
## 34750           1087     200.59
## 34751            772     807.49
## 34752            766     651.64
## 34753            799     126.73
## 34754            799    3767.69
## 34755           2084      87.15
## 34757            854       0.00
## 34758            805    3481.65
## 34759            805     106.80
## 34760            804     705.60
## 34761            804     112.00
## 34762            801       0.00
## 34763            743     268.80
## 34764            659     179.36
## 34765            780      43.49
## 34766            801      99.98
## 34767            801     231.53
## 34768            800       0.00
## 34769            800      84.08
## 34770            804     544.34
## 34771           1285    3461.47
## 34772            805     243.61
## 34773            799     333.15
## 34774            799      59.92
## 34775            794      99.32
## 34776            794   10212.34
## 34777            792       0.00
## 34778           1862    4728.29
## 34779            791      66.68
## 34780           2098      14.42
## 34781            759     179.10
## 34782            707       0.00
## 34783            343     928.70
## 34784           1335   10931.02
## 34785           1624    4154.06
## 34786            784     257.00
## 34787            785     250.00
## 34788            785     100.00
## 34789            787    1182.50
## 34790            787      79.33
## 34791            672     133.59
## 34792            791      66.68
## 34793            791     370.26
## 34794            791     309.40
## 34795            799     276.59
## 34796            798     235.10
## 34797            799     405.80
## 34798           2099     267.96
## 34799            804   15693.75
## 34800            804     281.23
## 34801           2319   34482.42
## 34802            801     158.68
## 34803            801   19592.94
## 34804           1383      11.72
## 34805           1863   13078.06
## 34806            742       0.00
## 34807            731    1128.63
## 34808            689     289.10
## 34809            804     135.87
## 34810           1792     855.23
## 34811            797       0.00
## 34812            891     828.70
## 34813            799     594.80
## 34814           1463    3331.32
## 34815            793     502.26
## 34816            793   21316.66
## 34817            793    1529.19
## 34818            790     395.32
## 34819            792     366.89
## 34820            752     553.40
## 34821            787      81.85
## 34822            787     122.00
## 34823            787     576.13
## 34824           2157   54254.39
## 34825            783     190.21
## 34826            780     456.21
## 34827            780       0.00
## 34828            778     296.23
## 34829            792     322.59
## 34830           1982     160.72
## 34831            792     325.64
## 34832           1292     565.71
## 34833            794     929.54
## 34834            800       0.00
## 34835            797       0.00
## 34836           2212   13679.19
## 34837           1723     208.05
## 34838            797     299.37
## 34839            791    1545.97
## 34840            792     613.60
## 34841            791     151.14
## 34842            758       0.00
## 34843            779   22568.86
## 34844            744     533.16
## 34845            853    4712.83
## 34846            793       0.00
## 34847            799     131.63
## 34848            264       0.00
## 34849           1912     309.02
## 34850           1567     235.11
## 34851            783     161.78
## 34852            778    2603.05
## 34853            776     110.16
## 34854            787     183.84
## 34855            769     164.75
## 34856            799    6595.06
## 34857            792       0.00
## 34858            709     830.45
## 34859            787       0.00
## 34860            784     253.71
## 34861            696    2299.13
## 34862           1008   98446.92
## 34863            797     253.79
## 34864           1319     111.33
## 34865            181      59.16
## 34866           1533     573.93
## 34867            653       0.00
## 34868            783       0.00
## 34869            787     227.15
## 34870            785     711.75
## 34871            784     764.15
## 34872           1512     183.87
## 34873            787     231.92
## 34874           1031   10608.03
## 34875            787     443.81
## 34876           1266  130779.49
## 34877            793     455.29
## 34878            793      56.68
## 34879            793       0.00
## 34880            793      31.87
## 34881           1138     302.70
## 34882            792     516.45
## 34883           1154   24843.56
## 34884            966     971.64
## 34885            758       0.00
## 34886            758     382.68
## 34887            758   15679.23
## 34888            787     675.68
## 34889            779     327.50
## 34890            785       0.00
## 34891            785       9.99
## 34892            780     924.80
## 34893            766    1955.91
## 34894            766       0.00
## 34895            764   24011.86
## 34896           3218    3673.06
## 34897            792    8447.09
## 34898            792   17542.76
## 34899           1757     183.77
## 34900           2113   49149.76
## 34901           1504    2641.80
## 34902            790     310.22
## 34903            794     174.80
## 34904            794       0.00
## 34905            794     483.15
## 34906           1369     280.66
## 34907            757    4050.16
## 34908            759      86.22
## 34909           2558   50185.04
## 34910            780     147.30
## 34911           1250   53039.84
## 34912           1001     507.24
## 34913           1008   18477.21
## 34914            771     310.18
## 34915           1367   48303.55
## 34916            787    5181.91
## 34917           1934   32939.19
## 34918            787       0.00
## 34919            690     197.04
## 34920            674     567.36
## 34922           1342    5171.41
## 34923            791       0.00
## 34924            924     493.76
## 34925            793     208.11
## 34926            792     488.03
## 34927            792  100543.31
## 34928            792      48.00
## 34929            757     134.15
## 34930            791    1946.37
## 34931            787     551.00
## 34932           1734      65.01
## 34933           1454    3176.71
## 34934            793   12663.27
## 34935            744     138.21
## 34936            709    1602.64
## 34937            783       0.00
## 34938            780       0.00
## 34939            786       0.00
## 34940            778       0.00
## 34941            791    1285.88
## 34942            779    1669.81
## 34943            786     190.11
## 34944            787    1181.63
## 34945           2002   83108.80
## 34946            780     893.71
## 34947            780    1389.53
## 34948           1355    2542.29
## 34949            787       0.00
## 34950            787     139.81
## 34951            787     548.88
## 34952           2715   26565.36
## 34953            765      66.68
## 34954           2092    2259.06
## 34955            792     343.02
## 34956           1199     212.87
## 34957            793     262.52
## 34958            562     436.71
## 34959           1015     168.68
## 34960            758     867.27
## 34961            738   15417.43
## 34962            766    1531.53
## 34963           1750   20276.86
## 34964            771      51.45
## 34965            771      97.75
## 34966           1094   29001.53
## 34967            975       0.00
## 34968            780     767.74
## 34969            786       0.00
## 34970            786     374.22
## 34971            787     734.74
## 34972           1682    1390.57
## 34973           2054    8956.09
## 34974           1024     460.16
## 34975           1463     631.29
## 34976            752    3452.38
## 34977            743     258.00
## 34978            779    1000.15
## 34979           1845   20212.93
## 34980            787     227.86
## 34981           1192    1456.86
## 34982            785      56.68
## 34983           1924     191.82
## 34984            122      33.80
## 34985            783     156.00
## 34986            783    1954.36
## 34987            784    9065.24
## 34988            785     499.52
## 34989            787       0.00
## 34990            787       0.00
## 34991            787    1425.97
## 34992            778    1175.34
## 34993           1239    1160.73
## 34994            779    1317.92
## 34995            779       0.00
## 34996            780       0.00
## 34997            772     152.60
## 34998            772     138.11
## 34999            771       0.00
## 35000            787      22.34
## 35001            771       0.00
## 35002            838    1773.76
## 35003            769       0.00
## 35004            323     199.70
## 35005           1297   56801.19
## 35006           1007    9895.64
## 35007            759     756.21
## 35008            882     183.73
## 35009            764     801.71
## 35010           1612      43.49
## 35011            779     371.44
## 35012            785     306.03
## 35013            723    1263.60
## 35014            731    2243.43
## 35015            639    1237.19
## 35016           1365      83.52
## 35017            786       0.00
## 35018            785       0.00
## 35019            785   32126.49
## 35020            780     108.00
## 35021            779     330.50
## 35022            779    2626.33
## 35023            779   38577.48
## 35024            358       0.00
## 35025            563    8931.19
## 35026            602     238.51
## 35027            817     107.30
## 35028           1995      11.72
## 35029            783       0.00
## 35030            784     175.32
## 35031            785       0.00
## 35032            769     189.70
## 35033            834     175.71
## 35034           1524       0.00
## 35035           1404     337.70
## 35036            785      92.27
## 35037            785     865.39
## 35038            785     260.64
## 35039            785    6862.67
## 35040            785     817.88
## 35041            784     231.74
## 35042           1566     594.08
## 35043            780      36.21
## 35044            799   51154.69
## 35045           1802       0.00
## 35046            779     125.14
## 35047           2078    3234.70
## 35048            771       0.00
## 35049            776       0.00
## 35050            772     539.01
## 35051            603    5699.79
## 35052            722     838.46
## 35053           1264  108579.57
## 35054            751    1129.70
## 35055            759    2679.35
## 35056            772       0.00
## 35057            772     664.12
## 35058           2046       0.00
## 35059            771     887.50
## 35060            778    3792.82
## 35061            776      61.16
## 35062           1265       0.00
## 35063           2236     396.20
## 35064            779     393.01
## 35065            780      25.88
## 35066            780      85.05
## 35067            976      90.13
## 35068            780     448.56
## 35069            780     691.38
## 35070           1080     459.87
## 35072            783      66.88
## 35073            875    4915.96
## 35074            784       0.00
## 35075            785     254.33
## 35076           1546    1919.46
## 35077            752     276.24
## 35078            757     213.77
## 35079           2058    2662.99
## 35080           1862     780.76
## 35081            734   21213.35
## 35082            629     187.60
## 35083            616     270.09
## 35084            783     333.88
## 35085            783       0.00
## 35086            783       0.00
## 35087            780     126.73
## 35088            780     253.42
## 35089            776     133.89
## 35090            778       0.00
## 35091            772       0.00
## 35092           1744    1179.10
## 35093           1582       0.00
## 35094            770     259.05
## 35095            765   21803.45
## 35096            444      80.92
## 35097            736     828.69
## 35098            758     176.90
## 35099            759    8562.12
## 35100            757       0.00
## 35101            872    1559.75
## 35102            752     563.60
## 35103            759       0.00
## 35104            759     532.48
## 35105            938    5687.50
## 35106            766     389.59
## 35107            763      77.17
## 35108            776     351.55
## 35109            772    1233.27
## 35110           1325     570.97
## 35111            777      40.93
## 35112            776      88.29
## 35113            779      76.74
## 35114            779     415.66
## 35115            779    1351.05
## 35116            780     241.59
## 35117            322       0.00
## 35118            562     101.08
## 35119           2423     433.11
## 35120           1828    1103.75
## 35121            752       0.00
## 35122            745     199.41
## 35123            703   10810.05
## 35124            779     641.09
## 35125           1181   15212.44
## 35126            772       0.00
## 35127            771     137.40
## 35128            771     262.76
## 35129           1590  134876.76
## 35130            772     341.89
## 35131            772    1086.60
## 35132           1136    1389.82
## 35133            771     616.80
## 35134           1044     226.34
## 35135            148    1563.50
## 35136           1011   18161.90
## 35137            749     487.32
## 35138            757     559.60
## 35139            738     203.89
## 35140            759     116.01
## 35141            759       0.00
## 35142           2066     347.39
## 35143           1256     354.83
## 35144            776       0.00
## 35145            601       0.00
## 35146            758     798.13
## 35147            748    5300.47
## 35148            764       0.00
## 35149            759   29454.57
## 35150           1886     328.90
## 35151            765      97.05
## 35152           1960      95.34
## 35153            772     481.17
## 35154            772     332.58
## 35155            856    4676.61
## 35156            772     923.59
## 35157            771     178.98
## 35158           1042      20.23
## 35159            776     149.78
## 35160            776      56.68
## 35161           1512     376.94
## 35162            777     263.10
## 35163            778     329.24
## 35164           1078    2857.37
## 35165            779       0.00
## 35166            680       0.00
## 35167            757     308.05
## 35168           1638       0.00
## 35169            778    2213.60
## 35170            776      66.88
## 35171            776       0.00
## 35172            771       0.00
## 35173            772     157.85
## 35174           1962       0.00
## 35175            776       0.00
## 35176            770     306.89
## 35177            769     143.13
## 35178            764      33.31
## 35179            757     121.80
## 35180            762     153.73
## 35181            758       0.00
## 35182            744     140.61
## 35183            759    1715.86
## 35184            763       0.00
## 35185            769       0.00
## 35186            770       0.00
## 35187           2762  362067.14
## 35188            772       0.00
## 35189            772      12.57
## 35190            772     298.50
## 35191            772     769.77
## 35192            771    1590.08
## 35193           1563     672.78
## 35194            771    7063.57
## 35195            776     361.15
## 35196            695    1499.39
## 35197            759     457.34
## 35198           1252   24764.35
## 35199           1158       0.00
## 35200            758     266.03
## 35201           1622    5033.27
## 35202           1372    6839.55
## 35203            724     471.67
## 35204            730     170.61
## 35205            630     272.66
## 35206           1464     498.86
## 35207            772     494.20
## 35208           1554       0.00
## 35209            772       0.00
## 35210            765    4687.70
## 35211            764     153.48
## 35212            699    2991.95
## 35213            751    5985.15
## 35214            702     389.81
## 35215           1936     591.75
## 35216           2474   33523.83
## 35217            758       0.00
## 35218            758     128.17
## 35219            758     431.55
## 35220            758    1054.30
## 35221            755      47.07
## 35222            926     187.33
## 35223           1087   15804.67
## 35224            735       0.00
## 35225            759       0.00
## 35226           1256   61373.78
## 35227            929       0.00
## 35228           1267     592.76
## 35229            766       0.00
## 35230            889  116978.34
## 35231            769     545.09
## 35232            772       0.00
## 35233            771     417.63
## 35234           1212       0.00
## 35235            772     139.80
## 35236           2099    1280.07
## 35237            573    1416.52
## 35238            759      74.32
## 35239           1827      26.83
## 35240            771      12.57
## 35241            772     143.78
## 35242            772       0.00
## 35243           1751   31023.93
## 35244           1673   33189.78
## 35245            892    1596.10
## 35246            766       0.00
## 35247            766    1600.98
## 35248            765     452.51
## 35249            763     520.67
## 35251            738      36.21
## 35252            757     218.77
## 35253            752    4055.93
## 35254           1372    2766.37
## 35255            758     285.34
## 35256            749    1925.91
## 35257            632     875.23
## 35258            652     178.18
## 35259           1872    7065.50
## 35260            766     656.19
## 35261            766     520.62
## 35262            770    1530.80
## 35263           1224    1883.82
## 35264            766     548.65
## 35265            986   30088.87
## 35266            770     666.17
## 35267            771       0.00
## 35268            771     797.77
## 35269            771     155.81
## 35270           2071    2822.56
## 35271            771     510.12
## 35272            772    1639.87
## 35273           2072    2225.06
## 35274            598     207.61
## 35275            751      47.00
## 35276            876     392.48
## 35277            758    3177.92
## 35278            758     408.71
## 35279            759       0.00
## 35280            759     229.65
## 35281           2831   31252.83
## 35282           2083       0.00
## 35283           1062  135964.96
## 35284            734     510.49
## 35285            737     358.07
## 35286            756       0.00
## 35287            759    2055.62
## 35288           1093   12545.18
## 35289            759    1004.52
## 35290           1116   39760.95
## 35291           1281    1661.99
## 35292            770     333.85
## 35293            770     460.32
## 35294            956      78.56
## 35295            770       0.00
## 35296            769    1100.97
## 35297            769     851.35
## 35298            808     346.85
## 35299           1230       0.00
## 35300            854       0.00
## 35301            775     447.90
## 35302            765     636.76
## 35303           1118   14101.86
## 35304            703     206.41
## 35305            706     367.32
## 35306            729     104.44
## 35307            728     877.84
## 35308           1908    2318.67
## 35309           1117   28183.75
## 35310            759     217.17
## 35311            759    1087.06
## 35312            735     473.44
## 35313            734     100.00
## 35314            741       0.00
## 35315            756    1466.00
## 35316            763     188.38
## 35317            755      85.05
## 35318            757     790.58
## 35319           1080   97817.46
## 35320            757     360.61
## 35321            757    1459.85
## 35322           1461    3216.19
## 35323           1232      68.71
## 35324            759     410.75
## 35325            758     550.59
## 35326            758    2666.89
## 35327           1659     199.64
## 35328            751     660.42
## 35329            653     128.69
## 35330            637     187.94
## 35331            624       0.00
## 35332            764     490.90
## 35333            765       0.00
## 35334            763     284.62
## 35335            766      68.25
## 35336            766     424.01
## 35337            765    5396.14
## 35338            944     516.20
## 35339            769    2043.03
## 35340            766     124.91
## 35341            699    3924.10
## 35342           2066     114.58
## 35343            749       0.00
## 35344           1949   62866.98
## 35345            745     125.70
## 35346            758     244.21
## 35347           2036     567.57
## 35348            758     288.38
## 35349            752     508.67
## 35350            823     316.68
## 35352            759     435.26
## 35353            723      34.40
## 35354            722     252.91
## 35355            720       0.00
## 35356           1970     253.21
## 35357            764     324.00
## 35358            765    1178.15
## 35359           1546     801.71
## 35360            994   45878.94
## 35361            755      47.70
## 35362            752     889.52
## 35363            756       0.00
## 35364            756      56.68
## 35365           1609    2181.16
## 35366            749       0.00
## 35367           1548     172.99
## 35368           1865     842.83
## 35369            750       0.00
## 35370            751    1181.10
## 35371            763       0.00
## 35372           1462     264.58
## 35373            765     514.27
## 35374            765      36.21
## 35375            765     324.21
## 35376            751     196.14
## 35377            750     198.37
## 35378            749       0.00
## 35379            758     484.53
## 35380            759     366.70
## 35381            715     959.72
## 35382            758   14033.20
## 35383            753       0.00
## 35384            916     286.68
## 35385           1281     563.29
## 35386            763     385.84
## 35387            469     203.81
## 35388            749     100.51
## 35389           1530     325.46
## 35390            750    1552.53
## 35391            751     322.62
## 35392           1564   55540.09
## 35393           1776    3346.57
## 35394            735    1070.43
## 35395            736     142.98
## 35396            731     774.38
## 35397            759       0.00
## 35398            946    1379.27
## 35399            707     531.65
## 35400            605       0.00
## 35401            576       0.00
## 35402           2004      76.90
## 35403           1583       0.00
## 35404            724     462.38
## 35405            759       0.00
## 35406            759      10.25
## 35407            735     192.96
## 35408            757    1927.09
## 35409            758       0.00
## 35410            807   19932.89
## 35411            758     293.28
## 35412            758    1889.80
## 35413            750       0.00
## 35414           2049    3832.28
## 35415            534     192.13
## 35416            749    9408.90
## 35417            749      88.96
## 35418            758     231.23
## 35419            755     384.81
## 35420            735     346.78
## 35421            737       0.00
## 35422            738     408.98
## 35423            743     142.45
## 35424           1078     221.16
## 35425            729      36.21
## 35426            309      89.23
## 35427            583      99.29
## 35428            723     130.65
## 35429            730    2743.20
## 35430            708       0.00
## 35431            742       0.00
## 35432            742     590.07
## 35433            975    2481.88
## 35434            736       0.00
## 35435            734     117.40
## 35436           1148    5337.91
## 35437            752     112.66
## 35438           1795     468.03
## 35439           1054     186.02
## 35440            762     268.50
## 35441           3523  171662.37
## 35442           3045   27269.07
## 35443            758     252.48
## 35444            804     557.30
## 35445           1472    8094.55
## 35446            748       0.00
## 35447            750       0.00
## 35448            750     368.95
## 35449           1630     456.40
## 35450           2033     200.85
## 35451            750     230.60
## 35452           2288     142.86
## 35453            751    4861.11
## 35454            751    3938.92
## 35455            699       0.00
## 35456            682       0.00
## 35457            750     713.24
## 35458            958       0.00
## 35459            749    7356.89
## 35460            758       0.00
## 35461            758       0.00
## 35462            758     264.28
## 35463            756       0.00
## 35464            757     312.85
## 35465           1641      86.68
## 35466            742    1855.18
## 35467            638       0.00
## 35468           1835       0.00
## 35469            681     770.00
## 35470            695    1097.64
## 35471           1083   14511.09
## 35472            758    2414.72
## 35473           1005     231.08
## 35474            758     836.75
## 35475            751     287.48
## 35476            366     260.19
## 35477            724     137.73
## 35478            748     412.59
## 35479            837   41306.77
## 35480            748     161.74
## 35481            757       0.00
## 35482            738       0.00
## 35483            645       0.00
## 35484           1221       0.00
## 35485            738    1416.83
## 35486            738     220.17
## 35487            734      88.29
## 35488           1475    2703.80
## 35489            748       0.00
## 35490            743    1058.47
## 35491           2044    2947.05
## 35492            751    1114.73
## 35493            751    4346.77
## 35494            749     321.66
## 35495            268    1767.43
## 35496            854     541.26
## 35497            695    1836.04
## 35498            694     280.61
## 35499            682     207.85
## 35500            308     100.51
## 35501            592    1250.00
## 35502            714     615.05
## 35503            729      80.42
## 35504            931     576.98
## 35505           1579       0.00
## 35506            750       0.00
## 35507           1022       0.00
## 35508           1826      43.20
## 35509            751      59.16
## 35510            751       0.00
## 35511           1491     266.74
## 35512            749    2127.04
## 35513            757     856.15
## 35514           1182     390.38
## 35515            734     222.61
## 35516            741     354.74
## 35517             68       0.00
## 35518           1493     410.40
## 35519            860     356.54
## 35520            511     116.75
## 35521            608     684.51
## 35522           1046   65182.62
## 35523            741     148.78
## 35524            945      93.13
## 35525            738       0.00
## 35526            755     118.12
## 35527            752    6928.35
## 35528            965   15553.92
## 35529           1206    7459.48
## 35530            750       0.00
## 35531            730     233.65
## 35532            730     122.72
## 35533            729      66.68
## 35534            716     110.45
## 35535            716       0.00
## 35536            643     210.67
## 35537            694     100.00
## 35538            694     183.80
## 35539            689    1447.32
## 35540            720     194.54
## 35541            811    2698.04
## 35542            837    4621.21
## 35543           1376      70.49
## 35544            703     231.99
## 35545            722     718.91
## 35546            749     226.06
## 35547           1825     473.71
## 35548            751       0.00
## 35549            751     842.98
## 35550            751     206.33
## 35551           1960     933.78
## 35552           1533    6218.23
## 35553            752      60.00
## 35554            752       0.00
## 35555            755     263.47
## 35556            742     588.73
## 35557            735     215.41
## 35558            735      35.00
## 35559            736     597.07
## 35560           1398      78.17
## 35561            674     322.69
## 35562           1801     335.74
## 35563            748       0.00
## 35564            748     181.56
## 35565            745       0.00
## 35566            865      51.16
## 35567            744     101.97
## 35568            751       0.00
## 35569           1498       0.00
## 35570            749     556.91
## 35571            750    2342.81
## 35572            723       0.00
## 35573            714     370.93
## 35574            692    1457.75
## 35575           1793  246847.93
## 35576            751     195.93
## 35577            744     872.22
## 35578            745    1887.79
## 35579            745    4491.33
## 35580            748     238.74
## 35581            748     157.52
## 35582            748     969.65
## 35583            748     443.48
## 35584           1685      50.00
## 35585            748       0.00
## 35586            748     361.71
## 35587            748    6764.99
## 35588            745     853.07
## 35589            905    1452.04
## 35590           1666       9.71
## 35591            749     806.89
## 35592            750    1349.60
## 35593            750      39.02
## 35595            731      95.23
## 35596           1106     190.62
## 35597            738     127.83
## 35598            730     129.20
## 35599            707     687.61
## 35600            721     774.10
## 35601            699     154.55
## 35602           1896     104.96
## 35603            762     927.51
## 35604            723     121.16
## 35606            738     169.50
## 35607            741     360.93
## 35608            743       0.00
## 35609            731      95.20
## 35610           1449    1799.59
## 35611            749       0.00
## 35612            744     126.73
## 35613           1359      87.94
## 35614           1142   11351.67
## 35615            745     335.34
## 35616           1510       0.00
## 35617            499     200.17
## 35618            748     348.76
## 35619            749     222.32
## 35620            748       0.00
## 35621            992   52666.78
## 35622            744     864.18
## 35623           1922       0.00
## 35624            731    1718.85
## 35625            744       0.00
## 35626            738     146.65
## 35627            738    9131.04
## 35628            738    2028.82
## 35630            740   14030.61
## 35631            723     435.02
## 35632           2114   33878.37
## 35633            727     109.61
## 35634            714   55034.82
## 35635            680       0.00
## 35636           1112    1745.18
## 35637            671     431.22
## 35638            540       0.00
## 35639           1133     229.93
## 35640           1226    6270.20
## 35641           1511    2912.40
## 35642            784     308.81
## 35643            737     317.07
## 35644            736   34354.25
## 35645           2041     672.36
## 35646            737     142.86
## 35647           1845      56.68
## 35648            745     249.83
## 35649            745       0.00
## 35650            744     253.61
## 35651            743     238.19
## 35652            653     798.11
## 35653            680   14824.46
## 35654            744     335.00
## 35655            744     255.11
## 35656            966     189.64
## 35657            807    2791.85
## 35658           1658     412.09
## 35659            964     224.16
## 35660            743     308.48
## 35661           1748       0.00
## 35662            742      11.72
## 35663            737     215.66
## 35664            738       0.00
## 35665            738     265.51
## 35666           1681    9300.94
## 35667           1589     239.26
## 35668            735     802.63
## 35669           1975    2103.12
## 35670            730      63.35
## 35671            708       0.00
## 35672           1255    6446.13
## 35673            721     120.66
## 35674            932     872.66
## 35675           1653     410.99
## 35676            743      72.16
## 35677            743     143.13
## 35678            384     150.59
## 35679           1193     341.06
## 35680           1147     115.33
## 35681            744     859.84
## 35682           1862     377.12
## 35683           1907     300.53
## 35684           1119     310.66
## 35685            724    1342.19
## 35686           1136     346.00
## 35687            650       0.00
## 35688            979     264.04
## 35689            723       0.00
## 35690            722     600.99
## 35691           1944    7629.10
## 35692            708     730.68
## 35693            703     125.07
## 35694            721     100.00
## 35695            716       0.00
## 35696           1616      96.94
## 35697            736       0.00
## 35698           1725     434.92
## 35699            742     176.72
## 35700           1512     122.02
## 35701           1549     169.00
## 35702            695    2324.31
## 35703           2155  131772.17
## 35704           1314     748.73
## 35705            742     810.92
## 35706            738       0.00
## 35707            738      73.58
## 35708            734     100.58
## 35709            736     174.13
## 35710            737     153.74
## 35711            736       0.00
## 35712            720     229.32
## 35713            721     128.81
## 35714            721    1282.82
## 35715            724      79.19
## 35716            724     155.08
## 35717            667   10890.40
## 35718           1771    1907.38
## 35719            682       0.00
## 35720            727       0.00
## 35721            701     119.74
## 35722            707     188.66
## 35723            735     205.59
## 35724           2161   32203.07
## 35725            738    2272.21
## 35726            738       0.00
## 35727            960     324.20
## 35728            738     230.38
## 35729            738     203.52
## 35730            742   23077.77
## 35731            742      32.99
## 35732           1029     104.77
## 35733            922     689.13
## 35734           1150    1133.31
## 35735            731     221.68
## 35736           1080    2763.21
## 35737           1872   11588.26
## 35738            742     267.70
## 35739            753     610.84
## 35740            735       0.00
## 35741            892     221.97
## 35742            734     219.77
## 35743            735       0.00
## 35744           1455     115.83
## 35745            736    3673.04
## 35746            736    1184.65
## 35747            736    1948.41
## 35748            736     311.14
## 35749            703     101.73
## 35750            727    3689.60
## 35751            729    1142.91
## 35752            729       0.00
## 35753            730     112.78
## 35754            723      88.29
## 35755            720    4419.55
## 35756            653    1132.32
## 35757            854     156.74
## 35758            680     258.06
## 35759            239     337.73
## 35760            724     195.47
## 35761            723       0.00
## 35762            730     137.67
## 35763            707     119.68
## 35764            708       0.00
## 35765            708     108.13
## 35766            736       0.00
## 35767            737     985.33
## 35768           1021     525.23
## 35769            736       0.00
## 35770            735     221.48
## 35771            582     237.12
## 35772            735     331.23
## 35773            734       0.00
## 35774            708     534.08
## 35775            730     553.84
## 35776            729     100.17
## 35777            652     264.81
## 35778            685     271.88
## 35779            699      83.17
## 35780            729     173.25
## 35781            766      61.35
## 35782            727      59.41
## 35783            728     150.14
## 35784            727     256.81
## 35785            727     786.62
## 35786            722    3572.73
## 35787            730     112.17
## 35788            702     134.17
## 35789            721     198.20
## 35790            716     883.02
## 35791            734     425.57
## 35792           1391    1073.41
## 35793           1605    2875.02
## 35794            736     136.80
## 35795            736      96.16
## 35796            959     290.69
## 35797            736      78.17
## 35798            736     654.32
## 35799            731     544.77
## 35800           1268   27289.94
## 35801            180     250.38
## 35802           1392      71.10
## 35803            731      10.01
## 35804            731     345.77
## 35805           1647   15863.45
## 35806            736     852.50
## 35807           1457     355.20
## 35808            734     109.41
## 35809           2160   73336.18
## 35810            734     343.36
## 35811            734     745.93
## 35812            716     239.62
## 35813            714     460.61
## 35814            714    1642.51
## 35815           1695    3351.06
## 35816           2088     356.40
## 35817           1182    3663.40
## 35818            706       0.00
## 35819            706     274.80
## 35820            706     365.36
## 35821            722     233.60
## 35822            724     163.17
## 35823            723     147.94
## 35824            729       0.00
## 35825           1572   10075.67
## 35826            681       0.00
## 35827           1328   10428.14
## 35828            730      11.72
## 35829            730     262.10
## 35830            729     254.17
## 35831            729     437.55
## 35832           1578   22027.40
## 35833            722     366.68
## 35834            707       0.00
## 35835            771    1250.44
## 35836            730     245.88
## 35837           1428     255.74
## 35838            709      87.68
## 35839            731     237.30
## 35840            731     294.18
## 35841            731       0.00
## 35842           2088       0.00
## 35843            731     170.18
## 35844            623    1003.22
## 35845            657     140.81
## 35846            621       0.00
## 35847            694      78.17
## 35848            731     901.09
## 35849            731     248.48
## 35850            980    2997.00
## 35851            731     118.42
## 35852            731      68.25
## 35853            998    1018.71
## 35854            717      78.17
## 35855            730     104.48
## 35856            707     282.69
## 35857           2624    6583.67
## 35858            723       0.00
## 35859            729    2723.79
## 35860           1736   13613.63
## 35861            727       0.00
## 35862            724      97.78
## 35863            727      68.25
## 35864            724     172.29
## 35865            730     774.18
## 35866            730       0.00
## 35867            722      16.25
## 35868            848     833.19
## 35869            717     267.99
## 35870           1035     416.95
## 35871            653     356.79
## 35872            678       0.00
## 35873            674    1433.83
## 35874            720     225.14
## 35875            805    1375.09
## 35876            720     214.91
## 35877            722    1455.39
## 35878            729    1966.97
## 35879            724       0.00
## 35880            693      82.39
## 35881            727     196.84
## 35882            728    2883.71
## 35883            729     236.06
## 35884            720     697.00
## 35885            423      80.19
## 35886           1564      36.21
## 35887            673      51.16
## 35888            721     172.66
## 35889           2038     188.43
## 35890            717     271.54
## 35891            717     214.29
## 35892           1465      82.77
## 35893           1159     357.55
## 35894            727     282.32
## 35896            724     223.78
## 35897            954    7958.69
## 35898            706     818.85
## 35899           2982  362987.67
## 35900            708     174.14
## 35901            730    1077.30
## 35902            387       0.00
## 35903            657    3391.07
## 35904            631     338.90
## 35905            475     301.50
## 35906            689     168.69
## 35907            682       0.00
## 35908            491    6503.59
## 35909           1478       0.00
## 35910            605     570.10
## 35911           1764       0.00
## 35912            703     443.33
## 35913           1190    8435.58
## 35914           1970     114.00
## 35915           2810   32443.40
## 35916            723       0.00
## 35917            723       0.00
## 35918            723     140.60
## 35919            727    1156.79
## 35920            727    5479.37
## 35921            724     153.81
## 35922            727     263.63
## 35923            727       0.00
## 35924            729       0.00
## 35925            729     115.52
## 35926            728    1462.10
## 35927            728     503.86
## 35928            717       0.00
## 35929            717     263.70
## 35930            716     236.50
## 35931            723     298.99
## 35932            714     510.15
## 35933            709       0.00
## 35934            861   47408.07
## 35935            720     913.33
## 35936            720     130.19
## 35937            678    1229.29
## 35938            679       0.00
## 35939            671     754.13
## 35940            605     465.38
## 35941            962    4137.49
## 35942           1121     920.96
## 35943            714     211.87
## 35944            715    1062.41
## 35945            720     141.68
## 35946            717     132.36
## 35947            728     243.70
## 35948            727      82.35
## 35949            724     565.45
## 35950            723     471.38
## 35951            723    1490.57
## 35952           1136      98.19
## 35953            722       0.00
## 35954            722       0.00
## 35955            706       0.00
## 35956            707     603.19
## 35957            936    2423.72
## 35958            507     669.85
## 35959           1361     135.21
## 35960            722     198.13
## 35961            706    3598.60
## 35962            722     882.50
## 35963            724       0.00
## 35964            727      78.17
## 35965            727    2262.01
## 35966            717     108.95
## 35967            716     344.61
## 35968            716     163.17
## 35969            709    1868.56
## 35970            721      85.50
## 35971            681     532.88
## 35972            762     876.00
## 35973           1637       0.00
## 35974            589       0.00
## 35975            721    1869.05
## 35976            721     449.73
## 35977            715    3766.17
## 35978           1314     162.32
## 35979            716      36.21
## 35980            716     105.00
## 35981            716       0.00
## 35982            716     141.82
## 35983            717    6367.20
## 35984            724     104.55
## 35985           2046     357.33
## 35986            723     202.74
## 35987            722     223.57
## 35988            722     430.07
## 35989            723     306.75
## 35990            723     181.99
## 35991            707       0.00
## 35992            708     280.95
## 35993            703      51.16
## 35994            619       0.00
## 35995            740     926.38
## 35996            681     932.85
## 35997           1239   12432.08
## 35998            706    1292.64
## 35999            722     602.18
## 36000            722     140.81
## 36001            722       0.00
## 36002            717    1623.49
## 36003            717     507.82
## 36004            716     679.38
## 36005            716       0.00
## 36006            716     118.84
## 36007            721     345.36
## 36008            720     135.87
## 36009           1708     882.05
## 36010            723     169.02
## 36011           1033     573.65
## 36012            629      85.37
## 36013            651     695.14
## 36014            665     105.30
## 36015            746   11621.80
## 36016            680       0.00
## 36017           1310      75.42
## 36018           1467      25.41
## 36019           2119   16365.91
## 36020           1126     277.91
## 36021            707      56.68
## 36022            722       0.00
## 36023            722     490.56
## 36024            722     222.17
## 36025            722      28.37
## 36026           1365     774.30
## 36027           1441   14251.01
## 36028            721       0.00
## 36029            750     278.84
## 36030            721     224.00
## 36031            716      68.91
## 36032            716     209.90
## 36033            716    3312.98
## 36034            716    1852.27
## 36035            717    1353.31
## 36036           1233      14.71
## 36037           1864     145.28
## 36038           1301       0.00
## 36039            217     196.07
## 36040            699     104.88
## 36041            679     280.89
## 36042            547       0.00
## 36043           1577      59.91
## 36044            710      56.68
## 36045           2019     188.81
## 36046            715       0.00
## 36047            716     307.10
## 36048            720     273.49
## 36049            720     290.06
## 36050           1911      66.45
## 36051            392      98.99
## 36052            653       0.00
## 36053            707   25308.28
## 36054            694     139.27
## 36055            699     175.26
## 36056            553     121.61
## 36057            707    1619.32
## 36058           1932     272.78
## 36059            720     105.51
## 36060           1314     392.94
## 36061            720     121.61
## 36062            720     121.61
## 36063            716     437.64
## 36064            716     231.45
## 36065            717      73.58
## 36066            717    1070.52
## 36067            717     117.36
## 36068            717      25.39
## 36069            717       0.00
## 36070            717    1005.17
## 36071            720     175.96
## 36072            710     241.78
## 36073            710     909.17
## 36074            478       0.00
## 36075            695     743.95
## 36077            692       0.00
## 36078            692     409.01
## 36079            400       0.00
## 36080            527      47.63
## 36081           1746     378.99
## 36082            597     284.04
## 36083           1477    2035.33
## 36084            710      51.16
## 36085            709      82.77
## 36086            709     363.15
## 36087            715     709.33
## 36088            715     101.23
## 36089            720     363.26
## 36090           1142    1611.43
## 36091           1620      25.16
## 36092            715    2841.61
## 36093            707     177.51
## 36094           1785     183.12
## 36095            723    1564.99
## 36096           1697   14625.01
## 36097            701    1011.69
## 36098            690       0.00
## 36099            685       0.00
## 36100           1176    1605.92
## 36101           1501       0.00
## 36102            695    1435.31
## 36103            696     190.22
## 36104           1100     451.84
## 36105            707     163.17
## 36106           1163    2305.29
## 36107            715       0.00
## 36108            716      47.07
## 36109           1375      51.16
## 36110            718       0.00
## 36111            715     731.34
## 36112           2424    9627.87
## 36113           1595     253.07
## 36114           1283   36228.82
## 36115            695     468.78
## 36116            706       0.00
## 36117            707    1227.12
## 36118           1220     496.62
## 36119            822     573.94
## 36120           1065     137.33
## 36121            651      72.85
## 36122            622       0.00
## 36123            695     246.20
## 36124            699     282.52
## 36125            963     212.55
## 36126            672     436.02
## 36127            232     250.89
## 36128           2008     195.63
## 36129            709      31.05
## 36130           1578       0.00
## 36131            917     640.33
## 36132            701     162.54
## 36133            701       0.00
## 36134            702     258.97
## 36135            707     173.92
## 36136            708     132.45
## 36137             30       0.00
## 36138            694   10684.55
## 36139            694     351.93
## 36140            181       0.00
## 36141            701       0.00
## 36142            702    1202.34
## 36143            936     184.23
## 36144            706     485.93
## 36145            702       0.00
## 36146            709    4565.59
## 36147            709      75.17
## 36148           1730  193541.69
## 36149            715       0.00
## 36150           1244       0.00
## 36151           1771     201.24
## 36152            715    1131.63
## 36153            715     298.48
## 36154            714     996.97
## 36155            694     100.00
## 36156            694     119.68
## 36157           1543     630.82
## 36158            767     161.58
## 36159           1162     115.52
## 36160            695       0.00
## 36161            695       0.00
## 36162            699       0.00
## 36163            692     271.56
## 36164            672    1239.22
## 36165           1009   15566.31
## 36166            318     358.16
## 36167            352    6050.00
## 36168           1436     145.34
## 36169            709    6500.63
## 36170           1414   42758.98
## 36171            710     427.66
## 36172            709    1055.98
## 36173            709     126.01
## 36174            709     135.21
## 36175            709      56.68
## 36176            702      73.68
## 36177            708     582.80
## 36178            707      22.52
## 36179            707     357.03
## 36180            707    9170.06
## 36181             80       0.00
## 36182           1107       0.00
## 36183           1919    7081.53
## 36184            696      81.85
## 36185            965     469.59
## 36186           1588    1937.93
## 36187            708    3924.92
## 36188            702    1944.82
## 36190            709     349.88
## 36191           1177    1640.88
## 36192            216      86.17
## 36193            580     262.28
## 36194            702     115.52
## 36195            917     175.15
## 36196           2030  174780.48
## 36197           1473    5705.21
## 36198            318     270.49
## 36199            442     369.32
## 36200           1411     329.28
## 36201            707     390.95
## 36202            848     300.56
## 36203           1973    2079.37
## 36204            695       0.00
## 36206            707     872.68
## 36207            709       0.00
## 36208            616    1153.49
## 36209            695       0.00
## 36210            695       0.00
## 36211            692       0.00
## 36212           1878     246.08
## 36213            692       0.00
## 36214            685     154.62
## 36215            671     674.12
## 36216            604      87.78
## 36217            707     162.31
## 36218            707       0.00
## 36219            707       0.00
## 36220            707    1379.20
## 36221           1919    1695.90
## 36222            707      21.07
## 36223            706       0.00
## 36224            708     293.56
## 36225            702    1068.74
## 36226            618     685.77
## 36227            644     202.96
## 36228            667     154.82
## 36229            682    1975.43
## 36230            679       0.00
## 36231            694     126.30
## 36232            694     135.00
## 36233            699     463.22
## 36234            583       0.00
## 36235            702     775.73
## 36236            702      92.06
## 36237            701       0.00
## 36238            707     341.89
## 36239            781    3366.99
## 36240            707     466.17
## 36241           1859     803.51
## 36242            707    1128.35
## 36243            643       0.00
## 36244           1408     123.84
## 36245            650      91.97
## 36246            638     254.93
## 36247            699    9223.82
## 36248            699     765.64
## 36249            695     441.24
## 36250           1995      81.67
## 36251           1924     166.71
## 36252           1811     294.28
## 36253            694      72.79
## 36254           1681     100.17
## 36255            674     732.54
## 36256            689     100.00
## 36257            686       0.00
## 36258            686     351.41
## 36259            671     210.23
## 36260           1071     220.64
## 36261            563     459.62
## 36262            707     304.79
## 36263            708     423.91
## 36264            702     328.42
## 36265            702     330.33
## 36266           1227   19294.73
## 36267           1652    2549.70
## 36268            703     141.47
## 36269            637       0.00
## 36270            628      78.17
## 36271           2257     295.24
## 36272            651      63.35
## 36273            640    2107.59
## 36274            647     999.55
## 36275            274      94.17
## 36276           1267     194.79
## 36277           1004     373.48
## 36278            694     286.93
## 36279            699     427.16
## 36280            699     922.00
## 36281           2049     751.44
## 36282            797     471.78
## 36283            527     346.28
## 36284            562     510.51
## 36285            394   18023.48
## 36286            234     239.85
## 36287            702     372.71
## 36288            702    9573.81
## 36289            702    2591.85
## 36290            706     137.40
## 36291            701    1467.23
## 36292            701       0.00
## 36293            701      75.53
## 36294            700     656.80
## 36295            699       0.00
## 36296            699       0.00
## 36297            700     793.07
## 36298           1174      92.01
## 36299            695     276.70
## 36300            694     668.48
## 36301           1064     112.66
## 36302            694      51.16
## 36303            692       0.00
## 36304            692    1432.11
## 36305            701       0.00
## 36306            701     176.64
## 36307           2178   93837.76
## 36308            703     155.93
## 36309            703     232.89
## 36310            703     632.39
## 36311            695     163.15
## 36312            576     605.45
## 36313            702       0.00
## 36314            692       0.00
## 36315           1039     425.91
## 36316            764       0.00
## 36317            700     463.46
## 36318           1512   28349.58
## 36319            685     328.92
## 36320            682     261.20
## 36321            673     184.76
## 36322            681     113.12
## 36323            654     555.15
## 36324            680     194.27
## 36325            680    4926.16
## 36326            870      17.10
## 36327            681       0.00
## 36328            689       0.00
## 36329            688       0.00
## 36330            685   36581.21
## 36331           1229   35359.21
## 36332            699     286.11
## 36333            700     187.48
## 36334            694    1025.26
## 36335           1644    1397.93
## 36336            696     336.86
## 36337            699       0.00
## 36338           1307   57858.44
## 36339            576      78.17
## 36340           1639      94.56
## 36341            702  158145.32
## 36342            701     150.71
## 36343           1911       0.00
## 36344            664     234.65
## 36345           1993    7942.36
## 36346            830    3317.93
## 36347            699     252.67
## 36348            695     126.04
## 36349            695     795.59
## 36350            791     899.79
## 36351            694     192.16
## 36352           1792   20402.30
## 36353            971     125.67
## 36354           2590   65286.96
## 36355            700      38.52
## 36356           1280    6502.36
## 36357           1198    4084.62
## 36358           1000   64005.04
## 36359           1170     488.16
## 36360            689     388.52
## 36361            693     550.17
## 36362            682     527.20
## 36363            685      51.92
## 36364            679     902.38
## 36365           1067     842.33
## 36366            482     163.87
## 36367            679     161.01
## 36368            679     135.90
## 36369            680    6608.92
## 36370            682       0.00
## 36371            682       0.00
## 36372            682     485.10
## 36373           1639      49.25
## 36374            682     355.59
## 36375            692     783.61
## 36376            692       0.00
## 36377            686       0.00
## 36378            685    1959.48
## 36379            686     524.41
## 36380            700       0.00
## 36381            693     317.86
## 36382            694     145.28
## 36383           1874    1935.61
## 36384            694       0.00
## 36385            695   14090.01
## 36386            695     184.38
## 36387            694     448.39
## 36388            699     360.55
## 36389            699       0.00
## 36390            699     107.11
## 36391            696     558.72
## 36392           2044    1305.11
## 36393            699      66.68
## 36394            321     141.30
## 36395           1559   53536.04
## 36396            653     137.99
## 36397            684      86.92
## 36398            650       0.00
## 36399            645       0.00
## 36400            827     155.97
## 36401            412       0.00
## 36402            672     611.72
## 36403            699       0.00
## 36404            695     844.10
## 36405           1225     464.47
## 36406            736   11656.38
## 36407            695     448.93
## 36408            939     428.50
## 36409           1035  112932.92
## 36410            694   17974.73
## 36411           1870      86.64
## 36412            694       0.00
## 36413            693       0.00
## 36414            693    1616.93
## 36415            692      77.19
## 36416            692     144.14
## 36417            686     243.90
## 36418            742     122.37
## 36419            685     797.97
## 36420            682     221.62
## 36421            681     124.70
## 36422            678   53884.38
## 36423            679     200.57
## 36424            605       0.00
## 36425            657   75041.77
## 36426            659    1176.87
## 36427            626     232.86
## 36428            679     219.55
## 36429            701      43.49
## 36430            682      56.10
## 36431            685    1197.84
## 36432            685     117.97
## 36433            685      61.35
## 36434           1167     289.81
## 36435            689       0.00
## 36436            694    1423.88
## 36437            694     921.32
## 36438            695       0.00
## 36439           1606    7805.01
## 36440            695    3635.22
## 36441            695    3354.20
## 36442            695      95.36
## 36443            695     711.13
## 36444            671     256.00
## 36445            454       0.00
## 36446            643     110.40
## 36447            653      20.61
## 36448             94      54.04
## 36449            671    1089.69
## 36450            694     143.85
## 36451            693     130.65
## 36452            692     177.22
## 36453           1622     506.15
## 36454            784     646.04
## 36455            679    3972.90
## 36456            679    3936.57
## 36457            680    7604.34
## 36458            784       0.00
## 36459            674       0.00
## 36460            673     364.77
## 36461            678    1603.91
## 36462            674    9081.95
## 36463            605   18143.75
## 36464            694     742.83
## 36465           2000     235.84
## 36466            869       0.00
## 36467            693    2620.45
## 36468           2069     189.12
## 36469            735   43115.21
## 36470            979     128.26
## 36471            680       0.00
## 36472           1217   10070.87
## 36473            685     155.35
## 36474            687     132.43
## 36475            685     143.85
## 36476            929     285.70
## 36477            689     100.33
## 36478            682     341.65
## 36479            682    1790.53
## 36480            961     847.23
## 36481           1617     476.94
## 36482            540       0.00
## 36483            576      56.68
## 36484            739     136.14
## 36485            653     147.96
## 36486            266       0.00
## 36487            682     151.63
## 36488            682     210.19
## 36489            926     220.87
## 36490            682       0.00
## 36491            682     377.51
## 36492            681     536.97
## 36493            725       0.00
## 36494           1989    2719.33
## 36495            692     150.32
## 36496           1322   59252.80
## 36497            688     151.03
## 36498            732     460.61
## 36499            681     109.70
## 36500            693     202.88
## 36501            693     421.79
## 36502            692     204.24
## 36503            692       0.00
## 36504            692     707.00
## 36505            692     755.95
## 36506            582    4795.96
## 36507            583     199.34
## 36508            614      66.68
## 36509            661     110.50
## 36510           1090     232.22
## 36511            679      67.55
## 36512            680     214.43
## 36513            679     235.47
## 36514           1991    5099.92
## 36515           1609       0.00
## 36516            674       0.00
## 36517            678     462.12
## 36518           1078    2998.22
## 36519            685     536.74
## 36520           1335       0.00
## 36521            986      74.24
## 36522            689     249.21
## 36523            689     230.90
## 36524            688     128.40
## 36525            685     341.97
## 36526            671     849.62
## 36527            671     332.28
## 36528            508     136.65
## 36529            667     830.93
## 36530            629     247.20
## 36531           1475       0.00
## 36532            672     403.41
## 36533            671      37.99
## 36534            830     170.94
## 36535            689       0.00
## 36536            688       0.00
## 36537            674       0.00
## 36538            674       0.00
## 36539            680     528.24
## 36540           1254       0.00
## 36541            692      36.26
## 36542            555     194.99
## 36543           1611    2312.44
## 36544           1062     848.67
## 36545            420     695.77
## 36546            878     384.75
## 36547           1029     896.68
## 36548            680     474.92
## 36549            679      61.74
## 36550            678     150.48
## 36551            688     729.22
## 36552            686      96.48
## 36553            685     358.98
## 36554            988       0.00
## 36555           1943       0.00
## 36556            682      25.16
## 36557            682     444.08
## 36558            682     752.67
## 36559            682     176.41
## 36560            444      63.35
## 36561            554     115.33
## 36562            397     389.34
## 36563            666     680.54
## 36564            660      27.16
## 36565            682     521.88
## 36566            681       0.00
## 36567            685     436.40
## 36568            688     290.82
## 36569            678       0.00
## 36570            681     550.01
## 36571            109       0.00
## 36572            737   16528.88
## 36573            685    1071.07
## 36574            685     132.41
## 36575            689     572.91
## 36576            681     524.81
## 36577           1368     797.47
## 36578            667   31059.44
## 36579           1818     747.10
## 36580            667     102.89
## 36581            650     184.98
## 36582            650     260.10
## 36583            640     168.81
## 36584            682     192.63
## 36585            788     163.01
## 36586           1047   17090.51
## 36587           1451     392.85
## 36588            681       0.00
## 36590            682       0.00
## 36591            686      63.74
## 36592            680       0.00
## 36593            679    6559.64
## 36594            880     458.53
## 36595            678       0.00
## 36596            678       0.00
## 36597            728      43.49
## 36598            674      68.98
## 36599            672       0.00
## 36600            672       0.00
## 36601            671       0.00
## 36602            527      75.42
## 36603           1578      83.79
## 36604            590     499.00
## 36605            987     915.43
## 36606           1821       0.00
## 36607            871    2149.86
## 36608            672      73.29
## 36609           1169    8841.25
## 36610            671      87.00
## 36611            678     215.66
## 36612            679      87.33
## 36613            679     736.42
## 36615           1639   17233.37
## 36616            680     621.99
## 36617            682      30.89
## 36618            681     150.26
## 36619            682     121.62
## 36620            682       0.00
## 36621            682    3018.51
## 36622            682    1342.74
## 36623            596     106.12
## 36624            884     820.42
## 36625            632     202.03
## 36626            637     160.76
## 36627            659    1247.43
## 36628            667     180.33
## 36629            666      24.81
## 36630            682     254.72
## 36631            682     175.20
## 36632            682       8.81
## 36633            682     419.99
## 36634            682      11.72
## 36635           1782     121.87
## 36636            682     886.70
## 36637            687     432.44
## 36638            680   16752.50
## 36639            679     131.16
## 36640            678     702.82
## 36641            678       0.00
## 36642            674       0.00
## 36643           1811     133.68
## 36644            331     129.16
## 36645           1526     400.61
## 36646            667      89.14
## 36647           1648     368.90
## 36648            667     497.03
## 36649            667      43.49
## 36650            667     416.72
## 36651            657     125.90
## 36652            651     250.28
## 36653            645    8729.48
## 36654            672     140.72
## 36655            672     203.41
## 36656            671     151.17
## 36657            674       0.00
## 36658            674      89.44
## 36659            678       0.00
## 36660            679     283.79
## 36661            680    1965.64
## 36662            680    2617.63
## 36663            680       0.00
## 36664            682    4720.00
## 36665            682   17462.20
## 36666            682    1585.65
## 36667            681       0.00
## 36668            653     218.04
## 36669            665     811.16
## 36670            666       0.00
## 36671            666       0.00
## 36673            658       0.00
## 36674            633     225.21
## 36675            639       0.00
## 36676            680     281.72
## 36677            680    1755.36
## 36678           1091    3470.21
## 36679            679      27.07
## 36680            674     259.25
## 36681            678    1385.28
## 36682            678    2175.64
## 36683            678     244.73
## 36684           1475       0.00
## 36685            592      66.68
## 36686            574      56.68
## 36687            556     226.55
## 36688            581     125.32
## 36689            598     170.00
## 36690           1621       0.00
## 36691            678     125.80
## 36692            659       0.00
## 36693            660     141.17
## 36694            651     357.89
## 36695           1000  114579.90
## 36696            674       0.00
## 36697            540     827.45
## 36698           1481     254.47
## 36699            659     401.45
## 36700            659       0.00
## 36701            658       0.00
## 36702            665     322.23
## 36703            666     266.85
## 36704            667     100.47
## 36705            667     196.54
## 36706            667       0.00
## 36707            668       0.00
## 36708           1537    1857.37
## 36709            479     167.59
## 36710            482      66.68
## 36711            674      49.60
## 36712            674       0.00
## 36713            674       0.00
## 36714            674    1488.86
## 36715            678       0.00
## 36716            674       0.00
## 36717            673       0.00
## 36718           1145     231.33
## 36719            680      74.68
## 36720            680       0.00
## 36721           1374     557.98
## 36722            672     424.36
## 36723            547     305.59
## 36724            386     100.00
## 36725            639       0.00
## 36726            616     437.46
## 36727            246      69.35
## 36728            667       0.00
## 36729            665      36.21
## 36730            659     131.63
## 36731            659     184.10
## 36732            659     323.89
## 36733            672     478.69
## 36734           1737  246535.58
## 36735            962     319.15
## 36736            671       0.00
## 36737            671    5365.34
## 36738            680       0.00
## 36739            679       0.00
## 36740            687     791.80
## 36741            674       0.00
## 36742            674     281.96
## 36743            678    1156.19
## 36744            678      94.22
## 36745            568     137.99
## 36746            659    1144.54
## 36747            658     633.57
## 36748           1409   69437.31
## 36749            666      84.88
## 36750           1011     171.17
## 36751           1997       0.00
## 36752            650       0.00
## 36753            479     186.02
## 36754           2006     335.71
## 36756           2015     514.44
## 36757            674       0.00
## 36758            673     217.89
## 36759            893     122.16
## 36760            672     199.09
## 36761            671       0.00
## 36762            679     164.75
## 36763            650      87.70
## 36764            667    2430.26
## 36765           1155    1288.66
## 36766            664     437.10
## 36767           2069   11902.31
## 36768            659     108.90
## 36769            667     441.52
## 36770           1750  256699.37
## 36771            632       0.00
## 36772            866   19412.35
## 36773            423      97.38
## 36774            672      44.65
## 36775            673       0.00
## 36776            673     981.97
## 36777           1290       0.00
## 36778            678     158.41
## 36779            527       0.00
## 36780            533       0.00
## 36781            524      39.58
## 36782            667     207.44
## 36783            667     274.55
## 36784            660     740.86
## 36785           1091   26876.84
## 36786            661     152.65
## 36787            723     852.76
## 36788            650       0.00
## 36789            645     153.85
## 36790           1395    2080.40
## 36791            673       0.00
## 36792            673       0.00
## 36793           1350       0.00
## 36794            673       0.00
## 36795            672       0.00
## 36796            671      18.05
## 36797            602     124.61
## 36798            239      28.00
## 36799            694    8436.11
## 36800            650     882.87
## 36801            803    6628.64
## 36802            646     410.58
## 36803            661    5879.49
## 36804           1239     605.83
## 36805            618     336.00
## 36806            671      41.82
## 36807            673    1479.42
## 36808            673     679.44
## 36809            673     281.81
## 36810            526     428.09
## 36811            664     296.30
## 36812            666     569.09
## 36813            660      97.22
## 36814            660   11851.91
## 36815           2069  111409.68
## 36816            657    1138.71
## 36817            557  279496.46
## 36818            471     149.46
## 36819            673     432.25
## 36820            673     359.70
## 36821            671   19681.81
## 36822            658      56.68
## 36823           1966    3607.35
## 36824           1652     249.40
## 36825            664     188.91
## 36826            664     923.26
## 36827            664      56.68
## 36828            664      66.68
## 36829            809   26994.37
## 36830            661     258.81
## 36831            667       0.00
## 36832            667      41.40
## 36833            667       0.00
## 36834            668    2737.30
## 36835           1968    3631.96
## 36836           1744     988.64
## 36837           1944    5445.83
## 36838           2062   84914.56
## 36839           1181   18448.53
## 36840            470   10514.98
## 36841           1971    3576.50
## 36842            671   32198.86
## 36843            776    2371.78
## 36844           1469    6585.32
## 36845            507       0.00
## 36846           1352       0.00
## 36847            876    6667.31
## 36848           1570     113.77
## 36849           1941     138.11
## 36850            664    2800.88
## 36851            665     135.21
## 36852            665     414.37
## 36853            875     680.97
## 36854           1585      28.51
## 36855            673       0.00
## 36856           1776     182.44
## 36857            527     344.87
## 36858           1307       0.00
## 36859           1276     117.50
## 36860            666     127.48
## 36861            661     762.89
## 36862            665     229.61
## 36863           1432   41083.92
## 36864            645     117.97
## 36865            643     165.10
## 36866            626     105.05
## 36867            906      86.11
## 36868            671      83.88
## 36869           1180    1092.59
## 36870            671       0.00
## 36871            672       0.00
## 36872            576     117.39
## 36873            556       0.00
## 36874            553     602.47
## 36875            549     521.20
## 36876            617     314.70
## 36877           1385     575.92
## 36878            650       0.00
## 36879            651     362.12
## 36880            654    1258.63
## 36881            814   90029.15
## 36883            667    1303.68
## 36884            664     214.16
## 36885            661     116.07
## 36886            666     114.51
## 36887            666     169.12
## 36888           1058       0.00
## 36889            659      51.16
## 36890            483       0.00
## 36891            890   10575.00
## 36892            343      84.19
## 36893            660     462.47
## 36894            799     735.72
## 36895            791     624.61
## 36897            653     123.89
## 36898            652     139.83
## 36899           1033    3445.84
## 36900            650       0.00
## 36901            650    1087.62
## 36902            652     931.78
## 36903           1415     961.69
## 36904            640     770.00
## 36905            664       0.00
## 36906           1078       0.00
## 36907            659    7928.08
## 36908            626      71.16
## 36909           1161     300.17
## 36910            658       0.00
## 36911            659     108.42
## 36912            659     830.66
## 36913            661     385.68
## 36914            659     420.05
## 36915           1514   42305.05
## 36916            659   62860.94
## 36917            857     393.48
## 36918            666      56.68
## 36919            747      89.38
## 36920           1753   88133.48
## 36921            661     506.80
## 36922            667       0.00
## 36923           1074       0.00
## 36924            647      86.22
## 36925            728    2026.35
## 36926            653     214.12
## 36927            653       0.00
## 36928            653     716.95
## 36929            657     100.00
## 36930           1957    1912.92
## 36931            832   18705.49
## 36932            652     149.91
## 36933            479      71.40
## 36934            633      82.68
## 36935            568     295.29
## 36936            569     576.55
## 36937           1078     353.50
## 36938           1517   17251.49
## 36939            654     200.59
## 36940           2001     892.81
## 36941           1431    1235.41
## 36943            664      97.05
## 36944           1435    9295.96
## 36945           1091   20060.14
## 36946           1804     721.35
## 36947            659    1050.59
## 36948            626     364.88
## 36949            637    2389.94
## 36950            483       0.00
## 36951            331     485.00
## 36952            147     211.17
## 36953           1477       0.00
## 36954            752    7857.77
## 36955            555     368.94
## 36956            562    1117.66
## 36957           1887     578.38
## 36958           1536       0.00
## 36959           2042    1814.06
## 36960           2059     170.71
## 36961            659     930.87
## 36962            660     120.69
## 36963            660       0.00
## 36964            658   11683.91
## 36965            689    1224.64
## 36966           1543     197.06
## 36967            645       0.00
## 36968           1868     226.90
## 36969           1595     723.59
## 36970            657     197.80
## 36971            654     220.56
## 36972            653     204.08
## 36973            652     145.47
## 36974            652    1028.70
## 36975           1063       0.00
## 36976            650     415.01
## 36977            650     253.01
## 36978            650     431.54
## 36979            297     213.73
## 36980           1107   25521.81
## 36981            479    1217.64
## 36982            842    1466.17
## 36983            596      60.80
## 36984            583      21.60
## 36985            605       0.00
## 36986           1556     404.79
## 36987            602      88.81
## 36988            105     116.13
## 36989             74       0.00
## 36990            297     119.68
## 36991           3431   18322.11
## 36992            657   10291.96
## 36993            652      60.00
## 36994            658      86.22
## 36995            658       0.00
## 36996            521     402.36
## 36997            633      65.00
## 36998            638     198.75
## 36999            637       0.00
## 37000           1509     848.93
## 37001            639       0.00
## 37002            969     138.90
## 37003            624     226.06
## 37004           1918    6179.31
## 37005            659       0.00
## 37006           1198  143322.15
## 37007            659    2792.56
## 37008            658     700.26
## 37009           1512     310.59
## 37010            657     187.28
## 37011            661      11.72
## 37012           1600       0.00
## 37013            651     104.77
## 37014            650    2987.96
## 37015           1908    2368.09
## 37016            650     120.14
## 37017            644     901.26
## 37018           1020       0.00
## 37019            640     130.82
## 37020            311       0.00
## 37021            553     266.28
## 37022            576     190.67
## 37023            443     236.71
## 37024           1772       0.00
## 37025           1237       0.00
## 37026            652       0.00
## 37027            660     120.00
## 37028            575     390.89
## 37029            660    1117.20
## 37030            658       0.00
## 37031            819   51753.98
## 37032            659      11.72
## 37033            659    1387.74
## 37034           1587   61850.91
## 37035            645     162.37
## 37036            645    1119.00
## 37037            645     328.71
## 37038           1945    3220.63
## 37039           1287   89073.39
## 37040            630     310.33
## 37041            630       0.00
## 37042            972    1018.97
## 37043            624      94.68
## 37044           1589       0.00
## 37045            611     369.20
## 37046           1393     106.33
## 37047           1143     507.16
## 37048            645     459.49
## 37049            645    3665.60
## 37050            645     106.05
## 37051            827     409.50
## 37052            657     331.34
## 37053            868    5399.55
## 37054            657      78.17
## 37055            659    2897.33
## 37056            659     378.48
## 37057            661     184.66
## 37058            508     207.77
## 37059           1659       0.00
## 37060           1601   36176.51
## 37061            654      98.05
## 37062           1697      77.69
## 37063            653     974.43
## 37064            652       0.00
## 37065           1630     331.24
## 37066            996    1816.79
## 37067            659     765.98
## 37068            645     888.23
## 37069            645       0.00
## 37070            739     216.96
## 37071            640     478.50
## 37072            643     129.70
## 37073            619      40.85
## 37074            639       0.00
## 37075            639     236.30
## 37076            624      75.00
## 37077            630      67.40
## 37078            632       0.00
## 37079            158     555.68
## 37080           1413     448.13
## 37081            643     132.15
## 37082            645     258.88
## 37083            651      66.68
## 37084            651     210.67
## 37085            657       9.71
## 37086            657     721.68
## 37087           1597     109.41
## 37088            657     342.09
## 37089            657      16.66
## 37090             80       0.00
## 37091           2086  103447.26
## 37092           1290     371.12
## 37093            559     577.32
## 37094            597     863.73
## 37095            654     317.41
## 37096            719       0.00
## 37097            654     375.36
## 37098            651     201.55
## 37099            653    1206.77
## 37100            651       0.00
## 37101            651       0.00
## 37102            651       0.00
## 37103            652      56.68
## 37104            652       0.00
## 37105            650     404.89
## 37106           1393     155.65
## 37107            643     185.00
## 37108            619     938.54
## 37109           1010      89.61
## 37110            638       0.00
## 37111           1029   17390.42
## 37112            637   13151.01
## 37113           1434      32.59
## 37114            259     667.77
## 37115            479     648.36
## 37116            486     175.66
## 37117            511     117.84
## 37118            518     139.90
## 37119            598     548.62
## 37120            604       0.00
## 37121            637     175.95
## 37122            629     436.91
## 37123            729    1429.31
## 37124            612       0.00
## 37125            643     609.25
## 37126            640    1152.69
## 37127            640     137.99
## 37128            645     353.05
## 37129           1698     171.16
## 37130            645     269.50
## 37131            645     381.81
## 37132            650    1733.23
## 37133            650     629.93
## 37134            652     586.83
## 37135            652       0.00
## 37136            863   22820.74
## 37137            652     260.90
## 37138            652     442.06
## 37139            651     163.15
## 37140           1484     168.47
## 37141            652     936.86
## 37142            652     396.09
## 37143            652     147.92
## 37144            654     276.30
## 37145            654     157.68
## 37146            654      11.72
## 37147            508   29275.41
## 37148            650     346.86
## 37149           2233     269.08
## 37150            232     143.77
## 37151            562     480.44
## 37152           1886     118.94
## 37153           2016     618.07
## 37154            650     420.51
## 37155            733      41.33
## 37156            650     296.76
## 37157            648     139.96
## 37158           2181    3185.08
## 37159            633    3082.81
## 37160            637     422.06
## 37161           1240     143.74
## 37162            498      78.00
## 37163            601     148.44
## 37164            637     430.42
## 37165            650    4232.65
## 37166            645     217.49
## 37167            651     585.03
## 37168            653     656.90
## 37169            391     107.48
## 37170            653     264.04
## 37171            652      97.63
## 37172           1145    6316.94
## 37173            980     455.56
## 37174           1516     746.68
## 37175            652     119.68
## 37176           1778       0.00
## 37177            650     296.58
## 37178            954    6088.82
## 37179           2089   55551.84
## 37180            646     144.79
## 37181            646     655.84
## 37182            640    5586.94
## 37183            638    1201.00
## 37184            632     117.47
## 37185            632    1635.89
## 37186            845    5246.23
## 37187           1326     362.30
## 37188            503     236.26
## 37189           1439     550.17
## 37190            562    1276.37
## 37191            353       0.00
## 37192           1610   19186.47
## 37193            633     439.08
## 37194            633     293.18
## 37195            630     398.24
## 37196            637     757.47
## 37197            637     194.98
## 37198            637       0.00
## 37199            637     107.58
## 37200           1101     118.87
## 37201            624      88.96
## 37202            643      48.60
## 37203            646     250.85
## 37204            650    1418.05
## 37205           1254      63.35
## 37206            647     443.20
## 37207            652      30.24
## 37208            756     190.10
## 37209            651    1844.05
## 37210            650      74.98
## 37211            650     148.97
## 37212            926   26110.69
## 37213            650       0.00
## 37214            650     168.95
## 37215            651     319.11
## 37216           1554   62263.38
## 37217            624      64.50
## 37218            637     275.58
## 37219            638     621.00
## 37220           1067     531.18
## 37221            950    1998.29
## 37222           1777    7478.09
## 37223            538    1754.56
## 37224            514       0.00
## 37225            596      41.40
## 37226           1114    1248.21
## 37227            359       0.00
## 37228            387      13.50
## 37229            629     192.23
## 37230           1852       0.00
## 37231            633       0.00
## 37232           1715     489.09
## 37233            639     212.52
## 37234            639     150.26
## 37235            637     188.42
## 37237            624     115.52
## 37238            645       0.00
## 37239            898     284.28
## 37240           1906     232.24
## 37241           1503     180.90
## 37242            643     182.77
## 37243            643     193.00
## 37244            643     239.01
## 37245            791     146.97
## 37246            686       0.00
## 37247            482     543.35
## 37248            221       0.00
## 37249            527     131.57
## 37250           1184     613.18
## 37251            671     163.17
## 37252            640       0.00
## 37253            640    1186.39
## 37254            813     208.07
## 37255            646     150.96
## 37256            646    1050.13
## 37257            646     315.60
## 37258           1451     988.86
## 37259           1967     129.66
## 37260            644     113.67
## 37261            644    1216.82
## 37262            624     199.90
## 37263           1060       0.00
## 37264            618    1113.04
## 37265            903     238.03
## 37266            637     266.35
## 37267            865     129.60
## 37268            639     287.59
## 37269           1863      51.86
## 37270            633     386.53
## 37271           1689    6222.05
## 37272            442      78.17
## 37273            601     149.15
## 37274           1760    2114.15
## 37275            617       0.00
## 37276            645     192.90
## 37277            947   28617.11
## 37278            646     190.10
## 37279            646       0.00
## 37280           2037       0.00
## 37281            470     930.57
## 37282            584     414.67
## 37283            608       0.00
## 37284            637     183.43
## 37285            639     238.29
## 37286            643      71.13
## 37287            624      88.29
## 37288           1498     580.79
## 37289            810    9559.92
## 37290            632      71.21
## 37291            698    3983.05
## 37292            626     232.20
## 37293            616    1150.90
## 37294            643      99.59
## 37295            644     197.43
## 37296            643       0.00
## 37297            640      56.57
## 37298            643     108.60
## 37299           1793    2381.55
## 37300            640      10.57
## 37301            640      51.16
## 37302            644      32.69
## 37303           1396  118860.26
## 37304            422      68.98
## 37305            148     117.71
## 37306            747       0.00
## 37307            602    1793.76
## 37308            562     289.23
## 37309            568       0.00
## 37310            644     109.75
## 37311            740     188.40
## 37312            624     112.70
## 37313           1195     103.91
## 37314            623   10795.15
## 37315            631     322.45
## 37316           1214     611.41
## 37317            630     584.82
## 37318            633    1348.21
## 37319            633       0.00
## 37320            444     161.80
## 37321            598     138.34
## 37322            363     711.38
## 37323            637     114.86
## 37324            639     513.85
## 37325            639      95.34
## 37326            630       0.00
## 37327            630     380.56
## 37328            632     458.58
## 37329            624       0.00
## 37330            624     489.85
## 37331            624      66.68
## 37332            624     440.14
## 37333           1169     825.69
## 37334            609    1138.59
## 37335            640       0.00
## 37336            640    1545.13
## 37337            640       0.00
## 37338            640     202.49
## 37339            640     975.38
## 37340            640     615.13
## 37341           1764     133.12
## 37342           1275       0.00
## 37343            435     563.84
## 37344            601      56.68
## 37345            569    1176.75
## 37346            823     824.56
## 37347            378     359.71
## 37348            640     813.53
## 37349            643     321.15
## 37350           1392     140.61
## 37351            615    1398.38
## 37352           1255      61.24
## 37353            632       0.00
## 37354            629   29629.38
## 37355           1672   11251.47
## 37356           1315     104.43
## 37357            639      11.72
## 37358            637     227.19
## 37359            525     555.44
## 37360            605     349.91
## 37361           1008      36.21
## 37362            639      78.17
## 37363            881       0.00
## 37364            671     691.51
## 37365            632    2127.16
## 37366            931    1034.28
## 37367            632    1736.47
## 37368           1883       0.00
## 37369            950       0.00
## 37370            297     109.19
## 37371            545    3158.65
## 37372            556       0.00
## 37373            555     882.98
## 37374            624    1155.87
## 37375            631     346.99
## 37376            626      78.35
## 37377            639       0.00
## 37378            639       0.00
## 37379            832    3436.16
## 37380           1147      47.20
## 37381            639       0.00
## 37382            639       0.00
## 37383            637     542.78
## 37384           1933    2864.71
## 37385            906       0.00
## 37386           1332     276.89
## 37387            639     130.74
## 37388            640     526.69
## 37389            598    7295.29
## 37390            605     130.49
## 37391            640     606.01
## 37392            886    1695.26
## 37393            624     317.00
## 37394            841    9333.90
## 37395            630     218.74
## 37396            624     664.90
## 37397            625     110.00
## 37398            624     354.66
## 37399            619       0.00
## 37400            617      83.00
## 37401            618     108.13
## 37402           1227   69491.17
## 37403            612     997.95
## 37404            604      63.58
## 37405            560      57.58
## 37406           1782   14080.56
## 37407            612       0.00
## 37408            618     148.76
## 37409            630    9574.02
## 37410           2056       0.00
## 37411            630    1408.14
## 37412            631     116.86
## 37413            830    1124.47
## 37414           2052   35881.25
## 37415           2051    1978.22
## 37416           2051       0.00
## 37417           1040     144.20
## 37418           2055     267.02
## 37419           1472    1754.43
## 37420           1874    2524.01
## 37421           1855     313.65
## 37422            448    1029.37
## 37423             64       0.00
## 37425           1919     594.25
## 37426           1653       0.00
## 37427            588   15511.39
## 37428            386     932.98
## 37429            737   17914.05
## 37430           1801      27.07
## 37431            633     239.42
## 37432            773     570.93
## 37433            624     175.00
## 37434            633     345.49
## 37437           1927   38089.63
## 37438            619     375.33
## 37439           1812     129.21
## 37440            622     354.96
## 37441            624       0.00
## 37442            820     454.34
## 37443            616     409.06
## 37444            499    5603.01
## 37445            623     209.21
## 37446            624    1026.43
## 37447           2050     494.60
## 37448            617     214.76
## 37449            631       0.00
## 37450            630       0.00
## 37451           2056      97.96
## 37452           2056      97.96
## 37453           1540     189.81
## 37454           1951      58.98
## 37455            629       0.00
## 37456            633       8.58
## 37457            633     298.52
## 37458            608      66.68
## 37459            629     616.18
## 37460            629     377.25
## 37461            629      60.01
## 37462            624    2319.54
## 37463            625     247.10
## 37464            632     663.88
## 37465            631       0.00
## 37466            838   33410.21
## 37467           1967   12631.01
## 37468            626     435.92
## 37469            622    2903.69
## 37470            619     826.98
## 37471           1912    2098.77
## 37472           2055    2150.62
## 37473           1378    4595.55
## 37474            629      44.63
## 37475           2056   23917.02
## 37476            630      69.43
## 37477            626      63.21
## 37478            624     100.00
## 37479           2055     602.68
## 37480           1200   21944.04
## 37481            616     167.23
## 37482           2035     697.77
## 37483           2048    4747.36
## 37484            624    1472.64
## 37485            623     990.08
## 37486           2045       0.00
## 37487            546      86.98
## 37488            533     256.48
## 37489            604     479.11
## 37490           2044     232.46
## 37491           2049     166.24
## 37492           2037     147.09
## 37493            693   47067.78
## 37494            626    1218.15
## 37495           1299    3901.36
## 37496           1828     103.49
## 37497           1322     570.40
## 37498           2056     215.61
## 37499            629     212.72
## 37500            630    3546.80
## 37501           1842       8.62
## 37502            546       0.00
## 37503            605     207.42
## 37504            602     214.98
## 37505            563     571.57
## 37506           1890       0.00
## 37507            553     118.01
## 37508            630     126.93
## 37509            629     250.64
## 37510           1953       0.00
## 37511           2051     106.68
## 37512           2055       0.00
## 37513            612    1513.85
## 37514            612      78.17
## 37515            647      99.62
## 37516            623     172.24
## 37517           2050       0.00
## 37518            617     147.50
## 37519           2042      51.16
## 37520            527       0.00
## 37522           1404    2093.66
## 37523            596     274.45
## 37524           2042    9059.52
## 37525            617       0.00
## 37526           2044      78.17
## 37527           2044       0.00
## 37528           2044      78.17
## 37529            619     205.11
## 37530            623     857.53
## 37531            623       0.00
## 37532            619       0.00
## 37533            619     141.68
## 37534           2045       0.00
## 37535           2045       0.00
## 37536            622       0.00
## 37537            612     747.57
## 37538            610    1029.48
## 37539           2052      87.46
## 37540           2052    1188.68
## 37541           2052     318.13
## 37542            780      72.01
## 37543           1040      83.32
## 37544            728     745.61
## 37545            132     321.18
## 37546           2254   15948.58
## 37547            588     953.37
## 37548            651     750.00
## 37549            604      96.00
## 37550           1985      66.68
## 37551            561     957.68
## 37552            626       0.00
## 37553            624     221.57
## 37554           2052     310.72
## 37555           2037     112.73
## 37556            612     126.42
## 37557            612     171.17
## 37558            616     520.09
## 37559            622    1416.62
## 37560            623     176.57
## 37561            623     204.93
## 37562           1805     294.61
## 37563           1355   11985.66
## 37564            619     114.19
## 37565           1225      48.60
## 37566            295     105.91
## 37567           1846    2604.19
## 37568           1504   49946.73
## 37569            560    9684.56
## 37570            770    1373.29
## 37571           1996     241.75
## 37572            855      55.02
## 37573            589    9759.25
## 37574           2015     887.27
## 37575           2009       0.00
## 37576            582     180.13
## 37578            619     279.19
## 37579            810       0.00
## 37580           1052       0.00
## 37581           2035       0.00
## 37582            640     324.64
## 37583            589    2613.26
## 37584            584       0.00
## 37585           1986       0.00
## 37586            615     226.91
## 37587            623    1364.26
## 37588            617   17446.52
## 37589           1924     404.13
## 37590            597     317.14
## 37591           1775     107.52
## 37592            617       0.00
## 37593            619       0.00
## 37594            622    1749.31
## 37595           2048     572.74
## 37596            622       0.00
## 37597           1743    2297.53
## 37598            623     448.42
## 37599            616   11015.43
## 37600           1003     227.96
## 37601            609       0.00
## 37602           1317       0.00
## 37603            470     219.25
## 37604            906     574.14
## 37605            598       0.00
## 37606            603       0.00
## 37607           1485     121.60
## 37608            608      78.17
## 37609           1919       0.00
## 37610           1978    1156.86
## 37612            365       0.00
## 37613           2035       0.00
## 37614            610    1988.13
## 37615            612     874.70
## 37616            710    1659.15
## 37617            623     339.22
## 37618            622     219.02
## 37619           1023     172.04
## 37620           2045     476.13
## 37621           2044      66.45
## 37622           1568   40782.76
## 37623            617     175.34
## 37624            616       0.00
## 37625            562     184.11
## 37626            604     746.05
## 37627            605       0.00
## 37628            685     241.47
## 37629            595     104.03
## 37630            589     152.41
## 37631           2014     685.27
## 37632            845      91.97
## 37633            608     157.10
## 37634           2042     762.75
## 37635           2042     324.03
## 37636            617     333.99
## 37637            617     117.35
## 37638            617     327.38
## 37639           2045       0.00
## 37640            619     114.08
## 37641            619     396.61
## 37642            622     208.17
## 37643           1070   26655.07
## 37644           1117    9078.13
## 37645           2049     205.71
## 37646           3597   93200.65
## 37647            776       0.00
## 37648           1609     160.27
## 37649            822   27326.35
## 37650            615   23501.54
## 37651            616     121.64
## 37652            612     163.27
## 37653            821   82006.07
## 37654            610    1001.35
## 37655           1134    1693.79
## 37656           1925    1454.92
## 37657            612      99.93
## 37658            583       0.00
## 37659            583     690.10
## 37660            583       0.00
## 37661            596     153.48
## 37662            594     273.35
## 37663            605     135.21
## 37664           1872     237.74
## 37665            549       0.00
## 37666            549     102.98
## 37667            578     225.57
## 37668            612     187.97
## 37669           1393     253.65
## 37670            622      25.39
## 37671           2048       0.00
## 37672            622     186.00
## 37673            619     165.44
## 37674           1874  212320.19
## 37675            630     353.94
## 37676            617     116.95
## 37677           2044      66.45
## 37678            985     282.12
## 37679            617    2339.09
## 37680           1952     235.22
## 37681           1852   13716.40
## 37682           2002     213.35
## 37683            604   22574.19
## 37684            605       0.00
## 37685            595       0.00
## 37686           1361     261.82
## 37687            627     118.14
## 37688           1114     258.96
## 37689            617     433.56
## 37690            660     532.69
## 37691            617    2538.30
## 37692           1174    1915.99
## 37693            617     363.23
## 37694            612     235.41
## 37695            612     527.56
## 37696            615       0.00
## 37697           1393    4559.45
## 37698           2041     354.36
## 37699            615       0.00
## 37700           2959     120.00
## 37701            533       0.00
## 37702           1508   11376.99
## 37703           2034       0.00
## 37704           2029     372.84
## 37705           2029     292.16
## 37706           2029     220.40
## 37707           2028     177.65
## 37708           1041      56.68
## 37709            549      11.07
## 37710           1978     125.69
## 37711             80       0.00
## 37712            615       0.00
## 37713            965      67.23
## 37714           2041    2982.05
## 37715           2037     214.78
## 37716           2037       0.00
## 37717           2044       0.00
## 37718            617    1026.56
## 37719            603     450.65
## 37720            604     283.39
## 37721            597      95.47
## 37722           2024     266.72
## 37723            384    3790.30
## 37724            608      99.45
## 37725            605     238.00
## 37726           1985   14594.97
## 37727           2042     704.81
## 37728           2042     650.66
## 37729            616     189.64
## 37730            616     923.20
## 37731           2037     229.12
## 37732           2041     385.16
## 37733            616       0.00
## 37734            478     121.42
## 37735            540     361.72
## 37736            912       0.00
## 37737            573     279.02
## 37738           1905    3413.00
## 37739            605     243.64
## 37740            608      61.35
## 37741            612     198.70
## 37742            608      66.68
## 37743           2016     737.48
## 37744            583     223.85
## 37745           2041     438.09
## 37746           2041     677.14
## 37747            612     123.36
## 37748           2035     139.92
## 37749            616     372.56
## 37750           1364       0.00
## 37751           1121     272.03
## 37752            618     363.21
## 37753            583      38.03
## 37754            582     626.83
## 37755           2016     938.68
## 37756            590     451.92
## 37757            933    3375.13
## 37758            591     360.01
## 37759            608     368.39
## 37760            604      61.35
## 37761            604    1875.79
## 37762           1525     125.74
## 37763           2031     178.98
## 37764            602     158.96
## 37765            598     179.02
## 37766           1115      59.16
## 37767           2000     135.18
## 37768           1762      75.15
## 37769            616       0.00
## 37770            610     159.77
## 37771           2035      56.68
## 37772            612     564.68
## 37773            615       0.00
## 37774           1216   11036.25
## 37775           2654   90400.55
## 37776            616     272.63
## 37777            615      63.00
## 37778           1327     525.09
## 37779           1925     239.43
## 37780           2002     367.17
## 37781            570       0.00
## 37782           1959       0.00
## 37783            604     119.00
## 37784            604     486.49
## 37785            604     636.51
## 37786            608     113.30
## 37787            612     155.70
## 37788            608     118.00
## 37789            591     169.92
## 37790           2016     306.06
## 37791            594     285.72
## 37792           2041       0.00
## 37793            612     250.73
## 37794            611     927.87
## 37795            611    2660.54
## 37796           2035     235.71
## 37797           2035       0.00
## 37798            493       0.00
## 37799           1918     127.01
## 37800            883    1898.23
## 37801            595     129.20
## 37802           1995     409.73
## 37803            583     114.17
## 37804            584     897.36
## 37805           2034       0.00
## 37806            604      51.16
## 37807            604     743.21
## 37808           1487   12289.86
## 37809            608      94.82
## 37810           2030     298.29
## 37811           1730      46.21
## 37812            602    2126.51
## 37813           1360       0.00
## 37814            603     126.23
## 37815            602     733.88
## 37816            956    4168.93
## 37817           2035     291.59
## 37818            610       0.00
## 37819           1508     297.33
## 37820            578     189.86
## 37821            549     660.96
## 37822           1946     626.67
## 37823            747     916.52
## 37824            601     480.18
## 37825            604     840.31
## 37826            583     145.30
## 37827            590      95.97
## 37828            598    1539.33
## 37829           2035     531.32
## 37830           2030     766.43
## 37831           1934     196.55
## 37832            374       0.00
## 37833            345      66.68
## 37834           2029     259.14
## 37835            581     459.80
## 37836            612     102.81
## 37837            384     979.92
## 37838           2035      98.65
## 37839           2035    1320.67
## 37840            547     291.80
## 37841            608      36.55
## 37842            608       0.00
## 37843           2034     823.32
## 37844            582    1647.99
## 37845            583     256.05
## 37846            594      66.68
## 37847            591      63.35
## 37848            603     258.01
## 37849            988    2408.66
## 37850            846     161.96
## 37851           1895     160.60
## 37852           2030    1320.06
## 37853            604     523.41
## 37854            605     246.71
## 37855           2031   13972.43
## 37856            605       7.60
## 37857            605      11.72
## 37858           1980    1328.90
## 37859            575     137.97
## 37860           2035     214.17
## 37861            610     130.38
## 37862            610     259.98
## 37863            464     270.68
## 37864            435     121.27
## 37865           1982    3998.57
## 37866           2031       0.00
## 37867           2031  102245.45
## 37868            604     714.25
## 37869            601       0.00
## 37870           1451     115.56
## 37871           1561      92.08
## 37872            596     857.13
## 37873            589       0.00
## 37874           2034     221.84
## 37875           1853      66.41
## 37876            608      51.16
## 37877            608       0.00
## 37878            394     124.87
## 37879            477     141.62
## 37880           1971       0.00
## 37881           2034     443.25
## 37882            583     144.97
## 37883           1081     101.54
## 37884            590     972.88
## 37885            595     117.27
## 37886            594   33311.38
## 37887            601     510.18
## 37888           2028    2041.53
## 37889            604     152.02
## 37890           2031    2964.24
## 37891           2031     352.22
## 37892            576     897.31
## 37893            246       0.00
## 37894           1904     848.06
## 37895            541       0.00
## 37896            479       0.00
## 37897            534     130.35
## 37898            511     853.75
## 37899            611     326.25
## 37900           2030     138.09
## 37901           1680     161.52
## 37902            603     100.02
## 37903            602      79.26
## 37904            602     365.84
## 37905            602      67.29
## 37906            595      61.35
## 37907            594      78.17
## 37908            591     154.47
## 37909           1567    1790.16
## 37910            596      78.17
## 37911            598     130.47
## 37912            583    1065.02
## 37913           2058     609.31
## 37914            588       0.00
## 37915           2034     268.37
## 37916            581     128.00
## 37917           1917     228.22
## 37918            435       0.00
## 37919           2015     393.32
## 37920            583      59.50
## 37921            583       0.00
## 37922           1071      90.42
## 37923           2107  207384.10
## 37924           1478   13090.84
## 37925            594     280.76
## 37926            594      74.34
## 37927            601     275.39
## 37928            598     708.14
## 37929           1928       0.00
## 37930           2031       0.00
## 37931           2031       0.00
## 37932           2031     606.86
## 37933           1790     353.82
## 37934            603     423.38
## 37935            591     353.24
## 37936            589   18571.96
## 37937            587    2392.10
## 37938            591     316.13
## 37939            794   56841.83
## 37940            597     443.64
## 37941            603     213.90
## 37942            603      45.88
## 37943            602    1884.28
## 37944            540       0.00
## 37945           1677   12518.72
## 37946            514    1499.81
## 37947            602       0.00
## 37948           2027     186.51
## 37949           2028     260.56
## 37950            602       0.00
## 37951           2028       0.00
## 37952           2022     439.91
## 37953            598     370.10
## 37954           1085   41528.61
## 37955            595    1436.54
## 37956           1220    2764.70
## 37957           1140      94.45
## 37958           1687     262.62
## 37959            598     100.00
## 37960            589       0.00
## 37961           1884   42894.35
## 37962            589     375.22
## 37963            583    2058.28
## 37964           2009     478.22
## 37965           2007       0.00
## 37966            581       0.00
## 37967            926   19604.09
## 37968            567     364.14
## 37969            273    1425.36
## 37970           1897      85.42
## 37971            420      85.50
## 37972            400      69.43
## 37973            513       0.00
## 37974           1938     144.65
## 37975            541     244.35
## 37976            531     748.18
## 37977            430       0.00
## 37978           1989     340.72
## 37979           1711     179.39
## 37980            575      88.89
## 37981            574    1854.67
## 37982           1986     608.48
## 37983            582     435.46
## 37985           1123     279.04
## 37986            583     337.60
## 37987            589      48.05
## 37988            587       0.00
## 37989           1215   84532.71
## 37990           1308     170.24
## 37991            613     349.33
## 37992            594   12710.80
## 37993            594     211.80
## 37994           1480    2967.94
## 37995           2016     219.46
## 37996            595       0.00
## 37997            599       0.00
## 37998            598       0.00
## 37999            660     152.41
## 38000            602      27.94
## 38001            601    1285.54
## 38002            689     211.32
## 38003           1212     258.03
## 38004            485    9165.27
## 38005            533       0.00
## 38006            498     295.10
## 38007            598     146.28
## 38008            598     366.96
## 38009            597    1996.94
## 38010           2009   21653.74
## 38011            598     199.67
## 38012            595     449.25
## 38013           1007    5096.61
## 38014            595     208.00
## 38015           1539   78258.06
## 38016           1030       0.00
## 38017           1134     202.86
## 38018            591   18985.93
## 38019           1902   18844.87
## 38020            589    1125.62
## 38021            588     185.10
## 38022           2014     277.06
## 38023           2015     839.24
## 38024           2009    5634.47
## 38025            582     569.17
## 38026            581     119.68
## 38027            576     532.33
## 38028            569     224.48
## 38029           1114    6532.83
## 38030            540     347.85
## 38031           2002      99.32
## 38032           1989       0.00
## 38033           1979     328.32
## 38034           1109    2823.22
## 38035            591       0.00
## 38036            591     112.95
## 38037            651       0.00
## 38038            595       0.00
## 38039           1093       0.00
## 38040           1162   50894.90
## 38041            598     158.78
## 38042           1860   76511.67
## 38043           1017     309.01
## 38044            598       0.00
## 38045           2022     377.50
## 38046            597     325.84
## 38047           2023       0.00
## 38048           1243    1833.35
## 38049            595     129.27
## 38050            595    4064.97
## 38051            589       0.00
## 38052           2016     227.26
## 38053           2016       0.00
## 38054            583     534.56
## 38055            587     280.36
## 38056            570       0.00
## 38057            967      82.98
## 38058            386     192.77
## 38059           1918     118.91
## 38060           1779     216.62
## 38061            590     686.33
## 38062           2022     184.95
## 38063            596    3725.57
## 38064            596    1262.89
## 38065           1724      38.05
## 38066           1939      43.49
## 38067            540    2515.73
## 38068            582       0.00
## 38069           1993    1212.37
## 38070            483     699.59
## 38071            521     208.38
## 38072           1940    3813.52
## 38073            574      78.17
## 38074            569       0.00
## 38075            583       0.00
## 38076            587     193.80
## 38077            587     115.54
## 38079           2015       0.00
## 38080            589       0.00
## 38081            702      72.52
## 38082           2022  109174.64
## 38083            595    1218.13
## 38084           2016   35087.78
## 38085           2016      35.19
## 38086           2016     503.64
## 38087            594     103.40
## 38088            594    1151.25
## 38089            387     178.40
## 38090            726    8049.27
## 38091            534     235.27
## 38092            435     407.00
## 38093            594       0.00
## 38094            615    6917.63
## 38095            591     223.19
## 38096            591     103.39
## 38097           2016     102.32
## 38098           2016     858.36
## 38099           2016     607.39
## 38100           2016     405.29
## 38101            705      25.43
## 38102           1437      91.24
## 38103           2014   55463.44
## 38104           2015       0.00
## 38105            593     128.64
## 38106            589     506.36
## 38107            708  115870.88
## 38108            584     114.80
## 38109            587     278.64
## 38110            583     119.68
## 38111            776     102.22
## 38112            583     494.19
## 38113           1813      91.53
## 38114           1925     206.38
## 38115           1989     605.16
## 38116           1989     133.72
## 38117           2002     638.39
## 38118            576       0.00
## 38119           1021    8154.65
## 38120            555     153.48
## 38121           1985     331.11
## 38122            538     853.06
## 38123            521     582.73
## 38124            963     220.26
## 38125            507    2855.99
## 38126           1988       0.00
## 38127            975    1361.13
## 38128           1648     906.65
## 38129            556   23857.04
## 38130            575       0.00
## 38131           1876   10410.95
## 38132            568    1170.81
## 38133            578      75.00
## 38134           2009      66.68
## 38135            582    1685.30
## 38136            582     566.99
## 38137           2013    1386.99
## 38138           1986  238618.32
## 38139            848     306.21
## 38140           1944   23541.45
## 38141           2020     274.76
## 38142           2016   19188.37
## 38143           2016     267.69
## 38144           1427      97.94
## 38145           2016    1316.94
## 38146           2016   27347.19
## 38147           2016     434.17
## 38148           2016     320.55
## 38149           1790       0.00
## 38150            540     199.74
## 38151            531      28.96
## 38152           1552     122.59
## 38155           2016     340.75
## 38156           2016     138.14
## 38157           1461     919.48
## 38158            584     360.69
## 38159            582     101.97
## 38160           2009     158.99
## 38161            583     175.65
## 38162            573      73.78
## 38163            570      31.57
## 38164            770     307.20
## 38165            569     878.82
## 38166            568       0.00
## 38167            574    3176.72
## 38168           1060      86.96
## 38169            555     816.97
## 38170            555     110.00
## 38171           1978     452.21
## 38172           1989    1338.45
## 38173            560       0.00
## 38174           1629   72483.75
## 38175            930      84.60
## 38176           1953     100.17
## 38177            576     318.95
## 38178            575      72.42
## 38179            568     393.15
## 38180            569     140.40
## 38181            652      91.66
## 38182            569    1108.77
## 38183            583     140.51
## 38184           2009     558.88
## 38185            582   10102.17
## 38186            583    1174.63
## 38187           1088     180.50
## 38188            589     121.66
## 38189            588     432.63
## 38190            589     833.16
## 38191           1417      66.68
## 38192            591     162.00
## 38194            580     125.10
## 38195            441       0.00
## 38196            581      50.00
## 38197           2016       0.00
## 38198            650     186.40
## 38199            866    1369.15
## 38200           2009     858.56
## 38201           1254     199.03
## 38202            457    1018.09
## 38203           2000       0.00
## 38204            681     528.90
## 38205            589     129.21
## 38206           2016    1039.83
## 38207            415     119.87
## 38208            547     270.10
## 38209            496     228.63
## 38210            678   32544.03
## 38211            589     766.18
## 38212           1253     176.56
## 38213            769     134.32
## 38214           2013     453.07
## 38215            587    2151.02
## 38216            584     641.05
## 38217            582       0.00
## 38218           1392   20546.72
## 38219            576       0.00
## 38220            574    3939.21
## 38221            856   14549.74
## 38222           1619     566.08
## 38223           1979       0.00
## 38224            555     694.59
## 38225            597     318.39
## 38226            508     181.48
## 38227            510     127.03
## 38228            856    1355.88
## 38229           1988   11969.82
## 38230           1629     161.71
## 38231           1825      56.68
## 38232            574       0.00
## 38233            574    8981.61
## 38234            575   11760.32
## 38235            575     114.21
## 38236            575   16415.36
## 38237            574       0.00
## 38238           1167    7465.41
## 38239            582     596.00
## 38240            584       8.25
## 38241           2013    1236.90
## 38242            588     204.08
## 38243           1351     309.10
## 38244           2009     551.30
## 38245           2014       0.00
## 38246           1704      74.68
## 38247            415      91.97
## 38248           1845    2167.10
## 38249            546     183.98
## 38250           1904     271.45
## 38251            587      67.45
## 38252            587     163.01
## 38253            583     631.38
## 38254           2122  234637.27
## 38255            582       0.00
## 38256           1497     145.21
## 38257            847     163.17
## 38258            583     119.95
## 38259            799   15092.87
## 38260            576     347.53
## 38261            570       0.00
## 38262            667    1107.30
## 38263            568      56.68
## 38264            568     763.55
## 38265            813    1013.06
## 38266            562    4770.34
## 38267           1989       0.00
## 38268            561     162.54
## 38269           1738     418.47
## 38270            549     533.51
## 38271           1813     190.86
## 38272           1084       0.00
## 38273           1716     179.77
## 38274            871       0.00
## 38275           1910     162.35
## 38276           1834    2536.41
## 38277           1407     453.73
## 38278            508      91.15
## 38279           1978      97.96
## 38280            555    1353.62
## 38281            554     100.27
## 38282            559     193.82
## 38283            568     104.55
## 38284           1695      56.68
## 38285            582       0.00
## 38286            954    1192.90
## 38287            582     362.73
## 38288           2010       0.00
## 38289            584     537.65
## 38290            581     949.68
## 38291           2006     138.40
## 38292           2006     593.15
## 38293           1251       0.00
## 38294            464     184.23
## 38295           1145   38771.37
## 38296            580     123.75
## 38297            583    1185.91
## 38298            583       0.00
## 38299            574      74.53
## 38300            578       0.00
## 38301            573     184.42
## 38302           1405     139.94
## 38303            573    1422.53
## 38304            566     516.76
## 38305           1985       0.00
## 38306            562    3301.52
## 38307            562     261.89
## 38308            562     359.07
## 38309           1975     599.90
## 38310            549     251.87
## 38311           1318   10109.40
## 38312            548     747.06
## 38313            554     656.62
## 38314            562     479.66
## 38316            583     166.55
## 38317            583    1183.01
## 38318            582       0.00
## 38319           2007     231.13
## 38320            525    1190.96
## 38321           1972     530.50
## 38322           2007       0.00
## 38323           2006     201.96
## 38324            569       0.00
## 38325           1999     365.99
## 38326            561     120.00
## 38327           1604     638.49
## 38328            493    2946.56
## 38329            562     271.56
## 38330           1988       0.00
## 38331            563    3781.37
## 38332            559     305.03
## 38333            554     126.68
## 38334            555     271.04
## 38335            676      68.71
## 38336            573      74.44
## 38337            570       0.00
## 38338            569     681.93
## 38339            569       0.00
## 38340            567     313.32
## 38341            863    2074.42
## 38342            879       0.00
## 38343           1749     176.00
## 38344            583      46.95
## 38345           1656     254.82
## 38346           1925    1358.92
## 38347            525      38.25
## 38348            519     105.75
## 38349            442     277.25
## 38350           2007     619.93
## 38351            580    1545.27
## 38352           2006    1615.49
## 38353           2006     121.66
## 38354            575      36.21
## 38355           2002       0.00
## 38356            574     233.22
## 38357           2000     970.41
## 38358            556     103.86
## 38359            559     134.00
## 38360           1447     301.54
## 38361            561    1055.36
## 38362            370     610.47
## 38363            309     182.95
## 38364           1463   80040.09
## 38365           1946     145.60
## 38366           1964       0.00
## 38367            552     214.98
## 38368           1971    2152.03
## 38369            514      56.68
## 38370            562     259.92
## 38371           1030      62.54
## 38372           1988       0.00
## 38373            563     259.40
## 38374            552      91.97
## 38375           1629      59.16
## 38376            198     153.03
## 38377            570     410.00
## 38378            569       0.00
## 38379            702      56.68
## 38380            576       0.00
## 38381           2001     207.77
## 38382            580    1162.91
## 38383           2002   25474.40
## 38384           1178       0.00
## 38385           1937      66.98
## 38386           1064      92.77
## 38387            538     100.17
## 38388           1953     318.07
## 38389           2002     212.83
## 38390           1899     454.64
## 38391            575     217.10
## 38392            568    1280.50
## 38393            570       0.00
## 38394            570    1194.91
## 38395           1007  243364.67
## 38396            574       0.00
## 38397           1863    3675.44
## 38398           1487     130.68
## 38399           1960       0.00
## 38400           1946       0.00
## 38401            220     718.62
## 38402            542      86.22
## 38403            330     143.21
## 38404            568    7359.21
## 38405           2591     862.81
## 38406           2000      82.77
## 38407            575     251.20
## 38408            744     225.17
## 38409            603     351.31
## 38410            575     210.20
## 38411            573     174.25
## 38412            569       0.00
## 38413            563     350.28
## 38414           1339  101087.16
## 38415           1413     178.06
## 38416            550      63.83
## 38417            545     658.78
## 38418           1639     172.26
## 38419            555      71.10
## 38420            554     164.86
## 38421           1993   56631.36
## 38422           2000     321.97
## 38423            308       0.00
## 38424            546       0.00
## 38425            448       0.00
## 38426            568    1710.11
## 38427            568   33966.56
## 38428            570       0.00
## 38429           1596     240.39
## 38430           1999     624.76
## 38431            574     131.83
## 38432            977     421.96
## 38433            503   18710.13
## 38434            755    2266.87
## 38435            546     152.06
## 38436           1127       0.00
## 38437           1638     417.74
## 38438            540     406.61
## 38439            541    8106.63
## 38440           1953      84.65
## 38441            531      88.89
## 38442           1700   10530.39
## 38443           1999     503.90
## 38444            573      30.50
## 38445            573       0.00
## 38446            569       0.00
## 38447            570     917.05
## 38448           1995       0.00
## 38449           2792   12147.91
## 38450           2000     208.51
## 38451           2000      72.83
## 38452           2000       0.00
## 38453           1299     137.97
## 38454           1988    1748.42
## 38455            562       0.00
## 38456            561     110.00
## 38457           1989       0.00
## 38458            563       0.00
## 38459            281     212.11
## 38460            310     193.02
## 38461           1339     860.92
## 38462            540     200.83
## 38463            535     445.32
## 38464            770      88.29
## 38465            592     555.91
## 38466            560      80.00
## 38467            552     533.53
## 38468           1596       0.00
## 38469            566   17142.98
## 38470           1989       0.00
## 38471            568      98.99
## 38472            569     278.06
## 38473            833       0.00
## 38474            570     833.87
## 38475            573       0.00
## 38476            538    1021.68
## 38477            518     217.49
## 38478           1559     190.22
## 38479            856     626.82
## 38480            569      10.34
## 38481            569     578.50
## 38482            569     887.27
## 38483            671     330.75
## 38484           1629    1008.01
## 38485            560     115.76
## 38486            556    1395.68
## 38487           1769     756.93
## 38488           1989     965.95
## 38489           1988     299.74
## 38490           1503      47.78
## 38491           1973       0.00
## 38492            561     586.05
## 38493            563     524.44
## 38494            559       0.00
## 38495            559      56.68
## 38496            562    2288.07
## 38497            553      78.17
## 38498           1989   47610.42
## 38499           1200     322.23
## 38500            569     264.82
## 38501           1995     389.16
## 38502           1995     558.11
## 38503           1971     989.84
## 38504            440       0.00
## 38505            568     977.70
## 38506           1994    2224.56
## 38507            566    1118.67
## 38508            549     993.10
## 38510           1407      65.18
## 38511            541    5970.49
## 38512           1989    1576.94
## 38513            549     453.22
## 38514           1989       0.00
## 38515            563     503.84
## 38516            569    1099.16
## 38517           1995     481.17
## 38518            569     663.97
## 38519           1229      74.88
## 38520            413     162.84
## 38521            541      66.68
## 38522            853   42398.00
## 38523            546     443.45
## 38524            545     199.39
## 38525            546      66.68
## 38526            433      20.00
## 38527           1414    1931.45
## 38528            569     235.88
## 38529            571     225.17
## 38530            563    4187.81
## 38531           1989     100.17
## 38532           1979     297.94
## 38533            567      37.98
## 38534            567    1020.98
## 38535           1688     355.14
## 38536            549       0.00
## 38537           1975    1345.53
## 38538            554       0.00
## 38539            697    2310.20
## 38540            562     256.95
## 38541            560     118.54
## 38542           1449   62420.87
## 38543            560     108.13
## 38544            560     195.13
## 38545            607    1443.97
## 38546            559     288.75
## 38547            357       0.00
## 38548            515     168.49
## 38549            816   15179.34
## 38550            535     282.44
## 38551            540    8032.13
## 38552            533    1658.78
## 38553            559     103.53
## 38554           1417    1012.45
## 38555            559     342.58
## 38556           1985      66.68
## 38557            560     863.34
## 38558            930     152.15
## 38559            972     451.55
## 38560           1254   28461.35
## 38561            561    1036.28
## 38562            556     322.79
## 38563           1225      90.09
## 38564            571      97.63
## 38565            833     352.33
## 38566           1722       8.81
## 38567            567    4905.46
## 38568           1721      84.47
## 38569            566     223.14
## 38570           1989     441.25
## 38571           1517   13188.76
## 38572            506       0.00
## 38573           1827     650.93
## 38574            145      74.68
## 38575            534     254.36
## 38576            532      96.61
## 38577           1964    2480.03
## 38578            542     359.77
## 38579            552     347.25
## 38580           1972      95.90
## 38581           1972    1716.60
## 38582            518      63.35
## 38583            372     180.12
## 38584            835       0.00
## 38585            504     335.86
## 38586           1603       0.00
## 38587           1989    1050.45
## 38588            554     624.54
## 38589           1603     143.66
## 38590            552    5579.07
## 38591           1979      41.95
## 38592            561     117.76
## 38593            561     372.59
## 38594           1988    1126.95
## 38595           1989     632.81
## 38596            560     500.82
## 38597            561       0.00
## 38598            560    2768.20
## 38599           1292       0.00
## 38600            560     164.91
## 38601           1466       0.00
## 38602            559    2254.18
## 38603           1966   15479.60
## 38604            486       0.00
## 38605           1937    1200.06
## 38606           1937     299.71
## 38607            513     140.81
## 38609           1845    2556.96
## 38610            545   36282.94
## 38611           1705     288.69
## 38612            560    9121.37
## 38613           1887  151027.03
## 38614            975     140.81
## 38615           1975     136.34
## 38616           1980       0.00
## 38617           1580     245.95
## 38618           1979       0.00
## 38619            556     289.75
## 38620            556       0.00
## 38621           1989      66.68
## 38622            566     217.89
## 38623            247     133.36
## 38624           1968       0.00
## 38625            540     138.22
## 38626           1961       0.00
## 38627           1952     327.39
## 38628           1312      12.59
## 38629           1953      66.34
## 38630            512     362.82
## 38631            563     244.80
## 38632            556       0.00
## 38633            555     766.65
## 38634            555    3356.25
## 38635           1975      66.45
## 38636           1086     544.23
## 38637            554       0.00
## 38638           1431    9064.42
## 38639            562     198.02
## 38640            561       0.00
## 38641            561     114.00
## 38642            560     159.24
## 38643            560    3246.65
## 38644            782    3946.66
## 38645            533     121.66
## 38646           1966       0.00
## 38647            559     165.60
## 38648           1982     758.00
## 38649            562      10.00
## 38650           1623   27777.43
## 38651            179      94.22
## 38652           1979     117.97
## 38653           1044     827.61
## 38654           1814   47347.40
## 38655           1768     146.00
## 38656            665     276.18
## 38657            581      67.04
## 38658            511       0.00
## 38659           1980     865.97
## 38660            726     823.40
## 38661           1981    1506.57
## 38662            552       0.00
## 38663           1526     842.08
## 38664           1988     185.60
## 38665            559     121.70
## 38666            559   19164.32
## 38667            559     198.13
## 38668            753       0.00
## 38669            499     965.60
## 38670            700     362.82
## 38671            527      65.18
## 38672            519     257.11
## 38673            628     427.77
## 38674           1973   16567.41
## 38675            547     186.74
## 38676            547     126.73
## 38677           1985     168.53
## 38678            560    1008.85
## 38679           1460     276.54
## 38680            552       0.00
## 38681            548    1336.76
## 38682            555    1028.06
## 38683            556     214.04
## 38684            556     166.12
## 38685            554     557.62
## 38686            553       0.00
## 38687           1492   18265.83
## 38688           1980     135.81
## 38689            548     136.00
## 38690           1218   30871.28
## 38691            794     161.39
## 38692           1973      16.76
## 38693           1973     673.75
## 38695            547     244.17
## 38696            546       0.00
## 38697           1698    2869.09
## 38698            524      66.68
## 38699            526     100.76
## 38700            540     502.35
## 38701            541      84.61
## 38703           1939   21661.50
## 38704            554       0.00
## 38705            556     167.23
## 38706            556     291.56
## 38707            548     302.01
## 38708            552     774.41
## 38709           1985    5161.83
## 38710           1982     448.55
## 38711            559     394.02
## 38712            559     229.08
## 38713           1982     228.24
## 38714            559      36.38
## 38715            386       0.00
## 38716            465     380.90
## 38717           1960       0.00
## 38718            525     532.22
## 38719            545      20.11
## 38720           1971     103.48
## 38721            559      69.34
## 38722            552      34.82
## 38723           1981     131.69
## 38724           2166    3879.20
## 38725            555     240.23
## 38726           1979     286.94
## 38727            799     238.79
## 38728            554       0.00
## 38729            472     179.05
## 38730            485      68.98
## 38731           1129     121.76
## 38732           1973     128.81
## 38733            525     331.07
## 38734            518     217.49
## 38735            519     348.01
## 38736            535      91.97
## 38737            531      93.60
## 38738            531       0.00
## 38739            533       0.00
## 38741            493      86.22
## 38742            671    2792.60
## 38743           1979     447.22
## 38744           1979     105.14
## 38745            552       0.00
## 38746            552      89.38
## 38747            552    1664.57
## 38748           1236    1246.49
## 38749           1818   16823.32
## 38750           1911       0.00
## 38751           1897    1877.31
## 38752           1475     356.15
## 38753            528       0.00
## 38754           1093     410.79
## 38755           1972     602.69
## 38756           1972      88.29
## 38757           1968    1315.91
## 38758            552     266.20
## 38759            554     196.91
## 38760            766   31654.11
## 38761            484     429.38
## 38762            546     108.95
## 38763            542    1262.43
## 38764           1659    1817.26
## 38765            525      75.64
## 38766            594    1370.46
## 38767            555     671.77
## 38768            552     126.18
## 38769            549     520.90
## 38770            963     220.65
## 38771            535    1672.45
## 38772            535      73.99
## 38773            535       0.00
## 38774            816   27524.98
## 38775            538      67.04
## 38776           1966     223.84
## 38777            531     119.68
## 38778            546     397.77
## 38779            545       0.00
## 38780           1066   24854.60
## 38781            435       0.00
## 38782            498     141.30
## 38783            896    2368.64
## 38784            511       0.00
## 38785            549      84.80
## 38786            549      74.27
## 38787           1975     167.44
## 38788            549      85.00
## 38789            961     137.16
## 38790            553      15.64
## 38791           1154     968.08
## 38792           1979     319.84
## 38793           1979     157.62
## 38794            548     256.65
## 38795            371       0.00
## 38796             69       0.00
## 38797           1726       0.00
## 38798            471      66.68
## 38799           1347     269.58
## 38800            545     303.99
## 38801           1840     138.36
## 38802            552    7593.64
## 38803           1972    3088.43
## 38804            542     118.54
## 38805            547      51.16
## 38806           1959     960.45
## 38807            531       0.00
## 38808            540     222.54
## 38809            535       0.00
## 38810            538      50.01
## 38811           1979     159.89
## 38812            553     675.87
## 38813           1979      83.45
## 38814            553      15.64
## 38815            552      15.64
## 38816            552      15.64
## 38817           1978     795.19
## 38818            549     472.82
## 38819           1978    3143.38
## 38820            251     171.13
## 38821            483   24986.37
## 38822           1202       0.00
## 38823           1286       0.00
## 38824           1966     273.49
## 38825            540    1049.55
## 38826            542     984.52
## 38827            540      25.00
## 38828           2078  132397.73
## 38829            540     372.71
## 38830            531       0.00
## 38831            533     187.00
## 38832            534     187.61
## 38833            680       0.00
## 38834           1808       0.00
## 38835            534    1652.15
## 38836           1951     436.71
## 38837           1973    2122.96
## 38838           1973   39083.66
## 38839           1973     309.18
## 38840            542      78.17
## 38841            542       0.00
## 38842           1971      97.79
## 38843           1971      88.29
## 38844            546     126.05
## 38845            546       0.00
## 38846            800   34929.89
## 38847           1978     309.02
## 38848            548     426.55
## 38849           1903      76.00
## 38850            546    4074.31
## 38851           1797     352.56
## 38852           1971       0.00
## 38853            790   42904.63
## 38854            528       0.00
## 38855            527     306.27
## 38856           1869     295.45
## 38857            540     121.66
## 38858            540     163.17
## 38859           1839   16411.21
## 38860            540     269.38
## 38861           1010   11485.89
## 38862           1701   14734.80
## 38863           1674     340.00
## 38864            535     495.89
## 38865           1961       0.00
## 38866           1835    3173.15
## 38867            493     138.46
## 38868            548     534.62
## 38869           2233     110.32
## 38870           1810     486.31
## 38871            909   22789.65
## 38872            542     189.37
## 38873            538     145.05
## 38874           1741     119.55
## 38875            540    7257.63
## 38876           1966     503.49
## 38877            531      91.97
## 38878           1951       0.00
## 38879            520      65.64
## 38880            735     419.48
## 38881           1966   21136.37
## 38882            542      47.07
## 38883           1971     548.63
## 38884           1973      79.00
## 38885           1973    1170.12
## 38886            603     769.32
## 38887           1973       0.00
## 38888           1450     388.41
## 38889            224     149.32
## 38891            534     255.86
## 38892           1953   12022.60
## 38893            541      87.37
## 38894            540       0.00
## 38895           1967       0.00
## 38897            539     102.40
## 38898           1960     217.92
## 38899           1059   13153.98
## 38900           1973       0.00
## 38901            960     344.14
## 38902           1975     504.95
## 38903            484     201.71
## 38904            546     326.50
## 38905            542    5727.17
## 38906           1968    2667.28
## 38907           1971  129827.04
## 38908           1972     416.21
## 38909            538       0.00
## 38910           1840    2239.80
## 38911           1272     222.39
## 38912            540       0.00
## 38913            531     157.94
## 38914            644     181.80
## 38915           1773       0.00
## 38916            527     769.93
## 38917            527    3003.70
## 38918            671     450.01
## 38919            520       0.00
## 38920           1877   27658.67
## 38921            520    1358.29
## 38922            520       0.00
## 38923            524     405.09
## 38924            524       0.00
## 38925            532     568.92
## 38926           1966     292.68
## 38927           1323  118918.17
## 38928           1966     853.83
## 38929           1966     332.80
## 38930           1326  149027.74
## 38931            541     841.13
## 38932           1119    9493.26
## 38933            535     104.38
## 38934           1972     276.34
## 38935            546      78.17
## 38936            546    2100.04
## 38937           1968     332.37
## 38938           1968     797.74
## 38939            517     100.00
## 38941           1769    3520.64
## 38942            641     530.41
## 38943            486     499.60
## 38944           1842     526.64
## 38945            421    1395.00
## 38946            592    2725.01
## 38947            311       0.00
## 38948            435     358.39
## 38949           1359    5167.73
## 38950           1968     182.98
## 38951           1968       9.77
## 38952            546     200.31
## 38953           1971    1294.14
## 38954           1814     120.25
## 38955           1880   12195.87
## 38956            541     136.70
## 38957           1967     908.74
## 38958            540       0.00
## 38959           1575     342.47
## 38960            540      20.19
## 38961            533     900.12
## 38962            534     382.60
## 38963           1959     354.00
## 38964           1959     360.93
## 38965            533     228.26
## 38966            526     482.58
## 38967            496     135.21
## 38968            386       0.00
## 38969           1908    2249.18
## 38970            510     768.51
## 38971           1937     252.81
## 38972            526       0.00
## 38973            533     256.50
## 38974            527     812.46
## 38975            527    7247.53
## 38976            584    1000.77
## 38977            547      56.46
## 38978            573      45.60
## 38979            539     137.90
## 38980           1971     239.57
## 38981            443     330.19
## 38982           2362   37377.87
## 38983             80    1282.77
## 38984            484    2849.00
## 38985            478       0.00
## 38986            330     406.51
## 38987            517     309.04
## 38988            539     506.39
## 38989           1964     248.05
## 38990           1960     772.24
## 38991           1967     434.16
## 38992            542      64.01
## 38993           1759   92723.04
## 38994            540      15.64
## 38995           1966     698.37
## 38996           1953     305.04
## 38997            531     409.06
## 38998            531    3480.00
## 38999           1483     150.43
## 39000            924    6755.66
## 39001            524      50.00
## 39002            524     162.05
## 39003           1547     326.25
## 39004            722   33028.37
## 39005            947       0.00
## 39006           1966     613.89
## 39007            540      68.28
## 39008           1687       0.00
## 39009            524     407.10
## 39010           1951       0.00
## 39011            540       0.00
## 39012            540       0.00
## 39013           1058     131.46
## 39014           1960    1566.82
## 39015            538     307.76
## 39016           1699     396.36
## 39017           1964     795.60
## 39018            526       0.00
## 39019            861       0.00
## 39020            526      48.05
## 39021            526     136.21
## 39022            527     166.30
## 39023           1221   11795.34
## 39024            532    1489.57
## 39025            533       0.00
## 39026           1959     346.00
## 39027            533    1141.97
## 39028            534     375.97
## 39029           1868       0.00
## 39030           1285    2756.64
## 39031            427     436.24
## 39032            482     922.47
## 39033            443     418.76
## 39034            527       0.00
## 39035            527    7682.95
## 39036            527    1455.04
## 39037           1964    2158.36
## 39038            535     248.27
## 39039           1966     534.77
## 39040            526    5823.90
## 39041            525     189.31
## 39042            518     129.14
## 39043           1016       0.00
## 39044           1945    1127.11
## 39045            520     106.77
## 39046            517     213.71
## 39047            506     322.03
## 39048            513     782.06
## 39049           1939    1953.11
## 39050            944   76520.78
## 39051            526       0.00
## 39052           1951       0.00
## 39053           1960     231.63
## 39054            538     301.28
## 39055            535     355.18
## 39056           1961    3532.08
## 39057           1964     337.27
## 39058           1953     257.65
## 39059           1953     339.56
## 39060            527       0.00
## 39061            534       0.00
## 39062           1959     429.21
## 39063            531       0.00
## 39064           1016     179.93
## 39065            632   22901.35
## 39066           1132   37307.79
## 39067            533     160.63
## 39068           1745       0.00
## 39069            531     153.69
## 39070            531    1133.25
## 39071            528    1706.37
## 39072           1953     339.56
## 39073            526       0.00
## 39074           1964       0.00
## 39075            525     211.72
## 39076            691    5675.59
## 39077            693     258.83
## 39078           1632     156.17
## 39079            432   17770.63
## 39080            514       0.00
## 39081           1791     553.79
## 39082            477     153.13
## 39083            514     388.59
## 39084            513      33.49
## 39085            498      71.92
## 39086            533    3281.62
## 39087            519     220.44
## 39088           1947     188.84
## 39089            672   12966.32
## 39090            521   10290.14
## 39091           1961       0.00
## 39092            535     706.68
## 39093           1953    6657.75
## 39094           1953     338.52
## 39095            528       0.00
## 39096            737     738.26
## 39097            342       0.00
## 39098            533     775.96
## 39099            533    2023.53
## 39100            532    1399.02
## 39101            527     586.06
## 39102            526     299.09
## 39103           1925       0.00
## 39104            294     534.17
## 39105           1181     171.72
## 39106           1377     173.97
## 39107           1678     468.48
## 39108            484     112.06
## 39109            471       0.00
## 39110            471       0.00
## 39111            532     751.19
## 39112           1283     296.44
## 39113            532       0.00
## 39114            531     275.49
## 39115           1959     371.22
## 39116           1953  118416.79
## 39117            526     375.62
## 39118           1820     289.40
## 39119            524     243.83
## 39120            524     430.85
## 39121            521     262.12
## 39122            519     474.80
## 39123           1732      56.68
## 39125           1937   58166.86
## 39126             83       0.00
## 39127            457     503.75
## 39128           1040    4222.01
## 39129           1350   29553.02
## 39130           1372   26290.67
## 39131            902    2316.02
## 39132            512     501.40
## 39133           1938       0.00
## 39134           1082     279.60
## 39135            504     278.55
## 39136            510     127.77
## 39137            989   39222.73
## 39138           1130     279.85
## 39139            524     204.75
## 39140            521      34.75
## 39141            780   33535.79
## 39142            526       0.00
## 39143           1679   13135.46
## 39144            526       0.00
## 39145           1953     532.37
## 39146           1953     399.23
## 39147           1957       9.99
## 39148           1952    1693.45
## 39149            527     182.98
## 39150           1865     200.68
## 39151            532     348.32
## 39152            532      90.13
## 39153            337     446.86
## 39154            421     136.42
## 39155            400     739.32
## 39156            964    4170.88
## 39157            406     172.14
## 39158           1584     304.54
## 39159           1253       0.00
## 39160           1953     171.95
## 39161           1829   13584.74
## 39162           1957  101739.15
## 39163            526     103.39
## 39164           1947       0.00
## 39165            524       0.00
## 39166           1299     477.99
## 39167            528    1807.10
## 39168           1053   28508.93
## 39169            518     217.49
## 39170            428       0.00
## 39171           1929     489.78
## 39172            500       0.00
## 39173            742       0.00
## 39174            353     280.93
## 39175            499     125.74
## 39176            499      90.13
## 39177            913   19963.68
## 39178            520     359.12
## 39179           1785     135.21
## 39180            524    3362.24
## 39181            524     105.46
## 39182            521     141.72
## 39183            961    1759.39
## 39184            526     465.93
## 39185           1953     233.80
## 39186            531      56.34
## 39187            191     380.34
## 39188           1770     833.07
## 39189            484     404.96
## 39190           1952     273.95
## 39191            527       0.00
## 39192            526     291.26
## 39193            525     212.25
## 39194            525      80.00
## 39195            524     835.92
## 39196            521     691.56
## 39197            520     931.41
## 39198            167     157.11
## 39199            893     202.20
## 39200            514     429.18
## 39201            514       0.00
## 39202            735   71204.66
## 39203            511     101.19
## 39204           1252   17050.38
## 39205            498     228.05
## 39206            498     699.83
## 39207           1218   13955.77
## 39208            513       0.00
## 39209            857    1278.81
## 39210            460     189.28
## 39211            510     280.89
## 39212           1947     437.95
## 39213            524      84.61
## 39214            726     178.66
## 39215           1917     476.79
## 39216           1842     240.68
## 39217            892       0.00
## 39218            510       0.00
## 39219            507       0.00
## 39220            506      43.49
## 39221            513     144.30
## 39222            505      44.21
## 39223            514     609.82
## 39224            658    9683.81
## 39225            722     999.10
## 39227            524     343.44
## 39228            524     227.23
## 39229           1947    2436.75
## 39230            525     137.81
## 39231            525   14122.12
## 39232           1951       0.00
## 39233           1951     350.77
## 39234            526    1278.57
## 39235           1640     382.18
## 39236            521     457.85
## 39237           1947    1316.52
## 39238            532    6558.29
## 39239            519     621.65
## 39240            894    3850.00
## 39241            517     353.70
## 39242            475      78.17
## 39243           1259  279736.47
## 39244           1947       0.00
## 39245           1946     131.97
## 39246            519     128.17
## 39247           1951     741.54
## 39248            525     168.17
## 39249           1947     196.52
## 39250            524     721.31
## 39251           1939     515.89
## 39252           1938       0.00
## 39253           1692    6571.12
## 39254           1938     269.73
## 39255            513     522.63
## 39256            499       0.00
## 39257            506     879.29
## 39258            493     281.98
## 39259            377       0.00
## 39260            377     305.41
## 39261            757   35013.31
## 39262            465      69.21
## 39263            483    7734.45
## 39264            853    4347.97
## 39265            499     110.17
## 39266            499     190.83
## 39267           1165    1431.87
## 39269            511       0.00
## 39270            524       0.00
## 39271           1947     421.39
## 39272           1947     188.93
## 39273           1947     174.94
## 39274           1107    2547.55
## 39275            521     155.99
## 39276            521   15098.64
## 39277            521    2943.80
## 39278           1258       0.00
## 39279           1023    3452.23
## 39280           1897     345.55
## 39281            153     539.32
## 39282            414     114.51
## 39283            517     246.71
## 39284            519     545.57
## 39285            923     271.60
## 39286           1127    1215.16
## 39287           1046    4293.47
## 39288           1939       0.00
## 39289            963   56791.82
## 39290           1407     151.59
## 39291            499     192.84
## 39292           1931     658.29
## 39293           1497     145.79
## 39294            498     469.37
## 39295            525     460.76
## 39296            471     534.21
## 39297           1231    3484.23
## 39298           1924     212.85
## 39299           1729     141.91
## 39300           1202     608.43
## 39301           1376     117.71
## 39302            793     589.43
## 39303            904     109.02
## 39304           1056     354.66
## 39305           1939     135.29
## 39306            513     414.48
## 39307           1939     474.88
## 39308           1435     203.50
## 39309            747   20063.14
## 39310            518     819.63
## 39311            521       0.00
## 39312           1656       0.00
## 39313           1657     220.12
## 39314            385       0.00
## 39315           1702   27502.12
## 39316           1939   46921.41
## 39317           1938      71.25
## 39318            615     349.29
## 39319           1938       0.00
## 39320           1938     364.67
## 39321            513     930.07
## 39322           1939     243.00
## 39323            514     305.35
## 39324            507     412.57
## 39325            567     942.71
## 39326            631     175.50
## 39327            468     102.32
## 39328            477       0.00
## 39329            486     147.28
## 39330            321     101.54
## 39331            710    1376.31
## 39332            507     104.14
## 39333           1931     222.68
## 39334            499    5754.59
## 39335            794    1566.89
## 39336           1939    1923.32
## 39337           1939       0.00
## 39338           1939     166.11
## 39339            514     694.47
## 39340           1672  157267.68
## 39341           1939    1967.28
## 39342           1939     125.32
## 39343           1939       0.00
## 39344            519      30.65
## 39345            448       0.00
## 39346           1726      70.63
## 39347            461     143.49
## 39348           1044   36854.04
## 39349            519     290.20
## 39350            518     135.21
## 39351            778    1954.03
## 39352            513    2392.26
## 39353           1378     221.45
## 39354            512     170.65
## 39355           1450      70.28
## 39356            513     319.93
## 39357           1939       9.77
## 39358            514     585.51
## 39359           1939      81.85
## 39360            513    1681.71
## 39361            514     138.00
## 39362            498     412.36
## 39363            498       0.00
## 39364            505     107.49
## 39365            507       0.00
## 39366           1641       0.00
## 39367            507     208.09
## 39368           2145  171526.34
## 39369            510       0.00
## 39370           1098    1858.48
## 39371            511     273.86
## 39372           1849     107.93
## 39373            551    1277.50
## 39374            510     386.21
## 39375            506     108.95
## 39376            498       0.00
## 39377            672    9689.72
## 39378            499     172.37
## 39379            514     810.93
## 39380           1939       0.00
## 39381            514     221.47
## 39382           1938    1415.00
## 39383            511      66.68
## 39384           1866      55.70
## 39385            435    2618.30
## 39386            819       0.00
## 39387            133      59.70
## 39388           1483     642.18
## 39390            511       0.00
## 39391            511     131.66
## 39392           1028    1187.47
## 39393           1938       0.00
## 39394            514       0.00
## 39395            514     273.46
## 39396            682    1987.83
## 39397            504     835.84
## 39398           1917     314.45
## 39399           1812     156.76
## 39400           1810     709.18
## 39401            470    1169.22
## 39402            473     328.76
## 39403           1911      56.68
## 39404            485    1324.94
## 39405            504     683.45
## 39406            756    1136.86
## 39407           1925    1059.69
## 39408            499     299.42
## 39409           1328   49916.83
## 39410           1644    1386.06
## 39411            499      78.17
## 39412            498      72.68
## 39413           1939     132.14
## 39414           1939       0.00
## 39415           1937    2481.57
## 39416           1938     117.11
## 39417            832   95528.55
## 39418           1376   51770.78
## 39419            479    2592.01
## 39420            227       0.00
## 39421           1939       0.00
## 39422            513     275.73
## 39423            498     538.66
## 39424           1730     168.63
## 39425            493     204.15
## 39426            493    1545.70
## 39427            502     713.55
## 39428            503     102.73
## 39429            862      85.80
## 39430            485     246.37
## 39431            795   16180.02
## 39432           1555       0.00
## 39433            506     382.61
## 39434            507     557.93
## 39435            506     317.57
## 39436            497    2791.35
## 39437            499     161.97
## 39438           1629     154.00
## 39439           1810      36.21
## 39440            787    1441.24
## 39441            589     106.62
## 39442            498    1449.06
## 39443            498     644.20
## 39444            519    7334.09
## 39445           1924     403.50
## 39446            497    4682.83
## 39447            492     309.05
## 39448            507     318.82
## 39449            510     763.50
## 39450           1933      79.00
## 39451           1929    1257.64
## 39452            499     163.17
## 39453           1594     291.74
## 39454            512      68.00
## 39455            512     222.58
## 39456            511       0.00
## 39457            797     103.57
## 39458            437     510.51
## 39459            481       0.00
## 39460            685    4310.97
## 39461            295      35.00
## 39462           1849       0.00
## 39463           1602     366.40
## 39464            630     350.30
## 39465            504     339.84
## 39466            917     256.17
## 39467            536   57176.86
## 39468           1933     136.36
## 39469            505     138.18
## 39470            505     364.65
## 39471           1923       0.00
## 39472           1484      50.01
## 39473            496     130.35
## 39474            498     193.84
## 39475           1640     538.95
## 39476            378    3922.74
## 39477            498     304.59
## 39478           1106   20087.09
## 39479            504    5108.76
## 39480            875   37328.31
## 39482           1922     435.13
## 39483           1922       0.00
## 39484            492    4668.44
## 39485           1932       0.00
## 39486           1932     407.86
## 39487           1638     159.48
## 39488            510   15203.43
## 39489            741    6851.29
## 39490           1933     614.01
## 39491            507     239.43
## 39492           1936     290.26
## 39493            500     351.02
## 39494           1926       0.00
## 39495            500     334.85
## 39496           1049    1451.23
## 39497            499     125.74
## 39498           1937     235.55
## 39499           1937    2453.56
## 39500            451       0.00
## 39501            387       0.00
## 39502            499     148.80
## 39503           2424   10940.74
## 39504            506     577.76
## 39505           1922     318.44
## 39506            498    1173.02
## 39507            491     276.50
## 39508            766     181.85
## 39509            485      36.21
## 39510           1911       0.00
## 39511           3390   52840.73
## 39512            498     194.14
## 39513            498     114.71
## 39514            493       0.00
## 39515            507      11.72
## 39516            504     960.64
## 39517            503     135.97
## 39518           1925     607.00
## 39519            444     189.40
## 39520            454      78.17
## 39521            502     405.91
## 39522            505       0.00
## 39523            505      23.44
## 39524            506     450.48
## 39525           1436     267.35
## 39526           1912     342.25
## 39527            483     506.59
## 39528            505     304.43
## 39529            505      67.33
## 39530           1925     502.87
## 39531            492    1102.77
## 39532            406     187.06
## 39533           1842       0.00
## 39534            493    1666.91
## 39535           1237     321.44
## 39536           1190       0.00
## 39537            536    8740.46
## 39538            497     353.78
## 39539            497     130.54
## 39540            544      47.07
## 39541           1757      72.42
## 39542            499       0.00
## 39543            499    1236.64
## 39544            499    6242.04
## 39545           2293   19314.20
## 39546           1468   46671.72
## 39547           1797     765.60
## 39548           1793       0.00
## 39549            905    2863.78
## 39550           1891     752.88
## 39551            500     344.35
## 39552            500     719.55
## 39553            499      91.97
## 39554            497     103.46
## 39555            497    3477.28
## 39556           1917       0.00
## 39557            461       0.00
## 39558            465      41.40
## 39559            461     119.25
## 39560            486    1251.23
## 39561            491       0.00
## 39562           1917       0.00
## 39563            497       0.00
## 39564           1923      66.45
## 39565           1226    1365.30
## 39566           1918       0.00
## 39567           1669     112.82
## 39568           1109    1256.98
## 39569            498     433.97
## 39570            498     303.51
## 39571            498    1423.10
## 39572            500     311.73
## 39573           1925    7313.09
## 39574            500       0.00
## 39575            503     291.70
## 39576           1929     303.18
## 39577            499     497.58
## 39578            854     329.69
## 39579           1925      78.17
## 39580            499     946.16
## 39582            669   13242.30
## 39583             99     274.80
## 39584            479      56.68
## 39585            479       0.00
## 39586            484     222.56
## 39587            503       0.00
## 39588           2192   80047.81
## 39589            471     236.25
## 39590           1897   13218.72
## 39591            802     576.77
## 39592            499      11.72
## 39593            499     370.74
## 39594            499     144.72
## 39595            503     438.99
## 39596            498      10.00
## 39597            497     271.06
## 39598           1924       0.00
## 39599            498    3124.15
## 39600           1922     534.38
## 39601           1834       0.00
## 39602           1396      79.43
## 39603           1487     323.38
## 39604            493     110.12
## 39605           1200   21110.94
## 39606            492     225.86
## 39607           1329    3108.45
## 39608           1840     791.43
## 39609            498       0.00
## 39610           1925       0.00
## 39611           1925    2877.43
## 39612           1925     694.44
## 39613            491     192.10
## 39614             90      64.68
## 39615            499     272.34
## 39616            499      90.13
## 39617           1911       0.00
## 39618           1849   42183.03
## 39619           1925     821.34
## 39620            499     314.14
## 39621           1925     484.78
## 39622             70       0.00
## 39623            244     704.05
## 39624           1846     735.47
## 39625            627     178.74
## 39626            465     260.20
## 39627            461     139.49
## 39628            597    2053.97
## 39629           2309   42009.07
## 39630            498    5977.45
## 39631           1202     176.96
## 39632            498     325.25
## 39633           1924     208.34
## 39634           1476    3568.41
## 39635           1415   68038.44
## 39636            492      50.01
## 39637           1918       0.00
## 39638           1925  164342.07
## 39639           1917     556.88
## 39640           1917     159.42
## 39641           1917   18489.95
## 39642            434     269.20
## 39643           1866    1085.63
## 39644            153       0.00
## 39645           1210   18206.76
## 39646           1798     711.56
## 39647            366     217.49
## 39648            479      18.10
## 39649            484     528.36
## 39650           1911     358.78
## 39651            484     631.27
## 39652            483     871.94
## 39653           1912     249.03
## 39654            485     143.28
## 39655            486       0.00
## 39656            317     114.43
## 39657            448       0.00
## 39658           1918      94.97
## 39659            492     202.34
## 39660            493     172.77
## 39661            497      11.74
## 39662            497     398.31
## 39663            497     195.48
## 39664            496       0.00
## 39665            498     288.71
## 39666            498    1568.79
## 39667            233       0.00
## 39668            366      59.00
## 39669           1912     560.87
## 39670           1805    1264.18
## 39671           1909       0.00
## 39672            479       0.00
## 39673            470       0.00
## 39674            475      27.15
## 39675            469    3300.01
## 39676           1887    1985.07
## 39677           1370    6560.95
## 39678           1923       0.00
## 39679           1918   15894.97
## 39680           1918       0.00
## 39681           1918     513.96
## 39682           1918    3727.24
## 39683           1917      36.21
## 39684            491     212.25
## 39685            491    3360.36
## 39686            491     512.68
## 39687            885     255.71
## 39688            447      99.55
## 39690             98     220.36
## 39691            349    1253.84
## 39692            289     303.22
## 39693           1463      51.49
## 39694            846     217.08
## 39695            479       0.00
## 39696            479       0.00
## 39697            483       0.00
## 39698           1909     360.78
## 39699            479    4007.10
## 39700            478    2673.34
## 39701            485     223.82
## 39702            553       0.00
## 39703            444     215.41
## 39704           1812  146449.96
## 39705            455     184.78
## 39706            491       0.00
## 39707            491     149.52
## 39708            492     190.41
## 39709            493     486.36
## 39710            250      90.21
## 39711            486   27648.63
## 39712            457     271.49
## 39713            527    5960.48
## 39714           1918      56.68
## 39715            492     164.61
## 39716           1791    5239.01
## 39717           1917    7548.29
## 39718           1108   62252.50
## 39719            716     338.03
## 39720            444     245.77
## 39721            492     388.72
## 39722           1887    1100.86
## 39723            684     134.90
## 39724            601   23516.73
## 39725            483       0.00
## 39726           1917     132.52
## 39727           1917    2339.61
## 39728            491    6669.81
## 39729           1908    3217.13
## 39730            479     265.00
## 39731            484      22.98
## 39732            484       9.71
## 39733           1911       0.00
## 39734           2884   15846.09
## 39735           1569     100.17
## 39736            478     792.35
## 39737           1904     156.92
## 39738           1904  175749.60
## 39739            476    3864.94
## 39740           1376    5987.91
## 39741           1864  214134.65
## 39742           1897    2281.44
## 39743            471       0.00
## 39744            472     265.87
## 39745            461     385.75
## 39746           1917     258.55
## 39747           2123  127449.57
## 39748            451     761.32
## 39749            395       0.00
## 39750            461     405.06
## 39751            624   42914.47
## 39752           1912       0.00
## 39753            477     938.33
## 39754            484    1426.84
## 39755            483      32.67
## 39756           1741     113.50
## 39757           1909     977.42
## 39758           1909     352.80
## 39759           1903     295.50
## 39760           1904     434.75
## 39761           1904       0.00
## 39762           1546       0.00
## 39763           1759       0.00
## 39764            464     893.11
## 39765             22      99.87
## 39766           1909   27310.91
## 39767           1911     336.02
## 39768           1874    7703.20
## 39769           1317    4704.17
## 39770            483       0.00
## 39771            478    1579.38
## 39772            468     657.75
## 39773            591    6511.61
## 39774           1897     746.72
## 39775           1897     474.44
## 39776            478     108.95
## 39777           1909   62241.73
## 39778           1911     930.05
## 39779           1911    1060.36
## 39780            485     716.57
## 39781            479    5992.96
## 39782            479    5025.16
## 39783            252       0.00
## 39784           1908    1179.81
## 39785            680     279.63
## 39786           1337       0.00
## 39787            479    1926.45
## 39788            479    1507.51
## 39789           1897     187.70
## 39790           1901       0.00
## 39791            470       0.00
## 39792            782     707.82
## 39793            448       0.00
## 39794            448     441.47
## 39795           1810       0.00
## 39796           1849     757.09
## 39797            686      78.00
## 39798           1383    2268.48
## 39799            472    6635.92
## 39800            465    1030.84
## 39801            464   14213.17
## 39802            465      18.10
## 39803            457      84.19
## 39804            479     257.87
## 39805            476     271.56
## 39806            478     347.46
## 39807           1904     317.84
## 39808            479      78.17
## 39809            428    1017.66
## 39810            427    1024.72
## 39811            985     299.39
## 39812           1401    1950.00
## 39813           1909     191.99
## 39814            673      78.17
## 39815           1011    3392.48
## 39816            479      23.26
## 39817            479    4409.43
## 39818           1904     780.18
## 39819            478     100.17
## 39820            478     168.04
## 39821            478     899.77
## 39822            465    1442.84
## 39823            461       0.00
## 39824           1123    8282.75
## 39825            468    1645.07
## 39826           1239   49222.50
## 39827            448     104.68
## 39828            454     718.25
## 39829            402      80.18
## 39830            470    2218.93
## 39831            468     110.00
## 39832            884     758.15
## 39833           1883   32635.37
## 39834            520     157.13
## 39835           1169    9977.40
## 39836           1904     116.70
## 39837           1904     140.00
## 39838           1904       0.00
## 39839           1854    2295.78
## 39840            476     186.66
## 39841           1776    3590.85
## 39842           1797       0.00
## 39843            479      30.78
## 39844            920   10980.55
## 39845            442      88.94
## 39847           1063   22658.20
## 39848            849   12250.00
## 39849           1888    4475.68
## 39850           1904    1632.43
## 39851            457     318.16
## 39852            471    1003.45
## 39853           1897     490.52
## 39854            472     450.51
## 39855           1901     308.28
## 39856            727     206.10
## 39857           1901       0.00
## 39858            448       0.00
## 39859            451     172.41
## 39860            454     908.71
## 39861            471     769.45
## 39862           1540     135.34
## 39863            457    1336.51
## 39864           1904      56.68
## 39865           1135      20.61
## 39866           1265       0.00
## 39867            441     918.38
## 39868            363     172.00
## 39869            596     336.24
## 39870            468    2449.12
## 39871           1874     816.09
## 39872           1897     194.35
## 39873           1463     228.40
## 39874           1860   11540.28
## 39875           1665     164.02
## 39876           1338       0.00
## 39877           1897      91.97
## 39878           1897       0.00
## 39879            469     280.49
## 39880           1125    1302.79
## 39881            476     890.34
## 39882            476     116.95
## 39883           1346    1290.99
## 39884            443     457.74
## 39885            442    1312.87
## 39886            448      23.09
## 39887           1790     259.35
## 39888           1903   61178.03
## 39889           1239   58269.64
## 39890           1897     107.97
## 39891            475      13.68
## 39892            475    1688.98
## 39893           1901      85.31
## 39894           1891     298.91
## 39895           1891     137.13
## 39896            461    2825.31
## 39897            461     222.12
## 39898           1887       0.00
## 39899           1845   66143.82
## 39901            443    2056.61
## 39902           1880      51.16
## 39903            440     238.55
## 39904            403     173.23
## 39905            150     129.40
## 39906            833    1480.72
## 39907            461    1264.95
## 39908            464    1898.33
## 39909           1891   70578.96
## 39910           1775    2365.42
## 39911            819     855.51
## 39912            469       0.00
## 39913            470       0.00
## 39914           1603     123.13
## 39915            885     305.52
## 39916            471     198.42
## 39917            471     502.95
## 39918            964       0.00
## 39919            484    2687.50
## 39920            778    7452.75
## 39921            384     776.05
## 39922             80       0.00
## 39923           1696     240.95
## 39924           2109   39656.59
## 39925           1891     288.40
## 39926            468     932.06
## 39927            461     381.67
## 39928            548     103.37
## 39929            844       0.00
## 39930            450    3230.02
## 39931           1876      68.98
## 39932            448     217.43
## 39933           1810    1075.56
## 39934            378    1057.17
## 39935            406       0.00
## 39936            464       0.00
## 39937           1891      51.49
## 39938           1891       0.00
## 39939           2227     970.08
## 39941            469       0.00
## 39942            457     178.50
## 39943            451      30.00
## 39944             98     142.62
## 39945            379      97.85
## 39946           1813     454.37
## 39947           1306       0.00
## 39948           1411       0.00
## 39949           1449     264.44
## 39950            147      80.68
## 39951           1386    1362.93
## 39952           1877       0.00
## 39954           1866     782.14
## 39955            104      68.01
## 39956            590     447.06
## 39957            492   10188.19
## 39958           1887       0.00
## 39959            461     334.23
## 39960           1543  219511.06
## 39961            469     564.67
## 39962            465    1243.68
## 39963           1891    4349.33
## 39964           1891     157.97
## 39965           1891  114864.23
## 39966            675     285.78
## 39967           1890      88.29
## 39968            470      11.72
## 39969            470     135.97
## 39970           1610     946.17
## 39971            402     933.51
## 39972             81       0.00
## 39973           1873    4146.96
## 39974            854       0.00
## 39975            448       0.00
## 39976            448       0.00
## 39977            454    2864.43
## 39978            454    1306.11
## 39979            454       0.00
## 39980            454     219.21
## 39981            395     219.07
## 39982            464     193.27
## 39983           1890       0.00
## 39984           1890     706.32
## 39985           1890     234.11
## 39986           1588      79.00
## 39987            468     191.15
## 39988            832    6632.29
## 39989           1756      95.34
## 39990            454     146.53
## 39991            448     140.72
## 39992            725     231.00
## 39993           1043     235.32
## 39994            451     635.98
## 39995            451    1400.38
## 39996           1876       0.00
## 39997           1866    2694.30
## 39998            441     197.12
## 39999            437       0.00
## 40000            629    8309.84
## 40001            426    3525.94
## 40002            288      32.25
## 40003           1887    3184.47
## 40004           1112    5394.96
## 40005           1848       0.00
## 40006           1848     166.20
## 40007            325     432.91
## 40008            354     103.00
## 40009            436      74.27
## 40010            435       0.00
## 40011           1860       0.00
## 40012            451     333.51
## 40014            448     172.71
## 40015            448      51.16
## 40016            443      78.17
## 40017           1867  177092.41
## 40018            254    8787.53
## 40019           1642      12.98
## 40020             80     224.00
## 40021           1848     193.10
## 40022            420     119.68
## 40023            420     632.95
## 40024           1890     347.94
## 40025           1890    1771.20
## 40026            324     130.65
## 40027            442       0.00
## 40028           1042      70.49
## 40029           1877     228.04
## 40030           1877       0.00
## 40031            454    1113.65
## 40032            526    6270.47
## 40033            427    1670.80
## 40034            499       0.00
## 40035            259     402.70
## 40036           1890     231.42
## 40037           1890   39791.10
## 40038           1890     137.95
## 40039           1887    9897.34
## 40040            457     252.61
## 40041           1849     395.68
## 40042            451       0.00
## 40043           1098    9586.40
## 40044           1751   20001.45
## 40045            820    1852.69
## 40046           1890    1889.86
## 40047           1869       0.00
## 40048           1880     954.86
## 40049           1866     316.78
## 40050           1887     571.63
## 40051            407    2876.56
## 40052           1861     844.59
## 40053           1873     696.73
## 40054            716     203.05
## 40055            919   58981.67
## 40056            461   10099.40
## 40057            457       0.00
## 40058            456    4604.28
## 40059            451     835.38
## 40061            443     237.68
## 40062           1689       0.00
## 40063            443       0.00
## 40064           1880       0.00
## 40065            441       0.00
## 40066            599    3461.92
## 40067            738   34456.56
## 40068            871    6873.55
## 40069           1882       0.00
## 40070           1849     100.00
## 40071           1847    1671.47
## 40072            435    6189.69
## 40073            454     562.59
## 40074            454       9.68
## 40075           1563     117.71
## 40076            448       0.00
## 40077            399     102.59
## 40078           1396     197.18
## 40079            457    1544.28
## 40080            457     676.61
## 40081           1735   27539.32
## 40082            448     680.70
## 40083            448     786.56
## 40084           1127     137.37
## 40085            443      31.99
## 40086           1876     218.70
## 40087            451    1800.05
## 40088           1877   52567.91
## 40089           1877     227.11
## 40090           1874    1774.33
## 40091            448      87.94
## 40092            443    1942.56
## 40093           1882    4446.43
## 40094           1849     374.93
## 40095           1875      38.37
## 40096           1183     472.03
## 40097           1471   52151.19
## 40098            415       0.00
## 40099           1526      64.68
## 40100            436       0.00
## 40101            436     189.40
## 40102            451     153.38
## 40103            451     253.88
## 40104           1874    2795.20
## 40105            957     207.11
## 40106            650    1764.01
## 40107           1880     371.59
## 40108           1880     114.90
## 40109           1761    1065.65
## 40110            917    8100.09
## 40111           1831     994.66
## 40112           1880     364.65
## 40113           1880    2049.45
## 40114           1869     600.73
## 40115           1876     209.96
## 40116           1867      97.96
## 40117            901       0.00
## 40118           1812    1309.11
## 40119            393     611.43
## 40120           1833    1009.17
## 40121            415       0.00
## 40122           1846     311.99
## 40123           1849     152.65
## 40124           1240     228.02
## 40125            436    1194.28
## 40126           1876       0.00
## 40127           1104     315.88
## 40128            441       0.00
## 40129            443      12.56
## 40130           1880    1128.37
## 40131            274     494.67
## 40132            308      54.04
## 40133           1877     473.66
## 40134            451    1791.37
## 40135           1435       0.00
## 40136            429     749.46
## 40137            426     440.22
## 40138           1849    1071.68
## 40140            451      86.94
## 40141           1875     778.11
## 40142            881    4604.93
## 40143            448    1146.53
## 40144            448     763.06
## 40145            395      60.00
## 40146           1323     675.79
## 40147            712     262.21
## 40148           1799    6208.40
## 40149           1875     160.00
## 40150            572     893.13
## 40151           1867   19797.94
## 40152           1849     376.12
## 40153            441       0.00
## 40154            437       0.00
## 40155            623    8531.22
## 40156           1406    3169.91
## 40157           1848     470.96
## 40158           1842    1434.11
## 40159            421       0.00
## 40160           1831     751.04
## 40161            626   23910.43
## 40162            443    1123.59
## 40163           1873       0.00
## 40164           1873       0.00
## 40165            451      78.50
## 40166            468     194.09
## 40167            525   12720.58
## 40168            436      61.35
## 40169           1867     219.87
## 40170           1867     251.25
## 40171            882    4739.22
## 40172           1798       0.00
## 40173            395     102.56
## 40174            741     129.90
## 40175           1848     402.36
## 40176           1848       0.00
## 40177            423     112.78
## 40178            435   18570.42
## 40179           1673     159.30
## 40180           1278       0.00
## 40181           1783  119519.58
## 40182           1874     639.11
## 40183            658    1042.60
## 40184            443     115.14
## 40185            443      72.68
## 40186           1621      94.92
## 40187           1801   11507.97
## 40188           1810     459.59
## 40189            353   20213.30
## 40190           1700   15932.48
## 40191           1838     214.54
## 40192           1747       0.00
## 40193            447     122.54
## 40194            522   45332.90
## 40195           1311   12490.55
## 40196           1425      46.50
## 40197            447    1042.97
## 40198           1799       0.00
## 40199            634       0.00
## 40200            448     236.42
## 40201           1851     381.86
## 40202            435     328.41
## 40203           1867     515.43
## 40204            441     691.01
## 40205           1867     110.45
## 40206           1161     116.13
## 40207            800     467.84
## 40208            379       0.00
## 40209           1800     236.45
## 40210           1714    2776.41
## 40211            611     191.91
## 40212            408    1625.41
## 40213            405     204.91
## 40214           1849    5177.23
## 40215            414    1216.65
## 40216           1740      87.33
## 40217           1862  168074.67
## 40218           1932       0.00
## 40219            440     373.26
## 40220           1867   28558.76
## 40221           1866     140.01
## 40222            434    1909.93
## 40223           1853    1622.56
## 40224            426     827.40
## 40225            443     727.11
## 40226           1867    1602.19
## 40227            442    1898.14
## 40228           1123      43.49
## 40229            388       0.00
## 40230           1817     117.27
## 40231             97      74.68
## 40232           1707      38.78
## 40233           1848    2221.92
## 40234            423     173.12
## 40235            414     196.21
## 40236            442     154.30
## 40237            441   30966.64
## 40238            443     195.42
## 40239           1609     136.49
## 40240           1852   25140.84
## 40241            426     429.79
## 40242            434    1065.21
## 40243            572     326.79
## 40244           1859     151.46
## 40245           1859       0.00
## 40246           1866       0.00
## 40247           1867     147.52
## 40248           1232  245491.10
## 40249            436     118.98
## 40250           1203    4822.68
## 40251            367     769.37
## 40252            358     255.45
## 40253            384     654.78
## 40254           1354    7102.50
## 40255           1828     213.23
## 40256            515     160.02
## 40257           1140    7131.00
## 40258            850  146567.59
## 40259            435     162.49
## 40260           1754     390.67
## 40261            444    5630.38
## 40262            441     304.92
## 40263            419    2047.99
## 40264            356    9193.14
## 40265           1867    1060.39
## 40266           1067     175.73
## 40267            447    4108.26
## 40268            429    1146.27
## 40269            436     101.36
## 40270            437       0.00
## 40271            686     432.08
## 40272            420     502.28
## 40273           1849     247.45
## 40274           1827    8054.54
## 40275            402     245.49
## 40277            414      63.35
## 40278           1517      84.00
## 40279           1861     288.02
## 40280            441     389.02
## 40281            435     211.93
## 40282            434       0.00
## 40283            428    2774.50
## 40284           1656    5608.37
## 40285            553     473.75
## 40286           1868       0.00
## 40287            352     304.07
## 40288           1838    1160.92
## 40289           1839     676.64
## 40290           1424     388.99
## 40291            596    5389.75
## 40292            441     292.99
## 40293           1459       0.00
## 40294            426       0.00
## 40295            429     510.51
## 40296            931      78.17
## 40297            435     146.34
## 40298           1860     364.74
## 40299            782     181.90
## 40300           1866     318.36
## 40301           1866     266.25
## 40302            436      51.16
## 40303            436    1786.14
## 40304            316       0.00
## 40305            593   11758.95
## 40306            893     155.04
## 40307            342      78.17
## 40308            379     136.16
## 40309            423       0.00
## 40310            409     115.78
## 40311            407     240.63
## 40312            437      24.62
## 40313            437     105.09
## 40314            651     971.83
## 40315            437       0.00
## 40316            437     126.73
## 40317            797    2345.72
## 40318            435     259.36
## 40319           1861     128.03
## 40320            433      80.01
## 40321           1287    8651.01
## 40322            434     238.40
## 40323            434    3428.33
## 40324            434     712.26
## 40325           1859    2028.52
## 40326            426     194.20
## 40327           1356     190.62
## 40328            148     200.00
## 40329           1387    5437.66
## 40330            587      86.17
## 40331            356       0.00
## 40332            353     517.52
## 40333           1849     802.78
## 40334            415      43.21
## 40335           1848     241.84
## 40336            421     211.93
## 40337            476   40815.55
## 40338            330     166.92
## 40339            426     843.51
## 40340           1174     413.07
## 40341            426     419.74
## 40342            838     364.44
## 40343            425     134.02
## 40344           1861    1209.44
## 40345            435       9.71
## 40346           1866     255.51
## 40347            436     503.53
## 40348            435      17.98
## 40349           1485     175.73
## 40350            353     187.61
## 40351            378     379.68
## 40352            435     335.10
## 40353           1861    1905.11
## 40354           1860     171.68
## 40355            433      49.89
## 40356            796    2888.49
## 40357            957     345.99
## 40358            414       0.00
## 40359           1848   88359.56
## 40360            539       0.00
## 40361           1860     165.15
## 40362            435     183.82
## 40363            378     411.86
## 40364            421       0.00
## 40365            421       0.00
## 40366           1845     462.13
## 40367            515     144.80
## 40368           1861     243.59
## 40369            367       0.00
## 40370           1833    1699.31
## 40371           1343     120.03
## 40372            422       0.00
## 40373           1848     125.51
## 40374           1574     531.63
## 40375            429       0.00
## 40376           3380   75899.42
## 40377           1419       0.00
## 40378            435    2696.28
## 40379            427     740.10
## 40380           1664    1057.62
## 40382            317    1560.93
## 40383            486     800.00
## 40384            414     161.23
## 40385           1566     143.17
## 40386            420      11.72
## 40387           1848     622.15
## 40388            514     258.02
## 40389           1076     234.13
## 40390            308       0.00
## 40391            493     432.72
## 40392           1385  139753.56
## 40393            429     748.71
## 40394            429     648.99
## 40395            429       0.00
## 40396            426     110.00
## 40397            426     321.96
## 40398            433       0.00
## 40399            434       9.71
## 40400            429     470.09
## 40401            643   16937.30
## 40402           1860      99.89
## 40403           1860     524.31
## 40404           1860      22.45
## 40405           1838     682.01
## 40406            684   23582.30
## 40407            824   10331.86
## 40408           1849   71414.28
## 40409            421     853.41
## 40410            444    2751.03
## 40411           1181    1144.81
## 40412            429       0.00
## 40413           1859     232.71
## 40414            427     628.25
## 40415            427      51.16
## 40416            429     683.68
## 40417            429    4011.49
## 40418           1310    2539.83
## 40419             62      16.87
## 40420            415      36.21
## 40421            415     209.24
## 40422            421     325.84
## 40423           1839       0.00
## 40424            148    8148.33
## 40425            386   22517.88
## 40426            429    3480.81
## 40427            429     268.94
## 40428           1853     120.55
## 40429           1853       0.00
## 40430           1053   37694.80
## 40431            433      26.96
## 40432            433     276.42
## 40433            770     202.51
## 40434            388       0.00
## 40435           1793     142.37
## 40436            412    1913.25
## 40437            811     783.99
## 40438            408    2440.62
## 40439            407      51.16
## 40440           1831     862.00
## 40441           1838       0.00
## 40442            421     837.81
## 40443            422     553.93
## 40444            420    4398.28
## 40445            423     498.86
## 40446            414    1205.61
## 40447            414      16.71
## 40448            994     231.75
## 40449            802   22232.72
## 40450           1804     130.15
## 40451            395     773.28
## 40452           1817     263.06
## 40453            357       0.00
## 40454           1840     218.27
## 40456            384     842.46
## 40457           1800       0.00
## 40458           1842    1616.89
## 40459            423     213.17
## 40460            423     546.34
## 40461           1839       0.00
## 40462           1168   77836.26
## 40463            515      69.22
## 40464           1139     154.68
## 40465           1852    2070.17
## 40466           1819     827.09
## 40467            422    3075.71
## 40468           1839       0.00
## 40469            861     194.40
## 40470            406       0.00
## 40471            406      88.14
## 40472           1832    1181.52
## 40473            932   13445.00
## 40474           1637    4214.66
## 40475           1849     225.37
## 40477           1015     528.81
## 40478           1849   43779.29
## 40479            987   82572.97
## 40480           1842       0.00
## 40482            421     386.78
## 40483            414      83.00
## 40484            669   22789.34
## 40485            427    1169.73
## 40486            426     544.58
## 40487            426     290.80
## 40488           2210   71129.56
## 40489           1853   17368.41
## 40490            427     579.77
## 40491            426     643.01
## 40492            393     642.48
## 40493            393       0.00
## 40494           1323  139424.85
## 40495            414     748.77
## 40496           1063       0.00
## 40497           1847   28395.31
## 40498            747     104.00
## 40499            655     751.95
## 40501            420       0.00
## 40502            415    1176.63
## 40503            493    3415.09
## 40504           1841       0.00
## 40505           1848    1557.70
## 40506           1848       0.00
## 40507           1849     312.47
## 40508            423    1380.46
## 40509           1849     146.02
## 40510            402    1110.96
## 40511           1827    1332.45
## 40512            412     211.60
## 40513           1838     721.48
## 40514           1787     518.59
## 40516            405     118.88
## 40517           1425     648.35
## 40518           1839     718.51
## 40519            958      61.35
## 40520            992   59346.87
## 40521           1357     918.81
## 40522            316      45.26
## 40523            426     852.66
## 40524            671    4514.06
## 40526           1853     162.36
## 40527            427    1031.80
## 40528            427     222.21
## 40529            426       0.00
## 40530            370      29.79
## 40531            462     968.33
## 40532           1783    1308.96
## 40533           1786     158.40
## 40534           1790    1726.27
## 40535            963    5314.53
## 40536             62       0.00
## 40537            286     125.56
## 40538           1700     258.83
## 40539            413       0.00
## 40540           1334     802.69
## 40541            694    2472.29
## 40542            622     157.49
## 40543           1625     277.95
## 40544           1832    1353.10
## 40545            406       0.00
## 40546           1092     186.38
## 40547            417   11645.32
## 40548           1838   20064.66
## 40549            412    2388.99
## 40551           1834    1570.15
## 40552            408       0.00
## 40553           1827     385.06
## 40554            408     171.73
## 40555           2451   12254.94
## 40556            423       0.00
## 40557            423     656.25
## 40558           1849     201.98
## 40559            423       0.00
## 40560            423       0.00
## 40561           1823     269.20
## 40562           1849     262.05
## 40563            423     240.16
## 40564           1849    4189.31
## 40565            422     237.86
## 40566            835   12565.73
## 40567           1848     589.98
## 40568           1848     253.92
## 40569           1848     397.99
## 40570            415     232.75
## 40571            415       0.00
## 40572            419       0.00
## 40573            416     444.84
## 40574           1842  464880.79
## 40575           1842    1172.76
## 40576           1842     238.29
## 40577            420     190.39
## 40578           1846    2127.59
## 40580           1846      66.68
## 40581           1848     399.33
## 40582           1848    6528.02
## 40583           1323      51.16
## 40584            422       0.00
## 40585            421     208.74
## 40586            422       0.00
## 40587            422     861.66
## 40588            695   36567.67
## 40589            421       0.00
## 40590            414     804.12
## 40591           1540       0.00
## 40592            414    2675.24
## 40593            317     532.60
## 40594            427     253.28
## 40595            427     312.21
## 40596           1852     296.87
## 40597            426     196.07
## 40598            227     140.19
## 40599            384       0.00
## 40600            387    1013.08
## 40601           1811     450.43
## 40602           1728     270.68
## 40603            395      63.74
## 40604           2052   10079.92
## 40605            541   31855.71
## 40606           1826    2029.09
## 40607            422       0.00
## 40608            422     129.28
## 40609            420     201.42
## 40610            420     214.25
## 40611            420     385.96
## 40612            419       0.00
## 40613            419     367.39
## 40614           1845    8110.83
## 40615           1842    1487.35
## 40616            415       0.00
## 40617           1233     210.69
## 40618           1848       0.00
## 40619            544      59.16
## 40621           1838       0.00
## 40622            412    1214.17
## 40623            760   90970.44
## 40624            413     414.77
## 40625            413    2010.44
## 40626           1839     406.01
## 40627            979    1853.48
## 40628            519     375.75
## 40629            426       0.00
## 40630           1553     121.55
## 40631           1644     136.19
## 40632            379     104.94
## 40633            384      64.91
## 40634           2041     268.10
## 40635           1793    1227.85
## 40636           1800     741.04
## 40637            351      88.63
## 40638           1584    3601.87
## 40639           1685     203.94
## 40640            251       0.00
## 40641            272     241.68
## 40642            413    1229.24
## 40643           1838       0.00
## 40644           1838     125.37
## 40645            423    2208.44
## 40646           1849    1697.36
## 40647           1848    2108.53
## 40648            415     145.95
## 40649           1136       0.00
## 40650            689    5033.21
## 40651            420    1525.27
## 40652            419     170.16
## 40653           1846     227.03
## 40654            420     128.17
## 40655           1848     790.85
## 40656            328     283.06
## 40657            220      56.75
## 40658            352       0.00
## 40659             61       0.00
## 40660            420    1763.18
## 40661            419       0.00
## 40662           1546     371.09
## 40663           1791     213.91
## 40664            416    2488.65
## 40665            825     167.17
## 40666           1632     727.34
## 40667            201       0.00
## 40668            384      79.40
## 40669            395     216.68
## 40670           1699      42.50
## 40671            413       0.00
## 40672            413    3274.55
## 40673            628    6384.37
## 40674           1847    2118.62
## 40675            609     388.38
## 40676            422     333.35
## 40677           1847     320.00
## 40678            415     493.58
## 40679            415       0.00
## 40680           1040   20952.60
## 40681           1826      37.35
## 40682            399     276.60
## 40683           1234     110.00
## 40684            401       0.00
## 40685            414   14850.26
## 40686             77     137.21
## 40687            392       0.00
## 40688            391     263.35
## 40689           1217      95.00
## 40690            374     214.67
## 40691            506    3309.39
## 40692            351      74.68
## 40693            407     105.16
## 40694           1862   15660.50
## 40695            419     236.21
## 40696           1845    1751.41
## 40697           1845     758.93
## 40698            415     159.58
## 40699           1847     774.97
## 40700            819     106.57
## 40701            420     192.69
## 40702            412       0.00
## 40703            412       0.00
## 40704           1839       0.00
## 40705           1818   85983.22
## 40706             80     139.02
## 40707           1785     499.02
## 40708            336    1208.00
## 40709           1405     212.50
## 40710           1804       0.00
## 40711            388     246.91
## 40712            384       0.00
## 40713            417     136.29
## 40714           1810       0.00
## 40715            391    1805.68
## 40716            391     825.68
## 40717            392     115.40
## 40718            856     360.17
## 40719            660    2560.17
## 40720            510   19648.44
## 40721            412     115.52
## 40722            412     129.80
## 40723           1146     114.20
## 40724            413       0.00
## 40725            413       0.00
## 40726           1840     431.45
## 40727           1443   30400.97
## 40728            414       0.00
## 40729           1842    2298.25
## 40730           1845    2138.97
## 40731           1825   20092.54
## 40732           1827      88.29
## 40733           1840     260.49
## 40734            871     298.75
## 40735            391     365.92
## 40736           1009   35563.25
## 40737           1539     511.80
## 40738           1793       0.00
## 40739           1526       0.00
## 40740           1560    6527.27
## 40741           1095   56407.33
## 40742            414     457.37
## 40743            414     209.23
## 40744            575    3763.76
## 40745            440     581.19
## 40746           1841     670.26
## 40747            412     135.21
## 40748            409     157.84
## 40749            894    3758.45
## 40750            406       0.00
## 40751           1776       0.00
## 40752           1805   12955.79
## 40753            378     244.34
## 40754            394      91.90
## 40755           1750       0.00
## 40756            402     151.45
## 40757            473     224.09
## 40758            406    1644.90
## 40759           1834    8738.64
## 40760            468     529.12
## 40761           1834     747.45
## 40762            698     222.51
## 40763           1066     649.29
## 40764           1840     226.34
## 40765           1842    1268.41
## 40766            416     778.11
## 40767            416      36.08
## 40768            416     109.80
## 40769            400     405.44
## 40770           1216     169.61
## 40771           1063   10663.31
## 40772            311     181.43
## 40773           1803     278.73
## 40774            387     346.40
## 40775            343       0.00
## 40776            413      78.39
## 40777            409     231.84
## 40778           1838     285.60
## 40779            402     228.24
## 40780           1058     514.33
## 40781            388     105.84
## 40782            393    3286.48
## 40783            763     296.74
## 40784            862   38240.61
## 40785            416     158.51
## 40786            288      76.55
## 40787            414     387.93
## 40788           1331     102.37
## 40789           1831    1201.94
## 40790            405       0.00
## 40791            402   10777.47
## 40792            406     232.23
## 40793            407    9722.80
## 40794            407     122.92
## 40795            412      51.16
## 40796            409     860.15
## 40797           1838    1915.62
## 40798            407   24704.48
## 40799           1465      91.68
## 40800            413     213.10
## 40801           1840      46.04
## 40802           1840      51.16
## 40803            146     640.42
## 40804            271     181.49
## 40805           1544   42368.64
## 40806            566   15997.77
## 40807           1791     923.18
## 40808             80       0.00
## 40809           1710     255.89
## 40810            414       0.00
## 40811            481   46049.21
## 40812           1839      13.04
## 40813           2235   45689.88
## 40814           1839    6586.65
## 40815           1839   11402.06
## 40816           1838     187.15
## 40817            615     202.35
## 40818            768     330.73
## 40819            413      95.66
## 40820            413       0.00
## 40821            408       0.00
## 40822           1777     347.04
## 40823           1838     805.02
## 40824           1838   14072.87
## 40825           1838     194.03
## 40826           1833       0.00
## 40827            402     153.68
## 40828           1826     109.54
## 40829           1665     121.66
## 40830            402     225.37
## 40831            750    6184.08
## 40832           1805      78.17
## 40833            392       0.00
## 40834           1423      43.49
## 40835            933   29897.04
## 40836            405     209.64
## 40837            529    1395.74
## 40838            412     268.62
## 40839           1834   18135.64
## 40840            409    7311.82
## 40841           1331  168013.38
## 40842           1743     155.52
## 40843            391     214.39
## 40844            394      90.11
## 40845           1821     195.61
## 40846            372     121.94
## 40847            370     254.05
## 40848            408     106.83
## 40849            986  121106.47
## 40850            409      22.06
## 40851            409    8411.34
## 40852            409    1616.57
## 40853            407      51.16
## 40854            406      51.16
## 40855            402     194.60
## 40856            401     620.65
## 40857           1622     267.63
## 40858            770   99744.65
## 40859            468    1629.12
## 40860            484    4671.42
## 40861            611     526.50
## 40862           1707       0.00
## 40863            394       0.00
## 40864           1560   50569.57
## 40865            395     324.50
## 40866            392       0.00
## 40867            689    1083.42
## 40868            401     689.90
## 40869            402       0.00
## 40870           1826    1767.00
## 40871           1826       0.00
## 40872            572   32066.44
## 40873           1833     810.52
## 40874           1833     263.23
## 40875           1831      89.86
## 40876           1214    2506.17
## 40877            409       0.00
## 40878            409      36.42
## 40879           1834    4793.23
## 40880           1834     490.42
## 40881           1834      87.28
## 40882            407     290.58
## 40883           1401  190916.08
## 40884            944       0.00
## 40885            959    6088.21
## 40886           1775      94.22
## 40887            395   24494.43
## 40888           1249       0.00
## 40889            381     477.93
## 40890            378       0.00
## 40891            391      90.19
## 40892           1413     515.10
## 40893            504      89.85
## 40894            407     359.69
## 40895            399     333.22
## 40896            401     714.11
## 40897           1438    1977.50
## 40898           1819     244.37
## 40899            388    4533.18
## 40900            378       0.00
## 40901            378    3593.58
## 40902           1524       0.00
## 40904            402    3293.50
## 40905            407    4356.81
## 40906           1833    2196.75
## 40907           1833    3107.38
## 40908            407       0.00
## 40909            402     108.67
## 40910           1831    2817.89
## 40911            433    7735.38
## 40912           1509     763.52
## 40913            724     169.36
## 40914            308     183.20
## 40915            384     371.78
## 40916           1810     713.05
## 40917            386     125.27
## 40918           1800      91.97
## 40919            365       0.00
## 40920            392       0.00
## 40921            900    6421.85
## 40922           1776     129.92
## 40923            364       0.00
## 40924            407       0.00
## 40925            405       0.00
## 40926           2947   54653.98
## 40927           1828     496.75
## 40928            945     311.41
## 40929           1535      36.21
## 40930           1833     212.25
## 40931           1833     147.51
## 40932           1832     214.46
## 40933            402       0.00
## 40934           1700     263.35
## 40935           1827     195.88
## 40936           1598     799.08
## 40937            400      48.75
## 40938            400       0.00
## 40939            400       0.00
## 40940            398     470.03
## 40941            308       0.00
## 40942            322     191.21
## 40943            721   35105.86
## 40944            226      93.57
## 40945            359     154.11
## 40946           1114       0.00
## 40947            395      15.65
## 40948            395    1503.17
## 40949           1819     229.49
## 40950            391       8.03
## 40951            391      50.00
## 40952            385       0.00
## 40953           1803     808.07
## 40954            295     122.77
## 40955            295     362.19
## 40956            398     304.52
## 40957            398      27.20
## 40958            398     794.18
## 40959            399     254.28
## 40960           1832    1015.82
## 40961           1309   44584.43
## 40962           1344   31960.47
## 40963           1831     337.85
## 40964            307       0.00
## 40965            143      81.99
## 40966           1665     328.16
## 40967            377     122.77
## 40968            377      22.80
## 40969            377     215.43
## 40970            377     195.00
## 40971            435    1756.24
## 40973            373     335.15
## 40974           1524      59.16
## 40975            388      83.24
## 40976           1417     162.21
## 40977            402      23.80
## 40978           1236      38.37
## 40979            406     116.24
## 40980            399   17701.98
## 40981            436    1690.02
## 40982           1828      38.16
## 40983           1377     305.08
## 40984           1814       0.00
## 40985           1814      38.28
## 40986            479     206.62
## 40987            392       0.00
## 40988            450    1609.13
## 40989            394       0.00
## 40990           1820       0.00
## 40991            373     595.04
## 40992            367    1483.39
## 40993            385      90.13
## 40994            387     830.63
## 40995           1814     358.37
## 40996            378     135.14
## 40997            378    1081.17
## 40998            379       0.00
## 40999            401     189.66
## 41000           1827     505.77
## 41001           1689   13657.41
## 41002            398     230.49
## 41003            399    2481.89
## 41004           1826     910.16
## 41006            397     128.64
## 41007            378    1033.98
## 41008            377     344.71
## 41009            374     425.27
## 41010            470       0.00
## 41011            395    1250.47
## 41012           1821     942.97
## 41013            395       0.00
## 41014           1818    1036.33
## 41015            391     126.73
## 41016           1040     349.10
## 41017           1091  138045.26
## 41018            392     604.69
## 41019           1821     149.95
## 41020            497     438.61
## 41021           1791   33387.50
## 41022           1791     228.17
## 41023            895     277.76
## 41024            420   11681.65
## 41025            384      29.08
## 41026            300       0.00
## 41027            685    1068.52
## 41028           1826    2117.97
## 41029           1826     145.26
## 41030           1826    1048.92
## 41031           1826     490.73
## 41032            400       9.71
## 41033           1245  108526.90
## 41034           1240   25369.40
## 41035            400      25.39
## 41036            991      82.77
## 41037            388     142.22
## 41038            387    1288.12
## 41039            385     538.79
## 41040            377       0.00
## 41041            377     895.45
## 41042            378      88.29
## 41043           1804      88.29
## 41044            366       0.00
## 41045           1821    6905.02
## 41046            574     157.39
## 41047           1413     242.20
## 41048           1574     264.94
## 41049            393    1958.77
## 41050            392    1242.14
## 41051           1000     765.72
## 41052           1814     318.24
## 41053            773   10005.33
## 41054            400      37.45
## 41055            400       0.00
## 41056            865       0.00
## 41057            690     320.77
## 41058           1191   16818.83
## 41059           1826       0.00
## 41060            164     128.26
## 41061            310      88.76
## 41062           1178      65.11
## 41063           1127   10490.00
## 41064           1097     148.99
## 41065            363      54.22
## 41066           1818     536.58
## 41067           1260    1230.67
## 41068            395     226.04
## 41069            371     131.63
## 41070            370     261.05
## 41071            457     242.36
## 41072           1137    4402.78
## 41073           1812    3324.61
## 41075            384     307.25
## 41076            378     195.73
## 41077            394      50.01
## 41078           1554    1990.49
## 41079           1776       0.00
## 41080            350    6201.67
## 41081            352     390.71
## 41082            398     168.12
## 41083            618    1114.35
## 41084           1257    7659.87
## 41085           1642      54.56
## 41086            351       0.00
## 41087           1790     202.25
## 41088           1763     568.62
## 41089            392    2455.87
## 41090            600    8170.90
## 41091            482    4798.34
## 41092           1821       0.00
## 41093            395     234.33
## 41094            395    1939.23
## 41095            378     404.04
## 41096           1805      99.24
## 41097            446     207.90
## 41098           1810     508.62
## 41099           1560   20663.66
## 41100           1810    7488.65
## 41101            384       0.00
## 41102           2094   60826.97
## 41103            378      73.13
## 41104            805     927.63
## 41105           1821    1443.57
## 41106           1820     997.22
## 41108            394     122.07
## 41109            673    3442.56
## 41111            408     158.92
## 41112            393      11.72
## 41113           1821    1895.02
## 41114           1821   22286.60
## 41115           1805       0.00
## 41116           1803     144.97
## 41117           1810     210.98
## 41118            387     204.05
## 41119            371    2645.50
## 41120           1810   48293.01
## 41121            384       0.00
## 41122           1806    1643.52
## 41123           1821     262.93
## 41124           1820    2433.13
## 41125            497       0.00
## 41126           1819     651.45
## 41127           1664       0.00
## 41128           1517       0.00
## 41129            291      65.60
## 41130            818    1838.87
## 41131            308     334.13
## 41132            378       0.00
## 41133            308    1997.96
## 41134           1491     212.64
## 41137           1012     343.63
## 41138           1924   72578.12
## 41139            378     182.31
## 41140           1803  200146.15
## 41141            735    1166.03
## 41142            384     203.60
## 41143            386     119.68
## 41144           2225  139521.36
## 41145           1800   26918.27
## 41146           1464   61596.15
## 41147            371       0.00
## 41148            370       0.00
## 41149            353     276.20
## 41150            637       0.00
## 41151            297     884.79
## 41152            773     648.29
## 41153            337     124.42
## 41154            336       0.00
## 41155            343       0.00
## 41156            371     259.25
## 41157            386     252.13
## 41158            387     337.51
## 41159           1711     721.57
## 41160            379       0.00
## 41161            379    4679.79
## 41162            378    2094.24
## 41163            378      87.33
## 41164            391       0.00
## 41165            391     440.86
## 41166            391     148.21
## 41167            391       0.00
## 41168           1818     326.28
## 41169            358       0.00
## 41170            829       0.00
## 41171           1548     423.44
## 41172            957    2382.89
## 41173            391     439.42
## 41174           2592  140570.90
## 41175           1314     703.46
## 41176            384     369.22
## 41177            411   20079.20
## 41178            388    2556.43
## 41179            889    5760.10
## 41180            700     909.87
## 41181            373    1504.15
## 41182            370       0.00
## 41183            371     174.58
## 41184            370    1305.99
## 41185            357    4566.13
## 41186            792   56166.02
## 41187            538     314.52
## 41188           1663    3797.81
## 41189           1786     308.19
## 41190            289      74.64
## 41191            307    1916.67
## 41192            330    1445.88
## 41193           1656     470.16
## 41194            525      26.88
## 41195           1783   80753.21
## 41196           2968  202361.72
## 41197            353     114.08
## 41198            350     140.14
## 41199            351    3930.41
## 41200            344   39475.95
## 41201            345    2239.47
## 41202            371      96.44
## 41203           1799     133.21
## 41204           1798     639.67
## 41205            385     698.81
## 41206            386       0.00
## 41207            585    2050.27
## 41208           1813     620.46
## 41209            384     258.69
## 41210            384     975.14
## 41211           1810     193.20
## 41212           1810       0.00
## 41213           1803     551.88
## 41214            379    3197.68
## 41215            388    1260.47
## 41216           1668     375.10
## 41217           1814     147.74
## 41218           1814   16003.65
## 41219           1814     293.73
## 41220           1814     460.07
## 41221           1814     396.06
## 41222           1355     112.14
## 41223            798   24358.30
## 41224           1814    1365.63
## 41225            447    5782.59
## 41226            381     934.32
## 41227            378     289.92
## 41228           1253   11820.68
## 41229           1810     739.74
## 41230           1687     386.34
## 41231           1810       0.00
## 41232           1810     454.00
## 41233           1001     455.43
## 41234            668    2627.96
## 41235            388       0.00
## 41236            386     256.06
## 41237            373     107.97
## 41238            942     243.58
## 41239            366     176.85
## 41240            364     191.91
## 41241            878     808.55
## 41242           1272    1396.74
## 41243            418     313.41
## 41244           1596    2816.90
## 41245            385      81.85
## 41246           1812    7670.13
## 41247           1707       0.00
## 41248           1810    2391.07
## 41249            379       0.00
## 41250           1805     444.36
## 41251           1805     182.80
## 41252            381       0.00
## 41253            379     229.02
## 41254            384     134.18
## 41255            374     336.02
## 41256           1763    1843.18
## 41257            364     479.91
## 41258            363     364.99
## 41259            286     300.00
## 41260            102       0.00
## 41261            231     175.13
## 41262            343     287.51
## 41263            272     184.99
## 41264            373       0.00
## 41265            435    1855.22
## 41266            384     499.14
## 41267           1807     881.13
## 41268            384    1956.11
## 41269           1810     159.62
## 41270           1810      85.68
## 41271            385     472.61
## 41272           1805       0.00
## 41273            377     200.77
## 41274           1734     143.60
## 41275           1751     217.00
## 41276           2163   84739.70
## 41277           1807       0.00
## 41278           1807     540.04
## 41279           1665     209.85
## 41280            379     110.00
## 41281            378    6393.29
## 41282            386       0.00
## 41283            386    1453.87
## 41284           1812      93.40
## 41285            593     273.42
## 41286           1810     508.59
## 41287           2190    9658.02
## 41288           1810     390.25
## 41289           1810     454.64
## 41290           1810     450.06
## 41291            384      66.00
## 41292           1207   20887.93
## 41293            385      54.68
## 41294            374      91.97
## 41295            426    3468.94
## 41296            353     922.89
## 41297           1477   47356.78
## 41298           1050    2960.89
## 41299            308     844.45
## 41300            318      63.25
## 41301            324     850.09
## 41302           1645     166.88
## 41303            337     289.75
## 41304           1798     147.56
## 41305           1800     228.31
## 41306            789   33292.13
## 41307            371       0.00
## 41308            523   44981.34
## 41309           1698    7193.24
## 41310            370     103.01
## 41311            366       0.00
## 41312           1791      66.68
## 41313           1810       0.00
## 41314           1810       0.00
## 41315           1810      42.31
## 41316           1810    2645.12
## 41317           1736     317.99
## 41318            378       0.00
## 41319            378       0.00
## 41320            378      98.19
## 41321            379     195.20
## 41322            381      87.37
## 41323           1804   10647.92
## 41324           1800     163.46
## 41325            374       0.00
## 41326           1707     108.08
## 41327           1729   41642.62
## 41328            325    2740.11
## 41329            257     323.94
## 41330           1275    1614.12
## 41331           1800     327.90
## 41332           1576     668.61
## 41333           1802     163.71
## 41334           1207    3626.14
## 41335           1807     248.83
## 41336           1807       0.00
## 41337           1475     180.07
## 41338            379       0.00
## 41339           1804   10328.59
## 41340           1413    2046.30
## 41341            370     495.70
## 41342           1797    7894.90
## 41343            373     276.19
## 41344            571       0.00
## 41346            373     595.21
## 41347           1761      59.16
## 41348            350    7118.62
## 41349           1191   37130.82
## 41350           1776       0.00
## 41351           1778    4927.39
## 41352            371     134.41
## 41353           1012       0.00
## 41354            378     528.28
## 41355           1442     263.65
## 41356           1805      20.00
## 41357           1805     350.01
## 41358           1805     194.86
## 41359            377    1184.02
## 41360           1807       0.00
## 41361           1803    1728.04
## 41362           1804     240.52
## 41363            323     673.75
## 41364           1009     995.19
## 41365            379      18.67
## 41366           2366  310633.11
## 41367           1362    4139.07
## 41368           1800    1659.62
## 41369            353       0.00
## 41370            311     131.58
## 41371            357       0.00
## 41372            351       0.00
## 41373            506       0.00
## 41374           1305   57487.76
## 41375            374     131.72
## 41376            377     430.03
## 41377           1803     107.98
## 41378           1804       0.00
## 41379            378     117.92
## 41380            818    5781.70
## 41381           1804     126.73
## 41382            370     176.06
## 41383            371       0.00
## 41384           1798     324.81
## 41385            371     665.12
## 41386           1726    1063.45
## 41387            707     148.52
## 41388            318    1363.12
## 41389           1798     276.48
## 41390            373     575.64
## 41391           1798      73.55
## 41392            448     251.19
## 41393           1797    2776.79
## 41394           1792     211.19
## 41395           1804    3470.88
## 41396            377     412.03
## 41397           1800     329.91
## 41398           1800     313.15
## 41399            339     198.01
## 41400            701     994.91
## 41401            363     316.89
## 41402            359     110.32
## 41403            297     363.14
## 41404           1573     681.00
## 41405            559       0.00
## 41406            358    1338.81
## 41407            371      44.21
## 41408            363     267.02
## 41409            422     715.06
## 41410            414     292.17
## 41411           1763     132.22
## 41412            344     170.22
## 41413           1763       0.00
## 41414           1016   11338.84
## 41415            573     392.84
## 41416           1802     433.97
## 41417            374     347.73
## 41418           1803     284.71
## 41419           1804      38.37
## 41420            378     115.96
## 41421           1792       0.00
## 41422            408     543.80
## 41423            366       0.00
## 41424            365     194.87
## 41425           1687       0.00
## 41426           1796       0.00
## 41427           1796       0.00
## 41428            370    1290.65
## 41429            373    3014.98
## 41430            373     171.70
## 41431            373     286.83
## 41432            503     436.39
## 41433           1798      61.98
## 41434           1798     280.52
## 41435            371     125.95
## 41436            371     475.60
## 41437            511    8364.02
## 41438           1656     548.29
## 41439            872   40231.72
## 41440            371     147.87
## 41441            372     991.38
## 41442           1251  126300.07
## 41443            373     133.22
## 41444            373     252.80
## 41445            374       0.00
## 41446            374      50.01
## 41447            367       0.00
## 41448            370     273.50
## 41449           1796     153.00
## 41450            735     416.14
## 41451            895    1468.29
## 41452           1067     603.33
## 41453            374    1805.66
## 41454           2244  123030.41
## 41455            363       0.00
## 41456           1785     167.82
## 41457            326     533.59
## 41458            888    8355.39
## 41459             76       0.00
## 41460           1033      74.68
## 41461            359      84.61
## 41462           2005    1215.97
## 41463           1777      88.29
## 41464            353       0.00
## 41465            353       0.00
## 41466            581     119.55
## 41467            370     716.12
## 41468            370       0.00
## 41469            436     369.70
## 41471           1332       0.00
## 41472            373     131.31
## 41473            371     177.96
## 41474            371     145.45
## 41475           1387   21074.21
## 41476           1740    8692.21
## 41477            631   24158.63
## 41478            373     182.37
## 41479           1800     357.44
## 41480           1800       0.00
## 41481            371    2423.91
## 41482            556       0.00
## 41483           1749     187.82
## 41484           1126    1000.74
## 41486            370     943.70
## 41487           1356     222.12
## 41488            253       0.00
## 41489            329     172.81
## 41490            126     160.15
## 41491            367       0.00
## 41492            367     457.93
## 41493            366      78.17
## 41494            370    1061.22
## 41495            412       0.00
## 41496            371     323.35
## 41497            372     234.70
## 41498           1456     571.22
## 41499           1735       0.00
## 41500           1791      66.68
## 41501           1791     201.09
## 41502            363     310.28
## 41503            363     244.92
## 41504            483   12431.79
## 41505           1789     595.84
## 41506            364    1806.68
## 41507            755   23741.57
## 41508            353      80.05
## 41509            353     160.94
## 41510            499     269.82
## 41511            336      66.68
## 41512            330       0.00
## 41513           1744   41801.24
## 41514           1485     159.85
## 41515            202     407.17
## 41516            163     349.20
## 41517           1645     278.94
## 41518            337     144.18
## 41519            478     655.20
## 41520            353       0.00
## 41521            363    1519.25
## 41522            363     465.96
## 41523            880     745.45
## 41524           1785   41162.17
## 41525            610     114.86
## 41526            366     428.40
## 41527            366    1040.72
## 41528            398    2364.98
## 41529           1797    3974.12
## 41530            399     279.55
## 41531            370     667.64
## 41532            332       0.00
## 41533            420     452.98
## 41534           1586     247.16
## 41535            328       0.00
## 41536            217     127.46
## 41537            239     324.95
## 41538            370       0.00
## 41539            370      33.29
## 41540           1310    2361.43
## 41541            371     288.53
## 41542           1043      66.00
## 41543           1793     300.22
## 41544            367       0.00
## 41545           1796     377.13
## 41546           1791     328.48
## 41547            363     140.97
## 41548            363     472.90
## 41549            363     175.26
## 41550           1499     710.92
## 41551            353      67.13
## 41552           1567     603.68
## 41553            318      27.16
## 41554           1656       0.00
## 41555            342     152.66
## 41556            869     451.53
## 41557            350     133.79
## 41558            909   30207.24
## 41559           1789      51.16
## 41560           1515     193.59
## 41561            595     181.75
## 41562           1146       0.00
## 41563            363     126.98
## 41564            365       0.00
## 41565            395     687.28
## 41566           1792      66.68
## 41567            366     163.17
## 41568            366     321.01
## 41569            367     463.77
## 41570           1793     215.89
## 41571            366     230.56
## 41572           1792     735.14
## 41573            147     584.20
## 41574            194     494.47
## 41575           1792    2910.31
## 41576            366      78.17
## 41577            429    3722.87
## 41578            367   13622.25
## 41579           1789     124.17
## 41580            695    5351.97
## 41581           1785       0.00
## 41582            360       0.00
## 41583            840   84303.32
## 41584           1785     103.58
## 41585            422    9772.83
## 41586            350       0.00
## 41587            352      78.17
## 41588            853     376.77
## 41589           1134      94.13
## 41590            211       0.00
## 41591           1647   23048.23
## 41592            357     437.11
## 41593            360     846.92
## 41594            345     319.08
## 41595           1792     649.50
## 41596           1792       0.00
## 41597           1791     136.20
## 41598           1791     262.00
## 41599            506    4189.37
## 41600            366       0.00
## 41601            911       0.00
## 41602           1748   34487.63
## 41603           1789       0.00
## 41604           1789     268.90
## 41605            363    1587.38
## 41606           1790     315.44
## 41607            814    3761.12
## 41608            712       0.00
## 41609            323    1288.93
## 41610            127      72.01
## 41611            904    5741.48
## 41612            353     304.56
## 41613            961   40037.23
## 41614            357     519.16
## 41615           1790       0.00
## 41616           1790       0.00
## 41618            427     609.13
## 41619            363     192.23
## 41620            363       0.00
## 41621            363     523.77
## 41622           1785     132.87
## 41623           1450      68.35
## 41624           1192    1550.92
## 41626            453   11967.21
## 41627           1791     469.45
## 41628           1791       0.00
## 41629           1060    1447.07
## 41630            595     795.71
## 41631            324     144.76
## 41632            309     411.00
## 41633           1385     194.82
## 41634           1771     292.17
## 41635           1769    1564.38
## 41636            337     577.11
## 41637            359    1284.61
## 41638            359     194.47
## 41639            360     822.00
## 41640            360     781.23
## 41641            363    9150.22
## 41642            360       8.01
## 41643            710       0.00
## 41644           1790     132.02
## 41645            364    1245.97
## 41646            390     383.62
## 41647            364       0.00
## 41648           2213   10299.28
## 41649            352     122.57
## 41650            350       0.00
## 41651            350     128.18
## 41652           2245   40896.42
## 41653            351     175.00
## 41654            495      95.37
## 41655            656   31974.34
## 41656           1679      74.68
## 41657            331     355.90
## 41658           1754     185.61
## 41659            318       0.00
## 41660            282      71.91
## 41661            152       0.00
## 41662            812   30964.13
## 41663            769    9726.08
## 41664           1778    1083.70
## 41665           1790       0.00
## 41666           1789     143.70
## 41667            468     374.23
## 41668           1789    3762.98
## 41669           1024    1005.51
## 41670           1579   25017.71
## 41671            360     814.21
## 41672            500     293.70
## 41673            372    5590.86
## 41674           1784       0.00
## 41675           1785       0.00
## 41676            358     302.84
## 41677            358     100.90
## 41678            357       0.00
## 41679            343     428.90
## 41680            246     116.17
## 41681            805    1055.76
## 41682           1919  200515.91
## 41683            237      84.10
## 41684            307     549.55
## 41685            331    2699.47
## 41686            309     121.77
## 41687            280     480.70
## 41688            631     282.02
## 41689           1770   20856.90
## 41690           1764       0.00
## 41691            336       0.00
## 41692            610    6896.23
## 41693            398     301.25
## 41694           1785     388.72
## 41695            359       0.00
## 41696           1785    6484.96
## 41697           1785     261.06
## 41698           1785   32451.32
## 41699           1785     416.50
## 41700           1785     203.78
## 41701           1786    3021.34
## 41702           1785      68.98
## 41703            363     135.21
## 41704            357     183.12
## 41705            353     593.52
## 41706            351      87.37
## 41707            351     307.25
## 41708            504    1412.75
## 41709            495     115.32
## 41710            351      32.42
## 41711            350    2788.14
## 41712            350    5033.61
## 41713            290     946.23
## 41714            332       0.00
## 41715            827   10361.05
## 41716            200     547.61
## 41717            870   24106.26
## 41718           1639     174.10
## 41719            351     505.90
## 41720            453    1308.10
## 41721            357     128.97
## 41722            357     192.72
## 41723           1779       0.00
## 41724           1778       0.00
## 41725            360      70.71
## 41726            880  277225.71
## 41727           1785     203.01
## 41728            388    7471.00
## 41729           1785     264.26
## 41730            750     191.92
## 41731           1489     209.31
## 41732            521     620.57
## 41733           1770     133.67
## 41735            336       0.00
## 41736            358     271.40
## 41737           1784       0.00
## 41738            864    2524.02
## 41739            416     572.44
## 41740           1154      15.69
## 41741           1046   11169.53
## 41742            338       0.00
## 41743           1751       0.00
## 41744            216     855.66
## 41745           1651     295.58
## 41746            339       0.00
## 41747            449      43.49
## 41748           1771    2257.27
## 41749            414    1369.97
## 41750           1769   69920.80
## 41751            828   23578.30
## 41752            357     192.92
## 41753            357      11.72
## 41754            357     149.72
## 41755            350     579.59
## 41756            350    1337.72
## 41757           1785     383.27
## 41758           1154      43.49
## 41759            359     169.72
## 41760            330       0.00
## 41761            316     357.03
## 41762            316       0.00
## 41763            489     399.21
## 41764           1784     310.05
## 41765            358     313.67
## 41766            561     148.14
## 41767            350       0.00
## 41768            350     980.08
## 41769            351     198.26
## 41770            361    1130.26
## 41771           1339    3374.84
## 41772            345      46.04
## 41773            367     829.47
## 41774            342     600.00
## 41775            785    1053.30
## 41776            765     475.69
## 41777            330       0.00
## 41778            300     444.10
## 41779            309     116.13
## 41780           1748    6228.36
## 41781           2014  343628.94
## 41782            343     108.13
## 41783            339    9506.10
## 41784            920   12744.93
## 41785           1169      85.78
## 41786           1771      76.16
## 41787           1771       0.00
## 41788            345     189.25
## 41789            345     276.37
## 41790            353     427.83
## 41791           1779    1178.19
## 41792            357    5872.74
## 41793           1783     312.56
## 41794           1779     125.00
## 41795            353      58.05
## 41796           1778     464.45
## 41797           1778     301.64
## 41798            349       0.00
## 41799           1292   60887.50
## 41800           1776     422.76
## 41801           1299    1382.25
## 41802            354      65.68
## 41803            647    5894.81
## 41804           1625     569.24
## 41805            736    9765.47
## 41806            308     280.89
## 41807            325    1306.85
## 41808            723    7449.86
## 41809            350    1507.82
## 41810           1777    1643.06
## 41811           1776     330.00
## 41812           1778      81.96
## 41813            353       0.00
## 41814           1130  161206.10
## 41815            952  102046.42
## 41816            344    2475.98
## 41817            344      36.21
## 41818            343      74.27
## 41819            345     228.19
## 41820            679  126408.46
## 41821            342    1036.81
## 41822            338    1684.59
## 41823            705      89.85
## 41824             88      16.50
## 41825            325      20.11
## 41826            167     609.56
## 41827           1771       0.00
## 41828           1779    3240.26
## 41829           1775     558.73
## 41830           1761   13915.61
## 41831           1728     359.08
## 41833           1778     122.79
## 41834            607    2950.98
## 41835            335      12.06
## 41836           1044     324.32
## 41837           1401      94.45
## 41838           1778     856.26
## 41839           1777       0.00
## 41840           1679      66.68
## 41841            307       0.00
## 41842           1748       0.00
## 41843            850     568.03
## 41844            284     239.86
## 41845           1776     826.44
## 41846            349       0.00
## 41847            352     271.52
## 41848            344      50.01
## 41849           1756   31286.96
## 41850            345     165.16
## 41851            343     561.10
## 41852           1761       0.00
## 41853           1426       0.00
## 41854           1001    1782.89
## 41855            336       0.00
## 41856            337      89.85
## 41857           1713    5626.15
## 41858           1595       0.00
## 41859            267     584.07
## 41860           1064   97462.61
## 41861            302     203.17
## 41862           1763       0.00
## 41863            337     156.99
## 41864            337      78.17
## 41865            434     256.51
## 41866            338       0.00
## 41867            345       0.00
## 41868           1771      66.45
## 41869            914     551.47
## 41870            344     231.14
## 41871           1797  705155.91
## 41872            412    2884.68
## 41873           1776    2844.26
## 41874            349     590.20
## 41875            349     615.11
## 41876           1775       0.00
## 41877           1474     293.47
## 41878            349       0.00
## 41879           1776       0.00
## 41880           1776     174.31
## 41881           1776     168.34
## 41882            736   47378.66
## 41883            286   12311.66
## 41884            627     137.07
## 41885            321     222.26
## 41886           1166   30703.19
## 41887           1735     771.56
## 41888            329     766.99
## 41889           1775     177.03
## 41890            349     174.92
## 41891           1770     248.24
## 41892            343     155.36
## 41893            346       0.00
## 41894           1381    1100.27
## 41895           1712     438.86
## 41896           2177   49405.15
## 41897            337       0.00
## 41898            337   15851.92
## 41899            622    5883.75
## 41900            622   19940.77
## 41901           1490     931.98
## 41902            331       0.00
## 41903            321     230.98
## 41904            675     173.00
## 41905           1489      51.49
## 41906            337     329.55
## 41907           1685      78.17
## 41908           1761     234.01
## 41909            546     166.39
## 41910            338       0.00
## 41911            719       0.00
## 41912            345     122.40
## 41913            546   19892.00
## 41914           1775   40728.56
## 41915            259      67.56
## 41916            350    2297.85
## 41918            576    1879.20
## 41919            325      98.77
## 41920           1658     102.59
## 41921            226     120.26
## 41922           2471    7256.20
## 41923            344     114.12
## 41924            345      69.83
## 41925           1771     295.85
## 41926           1771       0.00
## 41927           1771     443.98
## 41928           1763  202468.93
## 41929            889   32327.22
## 41930           1768    2004.45
## 41931           1269   85615.43
## 41932            335       0.00
## 41933            467     399.68
## 41934            290    2786.77
## 41935            311       0.00
## 41936            101     225.49
## 41937           1635     945.13
## 41938            459    1367.22
## 41939           1768     582.86
## 41940            375     627.88
## 41941           1769     103.49
## 41942           1769       0.00
## 41943            296     240.49
## 41944           1699    1573.86
## 41945            814      86.22
## 41946            257     268.24
## 41947           1769    1113.03
## 41948           1769      90.21
## 41949            345     596.91
## 41950           1771    5613.56
## 41951            337     140.42
## 41952            337     943.96
## 41953            377   18839.96
## 41954            334     318.00
## 41955           1723     118.25
## 41956           1437    2952.24
## 41957            311     130.58
## 41958            863       0.00
## 41959            323     176.71
## 41960            329     892.12
## 41961            329      85.96
## 41962            438     306.76
## 41963           1761      62.04
## 41964           1761     125.00
## 41965            335    1140.71
## 41966           1062       0.00
## 41967           1761     662.16
## 41969            337     155.11
## 41970            336     725.12
## 41971           1762     462.65
## 41972            336     482.44
## 41973           1764      20.00
## 41974           1764       0.00
## 41975           1768     589.99
## 41976            342     771.42
## 41977           1771     369.05
## 41978            344    4736.82
## 41979            276       0.00
## 41980           1346       0.00
## 41981           1698     118.56
## 41982            273       0.00
## 41983            111      90.94
## 41984           1755     334.60
## 41985            428   14774.91
## 41986            331    2084.81
## 41987           1734     160.29
## 41988           1750       8.00
## 41989            322     253.58
## 41990           1161  105510.45
## 41991           1770     120.75
## 41992           1770     158.37
## 41993            564    9393.85
## 41994           1768    4205.12
## 41995           1768     291.74
## 41996            342      48.33
## 41997            613    1642.33
## 41998           1517     143.99
## 41999           1768       0.00
## 42000            611    3749.93
## 42001           1768       0.00
## 42002           1275    9499.27
## 42003            338     283.61
## 42004            662   52946.42
## 42005           1364       0.00
## 42006           1761      85.05
## 42007            289     349.93
## 42008            321     672.20
## 42009            848    7098.94
## 42010            608     615.45
## 42011            328      81.85
## 42012           1498     425.36
## 42013            335    2044.15
## 42014           1761     605.41
## 42015            736   51499.57
## 42016            336     421.79
## 42017           1519       0.00
## 42018            338       0.00
## 42019           1592      98.16
## 42020            919     173.36
## 42021           1765     272.51
## 42022           1768    1228.58
## 42023           1405       0.00
## 42024            288     128.03
## 42025            679   12180.03
## 42026            924     191.12
## 42027           1754      28.11
## 42028            307     508.15
## 42029            311       0.00
## 42030            481    3139.61
## 42031            296     938.58
## 42032           1768     171.28
## 42033           1764   20238.43
## 42034            338     579.08
## 42035            338    2024.98
## 42036            338     245.62
## 42037           1764     266.26
## 42038           1764    2468.17
## 42039            338       8.24
## 42040            721    2081.13
## 42041            935     174.28
## 42042            336      59.16
## 42043            335      43.49
## 42044            281       0.00
## 42045           1708     987.96
## 42046            255       0.00
## 42047            775     447.74
## 42048           1750     320.22
## 42049            324    1384.97
## 42050            332      44.21
## 42051            332    1221.38
## 42052            813    1107.05
## 42053           1755       0.00
## 42054            901    2082.42
## 42055            329     165.86
## 42056           1756       0.00
## 42057           1317     606.76
## 42058             77     212.92
## 42059            335    3148.32
## 42060            336      76.19
## 42061            336       0.00
## 42062           1762       0.00
## 42063            488    5480.87
## 42064           1697     942.90
## 42065            339     321.72
## 42066            325     687.71
## 42067           1763     414.08
## 42068           1762     197.60
## 42069            336    1623.59
## 42070           1761     239.57
## 42071           1169       0.00
## 42072           1187   75499.00
## 42073            325       0.00
## 42074           1602     448.22
## 42075           1762       0.00
## 42076            336    1536.79
## 42077            337     166.59
## 42078            590     497.27
## 42079           1447     415.22
## 42080            258    1531.54
## 42081           1678    1196.14
## 42082           1182       0.00
## 42083            556   10199.37
## 42084            844   17084.47
## 42085           1747       0.00
## 42086           1211     540.07
## 42087            311      95.37
## 42088            311    3164.22
## 42089            967    1647.76
## 42090            224       0.00
## 42091            337     131.33
## 42092           1763    2278.41
## 42093            337     252.07
## 42094           1762     799.98
## 42095            336     187.44
## 42096            336     470.01
## 42097            473   11226.07
## 42098           1764     186.34
## 42099            268    1874.10
## 42100           1692     108.79
## 42101           1697     326.50
## 42102            281     502.53
## 42103           1722      66.68
## 42104            542    1486.22
## 42105            321      59.16
## 42106            322     227.15
## 42107           1274   55701.47
## 42108            540    1636.16
## 42109            329       0.00
## 42110            987    4661.84
## 42111            329       0.00
## 42112            172     226.85
## 42113            209     467.70
## 42114           1628       0.00
## 42115           1272     175.81
## 42116           1761     312.30
## 42117            337     106.28
## 42118            337       0.00
## 42119            302     332.92
## 42120           1229      60.97
## 42121           1042      87.53
## 42122            325     248.91
## 42123           1261    2944.01
## 42124           1013       0.00
## 42125            643   37600.00
## 42126            323    1369.41
## 42127           1751     424.70
## 42128           1226    6822.54
## 42129            436     463.10
## 42130            199       0.00
## 42131           1762      65.54
## 42132           1762      96.13
## 42133            336     223.00
## 42134           1729     152.07
## 42135           1729     198.05
## 42136           2102   32716.88
## 42137            311     569.07
## 42138           1744      10.00
## 42139            331     102.73
## 42140           1756       0.00
## 42141            881    6288.52
## 42142            329     127.22
## 42143           1751       0.00
## 42144            325    1000.95
## 42145           1294     388.55
## 42146           1491       0.00
## 42147            137      86.17
## 42148           1762  227054.77
## 42149           1728     118.91
## 42150            329    1011.41
## 42151            578     103.20
## 42152            659     489.55
## 42153            329       0.00
## 42154           1755     340.56
## 42155            330     169.58
## 42156           1757     416.03
## 42157            311     116.13
## 42158            317     171.37
## 42159            317       0.00
## 42160           1741     464.84
## 42161            315     159.24
## 42162            314       0.00
## 42163            463       0.00
## 42164            325     336.83
## 42165            323     112.26
## 42166            324       0.00
## 42167            587    5281.07
## 42168           1748    1241.88
## 42169            322      68.71
## 42170            322     152.54
## 42171           1573      96.29
## 42172            506    6069.78
## 42173            489       0.00
## 42174             92     146.37
## 42175            174     203.45
## 42176            473    7782.71
## 42177            356    1321.29
## 42178           1755     747.63
## 42179            120     200.63
## 42180           1651       0.00
## 42181           1510     267.07
## 42182            935     234.09
## 42183           1754     984.19
## 42184           1050       8.00
## 42185           1735    1190.57
## 42186           1758     117.52
## 42187           1756     386.48
## 42188            323    1065.61
## 42189            323     585.72
## 42190            318      93.05
## 42191           1659     640.82
## 42192            385     310.36
## 42193            937   40764.25
## 42194           1728       0.00
## 42195            923     333.86
## 42196           1726     329.58
## 42197           1334   29790.08
## 42198            255     760.82
## 42199            318       0.00
## 42200           1640     889.74
## 42201            317    1047.47
## 42202           1740       0.00
## 42203            323     193.89
## 42204            323     184.13
## 42205            394   17846.19
## 42206            321      69.07
## 42207           1212    3010.51
## 42208            325      49.42
## 42209           1756     401.99
## 42210           1756     191.92
## 42211            331      56.68
## 42212            779    4428.41
## 42213            743     265.44
## 42214            329    2753.57
## 42215            329     239.53
## 42216            330    1097.09
## 42217            105     174.75
## 42218            233      21.54
## 42219           1652     672.42
## 42220            196     146.21
## 42221             61       0.00
## 42222            302       0.00
## 42223           1755       0.00
## 42224            325     135.21
## 42225            325     829.26
## 42226            325     145.83
## 42227            325     122.27
## 42228            325     195.63
## 42229           1687     125.27
## 42230            328     629.41
## 42231           1754    2196.49
## 42232            746    5129.89
## 42233            328     136.97
## 42234            328     423.54
## 42235           1150      40.73
## 42236           1699   25761.68
## 42237            321     374.24
## 42238            323     159.80
## 42239            314     246.53
## 42240            314     567.43
## 42241            315       0.00
## 42242            314       0.00
## 42243             76      83.27
## 42244           1062    7788.38
## 42245            418   13451.84
## 42246            281     258.24
## 42247            273      87.26
## 42248            311       0.00
## 42249           1605   18088.18
## 42250            318    2769.59
## 42251            424       0.00
## 42252            321     242.39
## 42253            811    9691.64
## 42254            324   17837.00
## 42255            321     100.54
## 42256            325     572.59
## 42257            538     696.28
## 42258            529     288.47
## 42259            180       0.00
## 42260            143     519.97
## 42261            302     364.79
## 42262            460    1296.99
## 42263           1458     168.00
## 42264            294     329.29
## 42265            303     565.49
## 42266            309     678.80
## 42267            309      81.99
## 42268            322    1109.68
## 42269           1665   13412.16
## 42270           1749     701.63
## 42271            756     997.17
## 42272            324       0.00
## 42273           1750     105.25
## 42274           1207   18358.81
## 42275            318     100.27
## 42276            816   48288.30
## 42277           1587     305.12
## 42278            480      65.50
## 42279            316      78.17
## 42280            318    1255.15
## 42281            318     465.66
## 42282           1743    1673.90
## 42283           1750    1528.28
## 42284           1750    3421.33
## 42285           1749    3784.99
## 42286           1749     300.52
## 42287           1750     322.50
## 42288            322     240.65
## 42289            323      62.46
## 42290            435     381.94
## 42291           1056   13773.25
## 42292           1519     451.83
## 42294            692  158279.76
## 42295           1750     401.94
## 42296           1750     127.40
## 42297           1750     218.20
## 42298            318     589.18
## 42299            799     475.36
## 42300            321     145.03
## 42301            324     312.95
## 42302           1679    1977.32
## 42303            879   70177.38
## 42304           1720    1801.97
## 42305            303     235.00
## 42306            254     341.17
## 42307            322      35.00
## 42308            321     243.53
## 42309            322       0.00
## 42310            322    1843.13
## 42311           1750     133.39
## 42312            988    1651.31
## 42313           1750     215.88
## 42314           1750     785.93
## 42315           1744       0.00
## 42316           1743     409.45
## 42317            317     410.76
## 42318            316   21030.85
## 42319           1742       0.00
## 42320            491       0.00
## 42321            311     108.13
## 42322            310     180.77
## 42323            108     182.80
## 42324            661      72.01
## 42325            930    2657.23
## 42326            685      41.45
## 42327            778     786.63
## 42328            303     813.39
## 42329            309     893.10
## 42330            311     841.20
## 42331            315     518.51
## 42332            315      56.68
## 42333            679   12865.31
## 42334            317     148.57
## 42335            321    1043.74
## 42336           1749      63.35
## 42337            713     156.59
## 42338           1387     323.81
## 42339             99     177.96
## 42340            239     147.50
## 42341           1623     716.48
## 42342            336     873.52
## 42343            527     118.25
## 42344            296     183.66
## 42345           1163     526.51
## 42346            316       0.00
## 42347            288       0.00
## 42348            293   24988.92
## 42349           1697     305.46
## 42350            669       0.00
## 42351            453     416.37
## 42352            846     300.97
## 42353           1747     157.76
## 42354           1747     582.60
## 42355           1744    2257.63
## 42356           1743    1208.45
## 42357           1614      74.27
## 42358            725       0.00
## 42359            314     277.43
## 42360            925     130.56
## 42361            311       0.00
## 42362            716       0.00
## 42363           1052   26482.38
## 42364           1665     184.62
## 42365            308    1456.23
## 42366            189     196.85
## 42367            271     671.02
## 42368            791  163265.14
## 42369            288     584.24
## 42370           2470  149929.95
## 42371            300     174.46
## 42372           1231       0.00
## 42373            302      47.49
## 42374            300    2792.99
## 42375            303       0.00
## 42376           1618     192.73
## 42377            308       0.00
## 42378           1735       0.00
## 42379            310     137.72
## 42380           1736      93.00
## 42381            307      40.59
## 42382            857  206450.72
## 42383            314     123.99
## 42384            423    2174.53
## 42385            441   21994.94
## 42386            337    2079.69
## 42387            795   24376.72
## 42388           1744   37733.95
## 42389           1744     269.81
## 42390            233     367.21
## 42391           1728     222.29
## 42392            426     543.80
## 42393           1309     163.92
## 42394            636    1563.48
## 42396            248     372.31
## 42397           1744      63.46
## 42398            321       0.00
## 42399            873     341.71
## 42400            470     739.57
## 42401            522     201.95
## 42402           1741     761.59
## 42403            315    1414.49
## 42404            433    3426.52
## 42405           1618      99.97
## 42406            546     182.97
## 42407            252     602.40
## 42408            406    9902.18
## 42409            537   34269.26
## 42410            491     260.87
## 42411           1741    2267.31
## 42412           1574     180.36
## 42413           1163     226.24
## 42414            315     548.64
## 42415            314     167.26
## 42416           1744       0.00
## 42417            261      54.04
## 42418            349     591.76
## 42419            288     261.20
## 42421            358     204.99
## 42422            314     655.92
## 42423            337     253.51
## 42424            311     457.00
## 42425           1188   10759.34
## 42426            454      39.90
## 42427            240     203.92
## 42428             80       0.00
## 42429            572    1087.52
## 42430           2289     301.92
## 42431            566   39242.23
## 42432            297     246.66
## 42433           1709    3166.74
## 42434            303       0.00
## 42435           1734    1240.50
## 42436            309     335.97
## 42437           1080     398.96
## 42438            309     538.50
## 42439           1735     115.36
## 42440           1735      44.21
## 42441           1736       0.00
## 42442            308       0.00
## 42443            311     140.88
## 42444           1036      87.94
## 42445            740    1183.76
## 42446           1741     689.73
## 42447            315     931.72
## 42448           1740       0.00
## 42449            406    5695.63
## 42450            316     181.22
## 42451           1741     682.25
## 42452            166     574.51
## 42453            303     215.95
## 42454            303       0.00
## 42455           1712     864.32
## 42456           1707     186.52
## 42457            653   30016.07
## 42458            426     198.15
## 42459           1421    1013.38
## 42460           1726       0.00
## 42461            300      62.59
## 42462            426     364.42
## 42463            303     516.96
## 42464           1715       0.00
## 42465           1721     166.97
## 42466            294     269.80
## 42467           1698     448.98
## 42468           1728      86.34
## 42469            315    1081.70
## 42470            752     557.94
## 42471           1688       0.00
## 42472            311     780.00
## 42473            308    1128.75
## 42474            310     102.49
## 42475           2222  224680.77
## 42476           1736    2031.60
## 42477            307     420.17
## 42478            965     727.91
## 42479            601       0.00
## 42480            288     314.75
## 42481            316    2213.27
## 42482            302     106.65
## 42483            301     318.46
## 42484            300     253.90
## 42485           1271      73.00
## 42486            307       0.00
## 42487           1734     571.89
## 42488           1735     315.57
## 42489            309     559.24
## 42490            308     656.83
## 42491            308     148.62
## 42492           1735     395.94
## 42493            309     479.52
## 42494            566     915.31
## 42495            331   24147.46
## 42496            227       0.00
## 42497           1726       0.00
## 42498            786   19010.51
## 42499            301      84.67
## 42500            301    1039.45
## 42501            737     845.77
## 42502            281     118.00
## 42503            262     442.21
## 42504            252    1871.89
## 42505           1417      86.64
## 42506           1735    1259.85
## 42507            310    1274.26
## 42508           1735     122.29
## 42509            455      88.65
## 42510            307     538.70
## 42511            283       0.00
## 42512            303     451.50
## 42513            835    1004.44
## 42514           1728       0.00
## 42515            473    2146.08
## 42516           1723    1203.73
## 42517            460     240.02
## 42518            491    1321.60
## 42519           1735    1022.30
## 42520           1734       0.00
## 42521           1455      90.13
## 42522           1734     736.08
## 42523           1257     247.26
## 42524           1735     268.47
## 42525            483     768.10
## 42526            309     358.28
## 42527            309    2906.28
## 42528            897    1157.82
## 42529            647     412.31
## 42530            301     369.40
## 42532           1722       0.00
## 42533            297       0.00
## 42534           1726     129.66
## 42535            295     150.67
## 42536           1720     802.64
## 42537            295     619.20
## 42538           1219    5481.36
## 42539            275     270.59
## 42540            303     137.50
## 42541            303     103.67
## 42542           1690    2474.25
## 42543           1692     154.26
## 42544            738     127.93
## 42545            308     119.68
## 42546           1733    1094.32
## 42547            309     442.89
## 42548            310     206.06
## 42549           1736     941.63
## 42550           1734     545.36
## 42551           1734     752.40
## 42552            308     812.54
## 42553           1734   31297.17
## 42554           1191     218.58
## 42555            196      98.00
## 42556           1670     316.90
## 42557            274     166.28
## 42558           1576       0.00
## 42559           1726     204.11
## 42560           1726    1191.74
## 42561            735   26006.93
## 42562           1722       0.00
## 42563           1643       0.00
## 42564           1726     277.03
## 42565           1735    1597.33
## 42566           1735     133.84
## 42567            505       0.00
## 42568            202     193.02
## 42569            364    1646.68
## 42570            301     349.30
## 42571           1722       0.00
## 42572            868    5211.14
## 42573            296     934.99
## 42575            300      29.07
## 42576            297      56.68
## 42577            589    8749.28
## 42578            713     690.75
## 42579            303       0.00
## 42580           1729     341.91
## 42581           1710  202188.85
## 42582            303     232.91
## 42583            308       0.00
## 42584           1028   24859.25
## 42585            787       0.00
## 42586            174     130.64
## 42587           2154   28168.13
## 42589           1656     133.84
## 42590            303     472.16
## 42591            295     101.54
## 42592            295     711.78
## 42593           1472     622.28
## 42594            288      71.35
## 42595           1034       0.00
## 42596            310     812.11
## 42597            297     268.11
## 42598            300     316.21
## 42599            301     336.97
## 42600           1727     956.67
## 42601           1215     593.00
## 42602            302     300.57
## 42604            875     193.00
## 42605            303       0.00
## 42606           1023   79807.71
## 42607            279     183.95
## 42608            279       0.00
## 42609            271     338.26
## 42610           1733      47.76
## 42611            661    1003.11
## 42612           1582    6600.00
## 42613            146     138.78
## 42614           1224     273.46
## 42615            275     516.44
## 42616           1728     591.57
## 42617           1726     233.16
## 42618           1726     689.56
## 42619            880   79386.19
## 42620            386   23417.29
## 42621            301     448.00
## 42622            300    2725.95
## 42623            295     527.71
## 42624            410     222.25
## 42625            297       0.00
## 42626            120     695.35
## 42627            198     238.07
## 42628            767       8.00
## 42629            860     730.35
## 42630           1726       0.00
## 42631           1704       0.00
## 42632           1702   58250.88
## 42633            661       0.00
## 42634           1586      90.77
## 42635           1338       0.00
## 42636            281     228.76
## 42637            279       0.00
## 42638           1726    2176.47
## 42639            301     942.00
## 42640            301    1228.66
## 42641            518    3231.85
## 42642           1326    1842.05
## 42643           1714  155273.61
## 42644            552   16879.95
## 42645           1720     363.57
## 42646           1008    7685.89
## 42647           1163    6181.04
## 42648           1727     809.34
## 42649            281     127.50
## 42650            287      78.48
## 42651            198     332.25
## 42652            202       0.00
## 42653            283       0.00
## 42654            804     205.88
## 42655            274     257.30
## 42656            801       0.00
## 42657           1558       0.00
## 42658            314    2724.43
## 42659           1727     741.17
## 42660            301     722.57
## 42661            301     118.21
## 42662           1727     967.85
## 42663            390   15053.64
## 42664           1309      27.56
## 42665            300     449.18
## 42666           1726     211.46
## 42667            297     723.64
## 42668           1133     108.95
## 42669            293     321.40
## 42670           1716     452.20
## 42671            286     425.17
## 42672            245       0.00
## 42673            254      35.69
## 42674           1660     431.58
## 42675            237      40.59
## 42676           1127   27265.86
## 42677           1350       0.00
## 42678            287      48.35
## 42679            886       0.00
## 42680            289       0.00
## 42681            389    1991.42
## 42682            293      25.99
## 42683            295    2751.94
## 42684           1722    4993.33
## 42685           1723       0.00
## 42686           1723     626.21
## 42687           1723     210.31
## 42688            301     592.92
## 42689           1497    2753.49
## 42690            280    1784.59
## 42691            283     247.68
## 42692            124     106.65
## 42693            422       0.00
## 42694           1708    1047.21
## 42695            283      40.59
## 42696            283     176.13
## 42697            281     104.23
## 42698            276    2697.97
## 42699            296     182.21
## 42701            335     636.17
## 42702            287     355.84
## 42703            251    1639.23
## 42704            253     439.57
## 42705           1691       0.00
## 42706            353    4577.71
## 42707            495   29753.41
## 42708            271       0.00
## 42709            223    1362.87
## 42710            792     103.93
## 42711           1244   27387.30
## 42712            294      16.99
## 42713            830     469.32
## 42714            293     708.88
## 42715           1230       0.00
## 42716           1238   74067.47
## 42717           1722     650.25
## 42718           1723     314.92
## 42719           1723     108.17
## 42720           1723   24607.52
## 42721           1723    3887.01
## 42722           1349      77.56
## 42723            280      44.21
## 42724            472    1107.93
## 42725            281       0.00
## 42726           1708     221.97
## 42727            684    5083.04
## 42728            532      61.77
## 42729            240     179.50
## 42730            239     215.31
## 42731            198     901.03
## 42732           1720     549.46
## 42733            295     158.64
## 42734            524    5751.34
## 42735            298    1756.62
## 42736            239    4226.17
## 42737           1715       0.00
## 42738            294     601.05
## 42739            294     243.23
## 42740           1716       0.00
## 42741            284    2790.74
## 42742           1706       0.00
## 42743           1693    1020.42
## 42744            577   13990.00
## 42745            248     294.93
## 42746            982     171.57
## 42747            280       0.00
## 42748           1202     131.72
## 42749            281     249.47
## 42750            281     551.77
## 42751            280     211.79
## 42752            282     184.99
## 42753            281     514.96
## 42755            293     205.65
## 42756            295    2179.37
## 42757           1720  202027.00
## 42758            290       0.00
## 42759           1608      64.32
## 42760           1462       0.00
## 42761           1251      81.95
## 42762           1441      48.93
## 42763           1712     246.72
## 42764           1055   10369.27
## 42765            288    1289.47
## 42766            290    1270.66
## 42767            289      86.17
## 42768            858   25945.80
## 42769            963   44848.34
## 42770           1716     681.05
## 42771           1715   16921.77
## 42772            289     259.84
## 42773            288     312.81
## 42774            434    6802.34
## 42775           1720   25010.58
## 42776            432     419.50
## 42777           1719     943.67
## 42778           1719     124.20
## 42779            293    1864.17
## 42780            290     251.50
## 42781            290     146.21
## 42782            286      97.48
## 42783            282     167.66
## 42784            728     189.84
## 42785           1709     147.97
## 42786           1712     138.96
## 42787           1707     393.24
## 42788           1671     567.70
## 42789            244     103.46
## 42790            267     192.45
## 42791           1679     680.19
## 42792            745  445914.23
## 42793            163     771.59
## 42794           1620     298.74
## 42795            232     421.11
## 42796            271     190.18
## 42797           1690     107.97
## 42798            279      76.24
## 42799            279     201.05
## 42800            575     413.27
## 42801            281     104.13
## 42802           1707   44490.44
## 42803            281      99.97
## 42804           1705    3069.21
## 42805            834       0.00
## 42806            290    2124.47
## 42807            293      33.48
## 42808            931   11203.06
## 42809            842   18904.95
## 42810            237    2613.23
## 42811           1518     708.66
## 42812            288     504.00
## 42813            998    1600.82
## 42814            288     662.96
## 42815            290     121.39
## 42816           1554     102.98
## 42817            289     156.02
## 42818           1433     265.17
## 42819           1716     293.86
## 42820            290     151.45
## 42821            281      86.17
## 42822           1708     189.44
## 42823           1708     200.81
## 42824            618    1126.44
## 42825            286     236.55
## 42826           1709     441.21
## 42827           1705       0.00
## 42828            278       0.00
## 42829           1699       0.00
## 42830            266     392.31
## 42831           1629   18064.46
## 42832            266       0.00
## 42833            262       0.00
## 42834            424   16214.63
## 42835           1673    4349.58
## 42836           1508    2085.20
## 42837           1338     236.10
## 42838            281     248.48
## 42839            547      86.17
## 42840           1716      86.17
## 42841           1715     201.66
## 42842            288     383.35
## 42843            288     470.95
## 42844           1715     105.50
## 42845            287      30.38
## 42846            286     432.52
## 42847            288       0.00
## 42848            701    5708.85
## 42849           1063    1074.40
## 42850            288      33.39
## 42851            292     785.77
## 42852            205     263.04
## 42853            205     147.68
## 42854            239       0.00
## 42855            279   11823.76
## 42856            278       0.00
## 42857           1166    2503.08
## 42858           1705       0.00
## 42859           1708       0.00
## 42860           1715    2015.85
## 42861            288     536.50
## 42862           1714    3273.34
## 42863            400    2495.52
## 42864           1119       0.00
## 42865            339    3236.65
## 42866           1713     154.99
## 42867           1288     137.51
## 42868            799   33374.54
## 42869            281     124.95
## 42870            281      51.49
## 42871            831      51.49
## 42872           1705     319.87
## 42873            341    1685.10
## 42874            273      71.74
## 42875            731    1682.16
## 42876           1565     575.42
## 42877           1201    2789.15
## 42879            273     157.91
## 42880            272      92.61
## 42881            258       0.00
## 42882            261       0.00
## 42883            268     242.91
## 42884            280      64.68
## 42885            278     319.88
## 42886            279       0.00
## 42887           1705       0.00
## 42888            296    1118.01
## 42889           1406    1549.02
## 42890            283     166.84
## 42891            281    2627.51
## 42892            286     173.60
## 42893           1700       0.00
## 42894            680    9206.59
## 42895           1714    3049.01
## 42896           1714    1140.30
## 42897            580     218.65
## 42898           1534     287.74
## 42899            197      67.07
## 42900           1614     584.75
## 42901            218       0.00
## 42902           1656     293.85
## 42903            270      59.21
## 42904            652    1472.38
## 42905            275     483.97
## 42906            276     227.80
## 42907           1504    1121.83
## 42908            276     138.54
## 42909            286     313.60
## 42910            279     409.65
## 42911           1705   34895.78
## 42912            279       0.00
## 42913           1805  217947.21
## 42914            280     198.17
## 42915            412     763.67
## 42916            264     156.72
## 42918            250       0.00
## 42919            272       0.00
## 42920            209    6603.04
## 42921            504     200.70
## 42922           1099     135.39
## 42923            219    1101.23
## 42924            210       0.00
## 42925           1629     277.44
## 42926            878     402.21
## 42927           1690    1261.99
## 42928            261       0.00
## 42929            260      75.43
## 42930            266      95.37
## 42931            268       0.00
## 42932            930     150.43
## 42933           1693     232.58
## 42934           1693     442.13
## 42935           1770  190673.09
## 42936           1705    7318.43
## 42937            279     758.16
## 42938            279     560.76
## 42939           1206      40.82
## 42940            283     621.97
## 42941            696   19735.19
## 42942           1114     647.15
## 42943            283     135.74
## 42944            356    4479.95
## 42945            281     124.95
## 42946            275     666.02
## 42947            437     175.86
## 42948           1701     183.80
## 42949            483     272.63
## 42950           1526     841.03
## 42951            163     139.01
## 42952            209     843.17
## 42953            612   16263.88
## 42954            422    1418.88
## 42955            139     461.09
## 42956            276     193.32
## 42957           1702       0.00
## 42958            274     646.85
## 42959            282     118.00
## 42960            282     169.75
## 42961           1709     507.63
## 42962            283       0.00
## 42963           1712     963.81
## 42964            279     839.30
## 42965            280      59.16
## 42966            918  103424.68
## 42967            253       0.00
## 42968            248     267.32
## 42969            272     198.00
## 42970            222     158.47
## 42971           1665     445.81
## 42972           1656       0.00
## 42973            281     158.00
## 42974            279      16.80
## 42975            589     635.00
## 42976           1709     179.17
## 42977           1708       0.00
## 42978            268       0.00
## 42979            268     258.75
## 42980            268     331.41
## 42981            285    2931.40
## 42982            363    4477.09
## 42983            160    1470.08
## 42984           1656     215.60
## 42985            227     599.29
## 42986            833     441.83
## 42987            647      69.98
## 42988            699     376.06
## 42989           1679     154.47
## 42990            258     101.77
## 42991            272     778.13
## 42992           1708     108.17
## 42993            983      77.16
## 42994            279      18.00
## 42995           1705     528.73
## 42996           1705       0.00
## 42997           1705     254.65
## 42998            432    1394.47
## 42999            280       0.00
## 43000            276       0.00
## 43001           1344    2038.34
## 43002            276     276.33
## 43003            276       0.00
## 43004           1701    3024.00
## 43005            275     159.13
## 43006           1600     534.98
## 43007           1204     176.76
## 43008           1656     218.00
## 43009           1660     151.96
## 43010            233       0.00
## 43011            216     104.90
## 43012           1637    1596.86
## 43013           1574       0.00
## 43014            275     135.65
## 43015           1261      18.69
## 43016           1701    9278.16
## 43017            276     831.97
## 43018            278     409.57
## 43019            276    1919.62
## 43020            280     234.15
## 43021           1706     998.46
## 43022           1706     984.98
## 43023            279     463.08
## 43024           1132     200.70
## 43025           1442     161.52
## 43026           1425     518.31
## 43027            318     900.96
## 43028            298    3611.11
## 43029            273       0.00
## 43030           1194      99.50
## 43031            644      93.13
## 43032            805     132.75
## 43033           1092     246.91
## 43035            399    1539.36
## 43036            254     261.50
## 43037           1132      82.27
## 43038            260     118.51
## 43039            448    1422.91
## 43040            288     934.96
## 43041           1688     391.17
## 43042            266     372.75
## 43043           1688     184.87
## 43044            555   11342.23
## 43045            927   26590.17
## 43046            272     201.00
## 43047           1331    2916.17
## 43048            380     287.36
## 43049           1702     187.08
## 43050            276     179.59
## 43051            328     428.38
## 43052           1548      18.00
## 43053            275     910.19
## 43054            847    3389.41
## 43055           1700     211.41
## 43056            274      62.05
## 43057           1620     263.59
## 43058            183    1038.82
## 43059           1666   17552.45
## 43060           1635     713.19
## 43061            275     183.26
## 43062           1155      44.21
## 43063           1700       0.00
## 43064            572    2117.17
## 43065           1700     470.88
## 43066           1701       0.00
## 43067           1701       0.00
## 43068           1702       0.00
## 43069           1702     271.41
## 43070            275     302.51
## 43071           1643     425.93
## 43072           1699     290.64
## 43073            273     279.98
## 43074            247     211.93
## 43075            624  120411.09
## 43076           1691     390.94
## 43077           1690     264.77
## 43078            261       0.00
## 43079            260     221.10
## 43080           1688     197.51
## 43081           1688     916.15
## 43082            265    1660.75
## 43083            284    3280.14
## 43084            268    1057.60
## 43085            267    2754.22
## 43086           1678     759.86
## 43087           1700   59309.20
## 43088            257     192.82
## 43089            175    1358.88
## 43090            234     670.51
## 43091           1656     793.43
## 43092            219       0.00
## 43093            223     564.09
## 43094           1140     167.94
## 43095           1685       0.00
## 43096            483     214.42
## 43097            254     568.26
## 43098            502     116.92
## 43099            275     227.91
## 43100            260     297.00
## 43101            272     127.51
## 43102            272       0.00
## 43103            275    1180.93
## 43104           1702     267.48
## 43105           1702     367.82
## 43106           1701     189.91
## 43107            274     424.84
## 43108            274       0.00
## 43109           1700    1793.42
## 43110           1700     547.71
## 43111            240     200.24
## 43112           1700     520.60
## 43113           1700     496.52
## 43114           1688   21560.79
## 43115            311    1460.06
## 43116            266      56.75
## 43117           1390     223.93
## 43118           1674    2361.04
## 43119           1674       0.00
## 43120           1680     139.97
## 43121            266      74.16
## 43122            261     168.52
## 43123           1700       0.00
## 43124           1700       0.00
## 43126            195       0.00
## 43127            274    1033.26
## 43128           1700     113.85
## 43129            274    2529.66
## 43130            275    2173.05
## 43131            262   11986.08
## 43132           1713    6667.12
## 43133            267       0.00
## 43134           1680     161.00
## 43135            805       0.00
## 43136            257       0.00
## 43137           1683       0.00
## 43138            258     276.98
## 43139            247     103.46
## 43140            456     153.32
## 43141            246      22.80
## 43142           1670     334.10
## 43143            712   12927.89
## 43144           1404       0.00
## 43145           1699     263.95
## 43146            219     455.88
## 43147            239     393.50
## 43148           1665     999.59
## 43149            231     135.30
## 43150           1697     638.66
## 43151           1697     176.28
## 43152           1697     219.37
## 43153           1697      92.73
## 43154           1697       0.00
## 43155            629     696.48
## 43156           1698     801.78
## 43157            272    6319.77
## 43158           1698    3029.21
## 43159           1677   69990.15
## 43160           1677    7197.13
## 43161            434    1463.27
## 43162            683    4860.13
## 43163           1681     378.00
## 43164            252     731.89
## 43165            268     523.66
## 43166           1648   11268.38
## 43167            268    1234.67
## 43168           1613      86.17
## 43169           1131  103905.72
## 43170           1194    8103.67
## 43171           1910     151.46
## 43172            262     156.22
## 43173            354     167.66
## 43174           1269    1528.04
## 43175            261     271.35
## 43176           1700    2210.73
## 43177            274     973.32
## 43178            281     273.52
## 43179            253     486.31
## 43180            386     806.09
## 43181            360    4020.19
## 43182            262     324.59
## 43183            261     154.20
## 43184            269       0.00
## 43185           1691     415.17
## 43186            445     753.74
## 43187           1692      89.57
## 43188           1586     145.02
## 43189            905     111.96
## 43190            267     361.53
## 43191           1245     190.61
## 43192            267       0.00
## 43193            267     209.95
## 43194            255    1088.62
## 43195            259     158.55
## 43196           1698      83.00
## 43197           1697       0.00
## 43198            821     133.63
## 43199            209       0.00
## 43200            241    2357.35
## 43201            239    1489.83
## 43202           1653      74.68
## 43203            226       0.00
## 43204            414    4267.37
## 43205            259    1137.05
## 43206            257     365.15
## 43207            266    1741.84
## 43208            407     278.08
## 43209            265      84.11
## 43210            995     388.90
## 43211            245       0.00
## 43212            133      36.80
## 43213            257       0.00
## 43214            148     145.00
## 43216            209     204.57
## 43217            492      31.37
## 43218            112       0.00
## 43219           1234   16366.85
## 43220            251     647.85
## 43221           1692    3127.57
## 43222            266     370.31
## 43223           1692     111.01
## 43224            265     120.53
## 43225            266    2987.73
## 43226           1692       0.00
## 43227            410    8966.67
## 43228            568  147087.75
## 43229           1694     254.83
## 43230           1277      10.00
## 43231            264      66.68
## 43232           1241       0.00
## 43233            255       0.00
## 43234           1678       0.00
## 43235            195     173.00
## 43236           1741    1615.26
## 43237           1686       0.00
## 43238           1688     406.07
## 43239           1688     239.97
## 43240           1688      39.38
## 43241           1688      39.38
## 43242            218     176.23
## 43243           1691     259.82
## 43244            254       0.00
## 43245            254     187.15
## 43246            245    5119.50
## 43247            246    6378.36
## 43248            157       0.00
## 43249           1630    4736.71
## 43250            494   10499.82
## 43251            258      40.49
## 43252           1692     541.57
## 43253           1352     230.09
## 43254            265     490.24
## 43255            265     981.65
## 43256            375   14184.32
## 43257           1555       0.00
## 43258            261     566.40
## 43259            261    5996.49
## 43260            260       0.00
## 43261           1691   14062.08
## 43262           1691       0.00
## 43263           1691    1422.32
## 43264           1313     174.71
## 43265           1688     106.06
## 43266            266    2369.53
## 43267           1683       0.00
## 43268            258      93.19
## 43269            258    4224.40
## 43270            259       0.00
## 43271            482     195.78
## 43272            254    1768.94
## 43273            254     557.40
## 43274            254       0.00
## 43275           1680     103.48
## 43276            426    9987.81
## 43277            254     110.00
## 43278            253       0.00
## 43279            861     299.80
## 43280            135     158.55
## 43281           1418    3657.50
## 43282            234     578.25
## 43283           1653    1032.74
## 43284            382     154.70
## 43285            252     755.08
## 43286           1659   16441.89
## 43287            246     322.00
## 43288            245       0.00
## 43289            254     347.63
## 43290            253    1101.22
## 43291            762    1602.16
## 43292           1456       0.00
## 43293            258     114.45
## 43294            262     399.21
## 43295           1690    2686.12
## 43296            841     227.52
## 43297            991    9606.25
## 43298            261    1577.06
## 43299            261     592.99
## 43300            577    1404.02
## 43301            230     655.04
## 43302           1665     757.00
## 43303            755     165.89
## 43304           1665     128.01
## 43305            219     154.62
## 43306            729       0.00
## 43307            261     102.32
## 43308            413    1555.90
## 43309            260     350.78
## 43310            261     953.17
## 43311           1691       0.00
## 43312            262      88.38
## 43313           1681     617.42
## 43314           1681       0.00
## 43315           1678      86.22
## 43316            246     170.72
## 43317            282    4990.82
## 43318            246       0.00
## 43319           1077     219.79
## 43320            248     396.47
## 43321           1656     721.67
## 43322           1653       0.00
## 43323           1637       0.00
## 43324            199     784.85
## 43325            145     170.51
## 43326            245       0.00
## 43327            400     165.22
## 43328            254       0.00
## 43329            258      98.29
## 43330           1684     250.38
## 43331            491     508.87
## 43332           1684     107.78
## 43333            560   13778.86
## 43334            260    1109.06
## 43335           1686    4672.62
## 43336            231       0.00
## 43337            454    1663.07
## 43338            600      13.30
## 43339            444    1026.63
## 43340           1687    2833.13
## 43341            501     289.83
## 43342           1694     457.41
## 43344           1030       0.00
## 43345            322    2090.15
## 43346           1681     729.74
## 43347           1681     110.92
## 43348            246     768.00
## 43349            279    2037.62
## 43350           1665     504.98
## 43351            246     645.15
## 43352            246    1488.28
## 43353            245     112.17
## 43354           1677     218.00
## 43355            653   38047.79
## 43356            431     190.41
## 43357            255      26.14
## 43358            255     161.73
## 43359            335      71.25
## 43360            259     378.02
## 43361            698       0.00
## 43362           1174    1074.71
## 43363            259       0.00
## 43364           1684     206.27
## 43365            258      39.08
## 43366            797     127.35
## 43367           1679   43979.95
## 43368            253     160.01
## 43369           2192  323696.02
## 43370            261     655.46
## 43371            383     375.01
## 43372            227     192.78
## 43373            188       0.00
## 43374            252     228.25
## 43375            259     829.46
## 43376           1684     130.65
## 43377           1685    2572.89
## 43378            255     655.50
## 43379            617     449.31
## 43380            245     103.82
## 43381            660   13144.98
## 43382            573     290.59
## 43383            244      78.17
## 43384            182    5624.63
## 43385            240    1368.46
## 43386            202     131.70
## 43387            263     338.96
## 43388            377    1953.04
## 43389           1266     197.41
## 43390            247    4979.04
## 43391            249   11929.95
## 43392           1301    4039.81
## 43393            697     381.92
## 43394            255       0.00
## 43395            258     300.09
## 43396           1685       0.00
## 43397           1685     542.13
## 43398           1684      56.68
## 43399           1677     225.66
## 43400            254     189.25
## 43401            254       0.00
## 43402            254     312.81
## 43403            257     122.66
## 43404            491     351.65
## 43405            610       0.00
## 43406            701    4682.82
## 43407           1656     370.35
## 43408            230     102.32
## 43409            892   23050.32
## 43410            973      30.78
## 43411            251       0.00
## 43412           1674     933.71
## 43413            303    6407.57
## 43414            748     153.97
## 43415            246      56.68
## 43416            404    3832.38
## 43417           1372     149.59
## 43418            237     141.89
## 43419           1483       0.00
## 43420            293   20368.72
## 43421            244     252.68
## 43422            821   81278.86
## 43423            250      29.40
## 43424           1065     930.43
## 43425           1518   61712.50
## 43426            312    1744.62
## 43427            252     524.21
## 43428            253     102.84
## 43429           1681     367.79
## 43430           1505     314.80
## 43431            160     451.81
## 43432            523      51.49
## 43433           1567    3781.01
## 43434            239     842.89
## 43435            252     582.58
## 43436            365    1065.22
## 43437            258    1316.51
## 43438           1176     501.96
## 43439           1653     466.08
## 43440           1681     729.64
## 43441            503      78.00
## 43442            252     416.71
## 43443           1680    2492.47
## 43444            244     202.38
## 43445           1544     623.12
## 43446            239     106.89
## 43447            239     420.72
## 43448            250     997.84
## 43449            251       0.00
## 43450            248       0.00
## 43451           1680       0.00
## 43452           1070   41112.38
## 43453             57     349.65
## 43454           1594     100.00
## 43455            242    2268.18
## 43456            239     129.69
## 43457           1664     376.44
## 43458            252     208.82
## 43459            971     537.30
## 43460           1680      99.01
## 43461            956    1695.87
## 43462            250     357.24
## 43463            251     119.68
## 43464           1009      86.98
## 43465            245     396.66
## 43466            246     160.03
## 43467            246     270.22
## 43468           1671     439.74
## 43469             88       0.00
## 43470            239     348.24
## 43471           1665     560.08
## 43472            270     343.17
## 43473            240     110.00
## 43474            241       0.00
## 43475            219     165.15
## 43476            191     214.11
## 43477            245      27.36
## 43478           1671     706.04
## 43479            769    7269.09
## 43480           1677     797.40
## 43481           1677     300.83
## 43482           1677       0.00
## 43483            251     248.75
## 43484            248       0.00
## 43485            248      43.49
## 43486           1674      95.97
## 43487           1678    3054.64
## 43488           1678   43517.92
## 43489           1679      66.68
## 43490           1526     363.33
## 43491            170     260.54
## 43492            352    2926.30
## 43493            240     259.57
## 43494            239     261.02
## 43495            286     595.19
## 43496           1659    7201.81
## 43497            903     110.28
## 43498            727     440.97
## 43499            846   24554.19
## 43500            457       0.00
## 43501            211      66.68
## 43502            251       0.00
## 43503           1674       0.00
## 43504           1673     355.41
## 43505           1674     204.43
## 43506            882     789.20
## 43507           1676     227.72
## 43508           1672      35.19
## 43509            246     124.75
## 43510            245     221.88
## 43511           1671     614.46
## 43512           1671      76.50
## 43513            397     976.77
## 43514            121      25.00
## 43515            173     143.41
## 43516            210       0.00
## 43517           1635     132.43
## 43518            238     170.19
## 43519            287    1468.62
## 43520            227       0.00
## 43521           1657      51.16
## 43522           1049  147074.08
## 43524            218       0.00
## 43525            370    4653.97
## 43526            365     203.83
## 43527           1671     740.56
## 43528            293    5652.10
## 43529            245    1506.48
## 43530           1672   25229.21
## 43531           1672     284.41
## 43532            712     212.07
## 43533           1676       0.00
## 43534            250       0.00
## 43535            247     148.26
## 43536           1673   22025.62
## 43537           1673     345.61
## 43538            580       0.00
## 43539           1671     133.48
## 43540            244       0.00
## 43541           1670   39658.04
## 43542           1137   21040.63
## 43543           1650       0.00
## 43544           1656       0.00
## 43545            980     189.68
## 43546            630    7166.61
## 43547            785     124.17
## 43548            283    9410.51
## 43549           1658       0.00
## 43550            247    4513.92
## 43551           1673    3313.29
## 43552           1023       0.00
## 43553           1674    1556.83
## 43554           1673     447.18
## 43555            272    1041.94
## 43556            245     680.11
## 43557           1525   36831.52
## 43558            245    2221.95
## 43559            112     731.60
## 43560           1659      66.45
## 43561            274     773.35
## 43562           1663     166.47
## 43563           1659     860.68
## 43564            259     584.64
## 43565            237     373.39
## 43566            127     190.31
## 43567            452     505.26
## 43568            188     102.32
## 43569           1671       0.00
## 43570           1153  168945.46
## 43571           1672       0.00
## 43572           1674     972.53
## 43573           1670      73.58
## 43574           1306     160.60
## 43575           1586     379.11
## 43576           1664     447.80
## 43577            266    2902.64
## 43578           1658     555.01
## 43579           1667      51.16
## 43580           1652     139.04
## 43581            465     519.72
## 43582           1674     403.69
## 43583            663     176.61
## 43584            246     202.82
## 43585           1671     443.41
## 43586           1671    2696.24
## 43587           1671    4947.11
## 43588           1671     183.10
## 43589            780   25260.29
## 43590            554     846.24
## 43591           1616     310.29
## 43592           1645     357.77
## 43593            219    2154.79
## 43594           1667       0.00
## 43595            241       0.00
## 43596           1665       0.00
## 43597            679     551.34
## 43598           1656     982.07
## 43599           1671     778.20
## 43600           1671     224.82
## 43601            245     500.10
## 43602           1671    6700.89
## 43603           1258  159574.49
## 43604            244     204.01
## 43605            762    6667.30
## 43606            245       0.00
## 43607           1223      81.58
## 43608            625     268.66
## 43609           1032  111092.62
## 43610            230       0.00
## 43611           1657     821.28
## 43612           1657       0.00
## 43613            864     125.32
## 43614           1665     130.47
## 43615           1441     610.98
## 43616           1260      43.49
## 43617           1217   11207.86
## 43618            239     429.75
## 43619            216     245.65
## 43620            904      91.97
## 43621            224     108.98
## 43622            245     381.92
## 43623            370     124.61
## 43624            121     190.72
## 43625           1672     263.57
## 43626           1671     572.17
## 43627           1671     672.20
## 43628           1671     534.45
## 43629           1671    3641.16
## 43630           1579   12182.02
## 43631            232     135.18
## 43632           1651     112.10
## 43633            483      86.98
## 43634            447     916.29
## 43635           2268   74166.03
## 43636            576       0.00
## 43637           1667    4152.81
## 43638           1666     451.12
## 43639            241      64.00
## 43640            231     440.44
## 43641            232     303.74
## 43642            308    7256.56
## 43643           1657     492.02
## 43644            957    4895.87
## 43645            245       0.00
## 43646           1671    2275.12
## 43647           1582     134.37
## 43648            449     591.42
## 43649           1491     374.29
## 43650            143     244.47
## 43651            552   37554.16
## 43652            407    7500.48
## 43653            469    3338.90
## 43654            239      56.68
## 43655            231      98.55
## 43656           1667     536.11
## 43657            758     342.96
## 43658            240    3209.11
## 43659            240     415.58
## 43660            824     160.56
## 43661            239    2968.00
## 43662           1652       0.00
## 43663           1435    4336.81
## 43664            219    1019.02
## 43665            219      78.17
## 43666            204      80.84
## 43667            195     233.62
## 43668           1418      43.49
## 43669           1553     484.91
## 43670            163     111.57
## 43671            382       0.00
## 43672           1100     833.28
## 43673            218     196.78
## 43674            575      36.21
## 43675           1221   34143.30
## 43676            952     745.29
## 43677           1665     524.88
## 43678           1697      78.17
## 43679            232      82.77
## 43680           1658       0.00
## 43681            233       0.00
## 43682            941       0.00
## 43683            238      90.02
## 43684            233     581.35
## 43685            234     141.68
## 43686            958       0.00
## 43687            800     399.67
## 43688           1401      73.58
## 43689            108     150.00
## 43690            118       0.00
## 43691           1665     240.48
## 43692            238     424.72
## 43693           1665     702.17
## 43694           1665     249.99
## 43695           1659     197.36
## 43696            231      94.08
## 43697           1666     168.13
## 43698           1667    1405.06
## 43699           1665    1147.58
## 43700           1665     288.50
## 43701            213      82.77
## 43702            226     589.95
## 43703            507      30.00
## 43704           1463     285.40
## 43705           1478     220.40
## 43707            148     145.38
## 43708            209    1277.70
## 43709           1665      58.85
## 43710            447     288.60
## 43711            237    2322.61
## 43712            277     219.82
## 43713            114      10.00
## 43714            564      91.50
## 43715           1572     893.96
## 43716            238       0.00
## 43717           1659     940.10
## 43718           1546     249.63
## 43719            119     112.40
## 43720           1566       0.00
## 43721            231    1411.05
## 43722            238     694.07
## 43723            237     164.36
## 43724            363    2318.93
## 43725            237       0.00
## 43726           1560       0.00
## 43727            234    1130.82
## 43728            803    1773.40
## 43729           1651      87.37
## 43730           1533    1346.66
## 43731            553     135.14
## 43732           1555       0.00
## 43733           1625   51771.18
## 43734           1427     277.96
## 43735            872     380.86
## 43736           1548     185.92
## 43737            178    2785.72
## 43738            232     129.71
## 43739           1635     289.89
## 43740            725     170.73
## 43741           1645    2376.41
## 43742           1337     250.08
## 43743           1162    1877.99
## 43744            230     961.20
## 43745           1064      71.40
## 43746           1660       0.00
## 43747           1660     125.89
## 43748            237     748.11
## 43749            480     254.55
## 43750            237     194.13
## 43751            231     145.38
## 43752            232     193.65
## 43753            558    1226.83
## 43754            232     211.24
## 43755            232     801.81
## 43756            748    2682.74
## 43757            233     392.13
## 43758           1659     670.84
## 43759            178       0.00
## 43760           1614      80.00
## 43761           1519     164.29
## 43762            178       0.00
## 43763            329      38.09
## 43764            709    1972.82
## 43765            233       0.00
## 43767           1658     334.42
## 43768            232     210.80
## 43769            456    1026.72
## 43770           1663       0.00
## 43771            550   22388.66
## 43772           1660     321.46
## 43773           1660     239.18
## 43774            977   74855.78
## 43775            230     968.57
## 43776            451    5513.68
## 43777            219    1501.15
## 43778            227    1899.14
## 43780            267    1065.23
## 43781            225     125.36
## 43782           1651     181.18
## 43783            210      43.49
## 43784            204       0.00
## 43785            124      67.50
## 43786            150     188.05
## 43787           1600    1382.21
## 43788            232      87.37
## 43789            232      97.75
## 43790            174       0.00
## 43791             95     131.28
## 43792            199      75.48
## 43793            209    2586.49
## 43794            209       0.00
## 43795            878   48678.76
## 43796            246    4281.80
## 43797            227     519.10
## 43798            223     304.49
## 43799            223    3348.82
## 43800           1656    2233.37
## 43801           1251  304365.50
## 43802            234     431.02
## 43803           1660     428.68
## 43804           1660    6017.60
## 43805            237     168.26
## 43806            803     364.94
## 43807            414     636.26
## 43808            963    2574.51
## 43809            232       0.00
## 43810            232     291.57
## 43811           1254     208.99
## 43812           1447       0.00
## 43813           1463     124.45
## 43814            170     450.40
## 43815           1233     738.61
## 43816           1120       0.00
## 43817            314   14650.85
## 43818           1259      38.21
## 43819            233     276.97
## 43820           1659     184.54
## 43821            232     527.66
## 43822           1657    1510.49
## 43823           1657    1524.65
## 43824            231       0.00
## 43825            489    1037.55
## 43826            547      70.36
## 43827            224     225.68
## 43828           1169     708.70
## 43829            552       0.00
## 43830            218     185.00
## 43831            227     159.22
## 43832            496    1136.80
## 43833           1161       0.00
## 43834            626      24.95
## 43835            257       0.00
## 43836            195     188.07
## 43837            116     214.12
## 43838           1279     624.06
## 43839            225     293.90
## 43840           1183     668.25
## 43841           1653     588.52
## 43842           1581     496.98
## 43843            230     535.66
## 43844           1657    1535.41
## 43845           1657     471.26
## 43846            376    1142.63
## 43847           1519     264.50
## 43848            750     780.00
## 43849            219     418.73
## 43850            220     333.39
## 43851            219      68.98
## 43852           1651     101.16
## 43853            881       0.00
## 43854           1651     329.88
## 43855           1651     669.48
## 43856            225       0.00
## 43857            225     135.23
## 43858            981      77.83
## 43859            213    1129.51
## 43860           1328  155778.74
## 43861            439   24444.12
## 43862            350    5650.67
## 43863           1386     336.99
## 43864            198     191.32
## 43865            204     126.23
## 43866           1996    1230.76
## 43867            191     963.85
## 43868             80     139.00
## 43869            159     153.55
## 43870            149     602.95
## 43871           1078     521.22
## 43872            167     128.18
## 43873           1498     104.38
## 43874            323    2585.73
## 43875           1614       0.00
## 43876           1033     163.98
## 43877           1625    1048.66
## 43878            204       0.00
## 43879           1359       0.00
## 43880            210     402.31
## 43881           1636     557.13
## 43882           1637     156.76
## 43883            230     216.56
## 43884            396    1232.45
## 43885           1656    1265.00
## 43886            230      48.75
## 43887            213     411.42
## 43888            524     172.58
## 43889           1934   40310.11
## 43890           1658     368.76
## 43892           1657     161.17
## 43893            231       0.00
## 43894            224      78.17
## 43895            224       0.00
## 43896            286    1202.27
## 43897           1225       0.00
## 43898            226     897.34
## 43899            227    1837.78
## 43900           1644     810.69
## 43901            412    2404.11
## 43902            219       0.00
## 43903            223       0.00
## 43904           1523     449.59
## 43905           1497     178.35
## 43906            223       0.00
## 43907            914      18.10
## 43908            223     130.95
## 43909           1645      86.22
## 43910            341    1311.08
## 43911            774     306.10
## 43912           1490     100.17
## 43913           1651    2239.12
## 43914            225     392.47
## 43915            348     568.77
## 43916            224     343.44
## 43917           1642       0.00
## 43918           1656  158705.65
## 43919            230     563.48
## 43920           1656     858.81
## 43921            227      72.88
## 43922            211     312.53
## 43923            791     386.24
## 43924            376    1812.33
## 43925           1559     865.52
## 43926            547    3470.08
## 43927            208       0.00
## 43928           1656     506.19
## 43929            216       0.00
## 43930            213     179.95
## 43931            224     484.49
## 43932            225     197.71
## 43933           1370    1632.05
## 43934            226    1013.26
## 43935            227     495.40
## 43936            227     379.73
## 43937           1653     577.13
## 43938           1645       0.00
## 43939            219     140.88
## 43940           1645     577.71
## 43941            220     339.49
## 43942            220       0.00
## 43943            572    3512.75
## 43944            190       0.00
## 43945            197       0.00
## 43946            760     191.14
## 43947            547     419.22
## 43948            196     108.28
## 43949            714     184.55
## 43950            223     306.16
## 43951            987     512.55
## 43952            220    1851.31
## 43953           1562     324.46
## 43954            219       0.00
## 43955            226     601.37
## 43956            225      87.87
## 43957            225     529.95
## 43958           1651       0.00
## 43959            735   45022.69
## 43960           1638     341.14
## 43961            153     279.64
## 43962            156     170.24
## 43963            225     383.79
## 43964            224       0.00
## 43965            347    1452.87
## 43966           1358     328.47
## 43967            223     234.35
## 43968            999    2626.89
## 43969            721    5019.51
## 43970           2129   38704.67
## 43971           1635       0.00
## 43972           1579     338.21
## 43973           1603     167.86
## 43974            208     143.79
## 43975            203     427.52
## 43976            223     545.57
## 43977            220     293.03
## 43978           1645   12023.47
## 43979           1644       0.00
## 43980           1554      72.29
## 43981            224     226.04
## 43982            226     701.03
## 43983            174       0.00
## 43984           1652     993.47
## 43985           1652    2558.66
## 43986           1652     874.47
## 43987            226     327.25
## 43988            225     891.35
## 43989           1652   26489.24
## 43990           1650      90.43
## 43991            833   37579.37
## 43992           1650       0.00
## 43993            217     247.96
## 43994            220     191.05
## 43995            220     427.29
## 43996            223    2104.95
## 43997           1565    1112.96
## 43998           1649     982.50
## 43999           1650     289.76
## 44000           1649     871.75
## 44001            570     186.39
## 44002            210     618.38
## 44003            209     140.19
## 44004            211       0.00
## 44005            510     135.66
## 44006            210     345.12
## 44007            188     565.21
## 44008           1371       0.00
## 44009            232     332.94
## 44010            202     125.62
## 44011            998    1766.20
## 44012           1064     389.63
## 44013            139      95.31
## 44014            209    1819.23
## 44015           1635   12580.46
## 44016           1011   57431.79
## 44017           1044   13755.36
## 44018            247     960.70
## 44019            198       0.00
## 44020            355   10813.61
## 44021            224     737.79
## 44022            223      19.35
## 44023           1646     118.78
## 44024            301    1107.46
## 44025            220     155.01
## 44026            217     366.23
## 44027            217    1821.60
## 44028            218     332.80
## 44029           1645    1211.55
## 44030           1650     144.35
## 44031           1650    1615.64
## 44032            399     978.26
## 44033            213     984.03
## 44034            212     174.10
## 44035             64       0.00
## 44036            170     558.31
## 44037           1588    3654.62
## 44038           1642       0.00
## 44039           1642     116.42
## 44040            212     347.30
## 44041            269    2461.85
## 44042           1580  171049.79
## 44043           1645     688.13
## 44044           1644     646.07
## 44045           1644      78.17
## 44046           1644      66.68
## 44047           1644     519.11
## 44048            217     690.27
## 44049           1646      56.68
## 44050           1765    4459.58
## 44051           1649     493.93
## 44052            223     227.86
## 44053            199       0.00
## 44054           1275      78.17
## 44055            205       0.00
## 44056            209     644.32
## 44057            214       0.00
## 44058            468     427.14
## 44059            567     523.33
## 44060            377       0.00
## 44061            183       0.00
## 44062            196       0.00
## 44063            192    2206.80
## 44064            608      37.50
## 44065            473    2110.83
## 44066            232     109.76
## 44067           1079     609.52
## 44068           1048     250.84
## 44069            211       0.00
## 44071            209      83.42
## 44072            325    4988.74
## 44073           1649      78.17
## 44074            219     435.82
## 44075           1527   54229.31
## 44076            916     220.32
## 44077            218      35.19
## 44078           1594       0.00
## 44079            219       0.00
## 44080            212    3107.36
## 44081            219     130.49
## 44082            216    1583.54
## 44083            213      88.38
## 44084           1642    1805.22
## 44085            124     653.80
## 44086            116     544.18
## 44087           1573    2870.00
## 44088           1642     217.03
## 44089           1642     430.77
## 44090            216       0.00
## 44091           1638     256.04
## 44092           1638     256.04
## 44093           1638     256.04
## 44094            213     175.14
## 44095            212       0.00
## 44096           1631    8745.65
## 44097            625     340.90
## 44099           1644     512.61
## 44100           1644     175.39
## 44101           2214   22029.16
## 44102            218     136.64
## 44103            217     236.73
## 44104           1645     534.73
## 44105           1184    5741.10
## 44106           1628       0.00
## 44107            208     248.86
## 44108            878    1155.71
## 44109            211     161.89
## 44110           1636     156.69
## 44111           1457   13249.76
## 44112            347     379.64
## 44113           1479     157.16
## 44114            289      96.96
## 44115           1573      98.33
## 44116           1720   20371.79
## 44117            313      75.36
## 44118            210     582.27
## 44119           1645       0.00
## 44120           1644       0.00
## 44121            216     969.52
## 44122            213      88.96
## 44123           2278    6309.08
## 44124            561      41.95
## 44125            189      37.11
## 44126            230     839.03
## 44127            296    3640.68
## 44128            242    2765.67
## 44130            424    3173.35
## 44131           1384     172.19
## 44132           1454      50.01
## 44133            751     321.48
## 44134           1314       0.00
## 44135            177       0.00
## 44136            198     284.95
## 44137            210     370.73
## 44138            572  111756.05
## 44139           1345    6306.93
## 44140            282    1552.29
## 44141            218     169.12
## 44142           1644    2685.91
## 44143           1293     705.69
## 44144            663    1446.23
## 44145           1443    5403.55
## 44146            219      25.00
## 44147            212     168.38
## 44148           1638      51.16
## 44149           1642     282.61
## 44150           1642     154.17
## 44151            213     230.17
## 44152           1335       0.00
## 44153            764      48.60
## 44154            506     153.38
## 44155            514     141.68
## 44156             83       0.00
## 44157            213     196.56
## 44158           1530     225.61
## 44159            216      50.15
## 44160           1642     203.21
## 44161            660     649.95
## 44162           1624       0.00
## 44163            212       0.00
## 44164           1639     879.93
## 44165            212    1362.02
## 44166           1638   25702.78
## 44167            217     130.00
## 44168            216     169.99
## 44169           1938  130262.00
## 44170            217     176.69
## 44171           1642     356.26
## 44172           1636     183.07
## 44173            209     667.91
## 44174           1149   44430.29
## 44175            473   18898.80
## 44176            203       0.00
## 44177            156       0.00
## 44178            345    1655.99
## 44179            664   18247.01
## 44180            203       0.00
## 44181            204     328.25
## 44182           1756    8895.22
## 44183            887     645.77
## 44184            202      70.04
## 44185            205     202.68
## 44186            209     149.10
## 44187           1084      56.68
## 44188            779      95.96
## 44189            210      43.49
## 44190            210     161.46
## 44191            252     365.38
## 44192            217     466.55
## 44193            217     172.00
## 44194            212     244.89
## 44195           1638      66.45
## 44196            216      25.58
## 44197           1642    3191.77
## 44198            216     280.40
## 44199            184       0.00
## 44200            910    1718.89
## 44201            191       0.00
## 44202            197      36.21
## 44203            197       0.00
## 44204            345     338.83
## 44205           1589   12619.69
## 44206            928      81.00
## 44207            278   25932.53
## 44208            189     121.47
## 44209            364      97.93
## 44210           1638     172.42
## 44211           1638       0.00
## 44212           1638    2975.63
## 44213            445     145.59
## 44214            618     371.24
## 44215            890     177.02
## 44216           1622   13741.85
## 44217           1637      53.26
## 44218            211     415.55
## 44219           1635     255.11
## 44220           1635     436.51
## 44221            205     313.62
## 44222           1631     626.23
## 44223           1107     166.69
## 44224            867     440.69
## 44225            202      83.37
## 44226            204      36.21
## 44227            204    1363.18
## 44228           1434       0.00
## 44229            552    3041.43
## 44230            129     531.03
## 44231             96     197.04
## 44232            966       0.00
## 44233            204     132.43
## 44234            253   15392.93
## 44235           1310     433.98
## 44236            343    6883.96
## 44237           1631   16325.97
## 44238            204       8.80
## 44239           1635     555.09
## 44240           1635     426.74
## 44241            338    7272.95
## 44242            644      12.06
## 44243            211      36.21
## 44244           1064     291.48
## 44245            210     112.51
## 44246           1636       0.00
## 44247           1636     481.64
## 44248            212     842.57
## 44249           1638     827.35
## 44250           1638      89.60
## 44251           1054     931.63
## 44253           1638     353.40
## 44254            216     311.30
## 44255            839     222.78
## 44256           1616     667.50
## 44257            401    1484.42
## 44258           1623     763.40
## 44259           1623     333.79
## 44260            213      75.36
## 44261            156     154.88
## 44262            190     293.00
## 44263           1638      86.22
## 44264            887    5442.84
## 44265            211     666.21
## 44266           1635     807.35
## 44267            332     503.25
## 44268           1624   15190.02
## 44269           1624     139.30
## 44270            612     496.84
## 44271            133     379.35
## 44272            884      50.01
## 44273            188     199.00
## 44274           1436     175.31
## 44275            198     178.79
## 44276            199       0.00
## 44277            874     434.17
## 44278            333    6087.23
## 44280           1631    2902.15
## 44281           1631   30822.55
## 44282            209       0.00
## 44283           1142  328555.67
## 44284            211    1590.51
## 44285            610    2791.06
## 44286           1637     606.30
## 44287           1637     138.11
## 44288            393     968.27
## 44289            210       0.00
## 44290            210       0.00
## 44291            162       0.00
## 44292           1281     359.48
## 44293            205      91.97
## 44294            205     148.15
## 44295            205     106.68
## 44296            237     174.34
## 44297           1635     230.33
## 44298            432    1522.84
## 44299           1624       0.00
## 44300           1276     282.01
## 44301             91     127.18
## 44302            174       0.00
## 44303            209     783.73
## 44304           1563   80633.92
## 44305            182       0.00
## 44306            908      78.17
## 44307            190       0.00
## 44308            199     157.80
## 44309            256     156.75
## 44310            204    1418.57
## 44311            204     253.56
## 44312            203     141.39
## 44313            202     141.39
## 44314            202     130.83
## 44315            202      87.37
## 44316            202      87.37
## 44317           1018    6810.92
## 44318            209    4272.40
## 44319           1635     251.94
## 44321            205     839.32
## 44322            205     295.57
## 44323           1635    5662.12
## 44324            208     228.88
## 44325            211       9.71
## 44326            210     340.81
## 44327           1212    7490.00
## 44328           1077     462.61
## 44329            222       0.00
## 44330             86       0.00
## 44331           1341     310.53
## 44332            135       0.00
## 44333           1341       0.00
## 44334            441     547.56
## 44335            162       0.00
## 44336           1260     193.87
## 44337            997    1212.56
## 44338           1630     688.58
## 44339            202     245.01
## 44340           1629    1022.46
## 44341           1481      87.46
## 44342            223     204.91
## 44343           1624    4503.60
## 44344            533    1116.15
## 44345            533    1773.20
## 44346            145    1147.23
## 44347            295     106.50
## 44348            163      56.68
## 44349            177     138.79
## 44350           1496       0.00
## 44351            691     941.87
## 44352           1111     110.04
## 44353            189     213.02
## 44354            394     277.78
## 44355            184     210.73
## 44356            198    4197.74
## 44357           1628    1374.92
## 44358            199     135.66
## 44359            199     163.31
## 44360            199     447.71
## 44361            199     560.19
## 44362            875      10.97
## 44363            231    1161.28
## 44364           1525     384.24
## 44365           1629       0.00
## 44366           1629     494.22
## 44367            205      10.00
## 44368             81       0.00
## 44369            205       0.00
## 44370           1820     417.22
## 44371            203      50.01
## 44372            316     471.10
## 44373           1616    2165.87
## 44374           1628       0.00
## 44375            918    1115.94
## 44376           1469    2019.00
## 44377           1621     888.31
## 44378            195       0.00
## 44379            196       0.00
## 44380             64       0.00
## 44381           1560    3287.78
## 44382            580     393.65
## 44383           1618       0.00
## 44384            185     125.32
## 44385           1839      87.46
## 44386            198    1197.45
## 44387           1629     703.19
## 44388            315   20338.36
## 44389           1012    5578.58
## 44390           1629     103.48
## 44391           1629       0.00
## 44392            198     575.17
## 44393            455    5241.49
## 44394           1624       0.00
## 44395           1573     785.16
## 44396           1583      35.00
## 44397            162       0.00
## 44398            162     154.15
## 44399           1594    3760.47
## 44400           1601      37.44
## 44401           1603       0.00
## 44402            240    3443.10
## 44403           1611    2513.41
## 44404           1629      84.73
## 44405           1629     114.50
## 44406            203     235.58
## 44407           1629     131.15
## 44408           1519      67.37
## 44409            202      19.35
## 44410            883    2188.22
## 44411            719    8627.37
## 44412            694       0.00
## 44413            184     191.49
## 44414            192     510.51
## 44415            190      68.99
## 44416            321     148.54
## 44417           1623     890.22
## 44418           1013     833.82
## 44419           1624     258.61
## 44420            324   19349.11
## 44421           1467     191.46
## 44422            225    1842.94
## 44423            640    9193.01
## 44424           1071   78189.92
## 44425            364    1130.87
## 44426           1345     936.29
## 44427            707   21188.34
## 44428            188      32.59
## 44429            203     357.73
## 44430            585     901.65
## 44431           1624     156.09
## 44432           1624   33111.98
## 44433            198     277.74
## 44434            202     941.16
## 44435            202       0.00
## 44436           1628     229.89
## 44437           1133       0.00
## 44438            202     174.47
## 44439           1096     740.49
## 44440            199     719.58
## 44441            199     539.10
## 44442           1349      57.11
## 44443            119     120.00
## 44444            952       0.00
## 44445            176     168.82
## 44446           1601     999.41
## 44447            199       0.00
## 44448            199     373.59
## 44449           1625      48.60
## 44450            719    7259.20
## 44451            202      14.14
## 44452            888     671.20
## 44453            198      16.50
## 44454           1624     501.24
## 44455            378    2969.67
## 44456           1744   43756.42
## 44457            646     228.84
## 44458           1113     129.60
## 44459            192     127.56
## 44460            190     354.09
## 44461           1622     119.68
## 44462            195       0.00
## 44463           1530     426.19
## 44464            197     117.97
## 44465           1080     564.16
## 44466           1623     248.47
## 44467           1174   40370.00
## 44468            666    5491.09
## 44469           1384    4371.10
## 44470            175     127.32
## 44471            316      70.41
## 44472            177     984.31
## 44473            177    1001.24
## 44474            174     665.56
## 44475            197       0.00
## 44476            197       0.00
## 44477           1622     273.69
## 44478           1622      98.92
## 44479            190     184.28
## 44480            191      46.56
## 44481            192     430.81
## 44482            834       0.00
## 44483           1364     367.78
## 44484            183       0.00
## 44485            310    4157.29
## 44486           1624   24841.43
## 44487           1624     258.84
## 44488           1218   43732.51
## 44489           1624     279.73
## 44490            198    4691.90
## 44491            199    3655.11
## 44492           1352       0.00
## 44493            190       0.00
## 44494            189     261.34
## 44495           1616      66.68
## 44496           1291  207460.93
## 44497            192     148.32
## 44498           1620     173.42
## 44499           1617     388.27
## 44500           1617       0.00
## 44501           1624   18528.33
## 44502           1561    1653.92
## 44503           1205      28.98
## 44504           1622     999.54
## 44505           1177     210.91
## 44506           1615     529.00
## 44507            190      94.17
## 44508            185       0.00
## 44509            118      27.95
## 44510           1484     146.73
## 44511            896     347.93
## 44512           1106     112.25
## 44513            185      91.97
## 44514           1410   16014.63
## 44515           1610     163.23
## 44516            190     520.00
## 44517           1617     336.53
## 44518            195     526.20
## 44519            192      78.17
## 44520            196     204.59
## 44521           1622   13804.77
## 44522           1622     934.05
## 44523            196     218.94
## 44524            198    1474.59
## 44525            197     142.92
## 44526            197       0.00
## 44527            197     144.41
## 44528           1623   52673.34
## 44529            781      45.00
## 44530            461     246.13
## 44531           1428     448.80
## 44532            181       0.00
## 44533            174      80.90
## 44534            170     147.28
## 44535            237    2781.82
## 44536            148       0.00
## 44537           1574     222.29
## 44538            195       0.00
## 44539           1618      91.97
## 44540            192    2944.65
## 44541           1617     868.15
## 44542            191     170.03
## 44543            190       0.00
## 44544           1615     113.09
## 44545            188     871.44
## 44546           1825    1035.11
## 44547            183     226.74
## 44548           1348     217.29
## 44549            106       0.00
## 44550           2567   22760.64
## 44551            972    2451.06
## 44552           1249   11174.43
## 44553            651     271.79
## 44554            676       0.00
## 44555            174       0.00
## 44556            174       0.00
## 44557            174       0.00
## 44558            174       0.00
## 44559            174       0.00
## 44560            174       0.00
## 44561            255       0.00
## 44562            174       0.00
## 44563           1601     326.76
## 44564            176       0.00
## 44565            616   12073.08
## 44566           1603       0.00
## 44567            751     124.23
## 44568            180     657.25
## 44569            183     104.65
## 44570           1217     435.38
## 44571            183     115.16
## 44572            764   89004.12
## 44573            207     317.61
## 44574            236   20036.60
## 44575            742    6709.84
## 44576            191     220.40
## 44577           1617     119.68
## 44578           1617     172.26
## 44579           1617    1214.36
## 44580            478     239.00
## 44581            192       0.00
## 44582           1394     206.70
## 44583            192    1330.73
## 44584           1545       0.00
## 44585           1557     544.37
## 44586           1621     168.16
## 44587            225     417.49
## 44588             67       0.00
## 44589            160    1663.00
## 44590            214     920.41
## 44591            196      48.64
## 44592            192      63.41
## 44593           1618    1418.45
## 44594           1618       0.00
## 44595           1850  188975.17
## 44596            192     280.54
## 44597            194       0.00
## 44598           1617     119.40
## 44599            903     378.24
## 44600           1174     602.28
## 44601            657     531.44
## 44602           1615    2778.46
## 44603            268    3159.45
## 44604           1616     111.50
## 44605           1610     175.74
## 44606            184     142.85
## 44607            783     275.47
## 44608            750      65.18
## 44609            321    4706.01
## 44610            182     727.81
## 44611            259     397.24
## 44612            174    1075.91
## 44613            723   11239.30
## 44614           1567       0.00
## 44615            185    1679.10
## 44616           1616     158.73
## 44617           1616      20.89
## 44618            189       0.00
## 44619            868       0.00
## 44620            191     472.51
## 44622           1617     302.01
## 44623           1617    1245.80
## 44624            287      56.00
## 44625             10       0.00
## 44626           1603       0.00
## 44627           1589   26717.58
## 44628            738   10418.55
## 44629            205    1504.59
## 44630            191     108.27
## 44631            189     636.27
## 44632           1615     334.72
## 44633            184     501.08
## 44634            297     162.62
## 44635            899       0.00
## 44636           1610     218.34
## 44637            293     934.71
## 44638             50       0.00
## 44639           1377     133.45
## 44640            181      51.57
## 44641            178     237.79
## 44642            176       0.00
## 44643            181     148.53
## 44644            307     287.38
## 44645            397     497.84
## 44646           1580    1859.83
## 44647             89     233.06
## 44648           1616     387.96
## 44649            190       0.00
## 44650           1616    4744.36
## 44651           1614     638.46
## 44652            183      86.79
## 44653            190    1361.13
## 44654            987    4049.00
## 44655            191     219.99
## 44656           1386     295.27
## 44657            163      62.46
## 44658            167     917.77
## 44659           1278   23250.65
## 44660           1606     238.49
## 44661            190       0.00
## 44662           1058       0.00
## 44663            446    6630.85
## 44664           1610    1112.62
## 44665            184      51.16
## 44666            188     253.55
## 44667           1615     844.15
## 44668            189      21.41
## 44669           1616     326.19
## 44670            304   14357.61
## 44671            235    3148.30
## 44672           1313     131.75
## 44673            175     362.36
## 44674            175       0.00
## 44675           1603       0.00
## 44676            357     277.57
## 44677           1249    2282.32
## 44678            769     100.17
## 44679            169    2139.53
## 44680            174      34.40
## 44681            749    2080.21
## 44682            141     124.28
## 44683            129      37.88
## 44684            385     367.04
## 44685            189     788.32
## 44686            538     542.07
## 44687           1611    1744.16
## 44688            395     622.71
## 44689           1614    1475.17
## 44690           1611      56.01
## 44691            184     265.45
## 44692            184     862.92
## 44693            184       0.00
## 44694            912    2781.07
## 44695            184     171.70
## 44696            183       0.00
## 44697            190     202.39
## 44698           1436   19636.08
## 44699            586       0.00
## 44700            164     110.76
## 44701            163      93.77
## 44702           1421      85.05
## 44703            671   35079.96
## 44704            176     155.35
## 44705            178      79.68
## 44706           1603       0.00
## 44707            178     117.52
## 44708            178       0.00
## 44709            183     324.13
## 44710            182     148.73
## 44711            183     558.96
## 44712            183     184.80
## 44713           1610     122.41
## 44714            184       8.62
## 44715           1610     511.31
## 44716            818   40092.76
## 44717           1518     245.11
## 44718            189       0.00
## 44719            120      90.68
## 44720            727   19634.96
## 44721            177       0.00
## 44722            181     231.88
## 44723            176     174.10
## 44724            177     369.94
## 44725           1106      53.61
## 44726            181       0.00
## 44727            415     146.71
## 44728           1553     197.59
## 44729           1610     913.41
## 44731            380     273.94
## 44732            174     134.19
## 44733             98      92.64
## 44734            184     156.01
## 44735            342    2828.68
## 44736           1270     170.51
## 44737            481     766.82
## 44738            176      65.16
## 44739           1603       0.00
## 44740           1601     444.32
## 44741            178     262.41
## 44742           1609     586.19
## 44743           1609    1771.03
## 44744           1077    1871.68
## 44745             88       0.00
## 44746           1468       0.00
## 44747            893     531.37
## 44748            188     283.39
## 44749            178     629.61
## 44750           1604     644.11
## 44751            176     271.57
## 44752            175       0.00
## 44753            518    5641.08
## 44754            169     271.53
## 44755            184     513.49
## 44756           1609     540.69
## 44757            182     350.93
## 44758           1553       0.00
## 44759            426   12887.15
## 44760            230     486.92
## 44761           1190      76.98
## 44762            174       0.00
## 44763           1829   72122.46
## 44764            171       0.00
## 44765            352     328.79
## 44766            674     171.76
## 44767            630     321.82
## 44768            176      86.98
## 44769            735     300.28
## 44770            216     623.17
## 44771           1606     162.60
## 44772            180    2081.24
## 44773            178    2100.12
## 44774            177     896.70
## 44775           1607     189.80
## 44776            181     350.02
## 44777           1575   20127.66
## 44778           1609    2968.62
## 44779            183     133.83
## 44780            183    1481.37
## 44781            674     630.73
## 44782           1433     117.34
## 44783            147      94.22
## 44784            127       0.00
## 44785            135       0.00
## 44786            142       0.00
## 44787           1607    3013.56
## 44788           1607    2184.18
## 44789           1607     208.80
## 44790            453    5104.93
## 44791           1607     334.26
## 44792            178     237.36
## 44793            178      66.16
## 44794            176     276.92
## 44795            175    1071.30
## 44796           1601       0.00
## 44797            281     136.81
## 44798           1596     282.93
## 44799            545    1507.03
## 44800            169     312.40
## 44801            844   18723.87
## 44802            672     134.27
## 44803            229     301.88
## 44804            182   11309.62
## 44805           1442     576.95
## 44806             80       0.00
## 44807            166     141.72
## 44808            169       0.00
## 44809            386     300.25
## 44810            171     126.70
## 44811            506   34918.46
## 44812           1419     382.92
## 44813           1336     465.25
## 44814            163      47.07
## 44815            468    2053.73
## 44816           1601     206.18
## 44817            222     404.38
## 44818            175     187.05
## 44819            884      66.78
## 44820            178      17.22
## 44821            181      40.27
## 44822            181      12.06
## 44823           1604     239.60
## 44824           1037     166.57
## 44825            387      75.43
## 44826            401      99.97
## 44827           1078       0.00
## 44828            135     201.97
## 44829           1481     491.36
## 44830            199    1304.93
## 44831            404   13109.07
## 44832           1603     172.71
## 44833           1603     709.78
## 44834           1604      74.17
## 44835            365     403.58
## 44836           1270    1637.46
## 44837           1237     152.57
## 44838            163     240.11
## 44839            163      77.85
## 44840            174     166.59
## 44841            170       0.00
## 44842            173       0.00
## 44843            171       0.00
## 44844           1597     463.97
## 44845            364    1314.00
## 44846            216      97.98
## 44847           1440     626.96
## 44848            488     833.75
## 44849           1396     636.45
## 44850            291     524.10
## 44851            798     671.30
## 44852            169     173.29
## 44853            336    4106.00
## 44854            174       0.00
## 44855           1604     810.68
## 44856           1604       0.00
## 44857            175    1761.70
## 44858           1573    3226.04
## 44859            177     135.21
## 44860           1603     916.82
## 44861           1603     251.95
## 44862           1603     173.42
## 44863           1601    2199.64
## 44864            175     154.68
## 44865            334     876.31
## 44866            168       0.00
## 44867            428     563.50
## 44868            174     197.98
## 44869             64       0.00
## 44870            815     328.71
## 44871            174    2589.63
## 44872            174     120.03
## 44873           1597     287.88
## 44874           1597      51.16
## 44875            644     140.88
## 44876            576      43.49
## 44877            169       0.00
## 44878            166     111.85
## 44879           1017     196.46
## 44880            716    2317.71
## 44881           1469      55.36
## 44882            461    1998.49
## 44883           1602     191.45
## 44884           1602     111.15
## 44885           1601     245.03
## 44886            175     206.90
## 44887            174     208.90
## 44888            650    2775.51
## 44889           1561   24596.59
## 44890            196   10230.94
## 44891            148     823.79
## 44892           1544     432.79
## 44893            149     971.97
## 44894             72     474.22
## 44895           1561     160.00
## 44896            153    2483.09
## 44897            148       0.00
## 44898            175   21862.54
## 44899           1601      87.94
## 44900           1602     103.48
## 44901            177     139.53
## 44902           1497     162.76
## 44903            177    1122.01
## 44904            938     134.06
## 44905            163     185.91
## 44906           1262      67.43
## 44907            163       0.00
## 44908            163      79.52
## 44909            162     246.12
## 44910           1593      66.68
## 44911            174      76.74
## 44912            595   10653.56
## 44913            174     668.49
## 44914            368    1098.78
## 44915           1597       0.00
## 44916            686       0.00
## 44917            636    1624.68
## 44918           1355      78.17
## 44919           1481    1837.39
## 44920            148     215.89
## 44921           1489     931.83
## 44922           1489     870.10
## 44923           1580    1269.49
## 44924           1597    1616.29
## 44925            342       0.00
## 44926            394    6916.32
## 44927           1582   30958.85
## 44928            174     659.01
## 44929            698     411.37
## 44930           1597     162.21
## 44931           1597     101.97
## 44932            169     572.37
## 44933           1228    1859.42
## 44934            163     157.54
## 44935            286    1248.97
## 44936            396   21756.73
## 44937            157    1818.68
## 44938            594   25607.47
## 44939            175       9.48
## 44940           1432     506.49
## 44941           1600       0.00
## 44942            234     275.41
## 44943           1575       0.00
## 44944           1548     275.36
## 44945           1547       0.00
## 44946           1572   11787.20
## 44947           1560    3428.82
## 44948           1070    3120.44
## 44949            132      86.22
## 44950            653     246.97
## 44951            148     143.92
## 44952            157     819.84
## 44953            154     281.79
## 44954            175     518.68
## 44955            163      90.80
## 44956            167      39.25
## 44957           1594    2404.62
## 44958            169      10.57
## 44959            169     336.81
## 44960           1597   35473.32
## 44961            170     238.92
## 44962           1597     143.43
## 44964           1039    2790.40
## 44965            170     181.86
## 44966            170     309.00
## 44967            224     176.51
## 44968            251    2079.58
## 44969            116     287.11
## 44970           1372     694.67
## 44971           1595      88.29
## 44972           1842  161788.99
## 44973           1596     304.26
## 44974           1596     813.69
## 44975           1596    2156.07
## 44976            170     118.64
## 44977            170    1275.43
## 44978            505     805.32
## 44979           1594     103.48
## 44980            163     133.83
## 44981            499    3399.06
## 44982           1588     626.83
## 44983           1569   11930.99
## 44984            769   36299.77
## 44985           1063     181.89
## 44986           1050      62.49
## 44987            869   51330.97
## 44988           1309  105762.83
## 44989            170      50.79
## 44990           1485       0.00
## 44991            875   15799.05
## 44992            729     157.49
## 44993            170       0.00
## 44994            169     595.53
## 44995           1594     362.63
## 44996           1594     315.82
## 44997           1593       0.00
## 44998            157     407.46
## 44999            157      23.46
## 45000            218     144.45
## 45001            151    3104.81
## 45002           1583      79.88
## 45003            160     371.84
## 45004            283     760.91
## 45005           1077   44366.36
## 45006            773   17766.06
## 45007            163     428.79
## 45008            164     564.94
## 45009           1298       0.00
## 45010            198     798.28
## 45011           1593       0.00
## 45012            988   12724.56
## 45013           1596     455.90
## 45014            353     462.25
## 45015            724     702.18
## 45016           1491     145.38
## 45017           1295     359.61
## 45018            408    5548.98
## 45019           1464    1198.46
## 45020           1022     288.23
## 45021            939     135.21
## 45022           1511     447.98
## 45023            156     137.97
## 45024            785    2471.09
## 45025           1594     399.10
## 45026            168      15.04
## 45027           1593     431.02
## 45028           1593     234.96
## 45029           1593      35.19
## 45030            735     309.91
## 45031            163     216.34
## 45032            835     677.35
## 45033            667    6621.76
## 45034           1197    1595.86
## 45035            161    1373.14
## 45036            161       0.00
## 45037            157      84.28
## 45038            102     176.09
## 45039           1429     316.32
## 45040            161       0.00
## 45041            162     125.72
## 45042            497     321.35
## 45043            160     124.17
## 45044            162      56.68
## 45045            190     186.76
## 45046            295   18562.67
## 45047            163     242.28
## 45048           1498    1057.67
## 45049           1588     239.06
## 45050            194    1146.20
## 45051            163       0.00
## 45052           1593    1249.43
## 45053           1593    1202.30
## 45054           1593       0.00
## 45055            166     253.94
## 45056           1594     442.96
## 45057            168     160.59
## 45058            385    2044.02
## 45059            110     414.13
## 45060            826    7153.41
## 45061            968     131.14
## 45062           1120     170.29
## 45063            136     157.90
## 45064            875   30061.97
## 45065           1560     565.15
## 45066           1436     498.37
## 45067            699    3665.70
## 45068           1457     391.70
## 45069            646    8484.47
## 45070           1037     203.76
## 45071            407    4659.20
## 45072            150       0.00
## 45073            931    5920.36
## 45074            121     577.72
## 45075            127      51.40
## 45076            380    9019.29
## 45077            359   19076.92
## 45078            307     397.16
## 45079            196     221.10
## 45080           1590     151.14
## 45081           1590     118.78
## 45082            879   21045.64
## 45083           1593     890.92
## 45084            629     279.63
## 45085           1589     126.07
## 45086            162       0.00
## 45087           1588    2506.50
## 45088           1588     263.36
## 45089            162     501.90
## 45090            161     394.94
## 45091             80     348.09
## 45092            101      36.21
## 45093            120    1241.50
## 45094            161       0.00
## 45095            157       0.00
## 45096            412    1997.90
## 45097            623      78.17
## 45098            162     464.90
## 45099            520     220.56
## 45100            972    8790.07
## 45101            156     143.53
## 45102            155     142.16
## 45103            156     779.42
## 45104           1330     750.00
## 45105            155      87.46
## 45106            154       0.00
## 45107            153     154.08
## 45108            150     262.36
## 45109            148      74.09
## 45110            148      43.49
## 45111            376     282.11
## 45112            147       0.00
## 45113            191     492.42
## 45114            502    1709.27
## 45115            128     344.14
## 45116           1575     130.47
## 45117            535   19900.03
## 45118            148     813.11
## 45119            416     527.51
## 45120           1588    2024.24
## 45121            164       0.00
## 45122            159     739.09
## 45123           1469     354.90
## 45124            163       0.00
## 45125           1573       0.00
## 45126            336     589.83
## 45127            192       0.00
## 45128            748   21737.22
## 45129            564     587.68
## 45130            162     183.44
## 45131           1560       0.00
## 45132            154     180.40
## 45134           1588    2407.31
## 45135           1026   12262.19
## 45136            157      66.68
## 45137           1583     736.47
## 45138            161       0.00
## 45139            368     140.41
## 45140           1587     196.11
## 45141           1587     941.16
## 45142            692     880.75
## 45143            196     176.28
## 45144            661    1465.24
## 45145           1582       0.00
## 45146           1582     115.87
## 45147           1497      62.66
## 45148           1510     386.02
## 45149           1370    3189.05
## 45150           1541     326.33
## 45151           1510     689.73
## 45152           1239   71846.84
## 45153            156    1576.29
## 45154            154       0.00
## 45155            321    4307.19
## 45156           1586  391280.48
## 45157            160       0.00
## 45158           1250   35658.86
## 45159            507     898.45
## 45160            409   31234.27
## 45161           1586    1474.79
## 45162            160       0.00
## 45163            183    2061.43
## 45164            162       0.00
## 45165            157     352.25
## 45166            149       0.00
## 45167            149     111.68
## 45168           1785     140.08
## 45169            302     246.67
## 45170            168    1252.97
## 45171           1562     240.24
## 45172            200     987.63
## 45173            161    1750.68
## 45174            117     278.49
## 45175            199    1028.11
## 45176             91     130.97
## 45177            133     182.15
## 45178            149     215.90
## 45179           1560       0.00
## 45180           1559     227.09
## 45181            132      47.38
## 45182           1574     178.59
## 45183            148       0.00
## 45184           1573     360.58
## 45185            502     357.09
## 45186            149     125.38
## 45187            149     378.76
## 45188            148     329.28
## 45189            122     207.50
## 45190            381   25173.47
## 45191           1583     829.44
## 45192           1583    7894.54
## 45193            160     180.06
## 45194            290     346.87
## 45195            155    2509.49
## 45196           1566    1665.46
## 45197            489     146.93
## 45198            156     231.55
## 45199            161    1958.67
## 45200           1280     392.85
## 45201            155      79.33
## 45202            182    1395.42
## 45203            210    1401.97
## 45204            161       0.00
## 45205            851   40162.70
## 45206            160     171.22
## 45207            362   22925.48
## 45208           1583    1059.55
## 45209            157     887.49
## 45210            156       8.03
## 45211           1582       0.00
## 45212           1583     207.88
## 45213            148     165.15
## 45214            397      78.50
## 45215           1560    3231.48
## 45216           1552    2421.61
## 45217           2753   26712.98
## 45218           1572     185.27
## 45219            141     163.92
## 45220            670    6726.83
## 45221            351     471.37
## 45222           1296  152137.83
## 45223            876     318.38
## 45224            157     617.13
## 45225           1583     281.08
## 45226            318     362.08
## 45227            631     999.83
## 45228            155     665.84
## 45229            156     344.16
## 45230            282     141.42
## 45231            293     965.35
## 45232            101       0.00
## 45233            156     146.92
## 45234            571     157.44
## 45235           1582    1878.20
## 45236           1583    1019.88
## 45237           1583     747.85
## 45238           1413     222.50
## 45239            722      99.79
## 45240            151     195.57
## 45241            141      86.45
## 45242           1480     210.69
## 45243           1580     406.17
## 45244           1436    1479.57
## 45245            554   28706.23
## 45246           1579     175.83
## 45247           1580     538.66
## 45248            962     523.23
## 45249            142      95.57
## 45250            272     211.39
## 45251            197     165.99
## 45252            104     105.99
## 45253            373     131.87
## 45254           1248   39550.24
## 45255            149      66.68
## 45256           1575    6936.49
## 45257            148     407.81
## 45258            148     100.00
## 45259           1567       0.00
## 45260            913     308.64
## 45261            683   43976.77
## 45262           1580     573.55
## 45263           1580    1454.83
## 45264           1185     148.26
## 45265            746    2189.41
## 45266             79       0.00
## 45267           1580       0.00
## 45268            154      87.37
## 45269            154     190.62
## 45270            536    3302.44
## 45271            153       9.48
## 45272            153     139.10
## 45273           1579      61.13
## 45274           1580     806.87
## 45275           1580     452.51
## 45276            516    2585.68
## 45277            141       0.00
## 45278           1356       0.00
## 45279           1425     100.17
## 45280            145      79.33
## 45281           1575    1404.88
## 45282           1575     450.43
## 45283            150     304.69
## 45284            121       0.00
## 45285            489    7253.40
## 45286            148     526.18
## 45287            595   29329.37
## 45288           1358     569.74
## 45289            407     193.13
## 45290            973   26882.64
## 45291            152     614.05
## 45292            207     198.63
## 45293           1051       0.00
## 45294            578       0.00
## 45295           1574     133.83
## 45296           1562    2044.88
## 45297           1576     240.90
## 45298           1576     307.75
## 45299           1059   11988.73
## 45300            372     604.43
## 45302            148     204.41
## 45303            141       0.00
## 45304            261     185.95
## 45305           1675    7140.85
## 45306            484     227.91
## 45307            817    1444.74
## 45308            196     413.74
## 45309            805      64.01
## 45310           1064       0.00
## 45311           1241      99.77
## 45312            582    1714.18
## 45313            153       9.48
## 45314            287     859.00
## 45315            287    2525.25
## 45316           1435     323.17
## 45317            153       0.00
## 45318            253     220.90
## 45319           1560       0.00
## 45320            464    1846.09
## 45321            277    8699.41
## 45322           1140   63160.83
## 45323           1572     209.40
## 45324            729     130.47
## 45325            143       0.00
## 45326           1056     289.31
## 45327            178     330.24
## 45328            225     267.42
## 45329            148     802.16
## 45330            210    1057.02
## 45331           1058     595.05
## 45332           1438    7340.01
## 45333            148     197.84
## 45334           1572    1078.46
## 45335           1481     177.74
## 45336           1160    2058.17
## 45337           1100     248.91
## 45338            148       0.00
## 45339            248    1648.35
## 45340            136     459.50
## 45341            220    2029.00
## 45342           1498       0.00
## 45343           1111     575.29
## 45344            345     716.33
## 45345            148       0.00
## 45346           1482     259.91
## 45347           1573      41.40
## 45348            288       0.00
## 45349            260    2805.12
## 45350            137       0.00
## 45351           1540     204.69
## 45352           1140       0.00
## 45353             79       0.00
## 45354            303     329.42
## 45355            501     595.84
## 45356            568     276.10
## 45357            148      31.91
## 45358           1174     227.30
## 45359           1574    1923.11
## 45360            147       0.00
## 45361           1636    1278.45
## 45362            148      39.01
## 45363            148     145.49
## 45364            127     202.57
## 45365            127      58.92
## 45366            133      97.05
## 45367            139     474.39
## 45368            700     334.62
## 45369           1217     445.00
## 45370             43     163.11
## 45371            955   53614.95
## 45372            100      32.59
## 45373            146     800.32
## 45374            143     787.43
## 45375            143     672.62
## 45376            958     765.86
## 45377           1870  131380.66
## 45378            314     595.73
## 45379            135     545.97
## 45380            783    3520.44
## 45381            141      51.16
## 45382            141     114.76
## 45383           1237     142.83
## 45384            141     150.10
## 45385            158     130.46
## 45386            128       0.00
## 45387            400     418.77
## 45388            148     622.81
## 45390           1553     235.76
## 45391            435    2688.74
## 45392            148     248.41
## 45393           1573     600.22
## 45394            146       9.48
## 45395            146     206.80
## 45396           1723    1175.46
## 45397            142     105.59
## 45398           1447      79.33
## 45399            291     132.77
## 45400           1526      41.95
## 45401            166     239.40
## 45402            119     474.65
## 45403            448   11017.04
## 45404            120      92.02
## 45405           1462       0.00
## 45406            654     145.60
## 45407             78       0.00
## 45408             94     114.45
## 45409            146       9.48
## 45410            164    2491.87
## 45411            238     135.21
## 45412            134    4041.94
## 45413            136      46.04
## 45414            788     324.94
## 45415            194     452.17
## 45416            114    2466.23
## 45417           1569     631.42
## 45418            553     328.31
## 45419            143     108.63
## 45420           1571     661.03
## 45421           1351     138.70
## 45422            139      19.54
## 45423            170     208.41
## 45424            259       0.00
## 45425            623   25717.74
## 45426            342      78.17
## 45427            129     310.50
## 45428           1406     394.40
## 45429            121       0.00
## 45430           1333    1780.11
## 45431           1357     521.32
## 45432            133      27.16
## 45433            119     256.53
## 45434           1399     153.03
## 45435            132     833.72
## 45436           1260     394.49
## 45437            128       0.00
## 45438            438     712.66
## 45439            872   24739.00
## 45440            140     100.63
## 45441           1301     103.01
## 45442           1566    1401.96
## 45443            143     323.28
## 45444           1568     152.21
## 45445            142     270.13
## 45446            142      38.44
## 45447            395     237.05
## 45448            932       0.00
## 45449            373    7744.53
## 45450           1006      27.54
## 45451            132     141.06
## 45452            726   33215.42
## 45453            142      50.14
## 45454            772   12306.12
## 45455            128      66.68
## 45456            107       0.00
## 45457            544    1983.78
## 45458            226    1921.70
## 45459            141       0.00
## 45460            202     525.53
## 45461            141     239.18
## 45462           1566      88.29
## 45463            136       0.00
## 45464            166    1172.35
## 45465            136      66.68
## 45466           1562       0.00
## 45467           1562    1916.89
## 45468           1562   22349.53
## 45469           1456       0.00
## 45470            106      76.68
## 45471           1440      66.01
## 45472           1683   27689.26
## 45473           1498       0.00
## 45474           1498     150.75
## 45475            221    2896.85
## 45476            134      48.83
## 45477           1562      66.68
## 45478           1120     324.85
## 45479            136      93.17
## 45480            159     574.21
## 45481           1567       0.00
## 45482            141     761.11
## 45483            621     828.10
## 45484            162     536.36
## 45485           1435    2142.03
## 45486            742     186.40
## 45487            114       0.00
## 45488            137       0.00
## 45489            126       0.00
## 45490            812   21428.72
## 45491            122       0.00
## 45492           1225       0.00
## 45493            330     861.98
## 45494            334    2882.56
## 45495           1565     249.07
## 45496           1560     581.70
## 45497            135     229.77
## 45498            133       0.00
## 45499            133     101.48
## 45500           1460       0.00
## 45501            235    1865.05
## 45502            127     109.45
## 45503            293    1855.36
## 45504           1498     375.48
## 45505           1506     432.54
## 45506            119    1542.26
## 45507            652     103.69
## 45508           1560     281.14
## 45509           1562      86.22
## 45510            546     107.49
## 45511            124     560.68
## 45512           1546       0.00
## 45513            120     198.01
## 45514            120    1373.53
## 45515            119    2011.39
## 45516           1545      51.16
## 45517            883   14206.42
## 45518            287     967.79
## 45519           1553     154.27
## 45520            122       0.00
## 45521           2135   26275.92
## 45523            827    1902.40
## 45524           1457    4404.73
## 45525            275     996.67
## 45526            194     194.70
## 45527            129     354.33
## 45528            129     847.65
## 45529           1448    1732.78
## 45530            112     462.62
## 45531            970     384.56
## 45532            164    1330.05
## 45533           1546     277.00
## 45534            426    4735.58
## 45535           1555      82.38
## 45536            166     722.85
## 45537            134     686.06
## 45538            927  115074.35
## 45539            120       0.00
## 45540           1193   35642.28
## 45541           1212    3269.43
## 45542            158      78.77
## 45543            174     157.57
## 45544            374    7922.54
## 45545            797     177.33
## 45546            378   29504.81
## 45547           1560   17738.83
## 45548           1560     745.70
## 45549            133     104.34
## 45550            133     236.45
## 45551           1559   22956.31
## 45552            746   18908.24
## 45553            493     566.38
## 45554            132       0.00
## 45555            128       0.00
## 45556            128     152.50
## 45557           1554    6299.39
## 45558            128       0.00
## 45559            121     579.59
## 45560           1128      91.97
## 45561           1553     304.45
## 45562           1548     208.09
## 45563            127       0.00
## 45564           1245    5560.03
## 45565            202     205.65
## 45566           1541     639.19
## 45567           1545    2255.47
## 45568           1550    3113.57
## 45569            124     238.80
## 45570            128     125.00
## 45571           1540    2344.21
## 45572            127     212.88
## 45573            834   70172.37
## 45574           1544    3605.04
## 45575            162     600.00
## 45576            132     535.30
## 45577            798    1795.67
## 45578           1559   66394.26
## 45579            133    1458.37
## 45580           1559     995.86
## 45581           1559    2777.82
## 45582            133       0.00
## 45583            195     218.73
## 45584            164     877.19
## 45585             79       0.00
## 45586           1485     259.39
## 45587           1545       0.00
## 45588            470     204.08
## 45589            749    8439.43
## 45590           1288     145.42
## 45591             85     260.13
## 45592            650     235.79
## 45593           1502      73.58
## 45594            115     174.36
## 45595            133      96.00
## 45596           1559     103.48
## 45597            133     141.21
## 45598            637     774.11
## 45599            129     207.59
## 45600            494    9186.94
## 45601            975   23320.34
## 45602           1553       0.00
## 45603           1553     100.17
## 45604           1548     194.19
## 45605            121     112.68
## 45606            349     790.12
## 45607            151     439.15
## 45608            208      58.01
## 45609           1540       0.00
## 45610           1054   93455.59
## 45611            866   56981.28
## 45612            120     119.88
## 45613            151     499.81
## 45614            122     135.28
## 45615           1553      91.97
## 45616           1553      97.00
## 45617           1553     324.51
## 45618           1553    1533.21
## 45619            129      20.78
## 45620           1658  155888.50
## 45621           1554     862.89
## 45622           1498     362.02
## 45623            411     210.62
## 45624            278    1434.68
## 45625            281       0.00
## 45626           1269    1608.12
## 45627            459    6343.40
## 45628            242     585.83
## 45629            119      86.47
## 45630            121     470.92
## 45631            201      95.37
## 45632            219     835.02
## 45633            196     708.43
## 45634           1421       0.00
## 45635            127     260.17
## 45636            401   41766.97
## 45637           1550    1921.22
## 45638           1550       0.00
## 45639           1550     171.55
## 45640            121     187.47
## 45641           1455    1096.19
## 45642            111     113.90
## 45643           1046     401.49
## 45644            119     226.31
## 45645            120       0.00
## 45646            120       0.00
## 45648           1550    5502.52
## 45649           2657   85311.37
## 45650            152     213.49
## 45651           1553     814.18
## 45652           1554       0.00
## 45653           1545       0.00
## 45654           1496     222.89
## 45655           1163    1425.37
## 45656           1550     889.32
## 45657            125    4431.67
## 45658            644      56.32
## 45659            289      59.16
## 45660            101       0.00
## 45661            108       0.00
## 45662            157     585.72
## 45663           1517    1003.99
## 45664           1545     122.76
## 45665           1085   19971.66
## 45666           1553   27006.24
## 45667           1553     284.48
## 45668            556    1361.76
## 45669           1135       7.77
## 45670            142     205.41
## 45671           1530   42948.64
## 45672            119     297.90
## 45673            115       0.00
## 45674            190    1607.76
## 45675           1526       0.00
## 45676           1537       0.00
## 45677           1539     490.56
## 45678            134     837.69
## 45679            608     206.02
## 45680            333     115.77
## 45681            413     422.34
## 45682            327    1712.14
## 45683           1553       0.00
## 45684            952      27.16
## 45685           1548     422.89
## 45686           1548     302.55
## 45687           1537    1036.35
## 45688            306      73.18
## 45689           1546     819.80
## 45690            150     320.22
## 45691            338     517.50
## 45692           1786   62070.49
## 45693           1190   19525.72
## 45694           1545     336.79
## 45695           1548     322.73
## 45696           1444     323.11
## 45697            217     139.69
## 45698            231    2306.65
## 45699           1510   25976.71
## 45700            276      40.59
## 45701            263    1282.36
## 45702            143     982.28
## 45703            161    1612.55
## 45704            138    1056.11
## 45705            524     729.11
## 45706           1329     546.00
## 45707           1545     858.62
## 45708            120     294.05
## 45709           1546     378.48
## 45710            761     131.65
## 45711             92       0.00
## 45712            103      94.22
## 45713            120     616.83
## 45714            389   13520.54
## 45715            266    2910.44
## 45716            101       0.00
## 45717            108       0.00
## 45718           1546     641.14
## 45719           1544     215.51
## 45720           1544     501.97
## 45721            121    2729.41
## 45722            227      27.48
## 45723           1327     718.98
## 45724           1544   31434.81
## 45725            179     957.34
## 45726            115       0.00
## 45727            118       0.00
## 45728            118     135.21
## 45729            286    2343.04
## 45730            120       0.00
## 45731            391     180.21
## 45732            120     129.65
## 45733            172    1838.85
## 45734            121     160.68
## 45735            142     181.55
## 45736           1261   13321.67
## 45737           1366      27.48
## 45738           1226   11370.23
## 45739            183     384.97
## 45740            142     398.03
## 45741            296       0.00
## 45742           1325     144.22
## 45743           1538      88.29
## 45744            114     312.31
## 45745            348    4439.45
## 45746            138     242.84
## 45747            118     460.06
## 45748           1544       0.00
## 45749            774     257.21
## 45750           1544     834.00
## 45751           1544    1636.21
## 45752           1545     365.81
## 45753            119     460.33
## 45754            994     229.79
## 45755           1401       0.00
## 45756            135      90.77
## 45757             63       0.00
## 45758            351     933.27
## 45759           1545     772.73
## 45760           1545       0.00
## 45761           1046       0.00
## 45762            115     177.47
## 45763            267    1444.07
## 45764            154     473.51
## 45765            134     610.83
## 45766            114      99.32
## 45767            328     880.63
## 45768           1540     222.88
## 45769           1540    5536.10
## 45770            111      78.17
## 45771            296     768.71
## 45772            128      76.68
## 45773            105    1110.94
## 45774            339      96.92
## 45775            595    2048.23
## 45776            214       0.00
## 45777           1488       0.00
## 45778           1490     784.91
## 45779            446       0.00
## 45780            762       0.00
## 45781            817     506.25
## 45782           1436       0.00
## 45783           1443     518.15
## 45784             50     190.33
## 45785            187     997.03
## 45786           1337      76.68
## 45787            463    5055.09
## 45788            100       0.00
## 45789            889     122.09
## 45790           2219   49532.53
## 45791           1013     907.22
## 45792           1540     554.45
## 45793            931   13689.74
## 45794            106       0.00
## 45795           1544   76039.10
## 45796           1544    1644.84
## 45797           1544       0.00
## 45798           1544     502.65
## 45799            191     162.81
## 45800            142       0.00
## 45801            100     426.45
## 45802             69       0.00
## 45803             85       0.00
## 45804            300       0.00
## 45805            145     404.85
## 45806            115     235.50
## 45807           1541       0.00
## 45808            606     568.86
## 45809            107      86.79
## 45810            105     710.47
## 45811            113       0.00
## 45812           1539       0.00
## 45813           1540    2288.07
## 45814            108     308.52
## 45815           1537    1358.32
## 45816           1538     167.55
## 45817            223    2410.70
## 45818           1517    1969.56
## 45819            116      76.68
## 45820           1478   89403.92
## 45821           1359     225.85
## 45822            413     620.60
## 45823            831   37392.74
## 45824            363     535.97
## 45825            101      81.85
## 45826            967  138750.09
## 45827           1541     498.32
## 45828            531       0.00
## 45829            113     309.40
## 45830           1539     240.29
## 45831            109     262.37
## 45832           1471     250.49
## 45833           1436     131.24
## 45834            272    1265.32
## 45835            113      58.75
## 45836            237     433.71
## 45837            114     182.47
## 45838            169     839.04
## 45839            666    4804.27
## 45840            101     173.18
## 45841            798     106.04
## 45842            167       0.00
## 45843            107      20.11
## 45844            123     665.87
## 45845             91     676.70
## 45846            122     438.50
## 45847            113    1115.20
## 45848            883    4512.25
## 45849            230    1312.44
## 45850            758    6144.86
## 45851            116     102.69
## 45852            199      89.41
## 45853            667     377.72
## 45854            685     319.00
## 45855           1069     105.96
## 45856           1519    2380.47
## 45857           1377       0.00
## 45858           1517     756.70
## 45859            107     187.24
## 45860            108       0.00
## 45861            105       0.00
## 45862            101     336.72
## 45863            101       0.00
## 45864           1538      94.05
## 45865            256     433.42
## 45866           1538    1399.23
## 45867            630     330.59
## 45868           1537     251.69
## 45869           1538    2280.53
## 45870            192     353.33
## 45871           1540     971.03
## 45872           1466       0.00
## 45873           1471     720.86
## 45874            327   12744.22
## 45875             83       0.00
## 45876           1436     110.22
## 45877           1475     166.47
## 45878            187     478.57
## 45879            174     750.93
## 45880            113      24.38
## 45881            112       0.00
## 45882            142     376.57
## 45883           1538     416.82
## 45884            111      20.78
## 45885            262      16.34
## 45886           1537     115.00
## 45887            108     213.09
## 45888           1532     657.05
## 45889            107     524.26
## 45890             90       0.00
## 45891           1518     782.22
## 45892           1518     125.03
## 45893            222     472.74
## 45894            120      87.89
## 45895            113     137.73
## 45896             69    1570.00
## 45897             63     391.37
## 45898             98     120.03
## 45899            750    7105.45
## 45900            728    2855.79
## 45901           1517     224.35
## 45902           1517     137.98
## 45903            137     785.60
## 45904            108     130.76
## 45905            137     268.70
## 45906            105      21.01
## 45907            107     175.92
## 45908            101       0.00
## 45909            101       0.00
## 45910            873    4396.96
## 45911            951     209.85
## 45912            115     102.32
## 45913           1448    6350.00
## 45914             97     190.62
## 45915            220    4957.06
## 45916            998    1085.80
## 45917            540     423.01
## 45918           1517     359.70
## 45919           1511     465.90
## 45920           1520  169460.55
## 45921           1519     444.09
## 45922           1481      86.22
## 45923            867       0.00
## 45924           1358       0.00
## 45925            168       0.00
## 45926             84       0.00
## 45927            397    6958.97
## 45928            334     343.80
## 45929           1481    1724.85
## 45930            128     615.43
## 45931            128     479.24
## 45932           1517       0.00
## 45933           1517     215.42
## 45934            115     801.61
## 45935            165       0.00
## 45936            426    1798.57
## 45937            814       0.00
## 45938           1352       0.00
## 45939            490     246.57
## 45940            101       0.00
## 45941            165     123.45
## 45942            104       0.00
## 45943            199    1388.68
## 45944           1517     145.15
## 45945           1518     217.88
## 45946           1517      98.19
## 45947           1517      82.77
## 45948            128     239.31
## 45949           1410     286.78
## 45950            128     294.00
## 45951            831     124.22
## 45952            208     125.84
## 45953           1225   10015.92
## 45954            232    1347.24
## 45955           1023    2557.19
## 45956            579    1826.41
## 45957           1489     709.87
## 45958           1436     320.65
## 45959            592     413.76
## 45960           1477   32740.75
## 45961            219     239.30
## 45962           1389     227.95
## 45963            161     250.88
## 45964           1244    1348.61
## 45965            265    3355.40
## 45966           1517     641.99
## 45967            216     188.13
## 45968           1517     316.58
## 45969           1517     554.57
## 45970            105     414.61
## 45971            130     204.18
## 45972            333    1582.10
## 45973           1504     276.99
## 45974            914      75.91
## 45975             83       0.00
## 45976             85       0.00
## 45977            184      64.30
## 45978            682    6906.39
## 45979            610       0.00
## 45980           1337     261.09
## 45981            135     914.59
## 45982           1517     203.66
## 45983           1603    8313.32
## 45984           1517    1035.04
## 45985           1284   29527.18
## 45986            882     169.62
## 45987            159      74.27
## 45988            675     181.84
## 45989            122     225.04
## 45990             93       0.00
## 45991            122     137.97
## 45992            729      19.55
## 45993             85       0.00
## 45994            127     394.12
## 45995             85       0.00
## 45996            208    1441.59
## 45997           1152     242.83
## 45998            959     845.76
## 45999            169     155.81
## 46000           1499    1513.33
## 46001           1499     387.50
## 46002           1148   29762.86
## 46003            169     255.79
## 46004           1518   12627.38
## 46005           1219       8.42
## 46006            122     544.69
## 46007            120      99.91
## 46008           1517       0.00
## 46009           1517     147.18
## 46010           1517   10638.91
## 46011           1517     303.01
## 46012            104       0.00
## 46013            104       0.00
## 46014            104       0.00
## 46015           1108      51.16
## 46016            202     225.16
## 46017            199     253.31
## 46018           1492      51.16
## 46019            555   15081.63
## 46020             92     100.47
## 46021           1384     432.78
## 46022            301     518.42
## 46023            186     648.13
## 46024           1489    1544.92
## 46025           1614     702.35
## 46026            184    1394.92
## 46027           1379  202837.66
## 46028            463    5105.22
## 46029            131     223.24
## 46030           1517     334.89
## 46031           1518       0.00
## 46032           1023     503.75
## 46033            250    2793.58
## 46034            538       0.00
## 46035           1516    2783.73
## 46036           1038     342.87
## 46038            251     541.34
## 46039           1117    1234.69
## 46040            999     264.39
## 46041            117     143.13
## 46042            115      82.77
## 46043            654      43.49
## 46044             79     140.27
## 46045            188     929.12
## 46046           1401     332.09
## 46047            798     606.68
## 46048           1464       0.00
## 46049           1224  181525.43
## 46050           1516    3071.27
## 46051           1511     155.54
## 46052            147     314.74
## 46053            187     386.25
## 46054           1485   60774.31
## 46055            778    1288.60
## 46056           1430     197.32
## 46057           1457     449.10
## 46058           1484    1471.37
## 46059           2100  171062.99
## 46060            127     296.89
## 46061            414    1051.33
## 46062           1518     543.53
## 46063           1517     243.48
## 46064            444   11475.10
## 46065           1190       0.00
## 46066           1329     394.84
## 46067            165       0.00
## 46068            987    6197.67
## 46069            238    7809.23
## 46070           1516     180.73
## 46071           1516     110.01
## 46072             93       0.00
## 46073            123     863.71
## 46074           1119    1621.65
## 46075           1518    3838.61
## 46076           1443   32138.74
## 46077           1348      74.27
## 46078             96     149.35
## 46079            131     351.51
## 46080            106      66.68
## 46081            103    2634.81
## 46082            358    2093.00
## 46083            882  116495.75
## 46084           1714    1182.12
## 46085           2040     451.33
## 46086            930    4925.00
## 46087            159     207.18
## 46088            281     781.07
## 46089           1516    2200.00
## 46090           1517     259.66
## 46091           1024   12939.58
## 46092            897  229309.02
## 46093             85     112.61
## 46094             85       0.00
## 46095            340    2705.55
## 46096            176     617.72
## 46097            110     132.49
## 46098           1850  162751.05
## 46099           1504       0.00
## 46100           1706     465.90
## 46101             96     120.26
## 46102           1700  520224.21
## 46103           1516     136.68
## 46104           1516     462.07
## 46105           1516     190.97
## 46106            467     770.98
## 46107           1106     331.07
## 46108            232    1768.90
## 46109             84       0.00
## 46110            554     199.19
## 46111             83     217.22
## 46112             76       0.00
## 46113            791     319.42
## 46114           1511     386.16
## 46115           1511     386.08
## 46116            370   24515.97
## 46117            125     466.96
## 46118            723     602.47
## 46119           1484    1593.07
## 46120            671      66.68
## 46121             63       0.00
## 46122           1481      51.16
## 46123           1516     452.73
## 46124           1517     161.82
## 46125            568       0.00
## 46126           1511     302.40
## 46127           2213    5527.87
## 46128            944     510.11
## 46129           1410     116.87
## 46130            775    1713.85
## 46131            176     108.86
## 46132            244     455.22
## 46133            222    1205.26
## 46134           1516     206.66
## 46135           1232  187804.75
## 46136           1516    1570.93
## 46137           1516    2697.53
## 46138            307    3292.37
## 46139           1506   88825.95
## 46140            647   10392.89
## 46141           1460       0.00
## 46142           1368     220.84
## 46143            323    1383.40
## 46144           1503      82.77
## 46145           1511    6310.60
## 46146           1511     787.58
## 46147            313    2365.76
## 46148           1511     527.00
## 46149            638   29683.72
## 46150           1422      97.68
## 46151           1435     498.83
## 46152            572     654.34
## 46153           2160   32906.89
## 46154           1517    6230.63
## 46155           1498    4900.03
## 46156            317      64.68
## 46157             85     103.13
## 46158            553    1095.18
## 46159           1511     374.01
## 46160            139     262.10
## 46161           1505     529.78
## 46162            726   14287.40
## 46163           1428     129.05
## 46164             93      23.92
## 46165            108      66.68
## 46166            140     990.09
## 46167             83     409.86
## 46168            953       0.00
## 46169           1510      66.68
## 46170             85     156.91
## 46171           1511    7056.09
## 46172             85       0.00
## 46173            861     437.00
## 46174           1547    9981.86
## 46175             84       0.00
## 46176             84      16.95
## 46177           1511    1641.04
## 46178             84       0.00
## 46179           1506     850.93
## 46180            752     206.15
## 46181           1125     941.21
## 46182            111     202.24
## 46183           1428     478.57
## 46184           1177   33022.13
## 46185            104     140.79
## 46186            301    2250.00
## 46187            166     133.84
## 46188           1511     842.26
## 46189            359      86.17
## 46190            198     365.18
## 46191             85     555.61
## 46192            295     278.77
## 46194            350   39920.25
## 46195            230    1175.92
## 46196           1512       0.00
## 46197           1512      46.56
## 46198           1204    1668.35
## 46199             68      71.40
## 46200            147       0.00
## 46201             82      20.00
## 46202            184     442.72
## 46203            122     531.66
## 46204            265    4827.67
## 46205            415     743.15
## 46206           1502    4156.47
## 46207            139     368.35
## 46208            841    1254.13
## 46209            140    1279.05
## 46210            169     157.97
## 46211           1504     338.24
## 46212             77       0.00
## 46213            182     304.78
## 46214            114     571.08
## 46215            130     185.10
## 46216           1511     137.45
## 46217           1510    6547.70
## 46218           1545    1506.56
## 46219             84       0.00
## 46220            400     362.23
## 46221           1510      78.17
## 46222            202     764.57
## 46223            168      96.94
## 46224           1509     327.67
## 46225           1496     365.42
## 46226           1511       0.00
## 46227            115      82.77
## 46228             89     100.00
## 46229           1337    6083.42
## 46230            836     295.31
## 46231           1462     240.24
## 46232             90    3127.01
## 46233            173     624.60
## 46234             70     386.40
## 46235            446    3670.72
## 46236           1511       0.00
## 46237           1511     286.75
## 46238           1497    2050.15
## 46239            145    1531.32
## 46240           1252     179.24
## 46241            113     258.65
## 46242           1506     191.47
## 46243           1506   21364.94
## 46244           1510       0.00
## 46245            860     260.13
## 46246             79       0.00
## 46247            108     117.66
## 46248            385   23371.08
## 46249           1405     999.35
## 46250           1413     343.69
## 46251            712       0.00
## 46252            109     197.77
## 46253            423     290.28
## 46254           1455     446.97
## 46255           1484   32035.71
## 46256            870       0.00
## 46257           1244  414918.39
## 46258             79       0.00
## 46259            170     157.08
## 46260           1510    1281.80
## 46261           1510   11557.05
## 46262            145     157.25
## 46263             83     141.21
## 46264            704    1688.42
## 46265           1135    1232.55
## 46266           1511     520.52
## 46267             56       0.00
## 46268           1361     108.60
## 46269             87       0.00
## 46270            111      97.75
## 46271            222     409.96
## 46272             72     244.47
## 46273           1918   18701.81
## 46274            570    6103.95
## 46275           1506     335.27
## 46276           1506       0.00
## 46277           1506     539.37
## 46278            113      77.01
## 46279             83      70.94
## 46280           1357  137887.90
## 46281            108    1429.76
## 46282             77     903.70
## 46283           1101    5851.78
## 46284            140     102.32
## 46285            226    1937.50
## 46286            109     229.39
## 46287           1506       0.00
## 46288           1058     492.41
## 46289           1145     265.95
## 46290            266    3582.70
## 46291            108     371.66
## 46292            258      88.00
## 46293            274     189.56
## 46294            825     223.00
## 46295             93     238.61
## 46296           1882     438.90
## 46297            402    1644.59
## 46298           1167      36.21
## 46299            168    1996.39
## 46300            115     383.51
## 46301           1506     251.49
## 46302            567   18622.78
## 46303            945     740.29
## 46304            988   87724.82
## 46305             99     152.96
## 46306           1460     170.16
## 46307            116      50.14
## 46308           1497     200.75
## 46309            750   13671.08
## 46310           1506    1680.75
## 46311           1506      86.22
## 46312            408    4647.11
## 46313             65       0.00
## 46314           1436       0.00
## 46315           1502    1948.75
## 46316            224     344.60
## 46317             55       0.00
## 46318            137     127.89
## 46319             77     271.70
## 46320           1502     540.21
## 46321           1502     514.81
## 46322           1499       0.00
## 46323            133     114.38
## 46324            187    1643.59
## 46325           1495    1629.71
## 46326            148     614.53
## 46327             78    3777.58
## 46328             63      51.16
## 46329            346   20833.98
## 46330           1485      68.98
## 46331             43       0.00
## 46332            889     174.53
## 46333            295     382.50
## 46334           3186   89540.66
## 46335           1492   35546.93
## 46336            413    1743.90
## 46337            126     146.45
## 46338            125     263.78
## 46339            124    1226.62
## 46340           1492    3720.18
## 46341            847   18305.69
## 46342           1492      26.33
## 46343            130     142.64
## 46344            132     113.60
## 46345           1502    2589.62
## 46346           1502     168.38
## 46347            906     134.50
## 46348            221     413.01
## 46349           1502   29654.15
## 46350           1502    1405.67
## 46351            169      68.74
## 46352           1351      64.01
## 46353            124     334.40
## 46354            791     158.48
## 46355             76     295.49
## 46356           1502     734.74
## 46357            236     110.11
## 46358           1499    1600.39
## 46359           1498     162.97
## 46360           1499     357.65
## 46361            154     297.17
## 46362            160    1178.11
## 46363             71       0.00
## 46364            102     699.23
## 46365            964     563.06
## 46366           1490     520.31
## 46367           1401     231.70
## 46368           1448     349.21
## 46369           1315       0.00
## 46370           1462     653.16
## 46371            320    1336.95
## 46372            321     403.75
## 46373             71     381.45
## 46374           1221       0.00
## 46375            527   49973.91
## 46376           1288     329.86
## 46377            103      75.77
## 46378           1499     673.74
## 46379           1499     970.75
## 46380           1499     268.32
## 46381            106     648.23
## 46382           1498    3602.00
## 46383            107     165.65
## 46384           1290      56.90
## 46385            285    1255.04
## 46386            115      72.01
## 46387             76       0.00
## 46388           1498     189.80
## 46389            156     853.00
## 46390           1492     209.45
## 46391           1492     262.10
## 46392           1492       0.00
## 46393            919    5768.96
## 46394           1492      36.21
## 46395            231    2589.15
## 46396             64       0.00
## 46397            428    8073.49
## 46398           1068   37225.70
## 46399            121      63.35
## 46400            606     483.03
## 46401           1484    2344.85
## 46402             64       0.00
## 46403           1490     512.67
## 46404           1495   29647.11
## 46405            931     346.61
## 46406           1498     171.19
## 46407            119     771.62
## 46408            370   29384.01
## 46409            755   87208.41
## 46410             69       0.00
## 46411           1496     210.85
## 46412            629     288.18
## 46413           1443     175.24
## 46414            360    8155.42
## 46415           1338     145.17
## 46416           1489  212569.58
## 46417            201    1829.58
## 46418           2123   36835.33
## 46419            524      97.68
## 46420            125     107.83
## 46421            106    2895.94
## 46422             92     502.74
## 46423           1678   14319.17
## 46424            153     476.69
## 46425            777    4654.09
## 46426            126     451.23
## 46427            420    4785.29
## 46428             93     205.96
## 46429            588    3756.74
## 46430           1481    1975.89
## 46431           1492     765.94
## 46432           1492     887.49
## 46433            127      43.49
## 46434           1492    5868.10
## 46435            127     237.91
## 46436            160     599.35
## 46437            787     274.00
## 46438            399     102.89
## 46439           1355     233.82
## 46440           1355     143.78
## 46441            265     755.06
## 46442            295    1234.51
## 46443            116     418.20
## 46444             85       0.00
## 46445            157     281.97
## 46446            963     118.24
## 46447           1484       0.00
## 46448           1079   30450.71
## 46449             98      43.49
## 46450           1390     165.53
## 46451            297     420.54
## 46452           1492    7701.87
## 46453           1492     258.45
## 46454           1491     212.30
## 46455            734     185.46
## 46456             69    1899.35
## 46457            291     455.01
## 46458            100     156.91
## 46459           1183      34.40
## 46460           1489    1113.09
## 46461             64       0.00
## 46462           1435     220.38
## 46463             68      42.93
## 46464             97     154.37
## 46465           1477    1471.97
## 46466           1474     131.63
## 46467             59     442.02
## 46468             57     242.27
## 46469             88       0.00
## 46470            112     520.50
## 46471            124     388.90
## 46472            236     201.06
## 46473            186     419.88
## 46474           1491     150.11
## 46475            123     140.08
## 46476           1439     108.96
## 46477            273     687.76
## 46478           1078     135.21
## 46479             99     499.24
## 46480           1492       0.00
## 46481           1492     350.11
## 46482            115      87.37
## 46483           1492     213.04
## 46484           1455     131.63
## 46485           1428     265.51
## 46486           1413     131.70
## 46487             71       0.00
## 46488           1481     180.99
## 46489            394    2382.81
## 46490            394    5579.12
## 46491            301    2703.89
## 46492           1477       0.00
## 46493            246       0.00
## 46494            166     262.74
## 46495           1369     761.30
## 46496             95     139.45
## 46497           1491      91.97
## 46498            120    1907.42
## 46499            988    1497.63
## 46500           1008     806.34
## 46501            125     510.24
## 46502           1260    1399.49
## 46503            154    2528.45
## 46504            814    5233.75
## 46505            668      81.02
## 46506            559    9117.19
## 46507           1482    1115.05
## 46508            263     970.10
## 46509            372   13680.27
## 46510            152    2708.62
## 46511            941    6436.38
## 46512            302    1967.50
## 46513           1481       0.00
## 46514             65    2030.85
## 46515             70     213.31
## 46516            123     358.27
## 46517            184     190.24
## 46518           1491    1126.78
## 46519             71     190.32
## 46520           1351   10765.73
## 46521            166       0.00
## 46522           1428     468.97
## 46523            129     182.24
## 46524             85       0.00
## 46525            784    1323.46
## 46526            116      80.92
## 46527            895     933.26
## 46528             92     266.09
## 46529           1021     252.88
## 46530           1351     460.65
## 46531             64       0.00
## 46532           1485     202.78
## 46533            111     110.70
## 46534            136     250.05
## 46535             23       0.00
## 46536             22     157.64
## 46537            744       0.00
## 46538             77       8.42
## 46539           1401     394.55
## 46540             96     375.65
## 46541            272      58.38
## 46542           1137    1345.78
## 46543           1393     395.49
## 46544           1079   28598.75
## 46545            135    1062.57
## 46546             73     213.24
## 46547            172    1838.32
## 46548            286     773.34
## 46549           1471      78.15
## 46550            852     451.22
## 46551           1485     386.72
## 46552           1485     157.05
## 46553            125     142.80
## 46554             94     454.02
## 46555             96     617.09
## 46556            213      32.08
## 46557             63       0.00
## 46558           1489       0.00
## 46559            124     283.37
## 46560           3169   15533.30
## 46561            600     156.16
## 46562            645       0.00
## 46563            125     214.94
## 46564            562     245.58
## 46565           1370     220.65
## 46566            442    6907.29
## 46567            295       0.00
## 46568             80       0.00
## 46569             80     133.83
## 46570           1477     257.41
## 46571            105     166.67
## 46572             88      84.19
## 46574            174     296.12
## 46575            762    6830.34
## 46576             72     151.01
## 46577           1477     929.36
## 46578           1477     256.11
## 46579            304       0.00
## 46580           1012   33150.00
## 46581            341    1198.52
## 46582           1485    9371.53
## 46583           1005     955.99
## 46584            526       0.00
## 46585           1488    1487.93
## 46586           1488     178.02
## 46587           1443    1901.86
## 46588           1420     148.12
## 46589           1333     615.25
## 46590            218    1750.40
## 46591           1481   31594.76
## 46592           1481     680.52
## 46593            139    3249.14
## 46594            116     139.28
## 46595           1469   39019.27
## 46596            532     121.66
## 46597             81       0.00
## 46598           1341    3360.44
## 46599           1474     687.20
## 46600           1457   14058.09
## 46601           1358    8869.35
## 46602           1462    1316.72
## 46603           1485    3542.29
## 46604            346    2462.03
## 46605           1440       0.00
## 46606           1441     284.97
## 46607           1732     373.48
## 46608            245      87.26
## 46609            428    3700.40
## 46610             98     230.54
## 46611            118     112.49
## 46612           1483     232.37
## 46613            118     215.71
## 46614           1778   60747.75
## 46615            601      94.36
## 46616            495   12523.08
## 46617            146     408.94
## 46618           1481     197.69
## 46619            219     170.22
## 46620            150     848.33
## 46621            120      84.12
## 46622             51      92.81
## 46624           1481     370.61
## 46625            608    1055.36
## 46626             87       0.00
## 46627            149     891.01
## 46628           1484     100.00
## 46629           1481     907.37
## 46630           1477       0.00
## 46631           1477   22333.47
## 46632            760   35099.21
## 46633             99     459.50
## 46635           1262       0.00
## 46636           1482      44.21
## 46637           1484      56.10
## 46638             88       0.00
## 46639             94    1826.27
## 46640            119     618.42
## 46641            801      91.97
## 46642            146     199.91
## 46643             98     179.93
## 46644           1425     101.65
## 46645            312    2585.05
## 46646            124    1744.68
## 46647            119     108.95
## 46648            445    1469.57
## 46649            414    4320.98
## 46650           1484     518.47
## 46651           1482     332.56
## 46652           1482     456.34
## 46653           1481    2764.51
## 46654            887    4171.39
## 46655           1723      91.49
## 46656            135       0.00
## 46657           1495    1318.32
## 46658             71       0.00
## 46659            170       0.00
## 46661            450       0.00
## 46662             89       0.00
## 46663            591    1380.08
## 46664            797      32.59
## 46665            838   53795.47
## 46666            235     307.59
## 46667            272       0.00
## 46668            190     672.89
## 46669            705    1169.90
## 46670            708    1123.95
## 46671             96       0.00
## 46672           1119     639.80
## 46673             86     135.77
## 46674             85       0.00
## 46675            700   11763.86
## 46676            652       0.00
## 46677             99    2834.25
## 46678            958  101526.75
## 46679           1577       0.00
## 46680           1433     604.55
## 46681           1208     327.61
## 46682            147      72.80
## 46683             74       0.00
## 46684            241     937.55
## 46685            260     185.31
## 46686            398    2198.22
## 46687           1481   12049.22
## 46688           1177       0.00
## 46689           1481     742.97
## 46690           1482       0.00
## 46691            840     439.04
## 46692             95      87.37
## 46693            259       0.00
## 46694            102    3537.37
## 46695            146     714.36
## 46696            115     308.81
## 46697           1480     316.32
## 46698           1481     798.57
## 46699            116     567.44
## 46700            265    5630.25
## 46701           1478     173.84
## 46702           1347     264.09
## 46703            664    1755.16
## 46704           1471  156618.65
## 46705             78      43.91
## 46706             67      10.00
## 46707            325     139.67
## 46708            322     257.98
## 46709           1464    3143.89
## 46710             73       0.00
## 46711           1140     208.54
## 46712             75       0.00
## 46713            152     822.50
## 46714           1356    1816.02
## 46715           1338       0.00
## 46716            569      41.71
## 46717            714     235.69
## 46718            346     461.75
## 46719           1476     154.41
## 46720            111     468.75
## 46721            687    3650.12
## 46722           1478     516.22
## 46723            419     573.75
## 46724           1477     738.87
## 46725            146     116.13
## 46726            116      66.17
## 46728           1181    9144.44
## 46729           1278     117.81
## 46730            486   12653.62
## 46731            152     202.26
## 46732           1338       0.00
## 46733             85       0.00
## 46734           1328      18.05
## 46735            142     171.99
## 46736            211       0.00
## 46737            456    9469.50
## 46738            111      36.74
## 46739           1477     825.22
## 46740            111     630.55
## 46741           1477    1303.52
## 46742           1477   87959.77
## 46743           1474     643.04
## 46744            109     295.67
## 46746            115     594.49
## 46747            105    1162.74
## 46748            103     301.97
## 46749            694     182.74
## 46750             74     237.86
## 46751           1413    3312.61
## 46752           1471      51.16
## 46753           1477    2679.01
## 46754           1477     132.55
## 46755           1462       0.00
## 46756             35       0.00
## 46757           1197     226.82
## 46758            132     681.52
## 46759            944     457.80
## 46760           1477    1205.78
## 46761            142    1015.01
## 46762            136     255.39
## 46763           1474     112.10
## 46764           1042     818.67
## 46765           1475      51.16
## 46766           1436       0.00
## 46767           1194     277.17
## 46768           1475      91.97
## 46769           3070  229253.69
## 46770           1475    1022.72
## 46771            437   28110.88
## 46772            119      33.42
## 46773            112      89.24
## 46774           1468     519.34
## 46775           1470       0.00
## 46776           1462     462.37
## 46777             64       0.00
## 46778             95      75.36
## 46779            161     919.58
## 46780           1295     286.69
## 46781            885     106.25
## 46782           1413     285.10
## 46783           1418     172.66
## 46784           1356      86.17
## 46785            187     241.29
## 46786           1463   22612.52
## 46787            357     456.20
## 46788            129     187.50
## 46789            105     182.69
## 46790           1227     137.19
## 46791            109    3282.47
## 46793           1117     158.00
## 46794            173     169.77
## 46795            141    1554.68
## 46796           1474     742.51
## 46797           1475     126.73
## 46798            170    1753.14
## 46799            379    1971.00
## 46800           2791  282809.73
## 46801           1037    1223.96
## 46802            293       0.00
## 46803           1261   50353.30
## 46804            565     257.65
## 46805           1422     345.38
## 46806            186     539.44
## 46807            152     189.00
## 46808            473     183.72
## 46809             91       0.00
## 46810            171     100.71
## 46811            110     295.57
## 46812             63     905.60
## 46813            990    1019.82
## 46814           1474    8960.12
## 46815             48    1467.91
## 46816            798     213.32
## 46817           1346     335.22
## 46818           1741    5060.92
## 46819             38     117.27
## 46820             95     236.86
## 46821           1462     173.59
## 46822            108      62.79
## 46823            180     755.79
## 46824            549     777.71
## 46825            246     238.54
## 46826            530     708.00
## 46827            245    1727.69
## 46828            126     248.38
## 46829            156     626.75
## 46830            255     589.49
## 46831             98     317.01
## 46832            904     431.11
## 46833           1463       0.00
## 46834             62     722.18
## 46835            103      41.95
## 46836             56     193.18
## 46837             78      79.33
## 46838            240    1397.97
## 46839             74       0.00
## 46840            104     226.17
## 46841           1471     221.68
## 46842           1471      48.60
## 46843            824     910.85
## 46844            180     190.35
## 46846             78       0.00
## 46847            109      13.18
## 46848             78       0.00
## 46849            927   19602.80
## 46850           1418     310.14
## 46851            108     211.19
## 46852           1471     121.68
## 46853           1470       0.00
## 46854           1469    2706.98
## 46855           1469       0.00
## 46856            103     168.25
## 46857           1468       0.00
## 46858           1094    1009.26
## 46859           1468      88.29
## 46860             68       0.00
## 46861            398       0.00
## 46862             35     307.45
## 46863           1421    1001.98
## 46864            748     331.84
## 46865           1651     145.25
## 46866             86     737.72
## 46867            116     235.55
## 46868             86     136.25
## 46869            103     413.49
## 46870            460     328.19
## 46871           1470       0.00
## 46872            104     320.58
## 46873           1478       0.00
## 46874            412       0.00
## 46875            168    7728.19
## 46876            991     529.99
## 46877           1344       0.00
## 46878             95     102.89
## 46879            112    5531.72
## 46880            105      82.77
## 46881            104      10.28
## 46882           1469      51.49
## 46883            274      43.49
## 46884           1469    1058.56
## 46885           1469   28126.86
## 46886           1467       0.00
## 46887           1386      23.34
## 46888           1384      31.34
## 46889            151     637.27
## 46890           1454     426.50
## 46891           1446     546.99
## 46892             90       0.00
## 46893            209     210.37
## 46894           1467       0.00
## 46895           1574   14048.78
## 46896            144       0.00
## 46897           1469     191.16
## 46898            231     108.00
## 46901            397      32.59
## 46902            469    9159.76
## 46903            448   11132.51
## 46904             83     325.00
## 46905             75       0.00
## 46906             99      68.01
## 46907             14       0.00
## 46908           1443   44956.09
## 46909           1428     500.77
## 46910           1453     566.40
## 46912           1309   12290.94
## 46913           1461     368.13
## 46914            635     897.16
## 46915           1785  104564.24
## 46916           1462    1281.61
## 46917           1462   99789.62
## 46918             99     333.63
## 46919             71       0.00
## 46920           1467       0.00
## 46921            102     428.73
## 46922            568    8720.00
## 46923            134       7.30
## 46924            377     324.38
## 46925           1467       0.00
## 46926             79     188.35
## 46927           1373     774.81
## 46928           1195     287.04
## 46929             89       0.00
## 46930           1346       0.00
## 46931            175     265.29
## 46932            469    4900.33
## 46933            111     102.89
## 46934           1443       0.00
## 46935             66       0.00
## 46936            209     333.35
## 46937            102      30.50
## 46938           1015     392.31
## 46939             62     690.53
## 46940            195     629.05
## 46941           1011    7272.14
## 46942            102     217.06
## 46943           1467     316.47
## 46944           1467      81.58
## 46945           1467     505.55
## 46946            129     167.75
## 46947            102     349.19
## 46948            394     450.60
## 46949           1462     814.77
## 46950             66       0.00
## 46951             98     244.17
## 46953           1031     414.47
## 46954           1295    6395.64
## 46955            224    1247.49
## 46956             81     422.69
## 46957           1440       0.00
## 46958            121     127.88
## 46959             91      57.49
## 46960           1314      49.40
## 46961           1462     145.36
## 46962           1462     247.37
## 46963            189    1377.00
## 46964             99     102.44
## 46965           1457       0.00
## 46966           1006       0.00
## 46967             75     154.50
## 46968            152     347.07
## 46969            980   21719.76
## 46970           1454     535.08
## 46971            436    1683.32
## 46972           1043     326.79
## 46973             98     667.53
## 46974           1570     951.98
## 46975           1463       0.00
## 46976            285     576.45
## 46977           1454     148.35
## 46978            225     365.71
## 46979            166     468.31
## 46980           1428    2027.15
## 46981           1442     139.01
## 46982           1463   13070.37
## 46983             85      99.05
## 46984            122     991.47
## 46985            177     614.33
## 46986           1356      59.00
## 46987            154     439.85
## 46988             65       0.00
## 46989            159     184.43
## 46990           1161     240.86
## 46991            128      15.18
## 46992           1462       0.00
## 46993           1462     145.17
## 46994           1358     342.97
## 46995            511   13124.60
## 46996            131     670.91
## 46997            416   17300.23
## 46998            476   22454.17
## 46999            956  187458.62
## 47000            280    7876.87
## 47001             96     369.73
## 47002            126     797.69
## 47003            264    1210.60
## 47004            125     167.98
## 47005             95      10.00
## 47006           1460      66.68
## 47007           1457       0.00
## 47008           1460       0.00
## 47009           1226     229.52
## 47010            605     968.89
## 47011            251    1350.37
## 47012             77       0.00
## 47013           1449       0.00
## 47014             91     123.28
## 47015           1456     234.65
## 47016             91      84.61
## 47017            289     711.34
## 47018           1454       0.00
## 47019           1460       0.00
## 47020           1457     792.62
## 47021            122     329.52
## 47022           1457    2434.79
## 47023             95     129.84
## 47024           1237    1466.42
## 47025           1461     139.49
## 47026           1461     137.46
## 47027           1461      36.73
## 47028            126     323.43
## 47029            157    1235.20
## 47030             66       0.00
## 47031           1379   23544.96
## 47032            117     158.32
## 47033            150     252.89
## 47035             30     452.32
## 47036            100     821.49
## 47037           1456     355.11
## 47038            792    2720.86
## 47039            154     210.05
## 47040            700    1297.75
## 47041           1911   20566.27
## 47042           1448     403.92
## 47043            169     149.47
## 47044           1338     376.88
## 47045           1083    1383.62
## 47046           1460     233.49
## 47047           1460     297.35
## 47048            131     515.34
## 47049             88       0.00
## 47050           1392      39.05
## 47051            833      79.40
## 47052             91     128.38
## 47053           1456      88.14
## 47054             89     200.02
## 47055            177     284.92
## 47056           1405     646.68
## 47057            153     215.86
## 47058           1414     501.14
## 47059           1454       0.00
## 47060            150      82.20
## 47061             81     254.87
## 47062            102     136.78
## 47063             49     252.97
## 47064           1317     406.44
## 47065           1241      49.62
## 47066           1744   10430.17
## 47067             29       0.00
## 47068            271    1912.67
## 47069            264    3050.27
## 47070            183     628.32
## 47071           1454     507.68
## 47072           1454    3359.47
## 47073            119     481.32
## 47074           1454     289.52
## 47075           1343    1177.63
## 47076           1453    1183.92
## 47077             75    1359.96
## 47078            656  130132.49
## 47079           1449       0.00
## 47081           1206       0.00
## 47083           1285    4910.26
## 47084           1379     141.22
## 47085           1226     217.92
## 47086            972       0.00
## 47087           1376    5866.96
## 47088           1446    2753.97
## 47089           1343     287.01
## 47090           1443   20142.49
## 47091            923   17273.04
## 47092           1170     920.85
## 47093             90     352.70
## 47094            999   16838.34
## 47095            524    2831.47
## 47096           1454     752.35
## 47097           1454      82.77
## 47098           1452       0.00
## 47099            121     370.34
## 47100           1456     126.34
## 47101             72     388.44
## 47102           1323      84.49
## 47103           1147       0.00
## 47104            595   32320.07
## 47105             82      68.60
## 47106            308       0.00
## 47107            107      16.81
## 47108            390   48412.69
## 47109           1420   82426.48
## 47110           1452     336.75
## 47111           1452     659.83
## 47112           1450       0.00
## 47113           1695    9831.78
## 47114           1453       0.00
## 47115           1454    2410.56
## 47116            118     606.60
## 47117            119       8.70
## 47118           1331   62393.77
## 47119             42    1028.54
## 47120            450     170.73
## 47121           1285    5793.66
## 47122             82     239.39
## 47123           1552     236.67
## 47124            114      78.17
## 47125           1385     852.01
## 47126           1426    2058.23
## 47127           1076      51.31
## 47128             87       0.00
## 47129            528     674.06
## 47130             84     122.84
## 47131            114     158.91
## 47132             83     232.85
## 47133           1447       0.00
## 47134            518    1690.71
## 47135           1049     378.25
## 47136           1440     623.81
## 47137           1436    6209.00
## 47138           1453     746.20
## 47139           1162   53703.24
## 47140           1450       0.00
## 47141           1267    3854.52
## 47142             72       0.00
## 47143            978     828.63
## 47144           1450     539.83
## 47145           1450       0.00
## 47146            115     310.90
## 47147            276     385.88
## 47148             57     789.93
## 47149            732   39519.52
## 47150            402    2554.35
## 47151            222    1130.59
## 47153           1513    7333.84
## 47154            114     333.67
## 47155            114     388.34
## 47156           1378       0.00
## 47157            103      78.48
## 47158           1434   23987.22
## 47159           1448      66.68
## 47160            115     382.89
## 47161           1555     507.54
## 47162            143    2489.86
## 47163             78       0.00
## 47164             79     197.67
## 47165           1433     356.97
## 47166             88       6.97
## 47168            106     971.53
## 47169            115     205.47
## 47170           1450     224.77
## 47171            282    2592.83
## 47172           1450     694.67
## 47173            115     346.22
## 47174           1450     782.70
## 47175            974    3531.77
## 47176            721     511.70
## 47177            126     112.34
## 47178           1448     326.58
## 47179            102     489.11
## 47180           1447       0.00
## 47181             83       0.00
## 47182            392      22.45
## 47183            160     633.13
## 47184             48     128.13
## 47185            100     721.80
## 47186            260    1422.19
## 47187            728     487.66
## 47188            157     927.75
## 47189            293      40.59
## 47190           1338       0.00
## 47191             96     128.71
## 47192            337    3256.93
## 47193            186    3445.94
## 47194            616    4962.49
## 47195           1433     310.81
## 47196           1084      78.17
## 47197           1436       0.00
## 47198           1440       0.00
## 47199            691       0.00
## 47200           1442       0.00
## 47201           1442     997.59
## 47202            199     673.98
## 47203            138     553.90
## 47204            150    4567.28
## 47205             63     833.20
## 47206            108     279.57
## 47207           1448   37208.75
## 47208           1448       0.00
## 47209           1448   16812.53
## 47210            145     328.82
## 47211            105     273.00
## 47212            235     884.02
## 47213            174    1350.60
## 47214             51    1596.07
## 47215           1448     974.86
## 47216           1448    1125.44
## 47217           1009     667.72
## 47218           1111     212.19
## 47219           1443     885.24
## 47220           1443     271.58
## 47221            289    4522.22
## 47222            462     112.89
## 47223            139    1497.30
## 47224             77       0.00
## 47225             76     205.46
## 47226           1042     128.46
## 47227             76       0.00
## 47228            658    2233.41
## 47229            113     232.47
## 47230            162     406.05
## 47231            657     233.77
## 47232            294     209.34
## 47233           1899   26740.61
## 47234            393    1844.06
## 47235            960     170.15
## 47236            138     131.32
## 47237           1084   57964.54
## 47238           1356     192.02
## 47239             28       0.00
## 47240            152     110.19
## 47241           1400     153.37
## 47242             87       0.00
## 47243             92     134.95
## 47244            300     438.09
## 47245           1426     260.19
## 47246            101     122.00
## 47247           1440     295.98
## 47248            229     378.84
## 47249            228    1048.89
## 47250            106     279.71
## 47251           1442   94911.47
## 47252           1350    2615.77
## 47253           1443     280.66
## 47254            255     448.97
## 47255           1446     333.84
## 47256            404    4193.49
## 47257           1447     301.87
## 47258           2768  146646.47
## 47259            111     232.64
## 47260           1241       8.70
## 47261           1393     143.46
## 47262            349     118.54
## 47263           1044     283.42
## 47264           1440     342.45
## 47265            110       0.00
## 47266            574    6956.05
## 47267           1197  121356.68
## 47268           1435    1835.00
## 47270           1422    1641.80
## 47271             90       0.00
## 47272           1398     554.25
## 47273            223    1707.77
## 47274            662    1331.44
## 47275           1376     961.24
## 47276             43     281.80
## 47277           1040   14223.83
## 47278             87       0.00
## 47279             92     123.25
## 47280            684     604.09
## 47281             99     652.95
## 47282            428    8931.52
## 47283            104     160.52
## 47284             74       0.00
## 47285            106     236.33
## 47286           1443     204.40
## 47287            176     353.48
## 47288           1443       0.00
## 47289             88       0.00
## 47290            665    7866.91
## 47291           1441     808.15
## 47292           1442    1858.76
## 47293            135     971.61
## 47294            669     418.00
## 47295            234     555.20
## 47296            234    1553.50
## 47297            422    1937.30
## 47298            123     120.78
## 47299             78      14.41
## 47300            101     118.82
## 47301            227     473.76
## 47302             86       0.00
## 47303            342    6445.00
## 47304            469    1756.48
## 47305           1224     104.19
## 47306           1225    4905.55
## 47307            152      65.18
## 47308            830     374.36
## 47309            118    1929.02
## 47310             76      96.68
## 47311            174     465.12
## 47312             91     702.41
## 47313            335     938.37
## 47314           1063     141.49
## 47315           1435      89.90
## 47316           1435       0.00
## 47317            450     367.15
## 47318            149     125.44
## 47319             91     324.60
## 47320            308     331.23
## 47321            978   10359.61
## 47322           1365   31218.59
## 47323             88       0.00
## 47324            106     122.57
## 47325           1426   14919.47
## 47326            955     117.27
## 47327            215    1435.29
## 47328            146    1160.53
## 47329             99      97.75
## 47330           1433      51.16
## 47331           1439     617.43
## 47332           1440    2034.91
## 47333           1440     136.87
## 47334           1436    1093.06
## 47335           1436       0.00
## 47336            219     342.87
## 47337            106     710.00
## 47338            107     245.81
## 47339            276   19172.12
## 47340            107      83.24
## 47341            207     460.78
## 47342            150    2532.14
## 47343           1334     420.86
## 47344           1196     423.92
## 47345           1405    4645.11
## 47346            447    1227.98
## 47347            924     376.79
## 47348            195     302.80
## 47349            128     288.00
## 47350            148     911.70
## 47351            141    1094.74
## 47352             76       0.00
## 47353            764   15740.96
## 47354            220    2640.46
## 47355           1425    2505.07
## 47356           1102      86.00
## 47357           1440     693.67
## 47358            144     201.72
## 47359            736     128.97
## 47360            789     185.92
## 47361            737       0.00
## 47362            229       0.00
## 47363             62       0.00
## 47364            124     325.63
## 47365            873     264.90
## 47366            334    2132.13
## 47367           1436     703.34
## 47368            878     943.39
## 47369            365     747.34
## 47370            233    1670.88
## 47371            400    3271.66
## 47372             84     502.57
## 47373            304    5550.17
## 47374           1422     323.92
## 47375            152      97.77
## 47376           1373     218.39
## 47377            209     395.46
## 47378            121     175.63
## 47379           1104     365.13
## 47380            131     317.25
## 47381           1411     475.13
## 47382            133      66.68
## 47383            148      67.04
## 47384             86       0.00
## 47385            673   30046.23
## 47386           1436     308.93
## 47387           1436       0.00
## 47388           1436       0.00
## 47389            240    7747.97
## 47390           1436     114.08
## 47391           1436     284.52
## 47392           1436     611.65
## 47393           1436     537.08
## 47394            113     500.83
## 47395           1435       0.00
## 47396           1435    1415.54
## 47397             41     643.20
## 47398           1434     472.78
## 47399           1677     402.90
## 47400           1429     132.06
## 47401            165     253.43
## 47402           1338     662.29
## 47403           1209     587.32
## 47404             70       0.00
## 47405           1059     539.51
## 47406             72     728.28
## 47407            352     482.12
## 47408           1435   16643.17
## 47409           1435      78.83
## 47410           1436     127.61
## 47411           1429       0.00
## 47412           1429       0.00
## 47413           1429       0.00
## 47414            149      39.57
## 47415            422    2149.30
## 47416           1428       0.00
## 47417            176     472.40
## 47418           1428       0.00
## 47419           1191     307.79
## 47420            184    2253.16
## 47421           1428     247.04
## 47422           1434      37.26
## 47423            589   58442.45
## 47424            244    2823.18
## 47425            253   11309.54
## 47426            621   47612.25
## 47427           2002   90284.47
## 47428           1434     680.58
## 47429           1433    1162.56
## 47430            456    2398.26
## 47431            118     107.28
## 47432            395     142.23
## 47433            547     768.04
## 47434           1204       0.00
## 47435            647     184.02
## 47436            672   71379.63
## 47437             90     231.68
## 47438           1425     164.59
## 47439           1336       0.00
## 47440             87       0.00
## 47441           1425     292.73
## 47442            145    1262.26
## 47443           1401       0.00
## 47444              1       0.00
## 47445             72     362.72
## 47446           2756   25277.10
## 47447           1406     210.66
## 47448            103     263.61
## 47449            646       0.00
## 47450            117     330.13
## 47451            474   22540.46
## 47452            804     129.54
## 47453            161     595.96
## 47454           1420   40452.40
## 47455            222     169.01
## 47456           1029    1035.35
## 47457            406     669.12
## 47458            925     684.49
## 47459           1428     173.47
## 47460             74     451.21
## 47461           1429   14036.04
## 47462            736      25.10
## 47463           1529     244.42
## 47464           1363       0.00
## 47465            315     139.77
## 47466           1293    8444.79
## 47467           1379       0.00
## 47468            124      64.38
## 47469            300    1185.85
## 47470           1429       0.00
## 47471            491     373.10
## 47472             93     134.02
## 47473             80     947.97
## 47474           1428      78.17
## 47475           1428     255.41
## 47476            442    6892.48
## 47477            125     118.54
## 47478           1429       0.00
## 47479            129     312.36
## 47480            314     199.33
## 47481           1019    1374.41
## 47482            307    2345.40
## 47483            658     245.87
## 47484           1088     790.39
## 47485            588     272.27
## 47486           1036     966.84
## 47487            437     199.27
## 47488            452     321.92
## 47489           1345       0.00
## 47490            308       0.00
## 47491            386     659.78
## 47492            192      66.68
## 47493            118     252.21
## 47494           1422     463.05
## 47495            736     238.27
## 47496             77       0.00
## 47497           1428    1359.67
## 47498            223    3596.09
## 47499            559     492.49
## 47500           1361       0.00
## 47501            216     605.99
## 47502           1428     732.99
## 47503           1427     116.66
## 47504           1407      88.29
## 47505           1422   86038.84
## 47506           1422      88.29
## 47507           1331     144.58
## 47508            213    2958.01
## 47509            257     455.62
## 47510             24       0.00
## 47511           1428     163.52
## 47512             94     220.56
## 47513           1428     300.64
## 47514            212     113.54
## 47515            867   19472.58
## 47516            116     271.27
## 47517            145       0.00
## 47518            804     508.78
## 47519           1373     223.65
## 47520             87      46.99
## 47521            184     595.14
## 47522            127     115.52
## 47523            148     322.56
## 47524           1412     731.60
## 47525            549     612.52
## 47526           1420     185.10
## 47527            117    1344.31
## 47528             79    2365.89
## 47529            124     473.27
## 47530             92     175.63
## 47531           1427     962.04
## 47532             20     240.00
## 47533             91       0.00
## 47534            122     302.20
## 47535             87       0.00
## 47536             80     135.19
## 47537            167    1485.69
## 47538             90     127.24
## 47539            182    1147.07
## 47540            151      44.41
## 47541           1427     684.93
## 47542           1427    4143.69
## 47543            116      79.10
## 47544             85      78.17
## 47545            132     193.17
## 47546           1411   27237.25
## 47547           1407   22767.09
## 47548           1415   11379.54
## 47549            256       0.00
## 47550            644   24537.50
## 47551           1414    7005.30
## 47552           1412     456.54
## 47553            253    1088.88
## 47554            121      66.68
## 47555           1422     173.18
## 47556           1421     254.06
## 47557            209      30.00
## 47558             76    1136.02
## 47559            169       0.00
## 47560             75       0.00
## 47561           1421       0.00
## 47562           1421     523.91
## 47563           1422     188.00
## 47564           1425       0.00
## 47565             90       0.00
## 47566             63     942.27
## 47567           1413    1295.40
## 47568            153     354.70
## 47569            535     644.91
## 47570            115    6024.60
## 47571            161     238.29
## 47572           1428    8324.22
## 47573            114     112.89
## 47574             71      25.67
## 47575             85     147.43
## 47576             85     204.92
## 47577            122     482.25
## 47578             79     211.57
## 47579           1370     339.69
## 47580            589     252.08
## 47581             90       0.00
## 47582            780     213.79
## 47583             83      10.39
## 47584           1418     458.45
## 47585             80      36.21
## 47586            203     946.83
## 47587            201     244.91
## 47588            973  168920.00
## 47589           1419      39.45
## 47590            467   17308.63
## 47591            358     805.61
## 47592           1315     265.35
## 47593             77       0.00
## 47594             95     108.96
## 47595            473     342.16
## 47596           1425      73.58
## 47597           1425      99.36
## 47599            118     418.56
## 47600           1422    1040.93
## 47601           1299     202.50
## 47602            753     750.18
## 47603             43     118.80
## 47604            320       8.00
## 47605            224       0.00
## 47606             93      62.16
## 47607            848     288.34
## 47608            113      67.16
## 47609            524      40.59
## 47610            140      80.05
## 47611           1900    6154.60
## 47612            400    8371.42
## 47613            110     399.19
## 47614           1419       0.00
## 47615            592    1071.55
## 47616           1419     144.35
## 47617            111     120.14
## 47618            101      39.33
## 47619           1057       0.00
## 47620           1408     108.15
## 47621            104      18.77
## 47622           2913  111887.63
## 47623            117     504.79
## 47624            298     115.00
## 47625           1167       0.00
## 47626           1110      46.37
## 47627            581    5080.20
## 47628             83       0.00
## 47629             80       0.00
## 47630            331    1519.34
## 47631            284     806.71
## 47632            100     128.10
## 47633            432     294.90
## 47634             89       0.00
## 47635            156     304.99
## 47636            116     150.18
## 47637            113    2030.81
## 47638            652      87.46
## 47639           1023  179413.01
## 47640            189     214.45
## 47641           1419    1122.00
## 47642            158    2592.75
## 47643           1418     110.45
## 47644           1415  117653.72
## 47645            443      75.31
## 47646            244     572.27
## 47647            117    2495.52
## 47648           1109    1659.03
## 47649           1011    1364.53
## 47650            104      61.44
## 47651            116     232.15
## 47652             85       0.00
## 47653           1210    5082.05
## 47654             50       0.00
## 47655             91     399.95
## 47656            707     325.56
## 47657           1338     969.20
## 47658            269     475.69
## 47659             89       0.00
## 47660           1384     117.84
## 47661             91     178.49
## 47662             84       0.00
## 47663            125     421.41
## 47664           1248    2339.61
## 47665           1420     415.02
## 47666            147     144.20
## 47667            257    1968.60
## 47668            102     186.76
## 47669            102     165.35
## 47670            109     181.64
## 47671            141     354.97
## 47672           1418     264.17
## 47673           1415       0.00
## 47674             83      37.19
## 47675            145     186.32
## 47676           1232     195.01
## 47677           1420     827.81
## 47678           1419    4055.41
## 47679           1419     183.50
## 47680           1419     737.83
## 47681           1419    1107.29
## 47682            126     185.68
## 47683           1203     188.35
## 47684            173     782.70
## 47685            228     662.52
## 47686             97     197.95
## 47687             84       0.00
## 47688             84       0.00
## 47689            245   13117.37
## 47690           1404    5470.05
## 47691           1419     106.99
## 47692           1420    2065.12
## 47693            114     148.77
## 47694           1415     439.15
## 47695           1021       0.00
## 47696           1582   83597.51
## 47697            194    1384.68
## 47698             72       0.00
## 47699            132     390.34
## 47700            101      41.86
## 47702            139     214.32
## 47703             91       0.00
## 47704            746    1495.34
## 47705           1153      76.98
## 47706           1194     137.97
## 47707            558   28730.31
## 47708            256       0.00
## 47709           1411      83.70
## 47710            100     351.63
## 47711           1391   22461.05
## 47712            103     294.41
## 47713            109    1158.98
## 47714           1401     307.55
## 47715             80       0.00
## 47716            239    3083.12
## 47717           1418     424.24
## 47718           1355    5682.76
## 47719            212    1102.31
## 47720             90       0.00
## 47721           1414     174.55
## 47722           1414     235.67
## 47723           1365     779.62
## 47724             82       0.00
## 47725            167     490.08
## 47726           1413     160.36
## 47727           1413     160.36
## 47728           1413    3489.30
## 47729           1405    1432.90
## 47730             75     440.09
## 47731           1408     660.26
## 47732            104     171.59
## 47733           1263     183.07
## 47734            107     145.53
## 47735           1406     442.23
## 47736           1413     160.36
## 47737            784     243.50
## 47738            474     288.13
## 47739             78       0.00
## 47740            422   29292.46
## 47741            111     588.05
## 47742           1358       0.00
## 47743             62       0.00
## 47744            996     104.75
## 47745             94     145.73
## 47746            121     160.83
## 47747             67       0.00
## 47750           1107    5365.40
## 47751            695    8924.45
## 47752           1413    1225.77
## 47753            512   13597.58
## 47754            245     673.66
## 47755             60    1287.05
## 47756           1523    7644.52
## 47757           1407     465.52
## 47758            199    1309.34
## 47759            601    8650.34
## 47760              4       0.00
## 47761            168     112.94
## 47763             99      91.32
## 47764            722     126.33
## 47765            393     247.74
## 47766           1411     239.80
## 47767            469   26949.64
## 47768           1391    1212.81
## 47769            308    5627.59
## 47770            823     301.48
## 47771           1406     135.35
## 47772            485    1451.83
## 47773           1226       0.00
## 47774            140      69.11
## 47775            113     270.21
## 47776            110     533.85
## 47777           1782   11314.95
## 47778            424    2345.89
## 47779             89       0.00
## 47780            139     928.95
## 47781            847    1202.11
## 47782             51     458.86
## 47783            162     798.96
## 47784             89      78.17
## 47785            268     352.38
## 47786              1       0.00
## 47787            109      10.39
## 47788           1412       0.00
## 47789            109     161.82
## 47790           1244       0.00
## 47791            102     168.69
## 47792             72       0.00
## 47793             65     125.03
## 47794           1356     211.97
## 47795            199     415.71
## 47796           1378     238.29
## 47797            735     166.78
## 47798           1157   33402.08
## 47799            200     148.16
## 47800            200    1365.42
## 47801            165    3339.19
## 47802           1411     264.40
## 47803           1411     337.31
## 47804           1411     152.36
## 47806            144    3087.60
## 47807           1257      18.80
## 47808            109     137.06
## 47809             77       0.00
## 47810           1091      72.41
## 47811            911    2102.41
## 47812           1400       0.00
## 47813            339   27330.50
## 47814           1335     167.51
## 47815             88       0.00
## 47816             83     263.81
## 47817            123       0.00
## 47818             97    1503.93
## 47819            206    7100.11
## 47820            101     121.66
## 47821            639     126.87
## 47822           1406     286.25
## 47823            107     840.56
## 47824           1411     458.45
## 47825           1398     766.02
## 47826           1407       0.00
## 47827            962     849.13
## 47828           1407     341.06
## 47829            324     297.85
## 47830           1408       0.00
## 47831           1408     196.33
## 47832           1344      54.99
## 47833           1324    9503.73
## 47834            664     126.54
## 47835             79       0.00
## 47836            136    4991.81
## 47837            689     339.94
## 47838            335    3318.59
## 47839            195     402.24
## 47840            136     125.49
## 47841           1399    1434.68
## 47842            263     397.75
## 47843           1089     115.61
## 47844            539    3556.88
## 47845            134       0.00
## 47846           1399       0.00
## 47847           1401   46942.82
## 47848           1407     263.93
## 47849            103     973.35
## 47850            634      98.91
## 47851            104      38.37
## 47852            162     394.18
## 47853            106     258.43
## 47854             82     219.18
## 47855           1247     906.78
## 47857           1400       0.00
## 47858           1142     138.70
## 47859           1046    1862.91
## 47860           1152       0.00
## 47861            585     684.79
## 47862             80       0.00
## 47863            440   10652.95
## 47864            294     334.15
## 47865            225       0.00
## 47866           1017    1478.34
## 47867             93     318.06
## 47868             93     155.11
## 47869           1397     162.44
## 47870            102     219.28
## 47871            101      10.39
## 47872            547      75.37
## 47873           1406       0.00
## 47874            216     328.30
## 47875            100       8.70
## 47876           1404     675.46
## 47877            118    1257.59
## 47878            166     149.88
## 47879            300     838.34
## 47880             64       0.00
## 47881            219     743.83
## 47882            941      80.00
## 47883            435    2121.46
## 47884           1405       0.00
## 47885            626     268.76
## 47886            111     135.06
## 47887            102     325.64
## 47888            391     229.73
## 47889             70       0.00
## 47890            967     358.15
## 47891            185     498.06
## 47892           1398     158.35
## 47893            127     237.16
## 47894           1400      64.68
## 47895           1401     265.23
## 47896           1176   43035.49
## 47897             85       0.00
## 47898            906   48556.11
## 47899           1393     383.77
## 47900             88     281.59
## 47901            280    1976.96
## 47902           1260   17981.46
## 47903            491    3484.18
## 47904            449     410.01
## 47905           1253       0.00
## 47906              6      91.97
## 47907           1384     728.20
## 47908             76       0.00
## 47909            113     367.86
## 47910            765    3550.18
## 47911           1399     690.08
## 47912            224       0.00
## 47913            283       0.00
## 47915            128     166.41
## 47916           1398     255.21
## 47917             71       0.00
## 47918            503   14366.49
## 47919            458       8.00
## 47920           1307      95.95
## 47921            667    1373.74
## 47922            110     974.39
## 47923            146       0.00
## 47924             74       0.00
## 47925           1392  124411.07
## 47926            178     114.96
## 47927           1022    5512.34
## 47928            644     257.25
## 47929             89       0.00
## 47930             88       0.00
## 47931             89     144.20
## 47932            147     866.30
## 47933            125     309.02
## 47934           1398       0.00
## 47935             94     337.34
## 47936             42     223.28
## 47937           1053    3650.82
## 47938           1401    1964.56
## 47939             96     140.81
## 47940           1401     495.88
## 47941             56     905.44
## 47942           1399       0.00
## 47943             79     117.31
## 47944            120     238.01
## 47945             90       0.00
## 47946            210     311.18
## 47947            180     483.60
## 47948            106     162.09
## 47949             94     419.87
## 47950           1401       0.00
## 47951            898   45612.12
## 47952           1401    1171.19
## 47953             94      81.85
## 47954            602    9014.77
## 47955            104     150.10
## 47956           1379  148290.07
## 47957           1504   82648.39
## 47958            125     791.21
## 47959           1098     489.37
## 47960            120       0.00
## 47961            655      31.42
## 47962            123      39.57
## 47963             56    1746.28
## 47964            372    1153.26
## 47965            143     577.84
## 47966           1337    3801.16
## 47967           1316       0.00
## 47968           1392     136.26
## 47969           1392     118.98
## 47970            257    3144.59
## 47971             89     118.71
## 47972            779     917.04
## 47973            540     404.03
## 47974            811   69601.04
## 47975             79       0.00
## 47977            117      87.46
## 47978           1387      48.93
## 47979             80      69.16
## 47980           1384     513.63
## 47981           1397       0.00
## 47982           1398     369.86
## 47983            974    1333.52
## 47984           1399     126.89
## 47985            336    9341.25
## 47986            508     282.55
## 47987             25       0.00
## 47988            246    1044.59
## 47989           1387     397.49
## 47990           1387     270.67
## 47991           1387     270.67
## 47992           1387     270.67
## 47993           1387     270.67
## 47994           1387     270.66
## 47995           1387     270.67
## 47996           1387     270.67
## 47997           1391   24771.56
## 47998           1216       0.00
## 47999           1033      73.99
## 48000            107      98.02
## 48001           1378     777.56
## 48002             42       0.00
## 48003            303    1358.60
## 48004            681    3126.45
## 48005            301    2884.56
## 48006            436    2347.79
## 48007            541    9445.66
## 48008           1289     124.83
## 48009           1287    2193.90
## 48010           1399     947.10
## 48011            257    3880.96
## 48012            106     208.10
## 48013           1398     339.14
## 48014            805    3126.24
## 48015            319     357.85
## 48016           1349      76.98
## 48017           1351     144.33
## 48018            371     237.05
## 48019            427     245.36
## 48020           1336    1591.81
## 48021            612      63.09
## 48022            120     217.73
## 48023             89     293.95
## 48024             88       0.00
## 48025             88     300.51
## 48026            403    2197.05
## 48027           1274     225.95
## 48028           1391     146.37
## 48029             41     150.32
## 48030            180     607.77
## 48031            179     647.63
## 48032              2       0.00
## 48033           1140     154.57
## 48034            111     255.96
## 48036             42       0.00
## 48037           1271   35149.14
## 48038             95     294.49
## 48039            185     387.17
## 48040           1399   24598.32
## 48041            131     181.97
## 48042            692     140.81
## 48043            746      80.80
## 48044           1091     126.54
## 48045            173    1248.93
## 48046            267    1093.31
## 48047            424     129.66
## 48048            120     212.25
## 48049            239    1777.56
## 48050            168     156.89
## 48051           1371   42067.95
## 48052           1380    2476.35
## 48053             90     159.70
## 48054           1394     365.29
## 48055            120     653.89
## 48056           1024     385.17
## 48057           1036     607.26
## 48058            119     115.52
## 48059            269    1869.40
## 48060           1394    4112.81
## 48061            503    1982.90
## 48062            628     360.55
## 48063            139    1071.21
## 48064            458     410.47
## 48065             89       0.00
## 48066           1392    1107.05
## 48067           1394     353.89
## 48068           1371      99.32
## 48069           1570    5365.54
## 48070             79       0.00
## 48071            496     681.70
## 48072            198      39.57
## 48073             83     110.46
## 48074             80     135.95
## 48075            151     502.29
## 48076           1282      79.40
## 48077           1275    1943.02
## 48078           1387     342.60
## 48079           1387       0.00
## 48080           1385    1433.66
## 48081             86       0.00
## 48082            221    1042.35
## 48083            106      30.78
## 48084           1378     450.29
## 48085           1392       0.00
## 48086           1392       0.00
## 48087            201     310.09
## 48088            139      49.25
## 48089           1267   34981.94
## 48090           1208     883.37
## 48091            483     106.46
## 48092             76       0.00
## 48093            192    1533.92
## 48094           1937    1033.36
## 48095            560     548.97
## 48096            855   36888.23
## 48097            142    2168.12
## 48098             81       0.00
## 48099             28       0.00
## 48100            716    1228.94
## 48101            338      17.29
## 48102            926    1492.09
## 48105            293      44.21
## 48106           1357     233.39
## 48107             92     205.09
## 48108             99     236.51
## 48109            212      72.42
## 48110             65       0.00
## 48111           1219      87.89
## 48112             83       0.00
## 48113            657       0.00
## 48114            575     950.45
## 48115           1108      80.01
## 48116           1934   30676.28
## 48117            279     998.58
## 48118           1166   21165.95
## 48119           1380     262.47
## 48121            530     163.96
## 48122           1392       0.00
## 48123           1203     379.57
## 48124            286     916.38
## 48125             91     143.85
## 48126            123      80.04
## 48127            273    7470.93
## 48128            136     581.82
## 48129           1004     648.55
## 48130           1313    1381.80
## 48131            242     345.22
## 48132            431    1884.61
## 48133            638   21014.81
## 48134           1385       0.00
## 48135            842     447.87
## 48136             41       0.00
## 48137           1391     157.65
## 48138           1390    1023.26
## 48139           1387     170.62
## 48140            872   44647.31
## 48141           1296  133122.12
## 48142            722     241.42
## 48143           1005     338.93
## 48144           1242     262.54
## 48145             78       0.00
## 48146            139     170.95
## 48147             83     159.28
## 48148            194     665.61
## 48149            204     738.37
## 48150           1359       0.00
## 48151             92     350.58
## 48152            515     120.82
## 48153           1387      51.16
## 48154            210   11029.63
## 48155            859     588.83
## 48156           1119       0.00
## 48157            896       8.70
## 48158            113     110.36
## 48159           1387     254.22
## 48161           1387       0.00
## 48162           1387     231.43
## 48163           1385     431.56
## 48164           1385     507.29
## 48165            188    3573.82
## 48166             80     254.55
## 48167           1736    1723.65
## 48168           1383     341.36
## 48169            107    1664.94
## 48170             74       0.00
## 48171            592    1165.71
## 48172            246     552.95
## 48173             65     331.60
## 48174           1146       0.00
## 48175            551    8056.07
## 48176            141    1652.05
## 48177           1383      66.68
## 48178            111     582.69
## 48179            287     301.13
## 48180           1385     389.16
## 48181           1385      33.63
## 48182            127    1575.74
## 48183           1387      51.16
## 48184             65     267.57
## 48185             69       0.00
## 48186             97     218.13
## 48187             96      66.68
## 48188            123     107.73
## 48189           1158     152.19
## 48190            611     342.70
## 48191             72      87.37
## 48192            160     186.50
## 48193           1387       0.00
## 48194           1879   76191.11
## 48195           1236      65.22
## 48196             97    2585.55
## 48197           1385       0.00
## 48198            463     149.55
## 48199            396    2135.02
## 48200            172     188.93
## 48201            809   26319.53
## 48202            303    9201.16
## 48203           1377     615.25
## 48204           1175       0.00
## 48205             74     186.42
## 48206           1204     668.67
## 48207            212     172.36
## 48208             69       0.00
## 48209            196     390.68
## 48210            982     276.83
## 48211           1385       0.00
## 48212           1385   48017.86
## 48213            106     687.51
## 48214            119      42.25
## 48215            152     256.18
## 48216             90      41.00
## 48217            609     564.08
## 48218             76     285.76
## 48219            532    5389.92
## 48220            171     351.33
## 48221            173     223.33
## 48222           2961  103336.33
## 48223            833     811.82
## 48224            174     248.01
## 48225           1387     151.18
## 48227            568       0.00
## 48228            172    3300.92
## 48229           1371      40.95
## 48230             38       0.00
## 48231             72       0.00
## 48232           1008     910.93
## 48233            160     919.18
## 48234             59     166.78
## 48235            761     110.95
## 48236            106     895.49
## 48237            581     146.52
## 48238            151     340.49
## 48239             91      10.00
## 48240           1335    1609.02
## 48241            229    1062.70
## 48242             24       0.00
## 48243           1100   49086.86
## 48244             96      66.68
## 48245           1160      70.02
## 48246           1179     156.86
## 48248             29     125.30
## 48249           1373       0.00
## 48250            280    1501.25
## 48251           1231       0.00
## 48252            701     170.65
## 48253            131     654.73
## 48254           1380       0.00
## 48255            118    3084.45
## 48256           1383       0.00
## 48257           1383    2115.03
## 48258            111     179.10
## 48259           1384    7463.56
## 48260             89     218.98
## 48261            164     586.45
## 48262            128     101.61
## 48263            165     135.39
## 48264           1379     236.03
## 48265            191    2621.34
## 48266           1078     232.18
## 48267            194     702.64
## 48268             90     257.23
## 48269             85     126.75
## 48270            337     312.43
## 48271            124      16.70
## 48272           1163   13210.00
## 48273            233     101.20
## 48274            105     342.62
## 48275             41       0.00
## 48276            600       0.00
## 48277           1374   76608.59
## 48278             80      93.77
## 48279            916     293.47
## 48280             99     148.10
## 48281            100     586.60
## 48282           1376     358.59
## 48283           1274  123735.80
## 48284             65       0.00
## 48285             91    4236.39
## 48286           1215     144.81
## 48287           1098    9812.79
## 48288            201     833.89
## 48289            280    1509.29
## 48290            441     282.86
## 48291            735       0.00
## 48292            110      68.01
## 48293            163     587.09
## 48294            138     129.65
## 48295           1115     235.09
## 48296           1355   45444.94
## 48297            917     130.49
## 48298            780   19191.85
## 48299           1372   15624.85
## 48300              1       0.00
## 48301             61       0.00
## 48302            167      74.68
## 48303           1379     368.10
## 48304           1379      66.68
## 48305            168    1869.93
## 48306            711    1113.84
## 48307             76       0.00
## 48308            215     221.03
## 48309            110     237.08
## 48310            105     135.13
## 48311            848     149.84
## 48312            267     362.22
## 48313            173     637.90
## 48314            177     261.86
## 48315            517     149.77
## 48316            228    1490.71
## 48317             78       0.00
## 48318             97      26.92
## 48319              1       0.00
## 48320            368   27951.34
## 48321            186     478.31
## 48322             91     129.06
## 48323            392     696.24
## 48324             58     401.29
## 48325           1379    1919.78
## 48326           1379      73.53
## 48327            866    5978.56
## 48328            105     441.04
## 48329           1378     664.74
## 48330           1378    1522.49
## 48331           1378   33761.91
## 48332            105     220.13
## 48333           1377     359.66
## 48334            615     410.09
## 48335           1380       0.00
## 48336             76       0.00
## 48337            919    3546.21
## 48338           1091    4068.34
## 48339             72       0.00
## 48340             97     163.17
## 48341           1204     281.64
## 48342            895     132.63
## 48343            152     219.50
## 48344            151     411.95
## 48345            292     549.31
## 48346           1336       0.00
## 48347             80       0.00
## 48348            597     154.10
## 48349              1       0.00
## 48350           1322       0.00
## 48351            624       0.00
## 48352             63       0.00
## 48353            174     545.13
## 48354            107     268.65
## 48355             48     594.26
## 48356            543   30647.77
## 48357           1376     293.85
## 48358           1376     159.01
## 48359           1373       0.00
## 48360           1372   22496.12
## 48361            753       0.00
## 48362            144     933.53
## 48363            144    1060.57
## 48364           1371     274.50
## 48365            826       0.00
## 48366           1359    5745.95
## 48367            103     132.08
## 48368             92     128.56
## 48369            183     663.31
## 48370             37     619.77
## 48371           1379      31.62
## 48372           1377     240.43
## 48373            165     391.54
## 48374            165     500.52
## 48375            105       6.97
## 48376           1378     121.66
## 48377             75       0.00
## 48378           1379    1204.50
## 48379            167      91.98
## 48380            167    3101.06
## 48381            106      10.43
## 48382             23     481.81
## 48383           1226       0.00
## 48384           1286    2383.28
## 48385           1253    2782.35
## 48386            140     260.67
## 48387            699      76.98
## 48388             90       0.00
## 48389             76       0.00
## 48390           1045     943.88
## 48391           1378     150.37
## 48392            107    2069.19
## 48393            165     812.00
## 48394             73       0.00
## 48395            299     932.66
## 48396             92     113.42
## 48397           1365      51.16
## 48398           2736   72646.30
## 48399           1376     306.07
## 48400           1376     165.15
## 48401            336     121.12
## 48402            189     341.80
## 48403            103      66.76
## 48404           1344     325.90
## 48405            132     233.11
## 48406             77       0.00
## 48407            138     276.50
## 48408             90       0.00
## 48409            152     586.18
## 48410           1273     185.76
## 48411            384    2032.24
## 48412            448    2352.45
## 48413           1123     100.00
## 48414            290     868.90
## 48415             99     189.65
## 48416           1376     556.55
## 48417            428    3812.92
## 48418            153      45.26
## 48419            165     193.62
## 48420            895   51957.70
## 48421            215    3715.70
## 48422            166      99.97
## 48423             88     243.83
## 48424           1357    9120.82
## 48425           1217   21029.40
## 48426             85       0.00
## 48427            497   21271.50
## 48428            445    9125.64
## 48429            151      48.49
## 48430            152     116.13
## 48431            186    1294.12
## 48432            103     151.26
## 48433             73       0.00
## 48434             61       0.00
## 48435            681     399.12
## 48436            771   24574.83
## 48437            206    7784.49
## 48438           1376     826.10
## 48439            160     219.59
## 48440            160     662.14
## 48441           1371     483.57
## 48442            496    1554.70
## 48443           1016    2991.64
## 48444             69     573.24
## 48445            159     160.57
## 48446           1400     661.63
## 48447           1237     180.74
## 48448             80       0.00
## 48449            210    4702.72
## 48451           1363     417.63
## 48452           1358     339.54
## 48453           1357    1195.39
## 48454            298     862.18
## 48455            883   29793.31
## 48456            132     309.66
## 48457            357      50.90
## 48458            661     184.23
## 48459            465    2486.94
## 48460           1323    8936.63
## 48461            285     374.76
## 48462            981    7113.14
## 48463           1369     745.21
## 48464           1372     266.31
## 48465           1372       0.00
## 48466            306     130.46
## 48467             72       0.00
## 48468            103      26.01
## 48469            100     236.41
## 48470           1074   41529.08
## 48471            861       0.00
## 48472            272    8140.67
## 48473           2065    8636.67
## 48474           1127     300.11
## 48475           1356     452.38
## 48476            931     162.96
## 48477            209     438.40
## 48478           1372       0.00
## 48479           1369     210.41
## 48480           1371     612.05
## 48481            460     136.57
## 48482            360     273.84
## 48483            485     120.00
## 48484            838    2397.89
## 48485            124     191.92
## 48486            443     668.38
## 48488           1372    2475.90
## 48489            100     275.07
## 48490            916     199.76
## 48491            163     279.59
## 48492            107      95.37
## 48493            510     267.24
## 48494           1343    1789.64
## 48495           1349   24740.72
## 48496             90       0.00
## 48497             86      51.16
## 48498             91       0.00
## 48499             91      89.21
## 48500           1358    7075.26
## 48501            186    3194.99
## 48502           1179       0.00
## 48503           1050   20494.68
## 48504           1369     345.75
## 48505           1365       0.00
## 48506             91     165.41
## 48507            619    3111.94
## 48508            876   55970.78
## 48509            569   59800.25
## 48510            370      16.70
## 48511             91       0.00
## 48512            394    1639.57
## 48513           1362     332.62
## 48514           1363    1653.70
## 48515            385    1584.82
## 48516             77       0.00
## 48517            288       0.00
## 48518            286     490.00
## 48519           1351       0.00
## 48520           1153    1083.45
## 48521           1365       0.00
## 48522           1365     554.00
## 48523           1355     395.52
## 48524           1365     502.04
## 48525            612    1398.11
## 48526           1369    2494.48
## 48527           1369     357.19
## 48528           1369       0.00
## 48529             28     183.01
## 48530             20     218.23
## 48531           1370       0.00
## 48532           1370      50.01
## 48533            160     708.21
## 48534           1217      86.17
## 48535           1211    1051.55
## 48536           1350     396.37
## 48537            543     582.73
## 48538            480   27838.11
## 48539            326    3954.59
## 48540           1349    3457.86
## 48541             91     313.76
## 48542            258     198.20
## 48543             89      66.68
## 48544            488     572.42
## 48545            239     319.88
## 48546             85      67.24
## 48547            512     170.83
## 48548            177     137.28
## 48549            102     208.69
## 48550            956     217.69
## 48551            158     531.07
## 48552             96     128.36
## 48553            153     291.86
## 48554           1369      37.26
## 48555           1369      81.89
## 48556           1369     242.92
## 48557             16     217.26
## 48558            153      16.70
## 48559            137     239.44
## 48560            181    1429.51
## 48561             12     308.11
## 48562            206     926.72
## 48563           1358     226.31
## 48564            162     387.27
## 48565           1195     213.20
## 48566           1356    1000.64
## 48567           1355     404.52
## 48568            121       0.00
## 48569             63     265.36
## 48570           1361     766.67
## 48571             91      46.99
## 48572           1363       0.00
## 48573            163     798.78
## 48574            289     156.47
## 48575            705    1330.39
## 48576            157    1681.86
## 48577           1222      96.29
## 48578            339     405.10
## 48579            321     318.00
## 48580           1342     320.82
## 48581            190     145.59
## 48582            228    5278.92
## 48583            342      59.16
## 48584            212     587.86
## 48585           1361     110.39
## 48586           1361     229.65
## 48587             91     198.29
## 48588            236     519.66
## 48589            202     427.31
## 48590           1369       0.00
## 48591             61       0.00
## 48592            153     777.70
## 48593           1365     246.44
## 48594            295    1377.37
## 48595           1365      59.16
## 48596            152     439.41
## 48597            147     537.86
## 48598            148    2607.05
## 48599           1380   82155.53
## 48600             63       0.00
## 48601           1001    7703.06
## 48602           1356   15770.84
## 48603            144     991.42
## 48604            251      59.37
## 48605           1813  210362.53
## 48606           1100      55.69
## 48607             84       0.00
## 48608            363     271.30
## 48609             85      97.40
## 48610            147      49.40
## 48611            143     334.23
## 48612            812     680.47
## 48613           1359    5657.98
## 48614           1361     560.47
## 48615           1362       0.00
## 48616           1363       0.00
## 48617             78       0.00
## 48618            311       0.00
## 48619            790   54860.40
## 48620              3       0.00
## 48621            130      71.35
## 48622            385    1604.17
## 48623             63       0.00
## 48624            807       0.00
## 48625            476   26549.85
## 48626            183     372.23
## 48627            126     317.90
## 48628            193     111.86
## 48629             70       0.00
## 48630             68       0.00
## 48631            316    2100.07
## 48632            368    1123.83
## 48633            452       0.00
## 48634           1268     176.46
## 48635            151     299.29
## 48636           1145  112364.90
## 48637            850       0.00
## 48638             90       0.00
## 48639             90       0.00
## 48640           1361     230.54
## 48641           1361     227.28
## 48642           1361     703.08
## 48643             91       0.00
## 48644            608     307.63
## 48645           1341   31375.77
## 48646            188     198.14
## 48647            251     323.91
## 48648            314   12998.96
## 48649            581    5148.96
## 48650           1001     322.29
## 48651            139    2263.86
## 48652            526       0.00
## 48653            169      80.49
## 48654            164     117.08
## 48655           1358       0.00
## 48656           1358      51.16
## 48657            774     142.16
## 48658            161     552.55
## 48659           1122     331.34
## 48660           1582   15962.86
## 48661           1361   16012.25
## 48662            155    2495.33
## 48663            150     215.21
## 48664            425     486.31
## 48665            195    1247.60
## 48666            132     117.96
## 48667            424     510.84
## 48668           1330     831.95
## 48669            257    1030.74
## 48670            102     118.90
## 48671             95      54.04
## 48672            112     108.60
## 48673            445   42983.47
## 48674            716    2603.90
## 48675            578      59.16
## 48676             68       0.00
## 48677            199     322.34
## 48678            645     548.03
## 48679             78      81.47
## 48680            317       0.00
## 48681            133       0.00
## 48682             78       0.00
## 48683            248     478.25
## 48684            850       0.00
## 48685            160     215.91
## 48686            144     156.60
## 48687            576       0.00
## 48688            147     453.44
## 48689           1358       0.00
## 48690           1358    1377.41
## 48691            420      14.97
## 48692             65     234.01
## 48693            128     270.50
## 48694             70       0.00
## 48695             81     210.11
## 48696            894       0.00
## 48697            221    2021.00
## 48698            144     222.47
## 48699            194    6721.50
## 48700            154       0.00
## 48701           1348     338.47
## 48702            276    8673.34
## 48703           1209      70.85
## 48704             86       0.00
## 48705            974     217.53
## 48706            155     132.77
## 48707            300     793.60
## 48708            741       0.00
## 48709            125     535.76
## 48710           1345   21484.08
## 48711            994     751.72
## 48712            363      73.00
## 48713            979   61550.51
## 48714            363     215.27
## 48715            143     125.45
## 48716            140     488.41
## 48717              3       0.00
## 48718           1236       0.00
## 48719             78     471.86
## 48720            616   26274.67
## 48721            185    2122.75
## 48722            645     134.80
## 48723            129     415.03
## 48724           1203       0.00
## 48725           1337     133.51
## 48726            716     706.00
## 48727           1211     401.34
## 48728            120    2221.51
## 48729            160     440.19
## 48730            162    1135.67
## 48731            149     589.35
## 48732            131     757.04
## 48733           1348     281.73
## 48734             75       0.00
## 48735            178     421.24
## 48736           1348     550.28
## 48737           1356     281.65
## 48738           1355     699.92
## 48739            139     951.96
## 48740            276    1147.56
## 48741            957       0.00
## 48742            949    4048.49
## 48743            145     189.97
## 48744            128     348.87
## 48745            123      68.17
## 48746             63       0.00
## 48747           1310   30492.42
## 48748             77       0.00
## 48749           1127     139.99
## 48750            133     653.76
## 48751            154     371.93
## 48752           1355      87.94
## 48753           1355    7787.00
## 48754            143      15.43
## 48755           1211       0.00
## 48756            941       0.00
## 48757            853   29417.92
## 48758           1251    1425.26
## 48759            133     137.66
## 48760             72      99.42
## 48761            133     366.03
## 48762             72       0.00
## 48763            788   33122.16
## 48764            561     417.57
## 48765            139     215.37
## 48766            239     800.59
## 48767           1344     542.95
## 48768           1342     273.37
## 48769             70       0.00
## 48770            161     153.16
## 48771            139     190.46
## 48772            135      72.00
## 48773           1317    1025.66
## 48774            139    3220.35
## 48775           1260     143.33
## 48777            205     369.27
## 48778            301     563.99
## 48779            134     107.18
## 48780            710     272.09
## 48781             69     254.36
## 48782           1101    2579.84
## 48783            932    8688.43
## 48784           1350       0.00
## 48785            138      39.57
## 48786           1350    3333.77
## 48787            592     428.72
## 48788           1349       0.00
## 48789            304     177.60
## 48791            140     295.24
## 48792            124     260.48
## 48793            124     200.70
## 48794           1329    1229.53
## 48795             85       0.00
## 48796            377       0.00
## 48797            122      99.97
## 48798            122      43.00
## 48799            139     146.36
## 48800            294    2483.09
## 48801            138     343.34
## 48802           1350     323.57
## 48803           1350     936.52
## 48804           1350     208.12
## 48805           1350    1913.27
## 48806           1350     325.47
## 48807            138     392.37
## 48808              1       0.00
## 48809             91       0.00
## 48810            460    3752.99
## 48811           1195      51.49
## 48812             75       0.00
## 48813            190      42.50
## 48814            157       0.00
## 48815            315     297.77
## 48816           1350       0.00
## 48817            548      46.78
## 48818            137      16.42
## 48819           1345    1550.08
## 48820           1350      17.99
## 48821           1350     800.12
## 48822           1007     463.17
## 48823            124     210.04
## 48824            131     548.70
## 48825            620     570.30
## 48826             69       0.00
## 48827            494     371.09
## 48828           1034     453.84
## 48829            377    2742.90
## 48830           1350     514.59
## 48831            200     421.74
## 48832            133     179.59
## 48833            536     859.13
## 48834            791   22479.95
## 48835             72      43.49
## 48836           1345     226.39
## 48837            862    1857.10
## 48838            137     312.59
## 48839            136     241.68
## 48840            136     357.05
## 48841            173     120.54
## 48842            111     139.23
## 48843            116     528.47
## 48844           1310    8022.78
## 48845            171    1058.56
## 48846            159     300.70
## 48847           1210     127.68
## 48848             57       0.00
## 48849            137     132.97
## 48850            260     104.05
## 48851           1296    9825.02
## 48852           1050   15090.49
## 48853            291     232.76
## 48854            114    2318.54
## 48855           1201       0.00
## 48856            815     528.36
## 48857           1348       0.00
## 48858           1349     322.46
## 48859           1349     441.69
## 48860           1349   20421.93
## 48861            137     159.01
## 48862           1350       0.00
## 48863            245    8011.32
## 48864            137     261.00
## 48865            481    1304.60
## 48866           1244     202.01
## 48867            614    2373.54
## 48868            642    1602.27
## 48869            223     725.21
## 48870            132      96.29
## 48871             71       0.00
## 48872            688       0.00
## 48873           1079    1890.05
## 48874            124      59.16
## 48875            419      80.04
## 48876            113     211.05
## 48877            340      99.97
## 48878            120    1002.95
## 48879           1282     859.56
## 48880            258   10219.34
## 48881            192     125.27
## 48882           1129   10866.32
## 48883            203     303.26
## 48884            225     117.15
## 48885            448     274.80
## 48886             46     602.57
## 48887             97     259.56
## 48888            137     205.46
## 48890           1348     477.04
## 48891           1348     143.81
## 48892           1348   22582.16
## 48893            194    1345.60
## 48894            133     103.46
## 48895           1345    1153.96
## 48896           1345     568.24
## 48897            126    1169.05
## 48898            412     480.36
## 48899            161     724.00
## 48900           1316   23802.35
## 48901             95     187.50
## 48902             73       0.00
## 48903             77     934.59
## 48904            403    2439.83
## 48905             79       0.00
## 48906            979     942.23
## 48907             94    2489.16
## 48908            125     384.86
## 48909           1152   12407.78
## 48910           1345     545.38
## 48911           1348       0.00
## 48912           1348      78.17
## 48913           1349     186.84
## 48914            137     173.67
## 48915            137     595.18
## 48916            234    2275.81
## 48917           1343       0.00
## 48918           1343    1630.94
## 48919           1343    1041.36
## 48920            860     220.81
## 48921            132     112.94
## 48922            132     423.54
## 48923            265     173.61
## 48924            216     503.56
## 48925            494    3518.58
## 48926           1205       0.00
## 48927            124      52.79
## 48928            511    1392.52
## 48929           1336    2823.56
## 48930           1344     523.59
## 48931            161     361.38
## 48932            267    1638.82
## 48933            212      41.11
## 48934            996   23552.67
## 48935           1082    9279.74
## 48936             61       0.00
## 48937            612       0.00
## 48938           1147       0.00
## 48939           1306       0.00
## 48940           1100     183.18
## 48941             91     111.48
## 48942            478     509.90
## 48943            524   43601.25
## 48944            132     216.59
## 48945            301     714.08
## 48946            307     918.02
## 48947            356    1049.15
## 48948            129     206.23
## 48949           1345     805.85
## 48950            999     286.65
## 48951            234     460.36
## 48952           1344     553.21
## 48953           1344     296.77
## 48954           1344    1796.30
## 48955           1344    3348.12
## 48956            132      86.50
## 48957            251    1580.53
## 48958            938       0.00
## 48959             85    1613.33
## 48960           1028   47188.81
## 48962            143    4662.71
## 48963           1442     687.13
## 48964            150     303.73
## 48965            226     121.76
## 48966           1243     957.07
## 48967           1322       0.00
## 48968            428   11727.30
## 48969             86       0.00
## 48971            612     125.56
## 48972           1282      90.81
## 48973            187     232.18
## 48974            129     297.78
## 48975           1336     395.69
## 48976            139    1440.67
## 48977            315     311.83
## 48978            123     148.32
## 48979             82     217.54
## 48980            348     182.09
## 48981           1258  296474.97
## 48982            343     343.79
## 48983            130     335.86
## 48984           1103       0.00
## 48985            644     577.03
## 48986           1189     279.43
## 48987            102      51.49
## 48988             80     587.21
## 48990           1343     553.98
## 48991           1343     113.87
## 48992           1341     376.77
## 48993            510    4235.91
## 48994           1342   12477.67
## 48995            231    2393.42
## 48996            571   11538.50
## 48997            184     371.94
## 48998             32     241.40
## 48999            123     368.42
## 49000            209     196.98
## 49001           1336     431.57
## 49002            333    2574.22
## 49003            486     339.93
## 49004            126     100.00
## 49005            111    2899.73
## 49006            124     362.06
## 49007            116     321.00
## 49008            109     315.51
## 49009            612     220.03
## 49010            161      81.29
## 49011           1329     383.28
## 49012            165    1143.60
## 49013            101      74.68
## 49014           1124       0.00
## 49015           1145     190.36
## 49016           1184    7045.99
## 49017             91      54.56
## 49018           1180    9859.79
## 49019             35       0.00
## 49020             75       0.00
## 49021             79     292.80
## 49022           1300    3923.00
## 49023            232    1327.19
## 49024            110      31.94
## 49025           1309     662.04
## 49026             95      93.98
## 49027            897      18.39
## 49028           1336     100.07
## 49029            124      90.61
## 49030            899   30696.94
## 49031           1253   48353.59
## 49033           1335   46125.67
## 49034            678     575.32
## 49035           1341    3654.18
## 49036           1341     714.52
## 49037           1341     204.51
## 49038            641     368.01
## 49039             63       0.00
## 49040           1338       0.00
## 49041            126     218.47
## 49042           1337       0.00
## 49043           1337     105.33
## 49044            117     135.44
## 49045            349     654.35
## 49046            152      44.38
## 49047           1207  191275.03
## 49048            119    5275.13
## 49049            119     248.68
## 49050            147     320.29
## 49051           1022     196.91
## 49052            907    1042.10
## 49053             61    2133.71
## 49054            839    2751.46
## 49055             27     346.24
## 49056            156       0.00
## 49057           1338    1762.70
## 49058           1336      18.49
## 49059            830       0.00
## 49060           1336       0.00
## 49061           1337     307.82
## 49062           1336       0.00
## 49063           1214     160.57
## 49064           1322     799.43
## 49065            221     453.65
## 49066           2541   39839.66
## 49067             70       0.00
## 49068            603       0.00
## 49069           1314     111.72
## 49070            623      25.10
## 49071            168      69.31
## 49072           1322     161.36
## 49073           1274       0.00
## 49074            210    1374.64
## 49075           1329    1018.83
## 49076            112     128.03
## 49077           1324      87.33
## 49078           1336     253.84
## 49079            362     615.72
## 49080            652    1299.95
## 49081            224    3313.95
## 49082           1246     115.86
## 49083            123     234.68
## 49084           1335     727.49
## 49085           1335     244.72
## 49086             62       0.00
## 49087            133      74.45
## 49088             56     178.13
## 49089            382    4076.65
## 49090            209     480.60
## 49091            209     250.77
## 49092           1334       0.00
## 49093           1334   25984.65
## 49094            242     441.81
## 49095            574   38820.73
## 49096            194    1992.13
## 49097            133     179.17
## 49098            142     393.08
## 49099           1274    1426.30
## 49100            108     106.99
## 49101            110     220.84
## 49102            148     471.27
## 49103            518    5732.43
## 49104            122     177.92
## 49105           1330     170.97
## 49106            116      71.35
## 49107            274     672.27
## 49108           1327    2735.12
## 49109           1181   15333.64
## 49110             96      18.39
## 49111            855   10988.48
## 49112             80      18.39
## 49113            133      66.61
## 49114           1030     181.10
## 49115            358     170.13
## 49117            612     131.77
## 49118            612     275.24
## 49119           1330     288.70
## 49120           1330     288.01
## 49121            227    1767.54
## 49122            685   76234.72
## 49123            214    1065.16
## 49124             80       0.00
## 49125             80       0.00
## 49126            271    1702.43
## 49127             73       0.00
## 49128           1301   17556.23
## 49129            828   20089.60
## 49130            539     131.91
## 49131           1301     269.79
## 49132             48      86.17
## 49133            818   20140.27
## 49134           1320     754.49
## 49135             86     378.92
## 49136            336     198.75
## 49137            299     221.84
## 49138           1330     185.41
## 49139            503   28904.84
## 49140           1513    1165.61
## 49141            118     181.99
## 49142           1330       0.00
## 49143            148     573.14
## 49144           1330     619.40
## 49145           1327     328.19
## 49146           1327     430.53
## 49147            954     502.02
## 49148           1329     848.80
## 49149            770    1465.40
## 49150           1328  128671.85
## 49151            118     419.32
## 49152            269    2330.97
## 49153            115      96.96
## 49154             96       0.00
## 49155           1182     236.14
## 49156            959     125.27
## 49157            201       0.00
## 49158            485    1161.01
## 49159            170    1235.55
## 49160            202       0.00
## 49161            248     417.40
## 49162             20       0.00
## 49163             52     547.80
## 49164           1085      54.04
## 49165            874     964.89
## 49166            612     216.20
## 49167           1330       0.00
## 49168            132    1792.16
## 49169           1330     131.55
## 49170           1317       0.00
## 49171           1132     562.00
## 49172           1330     393.25
## 49173           1330     468.53
## 49174           1329     625.30
## 49175             30      76.98
## 49176            108     605.49
## 49177            820       0.00
## 49178            393     901.54
## 49179            547     204.34
## 49180            269     254.37
## 49181            471     114.77
## 49182            110     332.26
## 49183            663     497.05
## 49184            388       8.00
## 49185           1317     575.22
## 49186           1316     203.92
## 49187             96      59.16
## 49188            443    1989.11
## 49189           1328    1368.14
## 49190            116     401.03
## 49191            203     550.03
## 49192            116     254.38
## 49193            141     222.70
## 49194            743     641.72
## 49195            612      89.85
## 49196             81       0.00
## 49197           1327       0.00
## 49198            116     141.83
## 49199            952     143.62
## 49200            290    1279.42
## 49201           1384    2142.31
## 49202           1324     186.30
## 49203            116     267.52
## 49204           1327     818.96
## 49205           1327    2857.44
## 49206            116     226.17
## 49207            377      78.00
## 49208            140     538.70
## 49209           1054     221.48
## 49210            268    6795.85
## 49211            138     137.52
## 49212           1322       0.00
## 49213             44     157.56
## 49214           1323     232.05
## 49215           1219       0.00
## 49216           1212     117.51
## 49217            350     229.26
## 49218            106     247.50
## 49219           1282     361.73
## 49221           1250     633.34
## 49222            172    1098.84
## 49223            563       0.00
## 49224            140     232.62
## 49225            171    1109.96
## 49226            105     494.58
## 49227           1317       0.00
## 49228           1315     801.63
## 49229            210     203.73
## 49230           1314     189.97
## 49231            291     153.77
## 49232            117     498.07
## 49233           1251    1108.55
## 49234            625     190.75
## 49235            813      40.33
## 49236            172     976.10
## 49237            112     218.67
## 49238            142     169.01
## 49239           1259       0.00
## 49240            386    1363.44
## 49241            112      64.84
## 49242           1324      74.68
## 49243           1324     485.54
## 49244           1314       0.00
## 49245            103     161.48
## 49246            128     621.31
## 49247            596     126.46
## 49248             64       0.00
## 49249           1350  202841.94
## 49250           1321       0.00
## 49251           1321    1446.45
## 49252           1322     972.95
## 49253           1322    2618.82
## 49254            206     477.90
## 49255           1219     169.34
## 49256           1228     209.96
## 49257            107      58.01
## 49258           1313     290.90
## 49259            111     182.84
## 49260           1153      86.17
## 49261            583     629.83
## 49263           1322   10014.31
## 49264           1365     888.41
## 49265           1322       0.00
## 49266            139     387.41
## 49267             79       0.00
## 49268            807     593.60
## 49269            419    4083.94
## 49270            459      94.09
## 49271            617    5052.46
## 49272           1108   27189.03
## 49273            110      32.89
## 49274           1322     147.60
## 49275           1316     179.84
## 49276            105      98.24
## 49277             72       0.00
## 49278            222      58.01
## 49279            138     214.23
## 49280            133     176.13
## 49281           1317     418.45
## 49282            333    1160.89
## 49283              1       0.00
## 49284           1313      94.17
## 49285            231     219.91
## 49286            126     190.59
## 49287             63       0.00
## 49288            157     123.73
## 49289             81       0.00
## 49290            228    2511.52
## 49291             84       0.00
## 49292            286   15021.01
## 49293            191     269.67
## 49294            470    1830.53
## 49295           1205     310.24
## 49296             72       0.00
## 49297             74       0.00
## 49298            243    9226.52
## 49299            108     129.39
## 49300           1511   50928.75
## 49301           1321     676.28
## 49302            139     222.60
## 49303            769     286.00
## 49304            124     509.88
## 49305           1308    6977.72
## 49306            227     244.23
## 49307            160     186.23
## 49308            349     118.89
## 49310            670     133.23
## 49311           1274  161044.77
## 49312            911     124.28
## 49313           1100       0.00
## 49314           1321     379.63
## 49315           1321      86.49
## 49316            124    2033.65
## 49317           1321     941.86
## 49318           1317     384.59
## 49319           1056  266953.65
## 49320            108     277.36
## 49321           1316    2087.17
## 49322            138     206.13
## 49323            138     336.23
## 49324            287     494.94
## 49325           1371   24148.37
## 49326           1316    4041.80
## 49327            133     187.59
## 49328           1847   39899.47
## 49329            132     331.31
## 49330           1314    7781.32
## 49331            582     213.36
## 49332            101      26.69
## 49334           1308    1994.52
## 49335            851   33847.39
## 49336           1144     143.21
## 49337            124     189.13
## 49338             93      86.17
## 49339           1033      76.98
## 49340           1128     130.51
## 49341            135     293.92
## 49342           1299     364.45
## 49343              1       0.00
## 49344           1302     746.19
## 49345             98     264.14
## 49346           1313       0.00
## 49347           1313       0.00
## 49348           1314     186.90
## 49349            187    1703.16
## 49350            133     422.78
## 49351            684     360.31
## 49352           1317    1845.56
## 49353           1039     564.42
## 49354           1316       0.00
## 49355           1317     294.11
## 49356           1316    2621.69
## 49357           1317     122.00
## 49358           1179       0.00
## 49359            834   17484.29
## 49360            111      43.19
## 49361            120    1044.48
## 49362            163      94.64
## 49363           1259     200.34
## 49364            155     199.93
## 49365           1317     795.37
## 49366            110     244.08
## 49367            138     425.82
## 49368            362     351.42
## 49369             99     899.61
## 49370            132     261.20
## 49371            126     151.04
## 49372            719     802.79
## 49373             94      70.65
## 49374           1145    1901.46
## 49375            377       0.00
## 49376             98     118.90
## 49377           1302     220.96
## 49378           1020   56167.43
## 49380            218     724.26
## 49381           1316     378.40
## 49382           1224     188.05
## 49383            899     783.68
## 49384           1316     175.49
## 49385            188    2465.49
## 49386            422    2262.77
## 49387           1275   30998.53
## 49388            206    1078.19
## 49389            134     399.02
## 49390             74       0.00
## 49391           1652    6085.79
## 49392            780     557.43
## 49394           1313     164.03
## 49395           1313     739.30
## 49396            126      51.49
## 49397             95     108.00
## 49398           1313      99.97
## 49399            168     302.10
## 49400            447    3452.49
## 49401            214      75.22
## 49402           1195       0.00
## 49403           1273     334.30
## 49404            113     307.49
## 49405             88       0.00
## 49406            162     197.03
## 49407            204       0.00
## 49408             95     167.47
## 49409           1258    1450.57
## 49410            875  139304.21
## 49411           1524     207.50
## 49412            579      72.01
## 49413            175     299.21
## 49414           1307       8.00
## 49415            125      38.78
## 49416            101     257.95
## 49417           1313     322.51
## 49418             36     214.11
## 49419           1231    7256.11
## 49420           1167    5441.15
## 49421           1315       0.00
## 49422           1314     136.95
## 49423            185     757.34
## 49424            118     171.30
## 49425            672    2379.75
## 49426             89    5490.63
## 49427            103      74.44
## 49428            502     179.11
## 49429             71       0.00
## 49430           1313     134.24
## 49431            609      74.68
## 49432            150     176.37
## 49433           1313   30414.44
## 49434            162     169.49
## 49435           1313     378.75
## 49436            102      32.97
## 49437           1307       0.00
## 49438            281     171.82
## 49439           1071      74.68
## 49440           1310     888.63
## 49441            203     460.68
## 49442           1307     896.22
## 49443           1306   18738.12
## 49444             76     130.49
## 49445           1177     175.08
## 49446            408    1186.53
## 49447            248     305.43
## 49448           1302     163.09
## 49449             88       0.00
## 49450            126     308.42
## 49451            102    1215.25
## 49452           1278   15005.83
## 49453            182     271.62
## 49454           1261       0.00
## 49455           1307       0.00
## 49456            187     274.06
## 49457             95      84.68
## 49458             92     321.35
## 49459            958     488.24
## 49460           1957    6928.15
## 49461            395     125.43
## 49462            327     151.93
## 49463             67       0.00
## 49464           1310   27905.79
## 49465           1310    1226.74
## 49466           2453   56533.10
## 49467           1310     406.53
## 49468           1310    6821.64
## 49469           1309     281.51
## 49470             95      70.65
## 49471            951     159.13
## 49472            799   28482.76
## 49473           1294    9955.43
## 49474             96      39.57
## 49475             96      38.78
## 49476           1313       0.00
## 49477           1313     787.56
## 49478           1313      27.54
## 49479           1313   11520.18
## 49480            518     340.72
## 49481            971    1871.81
## 49482           1040    1569.00
## 49483            482    1570.53
## 49484           1244     313.47
## 49485           1292       0.00
## 49486             83       0.00
## 49487             49    1361.99
## 49488            988     239.33
## 49489              3       0.00
## 49490            688     136.93
## 49491             91     151.41
## 49492           1109       0.00
## 49493            138     316.03
## 49494            168     631.47
## 49495            279   15758.42
## 49496            679     793.29
## 49497            187     468.57
## 49498            511       0.00
## 49499             95      16.42
## 49500           1360  173253.11
## 49501            545    4580.42
## 49502           1310     360.65
## 49503           1310       0.00
## 49504           1310     187.07
## 49505           1310     226.94
## 49506           1310       0.00
## 49507             63       0.00
## 49508            592     176.67
## 49509           1306     134.19
## 49510           1306     445.89
## 49511             17       0.00
## 49512            155     215.19
## 49513           1195      34.87
## 49514            108    2339.62
## 49515            456    1365.26
## 49516              3       0.00
## 49517           1238     172.35
## 49518            652   60964.76
## 49519           1256  147535.44
## 49520            174    3889.93
## 49521            747     126.54
## 49522             80    4250.46
## 49523           1127     813.76
## 49524             84    2972.45
## 49526            817    3170.89
## 49527            112    1173.21
## 49528             13     342.85
## 49529            144     395.12
## 49530            663     301.10
## 49531            186      60.89
## 49532            367    1067.12
## 49533            111    4883.49
## 49534            152    2664.38
## 49535           1310     181.81
## 49536            126     499.54
## 49537           1167     505.32
## 49538            741      92.61
## 49539           1303    1832.97
## 49540            309     156.12
## 49541            466    1339.30
## 49542            215     883.12
## 49543           1310       0.00
## 49544           1310       0.00
## 49545            124     211.46
## 49546            224     876.31
## 49547             90       0.00
## 49548             87       0.00
## 49549           1299     775.66
## 49550             76      98.09
## 49551            776   15826.81
## 49552             97     201.10
## 49553            538    1697.59
## 49554           1324   51738.87
## 49555            164     180.43
## 49556           1306     202.95
## 49557            186     183.20
## 49558            223     157.68
## 49559            152    2005.98
## 49560           2402    8484.17
## 49561           1309     191.29
## 49562           1309     212.61
## 49563            354     405.53
## 49564            157    1326.31
## 49565           1205     356.00
## 49566            203       0.00
## 49567           1189     537.75
## 49568            106       0.00
## 49569            754     651.19
## 49570            244       0.00
## 49571            959     296.15
## 49572           1299     369.00
## 49573            192    1401.80
## 49574             82       0.00
## 49575            210    1873.37
## 49576            175     803.07
## 49577            124    4821.77
## 49578           1302       0.00
## 49579             90       0.00
## 49580             91      92.68
## 49581            118     231.56
## 49582             89       0.00
## 49583           1303       0.00
## 49584            224    1275.30
## 49585           1127   13409.92
## 49586           1307     146.38
## 49587            760     262.78
## 49588            223     507.33
## 49589            124     346.31
## 49590            224     504.97
## 49591            171     632.96
## 49592           1301       0.00
## 49593            266       0.00
## 49594            851     180.25
## 49595            993   43254.98
## 49596            210     204.76
## 49597            599     442.77
## 49598            790    8594.44
## 49599            117     178.33
## 49600            149     161.16
## 49601            714     100.93
## 49602            235       0.00
## 49603             73     143.21
## 49604            101     115.48
## 49605           1306     448.66
## 49606           1306     167.77
## 49607            124     133.77
## 49608            704   16325.88
## 49609            124     241.97
## 49610           1226     557.14
## 49611              1       0.00
## 49612            679   19267.61
## 49613             62    1066.63
## 49614           1292       0.00
## 49615             74       0.00
## 49616            278    1136.72
## 49617            100     197.42
## 49618             87       0.00
## 49619            218    6825.29
## 49620            229     195.64
## 49621           1302     639.55
## 49622             90      99.97
## 49623            933     426.89
## 49624            118     223.93
## 49625            142     135.69
## 49626           1303     502.11
## 49627           1240       0.00
## 49628             85       0.00
## 49629            211    1841.08
## 49630            124     390.17
## 49631            118     245.51
## 49632           1301    1854.57
## 49633            119     326.46
## 49634             89       0.00
## 49635           1302     380.43
## 49636           1302     447.86
## 49637           1095     560.25
## 49638            360    2286.46
## 49639           1205    3221.62
## 49640            793       0.00
## 49641             75       0.00
## 49642            714    1333.93
## 49643            281    3312.19
## 49644            111     109.54
## 49645           1222     247.38
## 49646             44       0.00
## 49647            114     394.87
## 49648            296    2111.91
## 49649           1076     537.02
## 49650            180    1338.19
## 49651            179     175.89
## 49652            112     339.20
## 49653            940    4106.66
## 49654            266     411.71
## 49655           1301     382.30
## 49656            352     236.63
## 49657           1301     691.79
## 49658           1301      80.62
## 49659            196     114.68
## 49660              6       0.00
## 49661           1223      44.21
## 49662           1246    1373.30
## 49663           1302       0.00
## 49664           1301       0.00
## 49665           1301       0.00
## 49666            233       8.00
## 49667            716     653.38
## 49668           1302       0.00
## 49669             89       0.00
## 49670            160     410.79
## 49671           1226      59.16
## 49672            536      61.34
## 49673           1285     266.97
## 49674           1367    2413.58
## 49675            204     142.99
## 49676            107     315.17
## 49677            134     745.18
## 49678            349     792.70
## 49679            105       0.00
## 49680            119     229.22
## 49681            252    1136.97
## 49682           1698   47239.49
## 49683           1301       0.00
## 49684             89       0.00
## 49685            118     669.28
## 49686           1294    2065.59
## 49687            118    1161.68
## 49688           1299      59.16
## 49689              2       0.00
## 49690            315      92.68
## 49691            153       0.00
## 49692           1009       0.00
## 49693            254     693.20
## 49694            996     332.35
## 49695            147     555.98
## 49696            906   11665.40
## 49697            138     494.31
## 49698            584     126.92
## 49699            411      48.00
## 49700            187     767.14
## 49701            124     163.73
## 49702           1288      64.68
## 49703           1287     229.60
## 49704           1287       0.00
## 49705            256      19.00
## 49706           1286    1875.78
## 49707             70       0.00
## 49708            161     277.91
## 49709             83      22.77
## 49710             49     422.11
## 49711            800       0.00
## 49712            179    1034.34
## 49713           1299    4343.60
## 49714            547     319.59
## 49715           1301     247.91
## 49716             37       0.00
## 49717            385       0.00
## 49718            833    8837.64
## 49719           1142     354.67
## 49720           2429  233530.93
## 49721           1617    1685.29
## 49722            280    1084.50
## 49723           1299     149.92
## 49724           1207       0.00
## 49725            336     323.71
## 49726           1295       0.00
## 49727            112     125.27
## 49728           1293       0.00
## 49729           1293      93.23
## 49730           1053      99.97
## 49731             98     160.20
## 49732            771     944.09
## 49733           1289       0.00
## 49734             35     169.00
## 49735             99     149.31
## 49736           1257       0.00
## 49737            347     647.44
## 49738            158    1110.81
## 49739            665     326.56
## 49740            670       0.00
## 49741             98     208.00
## 49742            114     142.55
## 49743             75       0.00
## 49744            167     333.60
## 49745           1285     132.81
## 49746            224     626.41
## 49747            124     200.46
## 49748            808   63446.86
## 49749           1293       0.00
## 49750            804     152.91
## 49751           1296    2761.31
## 49752           1296     728.97
## 49753            117     355.12
## 49754            819      62.11
## 49755             80    1230.09
## 49756             87     126.74
## 49757             87     126.74
## 49758             87       0.00
## 49759            176     369.95
## 49760            316     464.77
## 49761            296      94.22
## 49762             83       0.00
## 49763            112     246.32
## 49764           1376       0.00
## 49765           1295     213.29
## 49766             82       0.00
## 49767            722       8.00
## 49768           1293     139.63
## 49769            553    1169.23
## 49770             75     282.62
## 49771            105      58.65
## 49772           1476   28435.10
## 49773           1287     483.79
## 49774           1289     116.73
## 49775            137     332.56
## 49776             66       0.00
## 49777            124     328.45
## 49778            222    4649.03
## 49779            203     413.00
## 49780            323    4561.75
## 49781             66     319.23
## 49782             83      32.08
## 49783           1520   21018.66
## 49784           1295    2817.52
## 49785           1295       0.00
## 49786           1293       0.00
## 49787           1293    2845.88
## 49788           1293       0.00
## 49789           1293       0.00
## 49790            103    1926.88
## 49791           1295     468.12
## 49792           1022    3765.59
## 49793             58     259.62
## 49794            653     180.15
## 49795           1230       0.00
## 49796           1011   25971.53
## 49797           1128   10414.39
## 49798            142     327.00
## 49799            904      74.80
## 49800             85     607.10
## 49801            373    1214.61
## 49802           1287       0.00
## 49803            107      98.30
## 49804           1172    5036.96
## 49805           1287     650.76
## 49806           1294     402.21
## 49807            532    1804.37
## 49808            939  162526.25
## 49809           1294    3509.08
## 49810            225      71.35
## 49811           1293      51.49
## 49812           1293       0.00
## 49813            139     694.55
## 49814            518     194.34
## 49815            110     636.28
## 49816           1600   42014.94
## 49817           1292     437.05
## 49818            113     148.51
## 49819           1295    1730.19
## 49820            144      31.17
## 49821            113    1077.27
## 49822             83       0.00
## 49823           2125     527.50
## 49824            685   10588.33
## 49825             90       0.00
## 49826            103     209.74
## 49827           1073       0.00
## 49828            684     994.54
## 49829            180    1863.81
## 49830             84      92.16
## 49831            161     211.43
## 49832           1292       0.00
## 49833            119    2704.58
## 49834           1293     587.07
## 49835           1293     253.25
## 49836            174     173.44
## 49837           1294    1201.14
## 49838            804   17340.94
## 49839           1294     115.83
## 49840            385      64.68
## 49841           1287       0.00
## 49842            177     537.86
## 49843           1285    1080.35
## 49844             76     134.67
## 49845           1286      99.97
## 49846           1289    1353.62
## 49847            444     163.43
## 49848            364     205.16
## 49849            124     231.57
## 49850            512   11491.85
## 49851             86     205.55
## 49852            100      86.17
## 49853            103     110.69
## 49854             73       0.00
## 49855             94     116.16
## 49856            454    2057.83
## 49857            146    1029.01
## 49858            218     176.23
## 49859           1280    2237.43
## 49860            107     117.61
## 49861            244     124.95
## 49862            498    1833.90
## 49863             23     181.56
## 49864           1292    2108.21
## 49865           1292       0.00
## 49866           1108     133.29
## 49867             76       0.00
## 49868           1008     116.08
## 49869           2035   38920.38
## 49870            426    4325.93
## 49871           1287     166.01
## 49872           1274     397.05
## 49873           1293     438.08
## 49875           1292     362.10
## 49876           1292    1127.01
## 49877            510    1050.09
## 49878           1250     296.72
## 49879            160     125.55
## 49880           1170     842.05
## 49881             99     207.18
## 49882            567     241.35
## 49883              4       0.00
## 49884           1514    2097.10
## 49885           1292     148.42
## 49886            370    1516.79
## 49888            646      51.76
## 49889           1287    1073.16
## 49890           1287     329.88
## 49891           1286     498.66
## 49892            200    1273.68
## 49893            134     626.20
## 49894             76     217.31
## 49895           1355   64728.18
## 49896           1289       0.00
## 49897            914     132.86
## 49898            106     276.40
## 49899           1278   11690.20
## 49900           1279      86.42
## 49901            286    1217.17
## 49902            624      44.21
## 49903            100     137.66
## 49904            908   24684.99
## 49905            111      59.16
## 49906            111     133.03
## 49907            641     970.11
## 49908            129     359.73
## 49909            301    1116.85
## 49910           1275     212.15
## 49911             76       0.00
## 49912            399    1545.76
## 49913            105      18.00
## 49914             75       0.00
## 49915            593      67.07
## 49916           1287       0.00
## 49917           1287     202.37
## 49918           1287     285.59
## 49919           1265     594.59
## 49920            683     172.67
## 49921            476       0.00
## 49922            167     211.73
## 49923            587   16153.86
## 49924             75       0.00
## 49925            168     558.83
## 49926           1287     332.40
## 49927           1288     861.69
## 49928            124      87.46
## 49929            351     230.33
## 49930            100     108.00
## 49931            986  104042.34
## 49932           1287       0.00
## 49933            370     411.18
## 49934           1505     231.04
## 49935            103     118.45
## 49936            117    2694.70
## 49937            180     227.92
## 49938             40    2694.88
## 49939            302     118.32
## 49940           1263       0.00
## 49941            301    1938.57
## 49942            578   11084.66
## 49943            120     298.83
## 49944            104     151.97
## 49945           1287      40.00
## 49946             75       0.00
## 49947           1287     540.27
## 49948           1287       0.00
## 49949           1287     416.60
## 49950           1287    1040.52
## 49951            715    7518.04
## 49952            167     284.90
## 49953             76       0.00
## 49954            511   85219.22
## 49955           1282     392.45
## 49956           1282    2730.63
## 49957            433    1126.89
## 49958           1602   79114.42
## 49959             88     181.49
## 49960           1160    1845.06
## 49961             24    2441.99
## 49962            173    1615.76
## 49963             63       0.00
## 49964           1183     151.97
## 49965           1106       0.00
## 49966            124     178.03
## 49967           1275     195.34
## 49968             99      86.17
## 49969            130      83.04
## 49970             99     259.66
## 49971            587     144.99
## 49972            178     205.21
## 49973             98       0.00
## 49974             69     162.58
## 49975           1287     849.50
## 49976           1287     279.42
## 49977           1287    1344.73
## 49978            104     141.24
## 49979            134   15250.84
## 49980              1       0.00
## 49981            134     413.09
## 49982             83     163.93
## 49983            628     371.45
## 49984            341    2927.97
## 49985           1176     311.55
## 49986            133     238.76
## 49987           1231     139.63
## 49988           1131       0.00
## 49989           1264       0.00
## 49990            113     266.72
## 49991            109     198.20
## 49992            402    1109.98
## 49993            100     234.00
## 49994             49       0.00
## 49995           1253   26025.25
## 49996             85      44.21
## 49997             84     141.01
## 49998           1286       0.00
## 49999            130     192.14
## 50000            160     490.91
## 50001           1285     781.17
## 50002            100     163.05
## 50003             43     652.08
## 50004            124     701.01
## 50005           1134     176.36
## 50006             63       0.00
## 50007           1274     810.91
## 50008             62       0.00
## 50009           1070     438.64
## 50010            866       0.00
## 50011           1239     163.96
## 50012             98     444.14
## 50013            189     397.98
## 50015            486     343.04
## 50016            595     103.26
## 50017            967     171.52
## 50018             65     649.97
## 50019            857      90.52
## 50020            100     159.78
## 50021            155    1679.75
## 50022             70       0.00
## 50023           1282    1695.47
## 50024            305     171.18
## 50025            188     932.04
## 50026            120     260.11
## 50027             69      84.68
## 50028           1279    1490.02
## 50029             67       0.00
## 50030            354    1804.67
## 50031           1275      77.49
## 50032            332     931.77
## 50033            120     300.50
## 50034           1247       0.00
## 50035           1254    1887.47
## 50036            378     327.47
## 50037           2971   79205.87
## 50038            127      83.87
## 50039           1100      99.24
## 50040            337     476.67
## 50041            432     809.54
## 50042           1168       0.00
## 50043            245    1512.98
## 50044            647     133.87
## 50045             96     326.60
## 50046            153     667.80
## 50047            139     498.40
## 50048             90     218.29
## 50049            398     107.33
## 50050           1161       0.00
## 50051           1118      44.21
## 50052           1275       0.00
## 50053           1280    1122.35
## 50054           1280     190.38
## 50055           1280       0.00
## 50056           1280     319.21
## 50057           1037    2957.73
## 50058           1279     240.21
## 50059            214     230.75
## 50060            202     570.03
## 50061            158     383.64
## 50062            236     342.49
## 50063            696    1321.39
## 50064            106     321.83
## 50065           1254     177.07
## 50066             63    1115.97
## 50067           1581  152640.98
## 50068            129     267.47
## 50069           1083     925.37
## 50070           1366    6114.40
## 50071            198     722.86
## 50072           1281       0.00
## 50073            288     228.73
## 50074           1282     955.86
## 50075             90      99.97
## 50076             63    5663.13
## 50077            720     308.22
## 50078            919      16.42
## 50079           1280     123.57
## 50080           1279    1931.12
## 50081            581   46269.18
## 50082             76      83.00
## 50083           1275    5799.04
## 50084            780       0.00
## 50085           1359     301.38
## 50086            158    1966.22
## 50087            151     276.85
## 50088            120     166.94
## 50089           1488   90855.82
## 50090           1271    2057.09
## 50091             89       0.00
## 50092           1245     315.28
## 50093            230    1916.10
## 50094            244    3403.06
## 50095            405       0.00
## 50096           1239     962.97
## 50097           1250       0.00
## 50098            302    1490.57
## 50099            116     264.82
## 50100            152    2266.66
## 50101            114      24.24
## 50102            114     660.12
## 50103            114     176.76
## 50104           1268   31161.59
## 50105             81       0.00
## 50106              5       0.00
## 50107             63       0.00
## 50108           1264    1252.62
## 50109            247    1535.77
## 50110            186    1032.04
## 50111            581     702.36
## 50112            201    1577.86
## 50113            341      31.37
## 50114            578   27639.55
## 50115           1274      55.81
## 50116           1274     825.64
## 50117            853     441.54
## 50118           1173     280.94
## 50119            181       0.00
## 50120             91     121.65
## 50121           1028     275.09
## 50122           1275     953.62
## 50123           1279       0.00
## 50124            335     226.39
## 50125             67       0.00
## 50126           1278       0.00
## 50127           1278     234.00
## 50128            581     216.78
## 50129            124     173.10
## 50131            166     194.32
## 50132           1259   25654.64
## 50133           1249     666.93
## 50134            207     976.21
## 50135           1265    3915.00
## 50136             84     173.60
## 50137           1266     205.37
## 50138             84     199.71
## 50139            237    1354.13
## 50140             95       0.00
## 50141           1015    7163.68
## 50142             89       0.00
## 50143            127     136.53
## 50144           2993  150119.26
## 50145           2033  147373.28
## 50146            118     158.03
## 50147            304    9128.27
## 50148            115      99.00
## 50149            629     146.63
## 50150           1250     162.64
## 50151             82       0.00
## 50152             77     370.20
## 50154            140     199.13
## 50155             64     645.59
## 50156              3       0.00
## 50157             32       0.00
## 50158             63       0.00
## 50159           1290   50075.35
## 50160           1275     229.52
## 50161             66       0.00
## 50162             75      49.40
## 50163             52     459.99
## 50164           1275     248.51
## 50165           1275     235.51
## 50166            163    2250.51
## 50167            168     500.72
## 50168           1274     269.20
## 50169            873   16002.16
## 50170            931       0.00
## 50171             29     298.46
## 50172             88      13.68
## 50173           1554  109699.64
## 50174            239     350.05
## 50175           1274     318.30
## 50176           1274     501.96
## 50177           1273      97.75
## 50178            123      59.00
## 50179             45     269.65
## 50180            423       0.00
## 50181           1814    2427.79
## 50182           1275   20619.36
## 50183           1084    4396.28
## 50184            138     321.85
## 50185           1247     243.55
## 50186           1118   93977.19
## 50187           1267       0.00
## 50188           1266     107.32
## 50189             89     252.61
## 50190           1272       0.00
## 50191            120     184.49
## 50192            515      27.30
## 50193           1263       0.00
## 50194           1275     325.61
## 50195            226    1991.57
## 50196            727     521.06
## 50197           1274    2776.71
## 50198           1275    3375.41
## 50199           1254     409.96
## 50200             90       0.00
## 50201           1113     311.39
## 50202           1016   26968.75
## 50203            320    1606.76
## 50204            481     105.46
## 50205           1271     216.31
## 50206             85      71.35
## 50207           1267     297.16
## 50208            116     149.90
## 50209           1178     127.68
## 50210           1264       0.00
## 50211           1264     293.02
## 50212            114     291.44
## 50213            279      74.68
## 50214            147     578.51
## 50215           1274     256.66
## 50216           1273     968.37
## 50217           1273    1653.47
## 50218           1087     303.38
## 50219           1274     551.57
## 50220            122     190.85
## 50221           1273     176.09
## 50222           1037     233.89
## 50223           1197       0.00
## 50224            155     533.20
## 50225           1230   10202.89
## 50226           1259     220.93
## 50227            563    8647.72
## 50228            887   20158.01
## 50229            631    1278.22
## 50230             70    2239.17
## 50231            913   72699.80
## 50232             72       0.00
## 50233            654    1598.21
## 50234            149     663.56
## 50235           1267     605.91
## 50236           1270     465.53
## 50237              4       0.00
## 50238           1272     161.39
## 50239             68       0.00
## 50240            154     418.75
## 50241            221       0.00
## 50242             98     112.08
## 50243           1181     624.47
## 50244            152     571.75
## 50245           1272     293.43
## 50246             89       0.00
## 50247           1270    1054.62
## 50248            120      82.16
## 50249            226    1179.89
## 50250             85       0.00
## 50252            103     187.17
## 50253            103     128.93
## 50254            126     591.50
## 50255           1264    1897.64
## 50256           1258    1235.29
## 50257            209    1044.14
## 50258            169       0.00
## 50259            148    1716.10
## 50260           1037     855.15
## 50261            157       0.00
## 50262           1352     350.49
## 50263            140     391.18
## 50264           1260     196.17
## 50265            308     264.66
## 50266            114      90.42
## 50267            148       0.00
## 50268            632     299.12
## 50269             84      71.35
## 50270             83    2612.78
## 50271           1271       0.00
## 50272            116     150.75
## 50273            116     106.76
## 50274           1267    2431.05
## 50275            120     239.46
## 50276           1271       0.00
## 50277           1271     413.41
## 50278            155    3259.50
## 50279            103       0.00
## 50280           1068     898.23
## 50281            174     186.12
## 50282            750   12537.93
## 50283           1266       0.00
## 50284           1266    2754.01
## 50285             70       0.00
## 50286            134     163.30
## 50287            145     484.01
## 50288            178    3041.87
## 50290           1264     559.55
## 50291            879    1522.66
## 50292           1264     293.78
## 50293             62       0.00
## 50294            575   24363.86
## 50295             82       0.00
## 50296            185       0.00
## 50297           1264     249.42
## 50298           1051      59.16
## 50299           1266      85.90
## 50300            373     951.37
## 50301            212     198.85
## 50302            930     117.60
## 50303            365     608.40
## 50304             64       0.00
## 50305           1267    1641.46
## 50306           1364   30991.54
## 50307             82       0.00
## 50308             82       0.00
## 50309           1264     670.64
## 50310           1169   29755.46
## 50311            246     330.39
## 50312           1266     148.01
## 50313           1266     219.43
## 50314             52     138.85
## 50315           1160     138.00
## 50316            115     133.24
## 50317            103     553.02
## 50318           1232     168.27
## 50319            577    1052.86
## 50320            250    1417.15
## 50321             91     735.00
## 50322            191    2463.48
## 50323            205       0.00
## 50324           1055   23327.35
## 50325            105    1332.30
## 50326           1266   12550.94
## 50327            145     308.08
## 50328           1172     684.33
## 50329            118    1069.67
## 50330           1259       0.00
## 50331             78       0.00
## 50332            438     179.32
## 50333            620   17558.28
## 50334            209       0.00
## 50335            282     231.37
## 50336            130       0.00
## 50337              1       0.00
## 50338            518     253.21
## 50339            138      76.98
## 50340           1582   37550.40
## 50341            205    4113.34
## 50342            272       0.00
## 50343             51    2118.03
## 50344             78       0.00
## 50345           1259     801.74
## 50346            105     599.91
## 50347           1258     312.14
## 50348           1258    2436.93
## 50349           1258     196.79
## 50350             82       0.00
## 50351           1264       0.00
## 50352             81       0.00
## 50353           1264     177.48
## 50354           1244     276.41
## 50355             64       0.00
## 50356            111     123.52
## 50357            105     336.54
## 50358             95     149.52
## 50359            126      97.04
## 50360            530     932.89
## 50361           1261     447.76
## 50362            337      69.16
## 50363           1259     698.31
## 50364           1259       0.00
## 50365           1118    4194.65
## 50366             77       0.00
## 50367            909     400.11
## 50368            143     759.26
## 50369           1261     173.08
## 50370           1261     534.47
## 50371           1261    2210.46
## 50372           1261    2000.93
## 50373           1261    1632.83
## 50374           1261    3862.38
## 50375           1261     958.98
## 50376            329     671.18
## 50377            304     451.18
## 50378             70       0.00
## 50379             62     285.83
## 50380            580    9713.83
## 50381            147     212.23
## 50382             71       0.00
## 50383            741     421.94
## 50384            251      79.33
## 50385            379       0.00
## 50386            137     117.82
## 50387            317    1598.39
## 50388             80      54.50
## 50389            154    7044.09
## 50390           1261       0.00
## 50391           1258       0.00
## 50392            364    2946.81
## 50393              1       0.00
## 50394           1249       0.00
## 50395           1249       0.00
## 50396           1249   14954.94
## 50397           1250    1199.39
## 50398           1250       0.00
## 50399            167     836.80
## 50400            620       0.00
## 50401           1258       0.00
## 50402           1258   50454.17
## 50403           1259     126.21
## 50404           1254     214.22
## 50405           1252       0.00
## 50406            609     460.78
## 50407            549    2739.75
## 50408            123     210.52
## 50409            656     456.35
## 50410           1247     369.56
## 50411             70       0.00
## 50412            859    1421.16
## 50413            111     118.97
## 50414           1239    1119.55
## 50415            119     134.93
## 50416            230      74.68
## 50417            101     257.57
## 50418             55     353.48
## 50419            448     284.50
## 50420           1254       0.00
## 50421            815     990.43
## 50422            175     892.01
## 50423            350   27735.47
## 50424            103     102.54
## 50425            377    6912.57
## 50426             71       0.00
## 50428              1       0.00
## 50429            681     171.17
## 50430            918     105.48
## 50431            156     110.73
## 50432            109     217.84
## 50433            140     193.46
## 50434           1172     455.86
## 50435            695      72.01
## 50436            163     788.00
## 50437           1231     507.44
## 50438             82       0.00
## 50439           1023    3986.87
## 50440            109     366.15
## 50441            386     343.98
## 50442            171    1132.04
## 50443             77       0.00
## 50444           1245    7785.64
## 50445            336     740.46
## 50446           1007   31564.74
## 50447           1257    1633.53
## 50448            119       0.00
## 50449            165     152.35
## 50450            192     440.30
## 50451           1254       0.00
## 50452            708   40999.70
## 50453            161     466.15
## 50455           1244     245.79
## 50456            109     170.03
## 50457            283     197.87
## 50458            269     347.50
## 50459            168      44.21
## 50460            119     590.26
## 50461            380       0.00
## 50462            111     100.68
## 50463           1245      74.68
## 50464            942   16898.26
## 50465           1139     116.00
## 50466            481    1443.16
## 50467            111     205.19
## 50468            763     173.09
## 50469            958     262.21
## 50470           1246      48.93
## 50471           1252    3998.05
## 50472            355    1493.11
## 50473           1252     521.09
## 50474             96     402.73
## 50475           1254     195.18
## 50476            119     306.00
## 50477            901    3648.07
## 50478            366    2237.89
## 50479           1535   27743.26
## 50480            106     265.07
## 50481           1257     223.52
## 50482            132     797.49
## 50483            108     275.66
## 50484             62       0.00
## 50485            477     204.61
## 50486            111      98.13
## 50487            125     202.93
## 50488            343     212.31
## 50489            127     215.76
## 50490           1060     177.29
## 50491            177       0.00
## 50492             49     484.04
## 50493           1224       0.00
## 50494            126     166.58
## 50495            116     455.07
## 50496           1252     150.73
## 50497           1200    2679.83
## 50498           1252     266.39
## 50499            106     177.85
## 50500            106      37.69
## 50501           1254     505.26
## 50502           1247    1153.80
## 50503            132    1334.23
## 50504            208     150.00
## 50505            132    1847.76
## 50506            131    1653.09
## 50507             95       7.84
## 50508            126    1204.57
## 50509             46     407.43
## 50510            251     396.89
## 50511            176     340.69
## 50512            256     995.61
## 50513            126     397.47
## 50514           1240     555.84
## 50515            101    1275.03
## 50516            111     121.20
## 50517             62       0.00
## 50518            922     493.30
## 50519           1030     211.82
## 50520           1815   94929.80
## 50521             94      94.17
## 50522            489     207.90
## 50523           1251       0.00
## 50524           1252     244.01
## 50525            101      71.06
## 50526           1007     293.61
## 50527           1252    1546.66
## 50528           1250   21846.65
## 50529           1254     316.75
## 50530           1252     525.87
## 50531           1252       0.00
## 50532            146    1352.16
## 50533             83    7932.83
## 50534             78       0.00
## 50535            547    5252.53
## 50536            132     472.16
## 50537           1252    1987.73
## 50538            159    2670.18
## 50539            611     210.44
## 50540           1254     918.87
## 50541            221    1164.43
## 50542           1246       0.00
## 50543             95     422.43
## 50544            278    3988.21
## 50545            164     762.38
## 50546           1204       0.00
## 50547            148     415.53
## 50548           1056     972.55
## 50549            132     342.76
## 50550            252     230.47
## 50551           1254     111.72
## 50552           1254    6986.39
## 50553            881   35637.69
## 50554           1253     640.22
## 50555             85     111.98
## 50556            133    1171.71
## 50557           1238       0.00
## 50558             89     133.47
## 50559            675   17040.64
## 50560           1252    1047.80
## 50561              8       0.00
## 50562           1252     795.37
## 50563            132     774.66
## 50564           1252    1186.42
## 50565           1252      95.94
## 50566            285      51.49
## 50567             98     870.06
## 50568           1042     941.82
## 50569           1250    2481.10
## 50570            847    2089.97
## 50571            130     215.62
## 50572            129     219.00
## 50573            545     328.07
## 50574           1250       0.00
## 50575            141       0.00
## 50576            203    1391.66
## 50577             95     137.66
## 50578            797     196.14
## 50579           1246     145.89
## 50580            154     347.12
## 50581           1247    1912.78
## 50582           1201    1611.90
## 50583           1247     368.75
## 50584           1163       0.00
## 50585            935    2165.07
## 50586            606    2307.87
## 50587            672      25.59
## 50588           1238       0.00
## 50589             85       0.00
## 50590             81      98.30
## 50591            111     326.26
## 50592            111      59.16
## 50593           1230   58645.77
## 50594           1222     317.80
## 50595            479   10502.29
## 50596            132     127.35
## 50597            139    1503.61
## 50598             92     251.89
## 50599            162     749.21
## 50600             61       0.00
## 50601            126     243.29
## 50602             94      98.30
## 50603           1246       0.00
## 50604           1246       0.00
## 50605           1246     684.95
## 50606            401     115.45
## 50607           1246     461.45
## 50608            146     311.16
## 50609           1249     410.13
## 50610             96      55.62
## 50611            158     266.34
## 50612           1250     950.60
## 50613           1250    4692.20
## 50614            141     234.80
## 50615            131     270.04
## 50616           1252     408.31
## 50617            249       0.00
## 50618           1054     216.13
## 50619            148     353.53
## 50620            214     257.88
## 50621            241     282.15
## 50622           1238    1071.33
## 50623             88       0.00
## 50624             88       0.00
## 50625            227     155.00
## 50626            179     732.20
## 50627             89       0.00
## 50628           1240     183.95
## 50630            315     161.50
## 50631           1250     847.37
## 50632            623    3593.93
## 50633             99     119.24
## 50634           1245    1643.47
## 50635           1246   11241.09
## 50636           1726     987.77
## 50637           1246     184.74
## 50638            227    5703.34
## 50639           1247       0.00
## 50640             93     111.28
## 50641            748       0.00
## 50642           1081     101.32
## 50643           1245    1356.06
## 50644            170     141.50
## 50645           1240      99.84
## 50646            177       0.00
## 50647           1238     424.63
## 50648            155       0.00
## 50649             73       0.00
## 50650           1226    1086.97
## 50651             89     137.33
## 50652           1197   39012.41
## 50653           1244     339.39
## 50654            620     519.96
## 50655           1243       0.00
## 50656            123     240.12
## 50657           1247     211.26
## 50658            126     427.83
## 50659             95      19.50
## 50660             95     153.00
## 50661           1246    1831.78
## 50662            743       0.00
## 50663           1492     231.24
## 50664           1249     541.32
## 50665           1250    1174.42
## 50666            157     116.20
## 50667            496     214.64
## 50668            497      84.68
## 50669            118      81.99
## 50670            401    1299.15
## 50671            125     259.49
## 50672           1351     497.26
## 50673            578   46432.95
## 50674            151     298.40
## 50675             84    2825.19
## 50676           1240    1031.40
## 50677             41      74.68
## 50678            302    1798.86
## 50679           1244     173.94
## 50680            160    1053.46
## 50682           1246      84.54
## 50683            148     172.58
## 50684             93     827.94
## 50685           1240       0.00
## 50686              4       0.00
## 50687           1230       0.00
## 50688             95     158.49
## 50689           1246     597.78
## 50690            158     235.13
## 50692           1169     534.05
## 50693            129      86.17
## 50694           1604   24197.35
## 50695           1177       0.00
## 50696            345     706.76
## 50697           1238       0.00
## 50698           1238      94.22
## 50699             86       0.00
## 50700            136     130.05
## 50701            268     917.65
## 50702           1240       0.00
## 50703           1240     193.47
## 50704            731    3481.54
## 50705           1240     210.41
## 50706           1240    5676.55
## 50707           1078   35914.43
## 50708           1259   46147.41
## 50709             72       0.00
## 50710            134     373.64
## 50711            116     168.31
## 50712            377   12468.95
## 50713            125     489.77
## 50714            253     134.64
## 50715            306    3072.87
## 50716            123     250.18
## 50717             42      95.98
## 50718            126     535.80
## 50719            191    1743.91
## 50720           1246     467.33
## 50721            125      71.35
## 50722            523    1494.04
## 50723            638       0.00
## 50724           1240    6193.77
## 50725           1312    1587.03
## 50726            120      62.55
## 50727           1240     105.22
## 50728            179     171.46
## 50729            188     884.28
## 50730           1233     190.62
## 50731           1238      59.16
## 50732           1231     821.74
## 50733             79       0.00
## 50734            212   35651.64
## 50735             94       7.93
## 50736           1246     250.59
## 50737             95     125.76
## 50738             92     169.43
## 50739            690      66.63
## 50740            719     675.83
## 50741           1244     249.95
## 50742             77    2532.07
## 50743            390     337.65
## 50744            366    2163.34
## 50745            411      86.17
## 50746           1127      46.37
## 50747           1230       0.00
## 50748           1217     147.50
## 50749           1230       0.00
## 50750           1230       0.00
## 50751            884      60.00
## 50752           1137     244.55
## 50753            111     233.14
## 50754           1231       0.00
## 50755            419    2009.33
## 50756            262    2241.34
## 50757            129     270.13
## 50758           1240     289.88
## 50759           1240     544.57
## 50760           1292  184049.58
## 50761           1240   34821.65
## 50762           1226       0.00
## 50763            109     358.55
## 50764           1223    3548.94
## 50765            376    6728.17
## 50766             67       0.00
## 50767            120     193.07
## 50768            123      18.74
## 50769           1203       0.00
## 50771            123    1568.44
## 50773            700    6515.67
## 50774            140     310.58
## 50775            530      58.01
## 50776            377     388.16
## 50777            418     293.47
## 50778            614    1201.41
## 50779           1240       0.00
## 50780           1239       0.00
## 50781            574     581.28
## 50782            818       0.00
## 50783            232     197.36
## 50784            304       0.00
## 50785            171    1373.81
## 50786             85      58.01
## 50788            193      58.01
## 50789            117      81.99
## 50790           1231       0.00
## 50791            149     140.65
## 50792             93       0.00
## 50793              1       0.00
## 50794            133     492.54
## 50795            307     296.18
## 50796           1337     978.29
## 50797            922     576.26
## 50798            442     192.94
## 50799           1190    1293.48
## 50800           1231     420.26
## 50801           1231     427.33
## 50802             37     125.27
## 50803           1217     123.52
## 50804             86       0.00
## 50805           1236   40442.38
## 50806            241     802.76
## 50807            384    1066.30
## 50808            443    1497.85
## 50809           1240     794.29
## 50810            720    9454.06
## 50811             74       0.00
## 50812             98     161.85
## 50813             66       0.00
## 50814             61     135.13
## 50815             61       0.00
## 50816           1239     374.70
## 50817             35     187.29
## 50818            799      20.25
## 50819            150     417.73
## 50820           1237     316.56
## 50821             85     110.73
## 50822           1237       0.00
## 50823            754    4951.68
## 50824           1233       0.00
## 50826           1235    3555.65
## 50827           1236     149.13
## 50828           1127       8.00
## 50829           1174     150.34
## 50830             64       0.00
## 50831            116     160.36
## 50832           1233     423.39
## 50833             57       0.00
## 50834            145     313.00
## 50835            674   14142.73
## 50836             86      76.36
## 50837            201     280.11
## 50838             83       0.00
## 50839             79       0.00
## 50840             79       0.00
## 50841            118     131.44
## 50842             87       0.00
## 50843            186    1035.01
## 50844            108     213.14
## 50845           1507     883.90
## 50846            199     255.30
## 50847            110      76.98
## 50848            179      76.98
## 50849            110      76.98
## 50850           1226    3587.39
## 50851            105     109.54
## 50852             78       0.00
## 50853             74     251.57
## 50855           1226    1022.98
## 50856           1140     362.42
## 50857            116     609.29
## 50858           1187   32843.01
## 50859            104     180.09
## 50860            114     981.65
## 50861             97     591.42
## 50862             87       7.03
## 50863             87       0.00
## 50864            545       5.24
## 50865             88       8.92
## 50866           1230    5153.06
## 50867            349       0.00
## 50868            128    2931.04
## 50869            321    1056.00
## 50870            176     205.31
## 50871             86       0.00
## 50872           1237     187.96
## 50874            127    3335.99
## 50875            365    1731.74
## 50876           1139      46.37
## 50877            337       0.00
## 50878           1155   25554.92
## 50879           1210     199.15
## 50880            637   75000.88
## 50881            441     455.38
## 50882            499   12802.32
## 50883            628     974.87
## 50884            276     506.34
## 50885            980   18204.97
## 50886            117     213.28
## 50887            498    1599.64
## 50888             54     172.81
## 50889           1171      59.16
## 50890            146       0.00
## 50891           1218     181.86
## 50892            248     451.35
## 50893           1224     155.88
## 50894            131     189.08
## 50895             78     169.07
## 50896           1226      88.42
## 50897           1078   11042.16
## 50898            599    1591.48
## 50899            130     195.00
## 50900            986    1377.85
## 50901             88      49.00
## 50902           1226     330.82
## 50903            134     755.32
## 50904           1247   31019.16
## 50905            736      12.13
## 50906            517     315.30
## 50907           1920   80172.60
## 50908           1217    2397.55
## 50909            343      79.30
## 50910           1231       0.00
## 50911           1051     113.00
## 50912            145     160.86
## 50913            205    1274.83
## 50914             85       0.00
## 50915            191    3222.23
## 50916           1233       0.00
## 50917           1233    3565.35
## 50918           1232    1341.62
## 50919           1232     119.87
## 50920            208     410.98
## 50921             82       0.00
## 50922           1208     256.35
## 50923            310     677.46
## 50924           1230     149.70
## 50926            156    1394.55
## 50927            704     626.17
## 50928             73       0.00
## 50929           1140   96072.88
## 50930             74       0.00
## 50931            704     246.00
## 50932            132     203.42
## 50933            477    7294.40
## 50934            106     227.38
## 50935            137    1129.33
## 50936            109     244.06
## 50937            125     113.13
## 50938              6       0.00
## 50939           1140     325.95
## 50940            261    1037.42
## 50941           1225     256.11
## 50942           1782  122423.46
## 50943           1231     648.39
## 50944            973    1112.73
## 50945           1233      89.85
## 50946            638      24.60
## 50947           1100     209.15
## 50948             84      74.01
## 50949           1407   10224.34
## 50950           1464   15971.53
## 50951            164     552.94
## 50952            106     338.38
## 50953           1233     373.34
## 50954            106     151.21
## 50955            133     352.16
## 50956            163       0.00
## 50957            105     377.58
## 50958            105     479.11
## 50959            127     667.30
## 50960            140     665.82
## 50961            784     497.56
## 50962            169     914.74
## 50963           1231    1076.37
## 50964            110     239.28
## 50965             79       0.00
## 50966           1231     190.39
## 50967            112     442.17
## 50968            116     153.88
## 50969            805    1260.84
## 50970             65   20500.00
## 50972           1012     221.92
## 50973            117       0.00
## 50974           1210   23811.86
## 50975             90       0.00
## 50976           1208     691.27
## 50977           1203    2266.36
## 50978           1231       0.00
## 50979           1230       0.00
## 50980            151     120.97
## 50981           1230       0.00
## 50982            138     228.80
## 50983             99     365.07
## 50984            296    1694.78
## 50985            731      51.49
## 50986           1225     290.37
## 50987            215    1159.33
## 50988            245     665.16
## 50989            876      90.19
## 50990             27     143.13
## 50991            241     396.93
## 50992           1226     155.77
## 50993           1229       0.00
## 50994             69     519.13
## 50995           1226    2086.04
## 50996           1296  114978.18
## 50997            463    1273.47
## 50998            391    1045.23
## 50999           1197   41988.61
## 51000             77     531.53
## 51001            750     126.91
## 51002           1030     367.03
## 51003             16       0.00
## 51004           1140     377.37
## 51005            106     224.16
## 51006           1513   17398.24
## 51007            871     746.56
## 51008            109     209.81
## 51009            110     272.22
## 51010             78       0.00
## 51011           1226     166.56
## 51012           1226   15602.32
## 51013           1226       0.00
## 51014            508   11013.20
## 51015           1223     106.57
## 51016            132     845.68
## 51017             30     304.89
## 51018           1225     394.53
## 51019            130     567.15
## 51020            129     144.18
## 51021            157    1185.94
## 51022             96      20.39
## 51023            237       0.00
## 51024            113     560.99
## 51025            242     167.00
## 51026           1359   41908.47
## 51027           1216       0.00
## 51028             41     118.00
## 51029            207     120.17
## 51030            848   74576.81
## 51031            103     107.50
## 51032            203    1299.25
## 51033             73       0.00
## 51034            109     116.11
## 51035            109     179.72
## 51036            853     120.48
## 51037            133     574.95
## 51038           1139     233.57
## 51039            493       0.00
## 51040            222       0.00
## 51041            944     528.60
## 51042             91     126.54
## 51043             83       0.00
## 51044             77       0.00
## 51045           1226     783.97
## 51046           1225     142.45
## 51047           1223    2167.46
## 51048           1222     346.28
## 51049            190     316.10
## 51050           1028     152.81
## 51051           1222     248.55
## 51052            133    2501.03
## 51053             66       0.00
## 51054            195    9406.22
## 51055             78       0.00
## 51056            106     125.25
## 51057            391   16149.02
## 51058           1148     121.22
## 51059           1208       0.00
## 51060            594   22759.02
## 51061            953   20412.50
## 51062            102     562.65
## 51063            858     300.34
## 51064            240    1247.90
## 51065            248     810.43
## 51066            260     240.49
## 51067           1167       0.00
## 51068            574     254.38
## 51069            161    2667.25
## 51070           1224     202.59
## 51071           1209     133.51
## 51072             71     912.26
## 51073           1224     270.48
## 51074           1224     825.97
## 51075           1223      51.49
## 51076            105      74.45
## 51077             99     513.66
## 51078            280    9310.08
## 51079            260    8169.89
## 51080           1434   34887.92
## 51081             21     299.71
## 51082           1145    2418.43
## 51083           1140     321.88
## 51084            789     164.67
## 51085            372     185.98
## 51086           1210     321.39
## 51087            118     131.59
## 51088             36       0.00
## 51089           1058      86.17
## 51090            113      95.37
## 51091             28      20.35
## 51092           1210       0.00
## 51093             88     207.28
## 51094            112     183.07
## 51095            113      92.14
## 51096           1139     563.83
## 51097            337     217.02
## 51098            545     184.00
## 51099            187     395.91
## 51100            158     382.48
## 51101            102     230.25
## 51102            160     213.14
## 51103            158     143.44
## 51104            117     636.53
## 51105            906     179.94
## 51106            116     330.58
## 51107            102     225.77
## 51108           1222       0.00
## 51109           1222     376.99
## 51110           1222     913.15
## 51111           1223     442.87
## 51112            190   16488.38
## 51113            236     268.46
## 51114            477     584.85
## 51115             98      57.69
## 51116           1222     223.48
## 51117            350    2000.86
## 51118            460   14641.89
## 51119            149     136.53
## 51120            127     225.87
## 51121           1215       0.00
## 51122           1216     239.17
## 51123           1133       0.00
## 51124             85       0.00
## 51125             85       0.00
## 51126             84      59.16
## 51128            362       0.00
## 51129           1197    5869.58
## 51130            120     233.70
## 51131            105     793.00
## 51132            110      95.94
## 51133           1209    5675.36
## 51134            117     133.75
## 51135           1208       0.00
## 51136            813     167.37
## 51137            174     748.48
## 51138           1203     144.94
## 51139           1145       0.00
## 51140             96     183.20
## 51141           1216    1663.41
## 51142           1215       0.00
## 51143           1215       0.00
## 51144           1215       0.00
## 51145           1043     611.51
## 51146            125      27.88
## 51147            305     409.15
## 51148            120    2868.00
## 51149            326     345.94
## 51150           1074       4.93
## 51151           1221       0.00
## 51152           1577   44886.10
## 51153             99     192.43
## 51154             98     211.37
## 51155           1219     437.06
## 51156            528    2185.00
## 51157            865      72.50
## 51158            158     732.40
## 51159             99      25.00
## 51160           1218       0.00
## 51161            130     244.69
## 51162           1039  106443.23
## 51163            135     331.73
## 51164           1215     145.48
## 51165            327    3145.34
## 51166           1217     349.37
## 51167           1145     106.01
## 51168            245     339.89
## 51169           1062    2592.48
## 51170            104     149.31
## 51171           1210     478.11
## 51172            279    2529.26
## 51173           1168    5636.56
## 51174            660    2458.15
## 51175             66       0.00
## 51177           1218     285.38
## 51178            234    4302.34
## 51179            273     104.35
## 51180            735   18708.98
## 51181           1217    7146.63
## 51182            203   19230.41
## 51183            218    1745.02
## 51184            169     573.63
## 51185             87     246.12
## 51186            665    1500.28
## 51187            119     589.28
## 51188            691    1167.26
## 51189            387     110.31
## 51190           1216    1017.48
## 51191           1090     973.38
## 51192            111     260.26
## 51193           1218     492.50
## 51194            729    2549.95
## 51195           1030    1066.84
## 51197           1219    1061.04
## 51198           1215      86.17
## 51199           1215     182.73
## 51200           1215     727.17
## 51201           1129      58.01
## 51202           1093     242.28
## 51203            179     447.78
## 51204            137     105.30
## 51205            633     103.71
## 51206           1180     268.00
## 51207              1       0.00
## 51208            239      90.77
## 51209            224     189.10
## 51210           1215     440.22
## 51211            681  114597.26
## 51212            778     243.59
## 51213           1217     450.70
## 51214           1217     354.47
## 51215           1217      86.17
## 51216           1217   13738.77
## 51217           1216    3294.58
## 51218           1217       0.00
## 51219             82    2982.75
## 51220            154     797.82
## 51221             95     105.89
## 51222            764     254.62
## 51223           1211       0.00
## 51225            290     146.79
## 51226            148    1149.54
## 51227            209     372.58
## 51228           1100     104.03
## 51229           1054     307.65
## 51230            375   42730.45
## 51231            109     891.45
## 51232            136     210.67
## 51233            126    1194.45
## 51234           1204       0.00
## 51235             74     339.89
## 51237            387     961.43
## 51238           1196     541.00
## 51239           1132     992.87
## 51240           1215     439.37
## 51241            224      18.85
## 51242             64       0.00
## 51243           1100     143.09
## 51244             71     143.83
## 51245           1181    1009.53
## 51246           1253    1119.02
## 51247           1169     581.05
## 51248              6       0.00
## 51249            341       0.00
## 51250             74       0.00
## 51251            954     107.17
## 51252             95      66.94
## 51253           1198    3256.93
## 51254           1106     339.66
## 51255            414     338.88
## 51256             89       0.00
## 51257             80      93.50
## 51258            116     422.46
## 51259           1210       0.00
## 51260             89    1242.58
## 51262            117     168.22
## 51263           1210    1780.58
## 51264           1210     174.04
## 51265           1210    1088.07
## 51266           1210     235.99
## 51267           1210     189.94
## 51268            102    1367.18
## 51269           1290  223657.53
## 51270            106      99.97
## 51271             85       0.00
## 51272            172     530.46
## 51273            212     577.06
## 51274            111     173.18
## 51275              4       0.00
## 51276            113     137.66
## 51277            644     685.61
## 51278            207     153.50
## 51279            768     453.79
## 51280            234    3635.68
## 51281           1210     279.89
## 51282           1210    1703.73
## 51283            144     170.38
## 51284             82       0.00
## 51285            136    3747.02
## 51286           1210     444.56
## 51287            119     118.12
## 51288            137     214.85
## 51289            202    2068.66
## 51290            461     434.95
## 51291            130       0.00
## 51292           1094   57318.06
## 51293           1210      91.96
## 51294           1209     323.36
## 51295           1195    1316.13
## 51296           1210     202.31
## 51297           1210     285.42
## 51298           1201    2776.79
## 51299            214     277.86
## 51300           1203    1678.86
## 51301             96    1104.60
## 51302             49       0.00
## 51303           1146      90.77
## 51304            145     201.97
## 51305           1093    2603.30
## 51306            105       0.00
## 51307            942     148.08
## 51308            113     374.95
## 51309             97      13.84
## 51310            833       0.00
## 51311            383   11847.11
## 51312             82      88.05
## 51313             34     362.35
## 51314             87    1136.22
## 51315            276       0.00
## 51316            487     257.77
## 51317           1041       0.00
## 51318           1037       0.00
## 51319            590    2750.00
## 51320            100     454.78
## 51321           1204     133.32
## 51322            112      78.26
## 51323           1205    1522.42
## 51324           1205     407.57
## 51325            959    2447.52
## 51326           1198     836.56
## 51327           1087   17344.40
## 51328           1210    2314.29
## 51329            252     153.89
## 51330             88      99.97
## 51331           1208    5690.13
## 51332            125    1165.49
## 51333            166    4515.00
## 51334            261     271.44
## 51335           1191    3748.00
## 51336            440    1269.66
## 51337           1208     882.36
## 51338           1209       0.00
## 51339            464    1372.46
## 51340             98      21.67
## 51341            512     517.36
## 51342           1205     782.49
## 51343            158     831.72
## 51344            174     566.89
## 51345             97      96.29
## 51346            337    2866.69
## 51347           1204     103.48
## 51348            186     294.17
## 51349             71       0.00
## 51350             24       0.00
## 51351           1191     111.48
## 51352            447    1084.94
## 51353           1163     137.66
## 51354           1176    1575.42
## 51355           1009      59.73
## 51356           1204       0.00
## 51357           1205    8491.92
## 51358             78       0.00
## 51359            535    2221.92
## 51360            983    9806.74
## 51361           1201   66687.66
## 51362           1201       0.00
## 51363            216     137.20
## 51364             88       0.00
## 51365            208     962.45
## 51366           1194    5742.48
## 51367           1062    1787.74
## 51368            273       0.00
## 51369            704     455.75
## 51370            291       0.00
## 51371            124     387.67
## 51372           1117     117.08
## 51373           1202    4466.59
## 51374           1205     372.72
## 51375           1205       0.00
## 51376            408    9213.94
## 51378            111     455.54
## 51379            686     695.00
## 51380            143     362.50
## 51381           1204     300.92
## 51382            291     503.94
## 51383            128     176.45
## 51384             34     202.81
## 51385             99      96.72
## 51386           1161    1987.80
## 51387             83     112.44
## 51388            196     510.92
## 51389            119     442.19
## 51390            153     182.21
## 51391              7       0.00
## 51392           1202     803.43
## 51393            336     917.15
## 51394            421     186.05
## 51395           1204     380.01
## 51396            948     131.68
## 51397           1184    1716.27
## 51398           1038    1268.91
## 51399            620     166.32
## 51401           1067     368.74
## 51402             71       0.00
## 51403            103     215.32
## 51404            103     103.57
## 51405            100      46.37
## 51406            805     620.25
## 51407            113     162.14
## 51408            109     269.16
## 51409             16     211.76
## 51410           1203    3253.20
## 51411           1203      96.29
## 51412           1203     139.63
## 51413            665    1313.59
## 51414            104     432.00
## 51415            147    1059.38
## 51416            517     154.89
## 51417            734    4502.44
## 51418            357     246.48
## 51419            132      74.68
## 51420             97      80.68
## 51421           1169      82.11
## 51422            344     165.68
## 51423           1168     385.77
## 51424             88    1347.12
## 51425           1125     426.99
## 51426            105     769.62
## 51427           1202    5990.98
## 51428            457     105.30
## 51429             77       0.00
## 51430            814     342.42
## 51431             43       0.00
## 51432             20       0.00
## 51433            510   24576.39
## 51434           1196     845.69
## 51435            947    7744.40
## 51436            103     227.28
## 51437            295      74.68
## 51438           1105     947.71
## 51439            129     982.01
## 51440            123    1488.27
## 51441            153     600.10
## 51442            708    4380.67
## 51443             63       0.00
## 51444            690    3007.27
## 51445           1168     224.80
## 51446           1901   69831.76
## 51447           1066     184.45
## 51448            528    3059.26
## 51449           1196     261.15
## 51450           1201     404.01
## 51451           1202     370.14
## 51452           1202      78.70
## 51453            145    2829.05
## 51454             82       0.00
## 51455            180    4452.91
## 51456              1       0.00
## 51457           1093     217.53
## 51458            662       0.00
## 51459            123     834.54
## 51460            129     456.39
## 51461             98      51.49
## 51462           1190     617.93
## 51463           1191     347.14
## 51464            297    2173.81
## 51465            147     322.38
## 51466           1112     515.18
## 51467            618    2969.71
## 51468            429    1946.85
## 51469           1195     416.67
## 51470           1196     686.76
## 51471            913       0.00
## 51472           1181     306.00
## 51473            195     481.45
## 51474            113    1489.13
## 51475           1197       0.00
## 51476            190    7536.22
## 51477            780    4460.05
## 51478            630    1180.36
## 51479            530     900.86
## 51480            177     922.77
## 51481            147    1365.94
## 51482           1180     363.70
## 51483           1125     244.24
## 51484            314     490.47
## 51485            298     321.10
## 51486           1062       0.00
## 51487             94     103.46
## 51488            629    1466.54
## 51489            136     250.76
## 51490           1182     331.73
## 51491             97     274.49
## 51492            518    1345.12
## 51493            154     319.72
## 51494            103     126.24
## 51495            133     865.18
## 51496            207     182.63
## 51497            146    1023.55
## 51498             76       0.00
## 51499            302    2797.37
## 51500            137     142.29
## 51501            695     780.69
## 51502           1180     388.77
## 51503           1139       0.00
## 51504            131     490.32
## 51505           1175     450.68
## 51506            120     686.12
## 51507           1208    3019.07
## 51508           1191     100.77
## 51509             84       0.00
## 51510            401   24585.36
## 51511           1064       0.00
## 51512             69       0.00
## 51513            190     652.47
## 51514             84     786.00
## 51515             98     192.13
## 51516             60     102.60
## 51517           1037       0.00
## 51518            560     947.08
## 51519           1148     432.11
## 51520            319     182.13
## 51521             81       0.00
## 51523            190     108.89
## 51524             89       8.97
## 51525            373    4507.44
## 51526             92     143.34
## 51527           1191   20760.90
## 51528           1215  165052.67
## 51529            163     261.39
## 51530            102     160.97
## 51531            239    1580.38
## 51532           1022     161.32
## 51533            974   25739.84
## 51534            506    5786.29
## 51535           1169       0.00
## 51536           1181     130.78
## 51537             89      83.36
## 51538             89     110.95
## 51539            180      93.42
## 51540           1180     534.05
## 51541           1176     229.24
## 51542            195    1573.62
## 51543           1084      66.90
## 51544           1177     450.71
## 51545           1177     331.44
## 51546           1301    2597.69
## 51547           1181       0.00
## 51548           1169    1197.60
## 51549            216     227.42
## 51550           1167   15832.46
## 51551            999      74.66
## 51552            361     421.16
## 51553           1191     194.64
## 51554            182     165.78
## 51555            255     348.22
## 51556             64       0.00
## 51557             64       0.00
## 51558            145      59.16
## 51559            141    1063.06
## 51560            177     137.03
## 51561           1189    2957.18
## 51562            108     277.41
## 51563            894      90.77
## 51564            185    2345.52
## 51565            190    1009.65
## 51567             98      66.94
## 51568           1190       0.00
## 51569           1191       0.00
## 51570           1191     151.54
## 51571            194    1044.07
## 51572             51     779.89
## 51573            242      74.68
## 51574            178      34.77
## 51575            790     752.62
## 51576            297    2349.88
## 51577           1180     149.84
## 51578            469   16547.64
## 51579            400     126.24
## 51580            122     244.66
## 51581            150     774.34
## 51582           1177     472.07
## 51583           1175       0.00
## 51584             63     828.00
## 51585           1190     133.56
## 51586            786  119259.36
## 51587            881   38668.60
## 51588            456       0.00
## 51589            708    1652.78
## 51590           1191       0.00
## 51591           1382     452.97
## 51592            146     202.95
## 51593             89     498.87
## 51594           1181   20112.38
## 51595            115      72.01
## 51596             74       0.00
## 51597             90     338.58
## 51598            756    3864.11
## 51599             79      86.17
## 51600           1184     372.56
## 51601            102     275.60
## 51602           1085    1247.54
## 51603            151     643.55
## 51604             63       0.00
## 51605            847   25470.27
## 51606            240    3028.99
## 51607             78       0.00
## 51608           1181    4430.49
## 51609           1181       0.00
## 51610            219     348.02
## 51611            114      74.68
## 51612             65       0.00
## 51613            895    1091.50
## 51614            800    1029.32
## 51615             81       0.00
## 51616            115     557.40
## 51617            260    1844.08
## 51618            132     759.07
## 51619             90     134.82
## 51620            121    1077.91
## 51621            895     544.80
## 51622            573     210.17
## 51623           1184     274.31
## 51624           1184    1891.77
## 51625             42       0.00
## 51626            176     312.92
## 51627             65       0.00
## 51628            282      30.07
## 51629            865    7827.37
## 51630           1168     500.22
## 51631            326    4177.25
## 51632           1167     496.58
## 51633           1181    3227.64
## 51634           1030     243.91
## 51635            965       0.00
## 51636            299       0.00
## 51637           1146    1742.17
## 51638            506       0.00
## 51639            213     736.42
## 51640            973      54.50
## 51641           1126     218.42
## 51642           1734  105921.37
## 51643            294    3236.05
## 51644            118      83.00
## 51645             61       0.00
## 51646            418    1628.22
## 51647           1181    1292.92
## 51648            125    1099.19
## 51649             81     163.35
## 51650            138     219.93
## 51651           1169     577.04
## 51652            131     303.71
## 51653             91      18.57
## 51654           1183     458.12
## 51655            711     235.00
## 51656           2604   21664.75
## 51657            184     125.27
## 51658            675    1914.88
## 51659             82       0.00
## 51660           1175     222.17
## 51661            144     247.00
## 51662            365     159.12
## 51663            169     444.39
## 51664            169     235.22
## 51665           1173       0.00
## 51666            377   12786.94
## 51667            691    5032.93
## 51668           1163       0.00
## 51669            118     142.14
## 51670           1179     156.45
## 51671           1179       0.00
## 51672             88       0.00
## 51673           1181     154.41
## 51675             88       0.00
## 51676            673     365.08
## 51677             36      49.00
## 51678           1177     476.43
## 51679            112     616.41
## 51680            264    1635.21
## 51681           1084     414.50
## 51682            238    1134.44
## 51683            416     872.10
## 51684           1177     158.41
## 51685            719     277.73
## 51686           1181    2359.35
## 51687           1180    1092.18
## 51688           1180       0.00
## 51689            118     202.61
## 51690             89       7.69
## 51691            941    1544.34
## 51692            278     585.95
## 51693            156       0.00
## 51694            252     679.78
## 51695            434     267.87
## 51696            112     224.10
## 51697            198     228.35
## 51698            143     169.25
## 51699           1037      90.77
## 51700           1012     230.02
## 51701            753    7831.25
## 51702             57       0.00
## 51703           1074   13288.38
## 51704            530      27.00
## 51705            114     220.17
## 51706           1175    2275.20
## 51707            136    1989.09
## 51708             95     254.07
## 51709             81      86.17
## 51710           1175     403.38
## 51711             78     329.18
## 51712            138     375.61
## 51713           1167   32776.82
## 51714             79     160.80
## 51715           1179    2808.55
## 51716           1181    3670.85
## 51717            236     433.88
## 51718            736  149614.92
## 51719             63       0.00
## 51720            928    5219.36
## 51721           1177     303.70
## 51722            352     519.18
## 51723            133     179.86
## 51724             96     726.22
## 51725            355     828.75
## 51726           1126     576.62
## 51727            938     238.67
## 51728             24       0.00
## 51729             83       0.00
## 51730            239     711.51
## 51731            106     213.34
## 51732             78       0.00
## 51733            551     611.50
## 51734             71       0.00
## 51735           1168     861.45
## 51736            112     263.13
## 51737            109     153.38
## 51738            857     872.70
## 51739           1175       0.00
## 51740           1175     455.51
## 51741           1175      74.68
## 51742            230    1376.53
## 51743            120     179.85
## 51744             68    1333.15
## 51745             83       0.00
## 51746           1168     145.67
## 51747            473     117.84
## 51748            972     108.00
## 51749            411   11847.59
## 51751             84       0.00
## 51752             87     650.93
## 51753           1168       0.00
## 51754           1176    3801.83
## 51755           1176       0.00
## 51756            416     253.14
## 51757            528     163.35
## 51758            999     150.00
## 51759           1167     701.99
## 51760            897      61.00
## 51761             80       0.00
## 51762            778     155.55
## 51763            102       0.00
## 51764            475     404.35
## 51765           1163     339.59
## 51766            115     155.53
## 51767             89    1125.78
## 51768           1482    6416.78
## 51769             93       0.00
## 51770            201    2036.63
## 51771            254   12212.90
## 51772            114     194.61
## 51773            117     641.70
## 51774             70     174.90
## 51775           1159    1993.60
## 51776            243       0.00
## 51777            308     259.07
## 51778            870       0.00
## 51779            143      42.40
## 51780            223    1067.93
## 51781           1098       0.00
## 51782            166     373.08
## 51783            112     140.49
## 51784            139    1071.85
## 51785            124    7468.20
## 51786            138     102.98
## 51787           1168       0.00
## 51788           1175      28.98
## 51789            284     130.32
## 51790            693       0.00
## 51791           1175     192.89
## 51792            757    3673.43
## 51793             70       0.00
## 51794            775      86.17
## 51795            461    1716.03
## 51796           1166   11378.00
## 51797           1023       0.00
## 51798            134     200.68
## 51799            195    1254.73
## 51800            524    5297.86
## 51801            833      93.67
## 51803           1056      88.84
## 51804           1167    1050.00
## 51805           1167       0.00
## 51806           1167     144.81
## 51807            136    1201.32
## 51808            163     762.14
## 51809            130     735.71
## 51810             51     194.25
## 51811           1235    1809.54
## 51812            131     656.72
## 51813             83      93.92
## 51814           1551  581165.94
## 51815            189     204.51
## 51816           1168     149.97
## 51817           1168     520.94
## 51818           1172      86.17
## 51819            109     320.29
## 51820            172    1071.56
## 51821             68       0.00
## 51822           1155     684.81
## 51823            112       0.00
## 51824           1037       0.00
## 51825            210    1082.08
## 51826           1183  296176.50
## 51827            714    9932.31
## 51828            177     361.67
## 51829            825      94.17
## 51830            252     227.67
## 51831            602     234.72
## 51832            138      82.27
## 51833             69       0.00
## 51834             81      11.46
## 51835            108      96.83
## 51836           1168    1999.00
## 51837           1169     470.11
## 51838            445     177.53
## 51839            132      74.68
## 51840            136     571.94
## 51841            167     553.70
## 51842            195     169.28
## 51843           1106      87.03
## 51844            121     480.93
## 51845            489      93.00
## 51846            839   85774.57
## 51847            738   30062.08
## 51848             98     234.21
## 51849             79      51.49
## 51850            158     831.04
## 51851           1163     469.60
## 51852            102     184.18
## 51853            105      31.62
## 51854           1169   40429.34
## 51855            482     436.42
## 51856            140     185.05
## 51857            261    1761.79
## 51858            252    2812.88
## 51859             20       0.00
## 51860            209      88.14
## 51861            918     702.77
## 51862           1146   10411.51
## 51863             48     136.18
## 51864            127      65.11
## 51865            947     284.99
## 51866            581   52609.18
## 51867           1169     844.42
## 51868            649    7827.42
## 51869           1168       0.00
## 51870            184     345.20
## 51871            881   29347.70
## 51872            988    1062.09
## 51873           1163     706.57
## 51874            153     429.78
## 51875            137     163.02
## 51876            285       0.00
## 51877            659       0.00
## 51878             97     557.03
## 51879           1128     338.69
## 51880           1077     392.27
## 51881           1168     536.42
## 51882           1101     492.62
## 51883             56     720.35
## 51884            788    5556.15
## 51885            888     895.42
## 51886            918       0.00
## 51887           1111     212.49
## 51888             78       0.00
## 51889            111    6363.36
## 51890           1085     404.54
## 51891           1093     111.48
## 51892             79       0.00
## 51893            986     191.95
## 51894           1167       0.00
## 51895            721    5033.49
## 51896            305    1173.95
## 51897            132     103.51
## 51898            101     358.47
## 51899           1162     159.15
## 51900            307      90.77
## 51901           1161     918.23
## 51902            123     111.33
## 51903           1155     199.20
## 51904            134     123.39
## 51905           1141     264.36
## 51906            113      60.00
## 51907             77       0.00
## 51908            111    2782.16
## 51909            107      51.49
## 51910            718    2812.50
## 51911            175    1514.34
## 51912            139      56.94
## 51913            846     411.37
## 51914           1153     616.00
## 51915             61     362.48
## 51916           1162    1771.66
## 51917             56       0.00
## 51918           1094   33148.23
## 51919           1163     481.87
## 51920            105      46.37
## 51921           1166     469.71
## 51922           1074      11.39
## 51923           1166     450.22
## 51924            105      58.01
## 51925            770  233349.06
## 51926           1139     676.36
## 51927            635   29997.55
## 51928            140    1108.54
## 51929            109     380.64
## 51930           1142     250.00
## 51931           1055     229.24
## 51932           1064    1324.47
## 51933           1068     315.64
## 51934           1061     405.50
## 51935            140    4360.73
## 51936            101     368.66
## 51937            556   11833.38
## 51938           1163       0.00
## 51939            977   46353.44
## 51940            532   28838.89
## 51941           2152  201656.37
## 51942           1162       0.00
## 51943            131     352.95
## 51944           1161     726.49
## 51945            265    1552.48
## 51946            101     212.36
## 51947            170     438.54
## 51948            860    9680.15
## 51949           1172    1840.27
## 51950            468     134.96
## 51951            593    3905.44
## 51952             68       0.00
## 51953            104     220.62
## 51954             95      80.68
## 51955            652   39489.80
## 51956             27      58.01
## 51957            146     267.25
## 51958           1036     808.51
## 51959            651     876.22
## 51960            142    1687.11
## 51961           1097     425.53
## 51962            115     277.29
## 51963             99      95.37
## 51964            180     136.97
## 51965            300      90.77
## 51966            128     103.37
## 51967            428     230.30
## 51968             94     120.11
## 51969            959    1864.68
## 51970            324   13355.08
## 51971             37     176.00
## 51972            132     645.83
## 51973            304   16038.17
## 51974            131      50.37
## 51975           1162  123001.45
## 51976            156    1075.36
## 51977            860     346.10
## 51978             72     324.33
## 51979            430    7056.73
## 51980           2898       0.00
## 51981            114    2081.70
## 51982            162    3665.29
## 51983            105     166.98
## 51984            135    1325.23
## 51985              1       0.00
## 51986            370     881.60
## 51987            966       0.00
## 51988             78       0.00
## 51989            120     496.78
## 51990            115     215.91
## 51991            735    5138.25
## 51992           1007    4382.99
## 51993            114     214.32
## 51995             83       0.00
## 51996            805    1913.02
## 51997           1160     529.67
## 51998            761      15.00
## 51999           1058     284.44
## 52000           1111       0.00
## 52001           1140     159.68
## 52002            938     575.39
## 52003           1111     626.39
## 52004            155     890.20
## 52005            109     492.28
## 52006             62       0.00
## 52007           1140    1540.03
## 52008           1377   20515.56
## 52009           1161      99.97
## 52010             98    4669.14
## 52011           1161     327.69
## 52012             57     355.40
## 52013           1646   17761.35
## 52014            124     310.16
## 52016            778    8040.01
## 52017            161    1578.75
## 52018           1812   15019.50
## 52019            110     223.74
## 52020            120     112.75
## 52021             90     156.70
## 52022            771     639.51
## 52023            865    1402.50
## 52024            190      44.21
## 52025           1056     385.21
## 52026            554     167.26
## 52027            393      16.96
## 52028            679   54171.85
## 52030            100     134.00
## 52031           1161       0.00
## 52032           1160     255.80
## 52033             93      94.67
## 52034            162     147.17
## 52035            603    1979.92
## 52036            593    2208.77
## 52037            175     201.75
## 52038            111      53.00
## 52039             79       0.00
## 52040            843   44094.76
## 52041           1063     302.35
## 52042            154     197.11
## 52043            183    1605.38
## 52044           1160     485.52
## 52045           1160     245.37
## 52046            129     218.49
## 52047            994       0.00
## 52048            123     872.88
## 52049            134     391.63
## 52050            170     813.09
## 52051            111     376.73
## 52052            251     474.16
## 52053            404     126.24
## 52054            251     243.25
## 52055            146     180.15
## 52056            115      74.68
## 52057           1148     122.97
## 52058             99      59.16
## 52059           1125    2212.64
## 52060            145    2418.71
## 52061            399     458.20
## 52062            122     163.35
## 52063           1720   16477.35
## 52064            995     366.72
## 52065            616     380.87
## 52066            173       0.00
## 52067           1056      49.40
## 52068           1155       0.00
## 52069            368     659.43
## 52070           1146    2562.70
## 52071            937     775.07
## 52072           1068     429.58
## 52073           1159    5704.19
## 52074            153     217.69
## 52075           1140    1375.11
## 52076           2874   24026.27
## 52077            572     636.23
## 52078           1146       0.00
## 52079           1146     151.98
## 52080            433     259.00
## 52081           1065     439.92
## 52082           1153     145.62
## 52083            111     924.30
## 52084           1146       0.00
## 52085             72    1469.31
## 52086            264     196.72
## 52087            559       0.00
## 52088           1040     130.00
## 52089            862    1831.16
## 52090            116    1207.25
## 52091             61       0.00
## 52092            185     783.82
## 52093             81     677.09
## 52094             63       0.00
## 52095           1140     560.25
## 52096           1147      61.36
## 52097             19     851.36
## 52098            176     185.38
## 52099            430     446.74
## 52100             87      41.53
## 52101           1028       7.47
## 52102             87       7.87
## 52103           1152    1728.76
## 52104            263    1331.13
## 52105           1148     192.47
## 52106            621     236.56
## 52107            115     111.93
## 52108           1147     248.70
## 52109           1147     198.34
## 52110            148     266.30
## 52111            318     504.51
## 52112           1134       0.00
## 52113             71       0.00
## 52114            698     580.41
## 52115            261     719.88
## 52116             58     487.93
## 52117           1147       0.00
## 52118           1040   74151.04
## 52119           1147       0.00
## 52120            273    1313.39
## 52121            575     908.60
## 52122            109     472.15
## 52123            659    7079.66
## 52124             65       0.00
## 52125           1037       0.00
## 52126           1041     560.50
## 52127           1141       8.00
## 52128           1141       0.00
## 52129           1147     676.10
## 52130             85    1168.00
## 52131           1146     521.50
## 52132           1146       0.00
## 52133           1086     840.06
## 52134              9       0.00
## 52135           1140       0.00
## 52136           1148     913.57
## 52137           1148       0.00
## 52138           1148     644.26
## 52139            456     373.53
## 52140            235       0.00
## 52141           1118      74.88
## 52142            424    7950.00
## 52145           1148       0.00
## 52146           1126    2760.46
## 52147            115     537.05
## 52148           1140       0.00
## 52149            985   28276.48
## 52150            280    7476.45
## 52151            100     175.48
## 52152            626   13061.28
## 52153            999    7225.50
## 52154            643    8398.34
## 52155             94     222.84
## 52156           1146   92654.11
## 52157            114     307.16
## 52158             84       0.00
## 52159            206     498.09
## 52160            225    8053.93
## 52161           1140     310.27
## 52162           1140     304.41
## 52163             52     172.72
## 52164            665     159.01
## 52165            261     414.70
## 52166           1148       0.00
## 52167            171     130.13
## 52169            752     101.82
## 52170             55       0.00
## 52171            489       0.00
## 52172             81      83.36
## 52173            708     758.67
## 52174            111      97.74
## 52175           2863   21626.24
## 52176            694   27629.17
## 52177           1459   45506.70
## 52178            254     198.17
## 52180            732     356.66
## 52181             90     620.34
## 52182           1146     774.52
## 52183           1146       0.00
## 52184             71    2254.99
## 52185           1120     267.02
## 52186            639    1635.53
## 52187            511    7155.82
## 52188           1974  121852.17
## 52189             73       0.00
## 52190             98     214.85
## 52191            138     163.35
## 52192             94     266.62
## 52193           1138       0.00
## 52194            630    4953.58
## 52195            160     158.48
## 52196             77       0.00
## 52197           1138     427.53
## 52198            125     658.65
## 52199            112     477.38
## 52200             47     254.45
## 52201            604    4920.58
## 52202            548   13266.83
## 52203            112     228.96
## 52204           1114     651.40
## 52205            503       0.00
## 52206           1112    2028.85
## 52207            636    5047.03
## 52208            107     360.60
## 52209            262     357.45
## 52210            189     533.24
## 52211           1138       0.00
## 52212           1138       0.00
## 52213           1127      59.16
## 52215           1132     261.77
## 52216           1127       0.00
## 52217           1146   63953.75
## 52218           1042     372.02
## 52219           1140     554.66
## 52220           1140       0.00
## 52221           1140       0.00
## 52222           1141       0.00
## 52223            226   10371.18
## 52224            118     937.90
## 52225           1114       0.00
## 52226            194      44.21
## 52227           1141   35238.08
## 52228           1142       0.00
## 52229           1140     126.54
## 52230           1140       0.00
## 52231           1140     772.79
## 52232           1140    2152.28
## 52233           1141     305.48
## 52234           1111     561.21
## 52235            172    2340.77
## 52236           1138       0.00
## 52237           1706  153428.02
## 52238            406     504.29
## 52239            594   10563.37
## 52240             65       0.00
## 52241            485     168.89
## 52242           1140       0.00
## 52243            121     317.01
## 52244           1114       0.00
## 52245            139     766.70
## 52246             44     256.87
## 52247           1114       0.00
## 52248           1114     320.30
## 52249           1114      79.66
## 52250           1114     158.18
## 52251            315       0.00
## 52252            503     612.79
## 52253             79      13.84
## 52254           1141       0.00
## 52255           1141    2872.67
## 52256           1138     900.62
## 52257            139    2635.67
## 52258            624    3000.12
## 52259           1127     220.42
## 52260            154     307.96
## 52261            220     481.95
## 52262            334     232.08
## 52263           1113   11906.51
## 52264              1       0.00
## 52265             77     144.79
## 52266            498       0.00
## 52267            237     989.54
## 52268           1138     374.57
## 52269            256    1331.69
## 52270            104     102.00
## 52271            862    1088.43
## 52272           1140       0.00
## 52273              5       0.00
## 52274           1139       0.00
## 52275            193     173.84
## 52276            413   18288.87
## 52277             79       0.00
## 52278             79      66.94
## 52279           1140       0.00
## 52280           1140       0.00
## 52281            117      74.68
## 52282            590    8273.02
## 52283           1091       0.00
## 52284             76       0.00
## 52285            982    5519.90
## 52286            386    1008.16
## 52287            149     285.70
## 52288           1114       0.00
## 52289           1138       0.00
## 52290            572  228839.09
## 52291            109      90.77
## 52292           1140     255.07
## 52293            345    1138.00
## 52294           1135      41.49
## 52295           1595   55389.01
## 52296            157     123.16
## 52297             33      84.68
## 52298            132      51.49
## 52299           1041     504.76
## 52300           1132       0.00
## 52301            162     178.51
## 52302           1681    4985.46
## 52303            109    1907.25
## 52304             95      99.74
## 52305           1127       0.00
## 52306           1126       0.00
## 52307            400     145.25
## 52308           1071    7200.00
## 52309            927    1067.76
## 52310            330     309.10
## 52311           1007       0.00
## 52312             74       0.00
## 52313            131      73.00
## 52314             90       0.00
## 52315           1126     920.46
## 52316           1127       0.00
## 52317           1127     458.38
## 52318           1126    3492.45
## 52319           1126       0.00
## 52320             91     290.29
## 52321             99     287.95
## 52322           1128     149.95
## 52323            609     719.65
## 52324            361      80.29
## 52325            128     105.87
## 52326            100      98.42
## 52327            100      94.67
## 52328            525       0.00
## 52329            650    2642.12
## 52330             71       0.00
## 52331            196      79.40
## 52332           1138     738.52
## 52333           1138       0.00
## 52334           1212    2626.01
## 52335            149       0.00
## 52336             80       0.00
## 52337           1014      51.66
## 52338             95    1901.74
## 52339            297     831.81
## 52340             77       0.00
## 52341             72       0.00
## 52342           1132       0.00
## 52343           1132       0.00
## 52344           1126       0.00
## 52345           1478   31075.38
## 52346           1127     328.85
## 52347           1127       0.00
## 52348           1127      59.16
## 52349           1126       0.00
## 52350           1126       0.00
## 52351             80     112.64
## 52352            402    3959.25
## 52353             43       0.00
## 52354            223     765.37
## 52355            105    1313.62
## 52356            113    4415.38
## 52357             90     102.81
## 52358            383    1292.14
## 52359           1127       0.00
## 52360           2579   10044.38
## 52361           1039      40.00
## 52362           1099       0.00
## 52363           1113      94.22
## 52364           1127       0.00
## 52365           1128       0.00
## 52366           1062      59.16
## 52367           1127       0.00
## 52368           1127       0.00
## 52369            465       0.00
## 52370           1098       0.00
## 52371            601     112.79
## 52372            111     598.94
## 52373           1127   17233.07
## 52374            845     103.93
## 52375           1008     509.27
## 52376             52     834.67
## 52377             86       0.00
## 52378            635   25903.85
## 52379            101      79.40
## 52380            131     364.48
## 52381            128     267.01
## 52382             67       0.00
## 52383            189    4566.87
## 52384             70       0.00
## 52385           1127       0.00
## 52386            505    3100.13
## 52387           1127       0.00
## 52388             66       0.00
## 52389            384    1586.38
## 52390           1426  149105.92
## 52391           1112   31512.64
## 52392            155     433.85
## 52393             63       0.00
## 52394            102      56.84
## 52395            479     462.21
## 52396            981     135.07
## 52397             89       0.00
## 52398            974       0.00
## 52399            256    1446.19
## 52400            744       0.00
## 52401            107      73.35
## 52402            946     150.32
## 52403             98     190.01
## 52404             66     214.94
## 52405             80     128.47
## 52406            687   61002.13
## 52407            126     285.78
## 52408            644   22314.08
## 52409           1064      59.16
## 52410           1127       0.00
## 52411            100      97.18
## 52412           1127       0.00
## 52413           1127     283.95
## 52414           1127       0.00
## 52415            232     659.29
## 52416           1127      96.06
## 52417            131     654.17
## 52418            162     873.30
## 52419            132     237.25
## 52420            651   30649.60
## 52421            189     620.64
## 52422           1114   13095.84
## 52423           1113       0.00
## 52424            105     227.06
## 52425             72       0.00
## 52426            242     359.93
## 52427            131     256.08
## 52428           1127      69.21
## 52429           1128     631.36
## 52430           1128    1642.51
## 52431            357   23245.55
## 52432            126     332.52
## 52433           1126     266.62
## 52434           1126       0.00
## 52435           1126     407.36
## 52436              1       0.00
## 52438           2951    8378.83
## 52439            931     236.55
## 52440            125      32.64
## 52441            111     460.55
## 52442           1125     330.22
## 52443            201     389.40
## 52444             92     155.68
## 52445           1114     231.79
## 52446           1114       0.00
## 52448             87       0.00
## 52449           1119     464.66
## 52450            134     157.66
## 52451            125     264.07
## 52452            123       0.00
## 52453           1126     216.05
## 52454           1126       0.00
## 52455             40      79.40
## 52456            126     269.95
## 52457            125    1506.86
## 52458            127     209.60
## 52459             79      74.68
## 52460            274     264.22
## 52461            608    2748.82
## 52462             66       0.00
## 52464            679    2144.57
## 52465             80      95.37
## 52466           1106       0.00
## 52467            543   30625.00
## 52468           1126       0.00
## 52469           1125       0.00
## 52470           1125   25276.87
## 52471            207     263.78
## 52472             64      56.73
## 52473           1106       0.00
## 52474            113     122.10
## 52475           1125       0.00
## 52476            145     306.83
## 52478             14       0.00
## 52479           1113      45.26
## 52480           1114     977.82
## 52481            621       0.00
## 52482             93    2154.96
## 52483           1118    2124.12
## 52484           1103       0.00
## 52485            820     258.48
## 52486             91      33.49
## 52487            121     158.92
## 52488            422     246.22
## 52490             95     217.48
## 52491           1125       0.00
## 52492           1125       0.00
## 52493           1125    2065.82
## 52494           1125     369.82
## 52495           1125       0.00
## 52496           1125       0.00
## 52497           1125       0.00
## 52498            149    4735.88
## 52499            281     350.36
## 52500           1121       0.00
## 52501             63       0.00
## 52502            236    8207.93
## 52503            287   15545.67
## 52504           1083     112.62
## 52506           1114       0.00
## 52507           1114   17898.70
## 52508           1114     678.00
## 52509            134     232.09
## 52510            179    1152.25
## 52511             27     337.08
## 52512             88     107.83
## 52513            111     248.50
## 52514           1113    1169.37
## 52515           1113     348.08
## 52516           1124     267.19
## 52517           1023     167.90
## 52518           1125       0.00
## 52519           1125       0.00
## 52520            155     626.48
## 52521             23      75.37
## 52522           1023       0.00
## 52523           1120    1767.84
## 52524             81       0.00
## 52525             41     753.78
## 52526           1083       0.00
## 52527           1077     203.75
## 52528           1065       0.00
## 52529            577       0.00
## 52531            113      89.66
## 52532           1114     378.38
## 52533            103    3291.12
## 52534             80       0.00
## 52535             87     124.55
## 52536            179     398.79
## 52537           1114     149.66
## 52538           1114    1696.43
## 52539             63     500.39
## 52541            218     342.62
## 52542            125     175.94
## 52543             43    1127.16
## 52544              1       0.00
## 52545            121     217.50
## 52546           1076   19156.25
## 52547           1068     215.79
## 52548            477     387.02
## 52549           1712  203856.83
## 52550           1104   12536.54
## 52551           1100       0.00
## 52552            318     157.57
## 52553            986       0.00
## 52554           1114     321.12
## 52555           1114       0.00
## 52556            286    7045.36
## 52557            119     348.10
## 52558            112     264.35
## 52559            426    2381.53
## 52560           1113    1199.83
## 52561            266     614.00
## 52562           1113     217.39
## 52563            297     471.93
## 52564            301    3816.06
## 52565            837  193453.49
## 52566            106    1231.59
## 52567           1120     755.45
## 52568            528    5438.56
## 52569           1220   54181.04
## 52570           1023       0.00
## 52571            177     267.85
## 52572           1268    9526.55
## 52573            144     161.27
## 52574             96     108.47
## 52575            315   33873.93
## 52576           1114     340.60
## 52577            806   28774.78
## 52579              3       0.00
## 52580            556     235.78
## 52581             85     259.93
## 52582           1086       0.00
## 52583            181     665.85
## 52584            130     138.19
## 52585            321   12033.90
## 52586             12       0.00
## 52587           1114     506.08
## 52588             18     171.75
## 52589           1114      89.90
## 52590           1114       0.00
## 52591           1078     399.79
## 52592           1105   40162.40
## 52593             84    4175.87
## 52594            369     214.88
## 52595            665     575.27
## 52596            818    1722.97
## 52597             86       0.00
## 52598            484     399.84
## 52599            120     229.46
## 52600             89     104.57
## 52601            439     409.97
## 52602             87       0.00
## 52603            953       0.00
## 52604            149     413.91
## 52605            149    1344.69
## 52606            642     104.38
## 52607            149     610.13
## 52608           1118    1098.16
## 52609            147     226.99
## 52610              3       0.00
## 52611            518   37451.91
## 52612            117     135.89
## 52613           1117     340.24
## 52614            625    7889.71
## 52615            111     280.04
## 52616            111     137.20
## 52617            271       0.00
## 52618            132    1038.77
## 52619           1114     288.59
## 52620           1114     122.90
## 52621           1105       0.00
## 52622           1091     444.90
## 52623             74       0.00
## 52625            816      90.47
## 52626            120     111.93
## 52627             73       0.00
## 52628            130      51.49
## 52629            183     408.57
## 52630             96     709.17
## 52631           1114     143.33
## 52632           1113     369.09
## 52633              1       0.00
## 52634             80       0.00
## 52635           1111    8409.75
## 52636            395    1539.48
## 52637            375      99.97
## 52638            523     134.87
## 52639           1028   10199.57
## 52640            119     175.21
## 52641            114      74.00
## 52642           2801   45277.64
## 52643           1083   25328.41
## 52644            364     145.68
## 52645           1099       0.00
## 52646           1099       0.00
## 52647            211    4896.70
## 52648            192     992.18
## 52649           1011     858.46
## 52650             36     730.16
## 52651            117     193.63
## 52652           1114    4883.67
## 52653           1114      54.99
## 52654           1114     475.98
## 52655           1114     785.68
## 52656            180       0.00
## 52657            107     123.36
## 52658              1       0.00
## 52659           1110     557.48
## 52660           2246    6442.80
## 52661            140     151.54
## 52662           1113     464.43
## 52663           1113     278.00
## 52664            113     196.93
## 52665            931   15629.30
## 52666             13       0.00
## 52667            381     334.10
## 52668            860     927.34
## 52669             71       0.00
## 52670           1105       0.00
## 52671            136    1805.97
## 52672             65       0.00
## 52673             13     272.40
## 52674            483    1857.73
## 52675           1303    6168.47
## 52676            161     225.58
## 52677            384     162.77
## 52678            455     183.84
## 52679           1114   78488.36
## 52680           1113    1104.55
## 52681            112      44.21
## 52682           1111     508.06
## 52683           1111     407.92
## 52684            110     323.34
## 52685           1110      48.49
## 52686           1114     556.32
## 52687           1114    1541.68
## 52688            114      71.35
## 52689            481    9267.33
## 52690            447     843.43
## 52691            108     254.22
## 52692              2       0.00
## 52693           1103       0.00
## 52694             77     303.72
## 52695           1104     294.51
## 52696            118     445.18
## 52697            252       0.00
## 52698             77     723.33
## 52699            906       0.00
## 52700            295    9733.38
## 52701            848   24149.74
## 52702            126     846.10
## 52703            442     533.83
## 52704           1113     421.13
## 52705           1114     406.56
## 52706           1114    1616.08
## 52707            113     154.00
## 52708            105     207.66
## 52709            369    4279.69
## 52710            209     419.76
## 52711           1037     257.67
## 52712             99     236.89
## 52713           1105     507.67
## 52714            395    1422.72
## 52715            122    1984.82
## 52716            477    4917.15
## 52717             63       0.00
## 52718            163      81.61
## 52719            175    5441.84
## 52720           1111     405.09
## 52721            120     210.68
## 52722             71     758.00
## 52723           1113    1972.90
## 52724           1086     614.01
## 52725             28     330.85
## 52726             91       0.00
## 52727            183     428.78
## 52728           1113     671.97
## 52729           1113     413.82
## 52730           1113    3332.52
## 52731           1113     940.67
## 52732           1110    4546.19
## 52733             54     306.77
## 52734            171     879.53
## 52735            141     237.99
## 52736            239    2393.40
## 52737            196     246.27
## 52738            372     921.37
## 52739           1079      71.35
## 52740            276    1747.81
## 52741            124     157.00
## 52742           1105      67.50
## 52743            122    1599.01
## 52744           1098    1519.04
## 52745            428      64.68
## 52746            340   12675.41
## 52748            711    2198.70
## 52749            802     222.99
## 52750            245     119.21
## 52751            142     389.19
## 52752             79       0.00
## 52753            412    1277.63
## 52754            978   86958.39
## 52755           1113     338.97
## 52756           1113     372.32
## 52757            712     123.71
## 52758            254     412.18
## 52759            302     141.88
## 52760           1092       0.00
## 52761            319     576.06
## 52762           1105     276.54
## 52763            285    2522.91
## 52764            273    6302.55
## 52765           1075     538.56
## 52766             89       0.00
## 52767             85       0.00
## 52768            112     578.56
## 52769            824     141.53
## 52770            227      10.80
## 52771            406       0.00
## 52772            857     208.08
## 52773            110     245.25
## 52774            111     223.91
## 52775             80      15.13
## 52776           1111     103.43
## 52777            105     136.18
## 52778            244     305.49
## 52779            394     187.96
## 52780           1106    3476.55
## 52781              2       0.00
## 52782           1083     656.96
## 52783            592       0.00
## 52784           1068       0.00
## 52785           1065     325.01
## 52786           1322    4503.39
## 52787             73      76.73
## 52788            218       0.00
## 52789            141     109.00
## 52790           1096      44.21
## 52791            122     106.40
## 52792             92     418.24
## 52793           1092     458.37
## 52794           1111     362.84
## 52795            111     178.03
## 52796           1110    2994.95
## 52797            211     358.97
## 52798           1099     697.01
## 52799           1099    1145.81
## 52800             58    1215.23
## 52801            130     145.97
## 52802           1099       0.00
## 52803            103     171.97
## 52804            135     857.47
## 52805           1105       0.00
## 52806            105     166.81
## 52807            105     241.04
## 52808            900      44.21
## 52809            134     505.94
## 52810            165     331.17
## 52811           1062       0.00
## 52812            113     213.23
## 52813            202       0.00
## 52814            145     104.16
## 52815            107      54.97
## 52816           1069      33.00
## 52817           1084      74.68
## 52818            729     267.82
## 52819             89       0.00
## 52820           1025   25334.01
## 52821             27      45.52
## 52822             18      45.52
## 52823             23       0.00
## 52824             23       0.00
## 52825           1113   45599.77
## 52826            105     155.84
## 52827             94     269.07
## 52828             97     286.55
## 52829            333   19992.52
## 52830            275       0.00
## 52831            665     181.18
## 52832            130      81.97
## 52833            300    6219.34
## 52834           1104     297.38
## 52835           1057       0.00
## 52836           1104     297.38
## 52837           1105     249.13
## 52838           1105     486.52
## 52839            103     191.81
## 52840             69       0.00
## 52841            283    1693.79
## 52842           1099     686.26
## 52843           1096       0.00
## 52844            931   46227.58
## 52845           1258     368.02
## 52846            264     387.06
## 52847            895       0.00
## 52848            130     751.60
## 52849            496    1006.81
## 52850           1105     442.33
## 52851            152     689.76
## 52852             29     151.68
## 52853            370    1239.25
## 52854           1099    1978.90
## 52855            608    2588.62
## 52856             74       9.17
## 52857             15      45.52
## 52858             24      81.78
## 52859            191     242.24
## 52860             76     168.00
## 52861             66       0.00
## 52862            158     277.79
## 52863             99     423.25
## 52864           1099     100.63
## 52865           1099    3187.40
## 52866            104     207.19
## 52867           1104    3870.28
## 52868           1104       0.00
## 52869           1104    1567.04
## 52870           1105    8832.90
## 52871            904   34657.14
## 52872           1096    1309.89
## 52873             21     197.24
## 52874            236    1207.64
## 52875            147     342.78
## 52876            133       0.00
## 52877            706     160.46
## 52878             34     160.20
## 52879            172    2630.03
## 52880           1048    1423.33
## 52881           1048      59.16
## 52882             75       0.00
## 52883            322       0.00
## 52884            165      92.61
## 52885            157     687.40
## 52886            596      92.61
## 52887           2336  251046.21
## 52888             83     191.55
## 52889             21       0.00
## 52890             28       0.00
## 52891            609     344.56
## 52892             91      86.17
## 52893            295     500.93
## 52894             79     274.67
## 52895           1089      98.25
## 52896            329    3313.42
## 52897            119     241.35
## 52898             39      84.61
## 52899             28      92.61
## 52900             83      76.01
## 52901            113     110.04
## 52903             97     168.89
## 52904             66       0.00
## 52905            613     325.45
## 52906             65       0.00
## 52907            934  289350.31
## 52908            153     201.35
## 52909            103      78.26
## 52910            911     255.39
## 52911            487     177.09
## 52912           1105     154.83
## 52913            129     118.12
## 52914            343     380.53
## 52915            896     197.00
## 52916           1098    2090.79
## 52917            513    1369.91
## 52918           1099     675.73
## 52919            623    4706.72
## 52920           1014     363.77
## 52921             68       0.00
## 52922            374    3134.77
## 52923            552   40652.55
## 52924           1098    1710.55
## 52925             76       0.00
## 52926           1099     376.32
## 52927             99      73.66
## 52928            412    1970.43
## 52929           1103     274.08
## 52930           1100    1848.80
## 52931           1017     543.06
## 52932           1008    2171.31
## 52933           1096     405.11
## 52934            113     284.34
## 52935            362    3423.74
## 52936             20       0.00
## 52937            116     136.89
## 52938            121     167.68
## 52939             44       0.00
## 52940            601    3296.48
## 52941            438      42.62
## 52942            240     220.85
## 52943             99     156.70
## 52944            164     330.00
## 52945              1       0.00
## 52946            775    2928.06
## 52947            877     216.67
## 52948           1164   14234.40
## 52949            776    2021.75
## 52950            121     532.28
## 52951            232     229.91
## 52952            119     928.14
## 52953             96     184.41
## 52954           1145    1993.04
## 52955            948   20440.10
## 52956            235     589.85
## 52957            212     626.59
## 52958            857     237.69
## 52959            133     211.46
## 52960           1099     197.18
## 52961           1099     632.46
## 52962             99     112.94
## 52963           1098     285.64
## 52964            615     679.13
## 52965             99      86.17
## 52966            483     509.01
## 52967           1099    1892.49
## 52968           1099       0.00
## 52969            132    6383.99
## 52970             98     434.19
## 52971           1099  122373.68
## 52972            505     147.34
## 52973            103     349.77
## 52974            774      90.19
## 52975            108     217.48
## 52976            405     137.66
## 52977            659   22052.73
## 52978             91     180.15
## 52979           1091     259.42
## 52980           1065       0.00
## 52981            166      59.16
## 52982            403     369.68
## 52983             13       0.00
## 52984            297     461.64
## 52985           1051     372.63
## 52986            112     312.59
## 52987            407     232.96
## 52988           1462  105314.03
## 52989           1097     191.23
## 52990            122     649.45
## 52991            746    6518.72
## 52992            977       0.00
## 52993           1030     530.67
## 52994            279     106.21
## 52995           1099       0.00
## 52996            126     280.43
## 52997             97      38.82
## 52998            127     210.60
## 52999            127     507.44
## 53000           1001     465.61
## 53001            203       0.00
## 53002             90     188.71
## 53003            499   23680.71
## 53004           1091       0.00
## 53005             83     196.14
## 53006           1632   38864.37
## 53007           1056   36993.63
## 53008            483    1768.13
## 53009             86       0.00
## 53010            212     189.52
## 53011           1075     510.87
## 53012            193     163.49
## 53013           1091     120.10
## 53014            140     577.22
## 53015             91      94.67
## 53016            603      87.37
## 53017            910    3064.29
## 53018             90       0.00
## 53019           1084   23873.27
## 53020           1083    1959.08
## 53021             41       0.00
## 53022            343     839.15
## 53023            167      86.17
## 53024            840    3158.22
## 53025            356     280.99
## 53026           1097      79.40
## 53027           1097     302.53
## 53028              5       0.00
## 53029           1092     291.46
## 53030           1093      71.35
## 53031           1093     837.62
## 53032             66       0.00
## 53033            953      81.58
## 53034             98     206.33
## 53035           1093     454.98
## 53036            977    1725.35
## 53037            126     145.25
## 53038             34     135.21
## 53039           1083     387.75
## 53040            330     544.84
## 53041             67       8.25
## 53042             94     152.47
## 53043           1089     112.16
## 53044           1086     338.48
## 53045           1086     194.04
## 53046            982     616.16
## 53047           1090     516.05
## 53048              1       0.00
## 53049            171     531.62
## 53050           1070     362.68
## 53051             91     244.03
## 53052            438     270.06
## 53053            678       0.00
## 53054             86    6619.02
## 53055            121     697.78
## 53056           1061     301.17
## 53057             28      70.12
## 53058            151     699.68
## 53059            459   11295.80
## 53061           1156  119691.79
## 53062            111     456.15
## 53063           1083     889.36
## 53064             82       0.00
## 53065           1090     397.30
## 53067            240    4846.02
## 53068            121     449.50
## 53069             91     173.09
## 53070            121     357.03
## 53071            248    1322.28
## 53072           1090     328.88
## 53073           1084       0.00
## 53074           1085       0.00
## 53075            564     701.29
## 53076            123    1060.54
## 53077           1093     246.81
## 53078              1       0.00
## 53079           1093   18687.37
## 53080           1092     415.15
## 53081            155    3265.51
## 53082             65      71.35
## 53083            295    2133.48
## 53084           1000     281.98
## 53085            859    1221.68
## 53086           1093       0.00
## 53087            170      95.94
## 53088             70     227.52
## 53089            101     197.00
## 53090           1008    2007.25
## 53091            972    1574.80
## 53092             86     341.39
## 53093            967  100381.65
## 53094            225     107.20
## 53095           1091     143.38
## 53096           1064    1694.83
## 53097           1075    2259.83
## 53098            121     644.60
## 53099           1091       8.00
## 53100             97     203.01
## 53101            647    2152.22
## 53102           1085    1277.84
## 53103            708   25716.56
## 53104            113     435.87
## 53105            608     475.50
## 53106            600   49176.90
## 53107           1093    3802.21
## 53108             61       0.00
## 53109            346     143.18
## 53110           1079    1899.99
## 53111             82      92.83
## 53112           1156  206275.51
## 53113            735     223.75
## 53114            132     672.02
## 53115            100      55.10
## 53116            121     277.13
## 53118           1091     154.18
## 53119           1091    1845.31
## 53120            243    1313.92
## 53121            164     393.13
## 53122            230      78.40
## 53123            176    1839.68
## 53125            249     167.86
## 53126           1133   54435.96
## 53127           1051       0.00
## 53128            986    2425.92
## 53129            683   21737.29
## 53130             45       0.00
## 53131           1090     459.89
## 53132           1152   25799.46
## 53133             85       0.00
## 53134            470    1225.71
## 53135           1084     241.54
## 53136            530    1300.48
## 53137             62     315.00
## 53138            570     378.47
## 53139            540    1405.47
## 53140           1091      97.87
## 53141           1091     166.14
## 53142           1091    6843.41
## 53143            273       0.00
## 53144            564   54249.73
## 53145             94     248.47
## 53146            113     525.26
## 53147            850   95091.31
## 53148            402   21696.25
## 53149             29       0.00
## 53150             46      90.77
## 53151            139    1422.63
## 53152              1       0.00
## 53153            108      51.49
## 53154            103     556.79
## 53155            344      86.17
## 53156           1262   21607.97
## 53157           1084    5078.30
## 53158             28     356.07
## 53159             42     136.53
## 53160             19     159.01
## 53161           1086    2473.07
## 53162           1090    1853.16
## 53164           1089     194.27
## 53165             34      54.04
## 53166             99     135.90
## 53167            123     353.18
## 53168             99      87.33
## 53169            462     199.62
## 53170            878   63918.84
## 53171           1089      66.25
## 53172            649       0.00
## 53173           1085   47594.65
## 53174           1086      66.95
## 53175            116      99.97
## 53176           1085   12655.85
## 53177            115     111.39
## 53178             62     480.85
## 53179             20      15.00
## 53180           1085     190.85
## 53181            114      44.21
## 53182           1084     156.77
## 53183            102      79.07
## 53184            587     117.27
## 53185            100     739.62
## 53186           1069     355.83
## 53187            185      82.93
## 53188            594    3824.26
## 53190           1048     715.74
## 53191             79       0.00
## 53192            992     145.40
## 53193           1006     433.09
## 53194            364    2686.17
## 53195           1079    4915.16
## 53196           1077     174.30
## 53197             53      69.74
## 53198           1091     576.23
## 53199           1077   71901.08
## 53200            100     152.13
## 53201            985   53931.86
## 53202            194    1117.13
## 53204            114      10.27
## 53205             94     329.88
## 53206            374   23853.09
## 53207             89       0.00
## 53208            153    1527.42
## 53209            308    2341.42
## 53210           1085       0.00
## 53211            176     348.99
## 53212            146     521.65
## 53213           1015       8.00
## 53214           1084     322.37
## 53215             37     297.91
## 53216            110    1809.25
## 53217            553   73950.09
## 53218            570   23548.82
## 53219           1065       0.00
## 53220            562   32001.47
## 53221             51       0.00
## 53222            490    2116.53
## 53223            112     299.58
## 53224           1079     625.98
## 53225           1078       0.00
## 53226           1076       0.00
## 53227            551    2086.60
## 53228           1077      51.31
## 53229             33     181.49
## 53230            176     570.21
## 53231            178     179.17
## 53232            231     234.37
## 53233            219    7103.85
## 53234             70     486.48
## 53235            139     115.50
## 53236           1084      85.85
## 53237             79      59.16
## 53238            127      99.97
## 53239           1026    1158.25
## 53240           1083     800.03
## 53241            629     397.48
## 53242            113     302.15
## 53243           1163    1921.46
## 53244            250     299.39
## 53245            101     211.07
## 53246            130       0.00
## 53247            107      98.89
## 53249            107     226.04
## 53250           1728    5473.10
## 53251             79     311.27
## 53252           1082     774.96
## 53253             82       0.00
## 53254            325   10008.66
## 53255            229    2524.69
## 53256           1083     853.24
## 53257            144    1201.73
## 53258           1082       0.00
## 53259           1082     118.45
## 53260            140     526.48
## 53261            154     416.46
## 53262             77       0.00
## 53263            138     442.84
## 53264            217    1304.68
## 53265           1076       0.00
## 53266             99     112.94
## 53267            101      89.66
## 53268           1065      59.16
## 53269            148     138.83
## 53270            471      34.49
## 53271              1       0.00
## 53272           1083     140.97
## 53273           1083       0.00
## 53274             80       0.00
## 53275           1058     561.18
## 53276           1056     244.69
## 53277           1019     279.62
## 53278            142       0.00
## 53279           1009     108.68
## 53280           1012     122.46
## 53281            996       0.00
## 53282            868    1689.50
## 53283            751    3375.00
## 53284            172       0.00
## 53285             75     471.22
## 53286           1047      44.21
## 53287            101     218.29
## 53288            228    1752.46
## 53289            133     324.49
## 53290           1497    2148.88
## 53291             95     498.51
## 53292           1070       0.00
## 53293           1076     476.77
## 53294             22      58.01
## 53295           1077     234.09
## 53296             56      69.30
## 53297            134     111.74
## 53298            107     167.56
## 53299            109     160.60
## 53300            147     424.53
## 53301           1082      19.95
## 53302            106     227.00
## 53303             92     185.16
## 53304            225     391.89
## 53305           1078     737.78
## 53306            183      30.00
## 53307            176    1236.10
## 53308            222     198.48
## 53309             99     338.01
## 53310           1645   19367.92
## 53311             29       0.00
## 53312           1374   42238.60
## 53313            121     376.46
## 53314           1069       0.00
## 53315            139     484.98
## 53316             46     357.13
## 53317           1064       8.20
## 53318            696    3300.51
## 53319           1001       0.00
## 53320            240    3333.00
## 53321            224     724.25
## 53322            660       0.00
## 53323           1077    2465.79
## 53324           1077     512.49
## 53325            725    2155.86
## 53326           1070       0.00
## 53327            112      95.94
## 53328            113     190.53
## 53329             67       0.00
## 53330           1070     173.91
## 53331            573   64982.85
## 53332            100     129.80
## 53333           1071     248.01
## 53334            102     314.65
## 53335             75     251.29
## 53336            105     189.04
## 53337             30     214.60
## 53338           1068     152.97
## 53339           1065       0.00
## 53340             69       0.00
## 53341              1       0.00
## 53342            433     791.73
## 53343            370     453.01
## 53344             76       0.00
## 53345            203     227.01
## 53346             93     137.66
## 53347            445     837.36
## 53348           1020     104.29
## 53349            113     943.74
## 53350           1133      74.68
## 53351            640    1047.74
## 53352             78      19.47
## 53353            155      50.20
## 53354            687    2635.09
## 53355            511   16681.62
## 53356            642     434.96
## 53357           1076     479.54
## 53358           1075     249.01
## 53359            176     884.37
## 53360           1076     113.87
## 53361           1076     206.66
## 53362           1076     309.30
## 53364           1076     306.73
## 53365            107     346.50
## 53366            757    2630.34
## 53367            299    1318.43
## 53368             98     342.87
## 53369            287    1233.00
## 53370           1072     412.23
## 53371            164     295.70
## 53372             79     193.92
## 53373            133     213.01
## 53374            301     140.05
## 53375           1071     392.87
## 53376           1070       0.00
## 53377           1070   16566.51
## 53378            508   29211.57
## 53379             44       0.00
## 53380           1006     242.90
## 53381           1007      45.36
## 53382           1070    4305.79
## 53383           1072       0.00
## 53384            102     197.43
## 53385            790    2091.02
## 53386             72       0.00
## 53387            284     135.77
## 53388            201    2727.25
## 53389            162     380.38
## 53390            106      11.39
## 53391             28       9.20
## 53392             22     125.05
## 53393           1076      48.57
## 53394           1076     224.93
## 53395            106     128.20
## 53396           1075   35752.33
## 53397           1076     280.97
## 53398            137    1091.86
## 53399           1064     323.43
## 53400             30    1364.81
## 53401            138     198.84
## 53402            317     387.58
## 53403            426     135.77
## 53404           1019    8512.18
## 53405             69      16.00
## 53406           1276    5175.93
## 53407           1056       0.00
## 53408             20      94.68
## 53409            220     137.66
## 53410            465    9263.80
## 53411           1065    5138.84
## 53412           1064     377.89
## 53413            713    8131.24
## 53414            154    1150.69
## 53415            502     572.16
## 53416           1065     434.43
## 53417           1070     169.07
## 53418           1070     429.91
## 53419            132     277.12
## 53420            987     213.17
## 53421             98     169.38
## 53422             70     120.86
## 53424           1014    1326.24
## 53425           1315     838.10
## 53426           1071     277.31
## 53427           1070     307.01
## 53428           1072   16337.58
## 53429           1072    1572.62
## 53430           1072    1103.93
## 53431           1072    1203.58
## 53432           1072    1278.89
## 53433             99     707.25
## 53434            216   10609.16
## 53435            239     246.17
## 53436            201     969.44
## 53437           1050   31225.37
## 53438           1054       0.00
## 53439           1054       0.00
## 53440            703     159.29
## 53441           1058      59.16
## 53442             95     243.50
## 53443            111      96.78
## 53444             61       0.00
## 53445            117     233.30
## 53446           1044    9109.83
## 53447           1071    1641.35
## 53448           1071     536.80
## 53449            812    1823.87
## 53451           1329   26869.39
## 53452            521   18240.06
## 53453            184       0.00
## 53454            123     388.50
## 53455             30     318.60
## 53456           1064       0.00
## 53457           1063     263.46
## 53458            328     147.59
## 53459           1064     548.65
## 53460            126     641.01
## 53461           1003     295.69
## 53462            101     197.88
## 53463            101       9.20
## 53464           1070      67.50
## 53465            595     431.34
## 53466            206     858.27
## 53467             41      59.16
## 53468            700    6345.55
## 53469            130     726.87
## 53470            310     666.02
## 53471            771     183.71
## 53472           1069      92.74
## 53473           1022   43605.71
## 53474            596    3005.14
## 53475           1069     150.00
## 53476            166     116.13
## 53477           1068    2377.41
## 53478           2222   10905.30
## 53479             99     236.56
## 53480            126     664.94
## 53481            174    2252.31
## 53482            149     232.34
## 53483            430     247.75
## 53484           1054     310.73
## 53485           1054     132.09
## 53486           1054     499.95
## 53487           1086   33837.52
## 53488            876     247.01
## 53489            882     410.30
## 53490             86      71.35
## 53491           1012     353.48
## 53492           1034    1464.24
## 53493            661     578.98
## 53494            184    1864.91
## 53495            117     212.66
## 53496             87     112.94
## 53497            412   21412.81
## 53498           1043    5421.50
## 53499           1044     157.11
## 53500            130     111.48
## 53501            154     287.74
## 53502             63       0.00
## 53503            628       0.00
## 53504            148     594.25
## 53505           1061    1641.66
## 53506             62       0.00
## 53507            130       0.00
## 53508            122     148.35
## 53509            759     963.85
## 53510            126    1114.63
## 53511             95     189.86
## 53512            156     453.51
## 53513            721    2812.61
## 53514           1064       0.00
## 53515            125      74.68
## 53516           1064       0.00
## 53517            168    1463.44
## 53518           1068      74.68
## 53519            625       0.00
## 53520            271     436.61
## 53521             69       0.00
## 53522            113       0.00
## 53523             50       0.00
## 53524           1043     348.87
## 53525            160     487.62
## 53526           1026     512.26
## 53527           1065    1155.93
## 53528           1065     231.31
## 53529           1065     321.81
## 53530           1068     116.00
## 53531           1068     316.92
## 53532           1068     107.95
## 53533           1068     888.94
## 53534           2197   46510.34
## 53535           1064   76975.76
## 53536           1063    1548.73
## 53537             22       0.00
## 53538           1595  196537.17
## 53539            169     148.29
## 53540            135     180.15
## 53541           1065     694.62
## 53542            113     159.64
## 53543           1065      86.82
## 53544           1047    3590.81
## 53545            153     112.38
## 53546           1062       0.00
## 53547           1062       0.00
## 53548            121      68.01
## 53549           1129       0.00
## 53550            112    1919.86
## 53551           1054       0.00
## 53552             97    2400.25
## 53553             50     223.64
## 53554            992     135.05
## 53555             93     111.98
## 53556            117      87.00
## 53557            496   42330.29
## 53558           1034       0.00
## 53559            896     256.63
## 53560             81    1655.30
## 53561             29     325.31
## 53562            707     146.32
## 53564             80       0.00
## 53565            440     158.48
## 53566            510    1518.47
## 53567            353    5344.69
## 53568             21     122.27
## 53569           1065     867.53
## 53570            157     244.28
## 53571           1298    6142.37
## 53572             94     155.54
## 53573            195     797.56
## 53574            462    5136.08
## 53575           1065     201.81
## 53576           1160   10003.49
## 53577            101     114.00
## 53579           1064     123.11
## 53580           1063     684.40
## 53581           1063    1864.37
## 53582           1062    2192.69
## 53583            965   71245.24
## 53584            231     179.49
## 53585            123      74.00
## 53586           1006     643.24
## 53587             80       0.00
## 53588            579   11755.77
## 53589             98     125.09
## 53590            743   34311.64
## 53592            126     193.46
## 53593           1061       0.00
## 53594            865   69271.93
## 53595           1062     167.03
## 53596            391   14331.84
## 53597            257    8072.67
## 53598           1064     830.41
## 53600            898      11.39
## 53601           1051    3169.68
## 53602            163     303.65
## 53603            152     481.68
## 53604           1044       0.00
## 53605             85      66.57
## 53606             77       0.00
## 53607              1       0.00
## 53608            149     190.25
## 53609           1058    4552.19
## 53610            932       0.00
## 53611             81      58.01
## 53612            524   12079.42
## 53613           1037     728.61
## 53614           1013     308.19
## 53615           1019     225.69
## 53616            875     360.56
## 53617             85       0.00
## 53618           1055       0.00
## 53619             86       0.00
## 53621            693     961.17
## 53622            666    5738.67
## 53623            363     305.58
## 53624              1       0.00
## 53625            309     697.14
## 53626           1063   57419.72
## 53627            568   19244.75
## 53628             28     315.65
## 53629           1062   99341.21
## 53630             98     125.92
## 53631            559   49813.70
## 53632            576      58.01
## 53633            487   42611.18
## 53634            987     520.96
## 53635           1023     828.45
## 53636             90       0.00
## 53637             72       0.00
## 53638             95     420.96
## 53639            280     258.62
## 53640           1036     120.21
## 53641           1844   75544.70
## 53642            356     311.86
## 53643            122    1453.26
## 53644             62       0.00
## 53645            418    4671.14
## 53646           1061     748.91
## 53647             27     222.61
## 53648            871       0.00
## 53649             80       0.00
## 53650             93     172.58
## 53651             74       0.00
## 53652           1056    2074.73
## 53653           1056    1818.59
## 53654            544      90.77
## 53655           1056    1996.62
## 53656            163    3273.22
## 53657            115     108.44
## 53658            929   40433.89
## 53659             84       0.00
## 53660             52     529.52
## 53661            186     435.82
## 53662            184    1192.01
## 53663            468   36802.65
## 53664            491   62581.69
## 53665           1040     311.60
## 53666           1007      73.38
## 53667             89     800.66
## 53668             50     139.10
## 53669           1058     133.63
## 53670           1058     357.82
## 53671             99     512.27
## 53672           1057     328.47
## 53673           1057    1318.64
## 53674           1058     804.80
## 53676           1054     308.86
## 53677            116     788.50
## 53678           1056    1277.84
## 53679            623     481.18
## 53680           1048     399.93
## 53681            204      28.32
## 53682           1051      35.16
## 53683           1061     141.36
## 53684            122     467.80
## 53685           1041     126.01
## 53686            121     357.11
## 53687            103    1972.90
## 53688            271     114.68
## 53689            206     316.88
## 53690            112     128.66
## 53691           1050       0.00
## 53692            135      79.40
## 53693             81      17.80
## 53694            373       0.00
## 53695           1056     382.48
## 53696           1056       0.00
## 53697           1056     183.68
## 53698            871     143.12
## 53699           1058     469.37
## 53700             42     164.97
## 53701            148    1663.32
## 53702           1081   16704.56
## 53703           1058     619.10
## 53704            865   29361.36
## 53705           1043       0.00
## 53706            553    3721.93
## 53707            327     804.03
## 53708             75    2933.41
## 53709            117     229.48
## 53710             84       0.00
## 53711           1056    1096.77
## 53712           1056     642.36
## 53713            870     155.45
## 53714            115     235.72
## 53715            113     231.44
## 53716           1036     424.00
## 53717            148    1278.68
## 53718            574    4573.54
## 53719           1056     294.23
## 53720             86       0.00
## 53721           1054   29182.58
## 53722           1055    1638.59
## 53723             20      40.76
## 53724           1532  384569.84
## 53725           1037     881.39
## 53727            197    1944.24
## 53728           1051     588.27
## 53729            200    4623.72
## 53730            112    1142.19
## 53731            141      49.40
## 53732            201     672.03
## 53733           1048      86.17
## 53734           1044       0.00
## 53735            115     402.58
## 53736            520     547.67
## 53737            944     199.82
## 53738            942       0.00
## 53739            970    2865.45
## 53740            151    1346.79
## 53741           1598  217753.61
## 53742             70       0.00
## 53743            314    9993.75
## 53744           1041     415.41
## 53745           1008     133.01
## 53746            115     352.30
## 53747             31     171.82
## 53748            470     185.84
## 53749             70    1345.47
## 53750            109     270.56
## 53751            112     113.79
## 53752            898     176.76
## 53753             80       0.00
## 53754            826       0.00
## 53755             80       0.00
## 53756           1054    1180.18
## 53757           1054     287.78
## 53758            446   40366.70
## 53759            126     285.73
## 53760            314   16529.76
## 53761            963     350.66
## 53762           1041       0.00
## 53763            101     551.42
## 53764           1044     222.03
## 53765             95     345.46
## 53766            742    1539.10
## 53767            155     165.66
## 53768            875     148.15
## 53769            127    2365.95
## 53770            115     434.10
## 53771            220    4010.34
## 53772            725    3203.17
## 53773             21      84.99
## 53774            178    2750.38
## 53775            141    1474.87
## 53776           1051     241.67
## 53777           1051     121.06
## 53778           1044       0.00
## 53779            336   22994.22
## 53781            152     234.81
## 53782           1036     451.88
## 53783            227    1066.91
## 53784           1043     270.35
## 53785            104     108.98
## 53786            153       0.00
## 53787             81       0.00
## 53788            804   71715.76
## 53789             89       0.00
## 53790           1295     981.75
## 53791             78     127.68
## 53792           1044       0.00
## 53793           1044     353.53
## 53794           1049     736.30
## 53795            109      74.68
## 53796           1048     799.99
## 53797           1048     358.98
## 53798           1054     895.49
## 53799           1051      56.62
## 53800            111     226.76
## 53801            262     570.11
## 53802            110     279.82
## 53803             85       0.00
## 53804            147     275.35
## 53805            338     340.33
## 53806            533   19033.43
## 53807            106     361.03
## 53808           1009     112.66
## 53809           1026      81.42
## 53810            563      86.49
## 53811           1284     752.09
## 53812           1037       0.00
## 53813            196    1524.79
## 53814            717     206.00
## 53815            134    1491.61
## 53816           1042      59.16
## 53817           1284       0.00
## 53818           1284     259.19
## 53819           2332   31878.52
## 53820           1282     282.02
## 53821            567     480.38
## 53822            142     835.52
## 53823           1051     124.95
## 53824           1049      82.80
## 53825            109     156.30
## 53826            964     225.86
## 53827            126     113.46
## 53828            196     564.32
## 53829             41     125.00
## 53830           1037     349.74
## 53831           1040       0.00
## 53832           1029     860.23
## 53833           1048     391.25
## 53834            197     920.37
## 53835            806     624.44
## 53836            637     540.86
## 53837            106      16.91
## 53838           1037    1486.92
## 53839            526   87401.01
## 53840           1042     925.83
## 53841           1042    1126.00
## 53842             73       0.00
## 53843           1035      49.40
## 53844            835    6947.57
## 53845            316       0.00
## 53846             79       6.37
## 53847           1048    1238.43
## 53848            110      90.77
## 53849            187     287.52
## 53850            580     293.99
## 53851            392     122.58
## 53852           1043     336.45
## 53853            105      58.01
## 53854           1041     303.62
## 53855             98     233.59
## 53856            270     256.44
## 53857            133      42.32
## 53858            101      76.98
## 53859            101     171.10
## 53860             97    1066.76
## 53861            117     165.42
## 53862            170     331.61
## 53863            258    2148.42
## 53864            109     730.66
## 53865           1064   14601.07
## 53866           1461   28613.15
## 53867            987   33596.41
## 53868            245     248.92
## 53869            102     295.71
## 53870             98     421.17
## 53871             89     154.93
## 53872           1028       0.00
## 53873            111     346.67
## 53874             69       0.00
## 53875             67       0.00
## 53876           1027    1142.22
## 53877           1041     868.87
## 53878            103     286.05
## 53879           1086     185.30
## 53880            531    7160.91
## 53881            117     469.72
## 53882           1020    3239.07
## 53883           1034      86.17
## 53884           1035    6427.12
## 53885           1036     200.54
## 53886            110      85.49
## 53887            162     268.50
## 53888            468    2928.96
## 53889            484   19603.92
## 53890            136     239.03
## 53891            771   12156.20
## 53892           1048       0.00
## 53893           1048     330.37
## 53894             61       0.00
## 53895            127     198.55
## 53896           1036       0.00
## 53897           1036      41.27
## 53898            966    1314.76
## 53899             26      95.37
## 53900            936     757.55
## 53901            357     186.25
## 53902            135     644.30
## 53903            261    5596.62
## 53904            103     947.65
## 53905            560    4838.55
## 53906            103     189.64
## 53907            102    1541.16
## 53908            101     277.54
## 53909             70       0.00
## 53910           1012       0.00
## 53911            106      43.92
## 53912             30       0.00
## 53913            115     312.67
## 53914           1048    1253.21
## 53915            109     152.28
## 53916           1048     330.32
## 53917            166     318.18
## 53918             35     313.25
## 53919            197     151.01
## 53920             87       0.00
## 53922            770    1759.01
## 53923             65     753.68
## 53924           1040   17810.35
## 53925           1041       0.00
## 53926           1911     185.20
## 53927            195     258.71
## 53928           1043     167.14
## 53929            337    9266.46
## 53930           1038   15011.70
## 53931           1720  103994.19
## 53932           1162   62904.53
## 53933           1604   31215.31
## 53934           1044    2422.40
## 53935           1033    1858.72
## 53936            276     160.50
## 53938            911       0.00
## 53939            108     109.62
## 53940           1333 1393926.09
## 53941           1019   69403.67
## 53942           1048     918.83
## 53943            107     937.66
## 53944            380   17117.50
## 53945            195    3686.62
## 53946             71       0.00
## 53947           1042     267.43
## 53948           1091   20880.40
## 53949            144     811.61
## 53951            475     123.68
## 53952            354    1827.96
## 53953           1013     273.11
## 53954            151     265.62
## 53955            106     129.12
## 53956            144     105.16
## 53957           1043     548.11
## 53958            834     194.35
## 53959            258       0.00
## 53960             94     153.11
## 53961            107     160.23
## 53962            826     376.30
## 53963            328    1605.71
## 53964            257     540.43
## 53965            555    3155.50
## 53966             99     310.89
## 53967            107     203.27
## 53968           1041       0.00
## 53969           1062     542.15
## 53970             73       0.00
## 53971           1042     349.59
## 53972           1042    4131.35
## 53973            301     232.90
## 53974           1035    1220.48
## 53975             96     237.01
## 53976           1036      75.37
## 53977            197    1560.59
## 53978             94     124.95
## 53979           1034       0.00
## 53980            820    1109.79
## 53981            765  191105.95
## 53982            815     587.81
## 53983            113      95.20
## 53984            788       0.00
## 53985             90     262.18
## 53986             76       0.00
## 53987           1014       0.00
## 53988            282   10036.42
## 53989           1423   44169.70
## 53990           1035     117.39
## 53991            222     101.35
## 53992            102     300.74
## 53993            224     373.85
## 53994           1042     176.76
## 53995           1042    2742.77
## 53996           1028   24278.33
## 53997           1040       0.00
## 53999           1040       0.00
## 54000            102     128.33
## 54001            531       9.17
## 54002            190     672.16
## 54003           1040    2667.73
## 54004            968       0.00
## 54005            281   14891.72
## 54006            987       0.00
## 54007           1404     150.49
## 54008            795      27.54
## 54009           1037     282.22
## 54010            105     170.65
## 54011            209      18.03
## 54012           1041    1944.90
## 54013           1041     147.66
## 54014            237    1365.38
## 54015           1040    1738.48
## 54016           1040       0.00
## 54017           1040     411.26
## 54018            210     806.67
## 54019           1041     568.19
## 54020           1041     280.58
## 54021            232    1798.70
## 54022            553    2321.88
## 54023            470    3387.25
## 54024           1035    7335.72
## 54025            155       0.00
## 54026             98     183.87
## 54027            769     571.27
## 54028            125      70.76
## 54029            932    2860.51
## 54030           1029   18328.50
## 54031           1028     175.58
## 54032           1028     236.77
## 54033             89       0.00
## 54034            523     135.21
## 54035            161       0.00
## 54036           1032     828.09
## 54037           1008    1893.95
## 54038            262    1402.35
## 54039            984     276.03
## 54040             89     373.93
## 54041            316     277.09
## 54042            406    9298.25
## 54043            651   24381.05
## 54044           1022       0.00
## 54045           1023       0.00
## 54046           1023    2527.18
## 54047            494       0.00
## 54048           1034       0.00
## 54049            402      51.49
## 54050            554     420.44
## 54051            117     151.93
## 54052            210    2467.95
## 54054           1036     251.88
## 54055           1036     404.34
## 54056             96     218.81
## 54057           1035       0.00
## 54058            679     119.62
## 54059           1035    1239.40
## 54060            101     146.00
## 54061            102      85.60
## 54062            102      18.03
## 54064            210    5379.96
## 54065             70       0.00
## 54066            769     271.45
## 54067            956    3046.84
## 54068            206     672.02
## 54069           1037   27618.48
## 54070             96       8.43
## 54071             96     125.27
## 54073           1034       0.00
## 54074            157     210.70
## 54075            144    2401.11
## 54076             89     399.88
## 54077            835    5276.60
## 54078            467   21947.69
## 54080           1034     601.37
## 54081           1036     597.06
## 54082            183    1583.83
## 54083             96       7.87
## 54084           1034       0.00
## 54085           1033    1200.06
## 54086           1023    1559.15
## 54087              2       0.00
## 54088           1012       0.00
## 54089           1012       0.00
## 54090            986      86.17
## 54091             75       0.00
## 54092           1023     796.11
## 54093             84       0.00
## 54094           1022       0.00
## 54095           1022      96.29
## 54096            223     669.23
## 54097            540      66.68
## 54098           1020     145.13
## 54099           1092   26298.56
## 54100           1029     217.87
## 54101            544      10.00
## 54102             89      71.79
## 54103            809       0.00
## 54104             42     113.60
## 54105            115     244.28
## 54106           1019     820.72
## 54107            352       0.00
## 54108            595       0.00
## 54109           1035    1309.83
## 54110            618       0.00
## 54111             92     955.71
## 54112           1035     269.27
## 54113             96     264.99
## 54114             41     127.68
## 54115           1065   19615.10
## 54116            158     500.26
## 54117            196       0.00
## 54118            308       0.00
## 54119             99     119.49
## 54120            268     292.60
## 54121            345   27250.68
## 54122            939  204971.40
## 54123            554     239.42
## 54124            833       6.95
## 54125           1763   22037.48
## 54126           1033    2308.33
## 54127            161    1131.99
## 54128            125     187.55
## 54129           1034    2087.63
## 54130             93     204.67
## 54131             87       0.00
## 54132            432     105.46
## 54133           1029     754.94
## 54134            121     233.93
## 54135            351      90.27
## 54136             91     155.49
## 54137            332    1981.90
## 54138             93     176.06
## 54139            169     167.75
## 54140             16       0.00
## 54141            142     512.29
## 54142            682     193.03
## 54143            106     132.64
## 54144             89     137.63
## 54145            729   24968.75
## 54146             41       0.00
## 54147            942     149.19
## 54148            987     220.52
## 54149            984     168.61
## 54150             91       0.00
## 54151            540    5290.50
## 54152           1016     150.08
## 54153            333      75.43
## 54154           1016     321.67
## 54155            600    1323.74
## 54156             99     227.47
## 54157            179       0.00
## 54158            122     184.78
## 54159            121     343.86
## 54160           1029      59.16
## 54161           1078   85369.25
## 54162            240     627.87
## 54163           1012     759.26
## 54164           1034     110.17
## 54165           1034   40533.85
## 54166           1034    1589.42
## 54167           1033      37.26
## 54168            550     544.77
## 54169            986       0.00
## 54170            612   27467.66
## 54171           1033     358.08
## 54172            783   84783.06
## 54173           1012      86.17
## 54174           1014       0.00
## 54175           1027     133.32
## 54176           1027     125.05
## 54177             89     150.82
## 54178            150     654.27
## 54179           1029    2026.94
## 54180            584     298.50
## 54181             90       0.00
## 54182           1019    2197.39
## 54183            367    1304.10
## 54184            514     246.28
## 54185           1015       0.00
## 54186            153     311.71
## 54187            876    3183.13
## 54188            114    1090.52
## 54189             99     938.46
## 54190             81       0.00
## 54191           1020     316.46
## 54193             14     106.40
## 54194            217     559.34
## 54195           1027    1153.45
## 54196             88     108.87
## 54197           1028     219.13
## 54198           1001       0.00
## 54199            260     128.78
## 54200            146     256.25
## 54201            209    1583.43
## 54202           1012    1463.50
## 54203            145    4802.93
## 54204            131     163.16
## 54205            135     520.91
## 54206           1028   12313.33
## 54207            544    2520.70
## 54208           1030       0.00
## 54209           1509   89631.60
## 54210           1030       0.00
## 54211           1028     294.41
## 54212           1029     462.55
## 54213           1030       0.00
## 54214             83     353.92
## 54215           1270     951.06
## 54216            827       0.00
## 54217            958      86.17
## 54218            133     141.30
## 54219            406     829.00
## 54220            428     236.56
## 54221            127     285.03
## 54222            960     184.25
## 54223            248    3736.02
## 54224            476       0.00
## 54225             42     338.35
## 54226            999       0.00
## 54227           1028       0.00
## 54228            428    1527.82
## 54229             88      62.81
## 54230             88       0.00
## 54231            179     276.24
## 54232            513    1255.16
## 54233            115     127.68
## 54234            633    1204.86
## 54235           1023     655.32
## 54236            727       0.00
## 54237             34     253.93
## 54238            540    4206.80
## 54239            114     196.10
## 54240           1022      99.90
## 54241            112     299.37
## 54242            515     634.38
## 54243            270     430.76
## 54244            348     968.81
## 54245             97    2517.45
## 54246            254      95.00
## 54247            146     137.66
## 54248            300     113.79
## 54249             92      59.16
## 54250             50     685.36
## 54251            157     284.30
## 54252            471    4557.63
## 54253             77       0.00
## 54254           1016     170.17
## 54255           1035     410.58
## 54256           1022       0.00
## 54257           1021     151.31
## 54258           1023     140.58
## 54259             76       0.00
## 54260            825      54.60
## 54261            906       0.00
## 54262             84       0.00
## 54263             95    3651.77
## 54264            867    1321.55
## 54265            155     797.01
## 54266            120     254.05
## 54267           1028    1964.18
## 54268           1198     834.50
## 54269            719    1314.59
## 54270            128     164.32
## 54271           1027     461.09
## 54272            300    3508.14
## 54273           1027     362.22
## 54274            118     356.26
## 54275           1005   19849.87
## 54276           1007       0.00
## 54277           1005     216.65
## 54278            279      44.21
## 54279           1014      76.98
## 54280            152     257.04
## 54281            106      60.49
## 54282           1023       0.00
## 54283           1023     169.75
## 54284            100     339.85
## 54285           1021     438.59
## 54286            235    1553.55
## 54287            847     595.30
## 54288            525       0.00
## 54289            166     942.20
## 54290            148     864.99
## 54291            887     368.67
## 54292            753      86.37
## 54293           1583   40369.08
## 54294            805     202.76
## 54295            117     371.88
## 54296            403   27199.09
## 54297            492    4689.56
## 54298           1221    1229.56
## 54299           1016     889.30
## 54300            113     715.64
## 54301            722     131.11
## 54303            540   36091.14
## 54304           1023     170.63
## 54305           1023    1598.66
## 54306           1014     117.60
## 54307           1015     203.11
## 54308             56       0.00
## 54309           1023   48645.83
## 54310           1023    4191.37
## 54311           1023     146.20
## 54312           1023    1740.96
## 54313           1023   13653.44
## 54314           1023     873.69
## 54315            474    5188.00
## 54316           1231       8.25
## 54317             86       0.00
## 54318             71     294.22
## 54319             61       0.00
## 54320              8       0.00
## 54321           1005     818.57
## 54322             76       0.00
## 54323            248     533.97
## 54324            423       0.00
## 54325           1015     309.23
## 54326            107    1197.24
## 54327           1023     186.21
## 54328           1023     294.35
## 54329           1023       0.00
## 54330           1665  746986.07
## 54331             57       0.00
## 54332            570    1876.81
## 54333            114     235.85
## 54334             77       0.00
## 54335            537    2867.13
## 54336            517     344.11
## 54337            108     160.97
## 54338            244     298.66
## 54339             80       0.00
## 54340            256       0.00
## 54341           1012       0.00
## 54342           1012       0.00
## 54343           1012     338.71
## 54344           1012       0.00
## 54345           1012       0.00
## 54346            526   10883.42
## 54347           1016       0.00
## 54348            175    1115.43
## 54349            448     519.05
## 54350            212    2217.51
## 54351           1366   71567.06
## 54352            713     514.80
## 54353            601     775.35
## 54354           1001       0.00
## 54355           1001       0.00
## 54356           1001       0.00
## 54357            157    1794.54
## 54358            296    1588.35
## 54359            503     129.63
## 54360           1005       0.00
## 54361            273    1694.88
## 54362            609    1789.59
## 54363           1021     204.35
## 54364           1012       0.00
## 54365            146     121.60
## 54366             97     127.68
## 54367            150      74.68
## 54368            994       0.00
## 54369            105     287.55
## 54370           1021    2925.85
## 54371           1016     259.51
## 54372             83      94.22
## 54373            533    4706.00
## 54374           1014       0.00
## 54375            229     716.69
## 54376            104       0.00
## 54377           1001       0.00
## 54378            176     424.88
## 54379            232     223.77
## 54380            925     237.03
## 54381            112     164.05
## 54382            995    1253.06
## 54383            836     143.21
## 54384            169       0.00
## 54385            188     213.14
## 54386           1005    2323.72
## 54387             93     588.73
## 54388             93     258.49
## 54389             93      94.58
## 54390           1016       0.00
## 54391           1016    2573.38
## 54392           1016       0.00
## 54393            130     470.00
## 54394            537     207.25
## 54395            446     421.15
## 54396           1041     248.26
## 54397           1020     553.30
## 54398            112     516.92
## 54399           1012       0.00
## 54400           2726   12397.19
## 54402            987       0.00
## 54403            959    1356.82
## 54404           1014    1672.92
## 54405             75       0.00
## 54406           1019     785.79
## 54407            668   55091.55
## 54408           1020     870.08
## 54409           1020    1152.53
## 54410            202    1621.66
## 54411            107     165.14
## 54412            161    1749.30
## 54413            107      51.49
## 54414             57     153.34
## 54415            127     149.90
## 54416             97     168.21
## 54417           1005     445.03
## 54418            497     604.39
## 54419            806   26234.34
## 54420            101     125.82
## 54421             34       0.00
## 54422             43      78.17
## 54423           1007       0.00
## 54424           1007     154.80
## 54425           1005       0.00
## 54426            519     160.23
## 54427            244    2776.37
## 54428             93      74.68
## 54429            161    4894.43
## 54430           1016     604.60
## 54431            534    1063.28
## 54432           1019     122.45
## 54433           1019     137.18
## 54434           1014     317.99
## 54435             75       0.00
## 54436           1014       0.00
## 54437            106     205.49
## 54438            131     123.52
## 54439            193    1573.09
## 54440            160    1683.11
## 54441           1007       0.00
## 54442           1012    2957.38
## 54443           1012       0.00
## 54444           1012       0.00
## 54445           1014      57.40
## 54446           1014       0.00
## 54447            119     997.23
## 54448           1013     750.39
## 54449            533    1398.52
## 54450            533     331.00
## 54451           1016    1612.91
## 54452           1016    1799.61
## 54453            764   28272.77
## 54454             92     207.67
## 54455             93     197.50
## 54456             97       0.00
## 54457            168    3419.43
## 54458           1005     480.69
## 54459             90     448.89
## 54460            272     155.81
## 54461           1528     446.75
## 54462           1014     685.69
## 54463           1014       0.00
## 54464           1014       0.00
## 54465           1014       0.00
## 54466            104     184.09
## 54467            995    3855.27
## 54468           1203   15301.29
## 54469            972       0.00
## 54470           1014     481.56
## 54471           1014     496.30
## 54472           1014       0.00
## 54473            106      59.16
## 54474            670     881.57
## 54475            113     745.67
## 54476            737     368.82
## 54477            971       0.00
## 54478            946    5145.79
## 54479            965       0.00
## 54480            521    2643.67
## 54481            466       0.00
## 54482            537     168.13
## 54483           1014      90.77
## 54484            107     363.21
## 54485             91      61.14
## 54486            104      99.97
## 54487           1001     424.87
## 54488             97     190.76
## 54489             77      98.21
## 54490            130     612.67
## 54491           1001       0.00
## 54492            133    1894.80
## 54493           1284  194271.27
## 54494           1014     493.74
## 54495           1013    1343.35
## 54496            130     154.76
## 54497            995     524.09
## 54498           1012       0.00
## 54499            311   21831.89
## 54500            890    1951.32
## 54501            621   15982.04
## 54502            345     340.96
## 54503            977    1362.66
## 54505           1012     311.26
## 54506           1012     275.16
## 54507            100     423.87
## 54508            720   50499.61
## 54509            105     167.48
## 54510           1013     688.23
## 54511            105     163.85
## 54512           1007   12456.87
## 54513           1014       0.00
## 54514           1014     295.74
## 54515           1005      59.16
## 54516           1001     168.80
## 54517           1001     242.90
## 54518           1007       0.00
## 54519            133    1467.84
## 54520           1005    1436.32
## 54521             66       0.00
## 54522            454      96.42
## 54523           1014      76.98
## 54524            167     268.91
## 54525            298     109.16
## 54526            241     183.42
## 54527            108     137.61
## 54528            985       0.00
## 54529            183     466.02
## 54530            106     248.36
## 54531            985     245.18
## 54532            977       0.00
## 54533            121      85.60
## 54534            201     697.04
## 54535             85     387.20
## 54536           1005       0.00
## 54537           1005       0.00
## 54538             98     191.57
## 54539             27     137.66
## 54540            246     334.78
## 54541            537     247.80
## 54542           1007       0.00
## 54543            407     133.07
## 54544             78       0.00
## 54545           1001       0.00
## 54546            215     192.16
## 54547             66       0.00
## 54548            343   18245.75
## 54549            393     388.06
## 54550             74       0.00
## 54551           1007       0.00
## 54552           1007       0.00
## 54553            130     216.58
## 54554            681    1888.23
## 54555            104     223.05
## 54556           1012     151.51
## 54557           1012      91.79
## 54558           1012     801.66
## 54559            938     226.09
## 54560            936       0.00
## 54561             77     489.86
## 54562             76     229.06
## 54563            886     615.62
## 54564            999       0.00
## 54565             70       0.00
## 54567            769    1589.42
## 54568            979     410.05
## 54569            986     293.59
## 54570             78     153.63
## 54571             86       0.00
## 54572            115     446.36
## 54573            280   12475.14
## 54574            146    4513.87
## 54575            791     676.39
## 54576             83       0.00
## 54577            988       0.00
## 54578            109     827.51
## 54579             73       0.00
## 54581             43     229.00
## 54582            178    1993.77
## 54583            448   15500.00
## 54584            158     973.38
## 54585            154     624.85
## 54586            656    3404.88
## 54587             62       0.00
## 54588             62       0.00
## 54589           1001       0.00
## 54590             93     176.55
## 54591             65       0.00
## 54592            158     391.83
## 54593             61       0.00
## 54594            122     143.94
## 54595            880   40153.06
## 54596             13     145.37
## 54597             90       0.00
## 54598            995     207.10
## 54599             85      95.94
## 54600             70     400.14
## 54601            222     495.43
## 54602            987       0.00
## 54603            999       0.00
## 54604             90      86.17
## 54605            122    1527.27
## 54606             97     118.52
## 54607           1007     164.60
## 54608           1007     212.97
## 54609            871   38162.58
## 54610            516       0.00
## 54611              4       0.00
## 54612            282    4210.93
## 54613            373     349.47
## 54614           1591   29826.76
## 54615             86       0.00
## 54617            965       0.00
## 54618           1007       0.00
## 54619           1005     818.66
## 54620            686     116.56
## 54621            122     193.40
## 54622            995       0.00
## 54623            292     229.50
## 54624            153     592.72
## 54625             72     759.57
## 54626           1007     869.41
## 54627             79     450.90
## 54628           1007     220.81
## 54629             97     200.69
## 54630            223     579.59
## 54631            972       0.00
## 54632            972       0.00
## 54633            122     651.01
## 54634            281    2384.92
## 54635            591     407.36
## 54637            110     236.81
## 54638             23       0.00
## 54639            987       0.00
## 54640             90      86.17
## 54641            209    3047.94
## 54642             82       0.00
## 54643             15       0.00
## 54644            101     128.48
## 54645             66       0.00
## 54646           1001     314.19
## 54647           1007    5243.78
## 54648           1007    1409.68
## 54649           1254     696.03
## 54650            853    1515.10
## 54651             66       0.00
## 54652            539   26749.92
## 54653            159     202.69
## 54654             67       0.00
## 54655           1005    7571.84
## 54656            504    3148.93
## 54657             86     324.96
## 54658            642     358.18
## 54659             53     305.80
## 54660            341    8820.21
## 54661             91       0.00
## 54662            987     270.68
## 54663            984       0.00
## 54664             78     127.68
## 54665            979      86.17
## 54666            991    2472.14
## 54667            115      87.08
## 54668            996   22897.99
## 54669            190     369.09
## 54670            125     143.90
## 54671            547    2905.98
## 54672            981     300.96
## 54673             61       0.00
## 54674            214     829.47
## 54675           1001       0.00
## 54676            316     411.15
## 54677            128     310.89
## 54678             98      74.68
## 54679            426    2700.02
## 54680           1007     127.68
## 54681           1007    1760.77
## 54682           1007    1022.04
## 54683           1001       0.00
## 54684           1001       0.00
## 54685           1001      76.13
## 54686           1001     289.98
## 54687            635      58.71
## 54688           1005     657.02
## 54689           1005     689.15
## 54690           1005     859.19
## 54691           1005       0.00
## 54692            127     763.83
## 54693            456       0.00
## 54694           1035   49657.79
## 54695            183     232.93
## 54696            995      38.42
## 54697             62       0.00
## 54698            991     536.42
## 54699            988     151.06
## 54700             80       0.00
## 54701            139     227.50
## 54702             82     376.88
## 54703            152     699.81
## 54704            998      32.00
## 54705            999      98.92
## 54706            138    9580.88
## 54707            204     875.47
## 54708            250     310.12
## 54709            812    1245.86
## 54710           1005       0.00
## 54711              4       0.00
## 54713            259      16.30
## 54714             93     142.87
## 54715           1007     187.75
## 54716            260     143.18
## 54717           1005     111.59
## 54718            144     265.10
## 54720           1305   13953.40
## 54721            405    2071.09
## 54722            248      90.65
## 54723            603    9257.48
## 54724            138     651.98
## 54725            512     127.68
## 54726            985     287.82
## 54727            987       0.00
## 54728           1289   66063.44
## 54729           1387  123601.79
## 54730             86     102.78
## 54731            977     419.52
## 54732            973     680.00
## 54733           1001       0.00
## 54734           1005     108.60
## 54735           1005     911.55
## 54736             97      73.94
## 54737           1005       0.00
## 54738            123     739.69
## 54739            133     932.54
## 54740           1221    5132.38
## 54741            995    7030.17
## 54742            995    2155.86
## 54743            994   12007.82
## 54744           1080   32107.92
## 54745            991     520.46
## 54746             78       0.00
## 54747            304       0.00
## 54748            987     416.04
## 54749            986       0.00
## 54750             78      92.53
## 54751            138     840.08
## 54752             55     746.89
## 54753            386       0.00
## 54754            965       0.00
## 54755            986     125.84
## 54756            991      74.68
## 54757            991     365.50
## 54758            977    1053.34
## 54759            988    3697.10
## 54760            988     122.02
## 54761            117     147.78
## 54763             78      86.17
## 54764           1799   47403.61
## 54765            998     249.43
## 54766            148    1659.41
## 54767            560    1787.68
## 54768            104     194.96
## 54769            327    8943.62
## 54770            999       0.00
## 54771            999       0.00
## 54772            624      74.68
## 54773            981       0.00
## 54774             78      34.77
## 54775            994       0.00
## 54776            147     558.72
## 54777            174    1348.94
## 54778             92       8.52
## 54779            991    2391.16
## 54780            991       0.00
## 54781            380   10165.47
## 54782            988       0.00
## 54783            877   15649.25
## 54784            355      91.86
## 54785            987    1006.77
## 54786            986     819.63
## 54787            999     267.31
## 54788            349    4773.64
## 54789            121     487.28
## 54790            445    1071.29
## 54791             70     315.90
## 54792            412    6625.00
## 54793            909      15.00
## 54794             85      74.68
## 54795            251     870.22
## 54796            895     697.44
## 54797            400     457.67
## 54798            424    1200.22
## 54799            146     910.36
## 54800            987       0.00
## 54801            987       0.00
## 54802             63     323.18
## 54803            516    1741.41
## 54804            760     129.79
## 54805           1284    3565.73
## 54806            147    1052.62
## 54807            992     214.98
## 54808           1240     183.32
## 54809            403     434.64
## 54810             42      44.21
## 54811             80       0.00
## 54812            991    1543.90
## 54813            991       0.00
## 54814             99      97.68
## 54815            294     871.56
## 54816            977       0.00
## 54817            257    1159.80
## 54818           1323  189753.61
## 54819            977       0.00
## 54820            100    1015.21
## 54821             92      74.68
## 54822            106     195.38
## 54823            160     130.79
## 54824            127     306.81
## 54825            991     793.67
## 54826            991     276.71
## 54827           1459   44638.93
## 54828            702      94.93
## 54829             44    1324.88
## 54830            110     293.74
## 54831            988     225.08
## 54832            869    3132.78
## 54833             73     206.37
## 54834             66       0.00
## 54835             86     317.06
## 54836            523     397.21
## 54838            111     310.80
## 54839            987       0.00
## 54840            108    1257.32
## 54841            154       0.00
## 54842             90     157.04
## 54843            445     683.94
## 54844            417       0.00
## 54845            987       0.00
## 54846            987     389.73
## 54847           1105   23970.97
## 54848            490     529.40
## 54849            277     268.66
## 54850           1114   38427.56
## 54851            231    3385.70
## 54852            207     466.52
## 54853             85     123.52
## 54854             86       0.00
## 54855            988       0.00
## 54856            988   12750.78
## 54857            988     658.34
## 54858            991       0.00
## 54859             66       0.00
## 54860            107      51.49
## 54861             94     204.40
## 54862             76       0.00
## 54863            972     157.85
## 54864            151    1555.74
## 54865             69       0.00
## 54866            956    5696.44
## 54867            958       0.00
## 54868            964       0.00
## 54869            991    1409.47
## 54870            134     179.20
## 54871            987       0.00
## 54872            652       0.00
## 54873            986       0.00
## 54874            991     586.12
## 54875            991     866.82
## 54876            971       0.00
## 54877            946    4700.41
## 54878             91     412.87
## 54879            946       0.00
## 54880            641    2010.10
## 54881            967     270.04
## 54882            102     218.67
## 54883            991     152.49
## 54884            988     112.00
## 54885            987       0.00
## 54886            988      91.58
## 54887            988     862.87
## 54888             86     214.50
## 54889            992       0.00
## 54890            114     389.67
## 54891            994     178.52
## 54892            410     329.25
## 54893            986       0.00
## 54894            986       0.00
## 54895            170     175.11
## 54896            987       0.00
## 54897            987       0.00
## 54898            987       0.00
## 54899            987       0.00
## 54900            987       0.00
## 54901            220    1515.53
## 54902              1       0.00
## 54903            259     180.09
## 54904            103     164.31
## 54905           1197   18688.67
## 54906            213     309.21
## 54907            644    1135.03
## 54908            972       0.00
## 54909             96     235.50
## 54910            972       0.00
## 54911             94     134.82
## 54912            155     207.16
## 54913            103     510.31
## 54914            103     170.05
## 54915            167     466.89
## 54916             42     677.42
## 54917            389    1437.87
## 54918            139     471.54
## 54919             78     150.73
## 54920            137     248.85
## 54921            141    4580.37
## 54922            148     211.43
## 54923            986     188.77
## 54924            278   13563.40
## 54925             73     276.14
## 54926            974    3280.68
## 54927            110     420.01
## 54928            991       0.00
## 54929            113     373.82
## 54930            988     814.54
## 54931            988    1326.90
## 54932           1060   54985.23
## 54933            306       0.00
## 54934             87     220.88
## 54935            608     341.27
## 54936             99     555.16
## 54937            988     256.09
## 54938            439    2016.84
## 54939            110     264.63
## 54940            988     524.66
## 54941             80     230.16
## 54943            145    1078.15
## 54944            987     970.98
## 54945             79      82.79
## 54946            987       0.00
## 54947            987    1059.82
## 54948            201     711.19
## 54949            987       0.00
## 54950            230     457.95
## 54951             96     265.17
## 54952            139    1535.86
## 54953            131     824.73
## 54954            100     154.72
## 54955            130     423.87
## 54956            675  193876.96
## 54957            126     155.17
## 54958             65       0.00
## 54959             94     180.09
## 54960            972       0.00
## 54961            972       0.00
## 54962            972       0.00
## 54963            972       0.00
## 54964            972       0.00
## 54965            661    6586.15
## 54966            977       0.00
## 54967            977   30592.99
## 54968             99     196.78
## 54969             78     110.12
## 54970           1951  154079.59
## 54971            986       0.00
## 54972            106     201.35
## 54973            987     217.12
## 54974            986     610.21
## 54975            988     322.62
## 54976            988       0.00
## 54977            731   34859.23
## 54978             83       0.00
## 54979             79     353.93
## 54980            327   10047.30
## 54981             82     160.60
## 54982            935       0.00
## 54984            310       0.00
## 54985            987     605.11
## 54986            987       0.00
## 54987            986       0.00
## 54988            987       0.00
## 54989            124       0.00
## 54990            190    1681.59
## 54991            415     355.63
## 54992            979     163.78
## 54993            223     354.86
## 54994            415       0.00
## 54995            533     145.09
## 54996            399    9990.13
## 54997            139     188.98
## 54998             73       0.00
## 54999            972       0.00
## 55000            980       0.00
## 55001            977       0.00
## 55002            977       0.00
## 55003            524    9520.66
## 55004            987       0.00
## 55005            805     646.19
## 55006            198     434.22
## 55007            987       0.00
## 55008            987       0.00
## 55009           1265    2001.80
## 55010            259    1443.64
## 55011            108     122.49
## 55012            693   13357.20
## 55013            977     290.00
## 55014            131     167.30
## 55015           1364   82047.34
## 55016            120     121.76
## 55018            980     355.52
## 55019            980     266.75
## 55020             73       0.00
## 55021            218   10758.09
## 55022            854    7259.84
## 55023            977       0.00
## 55024            972    1292.16
## 55025            972     806.15
## 55026           2752     565.63
## 55027            187     240.07
## 55028            126      85.68
## 55029            977    1515.65
## 55030            127     129.32
## 55031            258     523.60
## 55032            138    1510.88
## 55033            301     280.22
## 55034            137     618.69
## 55035            167     750.39
## 55036            235       0.00
## 55037            965       0.00
## 55038            150     516.36
## 55039            101       0.00
## 55040           1148   62860.23
## 55041            120       0.00
## 55042            143      74.16
## 55043            958    1177.17
## 55044            181     530.77
## 55045            965       0.00
## 55046            106     138.77
## 55047            103     369.17
## 55048            155     947.98
## 55049            137     156.84
## 55050            107      96.29
## 55051            986     396.52
## 55052            986       0.00
## 55053            987    2558.04
## 55054            987       0.00
## 55055            977     307.09
## 55056            126     296.20
## 55057            313     672.13
## 55058            341     256.51
## 55059            977       0.00
## 55060            977     498.77
## 55061            977       0.00
## 55062           2812   38401.83
## 55063            754    1122.60
## 55064            977     293.96
## 55065            160     747.28
## 55066            981   57655.01
## 55067            807    2611.66
## 55068             66     214.99
## 55069            980       0.00
## 55070             70       0.00
## 55071            368      86.17
## 55073            839      44.21
## 55074             85       0.00
## 55075            100     485.82
## 55076            161     185.48
## 55077            374    2930.36
## 55078             73     170.51
## 55079            164     774.91
## 55080            214    1566.89
## 55081           1546  151559.84
## 55082            259     237.26
## 55083            191     420.21
## 55084            977       0.00
## 55085            977    1094.99
## 55086            977   26438.36
## 55087            977       0.00
## 55088            977       0.00
## 55089            125    1470.89
## 55090            972     747.67
## 55091            287     274.36
## 55092             98     173.98
## 55093              8       0.00
## 55094            316      67.07
## 55095            977     235.66
## 55096             96     163.97
## 55097              3       0.00
## 55098            301     911.38
## 55099            230     282.89
## 55100            368     285.85
## 55101            894     887.16
## 55102            123     807.18
## 55103            388    1263.46
## 55104            101     140.49
## 55105            253     182.61
## 55106            203     752.15
## 55107            967       0.00
## 55108            946       0.00
## 55109            945    1573.01
## 55110            964     995.16
## 55111            337    3183.12
## 55112            110     676.05
## 55113            107      74.68
## 55114            105     621.59
## 55115            383     254.90
## 55116            984    1117.18
## 55117           1084   21315.38
## 55118            157    2081.98
## 55119             39     308.42
## 55120            974       0.00
## 55121            974      46.37
## 55122             95     536.36
## 55123             94     136.53
## 55124             94     224.36
## 55125            977   30024.09
## 55126            977     389.43
## 55127            977       0.00
## 55128            977       0.00
## 55129           1335   51698.71
## 55130            268    1587.77
## 55131            978    1788.86
## 55132             70       0.00
## 55133             34      86.17
## 55134            979    1270.83
## 55135           1093  102263.10
## 55136            659     240.00
## 55137            107     662.82
## 55138            761   40536.82
## 55139            979     660.83
## 55140            263     962.51
## 55141            131     672.59
## 55142            848       0.00
## 55143            164     236.96
## 55144            981     330.00
## 55145            977     283.76
## 55146            977     345.13
## 55147            977    2852.91
## 55148            381       0.00
## 55149            972     411.75
## 55150            101     352.81
## 55151             92     159.53
## 55152            971       0.00
## 55153            964       0.00
## 55154            964     404.23
## 55155            178     840.81
## 55156            636    3136.14
## 55157             95       0.00
## 55158            278       0.00
## 55159            858       0.00
## 55160            123     362.96
## 55161            944    2373.58
## 55162            400     475.86
## 55163            946    2186.13
## 55164            252     459.14
## 55165            977       0.00
## 55166            134     733.30
## 55167             64      65.93
## 55168            161     363.47
## 55169            979     178.61
## 55170            930     181.47
## 55171            977       0.00
## 55172            973     576.66
## 55173            972       0.00
## 55174            334     231.94
## 55175            964       0.00
## 55176            647    1627.78
## 55177             81     126.58
## 55178            118     102.00
## 55179            165       0.00
## 55180           1097     345.32
## 55181             92     558.48
## 55182             96     134.56
## 55183            972     148.78
## 55184             31     310.44
## 55185            364    1720.70
## 55186            973       0.00
## 55187            974      16.62
## 55188            977     729.18
## 55189            977     148.79
## 55190            974       0.00
## 55191             99      71.08
## 55192            977    2850.11
## 55193            977       0.00
## 55194            977     619.03
## 55195            977     482.28
## 55197            387    2851.01
## 55198            133     110.12
## 55199            486    8569.50
## 55200            273     166.35
## 55201            106     159.25
## 55202            391     396.14
## 55203           1075   15053.85
## 55204            100      93.05
## 55205            977     297.99
## 55206            130     187.16
## 55207             99     198.18
## 55208            977       0.00
## 55209            127     781.53
## 55210            974     195.41
## 55211            974       0.00
## 55212            136      26.10
## 55213             66       0.00
## 55214            973       0.00
## 55215            973       0.00
## 55216            973      34.60
## 55217            972     347.59
## 55218            916       0.00
## 55219            972       0.00
## 55220            971    8181.45
## 55221            586    1998.87
## 55222            971    3022.47
## 55223            203     523.09
## 55224            106      49.40
## 55225            106      77.40
## 55226            176     116.19
## 55227            949    1338.04
## 55228            964     478.12
## 55229            224       0.00
## 55230            208     417.96
## 55231            783     252.22
## 55232            146      90.77
## 55233            833     197.45
## 55234            205     674.77
## 55235            174     381.55
## 55236            113     300.20
## 55237            964       0.00
## 55238            964       0.00
## 55239            960      79.04
## 55240            949       0.00
## 55241            994    1838.79
## 55242            169    2576.32
## 55243             16      74.68
## 55245            156    2528.41
## 55246            106      98.13
## 55247            971    3673.83
## 55248            125     226.69
## 55249            125     166.75
## 55250            125    1053.29
## 55251            972       0.00
## 55252            215    2021.81
## 55253            125     430.07
## 55254             55    1006.42
## 55255            973       0.00
## 55256             57     153.12
## 55257            338   19800.25
## 55258             95     434.85
## 55259            219     647.26
## 55260            974      69.99
## 55261            977    1664.10
## 55262            977      88.42
## 55263            977     591.29
## 55264            977     985.75
## 55265             70       0.00
## 55266            977       0.00
## 55267             91     203.95
## 55268            167     355.94
## 55269            977      88.01
## 55270            977       0.00
## 55271            974     583.77
## 55272            203    1169.92
## 55273            973       0.00
## 55274            974    1444.16
## 55275            973       0.00
## 55276            163     346.35
## 55277            972       0.00
## 55278            111    2326.44
## 55279            180     194.62
## 55280            123      14.35
## 55281            619     410.96
## 55282            952       0.00
## 55283            952     599.98
## 55284            424    1001.70
## 55285             77     146.95
## 55286            964    1134.66
## 55287            371     136.35
## 55288            964       0.00
## 55289            113     194.56
## 55290            111     173.90
## 55291            944    4567.29
## 55292            105     119.26
## 55293            108     173.68
## 55294             80       0.00
## 55295            111     262.39
## 55296            958       0.00
## 55297            113     245.52
## 55299            248     338.24
## 55300            963       0.00
## 55301            964       0.00
## 55302            964       0.00
## 55303            965    1101.78
## 55304           1188     271.30
## 55305            118     235.17
## 55306             79     142.35
## 55307            756    1011.24
## 55308            126     208.98
## 55309             95     122.85
## 55310            956     177.97
## 55311            125     928.38
## 55312            973      74.68
## 55313            263    2473.47
## 55314            127     179.07
## 55315            974     333.23
## 55316             21      11.39
## 55317            667       0.00
## 55318            736     381.27
## 55319            440      68.01
## 55320            276    9010.45
## 55321            974    2125.09
## 55322            973     405.64
## 55323            971       0.00
## 55324            943       0.00
## 55325            952    1121.99
## 55326            967       0.00
## 55327            965     236.21
## 55328            964       0.00
## 55329            964       0.00
## 55330            964    3347.83
## 55331            438      96.17
## 55332            248     364.31
## 55333            946       0.00
## 55334             28     131.45
## 55335            965       0.00
## 55336            764   10506.37
## 55337            966     134.48
## 55338            590       0.00
## 55339             75       0.00
## 55341            973    1113.52
## 55342            974       0.00
## 55343            974       0.00
## 55344            921       0.00
## 55345            154    1059.96
## 55346            974       0.00
## 55347            974       0.00
## 55348            973       0.00
## 55349            973     305.42
## 55350            973     298.22
## 55351            973     480.88
## 55352           1088   17261.55
## 55353            133     221.69
## 55354            102    5114.96
## 55355              2       0.00
## 55356            155     459.16
## 55357            910   38157.23
## 55358           1029     237.66
## 55359            450   20823.64
## 55360             87     214.50
## 55361            724    1718.86
## 55362            112    4410.98
## 55363            490    1943.24
## 55364            111      74.45
## 55365             85     153.97
## 55366            960      86.17
## 55367            964     304.95
## 55368            964       0.00
## 55369            339    3301.72
## 55370            405       0.00
## 55371            393       0.00
## 55372            634   24536.97
## 55373            120     233.89
## 55374            490       0.00
## 55375            531     300.28
## 55376            964       0.00
## 55377            958       0.00
## 55379            966       0.00
## 55380            966     298.72
## 55381             86       0.00
## 55382            964       0.00
## 55383            964     331.00
## 55384            965    3024.24
## 55385             60      81.68
## 55386              4       0.00
## 55387            210    8708.67
## 55388            124     219.12
## 55389            614    4767.52
## 55390              1       0.00
## 55391           1235  221935.95
## 55393            671       0.00
## 55394            321   11949.86
## 55395            973       0.00
## 55396            128     623.27
## 55397            973       0.00
## 55398            862   11120.00
## 55399            880     402.85
## 55400            125     204.52
## 55401            957     202.75
## 55402             62       0.00
## 55403            109     140.27
## 55404            455    3618.25
## 55405            467    6931.37
## 55406           1183  127603.84
## 55407            965    2227.52
## 55408            964     147.90
## 55409            118     330.32
## 55410            966    7904.48
## 55411             40      64.68
## 55412             87     369.28
## 55413            127     266.11
## 55414            958       0.00
## 55415            141     231.40
## 55416             81       0.00
## 55417            906   18101.38
## 55418            964    2049.97
## 55419            963       0.00
## 55420            963      91.18
## 55421            102     305.79
## 55422             75       0.00
## 55424            963     140.47
## 55425            146     763.12
## 55427            960       0.00
## 55428            964       0.00
## 55429            964     352.52
## 55430            116     128.33
## 55431            186      76.98
## 55432            959    1502.06
## 55433            392   28065.24
## 55435            964     132.51
## 55436            965    1924.74
## 55437            123     847.51
## 55438           1080    9075.98
## 55439            161    4484.76
## 55440            474     112.27
## 55441            957       0.00
## 55443             97      51.49
## 55444            200     116.55
## 55445            164     521.62
## 55446            819    1562.20
## 55447             62       0.00
## 55448            498    2803.43
## 55449            120     401.65
## 55450            463       0.00
## 55451            388   10103.57
## 55452            118     130.43
## 55453            484     320.88
## 55454            109     104.42
## 55455             75     404.83
## 55456            952       0.00
## 55457            106    1801.82
## 55458            952       0.00
## 55459            181    1395.03
## 55460            602       0.00
## 55461           1251    1132.96
## 55462            966     656.37
## 55463            967     373.79
## 55464            486     791.86
## 55465            959     638.24
## 55466            490    8090.26
## 55467            960       0.00
## 55468            963       0.00
## 55469            963       0.00
## 55470            694       7.69
## 55471            907     773.33
## 55472            966       0.00
## 55473             87       0.00
## 55474            942     158.21
## 55475            173     664.70
## 55476            958       0.00
## 55477            966       0.00
## 55478            966     846.88
## 55479            230   31747.96
## 55480            963     331.31
## 55481            963    1574.15
## 55482            944     440.37
## 55483           1205    1433.88
## 55484            958       0.00
## 55485           1196    3702.54
## 55486            486       0.00
## 55487            963     220.24
## 55488            963       0.00
## 55489            963       0.00
## 55490           1032    7887.56
## 55491            963       0.00
## 55492            963    2071.87
## 55493            960       0.00
## 55494            143      51.00
## 55495             89      25.90
## 55496            120     162.54
## 55497            957       0.00
## 55498            104     374.65
## 55499             46     345.51
## 55500            102     435.70
## 55501            213    2435.13
## 55502            497   25034.76
## 55503            938       0.00
## 55504            937    2543.23
## 55505            937     160.00
## 55506            932     794.55
## 55507             69       0.00
## 55508            105      90.73
## 55509            337     124.83
## 55510            960    2850.91
## 55511            134     144.99
## 55512            958     443.27
## 55513            111    1036.21
## 55514            490     277.78
## 55515            274     226.92
## 55516            113     144.86
## 55517            963    2158.32
## 55518            116       0.00
## 55519            964       0.00
## 55520            965       0.00
## 55521            957     376.92
## 55522            140     194.29
## 55523            956     644.42
## 55524            966   26025.94
## 55525             72       0.00
## 55526            950     529.46
## 55527            381     421.71
## 55528            251       0.00
## 55529            470     135.21
## 55530            142     499.09
## 55531            456   12581.08
## 55532             97     205.49
## 55533            834       0.00
## 55534            945     204.29
## 55535            105      94.50
## 55536            133    1151.09
## 55537            133     138.31
## 55538             70    1847.97
## 55539            946    1209.56
## 55540             93     124.17
## 55541            202     207.71
## 55542            952     119.67
## 55543            963      81.85
## 55544            963       0.00
## 55545            963     626.67
## 55546            958       0.00
## 55547            111     893.22
## 55548            958     234.40
## 55549           1000   24563.33
## 55550            960     191.67
## 55551             83       0.00
## 55552            960       0.00
## 55553            959       0.00
## 55554            959       0.00
## 55555           1443  125983.26
## 55556            111     347.25
## 55557            960    3359.64
## 55559            555     754.10
## 55560            952       0.00
## 55562            956     507.21
## 55563            170    1193.33
## 55564            104      88.86
## 55565            190     601.40
## 55566            128     275.62
## 55567            515    3149.33
## 55568            769     167.23
## 55569            946       0.00
## 55570            229    4505.88
## 55571            956    1223.13
## 55572            957    4687.79
## 55573            956       0.00
## 55574            104     247.95
## 55575            952     507.01
## 55576            959       0.00
## 55577            959       0.00
## 55578            959       0.00
## 55579            959       0.00
## 55580            959       0.00
## 55581            215    1840.21
## 55582            959       0.00
## 55583            942    8643.74
## 55584             73       0.00
## 55585            956    1113.70
## 55586            956       0.00
## 55587            799    1083.52
## 55588            140     193.81
## 55589            957     935.33
## 55590            126     118.64
## 55591            105     167.90
## 55592            951       0.00
## 55593            182    5678.35
## 55594            805   61787.30
## 55595            102     129.36
## 55596            173     942.63
## 55597            126      27.16
## 55598            959       0.00
## 55599            959       0.00
## 55600            111     899.91
## 55601            341    2449.00
## 55602            208      16.00
## 55603            134      95.37
## 55604            270     280.64
## 55605            938       0.00
## 55606            938     727.16
## 55607            958       0.00
## 55608            958      69.27
## 55609            958       0.00
## 55610            958       0.00
## 55611            958     257.03
## 55612            188      17.35
## 55613            614   44414.43
## 55614            950       0.00
## 55615            133     173.98
## 55616            133     305.15
## 55617            473       0.00
## 55618            951       0.00
## 55619            709     774.43
## 55620            205     419.18
## 55621             57    1073.97
## 55622            539     293.64
## 55623            248     280.98
## 55624            952       0.00
## 55625            142    1348.96
## 55626            957       0.00
## 55627            957       0.00
## 55628             79       0.00
## 55629            957       0.00
## 55630            956       0.00
## 55631            956     447.94
## 55632            956  114601.81
## 55633            273    2139.18
## 55634            109     165.80
## 55635            924     176.13
## 55636            932       0.00
## 55637            327    1772.75
## 55638            956    1344.59
## 55639            139     602.22
## 55640            956     389.35
## 55641            516       0.00
## 55642            957   55523.29
## 55643            957     931.89
## 55644            957       0.00
## 55645            957       0.00
## 55646            956     613.06
## 55647            998   40326.79
## 55648            110     136.21
## 55649            952       0.00
## 55650            106      78.17
## 55651            952    1335.06
## 55652            951       0.00
## 55653            951       0.00
## 55654            951       0.00
## 55655            951       0.00
## 55656            951     284.11
## 55657             90     216.78
## 55658             97      78.17
## 55659             71       0.00
## 55660            103     224.04
## 55661            103     129.57
## 55662            146    9383.91
## 55663           1593   48890.55
## 55664             96     462.00
## 55665            239    1411.29
## 55666            942    3454.59
## 55667            942     422.80
## 55668            111    1009.87
## 55669             89     261.66
## 55670            923     190.79
## 55671            941     173.31
## 55672            118     240.86
## 55673            229    1817.60
## 55674            109     176.28
## 55675            104     223.04
## 55676            190    2377.17
## 55677             71       0.00
## 55678             71       0.00
## 55679            951       0.00
## 55680            951       0.00
## 55681            946      93.61
## 55682            946       0.00
## 55683            945       0.00
## 55684            159     336.26
## 55685            944       0.00
## 55686            944       0.00
## 55688            301       0.00
## 55689            622   51451.02
## 55690            104     133.77
## 55691            665      36.05
## 55692            956     208.37
## 55693           1238    3725.66
## 55695            956     405.82
## 55696            139     137.33
## 55697            956     199.37
## 55698            889     721.11
## 55699            659       0.00
## 55700            931       0.00
## 55701            101       0.00
## 55702             77      80.31
## 55703            956     643.14
## 55704            952       0.00
## 55705            580     147.67
## 55706            952     845.42
## 55707            199     161.48
## 55708            135     707.23
## 55709            975    2885.01
## 55710            303    5161.70
## 55711            321     943.85
## 55712            951    2848.58
## 55713            447   15624.41
## 55714            132     216.81
## 55715            949    1795.42
## 55716            769   21214.18
## 55717            133     844.52
## 55718            314     591.96
## 55719            621     146.96
## 55720            127      38.37
## 55721           1022  114003.16
## 55722            331     144.92
## 55723            771     196.20
## 55724            520      74.33
## 55725            719      43.49
## 55726            935       0.00
## 55727            935       0.00
## 55728             91     125.81
## 55729            359     455.26
## 55730            939       0.00
## 55731            770       0.00
## 55732            946       0.00
## 55733            135     289.01
## 55735            952       0.00
## 55736            135     160.64
## 55737            392     112.94
## 55738            932     405.83
## 55739            406     903.72
## 55740            929    1183.29
## 55741           1804   28504.83
## 55742            902       0.00
## 55743            952     594.92
## 55744            951     340.92
## 55745            952    1300.40
## 55746            946     586.81
## 55747            946       0.00
## 55748            936       0.00
## 55749            997   39642.41
## 55750            935     227.72
## 55751            937       0.00
## 55752            946     482.19
## 55753             68       0.00
## 55754             62     263.49
## 55755            134     451.32
## 55756            950     873.36
## 55758            950       0.00
## 55759            105     190.85
## 55760           1032   88398.43
## 55761            136    1085.36
## 55762            951       0.00
## 55763            951    4172.53
## 55764            106    1792.39
## 55765            567    1012.31
## 55766            952     665.00
## 55767            951     344.88
## 55768            951     174.56
## 55769            793   87455.06
## 55770            444      78.17
## 55771             97      78.17
## 55772            598     808.36
## 55773             62    2141.64
## 55774            115    1626.31
## 55775            121     251.37
## 55776            702     469.51
## 55777            935    1679.52
## 55778            341     936.85
## 55779            424     118.77
## 55780            895       0.00
## 55781             66       0.00
## 55782             96     755.10
## 55783            554    1255.15
## 55784            165     590.98
## 55785            951     414.98
## 55786            952       0.00
## 55787            109     163.10
## 55788            163    1139.98
## 55789            476       0.00
## 55790            951    1120.08
## 55791            196     162.86
## 55792            457       0.00
## 55793            468      76.32
## 55794             62     548.71
## 55795            245    3276.02
## 55796             21       0.00
## 55797            946       0.00
## 55798            946       0.00
## 55799            945       0.00
## 55800            169    2423.82
## 55801            190     812.68
## 55802             99     193.13
## 55803            552      78.17
## 55804            739   40629.64
## 55805            178     148.91
## 55806             72       0.00
## 55807             97     267.81
## 55808            162      87.33
## 55809           1646     947.49
## 55810            902     359.42
## 55811            880     228.95
## 55812            677   12563.36
## 55813            286     308.19
## 55814            630     182.93
## 55815            935     167.78
## 55816             88     145.77
## 55817            938     117.97
## 55818            182    1133.53
## 55819            114     114.17
## 55820            909    1244.72
## 55821             98     121.04
## 55822            945     195.79
## 55823            128     194.83
## 55824            408   18273.43
## 55825            946     370.64
## 55826            946     335.97
## 55827             99     133.77
## 55828            946     644.31
## 55829            946       0.00
## 55830            946       0.00
## 55831            103     103.54
## 55832            950      87.37
## 55833            104     129.71
## 55834            342    2750.91
## 55835            325       0.00
## 55836             68       0.00
## 55837             96     123.15
## 55838             75    3610.55
## 55839            127     128.80
## 55840            150      97.14
## 55841            103      99.97
## 55842             91       0.00
## 55843             88      86.22
## 55844             88       0.00
## 55845            790    2076.84
## 55846            902       0.00
## 55847            544    2172.62
## 55848            188    1447.25
## 55849            676     801.40
## 55850            939     402.95
## 55851             92     118.57
## 55852            105       9.17
## 55853            191    1408.67
## 55854            781   69210.86
## 55855            946     490.71
## 55856           1323    2240.50
## 55857            233    1398.67
## 55858            944     239.16
## 55859            213    1155.37
## 55860             88       0.00
## 55861            938       0.00
## 55862            937       0.00
## 55863            937     567.77
## 55864            937       0.00
## 55865            938       0.00
## 55866             48     104.28
## 55867            946       0.00
## 55868            946     124.17
## 55869            946      93.42
## 55870            946       0.00
## 55871            945   79476.34
## 55872             92      71.48
## 55873            939       0.00
## 55874            755   73371.67
## 55875            791     149.14
## 55876            333     154.72
## 55877            211    5847.17
## 55878            944     151.36
## 55879            938       0.00
## 55880            121     234.54
## 55881             88     123.64
## 55882            897     914.94
## 55883            895       0.00
## 55884            103     274.70
## 55885            883     109.51
## 55886            204      61.34
## 55887            332    3208.17
## 55888            126     189.20
## 55889            189    1065.10
## 55890            938     138.99
## 55891            937       0.00
## 55892            942    1089.91
## 55893            187     280.73
## 55894            939    2374.05
## 55895            939     475.06
## 55896            945       0.00
## 55897            946    3858.27
## 55898            937       0.00
## 55899            937       0.00
## 55900            937       0.00
## 55901            936       0.00
## 55902            932     214.06
## 55903            908       0.00
## 55904            895       0.00
## 55905             68       0.00
## 55906            127      51.16
## 55908            939    1461.41
## 55909            416    1565.99
## 55910            363    1839.79
## 55911            942    1700.21
## 55912            943     267.13
## 55913            943     184.61
## 55914            139     792.93
## 55915            943    1822.49
## 55916             88     197.01
## 55917            921   33741.33
## 55918            937       0.00
## 55919            923    1874.15
## 55920            937       0.00
## 55921            938       0.00
## 55922            356     287.24
## 55923            737     397.40
## 55924             91       0.00
## 55925            701     490.49
## 55926            342     329.30
## 55927           1146     703.70
## 55928             71       0.00
## 55929            219       0.00
## 55930            943     319.44
## 55931             96     474.06
## 55932            943    2192.38
## 55933            311     460.21
## 55934            942       0.00
## 55935            942      78.17
## 55936           1159     977.89
## 55937            101     268.29
## 55938            137      26.32
## 55939            111     256.48
## 55940            336       0.00
## 55941            420      64.68
## 55942            925       0.00
## 55943            930     123.86
## 55944             45     134.60
## 55945            499      69.25
## 55946            152    1130.16
## 55947            938       0.00
## 55949            938       0.00
## 55950            938       0.00
## 55951            938     697.41
## 55952            937       0.00
## 55953            937       0.00
## 55954            937       0.00
## 55955            120     103.39
## 55956           1244  170105.23
## 55957             59     199.59
## 55958             89       0.00
## 55959             88     214.75
## 55960            895     144.15
## 55961             22     172.43
## 55962            941     974.61
## 55963            942     891.74
## 55964            236   35051.15
## 55965            972   50516.52
## 55966             88     194.39
## 55967             77       0.00
## 55968            896       0.00
## 55969            118     138.97
## 55970             28     414.58
## 55971            936       0.00
## 55973            937     170.89
## 55975             75       0.00
## 55976            136     402.73
## 55977             95      58.17
## 55978            939    1054.92
## 55979            242     597.77
## 55980             31       0.00
## 55981            939    3229.53
## 55982             64       0.00
## 55983            106    1050.74
## 55984             71       0.00
## 55985            115     120.00
## 55986            639      46.50
## 55987            632       0.00
## 55988            938       0.00
## 55989            938       0.00
## 55990             22     136.89
## 55991            901   53975.01
## 55992            880     161.07
## 55993            939     695.55
## 55994            256      81.05
## 55995            490     162.03
## 55996             30       0.00
## 55997             47       0.00
## 55998            183     297.72
## 55999            932       0.00
## 56000            932    1006.57
## 56001            935     491.30
## 56002            938       0.00
## 56003            212    1879.44
## 56004            915     182.43
## 56005             83       0.00
## 56006            235     866.30
## 56007             52       0.00
## 56008            114     341.60
## 56009            623     264.12
## 56010            939       0.00
## 56011            565    2118.81
## 56012             69     576.95
## 56013            932     131.63
## 56014             85       0.00
## 56015            111     317.30
## 56016             92       0.00
## 56017            921    1780.00
## 56018            168    1426.02
## 56019             86       0.00
## 56020            169     638.28
## 56021            549       0.00
## 56022            362   15440.13
## 56023            521       0.00
## 56024             97      79.40
## 56025            573     106.87
## 56026            797   21644.22
## 56027            115     628.33
## 56028             84       0.00
## 56029            433     413.08
## 56030            355   38849.23
## 56031             28     383.10
## 56032            937       0.00
## 56033             91       9.17
## 56034             91      22.25
## 56035           1002    7842.24
## 56036            938       0.00
## 56037            932       0.00
## 56038            935       0.00
## 56039             83      74.68
## 56040            111     187.37
## 56041            131     258.78
## 56042            880     684.55
## 56043            887     347.70
## 56044            903       0.00
## 56045            903       0.00
## 56046            778   19901.66
## 56047             88       0.00
## 56048            137     213.26
## 56049             28     102.11
## 56050             97    5405.54
## 56051            211    2618.55
## 56052             38     596.27
## 56053           1456   20411.94
## 56054            369     851.83
## 56055            181     555.23
## 56056            936     474.73
## 56057            936       0.00
## 56058            932     316.40
## 56059            914       0.00
## 56060             84       0.00
## 56061            932    3318.19
## 56062             85       0.00
## 56063            381    9295.66
## 56064             85     137.54
## 56065            455     778.36
## 56066            930    2138.99
## 56067            930     159.14
## 56068            792     113.06
## 56069            791      86.17
## 56070             30       0.00
## 56071             84       0.00
## 56072             83     303.46
## 56073            914       0.00
## 56074            914       0.00
## 56075            914       0.00
## 56076            915     403.08
## 56077             77     983.42
## 56078            932      53.02
## 56079            106       0.00
## 56080            929   36762.06
## 56081            925      51.16
## 56082            111     129.20
## 56083            111      70.26
## 56084            928      98.09
## 56085             66     622.85
## 56086            108     188.94
## 56087            397     190.58
## 56088             75     125.23
## 56089            279     214.03
## 56090            381    5124.87
## 56091            140     256.81
## 56092            903       0.00
## 56093            907       0.00
## 56094            907       0.00
## 56095            434       0.00
## 56096            873     127.46
## 56097           1506  292389.45
## 56098            750     225.89
## 56099            872     625.44
## 56100            121     125.97
## 56101            907       0.00
## 56102            903       0.00
## 56103            902       0.00
## 56104            917       0.00
## 56105            916      66.68
## 56106            909   26565.87
## 56107            923     263.52
## 56108           1016   77004.07
## 56109            139     724.69
## 56110           1166       0.00
## 56111            108     434.04
## 56112             83     352.27
## 56113            107     260.92
## 56114            928       0.00
## 56116            928     893.48
## 56117            935       0.00
## 56118           1226   34337.07
## 56119            914       0.00
## 56120            914       0.00
## 56121            914       0.00
## 56122            914       0.00
## 56123            902     492.16
## 56124             99     176.98
## 56125            246     380.48
## 56126           1431    8364.89
## 56127            145     479.69
## 56128            931     558.06
## 56129            930    1466.35
## 56130            113     448.06
## 56131            159    4375.69
## 56132            174     828.38
## 56133            871   90323.99
## 56134            754      68.98
## 56135            133    1523.26
## 56136            410     168.56
## 56137            111      70.01
## 56138             83       0.00
## 56139             84       0.00
## 56140            175     642.21
## 56141            931    1276.07
## 56142            931     622.89
## 56143            114      43.49
## 56144             69       0.00
## 56145            914       0.00
## 56146            290    1434.45
## 56147             38      89.64
## 56148            925     358.87
## 56149            195     331.18
## 56150            120     131.22
## 56151            691     100.84
## 56153             35     980.28
## 56154            112     184.15
## 56155            894     397.02
## 56156            880     298.15
## 56157            902       0.00
## 56158            105     102.73
## 56159            158      82.27
## 56160            156     168.69
## 56161            917    1052.35
## 56163            930    1080.86
## 56164            930     684.54
## 56165            930     414.82
## 56166            932       0.00
## 56167            918       0.00
## 56168            916     199.98
## 56169            151       0.00
## 56170             90     137.15
## 56171            907       0.00
## 56172            880      94.22
## 56174            880     145.38
## 56175            907       0.00
## 56176            907       0.00
## 56177            205     269.78
## 56178            903       0.00
## 56179            298       0.00
## 56180            222     490.33
## 56181             88     138.50
## 56182            567     232.81
## 56183            177    3294.79
## 56184            812     194.99
## 56185            163    4410.87
## 56186             79     515.88
## 56187            925     367.67
## 56188            928       0.00
## 56189            198    1376.61
## 56190              6       0.00
## 56191            111      69.67
## 56192            914       0.00
## 56193            930    1273.19
## 56194            930     255.61
## 56195            930     371.40
## 56196             35     228.52
## 56197            113     134.46
## 56198             85      82.81
## 56199            112     237.42
## 56200            112     550.84
## 56201           1552   52521.61
## 56202            914       0.00
## 56203            795     221.37
## 56204            910     287.57
## 56205            928     777.31
## 56206            108    1915.62
## 56207            344    2388.56
## 56208            108     702.78
## 56209            928     344.88
## 56210            108     165.98
## 56211            378     102.26
## 56212            928     375.97
## 56213            928     105.85
## 56215            108     443.54
## 56216            921       0.00
## 56217            922       0.00
## 56218            105     283.53
## 56219            167     461.53
## 56220            205    1221.27
## 56221            918     446.49
## 56222            917       0.00
## 56224            902       0.00
## 56225            340     190.40
## 56226            818     247.10
## 56227            830     282.73
## 56228             74       0.00
## 56229            110     754.40
## 56230            113      64.68
## 56231            902       0.00
## 56232            887     246.16
## 56233             70       0.00
## 56234            916       0.00
## 56235            132     206.85
## 56236            105     115.36
## 56237            922     182.70
## 56238            668     119.89
## 56239             72    1990.85
## 56240            129     249.18
## 56241            928     360.07
## 56242            112      96.57
## 56243             54     123.22
## 56244            343     246.03
## 56245            105     104.66
## 56246            279    1032.77
## 56247            916    1118.67
## 56248           1086     786.55
## 56250            368   11344.22
## 56251            925     284.38
## 56252            828     518.17
## 56253            108     103.48
## 56254            758  143921.29
## 56255            481   39496.13
## 56256            383    2297.83
## 56257            342     371.21
## 56258             79    1818.61
## 56259            288       0.00
## 56260            246    5077.97
## 56261            119     352.29
## 56262            917     279.65
## 56263            917     216.64
## 56264            444       0.00
## 56265            375       0.00
## 56266            367     432.48
## 56268            110     214.00
## 56269            147      44.21
## 56270            882   16273.37
## 56271            880       0.00
## 56272            138     196.91
## 56273            921     484.55
## 56274            132     174.62
## 56275            192      79.33
## 56276            924     365.17
## 56277            924      44.21
## 56278            924    1180.02
## 56279            139    1932.96
## 56280             99     485.82
## 56281            916       0.00
## 56282            157    1172.22
## 56283            196     205.35
## 56284            340      94.22
## 56286           1596   51517.55
## 56287            925     323.00
## 56288            108     150.10
## 56289            310    1065.91
## 56290           1693   16552.45
## 56291            382     454.21
## 56292              5       0.00
## 56293            918    1101.50
## 56294            443     659.00
## 56295            161     234.97
## 56296            925     405.82
## 56297            107      88.38
## 56298             63       0.00
## 56299            118     341.88
## 56300            484      54.21
## 56301             75     235.73
## 56302            167    5698.01
## 56303            767   24679.46
## 56304             92     257.10
## 56305             97     250.36
## 56306            757     150.48
## 56307            209     163.10
## 56308            867     159.68
## 56309            916     422.66
## 56310            860     669.45
## 56311            533    1038.32
## 56312            917     121.66
## 56313            595    5807.77
## 56314            101     254.55
## 56315            921     142.86
## 56316            121     231.08
## 56317            105     208.32
## 56319            922     188.01
## 56320            900       0.00
## 56321            148      84.68
## 56322            510   14482.12
## 56323            896    2652.82
## 56324            606   94523.29
## 56325             91     186.02
## 56326            125       0.00
## 56327            885   31732.51
## 56328            121     137.50
## 56329            516       0.00
## 56330            559     264.34
## 56331            363     643.21
## 56332            818       0.00
## 56333            922     831.22
## 56334           1637   23800.57
## 56336            104     280.71
## 56337            264     534.86
## 56338            259     247.18
## 56339            106     734.45
## 56340            229     285.40
## 56343            297     872.75
## 56344             43     202.79
## 56345            168    1159.09
## 56346             98     758.48
## 56347            250     534.55
## 56348            125     313.06
## 56349            911     461.59
## 56350            109     272.94
## 56351            123     348.16
## 56353            175     955.80
## 56354            142    1294.18
## 56355            124     186.65
## 56356             93      75.64
## 56357            168       0.00
## 56358            289    2257.95
## 56359             48     180.11
## 56360             28     324.77
## 56361             37       0.00
## 56362            122     259.46
## 56363             77     103.12
## 56364              3       0.00
## 56365            442       0.00
## 56366            908     571.89
## 56367            407       0.00
## 56368            695     244.21
## 56369           1047     294.44
## 56370            448    1775.44
## 56371            921     945.77
## 56372            132      59.16
## 56373           1510  286240.04
## 56374             76     360.41
## 56375            479     386.07
## 56376            341     253.84
## 56377            166     374.32
## 56378            235     178.74
## 56379            922     697.88
## 56380            907       0.00
## 56381            777     788.14
## 56382            902     123.36
## 56383            147     330.55
## 56384             85       0.00
## 56385           2001   17190.53
## 56386            200     113.09
## 56387            880     318.80
## 56388            175     854.00
## 56389            902       0.00
## 56390            902       8.00
## 56391             86     393.17
## 56392            455    1351.48
## 56393             85       0.00
## 56394            139      86.71
## 56395            608     199.70
## 56396            200     643.78
## 56397            896     658.47
## 56398            907       0.00
## 56399            121     257.82
## 56400            105     159.73
## 56401            182     140.42
## 56402            918    3043.86
## 56403             85    3499.21
## 56404            921      19.34
## 56405            921      51.16
## 56406            917     209.24
## 56407           1152   33065.70
## 56408            170     841.24
## 56409            305    1638.16
## 56410            779    1765.14
## 56411             49    1441.30
## 56412            441    5170.68
## 56413             94     633.25
## 56414            896   28309.51
## 56415             63       0.00
## 56416            110      87.79
## 56417            160     322.62
## 56418             88     110.08
## 56419             76       0.00
## 56420             93      20.63
## 56421            751       0.00
## 56422            915    1495.19
## 56423            915     151.13
## 56424             79       0.00
## 56425            918       0.00
## 56426            816   12419.91
## 56427            101    1021.77
## 56428             90       0.00
## 56429            103     137.95
## 56430            237    1037.76
## 56431            491       0.00
## 56432            880    2378.26
## 56433            429     140.05
## 56434            342       0.00
## 56435            106      74.88
## 56436             54     979.25
## 56437             85     448.76
## 56438            157     410.59
## 56439            917     601.70
## 56440            916     633.39
## 56441            120   10380.30
## 56442            160     214.90
## 56443            160     221.34
## 56444            200     407.84
## 56445            141     564.65
## 56446            841      90.13
## 56447            914     205.47
## 56448            914       0.00
## 56450            146      83.97
## 56451            916    4790.23
## 56453            692     192.08
## 56454            805     376.28
## 56455            148      85.98
## 56456            902       0.00
## 56457            123     708.40
## 56458            211    1712.71
## 56459             72     137.67
## 56460            907    1841.65
## 56461            907     175.42
## 56462            882       0.00
## 56463            428     216.26
## 56464            100     189.44
## 56465             44    1105.67
## 56467            699   32164.73
## 56468            916       0.00
## 56469           1770   71701.65
## 56470            273    1219.70
## 56471            190     417.15
## 56472            505     943.99
## 56473            914     271.14
## 56474             97     396.09
## 56475             94     288.43
## 56476            421    1080.21
## 56477            161    1786.96
## 56478            156    1359.01
## 56479             43     556.61
## 56480            908    2724.61
## 56481            388    9856.23
## 56482             92    1502.42
## 56483            151     924.57
## 56484            293     453.88
## 56485            894     169.87
## 56486            156     691.87
## 56488            915     115.38
## 56490            333     279.04
## 56491            371    4664.79
## 56492             98     415.81
## 56493            915    1203.72
## 56494            916    2391.04
## 56495            560    1577.39
## 56496            880       0.00
## 56497           1526   59035.11
## 56498            182     665.52
## 56499            117     151.89
## 56501            781      36.21
## 56502            567       0.00
## 56503            434    3063.68
## 56504            874       0.00
## 56505            205    1764.55
## 56506            114     597.39
## 56507            148     228.42
## 56508            148      74.68
## 56509            810   18723.44
## 56510           1443   97144.96
## 56511            152     170.39
## 56512            882       0.00
## 56513            915       0.00
## 56514            293       0.00
## 56515            159     182.43
## 56516            915     554.35
## 56517            364    6284.80
## 56518             66       0.00
## 56519           1036     245.10
## 56520             93      38.37
## 56521            911     111.95
## 56522            911     816.76
## 56523             92     188.85
## 56524             71     146.51
## 56525             60    3452.55
## 56526             55    3427.19
## 56527             98     357.37
## 56528            160      59.16
## 56529            887     221.90
## 56530            811   31426.96
## 56531            152     295.36
## 56532            152      59.20
## 56533            220     143.68
## 56534            895       0.00
## 56535            896   11284.05
## 56536            206     317.41
## 56537            424     665.36
## 56538            262     459.18
## 56539            598     961.56
## 56540            825     816.83
## 56541            842   40709.86
## 56542             83      50.01
## 56543            651    6786.08
## 56544            903     122.79
## 56545             72     142.73
## 56546            112    1493.13
## 56547            907       0.00
## 56548            907       0.00
## 56549            908      82.77
## 56550            909     969.33
## 56551            124     271.63
## 56552            908       0.00
## 56553            908   15045.63
## 56554            903     232.91
## 56555            903     263.89
## 56556            154    1631.14
## 56557            903     362.58
## 56558            109     324.10
## 56559            907       0.00
## 56560            907     755.20
## 56561            642    3165.05
## 56562            908     255.52
## 56563             64      59.20
## 56565             39       0.00
## 56566            251    1828.60
## 56567             97     161.87
## 56568            706     238.97
## 56569            908    1337.78
## 56570            908     727.03
## 56571             92     128.53
## 56572            192     150.00
## 56573            160     634.30
## 56574            907       0.00
## 56575            152     246.78
## 56576            137     219.96
## 56577            109     246.47
## 56578            895       0.00
## 56579            712     122.14
## 56580             76     271.47
## 56581            834   11674.55
## 56582             47     223.72
## 56583            261    1147.83
## 56584            555     672.69
## 56585             83     336.32
## 56586            567    5022.92
## 56587             80     252.00
## 56588            811     191.07
## 56589            115     388.34
## 56590            183    5204.34
## 56591            125      90.77
## 56592            847   17605.74
## 56593            149     283.86
## 56594            148     294.46
## 56595            179     376.82
## 56596             16       0.00
## 56597            236     190.98
## 56598            383      91.97
## 56599            631     228.96
## 56600             46     247.50
## 56601            903      75.30
## 56602            762    2225.24
## 56603            195       0.00
## 56604            337    3308.23
## 56605           1327   17616.74
## 56606           1439   49897.88
## 56607            333    1511.76
## 56608           1139    1146.96
## 56609            122     313.41
## 56611             37       0.00
## 56612            936    1073.36
## 56613            138     144.97
## 56614            908    9624.85
## 56615            908     279.68
## 56616           1638   15240.37
## 56617             79       0.00
## 56618            109     286.62
## 56619            492     127.19
## 56620            567    3429.96
## 56621            435     327.40
## 56622            908   15598.34
## 56623            907       0.00
## 56624            907      95.00
## 56625             69    2972.95
## 56626            188    2463.52
## 56627             90       0.00
## 56628            907     169.51
## 56629            907       0.00
## 56630            140     363.53
## 56631            198     260.18
## 56632           1003   62629.06
## 56633            323     365.66
## 56634            895     203.03
## 56635            258    1025.78
## 56636            756    1840.19
## 56637            488     836.66
## 56638             85       0.00
## 56639            492    7760.48
## 56640             54     459.13
## 56641            249    2159.45
## 56642            883    1989.10
## 56643             65       0.00
## 56644            882       0.00
## 56645            872       0.00
## 56647            887       0.00
## 56648            887     595.40
## 56649            883    4713.01
## 56650            155     380.10
## 56651            143     371.58
## 56652            398      59.16
## 56653            286    1172.98
## 56654           1568   79431.82
## 56655             85     729.69
## 56656            133      71.35
## 56657           1068   61141.72
## 56658            524   34161.75
## 56659            225     785.20
## 56660            152     271.22
## 56661            152     167.87
## 56662            273   23800.00
## 56663            918    7301.71
## 56664            867       0.00
## 56665            867       0.00
## 56666            896    1117.17
## 56667            896       0.00
## 56668            140     190.12
## 56669            189      86.17
## 56670            140      97.18
## 56671             78      84.77
## 56672             15     196.32
## 56673            280   16552.79
## 56674            903    1537.82
## 56675            902   36321.77
## 56676            902    1039.01
## 56677            902     126.21
## 56678            147     433.45
## 56679             84       0.00
## 56680            146      10.78
## 56681            491     984.17
## 56682            887     638.59
## 56683            625   10722.50
## 56684             50    1042.57
## 56685             82     892.93
## 56686            887       0.00
## 56687            887     159.31
## 56688             31     106.85
## 56689            769     234.20
## 56690              2       0.00
## 56691            478       0.00
## 56692            396    1166.12
## 56693            897    1415.15
## 56694            147     513.71
## 56695           1648   91505.28
## 56696            903      27.54
## 56697            903     542.29
## 56698             89    2358.37
## 56699            896     274.77
## 56700            111    1236.17
## 56701            111    1309.01
## 56702            900     173.06
## 56703            480     466.65
## 56704           1025    1231.52
## 56705            869   36274.29
## 56706            897      67.16
## 56707            148    1178.35
## 56708            147    1224.46
## 56709            234    1026.59
## 56710            145     419.68
## 56711            787    1686.47
## 56712            897     480.18
## 56713            897       0.00
## 56714            897     103.53
## 56715            897     133.72
## 56716            897     833.72
## 56717            900    3715.31
## 56718            655   12935.43
## 56719             53     451.38
## 56721            895     361.25
## 56722            109     286.23
## 56723            140     134.08
## 56724            895     809.98
## 56725            554     125.92
## 56726             77       0.00
## 56727            895     186.73
## 56728            135    1353.92
## 56729            103     346.34
## 56730            597     547.26
## 56731            100     391.61
## 56732            156     353.24
## 56733            106     245.86
## 56734            525     972.12
## 56735            132     137.66
## 56736            127      86.10
## 56738            255     389.01
## 56739             88       0.00
## 56740            368     975.02
## 56741            305    1568.23
## 56742           1940  104679.21
## 56743            735    1921.86
## 56744             70       0.00
## 56745            222     466.79
## 56746            159     611.04
## 56747            882       0.00
## 56748            880       9.00
## 56749            518     306.74
## 56750            140     573.68
## 56751            188      48.34
## 56752            100    7873.14
## 56753             79     228.32
## 56754            329     428.04
## 56755             85    1091.42
## 56756            145      13.68
## 56757            684   41086.27
## 56758            145      87.62
## 56759            896     887.22
## 56760            896     656.37
## 56761            897      79.33
## 56762            590   13503.72
## 56763            201     306.16
## 56764             83      78.17
## 56765            532   20325.58
## 56766            825       0.00
## 56767            754    5720.15
## 56768             91     143.21
## 56770            592       0.00
## 56771            416      35.50
## 56773            896     428.61
## 56774            897     287.46
## 56775            889    2655.24
## 56776             71      87.37
## 56777            127      94.22
## 56778            880     255.35
## 56779             37      64.68
## 56780            887     204.34
## 56781            222     129.24
## 56782             71       0.00
## 56783             90     477.43
## 56784            865     632.51
## 56785             80      88.33
## 56786            133     313.11
## 56787            102     209.56
## 56788            645    1532.11
## 56789            395    3237.08
## 56790            230     619.57
## 56791           1658   83771.76
## 56792            235      23.43
## 56793            895     393.86
## 56794            795      86.49
## 56795            107     623.90
## 56796             79    2074.02
## 56797            486    2584.20
## 56798            253    1517.92
## 56799            875    8032.98
## 56800             72       0.00
## 56801            351     152.12
## 56802           1420   26429.61
## 56803            140      27.30
## 56804            114     478.46
## 56805           1590   42823.40
## 56806            897   31632.66
## 56807           2353   88548.62
## 56808            879   88591.06
## 56809            349     860.65
## 56810              3       0.00
## 56811              1       0.00
## 56813            897     835.60
## 56814            113     404.05
## 56815            380       0.00
## 56816            167       0.00
## 56817            131     787.86
## 56818            111     302.15
## 56819            150    2361.70
## 56820            875    7526.61
## 56821            894     196.17
## 56822            131     209.66
## 56823            895       0.00
## 56824            110     714.38
## 56825            177      17.19
## 56826             78       0.00
## 56827            646    2699.90
## 56828            896     820.22
## 56829             79      16.39
## 56830            880     232.98
## 56831             96     197.52
## 56832            254     579.98
## 56833             21     707.40
## 56835            104     156.98
## 56836            888    2601.90
## 56837             89       0.00
## 56838            855       0.00
## 56839            165     241.97
## 56840           1079     987.97
## 56841            180    1067.67
## 56842             90      86.17
## 56843            135     214.60
## 56844            940   17892.45
## 56845            315    1207.90
## 56846            887     657.80
## 56847             70       0.00
## 56848            887       0.00
## 56849            883    2465.72
## 56850            882    1553.40
## 56851            895     408.28
## 56852            109      47.24
## 56853            146     398.21
## 56854            195       0.00
## 56855            104     203.86
## 56856            311     512.70
## 56857            346     714.09
## 56858            531   53694.40
## 56859            189    5816.48
## 56860             24     172.75
## 56861            125     350.15
## 56862             70     186.40
## 56863            385       0.00
## 56864            360    3132.44
## 56865            374    5599.35
## 56866            502   44858.46
## 56867            895   17783.41
## 56868            882       0.00
## 56869            735   37694.80
## 56870             70       0.00
## 56871           2505   43244.09
## 56872            145    1230.46
## 56873            298     103.50
## 56874            200     293.45
## 56875            424    8764.01
## 56876            428    1179.24
## 56877            796       0.00
## 56878             56     456.94
## 56879            258     296.17
## 56880            874    4050.89
## 56881            847     179.17
## 56882             75       0.00
## 56883            637   28863.01
## 56884            782     171.95
## 56885             39       0.00
## 56886            880     940.67
## 56887             15     140.87
## 56888            665       0.00
## 56889            133     866.94
## 56890             71       0.00
## 56891            887       0.00
## 56892              2       0.00
## 56894            166    1096.62
## 56895            164    1301.68
## 56896            559       0.00
## 56897             67     568.73
## 56898            287   13302.08
## 56899            135      58.01
## 56900            331   11306.48
## 56901            837     884.51
## 56902             88      86.17
## 56903             72       0.00
## 56904            103     185.98
## 56905           1719  110155.93
## 56906            206    2651.28
## 56907            812   33161.83
## 56908            887     185.72
## 56909            970   59689.70
## 56910            273    2408.29
## 56911            190     441.84
## 56912            886     295.47
## 56913            739   26224.52
## 56914             82    1622.36
## 56915            826      94.22
## 56916            110      93.63
## 56917            100     131.99
## 56918            132     528.50
## 56920             35    1625.66
## 56922            882       0.00
## 56923            880     662.46
## 56924            880       0.00
## 56925            144     828.07
## 56926            136     271.68
## 56927            852      85.00
## 56928            866    1619.44
## 56929            887     107.78
## 56930            872  156346.67
## 56931            594   17412.62
## 56933            111     157.79
## 56934            171     191.59
## 56935            925   64092.48
## 56936            165      91.45
## 56937             90     182.68
## 56938            781     238.51
## 56939            222     255.75
## 56940            886     134.57
## 56941            886     506.62
## 56942            886     603.55
## 56943            726     790.06
## 56944             27     339.07
## 56945            887    1184.68
## 56946             69       0.00
## 56947            186     879.61
## 56948           1449  141515.59
## 56949            882     182.51
## 56950             13       0.00
## 56951            880     462.50
## 56953             83     382.45
## 56954            153     672.30
## 56955             81     174.85
## 56956            502     102.79
## 56957             74     282.55
## 56959            315     505.56
## 56960            573    7182.01
## 56961            882     138.45
## 56962            632     353.02
## 56963            883     211.61
## 56964            883    8705.07
## 56965            128     154.39
## 56966            887    4567.77
## 56967            281     254.49
## 56968             70       0.00
## 56969            192     617.34
## 56971            774   17341.82
## 56972             89     151.00
## 56973            969    1396.27
## 56974             81      63.97
## 56975            866     132.05
## 56976            295     214.85
## 56977            866       0.00
## 56978            866    1785.72
## 56979            466       0.00
## 56980            644     237.29
## 56981            119     241.26
## 56982             89       0.00
## 56983            887    2030.05
## 56984             69       0.00
## 56985            101     321.05
## 56986            781   31903.47
## 56987            101    1035.17
## 56988            781   62092.74
## 56989            312    1339.69
## 56990            883     710.69
## 56991            836    1689.04
## 56992            883     149.81
## 56993             97     151.62
## 56994            413   27927.44
## 56995            127     293.77
## 56996            880       0.00
## 56997            370    2100.62
## 56998            880     221.16
## 56999            386    3500.00
## 57000            175     167.16
## 57001             89     226.94
## 57002            134     177.01
## 57003            244     161.25
## 57004            880     789.65
## 57005            442      42.40
## 57006             45     447.23
## 57007            127     219.31
## 57008            128     218.29
## 57009            363     575.97
## 57010            887    3679.13
## 57011            331     969.41
## 57012            115     163.53
## 57013            791    7826.00
## 57014            606     806.00
## 57015            456    5094.44
## 57016            867     498.55
## 57017            385       0.00
## 57018             42     224.99
## 57019            660       0.00
## 57020            180     471.21
## 57021             90     120.73
## 57022             90      86.17
## 57023            872       0.00
## 57024            207     557.81
## 57025            854       0.00
## 57026            545     835.48
## 57027            131      83.36
## 57028            860     340.08
## 57030            119     166.42
## 57031            634     400.40
## 57032            111    2094.96
## 57033            389     150.76
## 57034             62       0.00
## 57035            880     850.91
## 57036            880     170.92
## 57037            297       0.00
## 57038             88     116.91
## 57039             15      98.13
## 57040            178    1186.01
## 57041            884     193.36
## 57042            122    2585.10
## 57043            160    2027.66
## 57044            238      86.17
## 57045            106    1232.71
## 57046            183     191.28
## 57047            179    1831.62
## 57048             89    1214.71
## 57049              1       0.00
## 57050            120    1278.27
## 57051            121     144.81
## 57052            874     102.08
## 57053            874     112.35
## 57054             86     143.55
## 57055            165     733.98
## 57056           1283    5404.59
## 57057            866    1231.37
## 57058            333     359.47
## 57059            208    4813.39
## 57060            880     304.64
## 57061            118     301.91
## 57062            154     704.67
## 57063            638      99.97
## 57064            882    1252.86
## 57065            883     228.51
## 57066            704       0.00
## 57067           1098    5341.00
## 57068            145     287.72
## 57069             78     101.05
## 57070            140    1422.85
## 57071            638   37684.08
## 57072            865     263.43
## 57073            874       0.00
## 57074            873     212.42
## 57075             89       0.00
## 57076            119      57.15
## 57077            125     189.75
## 57078             42       0.00
## 57079            881     218.41
## 57080            649   24373.46
## 57081            125     130.29
## 57082             63       0.00
## 57083            216    3990.00
## 57084            187    2266.98
## 57085             82    1589.52
## 57086            274    1536.68
## 57087            634   71133.55
## 57088            137      56.84
## 57089            260     488.88
## 57090            465     114.44
## 57092            127     427.70
## 57093            852    2452.44
## 57094            874    1030.25
## 57095            366      91.72
## 57096             90       0.00
## 57097            269    8063.04
## 57098             90       0.00
## 57099            874    1323.04
## 57100            874     504.30
## 57101            567    2085.42
## 57102            874       0.00
## 57103            874     686.82
## 57104            291     443.14
## 57105             80       0.00
## 57106            242     184.78
## 57107            880      86.17
## 57108            880      86.17
## 57109            866    2826.72
## 57110            180     223.95
## 57111            114     247.14
## 57112             80     110.54
## 57113            258     411.67
## 57114           1036   83336.69
## 57115            866    6384.40
## 57116            867     744.60
## 57117            105     116.50
## 57118            112     245.43
## 57119            145    1383.75
## 57120            874       0.00
## 57121            874      46.37
## 57122             87      61.34
## 57123            177     599.64
## 57124            267    1265.48
## 57125            229     669.92
## 57126            402     339.32
## 57127            120     191.25
## 57128            250      98.42
## 57129            178     758.50
## 57130             88      98.66
## 57131            315     583.17
## 57132             65       0.00
## 57133            612    1270.66
## 57134             91       0.00
## 57135             79       0.00
## 57136            126     159.52
## 57137            874     169.19
## 57138            694   11674.43
## 57139            873     156.61
## 57140            873     275.65
## 57141            874       0.00
## 57142           1358     716.67
## 57143            777  149269.85
## 57144            862      40.59
## 57145            867       0.00
## 57146            210       0.00
## 57147            200     331.38
## 57148            159     648.55
## 57150            182     192.41
## 57151            874      95.37
## 57152             96       0.00
## 57153             32       0.00
## 57154            874       0.00
## 57155           2170  185110.29
## 57156            855     164.36
## 57157            380     830.74
## 57158            192     612.00
## 57159            213     158.77
## 57161            200     332.23
## 57162             14     251.35
## 57163            111     152.31
## 57164            148    1147.84
## 57165            852     352.37
## 57166            846     362.10
## 57167            110     180.39
## 57168            851       0.00
## 57169            357    1744.42
## 57170            851       0.00
## 57171             66       0.00
## 57172            462   13294.93
## 57174            114     511.84
## 57175            245     108.91
## 57176             86       0.00
## 57177            873       0.00
## 57178            873    1637.49
## 57179           2266   86206.54
## 57180             31     349.92
## 57181             92       0.00
## 57182            326     943.36
## 57183            826       0.00
## 57184            830       0.00
## 57185             85       0.00
## 57186            566       0.00
## 57187            118     282.74
## 57188           1146    2136.46
## 57189            873    1710.18
## 57190            873       0.00
## 57191             97     526.60
## 57192            851      99.97
## 57193             66       0.00
## 57194             96     535.21
## 57195            850     208.11
## 57196            177    2065.89
## 57197            665     311.83
## 57198            111      76.98
## 57199             81       0.00
## 57200            492       0.00
## 57201            867     396.22
## 57202            139     230.49
## 57203            706       0.00
## 57204            106     136.18
## 57205            180     129.34
## 57206             63       0.00
## 57207             78       0.00
## 57209            106     189.98
## 57210            107     160.86
## 57211            865     923.77
## 57212            879    3550.84
## 57213            759     765.38
## 57214            867     807.50
## 57215            866     172.68
## 57216            866      55.81
## 57217            111     106.19
## 57218            170     447.04
## 57219            628     208.13
## 57220             96     561.68
## 57221            126     259.49
## 57222            936   22023.75
## 57223             36     746.71
## 57224            873     134.35
## 57225            872    3013.41
## 57226           2292   31563.74
## 57227            849    1203.35
## 57228            119    1137.60
## 57229            336    7445.14
## 57230            146     228.95
## 57231              6       0.00
## 57232            235     154.95
## 57233            868     110.39
## 57235             86      85.28
## 57236             90    1614.32
## 57238           1236  103481.52
## 57239             65       0.00
## 57240             65       0.00
## 57241            937   16871.82
## 57242            969    2121.20
## 57243            111    1130.43
## 57244            231    2949.12
## 57245            865     170.48
## 57246            862     650.79
## 57247            545   47224.20
## 57248            460     611.34
## 57249             72       0.00
## 57250             84       0.00
## 57251             98       0.00
## 57252            234     642.83
## 57253            401     469.30
## 57254            106     550.55
## 57255            107     357.26
## 57257            442     820.15
## 57258            242     343.52
## 57259            163      71.35
## 57260             68       0.00
## 57261            848       0.00
## 57262             82      44.21
## 57263            279       0.00
## 57264            824     966.62
## 57265            287    1679.94
## 57266             75     330.38
## 57267             69       0.00
## 57268            866     537.77
## 57269            111      99.97
## 57270            866      51.49
## 57271            140    6028.13
## 57272            865    1564.25
## 57273            107      89.85
## 57274            170      89.85
## 57275            272     245.50
## 57276            287     294.56
## 57277             85     103.12
## 57278            407     286.32
## 57279            806     560.01
## 57280            130     367.29
## 57281            374       0.00
## 57282            379    1170.00
## 57283            481     286.32
## 57284            152    1343.10
## 57285            297     945.48
## 57286            237     242.07
## 57287            105     508.00
## 57288            110     301.41
## 57289            866     673.04
## 57291            413       0.00
## 57292            174     125.24
## 57293            156     707.18
## 57295             89     193.19
## 57296             12       0.00
## 57297            846    1026.41
## 57298            169    8010.67
## 57299            139    1619.94
## 57301           1418       0.00
## 57302            865     194.55
## 57303            865       0.00
## 57304            858     747.06
## 57305            297    1379.58
## 57306            291    3898.33
## 57307             99     336.26
## 57308            112      71.49
## 57309            661     389.61
## 57310             66       0.00
## 57311            541     261.57
## 57312             64     923.80
## 57313            853     101.15
## 57314             72       0.00
## 57315            169    4782.16
## 57316            819     117.12
## 57317             91     110.73
## 57318            843  124989.60
## 57319             34       0.00
## 57320            645    1281.01
## 57321             98     357.86
## 57322            852     281.59
## 57323            174     213.99
## 57324            506     461.68
## 57326            111     177.23
## 57327            429    1728.79
## 57328            252    4079.63
## 57329            103     403.01
## 57330            243     150.75
## 57331            131     161.33
## 57332            252    1298.55
## 57333            838     414.99
## 57334           1746   41857.94
## 57335            113     283.70
## 57336            862     196.12
## 57337            862     427.61
## 57338            107     241.68
## 57339             24     265.57
## 57340            862     321.30
## 57341            841   12171.24
## 57342            379   13026.29
## 57343            862     321.26
## 57344            788     122.44
## 57345             89     265.04
## 57346            105     207.62
## 57347             30     228.99
## 57348             74       0.00
## 57349            105     206.48
## 57350            862     355.95
## 57351           1590   35085.71
## 57352            862       0.00
## 57353            138     462.86
## 57354            574     196.21
## 57355            460       0.00
## 57356           1068     307.71
## 57357            373     186.34
## 57358             72       0.00
## 57359            104     519.63
## 57360            850     195.66
## 57361            613     249.59
## 57362             90     189.37
## 57363            150       0.00
## 57365            322     731.24
## 57366            214    2695.90
## 57367            153     233.30
## 57368            802     348.00
## 57369            555       0.00
## 57370            851    5445.38
## 57371            851       0.00
## 57372            852       0.00
## 57373            341      74.68
## 57374            181     170.75
## 57375            104     657.22
## 57376            854       0.00
## 57377            122     776.74
## 57378            862    1320.35
## 57379            862     354.18
## 57380            862   15649.84
## 57381            310     146.12
## 57382            106     541.18
## 57383            734   50523.26
## 57384            131     240.55
## 57385            838     578.98
## 57386            146     848.81
## 57387            858     234.49
## 57388            567     215.71
## 57389            827     141.04
## 57390             92     174.72
## 57392             89      93.99
## 57393            851     467.65
## 57394            163    1240.48
## 57395            117     283.93
## 57396             85       0.00
## 57397             93       0.00
## 57398            844      86.17
## 57399            126      73.60
## 57400            138       0.00
## 57401             79       0.00
## 57402             84    1167.63
## 57404            465   21405.62
## 57405            608     124.17
## 57406            100     236.47
## 57407            106      51.49
## 57408            388    6310.36
## 57409             74       0.00
## 57410            120    1019.14
## 57411            848     220.62
## 57412            125     159.71
## 57413            712     208.40
## 57414            754     228.86
## 57415             80       0.00
## 57416            138     106.29
## 57417            180     477.28
## 57418            293    1762.75
## 57419            852     362.74
## 57420             97      51.49
## 57421            188     547.70
## 57422            375    2475.34
## 57423            850       0.00
## 57424            831     154.27
## 57425            478      81.99
## 57426            224     292.08
## 57427            180     227.07
## 57428             45       0.00
## 57429            503     661.73
## 57430            724     189.08
## 57431           1668   15182.38
## 57432            117     127.68
## 57433            837    4642.95
## 57434             98     354.97
## 57435            261    1807.18
## 57436            854    1035.34
## 57437            188     175.06
## 57438            230     284.52
## 57439             92      58.01
## 57440            699   41720.26
## 57441            850     248.87
## 57442            193       0.00
## 57443            270     360.37
## 57444            844    1858.63
## 57445             90     185.56
## 57446            443    1117.98
## 57447            126     325.46
## 57448            226    1011.89
## 57449            157    1149.77
## 57450            484   22566.24
## 57451            851       0.00
## 57452            851     303.27
## 57454            851     301.24
## 57455            855     361.59
## 57456            154     635.92
## 57457            312     722.08
## 57458            170    1068.44
## 57459            403     816.91
## 57460            549   39211.71
## 57461            659     145.53
## 57462             89       0.00
## 57463           1240    3572.75
## 57464            137     430.71
## 57465            873     985.86
## 57467            851     448.15
## 57468            850     515.89
## 57469             81     423.86
## 57470            607      84.00
## 57471             98      48.96
## 57472            686   10725.85
## 57473            170       0.00
## 57474             98      11.69
## 57475            899   27787.19
## 57476            314     907.25
## 57477            120     296.22
## 57478             20     155.54
## 57479            141    1230.91
## 57480            638     138.18
## 57481            172    1356.12
## 57482            285    3899.08
## 57483            853     117.60
## 57484            850       0.00
## 57485            804    4028.71
## 57486             65       0.00
## 57487            405   18926.93
## 57490              2       0.00
## 57491             90     254.97
## 57492            127     409.24
## 57493            519       0.00
## 57494            357       0.00
## 57495            121    6924.38
## 57496            404     879.71
## 57497             78     333.84
## 57498              5       0.00
## 57499            116      84.22
## 57500            175     920.41
## 57501           1070   27199.86
## 57502             98      48.96
## 57503            139    1004.92
## 57504            187     444.41
## 57505            851     183.91
## 57506             63       0.00
## 57507             51     488.67
## 57508            370       0.00
## 57509            844     146.65
## 57510            713      77.26
## 57511            845     801.65
## 57512             77     922.53
## 57514            152     302.89
## 57515            825   14857.22
## 57516           2010    4743.36
## 57518             84       0.00
## 57519            173     214.85
## 57520            851    1826.47
## 57521            851     324.17
## 57522             65       0.00
## 57523            104     180.69
## 57524            441       0.00
## 57525            155    1138.82
## 57526            275     300.36
## 57527            848     209.14
## 57528           1710   33877.60
## 57529            930     191.79
## 57530            812     649.46
## 57531             98      43.19
## 57532            111      87.37
## 57533            144     334.92
## 57534            486    1132.70
## 57535            117     127.67
## 57536            196     298.16
## 57537            237     618.31
## 57538            207    1068.69
## 57539            798   11261.43
## 57540             71       0.00
## 57541            789       0.00
## 57542            161     120.48
## 57543            848     403.01
## 57544            850    1948.60
## 57545            851    1928.97
## 57546             21      58.01
## 57547             76       0.00
## 57548             60       0.00
## 57549            230     112.94
## 57550            117      86.17
## 57551             86     239.19
## 57552            434    1281.91
## 57553            573     111.04
## 57554            956    1420.38
## 57555            196     220.47
## 57556             83       0.00
## 57557             42     270.52
## 57558            130     137.66
## 57559              6       0.00
## 57560             86       0.00
## 57561            133     275.94
## 57562             73       0.00
## 57563             91     148.93
## 57564            848      90.77
## 57565            124     426.56
## 57566             71       0.00
## 57567            460    2550.82
## 57568            302     141.28
## 57569             79       0.00
## 57570            676      11.75
## 57571            176    1252.19
## 57572            150     439.08
## 57573           1548    3415.17
## 57574           1091    1540.12
## 57575            150      86.17
## 57576            743    2028.92
## 57577            843     210.84
## 57578             89     460.36
## 57579            660    6709.13
## 57580            112     759.44
## 57581            465     151.73
## 57582            452   14577.63
## 57583             96     119.59
## 57584             96     106.95
## 57586             92     143.21
## 57587            142    2372.63
## 57588            935  140959.34
## 57589            129     519.63
## 57590            178       0.00
## 57591           1346   41646.69
## 57592             90       0.00
## 57593             76     118.45
## 57594            120     682.51
## 57595            140       0.00
## 57596            845     457.38
## 57597            725    1563.33
## 57598            240    1433.69
## 57599            299       0.00
## 57600            173     165.23
## 57601            843    2153.83
## 57602             84    3430.94
## 57603           1387    2433.21
## 57604            181     872.35
## 57605            832     319.33
## 57606            137     140.69
## 57607             93     158.92
## 57608            804     132.84
## 57609            339   20313.41
## 57610            252     243.13
## 57611            420     154.27
## 57612            215       0.00
## 57613            579     368.75
## 57614            261   19876.02
## 57615            138     258.00
## 57616            146     239.12
## 57617            528      54.04
## 57618            806    4093.35
## 57619            660    7590.09
## 57620            120     191.93
## 57621            363    3495.02
## 57622            372     777.13
## 57623            138     275.76
## 57624            957   11288.83
## 57625            105     141.77
## 57626            556     128.63
## 57627            131     161.12
## 57628            372    1683.69
## 57629            119     236.37
## 57630            434    1836.93
## 57631            479    1881.79
## 57632            345     108.55
## 57633            174     116.00
## 57634           1125     831.55
## 57635            162    3185.44
## 57636            570       0.00
## 57637            105     328.05
## 57638             78     234.48
## 57639             95     161.93
## 57640             92     179.97
## 57641            110     227.00
## 57642            518      43.19
## 57643            771   10826.58
## 57644            153     334.85
## 57645            301    1686.31
## 57646            252     164.15
## 57647             89       0.00
## 57648            568     994.50
## 57649            202     325.51
## 57650             53     885.09
## 57651            174       0.00
## 57652            183     251.28
## 57653            171    1407.03
## 57654            170       0.00
## 57655            122    1119.79
## 57656            116     279.39
## 57657            230     597.61
## 57658             88      28.35
## 57660            202     784.97
## 57661             71       0.00
## 57662            416    8339.12
## 57663           2769   17840.42
## 57664            392   30965.83
## 57665            257     612.68
## 57666             82       0.00
## 57667           1457    1973.16
## 57668           1135   41814.31
## 57669            109     389.34
## 57670            236      44.00
## 57671            147     306.94
## 57673            148     776.78
## 57674            185     103.46
## 57675            283     818.17
## 57676            199     118.45
## 57677             34       0.00
## 57678            311     164.49
## 57679             84    1253.40
## 57680            140    1529.18
## 57681           1182    9996.00
## 57682            675    2110.57
## 57683            245      66.68
## 57684             83     136.17
## 57685            168    2993.30
## 57686             99     409.68
## 57687            181      70.01
## 57688            161     260.40
## 57689            198    5202.58
## 57690             99     194.71
## 57691           1816   31293.06
## 57692            806   10196.70
## 57693            616     232.55
## 57694             65       0.00
## 57695            109       0.00
## 57696            353     624.90
## 57697            271     283.66
## 57698           1244   84711.52
## 57699            111     340.77
## 57700            192     809.66
## 57701            171    1489.66
## 57702            112      90.18
## 57703            112     197.99
## 57704            173     998.70
## 57705            110     300.18
## 57706            144     190.13
## 57707            113     364.94
## 57708            483     150.75
## 57709            167     345.88
## 57710            347    1918.29
## 57712            143     204.22
## 57716            251     819.22
## 57717            131     380.06
## 57718            123    1287.29
## 57719             74     179.82
## 57720            178     185.33
## 57721            259    1426.41
## 57722            206     264.72
## 57723            102     125.27
## 57724            958   30992.31
## 57725            491     293.17
## 57726            782    1204.27
## 57727            155     142.30
## 57728            693     580.79
## 57729            344       0.00
## 57730            465    2166.79
## 57731            107     133.32
## 57732            233    1280.90
## 57733            111     123.52
## 57734            147   31378.54
## 57735             99     160.20
## 57736             93      95.37
## 57737            594     621.92
## 57738            138     118.89
## 57739            518    4109.67
## 57740            223     182.68
## 57741           1687   92026.02
## 57742            104     247.95
## 57743            196    1077.86
## 57744             93      99.97
## 57745            246    1136.55
## 57746            191    2157.13
## 57747            116     265.02
## 57748            513     396.44
## 57749            221     187.97
## 57750            165   11947.01
## 57751            457     720.00
## 57752           1565   29873.63
## 57753            296     114.32
## 57754            400       0.00
## 57755             42     110.11
## 57756             75      34.32
## 57757            666     268.06
## 57758             65       0.00
## 57759             63       0.00
## 57760             12       0.00
## 57761            135     132.75
## 57762            467    1199.94
## 57763            479    6988.38
## 57764            132     370.12
## 57765            137    5699.04
## 57766            182     148.30
## 57767            104     192.79
## 57768            799    1722.83
## 57769             36     254.37
## 57770            107      71.35
## 57771            174    1578.52
## 57772            881   38690.31
## 57773            100     149.83
## 57774            101     197.80
## 57775            301     374.48
## 57776            520     109.72
## 57777            926   79449.16
## 57778            187    3292.22
## 57779             71       0.00
## 57780            154    2179.57
## 57781            262     784.28
## 57782            269    1203.90
## 57783            381   33781.15
## 57784             91    1634.64
## 57785            104     282.73
## 57786            320     555.52
## 57787            110    6126.81
## 57788            818   33306.80
## 57789            104     244.08
## 57790            352     271.03
## 57791            308    9650.78
## 57792            106     120.90
## 57793            221    6370.97
## 57794             85       0.00
## 57795            192     532.65
## 57796            318     405.84
## 57797            301     924.15
## 57798            130     135.29
## 57799            398    2639.35
## 57800            270   11452.05
## 57801            167     181.96
## 57802            796   28920.92
## 57803            120     235.81
## 57804            781     353.00
## 57805            389     125.66
## 57806            137     572.43
## 57807            299     125.38
## 57808             63    1085.77
## 57809           1136   37775.30
## 57810            103     155.97
## 57811            241     223.67
## 57812           1140   22135.51
## 57813            258    1012.77
## 57814            571     285.27
## 57815            897   43848.84
## 57816             75       0.00
## 57817            138     111.48
## 57818            123     247.44
## 57819             93      90.35
## 57820            191     531.41
## 57821            420     924.61
## 57822           2183   15790.55
## 57823            603     117.66
## 57824            553   12765.42
## 57825            379    1637.82
## 57826           1571   87000.98
## 57827            139     125.31
## 57828            296     353.34
## 57829            161    1264.77
## 57830            315    1275.32
## 57831            191    3586.27
## 57832            185     241.35
## 57833            183     135.35
## 57834            289    1498.73
## 57835             63       0.00
## 57836             64       0.00
## 57837            754     534.91
## 57838            104      95.37
## 57840            264    2572.65
## 57841            103      46.37
## 57842            212     472.10
## 57843            642    2633.58
## 57844            154     112.66
## 57845            134     264.06
## 57846            217     926.46
## 57847            533    3837.26
## 57848            412     268.28
## 57849             91     106.65
## 57850            122     374.69
## 57851            610     178.14
## 57852            765    6961.98
## 57853            774    2056.56
## 57854           1698   60205.02
## 57855            176     104.00
## 57856            346   29057.29
## 57858            589    1522.51
## 57861            284    3151.11
## 57862            666     266.25
## 57863             61     859.50
## 57864            277     760.77
## 57865            117     767.84
## 57866            839    4805.62
## 57867            201     639.08
## 57868             84       0.00
## 57869            198     210.88
## 57870            145     228.33
## 57871             14       0.00
## 57872             52    1556.21
## 57873             37    2268.60
## 57874            108     169.72
## 57875            131     914.47
## 57876             72     352.14
## 57877             72       0.00
## 57878             72       0.00
## 57879            358     562.01
## 57880            353     195.41
## 57881             93     749.43
## 57882            129     308.78
## 57884            305   20648.20
## 57885            122     619.39
## 57886            263     395.57
## 57887             65       0.00
## 57888            680     551.87
## 57889            147    3041.74
## 57890            332    2128.25
## 57891            161     662.55
## 57892             60     214.75
## 57893            115     858.29
## 57894             77    2226.98
## 57895            200     380.47
## 57896            410   13918.94
## 57897            208    1245.40
## 57898            330    1128.24
## 57899            140      49.00
## 57900            143      54.00
## 57901           1558   35456.27
## 57902            467    2070.50
## 57903             99     249.84
## 57904            259     471.34
## 57905            106     111.77
## 57906            155     410.47
## 57907             62       0.00
## 57908           1604  242923.58
## 57909             45       0.00
## 57910            130     189.15
## 57911            153     904.79
## 57912            130     101.72
## 57914             78       0.00
## 57915            147      94.13
## 57916            347    3243.17
## 57917             61       0.00
## 57918             73       0.00
## 57920            148     368.08
## 57921            608      87.72
## 57922            120      81.99
## 57923            553    3219.74
## 57924            553   26914.36
## 57925              5       0.00
## 57926            724   23813.77
## 57927            247     237.06
## 57928             65       0.00
## 57929             93      58.14
## 57930            357   14414.07
## 57931            326       0.00
## 57932             66       0.00
## 57933             63       0.00
## 57934            558       0.00
## 57935             61       0.00
## 57936            275       0.00
## 57937            154     399.20
## 57938            121     822.22
## 57940            175     650.18
## 57941            124    1391.76
## 57942            121     278.08
## 57943            164      93.50
## 57944            117    1302.90
## 57945            150     555.74
## 57946            142     370.12
## 57947            205     617.33
## 57948           1601   21753.88
## 57949            169     771.66
## 57950            109    1846.57
## 57951            188    2513.90
## 57952            305     972.90
## 57953            123     145.23
## 57954            764    4644.66
## 57955            168     246.33
## 57957            462   12989.97
## 57958            553       0.00
## 57959            269    3691.28
## 57960            599    1361.97
## 57961            427   10862.51
## 57962            788   22952.46
## 57963            136       0.00
## 57964            155     391.40
## 57965            280       0.00
## 57966            119     101.05
## 57967             61       0.00
## 57968            124     102.09
## 57969            505     585.22
## 57970             97     256.16
## 57971             57     117.27
## 57972            356     312.71
## 57973            339     222.20
## 57974            703    5514.05
## 57975             90     379.97
## 57976            150     309.47
## 57977            373     863.01
## 57978             43     362.24
## 57979            174    3197.80
## 57980            192     386.08
## 57981            316     172.11
## 57982            264     381.58
## 57983            108     112.94
## 57984            137     214.97
## 57985            266     238.39
## 57986            539    1117.19
## 57987            154    1002.91
## 57988            481     268.29
## 57989            664     692.43
## 57990             83     514.77
## 57991            229      67.61
## 57992             95     190.18
## 57993            191       0.00
## 57994             47     983.96
## 57995            122     205.59
## 57996            434     355.68
## 57997             83     104.38
## 57998              7     120.60
## 57999            334       0.00
## 58000            211     997.34
## 58001             88     108.73
## 58002            142    1256.18
## 58003             83       0.00
## 58004            119     160.17
## 58005            695   29216.92
## 58006            756       0.00
## 58007            271      79.14
## 58009            565   21088.74
## 58010           1429   87247.23
## 58011             98    1001.96
## 58012              3       0.00
## 58013            139     196.77
## 58014            224     564.79
## 58015            375     868.26
## 58017            102       0.00
## 58018            109     558.00
## 58019           1356   41823.08
## 58020            108     112.23
## 58021            559   10022.56
## 58022            662     779.04
## 58023            524   25359.09
## 58024            232     282.31
## 58025             86       0.00
## 58026            117     255.91
## 58027            279     459.90
## 58028            118    2070.69
## 58029             85       0.00
## 58030            116     159.63
## 58031            116      18.06
## 58032            678     118.86
## 58033            923     329.02
## 58034             31       0.00
## 58035            418     206.55
## 58036            194     148.06
## 58037            157      48.96
## 58038            504   11755.57
## 58040            276     478.85
## 58041            781     822.84
## 58042            181    4948.37
## 58043            193      78.33
## 58044            241     235.74
## 58045            118     611.41
## 58046            554    1090.03
## 58047            581     115.03
## 58048             67       0.00
## 58049             80       0.00
## 58050            241     319.19
## 58051             87       0.00
## 58052             87      94.64
## 58053             14     132.34
## 58054             88       0.00
## 58055            166     464.00
## 58056             35     191.69
## 58057            108     139.93
## 58058            364     147.40
## 58059             77       0.00
## 58060             37     284.81
## 58061            132     195.58
## 58062            868    2871.28
## 58063            513   10169.45
## 58064            127     143.00
## 58065            356    1562.01
## 58066            109    1440.77
## 58067            393     702.34
## 58068             83       0.00
## 58069            581       0.00
## 58070            393       0.00
## 58071            459    5485.54
## 58072            103     142.24
## 58074             86       0.00
## 58075            169    1544.36
## 58076            393     342.09
## 58077           1015     645.18
## 58078            781   31469.27
## 58079            229     322.91
## 58080            116     534.57
## 58081            115      54.56
## 58082           1042    6980.04
## 58083            147     478.59
## 58084            117     261.14
## 58085             52     820.25
## 58086             22       0.00
## 58087            110     427.63
## 58088            244     213.05
## 58089            665     303.30
## 58090            581     338.48
## 58091            240       0.00
## 58092            237    1467.41
## 58093            796   47705.56
## 58095            195    3020.38
## 58096            110     209.04
## 58097            530     929.65
## 58098            190     497.38
## 58099            709     399.36
## 58100            108     337.27
## 58101            482     139.74
## 58103             77       0.00
## 58104           1228   14182.66
## 58105            311     658.37
## 58106              2       0.00
## 58107             76       0.00
## 58108             76       0.00
## 58109            204     559.33
## 58110            452    5917.04
## 58111            455   23615.51
## 58112             77       0.00
## 58113            399    1037.27
## 58114           2586      16.50
## 58115            109      44.21
## 58116             94     230.26
## 58117            827   27743.76
## 58118            140      37.82
## 58119             95     446.32
## 58120            129     868.95
## 58121            204    1213.48
## 58122            132     444.77
## 58123            593    1572.43
## 58124            678   31117.74
## 58125            115     216.41
## 58126            149      74.68
## 58127            142     248.74
## 58128             48     271.51
## 58129            113     564.11
## 58130             79       0.00
## 58131            140     245.66
## 58132            198    9677.03
## 58133             94     179.17
## 58134            110     110.73
## 58135             44      51.49
## 58136            268     142.74
## 58137             85       0.00
## 58138            887   12908.12
## 58139             81     261.52
## 58140             72       0.00
## 58141             72       0.00
## 58142            107     334.87
## 58143            319    3470.35
## 58144            107     353.91
## 58145            136     475.61
## 58146            739     138.35
## 58148           1095  202270.11
## 58149            561      48.96
## 58150             78       0.00
## 58151           1870   47431.52
## 58152            108     818.06
## 58153            783     143.19
## 58154            167     852.69
## 58155            524   46491.67
## 58156            120     559.66
## 58158            509     221.75
## 58159             28     414.06
## 58160            108     772.81
## 58161            919     346.42
## 58162           1068   26861.64
## 58163            110     580.95
## 58164            628    4922.23
## 58165            476      94.22
## 58166             76       0.00
## 58167            204     208.27
## 58168             71       0.00
## 58169            163     149.71
## 58170             75       0.00
## 58171            138     218.90
## 58172            194   11707.76
## 58173            188     165.59
## 58174            196     669.90
## 58175             80    2340.89
## 58176            100     200.31
## 58177            136    1031.41
## 58178            460     125.27
## 58179            630   21644.60
## 58180             67       0.00
## 58181            118      51.49
## 58182            131     129.64
## 58183            336     555.39
## 58184             84     444.99
## 58185            603    1602.73
## 58186             76       0.00
## 58187             75       0.00
## 58188            329    1981.97
## 58189            496    1405.82
## 58190            142     257.52
## 58191             31      68.50
## 58192            149      74.68
## 58193             46      44.19
## 58194            113     126.47
## 58195             87     111.39
## 58196            322    2809.79
## 58197            557       0.00
## 58198             76       0.00
## 58199            107     146.43
## 58200            199   14935.73
## 58201            130    1571.16
## 58202             55     181.49
## 58203            130     465.90
## 58204             69       0.00
## 58205            300    1762.28
## 58206            580    1175.57
## 58207             61       0.00
## 58208            610    7287.99
## 58209             74       0.00
## 58210            104     127.68
## 58211            519       0.00
## 58212            176     355.14
## 58213             21     466.17
## 58214             96      90.77
## 58215            142      84.68
## 58216            143     437.40
## 58217            124     175.00
## 58218            366    1730.89
## 58219             70       0.00
## 58220            101     549.69
## 58221           1495    7889.32
## 58222            144    7027.74
## 58223             99      97.44
## 58224             76       0.00
## 58225             91    1820.35
## 58226            787    2065.28
## 58227            197     465.76
## 58228             48      59.16
## 58229            767   26261.21
## 58230            308       0.00
## 58231            351    4004.61
## 58232             80      81.99
## 58233             75       0.00
## 58234            102     111.39
## 58235            383     656.04
## 58236            427    2123.74
## 58237            781     436.04
## 58238            130     110.98
## 58239            100     308.53
## 58240            303       0.00
## 58241             74      85.18
## 58242            142     334.01
## 58243             81       0.00
## 58244             76     239.32
## 58246            160     196.31
## 58247            134     155.06
## 58248            100     337.00
## 58249            209     372.92
## 58250            653     265.24
## 58251             71       0.00
## 58252            181     286.10
## 58253            250    1032.98
## 58254             74       0.00
## 58255             79       0.00
## 58256            190     177.40
## 58257            142     129.49
## 58258            141     306.26
## 58259            192     156.21
## 58260             95     111.06
## 58261            191     526.19
## 58262            173     433.15
## 58263             63       0.00
## 58264            123     258.80
## 58265            637      74.68
## 58266            126     130.00
## 58267             96    1297.98
## 58268             79       0.00
## 58269             63     117.84
## 58270            133    1304.52
## 58271            133     785.89
## 58272            163     272.42
## 58273            134     106.43
## 58274            138     135.00
## 58275            136     228.32
## 58276            428    3738.91
## 58277             63       0.00
## 58278            447    2327.65
## 58279            118    2028.04
## 58280            190     706.65
## 58281            272     543.37
## 58282             70       0.00
## 58283             70       0.00
## 58284            116     330.81
## 58285             35     141.30
## 58286            132     268.55
## 58287             97     888.75
## 58288             68     397.03
## 58289            135     617.55
## 58290            105     519.98
## 58291            242    2403.21
## 58292            100     187.99
## 58293            260     880.19
## 58294            119    7542.01
## 58295            848    9992.38
## 58296            630     631.12
## 58297             88       0.00
## 58298            171     137.66
## 58299            400     313.78
## 58300            405     536.19
## 58302            305       0.00
## 58303            302     236.22
## 58304            281     250.08
## 58305            726     130.00
## 58306             63     328.55
## 58307            150      48.96
## 58308            915   35598.01
## 58309            209     284.10
## 58310           1018   49880.60
## 58311            445       0.00
## 58312            604    2208.74
## 58313             32       0.00
## 58314             92      72.74
## 58315             78     741.48
## 58316            143    2201.51
## 58317            267     839.64
## 58318             24    2680.31
## 58319            365   16942.76
## 58320            412    1629.65
## 58321            252     137.66
## 58322             80     136.18
## 58324            101     134.73
## 58325            300       0.00
## 58326             73    1015.44
## 58327            518       0.00
## 58328            502    1652.32
## 58329            133     164.74
## 58330             80       0.00
## 58331           2722   21598.56
## 58332            133     739.99
## 58333            329    1310.67
## 58334            416    1345.14
## 58335            411    3267.36
## 58337            250     599.10
## 58338             59    2659.20
## 58339            104    1871.08
## 58340            105     272.35
## 58341             89     924.54
## 58342            715       0.00
## 58343            124     543.96
## 58344            183     690.13
## 58345            770    4312.37
## 58346            149     143.59
## 58347            875    6447.12
## 58348           1674   13382.74
## 58349            108      92.12
## 58350            141     484.12
## 58351            183     483.08
## 58352            251      47.08
## 58354            403    6460.02
## 58355            533      64.68
## 58356            389     114.49
## 58357            142      74.68
## 58358           1285   60879.32
## 58359             72       0.00
## 58360            322    5979.78
## 58361            196     260.09
## 58362             22       0.00
## 58363            402    3000.00
## 58364            357     395.37
## 58365            146     299.17
## 58366            435     402.25
## 58367             74       0.00
## 58368            811   18607.79
## 58369             88     257.79
## 58370            708     307.32
## 58371            127     804.84
## 58372            618   10770.00
## 58373            188    1201.79
## 58375             67       0.00
## 58377            752    3925.66
## 58378            316    2834.75
## 58379            274       0.00
## 58380            379     697.02
## 58381            323   28958.99
## 58382            793       0.00
## 58384            289     519.99
## 58385            133     930.78
## 58386            208     213.86
## 58387            792   23627.00
## 58388             37       0.00
## 58389            102     143.21
## 58390            160       0.00
## 58391            529     170.46
## 58392             81     222.97
## 58393            176    4932.22
## 58394            138     217.75
## 58395            111     192.92
## 58396            140     838.93
## 58397             77     308.72
## 58398            316       0.00
## 58399            384     916.57
## 58400            374    4214.54
## 58401             60    1324.03
## 58402            135   12393.84
## 58404            129    1787.72
## 58405           1971   40228.56
## 58406            392     330.64
## 58407            118     208.07
## 58408            112     128.44
## 58409            146     162.69
## 58410             47     380.92
## 58411            108     110.27
## 58412             84       0.00
## 58413            146    1611.39
## 58414             86     190.18
## 58415            196       0.00
## 58416            196     288.44
## 58417             81     226.09
## 58418            110    5910.29
## 58419             47     118.89
## 58420            105    1495.17
## 58421             44     893.13
## 58422            407    3245.60
## 58423            244     562.07
## 58424            390    9268.30
## 58426             90      86.17
## 58427            211     197.31
## 58428             87       0.00
## 58429             79       0.00
## 58430            306    1522.00
## 58431            164     582.10
## 58432            230    1220.76
## 58433            103     483.20
## 58434            226     527.40
## 58435            189     769.09
## 58436             97     228.02
## 58437             81      92.61
## 58438              2       0.00
## 58439            112    1141.68
## 58440            710   10047.88
## 58441             89     299.13
## 58442             55     148.31
## 58443             47     269.33
## 58444            739    1302.64
## 58445             85     303.42
## 58446            726     498.88
## 58447            134     196.53
## 58448            250      51.49
## 58449             77     135.21
## 58450            142     245.68
## 58451            146     157.80
## 58452             82      96.17
## 58453            196     177.32
## 58454            149     405.50
## 58455             20       0.00
## 58456            462     249.83
## 58457            140     357.59
## 58458           1072   20335.06
## 58459           2376   11552.31
## 58460            684     660.31
## 58461            440    1791.17
## 58462            605     133.51
## 58463             40     228.76
## 58464            358     151.58
## 58465           1040   15840.62
## 58466            110     518.92
## 58467            611     144.52
## 58468            324     670.27
## 58469            204     306.67
## 58470            296     678.37
## 58471            112    1125.52
## 58472             83       0.00
## 58473           1088    6480.79
## 58474            741   35838.35
## 58475            763    3341.66
## 58476           1109    6692.27
## 58477            160     466.76
## 58478             68       0.00
## 58479            272     546.49
## 58480            679      51.49
## 58481            657     310.03
## 58483            103     232.21
## 58484           1174   25098.48
## 58485           1171   37155.54
## 58486            141    6414.87
## 58487            114    1262.42
## 58488            727    1670.31
## 58489            105     144.97
## 58490            841   26927.59
## 58491             61       0.00
## 58492            462    1345.57
## 58493            102    2443.39
## 58494            129    1046.67
## 58495             68       0.00
## 58496             68       0.00
## 58497            190    1123.98
## 58498            190     778.95
## 58499            154    1686.26
## 58500            141     170.78
## 58501             84       0.00
## 58502             74       0.00
## 58503            726     750.15
## 58504             99     103.62
## 58505            160     451.47
## 58506            523       0.00
## 58507             89     257.40
## 58508            103     209.24
## 58509            544      97.21
## 58510            187       0.00
## 58511            306    2180.51
## 58512             97    2003.87
## 58513            686     884.32
## 58514             68       0.00
## 58515            175    6701.39
## 58516            258      86.17
## 58517            134     204.24
## 58518            334       0.00
## 58519            546    1656.67
## 58520            237     278.09
## 58521             43      64.68
## 58522            109     135.80
## 58523              4       0.00
## 58524           1075    7326.31
## 58525            360    2131.35
## 58526            231     215.48
## 58527             97     243.92
## 58528            381   15887.31
## 58529            283    6577.43
## 58530             68       0.00
## 58531             45    1762.21
## 58532            156    1255.35
## 58533            327       0.00
## 58534            181     153.30
## 58535             83       0.00
## 58536            473     306.29
## 58537             78      90.02
## 58538            238       0.00
## 58539             68       0.00
## 58540            103     323.18
## 58541             57     205.56
## 58543            574    2279.53
## 58544              5       0.00
## 58545            133     108.00
## 58546            112     952.58
## 58547            322     251.76
## 58548            139     587.00
## 58549            169     942.55
## 58550            224    1607.45
## 58551             85       0.00
## 58552            152    1917.39
## 58553             22       0.00
## 58554            392     229.16
## 58555           1285   48874.59
## 58556             99    6046.05
## 58557           1266  181734.95
## 58558            637    6732.31
## 58559            288    2994.68
## 58560             53    1979.19
## 58561            158     198.67
## 58562             64    2196.46
## 58563            295    3767.19
## 58564            216     141.00
## 58565            322       0.00
## 58566            198    1669.30
## 58567            595     328.73
## 58568            158     894.29
## 58569            119     183.42
## 58570             64       0.00
## 58571            181     249.27
## 58572            634     205.43
## 58573             43      27.54
## 58574            634       0.00
## 58575            101     792.56
## 58576             97     189.51
## 58577            167     333.47
## 58578            133     789.65
## 58579            128     202.67
## 58580             83     119.51
## 58581            189     430.07
## 58582            146    1280.23
## 58583            223      71.74
## 58584            518    2074.74
## 58585            128     255.77
## 58586             66       0.00
## 58587            120     332.52
## 58589            600   43852.61
## 58590            104     218.18
## 58591            363    3561.62
## 58592            842    1993.15
## 58593            112      94.22
## 58594            143     530.26
## 58595             68       0.00
## 58596            264    1217.44
## 58598            344    1391.15
## 58599            163     227.99
## 58600            788    2402.37
## 58601            204     449.80
## 58602            371     565.83
## 58603            132     386.10
## 58604            877    2606.99
## 58605            432      96.78
## 58606             23     445.73
## 58607            127     116.17
## 58608             69     737.90
## 58609             97     321.50
## 58610           1378  119985.78
## 58611            697     110.39
## 58612            131     153.08
## 58613            176     316.17
## 58614            179     149.06
## 58615           1191   15132.12
## 58616             52     543.24
## 58617            128     422.08
## 58618             96     975.60
## 58619            155    2000.82
## 58620            493     961.39
## 58621            101     226.85
## 58622            524     956.18
## 58623            835     154.14
## 58624            197     613.66
## 58625             65     349.39
## 58626             63       0.00
## 58627            406     213.14
## 58628            295     138.00
## 58629            132     671.04
## 58630             57    1979.20
## 58632            196     137.61
## 58633            412   26179.66
## 58634            250     167.76
## 58635            126     207.06
## 58636             45       0.00
## 58637            220     291.85
## 58638            657    4145.63
## 58639             51     816.32
## 58640             89     222.33
## 58641             49       0.00
## 58642            340       0.00
## 58643            544   45890.36
## 58644             52      26.81
## 58645            118     537.03
## 58646             39     196.05
## 58647            188     155.46
## 58648            127     149.44
## 58649             79     790.95
## 58650             97      89.85
## 58651           1231   21390.36
## 58652             95     149.41
## 58653             98     175.15
## 58654             62       0.00
## 58655            165     709.37
## 58656             84     118.89
## 58657            234    1160.72
## 58658              5       0.00
## 58659            127     908.95
## 58660             95     303.77
## 58661             94     738.67
## 58662             28     338.63
## 58664            122     597.94
## 58665            360    1587.56
## 58666            149     857.38
## 58667            475      37.78
## 58668            746       0.00
## 58669            182     130.42
## 58670            106     242.88
## 58671            125      32.94
## 58672            518   48340.95
## 58673            161     381.96
## 58674             94      40.20
## 58675            350     670.74
## 58676             95     143.35
## 58677            271     459.41
## 58678            128     158.88
## 58679            311    7841.10
## 58680            150     270.29
## 58681            307      69.66
## 58682            169    1084.43
## 58683            172     110.27
## 58684             93     141.31
## 58685             10      78.26
## 58686            211    1727.45
## 58687             87      95.51
## 58688             66       0.00
## 58689             77       0.00
## 58690            166     444.57
## 58691             32     141.80
## 58692            784    5116.82
## 58693            317       0.00
## 58694            991  101747.78
## 58695            125    3922.52
## 58696            838   26116.63
## 58697             47     669.08
## 58698             55     761.56
## 58699            160     253.21
## 58700            151     333.46
## 58701             94     205.76
## 58702            280     726.08
## 58703             87    2711.92
## 58704            199     850.45
## 58705            132    1298.85
## 58706            240     310.24
## 58707            725    2062.18
## 58708            260     125.55
## 58709            652    3560.83
## 58710            266       0.00
## 58711            203     150.14
## 58712            452      56.45
## 58713             72     668.08
## 58714            126    1504.09
## 58715             95     130.00
## 58716            122     353.64
## 58717            181     587.06
## 58718             38       0.00
## 58719            108     440.26
## 58720              6     402.12
## 58721             83    2321.71
## 58722            621    1557.34
## 58723            322     396.62
## 58724            161     218.29
## 58725            775       0.00
## 58726             90     269.55
## 58727            563    2105.50
## 58728             60     198.20
## 58729            151    1896.08
## 58730            105     960.07
## 58731            781    3957.44
## 58732            350     493.50
## 58733             94     224.96
## 58734             82     144.36
## 58735            109      94.79
## 58736            285    1059.78
## 58737             87       0.00
## 58738             87     159.34
## 58739           1081     650.24
## 58740            141     336.11
## 58741            178     293.00
## 58742            479    3091.97
## 58743            340    6403.44
## 58744            295     374.24
## 58745             63       0.00
## 58746            210     754.63
## 58747             94    2556.16
## 58748             90       0.00
## 58749            151     756.77
## 58750            175     200.98
## 58751            213      86.17
## 58752              5       0.00
## 58753            137     507.38
## 58754             89     207.22
## 58755             24     985.08
## 58756            308     186.79
## 58757             93      95.94
## 58759            120     235.07
## 58760            115     431.31
## 58761             67       0.00
## 58762             77     176.50
## 58763             89       0.00
## 58764            608     386.68
## 58765             90       0.00
## 58766            359     428.81
## 58767            476      60.56
## 58768            106     493.56
## 58769             87       0.00
## 58770            130       0.00
## 58771            212     509.30
## 58772            637    3066.75
## 58773            282    9199.61
## 58774            118     102.98
## 58775            375    2632.17
## 58776            340       0.00
## 58777            602     267.76
## 58778            257    3490.03
## 58779            164     199.77
## 58780            212     533.22
## 58781             75       0.00
## 58782            335     666.02
## 58783            687      26.81
## 58784            114     244.94
## 58785            441   27588.06
## 58786            604     144.40
## 58787           1529  276550.24
## 58788            489    6463.13
## 58789            347   18481.01
## 58790            218    5025.87
## 58791            567     233.51
## 58792            208      76.98
## 58793             72    2068.30
## 58794            204     210.87
## 58795            740   19320.80
## 58796            120     134.73
## 58797            567     389.79
## 58798            117     353.29
## 58799            756     337.58
## 58800            105    4916.61
## 58801            221    4201.33
## 58802            340       0.00
## 58803            155     108.80
## 58805            445     865.75
## 58806             87       0.00
## 58807            118     314.65
## 58808            265     175.54
## 58809            137     398.25
## 58810            306      92.13
## 58811              9       0.00
## 58812            280    1643.40
## 58813            437     539.85
## 58814            721     130.79
## 58815             99     110.58
## 58816            288     402.23
## 58817            138     309.87
## 58818            771   26430.21
## 58819            412    2661.28
## 58820             20     218.63
## 58822            255     262.50
## 58823            722     133.20
## 58824             79     249.61
## 58825            553       0.00
## 58826            126     425.74
## 58827             99      74.61
## 58828            573    5718.05
## 58829            732       0.00
## 58830            176     422.59
## 58831            144     352.51
## 58832            138     357.17
## 58833             76     237.43
## 58834            395    1794.19
## 58835            409    1764.73
## 58836             41     334.34
## 58837            140    1232.34
## 58838            129     396.64
## 58839              5       0.00
## 58840            544    4408.83
## 58841             97     251.52
## 58843            135     761.93
## 58844            100      80.68
## 58845            234    3745.00
## 58846            625   13475.30
## 58847            437    5893.68
## 58848             80     235.00
## 58849             80     235.00
## 58850             80       0.00
## 58851            729    3102.22
## 58852            145     598.33
## 58853             35      81.66
## 58854           1704   14057.95
## 58855            741    1017.15
## 58856             80       0.00
## 58857            273    1429.05
## 58858            106     142.87
## 58859              9       0.00
## 58860           1385  133606.66
## 58861            210    6199.62
## 58862            193       0.00
## 58863            196     923.28
## 58864            217     711.66
## 58865             83      93.53
## 58866            237    1797.25
## 58867             63     378.56
## 58868             97     614.87
## 58869             80     248.04
## 58870            412       0.00
## 58871            111       0.00
## 58872             89     212.08
## 58873            102       0.00
## 58874             78     525.00
## 58875            543     591.48
## 58876            171     234.27
## 58877            104     172.07
## 58878             22     460.52
## 58879             99     123.68
## 58880            479   39292.16
## 58881             77       0.00
## 58882            380    5504.84
## 58883            108      59.16
## 58884             77       0.00
## 58885            135    2511.03
## 58886            300    4593.68
## 58887            349   14498.21
## 58888           1216   50329.81
## 58889            216    1054.04
## 58890            126     207.88
## 58891            174     290.18
## 58892             99     290.99
## 58893            398    1174.53
## 58894            341     952.68
## 58895            420   18206.74
## 58896            143     123.89
## 58897             36     214.16
## 58898            266    1549.12
## 58899            189    3986.53
## 58900             88     134.72
## 58901            266    1201.85
## 58902            220    6459.28
## 58903            462     417.81
## 58904            159      51.16
## 58905              5       0.00
## 58906            385    3008.50
## 58907            114     162.25
## 58908            425    5388.51
## 58909             84       0.00
## 58910             90       0.00
## 58911           1202    1862.38
## 58912            130       0.00
## 58913             93     145.41
## 58914             94      99.97
## 58915            420       0.00
## 58916             49     362.72
## 58917            334      27.54
## 58918             49     366.11
## 58919            906  118075.32
## 58920            697     877.86
## 58921           1278   20026.38
## 58922             53    1512.05
## 58923           1152   59637.87
## 58924            236     453.60
## 58925            138     894.08
## 58926             86      74.00
## 58927            518     406.38
## 58928            111      31.61
## 58930            224     505.45
## 58931            108     157.96
## 58932            387    6552.59
## 58933             76       0.00
## 58935            129     533.04
## 58936             26     126.47
## 58937            105     165.75
## 58938            860     296.23
## 58939            194    2783.87
## 58940            411     205.08
## 58941            230      86.17
## 58942            115     143.21
## 58943            813   24347.46
## 58944            120      86.37
## 58945            140     284.48
## 58946            795      51.69
## 58947            107     127.68
## 58948             99       0.00
## 58949            305    1785.99
## 58950              1       0.00
## 58951             84       0.00
## 58952            159     464.48
## 58953             84       0.00
## 58954            693     428.27
## 58955            104     318.14
## 58956            200    2021.78
## 58957            136     583.87
## 58958            193     224.21
## 58959            106     423.73
## 58960            413    5703.86
## 58961            766    1684.75
## 58963            591   33788.43
## 58964            954  103703.37
## 58965            237     590.62
## 58966             89       0.00
## 58967            517     504.26
## 58968            230     677.57
## 58970            137     184.41
## 58971             94     112.94
## 58972            147     899.63
## 58973            184    6982.74
## 58974            512       0.00
## 58975             85     161.95
## 58977            176     205.69
## 58978            101     189.26
## 58979            129      74.68
## 58980            259     794.46
## 58981           1716   40189.64
## 58982            454     247.81
## 58983           1066  106824.46
## 58984            100     103.97
## 58985            410     241.87
## 58986            100      96.29
## 58987            534     657.36
## 58988            207    2673.95
## 58989            230     156.02
## 58990            683      11.75
## 58991            747   24647.74
## 58992            809   26785.19
## 58993            165     446.07
## 58994           1139    7707.10
## 58995            144     184.13
## 58996            255     231.17
## 58997            451     222.73
## 58998             56      96.29
## 58999            229     424.06
## 59000            755   24676.43
## 59001            123     152.85
## 59002            616     146.32
## 59003            268    4233.55
## 59004            136     141.83
## 59005            100     247.96
## 59006            100     296.80
## 59007             69       0.00
## 59008             70       0.00
## 59009            101     271.92
## 59010            498       0.00
## 59011            383     444.23
## 59012             72       0.00
## 59013            545   12925.16
## 59014            310     407.54
## 59015             47    1874.83
## 59016             89     252.21
## 59017            502   19736.76
## 59018            604   39115.97
## 59019            642     294.45
## 59020            564   52373.06
## 59021             50     673.19
## 59022            307      99.97
## 59023            162     189.37
## 59024            104      98.98
## 59025            134     191.98
## 59026            140      11.73
## 59027            405       0.00
## 59028            130      98.81
## 59029            499   49333.94
## 59030            160     232.11
## 59031             67       0.00
## 59032            425     176.84
## 59033             61       0.00
## 59035            274     316.32
## 59036            172     209.09
## 59037           2434  169196.70
## 59038            555    6275.32
## 59039            602     644.54
## 59040            467     312.50
## 59041             67       0.00
## 59042            117     276.31
## 59043             26       0.00
## 59044             99     175.54
## 59045            130     354.84
## 59046            126    1019.20
## 59047             69       0.00
## 59048            683       0.00
## 59049            321       0.00
## 59050             90     185.91
## 59051            103     173.87
## 59052            280    8191.10
## 59053            589   38281.39
## 59054             29     144.71
## 59055             82     170.06
## 59056            155     521.40
## 59057             99      48.96
## 59058            339       0.00
## 59059            925    2353.67
## 59060            131     726.45
## 59061            715     275.84
## 59062            398     148.81
## 59063            107      61.34
## 59064            256       0.00
## 59065            176    6311.47
## 59066            555    4150.57
## 59067             90       0.00
## 59068            606    1781.87
## 59069            122     406.19
## 59070            120     364.60
## 59071            118    2368.40
## 59072             50     358.62
## 59073            625    1315.78
## 59074            331     304.72
## 59075            326       0.00
## 59076            719    5703.16
## 59077            204    1505.66
## 59078            190     785.97
## 59080            280    3674.50
## 59081            370   26871.77
## 59082            100     291.79
## 59083            371   17079.34
## 59084              2       0.00
## 59085             20       0.00
## 59086            128     186.55
## 59087            161     313.47
## 59088            424    8333.35
## 59089            120     674.60
## 59090            225     267.32
## 59091             85    1582.44
## 59092            145     384.97
## 59093            474    7070.63
## 59094            138     529.11
## 59095            336     731.56
## 59096            309     691.70
## 59097             33     215.00
## 59098            367    3491.47
## 59099             99      94.79
## 59100            539   40329.16
## 59101             78       0.00
## 59102            448   25913.26
## 59103            520    9363.78
## 59104            103     625.84
## 59105            125     197.40
## 59106            476    5530.50
## 59108             50    1266.62
## 59109            219     805.49
## 59110            109     694.58
## 59111             93     320.12
## 59112            427     309.47
## 59113             93      88.42
## 59114             77     197.25
## 59115             70       0.00
## 59116             65     714.38
## 59117            233      79.40
## 59118           1598  181379.07
## 59119            474   12914.87
## 59120            260   10125.43
## 59121            119     583.65
## 59122            341    6866.57
## 59123            461     161.01
## 59124            303    1088.78
## 59125            287     497.97
## 59126            516    1910.07
## 59127             92      25.80
## 59128           1026   10421.50
## 59129             94     290.90
## 59130            172     857.07
## 59131            127     225.65
## 59132            177      90.77
## 59133            336    1639.10
## 59134            711   17598.63
## 59135             91       0.00
## 59136            138     225.18
## 59137            576     244.62
## 59138            301    1087.51
## 59139             64       0.00
## 59140            680   10761.71
## 59141             11      92.45
## 59142            120     136.56
## 59143           1142    7150.53
## 59144             99     124.42
## 59145             69     441.37
## 59146            526     326.45
## 59147           1601   96150.17
## 59148            997   46584.77
## 59149             90      39.57
## 59150            228     610.28
## 59151             90       0.00
## 59152            140       0.00
## 59153              2       0.00
## 59154             76       0.00
## 59155           1021    4939.93
## 59156           1636   25658.84
## 59157            116      17.77
## 59158            189      81.53
## 59159             42     198.68
## 59160            195       0.00
## 59161            120     158.75
## 59162            151     180.15
## 59163            120     125.27
## 59164             15     150.24
## 59165            648       0.00
## 59166             83       0.00
## 59167             85       0.00
## 59168            110    2718.76
## 59169            606       0.00
## 59170           1554   33852.56
## 59171             96      74.68
## 59172            143      58.01
## 59173            425     586.86
## 59174            402    2617.43
## 59175             69     211.99
## 59176            694     140.19
## 59177            420   14255.61
## 59178           1193   96848.20
## 59179            358     167.69
## 59180            215      38.78
## 59181            345     117.15
## 59182             84       0.00
## 59183            577    8817.17
## 59184           1626   45435.23
## 59185            245    1661.89
## 59186           1146   14836.17
## 59187             90       0.00
## 59188             90       0.00
## 59189            117     380.49
## 59190            837   85086.83
## 59191            116     521.00
## 59192            440     696.98
## 59193            170     211.79
## 59194            793   35331.39
## 59195            216     286.60
## 59196            183     451.74
## 59197            139     533.86
## 59198            651    4958.29
## 59199             86       0.00
## 59200             86       0.00
## 59201             86       0.00
## 59202            146    1220.48
## 59203             85       0.00
## 59204            157      99.97
## 59205            147    1221.34
## 59206            115     132.63
## 59207            179     682.99
## 59208            314      75.37
## 59210            607     175.83
## 59212            369     387.68
## 59213             85       0.00
## 59215            106     501.52
## 59216            106      27.34
## 59217            108      68.51
## 59218            241       0.00
## 59219            111       0.00
## 59220           1351    1561.41
## 59221            220       0.00
## 59222            572   50062.73
## 59223            263       0.00
## 59224            618     545.00
## 59225            155     172.53
## 59226            140     180.15
## 59227            716   31629.75
## 59228            669   20354.12
## 59229             74     137.80
## 59230             85       0.00
## 59231             86       0.00
## 59232            146     370.79
## 59233            187     209.07
## 59234            196     193.86
## 59235            707    1005.95
## 59236            178     295.05
## 59237            199    1872.74
## 59238            116     765.21
## 59239            292     258.46
## 59240              2       0.00
## 59241            120     354.80
## 59242            429     147.89
## 59243            288     103.46
## 59244            203     512.00
## 59245             85     141.63
## 59246            205    1007.29
## 59247            545   14769.54
## 59248            308      86.88
## 59249            140     337.28
## 59250            162    1084.67
## 59251            455    1223.72
## 59252            508   19325.82
## 59253            179    1079.55
## 59254            310     240.41
## 59255             77     502.61
## 59256            592   57746.29
## 59257            573   35580.40
## 59258            239     911.64
## 59259             84    1123.16
## 59260            145     135.75
## 59261           1602  165542.84
## 59262            326     280.81
## 59263            645      87.37
## 59264            193       0.00
## 59265            544       0.00
## 59266             65       0.00
## 59267            101    4376.60
## 59268            113     349.42
## 59269            961     104.89
## 59270            107     174.69
## 59271            138     170.48
## 59272            158     512.74
## 59273            111     253.10
## 59274            742   75977.70
## 59275            355     203.25
## 59276            696   47231.02
## 59277             83     136.94
## 59278            113     645.11
## 59279             53       0.00
## 59280            347     374.32
## 59281            906   19239.62
## 59282             52     533.47
## 59283            178     529.47
## 59284            665     192.69
## 59285             97     288.02
## 59286            483   10337.18
## 59287            116     217.74
## 59288            115     121.10
## 59289            115     251.41
## 59290            239     295.05
## 59291            175     250.75
## 59292            113     144.44
## 59293            342    2623.61
## 59294            545     949.89
## 59295            205    1095.24
## 59296            107     313.58
## 59297            484     170.01
## 59298             79      92.61
## 59299            133     960.97
## 59300           1276   40431.78
## 59301            503     121.42
## 59302            222     864.02
## 59303            285       0.00
## 59304            141      99.97
## 59305            100     110.27
## 59306            188     701.57
## 59307            595   37961.94
## 59308            168     283.89
## 59309             47     191.62
## 59310            259    1008.70
## 59311            601   15209.33
## 59312            545    5876.30
## 59313            113    1133.34
## 59314            144     281.83
## 59315             84       0.00
## 59316            161    1200.67
## 59317             58    3319.28
## 59318            147     529.16
## 59319            152    1930.17
## 59320            669    1446.19
## 59321            356       0.00
## 59322            704   24461.45
## 59323            237    2905.13
## 59324            130     204.10
## 59325            494    1462.51
## 59326           1205   26125.49
## 59327            264     293.86
## 59328             78      74.68
## 59330            109     244.69
## 59331           1102    5834.61
## 59332            267     576.83
## 59333            109     426.24
## 59334           1490  191810.49
## 59335            220    5592.29
## 59337             22       0.00
## 59338             70       0.00
## 59339            778   22858.67
## 59340            503     929.40
## 59341            671      44.21
## 59342             83       0.00
## 59344            132     219.32
## 59345            282    2761.81
## 59346            291     375.17
## 59347            103     114.12
## 59348            103     224.65
## 59349            112     753.48
## 59350            311    9911.82
## 59351            140     265.68
## 59352            140     157.80
## 59353             36     306.45
## 59354             99     200.69
## 59355             83    2853.05
## 59356            436     938.12
## 59357            214    3132.97
## 59358            106     283.20
## 59359             67       0.00
## 59360             79     128.14
## 59361            111    1685.97
## 59362             79       5.17
## 59363             79       0.00
## 59364            236     925.00
## 59365            397       0.00
## 59366             31       0.00
## 59367             91       0.00
## 59368             77     118.20
## 59369            229    1124.96
## 59370            698    2172.76
## 59371             76     204.30
## 59372            326    1449.39
## 59373            172    4101.65
## 59374            643    2273.04
## 59376            463    7794.25
## 59377            193     694.82
## 59378            832     156.72
## 59379            228     191.25
## 59380            141     831.98
## 59381             64       8.25
## 59382            575    1197.35
## 59383            524     245.45
## 59384            308     470.68
## 59385            341    4491.09
## 59386            124     206.11
## 59387            302      54.56
## 59388            111     130.79
## 59389             14       0.00
## 59390            423    2775.53
## 59391             85     195.75
## 59392            547     572.09
## 59393            130     220.37
## 59394             70       0.00
## 59395            564       0.00
## 59396             65       0.00
## 59397            164    1596.21
## 59398              1       0.00
## 59399            137     496.53
## 59400            709  128199.17
## 59401            111    1176.52
## 59402            201    1001.90
## 59403            171     645.10
## 59404              2       0.00
## 59405            249     325.11
## 59406            320    1949.99
## 59407            130     163.68
## 59408            127     149.49
## 59409            107     184.70
## 59410             76       0.00
## 59412            193    1167.82
## 59413            198    1299.18
## 59414           1464     193.98
## 59415             96     151.51
## 59416           1724   52715.15
## 59417            132     232.70
## 59418            243    1058.78
## 59419            453    1409.51
## 59420            333       0.00
## 59421            451       0.00
## 59422            120      44.21
## 59423            162     409.45
## 59424            351       0.00
## 59425            809     658.41
## 59426             92       0.00
## 59427            231      74.94
## 59428            336     370.89
## 59429             94       0.00
## 59430            100      58.22
## 59431            322      64.68
## 59432            100     184.01
## 59433            205     165.54
## 59434              2       0.00
## 59435            135       0.00
## 59436            300    2899.11
## 59437             52       0.00
## 59438            542       0.00
## 59439             98       0.00
## 59440            638    1486.71
## 59441              4       0.00
## 59442            227       0.00
## 59444             22       0.00
## 59445            100    3181.92
## 59446            238     236.52
## 59447             31     157.66
## 59448            375    4472.87
## 59449            106     134.73
## 59450            560   36334.35
## 59451            103      85.63
## 59452            108     152.28
## 59453            133     156.21
## 59454            132      99.97
## 59455            128     478.42
## 59456             66      95.94
## 59457            570       0.00
## 59458            238     756.29
## 59459            638    6454.58
## 59460           2028  197768.03
## 59461            166     799.87
## 59462             45       0.00
## 59463            196     217.66
## 59464            225    2693.67
## 59465            271    2158.39
## 59466           1251  111399.06
## 59467            576     415.78
## 59468             97       0.00
## 59469            162      95.37
## 59470            288     284.75
## 59471            524    2308.75
## 59472            130     419.20
## 59473             99     216.88
## 59474            588       0.00
## 59476            254       0.00
## 59477             27    1056.00
## 59478            229    1116.66
## 59479           1167     936.35
## 59480            463   16875.02
## 59481            160     616.53
## 59482           1248   17770.95
## 59483            239     196.45
## 59484            581    4693.71
## 59485            216     261.25
## 59486            587       0.00
## 59487             88      90.27
## 59488            821   18470.54
## 59489            112     136.22
## 59490            164    1050.52
## 59491            128     721.69
## 59492            227    1011.21
## 59493            379    3352.68
## 59494            112    2285.57
## 59495            385     547.98
## 59496            554     251.34
## 59497            134     470.39
## 59498            174     267.81
## 59499            130     435.48
## 59500             99      58.01
## 59501            762    1387.40
## 59502            497     804.48
## 59503            250     622.52
## 59504            402    1983.99
## 59505            384     108.00
## 59506             86       0.00
## 59507             58     240.31
## 59508            423     304.77
## 59509            224     117.32
## 59510            120     390.79
## 59511            384   15093.53
## 59512            123     278.13
## 59513             92     245.09
## 59514             74      86.22
## 59515             63       0.00
## 59516            451     448.80
## 59517            101      81.58
## 59518            162    1082.93
## 59519            285    1479.79
## 59520            163     461.81
## 59521            328   26022.01
## 59522            127     243.86
## 59523             96      39.05
## 59524            507     254.27
## 59525            213     278.78
## 59526            555    4522.42
## 59527            127     353.52
## 59528            158     329.64
## 59529             66       0.00
## 59530            296    1613.19
## 59531            527   52847.40
## 59532            293     728.26
## 59533            102      79.07
## 59534             34     182.83
## 59535            570    8590.77
## 59536              2       0.00
## 59537            672   51657.15
## 59538            387    1244.25
## 59539            671     155.53
## 59540            160     595.20
## 59541            582   99697.53
## 59543            123    2050.97
## 59544             66     754.54
## 59545           1094     143.78
## 59546           1267    2285.70
## 59547             10       0.00
## 59548            168     195.99
## 59549            203    4676.57
## 59550            404     501.76
## 59551            187       0.00
## 59552           1135   32957.64
## 59553             96     250.46
## 59554             99     167.13
## 59555             70       0.00
## 59556            397       0.00
## 59557            100    1013.52
## 59558            124    1038.23
## 59559             63       0.00
## 59560            267       0.00
## 59561            103     307.41
## 59562            271    1799.02
## 59563           1602   11020.93
## 59564            131       9.14
## 59565            131      24.49
## 59566             99      86.17
## 59567            177     200.98
## 59568             24       0.00
## 59569             94       0.00
## 59570            292       0.00
## 59571             89       0.00
## 59572            419     166.56
## 59573            541     312.46
## 59574             47     113.28
## 59575             79    2532.58
## 59576            377     434.74
## 59577             89       0.00
## 59578            680       0.00
## 59579           1141   30866.68
## 59580            128     143.35
## 59581            103      85.60
## 59582             93      93.00
## 59583             93     118.10
## 59585            456    2838.19
## 59586            188    1460.89
## 59587             96     108.00
## 59588            130       9.14
## 59589            178     510.44
## 59590             46    1116.38
## 59591            633   22045.11
## 59592            117     278.22
## 59593            110     279.94
## 59594            182     287.08
## 59595            155     964.60
## 59596            105     446.07
## 59597            151     367.63
## 59598            467       0.00
## 59599            509     255.46
## 59600             86      58.01
## 59601            985   51642.25
## 59602             88       0.00
## 59603             88       0.00
## 59604            179    1256.30
## 59605            331    2041.91
## 59606            130     280.06
## 59607             88       0.00
## 59608           1102   37377.90
## 59609             95    1446.60
## 59610            989   36630.18
## 59611            777    3282.09
## 59612            322     120.00
## 59613            295    5751.58
## 59614            127       0.00
## 59615             96     552.74
## 59616             92     222.86
## 59617            276    1298.34
## 59618            238    1512.76
## 59619             81     548.72
## 59620            141     252.18
## 59621            149     808.05
## 59622            939    2617.57
## 59623            244     277.03
## 59624             78     882.53
## 59625            635      93.63
## 59626            186    1498.24
## 59627             10     161.67
## 59628            679    1840.23
## 59629             73       0.00
## 59630              6       0.00
## 59631              6       0.00
## 59632              7       0.00
## 59633            111     177.81
## 59634             91       0.00
## 59635            397    1161.63
## 59636              6       0.00
## 59637            111    2490.43
## 59638            144    1968.54
## 59639             82       0.00
## 59640             25       0.00
## 59641             81       0.00
## 59642            135     118.33
## 59643            139     380.63
## 59644            389      70.35
## 59645            130      99.91
## 59646            215    1737.71
## 59647            614     103.46
## 59648            125      19.72
## 59649            389       0.00
## 59650            321     807.16
## 59651             66       0.00
## 59652             69       0.00
## 59653             91       0.00
## 59654            214    1794.90
## 59655            214     515.53
## 59656             91     104.94
## 59657            185     814.52
## 59658            172     302.99
## 59659            329     376.05
## 59660            146     491.55
## 59661             70     129.52
## 59662            160     137.77
## 59663             68       0.00
## 59664            117     328.75
## 59665            267    2110.56
## 59666            158    4382.85
## 59667             89       0.00
## 59668            269     262.82
## 59669            406     229.50
## 59670            655     113.10
## 59671            123    1529.16
## 59672             94      83.00
## 59673            884     547.73
## 59674            384    1307.37
## 59675            140      51.49
## 59676            251     327.83
## 59677            118     273.56
## 59678            230     472.72
## 59679            179     200.98
## 59680             87     108.17
## 59681            467     105.69
## 59682              5       0.00
## 59683            159     449.66
## 59684            279     266.23
## 59685            365     272.99
## 59686            527     204.29
## 59687            223     263.90
## 59688            140      82.77
## 59689             24     369.90
## 59690            391     210.78
## 59691             19       0.00
## 59692            971   14535.11
## 59693            252   11899.59
## 59694            174     142.90
## 59695            693    2765.09
## 59696             25      86.17
## 59697            149     137.25
## 59698             75      86.17
## 59699            162     153.35
## 59700            519    2324.62
## 59701             71       0.00
## 59702            293     518.54
## 59703             86       0.00
## 59704            274     943.69
## 59705             19     162.50
## 59706            161     244.16
## 59707            626    2496.00
## 59708            150     210.29
## 59709            174      78.11
## 59710            160     139.70
## 59711             82     137.77
## 59712            203     322.48
## 59713            161   14652.15
## 59714            887   14796.79
## 59715            697   29738.07
## 59716            227     640.94
## 59717            141     334.41
## 59718            113    1059.60
## 59719            127     606.19
## 59720              4       0.00
## 59721            123       0.00
## 59722            222     966.11
## 59723             15      74.68
## 59724            115     203.13
## 59725            116     185.29
## 59726            342     720.67
## 59727            118      64.64
## 59728            385    1068.00
## 59729            253       0.00
## 59730             80       0.00
## 59732            111    1326.98
## 59733             35     130.55
## 59734            250       0.00
## 59735            576    5500.66
## 59736           1150   47638.82
## 59737            660   15924.20
## 59738            157    1085.65
## 59739            144       0.00
## 59740            900    2123.48
## 59741            861     675.35
## 59743             90     327.14
## 59744             99     121.76
## 59745            516    1402.21
## 59746            487       8.00
## 59747            356   32877.00
## 59748             80       0.00
## 59749            174     808.03
## 59750            532   14641.22
## 59752            113      89.85
## 59753            717   36587.30
## 59754            235    1250.59
## 59755            176    4904.74
## 59756            574     491.13
## 59757             86     150.13
## 59758             86       0.00
## 59759            523   10114.89
## 59760            118     133.32
## 59761            184    2044.15
## 59762             83      79.33
## 59763             86      58.01
## 59764            488   23969.83
## 59765            113     239.55
## 59766             67    2308.84
## 59767            174    1230.88
## 59768            172      83.42
## 59769            555   13043.35
## 59770            723     371.77
## 59771            110     170.75
## 59773            362   41674.14
## 59774            148     125.39
## 59775            133    1073.44
## 59776            160      86.17
## 59777            204     137.89
## 59778            175     321.64
## 59779            120     814.08
## 59780             69       0.00
## 59781            149     208.59
## 59782            663       0.00
## 59783            715    5796.95
## 59784            794   23804.61
## 59785             74       0.00
## 59786            104      62.21
## 59787           1208   37990.21
## 59788            109     139.05
## 59789             17     112.89
## 59790             80       0.00
## 59791             79       0.00
## 59792            321     463.19
## 59793            568    2754.76
## 59794            390   15796.54
## 59795            274    1771.98
## 59796            112      58.31
## 59797            254      95.37
## 59798            395     301.66
## 59799            112     143.86
## 59800            184     356.47
## 59801           2471    9536.32
## 59802            551    2946.95
## 59803             35       0.00
## 59804            262     565.06
## 59805            609       0.00
## 59806             97     784.44
## 59807            994    2603.99
## 59808            111     163.97
## 59809             93     329.28
## 59810            266    1235.14
## 59811            663     997.21
## 59812            170    1121.65
## 59813            165    9319.53
## 59814            172     643.07
## 59815            479   15247.43
## 59816            290    1523.34
## 59817              8       0.00
## 59818            385     115.07
## 59819            265     658.26
## 59820             13       7.53
## 59821            244       0.00
## 59822            146      86.17
## 59823            104      86.17
## 59825             16      42.28
## 59826            109      93.05
## 59827            177     879.70
## 59828            579       0.00
## 59829            579    3357.02
## 59830            201    2253.48
## 59831            201      86.17
## 59832            204     210.33
## 59833            434    2688.59
## 59834            781    1110.78
## 59835            112       0.00
## 59836            123     155.61
## 59837            254       0.00
## 59838            649   11483.39
## 59839            120    2340.21
## 59840            212     177.16
## 59841            103     361.12
## 59842            544     423.11
## 59843            462   16343.87
## 59844            446   18882.16
## 59845             76    2008.49
## 59846           1314   86314.88
## 59847            461    3199.56
## 59848            187    3078.67
## 59849            131     943.45
## 59850           1620  393552.74
## 59851             73       0.00
## 59852             35     293.79
## 59853            503    1481.18
## 59854            535     937.03
## 59855            170     267.44
## 59856             60     137.66
## 59857            123      86.17
## 59858            121     254.74
## 59859             98     514.26
## 59860            610     427.75
## 59861            385     765.83
## 59862            109     277.33
## 59863           1073   17885.10
## 59864            482    4472.79
## 59866              1       0.00
## 59867            136     102.35
## 59868             90       0.00
## 59869             85     704.73
## 59870             79       7.86
## 59871            215    6821.78
## 59872            135    1356.75
## 59873             18     137.95
## 59874            195     902.07
## 59875            110      89.56
## 59876            130      58.01
## 59877             98     167.72
## 59878            419   15999.77
## 59879             98     142.28
## 59880            666    4772.18
## 59881            122      99.97
## 59882            270    1397.61
## 59883            116     118.89
## 59884            926     143.21
## 59885            627    3161.82
## 59886            175     176.76
## 59887             71     361.19
## 59888            348       0.00
## 59889            109     104.25
## 59890            284    1328.93
## 59891            104     197.25
## 59892            260    9035.17
## 59893            135     110.97
## 59894            494   19075.77
## 59895            218     914.83
## 59896             17       0.00
## 59898            137     953.05
## 59899             66      59.16
## 59900             97     111.91
## 59901            283       0.00
## 59902             65       0.00
## 59903             96     236.27
## 59904            193     671.39
## 59905            156     131.32
## 59906             75       0.00
## 59907            239    5499.33
## 59908            104     264.45
## 59909            768     335.61
## 59910             72       0.00
## 59911            193     995.19
## 59912            163    1727.83
## 59913            130     355.38
## 59914            109      87.33
## 59915            329      47.70
## 59916            107      64.68
## 59917            172    2167.41
## 59918            101     649.25
## 59920            834     600.00
## 59921            451   26344.76
## 59922            241     171.01
## 59923             28     166.79
## 59924            267       0.00
## 59925            147     414.66
## 59926            400       0.00
## 59927            121     598.13
## 59928            592   46053.48
## 59929            371    1589.37
## 59930             67     146.79
## 59931             77       0.00
## 59932            609     301.89
## 59933             23       0.00
## 59934            113      59.16
## 59936            200     305.81
## 59937             50       0.00
## 59938            460       0.00
## 59939            134      89.00
## 59940            347    2152.72
## 59941            133    3502.36
## 59942            102    2861.35
## 59943            203       0.00
## 59944            133     307.13
## 59945           1263  238182.12
## 59946            343   12020.37
## 59947           2261   42222.14
## 59948             98     231.98
## 59949            141    1147.69
## 59950            188    1183.80
## 59951            143    1074.27
## 59952             74       0.00
## 59953            701   15136.16
## 59954            428     128.67
## 59955             38     241.63
## 59956            339       0.00
## 59957           1009   31845.86
## 59958             97     203.37
## 59959             96     538.27
## 59960            159     733.31
## 59961             98     195.14
## 59962            296      19.54
## 59963            161     148.19
## 59964            187    4477.40
## 59965             71       0.00
## 59966            438    6171.83
## 59967            393   61212.09
## 59968            607    1169.66
## 59969            133     458.03
## 59970             27     147.19
## 59971            102     168.19
## 59972             71       0.00
## 59973             26     326.06
## 59974             90       0.00
## 59975             97     265.81
## 59976            100     112.65
## 59977            685     253.35
## 59978             77       0.00
## 59979            191     957.02
## 59980            101      74.68
## 59981            735   47786.47
## 59982            504      90.77
## 59983             76       0.00
## 59984            136     265.61
## 59985            250     177.97
## 59986             93     327.21
## 59987            194    1767.43
## 59989            102     303.59
## 59990            151       0.00
## 59991             99     246.12
## 59992             65       0.00
## 59993            420    1142.49
## 59994            873   37858.62
## 59995            126     118.14
## 59996            436    1013.02
## 59997             74       0.00
## 59998            193     367.47
## 59999            123     279.88
## 60000            128     161.91
## 60001            338    8664.91
## 60002            381     847.03
## 60003            284    7468.78
## 60004            269    1753.53
## 60005            133    1707.34
## 60006            116    2142.97
## 60007            544     633.08
## 60008             64     139.56
## 60009            119     291.40
## 60010             73    3044.79
## 60011            650     183.54
## 60012             23     162.69
## 60013             91      99.97
## 60014            102    7658.00
## 60015            813    1128.81
## 60016            654   25571.01
## 60017            183     368.01
## 60018           1121   93137.36
## 60019            121    1202.31
## 60021            660    2467.20
## 60022            342     243.94
## 60023             79      97.00
## 60024             70       0.00
## 60025            638      47.11
## 60026             78    6732.43
## 60027            708   59182.26
## 60028             98     265.63
## 60029            456      94.22
## 60030            657       0.00
## 60031            216     143.13
## 60032            508    2753.49
## 60033            202     498.64
## 60034            337     154.51
## 60035            533     715.79
## 60036            917     646.13
## 60037            158     602.73
## 60038            305     884.44
## 60039            267    1868.27
## 60040            527     274.43
## 60041            650    3193.58
## 60042            210     727.61
## 60043             91       0.00
## 60044            161     539.89
## 60045            266    2928.29
## 60047            288     331.55
## 60048             62       0.00
## 60049            118      74.41
## 60050            293     416.80
## 60051             61       0.00
## 60052             95      92.77
## 60053             66       0.00
## 60054             98     147.01
## 60055             29     178.03
## 60056            184    1451.88
## 60057            196     143.55
## 60058            198    1897.63
## 60059            127     110.32
## 60060             48      44.66
## 60061            131     677.86
## 60062             19       0.00
## 60063            154     478.25
## 60064             85     751.06
## 60065             83     200.56
## 60066            101     170.96
## 60067            118    1761.32
## 60068            530   19312.51
## 60069             89       0.00
## 60070            469   10839.98
## 60071            306       0.00
## 60072            310      15.11
## 60073            473   23138.79
## 60074            138       0.00
## 60075           1144    7563.58
## 60076            499     627.41
## 60077             91       0.00
## 60078            484    1027.11
## 60079            132    1807.60
## 60080             97      81.58
## 60081             68     215.68
## 60082            118     618.32
## 60083             65       0.00
## 60084             96     110.32
## 60085             66       0.00
## 60086            591     417.43
## 60087             95     245.37
## 60088            221    1146.18
## 60089            272   17774.73
## 60090            126     328.62
## 60091            192      28.63
## 60092            700       0.00
## 60093            153     611.94
## 60094            280    1613.83
## 60095            146     489.65
## 60096             80       0.00
## 60097            131      80.96
## 60098            217    2834.17
## 60099            279     592.51
## 60100            458    6606.43
## 60101             95      94.67
## 60102            188     406.59
## 60103            127    1760.25
## 60104            132     112.94
## 60105           1024      49.00
## 60106            643     106.51
## 60107             83    1920.34
## 60108            203    4089.76
## 60109            416       0.00
## 60110            428    1438.91
## 60111            152    1094.97
## 60112            213     952.63
## 60113            291     439.45
## 60114            180    1314.56
## 60115            181     416.01
## 60116             90       0.00
## 60117            436    1125.72
## 60118            809       0.00
## 60119              8       0.00
## 60120            210     771.87
## 60121             98     722.72
## 60122             90      63.53
## 60123            394     303.95
## 60124            282    3837.31
## 60125            122     772.94
## 60126            183     660.87
## 60127             91     281.73
## 60128            110    1955.25
## 60129             81       0.00
## 60130            326     349.86
## 60131            642    1169.83
## 60132            167    2276.82
## 60133             64       0.00
## 60134            159     120.86
## 60135            123     188.65
## 60136            266    2676.58
## 60137            171      67.40
## 60138            145       0.00
## 60139             13       0.00
## 60140             64       0.00
## 60141            173     224.41
## 60142            128      72.23
## 60143            258    8611.94
## 60144            233     157.69
## 60145            186       0.00
## 60146            101     821.99
## 60147            293    2410.46
## 60148            693    6503.37
## 60149            322    2497.64
## 60150             91     710.68
## 60151             99       0.00
## 60152            134     668.13
## 60153            106     166.40
## 60154            310     273.92
## 60155             66    1630.03
## 60156            121     224.82
## 60157             89     294.12
## 60158             80     767.05
## 60159            213     308.06
## 60160            607       0.00
## 60161            210     160.17
## 60162            163     113.27
## 60163            167     147.87
## 60164            623     170.25
## 60165             55    1514.50
## 60166            362    2702.88
## 60167             89       0.00
## 60168            655    2354.78
## 60169            119     173.27
## 60170             88       0.00
## 60171             88       0.00
## 60172            122    1136.34
## 60173            122      39.54
## 60174            400    1725.38
## 60175            645     367.40
## 60176            303     184.36
## 60177            170     431.89
## 60178             84       0.00
## 60179            112     772.08
## 60180            113     595.77
## 60181            903     873.89
## 60182            162     716.87
## 60183            493   63844.40
## 60185            138    1428.57
## 60186             97     149.15
## 60187            226    2238.66
## 60188            209    1514.89
## 60189             81       0.00
## 60190            113       0.00
## 60191             78       0.00
## 60192              9     280.94
## 60193              2       0.00
## 60194            157     337.21
## 60195            642     683.24
## 60196            291     252.72
## 60197            114      72.12
## 60198            224      69.16
## 60199            370       0.00
## 60200            120     327.62
## 60201            136     406.98
## 60202            131      96.37
## 60204             47     102.32
## 60205            460      22.60
## 60206            906   25545.18
## 60207            211     349.17
## 60208             35     276.28
## 60209             89      68.01
## 60210            181    3188.05
## 60211            349     594.89
## 60212             92     245.80
## 60213             37       0.00
## 60214            109     119.57
## 60215            195    1035.99
## 60216            192     137.38
## 60217             99     121.68
## 60218            353     345.79
## 60219            204       0.00
## 60220            158     732.58
## 60221            111    1294.98
## 60222           1731  207376.41
## 60223            218     198.20
## 60224            194     601.67
## 60225             88       0.00
## 60226             88      51.49
## 60227            174       0.00
## 60228            460     256.55
## 60229             37      56.68
## 60230            857    5197.77
## 60231           1080    9120.06
## 60232            116     842.12
## 60233             85       0.00
## 60234            541     607.37
## 60235             92     214.53
## 60236             82     484.01
## 60238              2       0.00
## 60239            173     879.42
## 60241            142     336.51
## 60242             75       0.00
## 60243            300       0.00
## 60244            683    1249.91
## 60245            105     758.95
## 60246             98      54.16
## 60247            756    1107.58
## 60248             88     610.81
## 60249            210     680.02
## 60250            587     216.06
## 60251            470     135.42
## 60252            280     122.23
## 60253            115     101.84
## 60254            765     196.42
## 60255            160    1853.79
## 60256            137    1518.06
## 60257             47    2394.61
## 60258            438     183.18
## 60259            429   10862.24
## 60260            577    3343.84
## 60261             45     105.01
## 60262             53     773.30
## 60263             53       0.00
## 60264            115     146.31
## 60265            190    2142.34
## 60266            162     620.87
## 60267             14     248.97
## 60268            329   14139.29
## 60269            124     305.60
## 60270            245     559.16
## 60271            114     763.39
## 60273            600     276.26
## 60274            448    1189.44
## 60275            143     620.87
## 60276            497      59.16
## 60277             76       0.00
## 60278            121       0.00
## 60279            417    3004.27
## 60280            114     127.55
## 60281            500    2365.33
## 60282            586       0.00
## 60283            212    1736.80
## 60284            142     177.51
## 60286             81       0.00
## 60287            224     978.30
## 60288            152     149.43
## 60289             81       0.00
## 60290            559     795.52
## 60291            108     243.08
## 60292            116     139.51
## 60293            126       0.00
## 60294            207    1156.35
## 60295           1312     630.15
## 60296            175     436.04
## 60297            114      95.37
## 60298           1099   24829.49
## 60299            656       0.00
## 60300            502     196.61
## 60301            106     135.83
## 60302            588   57014.88
## 60303            336    4716.02
## 60304            500   40332.65
## 60305            164     149.13
## 60306             63     158.00
## 60307            197     257.36
## 60308             79       0.00
## 60309            420     105.32
## 60310            594     312.66
## 60311             20     338.93
## 60312             33       0.00
## 60313            529     723.70
## 60314            164     293.91
## 60315            136    1289.58
## 60316             75       0.00
## 60317             91     189.72
## 60318            106     289.67
## 60319            981   69324.95
## 60320             74       0.00
## 60321            295     298.86
## 60322           1794   20565.80
## 60323            114     113.50
## 60324            218     397.88
## 60325            302     802.16
## 60326            114     478.83
## 60327            144    1393.08
## 60328            144     442.09
## 60329            144     655.01
## 60330            118     221.69
## 60331            112     325.22
## 60332            109     201.84
## 60333            142      87.45
## 60334            112    1580.11
## 60335             81      79.02
## 60336             62       0.00
## 60337             62       0.00
## 60338           1033    5247.50
## 60339           1600    1047.95
## 60340            549     228.51
## 60341            164    1715.63
## 60342            167     212.19
## 60343             19       0.00
## 60344            173     239.08
## 60345            190     671.44
## 60346             78       0.00
## 60347            293    1441.37
## 60348            154     962.41
## 60349            117     425.28
## 60350            177    9253.40
## 60351            278    2991.78
## 60352            351   12007.78
## 60353            163     142.11
## 60355            600      41.92
## 60356            132     149.83
## 60357            197     204.24
## 60358            140      99.42
## 60359             70       0.00
## 60360            560     999.80
## 60361             79      59.00
## 60363            136     193.28
## 60364             76       0.00
## 60365            405     941.48
## 60366             33     413.22
## 60367            108    1324.39
## 60368            138     197.11
## 60369            167     185.58
## 60370            139     952.49
## 60371             93    2283.52
## 60372             82     141.77
## 60373            222    3432.39
## 60374            305     102.97
## 60375             67       0.00
## 60376           1070    3890.63
## 60377            196     110.70
## 60378            153     370.02
## 60379            296       0.00
## 60380            295     290.02
## 60381            286       0.00
## 60382            267    3416.03
## 60383             97     220.66
## 60384             91      51.49
## 60385            579   10882.58
## 60386            117     745.57
## 60387              7       0.00
## 60388             94     282.52
## 60389            170       0.00
## 60390            473    2672.89
## 60391           1119   42313.81
## 60392            113     612.60
## 60393            225    4066.10
## 60394            517   11218.07
## 60395            108     202.00
## 60396           1042   12696.25
## 60397            137      74.68
## 60398            169     440.39
## 60399            424     115.35
## 60400            256     180.66
## 60401            166     337.66
## 60402            448     981.73
## 60403            200      78.26
## 60404            191    3245.41
## 60405            896     932.79
## 60406           1958   15235.80
## 60408             85       0.00
## 60409            366     120.97
## 60410            487     118.52
## 60411            154     307.88
## 60412            348     379.13
## 60413            280    2250.40
## 60414            345     432.19
## 60415            353    1852.56
## 60416            149     137.16
## 60417            678    1145.70
## 60418            178     193.31
## 60419             65     160.15
## 60420            136     409.59
## 60421            104     194.78
## 60422           2489   73303.76
## 60423            168      97.97
## 60424             75       0.00
## 60425            161      78.09
## 60427             92     137.29
## 60428            546     884.14
## 60429            489     585.95
## 60430            546     317.36
## 60431            766   33262.63
## 60432            418   40365.13
## 60433            132     116.28
## 60434            190     332.28
## 60435            193    1067.05
## 60436            244     186.57
## 60437            623   43192.41
## 60438            184    1481.31
## 60439             94      96.78
## 60440             97     702.37
## 60441            175       0.00
## 60442            129     376.69
## 60443             68       0.00
## 60444             91     163.35
## 60445            250     100.00
## 60446            306    5022.64
## 60447            112     100.17
## 60448            412   28461.85
## 60449            108     137.66
## 60450            527    4526.73
## 60451             76       0.00
## 60452            454     211.07
## 60453             62    3425.49
## 60454            126     181.43
## 60455             89     591.15
## 60456             24       0.00
## 60457             85     173.37
## 60458            507     133.89
## 60459             96     125.27
## 60460           1181   53689.51
## 60462            107     137.00
## 60463             71       0.00
## 60464            102     155.87
## 60465            498     109.56
## 60467             74       0.00
## 60468            105       7.80
## 60469            135     201.05
## 60470             28     266.90
## 60471              2       0.00
## 60472           1236  107033.65
## 60473            631     105.85
## 60474            206     292.52
## 60475            131     650.87
## 60476             54       0.00
## 60477            615   27023.75
## 60478            133     197.25
## 60479            123     195.93
## 60480            919    7077.41
## 60481            356     183.96
## 60482             77      39.57
## 60483            206     215.71
## 60484             98     134.42
## 60485            130     547.61
## 60486             96     365.17
## 60487            132     229.50
## 60488             65       0.00
## 60489             81     143.21
## 60490            112       0.00
## 60491            216     479.84
## 60492            315     371.95
## 60493             88     240.18
## 60494            757     110.77
## 60495            116     670.17
## 60496            209    1400.27
## 60497            139     243.28
## 60498            100     162.63
## 60499            281    1121.64
## 60500            263    2327.36
## 60501            209     662.02
## 60502            121    2073.91
## 60503            154     214.41
## 60504            100       0.00
## 60505            318    6042.46
## 60506            105     379.80
## 60507            263     173.79
## 60508            277   14082.56
## 60509            166     368.62
## 60510             74       0.00
## 60511            221     581.94
## 60512            407    1220.72
## 60513            356      95.95
## 60514            433    5215.97
## 60515            537       0.00
## 60516             30       0.00
## 60517            343    2235.50
## 60518            225     127.95
## 60519            654   28959.93
## 60520            200    2276.92
## 60521            605       0.00
## 60522             86       0.00
## 60523             82     256.82
## 60524            619    5271.06
## 60525             94     170.62
## 60526             63       8.25
## 60528           1131   73227.91
## 60529            188    2683.24
## 60530            625    1690.59
## 60531            191    1246.57
## 60532            341     400.98
## 60533            607       0.00
## 60534            299   16717.26
## 60535            115    1740.40
## 60536            159     150.18
## 60537            126     979.77
## 60538             61       0.00
## 60539             70       0.00
## 60540             73      90.25
## 60541            101     158.91
## 60542            399    1497.15
## 60543            273     357.66
## 60544            442    1521.92
## 60545            751   23714.99
## 60546           1226   17348.44
## 60547             27      44.19
## 60548            135     314.85
## 60549            463       0.00
## 60550            542    7008.64
## 60551            109     278.38
## 60552            196    1371.84
## 60553            268    2046.10
## 60554            159     277.98
## 60555            756     521.73
## 60556            215    1259.11
## 60557            154     134.51
## 60558            146      66.68
## 60559            101     141.70
## 60560            162    1389.84
## 60561            187    1239.33
## 60562             80     382.26
## 60563             80       0.00
## 60564            114      86.17
## 60565            740     233.37
## 60566             85    1109.99
## 60567            236     320.09
## 60568            247     177.79
## 60569            620     277.83
## 60570             62       0.00
## 60571            429   36852.43
## 60572            518      10.00
## 60573             67       0.00
## 60574            206       0.00
## 60575            238     178.68
## 60576             99     259.34
## 60577            242    2581.65
## 60578            434    1162.45
## 60579            264   22641.09
## 60580            140     274.25
## 60581            224     236.80
## 60582            254     230.66
## 60583            966   38603.48
## 60584            225     386.17
## 60585             87       0.00
## 60586            112     646.73
## 60587            146     136.86
## 60588             85       0.00
## 60589            145     490.86
## 60590            607     823.58
## 60591            342     172.80
## 60592            599    6256.28
## 60593            103      86.17
## 60594           1349    7409.65
## 60595            133     132.37
## 60596            484       0.00
## 60597            312   21578.81
## 60598             99      10.40
## 60599            161    1232.86
## 60600            540     567.99
## 60601            113     534.51
## 60602            490      46.37
## 60603            313     304.66
## 60604             85     153.65
## 60606            123     166.45
## 60607            817    3188.49
## 60608            605       0.00
## 60609             97      87.33
## 60610             84       0.00
## 60611             60       0.00
## 60612            115     102.98
## 60613            239     276.17
## 60614            147      58.45
## 60615             86       0.00
## 60616            157       0.00
## 60617             54       0.00
## 60618            693   10044.51
## 60619            159     241.38
## 60620            719     598.51
## 60621             60      44.21
## 60622             64      53.34
## 60623            115    2239.20
## 60624            235    7671.85
## 60625            117     847.31
## 60626             86      59.16
## 60627             86       0.00
## 60628            609     347.37
## 60629            231     309.36
## 60630             48      60.01
## 60631            463     691.44
## 60632            950    5530.03
## 60633            159     328.68
## 60634            156    1769.89
## 60635            202       0.00
## 60636            211     143.20
## 60637             95    1317.84
## 60638            146     837.64
## 60639            147      98.35
## 60640            189    1284.21
## 60641            297    3764.40
## 60643            149     188.28
## 60644            154     704.64
## 60645             72     698.77
## 60646            128    1160.90
## 60647            153     814.98
## 60648            635    2880.10
## 60649            169    2347.06
## 60650            273    1868.98
## 60651            607       0.00
## 60652            589    2313.51
## 60653            195     623.19
## 60654             49     230.78
## 60655            247    2455.14
## 60656            122    1670.06
## 60657             39       0.00
## 60658             93     235.68
## 60659            489   20887.90
## 60660            240      54.04
## 60661            165     247.68
## 60662            336     573.34
## 60663             71       0.00
## 60664            116    1154.99
## 60665            145      74.63
## 60666             99     126.89
## 60667             80     108.86
## 60668            439     998.46
## 60669             65       0.00
## 60670            605     251.06
## 60671            374    2020.99
## 60672            355    3015.65
## 60673             99     114.75
## 60674            325    2868.91
## 60675            219     852.71
## 60676             82     243.20
## 60677             72       0.00
## 60678            145     267.65
## 60679            478    1528.38
## 60680            244     224.76
## 60681            197      74.68
## 60682            103     173.68
## 60683            105     126.89
## 60684            457       0.00
## 60685            391       0.00
## 60686            316    1147.95
## 60687            175     712.09
## 60688            293      59.00
## 60689            254     510.14
## 60690            220     373.64
## 60691            147    2830.00
## 60692            651     182.19
## 60693            327      36.95
## 60694            118     121.54
## 60695            148     213.19
## 60696            269     460.14
## 60697            117     361.12
## 60698            148     169.94
## 60699            117    1170.70
## 60700            116     103.37
## 60701            126     127.12
## 60702            930    2846.00
## 60703            136    1396.86
## 60704              2       0.00
## 60705            114     240.21
## 60706             84     264.93
## 60707            237     366.76
## 60708            298    3295.12
## 60709            355      38.78
## 60710            434     996.17
## 60711            146      51.49
## 60712             80       0.00
## 60713            139     148.81
## 60714             25       0.00
## 60715            104      72.70
## 60716             36     223.97
## 60717             86     136.17
## 60718             68      79.38
## 60719             68      79.38
## 60721            102     154.10
## 60722            202     335.41
## 60723            605     138.19
## 60724            124     210.29
## 60725             82       0.00
## 60726             80     213.38
## 60727            267    1098.86
## 60728            238     520.36
## 60729            307     109.97
## 60730            317    1045.45
## 60731             37     283.30
## 60732            870     203.61
## 60733            147     940.77
## 60734             91     270.14
## 60735             69       0.00
## 60736            178    1038.65
## 60737             72     241.59
## 60738            115     193.20
## 60739            730    2199.40
## 60740            126       0.00
## 60741            224   26957.01
## 60742             24    3059.92
## 60743             76      94.22
## 60744            622       0.00
## 60745            232       0.00
## 60746             87       0.00
## 60747            629    3386.67
## 60748            167     441.94
## 60749            122      51.16
## 60750             73     112.94
## 60751             85      81.99
## 60752             94     177.49
## 60753            127     906.27
## 60754            116     159.13
## 60755             88      74.68
## 60756            323    1867.72
## 60757            169     241.13
## 60758            340      74.29
## 60759            147     240.25
## 60760            107      67.07
## 60761            141    1511.23
## 60762            528       0.00
## 60763            924     459.00
## 60764             85       0.00
## 60765             85      26.07
## 60766            115     284.89
## 60767            142     312.24
## 60768            502     372.96
## 60769            369     242.10
## 60770             97       0.00
## 60771            278     734.31
## 60772            374     883.68
## 60773             84       0.00
## 60774            141     202.69
## 60776            103    1395.15
## 60777            141     154.72
## 60778           2544   46920.01
## 60779            230     433.18
## 60780             78     627.69
## 60781            216     243.48
## 60782            308     303.76
## 60783             65       0.00
## 60784            129    1247.60
## 60785             63      56.78
## 60786             74       0.00
## 60787            205    1050.16
## 60789             45       0.00
## 60790             89      84.68
## 60791            131     131.93
## 60792            173     153.40
## 60793            490   22697.28
## 60795            607     170.65
## 60796            121    1398.14
## 60797            314    1029.20
## 60798            155    1408.12
## 60799             85      10.72
## 60800            114     303.95
## 60801            111     132.17
## 60802             49    1714.50
## 60803             84     170.17
## 60804             84     177.94
## 60805            206     872.17
## 60806            575    8628.50
## 60807            141     677.35
## 60808              1       0.00
## 60809            139     117.59
## 60810            144     558.81
## 60811            351   11136.19
## 60812            164    1478.72
## 60813             73       0.00
## 60814            520    1075.89
## 60815            106     537.77
## 60816             92      65.15
## 60817            137    1037.56
## 60818              1       0.00
## 60819            196     228.88
## 60820            144       0.00
## 60821            338     701.81
## 60822            135     225.01
## 60823            387     213.77
## 60824            133     231.88
## 60825             72       0.00
## 60826            133      54.56
## 60827            128     301.43
## 60828            497     137.66
## 60829             94     156.18
## 60830              2       0.00
## 60831            300     527.86
## 60832            110     211.96
## 60833            140      13.21
## 60834            189      99.97
## 60836            325      68.71
## 60838            142     126.47
## 60839            928   24795.61
## 60840             52      82.53
## 60842            178     499.11
## 60844             10       0.00
## 60845            203     284.77
## 60846            265    1856.57
## 60847            108     112.71
## 60848            313      22.26
## 60849            139     309.54
## 60850            141      52.96
## 60851            135     231.00
## 60852            134      92.02
## 60853            196    1393.21
## 60854            144       0.00
## 60856            168    1230.43
## 60857            133     238.04
## 60858             17     360.01
## 60859             96      20.00
## 60860             57      51.49
## 60861            118     635.78
## 60862            462     606.01
## 60863            107      99.97
## 60864             58       0.00
## 60865            127     174.06
## 60866            856     526.33
## 60867             75     211.57
## 60868             64       0.00
## 60869             42     595.32
## 60870            155     569.37
## 60871            133     251.36
## 60872            102      71.35
## 60873             77       0.00
## 60874            138     203.98
## 60875            287     798.39
## 60876            486     186.26
## 60877            161     907.28
## 60878            106     112.09
## 60879            135      86.17
## 60880            499    1639.70
## 60881            519      74.68
## 60882            323     648.93
## 60883            109      79.47
## 60884            354     172.25
## 60885            225     109.60
## 60886             44     179.17
## 60887             91     293.10
## 60888            133    1149.23
## 60889              8       0.00
## 60890            121    1723.33
## 60891            318    1557.99
## 60892            418    1300.44
## 60893            132     190.14
## 60894             32       0.00
## 60895             72      74.68
## 60896            530       0.00
## 60897            420    3758.06
## 60898             67       0.00
## 60899             97      58.01
## 60900            595      89.28
## 60901             96     672.22
## 60902             97     201.04
## 60903            703   19921.98
## 60904            344    5813.17
## 60905            118     358.82
## 60906            118     192.04
## 60907            530      30.00
## 60908            395     435.08
## 60910            247     448.06
## 60911            143     311.55
## 60912            107     128.67
## 60913            288     395.20
## 60914            100     159.45
## 60915             50       0.00
## 60916            125      27.18
## 60917             95     182.62
## 60918            371   16158.43
## 60919            132     434.80
## 60920            101     657.70
## 60922            309    1071.19
## 60923            213    4936.46
## 60924            135     364.48
## 60925           1302   16723.41
## 60926            104     108.60
## 60927            151     112.76
## 60928            251      74.68
## 60929             63       0.00
## 60930            142      39.52
## 60931            135     185.65
## 60932             73       0.00
## 60933            414     785.07
## 60934             56    3206.36
## 60935             21       0.00
## 60936            559    1311.10
## 60937            346     168.38
## 60938             70       0.00
## 60939            304    2662.82
## 60940            138     912.71
## 60941            112     134.72
## 60942            127      95.32
## 60943            127     125.68
## 60944            557     152.31
## 60945            798     995.40
## 60946            164     153.63
## 60947            121     279.62
## 60948            189    1549.39
## 60949            306      86.17
## 60950            262    3704.67
## 60951            188    1874.12
## 60952            120     449.21
## 60953             77     104.90
## 60954             64     297.52
## 60955            161     158.94
## 60956             98      76.98
## 60957             87       0.00
## 60958            363    2543.36
## 60959            126     160.47
## 60960            133     288.61
## 60961            134     147.59
## 60962            103     279.62
## 60963            446     271.11
## 60964            133     597.70
## 60965            176     124.64
## 60966            162    5815.87
## 60967            408      59.16
## 60968            481     207.00
## 60969            167    1051.59
## 60970            136     795.38
## 60971             11       0.00
## 60972            462    1647.48
## 60974            154     153.00
## 60975            299     654.73
## 60976            293   14284.49
## 60977            133      79.57
## 60978            120    3087.13
## 60979            517     415.66
## 60980            101     217.00
## 60981             71       0.00
## 60982             90    2979.85
## 60983            205     390.86
## 60984             67       0.00
## 60985            166     518.99
## 60986            177     235.22
## 60987            307     275.00
## 60988             69       0.00
## 60989            254       0.00
## 60990            469     154.12
## 60991             87       0.00
## 60992            148     591.81
## 60993            133     158.02
## 60994            399   26615.57
## 60995            194    1675.19
## 60996            102    1575.67
## 60997            433     172.59
## 60998            133     728.26
## 60999            167    2130.84
## 61000            193     488.34
## 61001            308     392.33
## 61002              9       0.00
## 61003            512     384.70
## 61004            100     214.87
## 61005             79     663.93
## 61007            108     410.84
## 61008            273       0.00
## 61009            217    1579.47
## 61010            497     257.90
## 61011            133       0.00
## 61012             66       0.00
## 61013            538       0.00
## 61014            127    1989.13
## 61015            189     262.48
## 61016            128     136.53
## 61017            186    1093.93
## 61018            134    8186.38
## 61019            124     916.27
## 61020            124     158.48
## 61021            305      21.76
## 61022            726      10.20
## 61023            145    2357.24
## 61024            100      21.76
## 61025            131     373.56
## 61026            718    6805.18
## 61027            164    2878.06
## 61028            306       7.86
## 61029            666   16160.65
## 61030           1046    2660.41
## 61031            352   34120.01
## 61032            655    1030.38
## 61033            263    3469.32
## 61034             73       0.00
## 61035             73       0.00
## 61036             63      51.49
## 61038            577     312.70
## 61039             71       0.00
## 61040            427     144.35
## 61041           1451  217600.26
## 61042             81      51.49
## 61044            100      51.49
## 61045            192    1493.02
## 61046            131     415.33
## 61047             91     735.72
## 61048            132     165.16
## 61049             21      10.00
## 61050             65       0.00
## 61051            292    2267.27
## 61052             96     236.86
## 61053            271    2153.05
## 61054             68     122.59
## 61055            593       0.00
## 61056           1520   18108.56
## 61057            489     252.24
## 61058            553     124.51
## 61059             65       0.00
## 61060             96     165.75
## 61061            201     873.92
## 61062            461     259.12
## 61063            126     153.99
## 61064            126    1810.07
## 61065            140       0.00
## 61067             94     200.69
## 61069            593   14492.18
## 61072            371      95.38
## 61073            402    1192.14
## 61074            174    1541.74
## 61075             31       0.00
## 61076             32      73.19
## 61077            306    2324.66
## 61078            536    2782.40
## 61079             20       0.00
## 61081            126     300.39
## 61082            519    2045.43
## 61083            188     462.69
## 61084            322    1336.72
## 61085            479    1613.25
## 61086            499     310.00
## 61087           1301   28221.34
## 61088           2022   68577.65
## 61089            581     452.24
## 61090            581     120.51
## 61091            571       0.00
## 61092             92       0.00
## 61093             83       0.00
## 61094            119    2317.28
## 61095            567       0.00
## 61096             82       0.00
## 61097            147     175.99
## 61098           1081   55895.43
## 61099            418     377.88
## 61100            140     252.10
## 61101           1886   20378.21
## 61102            134     476.75
## 61103            252     708.93
## 61104            133      18.80
## 61105           1476    5697.39
## 61106            444       0.00
## 61107             31     416.75
## 61108            112     392.11
## 61109             95      51.49
## 61110            107     136.98
## 61111             93     187.08
## 61113            292   17780.57
## 61114            602   27435.76
## 61115            317   34952.68
## 61116            137     640.19
## 61117            466       0.00
## 61118            169     195.99
## 61119            346     824.94
## 61120            346     371.20
## 61121            126      99.30
## 61122            126     190.89
## 61124            287    3761.57
## 61125            124     410.14
## 61126            359    2667.52
## 61127            540    7072.18
## 61128             59    2367.30
## 61129            120    1645.66
## 61130             90      71.35
## 61131            391    7759.99
## 61132             69       0.00
## 61133            338     106.32
## 61134            237     381.03
## 61135            118     388.13
## 61136            210     592.28
## 61137            120     258.29
## 61138            382    3025.93
## 61139            148     180.15
## 61140            147     112.00
## 61141            477    1822.24
## 61142            253     384.25
## 61143            371     224.66
## 61144            120      90.27
## 61145             60     817.12
## 61146             64     171.67
## 61147            476     730.28
## 61148            104     142.02
## 61149            246    2396.51
## 61150             63       0.00
## 61151            124     220.59
## 61152            123     254.77
## 61153            593   16426.51
## 61154            186    1946.23
## 61155            126     202.01
## 61156            216   11535.31
## 61157            100    1568.97
## 61158            292     520.55
## 61159            152    1009.58
## 61160            376      86.37
## 61161            148     275.23
## 61162            266    1195.77
## 61164             63       8.25
## 61165            853    1196.55
## 61166             29       0.00
## 61167            481     246.24
## 61168            118     182.18
## 61170            381    2400.33
## 61171           1089   18971.02
## 61172            118     485.62
## 61173             87       0.00
## 61174             67    1514.59
## 61175             91      68.51
## 61176           1513   50794.49
## 61177             69       0.00
## 61178            258     615.35
## 61179             38       0.00
## 61180            191     756.60
## 61181            865    7813.01
## 61182            111     191.94
## 61183           1160   12943.11
## 61184            112     307.57
## 61185            111     897.88
## 61186            113     292.22
## 61187            212    1258.80
## 61188            300     388.41
## 61189            150     851.96
## 61190            120      90.13
## 61191            120      86.79
## 61192            181    1503.64
## 61193            365       0.00
## 61194            111    1158.97
## 61195            166       0.00
## 61196             60       0.00
## 61197            184       0.00
## 61198            209     120.37
## 61199            120     203.24
## 61200            110     141.11
## 61201            110    1689.12
## 61202            480     574.08
## 61203             87     123.65
## 61204            210     745.62
## 61205            239     600.14
## 61206            266    5554.90
## 61208            337    2435.41
## 61209             83       0.00
## 61210            120     110.39
## 61211             15       0.00
## 61212            147     482.39
## 61213            174    5371.38
## 61214            273       0.00
## 61215             24       0.00
## 61216            156     132.17
## 61217            295     314.23
## 61218            239     337.80
## 61219            134    5630.74
## 61220            113     100.96
## 61221            386    8245.17
## 61222            637   70745.04
## 61223            178     304.61
## 61224            132    2229.50
## 61225            508    1569.71
## 61226            113     340.68
## 61227            498     820.87
## 61228             79       0.00
## 61229            327     999.00
## 61230            105     178.58
## 61231            576    6140.70
## 61232             96     315.51
## 61233             69     260.02
## 61234             59     201.89
## 61235            106     245.73
## 61236            280     220.64
## 61237             68       0.00
## 61238            563     369.81
## 61239            539     507.21
## 61240            973       0.00
## 61241            136     322.72
## 61242            213    1176.15
## 61243            129     308.72
## 61244             43       0.00
## 61245            254   25388.73
## 61246            347     326.48
## 61247            164     333.02
## 61248            133     668.58
## 61249            228    1518.07
## 61250            112     310.12
## 61251             63    2016.20
## 61252             82       0.00
## 61253           1168   41024.97
## 61254            292      15.83
## 61255             40      74.68
## 61256            564     876.17
## 61257            292       0.00
## 61258            475      94.94
## 61259             84     272.69
## 61260             92     150.14
## 61261            299    1500.83
## 61262            113     220.96
## 61263            516    4700.24
## 61264            246      60.59
## 61265             92     491.91
## 61266            288     235.70
## 61267            645    2980.80
## 61268            118     606.31
## 61269            137     234.02
## 61270             69       0.00
## 61271            189    5965.00
## 61272            103      99.97
## 61273            173     658.49
## 61274            637   17621.77
## 61275            960    5296.66
## 61276            112     308.84
## 61277            415     105.73
## 61278            111      58.01
## 61279            110     249.42
## 61280            144     388.16
## 61281             50      41.92
## 61282            144     278.05
## 61283            113    1201.97
## 61284            111     116.66
## 61285            141     127.83
## 61286             27     251.04
## 61287             86     105.05
## 61288            289       0.00
## 61289            140     193.20
## 61290             81     136.33
## 61291            106      64.68
## 61292            126       0.00
## 61293            167     466.43
## 61294            105      74.72
## 61295            636   21539.91
## 61296            403    2074.50
## 61297             35      41.40
## 61298            288    2963.70
## 61299            100      93.34
## 61300            140      43.38
## 61301              4       0.00
## 61302            237       0.00
## 61303            105     108.94
## 61304            192     977.01
## 61305            630    1427.39
## 61306            155     937.76
## 61307             84    6022.72
## 61308            236     479.17
## 61309            196   21765.54
## 61310             93     179.06
## 61311            580    1204.47
## 61312            805     565.12
## 61313            194     181.60
## 61314             79      86.17
## 61315            112      75.00
## 61316             34      64.85
## 61317            150     207.97
## 61318            114     265.47
## 61319             37     148.81
## 61320             70    1139.97
## 61321             63       0.00
## 61322             99     228.02
## 61323             96      90.71
## 61324             73       0.00
## 61325             55     169.70
## 61326             72       0.00
## 61327             72       0.00
## 61328             72       0.00
## 61329            463     269.53
## 61330            305     238.28
## 61331             76      38.78
## 61332            106     604.56
## 61334             86       0.00
## 61335             89      86.17
## 61336             56       0.00
## 61337            194     218.08
## 61338            373    3259.68
## 61340            276    5644.72
## 61341            167     685.00
## 61342            171     223.20
## 61343            340    3637.62
## 61345           1535  330255.31
## 61346            100     103.30
## 61347           1358  199759.57
## 61348            106      42.27
## 61349             93     118.45
## 61350            302     113.09
## 61351             98     158.89
## 61352             44     282.51
## 61353            112      95.37
## 61354           1078   41723.07
## 61355            200     197.25
## 61356            110      61.34
## 61357            226     325.91
## 61359             39       0.00
## 61360             83     343.84
## 61361            359     194.45
## 61362            159     333.97
## 61363            138     226.34
## 61364            733   21925.86
## 61365            180     745.59
## 61366            231     254.39
## 61367            460    2475.52
## 61368             79      74.87
## 61369            112     154.83
## 61370            219    1156.06
## 61371            104      39.57
## 61372             88      51.49
## 61373            134     241.36
## 61374            271    2052.70
## 61375            259     592.31
## 61376            107     326.37
## 61377             76      86.17
## 61378            136      21.64
## 61379             75       0.00
## 61380             75       0.00
## 61381            132    1063.23
## 61382            856    3080.19
## 61383            106      90.71
## 61384            134    3094.92
## 61385            105     301.07
## 61386            227     952.15
## 61387            954    2697.96
## 61388            136    2313.25
## 61389            238       0.00
## 61390            107     108.60
## 61391            103     160.05
## 61392            571       0.00
## 61393            152       0.00
## 61394            103     412.46
## 61395            124     184.58
## 61396            582     390.70
## 61397            239     175.75
## 61398            490    1356.35
## 61399            546      86.17
## 61400            215     306.04
## 61401             96      51.49
## 61402             91    1262.18
## 61403            130     316.72
## 61404             83    1491.75
## 61405            186       0.00
## 61406             68       0.00
## 61407            229     512.24
## 61408             86      64.68
## 61409            150     215.52
## 61410            161     576.81
## 61411            217     251.12
## 61412            123     698.67
## 61413            393    1359.91
## 61414             38       0.00
## 61415            104     151.48
## 61416            264     189.15
## 61417            571     393.35
## 61418            107     427.84
## 61419             64    5412.80
## 61420           1107     415.69
## 61421            142     260.02
## 61422            106     111.48
## 61423            101      82.65
## 61424            160     234.81
## 61425            140     137.52
## 61426            151     733.54
## 61427             91       0.00
## 61428            458    1791.10
## 61429            644  108564.69
## 61430           1027     439.08
## 61431            504    2653.80
## 61432             79       0.00
## 61433            170     153.73
## 61434            167     460.41
## 61435            582     316.97
## 61436            169     228.64
## 61437            279      13.79
## 61438             74       0.00
## 61439            167     398.15
## 61440            533    5821.09
## 61441             73       0.00
## 61442            337       0.00
## 61443            686     746.74
## 61444            697   36074.93
## 61445            313     118.32
## 61446            103     261.97
## 61447            103     137.66
## 61448            143     118.45
## 61449            202       0.00
## 61450             89     250.01
## 61451            262     932.27
## 61452            129    1070.83
## 61453             59     269.40
## 61454            366     498.60
## 61455             43      89.39
## 61456            106      95.37
## 61457             90       0.00
## 61458            235       0.00
## 61459             62       0.00
## 61460           1989     648.27
## 61461             99     120.47
## 61462            220     273.84
## 61463            312    1314.89
## 61464             99    1366.55
## 61465            567    1085.21
## 61466            248     177.57
## 61467             62       0.00
## 61468             72       0.00
## 61469            456     565.03
## 61470            195     562.00
## 61471            194     224.83
## 61472             82     184.64
## 61474            116    1172.55
## 61475            186     237.14
## 61476            134     443.14
## 61477           1000   65298.53
## 61478            147    1225.43
## 61479            224    1270.89
## 61480             94     105.05
## 61481             87     186.99
## 61482           1665  214474.93
## 61483            153    2272.61
## 61484            100      39.57
## 61485            457     784.57
## 61486            100     392.09
## 61487            105     208.69
## 61488            161      74.68
## 61489            400     120.00
## 61490             65       0.00
## 61491             66       0.00
## 61492            158     142.08
## 61493             97      46.37
## 61494            132      90.77
## 61495             91      76.50
## 61496             86       0.00
## 61497            105       0.00
## 61498            567   32183.97
## 61499             90       0.00
## 61500             43     395.49
## 61501            210     434.00
## 61502             89      44.21
## 61503             97    1660.60
## 61504            654    1685.86
## 61505            189     143.78
## 61506            469    1259.36
## 61507            129     733.24
## 61508            157    1220.83
## 61509            184     483.70
## 61510            103     140.39
## 61511             72       0.00
## 61512            206     131.54
## 61513            173     114.51
## 61514            226   13948.01
## 61515             89     144.43
## 61516            264    2544.18
## 61517             63       0.00
## 61518            546     278.24
## 61520            103     167.64
## 61521             97     274.10
## 61522             67       0.00
## 61523            211    1699.36
## 61524            249     672.25
## 61525            252    2098.63
## 61526            100     149.64
## 61527            130     157.85
## 61528            144     753.28
## 61529            126     141.80
## 61530             91       0.00
## 61531            298       0.00
## 61532            481     370.16
## 61533            100     136.86
## 61534            130     129.74
## 61535            196     536.83
## 61536            122     987.57
## 61537            185    1049.26
## 61538            306     729.01
## 61539            104    1052.41
## 61540            397    1608.29
## 61541            126     366.15
## 61542             69     618.53
## 61543            496     714.08
## 61544            321   11057.85
## 61545            219    2474.38
## 61546             70     120.28
## 61547            101     172.43
## 61548           1006   77609.44
## 61549            146    1198.45
## 61550            127     319.79
## 61551            632     106.22
## 61552            607    4229.63
## 61553            159    1083.24
## 61554            128     835.50
## 61555            127     464.28
## 61556            478    5285.00
## 61557             62       0.00
## 61558             53     315.19
## 61559             75      78.17
## 61560            377     585.93
## 61561            126     192.39
## 61562            438     243.15
## 61563             84     218.82
## 61564            273     295.15
## 61565            242       0.00
## 61566            213     471.68
## 61567            128     522.90
## 61568            119     348.78
## 61569             89       0.00
## 61570            120    1268.19
## 61571            130     110.41
## 61572             76       0.00
## 61573            157     750.21
## 61574            217    1848.21
## 61575             96      88.20
## 61576            161    5251.48
## 61577            249      72.44
## 61578             93     207.42
## 61579           1056   58284.45
## 61580            449     712.19
## 61581            197     221.10
## 61582            327     185.38
## 61583            483     165.46
## 61584            219     386.80
## 61585            301    1840.27
## 61586            102     450.31
## 61587            106     186.44
## 61588            769     535.66
## 61589            389    3799.30
## 61590            875    1925.68
## 61591            275   12430.80
## 61592            296     539.63
## 61594            235     259.22
## 61595            156    1101.00
## 61596            116     271.95
## 61597             67     316.64
## 61598            386     123.33
## 61599             20     260.91
## 61600            282     137.66
## 61601             85       0.00
## 61602           1009    1669.23
## 61603           1544    1358.40
## 61604            154     209.62
## 61605            240     715.76
## 61606            298    4600.32
## 61607            274     942.82
## 61608            221    5130.49
## 61609             96     112.94
## 61610             41     119.28
## 61611            583     782.62
## 61612             84       0.00
## 61613            157      54.04
## 61614            103     717.85
## 61615              7       0.00
## 61616            116     134.11
## 61617             21     100.41
## 61618            567     744.24
## 61619            235    1519.50
## 61620             96      46.34
## 61621            145     141.77
## 61622            119      61.34
## 61623             67     175.72
## 61624            407     152.55
## 61625           2498   10903.89
## 61626             92       8.10
## 61627            133     142.98
## 61628            156     742.93
## 61630            261     454.06
## 61631            137     200.77
## 61632             61       0.00
## 61633             47     200.78
## 61634            101     205.58
## 61635            102     375.63
## 61636           2233   94788.93
## 61637            119     266.34
## 61638             90       0.00
## 61639            148     650.61
## 61640             90       0.00
## 61641            102      88.29
## 61642             90       0.00
## 61643            319     148.52
## 61644            235     131.09
## 61645            201     713.16
## 61646           1062  187659.55
## 61647            403     885.22
## 61648            176     276.23
## 61649             16      95.37
## 61650            245     620.60
## 61651            336     622.45
## 61652            270       0.00
## 61653            270       7.81
## 61654            689   23601.81
## 61655            167     147.94
## 61656            126      44.41
## 61657            419    1474.61
## 61658             22     221.18
## 61659             21       0.00
## 61660            116    1439.05
## 61661            293     222.37
## 61663             90     132.65
## 61664            254      28.52
## 61665            804      55.55
## 61666            123     171.96
## 61667            154     659.54
## 61668            339     332.18
## 61669            894   22691.77
## 61670            207     519.33
## 61671            145     688.84
## 61672            122     270.88
## 61673            117     122.69
## 61674            468     478.44
## 61675             70       0.00
## 61676            159     674.61
## 61677            161     529.16
## 61678            130    1097.44
## 61679            241      72.01
## 61680             76       0.00
## 61682            400      51.49
## 61683            193     316.72
## 61684            171     482.27
## 61685            393     223.60
## 61686            560       0.00
## 61687            120     100.98
## 61688            271     431.71
## 61689            559     538.88
## 61690             61       0.00
## 61691             90       0.00
## 61692            572    5363.43
## 61693            151     404.69
## 61694            119    3715.05
## 61695            284   27292.82
## 61696            104       0.00
## 61697            632     217.61
## 61698            120     398.25
## 61699            131    2432.57
## 61700            195    1840.65
## 61701            463   42090.24
## 61702             59    1366.26
## 61703            113     370.55
## 61704             86      51.49
## 61705             86       0.00
## 61706            147     506.30
## 61707            138     259.86
## 61708            140      90.77
## 61709            467     274.04
## 61710            553       0.00
## 61711             63       0.00
## 61712            196     481.32
## 61713            102      78.17
## 61714             85       0.00
## 61715            369    2250.00
## 61716            112      98.33
## 61717            127     623.29
## 61718             14       0.00
## 61719            223     262.95
## 61720             62       0.00
## 61721            104      15.96
## 61722             79       0.00
## 61723            139     331.03
## 61724            209     338.09
## 61725            679   42857.90
## 61727             31     365.94
## 61728             86       0.00
## 61729            291     629.40
## 61730            345       0.00
## 61731            151      62.90
## 61732            287     157.32
## 61733             47     442.46
## 61734            304    1563.44
## 61735            557    3974.28
## 61736            484     200.84
## 61737            150      97.55
## 61738            120     151.62
## 61739            211     829.06
## 61740            468    1161.59
## 61742            258     161.76
## 61743            463   21460.50
## 61744             41    2364.40
## 61745            120     141.62
## 61746             59     225.67
## 61747             59     283.60
## 61748            488       7.81
## 61749            116      51.49
## 61750            147    1181.93
## 61751            138     262.77
## 61752            530     395.74
## 61753             69       0.00
## 61754            130     190.50
## 61755             77      51.49
## 61756             44       0.00
## 61757             73     885.42
## 61758              6       0.00
## 61759            149     312.04
## 61760             97       0.00
## 61761            220     119.06
## 61762             64       0.00
## 61763            294     980.22
## 61764            137     533.34
## 61765             84     167.18
## 61766             84       0.00
## 61767            145     486.14
## 61768            189     789.97
## 61769            344       0.00
## 61770            203     465.05
## 61771            140     884.19
## 61772            344     363.32
## 61773            154     196.59
## 61774             65       0.00
## 61775            202   12106.77
## 61776            131    1480.05
## 61777            174    1292.14
## 61778            102     144.80
## 61779             85       0.00
## 61780            249     244.55
## 61781             64     530.30
## 61784            139     429.38
## 61785            639     815.01
## 61786           1485   19474.63
## 61787            603  212015.54
## 61788            146     250.71
## 61789            175     193.71
## 61791            637     960.37
## 61792            132    6597.07
## 61793            170     309.88
## 61794            206    1194.40
## 61795           1361   77166.27
## 61796            328     448.14
## 61797            113     342.94
## 61798            144     280.56
## 61799             83       0.00
## 61800            235       0.00
## 61801            131    1535.37
## 61802            144     247.47
## 61803             33     199.68
## 61804            428    5678.46
## 61805             76     109.05
## 61806             64       0.00
## 61807             87     133.46
## 61808            208     598.84
## 61809             90     352.01
## 61810            191       0.00
## 61811            372     685.34
## 61812            461      74.68
## 61813            118      86.17
## 61814            224     430.46
## 61815             70     208.57
## 61816             79       0.00
## 61817            440      59.36
## 61818             98     736.63
## 61819            178    4534.40
## 61820            100     237.64
## 61821            105     255.06
## 61822           1000    9472.94
## 61823            113     174.18
## 61824             91     186.73
## 61825            235    1742.66
## 61826             23       0.00
## 61827            468    1273.16
## 61828              1       0.00
## 61829            439     238.75
## 61830            115       0.00
## 61831            112     164.23
## 61832            140     117.25
## 61833             97     228.73
## 61834            706    8389.43
## 61835            211    1507.30
## 61836            351    1784.02
## 61837            224    1473.68
## 61838            483    2383.51
## 61839            193     669.11
## 61840           1324  174882.94
## 61841            133     552.21
## 61842            224    1092.07
## 61843            286     510.05
## 61844             46     227.64
## 61845            106     122.28
## 61846             77       0.00
## 61847            150    7371.56
## 61848             68       0.00
## 61850            251     398.10
## 61851            293     116.13
## 61852             94     229.30
## 61853            283     499.53
## 61854            506    6133.88
## 61855             82      30.26
## 61856           1182    2937.04
## 61857            143     123.52
## 61858            189    1269.81
## 61860            108     147.10
## 61861            246     232.25
## 61862            107     507.45
## 61863            529     473.10
## 61864            178     282.17
## 61865            125     149.06
## 61866            106     225.97
## 61867             80    1069.96
## 61868            132     156.63
## 61869             37       0.00
## 61870            126     282.98
## 61871            142     166.60
## 61872            136     601.99
## 61873            136     646.43
## 61874            307     288.01
## 61875            130     292.96
## 61876             98     558.17
## 61877            133     463.09
## 61878            257     858.38
## 61879            167     688.84
## 61880            167      10.88
## 61882            290     687.61
## 61883            211    1973.99
## 61884            223     282.15
## 61885             82       0.00
## 61886            118     250.61
## 61887            118      86.17
## 61888            169    1347.26
## 61889            108     236.64
## 61890            188    2072.54
## 61891            505       0.00
## 61892            102      99.97
## 61893             26     282.78
## 61894            100     215.30
## 61895             70       0.00
## 61896            125       0.00
## 61897            743   35468.41
## 61899             20       0.00
## 61900            122     125.27
## 61901            113     567.83
## 61902             64       0.00
## 61903            129      56.60
## 61904            522     246.43
## 61905            239    1416.19
## 61906            137     113.89
## 61907            620    3413.53
## 61908            138      80.00
## 61909            265    2257.35
## 61910            151    1131.79
## 61911            136     602.53
## 61913            102     291.30
## 61914            240     832.16
## 61915            279       0.00
## 61916            370     710.18
## 61917            132     870.58
## 61918            164     179.17
## 61919            261     734.40
## 61920             87     382.46
## 61921             82       0.00
## 61922            118     161.84
## 61923           1710  182856.02
## 61924             86      81.99
## 61925             56     110.27
## 61926            102     638.98
## 61927            253     478.84
## 61928            206    2417.48
## 61929             71       0.00
## 61930            131     417.38
## 61931             70       0.00
## 61932             27     501.96
## 61933            182     693.72
## 61934            132     326.85
## 61935            426    1825.91
## 61936            144   20929.57
## 61937             25    2088.64
## 61938             67     201.07
## 61939            129     489.02
## 61940             36     464.45
## 61941            420     634.51
## 61942            157     102.05
## 61943            281     698.65
## 61944             88       0.00
## 61945             88      59.41
## 61946            130     608.10
## 61947             65       0.00
## 61948            540   10348.78
## 61949            392     608.22
## 61950            447     933.52
## 61951            291    7771.80
## 61952              2       0.00
## 61953            610    1265.22
## 61954             72       0.00
## 61955            102     146.96
## 61956            136     442.38
## 61957            136     575.53
## 61958            105     392.59
## 61959            105      45.26
## 61960            221    1056.06
## 61961             42     382.41
## 61962            101      86.17
## 61963            854   64754.72
## 61964            415     234.67
## 61965            213    1148.11
## 61966             31     142.01
## 61967            117     298.03
## 61968            117    1881.25
## 61969             86       0.00
## 61970            218     408.94
## 61971            496    3500.71
## 61972            111     237.20
## 61973             77     450.89
## 61974             87      67.53
## 61975            261     136.45
## 61976             78       0.00
## 61977            101      81.58
## 61979            255     241.78
## 61980            843   21460.31
## 61981            537      25.28
## 61982            100     101.05
## 61983            136     585.09
## 61984             68       0.00
## 61985            122     174.99
## 61986            438      64.52
## 61987            124     800.52
## 61988            137     228.01
## 61989            606   31954.14
## 61990            533     419.74
## 61991            158     161.10
## 61992            126     186.00
## 61993            220    1577.23
## 61994             69       0.00
## 61995            315     839.30
## 61996            164     315.57
## 61997            539    3601.94
## 61998            231    1235.58
## 61999            103    1532.98
## 62000            596   12867.12
## 62001           1668    2722.67
## 62002            258     314.93
## 62003            547     349.89
## 62004            245    4126.80
## 62005            169    1179.73
## 62007            530     103.37
## 62008            101     160.55
## 62009            712     986.94
## 62010             94    1071.05
## 62011             92      75.43
## 62012            186     145.80
## 62013             70     766.28
## 62014            186     413.58
## 62015            216    2123.78
## 62016           1174    5127.36
## 62017             39     209.75
## 62018            446       0.00
## 62019             68       0.00
## 62020            129     630.93
## 62021            217    1701.15
## 62022            624   35108.53
## 62023             98     143.21
## 62024           1311    2802.14
## 62025            376    1105.89
## 62026            189     514.06
## 62027             41     205.09
## 62028             77       0.00
## 62029             95     100.96
## 62030             70    1488.99
## 62031             96      74.68
## 62032            356     255.53
## 62033             87       0.00
## 62034             51     227.91
## 62035            213    1122.93
## 62036             80       0.00
## 62037            142      61.34
## 62038            314     685.31
## 62039            348    3615.42
## 62040            744       0.00
## 62041            160    1061.98
## 62042             85       0.00
## 62043            184    2781.49
## 62044             65       0.00
## 62045            191     763.20
## 62046             99     306.93
## 62047            233     670.09
## 62048            131     356.28
## 62049            129     363.04
## 62050            537   11228.44
## 62051            237     215.78
## 62052            232    2136.00
## 62053            336     436.24
## 62054            103     845.26
## 62055            530     279.96
## 62056            240    2387.74
## 62057             91     127.68
## 62058            378    1068.58
## 62059            214     143.21
## 62060            182       0.00
## 62061            102     146.69
## 62062            831   32570.06
## 62063            378     374.64
## 62064            137       0.00
## 62065            355    5551.99
## 62066           1140  141660.93
## 62067            530     103.37
## 62068            160    1492.81
## 62069            530     111.27
## 62070            126      86.17
## 62071            530       0.00
## 62072            101     286.40
## 62073            155       0.00
## 62074            155       0.00
## 62075            235     487.19
## 62076            129     355.47
## 62077            160     407.98
## 62078            189     417.26
## 62079             89     123.35
## 62080             85       0.00
## 62081            147     627.38
## 62082            159    1869.90
## 62083             60       0.00
## 62084             59       0.00
## 62085             87       0.00
## 62086            118     193.00
## 62087            182       0.00
## 62088            589     515.85
## 62089             85      68.01
## 62090            198    2859.40
## 62091             86     146.49
## 62092            364     118.32
## 62093             51      59.16
## 62094           1606    1777.70
## 62095            119      94.22
## 62096             77       0.00
## 62097            252     130.41
## 62098             97     292.02
## 62099            203     224.25
## 62100            102      58.01
## 62102             98      86.17
## 62103             68      41.38
## 62104            390    6468.52
## 62105            469   36630.13
## 62106            125     318.36
## 62107            122     176.93
## 62108            378    3606.74
## 62109            530     210.75
## 62110            104     201.38
## 62111            118     188.36
## 62112             96      74.68
## 62113            118       0.00
## 62114            149    1955.73
## 62115             62       0.00
## 62116            172    7225.55
## 62117             41     851.57
## 62118            201     997.08
## 62119             91     117.57
## 62120            427    9497.04
## 62121             81     132.17
## 62122            270     422.07
## 62123             36     321.40
## 62124             86    1219.20
## 62125           1148  119530.19
## 62126            150       0.00
## 62127            709    1135.11
## 62128            283     324.35
## 62129            349       0.00
## 62130             61       0.00
## 62131            170    3526.70
## 62132            334     619.03
## 62133            216    1235.18
## 62134            186     368.80
## 62135            133     776.05
## 62136            449    1248.40
## 62137            580     918.10
## 62138            120     348.13
## 62139            156     925.52
## 62140            238      18.17
## 62141             67     139.58
## 62142            213     254.57
## 62143            122     598.84
## 62144             73       0.00
## 62145            112     293.58
## 62146            212       0.00
## 62147             36    1784.57
## 62148            147     203.99
## 62149             86       0.00
## 62150            172     241.35
## 62151            259     346.05
## 62152            126    1460.23
## 62153           1925   43632.43
## 62155            307    1336.18
## 62156            107      46.89
## 62157             67      58.35
## 62158             80       0.00
## 62159            206     309.63
## 62160            206     325.04
## 62161            176       0.00
## 62162            365     316.92
## 62163              9      56.29
## 62164             97     523.41
## 62165            239     747.06
## 62166            108     897.96
## 62167            160     234.16
## 62168            343     371.72
## 62169            122     161.33
## 62170            122     207.83
## 62171            363    2284.75
## 62172             93     188.94
## 62173             92     159.64
## 62174             86       0.00
## 62175            781    3798.31
## 62176            138    1507.09
## 62177            174     757.07
## 62178            840    2465.07
## 62179            116    4647.48
## 62180            784     964.97
## 62181             77       0.00
## 62183            927   49030.79
## 62184            118      71.35
## 62185             59    1732.51
## 62187             85     149.67
## 62188             84       0.00
## 62189             13      52.95
## 62190            116     286.25
## 62191            268    4660.01
## 62192            172      94.68
## 62193              7       0.00
## 62194            539    5611.37
## 62195            134       0.00
## 62196            532   40106.07
## 62197             46       0.00
## 62198            112    1412.17
## 62199            111    1102.72
## 62200            347     278.33
## 62201            565   23381.91
## 62202            567    1039.07
## 62203            240   23933.78
## 62204            117     401.29
## 62205            177    1039.98
## 62206            117     251.13
## 62207            524     267.13
## 62208             87       0.00
## 62209            212     151.47
## 62210            125    1787.14
## 62211            412     654.07
## 62212            267    3919.80
## 62213            175     639.43
## 62214             91     111.48
## 62215            122     254.68
## 62216             84     177.75
## 62217            343    1358.45
## 62218            129     881.80
## 62219            215    2641.03
## 62220            435    4389.13
## 62221            230     124.85
## 62222            516    6080.86
## 62223              1       0.00
## 62224             10       0.00
## 62225            148     484.65
## 62226             99    1196.57
## 62227             86       0.00
## 62228            540    1582.80
## 62229            131      67.57
## 62230            170      40.85
## 62231             79       0.00
## 62232            914    7050.41
## 62233             21     191.37
## 62234             91     107.90
## 62235            511     405.44
## 62236            116     347.94
## 62237            177    1802.24
## 62238            178     122.22
## 62239           1088     174.32
## 62240            642    9941.81
## 62241            110     159.66
## 62242            323     352.85
## 62243             79       0.00
## 62244            258     554.07
## 62245             93       0.00
## 62247           1278  154134.81
## 62248            468     884.57
## 62249             15       0.00
## 62250            398     275.36
## 62252            401   11942.49
## 62253            287   11983.94
## 62254            318     403.33
## 62255            317     257.12
## 62256            378    1184.69
## 62257            114     439.41
## 62258            363   25042.05
## 62259            187       0.00
## 62260            173    1219.64
## 62261             63     546.56
## 62262              1       0.00
## 62263            153     208.59
## 62264            140     416.23
## 62265            165     987.52
## 62266            105      51.49
## 62267            467     160.49
## 62269            764   14434.52
## 62271            150     589.42
## 62272            261     941.95
## 62273             80       0.00
## 62274             80       0.00
## 62275            432    2023.13
## 62276            129     352.10
## 62277             85       0.00
## 62278            147     368.53
## 62279             71       0.00
## 62280            118     200.00
## 62281             70       0.00
## 62282            298    3697.37
## 62283            147     169.39
## 62284            147     241.50
## 62285            412    2595.80
## 62286            116     869.62
## 62287             53     267.14
## 62288            116      88.38
## 62289            104       0.00
## 62290            124       0.00
## 62291            405     476.28
## 62292            906   15713.53
## 62293            658     438.43
## 62295            115     118.08
## 62296            112     125.39
## 62297             74       0.00
## 62298            482     105.09
## 62299            575    1016.25
## 62300            112      69.62
## 62301            227    1668.32
## 62302             80       0.00
## 62303            113     222.16
## 62304            418     348.63
## 62305            175     721.07
## 62306            125     127.68
## 62307            165    1345.29
## 62308            141     372.17
## 62309            201     186.99
## 62310            278     874.15
## 62311            109     171.19
## 62312            129     480.18
## 62313              9       0.00
## 62314            344     125.27
## 62315            265       0.00
## 62316            149    6389.86
## 62317            234    3453.95
## 62318           1005   26932.53
## 62319            115       7.81
## 62320            115       7.81
## 62321            163       0.00
## 62322            220    7086.28
## 62323             56     124.95
## 62324             73     240.20
## 62325            285    1363.17
## 62326            405       0.00
## 62327            320    2035.52
## 62328            126     368.88
## 62329            153     147.56
## 62330            175     108.00
## 62331            104     221.49
## 62332           1887   34125.39
## 62333            103     328.25
## 62334             30     179.52
## 62335            280     627.90
## 62336            111      83.35
## 62337            115      44.93
## 62338            172     172.78
## 62339             66       0.00
## 62340            863   16639.30
## 62341            146    2224.77
## 62342            110     336.19
## 62343            110     137.20
## 62344            378     940.74
## 62346            790   24845.70
## 62347            147      28.35
## 62348            262     224.14
## 62349            175     402.83
## 62350            109    1110.31
## 62351            483    1068.74
## 62352            462       0.00
## 62353            171     717.27
## 62354            140     195.12
## 62355            110      86.17
## 62356             51      86.17
## 62358            105     415.93
## 62359             80       0.00
## 62360            733   67401.94
## 62361            876   42705.37
## 62363              2       0.00
## 62364            495      97.45
## 62365            104     139.96
## 62366            219     698.68
## 62367            454     335.40
## 62368            196     436.32
## 62369            548     330.84
## 62370            149      54.56
## 62371            140     270.04
## 62372            140     281.88
## 62373            565   10313.05
## 62375            223    1119.69
## 62376             82       0.00
## 62377            676  177443.25
## 62378            453      86.99
## 62379            142      58.01
## 62380            981   11754.62
## 62381            111     255.54
## 62382            518    2167.22
## 62383            518    1409.12
## 62384             20      75.43
## 62385            378     839.02
## 62386            362      25.00
## 62387            103    1462.86
## 62388             53     211.35
## 62390            174    1441.44
## 62391            131     304.00
## 62392            209    1753.92
## 62393            120     332.57
## 62394            248     778.00
## 62395            280    8542.02
## 62396             89      19.57
## 62397            153     651.75
## 62398            171    1906.76
## 62399             66       0.00
## 62400            288      17.62
## 62401            456    1181.83
## 62402            271    6955.52
## 62403            307     751.32
## 62404            331    1192.98
## 62405            376    2851.24
## 62406            522    2048.70
## 62407            325      86.37
## 62408            270    2177.34
## 62409            151    3736.79
## 62410            136     693.17
## 62411            104     342.85
## 62412            139     568.53
## 62413            107     207.97
## 62414            882    1193.23
## 62415             91       0.00
## 62416            176     204.37
## 62417            178    1886.13
## 62418             74       0.00
## 62419            135    1161.98
## 62420            139     151.00
## 62422            140      15.00
## 62423             98     125.39
## 62424             56     278.00
## 62425            862   56702.52
## 62426             57       0.00
## 62427            638      13.57
## 62428            224     666.70
## 62430           1470    9592.86
## 62431            157     144.66
## 62432            149     118.29
## 62433            339     127.88
## 62434            187     685.20
## 62435            127     263.44
## 62436           1195   50609.00
## 62437            161    2222.67
## 62438            439       0.00
## 62439            120    1153.31
## 62440            195      94.22
## 62441            182    1164.66
## 62442             22    5441.25
## 62443            137      87.33
## 62444            322     117.19
## 62445            161     141.88
## 62446             71       0.00
## 62447             71       0.00
## 62448            453   40831.48
## 62449            222       7.81
## 62450            929     320.71
## 62452            164    1405.05
## 62453            171    1409.76
## 62455            249       0.00
## 62456             91    1110.20
## 62457             54     195.05
## 62458            129     604.62
## 62459            189      90.77
## 62460            270     144.46
## 62461            448     221.17
## 62462            185    3535.42
## 62463             91       0.00
## 62464             74       0.00
## 62465             76     322.76
## 62466            195     549.09
## 62467            317     564.93
## 62468            132    1246.29
## 62469            467       8.25
## 62470            101      74.68
## 62471            960     487.06
## 62472            106       8.25
## 62473             47       0.00
## 62474             35      50.00
## 62475            643    1156.86
## 62476            957     384.60
## 62478             38       0.00
## 62479            287      74.45
## 62480            375    6606.94
## 62481             32       0.00
## 62482            372     884.91
## 62483            126     110.23
## 62484           1167   75339.41
## 62485            300     942.85
## 62486            120     926.33
## 62487             85      68.01
## 62488            350    1875.89
## 62489            186    1252.13
## 62490             63       0.00
## 62491             98      58.01
## 62492            127     197.84
## 62493            924   12959.23
## 62494             47       0.00
## 62495             76     194.39
## 62496            162     949.72
## 62497            133     472.59
## 62498            162     332.35
## 62499             73       0.00
## 62500            132     947.17
## 62501            340   28155.07
## 62502            387       0.00
## 62503            105      18.57
## 62504             63     761.44
## 62505            155    1373.53
## 62507            281     388.30
## 62509            255   25149.69
## 62510            105     102.98
## 62511            616    2582.80
## 62512            570     108.37
## 62513            208    1001.38
## 62514             72       0.00
## 62515            254     969.27
## 62517             96      86.17
## 62518             96     199.78
## 62519            185     366.09
## 62520             98     186.07
## 62521             95     221.92
## 62522             94     137.71
## 62523            146     975.86
## 62524             68      99.97
## 62525            498    3379.98
## 62526            120     388.41
## 62528            120      97.53
## 62529             75       0.00
## 62530            477    1265.00
## 62531             81       0.00
## 62532            315    3781.44
## 62533            574    7971.58
## 62534            400     224.45
## 62535            268      87.27
## 62536             67       0.00
## 62537             66       0.00
## 62539            197     954.22
## 62540             96      96.17
## 62541            127     844.86
## 62542             82     351.71
## 62543            918   97378.82
## 62544            223     231.48
## 62545            162    1196.83
## 62546            453    1511.40
## 62547            391     473.68
## 62548            132     349.69
## 62549            214       0.00
## 62550            129     186.73
## 62551              1       0.00
## 62552            684    1396.46
## 62553           2091   19419.47
## 62554            265    1789.78
## 62555             44      53.53
## 62556            281       0.00
## 62557            427   16445.09
## 62558            496    2105.00
## 62559            122      59.16
## 62560            233     637.84
## 62561           2275   52733.65
## 62562            704   15314.30
## 62563             66       0.00
## 62564            351      81.78
## 62565            190     707.48
## 62566            129     270.86
## 62567            354    9501.41
## 62568            352      81.78
## 62569            501     835.09
## 62570            502     322.98
## 62571             95      74.68
## 62572            440    1622.33
## 62573            406     780.55
## 62574             79       0.00
## 62575             83     150.63
## 62576             20       0.00
## 62577            142     995.76
## 62578            112     164.23
## 62579            588     327.73
## 62580            122     151.47
## 62581            312    5826.24
## 62582            108    2748.37
## 62583            202     270.00
## 62584             78       0.00
## 62585            125    1430.45
## 62586             42       0.00
## 62587            219     402.76
## 62588            156     116.81
## 62589             96    2428.08
## 62590            219    1454.40
## 62591              1       0.00
## 62592            182    1900.63
## 62593            120     686.92
## 62594             89       8.99
## 62595            539    9201.29
## 62596           2230  154662.00
## 62597            447     314.69
## 62598            287     421.69
## 62599             85       0.00
## 62600             20       0.00
## 62601             88       0.00
## 62602              9       0.00
## 62603            389    1022.01
## 62604            433     279.08
## 62605            107     108.00
## 62606             48     261.86
## 62607            237    1714.53
## 62608           1099    1578.49
## 62609            106       0.00
## 62610            253     343.25
## 62611            126     311.04
## 62612            134     992.42
## 62614            185     856.43
## 62615            153    8156.96
## 62616             96     104.12
## 62617            125     314.39
## 62618            187     146.16
## 62619            478     602.91
## 62620             96     104.38
## 62621            424    4821.63
## 62622            381     389.90
## 62623            188    1183.78
## 62624            463    4543.68
## 62625            305     641.76
## 62626            392     305.37
## 62627             90       0.00
## 62628            496     215.21
## 62629             89       0.00
## 62630            181     577.82
## 62631            104     201.10
## 62632            484       0.00
## 62633             43     157.88
## 62634             86       0.00
## 62636             77     112.46
## 62637            128     276.07
## 62638            318    4242.09
## 62639             64       0.00
## 62640            155    1183.43
## 62641            306    3554.09
## 62642            566    7057.33
## 62643            116     242.28
## 62644           1004   15845.87
## 62645            581     100.17
## 62646           1091   52652.04
## 62647            112    2293.81
## 62648             78       0.00
## 62649            126     925.06
## 62651            624     299.62
## 62652             38     137.97
## 62653            130     102.62
## 62654            210     140.00
## 62655             90       0.00
## 62656            496       0.00
## 62657            120     207.74
## 62658            199     165.28
## 62659            122     188.60
## 62660            122     105.97
## 62661            151     533.51
## 62662            800   75459.19
## 62663            126     141.80
## 62664            242     120.78
## 62665             62       0.00
## 62666            522    4900.46
## 62667             83     154.84
## 62668              1       0.00
## 62669            272     751.04
## 62671            559     899.94
## 62672             90       0.00
## 62673             89       0.00
## 62674            120     338.65
## 62675             75      95.94
## 62676            487    7098.97
## 62677             84       0.00
## 62678             86     228.68
## 62679            112     194.08
## 62680            137    5071.12
## 62681             98     183.97
## 62682           1067  239158.60
## 62683             62       0.00
## 62684            276     449.21
## 62685            267       0.00
## 62686            154     657.60
## 62687            244     758.15
## 62688            165     149.01
## 62689             44       0.00
## 62690            215     638.08
## 62691             77       0.00
## 62692            299      86.37
## 62693            112     345.17
## 62694            144     369.33
## 62695            115    1759.21
## 62696             59     889.67
## 62697            134       0.00
## 62698            150     166.89
## 62699            207     686.53
## 62700            251    3473.82
## 62701             85     549.50
## 62702             90       0.00
## 62703            140     872.65
## 62704             89       0.00
## 62705             28      45.11
## 62706            477    2636.11
## 62707            148     200.41
## 62708            147     228.57
## 62709             98      71.74
## 62710            245      15.71
## 62711            143    1263.87
## 62712            164     491.47
## 62713            384     120.00
## 62714            484   26357.26
## 62715              1       0.00
## 62716             16       0.00
## 62717            273    1767.34
## 62718            625  120606.37
## 62719           1008   53124.71
## 62720            121      10.23
## 62721            386    2070.42
## 62722            213     405.44
## 62723             31     260.00
## 62724            127    1282.96
## 62725            461     445.13
## 62726             70       0.00
## 62727             70       0.00
## 62728            211    1916.00
## 62729            106     377.59
## 62730             74       0.00
## 62731             51     263.04
## 62732            119     346.09
## 62733            183     833.01
## 62734             61     533.00
## 62735             94      24.75
## 62736            361     946.34
## 62737            116     190.45
## 62738             29       0.00
## 62739              2       0.00
## 62740            222     913.19
## 62741            368     700.35
## 62742            273     604.83
## 62743            114     252.62
## 62744            446   27077.55
## 62745            119     129.66
## 62746            434     732.80
## 62747            424    3571.30
## 62748             21       0.00
## 62749            106     250.76
## 62750            132     113.78
## 62751              7       0.00
## 62752            107     723.67
## 62753            979  168564.91
## 62754            253     328.79
## 62755            163     852.71
## 62756            418      10.23
## 62757            285     127.17
## 62758             84     318.71
## 62760             88     389.36
## 62761             79       0.00
## 62762             15       0.00
## 62763             81       0.00
## 62764            197     412.03
## 62765              2       0.00
## 62766            130     224.25
## 62767             69    1562.62
## 62768            263     292.17
## 62769             82       0.00
## 62770            173     329.64
## 62771             19     127.68
## 62772            236     218.64
## 62773            108     297.16
## 62774            269    1147.37
## 62775            177    1015.11
## 62776            160    4304.57
## 62777           1160   28458.30
## 62778             38     165.43
## 62779           1422   59340.33
## 62780            133       0.00
## 62781           1366   20253.78
## 62782            126     190.66
## 62783           2208   11165.25
## 62784            407     640.64
## 62785            233     851.00
## 62786            144     189.35
## 62787            326    2489.08
## 62788            400     129.57
## 62789            243      96.29
## 62790            108    1993.03
## 62791            487    7089.16
## 62792             99    2799.32
## 62793            253     384.83
## 62794            101      74.68
## 62795            161     282.82
## 62796             55     112.01
## 62797            420    1346.83
## 62798            428   54349.44
## 62799            107     474.59
## 62800            892    5606.60
## 62801            314    2740.89
## 62802             44      96.49
## 62803             44     208.53
## 62804            113     467.32
## 62805            176     302.38
## 62806            330     283.71
## 62807             99     261.08
## 62808            559     982.75
## 62809            393    1300.04
## 62810            107     211.08
## 62811             29     321.87
## 62812             11       0.00
## 62813            105     344.16
## 62814            732     221.05
## 62815             82       0.00
## 62816            118     272.50
## 62817            492   12278.55
## 62818            177    1030.35
## 62819             42       0.00
## 62820            250     293.02
## 62821            210    3136.27
## 62822            840    9741.42
## 62823            206    2345.36
## 62824            804   12946.64
## 62825             70       0.00
## 62826            112     128.82
## 62827            126   21626.05
## 62828            692    3807.69
## 62829             81     439.55
## 62830            266       0.00
## 62831             91       0.00
## 62832            684   25088.06
## 62833            725    1416.93
## 62834             80       0.00
## 62835            372       0.00
## 62836            102     198.92
## 62837             57       0.00
## 62838            115     143.06
## 62839            143      93.61
## 62840            115    1093.79
## 62841            115    1211.16
## 62842            144    1446.56
## 62843           1514   14601.90
## 62844            580     138.38
## 62845             11       0.00
## 62846            349     343.98
## 62847            140     102.74
## 62848            140     119.69
## 62849            107     206.12
## 62850            108     109.62
## 62851            474    4359.22
## 62852            594     228.96
## 62853            189    1547.09
## 62854            104     261.43
## 62855            625   23360.42
## 62856            421     192.92
## 62857            121      87.96
## 62858             97      51.49
## 62859            237     474.23
## 62860            148    2172.65
## 62861            334     155.24
## 62862            101     119.26
## 62863            101     170.43
## 62864            101     127.49
## 62865            113    1542.05
## 62866            140     554.41
## 62867            221    4485.22
## 62868            549   39348.12
## 62869            111      95.37
## 62870            134     515.47
## 62871             80     174.30
## 62872            326    1189.34
## 62873             77       0.00
## 62874            177      94.22
## 62875             44      81.18
## 62876             26     416.04
## 62877            262     822.88
## 62878            345     626.73
## 62879             95    2095.79
## 62880            172       0.00
## 62881            112    2162.47
## 62882            172    1826.81
## 62883            352    1306.43
## 62884            133     244.14
## 62885             10       0.00
## 62886             63    4043.00
## 62887            399    1482.17
## 62888            137     165.47
## 62889            136     118.60
## 62890            473     321.78
## 62891            100     186.96
## 62892            861     600.00
## 62893           1432   10465.03
## 62894            100     238.36
## 62895             69       0.00
## 62896            186    3310.43
## 62897            274     526.30
## 62898            107     445.51
## 62899            107      98.92
## 62900            400     418.77
## 62901            115       0.00
## 62902            938   30960.30
## 62903            505   12730.61
## 62904            113     120.78
## 62905             62       0.00
## 62906            101     104.68
## 62907             38     258.56
## 62908            199    2599.45
## 62909            227    1491.77
## 62910            327     608.16
## 62911            164   13766.40
## 62912            355     183.69
## 62913            710     734.60
## 62914            111      44.93
## 62915            123     561.28
## 62916            215    1695.00
## 62917            126      45.26
## 62918             13       0.00
## 62919            254    3355.42
## 62920            148      51.16
## 62921            399    1105.77
## 62922            698   48965.11
## 62923            491   40655.73
## 62924            105     177.16
## 62925            108    1391.88
## 62926            586   21989.03
## 62927             86       0.00
## 62928            494    1325.80
## 62929             70       0.00
## 62930            106      41.99
## 62931            197    1092.96
## 62932            211     604.29
## 62933            102     159.18
## 62934             16       0.00
## 62935            537     170.13
## 62936            108     385.35
## 62937           1126   34524.03
## 62938             47     332.00
## 62939            197     847.74
## 62940            166     418.03
## 62941           1111   46364.71
## 62943            211     212.62
## 62944            104     110.44
## 62945            207     199.07
## 62946            232    4158.09
## 62947             99      74.68
## 62948             98     104.54
## 62949            596    3500.71
## 62950             63       0.00
## 62951             94     164.02
## 62952            819   30302.47
## 62953            334    1869.65
## 62954             72       0.00
## 62955           1094    4644.40
## 62956            119     163.81
## 62957             78       0.00
## 62958            546     823.32
## 62959             97     137.71
## 62960            325   23647.38
## 62961             63       0.00
## 62962             40      40.59
## 62963             99     270.85
## 62964            474    2390.60
## 62965            219     674.94
## 62966            760   54289.42
## 62967            145    3012.80
## 62968            194     253.88
## 62969            191   23257.78
## 62971            289     410.09
## 62972             74       0.00
## 62973            105     280.18
## 62974            134     308.07
## 62975             62     210.91
## 62977            135     632.77
## 62978             91     205.88
## 62979            106      79.41
## 62980           1022   10654.58
## 62981             42       0.00
## 62982            201     739.02
## 62983            146     229.84
## 62984            110    1148.67
## 62985            386     206.69
## 62986           1022   49486.33
## 62987            266     316.99
## 62988             32       0.00
## 62989            161     277.06
## 62990            138     127.08
## 62992            256    3099.37
## 62993            174    3473.40
## 62994            164     350.54
## 62995            255     565.81
## 62996            127     238.28
## 62997             49       0.00
## 62998             53     173.81
## 62999            122     337.28
## 63001             87       0.00
## 63002            261     521.24
## 63003            128     630.84
## 63004            159     215.76
## 63005            352     440.12
## 63006             24    4007.58
## 63007             93     335.52
## 63008             92     118.19
## 63009             78       0.00
## 63010             62       0.00
## 63011            147     109.60
## 63012            213    1197.64
## 63013            264     783.30
## 63015            225    2738.72
## 63016             98     166.78
## 63017            127      85.75
## 63018            127     403.74
## 63019            104     251.88
## 63020            194     590.77
## 63021            397    1148.21
## 63022            129      76.98
## 63023            112      32.70
## 63024            252     122.76
## 63025            189     244.96
## 63026            230     110.28
## 63027             86       0.00
## 63028            111    1248.08
## 63029            207     264.61
## 63030            586   18012.83
## 63031            456       0.00
## 63032            344     306.87
## 63034            100      57.09
## 63035            101     179.00
## 63036            145     153.68
## 63038             98     281.00
## 63039             93     151.64
## 63040             61       0.00
## 63041            354    1783.26
## 63042             38     672.89
## 63043             38       0.00
## 63044              6       0.00
## 63045            960  135508.22
## 63046            545     231.46
## 63047            417    8948.84
## 63048            114     223.13
## 63049            120     375.77
## 63050            109     166.19
## 63051             90       0.00
## 63052            192    5204.91
## 63053            130      35.69
## 63054            176     177.43
## 63055            107     128.14
## 63056            191       0.00
## 63057            384     576.21
## 63058            252    9238.41
## 63059            129     323.75
## 63060            543   14282.02
## 63061            195     123.99
## 63062            326    9694.95
## 63063            351      91.06
## 63064             94      52.81
## 63065            107    2280.32
## 63066             70       0.00
## 63067            372     150.94
## 63068            134     192.85
## 63069             99     238.09
## 63070            129     266.79
## 63071            873    2169.82
## 63072            121     262.70
## 63073             37     188.78
## 63074            106    1063.19
## 63075            153     838.73
## 63076             87       0.00
## 63077            119     925.69
## 63078             96     614.77
## 63079             87      51.49
## 63080             94     338.93
## 63081            127     184.73
## 63082            369     531.78
## 63083            403    1113.76
## 63084              6       0.00
## 63085            133     362.09
## 63086             68     143.42
## 63087            128     888.11
## 63088             35     268.53
## 63089            470     316.84
## 63090           1142   14688.94
## 63091            787    4389.45
## 63092            393   12915.23
## 63093            241     782.43
## 63094             91      87.60
## 63095            432     138.06
## 63096           1427   47520.89
## 63097             86     267.14
## 63098            949   31644.53
## 63100             85       0.00
## 63101             85       0.00
## 63102            259    3124.47
## 63103             79       0.00
## 63104            184    1051.64
## 63105            289     360.64
## 63106            259     188.08
## 63107            113     258.57
## 63108             53     212.71
## 63109            184     419.99
## 63110            908   11851.80
## 63111            187    1310.30
## 63112            123     367.38
## 63113            120    1286.51
## 63114            127    4818.81
## 63115             94     189.79
## 63116            792    5962.48
## 63117            153     158.21
## 63119            167     146.94
## 63120            385    1204.51
## 63121             97     131.37
## 63122             74      64.68
## 63123            159     171.17
## 63124            208    9672.08
## 63125            372     645.72
## 63126            121     359.96
## 63127            308    1653.46
## 63128            116     633.70
## 63129            154     113.83
## 63130            113     876.61
## 63131            149    5298.79
## 63132            153    1333.01
## 63133            120      39.57
## 63134             64    1188.87
## 63135            116     154.99
## 63136             90       0.00
## 63137            415     866.13
## 63138            122     111.00
## 63139            133    1787.86
## 63140            225     332.73
## 63141             85       0.00
## 63142             97     136.35
## 63143            200    3585.27
## 63144            184     695.29
## 63145              3       0.00
## 63146             84     154.17
## 63147            893   34468.21
## 63148            211     275.17
## 63149            164     373.41
## 63150            119     117.09
## 63151            353    1953.87
## 63152            120     304.04
## 63153            548       0.00
## 63154             23       0.00
## 63155            233     143.66
## 63156            174     166.00
## 63157             71     419.42
## 63158            378    2043.40
## 63159            556       0.00
## 63160            120     477.84
## 63161            622   11958.50
## 63162            316    2500.00
## 63163            145     881.16
## 63164            590    1855.69
## 63165            114     858.45
## 63166            755   12786.94
## 63167            100      55.07
## 63168            185    1353.59
## 63169             95     203.01
## 63170            659    7278.10
## 63171            428     815.58
## 63172             93       0.00
## 63173             92      61.65
## 63174            182     995.03
## 63175             77     414.06
## 63176             59     124.17
## 63177            578   33886.30
## 63178            119     210.09
## 63179            270       0.00
## 63180            312   21717.95
## 63181            372     426.56
## 63182            323     442.37
## 63183             35      56.84
## 63184            209     792.07
## 63185            478     228.02
## 63186            170     624.50
## 63187            143     476.74
## 63188            108     127.68
## 63190              5       0.00
## 63191            154     444.01
## 63192             93     123.52
## 63193             64       0.00
## 63194            117     295.79
## 63195            146     589.71
## 63196            555     272.47
## 63197             93     251.34
## 63198            100     296.78
## 63199            351    2947.87
## 63200           1401  240936.35
## 63201            147     115.35
## 63202            221    1206.75
## 63203              9       0.00
## 63204             84    3944.03
## 63205            807   46080.78
## 63206            873   34839.40
## 63207            696    8647.62
## 63208            454    1731.51
## 63209            150     109.42
## 63210            212    2101.32
## 63211            120     337.38
## 63212            228      57.63
## 63213             93     279.51
## 63214            329     390.40
## 63215             55       0.00
## 63216            181     234.35
## 63217            984   69729.27
## 63218            211     862.75
## 63219            180     266.17
## 63220            116    2092.73
## 63221            375    2463.27
## 63222            189    8641.10
## 63223             51       0.00
## 63224             87      94.64
## 63225             85       0.00
## 63226             49    1361.93
## 63228            873     247.30
## 63229            702   51412.72
## 63231             19       0.00
## 63232              1       0.00
## 63233            112     338.62
## 63234            335     309.11
## 63235             86     121.37
## 63236            703    1546.36
## 63237            153      64.88
## 63238            316    6415.63
## 63239            161     845.80
## 63240             89       0.00
## 63241            579     551.25
## 63242            174     607.48
## 63243             73      59.16
## 63244            107     416.78
## 63245             77       0.00
## 63246            136    1274.48
## 63247            145     504.75
## 63248            259     363.37
## 63249             39     210.05
## 63250            110     103.37
## 63251            807    4277.77
## 63252             87     146.11
## 63254            600   23543.40
## 63255            119    1764.37
## 63256             84       0.00
## 63257             84       0.00
## 63258            145     150.03
## 63259            101     200.18
## 63260            169    1189.97
## 63261            204    1381.96
## 63262            302    3354.94
## 63263             64       0.00
## 63264            186     264.68
## 63265            131     135.60
## 63266            678    1146.39
## 63267             43       0.00
## 63268            106     599.43
## 63270            145     626.62
## 63271            115     910.85
## 63272            115     169.80
## 63273            195    2469.18
## 63274            139    2935.07
## 63275             85      31.24
## 63276           1007   22174.99
## 63277            332    1671.90
## 63278             53      43.49
## 63279             64       0.00
## 63280             84      61.70
## 63281            683    7794.65
## 63282             84       0.00
## 63283             46     237.02
## 63284            391     582.49
## 63285            328    2155.89
## 63286            139    1628.18
## 63288            106     576.73
## 63289             98    2101.50
## 63290            291    1364.20
## 63291              4       0.00
## 63292            327     329.76
## 63293            115      89.91
## 63294            428    2307.18
## 63295             34     114.29
## 63296             66       0.00
## 63297            145    1386.03
## 63298            105       0.00
## 63299            216     137.40
## 63300            280    5089.51
## 63301            308    2166.05
## 63302            257     215.72
## 63303            328     515.15
## 63304             85       0.00
## 63305            203     442.42
## 63306            169     508.34
## 63307            223       0.00
## 63308             39       0.00
## 63309            111     105.48
## 63310             76       0.00
## 63311            125     151.74
## 63312            113     146.87
## 63313            112     732.82
## 63314            387     302.98
## 63316             79       0.00
## 63317            202    5534.89
## 63318             24     175.09
## 63319             32       0.00
## 63320             41      64.68
## 63321            174       0.00
## 63323             44     125.27
## 63324            263    2829.89
## 63325            108      99.97
## 63326            129      74.68
## 63327            119     193.60
## 63328             78       0.00
## 63329            117     509.28
## 63330            419     271.14
## 63331            126     302.09
## 63332            156     330.93
## 63333            131     266.14
## 63334            145     178.63
## 63335            113     196.94
## 63336            454    3249.24
## 63337           1074    1302.59
## 63338           1005    7697.85
## 63339            227    1254.02
## 63340             80      59.16
## 63341            109      95.37
## 63342           2247   60853.36
## 63343            406     519.12
## 63344             34       0.00
## 63345            310      71.91
## 63346            112     473.08
## 63347            328   13853.87
## 63348            748    3224.97
## 63349           1759   76049.61
## 63350            842    2325.67
## 63351            106     339.65
## 63352             78       0.00
## 63353            165     189.39
## 63354            123    1361.71
## 63355            323    4247.20
## 63356            265    1030.43
## 63357            206    1817.34
## 63358            104     923.60
## 63359            417      86.17
## 63360             86       0.00
## 63361            301     575.70
## 63362             92     265.71
## 63363            206     666.10
## 63364             44     575.00
## 63365            537     883.69
## 63366            106       7.80
## 63367            372      65.05
## 63368            392    2320.71
## 63369            413    7533.14
## 63370            162     714.34
## 63371            162    1079.11
## 63372            301     700.07
## 63373              1       0.00
## 63374            264    1766.18
## 63375            442     300.09
## 63376            505   21070.48
## 63377            152     293.98
## 63378             77       0.00
## 63379            674     478.08
## 63380            525    9915.09
## 63381            357    2954.18
## 63382             78       0.00
## 63383            107     113.82
## 63384            102     234.97
## 63385            178    1299.36
## 63386            105     110.73
## 63387            105     221.29
## 63388            159       0.00
## 63389            322    4879.57
## 63390            106     177.05
## 63391            123     117.60
## 63392            123     121.66
## 63393            569     346.65
## 63394             31     272.49
## 63395             72       0.00
## 63396            192     753.68
## 63397            131     449.60
## 63398            145     143.49
## 63399            254    1129.13
## 63400            108     192.84
## 63401            104       0.00
## 63402            126     416.53
## 63403            131     116.13
## 63404            317     720.43
## 63405            100     329.98
## 63406            406     575.49
## 63407             62       0.00
## 63408            153    1187.18
## 63409             94     137.66
## 63410            458     334.07
## 63411             92     166.15
## 63412            312   26208.96
## 63413            251     725.83
## 63414            202    2043.19
## 63415             76       0.00
## 63416            133    3460.24
## 63417            102     467.33
## 63418            190    1805.13
## 63419            124     135.73
## 63420             38       0.00
## 63421            465     977.26
## 63422            102      95.37
## 63423             73       0.00
## 63424             11       0.00
## 63425             18     316.86
## 63426             73       0.00
## 63427             56    5102.34
## 63429            105     129.68
## 63430             64       0.00
## 63431            161    4322.79
## 63432              1       0.00
## 63433            193     355.96
## 63434             51     158.42
## 63436            140     355.39
## 63437            669    6729.49
## 63438            317    5449.83
## 63439             88       0.00
## 63440             36       0.00
## 63441             24       0.00
## 63443            733    5110.83
## 63444            145     223.18
## 63445            253     206.72
## 63446             71       0.00
## 63447             14       0.00
## 63448            334     992.32
## 63449            128      76.98
## 63450             73       0.00
## 63451            190     475.52
## 63452            194     366.95
## 63453             72       0.00
## 63454            185     305.01
## 63455            288    6180.95
## 63456            172    1589.60
## 63458            145     168.16
## 63459             83     127.68
## 63460            140     143.21
## 63461             85     297.75
## 63462            272     158.16
## 63463            782   15541.88
## 63464            343       0.00
## 63465             63    2028.02
## 63466             93     258.53
## 63467            161     279.16
## 63468            100     358.11
## 63469             71       0.00
## 63470             71       0.00
## 63471            386    2028.82
## 63472            188     203.24
## 63473             69       0.00
## 63474            345    1549.80
## 63475            162     308.89
## 63476            102      96.29
## 63477            106     618.46
## 63478             95      10.20
## 63479             77     332.80
## 63480            335     236.06
## 63481            184    1171.07
## 63482            148     616.91
## 63483            278      17.30
## 63484            149     835.55
## 63485            200     503.74
## 63486            364    3199.56
## 63487            451     996.72
## 63488            157     954.30
## 63489             27     241.36
## 63490           1389   55609.55
## 63491            439       0.00
## 63492             28       0.00
## 63493            131     262.21
## 63494             86    4522.64
## 63495             66       0.00
## 63496            125    1066.90
## 63497             58     484.01
## 63498            311   16693.25
## 63499            110      88.88
## 63501            195     167.07
## 63502             91     340.98
## 63503            842    3506.55
## 63504            133    1322.13
## 63505            228    1184.97
## 63506             77       0.00
## 63508             77       0.00
## 63509             64     443.02
## 63510            169     549.93
## 63511             92      40.59
## 63512            217    3137.30
## 63513            441    5311.70
## 63515            210     498.89
## 63516            117     890.48
## 63517            156    1079.77
## 63519            148     522.23
## 63520            308    2788.29
## 63521            171     446.14
## 63522            861   72444.42
## 63523             90    2986.73
## 63524            524    1351.87
## 63525             64       0.00
## 63526            124      71.35
## 63527            727    2029.77
## 63528             44      78.23
## 63529             65       0.00
## 63530            203     138.02
## 63531            443     924.43
## 63532            866       0.00
## 63533            144    1658.36
## 63534             88     122.25
## 63535            451    3630.15
## 63536             18     867.18
## 63537             93     100.17
## 63538            220       0.00
## 63539            340   12399.89
## 63540            228    4709.32
## 63541             31      64.68
## 63542            203    2401.57
## 63543             69       0.00
## 63544            556   14055.40
## 63545             39      10.00
## 63546            485    1673.34
## 63547            115     217.59
## 63548            321       0.00
## 63550             85      86.17
## 63551            328     397.99
## 63552            366   18746.28
## 63553             93       4.07
## 63554             49       0.00
## 63555            197     812.45
## 63556            306    1009.74
## 63557             91      95.37
## 63558            265     703.60
## 63559            198     855.05
## 63560            343     143.09
## 63561            152     380.45
## 63562            396   37426.44
## 63563            224     934.18
## 63564             48       0.00
## 63565            498    2395.88
## 63566            242     636.08
## 63567            139    1452.15
## 63568            343    1209.38
## 63569            110      95.37
## 63570            392   16206.30
## 63571            173    1911.31
## 63572            168     179.17
## 63573            127     138.86
## 63574            453     197.02
## 63575             81       0.00
## 63576            239     145.00
## 63577            194     296.47
## 63578            699       0.00
## 63579            151     119.51
## 63580            116     614.77
## 63581            176     428.38
## 63582            401      10.00
## 63583            122     143.38
## 63584           2372   80396.40
## 63585             65    2169.95
## 63586             94     453.67
## 63587            347    2374.73
## 63588            796    1357.31
## 63589            116     236.65
## 63590            495    2565.89
## 63591            115       0.00
## 63592            131    3653.46
## 63593            700    2298.37
## 63594             78       0.00
## 63595             81       0.00
## 63596            211     334.51
## 63597             95    1127.71
## 63598             48     498.57
## 63599            437     835.59
## 63600           2276  151874.60
## 63601            275     417.34
## 63602            428      74.68
## 63603             37      63.35
## 63604            111      85.85
## 63605            113     248.29
## 63606            165    1170.14
## 63607            312    2625.55
## 63609            393    3052.94
## 63610             53     316.14
## 63611            155     684.83
## 63612            563      13.22
## 63613            103       0.00
## 63614             72       0.00
## 63615            172     688.59
## 63616            110      46.37
## 63617           1030   13672.53
## 63618            260    3081.73
## 63619            310     219.42
## 63620            108     384.80
## 63621            168     257.81
## 63622            112     117.12
## 63623            133    1132.23
## 63624            192      99.97
## 63625            342     123.88
## 63626            849   28989.03
## 63627            226    1481.32
## 63628             86     224.47
## 63629             27       0.00
## 63630            120     205.13
## 63631            147     202.25
## 63632            143     114.20
## 63633            139       0.00
## 63634            461       0.00
## 63635             83      64.68
## 63636            146      95.37
## 63637            500       0.00
## 63638            112     616.34
## 63639             83     537.55
## 63640             86       0.00
## 63641            391     185.93
## 63642             12     122.66
## 63643            232     560.95
## 63644            103      54.04
## 63645             72       0.00
## 63646            217     215.87
## 63647            173     837.41
## 63649            176     207.19
## 63650            145     206.44
## 63651            206     765.43
## 63652            270    8760.87
## 63653            140     362.40
## 63654            142      74.68
## 63655           1390    8590.62
## 63656            108      99.97
## 63657            358     253.55
## 63658            110      75.04
## 63659            215      81.58
## 63660            200     118.89
## 63661            109     272.64
## 63662            169     308.31
## 63663            111     144.81
## 63664            115     542.69
## 63665            116      74.68
## 63666            146       0.00
## 63668             97     172.91
## 63669            135      95.90
## 63670            117     384.92
## 63671            146     274.00
## 63672            190     606.90
## 63673             48     375.34
## 63674            241   27223.65
## 63675            270     177.92
## 63676            104     108.16
## 63677            173       0.00
## 63678            712     216.61
## 63679            180    2407.75
## 63680             95     533.43
## 63681             33     250.62
## 63682            305   34217.43
## 63683           1425  124008.82
## 63684              5       0.00
## 63685            410     375.05
## 63686            103       0.00
## 63687            160       0.00
## 63688            456     206.88
## 63689            370      59.16
## 63690             43     239.99
## 63691             55     197.46
## 63692             99     145.34
## 63693            202    2278.14
## 63694            193      83.36
## 63696             77       0.00
## 63697             73      97.58
## 63698            111     299.46
## 63699            115       5.36
## 63700            142     491.95
## 63701            132     392.69
## 63702            230       0.00
## 63703            109      74.68
## 63704            105     957.75
## 63705            103     279.58
## 63706            329    1613.01
## 63707            193     590.94
## 63708            213    2288.14
## 63709            114       0.00
## 63710            287     388.77
## 63711            518    1827.91
## 63712             41       0.00
## 63713            117     623.11
## 63714            172     517.43
## 63715            673   36022.59
## 63717            177    3957.96
## 63718            195     353.87
## 63719             98     152.97
## 63722            318     935.31
## 63723           1526   21066.49
## 63724            319   27298.82
## 63725            136      97.09
## 63726            640    1272.25
## 63727            179       0.00
## 63728            114       0.00
## 63729            127     208.33
## 63730            560     269.15
## 63732            120    2889.23
## 63733            490     632.80
## 63734            230    2107.98
## 63735            120     265.94
## 63736           1578   36332.19
## 63737            121     451.89
## 63738             84    1974.26
## 63739            106     576.48
## 63740             88       0.00
## 63741             82     229.54
## 63742            112       0.00
## 63743            134       4.96
## 63744              4       0.00
## 63745            108      90.27
## 63746            108     137.66
## 63747            169     675.47
## 63748             63      66.68
## 63749            121      97.05
## 63750             80       0.00
## 63751             79     298.50
## 63753             25       0.00
## 63754            946    5983.88
## 63755            134     223.07
## 63756            133     566.92
## 63757            310   11651.21
## 63758            133     129.85
## 63759            103     125.27
## 63760            124      99.97
## 63761             37      90.97
## 63762            370     254.08
## 63764             91      86.17
## 63765            331     856.04
## 63766             71       0.00
## 63767             71       0.00
## 63768            223    2734.11
## 63769            708    2933.79
## 63770            216     264.71
## 63771            102     151.22
## 63772            102      82.93
## 63773            103      74.68
## 63774            356    4817.16
## 63775            105     563.25
## 63776            236     427.90
## 63777            108     135.81
## 63778            108     270.19
## 63779           1632   24944.73
## 63780            508   37375.97
## 63781            108     260.38
## 63782            109       7.80
## 63783             76     261.62
## 63784            284       0.00
## 63785            165    1453.05
## 63786             54     295.01
## 63787            440   14284.32
## 63788             63       0.00
## 63789             89       0.00
## 63790            108     126.16
## 63791            261     220.99
## 63792            333    3558.21
## 63793            138     227.18
## 63795            857    4560.00
## 63796            303    1652.26
## 63797            379    4167.27
## 63798            135       0.00
## 63799            288     228.74
## 63800            167    3145.09
## 63801             58     376.14
## 63802            134     167.41
## 63803            132     198.44
## 63804            545  106155.87
## 63805            407     222.11
## 63806            187    6034.01
## 63807            150     182.59
## 63808            133       0.00
## 63809             35       0.00
## 63810            312    4379.93
## 63811            226     487.64
## 63812            213    1198.83
## 63813            281   23945.43
## 63814            477     829.85
## 63815            114     230.86
## 63816            240      25.79
## 63817             89       0.00
## 63818            651   46686.03
## 63819             73       0.00
## 63820            174     792.19
## 63821            337     142.12
## 63822             86       0.00
## 63823            109     267.49
## 63825            166     739.44
## 63826            164     599.68
## 63828            152    2921.27
## 63829              1       0.00
## 63830             80       0.00
## 63831             86       0.00
## 63832            502    1277.49
## 63833            193     222.87
## 63834            107     191.96
## 63835             86     388.72
## 63836            356     852.71
## 63837            420     400.02
## 63838             11       0.00
## 63839             85       0.00
## 63840            337     639.27
## 63841            103      78.20
## 63842            256     289.54
## 63843            393    1107.30
## 63844            252    1199.68
## 63845            121      97.09
## 63846            155     276.02
## 63847             94     174.87
## 63848            367   22533.98
## 63849             58     302.08
## 63850             84       0.00
## 63851            314     210.96
## 63852            511    1618.34
## 63853            131    1061.15
## 63854            192     716.72
## 63855             70       0.00
## 63856            116     300.48
## 63857            224     414.96
## 63858             71       0.00
## 63859            292      76.98
## 63860             88    1432.84
## 63861            103     141.24
## 63862            120     268.76
## 63863             75     211.27
## 63864            102     210.76
## 63865            488     259.96
## 63866            390    6107.31
## 63867            641   11186.79
## 63868            111      92.49
## 63869             83      93.00
## 63870             64       0.00
## 63871             75       0.00
## 63872             24       0.00
## 63873            250    2844.27
## 63874            102      86.17
## 63875            132     129.24
## 63876             71       0.00
## 63877            132      17.77
## 63878            306     155.22
## 63879            213    3113.13
## 63880            101     175.99
## 63881            162     175.19
## 63882            182    1541.47
## 63883            303   17713.35
## 63884            134    9272.83
## 63885             93       0.00
## 63886             84     246.28
## 63887            123       0.00
## 63888             80     229.94
## 63889            112      75.45
## 63890             22       0.00
## 63891            185     186.91
## 63892            101     145.41
## 63893            172     894.36
## 63894            462   11034.81
## 63895             95     460.75
## 63896           1030  218015.78
## 63897            185    5844.20
## 63898            182     264.47
## 63899            178    2566.01
## 63900            178     156.35
## 63901            155     137.66
## 63902             93     127.66
## 63903             98     133.32
## 63904             87       0.00
## 63905            460     260.83
## 63906             68       0.00
## 63907             63       0.00
## 63908            178     103.53
## 63909             10       0.00
## 63910            572     112.72
## 63911             63     284.68
## 63912            160    2865.05
## 63913             94     189.06
## 63914            201    1670.14
## 63915            124    1672.18
## 63916            245     798.77
## 63917            126     346.25
## 63918            636     128.90
## 63919            370    1654.67
## 63920            363    1796.89
## 63921            286    3411.02
## 63923             69       0.00
## 63924            130       0.00
## 63925            311   16941.79
## 63926            106       0.00
## 63927            178     173.96
## 63928            327    2312.38
## 63929            239    8154.69
## 63930            182     763.87
## 63931            459    4888.26
## 63932            152    3341.17
## 63933            622     750.11
## 63934            265    1928.36
## 63935           1660   79189.27
## 63936             88       0.00
## 63937            670  116866.02
## 63938            457   23598.92
## 63939            121     268.07
## 63940            452     559.37
## 63941            281    4721.65
## 63942            110    2106.31
## 63943            253    2475.45
## 63944            294    2019.64
## 63945             61       0.00
## 63946             80       0.00
## 63947            273    2006.81
## 63949            119     143.25
## 63950            211     192.47
## 63951            150     357.00
## 63952            443    1164.83
## 63953            756   52452.35
## 63954             33     600.85
## 63955            182    2411.63
## 63956            528   31156.63
## 63957            363       0.00
## 63958             89       7.81
## 63959            147     521.76
## 63960            108     152.50
## 63961             41       0.00
## 63962             31       0.00
## 63963             72       0.00
## 63964            107     951.44
## 63965            150     232.85
## 63966            112    4916.22
## 63967            526     218.80
## 63968             88     171.17
## 63969            156     445.53
## 63970            500    3138.15
## 63971            117     428.41
## 63972            292    1577.13
## 63973            151    1481.40
## 63974            205      96.29
## 63976            226    2178.90
## 63977           1757   22394.75
## 63978            111     383.52
## 63979            110    1067.29
## 63980             13       0.00
## 63981             36     291.23
## 63982            141     401.49
## 63983            105     388.85
## 63984             92      55.58
## 63985             63     125.00
## 63986            389     102.17
## 63987            364    2413.08
## 63988            162     147.10
## 63989             93      95.94
## 63990            129     554.68
## 63991            201     110.18
## 63992            390     557.41
## 63994             80     192.93
## 63995            258   11785.64
## 63996            111     396.29
## 63997            208     246.13
## 63998           1331   75265.36
## 63999            178     619.62
## 64000             87      51.49
## 64001             87       0.00
## 64002            110    2686.70
## 64003            157    1187.00
## 64004             87      44.93
## 64005             60       0.00
## 64006            421     968.44
## 64007            454   35970.91
## 64008            258       0.00
## 64009             33       0.00
## 64010            834    1678.00
## 64011            283   19494.92
## 64013            711   13274.65
## 64014            111       6.24
## 64015           1569    5970.65
## 64016            110    1047.06
## 64017            110     113.07
## 64019            202     615.54
## 64020            282    5579.53
## 64021             48       0.00
## 64022            147     101.05
## 64023            915     303.10
## 64024             68       0.00
## 64026            193       0.00
## 64027            287     224.45
## 64028             91    1262.62
## 64030            721    7023.02
## 64031            328   19779.48
## 64032            397   12801.50
## 64033            337     565.66
## 64034             80       0.00
## 64035            413     556.64
## 64036            491   37737.62
## 64037             63      86.98
## 64038             27    2182.47
## 64039            735   31417.79
## 64041             23       0.00
## 64042            111     297.45
## 64044            258    2319.66
## 64045            216     212.85
## 64046             57    2426.14
## 64047            365     906.37
## 64048            174     786.97
## 64049            236     321.98
## 64050             86     123.26
## 64052            658   69244.84
## 64053             62       0.00
## 64054             74       0.00
## 64055            144     195.98
## 64056             98     589.15
## 64057            111     331.31
## 64058             81       0.00
## 64059            223      54.76
## 64060            111      94.68
## 64061            644    2963.09
## 64062             61       0.00
## 64063             75       0.00
## 64064             98     474.27
## 64065            228     802.72
## 64066            828   96430.70
## 64067            104      40.23
## 64068            130     113.37
## 64069             74       0.00
## 64070            143     149.55
## 64071            304    2205.48
## 64072            210     159.86
## 64073            120     140.10
## 64074           1460     348.20
## 64075            637     429.13
## 64076            138    1711.28
## 64077            210     235.72
## 64078             81       0.00
## 64079           1263    1651.09
## 64080             73       0.00
## 64081            487       0.00
## 64082             76       0.00
## 64083              8       0.00
## 64084            618    3688.95
## 64085            313     161.44
## 64086             97      52.69
## 64087            316    4764.08
## 64088            203     345.92
## 64089           1043   17378.56
## 64090             38       0.00
## 64091             99     161.92
## 64092            439     677.20
## 64093            102     307.72
## 64094            510     503.80
## 64095            240      71.55
## 64096            420      17.77
## 64097           1142   11559.41
## 64098            111     457.88
## 64099             97    1642.72
## 64100            237     531.34
## 64101            124     355.96
## 64102             93     113.50
## 64103            425     444.20
## 64104            103     123.99
## 64105            227    1036.74
## 64106             81       0.00
## 64107            286    2787.28
## 64108            106      52.73
## 64109            561   38253.80
## 64110             96     244.27
## 64111            680   12359.00
## 64112             90     571.73
## 64113            116     365.23
## 64114            217     175.38
## 64115             91     630.46
## 64116            310    1237.14
## 64117            176    1521.21
## 64118            525    2674.86
## 64119            192     130.18
## 64120            171    1935.61
## 64121            103     306.75
## 64122            164     311.69
## 64123            106     363.57
## 64124            125     515.17
## 64125            105      58.01
## 64126            642    6949.77
## 64127            493   26794.22
## 64128            415   24439.02
## 64129            247    4928.09
## 64130            639     839.84
## 64131            854    8917.63
## 64132            178     155.88
## 64133            466    4957.85
## 64134            197     597.92
## 64135            934    7694.54
## 64136            269     703.65
## 64137             77     364.94
## 64138            109     126.54
## 64140            505    3114.77
## 64141            104       6.60
## 64142             74     137.95
## 64143            137     762.70
## 64144            150     524.76
## 64146            107     235.18
## 64147            231    1617.73
## 64148            789   69790.16
## 64149            136     170.23
## 64150            105      43.19
## 64151            127      54.56
## 64152            167    1375.66
## 64153            289       0.00
## 64154            531     193.56
## 64155             38       0.00
## 64157            198     955.30
## 64158            128     403.68
## 64160            101     478.29
## 64162             66       0.00
## 64163             89     128.60
## 64164            475      97.48
## 64165             77       0.00
## 64167             72       0.00
## 64168             96     125.27
## 64169            124     869.72
## 64170            763    3710.58
## 64171            238    2390.04
## 64172            166    1736.84
## 64173            280    1990.37
## 64174            105     452.48
## 64175            461   23722.54
## 64176            388     132.37
## 64177            259       0.00
## 64178             85       0.00
## 64179            741     120.93
## 64180            103    1439.32
## 64181            406   18488.88
## 64182            130     438.55
## 64183             69       8.25
## 64184             59       0.00
## 64185             78       0.00
## 64186             31       0.00
## 64187            153     345.17
## 64188            277    1205.28
## 64189            711    4646.30
## 64190           1486  117262.31
## 64191             98     388.22
## 64192             69       0.00
## 64193             73       0.00
## 64194              1       0.00
## 64195            117     209.28
## 64196            150    1614.72
## 64197            113     110.65
## 64198            363     220.53
## 64199             27     130.87
## 64200             37       0.00
## 64201            258     749.27
## 64202            130     154.25
## 64203            471     170.17
## 64204            257      51.49
## 64205             96     328.61
## 64206            100     294.10
## 64207            116     314.28
## 64208            102     158.62
## 64209            254      16.50
## 64210            118     377.57
## 64211            229     773.61
## 64212             37     228.02
## 64213             95      60.76
## 64214            579   54031.68
## 64215            183     324.71
## 64216            160      81.95
## 64217            275     878.21
## 64218             86       0.00
## 64219             73       0.00
## 64220            350      94.42
## 64221             98     707.67
## 64222             96     297.46
## 64223             37       0.00
## 64224            117      94.67
## 64225            182     126.28
## 64226            809    4906.81
## 64227             76       0.00
## 64228            179    2704.55
## 64229             13       0.00
## 64230             66       0.00
## 64231             96      14.83
## 64232           1826   13227.43
## 64233            131     268.22
## 64234            401     568.02
## 64235            221    1566.01
## 64236            191      53.20
## 64237              8       0.00
## 64238             91     153.40
## 64239             91     493.12
## 64240            280     217.77
## 64241            215     437.06
## 64242            119     230.24
## 64243            153    1337.28
## 64244            395     240.44
## 64245            737    4701.28
## 64246             69       0.00
## 64247             59       0.00
## 64248            233     268.30
## 64249            120     976.13
## 64250            246     365.12
## 64251            241     161.28
## 64252             68       0.00
## 64253             77       0.00
## 64254            116     141.76
## 64255            116     165.71
## 64256            116      86.17
## 64257             86     191.86
## 64258             85       0.00
## 64259            113     148.81
## 64260             82       0.00
## 64261            164     282.59
## 64263            201     405.38
## 64264            187    1249.97
## 64265            157     749.53
## 64266             63       0.00
## 64267             73     581.31
## 64268             90       0.00
## 64269            573    6292.36
## 64270            251     878.76
## 64271            297      99.97
## 64272             66       0.00
## 64273             75       0.00
## 64274            164     279.06
## 64275             69     677.34
## 64278           1272   13814.22
## 64279             66       0.00
## 64280            299     111.91
## 64281             66       0.00
## 64282            502    3213.54
## 64283            220    1146.46
## 64284            152    1148.27
## 64285             91       7.80
## 64286            128      94.22
## 64287            766  180298.98
## 64288            444    3469.10
## 64289             93     223.51
## 64290            693   49574.93
## 64291            123     268.39
## 64292             89       8.94
## 64293             99     267.71
## 64294             69       0.00
## 64295            192     410.01
## 64296              6       0.00
## 64297            207     341.07
## 64298            194     796.33
## 64299             98       0.00
## 64300             71       0.00
## 64301            518    6419.44
## 64302            244     168.97
## 64303             52      75.00
## 64304            122      94.22
## 64305            132     795.83
## 64306             61       0.00
## 64307             61       0.00
## 64308            916    3336.62
## 64309             93     333.68
## 64310             38    1084.32
## 64311             82       0.00
## 64312             82       0.00
## 64313             77       0.00
## 64314            261     403.25
## 64315             77     125.44
## 64316            109      75.17
## 64317            372     601.64
## 64318             86       0.00
## 64319             86     170.62
## 64320            229    4995.78
## 64321             55     182.16
## 64322            404   10877.65
## 64323             91      11.73
## 64324             69    2428.72
## 64325            354     188.05
## 64326             23       0.00
## 64327            263     115.66
## 64328            421    3763.99
## 64329            465       0.00
## 64330           1165    4831.37
## 64331            183     580.74
## 64332            152     458.58
## 64333            344    1478.59
## 64334            462     506.97
## 64335            105     608.28
## 64336            354     594.46
## 64337             86       0.00
## 64338            308     928.76
## 64339            110      84.68
## 64340            109       0.00
## 64341            230     229.42
## 64342            269       0.00
## 64343            418     755.41
## 64344              8       0.00
## 64345             76       0.00
## 64346             69     767.62
## 64347             91     169.67
## 64348            141      16.50
## 64349            192     234.35
## 64350            116     287.49
## 64351             78       0.00
## 64353            269    4495.61
## 64354            669    4469.33
## 64355            276     195.60
## 64356             82      67.50
## 64358            120     424.38
## 64359            156     374.65
## 64360            588     214.32
## 64361            663    9923.04
## 64362            203       0.00
## 64363             61       0.00
## 64364            313    3271.75
## 64365            120      91.31
## 64366            285    3202.38
## 64367            619   28223.19
## 64368            489    3425.77
## 64369            120     337.98
## 64370             60    1366.38
## 64371            679    7917.94
## 64372            193     333.59
## 64373            356     743.60
## 64374            323   10805.63
## 64375             99     334.88
## 64376            362   21168.50
## 64377            316   31469.31
## 64378            370    1912.46
## 64379            277       0.00
## 64380             83     188.41
## 64381            113     171.38
## 64382            207     224.25
## 64383            189    9596.33
## 64384            135   16112.61
## 64385             51       0.00
## 64386            102     289.41
## 64387            137     137.66
## 64388             66     120.71
## 64389            178     415.56
## 64390            209     480.03
## 64391            237     582.85
## 64392             89      44.93
## 64393             89       0.00
## 64396            362    1595.84
## 64397            405     570.40
## 64398            118     776.15
## 64399            155     109.62
## 64400            270      92.41
## 64401             64     304.35
## 64402            202    2161.18
## 64403             82     211.90
## 64404            199    1029.33
## 64405            174    5452.79
## 64406            140     151.47
## 64407            108     181.87
## 64408            743   14408.44
## 64410            234      91.40
## 64411            143    1352.94
## 64412            113     165.90
## 64413            278    6620.20
## 64414             83       0.00
## 64415            344       0.00
## 64416             91     207.79
## 64417            554    1047.02
## 64418            205    1104.26
## 64419             86      29.40
## 64420            469     410.49
## 64421            993    4701.88
## 64422            623     500.18
## 64423            239       0.00
## 64424             65       0.00
## 64425             45       0.00
## 64427            330     944.57
## 64428            730    5701.85
## 64429            702   96497.17
## 64430            103     436.23
## 64431            258     548.36
## 64432            116      59.16
## 64433             91       0.00
## 64434             58       0.00
## 64435             85       0.00
## 64436            174     147.02
## 64437            122    3219.64
## 64438            182       3.00
## 64439            319    2398.89
## 64440            175     241.56
## 64441            147    1855.83
## 64442             83      18.26
## 64443            434    3085.16
## 64444            169      93.00
## 64445             35       0.00
## 64446            617    1367.59
## 64447            414     358.08
## 64448            188     557.41
## 64449            101      82.68
## 64450           1408  103505.52
## 64451            216    1211.29
## 64452            221     345.05
## 64453             70    4116.47
## 64454            776    8516.65
## 64455            160     219.20
## 64456            126    1673.19
## 64457             47     687.49
## 64458            247    7145.57
## 64459            370   26498.11
## 64460            287     638.63
## 64461            140       0.00
## 64462            750   83939.69
## 64463            114     302.69
## 64464            144     346.82
## 64465            254    8730.05
## 64466            358     112.87
## 64467            102     228.48
## 64468            106     261.20
## 64469             74       0.00
## 64470             44       0.00
## 64471             97       0.00
## 64472            175      94.42
## 64473            173     295.43
## 64474            855   31072.54
## 64475             87       0.00
## 64476            160     218.48
## 64477            458   10071.47
## 64478            102     953.07
## 64479            244       0.00
## 64480            114     399.22
## 64481            139    2269.12
## 64482            180    1114.20
## 64483              2       0.00
## 64484            138    1217.02
## 64485            200     704.14
## 64486            114     654.40
## 64487            174     187.19
## 64488            388   31490.00
## 64489            114     643.67
## 64490           1003   13042.41
## 64491             65       0.00
## 64492            340     225.84
## 64493            302       0.00
## 64494            193     608.18
## 64495             49     250.36
## 64496             98     594.65
## 64497            448   16482.79
## 64498            140     472.88
## 64499             59    4544.68
## 64500             92    1306.99
## 64501            113     829.89
## 64502            318    1373.50
## 64503            113    1399.59
## 64504            117     173.86
## 64505            107      95.32
## 64506           1247   19451.75
## 64507            116     397.61
## 64508            146      12.24
## 64509           1092   38763.78
## 64510             78       0.00
## 64512            929   14264.39
## 64513            107     106.17
## 64514            107     145.97
## 64515            224     481.57
## 64516             82       0.00
## 64517             65       0.00
## 64518            642    4592.21
## 64519             29     450.80
## 64520           1627   57472.41
## 64521            412    1056.25
## 64522            255    3163.41
## 64523            256     446.12
## 64524             38       0.00
## 64526            130     769.84
## 64527             13     292.32
## 64528            356    7086.69
## 64529            439     518.33
## 64530            333    1700.22
## 64531            156     200.26
## 64532             35     193.65
## 64533             87      85.60
## 64534            146     588.69
## 64535            250    2718.01
## 64536            735   25330.85
## 64537            265     857.42
## 64538            154       0.00
## 64539            369     625.56
## 64540            248     310.53
## 64541              1       0.00
## 64542             57       0.00
## 64543            484    9690.91
## 64544             65       0.00
## 64545             31     343.02
## 64546            171       0.00
## 64547            108     463.32
## 64548            336     885.88
## 64549            138     805.27
## 64550            138    1433.73
## 64551            413    1399.40
## 64552           1393   38227.70
## 64553             77       0.00
## 64554             77     316.51
## 64555            200    1280.52
## 64556             63     560.68
## 64557            590    1150.72
## 64558             74     166.80
## 64559            275    1725.83
## 64560            112     516.09
## 64561            110      68.21
## 64562             80       0.00
## 64563            242    2356.41
## 64566            168     154.20
## 64567            401     614.29
## 64568             77       0.00
## 64569            109      59.16
## 64570             67       0.00
## 64571             10      61.53
## 64572            103      51.49
## 64573            762     402.18
## 64574           1290   65496.77
## 64575              8       0.00
## 64576            130     926.09
## 64577            100      94.80
## 64578             46       0.00
## 64579            232    1307.39
## 64580            260    1299.78
## 64581            316       0.00
## 64582            114      97.14
## 64583           1688  389179.55
## 64584            137     761.28
## 64585            107      64.68
## 64586             49      64.68
## 64587            125      21.02
## 64588             46     321.76
## 64589            260    1668.02
## 64590             85       0.00
## 64591             85       0.00
## 64592            178       0.00
## 64593            128     106.58
## 64594            393      99.52
## 64595            104     159.13
## 64596             22       0.00
## 64597             19       0.00
## 64598            131     607.17
## 64599            121     182.78
## 64600            971  381493.22
## 64601             33      51.16
## 64602            112     205.11
## 64603             88       0.00
## 64604            650   18530.64
## 64605            135    1344.62
## 64606             44     188.40
## 64607            329    5327.46
## 64608            167     194.24
## 64609             87     160.89
## 64610             39     158.83
## 64611            101     170.16
## 64612            244    1333.08
## 64613           1013   41556.86
## 64614            170       0.00
## 64615             68       0.00
## 64616            189     189.75
## 64617             83       0.00
## 64618            161     108.00
## 64619             70       0.00
## 64620            131     405.71
## 64621             64       0.00
## 64622             22     132.86
## 64623            164     223.20
## 64624            122     285.32
## 64625            232     179.37
## 64626            487     951.68
## 64627            773   10339.56
## 64628            443     840.94
## 64629             22       0.00
## 64630             94      74.68
## 64631             63      89.12
## 64632            442   14753.75
## 64633             41      16.50
## 64634            399    3915.30
## 64635            297    3941.63
## 64636            210       8.25
## 64637             35       0.00
## 64638             84    1090.53
## 64639            223     198.19
## 64640            132     176.96
## 64641            273    1000.99
## 64642            197    3419.68
## 64643             50       0.00
## 64644             74     168.66
## 64645            468       0.00
## 64646            408    1476.99
## 64647            175     239.97
## 64649             88     127.68
## 64650            203    2341.60
## 64651            132     587.61
## 64652            272   14669.93
## 64653            126      74.68
## 64654            160    2359.37
## 64655             41     135.42
## 64656            665    1734.32
## 64657            229    4129.23
## 64658            125     110.32
## 64659             96      95.91
## 64660             37      87.33
## 64661            762    5747.58
## 64662            125     351.44
## 64663            110     106.24
## 64664            106       0.00
## 64665             95     137.66
## 64666             64       0.00
## 64667             61     765.64
## 64668            142     165.52
## 64669            123     265.06
## 64670             92      86.17
## 64671            101      44.93
## 64672            484   36745.18
## 64673            388   17363.71
## 64674            129     320.01
## 64675           1002   19906.79
## 64676            100     369.75
## 64677            118     974.05
## 64678            485   41092.80
## 64679            343    3241.54
## 64680             85      86.17
## 64681            388    1417.57
## 64682             81     138.34
## 64684            359     291.17
## 64685            153     455.93
## 64686            423    5703.63
## 64688            119     483.41
## 64689             99     760.74
## 64690            129     231.62
## 64691            129     260.48
## 64692            454    6458.59
## 64693            234    2882.61
## 64694             92     145.91
## 64695            224     218.59
## 64697             63       0.00
## 64698            125     151.01
## 64699             95     140.37
## 64700            183    3014.89
## 64701            224    1125.74
## 64702            122     320.56
## 64703            425     344.39
## 64704            112    4093.09
## 64705            124       0.00
## 64706              6       0.00
## 64707             40     829.91
## 64708            123     167.18
## 64709            320     687.89
## 64710             99     920.14
## 64711             99     463.02
## 64712             99     251.13
## 64713            104     552.78
## 64714            157    1180.10
## 64715             28       0.00
## 64717            673    6011.76
## 64718            140    1290.00
## 64719             80       0.00
## 64721             28     168.48
## 64722            226    1983.00
## 64723            420       0.00
## 64724             79       0.00
## 64726            167    5596.38
## 64727            118     237.85
## 64728            119      96.89
## 64729             74      61.34
## 64730            123    1434.66
## 64731            125     506.69
## 64732           1169  166383.08
## 64733            125     264.00
## 64734            266     382.32
## 64735            247     427.32
## 64736             62       0.00
## 64737           1710   52226.64
## 64738            184     234.55
## 64739            223     177.82
## 64740            139    1050.25
## 64741             14      67.41
## 64742            399     142.41
## 64743            252     382.28
## 64744            112     952.38
##  [ reached 'max' / getOption("max.print") -- omitted 76124 rows ]
# Al no haber NA's dentro de la base de datos, se prosigue a eliminar valores 
# menores a 0

# Eliminar Totales Negativos
clusters <- clusters[clusters$TotalPaid >= 0, ]

3. Identificar Outliers

#Identificar outliers en total paid
boxplot(clusters$TotalPaid, horizontal = TRUE)
title("Total Paid Boxplot")

#Identificar outliers en processing time
boxplot(clusters$ProcessingTime, horizontal = TRUE)
title("Processing Time Boxplot")

Observaciones: 1.Se tienen datos fuera de lo normal dentro de ambas variables

4. Eliminar Datos fuera de lo Normal

# Los datos fuera de lo normal están fuera de los siguientes límites
# Límite inferior = Q1 - 1.5*IQR
# Límite superior = Q3 + 1.5*IQR
# Q1: Cuartil 1, Q3: Cuartil 3, IQR: Rango Intercuartil


# Columna Total Paid
IQR_TP <- IQR(clusters$TotalPaid)
IQR_TP
## [1] 790.36
summary(clusters) 
##  ProcessingTime    TotalPaid        
##  Min.   :    1   Min.   :      0.0  
##  1st Qu.:  183   1st Qu.:     69.3  
##  Median : 1036   Median :    235.8  
##  Mean   : 1352   Mean   :   4244.1  
##  3rd Qu.: 2185   3rd Qu.:    859.7  
##  Max.   :19177   Max.   :1758919.5
LI_TP <- 69.3  - 1.5*IQR_TP
LI_TP
## [1] -1116.24
LS_TP <- 859.7 + 1.5*IQR_TP
LS_TP
## [1] 2045.24
clusters <- clusters[clusters$TotalPaid <= 2418.04,]

# Columna Processing Time
IQR_PT <- IQR(clusters$ProcessingTime)
IQR_PT
## [1] 2052
LI_PT <- 183 - 1.5*IQR_PT
LI_PT
## [1] -2895
LS_PT <- 2185 + 1.5*IQR_PT
LS_PT
## [1] 5263
clusters <- clusters[clusters$ProcessingTime<= 5118,]
summary(clusters)
##  ProcessingTime   TotalPaid      
##  Min.   :   1   Min.   :   0.00  
##  1st Qu.: 153   1st Qu.:  44.46  
##  Median :1015   Median : 180.20  
##  Mean   :1329   Mean   : 357.11  
##  3rd Qu.:2198   3rd Qu.: 439.01  
##  Max.   :5116   Max.   :2417.89

5. Asignación de Grupos

# 0. Normalizar variables
clusters <- as.data.frame(scale(clusters))

# 1. Crear base de datos

df <- clusters

# 2. Determinar el número de grupos
grupos <- 4

# 3. Realizar la clasificación
segmentos <- kmeans(df,grupos)

# 4. Revisar la asignación de grupos
asignación <- cbind(df,cluster=segmentos$cluster)

6. Graficar Resultados

fviz_cluster(segmentos, data = df, 
             palette= c("deeppink", "dodgerblue", "lightgreen", "yellow"))

7. Optimizar Cantidad de Grupos

# set.seed(123)
# optimización <- clusGap(df, FUN=kmeans, nstart=1, K.max=7)
# plot(optimización, xlab="Número de clusters K")
# Los códigos anteriores se dejaron como comentario debido al error: "Error: cannot allocate vector of size 43.6 Gb"

Regresión Lineal

Actividad Regresión Lineal

Debido a la observación hecha “Las variables BillReviewALE, Hospital, PhysicianOutpatient y Rx contienen una gran cantidad de NA’s”, se procederá a eliminar estas variables para que no afecten el resultado del cálculo próximo.

1. Crear Base de Datos para el Ejercici0

Con el fin de tener un proceso de codificación ameno, se realizará una base de datos especial para cada ejercicio, con el fin de no interferir en lineas de código adicionales.

linear <- main_db

2. Limpieza de Base de Datos

# ¿Cuantos NA's tengo x variable?
sapply(linear, function(x) sum(is.na(x)))
##                  ClaimID            BillReviewALE                 Hospital 
##                        0                   102179                   105462 
##      PhysicianOutpatient                       Rx                TotalPaid 
##                    74742                   106608                        0 
##            TotalReserves            TotalRecovery            IndemnityPaid 
##                        0                        0                        0 
##                OtherPaid              ClaimStatus             IncidentDate 
##                        0                        0                        0 
##      IncidentDescription         ReturnToWorkDate        AverageWeeklyWage 
##                        0                        0                    81352 
##       ClaimantOpenedDate       ClaimantClosedDate EmployerNotificationDate 
##                        0                        0                        0 
##             ReceivedDate                 IsDenied       ClaimantAge_at_DOI 
##                        0                        0                    44891 
##                   Gender             ClaimantType             InjuryNature 
##                        0                        0                        0 
##           BodyPartRegion                 BodyPart        TotalIncurredCost 
##                        0                        0                        0 
##           ProcessingTime 
##                        0
# Eliminar NAs
linear <- na.omit(linear)
summary(linear)
##     ClaimID         BillReviewALE         Hospital      PhysicianOutpatient
##  Min.   :  777646   Min.   :    7.15   Min.   :     0   Min.   :     0.0   
##  1st Qu.:  802017   1st Qu.:   48.20   1st Qu.:   699   1st Qu.:   538.7   
##  Median :  809997   Median :  176.50   Median :  3477   Median :  3712.3   
##  Mean   :  883767   Mean   :  801.42   Mean   : 13922   Mean   :  9541.3   
##  3rd Qu.:  815259   3rd Qu.:  636.03   3rd Qu.: 12953   3rd Qu.: 10731.3   
##  Max.   :34441045   Max.   :32788.96   Max.   :444257   Max.   :308637.5   
##        Rx              TotalPaid        TotalReserves TotalRecovery    
##  Min.   :     0.00   Min.   :     0.0   Min.   :0     Min.   :    0.0  
##  1st Qu.:    43.95   1st Qu.:   171.6   1st Qu.:0     1st Qu.:    0.0  
##  Median :   179.46   Median :   996.2   Median :0     Median :    0.0  
##  Mean   :  4679.77   Mean   : 13273.8   Mean   :0     Mean   :  124.8  
##  3rd Qu.:   949.79   3rd Qu.:  7285.3   3rd Qu.:0     3rd Qu.:    0.0  
##  Max.   :224804.65   Max.   :746986.1   Max.   :0     Max.   :22000.0  
##  IndemnityPaid      OtherPaid        ClaimStatus        IncidentDate      
##  Min.   :     0   Min.   :     0.0   Length:1236        Length:1236       
##  1st Qu.:     0   1st Qu.:   163.8   Class :character   Class :character  
##  Median :     0   Median :   780.1   Mode  :character   Mode  :character  
##  Mean   :  6241   Mean   :  7032.7                                        
##  3rd Qu.:  1803   3rd Qu.:  4465.6                                        
##  Max.   :259627   Max.   :623298.0                                        
##  IncidentDescription ReturnToWorkDate   AverageWeeklyWage ClaimantOpenedDate  
##  Length:1236         Length:1236        Min.   :   0.23   Min.   :1996-03-30  
##  Class :character    Class :character   1st Qu.: 350.00   1st Qu.:2003-09-23  
##  Mode  :character    Mode  :character   Median : 470.43   Median :2005-02-04  
##                                         Mean   : 492.07   Mean   :2004-09-27  
##                                         3rd Qu.: 619.35   3rd Qu.:2005-12-21  
##                                         Max.   :7409.77   Max.   :2013-06-03  
##  ClaimantClosedDate   EmployerNotificationDate ReceivedDate      
##  Min.   :2005-03-31   Length:1236              Length:1236       
##  1st Qu.:2005-06-08   Class :character         Class :character  
##  Median :2006-08-01   Mode  :character         Mode  :character  
##  Mean   :2007-01-25                                              
##  3rd Qu.:2008-08-19                                              
##  Max.   :2014-06-25                                              
##     IsDenied       ClaimantAge_at_DOI    Gender          ClaimantType      
##  Min.   :0.00000   Min.   :-1.00      Length:1236        Length:1236       
##  1st Qu.:0.00000   1st Qu.:33.00      Class :character   Class :character  
##  Median :0.00000   Median :42.00      Mode  :character   Mode  :character  
##  Mean   :0.07282   Mean   :41.89                                           
##  3rd Qu.:0.00000   3rd Qu.:51.00                                           
##  Max.   :1.00000   Max.   :82.00                                           
##  InjuryNature       BodyPartRegion       BodyPart         TotalIncurredCost 
##  Length:1236        Length:1236        Length:1236        Min.   : -3551.5  
##  Class :character   Class :character   Class :character   1st Qu.:   161.8  
##  Mode  :character   Mode  :character   Mode  :character   Median :   925.1  
##                                                           Mean   : 13149.0  
##                                                           3rd Qu.:  6710.4  
##                                                           Max.   :746986.1  
##  ProcessingTime  
##  Min.   :   1.0  
##  1st Qu.: 226.8  
##  Median : 754.0  
##  Mean   : 849.8  
##  3rd Qu.:1282.8  
##  Max.   :4190.0
# Eliminar Totales Negativos
linear <- linear[linear >= 0, ]
summary(linear)
##     ClaimID         BillReviewALE         Hospital      PhysicianOutpatient
##  Min.   :  777646   Min.   :    7.15   Min.   :     0   Min.   :     0.0   
##  1st Qu.:  802017   1st Qu.:   48.20   1st Qu.:   699   1st Qu.:   538.7   
##  Median :  809997   Median :  176.50   Median :  3477   Median :  3712.3   
##  Mean   :  883767   Mean   :  801.42   Mean   : 13922   Mean   :  9541.3   
##  3rd Qu.:  815259   3rd Qu.:  636.03   3rd Qu.: 12953   3rd Qu.: 10731.3   
##  Max.   :34441045   Max.   :32788.96   Max.   :444257   Max.   :308637.5   
##  NA's   :33184      NA's   :33184      NA's   :33184    NA's   :33184      
##        Rx              TotalPaid        TotalReserves   TotalRecovery    
##  Min.   :     0.00   Min.   :     0.0   Min.   :0       Min.   :    0.0  
##  1st Qu.:    43.95   1st Qu.:   171.6   1st Qu.:0       1st Qu.:    0.0  
##  Median :   179.46   Median :   996.2   Median :0       Median :    0.0  
##  Mean   :  4679.77   Mean   : 13273.8   Mean   :0       Mean   :  124.8  
##  3rd Qu.:   949.79   3rd Qu.:  7285.3   3rd Qu.:0       3rd Qu.:    0.0  
##  Max.   :224804.65   Max.   :746986.1   Max.   :0       Max.   :22000.0  
##  NA's   :33184       NA's   :33184      NA's   :33184   NA's   :33184    
##  IndemnityPaid      OtherPaid        ClaimStatus        IncidentDate      
##  Min.   :     0   Min.   :     0.0   Length:34420       Length:34420      
##  1st Qu.:     0   1st Qu.:   163.8   Class :character   Class :character  
##  Median :     0   Median :   780.1   Mode  :character   Mode  :character  
##  Mean   :  6241   Mean   :  7032.7                                        
##  3rd Qu.:  1803   3rd Qu.:  4465.6                                        
##  Max.   :259627   Max.   :623298.0                                        
##  NA's   :33184    NA's   :33184                                           
##  IncidentDescription ReturnToWorkDate   AverageWeeklyWage ClaimantOpenedDate  
##  Length:34420        Length:34420       Min.   :   0.23   Min.   :1996-03-30  
##  Class :character    Class :character   1st Qu.: 350.00   1st Qu.:2003-09-23  
##  Mode  :character    Mode  :character   Median : 470.43   Median :2005-02-04  
##                                         Mean   : 492.07   Mean   :2004-09-27  
##                                         3rd Qu.: 619.35   3rd Qu.:2005-12-21  
##                                         Max.   :7409.77   Max.   :2013-06-03  
##                                         NA's   :33184     NA's   :33184       
##  ClaimantClosedDate   EmployerNotificationDate ReceivedDate      
##  Min.   :2005-03-31   Length:34420             Length:34420      
##  1st Qu.:2005-06-08   Class :character         Class :character  
##  Median :2006-08-01   Mode  :character         Mode  :character  
##  Mean   :2007-01-25                                              
##  3rd Qu.:2008-08-19                                              
##  Max.   :2014-06-25                                              
##  NA's   :33184                                                   
##     IsDenied     ClaimantAge_at_DOI    Gender          ClaimantType      
##  Min.   :0.00    Min.   :-1.00      Length:34420       Length:34420      
##  1st Qu.:0.00    1st Qu.:33.00      Class :character   Class :character  
##  Median :0.00    Median :42.00      Mode  :character   Mode  :character  
##  Mean   :0.07    Mean   :41.89                                           
##  3rd Qu.:0.00    3rd Qu.:51.00                                           
##  Max.   :1.00    Max.   :82.00                                           
##  NA's   :33184   NA's   :33184                                           
##  InjuryNature       BodyPartRegion       BodyPart         TotalIncurredCost 
##  Length:34420       Length:34420       Length:34420       Min.   : -3551.5  
##  Class :character   Class :character   Class :character   1st Qu.:   161.8  
##  Mode  :character   Mode  :character   Mode  :character   Median :   925.1  
##                                                           Mean   : 13149.0  
##                                                           3rd Qu.:  6710.4  
##                                                           Max.   :746986.1  
##                                                           NA's   :33184     
##  ProcessingTime  
##  Min.   :   1.0  
##  1st Qu.: 226.8  
##  Median : 754.0  
##  Mean   : 849.9  
##  3rd Qu.:1282.8  
##  Max.   :4190.0  
##  NA's   :33184

3. Generar la regresión lineal (Total Incurred Cost)

regresion <- lm(TotalIncurredCost ~ ClaimantAge_at_DOI + AverageWeeklyWage + ProcessingTime + Gender + ClaimantType + InjuryNature +  BodyPartRegion + BodyPart + IsDenied, data=linear)
summary(regresion)
## 
## Call:
## lm(formula = TotalIncurredCost ~ ClaimantAge_at_DOI + AverageWeeklyWage + 
##     ProcessingTime + Gender + ClaimantType + InjuryNature + BodyPartRegion + 
##     BodyPart + IsDenied, data = linear)
## 
## Residuals:
##    Min     1Q Median     3Q    Max 
## -64933 -14749  -4197   4987 704545 
## 
## Coefficients: (6 not defined because of singularities)
##                                                                           Estimate
## (Intercept)                                                             -24823.234
## ClaimantAge_at_DOI                                                         187.075
## AverageWeeklyWage                                                            6.708
## ProcessingTime                                                              12.901
## GenderMale                                                                2038.623
## GenderNot Available                                                         43.661
## ClaimantTypeMedical Only                                                -14889.588
## ClaimantTypeReport Only                                                 -20312.207
## InjuryNatureAmputation                                                    7007.183
## InjuryNatureAsphyxiation                                                 22912.418
## InjuryNatureBurn                                                          8237.372
## InjuryNatureCarpal Tunnel Syndrome                                        6319.963
## InjuryNatureConcussion                                                   45563.793
## InjuryNatureContagious Disease                                           -5137.193
## InjuryNatureContusion                                                     8548.750
## InjuryNatureCrushing                                                     14070.404
## InjuryNatureDermatitis                                                   12430.061
## InjuryNatureDislocation                                                  -2771.979
## InjuryNatureElectric Shock                                               -3668.050
## InjuryNatureForeign Body                                                   285.813
## InjuryNatureFracture                                                     14525.328
## InjuryNatureHearing Loss Or Impairment                                  -31294.802
## InjuryNatureHeat Prostration                                              7340.151
## InjuryNatureHernia                                                        7589.495
## InjuryNatureInfection                                                    10894.367
## InjuryNatureInflammation                                                  1907.568
## InjuryNatureLaceration                                                    7974.858
## InjuryNatureLoss of Hearing                                               4996.035
## InjuryNatureMental Stress                                                  697.325
## InjuryNatureMultiple Injuries Including Both Physical and Psychological  -2779.443
## InjuryNatureMultiple Physical Injuries Only                              15434.310
## InjuryNatureMyocardial Infarction                                         4140.090
## InjuryNatureNo Physical Injury                                            5061.646
## InjuryNaturePoisoning?Chemical (Other Than Metals)                        6741.712
## InjuryNaturePuncture                                                     23443.018
## InjuryNatureRespiratory Disorders                                         7908.485
## InjuryNatureRupture                                                     -15670.643
## InjuryNatureSprain                                                        6849.343
## InjuryNatureStrain                                                       11917.232
## InjuryNatureSyncope                                                       1494.426
## BodyPartRegionLower Extremities                                           8632.364
## BodyPartRegionMultiple Body Parts                                        12410.946
## BodyPartRegionNeck                                                       11999.229
## BodyPartRegionTrunk                                                       5828.932
## BodyPartRegionUpper Extremities                                           7480.322
## BodyPartAnkle                                                            -1833.838
## BodyPartBody Systems and Multiple Body Systems                           -1842.721
## BodyPartButtocks                                                         -2401.195
## BodyPartChest                                                            -1775.127
## BodyPartDisc-Trunk                                                       -8470.421
## BodyPartEar(S)                                                           22775.467
## BodyPartElbow                                                             8080.064
## BodyPartEyes                                                             18835.611
## BodyPartFacial Bones                                                     19573.847
## BodyPartFinger(S)                                                        -3547.538
## BodyPartFoot                                                             -3702.793
## BodyPartGreat Toe                                                        -1845.920
## BodyPartHand                                                              2686.214
## BodyPartHeart                                                                   NA
## BodyPartHip                                                              18551.391
## BodyPartInsufficient Info to Properly Identify?Unclassified             -13706.978
## BodyPartInternal Organs                                                 -16088.202
## BodyPartKnee                                                              8807.524
## BodyPartLower Arm                                                         1434.250
## BodyPartLower Back Area                                                  13461.166
## BodyPartLower Leg                                                         3420.977
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)               3715.140
## BodyPartLungs                                                            21930.217
## BodyPartMouth                                                            -3748.214
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)       1667.171
## BodyPartMultiple Head Injury                                             12926.540
## BodyPartMultiple Lower Extremities                                       20928.497
## BodyPartMultiple Neck Injury                                              2710.733
## BodyPartMultiple Upper Extremities                                        4092.157
## BodyPartNo Physical Injury                                                      NA
## BodyPartNose                                                             -5009.320
## BodyPartPelvis                                                           -1887.509
## BodyPartSacrum And Coccyx                                               -17344.671
## BodyPartShoulder(S)                                                       8827.372
## BodyPartSoft Tissue-Neck                                                  -465.017
## BodyPartSpinal Cord-Trunk                                                37047.605
## BodyPartTeeth                                                                   NA
## BodyPartThumb                                                              272.437
## BodyPartToes                                                            -10417.371
## BodyPartUpper Arm                                                         9833.842
## BodyPartUpper Back Area                                                   8717.606
## BodyPartUpper Leg                                                               NA
## BodyPartVertebrae                                                               NA
## BodyPartWrist                                                                   NA
## IsDenied                                                                 -8750.115
##                                                                         Std. Error
## (Intercept)                                                              21283.311
## ClaimantAge_at_DOI                                                          97.768
## AverageWeeklyWage                                                            2.681
## ProcessingTime                                                               1.829
## GenderMale                                                                2377.649
## GenderNot Available                                                      10235.582
## ClaimantTypeMedical Only                                                  2648.929
## ClaimantTypeReport Only                                                   9907.729
## InjuryNatureAmputation                                                   39708.772
## InjuryNatureAsphyxiation                                                 41550.510
## InjuryNatureBurn                                                         13997.923
## InjuryNatureCarpal Tunnel Syndrome                                       12122.881
## InjuryNatureConcussion                                                   19511.523
## InjuryNatureContagious Disease                                           42272.789
## InjuryNatureContusion                                                     6585.286
## InjuryNatureCrushing                                                     18939.907
## InjuryNatureDermatitis                                                   11743.488
## InjuryNatureDislocation                                                  18675.922
## InjuryNatureElectric Shock                                               28646.649
## InjuryNatureForeign Body                                                 12764.956
## InjuryNatureFracture                                                      8434.802
## InjuryNatureHearing Loss Or Impairment                                   55524.779
## InjuryNatureHeat Prostration                                             32498.450
## InjuryNatureHernia                                                       22263.445
## InjuryNatureInfection                                                    31017.488
## InjuryNatureInflammation                                                 14040.185
## InjuryNatureLaceration                                                    8002.528
## InjuryNatureLoss of Hearing                                              48280.217
## InjuryNatureMental Stress                                                17872.012
## InjuryNatureMultiple Injuries Including Both Physical and Psychological  39612.179
## InjuryNatureMultiple Physical Injuries Only                               9801.434
## InjuryNatureMyocardial Infarction                                        30076.140
## InjuryNatureNo Physical Injury                                           15045.023
## InjuryNaturePoisoning?Chemical (Other Than Metals)                       29729.663
## InjuryNaturePuncture                                                     10321.742
## InjuryNatureRespiratory Disorders                                        13853.003
## InjuryNatureRupture                                                      31091.274
## InjuryNatureSprain                                                        7655.831
## InjuryNatureStrain                                                        6758.799
## InjuryNatureSyncope                                                      26175.548
## BodyPartRegionLower Extremities                                          25844.089
## BodyPartRegionMultiple Body Parts                                        23787.161
## BodyPartRegionNeck                                                       43543.783
## BodyPartRegionTrunk                                                      21948.069
## BodyPartRegionUpper Extremities                                          20119.333
## BodyPartAnkle                                                            18071.963
## BodyPartBody Systems and Multiple Body Systems                           20276.829
## BodyPartButtocks                                                         17747.111
## BodyPartChest                                                            12435.456
## BodyPartDisc-Trunk                                                       15319.419
## BodyPartEar(S)                                                           43741.117
## BodyPartElbow                                                             9953.122
## BodyPartEyes                                                             21823.725
## BodyPartFacial Bones                                                     23612.103
## BodyPartFinger(S)                                                         7028.666
## BodyPartFoot                                                             18100.480
## BodyPartGreat Toe                                                        42447.583
## BodyPartHand                                                              6640.689
## BodyPartHeart                                                                   NA
## BodyPartHip                                                              19882.094
## BodyPartInsufficient Info to Properly Identify?Unclassified              21246.677
## BodyPartInternal Organs                                                  40013.898
## BodyPartKnee                                                             17286.358
## BodyPartLower Arm                                                         9296.289
## BodyPartLower Back Area                                                  10388.861
## BodyPartLower Leg                                                        18988.930
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)              12896.949
## BodyPartLungs                                                            19348.787
## BodyPartMouth                                                            27236.174
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)      13886.354
## BodyPartMultiple Head Injury                                             20717.731
## BodyPartMultiple Lower Extremities                                       21969.722
## BodyPartMultiple Neck Injury                                             39550.457
## BodyPartMultiple Upper Extremities                                       13350.245
## BodyPartNo Physical Injury                                                      NA
## BodyPartNose                                                             29752.268
## BodyPartPelvis                                                           17373.323
## BodyPartSacrum And Coccyx                                                40017.904
## BodyPartShoulder(S)                                                       6979.673
## BodyPartSoft Tissue-Neck                                                 43755.603
## BodyPartSpinal Cord-Trunk                                                26764.744
## BodyPartTeeth                                                                   NA
## BodyPartThumb                                                             9087.589
## BodyPartToes                                                             23697.523
## BodyPartUpper Arm                                                        10586.719
## BodyPartUpper Back Area                                                  15757.501
## BodyPartUpper Leg                                                               NA
## BodyPartVertebrae                                                               NA
## BodyPartWrist                                                                   NA
## IsDenied                                                                  4783.748
##                                                                         t value
## (Intercept)                                                              -1.166
## ClaimantAge_at_DOI                                                        1.913
## AverageWeeklyWage                                                         2.501
## ProcessingTime                                                            7.055
## GenderMale                                                                0.857
## GenderNot Available                                                       0.004
## ClaimantTypeMedical Only                                                 -5.621
## ClaimantTypeReport Only                                                  -2.050
## InjuryNatureAmputation                                                    0.176
## InjuryNatureAsphyxiation                                                  0.551
## InjuryNatureBurn                                                          0.588
## InjuryNatureCarpal Tunnel Syndrome                                        0.521
## InjuryNatureConcussion                                                    2.335
## InjuryNatureContagious Disease                                           -0.122
## InjuryNatureContusion                                                     1.298
## InjuryNatureCrushing                                                      0.743
## InjuryNatureDermatitis                                                    1.058
## InjuryNatureDislocation                                                  -0.148
## InjuryNatureElectric Shock                                               -0.128
## InjuryNatureForeign Body                                                  0.022
## InjuryNatureFracture                                                      1.722
## InjuryNatureHearing Loss Or Impairment                                   -0.564
## InjuryNatureHeat Prostration                                              0.226
## InjuryNatureHernia                                                        0.341
## InjuryNatureInfection                                                     0.351
## InjuryNatureInflammation                                                  0.136
## InjuryNatureLaceration                                                    0.997
## InjuryNatureLoss of Hearing                                               0.103
## InjuryNatureMental Stress                                                 0.039
## InjuryNatureMultiple Injuries Including Both Physical and Psychological  -0.070
## InjuryNatureMultiple Physical Injuries Only                               1.575
## InjuryNatureMyocardial Infarction                                         0.138
## InjuryNatureNo Physical Injury                                            0.336
## InjuryNaturePoisoning?Chemical (Other Than Metals)                        0.227
## InjuryNaturePuncture                                                      2.271
## InjuryNatureRespiratory Disorders                                         0.571
## InjuryNatureRupture                                                      -0.504
## InjuryNatureSprain                                                        0.895
## InjuryNatureStrain                                                        1.763
## InjuryNatureSyncope                                                       0.057
## BodyPartRegionLower Extremities                                           0.334
## BodyPartRegionMultiple Body Parts                                         0.522
## BodyPartRegionNeck                                                        0.276
## BodyPartRegionTrunk                                                       0.266
## BodyPartRegionUpper Extremities                                           0.372
## BodyPartAnkle                                                            -0.101
## BodyPartBody Systems and Multiple Body Systems                           -0.091
## BodyPartButtocks                                                         -0.135
## BodyPartChest                                                            -0.143
## BodyPartDisc-Trunk                                                       -0.553
## BodyPartEar(S)                                                            0.521
## BodyPartElbow                                                             0.812
## BodyPartEyes                                                              0.863
## BodyPartFacial Bones                                                      0.829
## BodyPartFinger(S)                                                        -0.505
## BodyPartFoot                                                             -0.205
## BodyPartGreat Toe                                                        -0.043
## BodyPartHand                                                              0.405
## BodyPartHeart                                                                NA
## BodyPartHip                                                               0.933
## BodyPartInsufficient Info to Properly Identify?Unclassified              -0.645
## BodyPartInternal Organs                                                  -0.402
## BodyPartKnee                                                              0.510
## BodyPartLower Arm                                                         0.154
## BodyPartLower Back Area                                                   1.296
## BodyPartLower Leg                                                         0.180
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)               0.288
## BodyPartLungs                                                             1.133
## BodyPartMouth                                                            -0.138
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)       0.120
## BodyPartMultiple Head Injury                                              0.624
## BodyPartMultiple Lower Extremities                                        0.953
## BodyPartMultiple Neck Injury                                              0.069
## BodyPartMultiple Upper Extremities                                        0.307
## BodyPartNo Physical Injury                                                   NA
## BodyPartNose                                                             -0.168
## BodyPartPelvis                                                           -0.109
## BodyPartSacrum And Coccyx                                                -0.433
## BodyPartShoulder(S)                                                       1.265
## BodyPartSoft Tissue-Neck                                                 -0.011
## BodyPartSpinal Cord-Trunk                                                 1.384
## BodyPartTeeth                                                                NA
## BodyPartThumb                                                             0.030
## BodyPartToes                                                             -0.440
## BodyPartUpper Arm                                                         0.929
## BodyPartUpper Back Area                                                   0.553
## BodyPartUpper Leg                                                            NA
## BodyPartVertebrae                                                            NA
## BodyPartWrist                                                                NA
## IsDenied                                                                 -1.829
##                                                                         Pr(>|t|)
## (Intercept)                                                               0.2437
## ClaimantAge_at_DOI                                                        0.0559
## AverageWeeklyWage                                                         0.0125
## ProcessingTime                                                          2.98e-12
## GenderMale                                                                0.3914
## GenderNot Available                                                       0.9966
## ClaimantTypeMedical Only                                                2.38e-08
## ClaimantTypeReport Only                                                   0.0406
## InjuryNatureAmputation                                                    0.8600
## InjuryNatureAsphyxiation                                                  0.5814
## InjuryNatureBurn                                                          0.5563
## InjuryNatureCarpal Tunnel Syndrome                                        0.6022
## InjuryNatureConcussion                                                    0.0197
## InjuryNatureContagious Disease                                            0.9033
## InjuryNatureContusion                                                     0.1945
## InjuryNatureCrushing                                                      0.4577
## InjuryNatureDermatitis                                                    0.2901
## InjuryNatureDislocation                                                   0.8820
## InjuryNatureElectric Shock                                                0.8981
## InjuryNatureForeign Body                                                  0.9821
## InjuryNatureFracture                                                      0.0853
## InjuryNatureHearing Loss Or Impairment                                    0.5731
## InjuryNatureHeat Prostration                                              0.8213
## InjuryNatureHernia                                                        0.7332
## InjuryNatureInfection                                                     0.7255
## InjuryNatureInflammation                                                  0.8920
## InjuryNatureLaceration                                                    0.3192
## InjuryNatureLoss of Hearing                                               0.9176
## InjuryNatureMental Stress                                                 0.9689
## InjuryNatureMultiple Injuries Including Both Physical and Psychological   0.9441
## InjuryNatureMultiple Physical Injuries Only                               0.1156
## InjuryNatureMyocardial Infarction                                         0.8905
## InjuryNatureNo Physical Injury                                            0.7366
## InjuryNaturePoisoning?Chemical (Other Than Metals)                        0.8206
## InjuryNaturePuncture                                                      0.0233
## InjuryNatureRespiratory Disorders                                         0.5682
## InjuryNatureRupture                                                       0.6143
## InjuryNatureSprain                                                        0.3712
## InjuryNatureStrain                                                        0.0781
## InjuryNatureSyncope                                                       0.9545
## BodyPartRegionLower Extremities                                           0.7384
## BodyPartRegionMultiple Body Parts                                         0.6019
## BodyPartRegionNeck                                                        0.7829
## BodyPartRegionTrunk                                                       0.7906
## BodyPartRegionUpper Extremities                                           0.7101
## BodyPartAnkle                                                             0.9192
## BodyPartBody Systems and Multiple Body Systems                            0.9276
## BodyPartButtocks                                                          0.8924
## BodyPartChest                                                             0.8865
## BodyPartDisc-Trunk                                                        0.5804
## BodyPartEar(S)                                                            0.6027
## BodyPartElbow                                                             0.4171
## BodyPartEyes                                                              0.3883
## BodyPartFacial Bones                                                      0.4073
## BodyPartFinger(S)                                                         0.6138
## BodyPartFoot                                                              0.8379
## BodyPartGreat Toe                                                         0.9653
## BodyPartHand                                                              0.6859
## BodyPartHeart                                                                 NA
## BodyPartHip                                                               0.3510
## BodyPartInsufficient Info to Properly Identify?Unclassified               0.5190
## BodyPartInternal Organs                                                   0.6877
## BodyPartKnee                                                              0.6105
## BodyPartLower Arm                                                         0.8774
## BodyPartLower Back Area                                                   0.1953
## BodyPartLower Leg                                                         0.8571
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)               0.7733
## BodyPartLungs                                                             0.2573
## BodyPartMouth                                                             0.8906
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)       0.9045
## BodyPartMultiple Head Injury                                              0.5328
## BodyPartMultiple Lower Extremities                                        0.3410
## BodyPartMultiple Neck Injury                                              0.9454
## BodyPartMultiple Upper Extremities                                        0.7593
## BodyPartNo Physical Injury                                                    NA
## BodyPartNose                                                              0.8663
## BodyPartPelvis                                                            0.9135
## BodyPartSacrum And Coccyx                                                 0.6648
## BodyPartShoulder(S)                                                       0.2062
## BodyPartSoft Tissue-Neck                                                  0.9915
## BodyPartSpinal Cord-Trunk                                                 0.1666
## BodyPartTeeth                                                                 NA
## BodyPartThumb                                                             0.9761
## BodyPartToes                                                              0.6603
## BodyPartUpper Arm                                                         0.3531
## BodyPartUpper Back Area                                                   0.5802
## BodyPartUpper Leg                                                             NA
## BodyPartVertebrae                                                             NA
## BodyPartWrist                                                                 NA
## IsDenied                                                                  0.0676
##                                                                            
## (Intercept)                                                                
## ClaimantAge_at_DOI                                                      .  
## AverageWeeklyWage                                                       *  
## ProcessingTime                                                          ***
## GenderMale                                                                 
## GenderNot Available                                                        
## ClaimantTypeMedical Only                                                ***
## ClaimantTypeReport Only                                                 *  
## InjuryNatureAmputation                                                     
## InjuryNatureAsphyxiation                                                   
## InjuryNatureBurn                                                           
## InjuryNatureCarpal Tunnel Syndrome                                         
## InjuryNatureConcussion                                                  *  
## InjuryNatureContagious Disease                                             
## InjuryNatureContusion                                                      
## InjuryNatureCrushing                                                       
## InjuryNatureDermatitis                                                     
## InjuryNatureDislocation                                                    
## InjuryNatureElectric Shock                                                 
## InjuryNatureForeign Body                                                   
## InjuryNatureFracture                                                    .  
## InjuryNatureHearing Loss Or Impairment                                     
## InjuryNatureHeat Prostration                                               
## InjuryNatureHernia                                                         
## InjuryNatureInfection                                                      
## InjuryNatureInflammation                                                   
## InjuryNatureLaceration                                                     
## InjuryNatureLoss of Hearing                                                
## InjuryNatureMental Stress                                                  
## InjuryNatureMultiple Injuries Including Both Physical and Psychological    
## InjuryNatureMultiple Physical Injuries Only                                
## InjuryNatureMyocardial Infarction                                          
## InjuryNatureNo Physical Injury                                             
## InjuryNaturePoisoning?Chemical (Other Than Metals)                         
## InjuryNaturePuncture                                                    *  
## InjuryNatureRespiratory Disorders                                          
## InjuryNatureRupture                                                        
## InjuryNatureSprain                                                         
## InjuryNatureStrain                                                      .  
## InjuryNatureSyncope                                                        
## BodyPartRegionLower Extremities                                            
## BodyPartRegionMultiple Body Parts                                          
## BodyPartRegionNeck                                                         
## BodyPartRegionTrunk                                                        
## BodyPartRegionUpper Extremities                                            
## BodyPartAnkle                                                              
## BodyPartBody Systems and Multiple Body Systems                             
## BodyPartButtocks                                                           
## BodyPartChest                                                              
## BodyPartDisc-Trunk                                                         
## BodyPartEar(S)                                                             
## BodyPartElbow                                                              
## BodyPartEyes                                                               
## BodyPartFacial Bones                                                       
## BodyPartFinger(S)                                                          
## BodyPartFoot                                                               
## BodyPartGreat Toe                                                          
## BodyPartHand                                                               
## BodyPartHeart                                                              
## BodyPartHip                                                                
## BodyPartInsufficient Info to Properly Identify?Unclassified                
## BodyPartInternal Organs                                                    
## BodyPartKnee                                                               
## BodyPartLower Arm                                                          
## BodyPartLower Back Area                                                    
## BodyPartLower Leg                                                          
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)                
## BodyPartLungs                                                              
## BodyPartMouth                                                              
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)        
## BodyPartMultiple Head Injury                                               
## BodyPartMultiple Lower Extremities                                         
## BodyPartMultiple Neck Injury                                               
## BodyPartMultiple Upper Extremities                                         
## BodyPartNo Physical Injury                                                 
## BodyPartNose                                                               
## BodyPartPelvis                                                             
## BodyPartSacrum And Coccyx                                                  
## BodyPartShoulder(S)                                                        
## BodyPartSoft Tissue-Neck                                                   
## BodyPartSpinal Cord-Trunk                                                  
## BodyPartTeeth                                                              
## BodyPartThumb                                                              
## BodyPartToes                                                               
## BodyPartUpper Arm                                                          
## BodyPartUpper Back Area                                                    
## BodyPartUpper Leg                                                          
## BodyPartVertebrae                                                          
## BodyPartWrist                                                              
## IsDenied                                                                .  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 38760 on 1152 degrees of freedom
##   (33184 observations deleted due to missingness)
## Multiple R-squared:  0.1655, Adjusted R-squared:  0.1053 
## F-statistic: 2.752 on 83 and 1152 DF,  p-value: 9.854e-14

3.1 Ajustar la regresión lineal (Total Incurred Cost)

regresion <- lm(TotalIncurredCost ~ ProcessingTime, data=linear)
summary(regresion)
## 
## Call:
## lm(formula = TotalIncurredCost ~ ProcessingTime, data = linear)
## 
## Residuals:
##    Min     1Q Median     3Q    Max 
## -67800 -14801  -3334    354 719633 
## 
## Coefficients:
##                 Estimate Std. Error t value Pr(>|t|)    
## (Intercept)    -1659.755   1769.897  -0.938    0.349    
## ProcessingTime    17.425      1.618  10.773   <2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 39190 on 1234 degrees of freedom
##   (33184 observations deleted due to missingness)
## Multiple R-squared:  0.08596,    Adjusted R-squared:  0.08522 
## F-statistic: 116.1 on 1 and 1234 DF,  p-value: < 2.2e-16

4. Construir un modelo predictivo

data <- data.frame(ClaimantAge_at_DOI=41.89, AverageWeeklyWage=492.07, ProcessingTime=849.9)
predict(regresion, data)
##        1 
## 13149.91

5. Generar la regresión lineal (Processing Time)

regresion2 <- lm(ProcessingTime ~ Gender + ClaimantAge_at_DOI + AverageWeeklyWage + TotalReserves + TotalRecovery + IndemnityPaid + OtherPaid + TotalIncurredCost + ClaimantAge_at_DOI + Gender + ClaimantType + InjuryNature +  BodyPartRegion + BodyPart + IsDenied, data=linear)
summary(regresion2)
## 
## Call:
## lm(formula = ProcessingTime ~ Gender + ClaimantAge_at_DOI + AverageWeeklyWage + 
##     TotalReserves + TotalRecovery + IndemnityPaid + OtherPaid + 
##     TotalIncurredCost + ClaimantAge_at_DOI + Gender + ClaimantType + 
##     InjuryNature + BodyPartRegion + BodyPart + IsDenied, data = linear)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -1628.3  -414.1  -100.5   333.0  3085.0 
## 
## Coefficients: (8 not defined because of singularities)
##                                                                           Estimate
## (Intercept)                                                              1.186e+03
## GenderMale                                                               6.629e+01
## GenderNot Available                                                     -1.898e+01
## ClaimantAge_at_DOI                                                      -2.483e+00
## AverageWeeklyWage                                                       -1.068e-01
## TotalReserves                                                                   NA
## TotalRecovery                                                            3.182e-02
## IndemnityPaid                                                            3.477e-03
## OtherPaid                                                                2.978e-03
## TotalIncurredCost                                                               NA
## ClaimantTypeMedical Only                                                -4.898e+02
## ClaimantTypeReport Only                                                 -2.440e+02
## InjuryNatureAmputation                                                  -9.172e+02
## InjuryNatureAsphyxiation                                                -4.694e+02
## InjuryNatureBurn                                                        -3.728e+02
## InjuryNatureCarpal Tunnel Syndrome                                      -1.903e+01
## InjuryNatureConcussion                                                  -3.075e+02
## InjuryNatureContagious Disease                                          -6.527e+02
## InjuryNatureContusion                                                   -2.328e+02
## InjuryNatureCrushing                                                    -2.871e+01
## InjuryNatureDermatitis                                                  -5.387e+02
## InjuryNatureDislocation                                                 -5.696e+02
## InjuryNatureElectric Shock                                               1.087e+03
## InjuryNatureForeign Body                                                 3.428e+02
## InjuryNatureFracture                                                    -3.380e+02
## InjuryNatureHearing Loss Or Impairment                                   1.026e+03
## InjuryNatureHeat Prostration                                            -5.459e+02
## InjuryNatureHernia                                                      -6.613e+02
## InjuryNatureInfection                                                   -3.649e+02
## InjuryNatureInflammation                                                 1.760e+02
## InjuryNatureLaceration                                                  -2.606e+02
## InjuryNatureLoss of Hearing                                             -6.057e+02
## InjuryNatureMental Stress                                               -1.769e+02
## InjuryNatureMultiple Injuries Including Both Physical and Psychological -4.222e+02
## InjuryNatureMultiple Physical Injuries Only                             -4.331e+02
## InjuryNatureMyocardial Infarction                                       -5.632e+02
## InjuryNatureNo Physical Injury                                          -3.310e+02
## InjuryNaturePoisoning?Chemical (Other Than Metals)                      -1.139e+02
## InjuryNaturePuncture                                                    -4.393e+02
## InjuryNatureRespiratory Disorders                                       -5.305e+01
## InjuryNatureRupture                                                     -1.350e+03
## InjuryNatureSprain                                                      -2.849e+02
## InjuryNatureStrain                                                      -2.725e+02
## InjuryNatureSyncope                                                      6.107e+01
## BodyPartRegionLower Extremities                                          2.680e+02
## BodyPartRegionMultiple Body Parts                                        4.225e+01
## BodyPartRegionNeck                                                       5.418e+01
## BodyPartRegionTrunk                                                      2.777e+02
## BodyPartRegionUpper Extremities                                          2.493e+02
## BodyPartAnkle                                                           -3.598e+01
## BodyPartBody Systems and Multiple Body Systems                          -2.872e+02
## BodyPartButtocks                                                         8.894e+00
## BodyPartChest                                                           -1.117e+02
## BodyPartDisc-Trunk                                                       4.825e+02
## BodyPartEar(S)                                                          -2.697e+02
## BodyPartElbow                                                            1.920e+01
## BodyPartEyes                                                            -1.615e+02
## BodyPartFacial Bones                                                     3.675e+02
## BodyPartFinger(S)                                                       -1.574e+01
## BodyPartFoot                                                            -2.328e+01
## BodyPartGreat Toe                                                       -1.032e+03
## BodyPartHand                                                            -9.055e+01
## BodyPartHeart                                                                   NA
## BodyPartHip                                                              6.633e+01
## BodyPartInsufficient Info to Properly Identify?Unclassified              5.337e+02
## BodyPartInternal Organs                                                  4.369e+02
## BodyPartKnee                                                            -3.874e+01
## BodyPartLower Arm                                                       -1.160e+01
## BodyPartLower Back Area                                                  5.435e+00
## BodyPartLower Leg                                                        2.405e+01
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)             -3.866e+01
## BodyPartLungs                                                           -1.037e+02
## BodyPartMouth                                                            2.698e+02
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)      2.159e+02
## BodyPartMultiple Head Injury                                             1.217e+02
## BodyPartMultiple Lower Extremities                                      -2.667e+02
## BodyPartMultiple Neck Injury                                             1.500e+02
## BodyPartMultiple Upper Extremities                                       2.591e+02
## BodyPartNo Physical Injury                                                      NA
## BodyPartNose                                                             4.991e+01
## BodyPartPelvis                                                          -3.818e+02
## BodyPartSacrum And Coccyx                                               -6.016e+01
## BodyPartShoulder(S)                                                     -5.774e+01
## BodyPartSoft Tissue-Neck                                                -2.424e+02
## BodyPartSpinal Cord-Trunk                                                5.213e+02
## BodyPartTeeth                                                                   NA
## BodyPartThumb                                                           -5.391e+01
## BodyPartToes                                                            -1.161e+02
## BodyPartUpper Arm                                                        1.266e+02
## BodyPartUpper Back Area                                                 -1.035e+02
## BodyPartUpper Leg                                                               NA
## BodyPartVertebrae                                                               NA
## BodyPartWrist                                                                   NA
## IsDenied                                                                -1.609e+02
##                                                                         Std. Error
## (Intercept)                                                              3.335e+02
## GenderMale                                                               3.748e+01
## GenderNot Available                                                      1.612e+02
## ClaimantAge_at_DOI                                                       1.541e+00
## AverageWeeklyWage                                                        4.226e-02
## TotalReserves                                                                   NA
## TotalRecovery                                                            1.404e-02
## IndemnityPaid                                                            1.061e-03
## OtherPaid                                                                8.488e-04
## TotalIncurredCost                                                               NA
## ClaimantTypeMedical Only                                                 3.987e+01
## ClaimantTypeReport Only                                                  1.562e+02
## InjuryNatureAmputation                                                   6.247e+02
## InjuryNatureAsphyxiation                                                 6.542e+02
## InjuryNatureBurn                                                         2.202e+02
## InjuryNatureCarpal Tunnel Syndrome                                       1.909e+02
## InjuryNatureConcussion                                                   3.079e+02
## InjuryNatureContagious Disease                                           6.654e+02
## InjuryNatureContusion                                                    1.036e+02
## InjuryNatureCrushing                                                     2.983e+02
## InjuryNatureDermatitis                                                   1.843e+02
## InjuryNatureDislocation                                                  2.936e+02
## InjuryNatureElectric Shock                                               4.500e+02
## InjuryNatureForeign Body                                                 2.007e+02
## InjuryNatureFracture                                                     1.327e+02
## InjuryNatureHearing Loss Or Impairment                                   8.739e+02
## InjuryNatureHeat Prostration                                             5.115e+02
## InjuryNatureHernia                                                       3.500e+02
## InjuryNatureInfection                                                    4.883e+02
## InjuryNatureInflammation                                                 2.210e+02
## InjuryNatureLaceration                                                   1.259e+02
## InjuryNatureLoss of Hearing                                              7.601e+02
## InjuryNatureMental Stress                                                2.814e+02
## InjuryNatureMultiple Injuries Including Both Physical and Psychological  6.236e+02
## InjuryNatureMultiple Physical Injuries Only                              1.552e+02
## InjuryNatureMyocardial Infarction                                        4.733e+02
## InjuryNatureNo Physical Injury                                           2.367e+02
## InjuryNaturePoisoning?Chemical (Other Than Metals)                       4.681e+02
## InjuryNaturePuncture                                                     1.624e+02
## InjuryNatureRespiratory Disorders                                        2.182e+02
## InjuryNatureRupture                                                      4.880e+02
## InjuryNatureSprain                                                       1.203e+02
## InjuryNatureStrain                                                       1.063e+02
## InjuryNatureSyncope                                                      4.121e+02
## BodyPartRegionLower Extremities                                          4.069e+02
## BodyPartRegionMultiple Body Parts                                        3.746e+02
## BodyPartRegionNeck                                                       6.857e+02
## BodyPartRegionTrunk                                                      3.455e+02
## BodyPartRegionUpper Extremities                                          3.167e+02
## BodyPartAnkle                                                            2.846e+02
## BodyPartBody Systems and Multiple Body Systems                           3.192e+02
## BodyPartButtocks                                                         2.794e+02
## BodyPartChest                                                            1.958e+02
## BodyPartDisc-Trunk                                                       2.408e+02
## BodyPartEar(S)                                                           6.888e+02
## BodyPartElbow                                                            1.568e+02
## BodyPartEyes                                                             3.437e+02
## BodyPartFacial Bones                                                     3.718e+02
## BodyPartFinger(S)                                                        1.107e+02
## BodyPartFoot                                                             2.850e+02
## BodyPartGreat Toe                                                        6.677e+02
## BodyPartHand                                                             1.046e+02
## BodyPartHeart                                                                   NA
## BodyPartHip                                                              3.132e+02
## BodyPartInsufficient Info to Properly Identify?Unclassified              3.342e+02
## BodyPartInternal Organs                                                  6.300e+02
## BodyPartKnee                                                             2.723e+02
## BodyPartLower Arm                                                        1.464e+02
## BodyPartLower Back Area                                                  1.637e+02
## BodyPartLower Leg                                                        2.990e+02
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)              2.031e+02
## BodyPartLungs                                                            3.049e+02
## BodyPartMouth                                                            4.288e+02
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)      2.186e+02
## BodyPartMultiple Head Injury                                             3.264e+02
## BodyPartMultiple Lower Extremities                                       3.460e+02
## BodyPartMultiple Neck Injury                                             6.227e+02
## BodyPartMultiple Upper Extremities                                       2.101e+02
## BodyPartNo Physical Injury                                                      NA
## BodyPartNose                                                             4.685e+02
## BodyPartPelvis                                                           2.733e+02
## BodyPartSacrum And Coccyx                                                6.301e+02
## BodyPartShoulder(S)                                                      1.100e+02
## BodyPartSoft Tissue-Neck                                                 6.889e+02
## BodyPartSpinal Cord-Trunk                                                4.221e+02
## BodyPartTeeth                                                                   NA
## BodyPartThumb                                                            1.431e+02
## BodyPartToes                                                             3.732e+02
## BodyPartUpper Arm                                                        1.668e+02
## BodyPartUpper Back Area                                                  2.482e+02
## BodyPartUpper Leg                                                               NA
## BodyPartVertebrae                                                               NA
## BodyPartWrist                                                                   NA
## IsDenied                                                                 7.531e+01
##                                                                         t value
## (Intercept)                                                               3.555
## GenderMale                                                                1.769
## GenderNot Available                                                      -0.118
## ClaimantAge_at_DOI                                                       -1.611
## AverageWeeklyWage                                                        -2.528
## TotalReserves                                                                NA
## TotalRecovery                                                             2.267
## IndemnityPaid                                                             3.278
## OtherPaid                                                                 3.509
## TotalIncurredCost                                                            NA
## ClaimantTypeMedical Only                                                -12.285
## ClaimantTypeReport Only                                                  -1.563
## InjuryNatureAmputation                                                   -1.468
## InjuryNatureAsphyxiation                                                 -0.718
## InjuryNatureBurn                                                         -1.693
## InjuryNatureCarpal Tunnel Syndrome                                       -0.100
## InjuryNatureConcussion                                                   -0.999
## InjuryNatureContagious Disease                                           -0.981
## InjuryNatureContusion                                                    -2.248
## InjuryNatureCrushing                                                     -0.096
## InjuryNatureDermatitis                                                   -2.923
## InjuryNatureDislocation                                                  -1.940
## InjuryNatureElectric Shock                                                2.416
## InjuryNatureForeign Body                                                  1.708
## InjuryNatureFracture                                                     -2.548
## InjuryNatureHearing Loss Or Impairment                                    1.174
## InjuryNatureHeat Prostration                                             -1.067
## InjuryNatureHernia                                                       -1.889
## InjuryNatureInfection                                                    -0.747
## InjuryNatureInflammation                                                  0.796
## InjuryNatureLaceration                                                   -2.070
## InjuryNatureLoss of Hearing                                              -0.797
## InjuryNatureMental Stress                                                -0.629
## InjuryNatureMultiple Injuries Including Both Physical and Psychological  -0.677
## InjuryNatureMultiple Physical Injuries Only                              -2.791
## InjuryNatureMyocardial Infarction                                        -1.190
## InjuryNatureNo Physical Injury                                           -1.398
## InjuryNaturePoisoning?Chemical (Other Than Metals)                       -0.243
## InjuryNaturePuncture                                                     -2.706
## InjuryNatureRespiratory Disorders                                        -0.243
## InjuryNatureRupture                                                      -2.766
## InjuryNatureSprain                                                       -2.368
## InjuryNatureStrain                                                       -2.564
## InjuryNatureSyncope                                                       0.148
## BodyPartRegionLower Extremities                                           0.659
## BodyPartRegionMultiple Body Parts                                         0.113
## BodyPartRegionNeck                                                        0.079
## BodyPartRegionTrunk                                                       0.804
## BodyPartRegionUpper Extremities                                           0.787
## BodyPartAnkle                                                            -0.126
## BodyPartBody Systems and Multiple Body Systems                           -0.900
## BodyPartButtocks                                                          0.032
## BodyPartChest                                                            -0.570
## BodyPartDisc-Trunk                                                        2.004
## BodyPartEar(S)                                                           -0.392
## BodyPartElbow                                                             0.122
## BodyPartEyes                                                             -0.470
## BodyPartFacial Bones                                                      0.988
## BodyPartFinger(S)                                                        -0.142
## BodyPartFoot                                                             -0.082
## BodyPartGreat Toe                                                        -1.545
## BodyPartHand                                                             -0.866
## BodyPartHeart                                                                NA
## BodyPartHip                                                               0.212
## BodyPartInsufficient Info to Properly Identify?Unclassified               1.597
## BodyPartInternal Organs                                                   0.693
## BodyPartKnee                                                             -0.142
## BodyPartLower Arm                                                        -0.079
## BodyPartLower Back Area                                                   0.033
## BodyPartLower Leg                                                         0.080
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)              -0.190
## BodyPartLungs                                                            -0.340
## BodyPartMouth                                                             0.629
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)       0.988
## BodyPartMultiple Head Injury                                              0.373
## BodyPartMultiple Lower Extremities                                       -0.771
## BodyPartMultiple Neck Injury                                              0.241
## BodyPartMultiple Upper Extremities                                        1.233
## BodyPartNo Physical Injury                                                   NA
## BodyPartNose                                                              0.107
## BodyPartPelvis                                                           -1.397
## BodyPartSacrum And Coccyx                                                -0.095
## BodyPartShoulder(S)                                                      -0.525
## BodyPartSoft Tissue-Neck                                                 -0.352
## BodyPartSpinal Cord-Trunk                                                 1.235
## BodyPartTeeth                                                                NA
## BodyPartThumb                                                            -0.377
## BodyPartToes                                                             -0.311
## BodyPartUpper Arm                                                         0.759
## BodyPartUpper Back Area                                                  -0.417
## BodyPartUpper Leg                                                            NA
## BodyPartVertebrae                                                            NA
## BodyPartWrist                                                                NA
## IsDenied                                                                 -2.136
##                                                                         Pr(>|t|)
## (Intercept)                                                             0.000393
## GenderMale                                                              0.077224
## GenderNot Available                                                     0.906267
## ClaimantAge_at_DOI                                                      0.107387
## AverageWeeklyWage                                                       0.011616
## TotalReserves                                                                 NA
## TotalRecovery                                                           0.023575
## IndemnityPaid                                                           0.001077
## OtherPaid                                                               0.000468
## TotalIncurredCost                                                             NA
## ClaimantTypeMedical Only                                                 < 2e-16
## ClaimantTypeReport Only                                                 0.118438
## InjuryNatureAmputation                                                  0.142288
## InjuryNatureAsphyxiation                                                0.473182
## InjuryNatureBurn                                                        0.090715
## InjuryNatureCarpal Tunnel Syndrome                                      0.920623
## InjuryNatureConcussion                                                  0.318043
## InjuryNatureContagious Disease                                          0.326790
## InjuryNatureContusion                                                   0.024771
## InjuryNatureCrushing                                                    0.923347
## InjuryNatureDermatitis                                                  0.003540
## InjuryNatureDislocation                                                 0.052628
## InjuryNatureElectric Shock                                              0.015859
## InjuryNatureForeign Body                                                0.087979
## InjuryNatureFracture                                                    0.010962
## InjuryNatureHearing Loss Or Impairment                                  0.240744
## InjuryNatureHeat Prostration                                            0.286049
## InjuryNatureHernia                                                      0.059121
## InjuryNatureInfection                                                   0.455050
## InjuryNatureInflammation                                                0.426008
## InjuryNatureLaceration                                                  0.038638
## InjuryNatureLoss of Hearing                                             0.425711
## InjuryNatureMental Stress                                               0.529757
## InjuryNatureMultiple Injuries Including Both Physical and Psychological 0.498508
## InjuryNatureMultiple Physical Injuries Only                             0.005344
## InjuryNatureMyocardial Infarction                                       0.234326
## InjuryNatureNo Physical Injury                                          0.162292
## InjuryNaturePoisoning?Chemical (Other Than Metals)                      0.807855
## InjuryNaturePuncture                                                    0.006921
## InjuryNatureRespiratory Disorders                                       0.807943
## InjuryNatureRupture                                                     0.005758
## InjuryNatureSprain                                                      0.018031
## InjuryNatureStrain                                                      0.010479
## InjuryNatureSyncope                                                     0.882222
## BodyPartRegionLower Extremities                                         0.510296
## BodyPartRegionMultiple Body Parts                                       0.910212
## BodyPartRegionNeck                                                      0.937033
## BodyPartRegionTrunk                                                     0.421629
## BodyPartRegionUpper Extremities                                         0.431418
## BodyPartAnkle                                                           0.899416
## BodyPartBody Systems and Multiple Body Systems                          0.368352
## BodyPartButtocks                                                        0.974614
## BodyPartChest                                                           0.568605
## BodyPartDisc-Trunk                                                      0.045334
## BodyPartEar(S)                                                          0.695499
## BodyPartElbow                                                           0.902564
## BodyPartEyes                                                            0.638460
## BodyPartFacial Bones                                                    0.323184
## BodyPartFinger(S)                                                       0.886949
## BodyPartFoot                                                            0.934921
## BodyPartGreat Toe                                                       0.122548
## BodyPartHand                                                            0.386672
## BodyPartHeart                                                                 NA
## BodyPartHip                                                             0.832323
## BodyPartInsufficient Info to Properly Identify?Unclassified             0.110565
## BodyPartInternal Organs                                                 0.488165
## BodyPartKnee                                                            0.886887
## BodyPartLower Arm                                                       0.936835
## BodyPartLower Back Area                                                 0.973522
## BodyPartLower Leg                                                       0.935906
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)             0.849061
## BodyPartLungs                                                           0.733843
## BodyPartMouth                                                           0.529339
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)     0.323444
## BodyPartMultiple Head Injury                                            0.709317
## BodyPartMultiple Lower Extremities                                      0.440950
## BodyPartMultiple Neck Injury                                            0.809716
## BodyPartMultiple Upper Extremities                                      0.217802
## BodyPartNo Physical Injury                                                    NA
## BodyPartNose                                                            0.915183
## BodyPartPelvis                                                          0.162705
## BodyPartSacrum And Coccyx                                               0.923965
## BodyPartShoulder(S)                                                     0.599707
## BodyPartSoft Tissue-Neck                                                0.725011
## BodyPartSpinal Cord-Trunk                                               0.217066
## BodyPartTeeth                                                                 NA
## BodyPartThumb                                                           0.706395
## BodyPartToes                                                            0.755762
## BodyPartUpper Arm                                                       0.447742
## BodyPartUpper Back Area                                                 0.676751
## BodyPartUpper Leg                                                             NA
## BodyPartVertebrae                                                             NA
## BodyPartWrist                                                                 NA
## IsDenied                                                                0.032887
##                                                                            
## (Intercept)                                                             ***
## GenderMale                                                              .  
## GenderNot Available                                                        
## ClaimantAge_at_DOI                                                         
## AverageWeeklyWage                                                       *  
## TotalReserves                                                              
## TotalRecovery                                                           *  
## IndemnityPaid                                                           ** 
## OtherPaid                                                               ***
## TotalIncurredCost                                                          
## ClaimantTypeMedical Only                                                ***
## ClaimantTypeReport Only                                                    
## InjuryNatureAmputation                                                     
## InjuryNatureAsphyxiation                                                   
## InjuryNatureBurn                                                        .  
## InjuryNatureCarpal Tunnel Syndrome                                         
## InjuryNatureConcussion                                                     
## InjuryNatureContagious Disease                                             
## InjuryNatureContusion                                                   *  
## InjuryNatureCrushing                                                       
## InjuryNatureDermatitis                                                  ** 
## InjuryNatureDislocation                                                 .  
## InjuryNatureElectric Shock                                              *  
## InjuryNatureForeign Body                                                .  
## InjuryNatureFracture                                                    *  
## InjuryNatureHearing Loss Or Impairment                                     
## InjuryNatureHeat Prostration                                               
## InjuryNatureHernia                                                      .  
## InjuryNatureInfection                                                      
## InjuryNatureInflammation                                                   
## InjuryNatureLaceration                                                  *  
## InjuryNatureLoss of Hearing                                                
## InjuryNatureMental Stress                                                  
## InjuryNatureMultiple Injuries Including Both Physical and Psychological    
## InjuryNatureMultiple Physical Injuries Only                             ** 
## InjuryNatureMyocardial Infarction                                          
## InjuryNatureNo Physical Injury                                             
## InjuryNaturePoisoning?Chemical (Other Than Metals)                         
## InjuryNaturePuncture                                                    ** 
## InjuryNatureRespiratory Disorders                                          
## InjuryNatureRupture                                                     ** 
## InjuryNatureSprain                                                      *  
## InjuryNatureStrain                                                      *  
## InjuryNatureSyncope                                                        
## BodyPartRegionLower Extremities                                            
## BodyPartRegionMultiple Body Parts                                          
## BodyPartRegionNeck                                                         
## BodyPartRegionTrunk                                                        
## BodyPartRegionUpper Extremities                                            
## BodyPartAnkle                                                              
## BodyPartBody Systems and Multiple Body Systems                             
## BodyPartButtocks                                                           
## BodyPartChest                                                              
## BodyPartDisc-Trunk                                                      *  
## BodyPartEar(S)                                                             
## BodyPartElbow                                                              
## BodyPartEyes                                                               
## BodyPartFacial Bones                                                       
## BodyPartFinger(S)                                                          
## BodyPartFoot                                                               
## BodyPartGreat Toe                                                          
## BodyPartHand                                                               
## BodyPartHeart                                                              
## BodyPartHip                                                                
## BodyPartInsufficient Info to Properly Identify?Unclassified                
## BodyPartInternal Organs                                                    
## BodyPartKnee                                                               
## BodyPartLower Arm                                                          
## BodyPartLower Back Area                                                    
## BodyPartLower Leg                                                          
## BodyPartLumbar and/or Sacral Vertebrae (Vertebra NOC Trunk)                
## BodyPartLungs                                                              
## BodyPartMouth                                                              
## BodyPartMultiple Body Parts (Including Body Systems and Body Parts)        
## BodyPartMultiple Head Injury                                               
## BodyPartMultiple Lower Extremities                                         
## BodyPartMultiple Neck Injury                                               
## BodyPartMultiple Upper Extremities                                         
## BodyPartNo Physical Injury                                                 
## BodyPartNose                                                               
## BodyPartPelvis                                                             
## BodyPartSacrum And Coccyx                                                  
## BodyPartShoulder(S)                                                        
## BodyPartSoft Tissue-Neck                                                   
## BodyPartSpinal Cord-Trunk                                                  
## BodyPartTeeth                                                              
## BodyPartThumb                                                              
## BodyPartToes                                                               
## BodyPartUpper Arm                                                          
## BodyPartUpper Back Area                                                    
## BodyPartUpper Leg                                                          
## BodyPartVertebrae                                                          
## BodyPartWrist                                                              
## IsDenied                                                                *  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 610.3 on 1150 degrees of freedom
##   (33184 observations deleted due to missingness)
## Multiple R-squared:  0.2705, Adjusted R-squared:  0.2166 
## F-statistic: 5.016 on 85 and 1150 DF,  p-value: < 2.2e-16

5.1 Ajustar la regresión lineal (Processing Time)

regresion2 <- lm(ProcessingTime ~ AverageWeeklyWage + TotalRecovery + IndemnityPaid +  ClaimantType, data=linear)
summary(regresion2)
## 
## Call:
## lm(formula = ProcessingTime ~ AverageWeeklyWage + TotalRecovery + 
##     IndemnityPaid + ClaimantType, data = linear)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -1410.2  -427.3  -126.3   362.4  3440.1 
## 
## Coefficients:
##                            Estimate Std. Error t value Pr(>|t|)    
## (Intercept)               1.086e+03  3.244e+01  33.484  < 2e-16 ***
## AverageWeeklyWage        -1.203e-01  4.073e-02  -2.952  0.00321 ** 
## TotalRecovery             3.899e-02  1.370e-02   2.846  0.00450 ** 
## IndemnityPaid             5.810e-03  8.886e-04   6.538 9.12e-11 ***
## ClaimantTypeMedical Only -4.920e+02  3.718e+01 -13.231  < 2e-16 ***
## ClaimantTypeReport Only  -3.073e+02  1.523e+02  -2.018  0.04379 *  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 618.6 on 1230 degrees of freedom
##   (33184 observations deleted due to missingness)
## Multiple R-squared:  0.1984, Adjusted R-squared:  0.1952 
## F-statistic:  60.9 on 5 and 1230 DF,  p-value: < 2.2e-16

6. Construir un modelo predictivo

data2 <- data.frame(AverageWeeklyWage=492.07, TotalRecovery=124.8, IndemnityPaid=6241, ClaimantType="Medical Only")
predict(regresion2, data2)
##        1 
## 576.2504

Árbol de Decisión

Actividad Árbol de Decisión

1. Base de Datos para el Ejercicio

arbol_db <- main_db[, c("ProcessingTime", "TotalIncurredCost", "ClaimantAge_at_DOI", "Gender", "AverageWeeklyWage")]

2. Limpieza

# Convertir Genger a Factor
arbol_db$Gender <- as.factor(arbol_db$Gender)

# ¿Cuantos NA's tengo x variable?
sapply(arbol_db, function(x) sum(is.na(x)))
##     ProcessingTime  TotalIncurredCost ClaimantAge_at_DOI             Gender 
##                  0                  0              44891                  0 
##  AverageWeeklyWage 
##              81352
# Eliminar NAs
arbol_db <- na.omit(arbol_db)
summary(arbol_db)
##  ProcessingTime   TotalIncurredCost   ClaimantAge_at_DOI           Gender     
##  Min.   :   1.0   Min.   : -10681.7   Min.   :-7550.0    Female       :17707  
##  1st Qu.: 101.0   1st Qu.:    134.3   1st Qu.:   34.0    Male         :16195  
##  Median : 222.0   Median :    523.4   Median :   44.0    Not Available:  210  
##  Mean   : 625.3   Mean   :   8821.1   Mean   :   41.6                         
##  3rd Qu.: 784.0   3rd Qu.:   3341.8   3rd Qu.:   52.0                         
##  Max.   :6758.0   Max.   :1393926.1   Max.   :   91.0                         
##  AverageWeeklyWage  
##  Min.   :      0.0  
##  1st Qu.:    275.0  
##  Median :    500.0  
##  Mean   :    623.0  
##  3rd Qu.:    673.2  
##  Max.   :2024000.0
# Eliminar Totales Negativos
arbol_db <- arbol_db[arbol_db >= 0, ]
## Warning in Ops.factor(left, right): '>=' not meaningful for factors

3. Crear Árbol de Decisón Processing Time

arbol_pt <- rpart(formula = ProcessingTime ~ ., data=arbol_db)
arbol_pt
## n=34112 (136391 observations deleted due to missingness)
## 
## node), split, n, deviance, yval
##       * denotes terminal node
## 
##  1) root 34112 25835770000  625.2962  
##    2) TotalIncurredCost< 6771.635 27923 18759070000  510.2643  
##      4) AverageWeeklyWage>=477.71 14328  6386492000  392.6460 *
##      5) AverageWeeklyWage< 477.71 13595 11965460000  634.2241  
##       10) AverageWeeklyWage< 301.1 9043  4786472000  457.2249 *
##       11) AverageWeeklyWage>=301.1 4552  6332870000  985.8506  
##         22) AverageWeeklyWage>=399.685 2943  2853063000  714.3734 *
##         23) AverageWeeklyWage< 399.685 1609  2866182000 1482.4060 *
##    3) TotalIncurredCost>=6771.635 6189  5040190000 1144.2880  
##      6) TotalIncurredCost< 149729.9 5835  4243314000 1089.1250 *
##      7) TotalIncurredCost>=149729.9 354   486458000 2053.5340 *
rpart.plot(arbol_pt)

prp(arbol_pt)

4. Crear Árbol de Decisón Total Incurred Cost

arbol_tic <- rpart(formula = TotalIncurredCost ~ ., data=arbol_db)
arbol_tic
## n=34112 (136391 observations deleted due to missingness)
## 
## node), split, n, deviance, yval
##       * denotes terminal node
## 
##  1) root 34112 3.572852e+13   8821.054  
##    2) ProcessingTime< 484.5 22517 8.175204e+11   1936.227 *
##    3) ProcessingTime>=484.5 11595 3.177097e+13  22191.100  
##      6) AverageWeeklyWage< 418.47 4155 5.314862e+12   9225.528  
##       12) ProcessingTime< 5364.5 4143 3.560818e+12   8523.027 *
##       13) ProcessingTime>=5364.5 12 1.046101e+12 251763.800 *
##      7) AverageWeeklyWage>=418.47 7440 2.536755e+13  29431.950  
##       14) ProcessingTime< 1137.5 3906 4.841837e+12  22767.880 *
##       15) ProcessingTime>=1137.5 3534 2.016053e+13  36797.510 *
rpart.plot(arbol_tic)

prp(arbol_tic)

ShinyApp

App

LS0tDQp0aXRsZTogIkNhc28gSW50ZWdyYWRvcjogR2FzdG9zIE3DqWRpY29zIg0KYXV0aG9yOiAiVmFsZXJpYSBQZcOxYSBBMDA4MjkzMzIiDQpkYXRlOiAiMjAyMy0xMC0wMiINCm91dHB1dDogDQogIGh0bWxfZG9jdW1lbnQ6IA0KICAgIHRvYzogVFJVRQ0KICAgIHRvY19mbG9hdDogVFJVRQ0KICAgIGNvZGVfZG93bmxvYWQ6IFRSVUUNCiAgICB0aGVtZTogInNpbXBsZXgiDQogICAgaGlnaGxpZ2h0OiAibW9ub2Nocm9tZSINCi0tLQ0KIyBDYXNvIEludGVncmFkb3I6ICJHYXN0b3MgTcOpZGljb3MiDQoNCiFbXShDOlxcVXNlcnNcXGRpZWdvXFxEb3dubG9hZHNcXGNvbXB1LmdpZikgIA0KDQojIyBDb250ZXh0byANClVuYSBlbXByZXNhIGNvbiBzZWRlIGVuIENhcm9saW5hIGRlbCBOb3J0ZSBxdWUgc2UgZXNwZWNpYWxpemEgZW4gbGEgZ2VzdGnDs24gZGUgcmVjbGFtYWNpb25lcyBkZSBjb21wZW5zYWNpw7NuIGxhYm9yYWwgYnVzY2Egb3JpZW50YWNpw7NuIHNvYnJlIGPDs21vIHV0aWxpemFyIGFuw6FsaXNpcyBkZSBkYXRvcyBwYXJhIGlkZW50aWZpY2FyIGxvcyBwcmluY2lwYWxlcyBmYWN0b3JlcyBkZSBjb3N0byB5IGFnaWxpemFyIGxvcyB0aWVtcG9zIGRlIHByb2Nlc2FtaWVudG8gZGUgcmVjbGFtYWNpb25lcy4gQ29uIGVsIGZpbiBkZSBtZWpvcmFyIGxhIGVmaWNpZW5jaWEgeSBjYXBhY2lkYWQgZGUgcmVzcHVlc3RhIGEgbG9zIHJlY2xhbWFudGVzLCBzZSByZWFsaXrDsyB1bmEgYmFzZSBkZSBkYXRvcyBkb25kZSBkZXRhbGxlcyBkZSBjYWRhIHJlY2xhbW8gZXN0w6FuIGRvY3VtZW50YWRvcy4gRXN0b3MgZGV0YWxsZXMgc2UgYWN0dWFsaXphbiBjb250aW51YW1lbnRlIGEgbWVkaWRhIHF1ZSBzZSBkZXNlbWJvbHNhbiBsb3MgcGFnb3MgcGFyYSByZXNvbHZlciBlbCByZWNsYW1vLCBjdWJyaWVuZG8gZGl2ZXJzYXMgYWN0aXZpZGFkZXMgY29tbyB2aXNpdGFzIGFsIG3DqWRpY28geSBnYXN0b3MgZGUgZmFybWFjaWEuDQoNCiMjIDEuIEltcG9ydGFyIGJhc2UgZGUgZGF0b3MgZSBJbnN0YWxhciBMaWJyZXLDrWFzDQoNCmBgYHtyfQ0KIyBJbXBvcnRhciB5IGp1bnRhciBiYXNlcw0KdHJhbnNhY3Rpb25zIDwtIHJlYWQuY3N2KCJDOlxcVXNlcnNcXGRpZWdvXFxEb3dubG9hZHNcXFRyYW5zYWN0aW9uc1N1bW1hcnkyMDE4LmNzdiIpDQpjbGFpbXMgPC0gcmVhZC5jc3YoIkM6XFxVc2Vyc1xcZGllZ29cXERvd25sb2Fkc1xcQ2xhaW1zRGF0YTIwMTguY3N2IikNCmJkIDwtIG1lcmdlKHRyYW5zYWN0aW9ucywgY2xhaW1zLCBieSA9ICJDbGFpbUlEIiwgYWxsID0gVFJVRSkNCg0KIyBGaWx0cmFyIHBvciAiQ2xhaW0gU3RhdHVzOiBDbG9zZWQiDQpkYiA8LSBzdWJzZXQoYmQsIENsYWltU3RhdHVzID09ICJDIikNCg0KIyBJbnN0YWxhciBMaWJyZXLDrWFzDQoNCiMgaW5zdGFsbC5wYWNrYWdlcygiZHlwbHIiKQ0KbGlicmFyeShkcGx5cikNCg0KIyBpbnN0YWxsLnBhY2thZ2VzKCJycGFydCIpDQpsaWJyYXJ5KHJwYXJ0KQ0KDQojIGluc3RhbGwucGFja2FnZXMoInJwYXJ0LnBsb3QiKQ0KbGlicmFyeShycGFydC5wbG90KQ0KDQojIGluc3RhbGwucGFja2FnZXMoImdncGxvdDIiKQ0KbGlicmFyeShnZ3Bsb3QyKQ0KDQojIGluc3RhbGwucGFja2FnZXMoImZhY3RvZXh0cmEiKQ0KbGlicmFyeShmYWN0b2V4dHJhKQ0KDQojIGluc3RhbGwucGFja2FnZXMoImNsdXN0ZXIiKQ0KbGlicmFyeShjbHVzdGVyKQ0KDQojIGluc3RhbGwucGFja2FnZXMoImRhdGEudGFibGUiKQ0KbGlicmFyeShkYXRhLnRhYmxlKQ0KYGBgDQoNCiMjIDIuIEVudGVuZGVyIGJhc2UgZGUgZGF0b3MgDQpgYGB7cn0NCnN1bW1hcnkoZGIpDQpjb3VudChkYiwgQ2xhaW1JRCwgc29ydD1UUlVFKQ0KIyBjb3VudChkYiwgQmlsbFJldmlld0FMRSwgc29ydD1UUlVFKQ0KIyBjb3VudChkYiwgSG9zcGl0YWwsIHNvcnQ9VFJVRSkNCiMgY291bnQoZGIsIFBoeXNpY2lhbk91dHBhdGllbnQsIHNvcnQ9VFJVRSkNCiMgIyAoZGIsIFJ4LCBzb3J0PVRSVUUpDQojIChkYiwgVG90YWxQYWlkLCBzb3J0PVRSVUUpDQojIGNvdW50KGRiLCBUb3RhbFJlc2VydmVzLCBzb3J0PVRSVUUpDQojIGNvdW50KGRiLCBUb3RhbFJlY292ZXJ5LCBzb3J0PVRSVUUpDQojIGNvdW50KGRiLCBJbmRlbW5pdHlQYWlkLCBzb3J0PVRSVUUpDQojIGNvdW50KGRiLCBPdGhlclBhaWQsIHNvcnQ9VFJVRSkNCmNvdW50KGRiLCBDbGFpbVN0YXR1cywgc29ydD1UUlVFKQ0KY291bnQoZGIsIEluY2lkZW50RGF0ZSwgc29ydD1UUlVFKQ0KY291bnQoZGIsIEluY2lkZW50RGVzY3JpcHRpb24sIHNvcnQ9VFJVRSkNCmNvdW50KGRiLCBSZXR1cm5Ub1dvcmtEYXRlLCBzb3J0PVRSVUUpDQojIGNvdW50KGRiLCBBdmVyYWdlV2Vla2x5V2FnZSwgc29ydD1UUlVFKQ0KY291bnQoZGIsIENsYWltYW50T3BlbmVkRGF0ZSwgc29ydD1UUlVFKQ0KY291bnQoZGIsIENsYWltYW50Q2xvc2VkRGF0ZSwgc29ydD1UUlVFKQ0KY291bnQoZGIsIEVtcGxveWVyTm90aWZpY2F0aW9uRGF0ZSwgc29ydD1UUlVFKQ0KY291bnQoZGIsIElzRGVuaWVkLCBzb3J0PVRSVUUpDQpjb3VudChkYiwgQ2xhaW1hbnRBZ2VfYXRfRE9JLCBzb3J0PVRSVUUpDQpjb3VudChkYiwgR2VuZGVyLCBzb3J0PVRSVUUpDQpjb3VudChkYiwgQ2xhaW1hbnRUeXBlLCBzb3J0PVRSVUUpDQpjb3VudChkYiwgSW5qdXJ5TmF0dXJlLCBzb3J0PVRSVUUpDQpjb3VudChkYiwgQm9keVBhcnRSZWdpb24sIHNvcnQ9VFJVRSkNCmNvdW50KGRiLCBCb2R5UGFydCwgc29ydD1UUlVFKQ0KDQojIFNlIHJlYWxpesOzIGxhIGZ1bmNpw7NuIGNvdW50IHBhcmEgZW50ZW5kZXIgbGEgY2FudGlkYWQgZGUgZWxlbWVudG9zIHBvciB2YXJpYWJsZQ0KIyB5IGxhIGplcmFycXXDrWEgcXVlIGVzdGFzIHRpZW5lbiBkZW50cm8gZGUgbGEgYmFzZSBkZSBkYXRvcywgc2luIGVtYmFyZ28sIHNlIG1hbnR1dm8NCiMgYWxndW5hcyB2YXJpYWJsZXMgY29tbyBjb21lbnRhcmlvLCB5YSBxdWUgZWwgY8OzZGlnbyBlcyBkZSBncmFuIHBlc28geSBtYW50ZW5lcmxhcyBubyANCiMgcGVybWl0w61hIHN1YmlyIGVsIGRvY3VtZW50byBhIFJwdWJzDQpgYGANCg0KDQpPYnNlcnZhY2lvbmVzIA0KDQoxLiBMYXMgY29sdW1uYXMgZGUgZmVjaGEgZXN0w6FuIGVzdGFibGVjaWRhcyBjb21vIGNhcmFjdGVyICANCjIuIExhcyB2YXJpYWJsZXMgQmlsbFJldmlld0FMRSwgSG9zcGl0YWwsIFBoeXNpY2lhbk91dHBhdGllbnQgeSBSeCBjb250aWVuZW4gdW5hIGdyYW4gY2FudGlkYWQgZGUgTkEncyAgDQozLiBWYXJpYWJsZXMgYWRpY2lvbmFsZXMgKFggLSBYLjIyKSBlc3TDoW4gcHJlc2VudGVzIGVuIGxhIGJhc2UgZGUgZGF0b3MgbnVldmEgZGViaWRvIGEgbGEgZnVuY2nDs24gIm1lcmdlIiAgDQo0LiBMYSB2YXJpYWJsZSBBZ2UgZXN0w6EgZXN0YWJsZWNpZGEgY29tbyBjYXJhY3TDqXIgeSBubyBjb21vIHVuIHZhbG9yIG51bWVyaWNvIGFsIGlndWFsIHF1ZSBsYSB2YXJpYWJsZSBBdmVyYWdlIFdlZWtseSBXYWdlIA0KDQpBIGNvbnRpbnVhY2nDs24sIHNlIHByb2NlZGVyw6EgYSBoYWNlciBsb3MgY2FtYmlvcyBuZWNlc2FyaW9zIHBhcmEgcXVlIGxhIGJhc2UgZGUgZGF0b3MgZXN0w6kgZW4gDQpmb3JtYSBwYXJhIHJlYWxpemFyIGxvcyBjw6FsY3Vsb3MgbmVjZXNhcmlvcy4NCg0KIyMgMy4gTGltcGllemEgZGUgYmFzZSBkZSBkYXRvcw0KYGBge3J9DQojIEVsaW1pbmFyIGNvbHVtbmFzIGFkaWNpb25hbGVzIA0KbWFpbl9kYiA8LSBzdWJzZXQoZGIsIHNlbGVjdCA9IC1jKFgsIFguMSwgWC4yLCBYLjMsIFguNCwgWC41LCBYLjYsIFguNywgWC44LCBYLjksIFguMTAsIFguMTEsIFguMTIsIFguMTMsIFguMTQsIFguMTUsIFguMTYsIFguMTcsIFguMTgsIFguMTksIFguMjAsIFguMjEsIFguMjIpKQ0KDQoNCiMgQ2FtYmlhciBmb3JtYXRvIGRlIGNhcmFjdMOpciBhIGZlY2hhDQoNCiMjIENsYWltZWQgT3BlbmVkIERhdGUNCm1haW5fZGIkQ2xhaW1hbnRPcGVuZWREYXRlIDwtIGFzLkRhdGUobWFpbl9kYiRDbGFpbWFudE9wZW5lZERhdGUsIGZvcm1hdCA9ICIlZC8lbS8lWSIpDQoNCiMjIENsYWltIENsb3NlZCBEYXRlDQptYWluX2RiJENsYWltYW50Q2xvc2VkRGF0ZSA8LSBhcy5EYXRlKG1haW5fZGIkQ2xhaW1hbnRDbG9zZWREYXRlLCBmb3JtYXQgPSAiJWQvJW0vJVkiKQ0KDQoNCiMgQ2FtYmlhciBGb3JtYXRvIFZhcmlhYmxlIEVkYWQgQ2hhcmFjdGVyIC0gTnVtZXJpYw0KbWFpbl9kYiRDbGFpbWFudEFnZV9hdF9ET0kgPC0gYXMubnVtZXJpYyhtYWluX2RiJENsYWltYW50QWdlX2F0X0RPSSkNCg0KIyBDYW1iaWFyIEZvcm1hdG8gU3VlbGRvIGNoYXJhY3RlciAtIG51bWVyaXMNCm1haW5fZGIkQXZlcmFnZVdlZWtseVdhZ2UgPC0gYXMubnVtZXJpYyhtYWluX2RiJEF2ZXJhZ2VXZWVrbHlXYWdlKQ0KDQoNCiMgQWdyZWdhciBDw6FsY3VsbyAiVG90YWwgSW5jdXJyZWQgQ29zdCINCm1haW5fZGIkVG90YWxJbmN1cnJlZENvc3QgPC0gbWFpbl9kYiRUb3RhbFJlc2VydmVzICsgbWFpbl9kYiRJbmRlbW5pdHlQYWlkICsgbWFpbl9kYiRPdGhlclBhaWQgLSBtYWluX2RiJFRvdGFsUmVjb3ZlcnkNCg0KIyBBZ3JlZ2FyIENvbHVtbmEgVGllbXBvIGRlIFByb2Nlc2FtaWVudG8NCm1haW5fZGIkUHJvY2Vzc2luZ1RpbWUgPC1kaWZmdGltZShtYWluX2RiJENsYWltYW50Q2xvc2VkRGF0ZSwgbWFpbl9kYiRDbGFpbWFudE9wZW5lZERhdGUsIHVuaXRzID0gImRheXMiICkNCg0KIyBDYW1iaWFyIEZvcm1hdG8gZGUgVmFyaWFibGUgVGllbXBvIGRlIFByb2Nlc2FtaWVudG8NCm1haW5fZGIkUHJvY2Vzc2luZ1RpbWUgPC0gYXMubnVtZXJpYyhtYWluX2RiJFByb2Nlc3NpbmdUaW1lKQ0KDQojIEVsaW1pbmFyIFZhbG9yZXMgTmVnYXRpdm9zIGVuIGNvbHVtbmEgIlRpZW1wbyBkZSBQcm9jZXNhbWllbnRvIg0KbWFpbl9kYiA8LSBtYWluX2RiW21haW5fZGIkUHJvY2Vzc2luZ1RpbWUgPiAwLCBdDQpgYGANCg0KIyBBbsOhbGlzaXMgZGUgQ2zDunN0ZXJzDQpbQWN0aXZpZGFkIENsdXN0ZXJzXShodHRwczovL3JwdWJzLmNvbS92YWxlcmlhcGVuYS8xMDg1NDg4KQ0KDQojIyAxLiBDcmVhciBCYXNlIGRlIERhdG9zIA0KDQpEZWJpZG8gYSBxdWUgc2UgdGllbmUgdW5hIGJhc2UgZGUgZGF0b3MgZGUgZ3JhbiBjYXBhY2lkYWQsIHNlIHByb2NlZGVyw6EgYSByZWFsaXphcg0KdW5hIGJhc2UgY29uIHVuYSBtZW5vciBjYW50aWRhZCBkZSB2YXJpYWJsZXMsIGNvbiBlbCBvYmpldGl2byBkZSBsb2dyYXIgaWRlbnRpZmljYXINCm91dGxpZXJzIGRlbnRybyBkZSBsYXMgdmFyaWFibGVzIFByb2Nlc3NpbmcgVGltZSB5IFRvdGFsIFBhaWQsIGFsIGlndWFsIHF1ZSANCnJlYWxpemFyIGVsIHByb2Nlc28gZGUgYWdydXBhbWllbnRvIG8gY2x1c3Rlcml6YWNpw7NuLiANCg0KYGBge3J9DQojIENyZWFyIGJhc2UgZGUgZGF0b3MgcGFyYSBDbHVzdGVycyANCmNsdXN0ZXJzIDwtIG1haW5fZGJbLCBjKCJQcm9jZXNzaW5nVGltZSIsICJUb3RhbFBhaWQiKV0NCmBgYA0KDQojIyAyLiBMaW1waWV6YSBkZSBCYXNlIGRlIERhdG9zIE51ZXZhDQpgYGB7cn0NCiMgwr9DdcOhbnRvcyBOQSdzIHRlbmdvIGVuIGxhIGJhc2UgZGUgZGF0b3M/DQpzdW0oaXMubmEoY2x1c3RlcnMpKQ0KDQojIMK/Q3VhbnRvcyBOQSdzIHRlbmdvIHggdmFyaWFibGU/DQpzYXBwbHkoY2x1c3RlcnMsIGZ1bmN0aW9uKHgpIHN1bShpcy5uYSh4KSkpDQpjbHVzdGVycw0KDQojIEFsIG5vIGhhYmVyIE5BJ3MgZGVudHJvIGRlIGxhIGJhc2UgZGUgZGF0b3MsIHNlIHByb3NpZ3VlIGEgZWxpbWluYXIgdmFsb3JlcyANCiMgbWVub3JlcyBhIDANCg0KIyBFbGltaW5hciBUb3RhbGVzIE5lZ2F0aXZvcw0KY2x1c3RlcnMgPC0gY2x1c3RlcnNbY2x1c3RlcnMkVG90YWxQYWlkID49IDAsIF0NCmBgYA0KDQoNCiMjIDMuIElkZW50aWZpY2FyIE91dGxpZXJzDQpgYGB7cn0NCiNJZGVudGlmaWNhciBvdXRsaWVycyBlbiB0b3RhbCBwYWlkDQpib3hwbG90KGNsdXN0ZXJzJFRvdGFsUGFpZCwgaG9yaXpvbnRhbCA9IFRSVUUpDQp0aXRsZSgiVG90YWwgUGFpZCBCb3hwbG90IikNCg0KI0lkZW50aWZpY2FyIG91dGxpZXJzIGVuIHByb2Nlc3NpbmcgdGltZQ0KYm94cGxvdChjbHVzdGVycyRQcm9jZXNzaW5nVGltZSwgaG9yaXpvbnRhbCA9IFRSVUUpDQp0aXRsZSgiUHJvY2Vzc2luZyBUaW1lIEJveHBsb3QiKQ0KYGBgDQoNCk9ic2VydmFjaW9uZXM6IA0KMS5TZSB0aWVuZW4gZGF0b3MgZnVlcmEgZGUgbG8gbm9ybWFsIGRlbnRybyBkZSBhbWJhcyB2YXJpYWJsZXMgIA0KDQojIyA0LiBFbGltaW5hciBEYXRvcyBmdWVyYSBkZSBsbyBOb3JtYWwNCmBgYHtyfQ0KIyBMb3MgZGF0b3MgZnVlcmEgZGUgbG8gbm9ybWFsIGVzdMOhbiBmdWVyYSBkZSBsb3Mgc2lndWllbnRlcyBsw61taXRlcw0KIyBMw61taXRlIGluZmVyaW9yID0gUTEgLSAxLjUqSVFSDQojIEzDrW1pdGUgc3VwZXJpb3IgPSBRMyArIDEuNSpJUVINCiMgUTE6IEN1YXJ0aWwgMSwgUTM6IEN1YXJ0aWwgMywgSVFSOiBSYW5nbyBJbnRlcmN1YXJ0aWwNCg0KDQojIENvbHVtbmEgVG90YWwgUGFpZA0KSVFSX1RQIDwtIElRUihjbHVzdGVycyRUb3RhbFBhaWQpDQpJUVJfVFANCnN1bW1hcnkoY2x1c3RlcnMpIA0KDQpMSV9UUCA8LSA2OS4zICAtIDEuNSpJUVJfVFANCkxJX1RQDQpMU19UUCA8LSA4NTkuNyArIDEuNSpJUVJfVFANCkxTX1RQDQoNCmNsdXN0ZXJzIDwtIGNsdXN0ZXJzW2NsdXN0ZXJzJFRvdGFsUGFpZCA8PSAyNDE4LjA0LF0NCg0KIyBDb2x1bW5hIFByb2Nlc3NpbmcgVGltZQ0KSVFSX1BUIDwtIElRUihjbHVzdGVycyRQcm9jZXNzaW5nVGltZSkNCklRUl9QVA0KTElfUFQgPC0gMTgzIC0gMS41KklRUl9QVA0KTElfUFQNCkxTX1BUIDwtIDIxODUgKyAxLjUqSVFSX1BUDQpMU19QVA0KY2x1c3RlcnMgPC0gY2x1c3RlcnNbY2x1c3RlcnMkUHJvY2Vzc2luZ1RpbWU8PSA1MTE4LF0NCnN1bW1hcnkoY2x1c3RlcnMpDQpgYGANCg0KIyMgNS4gQXNpZ25hY2nDs24gZGUgR3J1cG9zDQpgYGB7cn0NCiMgMC4gTm9ybWFsaXphciB2YXJpYWJsZXMNCmNsdXN0ZXJzIDwtIGFzLmRhdGEuZnJhbWUoc2NhbGUoY2x1c3RlcnMpKQ0KDQojIDEuIENyZWFyIGJhc2UgZGUgZGF0b3MNCg0KZGYgPC0gY2x1c3RlcnMNCg0KIyAyLiBEZXRlcm1pbmFyIGVsIG7Dum1lcm8gZGUgZ3J1cG9zDQpncnVwb3MgPC0gNA0KDQojIDMuIFJlYWxpemFyIGxhIGNsYXNpZmljYWNpw7NuDQpzZWdtZW50b3MgPC0ga21lYW5zKGRmLGdydXBvcykNCg0KIyA0LiBSZXZpc2FyIGxhIGFzaWduYWNpw7NuIGRlIGdydXBvcw0KYXNpZ25hY2nDs24gPC0gY2JpbmQoZGYsY2x1c3Rlcj1zZWdtZW50b3MkY2x1c3RlcikNCmBgYA0KDQojIyA2LiBHcmFmaWNhciBSZXN1bHRhZG9zDQpgYGB7cn0NCmZ2aXpfY2x1c3RlcihzZWdtZW50b3MsIGRhdGEgPSBkZiwgDQogICAgICAgICAgICAgcGFsZXR0ZT0gYygiZGVlcHBpbmsiLCAiZG9kZ2VyYmx1ZSIsICJsaWdodGdyZWVuIiwgInllbGxvdyIpKQ0KYGBgDQoNCiMjIDcuIE9wdGltaXphciBDYW50aWRhZCBkZSBHcnVwb3MNCmBgYHtyfQ0KIyBzZXQuc2VlZCgxMjMpDQojIG9wdGltaXphY2nDs24gPC0gY2x1c0dhcChkZiwgRlVOPWttZWFucywgbnN0YXJ0PTEsIEsubWF4PTcpDQojIHBsb3Qob3B0aW1pemFjacOzbiwgeGxhYj0iTsO6bWVybyBkZSBjbHVzdGVycyBLIikNCiMgTG9zIGPDs2RpZ29zIGFudGVyaW9yZXMgc2UgZGVqYXJvbiBjb21vIGNvbWVudGFyaW8gZGViaWRvIGFsIGVycm9yOiAiRXJyb3I6IGNhbm5vdCBhbGxvY2F0ZSB2ZWN0b3Igb2Ygc2l6ZSA0My42IEdiIg0KYGBgDQoNCg0KIyBSZWdyZXNpw7NuIExpbmVhbA0KW0FjdGl2aWRhZCBSZWdyZXNpw7NuIExpbmVhbF0oaHR0cHM6Ly9ycHVicy5jb20vdmFsZXJpYXBlbmEvMTA4NjQ4NykgDQoNCkRlYmlkbyBhIGxhIG9ic2VydmFjacOzbiBoZWNoYSAqIkxhcyB2YXJpYWJsZXMgQmlsbFJldmlld0FMRSwgSG9zcGl0YWwsIFBoeXNpY2lhbk91dHBhdGllbnQgeSBSeCBjb250aWVuZW4gdW5hIGdyYW4gY2FudGlkYWQgZGUgTkEncyIqLCBzZSBwcm9jZWRlcsOhIGEgZWxpbWluYXIgZXN0YXMgdmFyaWFibGVzIHBhcmEgcXVlIG5vIGFmZWN0ZW4gZWwgcmVzdWx0YWRvIGRlbCBjw6FsY3VsbyBwcsOzeGltby4gDQoNCiMjIDEuIENyZWFyIEJhc2UgZGUgRGF0b3MgcGFyYSBlbCBFamVyY2ljaTANCkNvbiBlbCBmaW4gZGUgdGVuZXIgdW4gcHJvY2VzbyBkZSBjb2RpZmljYWNpw7NuIGFtZW5vLCBzZSByZWFsaXphcsOhIHVuYSBiYXNlIGRlIGRhdG9zIGVzcGVjaWFsDQpwYXJhIGNhZGEgZWplcmNpY2lvLCBjb24gZWwgZmluIGRlIG5vIGludGVyZmVyaXIgZW4gbGluZWFzIGRlIGPDs2RpZ28gYWRpY2lvbmFsZXMuIA0KDQpgYGB7cn0NCmxpbmVhciA8LSBtYWluX2RiDQpgYGANCg0KIyMgMi4gTGltcGllemEgZGUgQmFzZSBkZSBEYXRvcw0KYGBge3J9DQojIMK/Q3VhbnRvcyBOQSdzIHRlbmdvIHggdmFyaWFibGU/DQpzYXBwbHkobGluZWFyLCBmdW5jdGlvbih4KSBzdW0oaXMubmEoeCkpKQ0KDQojIEVsaW1pbmFyIE5Bcw0KbGluZWFyIDwtIG5hLm9taXQobGluZWFyKQ0Kc3VtbWFyeShsaW5lYXIpDQoNCiMgRWxpbWluYXIgVG90YWxlcyBOZWdhdGl2b3MNCmxpbmVhciA8LSBsaW5lYXJbbGluZWFyID49IDAsIF0NCnN1bW1hcnkobGluZWFyKQ0KYGBgDQoNCiMjIDMuIEdlbmVyYXIgbGEgcmVncmVzacOzbiBsaW5lYWwgKFRvdGFsIEluY3VycmVkIENvc3QpDQpgYGB7cn0NCnJlZ3Jlc2lvbiA8LSBsbShUb3RhbEluY3VycmVkQ29zdCB+IENsYWltYW50QWdlX2F0X0RPSSArIEF2ZXJhZ2VXZWVrbHlXYWdlICsgUHJvY2Vzc2luZ1RpbWUgKyBHZW5kZXIgKyBDbGFpbWFudFR5cGUgKyBJbmp1cnlOYXR1cmUgKyAgQm9keVBhcnRSZWdpb24gKyBCb2R5UGFydCArIElzRGVuaWVkLCBkYXRhPWxpbmVhcikNCnN1bW1hcnkocmVncmVzaW9uKQ0KYGBgDQoNCiMjIDMuMSBBanVzdGFyIGxhIHJlZ3Jlc2nDs24gbGluZWFsIChUb3RhbCBJbmN1cnJlZCBDb3N0KQ0KYGBge3J9DQpyZWdyZXNpb24gPC0gbG0oVG90YWxJbmN1cnJlZENvc3QgfiBQcm9jZXNzaW5nVGltZSwgZGF0YT1saW5lYXIpDQpzdW1tYXJ5KHJlZ3Jlc2lvbikNCmBgYA0KDQojIyA0LiBDb25zdHJ1aXIgdW4gbW9kZWxvIHByZWRpY3Rpdm8NCmBgYHtyfQ0KZGF0YSA8LSBkYXRhLmZyYW1lKENsYWltYW50QWdlX2F0X0RPST00MS44OSwgQXZlcmFnZVdlZWtseVdhZ2U9NDkyLjA3LCBQcm9jZXNzaW5nVGltZT04NDkuOSkNCnByZWRpY3QocmVncmVzaW9uLCBkYXRhKQ0KYGBgDQoNCiMjIDUuIEdlbmVyYXIgbGEgcmVncmVzacOzbiBsaW5lYWwgKFByb2Nlc3NpbmcgVGltZSkNCmBgYHtyfQ0KcmVncmVzaW9uMiA8LSBsbShQcm9jZXNzaW5nVGltZSB+IEdlbmRlciArIENsYWltYW50QWdlX2F0X0RPSSArIEF2ZXJhZ2VXZWVrbHlXYWdlICsgVG90YWxSZXNlcnZlcyArIFRvdGFsUmVjb3ZlcnkgKyBJbmRlbW5pdHlQYWlkICsgT3RoZXJQYWlkICsgVG90YWxJbmN1cnJlZENvc3QgKyBDbGFpbWFudEFnZV9hdF9ET0kgKyBHZW5kZXIgKyBDbGFpbWFudFR5cGUgKyBJbmp1cnlOYXR1cmUgKyAgQm9keVBhcnRSZWdpb24gKyBCb2R5UGFydCArIElzRGVuaWVkLCBkYXRhPWxpbmVhcikNCnN1bW1hcnkocmVncmVzaW9uMikNCmBgYA0KDQojIyA1LjEgQWp1c3RhciBsYSByZWdyZXNpw7NuIGxpbmVhbCAoUHJvY2Vzc2luZyBUaW1lKQ0KYGBge3J9DQpyZWdyZXNpb24yIDwtIGxtKFByb2Nlc3NpbmdUaW1lIH4gQXZlcmFnZVdlZWtseVdhZ2UgKyBUb3RhbFJlY292ZXJ5ICsgSW5kZW1uaXR5UGFpZCArICBDbGFpbWFudFR5cGUsIGRhdGE9bGluZWFyKQ0Kc3VtbWFyeShyZWdyZXNpb24yKQ0KYGBgDQoNCiMjIDYuIENvbnN0cnVpciB1biBtb2RlbG8gcHJlZGljdGl2bw0KYGBge3J9DQpkYXRhMiA8LSBkYXRhLmZyYW1lKEF2ZXJhZ2VXZWVrbHlXYWdlPTQ5Mi4wNywgVG90YWxSZWNvdmVyeT0xMjQuOCwgSW5kZW1uaXR5UGFpZD02MjQxLCBDbGFpbWFudFR5cGU9Ik1lZGljYWwgT25seSIpDQpwcmVkaWN0KHJlZ3Jlc2lvbjIsIGRhdGEyKQ0KYGBgDQoNCg0KIyDDgXJib2wgZGUgRGVjaXNpw7NuDQpbQWN0aXZpZGFkIMOBcmJvbCBkZSBEZWNpc2nDs25dKGh0dHBzOi8vcnB1YnMuY29tL3ZhbGVyaWFwZW5hLzEwODY0OTMpDQoNCiMjIDEuIEJhc2UgZGUgRGF0b3MgcGFyYSBlbCBFamVyY2ljaW8NCmBgYHtyfQ0KYXJib2xfZGIgPC0gbWFpbl9kYlssIGMoIlByb2Nlc3NpbmdUaW1lIiwgIlRvdGFsSW5jdXJyZWRDb3N0IiwgIkNsYWltYW50QWdlX2F0X0RPSSIsICJHZW5kZXIiLCAiQXZlcmFnZVdlZWtseVdhZ2UiKV0NCmBgYA0KDQojIyAyLiBMaW1waWV6YQ0KYGBge3J9DQojIENvbnZlcnRpciBHZW5nZXIgYSBGYWN0b3INCmFyYm9sX2RiJEdlbmRlciA8LSBhcy5mYWN0b3IoYXJib2xfZGIkR2VuZGVyKQ0KDQojIMK/Q3VhbnRvcyBOQSdzIHRlbmdvIHggdmFyaWFibGU/DQpzYXBwbHkoYXJib2xfZGIsIGZ1bmN0aW9uKHgpIHN1bShpcy5uYSh4KSkpDQoNCiMgRWxpbWluYXIgTkFzDQphcmJvbF9kYiA8LSBuYS5vbWl0KGFyYm9sX2RiKQ0Kc3VtbWFyeShhcmJvbF9kYikNCg0KIyBFbGltaW5hciBUb3RhbGVzIE5lZ2F0aXZvcw0KYXJib2xfZGIgPC0gYXJib2xfZGJbYXJib2xfZGIgPj0gMCwgXQ0KYGBgDQoNCiMjIDMuIENyZWFyIMOBcmJvbCBkZSBEZWNpc8OzbiBQcm9jZXNzaW5nIFRpbWUNCmBgYHtyfQ0KYXJib2xfcHQgPC0gcnBhcnQoZm9ybXVsYSA9IFByb2Nlc3NpbmdUaW1lIH4gLiwgZGF0YT1hcmJvbF9kYikNCmFyYm9sX3B0DQpycGFydC5wbG90KGFyYm9sX3B0KQ0KDQpwcnAoYXJib2xfcHQpDQpgYGANCg0KIyMgNC4gQ3JlYXIgw4FyYm9sIGRlIERlY2lzw7NuIFRvdGFsIEluY3VycmVkIENvc3QNCmBgYHtyfQ0KYXJib2xfdGljIDwtIHJwYXJ0KGZvcm11bGEgPSBUb3RhbEluY3VycmVkQ29zdCB+IC4sIGRhdGE9YXJib2xfZGIpDQphcmJvbF90aWMNCnJwYXJ0LnBsb3QoYXJib2xfdGljKQ0KDQpwcnAoYXJib2xfdGljKQ0KYGBgDQoNCg0KIyBTaGlueUFwcA0KW0FwcF0oaHR0cHM6Ly92YWxlcmlhcGVuYS5zaGlueWFwcHMuaW8vU2hpbnkxLykNCg0KDQoNCg0KDQo=